From: Scott Gasch <scott.gasch@gmail.com> Date: Thu, 2 Jun 2016 02:04:57 +0000 (-0700) Subject: A bunch of chess-related papers. X-Git-Url: https://wannabe.guru.org/gitweb/?a=commitdiff_plain;p=typhoon-papers.git A bunch of chess-related papers. --- 10acef9e6f2d1f56a39c7f4b9ccf4b4be6f8bed7 diff --git a/evaluation/Shortcut b/evaluation/Shortcut new file mode 100755 index 0000000..44cb1e6 --- /dev/null +++ b/evaluation/Shortcut @@ -0,0 +1,154 @@ +The tree of posible moves branches so rapidly, one can rarely +search to mate. Which branch of the tree leads to an advantage? +This necessitates the use of search heuristics - or shortcuts +which direct our attention to certain aspects of a position +while ignoring the rest. The application of these heuristic is +what distinguishes between players of different levels. +Grandmasters choose not to use their "masterly" analytic abilities +so much but rely more on search heuristics. The results are they +typically find the best move, and take less time to do it. Below +are some of the heuristics that I compiled which should be +considered when playing chess. These rules were taken from various +publications, including MY SYSTEM by Nimzowitsch, the Father +of positional play! +---------------------------------------------------------------------- + + **** THE FOUR ELEMENTS **** + + FORCE - SPACE - TIME - PAWN STRUCTURE + +RULES OF ATTACK +* Don't trade ATTACKING pieces for defensive ones unnecessarily. +* You must have an advantage in some element in order to ATTACK. +* The major aim of most ATTACKS is to provoke a pawn weakness. +* Apply the force count, count ATTACKING pieces vs defensive ones. + A three + count in your favor constitute condidtions for an ATTACK. +* ATTACK where you have a perponderence of force, unless imploying + a minority attack, striving to create backwardness on an open file. +* ATTACK towards the direction your pawns are pointing. +* A superior position in the center justifies an ATTACK on the flank. + +RULES OF DEFENSE +* DEFEND economically, too many pieces can get in each others way. +* Don't create pawn weaknesses, but if necessary, minimize the weakness. + +RULES OF FORCE +* The person who is ahead in FORCE will win 90% of the times. +* When you are ahead in FORCE, the key principle is "exchange pieces". + +RULES OF SPACE +* Seek to increase your SPACE control. +* DON'T trade pieces, your pieces are worth more - let him stay cramped. +* Open the position by forcing pawn exchanges. +* Focus your attack on a pawn. + +RULES OF TIME +* Don't lock or close the position. +* Open the position by forcing pawn exchanges. + +RULES OF EXCHANGES +* Exchange in order to seize (or open) a file without loss of time. +* Exchange to destory a good defender. +* Exchange in order not to lose time by retreating. +* Exchange when you are ahead in force! +* Exchange when your opponent has a pawn weakness. +* Exchange when you have a passed pawn. +---------------------------------------------------------------------- + +RULES OF BISHOPS (worth 3 points) +* BISHOPS are best in open positions. +* BISHOPS are most effective when on open diagnals. +* BISHOPS are best against passed pawns. + +RULES OF KNIGHTS (worth 3 points) +* KNIGHTS are best in closed positions. +* In order for KNIGHTS to be effective, they must be centrallized. +* KNIGHTS are best when you have connected passed pawns. + +RULES OF ROOKS (worth 5 points) +* ROOKS belong on open files. +* The ultimate goal of ROOKS, are to invade the 7th and 8th rank. + +RULES OF QUEENS (worth 9 points) +* QUEENS should stay home (opening) and centrallized (middlegame). +* + +RULES OF KINGS (worth 3 1/2 points) +* Activate you KING towards the endgame. +* + +RULES OF PAWNS (worth 1 point) +* PAWN structure determines the nature of your plan of action. +* There are three types of PAWN Structures, Weak-Solid-Dynamic. +* Center PAWNS are more important than flank PAWNS. +* PAWNS should not be on the same color as your Bishop in the endgame. +-------------------------------------------------------------------- + +RULES OF PAWN STRUCTURE +Pawn Islands (Weak) +* PAWN ISLANDS are weak because they need protection of the pieces. + They become weaker and weaker as the number of pieces diminish. +* When playing with PAWN ISLANDS, protect them or trade them. +* When playing against PAWN ISLANDS, "Trade Minor Pieces". + +Isolated Pawns (Weak) +Isoloni (Weak/Dynamic) +* ISOLATED PAWNS become weaker and weaker as the number of pieces + on the board diminishes. +* When playing against ISOLATED PAWNS, "Trade Minor Pieces". You + want to play a major piece endgame. +* When playing against ISOLATED PAWNS, you should Blockade them. + +Doubled Pawns (Weak) +* When playing with DOUBLED PAWNS, you should push the most forward. +* When playing against DOUBLED PAWNS, you want to Blockade them. + +Backward Pawns (Weak) +* When playing with BACKWARD PAWNS, you should try to advance it. +* When playing with BACKWARD PAWNS, you should try and trade the + Bishop which is blocked by the BACKWARD PAWN. +* When playing against the BACKWARD PAWN, you should first... + Restrain it - Blockade it - (1) +* After blockading the BACKWARD PAWN, systematiclly bring in + support of the blockader. Rotate pieces in and out of the + pivoting point to confuse the defense. (1) then Destroy it. + +Passed Pawns (Dynamic) +* PASSED PAWNS must be pushed! +* When playing with the PASSED PAWN, you should "Trade Pieces". When + the number of pieces on the board diminishes, the PASSED PAWN + increases in strength. +* When playing against the PASSED PAWN, you should Blockade it. + +Split Pawns (Weak) +* SPLIT PAWNS become weaker and weaker as the game progresses. +* When playing against SPLIT PAWNS, you should not concern yourself + with them in the middlegame -- just place your pieces effectively. +* When playing against SPLIT PAWNS, you should "Trade Minor Pieces". + +Screened Backward Pawns (Weak) +* When playing with SCREEN BACKWARD PAWNS, you have less space. +* When playing against SCREEN BACKWARD PAWNS, advance on the side + of the backward pawn. + +Hanging Pawns (Dynamic) +* When playing against HANGING PAWNS, you should "Trade Minor Pieces". + They get weaker and weaker as the number of pieces on the board + diminish. +* When playing against HANGING PAWNS,you should force your opponent + to move his "c" pawn, then Blockade the pawn on the "d" file. + +Pawn Chains (Solid) +* The Base of a PAWN CHAIN is called the Theater of War, therefore... +* In order to attack a PAWN CHAIN, attack it's base with a pawn. +* Attack the new base with many pieces until a weakness elsewhere + appear, then attack this weakness with great vigor, returning + to the original weakness in the endgame. +---------------------------------------------------------------------- + +If you add to or modify this document, please send it to me +so I can learn something new in chess! I have a lot of room +for improvments. + +ICS Name: ShoNuff +Email ID: bruce@sun.apa.org diff --git a/general/A REVIEW OF GAME-TREE PRUNING.pdf b/general/A REVIEW OF GAME-TREE PRUNING.pdf new file mode 100644 index 0000000..e246844 Binary files /dev/null and b/general/A REVIEW OF GAME-TREE PRUNING.pdf differ diff --git a/general/Enhanced Iterative deeping.pdf b/general/Enhanced Iterative deeping.pdf new file mode 100644 index 0000000..eb92288 Binary files /dev/null and b/general/Enhanced Iterative deeping.pdf differ diff --git a/general/Graph.Properties.pdf b/general/Graph.Properties.pdf new file mode 100644 index 0000000..3b1ad78 Binary files /dev/null and b/general/Graph.Properties.pdf differ diff --git a/general/HH and a_b enhancements.pdf b/general/HH and a_b enhancements.pdf new file mode 100644 index 0000000..d285a5f Binary files /dev/null and b/general/HH and a_b enhancements.pdf differ diff --git a/general/State.Art.pdf b/general/State.Art.pdf new file mode 100644 index 0000000..736de88 Binary files /dev/null and b/general/State.Art.pdf differ diff --git a/general/chess.pdf b/general/chess.pdf new file mode 100644 index 0000000..d60873d Binary files /dev/null and b/general/chess.pdf differ diff --git a/general/glem.pdf b/general/glem.pdf new file mode 100644 index 0000000..4af5859 --- /dev/null +++ b/general/glem.pdf @@ -0,0 +1,13930 @@ +%PDF-1.2 +%ÐÓÔÌ +1 0 obj +<< +/Type /Catalog +/Pages 3 0 R +/Outlines 2 0 R +/Dests 5 0 R +/PageMode /UseNone +>> +endobj +2 0 obj +<< +/Type /Outlines +/Count 0 +>> +endobj +3 0 obj +<< +/Type /Pages +/MediaBox [ 0 0 595 842 ] +/Count 20 +/Kids [ 6 0 R 163 0 R 230 0 R 247 0 R 254 0 R 261 0 R 285 0 R 334 0 R 371 0 R 382 0 R 399 0 R 414 0 R 420 0 R 432 0 R 457 0 R 475 0 R 494 0 R 515 0 R 526 0 R 575 0 R ] +>> +endobj +4 0 obj +[ /PDF /Text /ImageC ] +endobj +5 0 obj +<< + +>> +endobj +6 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 580 0 R >> /XObject << /Im1 8 0 R /Im2 9 0 R /Im3 10 0 R /Im4 11 0 R /Im5 12 0 R /Im6 13 0 R /Im4 11 0 R /Im7 14 0 R /Im8 15 0 R /Im9 16 0 R /Im9 16 0 R /Im10 17 0 R /Im11 18 0 R /Im12 19 0 R /Im2 9 0 R /Im9 16 0 R /Im13 20 0 R /Im11 18 0 R /Im3 10 0 R /Im5 12 0 R /Im3 10 0 R /Im7 14 0 R /Im14 21 0 R /Im6 13 0 R /Im13 20 0 R /Im11 18 0 R /Im6 13 0 R /Im15 22 0 R /Im10 17 0 R /Im11 18 0 R /Im9 16 0 R /Im16 23 0 R /Im17 24 0 R /Im18 25 0 R /Im10 17 0 R /Im8 15 0 R /Im12 19 0 R /Im10 17 0 R /Im11 18 0 R /Im6 13 0 R /Im3 10 0 R /Im19 26 0 R /Im12 19 0 R /Im19 26 0 R /Im15 22 0 R /Im11 18 0 R /Im6 13 0 R /Im3 10 0 R /Im19 26 0 R /Im13 20 0 R /Im20 27 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im25 32 0 R /Im26 33 0 R /Im27 34 0 R /Im28 35 0 R /Im29 36 0 R /Im30 37 0 R /Im31 38 0 R /Im32 39 0 R /Im33 40 0 R /Im34 41 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im37 44 0 R /Im38 45 0 R /Im39 46 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im36 43 0 R /Im43 50 0 R /Im44 51 0 R /Im43 50 0 R /Im45 52 0 R /Im43 50 0 R /Im35 42 0 R /Im46 53 0 R /Im41 48 0 R /Im42 49 0 R /Im47 54 0 R /Im35 42 0 R /Im48 55 0 R /Im35 42 0 R /Im42 49 0 R /Im47 54 0 R /Im35 42 0 R /Im42 49 0 R /Im39 46 0 R /Im35 42 0 R /Im49 56 0 R /Im37 44 0 R /Im50 57 0 R /Im51 58 0 R /Im38 45 0 R /Im44 51 0 R /Im42 49 0 R /Im39 46 0 R /Im35 42 0 R /Im43 50 0 R /Im52 59 0 R /Im42 49 0 R /Im31 38 0 R /Im53 60 0 R /Im54 61 0 R /Im55 62 0 R /Im56 63 0 R /Im46 53 0 R /Im54 61 0 R /Im57 64 0 R /Im58 65 0 R /Im59 66 0 R /Im60 67 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im64 71 0 R /Im65 72 0 R /Im66 73 0 R /Im67 74 0 R /Im64 71 0 R /Im68 75 0 R /Im69 76 0 R /Im40 47 0 R /Im44 51 0 R /Im36 43 0 R /Im48 55 0 R /Im37 44 0 R /Im48 55 0 R /Im35 42 0 R /Im38 45 0 R /Im47 54 0 R /Im44 51 0 R /Im36 43 0 R /Im39 46 0 R /Im45 52 0 R /Im36 43 0 R /Im36 43 0 R /Im35 42 0 R /Im36 43 0 R /Im37 44 0 R /Im48 55 0 R /Im38 45 0 R /Im37 44 0 R /Im39 46 0 R /Im43 50 0 R /Im44 51 0 R /Im39 46 0 R /Im37 44 0 R /Im70 77 0 R /Im71 78 0 R /Im38 45 0 R /Im37 44 0 R /Im72 79 0 R /Im35 42 0 R /Im73 80 0 R /Im52 59 0 R /Im38 45 0 R /Im74 81 0 R /Im71 78 0 R /Im52 59 0 R /Im38 45 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im72 79 0 R /Im44 51 0 R /Im75 82 0 R /Im37 44 0 R /Im45 52 0 R /Im43 50 0 R /Im52 59 0 R /Im72 79 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im39 46 0 R /Im39 46 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im43 50 0 R /Im38 45 0 R /Im45 52 0 R /Im39 46 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im52 59 0 R /Im71 78 0 R /Im35 42 0 R /Im76 83 0 R /Im37 44 0 R /Im70 77 0 R /Im45 52 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im71 78 0 R /Im45 52 0 R /Im42 49 0 R /Im39 46 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im71 78 0 R /Im52 59 0 R /Im38 45 0 R /Im77 84 0 R /Im37 44 0 R /Im72 79 0 R /Im35 42 0 R /Im36 43 0 R /Im78 85 0 R /Im79 86 0 R /Im37 44 0 R /Im36 43 0 R /Im35 42 0 R /Im47 54 0 R /Im52 59 0 R /Im42 49 0 R /Im37 44 0 R /Im36 43 0 R /Im43 50 0 R /Im38 45 0 R /Im45 52 0 R /Im39 46 0 R /Im43 50 0 R /Im45 52 0 R /Im38 45 0 R /Im35 42 0 R /Im47 54 0 R /Im35 42 0 R /Im76 83 0 R /Im37 44 0 R /Im70 77 0 R /Im45 52 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im71 78 0 R /Im45 52 0 R /Im42 49 0 R /Im39 46 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im38 45 0 R /Im35 42 0 R /Im48 55 0 R /Im38 45 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im42 49 0 R /Im43 50 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im57 64 0 R /Im37 44 0 R /Im48 55 0 R /Im38 45 0 R /Im52 59 0 R /Im39 46 0 R /Im35 42 0 R /Im47 54 0 R /Im45 52 0 R /Im38 45 0 R /Im35 42 0 R /Im71 78 0 R /Im52 59 0 R /Im38 45 0 R /Im35 42 0 R /Im80 87 0 R /Im48 55 0 R /Im70 77 0 R /Im52 59 0 R /Im38 45 0 R /Im81 88 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im71 78 0 R /Im35 42 0 R /Im37 44 0 R /Im43 50 0 R /Im45 52 0 R /Im38 45 0 R /Im35 42 0 R /Im36 43 0 R /Im48 55 0 R /Im37 44 0 R /Im39 46 0 R /Im35 42 0 R /Im44 51 0 R /Im36 43 0 R /Im48 55 0 R /Im38 45 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im42 49 0 R /Im43 50 0 R /Im35 42 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im36 43 0 R /Im37 44 0 R /Im82 89 0 R /Im70 77 0 R /Im35 42 0 R /Im43 50 0 R /Im52 59 0 R /Im47 54 0 R /Im44 51 0 R /Im36 43 0 R /Im39 46 0 R /Im52 59 0 R /Im76 83 0 R /Im35 42 0 R /Im38 45 0 R /Im42 49 0 R /Im35 42 0 R /Im73 80 0 R /Im71 78 0 R /Im35 42 0 R /Im37 44 0 R /Im43 50 0 R /Im45 52 0 R /Im38 45 0 R /Im35 42 0 R /Im36 43 0 R /Im44 51 0 R /Im42 49 0 R /Im37 44 0 R /Im39 46 0 R /Im52 59 0 R /Im72 79 0 R /Im48 55 0 R /Im45 52 0 R /Im43 50 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im37 44 0 R /Im70 77 0 R /Im71 78 0 R /Im35 42 0 R /Im37 44 0 R /Im36 43 0 R /Im44 51 0 R /Im82 89 0 R /Im70 77 0 R /Im35 42 0 R /Im73 80 0 R /Im37 44 0 R /Im50 57 0 R /Im78 85 0 R /Im79 86 0 R /Im35 42 0 R /Im36 43 0 R /Im44 51 0 R /Im47 54 0 R /Im35 42 0 R /Im36 43 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im52 59 0 R /Im38 45 0 R /Im35 42 0 R /Im43 50 0 R /Im44 51 0 R /Im39 46 0 R /Im37 44 0 R /Im70 77 0 R /Im37 44 0 R /Im36 43 0 R /Im48 55 0 R /Im35 42 0 R /Im39 46 0 R /Im43 50 0 R /Im36 43 0 R /Im57 64 0 R /Im38 45 0 R /Im35 42 0 R /Im70 77 0 R /Im37 44 0 R /Im43 50 0 R /Im35 42 0 R /Im47 54 0 R /Im48 55 0 R /Im38 45 0 R /Im37 44 0 R /Im39 46 0 R /Im43 50 0 R /Im44 51 0 R /Im39 46 0 R /Im37 44 0 R /Im70 77 0 R /Im44 51 0 R /Im36 43 0 R /Im36 43 0 R /Im45 52 0 R /Im35 42 0 R /Im36 43 0 R /Im36 43 0 R /Im45 52 0 R /Im39 46 0 R /Im40 47 0 R /Im37 44 0 R /Im36 43 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im77 84 0 R /Im35 42 0 R /Im42 49 0 R /Im35 42 0 R /Im38 45 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im52 59 0 R /Im71 78 0 R /Im43 50 0 R /Im38 45 0 R /Im37 44 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im48 55 0 R /Im52 59 0 R /Im36 43 0 R /Im44 51 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im57 64 0 R /Im71 78 0 R /Im35 42 0 R /Im37 44 0 R /Im43 50 0 R /Im45 52 0 R /Im38 45 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im81 88 0 R /Im70 77 0 R /Im35 42 0 R /Im39 46 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im57 64 0 R /Im37 44 0 R /Im42 49 0 R /Im47 54 0 R /Im73 80 0 R /Im35 42 0 R /Im44 51 0 R /Im77 84 0 R /Im40 47 0 R /Im43 50 0 R /Im83 90 0 R /Im43 50 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im37 44 0 R /Im38 45 0 R /Im77 84 0 R /Im35 42 0 R /Im70 77 0 R /Im44 51 0 R /Im42 49 0 R /Im35 42 0 R /Im37 44 0 R /Im38 45 0 R /Im36 43 0 R /Im50 57 0 R /Im36 43 0 R /Im43 50 0 R /Im35 42 0 R /Im72 79 0 R /Im36 43 0 R /Im37 44 0 R /Im38 45 0 R /Im35 42 0 R /Im47 54 0 R /Im44 51 0 R /Im36 43 0 R /Im39 46 0 R /Im45 52 0 R /Im36 43 0 R /Im36 43 0 R /Im35 42 0 R /Im47 54 0 R /Im78 85 0 R /Im84 91 0 R /Im44 51 0 R /Im42 49 0 R /Im37 44 0 R /Im70 77 0 R /Im70 77 0 R /Im50 57 0 R /Im57 64 0 R /Im73 80 0 R /Im35 42 0 R /Im48 55 0 R /Im38 45 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im42 49 0 R /Im43 50 0 R /Im35 42 0 R /Im80 87 0 R /Im48 55 0 R /Im35 42 0 R /Im38 45 0 R /Im44 51 0 R /Im72 79 0 R /Im35 42 0 R /Im42 49 0 R /Im43 50 0 R /Im37 44 0 R /Im70 77 0 R /Im38 45 0 R /Im35 42 0 R /Im36 43 0 R /Im45 52 0 R /Im70 77 0 R /Im43 50 0 R /Im36 43 0 R /Im71 78 0 R /Im52 59 0 R /Im38 45 0 R /Im85 92 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im70 77 0 R /Im70 77 0 R /Im52 59 0 R /Im57 64 0 R /Im73 80 0 R /Im40 47 0 R /Im44 51 0 R /Im39 46 0 R /Im40 47 0 R /Im47 54 0 R /Im35 42 0 R /Im72 79 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im43 50 0 R /Im38 45 0 R /Im37 44 0 R /Im43 50 0 R /Im35 42 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im48 55 0 R /Im52 59 0 R /Im81 88 0 R /Im43 50 0 R /Im35 42 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im37 44 0 R /Im70 77 0 R /Im52 59 0 R /Im71 78 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im47 54 0 R /Im35 42 0 R /Im36 43 0 R /Im39 46 0 R /Im38 45 0 R /Im44 51 0 R /Im82 89 0 R /Im35 42 0 R /Im47 54 0 R /Im37 44 0 R /Im48 55 0 R /Im48 55 0 R /Im38 45 0 R /Im52 59 0 R /Im37 44 0 R /Im39 46 0 R /Im40 47 0 R /Im78 85 0 R /Im86 93 0 R /Im35 42 0 R /Im50 57 0 R /Im73 80 0 R /Im52 59 0 R /Im38 45 0 R /Im47 54 0 R /Im36 43 0 R /Im87 94 0 R /Im37 44 0 R /Im45 52 0 R /Im43 50 0 R /Im52 59 0 R /Im72 79 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im39 46 0 R /Im71 78 0 R /Im35 42 0 R /Im37 44 0 R /Im43 50 0 R /Im45 52 0 R /Im38 45 0 R /Im35 42 0 R /Im39 46 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im43 50 0 R /Im38 45 0 R /Im45 52 0 R /Im39 46 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im57 64 0 R /Im88 95 0 R /Im89 96 0 R /Im32 39 0 R /Im90 97 0 R /Im57 64 0 R /Im85 92 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im70 77 0 R /Im70 77 0 R /Im52 59 0 R /Im91 98 0 R /Im92 99 0 R /Im93 100 0 R /Im94 101 0 R /Im95 102 0 R /Im96 103 0 R /Im97 104 0 R /Im98 105 0 R /Im99 106 0 R /Im94 101 0 R /Im100 107 0 R /Im96 103 0 R /Im93 100 0 R /Im20 27 0 R /Im24 31 0 R /Im101 108 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im105 112 0 R /Im102 109 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im107 114 0 R /Im105 112 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im110 117 0 R /Im28 35 0 R /Im21 28 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im106 113 0 R /Im24 31 0 R /Im105 112 0 R /Im112 119 0 R /Im105 112 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im114 121 0 R /Im106 113 0 R /Im25 32 0 R /Im115 122 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im110 117 0 R /Im102 109 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im102 109 0 R /Im28 35 0 R /Im105 112 0 R /Im28 35 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im102 109 0 R /Im107 114 0 R /Im24 31 0 R /Im116 123 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im118 125 0 R /Im21 28 0 R /Im101 108 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im102 109 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im113 120 0 R /Im119 126 0 R /Im25 32 0 R /Im22 29 0 R /Im24 31 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im105 112 0 R /Im23 30 0 R /Im30 37 0 R /Im118 125 0 R /Im101 108 0 R /Im23 30 0 R /Im30 37 0 R /Im118 125 0 R /Im23 30 0 R /Im24 31 0 R /Im29 36 0 R /Im111 118 0 R /Im24 31 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im107 114 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im105 112 0 R /Im120 127 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im101 108 0 R /Im118 125 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im109 116 0 R /Im30 37 0 R /Im22 29 0 R /Im28 35 0 R /Im105 112 0 R /Im114 121 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im30 37 0 R /Im101 108 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im28 35 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im30 37 0 R /Im29 36 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im21 28 0 R /Im109 116 0 R /Im102 109 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im24 31 0 R /Im105 112 0 R /Im112 119 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im109 116 0 R /Im121 128 0 R /Im122 129 0 R /Im123 130 0 R /Im124 131 0 R /Im125 132 0 R /Im123 130 0 R /Im126 133 0 R /Im127 134 0 R /Im128 135 0 R /Im129 136 0 R /Im130 137 0 R /Im121 128 0 R /Im123 130 0 R /Im126 133 0 R /Im125 132 0 R /Im131 138 0 R /Im121 128 0 R /Im132 139 0 R /Im118 125 0 R /Im24 31 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im29 36 0 R /Im30 37 0 R /Im111 118 0 R /Im28 35 0 R /Im22 29 0 R /Im25 32 0 R /Im111 118 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im28 35 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im26 33 0 R /Im102 109 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im105 112 0 R /Im105 112 0 R /Im28 35 0 R /Im107 114 0 R /Im116 123 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im25 32 0 R /Im115 122 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im30 37 0 R /Im101 108 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im115 122 0 R /Im21 28 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im25 32 0 R /Im29 36 0 R /Im109 116 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im30 37 0 R /Im109 116 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im117 124 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im24 31 0 R /Im109 116 0 R /Im25 32 0 R /Im118 125 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im26 33 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im116 123 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im25 32 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im134 141 0 R /Im22 29 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im25 32 0 R /Im111 118 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im113 120 0 R /Im135 142 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im120 127 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im118 125 0 R /Im30 37 0 R /Im116 123 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im105 112 0 R /Im117 124 0 R /Im102 109 0 R /Im136 143 0 R /Im137 144 0 R /Im105 112 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im138 145 0 R /Im137 144 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im117 124 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im113 120 0 R /Im139 146 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im30 37 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im24 31 0 R /Im101 108 0 R /Im106 113 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im111 118 0 R /Im21 28 0 R /Im140 147 0 R /Im22 29 0 R /Im28 35 0 R /Im26 33 0 R /Im106 113 0 R /Im105 112 0 R /Im28 35 0 R /Im117 124 0 R /Im141 148 0 R /Im106 113 0 R /Im24 31 0 R /Im105 112 0 R /Im112 119 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im109 116 0 R /Im24 31 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im102 109 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im110 117 0 R /Im29 36 0 R /Im24 31 0 R /Im107 114 0 R /Im113 120 0 R /Im104 111 0 R /Im106 113 0 R /Im29 36 0 R /Im25 32 0 R /Im142 149 0 R /Im28 35 0 R /Im21 28 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im117 124 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im111 118 0 R /Im30 37 0 R /Im107 114 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im22 29 0 R /Im21 28 0 R /Im143 150 0 R /Im22 29 0 R /Im112 119 0 R /Im101 108 0 R /Im30 37 0 R /Im118 125 0 R /Im26 33 0 R /Im25 32 0 R /Im111 118 0 R /Im110 117 0 R /Im25 32 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im110 117 0 R /Im29 36 0 R /Im24 31 0 R /Im107 114 0 R /Im107 114 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im112 119 0 R /Im21 28 0 R /Im26 33 0 R /Im26 33 0 R /Im105 112 0 R /Im117 124 0 R /Im25 32 0 R /Im22 29 0 R /Im24 31 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im118 125 0 R /Im25 32 0 R /Im26 33 0 R /Im26 33 0 R /Im112 119 0 R /Im101 108 0 R /Im30 37 0 R /Im118 125 0 R /Im101 108 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im111 118 0 R /Im25 32 0 R /Im30 37 0 R /Im144 151 0 R /Im117 124 0 R /Im25 32 0 R /Im106 113 0 R /Im118 125 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im25 32 0 R /Im111 118 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im112 119 0 R /Im101 108 0 R /Im30 37 0 R /Im118 125 0 R /Im26 33 0 R /Im25 32 0 R /Im111 118 0 R /Im110 117 0 R /Im25 32 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im141 148 0 R /Im106 113 0 R /Im29 36 0 R /Im25 32 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im113 120 0 R /Im103 110 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im102 109 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im105 112 0 R /Im24 31 0 R /Im110 117 0 R /Im30 37 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im24 31 0 R /Im28 35 0 R /Im106 113 0 R /Im23 30 0 R /Im30 37 0 R /Im29 36 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im117 124 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im102 109 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im110 117 0 R /Im29 36 0 R /Im24 31 0 R /Im107 114 0 R /Im105 112 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im26 33 0 R /Im26 33 0 R /Im116 123 0 R /Im21 28 0 R /Im22 29 0 R /Im112 119 0 R /Im25 32 0 R /Im111 118 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im30 37 0 R /Im101 108 0 R /Im26 33 0 R /Im102 109 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im117 124 0 R /Im28 35 0 R /Im106 113 0 R /Im24 31 0 R /Im26 33 0 R /Im105 112 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im21 28 0 R /Im29 36 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im29 36 0 R /Im105 112 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im30 37 0 R /Im28 35 0 R /Im105 112 0 R /Im30 37 0 R /Im116 123 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im21 28 0 R /Im145 152 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im105 112 0 R /Im30 37 0 R /Im107 114 0 R /Im25 32 0 R /Im118 125 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im105 112 0 R /Im28 35 0 R /Im29 36 0 R /Im116 123 0 R /Im29 36 0 R /Im21 28 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im120 127 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im111 118 0 R /Im102 109 0 R /Im21 28 0 R /Im101 108 0 R /Im146 153 0 R /Im147 154 0 R /Im148 155 0 R /Im139 146 0 R /Im24 31 0 R /Im107 114 0 R /Im28 35 0 R /Im25 32 0 R /Im26 33 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im118 125 0 R /Im24 31 0 R /Im102 109 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im24 31 0 R /Im28 35 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im102 109 0 R /Im106 113 0 R /Im28 35 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im113 120 0 R /Im149 156 0 R /Im23 30 0 R /Im21 28 0 R /Im26 33 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im111 118 0 R /Im21 28 0 R /Im140 147 0 R /Im22 29 0 R /Im28 35 0 R /Im26 33 0 R /Im106 113 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im24 31 0 R /Im107 114 0 R /Im24 31 0 R /Im22 29 0 R /Im23 30 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im120 127 0 R /Im143 150 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im101 108 0 R /Im24 31 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im110 117 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im101 108 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im113 120 0 R /Im150 157 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im109 116 0 R /Im30 37 0 R /Im22 29 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im26 33 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im116 123 0 R /Im21 28 0 R /Im22 29 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im111 118 0 R /Im28 35 0 R /Im22 29 0 R /Im25 32 0 R /Im111 118 0 R /Im133 140 0 R /Im119 126 0 R /Im141 148 0 R /Im135 142 0 R /Im24 31 0 R /Im107 114 0 R /Im107 114 0 R /Im30 37 0 R /Im101 108 0 R /Im120 127 0 R /Im24 31 0 R /Im118 125 0 R /Im30 37 0 R /Im29 36 0 R /Im26 33 0 R /Im111 118 0 R /Im141 148 0 R /Im22 29 0 R /Im26 33 0 R /Im24 31 0 R /Im105 112 0 R /Im105 112 0 R /Im117 124 0 R /Im24 31 0 R /Im22 29 0 R /Im112 119 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im107 114 0 R /Im30 37 0 R /Im101 108 0 R /Im141 148 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im110 117 0 R /Im29 36 0 R /Im24 31 0 R /Im107 114 0 R /Im146 153 0 R /Im151 158 0 R /Im120 127 0 R /Im152 159 0 R /Im148 155 0 R /Im120 127 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im29 36 0 R /Im21 28 0 R /Im117 124 0 R /Im28 35 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im119 126 0 R /Im25 32 0 R /Im25 32 0 R /Im116 123 0 R /Im27 34 0 R /Im26 33 0 R /Im28 35 0 R /Im25 32 0 R /Im153 160 0 R /Im105 112 0 R /Im108 115 0 R /Im21 28 0 R /Im22 29 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im102 109 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im154 161 0 R /Im24 31 0 R /Im105 112 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im30 37 0 R /Im108 115 0 R /Im21 28 0 R /Im101 108 0 R /Im136 143 0 R /Im152 159 0 R /Im152 159 0 R /Im147 154 0 R /Im146 153 0 R /Im155 162 0 R /Im148 155 0 R /Im113 120 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 7 0 R +>> +endobj +7 0 obj +<< +/Length 587 0 R +/Filter /FlateDecode +>> +stream +x¥}˲ìÈuݼ¿â¥ :dFxâBjbHO©ÿ½U¹q +ÀZµW&&}»ot2÷û½ÿúÓ?ÿøëOáÇß~úëOõ«ÖéÇô5MöÏõ«ÄéGÓW^ãe¿ÖZüú?ýâ¿ÿ1üøÇ?ÿôÏoÇç¯%/_¹nÇWp</_ër>þüzZöãu±ãé|<įt9ÿü|Î_K8>ϯ8ÇÛù%}Õùüýù|>}ÅϾ¿è÷/vÿ:·Ý(®S;þ¸a´ãåzýó××'>⺯×+òί!/M o=g¢Pýz¯_Qß§éJøSF OyúÊ ë¯5¿¿LÛùoÌ¿¿pc¼4Ïãè-èùèÍ_±âã+Þ q)ôj ÇäFªEïCÍ/¾Ïå߳ϵQþá8ø<aÛ)¼pçOl{%ƶ¡qýãëos\j üÀEj1äÇ^¯#Óñü+òùýÓ¢Üù +Ö{Þ?Oèþì3ÑsAçeѬ«¼ñn\ø>|gêÛÞîßú4Àd¨ßø£?@¿Ë ~JoÍ_©\¾Ñ;TtOèýWø3µ&DþàóDr¼ÿ$¹éõ1ûè'M÷Ø'¥¢±½¿+ø+#èÝlX2¢>{%Ø#ׯQº>>i Ä{>ûk½ý<å;ØÏS½ýí]ÁÇtO¤{*8_7Ù[êKö<Lò7³éÂ|ñ+`¥6ðÏðÓûóSn»}ÿûþñB~Àïe²gôýËûó×¼ ï§ ~Ø5ãóóþý·óòEð3ÙîÈïûä;þRþ.ºç +¿D6áîþWÝñ:Û÷#Äÿ ~_ÿ7ßÃí¸~?]èoã&Pâüß¼¾?}¾ÐÏóü²<áw:ÜëùM|ÆòR^Ûù÷óú[.¶ÃëE±ÆýþoçýÏç§:õûýoðû~Úù5¡óú£ß_ôýüµ×óíbð;\ö³úHxLüúÅ÷7þ;}ÐïY~¼¬Ñ ¿ägôb@ç/ô{ý~{Ñùý2üñäá?^¬#RÚáÿ}>_#V@~?ß +ºÿ þù÷WéûHþ?m¿è?ùM¾«ô}Jsù÷j~üz¯á~�þbÉè¼L±tèï+ÿü{òÿãüü�ÿ3ù÷ýýÏòç¬æ'DâÚø¯N_áûþ²üØåû}¿S¸¿MþÝ_ +áÞýÃ,Ý~?NèûùËÏgéþ+p?ðKáÅ¿óßú7ùOôW�ü¯úÑ_Êsûþão¿oÀù½Úï/ûçeÿÍezÿìo¬?ã_ß?¿êO&¿ãÒð8ßT~,ég³¿ìüýìòëx^ÿ±~åÿY~üÁ÷gÿüÌþsàGíçÁÿj?_ý?ßô÷Í?3xÿÙÿ3û)¢óÀþeç:ôçÕþ~¯ðÃé<°±þMqAðçÉýÓ$½?\äÏK£§ô#ý-ëþ/òáÿ¿öû¿}ÿÂÿWùgià' ^iä×r(x¸Á/,í|:þßÕÿ~/íýÇó@þá÷¢P +ú> ÿóû_ò#Tø}þÛ÷M~Ïý}~·óëÎôoçgô~Ákï_Wéýá¢?_§ü¢ÿãùýÎÌþ5ùs</û1Tpÿ«ÿGõg¿ÎüÿÝäO>úoÔþMÍ~ëGûÙ?ñáüFì`Aù>ÕßyEïòØ?só_Ógûú/K�ï¿ÚßÜ~*÷ð¿À÷ëñÐyþs+ø(àüÕ¦÷·ø{v^£7~æÒùþ +áøÅ¿â-þÙý7Hü,,"ýûÿ]ÿÍ¡?u¿ÿXü)üGî´ûSø¥*ÁÝÿUvôG¹_âÿÎÀýÇ$ËOòþyÞµÿÚ÷d?=þå'¨|9§Û÷KôWdÿ/ôý«ÿGá_³ÿé§"ýS�ýúYH?øýyn½ËÞ*ïgò#(Éfÿå°Hö£¿Ã-ý®ÿrúK¨ýiðO~.øcò7gä¿ øÑYÿM/ø?üÏ)lçïøæ?9ÿ´û=öYÿbû'Xüêp^ÏÇó²üeß¿òÃßî>Π_]%øÑ÷¯Úûý¿î¯ëïÝÿ<Þ_Nÿè<ÿ (áÆÿÂÞ/çÿbDß×ó1Î"ýÿ+®ûù>ÿ«ù Ýù©Hø£ïÏñýF.ýúÉþ:èg"ýï/Aú>³¶üåÿÈ~pü×#þü?Û?§üåá|ý·=éÈ?f¿ïþëñýûÒEòëJÿôþötT~où;ô¿ù¿wèßê¯Fé¯ÿpéØ¿¡JôKë"â?Vÿ¡Êæ¿Bù¯ûßi¹ÿá¯ã?ßÓ[ÛÉýf?d3ÿé?ÝÚúVÆä¯ùÏHþ*þ{ÃÕòµîùìgâÿÍ~¤þÍýJé øý¯´"ùsÅÿtÁßëoÒÃþ,Wüü®_ÌVÿq</ÇrÐôõ?´tÿÓê?\ýãï9"ý ê_Hü!å[ò#§*É +ÿ\oÁó_ßø!#ö{XZüæp^·ßCöó#ö{0ùqü¾l¿ß/ë¯Pô~z¹÷'ð[£?î¿Îèý2ÿÄVÿ~º¿^7Aøëöw@ôÛa +îßaÿ{ýü;ìïàßa§,Ñ/õ?M~ÞßãNàýþgÑ÷uÿqÿèöw5þåõk~:ê×zK~m ÷·ð_ üuütÿú5~$~tS~FY~ü«å/¦2ýöô/@úÑí×%û×/úÇü×IÂ?Ïÿ΢þ&þG\oÉß½ÿaÿöþAþÛýçAþK9Kð§õ¹ù/ú¿Öºù_þÿ¬þxÿDûçoýüoÂ?P~vÔ¿WhÿËößÿUì?¿ZüÐíß=<(ÿ²õO¸òÛyZ%ûúP~vä¯þfôýÑ&·îlõ3ïW`ÿbþÛóÇÿ1û;CûÕ¯øgÿøg þñ+ôçô¬ÎÙâwÿÞ¿_/ôCóÍÏkù(ÿüÿët^?´ï·úçü°>Åïxþúõþíû#õ¡Â÷Ëõ¡õ¿¯óÿæ?ÛýGòOaÕ¾Oý¿Vÿw:¯ûSóÂî¯ËïØä×~öwXEüaû5ÆÎwÔ?ý/õÏ?^¿àßQÐì7~Ôÿkù_OþPø·Ù=Ãð_¢Þ¿VîÑß.ÿé¯hïçßWåÇgÿÙÿ¼MÜÖàGãäô}Ýÿjõ£ú'MEÒ?¼þùüÞú×ûSÿ1æ[üdùÉê³ôþ+ÿ[ÿ-¢ÿ*Õ¾êÑûýHü§¼HôKñ7kôGýÇÁ_ñßü¤ôþô&ÿ觤[ò/Hrý Nôáó©"ù}Í?ðü1ÔßþoôÍ?NrüaË+÷gõï9@ÿ¨þøß1ܲ¿sô'Ûßÿ{G~çoÙß9!øëö÷æÿÞ±²h?Òüöûuâ¯çÿÖåÿ{<¯×/¦¿çGì÷`ö×ñ¼,¿B]Àù«ü¢õÛ&ïGõÛØþÞý×üìÿÿqJàþzýûV?ý¤ßãy9~oý»þè÷Íu¾Ïûwü;ògÁ¯#föÛ ýoõÓ +ühþ<¡ïëýg1§þCõ¿-|º¿É«ÈÿÌÿÍèû²üså¶ã2ïëö³Íoññ÷9íÁÙÿ|å¿«ýàÕ_{ø£ñjü?¿Ãê÷¶ùåJ¿rý^\ýþê÷xþê=ÿ;!ý£Óo +ü£þß=ó«Ê½÷·úkïý^ÿ±¯¿Hü!E?ÝMÚûùüº|ïþÊ/ýþ3ÒÊü»ÿìèO^ÿþ騿X4ýCῬ·ìÝÿvíæÃûëýëuºe?Xý¶§è÷Wíû¼~[Óß´þ@´¹ÿÒ?;õ¯\?fýÏýñúoH?@àúÖ¦?çõ#Ôÿó-þÍQ³_xþÉo~soù/9iòûÿýÑúû\$ýMýOóÿ~øHþgë¿~¾¿ÌNüùÿÍþ(³#?Xýy³ç;êϧýþ#ò?ü<¼¿£ÿ¹Õ¯{÷§ð[?Æ?V¿~¼ÿ¨ÿdñO÷ýÄ2z¿>hðúåß8ßÑ¿ ýuäϧ{ï7ù9úþtóýIã?:¿-O~dù½Ç\ùAàgö¯?¿Z4ùAß¿@ùÑáÿ¯ý±ú#ë¿Î;öSýß è§'äOGýþª}ׯϷô×ÖÐϧ[úg¸òõo#úé¨_IÄù~ëÿñ¾Oûwcø»Æ/½úqþÔMèûó·ÚüêýýÄü#çoR.þè÷gýû³Æÿ´ÿÙâ¯üâõëU´?×ûôKüߢéo +ÿ%øSúoóËåO÷äÏìùíW}~Í?óáOüç6ÿöH?ÿÜü·0IòúÚ/zþ½ÍïÕ_{ý@·ýÓòïqíOH~ñýü;´?ôþûÞâëßóÃë·ùÝÏï?ìÐüÓÿmýëà¼î¿&¿ç;üw³ï×å×?¸Þ__{üàø}¹ÿ+XþëÇþ/~¿ÐÔìçiîÏûßÑ÷¯ñ+¿ àÕ?ÿ!BúÓë·#İÿ¢c¿ÿÑü÷ã÷Áþ+Ö¿¾Hüs_ª8|¿^ÎóùmUú>=?Ç[ü¿×Ï»øcóÛªHÿÿ»üýÞ?ùO¿Aò_³ÿc~óÿýÁë²$¨ÿ^+ ?}~Rlýü½ýS#ò#¶úy~®ÿ?ÿÝÿwðÏóÿYz?¯ß¯·ð¿íÏTðïíß;}_Ï?ZüàÁÇêWø÷«ô}^? É?^?Kø£ó¿2¢4ÿ¼ü£÷?,÷äÇÿwéåï£Hÿ¤þ¦Í_óìîkú¿jð÷æ·yö;ï_Gô§ï¯ÈÆ¿ü<_ºÿ6iòæoCðÏêß¶þõr¡_TÿvÝ¿ô_ãþý7û ìÿ!óÃ#´dý±ýªÏo³þOÿiý@Fö¦_ç5ÿöï·ýþ ñ§Yóÿÿ´ùÿÏïÏiÈ +:×ç÷ìþ÷fÇÔÔ¸ßh~Õÿ;÷§óÿ,~y</ËÐö×øð#ñ³?ïïè?"ÀGÿé¤âÏ¿Øý÷Ãýõù¶ÿ˧æÿgÿl~zèÏùÉì/Ûv<¯Ï_m~ï(ýżܣ¿9HôGýǹÙÇûëýóà'ôOXÿ{¾%öúýAùÄ^ÿQü»Ú_®ÿïÀ÷¿#ý£×?Úþi_þþáO?Wôýúç)Hôöw>÷N¯ýÛùïýU¯³È¤þ< þé¨?å/Ä*Ñ=å¯>ÿ(%¤¿¯øçûcëË~;è/Ý~Ûûûâo$üñüÿ,é/Þ�å\?fó×½ûsÿ{ú££ÿ¥ÌýÒøIúG¯ò¯'á§Ço üÓãWyÒô¿·ÌÔªd?¸õûö³í/óèçß5ýI÷§Eè?èûÓj?²ùu«h¿³ùsÿ®ôïæÏrìSþÏooðØÑ#ømÿìñ|ÿgóCçGìï~^¹?ϯèûBþó»ÿÉÇ÷ëõëæ¿¾¯ëï`òïð}½þ0´ù§ïËô'~hþwBïï¨aþýlùãýõüÙÎ÷Ýú÷ãy}þWïý¿ÄÿK3Àÿ¯òé?Ïèþ×þsîÿÊÿ$üsÿ}øÏ¯3ú Îüv~ÎSü[ýo~»'Üþ{~¼~â_ïßX¡þéèßoù£üþïùþ§ù5ñ}þNÕã¯V?½ùE,~Ýðñ{·ùÑßä̯çoñý'Óþý¾ùW¦ÿZü-~Æãç+¿°¿©Åú³\î_uùcöôæç±þ±îß1§í¯;ñoûS<üÓøq\�ÿèûgcBøïÙ¢½ïïàþzüa_½ùwlÿIüÓ1?gß×ççþ ¿ù/ü)ýÿâÐ?×~=ócüÓëcEüÛ±?¸¢÷ëñ]Fo~ ±Wôýú¡iå_çAýÑê?&~Xýû3mþë ü±ý)¾üaýoþ:âw±HôÃãϱéÏÅ?üCjùÇ÷ßò�ÿ¼Íä×þ¾àÍoJæéè¿óüQ;_öû_åúmþë-øà§ço ýØ¿©Pêù(ÿ:ò7Pþuäol~s÷iöó~åYÒÃîà/ïñÓì?;Û_õYæýÎ_¾ÿ¢#þ·æã7ôs:ðþ~ùZêwüq;ÿýþÄý=¿ßæw¾ÁÿLãu?ÿöýþºúõõý:ïï;øï +¿M¢lñ?pÔÏMÿï¿Ðyà?cø[üÎÿÿ_ïßâwWüéÂ�1Ì"0nBõ+^øÍm�OZÞ8J ó~þûþðY¼\úÐ +ßàà34¸M Ü&}wI`áÒR� @ LÒç'[ãüÀ9ÿ@a)�a^A«qa@oPÅ ¼æØ¼òç� á Ö¼ñ@"÷FG+¦#¡=7I #áJÉó3_ 2Ûâ¤â�ÐbùéùKôÎ_©ð Es~ä</$K"(¦~/;É2PE0ø&>aÞÖd!c¢- 1@yëf;�ÈÒs4µ=`AL@`anÛd\abë(á6ìü@Ö$¢¼ ÍS^P0¯¤æ+ _ïÑMÄ¥m#ë°¸±LaVå &"ëI jlp½@ABl¥¤Î ©îê¼ÆýAÂÁü¬JÓ¸Ò4Ê »æP@Z\ µ¥ù D¸DHQ°Ì +($:´¹M¦ñµ1VF©" eD¸BÈ,i Êxö×È«2*sÉ*VVµÈ¨+H�4_·ó!©åµ·ÿÕ[0lÕ[s{kt-´é0Ü@vrBʸFsBT ikU2Àt±, À|gÕ*Ç|´uÆk|Y^Ê-}F!åËéįõk¾H6C«ñÙveùÈçøH^A° C²±gÝ;nS6Ü0$¦<þb¼rhc2O/¸D4@°4£ìôÑ[@"ÖG¡MÊ8>A1ªNA#èTØ:Ç©°øTMkuÜVî9V!óþ£Dì¶ìH¸qM¥:8`A«ö81ò°IpÀc4Ë=6I¤"¦ö Ë dud>b"Úc,>Ýôáñz¬U\¸( XtJĺ@GªdAÉÁ/ÒyÁ²j¤\XÑ�R®H z&ïKBL{¬÷Ù6vç ³¶½aAfu>¦¬ÄH M ,âgÑ à1Ø@vRë|v%1QÌÒ(ç*AÇ8°2ÔmÒÆ=((*È +BasjºgW§ØH¡âïò[êÜöçªsã4تÎ!HV5ý~@¥ÚößÜQ¦9jÊz·bçgÀÅ`ÀàÊÇZsFb$Ydlé$4C]Ë=ÀáÛÔØ¹Ío®åP¼qt{×"ÌDÁh(ç!¯do<!x8ßã[ãô².iûOfï[üñ|Iæ +@ÐáÝ/w!°h u0C@ÎXSÆ['Q_ÆÂYÓeÁr§GȺÌf1ylp-äi~IÛ tz@Ó^6LiÖÌ)àý�""k%/hí(Ã/ó=*´~N +IþÊ2=mÛBwy +ü¾°ØÃ)�I� ð,YT&¤£u kÓX6Óµi¬H*öDª÷äõÊ1ë ñ0ÀÃÀôÙ7gFqrÅ,ºDÀ¦ê.rDÝÐ4Í]G¨dJqòIÈ8<@ãC=�ÚC,¸°H`µ|iºôZËGQ¸ \QÈRÏÛ` z À5õ:ë3¸Pv"~ÿÙ*·Õ¼>ªj2 «Ê ¤gE&1(ÂqcnÉ^@á¹%Ô/Sǰ-ÇqUuì"4êõèHB\ÔÁ6]WpìÈò$ª"±ê~×"�ÌТ¶±Bw¬Á<Ckb#Öd¶ön·ÔÎQÏþ;´ðü=$Ni²Ê³Ç¸ò0sêöþã®Nu¬M 9e K¾óìG!`öt?Ì/ÅØJÛ1¼.öºã÷CÙÖÚhøªÈxÙA@ìXû!Î?äÔ¥âREcÄLÆs(k_¢U41 w÷ìU'&Ö?ÚLï´·eFèém±(·C_t0@« ê¨z((WÞl±�õÞ +ŰÞÛRÈC$°³b{[lÔÃùäÞ4A5á^õà¿x4zoËVõpö¸À ì4°7vC0!U¦óî£ÈU}�©°7ÏäeU£ÛY"]J¸hA4êÏ +K¸Çmâç8hëLPã=ªHu$)¶u´ÀGÝzþÌ_±¥£=wmzçÍaÖDѵ½5Ľ�+{sJrBæDS´gôÂ@Ø,R1 .ͳªÎIt(ºÅC¨KHåÊX.ÄÝV¾Klè6¤ü¹1æÜÍ+y¸WC9wóJç{rî¦CõêHY_GÜo0"Å·ü`×ÖöGo¦Yg)E7_sxAGp è©`~Åáû= æW8DÄØpqÌ6ût^*Zxß@uº¿ÀmÎÆ 2¡Üì¼÷tø<DÐF`{ ±s*N<¤ÇÌ+8^@o*±íå\ÙV3Q¯/ÐÛ4÷¦ôªÒúrxçs!¥Âr±cÜÂ+�z²Ì9ûD@pSÆ:krÇGVWÄ=ÕäS1ÍO¤JZ+[H.äuÈÐ:{^á ª"6ø"ï4तpÃòtβÂE¥BR ÑÝÛ§ì³!ñî-áèjs§©cÐ Û:<Aê6uxlÈãQC! ФL:4VÿåD¼îbPÈ{:¦{¥ÍÄôÝBCoÝ e(H{f&Ѧæ]È¢éH{GdöÎP\GgÐQl&ÕQ aõ1ÜYfQ¹ñn¢AÐJòGùp|1ȹ AÔ39yFÜãSª +¹I²Çy§þé:]øéæò®{¸@@Éu¼ïóæðb£ÓHû ^?°À\ØàJß/Ð bÖv¢V¼~`UpÛb4ß�0Âyɵøû|B ð Rêqn%(èB`}íYê~ÓÓòn"^ ¤üpO$RfhÜ6ußBã6jXB#£Ä0)ÓsãVÇ~ IÛ2?ðd¢<¸Ú¯x9ß@Ök3F0ï@¢E©ÙÇÐM8ßáæFku;åÓË'¡.[wÑ2°§èÕL=¾@¯f²³£Öh¬ÆBÎ'{v÷XËdc2 +hHoÑ©ðûuÛ�`£õ<�Ðáúâú3 ´âúéo?äÂÚ}Jèt?? Ò¬Û§iCÔO·:iu¾}=òHÇ$Aºéy¸»2>&Yêë¨Ñ¯±&wFè Ýgú(tfn}hÍÔE[%¤è@AÖ1K)aI&O?°õ×gÈ1Ûl£¦âæ²1¡¦ ©%îe(jCâeÄå89.Òx°f +-TR4ðAR&¼ËeäÃö�%ä[TìD÷©@LY-È 2Ù'h8Ê~¿hêÜ ±3í5>Ó«2u;ÿqÂ'÷0ÑiÙHðøÏ? Ï×Wô}IË\ø( $®Å ïÓYÀ:jqÚ )öıÄ�ïà]VJr"½Ë£)ãQ°ñ ý�°>#Aw¨ûUûÞèÅ@G£O¦Áô¿îÉ1kÔñäoÔÁL Ïló7úÅE7²&y|F�n[bÄ¢#®¡ª»Ðz/àK\2"BeØô÷Rs |Çp¨GdAÆ&xÈr 74{:÷AUæW¨(d<2í¨ÃH (³j±ð +R¦zÊ)c½aÐv¨xÆgfMS×~FR@oLmbü¨ ßÜä©h&9-Ã(=}2Qä ßÄàXÃàE¬Ht´»å ÒÌÅyZïÑ@é ØQ°>ôiÀö§ �tíOI÷tqÎPuìOÑ1:©\Ĩ Ƕc:è ÊË÷éØå<jÔ±1:VF²wÒ"ÑâkÇèE[lCy�.ºìç;£ÌVDÁDÏú5t7èáôØBÛó|BAÇö´ÓÀ`M!@h ® P®Y ß;ö¸US¹Å1D y£Ì*Ò�¹@,ª`2@ÇW(È`ñICAÔ±0¾I¢0¯muÈ+ÞæC+ÞDqùOÄGRKÖ ÀW¼Ê²íE¬'=csìª#@ú°#:0ͤÔÿûúØ(Úl>iu#ä9LlãE·: ¡0qJô0qJ*¡°àÿ�©÷(pÖ�À§{bÐ?|fãMÏm:ÃÖí^µ&Rz¶{ED_}Q i×EB/Éðà�2gôIëqiG7T9L|û6urD¯D$F:Â+PU¾^hhjÑø5 øTéó÷lb6 TumIéÉ!}ÿÍ1 ·¬îÁ ç</ÜÐLº½¦@@e$8aþâaá¥# Å$C<ëÜ26o«ü°tÛ³Öc�ªYáGÙÏ~Àïë#j-QPÜqN¸y®ÔË`5óË«úçAy}ý@yk.Ñ«jB r¨ÚjØ3äyPaÕpÀ£#3x@OSÁ4RqKÙOQ>Ï¢~mÈ +¨gn> O ¸ct[-û¢ÂÁ¡b{íCâV¶]ë.ñÖ¥9"è#Js½ÿ<ÝÄqiG w ö IÞqm6¡«LygÍ*¢Åf÷DVHzt©-t§µÞ¢=¶3H[3 $?g<AÈ£;«ÝYbc¯5Ç �oÍA¸c£b¬c 4);{4´ AÞ5DT¦¼ø#hlÈ ¦c(ÈøHÄzýR]U�°èH ¶=¢POd(:* AØ5ÅD!q¡A ÒM,¼HÓæ]9{xíôK:c (×ç¸Ìzö×ÌMìíu/Àã¦XcÞÑäÔº¶ÚÚÓ§_±¦$`ÄÓ ^Q¯|ãéÝ>`9¿ý�PgNoÊâ"Þ©E(Ï£hh_BÛ´~¤ +FEÎ÷iýJ´{:/óµå)ÁI6¡òÎw-mlvtÒ0]ýÁXβùáPwÛöÔ52z¦Û$7 ¬Òe © îyÔ0@}Ã4©DLª?º�5ç§4ßîa×?%éIY½XoÍ-¢(&î¥Iä6§,GZÑÒkNYºglZqAG%Ýa {õGE|M½wÉòË÷ôe1ñ-¦<*ÊZæv èÞE¡¼ Êæ¬ºTHÆÙT×ÁZÆ`n6U®®Î̤ɩIdõùóô ´Ò÷¹IÔlÂìÀ!&9øypìmÅ; Ã$ªà|Id9ìLÿ &ÑvDCoòûé|I4k8ä&Ñ DÒ@I¿¯D1�öÌKQ"b>9>k öòØðE.â{ù²HÃNÊÄy�Íxkæ3!+Gf5++¢}Û|Õ èV£fwËX¨( Áâ ©`q¸©KR(Ð'ÏGÄÆ=ç͵ÉÎ#^TÞ£¬mߤYæô±H££hÊâME·v×{/ÀþHO[YÏñh,"ù*þ�|D â#sX0ÎúJ,ë7u¬RºK4Hh5]@T¬r²(òY\j¤I�'ä×ÀxùùV^sx¯ÈÌ «Ë=FÎó¨Ylçö¯:ÃëyÖC4iîÊ¢ÜtÎ:¤ñ^Õ»mmýö#VÕ>Ï+ͯmÈé|GËkßïhw4»8u÷}_Ázµ=". +ùf¸¡PNá¶Gä9 ¿Í,WPÈ[fW �4Äaê4 /Øã4É£!ê ]w¼.;Ç:^#äB`P«ùç?{l7T:ðöÞ!б÷¡@oÙK3Éïëë ,ÿË7 +ÆGº\ÈÊE8Ü'BC+îöpÈûEÑ:Ú'¤L "Í,÷ ÀÇaA"åH +HêllÓÆ]6¦ ôÚX}ú}ÃcöØðÈ=üê<ÍѤѬYd4Æ2·Ã²ì¦^@r_-§Ð$vg£�,ÈèhYA³y|a¾![¦É¾ÙM´Èh=Ý-26$Þq@öѰÓ*AÎèã9s$äó¬Ê-m³¨M©olÆ~*n}ÖºîkSVÓØ@w-mï»çðµhAóxÞ%÷=µO`g ÈÊ"úÆ8>²Ï³ùs|:ÇFDÇèXÌÖö%o?ð Yeq'pTóÈ +^ÐþGЫÃ÷Íè´íòB»@ôL:ò2/`öx®a #\¿ ¤AHÌzSFqp +I éÃªÛæ +øæ÷¢Ò�¶Å°ðÀ"Ñ�õÎÛ2²3 \´)wï± Ò«á2DaÇ21üÝ9µÑz>I $z´<Yíiîàg 4ÂasbYÌÏ£(I#+�£´ubXéA¦UÅ´YÊ +çõÁ RM?=»iE÷bÖ2)Ò0/ÐÅ"Ib:(5çþ$ôü¿íO9A@/)ÍPwì}¯EfdÑÌå\Î$[îIT*Ñf½Î/uÇ]Õ¶KlÔ¨¶]b. +Ýq×Þø¸êªqî4Û¸jMøDMJ}[(tAß,ªÏ4pÆ,He©²]gô%Êf«Àh×êtI$Ë ú.®}$KNñ@?ÚD§¦CwÓg[¸mÁòàôݺÕÁk[eçWé<õ-ú 8ÍÛ|úïØbLapCh«1 çoÐ$ªòXúAGhEDÐ$Ö>Ïãáë¼îQaÃTh»À4$Ú×q9/pëóÃØ}`µOC» q à®ÓrF(æ_ ûK×nùÿg=àÃǪVGÄÙHï2±Ae°ø»çI|` l¨{§ÑÖº(dîyh¨`&ô}AØ®rÄWßwN¯ä}pç5AyÛÜ{{À;Êm¢âå(©2`ÉQPUl¹û¤d|ÖzK&ëvYMkF2 #@c]FÁÌË vï<¸cHêM!°Þ«*HÞwBB c|A ɵû**_;¹ØÊ-÷_¯Låò7@Ò¤´|"izI5HÙ8# ¤9b¶'>®ùàíQ¡mÝ\{øoäTu0a)*:«¬¦Ïó+ÜUV;ÆÖ< ÎNØSÿÓØì}ÕäÍÁqVYMÎ�x¤ð=ÝͳÜiR¬± ª(`û/Õ Ág ðÝ©Úó'g~÷Ì;ªº[y1Uu.>Oäâw ´ª»-ØP8VÕmæipmF§¸4]&!Áa³©]R¿vFOè(ÿ°%GS,Q�}ÀRÄ",÷ØxølÌ2÷âÐ<óxOFë¸õd)_Õ\<±p ??xw$ákv�$B}VÊÅ{kÁQ³(ÛÔ½Þ2(RD¢¼$íeQÊ¢U4 +YëR +r%Í[ÆD碵x�´(WòmRIµ«YxA5kð#Ëyk(ù®mÈFò,£À}tÁ Y¾·&xªäSíäXPï:"{¢Ã»¶"¦~¿ÀÂP뻲¦xkBQQ@ÜûYCËtϹÍRFE#b>·�~_n±ÊE³(iʶ '¶ÜñPíEhöãè�°Æíüg·¸Æð`s¯ 72ºÔ§øtîÛõ (V¹pþ-¾áðóªîãù&¡õÙh@QêÉ´|ú¾¾Ol 4( m,¡A/:â17¶À 7¶àL} ôÁQf"¶¨;dBaÇíD&ds [<`}>°=ßFÃ|®!¾:"¶Hÿ6wݱ²¤Ño«( +it¥"9ÜÓS«t$·¿6¨ùt¬ÏW]tø$S¸4AeܱªsÑkì¨ +ù¢í R1ÉGMñ¹H"UÀ +/fIó¶¨õýU]Ê~ j?@_æ×ä âëþçäù[¼ý@IOR¾³ÌIJ¹H4)ËM4AIØqÖ 6Nu½§Íl0¤ÇFt~ÊDyGÂÌQy|Dê¡I(õØdH¨ôML®K²nàd]%×[nEÎPQNæ6dÙ""À®íå481«ö꼩Xê³7dÑuä<|Ä.ЦR2)½%LÇÖm¶àXtÀ¨¸Í/ mÐòñ|Ot /Ð- +ÛÅu:¯ÏM0*,ý`^+@}*¤96ÇóúÒϾ¿@øË fÁqqG�á\Mh [ÍPéCXË--åëp¸pmÅ#Ó×Z^/Èß È Ì|ß%KxÝàmûJãÔØ ^%Dç_û_¶ÉÛþÓ ®û_ø`Høè ÄFpÓçeÛ§Èê8OÑ +¢9Kr8Zõ'Hh¦ AÚ¡)ö�z$¾w!V$ɺúBTUÂæN,(¤ßÓ.�r6×1ÂäÍͪ÷d1õ¬"º�ÄÁçÉ g9ÐáE*b#6èi$ïÞªØ|9öyïÃÅè¾-4h:Fò¥Ø¨#ÌX%ïÊ$ YI¥¤ Dr Z^}cS%¤H* ß< Aú³g£fR×4Þ³Imm {êîö3bF²¨øà(Ètï~VAH °Lxñrê[µ-Q1ï.É2e±ê=¼p¤¢k¬zÓ[{ÊÖdñî;w¿`$VmÝ%§ór!a0"<ïØ´½ìçCÚæãùUã¦MP�Xx`�e@Â;e�èY:ñÚíz ¾t¢VhkEسWÓÊGî©Í¾A0T-íéàúö! êåV?âáúöqBÐ÷jÆÑÀ¿¯·5$Q +ðò 1½@/@]Û@OÌQ ¯RæÖ ËkÛ»á "Joô zS5}AL¨NQ1R&Fh|fE\ {Ö6UÓãB>v#JboÙÆ\wLÔe@²ÖÄ s;"Tezâ?AcHolI;ãÚØ O²tYʯ5ç[MìÇtõ¾o )"Ûô[ñÈ äpÏÙ«?F¸ "ê°g%=}{µÆhTp /Ø`NdImºñl®¦È|ôzcFÐz>Vs©Ð+$¹EGò=ÊÇoYd4À%Ù éÞ¬iÃrëN_Ö3×sÑÒ�C²5±×Nt[emHæÛÛ2;ãÝÞylßÞÛ2{ÃøÞÙÀãô¶ÌÞø§·ev'Ñ9½-s÷#ëm xs2ù¢¬t]jÈêy|@.Úª'®8зoC9%RçÚÌr<º0kTHýø¸£=&ýC3x¶ðÈGijJ:Gä(Ñ�OØÖI#b]o^`löGRe1«0"t&òò*R1«e1oOÑî4. X¡:Ó{¬ÖE u¦ -(î)¬ð½â("º@Ïè©Øöv,Ñöümzzjï8«³bÈßúð-e6ëîñ¬Ys½§Ó¢Ùµ4L¶ c2fA|Ô1·Ìèûz"mÌb6;dÕìÞ]¢$�ؤCÝyBL¨7fUQß4Àè£;¢µ¤ùº*ØË7úUÍþ]+Z¼` Ç.ddNèyç½zcþ< ¨Úvã~·ÄF^ÿªþ�[¢Qov/wò਽5${S ÈÖ«ÈN£Èö�GE¶AîIC¹Ùó"óÀ{;ô�Yì£;º1`KGf��qÙstF àH°ÑYá÷õá°«�Ö¬§ïøØ¬»|åK-äóBD? +ª¶/"NÏ}á!Ð?îX.8°ÖùÕÚñ¸Á{k^þBbGkG\еU±³ÉYä#@váÄå¶´^%É5qÉG{BQvÁvGÈȰ³5gT <ù$QHË'¬¦9÷ÎÅlF¹ áé S^1k|èmíðd!ê6çÞ �«^¨ ¹ÙæÆ h?À'sÎõQ pd¤N:fBîð"¹ws¦ÁIßæ¼%Ë÷êQY¾WÊò%YG®be¢w. :ÆDÙ¨YÛáQ³rámþòµ PëkAã=*ÎQ4(X¿m~¼üÙñûø³³ã×Üóï¼G ebÍ)Zä3¾ÁEQÌÍ¿<ÁàbRÐ'ÌõQ(å¥ùͽêçd5¢{Aý#ßG#ÇZí.ztg;²´îâ"[FB,ν l}È Ø1åw÷ñcïd=ÛþT:ñó( $X B"f-U{_,%*¦>¶ÙöG*¾úؼA¢J ä%è=ëKQ>ËÁy@\�¢4Zðé]%È zFR�Ðú�RÿÚ +S|ï8 R&»@EL|£B ½^$ÈxCT M¿/7¹x¯`p¸¯% \Þ¸8¼ð±ë8TeJH`Í ðùèzÆ`é@ðºn Ïë(Gga%à)Ä{º$|.dó5EAJ_`±N÷©Düy1é( ¦\î¡ô&ÇÚf�hQ^#î¯þòåÇH²k,Túø ÿ2úV�_ã? sJk(µMeúì^ɨqòôyBe70m°xÎi=&Æ÷:ÿú«~ñËð#üøÕ¿=<õíü'_ÿò«?>~;?8gúËãÿùÍ¿ûþñßÿú·úÏßþÃúÇ_þøËüù7ÿ÷׿ýÍÿõÿ~üÓ¿üüû?üáÇ¿þݯÿõïüòëÇ¿üþ·ÿþÛÿøùÇùñ»þË?üâûÛß¾~þÝïÿóëO¿ýùÿÊòoÿñ?ÿô~ñÿÜÎ}ýîç?þáïüêÿôß~õ¸ÝÿïkL +endstream +endobj +8 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 588 0 R +/Name /Im1 +/Width 74 +/Height 81 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÕл 0@G)\fBOGÁ6Ha4F`TP¢$À2%.¬kü)±E,ùLRE Cr5%¨kïªUKQ&6èUN +Pª:â£Zíµ?ÌÕ÷Óo3~*ÁKêiw{z +endstream +endobj +9 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 589 0 R +/Name /Im2 +/Width 47 +/Height 54 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÕÏ¡ 0 áK:@Gè8·I»QTà òDÓǰÀzæ§(® ÉdQÌØ«C¶S^£¹§îùHÝã¶WB} Úõ dû´üBÀb>Æy.íù +endstream +endobj +10 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 590 0 R +/Name /Im3 +/Width 58 +/Height 56 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xµ1à E]uÈÈrªK\«ª3GÉ3 o[vªVolÝx#Y3%3Wà60qÉ];%ä&.5HªF˳Ýá-7Ó@1KÎÊ\¦þa6+²±þWy£Nÿäw_gßâC?Ü'÷Í}_ý÷}Âö¹ ëlnÏÇë½2\®Ú +endstream +endobj +11 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 591 0 R +/Name /Im4 +/Width 103 +/Height 54 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xíÒ1!Ð1{naËqlí5aoà ¼ Gá)ãüÍÆÊFOx(@¬�Uá98kr6LdC²e!ÔA§Æ¦A{ëQ§vÓ µb¢·"�Á{Î+³n¼ñMâòmÅ0Ôwèò!ÿñKP_ÊkÈß`·=\öOeÝB¨ +endstream +endobj +12 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 592 0 R +/Name /Im5 +/Width 60 +/Height 84 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuÒ»mÄ0Ð0d jÄ +pêbì,M5¸ÀÌñþtl%vHî@aC@ Ä +¬â¾Ø«|>ÁA,<P~$©E*óh%Ê EbÔ,v1Ûå!.DUq·/nOûM]_ÎùðgHØ#MÕ"/-©íµPж5bvmÅ?èX4èyè^XÕáiÀ3QxíÐâEWîq&3Ó»Æåh"éé'l®}xðëÃóoyÓ§ÅýawÛ¯ÙÉä2þ¯ Q. µ*Â9ìvÉ6àÊ=Ihã|,C»l×qÈZÝ*àíãëûýNñ +endstream +endobj +13 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 593 0 R +/Name /Im6 +/Width 27 +/Height 84 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨g``øßÀÀüÿûÿ`ÌÿÿNSRÒÇ�ÒO°ÿÀðÿ?&fb!ÿÿÿÿ�KT_V�±ñ +endstream +endobj +14 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 594 0 R +/Name /Im7 +/Width 65 +/Height 77 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÍ1 +Ã0ϸp©'ø)"uÈRÈJï§ä 9ÑfïäÈÆM\ íV{§w¦\ £xh ODQzz¸zÀCéÜ 8³ ÍOkñoÁïwHð"ÿ÷ßYaþPA·EU¨rh(ËX¸÷<z +[¯Üé +]j2½AïBkSL®át¹ÞÎoÑzY +endstream +endobj +15 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 595 0 R +/Name /Im8 +/Width 28 +/Height 83 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°ÿÀðÿ?&fbQÿ: ®¾¤ +� ¾° +endstream +endobj +16 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 596 0 R +/Name /Im9 +/Width 52 +/Height 56 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x б à ÐCÀ)ÒD, g©ÔÂ),~î0E¢D ²ý,øØ¼UpdÛùtfFál´5.í(èæ¬# 6Ä17ã%¶hg5'ôÙ'mQô2^èûÅ_i³Eÿ)ï�>ij®ë(ð=è´máQ¬¹ UÊòCAÖÌy¯nÕÆLéhgî<¯÷Ëæöª1 +endstream +endobj +17 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 597 0 R +/Name /Im10 +/Width 60 +/Height 56 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÑA ÐiXtÉ L¯áBC< ì¼kRo».¾jÔ<ΧD(j�ª +$2`öÈ"®rY´[$¬"^jiMÝûv´_:9Ôfò¦GMÞ窫HÖkï[zÙô¶Öì-Wè¹âfýù©ç¦~~×=ö>gfоþXÖº;0X¦Ì'qúa) +çj¡ù0zùÃþr;=DÀ5 +endstream +endobj +18 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 598 0 R +/Name /Im11 +/Width 42 +/Height 77 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÍÑ!0 á.;Â< 'àJcGçaAx´ ÉHÈ0*>Õ¤É_¢dÞ ªyhUwÓ«AUFõà!4¼ö®Ëä2>Q@Õ¤I¬CæoX]aã3Å*¹¨âÒß�z +endstream +endobj +19 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 599 0 R +/Name /Im12 +/Width 66 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°ÿÁÀÀøÿ�Ãÿÿ?ØÿÉ`2ä}Á!¨2ìak£Ä°ÿÃÀðÊ`|üÿPÇ?öà È�fßb�£æ?3Áøÿÿ?0¡þÿýÿæÿNæÕ[½Rà+ +endstream +endobj +20 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 600 0 R +/Name /Im13 +/Width 44 +/Height 56 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÎ1à Ðe`ä\ k¥n¹VJpªÎ #xd@¸þ&má)Øì*8t&@íÃîµbçOjØìXm�G2òvñTÍôµ\¬®X:\UËy ÉDe#ÃóÌ3oW/6ÕÁ ¾iSyòuél¸IÆÏx:ÿ6]2ó²zòÊWÂcÌÔ£Äå=0S·Çë}ÿ�G, +endstream +endobj +21 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 601 0 R +/Name /Im14 +/Width 66 +/Height 83 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xíÑ¡ 0ÐK¡£4Á"íf`P�Ñð)G)pâçÙÿ¬'9àô�° 8ÚÂk`×%³ +Z2xÒÑEô'Ì=©¼H ë!˯Q18eÝÕnÅ!* +endstream +endobj +22 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 602 0 R +/Name /Im15 +/Width 51 +/Height 56 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xµ117JòGÐP ÝÇWQç)~å§,k' %ÍHöÆk/¸B¯M ù�²°û4Ô˦zú -z¦¹*³;ÊIª7ª U>4°Ð±àÿpñó7²ùòé!Î"P#̲P·Ýb1yõ ¾bµ=ä±GòÚé|½_MW +endstream +endobj +23 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 603 0 R +/Name /Im16 +/Width 65 +/Height 84 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÕÑ1!Ð![PÎ8 +±¶õ8&ì ¼Òv[x:K·bÃwYq4<3^'òøîðÿl �:Á¨`äxV¿*Ò,u +=ßËj"ÙòñÀ¶^½Åg C|T??ÄÊ5V^^ðH-Ù%(ËpÓ0SËyZOEÿE¶c%¾ ÕéVì3P¹(iÉrÍÍnÚÞ�p¹ù +endstream +endobj +24 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 604 0 R +/Name /Im17 +/Width 79 +/Height 81 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÒÁ Ã0P=7iFzë0ÜÑ2BFÈ9úFmü*¥,F ºÇS/D«Qb2ÔAÉPÏWÁQ9j©âzOµ=¸ +@Ê»¶øS-÷XO¾þÿèK7WÃoÕP9] ¦û ¢¡uP®Ûg(UÕ÷li´Ôßéñ¢áQ +endstream +endobj +25 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 605 0 R +/Name /Im18 +/Width 64 +/Height 54 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}б Â0 á³\¸ôÙ2¡c©8;1@$±DÖ¥Ç=",!Ü|Ò]q¿ ß_ ²ÌQ°«Î´Wê¤#:ªPu×ÑLÕÓD×C«:i§ZºÒ$^54Ð,*T¤|¨ôo'ªAcÌ)A¹º=T½7:<bu+ZlkEoÆò#?öÖ.·úÔêbÕòìùt½]^Â; +endstream +endobj +26 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 606 0 R +/Name /Im19 +/Width 66 +/Height 54 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°ÿÀ ÿáÿÿ@|�Ì`q@þÿÿòêÿöòÿÿ¨aÿÒöá?ññÑ�d|>�e|o``G0ÀF3@ÿ0`üeÀÿQÃ$Ãp2«Þê �FfèÎ +endstream +endobj +27 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 607 0 R +/Name /Im20 +/Width 69 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuÑ1 +Â@пd!`+VV©ì<à9$[d9baikçaË!ãDE°30W _:^Zà>h'+Í�÷ X%q}WÝwüpÑëîw�Ñ(kÌùyÀÒØ¡Á\ëjèTò4Eñ0Ç4\=(~¡Ý÷ab¾Ü?ôSÅf}8o_FC²X +endstream +endobj +28 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 608 0 R +/Name /Im21 +/Width 18 +/Height 56 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcn`àÀ ÿEðæÿaýKuÄþáÿÿ$dQ·]��r5J +endstream +endobj +29 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 609 0 R +/Name /Im22 +/Width 31 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xα 0EÑk} 7(,éWQV óJ@/=<G taA¾Pòé>¤(ÅUÙ¨¾¸6e9i:\ýÂfè¢Ùoצ0Ä fÆ)óô Ùºõ«Ïö|EßßëNÐ, +endstream +endobj +30 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 610 0 R +/Name /Im23 +/Width 41 +/Height 58 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀ�ÿ1H~0ÉLsdóû? ò=üx@¾ùsÿæï òüÃÀþ�FþÀ ?$Éþ\ÿÿüÿ¿Ô´ªÛ©�ï¯i4 +endstream +endobj +31 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 611 0 R +/Name /Im24 +/Width 38 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmÌ1 +Ã0ÐÕbð)ÚZè!âkuh±/Ó{ø(:Ç&®Ò¥T7|ø¢�FHÀÅR©Aô`Ú¾ #Va÷l°&5vËhóZ3Ä»ÉÉ>qö_¦ê!!Ë:§º¬sÔ4-ªÍp½Þ^ïû:8D) +endstream +endobj +32 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 612 0 R +/Name /Im25 +/Width 32 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]α Ã@ áÿD]¼@ÀnLVH[ÉÙËdåF¸RE£+B¨x< uX\ª´Ô´& +>î¬,Ü·¯láõãè;ÿ¬Ûºè¼#Ñ«q㤠³V.©qÃY0©ñO$LW{Ìoô/ +endstream +endobj +33 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 613 0 R +/Name /Im26 +/Width 18 +/Height 58 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀðø?00>Äþáÿÿ$dU·S�)yA +endstream +endobj +34 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 614 0 R +/Name /Im27 +/Width 50 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x1 E?¡ ôÞa» '3p¬-9G ´0~mlæ yóIrrå.0ð1?q-RÛ +ìÞÂøê³G;³.ªk«Ä,¥,é>�|h:õYM1'Ø#øø¡"ü=ÌIbÜnRÖñüªÙöó]~Ó «Jq +endstream +endobj +35 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 615 0 R +/Name /Im28 +/Width 41 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀÀþáÿÆÿ¨$ÿùÌ`Ù'ù1H Û!äû?Ê00üaxþ¿Áù8ÿß$ÿ�MÐT«[¢�t R +endstream +endobj +36 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 616 0 R +/Name /Im29 +/Width 28 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc ÏðÿAýÿ?øÿ¸ýÿsöÌÏø¿a~Àü¡ù +þ@]Ì4óÿÿp,£Z·D�V6\ +endstream +endobj +37 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 617 0 R +/Name /Im30 +/Width 37 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÁ EáÀ8Ų{0 +#pä¤þàÄióÒ6ý¿Å\»l¦@SL56ãqIé ìÑ$¥#©ÈÍ´¿²C~u8÷ký®ÓÉïDÕø;K)yçú�¬_;f +endstream +endobj +38 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 618 0 R +/Name /Im31 +/Width 53 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÐ1 +1Ð [lv»Ba¯eerÏá "¶væ[¦XòÍND~ª3Í0R�'YäGØ@5O&àµh<Vͽ( 4s$.iìBÆLUc +©K4>94v!cÖ+1 @:üÌoËÄ6Æ¡aþú2k!Ûg ûÝåvü¬Àið +endstream +endobj +39 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 619 0 R +/Name /Im32 +/Width 46 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿüG"ÿ00Ô`ü`ùdD"ɬ$Hò!r`²HþÿÿÃÔ ëb<¤Ø ¸H$²�ü�ödìÀáð&I=ãÚM&�/h +endstream +endobj +40 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 620 0 R +/Name /Im33 +/Width 46 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x¥Ð1 +!Ð/ÛHlSHrnS^)ôP9ÀÅ#l¹ ìįl ¤Lóafø3Þa Ù"ŵÚ<ì +q]pªHSÅèª* ªn¢êNk3ÚòÑ·¡C&j¾LÃýaÈfäé{Îá£ç¿÷[ý®¢º¼W-\ª3ÿ`Á\À±AA¸°pãk~ªK? +endstream +endobj +41 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 621 0 R +/Name /Im34 +/Width 54 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xϱ 1ÐQ¤Aº)@PÝJL2xÉ·sR®AæEV«ê¶ +Õ 73gã"N1¦NÝͦoýLÆ É§{¶18°"ß7b5±>mvøKÞÁÑYÎAÉIµE+ÆTî$Ö'-¤-x»¦÷ã·v@ +endstream +endobj +42 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 622 0 R +/Name /Im35 +/Width 29 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]˱ à EÑ((ë&²,2+y`oÂ(_º°Á¢Jq«÷ |Âñ&%¨T©A×â5â,ã4]SkíqÿR§Ë°~RøJe:óSú ?ñú¤ý}úì0t +endstream +endobj +43 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 623 0 R +/Name /Im36 +/Width 25 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=̱ @DÑAÆÅHÜmÁ¶âN®jÀ\ftë1 /Ù¼¢öHáÉÀD/ ùTö[Ü`9`ô$à»þ¸Úà¿-%ØFý/Ú +Ú/t|lâíi1ÚÇüê¿·)/Ë +endstream +endobj +44 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 624 0 R +/Name /Im37 +/Width 34 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmËÁ Â@ á?äã6 D° ÅÉdçfv2v²é ÞCÆÙ ¾Ãã=Bï3$]àÀr¬¢A²CEØ£ó@þ¨ôKtin¶oÙhclý'}q¤Zá\-ëíò\ãñþ<}�}AO +endstream +endobj +45 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 625 0 R +/Name /Im38 +/Width 26 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc~PÃðÿáÿûþ??ÀþNþ�ó(þÃßÀü?P³ÍúÿÿK)Ö/�¢¯0 +endstream +endobj +46 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 626 0 R +/Name /Im39 +/Width 29 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÍ¡ 0 áT¬Å&°�w+1t6¹Q:ÂIDG|îyÈ zCëJp1ñؤ,®/BÙ×Ö\?} ^3}Ê,É£±Ji_Þ5f´ÕâÓvT°) +endstream +endobj +47 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 627 0 R +/Name /Im40 +/Width 38 +/Height 52 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀÀÀð`ÌT"ä�úÌüa`þÜPÃÀü¡ùøÃ`%~À4%Ø0Ô7üÿüÿ¡fR·Y�gN +endstream +endobj +48 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 628 0 R +/Name /Im41 +/Width 23 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿß0büÏÀðoÐ ÿaî7®Û$�Ï@) +endstream +endobj +49 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 629 0 R +/Name /Im42 +/Width 38 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþ áÿúÿ?>øÃðÿsC ûw:æ â=ø'>Ð`ÿÁPßðÿÿñÿbÝm�#²<Z +endstream +endobj +50 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 630 0 R +/Name /Im43 +/Width 24 +/Height 47 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc0``@F0ôÁùûùÿÿþ3Xhı3þ`"?|u2ò?ØHèׯ�v². +endstream +endobj +51 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 631 0 R +/Name /Im44 +/Width 16 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcoà? ÿ�ù°70`ìþ!ÿv!ÿÿ` `\·I�çÜ,E +endstream +endobj +52 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 632 0 R +/Name /Im45 +/Width 38 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀ`Ïðÿÿ$ýC=3H¦D=*ñLü`üßÀðyÿ:vû?òÿû{5¥ºÚ�ÁK6¤ +endstream +endobj +53 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 633 0 R +/Name /Im46 +/Width 33 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xα @@Åñ»\B#§UH.õ%UlÀØÀ.&°n¾?rZ¯øUïË÷Ò»RÒH.ÒÁ³å,dPBF°zÌ °A-xè!À)Y>ÞqAFr©i«/ËCÌ +endstream +endobj +54 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 634 0 R +/Name /Im47 +/Width 38 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xΡ 0 á× *»8}ÑëNPFé¥ ó©Ëû�påX¡°¹BRG0¹°É¸ C¨¡ +éå +^9>ãÛ�·½§ÁWRã¡Ë6 +öD_¸DçeNW÷5 +endstream +endobj +55 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 635 0 R +/Name /Im48 +/Width 37 +/Height 48 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xα 0CQK.R2 d30JFÉ(¸"â8 ¤yå·)1ÁÄ +lË +Û1"`E¨h3ÍMq| þ è7P¨çï¡.@C·YÁÕ¯Q&8øIPÇ,¿éqéOÙ[X< +endstream +endobj +56 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 636 0 R +/Name /Im49 +/Width 76 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmÐÁ Â@ÐY«r<i@° `b¶�«±-ÃcJØc1ßÙvñö.ÿ3"¡qù#+@`fê¸ýtJ ¯EAÅÛºý¢.C5<jùDÛ ª¹DÖiht=JhU¤á[·¦¬jj2®ö;ʨ6©fËÖeͨ&ÌQõQ]¦sTmÏôbª¦Þ.7UÜViÐac9ê_O*KsñëN%Ïûþyù�¡i +endstream +endobj +57 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 637 0 R +/Name /Im50 +/Width 37 +/Height 48 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUα Ã0Fá_¬&Äm +ªéT¦Ë*Á¥«è6É*7³AÀ ÆÎèi¾òñòA¹äF(ìzrBl8UvÀÊÉ 4 +¼�=s%¼ÉX¿Bø +n7$ýÇÜH±±(l8iÎÊæatÊY Ý øþ×_·»>5à +endstream +endobj +58 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 638 0 R +/Name /Im51 +/Width 44 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿ?ÿ@p�L~``þÃÀþñÃ?0Y&í@¤ü0ù�Dò# ÔCÍ90¹a#ûF°K@dXa�Hæ òÿÿh¤qí&�GO^ +endstream +endobj +59 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 639 0 R +/Name /Im52 +/Width 33 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x± À EXX:@Æqlr£8¥ ¯ ©ÇëÞý«@¼zÈê+¦àÄT|¦àPDHìKÃyaè1ÿÀGÿ&t#ÓñbÛêVißSº¬éÜnÕÝ- +endstream +endobj +60 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 640 0 R +/Name /Im53 +/Width 32 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨ÿÿì00È,¸ÿc`û@À`ÏPÀPÏ`ÁðAñ?óæÿ@m@_(ÖnR�a+<¯ +endstream +endobj +61 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 641 0 R +/Name /Im54 +/Width 31 +/Height 52 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcàÀÀPÿáóþö@ØÀ|¿ù<ã¶g`üÂv@UuÐñ?ÔÀØÌÙ Â0÷Üv'Ür;Ø@¿ÈÔnT�R® +endstream +endobj +62 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 642 0 R +/Name /Im55 +/Width 31 +/Height 52 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5Ï=Â0àeðF.ê0Fɵ:@+qEâÞÈÕµ ¾ÅòÏ3B֨ªT|»ÀÉÈèOé$W',®q÷5lTHmZßpÚm§ÉQà«Õ´QQ Xûî 4"üáë^HéÔÿ¢õÄÇq-[(¾puý÷7ðýùºí<He +endstream +endobj +63 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 643 0 R +/Name /Im56 +/Width 29 +/Height 52 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x̱ Â@DѬØÔ 8£$·B `ák¶J¸ðtÇÉdhõ¤ fÆ |¹ÖàÊK²ÖñWv.XðqäúvbtÏt¶«ò»Ô_¹ªSäªþíÃãÌíñ¤D+læÇÄþ4=o<:;ù +endstream +endobj +64 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 644 0 R +/Name /Im57 +/Width 9 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³a¨cø ÿêl¡¹AÁ¡!S¼ª]�T +endstream +endobj +65 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 645 0 R +/Name /Im58 +/Width 53 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xåб 0á?X¤LkeV°DWq'Pgr7#XZÏX9ÅñÁqÕ©ÞD=õSÀrýKùZXúÃà +#Dc7'Âð;Þúâ ØØ]Täû®Ä G"¨$ò±M3oÝ#OKï +endstream +endobj +66 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 646 0 R +/Name /Im59 +/Width 34 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]Ï» !б6 ¤$§.ÀÙÑMQ.Ü%3tãóG''OË~@jÜFÀKz #@L3üfãDt ü3�{³~Pµ¨N^D#=d Qg²+r®ß&À¢"¤n±Ö=aGû¡1e£kç¡í½÷äÃ>zà9¬£ -ùj?çûécäR +endstream +endobj +67 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 647 0 R +/Name /Im60 +/Width 51 +/Height 54 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmα 1@Q C®Iâ6W8¤HãUn,ÎK¥÷(ÁåGIWX×ô NVÛLûËW9wÜÖsLWÌÂ,%hLöL¾*ÁM='À½qOdD$E�kcfçx¥é� ªp+Jà:¿?C¢Òs¼?Ï%Q? +endstream +endobj +68 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 648 0 R +/Name /Im61 +/Width 60 +/Height 52 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuб0 aé\¸d/2¬�±�°G ¤ðåE²áξ#.ü©ü%" +åw)këïÅÞÈ8nuHßâÖÚm(ÎÅ0#WÔsëÀÈAo*¦3è ±UâÄtª¹H¡Ö9ð²SQ©Wòl£J15¨·ÍÕÁETÎYAgÑïÏÇgyý�/¼f +endstream +endobj +69 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 649 0 R +/Name /Im62 +/Width 43 +/Height 52 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃ�ÿqü`Ê$fÿSÿ¿ýïÿÿØÿàÿ$�%Øÿ30ÿc`ÿÇÀø¬þ RÀPL> D2b&ܽ7@Üóù<ÐmÁî<�vsбÚ&u @Pk +endstream +endobj +70 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 650 0 R +/Name /Im63 +/Width 28 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-ÌÁ 1DÑtt¶W¶kRT¶0`>x»¥´â²¿äsc8ª£r¢míl=ÌTɽÃ$õϦVLXP}ú³ÄW(Çë|?dG +endstream +endobj +71 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 651 0 R +/Name /Im64 +/Width 26 +/Height 47 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°a``@Ç5Hø3B13³±üÿÿ ÿ0;T|Ì|�'þÇÞÀÄÿùþÿc`°jàÿÀ ¥_·N �H<4 +endstream +endobj +72 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 652 0 R +/Name /Im65 +/Width 31 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcü!ßðÿGýÿ?ðçã?ÿÿÇÿ¿ýûvCæ?ìÿ°ÿcH`ÿÃÀ@)þÿÿ +W¬[ �O²= + +endstream +endobj +73 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 653 0 R +/Name /Im66 +/Width 40 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]Ì» 0ÐA8ÜÒAggB'¸-Á¡ts³$/ê02PÈ ~cF±$`Kº¨Ý(!&ʧ 0õ¨àY¹¨¹P.ÚfÀ®GÆ8¦_ÔÝJãGQ¸oßóó×"WÉ +endstream +endobj +74 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 654 0 R +/Name /Im67 +/Width 33 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xα EÑk(~ÉÄÊÖ d2£8£0%áû1±·9Í{ÅE4CÔ +ª7t§øfjÄòé¦Ovôߤòc5BÃgßÈàÀiî³¥Í*{º×ö�øk>U +endstream +endobj +75 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 655 0 R +/Name /Im68 +/Width 12 +/Height 12 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãg°?Pÿàÿ¬`§ª[�"}« +endstream +endobj +76 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 656 0 R +/Name /Im69 +/Width 48 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿêÉöÿjØ?0ØUH¹É!@$ÛÉL�ÌøIÉ0tHþ@Bþÿÿ?(¤qí&s�ÜRò +endstream +endobj +77 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 657 0 R +/Name /Im70 +/Width 16 +/Height 52 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcðù°Óòø&uE˧6Ä +endstream +endobj +78 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 658 0 R +/Name /Im71 +/Width 26 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`üÃÀÀþA½Áÿ�Cü?ò@0óvæ$áÿÿ?À1©zÉÁì?êÿ?c)Óú-â�z%A: +endstream +endobj +79 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 659 0 R +/Name /Im72 +/Width 60 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþ ÿá?Ãÿõ?ÿ`øÿñA ?3Pèsãöïö?ÿ1Øè?@ ôùÈôùAH³ÿ`°?ÀøáÿÿãÿÿÙÿÿNÛ(Ö-p�5Öjß +endstream +endobj +80 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 660 0 R +/Name /Im73 +/Width 52 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ_þãÿÿQ(öìØ?0þ`c`þÀðADýR@¡ 8õ¡Á(óÁ�NÕ1þgH�Qó¡T²gæo8L�RòmìÔ1öÇ@ÿóc8ÅþùúÁ¥þ)°cÐ)ÆÃLëç�{ûHû +endstream +endobj +81 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 661 0 R +/Name /Im74 +/Width 36 +/Height 52 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÍ¡ 0Ðk**»� GàX JwbéMhzÜÇ�óÌ¿ÿÏf"/Ø?±ÞAÀI`ÃIT<0è=X9RA +/H'ÔÚ»=ôrÿ�T@%Ç$QdüÐ aí/õ[L +endstream +endobj +82 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 662 0 R +/Name /Im75 +/Width 37 +/Height 2 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿÿA*SÃ5�k¾J +endstream +endobj +83 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 663 0 R +/Name /Im76 +/Width 36 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÌ1@0ÑO:XÕ i$¸#8AÕI\Eâ.æ4ª¨ÆòÆçN\¤z +%äê "9(_8é#zÖíÇæ)6é¹<êüðõ$âã¦6K{Ø,/ +endstream +endobj +84 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 664 0 R +/Name /Im77 +/Width 34 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xu± Ã0Eq¡&DRdôÖbÆdlr]Ö0d./w*BÐ÷9 Ù¹ ëKº:?%,¹(é^¢RbR2aù¦4¹YA±ï¡pÔIàß8Qw +AµÒ«nþÚ-ív±¶ìHÅ*ãOlºâ7¶P·ÒWÛÕbIÛô¸¾¥¯G +endstream +endobj +85 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 665 0 R +/Name /Im78 +/Width 8 +/Height 8 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³©ûu6Uí¢�6 +endstream +endobj +86 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 666 0 R +/Name /Im79 +/Width 46 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xб À @# +Ê ÒDJËd)0 +#PR ìG"%Íÿ:ÔB¶mdj?UÃ#ú(î0̦9 ¯Aóµ«ÞÕ$'®ÎÛñ³ÿ^ha]°Ì)4üЫ!ÊXwÒÆfÄHÇy¿×Îðz( +endstream +endobj +87 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 667 0 R +/Name /Im80 +/Width 38 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xEÍ1 +Â@Fá·,da/ ÄJðv^)¥ $«^ÄÊzËCÆm>7ã|õyÃçdÜÀ¸ÂÈ�o¸ÜÐ?f¨/ |MdiÄDìðØyQQzµ]Õ]ûÜàÉ W4u©©«MÏݲÛãaZN_ÅÍ:b +endstream +endobj +88 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 668 0 R +/Name /Im81 +/Width 20 +/Height 5 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃ$$ÂZ?I +�Â�ë +endstream +endobj +89 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 669 0 R +/Name /Im82 +/Width 37 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀÀÀð`ÌT"ìÄÿÌü``þÎPÇÀüÁù|óþ@u`ýø�#ÁÄ ¸ó@[¶ò Èòó5ÌÍ@1ÆÀPÏÀ jZ·Y�mòT7 +endstream +endobj +90 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 670 0 R +/Name /Im83 +/Width 40 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`ÀÀÀðÿó9þì ò @ÂÈf¨c?ÀðF0þü @ÿÀ @"àF ÁôÌúÿÿÿG¦õ[´Æ6eÎ +endstream +endobj +91 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 671 0 R +/Name /Im84 +/Width 43 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿþ#Ìþ70Iy0É~�D2#H$.2Hò`!à¤i&A¦þÿNBÄajuñà%(#ÿÈÿÿÿ¡ÚƵ�ïÍ[c +endstream +endobj +92 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 672 0 R +/Name /Im85 +/Width 51 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÁ à E?ÊcF`z©ÅªÂP £ds@¥þ¿ªÞcÌrG«©çÝ70:7Ü Pð´åt?N0íÜ,Îóx{²]*DÆ-P«À>0Û Ò¿ïPKÞ ®ù¡ÑMêÂDLY +gV¦~}Ýp}¿\¯ÛÎ;an +endstream +endobj +93 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 673 0 R +/Name /Im86 +/Width 54 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUб à ÐC.èðH"RDÉ+y2£0K +ÄÅ÷¤½w_uצNEì é䮥�/ H9H®%ûvH$4à:X ($½v쮡e³y×Óß8 íÚeü#J,íÇÎû6^»~afô¾¼fkp×>s¿=ßYt5 +endstream +endobj +94 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 674 0 R +/Name /Im87 +/Width 8 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³©ûu6hÀ*ΡP5_�í^7 +endstream +endobj +95 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 675 0 R +/Name /Im88 +/Width 51 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x¥ÐA +à Ð,ÜæBÑE7â¡z%Gpé"hçmC» OùÌ�SÅ ´äHkª)X2|Ö·Ø,©|>axâæ E±D,Ç ß )0ÿ¥A×ÿLÌ´ Ò-0CìÊú d²b;vd'¦¢®¤³¨ :¯ÃJo7÷®¥¹îøô/ #^X +endstream +endobj +96 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 676 0 R +/Name /Im89 +/Width 41 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃ$D00þ +$cvB2`'ÙH~0)&íÁd=üÇÀüý0L@¡Lj×n2��Ñ K +endstream +endobj +97 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 677 0 R +/Name /Im90 +/Width 61 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmÐ10@á×4Á ÁÄ+8«çà Fj=wðö(¡cl,PüoqTô1$õ¬¨w²ÿ}(>,Ô÷ 7àÕ4ë.h$O;SV¶ÝM¦v¨òVÉíÔãÏÊ%U F¶ôéûÊÃþüj¿Nå +endstream +endobj +98 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 678 0 R +/Name /Im91 +/Width 38 +/Height 65 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``>ÀÀÀÀ"äAD=`þ$ìÄÿÿXÃÿaJFôþÿ?Ø5Çò�ö® +endstream +endobj +99 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 679 0 R +/Name /Im92 +/Width 35 +/Height 68 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿÿ±òÿF <¶PÊ.µµ�ÐBs6 +endstream +endobj +100 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 680 0 R +/Name /Im93 +/Width 55 +/Height 45 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨o`ÿÇÀðÿýÿõÿÿ Õøÿÿ ÕþÁþêoÿÃÀü>ÿ?Æÿó Ôõý?úB=ÀFJÔÿÿÿÿÿÿ2×Yc�¹]4 +endstream +endobj +101 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 681 0 R +/Name /Im94 +/Width 35 +/Height 64 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`|ÀÀÀ`ÆB°Ã ~8!'ìAD=ø$Aÿÿÿÿþc!ÀJèD�½C<ôçÿÌê!ûûü òäÁ¾zÿÿ`ýÿñ°²CÝ>�(/ +endstream +endobj +102 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 682 0 R +/Name /Im95 +/Width 39 +/Height 45 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨o¨gøÿ¿ñÿÿÿÿøÿ¿ÿÿ ÑÿçÿÿùòÿÿïÿÇøø'> þ?ÿ°ÿ�2qÞÄÿÿ@±êºµkô�B/q +endstream +endobj +103 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 683 0 R +/Name /Im96 +/Width 49 +/Height 47 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x¥Ð± 0ÐCÁ#Dté<YeÂ.,.w&¢ÁÒ×ì/ùßb NGf1«¤o§(;Îp©§ß´`0+ÚbA(pESÉlîr÷dø~orõCe§ÍéákËp$:èvQheÏ¿M$RÏd9w¶op|¼ÞÏÁè +endstream +endobj +104 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 684 0 R +/Name /Im97 +/Width 54 +/Height 70 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÅб 1PR¤ôÞtL d6`¥+èYá68ÊQ>ßwQD¢B4~ ëÿ¤Î!_ÛÑP ¡ +\Iî5N'pïÌuß2µ¶íí:À_<>Áð!£H×ÞD6ÊÄ£&{#J' ñ¶Äù/ÄÐdÔ@|Ö*Óùv|ôm¦N +endstream +endobj +105 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 685 0 R +/Name /Im98 +/Width 55 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÕÊ¡0ÀËD¼L tÅÆy +¢w´Å`r<GY¨!¤E~iHôl_ºLà¥@9CK8X¡§lN&W'âDÖè.~ZÆwù +endstream +endobj +106 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 686 0 R +/Name /Im99 +/Width 42 +/Height 47 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xб à ÐC¿ dú42@X+ %³w`$J +ÄåÀ¢ô¬W 8ÝH#È +$RG{µ°8ÂðóË~LÃ2ö¯©]êæÞàÆ/Å(ýr&ÿNUÛÊiTy_Â4jZV=DÕ+xjnŦÇÝÚÚ[×vý#?y·ûv<Þ-dW +endstream +endobj +107 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 687 0 R +/Name /Im100 +/Width 24 +/Height 70 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨a`üÏÀü¿ýÿ âÿÿ�A²@55@ýúÿ(ùÿFÚ£ÿ¨@Âæ¨�ÆÕob +endstream +endobj +108 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 688 0 R +/Name /Im101 +/Width 41 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀÿáÿû? ò=üx@¾ÿsÿæï òüÃÀþ�FþÀ ?$ÉþèÿÿþÿßLjªÖ-Ñ�¶pU +endstream +endobj +109 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 689 0 R +/Name /Im102 +/Width 39 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUα Ã0 á'V¢6EÀené¼Gð�ÆÑ.YD£d¹3DH¹§7_÷~^a,Uñ;|r .ÚÌ.Àd°â$¼¡C#Îà>±±vù¢Q e9òTef&% +!¡z±8I·Ï<ºrK}ß#nõ}ÿ:³;% +endstream +endobj +110 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 690 0 R +/Name /Im103 +/Width 55 +/Height 60 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmÐ1 +Ã0@QC¼zÍPð²5Ci®#ô�-ö½ºø(9Ç&äB¢{y °õ1�PÎOµÂ +ÚñiFÉmÖIî.1vaz#yÌLZuiJ BiR�CÁ4¥D<°¥µ�î £yºÒÓåÊD¯çyÒÔʯÙÌ+Râzæñüþ^\S]ó +endstream +endobj +111 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 691 0 R +/Name /Im104 +/Width 26 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿPÌ�Dõ C¼ä/)˺r�ëýLc +endstream +endobj +112 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 692 0 R +/Name /Im105 +/Width 26 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=Î1 +1áR¤Loa°ò¹¥ ²ï2Þ#GÉV¶ãs->fA 'ÉÄÂDæJâB¤ïãouææ<5²I¾è ò2Ê|uÙ*©Vâ¦výÇÑÖMâûàUo,êÔbÎ÷Çé¿7 +endstream +endobj +113 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 693 0 R +/Name /Im106 +/Width 26 +/Height 52 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc```@ÇH¸ ÿ```bf fbùÿÿþC1#T +ø�!ÌðjêìÙøÿ5KÔoR��ën83 +endstream +endobj +114 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 694 0 R +/Name /Im107 +/Width 64 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀÿAþÃÿöê�éöêþ< ßÜ`ÏÀÿ¹ÿ8|ówþs úÿýýÿ8ýý6úû!@< +ÿÿþÿßüÿ?:í Z·Ä�RxV +endstream +endobj +115 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 695 0 R +/Name /Im108 +/Width 39 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xU̱ 0Ð/¦ÓÚY e:Wq ·d;A1¹6¯|1òtŽC <£ÄE8Q +jÀ¢&46@Ë£ Ýñ å@)db"ýåúήà ä/q +endstream +endobj +116 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 696 0 R +/Name /Im109 +/Width 28 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`¨c``þßÀÀð|û{þuPü0`üÁÀ@*þÿÿ£RÌü¡þÿ8±®ß% �åÍJó +endstream +endobj +117 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 697 0 R +/Name /Im110 +/Width 38 +/Height 56 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x± 1Et ÒQ0ŬtD\aâRº0ö5W@AódÉÿ?Ë�â� ¹,¼Ö0käÔkê/Ô=áÈ-È?8.«ì +5DÉ@*8Ñ�ÎÀè@7$ÕîDÕ7ª6´mc³Ñxø;D¬õÓ·{Î\LÎf¡al:ü&p½?_· =Yä +endstream +endobj +118 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 698 0 R +/Name /Im111 +/Width 40 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xν àG((ÖÊ,XLÁ Ç \Á ´¤â¼ÄÒÄækîç=�6^ÀöWta1Á¤¢Î¬/ÄlNQüìä,vP?Þ_|\s½ÔRè¼TQ;a6àª%.>LË6ÞIVX +endstream +endobj +119 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 699 0 R +/Name /Im112 +/Width 40 +/Height 58 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xµÍ± Â0á\¸ô¤¥`�Dã()PµÒyF¢À Çý0@¯yw÷ÂlfþO° ;o¿ØPë .p'WDE¤¶\¡<ñÊbÉ +×F¢X EíUh̯ôöùWFÑX-ÏîÅýËáÜOÇ7ô|b +endstream +endobj +120 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 700 0 R +/Name /Im113 +/Width 9 +/Height 9 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xa¨gøß�õ2â�Ù Ü +endstream +endobj +121 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 701 0 R +/Name /Im114 +/Width 22 +/Height 5 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÏ$$ÆZ?E�Äà- +endstream +endobj +122 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 702 0 R +/Name /Im115 +/Width 41 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÎ!1Ði!YؤC@âz%$6á(\¤ÉöÛM?3Å´â¥âÿùcÁ:}Eá*B(;F±§!e¹Ò¡Lt;ùá8üW:^íLÍøÿ禶ðî¥ÿãºqr¼\ZÄEÌêÆP0,jkUå{ô<ý�w> +endstream +endobj +123 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 703 0 R +/Name /Im116 +/Width 40 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xα0Àc.PH J»3P1.D¥¨÷0c>ÐðèAhM~þî(±ÀdUØ·,°-ÅvBa +*C§6Ð9î¬sèÉÞ¦Þ[¤Í>hOoÐGRÌï1ôa¯Lóòyo^Ê +endstream +endobj +124 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 704 0 R +/Name /Im117 +/Width 40 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xα 0Ð+,!ãXvVºF&ÅÂ_5?`)ؼæîóM¡ðw´®¾7gwä!Þ(È$>'«´±ï ÍÂÝ&ÚÊg1ê ɰóÄ)qºPÖ¶¯.£·Zý +endstream +endobj +125 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 705 0 R +/Name /Im118 +/Width 55 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÎ1 +Â0�@Ñv³:ÙÉÝMb®Òè¤Vr/Rì529 fÌPIÛNo}!äÁêw <å3G ´_éØ#ê£L¡C׳ÄaDÅ«'ÚZ´v0=ãvã6 Ñsþê/ÿdº&òä4 ;Îu$.úSÄàX%,DI¬l×Õµø�ËÔO +endstream +endobj +126 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 706 0 R +/Name /Im119 +/Width 54 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xµÑ1 +À ÐH¡·(tòd¥«£Gñbc +Z|8ü ":�º1V2BKEO�ã%2*1+W±Çlg´~Xã4Á»æeìÖ¶ä6%ÉL¤<K´¥Êé§=ìÇy< +endstream +endobj +127 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 707 0 R +/Name /Im120 +/Width 10 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xa¨gøß�@°þÌ(d<ÀØÀØÀÜÀÌÀÎÀÆÀÇ Ã`ÁPÀÀÀ%YÙ!�òµ +endstream +endobj +128 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 708 0 R +/Name /Im121 +/Width 29 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmÎ!à EÑË ¬ ®eõN {éBÈNX)ý©©©8óÜì¬ø£èl'bb;ââ/*=£\K%¼Oò«ï?ÎûV%ôi[¾x"nz¥}C·åñZ>+1 +endstream +endobj +129 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 709 0 R +/Name /Im122 +/Width 33 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUͱ à EÑ~AXFi< %VrÆ0LaF ¤°¢|Ç4GºÅÓ£ãÉÅe:YOb eKøYé;¶ciO CSq7ãbFÒX±mÛ?í©T¤IÑ^î±*y(¾Âm¹?ô1F +endstream +endobj +130 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 710 0 R +/Name /Im123 +/Width 34 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÎ1!áPPr±{,%ÙNo`åAð&4ÑæËó^ +`àâ-Ñj¨ÎTÌK°¤*.©òa ]Ø47~Lí;IãÏ3}q}*ë$Ïñtâºe·+λ¬ÕÉOÇù AZDp +endstream +endobj +131 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 711 0 R +/Name /Im124 +/Width 18 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}̱ 0Ð/évbÖ\É2hÖ²Ë(Á2Eæî¬ W?h¯LáÈ"@Nv°Ì©D$µ¸háùï©g3ÒXXØ{)C;mW÷ê35 +endstream +endobj +132 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 712 0 R +/Name /Im125 +/Width 39 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5É¡ Ã0Ðo0°bÖ¢rH^)0%7èäF¹¬:©Ky0�ÔàØ¿A2 êe>'9Ô 9u¶¯¥&ÖÄÒ©²wðB4àø±Ã]X¯? t¡8¦;æØ±H2XHÉ2©·ìÔëêt6 - ha¸ßǾE· +endstream +endobj +133 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 713 0 R +/Name /Im126 +/Width 24 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]̱ 0Fá?¤¸2 )ñV²ÔÆÜN.Q2BJ!z øøê/ ðV0 ØZS.¼:WÕ*&ß¾L,#ce,Ê(ìòìs$ ¤ÛnØþÕ+1 +endstream +endobj +134 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 714 0 R +/Name /Im127 +/Width 20 +/Height 56 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x Í¡ Ã0 áß28#%¢Þa])4$qÕMnèªíЧ<ö2âHA+o?&þ®OäÁ`ÝT=/eÅ«/M¨â¥´ôºkvÝÝöl¯î,&àܦåsÿº=)z +endstream +endobj +135 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 715 0 R +/Name /Im128 +/Width 32 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=α à áߢ |#*E±Ò c)«d² #Pº@&\|ÒUw LÏȯâ8Ù4â¦ÉT¼[¢\^Â1¥4pë]]p-ÛÐÚdÎÅVUR"wÜá xÓò©ó +Zðx¾¿¯?7H +endstream +endobj +136 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 716 0 R +/Name /Im129 +/Width 41 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUϱ Â0 ág¹¸ÎY ;$*ÚYÒHcUÄ£Ü.S À]�ÍWÝû¥3 ݾ3\¨`ºË}´óRÊb\xw17!7uS9}E×Ã2ïúníV,¬Ú&eIm¤óô«ÓÔê4²Nͱ9k0DMyÉkçÓýyù�âÔE +endstream +endobj +137 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 717 0 R +/Name /Im130 +/Width 38 +/Height 76 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xб +@à£s¡pÏàP¼è9>V§{áÜN³ÿ´Ò¥C>GKD¤ +"â"èZ0Ü@ÚÀ + +eå@2[j%X2!Û÷ î�¹GË?Èd³J²J´üµÆgoÎß^ÉØd1¤çA9§'^Û±´¹?_7ê0L +endstream +endobj +138 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 718 0 R +/Name /Im131 +/Width 33 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÍ1 + à?ÚòDÐ$¯ähéa:Gñ é·|ë'¢ÈYLNK§Ð{2a3±â ®ëAÈô6Êñ0=E!Ú84æõ¸ýT+Ð +endstream +endobj +139 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 719 0 R +/Name /Im132 +/Width 28 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=ͱ Ã0á_¨p©B.2C*y%ÁDU2FÑ*U?Iñ½æqw°Ã`ð.$*+3æºo®ýUÝâ;øM¬à¬òfðRÇtöèÁi(¡$yÊNÈ?QcQcIc+w ^}ýÆ*/·å3ñÔ7È +endstream +endobj +140 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 720 0 R +/Name /Im133 +/Width 53 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³ÿìQ©ÌÿäØ10þc`~P¢?T(`ª�J�SX©`Êâ�ÀJ1)C±ÿo�ò F£L-kwØ��¼jbÅ +endstream +endobj +141 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 721 0 R +/Name /Im134 +/Width 82 +/Height 2 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿüG0¦�h·* +endstream +endobj +142 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 722 0 R +/Name /Im135 +/Width 56 +/Height 61 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÑ=Â0àWeÈØ#ô,Èâ^H©ÄÀ¼1r ܪÛu"!1âå_¿�² +ÉfÈL6ä;c\^©oéta6�»£ëõ ΫºH ;¤10ì¿ÑGZýÑ:°êTgúÂ;êx·O\"¥È¬ JÏs\õ|ó _é/>¯Ë½ü° +endstream +endobj +143 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 723 0 R +/Name /Im136 +/Width 28 +/Height 56 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`<ÀÀÀÄì@,Äÿ0üay¨ØPÂöêÿÿÿ�Ã2Ûµ�óÃ?¬ +endstream +endobj +144 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 724 0 R +/Name /Im137 +/Width 19 +/Height 82 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x¡ 0DAÔÀÊÂLDTt1Òr8çþåß»� +j02é¶U8aNX¥Oü oÊøï§"7ÚÛa» e´³¿Q¼Ò´A3Ó �Íì¶þ�v1¿ +endstream +endobj +145 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 725 0 R +/Name /Im138 +/Width 33 +/Height 56 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmϱ Â0 áßrá/ÑRQ¦@ò*"R¼mFñ)SD9îI Ñ| ýÞÙG^ù`V42~x"mtÄpp0F±óbõÒfÝvÿÂç9>Ho8ôÔ,úÅ)ªµ&¡XP,*ÈJd] »xXC#'ùz¾lfô¢ÙìÀ~¹Óëú/éTP +endstream +endobj +146 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 726 0 R +/Name /Im139 +/Width 37 +/Height 61 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUϱ 1Ð¥HRѲd±w¬EåQ,±@:"b¾ÍSbDZÜ!¨#Ì®{ºKR<$f)ªT ÈÈrÒ òÚ;¶²ÐYu:©,Ö³"ïÑfæoa³L¿ÔFÔWø&þ;ôÖ6bc]TtøZæ[²iY m`@+§ÒÌÞ?¦Ûñ MuÙ +endstream +endobj +147 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 727 0 R +/Name /Im140 +/Width 65 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xåѱ 1 á?JáÒ#d +tÅE"±Õ1+d)¢3!'(éx¿âÙA¡ÐW¬õéªvHv·Å' Ã-pDV´ã6B~CCë®ÓR[¾ày_C2¶å¶NȯòÂ7dü%Z6»¥OLxï»§ +endstream +endobj +148 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 728 0 R +/Name /Im141 +/Width 41 +/Height 2 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿþIM¦iZ�Db +endstream +endobj +149 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 729 0 R +/Name /Im142 +/Width 40 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`þÁpAþã:öÆ`þÀðø�ûòüÌð`°? TtÀ¾Bð¨g@!þL `&@ÆË `{Ù0Ôôþ�ãÆó Göcÿ$@ÚÈ"ä000ÿÿ 4Lkè��wU^ +endstream +endobj +150 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 730 0 R +/Name /Im143 +/Width 42 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÕÌ 0á·©¨ìx Øv.£tÊO4¯DrâI.¹xAÅà¡$´ÁϧåÖÈ¡nT7÷ÏÚLÕ¼½þí´'j¶}ºÆéxë +endstream +endobj +151 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 731 0 R +/Name /Im144 +/Width 51 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÅб Ð#¿dV0±´p3!q++6(ñã +j×¼êrÉ!�) Tºéö;47dP)ÕÞ}íá/~ +ûýEµN¬[¸Jô* +endstream +endobj +152 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 732 0 R +/Name /Im145 +/Width 31 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x%Ρ 0�FáGC`ç']¥#0�¡ìÂ"Â'Í¿ ûÄs)EÛL0×HùûÒé·yBÏ_Ä'QDßQDßVôIÔÚò¢E+Ñ6':X&&=äº~Ý?7ãH2ï +endstream +endobj +153 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 733 0 R +/Name /Im146 +/Width 13 +/Height 83 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿã?~`ð?Ôu¼Á{ÅçìWµ +endstream +endobj +154 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 734 0 R +/Name /Im147 +/Width 35 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xα 0Ð/6¢ hage)fG°·HƲÌ(Á â}ÁH +Ãå5Çý»ò&²å½w1V? Ȱ%iH Çé H!!©!ÌÎII +ÒÍ7[àä¨{H_ªÎD¨/ôïiå÷ó~O8@ +endstream +endobj +155 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 735 0 R +/Name /Im148 +/Width 13 +/Height 83 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿã?2TFøê:Þàú½â�=4 +endstream +endobj +156 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 736 0 R +/Name /Im149 +/Width 80 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuÑ=jÄ0à'ƬZºû¾Bô{X¹ER!1R» +.Ì*o&8d'D ñ3b~ZÛ¥µ54¿V¯@Þ"ß´²J¨XTB;*î¼øb`.ЬîFõÐTÕßh9h=©ÒMýäÄâÎüéb²òjÓé"Nlbªw¯Bj~*áÚ9½R'ÕôÆØÞé:«òc>%ÎvZÿì6D|o(;EU51:9U11Z°ØNõTÛ3îï_¾�È +endstream +endobj +157 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 737 0 R +/Name /Im150 +/Width 57 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÑA +!PEì:Gè9ÊP<Y©Çêrâ\ºÓÔ&2Ax ¨ùÊÌÝI±TV«è9d$wxÏp-êÙÐý¢f¿=ÿ¸÷è#j~©i ¬îÛÄP5×̧¾MÎ×äþk¹ªO'+\§!ÉHþð#ïBCß¡ë77*6HÅ=¶×çùYù +endstream +endobj +158 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 738 0 R +/Name /Im151 +/Width 35 +/Height 58 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xM1à ]A~tyBdÙßráÈü*-ùÉ=)äËB¢8Í Ä.7Ù�D#VË@õNÝɨð <0"�gäÁËx }o¡´ZŰc·T§Bì᬴¬äm4*V!ºî4 [@°YL#y`(/,æsq¯åùÁý×ÂҺ¯¸Yº^¹ªl¼5ɸÜîë$T¨ +endstream +endobj +159 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 739 0 R +/Name /Im152 +/Width 35 +/Height 58 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}Ï1B!Ð!\Àd;`Ãɽǰå&@IA³þoabl^³3,RWf2Ä;RÙ0î§(ÊN%ZñߥýÅ~ágl¢¨;¼»u66=>X'¡LÖIx<)oôø&dx{õöc¸4®,ÊâOþ(û´&V?rÏ×Ûóòëû_ +endstream +endobj +160 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 740 0 R +/Name /Im153 +/Width 10 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xa¨gøß�@°þÌ(d<ÀØÀØÀÜÀÌÀÎÀÆÀÇ Ã`ÁPÀÀÀ%Y¹S�Tæ +endstream +endobj +161 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 741 0 R +/Name /Im154 +/Width 57 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]ѽ 0à³\¸# ±"¬lä<VJâ\¦x!w¯�ÓWÝ?�q{à¢CY»D$sóN#Í´®¾AÌ4ÒL©é»¡¶;Ò ¾(LG=,/¬Vg c²úqêj¦íöQkøª ß8Î +¸×ZÏ&î¯ jÚàí¬6Ðà½QiÓ8týÏ«óü|?~à r +endstream +endobj +162 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 742 0 R +/Name /Im155 +/Width 37 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÎ; +P á\.x[AÁÊÆJ°ÑÝn@°±a65¥àF\ ùÅG=)>NH)rÑÃzcÀ{ +è Y1'_ŲëÀb!jvz|ÀJÈ¡võåúùܦi5ü²ÔTR� +endstream +endobj +163 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 580 0 R >> /XObject << /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im26 33 0 R /Im25 32 0 R /Im118 125 0 R /Im25 32 0 R /Im110 117 0 R /Im30 37 0 R /Im24 31 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im116 123 0 R /Im109 116 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im118 125 0 R /Im24 31 0 R /Im29 36 0 R /Im111 118 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im28 35 0 R /Im26 33 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im110 117 0 R /Im30 37 0 R /Im24 31 0 R /Im26 33 0 R /Im30 37 0 R /Im109 116 0 R /Im24 31 0 R /Im28 35 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im156 165 0 R /Im21 28 0 R /Im29 36 0 R /Im105 112 0 R /Im106 113 0 R /Im120 127 0 R /Im24 31 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im145 152 0 R /Im25 32 0 R /Im111 118 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im107 114 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im26 33 0 R /Im21 28 0 R /Im105 112 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im113 120 0 R /Im106 113 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im21 28 0 R /Im22 29 0 R /Im106 113 0 R /Im105 112 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im117 124 0 R /Im30 37 0 R /Im30 37 0 R /Im26 33 0 R /Im25 32 0 R /Im24 31 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im117 124 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im110 117 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im101 108 0 R /Im24 31 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im21 28 0 R /Im22 29 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im26 33 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im106 113 0 R /Im24 31 0 R /Im21 28 0 R /Im26 33 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im105 112 0 R /Im28 35 0 R /Im22 29 0 R /Im23 30 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im24 31 0 R /Im101 108 0 R /Im24 31 0 R /Im28 35 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im116 123 0 R /Im24 31 0 R /Im22 29 0 R /Im25 32 0 R /Im25 32 0 R /Im115 122 0 R /Im116 123 0 R /Im26 33 0 R /Im30 37 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im21 28 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im118 125 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im24 31 0 R /Im105 112 0 R /Im114 121 0 R /Im116 123 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im134 141 0 R /Im109 116 0 R /Im29 36 0 R /Im30 37 0 R /Im107 114 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im30 37 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im134 141 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im118 125 0 R /Im107 114 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im26 33 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im107 114 0 R /Im116 123 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im140 147 0 R /Im22 29 0 R /Im21 28 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im107 114 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im156 165 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im102 109 0 R /Im120 127 0 R /Im118 125 0 R /Im25 32 0 R /Im105 112 0 R /Im23 30 0 R /Im30 37 0 R /Im118 125 0 R /Im23 30 0 R /Im30 37 0 R /Im118 125 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im25 32 0 R /Im22 29 0 R /Im23 30 0 R /Im101 108 0 R /Im21 28 0 R /Im142 149 0 R /Im28 35 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im26 33 0 R /Im21 28 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im157 166 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im28 35 0 R /Im105 112 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im118 125 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im24 31 0 R /Im22 29 0 R /Im23 30 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im29 36 0 R /Im25 32 0 R /Im110 117 0 R /Im24 31 0 R /Im29 36 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im26 33 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im118 125 0 R /Im30 37 0 R /Im29 36 0 R /Im112 119 0 R /Im113 120 0 R /Im158 167 0 R /Im159 168 0 R /Im160 169 0 R /Im161 170 0 R /Im162 171 0 R /Im98 105 0 R /Im161 170 0 R /Im94 101 0 R /Im100 107 0 R /Im96 103 0 R /Im93 100 0 R /Im163 172 0 R /Im96 103 0 R /Im97 104 0 R /Im164 173 0 R /Im162 171 0 R /Im149 156 0 R /Im25 32 0 R /Im143 150 0 R /Im29 36 0 R /Im105 112 0 R /Im106 113 0 R /Im110 117 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im24 31 0 R /Im111 118 0 R /Im25 32 0 R /Im143 150 0 R /Im101 108 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im107 114 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im26 33 0 R /Im118 125 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im28 35 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im116 123 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im25 32 0 R /Im105 112 0 R /Im113 120 0 R /Im101 108 0 R /Im118 125 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im109 116 0 R /Im30 37 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im118 125 0 R /Im105 112 0 R /Im120 127 0 R /Im165 174 0 R /Im111 118 0 R /Im25 32 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im26 33 0 R /Im25 32 0 R /Im110 117 0 R /Im24 31 0 R /Im26 33 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im166 175 0 R /Im120 127 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im150 157 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im113 120 0 R /Im167 176 0 R /Im25 32 0 R /Im106 113 0 R /Im168 177 0 R /Im117 124 0 R /Im25 32 0 R /Im24 31 0 R /Im143 150 0 R /Im101 108 0 R /Im21 28 0 R /Im106 113 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im110 117 0 R /Im25 32 0 R /Im29 36 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im25 32 0 R /Im111 118 0 R /Im134 141 0 R /Im105 112 0 R /Im30 37 0 R /Im22 29 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im25 32 0 R /Im111 118 0 R /Im123 130 0 R /Im126 133 0 R /Im128 135 0 R /Im169 178 0 R /Im127 134 0 R /Im170 179 0 R /Im134 141 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im171 180 0 R /Im172 181 0 R /Im173 182 0 R /Im174 183 0 R /Im175 184 0 R /Im176 185 0 R /Im177 186 0 R /Im176 185 0 R /Im178 187 0 R /Im137 144 0 R /Im174 183 0 R /Im179 188 0 R /Im137 144 0 R /Im180 189 0 R /Im177 186 0 R /Im181 190 0 R /Im168 177 0 R /Im120 127 0 R /Im179 188 0 R /Im21 28 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im110 117 0 R /Im25 32 0 R /Im29 36 0 R /Im182 191 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im29 36 0 R /Im25 32 0 R /Im26 33 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im168 177 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im25 32 0 R /Im105 112 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im110 117 0 R /Im25 32 0 R /Im29 36 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im24 31 0 R /Im101 108 0 R /Im106 113 0 R /Im105 112 0 R /Im113 120 0 R /Im183 192 0 R /Im128 135 0 R /Im129 136 0 R /Im184 193 0 R /Im185 194 0 R /Im125 132 0 R /Im131 138 0 R /Im123 130 0 R /Im126 133 0 R /Im127 134 0 R /Im128 135 0 R /Im129 136 0 R /Im132 139 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im186 195 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im29 36 0 R /Im25 32 0 R /Im26 33 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im171 180 0 R /Im172 181 0 R /Im113 120 0 R /Im156 165 0 R /Im30 37 0 R /Im29 36 0 R /Im24 31 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im187 196 0 R /Im181 190 0 R /Im165 174 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im24 31 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im188 197 0 R /Im174 183 0 R /Im189 198 0 R /Im166 175 0 R /Im190 199 0 R /Im113 120 0 R /Im113 120 0 R /Im113 120 0 R /Im190 199 0 R /Im189 198 0 R /Im191 200 0 R /Im118 125 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im143 150 0 R /Im101 108 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im176 185 0 R /Im188 197 0 R /Im176 185 0 R /Im187 196 0 R /Im137 144 0 R /Im137 144 0 R /Im173 182 0 R /Im174 183 0 R /Im192 201 0 R /Im136 143 0 R /Im120 127 0 R /Im21 28 0 R /Im109 116 0 R /Im189 198 0 R /Im166 175 0 R /Im176 185 0 R /Im187 196 0 R /Im137 144 0 R /Im190 199 0 R /Im113 120 0 R /Im113 120 0 R /Im113 120 0 R /Im190 199 0 R /Im189 198 0 R /Im191 200 0 R /Im176 185 0 R /Im187 196 0 R /Im137 144 0 R /Im174 183 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im25 32 0 R /Im193 202 0 R /Im120 127 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im118 125 0 R /Im21 28 0 R /Im105 112 0 R /Im25 32 0 R /Im113 120 0 R /Im103 110 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im188 197 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im25 32 0 R /Im111 118 0 R /Im123 130 0 R /Im170 179 0 R /Im126 133 0 R /Im127 134 0 R /Im122 129 0 R /Im121 128 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im187 196 0 R /Im120 127 0 R /Im21 28 0 R /Im144 151 0 R /Im188 197 0 R /Im176 185 0 R /Im187 196 0 R /Im137 144 0 R /Im174 183 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im25 32 0 R /Im113 120 0 R /Im149 156 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im118 125 0 R /Im25 32 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im101 108 0 R /Im30 37 0 R /Im118 125 0 R /Im111 118 0 R /Im25 32 0 R /Im143 150 0 R /Im101 108 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im194 203 0 R /Im121 128 0 R /Im129 136 0 R /Im121 128 0 R /Im131 138 0 R /Im123 130 0 R /Im124 131 0 R /Im127 134 0 R /Im195 204 0 R /Im121 128 0 R /Im196 205 0 R /Im197 206 0 R /Im127 134 0 R /Im129 136 0 R /Im121 128 0 R /Im123 130 0 R /Im131 138 0 R /Im198 207 0 R /Im122 129 0 R /Im123 130 0 R /Im124 131 0 R /Im125 132 0 R /Im123 130 0 R /Im126 133 0 R /Im127 134 0 R /Im128 135 0 R /Im129 136 0 R /Im199 208 0 R /Im128 135 0 R /Im196 205 0 R /Im121 128 0 R /Im124 131 0 R /Im134 141 0 R /Im135 142 0 R /Im167 176 0 R /Im200 209 0 R /Im20 27 0 R /Im176 185 0 R /Im165 174 0 R /Im120 127 0 R /Im168 177 0 R /Im120 127 0 R /Im201 210 0 R /Im137 144 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im105 112 0 R /Im23 30 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im113 120 0 R /Im200 209 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im107 114 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im26 33 0 R /Im23 30 0 R /Im24 31 0 R /Im108 115 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im118 125 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im173 182 0 R /Im202 211 0 R /Im176 185 0 R /Im187 196 0 R /Im137 144 0 R /Im174 183 0 R /Im201 210 0 R /Im203 212 0 R /Im204 213 0 R /Im205 214 0 R /Im206 215 0 R /Im207 216 0 R /Im166 175 0 R /Im208 217 0 R /Im206 215 0 R /Im178 187 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im176 185 0 R /Im188 197 0 R /Im206 215 0 R /Im176 185 0 R /Im187 196 0 R /Im137 144 0 R /Im137 144 0 R /Im209 218 0 R /Im120 127 0 R /Im176 185 0 R /Im136 143 0 R /Im137 144 0 R /Im118 125 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im188 197 0 R /Im166 175 0 R /Im120 127 0 R /Im113 120 0 R /Im113 120 0 R /Im113 120 0 R /Im120 127 0 R /Im188 197 0 R /Im204 213 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im171 180 0 R /Im172 181 0 R /Im120 127 0 R /Im208 217 0 R /Im166 175 0 R /Im120 127 0 R /Im113 120 0 R /Im113 120 0 R /Im113 120 0 R /Im120 127 0 R /Im208 217 0 R /Im204 213 0 R /Im181 190 0 R /Im150 157 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im120 127 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im201 210 0 R /Im173 182 0 R /Im150 157 0 R /Im210 219 0 R /Im150 157 0 R /Im21 28 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im111 118 0 R /Im21 28 0 R /Im144 151 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im112 119 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im28 35 0 R /Im117 124 0 R /Im186 195 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im28 35 0 R /Im105 112 0 R /Im28 35 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im106 113 0 R /Im141 148 0 R /Im105 112 0 R /Im142 149 0 R /Im28 35 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im30 37 0 R /Im116 123 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im21 28 0 R /Im145 152 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im120 127 0 R /Im110 117 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im101 108 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im188 197 0 R /Im166 175 0 R /Im120 127 0 R /Im113 120 0 R /Im113 120 0 R /Im113 120 0 R /Im120 127 0 R /Im188 197 0 R /Im204 213 0 R /Im120 127 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im112 119 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im201 210 0 R /Im120 127 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im142 149 0 R /Im28 35 0 R /Im25 32 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im203 212 0 R /Im176 185 0 R /Im187 196 0 R /Im206 215 0 R /Im120 127 0 R /Im189 198 0 R /Im206 215 0 R /Im137 144 0 R /Im180 189 0 R /Im211 220 0 R /Im174 183 0 R /Im136 143 0 R /Im113 120 0 R /Im113 120 0 R /Im113 120 0 R /Im212 221 0 R /Im209 218 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im22 29 0 R /Im23 30 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im105 112 0 R /Im28 35 0 R /Im22 29 0 R /Im23 30 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im24 31 0 R /Im26 33 0 R /Im105 112 0 R /Im142 149 0 R /Im28 35 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im29 36 0 R /Im30 37 0 R /Im29 36 0 R /Im213 222 0 R /Im176 185 0 R /Im208 217 0 R /Im137 144 0 R /Im173 182 0 R /Im174 183 0 R /Im214 223 0 R /Im205 214 0 R /Im206 215 0 R /Im207 216 0 R /Im166 175 0 R /Im176 185 0 R /Im189 198 0 R /Im206 215 0 R /Im215 224 0 R /Im202 211 0 R /Im216 225 0 R /Im176 185 0 R /Im187 196 0 R /Im206 215 0 R /Im137 144 0 R /Im137 144 0 R /Im217 226 0 R /Im113 120 0 R /Im21 28 0 R /Im105 112 0 R /Im107 114 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im107 114 0 R /Im21 28 0 R /Im145 152 0 R /Im25 32 0 R /Im111 118 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im107 114 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im26 33 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im29 36 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im116 123 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im25 32 0 R /Im105 112 0 R /Im173 182 0 R /Im218 227 0 R /Im49 56 0 R /Im78 85 0 R /Im70 77 0 R /Im78 85 0 R /Im52 59 0 R /Im78 85 0 R /Im77 84 0 R /Im78 85 0 R /Im44 51 0 R /Im43 50 0 R /Im44 51 0 R /Im36 43 0 R /Im37 44 0 R /Im36 43 0 R /Im36 43 0 R /Im45 52 0 R /Im72 79 0 R /Im35 42 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im37 44 0 R /Im43 50 0 R /Im77 84 0 R /Im37 44 0 R /Im72 79 0 R /Im35 42 0 R /Im48 55 0 R /Im52 59 0 R /Im36 43 0 R /Im44 51 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im44 51 0 R /Im42 49 0 R /Im219 228 0 R /Im37 44 0 R /Im38 45 0 R /Im35 42 0 R /Im42 49 0 R /Im52 59 0 R /Im38 45 0 R /Im72 79 0 R /Im37 44 0 R /Im70 77 0 R /Im44 51 0 R /Im220 229 0 R /Im35 42 0 R /Im47 54 0 R /Im44 51 0 R /Im42 49 0 R /Im36 43 0 R /Im45 52 0 R /Im39 46 0 R /Im40 47 0 R /Im37 44 0 R /Im73 80 0 R /Im37 44 0 R /Im50 57 0 R /Im43 50 0 R /Im40 47 0 R /Im37 44 0 R /Im43 50 0 R /Im37 44 0 R /Im83 90 0 R /Im80 87 0 R /Im35 42 0 R /Im47 54 0 R /Im48 55 0 R /Im70 77 0 R /Im37 44 0 R /Im50 57 0 R /Im35 42 0 R /Im38 45 0 R /Im44 51 0 R /Im36 43 0 R /Im43 50 0 R /Im52 59 0 R /Im72 79 0 R /Im52 59 0 R /Im76 83 0 R /Im35 42 0 R /Im78 85 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 164 0 R +>> +endobj +164 0 obj +<< +/Length 743 0 R +/Filter /FlateDecode +>> +stream +x¥}KÓì¸Ý¾Å·Yøk< p±"¼qÌÄh©-µF²õV;þ÷.V<§p�nnô¾D|#óä_ø÷¯¿þ`¿þñÃ_ðßÖ/ómLûsùÎÁ|Ùh¾]t_˿׿~ýÇ~üï´&|ýëø÷·Â÷zZ |ç.`Ï ¸²Àòø?~[ /¯þïu)$°çÏß»o»¿Omrè{á�á{ÉåûøíÓõ�ñz¸À²¸Ë<þÕåûçä°Ê7°:í(×E¤`Â\3"S~¿p3ÝeÿþÉò×ßwæµÿ·ß¿\àò½tÎð½µYÞ³Ò®´]skýþñîµs] à xt¾Ç,ìÊÂX¿Éãaé,F¼lÎ(béFÁðmÞx�là,ÅéÛ ¤|W¤1F¸ÜKb5â2Ô²qY¼¦ÈÝlÑUÓ+\£t �ÞÀß àMR ¥Ð[¤®RÈô·bbìÝ=Käf®B´É÷P XÙ{,Éñ!ÞcbÖ[Lì£ÆÄLøÅKZÙR¿À+j0Ù{ÎOQr&Ò\:5I³e«HÊ¢cÞ@ØÝ¡Io |ËVS#Õxîß!^÷ÏLqðF5Å�>I`BM9fÁnZ¢5KÄ0DaXPP¥aHæ +)ÜiBZäÓ0%`}åáG|ýY à°~ß[#û6í�Ç ÈBlÃk Ë@ßLÒþy^¢FÅ'êQñ² \8É ]Ð "-L23¿33X Úv +LE$6'ñ +É V§ X8n�! iÌMØ3<àÌ=Ø3³tjéÜÍxù�$³ðÐ×d×xÆÕ!!Ðãúf;RD¯+B]{SxOZH2ËCÉk<djï}[S3ù;_° .~/áLüLÄý +Þ: ¡&DÞáÁ^Úh©Rä(E^7ÇüöçCnwàÞókNJ¼ÕüUÜÈFBû9ª¢aCl¬EöÏÀÖlL7ൠÐìN@@Ü@Ð<2PôÌBÔôR¤þù=Rä6�X K+äkzlY^Óc º#¹èÓMNX8Ë¡ ö(å§6¿:1( "°j¶í?{Q]°æ^TD-ÈS3÷¢ºàîEuÁA^ÏxÑѼ¿çÑëÎL¢CÌS3x!'X¼x¬Å®&ù%´«QNùÜS3ÁδGÇ÷üÖhCåÁ`Fß[ÑE'Õ/ +|ö$£Qn ½¶v6@3-¤8`¤j¥½ÖN 'ùmJâ °Ùì ¯RÄÉW\Z:´HC=öf$ªiÙI6vÍN²±kÆ´ÏÆ$´¶w)ÐÌi4®té¡P` ·àe1bétO¸ ©2æ¹xhÀ#s1¢+=2·8D�}ÿ²fºGæTMJyøMN¥Ò +0^ÊXÊyv·óì¼ðEµ%$*2ȼx·ÂÞÒ¢k%¤a½gÑý-CàÝMCàU=HKü"21I-ô½µrT°'gº`ß#¾~ÏëV %Ô.ÕZ %ë¨}µ6Å>C;"¿Ôø¥ u7«�DâB�`AÕÐúÍüx<¹oéÑàÌ=Sb¢äÓRÐ#!xª;GO�õØ@éO´-¦ÅW±_??Ð;\¡;$ùjò«CÊÓ+Ð˱uH(=2 F%¿òdGp1U¹ª¾0¦¶åØèªp/}y|ÿQÒS3*Z~åHAÊ%í«üHPp ò£=T6 S [Z1{èfÄÕ?íŷüv±ÐHáñ@ÓWsSLÇ\LË ë«¹uûÞðhC3èôVGzd¢pÞiz¦ÁL]*tzªÝEÄ zªÝE$Ç(9ÁºjÚïçÏnH¢-! ¶®Póv ÝÀõ÷)e«±Ï @M¬§([r¢§ù²¸Ö£Ý�Í ÀÊ"E+Vx¢± Ö"À°®¤E@`ÅG[<äÈC¼r$K$ä^2ƼòDUc,¹d@J*,pÿz~kIÒRJNµ#D3rHa\G2¹äz¤_5¶uAt%Hhß*û"7dAà±ÜºÂÜM÷d88¨Fe5\VÕ`§)gb¦.vrfÃÒ½)g2, PÍ4åÌòPónSÎd\°7¦Çžv>aê¥Æ¶ÌÇ3Yfª¿H¤ý�S/5{åÈqòKÍÙ8Pp òd¿?Py²ÔÞ´â#»ÌE$6eñ +YfãïõƲ¬± ý¾}tYøÊAþÙcYi¡ÕPön¥Ö"õðÞTs î͹VCÙS:Èú»Ë /î-¯q<þâî5ò¦ DÀÈ l` "r� ëÉAjh ª +Ò´Â!u$MÐìbËÏöô0-Èù)v«fI¨®Ë¤¶¼HÔîz°' $¨3ÈïÏÈzIÒ¨Ôj<ÄÌ¥j#_XO0{ö+J0û7E6ö(EXJ^D@B0Puø÷Ðêè æ,bï2 wÄ$D@)ªh-56öÚÒj¾&fp%÷l¡_5[ÈS+þ;³×Lº3{ÝȤ;SÊF$ UN¾B;ÈîHxs?Sd&|Bb8P³ÐôG´°fFZoÇ -)¢¤ß/Ð#×sL($Î̹CÚ<UsH-1±~¯æ¥Æ@vÄå)Çtñ÷H\ÛÞZM=Äå¡&ÇLð ¥fÖ¦ERÑ ÔNí¹3T�OÚ æ²cÍv®bÞ´JðtÌÖTcæ«vÀÓ®b)+"¾ÿò h¹r¼0wnpïÄß©ÅwVãaÚNáx änUO@Rþ*É{<ü=h%³<íM +¶ê¹yr±À^Q@+ ±ÀH_Zmà < KQFz`�óf \5ÝoêBà 2 :íÉ[l¶ ¿-äïørȼP9õª:½Rôà¡-Ñs>K$¤ PIÏ¥'¼ÓÁáäeFô,#pIÛ�½Â¤^!©ûioeþÏþ¦cNOﬢ*§<Ô^Ûú<IJ#á*PÆvÞ§~fgì½+N¼ÞTon@TÅ´¥¤?õxÅÆ{v¤ó®MÒôÒ;P)7Ú½+gÒï]9ö|oÊõ Kå^v &XâÚ}aM1|?ã³m@7F+§|ÿ¹ô¤7âæ¿Io,Å?µüêô½^üS˯Î7 §'j~æ´½ø'©7ÀJWàïëÅ?5*8`¸ö¥·>¨Æ ªQ @Â"éauÑÜ]ôÜ@Eï+!]ñà÷p` C¬ö%I' ³bÁYCQã!z 1WHfíZ°£I»º6 b»:¡¢{ ¼öe½¥\àÔ´na}éÝ!-ªO¾g1Ògl¤ÇG¦)ÐGf·á"òÂüÛò3ña>æghéC@z`¤ô!Bc&«ÒÒ3é´â$*ÖUÞU4V^$äÏ Ô"û]¹¹7OUa¬·ü"ªâÏm5Óæ¸²öä·ÅÄ{L "ÐKÈäG?¨`²GD6àK¦Oªê +Æè3 i_4=`Ðt6¬h¦½°¢¸óvÑÚç.â³hl¤§Èú¶ÖßO ÕòÚa³é¥ØÈÛÆèý}¤w46nNiî ïpÀ £âÖ:Äî8bF<0t°ôt%ÔËÓ0Fʱ4G÷}lÿ + ¼F�Þ×Xh$:n§àdíFEwOìÑqOÐSsjó[Ö[ÔA=6ÒYR/¦(#0Qߨe"Þ¢SÜ{\ìkVyñAº¥I½ÅR cSÈ|]@¸Ó�9Oèw¼G.ÍÀï ÍÔ¹U=&¢òÞ4=r}iÓ¤u /\øópëóUºÞ¸x Sê$ñ}ߣ! ð ¤'òºcV´J|z1{`-,À9ERÀA1ÒÃ{¯ZCòôïWÍà@x4¢W:Ð"º¨I1M,¢1£<´$zã<PóX)è=õá¸Â^ÄdæNÐÑé¨Lpü^Fï±µ½§|ÿYG{3;|?PCdÛ£ÙqB¤¥¶fáøðÎßÄ8¨O÷-,8RP/¾¨8xý$Ñ}E^9³ÎYeÖÚÑ÷zkYbÔà0L®%ºOÖBº¢[ jÐØÖ[$E¸ABßPoÁNX$º".ÃF$EL«b�'Ð;\-l=Þ/&æoïH!hÃBª%Zr¯úHQ ÙïIô\¡�ôT÷QdR×o_<ø±nùù¼Às¦}¸ëv[ ½"Ã(@ò#.ÜcBï4wãazé +hlíáïÄæFú²@@ûGùH F¤FM§)Rhi´8îÔc: fZïùC^ö &T#BdÜPÐïKELmÙ#üÜÙ0¹§ÕÔ�o@îÌÈÓ»N½þôî±KªOc îR¶iÓ.ehï-½hz#BÌÂH¨«Ò° )ÐÑ�KnàNdÜuôd±ÐÞðp§ªÈlíM)ÌTÒ§8n@×{[ÀqrYC´<}?hy<îÑîýèNy´¶±Ðq2D~ÕÑ#�djÀ蠟òª²ÀçYÇ�½Å ѲǼ�²°þ`Y[ôúÀÚv|Ð*$°n =¢Uõ-3ÐSc½IÓ,f ¨ Ú0à{kÁsÖãöÜvZ�<¹Ë=KðëÜ¡/^H¿ÍùÉ×¥ëy§Àò!>ù5ú´À9/°Ô©¶7.X&:/·¤ôÖë.·påÃøÝ¦Û¯¬Ò´,gïáòêª*|ÑðmàÙ9ç3 +_'@s¹xY`;AA¹`½¨DÁç,ÚÀzack/¥Êè ø(àÌÆÁ!¸¤G6¦¿VÈ@c..ª@ââõr/ôÂDaMï ûDµx¡,ðÉÄ*i[²|ÿ^I7àÔå}-:ß,êñ�ÁmÃÒ:/ ØôêÖ:¬°vp!©c ä9¶ÖqO ?9ÕB®p0¬�î@ NÛ ¼ÃáY&ßââÖmÙåb ®pàÙ²µKöx#\Ì_lȬÛÒ+AO{`V½ P<2¬ÉPÓ9{2ʪ"a/6]þb³$I +øOÕ�{p1â/>QÒ#4:[!Ë]÷nE<¬lÊþy9ª¿'ÄtV} og ØÛ¨ 1Er. GÕàî¢öâÓ"þâ¯PðÊÛúý¡ZL$Å#ãÙU!`HVÐôjZ¶zæÆÃ¡'ô�«@YxEjXaá©7F;@¯S³oII!¡5KΨ//ûÊ.=fEõ.ê H%b@x· ^¢þnÛf {´tU;ò`³xtò»mÀîünÛº'"Ó#Ô´íÙ<åUf¨=ý<ݸ0w¡°H5f}2 +¹5ÎÒ²2níªÇèʸeJ °rP60ÅD�e%ò�ïVu"²äD ÀÚmWY¾¾Ô£æË@¾ð9]Ý@kdkÐúeÏè.Ö´´ÔÓ%Ê=Ó%=q½w¯ +q+h"ÝW¬í3 eEàM_¤ ^Vé{^ªí²PLQ,¦%¨rÛÔÊ$µ|U¥×6µtä²ä7¼ù,úãgNèyÊ]Â@Çíh IÖF¼÷¸ %È!Dfois_Kë»\ÄKZ½v^IkOöJZ§) úT<C1kPQ)ÈF¡!U2P½xU³r :~t*õªâtÏ´í½ï9º�½jÏpä.L2¹Us(±¢1$ñ}{/=@)HU@Ú{Qî Þ÷ +RûWȺU£p j¤ÈD±ÀP5tIªÝ½ÀfOpt6ÀÌ«¡%kEZ`¨ªAxgH" |s¿\HÈ\º§%¹t=<²©^ÃÚßQ¾¿ §uÜXRß§�tɳ&xe·¼7ùÈ>]Ôþãêz[Æ>ÍëíõÇKðº°i;¹JÁ5ªdøØÀÀÛµy]açí J_ÐêuµÎHäùMy¿*cíå÷P}Ð×ä鸥¡÷ô@êB+ØôM¼+"½ÛqQ °Ð¢²¥e4)¦uµi±9P©«yº:)ý´À2�¨néÕÕ#ËåÉ#=-lÁ³B'�y>òümp· hdÐ EÀ*¹¼Hê\>XMÐ�å@k¢9¦Wý-sÚZ>§Í©ÓS :=cÚ64§YsZâkÉRX³ +r¸çLÆD<Ânz 3{·|BªÏ¶È ¢?¡;hOõb¶à=ÈqxèÅl -ºçp8)XôʯÃÝ/ £w?¤î>?ÐRdH$.Qbyt»¢ïõ!ɸC&l`N½ï9V´Ù¿a![g½¿E,g°a1=üõ²À54½6Ù´çûuó)OH$Ø9¸\yp[ £,À]½Úíý}G�.ݹK¦î`5èé"L\ôS07àt/Ï_l/¼exÑQdDIyu~Ü0bi³®Wt�yXëº<I²NÀfL:¤Á] ;@¿ +Ò»>ªz[Ð.B¯Ï[xúZà-O.Ä6Þ58X$¡ñ4lïßAÎW$�ApÖnëw[k¾·<À½-�äà¼Àº=\øÄõ;¼©q>wÜmÊ¥<ÿ®i[ ¾í@¤õÉePé¸+¼å¦6¤;pâ(â²k&åa^q8dÞîGxÛ¿]c5®ñ*5>[ßäÙ"�D³vÃiIM:2RO*<ì²ÄèüYbÄ&LoF-,«io Gi¼æjèã©ui}0øxR=t+_#×ëUÑ ò¬BðîU9¸#2+êaÕ6À_1æYpÐ^ͲÓ@¿5=i.Ð_èZ@?A&® V%%È6)Ë£µfo¹Ë¹÷³Ù[z?kaÞaïg±JÑé�úûYs®7Ð^ JAR¥½d°=áW^0Û¦ÞÏlk}<^áÀ¼]í +i¤!és©VX``àñºh7HÛ $ ÞýÛòà%Öüþ@1 kA=!¢'¨È<ýDp� aþö¥ÅQæí1âñ +®oÀ÷q¸ÛSÄ4H]¤ ¬¥ªØß§ #áÁ¬ñ Ü] éCÚÃGȽ²4Ö½W@7M¸¥È½AH¢ö�»¨=À®Òøl¸ÅÃ%¼Â +ê&×S]ÞC!Ö Ø*9º$-ìÑhzcþFéhuðM©~zìùWØ+ZRÚµØÈ¼åYhàõÕÜ3DûûoÇѰk1=,5XëaiËØ÷-{þÕB +ÞÁÝ M¥.Þò9PC¤{¹QLò½>{Ò!ííoÖ!zTÉRbLÁ¤Hy5rhG¤ z¿`#c<P·Xp»êÒgÎúå;ü`.KÉçëáëfjý¡êy:aPx^�Äî´-Õ[Ò©ñ¼¥z3à¹Æ7ºgô´älÏÐÂzáämðúCx· ?'| ÀgÏÐ. U>ÃMFÊH%_Uúö¶LáéäzçÎÏAã´¹Dåû©WÜVÝé?CãÐðÒ®hÿzxÙ`U|Ù$i\çéúsÃJþNÏ2qÿýUõwx%Üʼvz!KWÀs$Õ1;òð@¢®åzý$N`ëzåÖõÔ§ ëCGL<¨K5òë +æ525°:I p=¨d¿l¯RïªAÖïñð¤äaõèL¡öæIïVl貨ÇX5ÌÞÅ~ô+õj/£Õ0µ£Â°00ùzyáE]/S_fICÊCJfM9R^£I ¹=ÍÑ%�l$ªr'ñðÁHË=MT òîh¢½J~RíUò=9¾B ×>r÷+d¹¦¸bM?ÖÑ0T^Ö êBÒqÅ¥ ¬FCZ)¿$ÄÆ¨Ì i'èÖ©»8å×ïn®}/`pNvB_-ÇP×ÁpoÝ®Á¦þ@ýÕ¢Í:@×åm Æé÷õüä&ÑlZÑdM¶ØÏòPFG¼mÑ=RyÉ3êØGtÿ,«t©W³<;JÛi ã1é@ÛÂg<xY թתÈÇÞ¼²õr´××Lë`åñÒͶ´�¥AH è5s¤s»]÷VîïM||�ãHð¦DµNêÓt ´ÖIÝÙ�èÐ:©û¡´6£NHk]R£úi0ýZä;Ä4Ê·¯ |nÃ5Þ¥i}þ~ü\(ÏrÃ8QàªùVm̹-3-' :Î-Ýß^N;¸Ö¹Óê¢î´ç#lIïã-ô|Dû´)ÏâÏÍgF~øRϤk©zÈb ßΰåÙ7jÄëÓ9tC{f¨Em¸Ïò4é«>4½~ò«q¢éâ³²¾60ç¬ys ýìÐí}/¦©díë%èÂT²nOÃ|ÜÁUe/ØÛ~λ)àuçÄ{ÈÉ#DmJ`40Nôc¡ÇÌ»Ùá)ýìÝðæ¡å&'Æõ&'.QãDÚj¨P2ÙCooÇ[Pð[Ô47IXµsØÀ@غ ï{tVéÕ;©ñnAÚxçc ImB9H§{ÕÊúêÙÁäe3òVì{ü~¤Z¹>ãfÚFI¸@¯pjîé÷A])Ó«Ef'éY6 ¿¢Øeç¡©¾_Ìz¤Õ9& çL«Î)lÝwå%áݯ�<@2 ³,0ù«Å®Çï²65V>@ÏüÕÖ¡Ó¿+>ùK` óW'ÈüÕXûôûzæ¯ú¦Çï<¬è�zæ¯é±YZ2Î !& ê¼¢xïÜ>êÆÕ¢ý¾3|,ñ_ô�úp¿HßóÖ¥É ¯ªG§Ðf\ÜêëN cAVJëXà +²Â +ô +>E¾` @Ï-.� +ôHZÏ8Ð a"êCT³5IúeÄÆÒܰWe"GôEݴ̾¨EÒ¥Ü%BÆd¤°Ä">Ð:aó=kä»eÚÊYkÔ*kD§>mIÇ¥tdM@¯èÙ®â÷H¸\îð|2à`Ü*kÌô-EPº¹ÁCI@wPñEN;Häw]:yWÞä4Iâs,¡QSÁ Ø`�ÐDɨÓèÊÝ}®V]÷à&^ÒÊ3ÊÐÖA'ÏRµf§ HË\Mîm ¾ê÷6Àce-8Ú*ÄÎ'.Ù$0Áqi"Õ+`ï` )Ý<ÀGÛCÐ)Ø,r¼k`Õ®>§ûl`ä9=,`¾Ú|ú^ïj#\xÍ}T ,äX²ÕH<@¯0Gí +i¸&¤HæC= W4´Ék'�[¯ÝGÈ"3dÆÄ{ÍðÉkI:�ë ,£ÙÃÕXøÃêׯ öD-@ݨ!öiìªyÖâèóßw w"úäv ¸Uj'ây¬Â_;ÏÈ7ÌÓ+r9«|pVß,°J ~ùY¸n÷#¼)Ä7ß]"",¾KéºHDÌááHÈøàYÚ¥ÈÂñ¨ÞðcAv,$"ð É-i,SØ$id½Ñ!z¸�ðÐÉâªgNÃw gNKý¾¨Pp¾£I@G[Cx¦M!ó0oɽs¢ÔS¸uéWÃ|ïX¥Iï`«J£0å1ÀÙãîWÓvZàÂÊç¼ úqí ¶¶¥²7Ã'O0*³Ò^jèL0º¦îêð¸@É3È qk¼Póf¥Åý¹â:äÙÖáÇ>¶Ñ»V6èR;çá%ÈÀ¾®VuwÞ´CÞø6Ø·6wúäYÙ©©Ø)p¢!í·ð±à·×ï zod+Â?ñ¡>¬A:)%qT4[]Áq \c]æîZYÁ0ZyÒK>Fk´#Ç]v[°.*põ.¢%ôk$Ab3 ؼÍ"!@6ìßFiÿ<b7ðǸ0ðnpà1Î;ðû0çAàUõ¹ÂÄ+dãèVõ8wØÐOCJ±ì=¨pÓ<ð¦H§x Õgõ)ÈðÍp8AU +È 22%CÓà¢vqá8aÍ$í +ø¼u´LKí¹ôx»N çGÐA[Ú8¸q[T¿ð +eläPñ:z¶ÎãHÀ[·që=R¬%Ý¢�¾nÓèú ÷-*ð)Z¼Í¿²ÿ\ñÎÇÉùýû*AÛÑ:ßÓýmÿìÉF¾(XßëüÜ´» JõimU\wXnòP6ÒðAðòûÌìÅÊ§È ¥Ú8_¸6TÒjãVr_à/16ç±6Ö<ÙÖúàãgqY'ÛZã6Dë´½¸©ÇÏÄw þÜTJ2;èd8Î2k·®Ôì¿ãéíîÚ:qí@òuXwMó¸:63XýÖ跦̲ó¶0êçGáÍÏpµ¼¥ Þ¿ï°ÂY#mKºï3æ;×X_é9Qvð±¯ôÊ +5@j®áIRÅ4ØKVM´§ÒV.õi E|o%§#äT z¡=[Ó1¬l¢\Ð4 +-Øô�lKN»Dzï)Eò=¥ècÐbo(°�Ñierû¶ÂQ§Þ\R:Ü^²DÐÓ÷aÉ*'á^ÿ2Í+_XôúÓ´7¾m"^^cS`:;¥B¤æ±b¼füü6uù¸½/³à]ß×gQU×þï§ÀeË8¶)ÅK}Úl>ÛÆÆeèr~À~fcfÚÐå# úôKÝëͺ�¡AN 8Õ®9H P«\ãGÃe/`pÙ¦uVÚÔè¾ |îÊ;}?�Áï¾ÖÑôæÚRøZ¼ìÓzs«I£'Ì4׺þ>P{£Ä|ìô*² èv +ÎO/@/Mæ%DÀ¸íÕÈ�Üöª½dÏæâpÄ*¹ðïç ëôú=EPÉÄ-¬¸7][B<î�yØ%(ïp·\RsË%ðµÐmÚ¢ûZèvcåKЪç¯qñÚ52À'£ºlêö˯úò3ÈZ±M5ZgmÐJoÆ(çß²f½ù<ëÕ´ÉZ=uÆâ£6«ñ,'m>&úE4d4_gãSX?À#/IaÕ>ZËk6bpÀGk¡o�3ûÍ-ÃÌN0ÈT0³ëP§úV¬dúPÛ¬Õy µõ9ê´®Jê>ª¢|`°eÁÊ{ÔÓª¦:FÏAä'vþí{Gè5w0Ò ÷ tÜS69{ôÖI¨^U¢�Ý@³'½ ð©P¨ÂÄhm` Lw/ødOhçt4ÂñêJµíâ ò0½j¢ÒÜõÙ"²0ù¦,¢ÐöÌ:BátÈÞÑÇ8ö:árÍI flö*Ã'ÏáE1$UnFÖCl,TÚ)8W©hµ+äå¶AÌmt÷Áyl®yúüÈñt üRû}zyD aZÔäMX+ز}ÔG(Ez½ð=2½^¸Çë[s" ÉßÂD& õÂÙ� +ÔgÄÄ4O³ ÆëèÓ«n~}<�×x¡Õ¿¾@ÆJÂÃ/Û¿I4HÌã÷)òþ¦lG@¯kQE7°Zñðκr(¨§yñÐT\Spg®<¾Á+x|KPÔ�lÔ«AÐCZê$BiUV[ïüÆÕrØ(Í]Ì ³LÜ^϶�};ZÐ/%Qi`5«nMï +)7§¾ÃÄTVÄRÔ`oúRÄZð ê¥q6 kν|À¥ «aïT5L¼×.ús>Í©'ì³+¾P½=Ù½ÿ*È ªîþÔÌ1Bæ#52ÀÄÏrÖú756cK}¦L¶¥¾%Gú7À|r¤î©ã¤ÙÓ ^qqy׸F%+t©ÁRÒ¾døôðº,m�óçT úT@/ µxú +ª\ëG90+×;x r`XZðòu=0,£no!¢#4ñÅYkÔzènaHÐë¤)h¾¶ÊÐØW¦¡eË Î¤YÛ¶×ÐÓ$Pµ¯|?Uµ¿[Ï0z|æ@Y·ã´Ù'² }?0÷ÅÖNÌøÈª +OÐ;[®ÿ°ÒEW]×°oàc^^ÚjÊ5ëñ-m¨¶§J[Û«eOihÖÌÑzi«÷Hè¥>MJQë4&æÏ¨ÈA=4ÀCp¤´µÏèmbºN WçÈ:멲È6,0UéZA^×\an,°ª¬A£½ÆyÖ½FZijÞ>£VRVÙi²vRPOt_²<�E]À~D{@_þ<RF#/aÑL*G +B6}àå/¢+zù3M§1ö↓·BCú5>AÐêhÂ3ÍÑ +ß«)$r¼ºr¼"4PÙzÆå(íC7.Tê2[¹PvîÐûàÞà\UðyWæSÙÆ½¼¸ë`E"ÇgA÷°" Ð/B`A*:�Iô$ô½_HYÇr½Ãd,§_Ác9[ø~�e¥¹Ö¾ÉZø}}_)`�DhYlrNµE§5¤h"ytCõÌò$x:TP«ñ̸naõôG°ÚÓeA +ú`cEìZA¡wsÃôÉ¢±±F +[ DçhÞRî=)à£{¼È¬y(È;ÆD¼6*t'èaâsó'c)oå,pMöLrâcLBPvmzlÛÓ³Khó@j>4>x¨ù*±wz}\`AN·p 1ÞÇu«äx(TSoG�y{<rc/å8Z«M£ Ykí-K@³¶J©°ÎWiºb«ÐÊÆfðHgµäï.´>}©çh +á]£ô5²S`½*dÇGUH ]A»j¹Ժ>H)ɽcõ¡>&¤ôúP¿iÝLC×®aßÄ'§ú&ä´ìr}¨ÏNõoIIG^4ÃÈ3 ˧Þ1ÑB¤5Ä"OéºF2¾°ë-ç24p~Ièw;&ðîoöXDeÁN¢äx EXm`b¸%Äa n`1^ÎÑ»2LPQ8'´P Ó[¶³s°ßÙ)Kf60ð_G] VZèzx¸,ÑaÕ °b«:R@~ù±¶Ð}eæÅøýêÎéØ0sùÖ)|¢\ÝiW#Q¦Ö(¨'ÛÖUâaÚ¨`º~oõè +kI"X¹¾çY +Ä�£v<�ðtjdXíPÁ"x÷FõCÜR%g÷1ÅÀ}\mø*;x¯A!ÙÁ²!Bvp ¯F+D8Ò� iÐè8mXÊE?FÇ×âÊbh9³á9oÀE£Ìá9WURâÇ4Çsvu4ç\ðØÁÇbk¼ÆtºjtäÅ\QÃK{"`~"âòöiû3¼%M|o¹®§ôQ7~ßÁÅ$]«ÓjAG¸¦®9¢³¨8òt,;J:aÉÒ-p8d«© swáW/öóëhJPj5[U'Rìä¦ )tú]¾ÿè\Ñq m` m¡ÍÌè/pú;V émR ¦æ)PsEý;Ä6Á+¸6nPÿ°>`à16ÄDWÿb×øÓ â+ÆÒi½ïÁÈ ²¶ÀY9tuFÁ´%¹�èó«\³H=& AGбEÈÑé +ôNÜ�¯PÎfæ+P¢jQLøDÒE]Ü@Rõ�áÁÀ÷#@ºµº·ge¤*Þ3²zªÃP�$2´BÐe¨! ÷ HþFäA¤Ú2ô·Ðo° $)7Hdá%o$ 7èý¤-nnyýý¸öaÉ äOé¹öô7nGZ/vTÀþ4-Æ{©5äUÎxëYð47sÇ{J æK»J¥j|MqòEΩ2¶¾�yþñG?"Ïò?¼ýåk¿oÿlûËo?ÒÏ×úNåN³D/fh7øLù¼¼0Gà Ì%Aa*ºß6àßG^]ÇEYà¸÷æøýEøï¯Òï£KI@îµ/É úûGDùýpá ûÐÖå"_Uò TâßOóô·o¥Çï¯@î;öF['£éwí¤¿ôû(-ñ¼¿:áøû×*+ýÛ÷53sü^Jïbmï÷ù÷QÜÿÕ 0oe'úXêZótãêsÅ@yú5YþÜ¿ç*'j=þø ÿÊk«Âè÷U¡ò0á\ÕÖãºÿÄýcýÑú6{úî¿¥õ:û§üÓKfù'AùÚâVÚýå· ë½¤ÿ©ü¾é¯OòËô[í-ýëVÿùï«úЯ¾·öèw¿mÅ=;þ¾LoÐïëô÷ù×óÓý[h?/ûGÙ¼RèÝë÷_Pΰ÷ª;;õ�áeÀ_ð@°�·òÉqP?"�3`+ì09;ê)À=ê(@zµ7¦wÌöл:ÐT�²À·Ìgä@8TÀKkPÙðu4_Ï xÓ`3 ¨Áe D Æ<À`C/"þÁ"Òi¨eXö ZjO�¶_ô÷XÀkýý¤ßgHí÷ó[ íÀ<Äå(À:ýäëlh9 a¶þ~yëÓ¼µ{WÎý|<³¢ïeýekákù~FÙæ¾¿ê/ƶֽZ>zÀ4Sç¿AW±Óùõý×ã²ÿOòCéßPþ̰§àxþ«@3k�ôÉ`,hÿ J"�ã÷ý?êÁ·£Ã÷WgÐùQH~¿ÙÎïoùVðûÑXÔ[X®t ¥ÿ¼gàþë/øñöË~ýò·e®åãïçÌö¿üãµ[ËÅôø7¿ùú§ÿñç¯?üþ×?ýéï?ýË׿ýë/¾þò·?ÿæÿþú§ß|ý¯ÿ÷õoÿñóïÿð¯_ýÓ¯õÏ_¿øþúßÿô?ýíç¯ÿòõ»þË¿üøã?þñï÷û¿ÿé§üMËoÿö?ÿô~üËßËwß¿ûùøç¯_þïþÛ/»ûÿq#* +endstream +endobj +165 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 744 0 R +/Name /Im156 +/Width 47 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ~üG"ÿ70Èÿ`øÏÀÀ&þÉ0i&eH$d È$Vdò òÿt"U¬ÉÈ$Pdü쨨¤¾eí3�Ûi# +endstream +endobj +166 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 745 0 R +/Name /Im157 +/Width 54 +/Height 61 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x± à E¿åÂ%#°EºÈÊ\s¥bFpILþ]îá:ÈâIæÇ;`GKç¼4¼"f ù°glµ1ÈT¦OÉ;ä?×%Å´!ȹ±¢¢FPwÅ1#)ZÊRÁCÑÿ +¿Á®0WæÅOúÌâVÙL¸/Ì4T!nÌ5Ò¯ÞíÑíþ|?>jÇy +endstream +endobj +167 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 746 0 R +/Name /Im158 +/Width 45 +/Height 65 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmÐ= +Ã0à<dô|îÝDoUhÁ>¢#xÌ¢>þA»|èI¶¸¨~Pq;ºaÝÕÐm°>$²Ú*µ>6X|²ååFñOæ©XØ4äÉ/Y _ÆíÊS¦yâÈûâmÛCÉMèÃ4Ägí¸M6e¤eDFÆ+pËÎâòLT ¹<åòôΩu¹ð|Æ[¹iM[*iOý£þzºÜôü�ØÈ´R +endstream +endobj +168 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 747 0 R +/Name /Im159 +/Width 67 +/Height 68 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÒ¹ 0P[)(³ÙP1 ÇhH,Âs$T¯oãM$QÌDN XÀ�FdïHo¨`£ö`À�îÄÞðo_W~OºÇ³B ÓÇ@î«à<Ðbà à 8åyQå +Ï« +endstream +endobj +169 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 748 0 R +/Name /Im160 +/Width 54 +/Height 44 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}ÍÁ Ã0 ág|ÈÑÔôÜKC½V¥É>]£d}p¢>)¥¸ +Ä/"ðÒäNVà(#)ÆL&R?p÷ÔàH$ü;< $Á@²(K @Éo"a÷tÀ¸æG£Ü¹LFJªÅظAò/ìvxAÛ{оÐêåüx^_e«`] +endstream +endobj +170 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 749 0 R +/Name /Im161 +/Width 50 +/Height 47 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}ϱ !ÀEp%XràÐTfACîáK¡wFXßÁ/ÙzÐ-{À±Bp,#íÖäéÊ@ÔHñøÁq³áûûWxN8 ÄÁ>c5"!«!Ô&ù`õñ þÇØµqÆãBô& <uaénÔݲͰX"vûÀýöz?¾G"R +endstream +endobj +171 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 750 0 R +/Name /Im162 +/Width 25 +/Height 69 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨?Àðÿ?&fbÆÿÿÿß%]k(��÷µ§ +endstream +endobj +172 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 751 0 R +/Name /Im163 +/Width 97 +/Height 68 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÓ» à a%Dö"NÜd´ÀE$Ø$«XÊ ñ.,ßpÈC8Ȧ¯AúuuEV "ò¼uÕ2æY °÷>®-ÑÏ@CÐ.*_p¹n °¹.é@#È[P¨³uN1 ®¡@P· Ô ¨©NO)È)ÈðÑ)~n*h®·{`%V`0<; + áÈà[âU §>¸oëãÏÀ +endstream +endobj +173 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 752 0 R +/Name /Im164 +/Width 44 +/Height 47 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuϱ C!ÐCÀRd�&`¡ìÀ(@IñÅå¤ü_$OÈ>,ä Àd292Á8V¿Ña©Xãa&YZ¦ sßíø:Ì4xÕÎ/ÕÕì?«ó4ûÕ֨ߺ¨»×¡96Äjã²/§@"ÕWIåÛýùz¼¼y¿ +endstream +endobj +174 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 753 0 R +/Name /Im165 +/Width 59 +/Height 61 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuÐK +!à_\¸«Gð}×E=V^Ä#¸Â0i|,¤XáçC" ÐÌ;äf8¶(ÿÎO`Õ¡É05ÉDL¶È¡èIKK÷Ù]aE¨;æq%q°ÍeÐÏnYÈKrS¥¦¦²'`ä 6àæ½[ÿáNÍÒItgA¡ÕÎTýh÷ +tkÒ\Ks]ü±Q×Ýþxtûxô¶·Gx]¿b[f +endstream +endobj +175 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 754 0 R +/Name /Im166 +/Width 21 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°``¨``üÁ ÿáß?hÿ0üÿÿDÕª*�d¾+ +endstream +endobj +176 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 755 0 R +/Name /Im167 +/Width 45 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿH$ãÿ@ða(xI0iA`$#dü`Rþãÿÿþ� +©kY»Ã�Îu]8 +endstream +endobj +177 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 756 0 R +/Name /Im168 +/Width 56 +/Height 60 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÐ1 +AÐ³Í ít{ÁfÑ«xke³à ,·£É_ÇÍ/òÀèL<u:7t`kèç5{pgðXãnk¼WÂÀÎ âªâɽÿ"a"H gNÝÔ`iniV!Àäm¥ºYé®ÌU¥1®÷ã9xXD +endstream +endobj +178 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 757 0 R +/Name /Im169 +/Width 62 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÏ» Â0 ácÝÂ^�áRXqÃ@.Cxñ(7bKq%ø(T_cÿZ06Èh÷zÅÉ(ÞÐÌg=Ð+hßÙ(¯²,(?Ø ¶¬kg½X« íãÔäb,5ë[Õ+$ÿ«DuHyôçVÔ!?¢¯eT¬çf*æK©J]¥x4_]»:N?rÐt=óÏs;$Ðýõþ¸½üëh +endstream +endobj +179 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 758 0 R +/Name /Im170 +/Width 29 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]Î!0EÑù0qèJÝa/]Hº,!òø´¢CŹòÍäHøw&Ð33²Ñ:u*E´ºdQoB<ã×ráç0ûíîaZ3NPf\îÔácÀºª]É¡º^Í î- +endstream +endobj +180 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 759 0 R +/Name /Im171 +/Width 59 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUѱ 0P[)è2«°ÈAƺ2£0%E¿m EO +!þ_PhD4-¹;6Núâ PLªâ(n½rxNæÎü¶_[²oz±'3¸yE31ÃÉE¯ôQ&¢K8LÆ9ÜYÜjµoW¯}yÕnnõú½R_æ·ócP¢,·º»YkÎ$ÿ'´áTª©ëôŬÓôýͨ_ +endstream +endobj +181 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 760 0 R +/Name /Im172 +/Width 43 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMϱ PÐ;ÄoPÒÒÑ' JU²A&DÇ,ÙâoñãóIè»x¥-NMav¯´¯+ßô.@g×Âä6ôB[Ú¥õt0÷U] '×Ä6X +L´=íè¢;j(`vÅ=%}YÂûíó}üzé<á +endstream +endobj +182 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 761 0 R +/Name /Im173 +/Width 9 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xa¨gøß�õ2Ä�]*ÅÙà +endstream +endobj +183 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 762 0 R +/Name /Im174 +/Width 54 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿ?Àäÿ?Pª"È@sPÇv3±êù�H|7H +endstream +endobj +184 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 763 0 R +/Name /Im175 +/Width 29 +/Height 83 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``üÁÀÀÄö À\æì ÐËpÄõÿÎ�:¥hý âÄÁò u õòtp?@ (|@á +/°C@áÇøC6¸j¯�H/ +endstream +endobj +185 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 764 0 R +/Name /Im176 +/Width 19 +/Height 82 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x 0 ê@àAC0AǨ@t1ÂH$_ÀÔ|yßX8iÇ@#,àÍiCÄO/LéV¬/{ÅýúÏ7'd¤dB1̶Ò.þKºVÒ¨LÅbÍóý©/Q +endstream +endobj +186 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 765 0 R +/Name /Im177 +/Width 41 +/Height 76 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}Ð1Â0Ðeè vî¹�êPÑl½Gá"BüÕÁo±eù�î¥`¢;ŧ8^ÊdÚük«Q·«Þ]ÎñW8vÝUw¨]_ .¯ÇiS~I×$=´Ùm?qßJzº¬¡WÉ=¯¡ó^&æmÆã|üÿL´ +endstream +endobj +187 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 766 0 R +/Name /Im178 +/Width 9 +/Height 9 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xa¨gøß�õ23Åû í +endstream +endobj +188 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 767 0 R +/Name /Im179 +/Width 38 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÎ!1 áר£ ©Ã` ö*a%°Ý¬àL¸r:ìM× +HÍ'f²�jm®Sñ ¶âú +ÆÂÚ»sÔ#!ÉL´N*mHÜê¨b' +ùW^|$o^OéÉ?Vnõ3¼\¢Ægõ´ÎøÃ¡wÖzNÿxMÄLÌ.Cß ±;^îû/@U +endstream +endobj +189 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 768 0 R +/Name /Im180 +/Width 4 +/Height 83 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKø@mÀ\¾W�ÐNS +endstream +endobj +190 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 769 0 R +/Name /Im181 +/Width 40 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xU1 ×PXòZk;ß ~È?ø@IÅy·FpØY HDÎàE¯!8N ®0d ³Ñø(üm°eÀµb¯\*4Ft§´m{ûÿZFË¥ ¨FIêRü«À2¬Å¬j¥§y»DFX +endstream +endobj +191 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 770 0 R +/Name /Im182 +/Width 29 +/Height 83 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÃÀÀðÿ�ûÆ?@NÛp<%ùé�ñ�âæH +°ÿÐuq<HH=H=Ü +PxÂÅî3@árlpÕ^-�rCG5 +endstream +endobj +192 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 771 0 R +/Name /Im183 +/Width 55 +/Height 61 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x Ð1Â0ÐeèFn@E\¡)GÉ2v¨j¾@ @b¨ê&®¿ø�'["¹BBÁxå§aî@?ëült,ðáAt}æÕ¢çhð|n©Ì76YÑ^o¢¶|4ô_ÜñÒÀö8×·F l¸Fª)eîb ãî¶çdÜm ºÔ¬u]ý¤×À½hóÞ,èf$¯³íÇá /%] +endstream +endobj +193 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 772 0 R +/Name /Im184 +/Width 52 +/Height 76 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuÑ1!�À%û`ciä>è +s¯°ó >Ä +®¤ w.z*X²Ù]��L¤ Ä<[Byåm O!#ÑLDP"| ò³UðÿÁûgZ+&®ªIÆBä¢×B ÎþK{ ©mÖ·PB,8�>] ..¥×M ®<ÆFoº32汿Çh]³Ñ|è}æÄéò×_§Ü/í¡ætF +endstream +endobj +194 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 773 0 R +/Name /Im185 +/Width 36 +/Height 54 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xEÎ1 +1ÐRL9ÒG»\KpÙÍa<HÀä-BôOØhóªù> @¬¤Ý +\ ¾ÉZ¡$R°+´ ÝAÈ~°ó|Fú`;°IÿÑøÛÞÆ=º5ûÄ7ÑÍõü)d£Äd5ëOb[gè|]/áµS¯ +endstream +endobj +195 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 774 0 R +/Name /Im186 +/Width 21 +/Height 73 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`<ÀÀþÿ +�ÅñÆÿaýK_dÃø£ñÇÆÿ!èÁ?ö5ìløøÿ10ÿ`õlÙ. �FÖ +endstream +endobj +196 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 775 0 R +/Name /Im187 +/Width 44 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]ÎÁ Ã0Ðo|ðÑ#ø^z-´PðJ Vé*Ä£h}pJNpBA<@Ò'[À¾òÀT'Oà/»¼RM^`ÙX5Ѿºf³a+ܰJù!Ãó®TØÌðy76IæîJÚå¨ù#Ë%$ t�æÐTëʰ³õÐ-ªë®kþóz{.?Yñ_7 +endstream +endobj +197 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 776 0 R +/Name /Im188 +/Width 32 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]α 0@ÑrÁ)3¤@¹X�ð0r£xJ +ÄÅ®P(^ÿ@Æw$Ô¡µ9ðvÇ%ã¡2®h|4AµVܼ¸Îm!¼î£Â!$&¦¥rPKïaÞúyÙ) +endstream +endobj +198 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 777 0 R +/Name /Im189 +/Width 33 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc~Àøýû?>9v;y ûûûõ öþ7�9ÿC=C°axPÏÀÀp F0 â +Á&~ Ì`â +Á& ü`â� +!&@J@V(ªÕ-Q�¶,q +endstream +endobj +199 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 778 0 R +/Name /Im190 +/Width 46 +/Height 52 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]ϱ Ä PG.i¯ó©"¥Adã + +¯ %#PºA[Ð+müôÜÕ¤çß«EL)fKÊÖò2<´ÄyëJZ5ÍÚ=Õ¹2ý+öheÙµ¸áܳ!Û×XÉ-ÝÂiDpqÄÅ,#xúv?ûQîóG=¾ +endstream +endobj +200 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 779 0 R +/Name /Im191 +/Width 14 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨áÿÃÿáÃFüÀø0?`ÁìøA°¿AäìÐë°F�¡BEBÅû~>ͺå¢�½e� +endstream +endobj +201 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 780 0 R +/Name /Im192 +/Width 39 +/Height 198 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xí;à D¹ ô ì2·°O6A9Yª#¤tw±¥ÔI'¡4ÃÀ 7YfXE¿f/¸?ÑåbT¡EûVbTÙ¨²pz@AT¬|Í5án)h÷ÉpìuÄ!¡#¡ý¡[(¡ÇØ ÙíyÑ~/Õ¶>8=Ü|ÝÎGòxCv;ÅBxäk,oRR5cʵõ+q1\^×Ç´ +Áñ +endstream +endobj +202 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 781 0 R +/Name /Im193 +/Width 35 +/Height 58 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`þÁÀÀ ÿHÔñ``øÁüñÃæìjøì <P%° ¢ÿ�Nâx@;õ@W@s$Äõ @·#|ö ÐË??0~xà ²Uív-�ÑbR +endstream +endobj +203 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 782 0 R +/Name /Im194 +/Width 55 +/Height 61 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmѱ à ÐoQÐ%1Ò8rJ"+»¬Á¡tLþÇØìHFOºã0N�ºì/$çÐ*ÖDrx¾Ð& ÜL0©`àâFØx4jÁx& i&LaP ÕZñ*¹�TtÁ¾âÿ+X°ó�lÛ¶wh s%ìÐÌnÅAdz½²Úâ]æëÁw±¯Dg½~F2*ãÖþõöxßóqe +endstream +endobj +204 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 783 0 R +/Name /Im195 +/Width 33 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x ± à E¢ XFNRXñJ)Ra2£0%Êån÷tÒ_úøê±Bá7ß +㸮Ñq¦Ð|Uh´�«a7dC×»ÒÓÓvÓèlî ×I¯$G©ä( wmù ¶íñùÞÿ93.÷ +endstream +endobj +205 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 784 0 R +/Name /Im196 +/Width 37 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÎ1!ÐO((9W0Ù= lA§7ðvk¼G ¤ à!Äæ?�Ê?²jòèÉ10m°âÊËLwÀ"`eæ\dv |kvª±äa?"#læu½Ãf¥Ò®;ºÃ×Ñ1weßÖß,EQXDÑlv¿Áhõ`[ Nëóü]W[n +endstream +endobj +206 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 785 0 R +/Name /Im197 +/Width 46 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÎ1 +Ã0DÑ1.Ôto*E\)¥Á u¬: Ò ñF³1ÞâUS|¸Ü�DXÕBo6ßÞd®^â<Ìλ½w3·ñò¦á÷SOêKÃçSÔªá v áýßÌð ÆÌð!Ñvk±Zrç<ðïó^T¬ +endstream +endobj +207 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 786 0 R +/Name /Im198 +/Width 56 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUб à á((½@¯A¤ÈYÉe$[±RzFpIaÙ¹6 +¾ã?-èVh�¾r^-¾pZ }EF^�ØaèäV lM>>½a#ÄDÌ'Ya+Òõ¾ìOT`רG¤DøÔeNrWWp9i]KfvTd%Ap+Ò¦[ìcúÚ¶emá +endstream +endobj +208 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 787 0 R +/Name /Im199 +/Width 76 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]бmÃ0 áG°¸Z@1×P�ì£Òp!i¬ádp°t!¹#%ÑbqÄÇæûAé RDQwȦÀ߬M.dEó¡_ÏÏÛ¡~Ô·è*úÙ¥¿ÖÀ"{Öe\#«oYükD¡j*õ·IùUä'èå,Í"U%èeiD¬^ï´d!T9Yv@NùF8½tU9¡ÑÎÀnêQ¢½È>n"·)¢D ¢,åTQVè)h)y9YC¦èóýþøøàQû +endstream +endobj +209 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 788 0 R +/Name /Im200 +/Width 51 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuÐÁ 0PH{³¸§^tQ;GGq&Xû5±¹< DRD@. ZÀ�:Ðj4Ì®B5\`Ë(ܵ§³¯6LG¾3%¿° ol#XÃõ]+øõÞÏ?Ãݺ +endstream +endobj +210 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 789 0 R +/Name /Im201 +/Width 38 +/Height 54 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xEб à Ю¸.^ 2] ¢X,²&xF ¤@¶Wîß@�_È÷þ+· +ÉZy.ÓF|tWXRÐN²«e§ØàÉt'3gàOcá¸E2:\v4 èÂzs³¢DSe]y¶`¬Qwz6ÆúÈÞq|>6à;¿@:'¯õ÷üíV +endstream +endobj +211 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 790 0 R +/Name /Im202 +/Width 32 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}α Â0@ÑY½@SÁ·% ñ à åFHéÅ\ xýiLc'Ú¢3_ÒÔIa'EÍ5ÒÝ*J VUZuîøcࢻ< ¹µÀ3+5¶`âÎYºÞÞûý+© +endstream +endobj +212 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 791 0 R +/Name /Im203 +/Width 20 +/Height 98 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x¥Ð« Pá 484¥* Y äÊn)D¬`îV#ùô93 °XRKfÈqJh½vØHd%õ2å&ª§;}¼ùfßÓÓÍðëzTæï +ò«ê¨«6MKbw )4fqã4Eÿ]ê_Þ<À +endstream +endobj +213 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 792 0 R +/Name /Im204 +/Width 35 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xco?ÀÀÿ þÄ?>6Ô0üf¨aHøÇ`ÃðDü��Å~�pùÃ(Ê~�J$°`~�!øØø3È30ÿøz¥kgj�v¯1 +endstream +endobj +214 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 793 0 R +/Name /Im205 +/Width 109 +/Height 116 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xµ±mÃ0EO`Á;® ´Jà"Eäh #¸T!ðrDlé¹îÄýG +:©îU@oÝ´HRù)&ÃU&ÍwòFQçm±J°Ì{E"_m÷íA³¾Jö`ÝhÊH!·¾[2âfH +ª\Mf§ÕPíBjíL ÔÚ9@æPMHMHæPM~©Õc:Sc~5÷ªZzQ-üAm9¤Ó"ì)Q,D3íÌÔAê1 ¤âHÅSx8 ÞÒÞ¯ò¿÷p¡ðÂGº+©¼JÁð¡`¸Í÷3Û\²,PIUÃbxPoEÝ7VPIFJjSØÃ¼^NïxBMýÔùG(òþñ>¿°æ] +endstream +endobj +215 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 794 0 R +/Name /Im206 +/Width 17 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcàc`g`°#;¬ùû +0J�¢ÀñT�£ ü $ÏÌ�Blü<ü2 sj5j�Ì[ +endstream +endobj +216 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 795 0 R +/Name /Im207 +/Width 43 +/Height 17 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿüG"(ÿ1ÌÔ¬f�Ç$¥ +endstream +endobj +217 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 796 0 R +/Name /Im208 +/Width 54 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]ϱ Â0Ð:tqKÉu* $¯<�J¼ {àQ<Káì\ó¯»H\@©S È©W#çaã¼1)×EÊ£®<æp¦2yå µú`DvBþa,5fJ0ø#p +x²`v\wÐè*§^Þ¡è-ùé,°(å 3<jTN\/Ëëö\vRt +endstream +endobj +218 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 797 0 R +/Name /Im209 +/Width 20 +/Height 98 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x¥Ð¡0DÑÏ 48j@0CÈÊRJJDr¹Ì<}·»"l0Á=´ªÙ©CVEªâ^-¡ØiM¸5&¾Õ"ýð9é¯òÚH¤¯¶üNë¤\M +ZS©lÝ{bÒYd�Ýêñ°ÎB½ +endstream +endobj +219 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 798 0 R +/Name /Im210 +/Width 72 +/Height 44 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`�9(ÀÃ1ø1 P;q�Ê`~Î`ü�ÓöÆøcÔÁöp[a&òÃLdÿPÿþüÇ�p)¸btípáVÀ- ;æ0¸S1}÷ ÜËð@ÀxÐágêUÁ�ò9 +endstream +endobj +220 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 799 0 R +/Name /Im211 +/Width 21 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x ͱ ÂPaG)®ÃR ++¤UVÉ Q0ír#¼EÜK$Z¬¯µ~ о+û)h§F¨ÕQÕSóES#<Ýe³4»-ØÊJgFOO35QA9ïÎìYC;^×ù 1-$ +endstream +endobj +221 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 800 0 R +/Name /Im212 +/Width 69 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]Ñ10б,á& +m +$®2[¹Xå9e¬àX[ráÿí8f%Æ<!¤l\àkÀ&Øy¼FðdÎòx§q5:OÅðÂ¥/ 7Â(ÚïãZà2·Â*,Á;vû`6¸`FAT°fÄ9c: ¦¼5~îúù"à:!£U°¦]no\eº`°Æ®CƦ«T0»Î# Øu&¾1ê*è*?@júùâ iþ"ÆP¡©qÿúùýþUæb +endstream +endobj +222 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 801 0 R +/Name /Im213 +/Width 60 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xeÑA +Â0 áÁ+¸TPzÐHs,=JÐeÅ:3c'oB~ZdFJ hÄbÓ�DÖ§Ú¾wSp.íÚ,O<L¹KÖ©oP¿Eǯ¯Mâ(Ò°q¡³C4Ûgf{^k¾·ì½¹³ì£y°ìËOÍnÍQ³5ä+g#ÄÙz³Côwþn×çëþ§{v +endstream +endobj +223 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 802 0 R +/Name /Im214 +/Width 53 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÏ10á¿ib#«±«£ Wñ@#Æc7!á$.|}ÕØéë[þ¾G5cÖjQÌyÂ!²ûlÈ#{Áw .ë)#'ظ1ag'êÈEBfNÈYè#º'TâÛ ùj²AqHȽ豫®Ðùóç*4é,»GÖ9,ð£8ÞÅ·>b +endstream +endobj +224 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 803 0 R +/Name /Im215 +/Width 50 +/Height 4 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿ `òÿ(U4b©æ�ôòï +endstream +endobj +225 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 804 0 R +/Name /Im216 +/Width 42 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]Ρ 0 áw¹C`Iõ¨Ä$[mn²Ae0 æx�VD©µn}ô+Eye?E2KH?s-cpø+ÖjUØÖ¯Øú¼w6âò¥ë¼pºC¿þ 95 +endstream +endobj +226 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 805 0 R +/Name /Im217 +/Width 25 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÌ1 +@áY0M°V,6©S¦Ò«xKÙËxe`i!>'Ä"<¾ffxxË~¡båA¤gb¤cþEáÔC+DYÁ-zåÍJÅ7yÊàÙ¥ïy< \%ÑÉÛvìTß_ss�(m +endstream +endobj +227 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 806 0 R +/Name /Im218 +/Width 18 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcxÀÀøýÃÿ?Álj!æÿÿ�"!Ūr�.$4 +endstream +endobj +228 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 807 0 R +/Name /Im219 +/Width 53 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmÏÁ !ÐO8p¤§ +õb¤-¥&+ :OrØì8qÕ¸^Âÿ`¹^X ÈíB9p6 ²åâepõB%Pµ³â[T\»"(M±$ +ueZqrDzO0»Áip 1 &w\êè{Ût*%SUúKا¤IɽtúùF+ÿ ´AÀñë`þFë:3²öÇx;¼�WYÌ +endstream +endobj +229 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 808 0 R +/Name /Im220 +/Width 28 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x%˱ 1ÑA¯$#*Ø�ɸWpG'´r¥l /@,!ìM-c¿Sw£=[FçC?½é%;à<ûWwDËLÔDd&:ÄFuº¨úFñп.×õuû&Ü0û +endstream +endobj +230 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 580 0 R >> /XObject << /Im221 232 0 R /Im103 110 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im21 28 0 R /Im22 29 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im117 124 0 R /Im28 35 0 R /Im21 28 0 R /Im26 33 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im117 124 0 R /Im26 33 0 R /Im30 37 0 R /Im22 29 0 R /Im112 119 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im107 114 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im30 37 0 R /Im116 123 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im105 112 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im120 127 0 R /Im21 28 0 R /Im101 108 0 R /Im116 123 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im21 28 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im120 127 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im118 125 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im24 31 0 R /Im28 35 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im102 109 0 R /Im30 37 0 R /Im109 116 0 R /Im101 108 0 R /Im25 32 0 R /Im118 125 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im24 31 0 R /Im101 108 0 R /Im106 113 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im117 124 0 R /Im102 109 0 R /Im105 112 0 R /Im102 109 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im117 124 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im104 111 0 R /Im109 116 0 R /Im101 108 0 R /Im25 32 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im102 109 0 R /Im120 127 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im115 122 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im24 31 0 R /Im111 118 0 R /Im111 118 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im168 177 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im28 35 0 R /Im105 112 0 R /Im120 127 0 R /Im222 233 0 R /Im24 31 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im21 28 0 R /Im22 29 0 R /Im223 234 0 R /Im21 28 0 R /Im105 112 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im101 108 0 R /Im25 32 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im21 28 0 R /Im26 33 0 R /Im102 109 0 R /Im24 31 0 R /Im105 112 0 R /Im102 109 0 R /Im101 108 0 R /Im30 37 0 R /Im101 108 0 R /Im102 109 0 R /Im107 114 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im222 233 0 R /Im105 112 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im223 234 0 R /Im113 120 0 R /Im149 156 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im120 127 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im117 124 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im111 118 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im26 33 0 R /Im102 109 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im112 119 0 R /Im25 32 0 R /Im25 32 0 R /Im116 123 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im25 32 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im23 30 0 R /Im25 32 0 R /Im24 31 0 R /Im111 118 0 R /Im26 33 0 R /Im30 37 0 R /Im118 125 0 R /Im113 120 0 R /Im103 110 0 R /Im22 29 0 R /Im106 113 0 R /Im28 35 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im102 109 0 R /Im120 127 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im101 108 0 R /Im24 31 0 R /Im107 114 0 R /Im28 35 0 R /Im26 33 0 R /Im106 113 0 R /Im21 28 0 R /Im116 123 0 R /Im26 33 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im101 108 0 R /Im25 32 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im102 109 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im176 185 0 R /Im188 197 0 R /Im206 215 0 R /Im176 185 0 R /Im187 196 0 R /Im137 144 0 R /Im137 144 0 R /Im21 28 0 R /Im105 112 0 R /Im25 32 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im193 202 0 R /Im30 37 0 R /Im29 36 0 R /Im136 143 0 R /Im113 120 0 R /Im224 235 0 R /Im30 37 0 R /Im101 108 0 R /Im141 148 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im144 151 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im105 112 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im115 122 0 R /Im21 28 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im28 35 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im105 112 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im29 36 0 R /Im25 32 0 R /Im26 33 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im30 37 0 R /Im29 36 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im105 112 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im24 31 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im101 108 0 R /Im30 37 0 R /Im101 108 0 R /Im141 148 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im112 119 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im120 127 0 R /Im105 112 0 R /Im28 35 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im201 210 0 R /Im176 185 0 R /Im225 236 0 R /Im137 144 0 R /Im174 183 0 R /Im136 143 0 R /Im226 237 0 R /Im176 185 0 R /Im136 143 0 R /Im227 238 0 R /Im202 211 0 R /Im225 236 0 R /Im187 196 0 R /Im176 185 0 R /Im215 224 0 R /Im225 236 0 R /Im137 144 0 R /Im137 144 0 R /Im120 127 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im30 37 0 R /Im28 35 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im107 114 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im107 114 0 R /Im24 31 0 R /Im115 122 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im21 28 0 R /Im105 112 0 R /Im101 108 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im28 35 0 R /Im106 113 0 R /Im25 32 0 R /Im201 210 0 R /Im120 127 0 R /Im117 124 0 R /Im25 32 0 R /Im22 29 0 R /Im24 31 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im201 210 0 R /Im176 185 0 R /Im225 236 0 R /Im166 175 0 R /Im137 144 0 R /Im228 239 0 R /Im201 210 0 R /Im176 185 0 R /Im225 236 0 R /Im217 226 0 R /Im137 144 0 R /Im229 240 0 R /Im230 241 0 R /Im225 236 0 R /Im166 175 0 R /Im228 239 0 R /Im225 236 0 R /Im217 226 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im118 125 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im25 32 0 R /Im140 147 0 R /Im22 29 0 R /Im21 28 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im115 122 0 R /Im21 28 0 R /Im114 121 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im109 116 0 R /Im30 37 0 R /Im116 123 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im24 31 0 R /Im26 33 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im120 127 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im101 108 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im105 112 0 R /Im102 109 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im107 114 0 R /Im105 112 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im26 33 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im29 36 0 R /Im25 32 0 R /Im116 123 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im26 33 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im120 127 0 R /Im107 114 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im24 31 0 R /Im107 114 0 R /Im21 28 0 R /Im26 33 0 R /Im26 33 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im118 125 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im143 150 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im24 31 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im30 37 0 R /Im109 116 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im101 108 0 R /Im107 114 0 R /Im21 28 0 R /Im26 33 0 R /Im26 33 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im30 37 0 R /Im101 108 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im116 123 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im30 37 0 R /Im111 118 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im25 32 0 R /Im113 120 0 R /Im103 110 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im116 123 0 R /Im30 37 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im135 142 0 R /Im167 176 0 R /Im200 209 0 R /Im20 27 0 R /Im105 112 0 R /Im23 30 0 R /Im30 37 0 R /Im28 35 0 R /Im26 33 0 R /Im111 118 0 R /Im117 124 0 R /Im25 32 0 R /Im107 114 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im116 123 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im173 182 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im101 108 0 R /Im25 32 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im101 108 0 R /Im25 32 0 R /Im118 125 0 R /Im29 36 0 R /Im25 32 0 R /Im108 115 0 R /Im30 37 0 R /Im26 33 0 R /Im28 35 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im24 31 0 R /Im29 36 0 R /Im102 109 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im24 31 0 R /Im22 29 0 R /Im23 30 0 R /Im120 127 0 R /Im101 108 0 R /Im30 37 0 R /Im29 36 0 R /Im111 118 0 R /Im30 37 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im106 113 0 R /Im24 31 0 R /Im105 112 0 R /Im112 119 0 R /Im30 37 0 R /Im109 116 0 R /Im24 31 0 R /Im28 35 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im115 122 0 R /Im116 123 0 R /Im26 33 0 R /Im30 37 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im117 124 0 R /Im25 32 0 R /Im22 29 0 R /Im24 31 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im26 33 0 R /Im21 28 0 R /Im105 112 0 R /Im117 124 0 R /Im28 35 0 R /Im21 28 0 R /Im26 33 0 R /Im106 113 0 R /Im28 35 0 R /Im116 123 0 R /Im30 37 0 R /Im101 108 0 R /Im118 125 0 R /Im25 32 0 R /Im26 33 0 R /Im26 33 0 R /Im112 119 0 R /Im101 108 0 R /Im30 37 0 R /Im118 125 0 R /Im101 108 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im111 118 0 R /Im30 37 0 R /Im25 32 0 R /Im105 112 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im21 28 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im26 33 0 R /Im28 35 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im113 120 0 R /Im200 209 0 R /Im113 120 0 R /Im110 117 0 R /Im113 120 0 R /Im120 127 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im24 31 0 R /Im101 108 0 R /Im102 109 0 R /Im24 31 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im21 28 0 R /Im22 29 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im168 177 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im24 31 0 R /Im116 123 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im28 35 0 R /Im21 28 0 R /Im105 112 0 R /Im23 30 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im101 108 0 R /Im102 109 0 R /Im106 113 0 R /Im118 125 0 R /Im30 37 0 R /Im111 118 0 R /Im21 28 0 R /Im144 151 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im176 185 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im26 33 0 R /Im28 35 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im102 109 0 R /Im21 28 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im28 35 0 R /Im26 33 0 R /Im106 113 0 R /Im111 118 0 R /Im25 32 0 R /Im116 123 0 R /Im25 32 0 R /Im101 108 0 R /Im111 118 0 R /Im105 112 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im106 113 0 R /Im137 144 0 R /Im108 115 0 R /Im21 28 0 R /Im24 31 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im186 195 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im171 180 0 R /Im172 181 0 R /Im120 127 0 R /Im135 142 0 R /Im167 176 0 R /Im200 209 0 R /Im20 27 0 R /Im22 29 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im123 130 0 R /Im124 131 0 R /Im124 131 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im165 174 0 R /Im113 120 0 R /Im103 110 0 R /Im106 113 0 R /Im29 36 0 R /Im21 28 0 R /Im108 115 0 R /Im21 28 0 R /Im24 31 0 R /Im26 33 0 R /Im25 32 0 R /Im115 122 0 R /Im24 31 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im105 112 0 R /Im28 35 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im106 113 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im21 28 0 R /Im22 29 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im117 124 0 R /Im30 37 0 R /Im24 31 0 R /Im29 36 0 R /Im111 118 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im30 37 0 R /Im28 35 0 R /Im106 113 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im29 36 0 R /Im25 32 0 R /Im116 123 0 R /Im25 32 0 R /Im106 113 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im105 112 0 R /Im168 177 0 R /Im174 183 0 R /Im192 201 0 R /Im177 186 0 R /Im231 242 0 R /Im180 189 0 R /Im177 186 0 R /Im231 242 0 R /Im176 185 0 R /Im187 196 0 R /Im137 144 0 R /Im174 183 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im105 112 0 R /Im142 149 0 R /Im28 35 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im232 243 0 R /Im21 28 0 R /Im101 108 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im187 196 0 R /Im120 127 0 R /Im232 243 0 R /Im21 28 0 R /Im105 112 0 R /Im24 31 0 R /Im105 112 0 R /Im142 149 0 R /Im28 35 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im233 244 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im24 31 0 R /Im105 112 0 R /Im142 149 0 R /Im28 35 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im117 124 0 R /Im25 32 0 R /Im24 31 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im110 117 0 R /Im25 32 0 R /Im29 36 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im25 32 0 R /Im113 120 0 R /Im234 245 0 R /Im30 37 0 R /Im118 125 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im120 127 0 R /Im135 142 0 R /Im167 176 0 R /Im200 209 0 R /Im20 27 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im118 125 0 R /Im105 112 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im143 150 0 R /Im101 108 0 R /Im25 32 0 R /Im24 31 0 R /Im23 30 0 R /Im21 28 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im102 109 0 R /Im30 37 0 R /Im109 116 0 R /Im105 112 0 R /Im28 35 0 R /Im117 124 0 R /Im107 114 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im26 33 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im101 108 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im118 125 0 R /Im24 31 0 R /Im102 109 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im29 36 0 R /Im25 32 0 R /Im235 246 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im105 112 0 R /Im111 118 0 R /Im21 28 0 R /Im144 151 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im26 33 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im26 33 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im28 35 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im24 31 0 R /Im26 33 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im115 122 0 R /Im21 28 0 R /Im106 113 0 R /Im102 109 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im25 32 0 R /Im115 122 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im114 121 0 R /Im105 112 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im116 123 0 R /Im30 37 0 R /Im118 125 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im27 34 0 R /Im102 109 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im21 28 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im145 152 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im168 177 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im120 127 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im21 28 0 R /Im29 36 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im120 127 0 R /Im24 31 0 R /Im101 108 0 R /Im24 31 0 R /Im28 35 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im101 108 0 R /Im25 32 0 R /Im118 125 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im114 121 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im117 124 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im21 28 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im26 33 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im28 35 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im26 33 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im120 127 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im117 124 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im30 37 0 R /Im101 108 0 R /Im135 142 0 R /Im167 176 0 R /Im200 209 0 R /Im20 27 0 R /Im30 37 0 R /Im28 35 0 R /Im106 113 0 R /Im116 123 0 R /Im25 32 0 R /Im29 36 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im117 124 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im112 119 0 R /Im101 108 0 R /Im30 37 0 R /Im118 125 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im24 31 0 R /Im29 36 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im120 127 0 R /Im135 142 0 R /Im167 176 0 R /Im200 209 0 R /Im20 27 0 R /Im117 124 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im112 119 0 R /Im105 112 0 R /Im101 108 0 R /Im25 32 0 R /Im118 125 0 R /Im110 117 0 R /Im29 36 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im111 118 0 R /Im113 120 0 R /Im135 142 0 R /Im30 37 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im22 29 0 R /Im22 29 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im26 33 0 R /Im102 109 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im118 125 0 R /Im21 28 0 R /Im101 108 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im114 121 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im108 115 0 R /Im21 28 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im111 118 0 R /Im28 35 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im141 148 0 R /Im106 113 0 R /Im29 36 0 R /Im25 32 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im30 37 0 R /Im116 123 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im21 28 0 R /Im145 152 0 R /Im25 32 0 R /Im111 118 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im25 32 0 R /Im111 118 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im118 125 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im30 37 0 R /Im116 123 0 R /Im21 28 0 R /Im22 29 0 R /Im105 112 0 R /Im23 30 0 R /Im24 31 0 R /Im108 115 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im117 124 0 R /Im25 32 0 R /Im117 124 0 R /Im30 37 0 R /Im29 36 0 R /Im101 108 0 R /Im25 32 0 R /Im21 28 0 R /Im101 108 0 R /Im107 114 0 R /Im21 28 0 R /Im101 108 0 R /Im111 118 0 R /Im118 125 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im28 35 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im173 182 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im23 30 0 R /Im24 31 0 R /Im108 115 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im118 125 0 R /Im21 28 0 R /Im26 33 0 R /Im26 33 0 R /Im117 124 0 R /Im25 32 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im26 33 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im22 29 0 R /Im106 113 0 R /Im28 35 0 R /Im24 31 0 R /Im26 33 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im141 148 0 R /Im106 113 0 R /Im29 36 0 R /Im25 32 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im113 120 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 231 0 R +>> +endobj +231 0 obj +<< +/Length 809 0 R +/Filter /FlateDecode +>> +stream +x¥}KÏìÊuÝüþ3´ùÄz°Xô0pdذ$l)ÑÓ¾fwm~MrÞ«Ãêªý~ï¿þôÏ?þúSøñ·þúÓüUòôcú¦ï?S~¾¦R¿æ©þøõúÅÿcáÇ?þù§~; |éxÀò9~¥e;`þZ«¦t> } x< |ż°~ ô: ïÊùüOOÈ_¥>(é+ÎçÒtþ~yþïã÷ÛáñtûþýËùøÊùËãMa)à+Óó,ëÂïÄxý>3 +¦íûZw¾?`½P1×� ç+æ¿Ñ²J:RI`½@p»R2z@õ!ø"&A1 ¼ð +�û¾�IÆ@EÄ�@ +÷�æA�4 +ÈyÊ׺Q@FL"5æ¯zÆÁ÷!\%á²H$ÌP\$Ð÷O�b!@�� XÒ¨Yz�àëÅ88àÌCí«¡ðA$ñûEÂ@&Òp5azc4!SD)@9~QDW�´ûG$FC�ËÁÑ $H-ÀTiJ¢*eÆDʳfLÐÌH)/hxSw$yÖ®ÊÒn¢pAªä +�DHR5"Ì_Óʪ$U( /ª ²´B] +ÌAÁ5kdÊ4US¦ìùM´yRå¶fò bÙÌA´&äPoY9&M2&È ©ÄXæ$*C +|Oä¼hD�{?àõ/y_è ,Ï7å¹"Ç4]`r {r /÷ä@^D9øûéuÌR0^¨:¶s£Âq<bÓeï¡Iey(v@ü,Ë6Ë^pÑܵG/èYÕhl ¶ðÊãO¢> ¢ ÔUÃ�³i·Ø�¸,úìßD âCÕë®L@]ë©"\u¬,6à�1(;1¬�WUr ð5¿*fð} ¸B)��vØ31µáéà�D°àCæE"!è÷4�E ¡!Se 1¯(1¼"Á%RT( ¬I$Y!. ê¯$,t·Ä>³èÂ*©2êBAlbâG$ÃØ¸Æ ]�ÙÄÄ5OU2F®hm61¾Öüý�³ÆÆ4:2>FG9´|sE'¯(`Ê,-2£\T5Æê¢JBÞØí)Ç £®å4J͵ =LÌ9TeD¢AÓÔ7~3"$/YU&6ï^â#ê§ùAÅz%`MưËгԣ[p@åÄ7/È-QN!zsL|VÙ¤2`OØ÷9xOÀ7sb»A Ú hé@_dx:@w.M¸-0uòø~È® @gÄͽ @ãë^ÐQ»°&ô�@øû8A�È&MfÁÏ$ ÷Kú¸ö*>b@Kú=ÓfÖ: yϸÀyOóÏ èðÒrc" ä,Ñ� `^5²Xu|h£z=à«v«°¨øX pPó[¤öáã¼?A(�i5Ds¥§dÓ~¯Â: ö{ÖãÏ*UQ5ItüH"òûË"þ>Ñf©=|/i3; hð2¬ A@.ÚCµêþiX=$ÒGÇjÓbý«¥Ú$@èÚ$Ì:´@@öîb4&¨cáöêáöÄH¤&Ë B¤éÓyÒ[Éå¾k«ÈE,Øö3(ôbÆéZ¾E#ï7Öë*r1Á P8¤öÀ.ÇUÆcµ+ ° i+ä[4"Ô �äñ@O´:!x¬P·§,_ÑÌYeclEöÊ»¹àUXʲ¿à +ËE0«t+¤ªW2Ö+(ÒE3TA*b¤kÞIÂJ$J3!s §bʪAr¾A; įü¤7(vBdvDêb¸GÆ9Þ3rM"ZF*""½-#uüÂÜ0pB¡^4C³Z¯ ôHÀ»Ux³(>§.˸IßÝÛ°:ó²0ä\Z¼÷ø½î\ +Üß'¾¡UÕ¾ïq.Ì;:KEÐË� +;*±ê¾ûö@çñ{@̹µûÏ^òÕ!*üäÛúÄ/fTú/ v±%Î<.¤îµ :OèÔEù7ó@@ü¨h3îÞ¶Ôßé�d!04mâÀzò¾m1R_M-JÇ¥y§S$/FÂT¤ivQT4+RgAÑ¢M^8L»]>4Ôµkqá@Àûá)x¯ íxªoÁô oNÎB¼ºéò}ÀHM`°(ÍãûÞ@Ù+u~¿Ç¤©A¼�É]Zeðá{Påc÷pór,¬@¾ÿÖ4¬Üw-·Â�õ¼W$¨gþ`OÇc4Ê^Ç#k;^%RIj¾ÝC3í©¿ÃÏľGèQFmvpHÈònÃDdý~.¾ÉÁ!ìM:ÉSôYZÒçH(ÆBLªåÇ2 #c`»QA²hÆàMdÒ é=£ü}½gt¹Æ»Ã"b� BI¬ "]ªöpùñ{½°7!U¨éRFR¬£ +f¯,>bP¯I3#º.LæÖS©h4L!° kH¬ÏË(ÈeE*db5ßà:Ý£{ßó(¯RéÙï9AU.GöÂè5å?×05MX>{U´åõMµ¼FD¡î¨#4Ôm¥h¾"À(rb�M `}Ϫ*c߯b¤6{1ϺëY¬ßi8X =ë¼¨Ê { Øæ<«m ÍÛ#¦Ð2¿ÇïaðsláøDDd"Z« ?~¯wJ 6BãA¹S*Tt½SÊõ'èÁ8>}¯w*ñð9´pú^®¿Í >!@7&¬*ù�ݯnxÓpAtí³¢%µéåxéB<pÔ¹¤ +©M°8áPsg/!êÕÍñÖ^á!¥¡Å å.«H$YÓ"¤óËIäECÉkýg#Åäzp¥"9¢'ηJ6¸gEAFà òqGÏl@D§°£»ÁFy\@]ã4kÊ1å$±1õ³&Êy![¸g¥A@!vs(¥Ë¬kxD=\A´5+`ëLðHbp©71X£A^æ#NÐLÌÌO2'øD³E$ÏMËʼ9EÒ°<%y(vïB@÷Êcrç}ÎHÀ12̳®ÒxÄ,Ë»9½d'î@)÷Ä@^ WÔ1YÄ ´òèVßvÀ2¾Ó÷Ýe|þï.ã;~?PÆçàñ^Ð]ÆwDaGX5NMãkÑ @¦¦K/гî@ÇH7(6J6PÌ#BfÓ[Úºci&µCC¼G b�ȱxzÀúÉX ÍßX$¯èéY§ÑPæÄt9`3rc6>Þ!D1yBÎÚæËÍ9Îå ÃðnTWp#7x¨Ã¼^n:XÔ#¶á#ÒÚ±)ktË#ñBÄuð6¬yf§èsíÌ.?^@k×&ûêÔ®ð÷28hlÞù·:~+â[A¾ <Gèôë÷ͱ-JyÔéAZH+: ¿r~øû[¾'<q°Lï @±jlhHÛ#ΡÍx=^�FxÎL¯|ÏãÃ+QõÑ.9@ϵɧïõ!±nñ ÀÓ- gË´ÓÀQ¸B�êX¥tî_.ÔÒ%¯å <TÚøÜPÏ´.½ã÷0ÎKt¡d§ô¤(½Ð{®sT¥�IÍ@aGÏõnd¢ï_�© móOæ²zµ°ä�3g¼øàUbcíHÃà9;¢í±:ÑÀuv5ÈV¤J::CÖPç&Ä^3úr¥[ +:ªØÚ"ª3éÿqQÇ\»Ô6ÌvèîR{å[ ÐÆ· .(¥ÑöÙH/ÄeQ#{ÂåÂJð(¢2`+\ +:òÐ /þy£Â A�B³¨<òÑA¤BVÌmJ Ù +pKmÅ$¢ÁæZ=ç¡IÖ±% �JS^mðÒç= tIæ4a :ØR6ë=hS^mDF/Ìe9¡IÖA%ܤ(;tA^4.à)»D¸,*2÷¾ñáC©ô X¬Q³]àñ½ÓæÄ6.ÐæÛ«)t4J¶zÖóôjÈE»�Ϲ|_`DlÕWö4jNè÷õ%<fV;÷çáIÍ7´í°Þýy5ç"Áz÷!î,0Ø( +¨¡µÁ ó¹rÔúD]vËA7f§áܰ:çc{áVFþ¾ç:ï»mØõñH`×ά¿c¦Û{¾> G&é´1`mYv;V ¼¬;Þ`´2&Tt]VÂÀ¼,<ûwÔqí©ãÜÛ`d³ª£J$åÖæ£. ñXUùH cÓwëX÷PÈËÒó(¬,r±>´h\Ìã¬Ë=�," xóg<äË´VQ°ªô¬*6U|>*à4B6©$ñ¡ i²ÔVÈ �ò5,o\EMÄúÅìï:ÊÖ/QGAIÄ Ðecwte5ÇAN(;òÞ©T`Òvä½m§Í)È ye6&lT=ÖÁFUÕ¥,H$qOÇy¸ �ëXE@rXÜÏûªjLÚÉ&¬øm;ãðÈ"©$k "IÞ¡JrRU ×{æHÎö<ßcyF&yÇ� -Êûôí³;�EijS"*Ȥ%4° 87ëG¡=п×p¥Þ£ï²úë÷SR¾rý^Ä5§÷VÍ,B\LºÕp=ëa·8êaé08+~8� É êô*g=ÞàZÎúzñûñs +µ~M?L£ðöA|¦×öÅW2\[sn7_ù zUr±@²ö+_ÿ²^Ox óí RÏ«´;!VÐ˶B&xev|Uf§4X« r0 _>8Ç å×:¾dºÇLñ!$fâ¬ÚÞT¹RaKH&DHzA%]ÌìoÄ¥ !±g IêvzLE¶Ääô½^:¶0ÚÀç-(gÊm«6í|¾m8ÏôpçÖ;þÒË]£»|¼^ ?#iªO*qÊî#K�p}\®ë±1 UÕ,É!ê£VtPU{ï3êlKÝ6Ͳm{J0¦{ÌAÚ8¼ËA§qØÛ7=ÌÅ»ëp±ÛûíÐ�ÝÖ¡Ñü\$)À]Ô 2!k½÷ÄÈîa:DH·èÁby uáîbÆøYRÍ4Áá�=mdûE·ï{cmÏ&² ïõ&ËG§í½ËèaÖ|t¬E;O7.m É0¬ÍÇo½Òh}þ$BÀÍÇÏË´C!´b¶ãÐvKV³ 6êèYM±>N³½µêz ùTµ~_E?·¼z«Ïg¬îSÕè3V÷>ç¼k9IÀ»|àïwOK÷~7é@ +ÒkÉÚÆy xöI¡ÌßTYGæÏÊù¼¸éc>+÷ Ûî4cû¥a£CX{ú×AõªfU9É_ç÷éT9hÍtì J61¯[xÖjÖ¤¡'oU"Ä9´¶C>çørÏo?ð"dl'D¶}(ËÇ$ïdÝz.8n½¯£4ôíWÞ²rihË}J4ÄâÔ[òó«Î + 2jIîrzeL¶]^ß7(rÒ'[¬>:s\®é׿dµ?ð^Z-ÌjÙC;ÕÁìá÷|báqÀXöÐ Âôé; 5 +MǯrÂck2ybáø+ê¥À}þZÊ+ù¤ÇJü~ÂÅ®ã¬è�=V»{g)oéÇç ¦õ3)3JÜܳÚnàP"yÊFé`O?ztÀêþ{+×ôäµ986æx@Ïf½¼ÿY+²yß+;=@ÿ¿ �tw6$/¯ËØÄÜÐL^ ÛféñPÀ;®ôû<P4Kà3ú*ÄÞh4ä¦ +h°#Ì!�õ0KÐïËþMLèý[f[È¿?N"üÙÜ0x&ój?Ük´Õ³ÆM +Ba"=FߨH׬ 9@2Y5âKv5Äê�ùþ©M`ðE�q°§¢QM]Èz+ ö¹d!pSILHcÒ°7´ÙÿÂH)kbÇÉæ4¡-ÖÑä ÉQÞe±h¤\Tæ[RÀFÑX"ï=¾a£pÑéØV¿ ±é¤ +ÑÝ«^?0Ðaå7cî&ZX.$$F²,ÎJòóx5K5�P$ä ô?´Á!ƬÒÛg4ä8DüY;° ´´Ë¢ JËXg=FWØDÓ>HæÁÎëw·YéØ� \ݳ¤Ë¡4eZÇIáø}Ï^ÀVr|®LÃò ejsdÎÔ/Ð*H¼ÐY>uÝ!èdlÂ,B¸4]R»·c6·lºIqÒh°\£ÆÔ-3z>Â!M� {\¬Áâô�½~ #ê{\b6&èî¶Hò84H+ Ú×ó`i(¯ÍPsÁa«añpHPvÔFD|fCÙ7wEa\5eÀgï#e ÷'Ñ:r7¨Ù Ý�³ÆÆ¼ 2=Í`3\.änÃþ¡U8Ûé<¼0©À0#¹f¤&WMRÌ"è]_¯7¸æÛØ\0[.x~ì'hUvxg©Yæ.iO ¬(ÇÆ,Â$QBk¡ÖªY Ô;²v�ä�Ma¹MÃfA½( ¢cRlëP6«÷Ç kS"Á\,ØÖâ%uæm7ôy8¢ÊlÖ.ºnäí 9a(Åx"½¨u�U¢ï\ß·ïMqxÕ¤nßÅ7æf.N/¼HûF*ËyG�\H¹%[|ä©§g^ @çH +@ÇÍ6õÝ[wáb 7FÔ·m¥í§ÈH¬ÁÆ£aêôû=³íb.@ã3VøàO$AYÄ<KRPpÍõésXRUy@ToRh,@µhLèô!HTX Ǫ11"kT kÑAL¼2õ&êÀá^û0¨Êöè ßkß§L¬ôáÈ×&Ô)LÃ8´æ{Öxô@@22zfY~^á2§vaÐ ÛjD*^ Gínå´úäÍQE]@/°"mÞquØ9Nhte9m =-2áI¹ D"dÕÐ"ÓÀ¤pË Ø]{YDÐIǪJ³¨èæ{U£òõø6¡¢Yzê;/)dTL\;þ¶éWt¡ìßô +ßg)»=8P½zú³Ëݰê��hÏÏðùB ZÑt×n|ÿºîO]»Ö8Ä`k7!îY#caîâö²=½+8 £-""&èHÚF½-"iB. i[zO�TÖ{ÚpK#A·íÜiÌp!ÈjFÔ;/óÆf§ï_`¹Ç ò.lrǹ°MÆGAU!ðy4¦û¾�½vaè &èHÄë¬ Ùà õã|SºÁ&PRÆ\5úµIùL¾gíݼå¼wsÐÄôES% +<moÌiÑT1¥¥ªª\àMxÉ¢¬'3¦[ÙÃ-M´ÖTP@NÈíJ¯4Èw¶ù'õz4Ìëg^9È`b$gLr5äÄÇCaÖ0OÚ¼Û¾Áððk°:æ¿PâBGfw³g"yȤ´ÁÇ\B N¨cZ: +¸¶Í [³<C¶«Ûðíå»0tC¾à ¶¼1àfÀà*¸mtÇõÅNT05ÿu@ÈFiÛ0*![ì§ñï_%*¤íÆV@tøþÚ«Êó¾ 8ëx|¬¸í�ë: kÝ1:B@.&or`¨ú#¾1òg²÷ ÐQÕ¾¢t¸÷kÕpÈó-·D¡-æ [ÞUT¬i]cCz¸ÜÓÇ{U·#GxÚTãjgÄv9#úb>ð<äáPõÂuuÈFþ&uT¢$(\ +ÇÀ<tÏ$Û]aÎM¬c©Ú$Ò·4Àçæ!1Ô¡ +liÁ«kÔú Í5:JâEörÌ·TÍV[Þö$ÎÚõúÖ\D"&i[«çõاmE¿õC߬£¬¿ÊÐÉ4hölÏ ¡ËVÅ×ÏAê\¶>ÛCÁVz¸ÀUÓ¤e^À÷=I˹¢èÎi[}q@W×üè̽oÁêÓ:ÇèHö¶ùà ôÐPo¢`Q@cD8>^@%fm÷�hÚs¿¯¯|·ªòãïëUåqºG± L÷�à6Í1êYÙ<½ AÏÓ¥P×Ö¼ QZNY¸#Gixc^�ôinî8@wÛ"±a1¸Ïãs�ࢧ}�{¦m¡¡Ç¼a1!¸]:Z-çðtÚ¥Ù>CH2¤ ) MÖ1Ë,[<°ÇF ÷Y¤�VR>Ýã¡ 1¥§ìÂ`GÚJá´õ<e}M×±NçdÕ/ÞnÚ×åb¶E°£¦~Q¥[§1 ïJo¶à'Sõ8¦õµtâk¢¤#tÊS0@}'ø8>`Ïë÷Åz�§§óÔ¯·TçÐÐJìÇçÉQ7²ájBWÅ &îij¡&Ó#+Øõ¨2¶æôØÒ¢aº×Ø6BjD|8@Ga°î¬Ó¤óÓ'µ¨Çïµr-î^¸AÇ0;l/BCla@HXÓñ{Ù% ÖàÓ�ëvyAýPØ1ÑÑFËv¡µ»Oø4¿^ Ï]ÙÚåÁd$ZsÖñ{Ý-7Ux>d="6î&¸"�ênyB$¨»${Aû(YýÖ0å"Quë3Â`O»<¢àAvVÏîAYArX²¾Fü&\T&$4PÃM¨ó=¨õ ¬I qÅN¼¯*8ér=áló¯BÀREcÚ-BÜmL4¯,BÐ;ã¨9f¡|SBæXGh%[4 4LùÍmßåžû(ÁãúÞ«T 1!gÜ÷Ðk²Û{åä¼]ÿæ¬î¤ß'°xÄ %{pÄd´W}$UBãI3hé6È�бP3 ßïÌÇÚÊç|8Ö YuÒ(ö4dlOÉE¤yF^Þ²}�¢ÝJ¹Ñ<¨ ôÒ©Eõ© Cs®CÛÚó`ÆR:æV8t8@+Å~æûM=¾ê7àø}GOI3h�P°`^%�ðF÷z°¥a gS Ø1Dl/ù8Ñ>íÀ&A¨{XÑzfTé{Û##G¢ðköGDܧØc# Ð W,Úhp$ãðéW&C½O:í¼j¤HDL£3sKx¿×Kf(HõªS îýIx,:Âkf;� ´ ì¯UM¹5.Ù$ÁIÓDV$:B++Â`[j HoøÖÅCáµ&êØaD9L3æÒ¾Ã0®÷h`¯ú¤½êct1Jüâ\�{VðY%¹Ã|£¬c^Ð:·n}ñ�V7R%$òôm¶FÑÇ!«ÛMR·nà �ë)÷øpïÖwøºÖióµè{áÆ¨[æVP×4!QØ^IбÒ/ $é)¼|ÜSxØP·¨2´Èzú¢vZ½´ Þ±§aÑLbÚÒ|Cnä÷C£ íû9¶õ£lpü¾£)ikHÙÄÈù�¹0´Q¼¡BP¶gB° (Û3¡õº�à 1Ez� D=Á~¿kd¼wV7â^7Ä |ÍÁPÐÑ3ßâÂnrá¶'áÆ¨q!õ,#�ã$i¦[\[Ü� Xå ¤9z:rªDB¼¡¦HLÈë>Â@gü;`Ñ X& ¼pÉÑÂ6Þ|«H¼pd½¥ lä¨ ¶èÈ ¶ÂQQß>@AÜ1/$ÝC~ø( n];L)jæ|IèMAIä|"b¢|¥U~êÒ4Ãt¬|õBT9ÂV@~ßàãð+¾²j7 CWvQ>]¡7XDоŽÂ$PZ³ªN>ÏcìW ¢EĶX®å -¡ÌrÜ i3G6"øØ É·@BQÔ±RÆ4>5ÒSB(ì`#CF}˽kdQ-m¤`±øLJÖÙsL¤ª ÐÍrïåy¹§l¢è¶:g(¶xjïÔÏ4Tgf&ùjú´gA^P@×8ÎMÔé³* Åe 2÷øÁ ÎDmi×Ó÷z©5p(7ZõÉðýWø½>r¥íoõÅd�$ï<Uô½Ü'[ªâD(SÀ&¬hÎqÌåùâ61äB¹ÅÓk<1ÂûR&ð}Gx!]9æÜçy¤gʳ,cKU2A,Ae62$koÐ^àuÖq o¢49¸tÏr´úH r%¥mÆáqÏT`,IeI¼m¸B«?FaªÂÏ»&|IÈ$2b·&Åo"tæ¾°Þ¢ZDd)4É =Âc$LieFeÇ\ßµ (=Ðê?æølÛjÕ²¨ =@߸òfÑõv¸½6Q|H°.Ò¹uVMV?¢jtR;0 ©ªÉB¾2ÞÓ§VâãÏG|6f#Q2éÙDU +Qp²¿>#§åk]^²t~ +«0#iÞ16Ë `hËáò=@âØÕ4>1#Q®Ëm$ë°(ß$£X*èYÅi~¢y§qx¼dÈ$Ùús0,ÇÏðªvg¦*ߥöú´IóïMÏÓcÜ +28Rµ¬�=E@m3õù Ø1V·y`¨ß4øÑ¨ä!$¢L±â&æ³O¢VH¯i=û>çҴ騰Ù%£bÀfØV5xpKH"vKHÜßg»4&¨{?C�è;kJD�cU A¦Ös:@O^ï H ÒüâÎc$¨ ðÖD¡SCâS![ù2IºwÈ`s@÷®£ªXLÑÈõÛ`Õmÿ×&JßÌú*ë±(LP²l¾5r²>5Ï,§U4Péd4%¤¡ùt@ýZÃC¨K¤êu<Kd1}ÁÌB¦diGX¹Ðà +j½ÅhEV} ¬U °ÜY¬CgÖÄ�.ÐÑ5h¹15ï: o +æ Í_Ó3@Ò}üÃåBÅ,ùs+¤*Î|_¶Ë1Ï¡Éòulã^Âq$C}c.38 cc^<@N[ ÅìMáa;[a?{#XX| ï;ØÀx 7 Y|aþ<Mú÷mÕù@\·G=ò5Eso×4®óB绵øÒIÂ%xDÀNåÞ�r"}wÏgIñ$Ý(^ãiÏ�ÔÓß`Ç*Áêø8ßïÙ:ßÏè)($/hD:i@ïÈwi`¾I3å=ãUW¬é²..é2K½§Ìl+î¨2Û#2C6]zPæéÛÑëû¬^q¨oOá[¿¾4F øxÑ"ÁÐ@¢L_g¹7xDäõ/Àâá2Ý+0eJëf èÜyAª�MÈ%�(6fÁîT°*/ìñytD¯¥lFQP(Wä Mª6fñ"Ib¾8@¶ê·ú Q°é¢åÝÐô²æ¡[#t9ÙôÕ"eµñ_³F�´=eFÐ3�ÅòÆ£<æSxÓ7|$%<¬öW³µ'ÍËcͶÒç²3DÆ&,¶? áµëþýPS°Hwþ<ÅgÊ (·8kÏÎ@4êØ[K¡$Pe yE$ ·8 H cŹ�Rf +�-NûôîXdaÕ0@óP4ä¡ Uâb>}cPH®8B�8&Hô�²ÀËD¬ô¡Þu� ·6*}<d¬ú¤hbV¼±±êÑ`WBÀÆtÀî1(çͪ*"nõ4,K2et``ÒÄ�í ¡¼l^!8uÖ['êíWâË·yDèÒP5ò@m¬gÍ) ¡×lÏ奶ȦÜÖ×c ¬Ñ ïíVxo@ ÊL§ÁUdc^ù�åXGåj °Ñ ;*¨r´ÈDVuiz¯Ë-òþå"ËW>©óøUò«·øÉo OîlÄô¬�zö<oT0z3V!¼²>Á@xV<¬Û·¢¸Ë © [Ûç:]Ð0]°¶mË+mü¸AþFC©=á¡N7qð }ò: }~+¥Û>;d7øØ!3âgEçËüºÁ8«à äV�r¼ÁµâÖøü"ÅòiÖ¯-6Ýö½ÄÉöÕáû¤¥¬ß5Ûm¦íS .ÐfÚû訪 7_°.êXUm�8쩪ªD>øþ VÖ»ª/`Æmsp¥&Oó<"èÛR>ÀG²¼÷@ØaeÄÈ0º:xÏ÷ïèð}dÒ¹£û½lÄmËæ¢I ÿ±x³Ëll¼Èܶ%rã¶jÛ=¶e¾¥Ò�Ð�SÈyZ4 LK:C«8ê1íVMc|d|¶Æ`´eíÇt, °E>§Èsç£% ü>b/c²<z|AÇ&Âç²"ê½^V sü}¡±¹Ïá~÷"^×R6xO6xxcc½Zßïf}Ò¶ÙëÙéXÜF×_/ÐS_O¼´Pÿûlòü+Pq ïe¹ÀfØû`sÑ^bäô½^Ø]uoëãû»ÏÏxîm È·êå{/°ÜðÏ£ëÏèqÈ«j¿qà$ï(O +ueÖÆ ʬ©ã-2¦Ì2¤"]µyB>2+zöòe¨=ÔzÝN¿¯ÛCKÖ0èMd±"MÐ3¸ §,¹Mxt!@Ý ¾lb¤clxO*óÒ-ÞÌ M�DDBRß´5TkåîvL%{3Ç>!ðøB¾qÇhº"r«¶LÀznAÙ3Ul©÷ì+ÊíG ' «Î0 zU»�Ú>KlL[^'HÄz×^PdèT該Q Áç]¬»"ÇWÃëîW·h9µçÐ�6&^A«hÜø$Çø¸é¾ïÙõmb`ñfpNs«Á¶ëÐ&ÞxEá÷>1ø] ,MÏ[Iâ!Û.0Ôôl5Çt4=Gcãe°é9¶ôù�Ù&eÿ~Dl^ À¡\Íp¾÷* +G¹0f[¶�ö8¦q^@ò0гn½ vÔÅ.Í3^ <qnniSqJ+W¼5´´é Tô±yËHvàpwK\]ðyܲ'hIc«,>kSÙ¤m§ïõ÷' <ç¹HªÈkôàG?é÷ù ¢ ý¾Ü#f(mñ´ÐÌâ6¤^aAÜ÷o£!Ϥçý+`G5 +P o4«H +¿öZ®aÕHùÏÃ[=ÂÅÜ©©1Á#.î5WIÑFhMISrWPC|P2z@Ï,Æë +B¶ÉiR ¶É j}S(5A^Ò-:/ »éβ|6hùãWËñ�DBXìéÎ2V|ÓkO,e0ãk¹°ÌûC[ýÏé{½Ùq(Ð9-tîÏè{=ãlª¬|neöô¶Hê)N÷×·Ú¼ER¼!D' +ìIw" +}Ök¸¢:öEHòî+ÀaÇîh&½C-l³?Fx8¿Oýr3éK÷FDsÔÆVæA@/G¶ÈÒkX +Ã3í�¤aªr!K¸"eÜQtÐZtÎ4$û 6&Ù×$¬a@&Ìúüs 3{WSO:gih "I¬[Ä[¾tX¼Aò$9_#¥Ñ� n©'\A:hæ$¸Ò 3QAöh-ñ&ÕIc">D ¡°gfÑ9VmÒ ×9V¼\ãê>ä (°W'ÓWÄ·dC"Ô=û Ð1q?GdwTlsDAN R¡\GEo¹ªD¦â<#·Nc#vÎácܸçØíÁ$À¶ "¶rºÀôtöóÒ2-Ûçï©A®¢´IL[-âPϦ<oÌ4¦MOèò¼ôÆ÷`¡þypø:^ §ðaFè(|0}è@7ZwÕ ò½nÁ�EU[1ôì΢rêÁçÁ ${|dþ<RÊ"[báã÷z!k@<Ð16ÞdÂË-ÜË&äÁÄCzhL+)s+¢t/@00#î(mØüézáJ²_¡ëéì¤ûóª¢É�^Í®*2Û@ì¨[©øý9çkÑÄ(EáüBVµ1«/ e4 ï® ¢ nQ¨·h A9ÚHw4¤ 0çèîôj/<Ý�Õ¾Û¢/>`åï¼PØÕ|s˸ÎÉÛ3NJGfÃAJª5EPP^M>iTÌ·tg ø +ªpë]6®ª(gÍîHv,çµIN;õø,¾rÓ¢µ-ߣí^Ï>ȹMýö+sDêP#Âô^zrÄaÖ£I³éùjÍ`ê<çESçlVÄ`m5/ðà裬xe¹IÅtt*^4·v*['Èá<í|2©øé/ ºomÑÃ:ºÃÅØ/Ð%t¿ß\°Ù rÊ0´'�ttËWé¼[>i4È«G*�ªÆ&Cz-º7¤8¤!¹-o*B¡î[Æ´CpÌ·4ev|î[&$F:|KU¹Íö'�¿ëÙþ©KZñ£.ám!£rÀ,H*k?lɵHtÑ{4 Ç$ bßÐh/hñE#!>/h /X 1âÄG\1Fü¢i4 ´½ º$$Ëá=<â�qcH mN¶(DØ(@¨ËõVõ�ÐSº5MD18«$$4WXíBaGíÐ %\ éåCmo E>/ÀòøS_JÝõê#êXü±7Û»/`½öEDɺ ¶�K£Ô««¨g¡Aï-ÙÛZm½ðc@½ºZ=ÝÑ^¹W~8ÄRÞx¥&j((³êÕ}^¡5ÌÖàð[¸±Zï+Üh9ïÔ º§ÐµÐn$obqìÒà>Ë&oäÛ®Ýtyêÿe+°&pÐÕs»/`m-¼ #²`åÜéóä \ªÀ`Çî=´1ÂUD!MyZbrй ÎøvîP¨±"øvîq¡\ŸôÖ Ä]@oª ±å¶«^ø°Dô91äM¾ÓìÄ6ßû|@cK¿(·Æp ¬±e¬vÃá:qdWGØ%s�¥â +!¨ø*""=eºÅ64U@0`»å F|!zåÄÄ@GåDHë ¶ÄË'Vº¨c¦í9ðiÄd< £ß|§à�[E9FhÀjèFhàÙR41Âׯ÷ØxÉó%^ªEG"5JNðÕV~tä(åÌ&ØÐÙC=éw0A1¢Ï{4.æ}5ó-Ìmâ°&Ùújîh;¶¨%DÂuÛÌÉ)¡(ÌÐ)ë0÷èÿ`! È/ç ¤Í;h�zæ4°QÞÂCPt',céG|lI3'Bïàû~ßw(c[~º9£ ݬ/'t^X08³è8Í¥¼ÆiÁqÛrÁÐ8ÍmÓÂõqÁúå7N5¦LÃ8x¦\b=ßMw|ñ,M :¶u/ÝpØwÆd@ (ÌJBd©îJVØÖ# |Çx@7tÏdC}C÷\o ¢híî â)Q%BßY õøNE(ì@E¢¼#R¾W^¸LÀö$¬ª2bñ4.]T$ïú @8 +§·ÄáCsÛ{KNHÔÛ{l�÷:2GUEÖ´_ÒEÞÙ`«Ð+x¨øª¨ t"²òAh½áCÄxlP?'[ù hR@aÖ1YÕûTÌ"ªeN²ÿÓ,)Tº*`Z_1(3&9 tdLö~*² C½§Q÷ +G£R5-RÿzgRæÓJ8àôúY3 èf Ù£õ>»Ã} r, õ ÅZ=¤í5QX¯¸:WÔ¿LóË¿Aÿ27ËvZýKö8 Ç¿4 z:@>-eÊf_äý¡*«ª¼8$LSãÞÔésrE]Àý]Êk0ÐÄ9߯þÝ cßé3teÅ´BBÞÖÑÌÂÇEnMââÆY""¾½ #J2 lï% +©hÁÂÉ E«8ydÚÎ,|°ÉÂmÌGYÈ×½$ÉvÀg°hc¿çláñû $&t¬?j©»ÓôÌW¨¼@Ï| ¶lû~$óÚóÓïëH]îÝ9~Ud¨L@ïA$A"Zâøû=Hâ7Æ&DÄ=,«/ u8mÐéú ëoÒ@^îÑ@qÓÀ<«d;æcKî¡ DlHPØfêù(dßÃß×·C9ÚÑìZ¡Ð]A7,ÆZ|Ã%a¾{ >¥ÚJÉ|=@&ÈìbÔ ÃvÊé4DEðf,KÔJOÐ.TqOV¾§K·Hï="ÌPè(vºAªLrÎÆJɼÐpÿ¬!àñ!:ÐÓèTQó÷ì^¡ étqÇ [ µI"DZdnHôtº!1#¡j(É:,GÙ¢$�HPÉ¢Ü:åFE¹írE9 gÕ¦gµ\X®y³îrhp¼måKX)Ô].{v[-ËV»gH[«ÝvÀQo3è¨dj%Çßï0êÃÜØð=¸`ÑÓ²6²1BéÚT>÷Þ«þ4"j]"rã;:êéÚT¾ÓP=;`U`½@÷&y®¡5ûùlH|ãiÑØ[Êjs)}T`æàðªÐi1VB(è)Æz ©ø©XÒ×â3ï1ó¬cåªò!$%*äåhE�oÖÄïYfÑ$¡· ÊG!ëÔhÐDä#xZUíé÷e£ÚªáN¿/ÕÖ«ç½Yª"mN¤�$ÈÙvì{LQÅ #E +$%@Iµ§Èþ ó*jòjXx#ܳ(ÎSe4À«&ÇéfdRêãYÓ¨c<k²|Û 9,Ìì1ß°]vV§©B½°z°¸\ÄæMªQOØÀn>°ADª*cß«r-è-ZZJ^S O4ÒÖg¶Rºø·P&$ÂMÚ1!7Elü}½ º¶Êï[³Ý|sFiÇ,¦9ÝÀ¬¹u|Hsl$î ivu7¤yÕ &~-<³Ä1mªßvÀ' m�ÈñÚð×÷Eú´ûóýà |ß*°IJ§Èõ^;s ìX¶mÒÍÛ·)Ñ'èseKÐ-dÕh ôO0y` è0ªµyE(öý +¾ê[5A.Ðݪ¶Cëô�àVÐF(zv`!ÐS[à-´ áý4hU|Ê=¸cÅ+è¬øÄ»� @Ѹ +¤Ay°b\ ì© ]vy6`PÇ��@ëÐËéÞ#=Ñ(GSÀíJvt VIR×8e ?O9@Èúô Ð' µÑ®.áÑåYtbÔ Ie5H,8 ¶*¶ >çmrHôD' +ôߪiS殑±1_Á5uÌûô ë}¢ACóæáä(*3>ÉéÈrÔßìÐáBZ<±[DUîF\.bmv7%a%¡7ÊÇåoONùkÔ~å#dGùØO<¼ä{ñÇ#¢xO. ¯>Ùzkì¢øoã¾èeý¶êAYÙí:U»� P´å-[ÌP% õ @ر ªH4Ä»ü¾ jA\г *j ä[¨ +ù*xbA(ìØB56ä[¨T.`mâÝ9p éô4u|�ZÀ+"ݽ! è@5í§a[" عlUÑhV´®ùó¼îWâ7.-ev$åòs>#¥9¼*Zí»(^Àrn{1c>Ü@Ϲíê({H`{òþýH 0´yRÇï;<`Q¦<&ɶÅÁÏ$Ôý¾®Í·Ì£ö@;|°§Ðjx+È\ºÖô¾y&6YïCÝ3Ñ@Ïæ%pu¸h\@/`µ.8áv\VøRƬ¡ï £MÞáÉr)@°'åRÊ-I(Û£!JË"Ò�¬¸°k²aÇxÉaGάrç÷i ë=9ÆwÆ{£$dµ¢t]XuDÖHÇ0-] 2ÛªX%1À«!E.äÕÈ@UC®÷äPU~Þªè+cRX¾uáÇ_ 4g MJ=gUoÊzÓÚEí!ê7líÅöж8àÙZÆQ{({öP7í¡ms( S¸Ç9AÇFï·ÍcE`ÕÞøbFÄ¥`ûÆò\ :kél* ÷=- ^¦{Y^T{±:uZð}Ï'àr¼>Æ©|_`hÕò_¿ÿ¥ûóèJËx�¨7jÖ$bõY.à[öèA+å`´Ìù(÷AXy¤>"�è¢aEßëUTý~Çðmm6ƪ ï;ÆX 4×ÒVØ2ñ6ÆêÚ+ »Y QE&bl´-z£¥O$¤(FõFÛ_aö)5ÚVY²ÐD¸FQ°ÐF¿' ÑÈ@P kÓD¤§MS£´-jRú =þþÅfÝY[f½òÐ{wÖýÕO¿øeø~üê߬¸}ÿã©_ùÕgçǧ¯yyüßüø»ÿñçøý¯û§ÿüí?üø§üå¿üÇóýÛßüø_ÿïÇ?ýËÏ¿ÿÃ~üëßýú_ÿþÇ/¿~üËïûï¿ýü¿ûùç¿üÃ/~ñ·¿ýíëçßýþ?¿þôÛñ¯a)ÿöÿóOÿçùÏí»¯ßýüÇ?üý_ýïþÛ¯·ûÿm;ÜÖ +endstream +endobj +232 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 810 0 R +/Name /Im221 +/Width 47 +/Height 3 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿþýG"õ¦��Òe +endstream +endobj +233 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 811 0 R +/Name /Im222 +/Width 26 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcl`l`Bvv> B ´�B ,�Â(|�Ðà9 üß�° +íì@fJIìÔ�®ú$¿ +endstream +endobj +234 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 812 0 R +/Name /Im223 +/Width 26 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xaa¨Âÿ Px�ëPÐ #6@ 3203°!ò¡Z�a&�¡díN-�±$ +endstream +endobj +235 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 813 0 R +/Name /Im224 +/Width 55 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÐ!1Fá¿i²uôôú3!KH@rªÐUdŦC;³bV}îG8ªD:h fPÂO<xÏÌkÑ<*s'MjÑNL13¡3ã·±¡©ÌB(5nalÕb@WM|2ãW~¯'Ø FÀLûla|[=úkì68Ï·Ó3v +endstream +endobj +236 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 814 0 R +/Name /Im225 +/Width 41 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÏ! +Ã0@á"bFc+ÊâS³¥½Ê0YQ]eÉQrÊÒìgóÉÔ.æ±±\çPÑõSÐÁn>hl*Á|m°±pWÑÅ ©¿¾r<*wéþT»ÔÏbˤ²èÿÊ<(âb2£YTdéûQ&ÜfeÈD-s×Ëú¾}�°#6 +endstream +endobj +237 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 815 0 R +/Name /Im226 +/Width 31 +/Height 83 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``àa``b;(¶â(®�âPü000Ãðvn``àa y(¦ÀxME3$ÔWïÕ�8V0z +endstream +endobj +238 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 816 0 R +/Name /Im227 +/Width 54 +/Height 54 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``0`�¡@Õÿ`òÿ($¹YõzG�Æ3 +endstream +endobj +239 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 817 0 R +/Name /Im228 +/Width 50 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xK`�?ê?ª?�¦ä?)v$ã@J6@$ SA¨¨¨va4²G4 QåZG�|+5 +endstream +endobj +240 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 818 0 R +/Name /Im229 +/Width 72 +/Height 48 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]± @E#p+8XÛ» à äââÿLsrI~~̬5`Spø[Ê]°9T::Uw%½q¥/¬ÉSµÚµY4ûÒ$É +âHñræEÂų²2&`Faff{1ü®Ó7Ó:<´TÉ +endstream +endobj +241 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 819 0 R +/Name /Im230 +/Width 72 +/Height 48 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]Ë @PEçÅÂR´ �ak¯¯ E(E VbîIÕIæwçÙy� TùêCØU}&³9=q¥7è©Ä õúOA§ý¶å* +é¤(¦]Yq/EÂxÎùÈÉ- u½Î>ßéëq..oTM +endstream +endobj +242 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 820 0 R +/Name /Im231 +/Width 23 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcàÀPÿá ã>ærì v`dÃß aÿDÿ?`üÿáÿö?l~Ô1T�Ñ@ +�5ÈÿÉK×Ì�½!x +endstream +endobj +243 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 821 0 R +/Name /Im232 +/Width 30 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xEͱ ADÑo9Øð@G- £%Ân¡+eKp¸Á +3B <cHðÜj°paå WaaÃÚá]ç,Q?³²iã¨Ð [@í+±öóÂ÷.RïLz¼0Ó)]Oçù ?9Î +endstream +endobj +244 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 822 0 R +/Name /Im233 +/Width 39 +/Height 198 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xí10E9co§êJQOÆÔsä4~!qÈе0< ùÛ±¾õã¿MàÀì1Xvõh¤Rï©ü¤, \D¤¥ÒW)pã½gSÂlË[åÛÅ:%Ç~) ALE2ô]´,¤û»¿Ûyqà°æ#óZ ç.Öä§IÂIL ,ÑÅyâ,íæñy¾û/tÂi +endstream +endobj +245 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 823 0 R +/Name /Im234 +/Width 55 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ?ãÿÿÿþ£Pÿÿ30�ã¿ÁI&5(\Fîl!onY»Ã�_ÖV +endstream +endobj +246 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 824 0 R +/Name /Im235 +/Width 42 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`àÿÃ�õÿ0```À$åø¤=¬C"ÿ@I ÆÌÔ#ÿ*I]óiM2Ãä0üÿ�Ô²®ß¥�aö" +endstream +endobj +247 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 580 0 R >> /XObject << /Im221 232 0 R /Im133 140 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im107 114 0 R /Im28 35 0 R /Im105 112 0 R /Im106 113 0 R /Im117 124 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im24 31 0 R /Im22 29 0 R /Im22 29 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im26 33 0 R /Im102 109 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im21 28 0 R /Im29 36 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im117 124 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im107 114 0 R /Im28 35 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im108 115 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im25 32 0 R /Im115 122 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im116 123 0 R /Im30 37 0 R /Im118 125 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im25 32 0 R /Im115 122 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im111 118 0 R /Im24 31 0 R /Im106 113 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im30 37 0 R /Im101 108 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im102 109 0 R /Im118 125 0 R /Im25 32 0 R /Im26 33 0 R /Im26 33 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im26 33 0 R /Im25 32 0 R /Im24 31 0 R /Im108 115 0 R /Im30 37 0 R /Im21 28 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im141 148 0 R /Im143 150 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im113 120 0 R /Im135 142 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im235 246 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im29 36 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im135 142 0 R /Im167 176 0 R /Im200 209 0 R /Im20 27 0 R /Im120 127 0 R /Im107 114 0 R /Im25 32 0 R /Im25 32 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im107 114 0 R /Im24 31 0 R /Im102 109 0 R /Im29 36 0 R /Im25 32 0 R /Im142 149 0 R /Im28 35 0 R /Im21 28 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im21 28 0 R /Im29 36 0 R /Im24 31 0 R /Im28 35 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im110 117 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im113 120 0 R /Im200 209 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im24 31 0 R /Im101 108 0 R /Im106 113 0 R /Im113 120 0 R /Im149 156 0 R /Im23 30 0 R /Im21 28 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im28 35 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im30 37 0 R /Im144 151 0 R /Im141 148 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im120 127 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im107 114 0 R /Im25 32 0 R /Im107 114 0 R /Im30 37 0 R /Im29 36 0 R /Im102 109 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im114 121 0 R /Im105 112 0 R /Im28 35 0 R /Im107 114 0 R /Im116 123 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im23 30 0 R /Im30 37 0 R /Im28 35 0 R /Im26 33 0 R /Im111 118 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im26 33 0 R /Im26 33 0 R /Im117 124 0 R /Im25 32 0 R /Im105 112 0 R /Im28 35 0 R /Im117 124 0 R /Im186 195 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im106 113 0 R /Im30 37 0 R /Im30 37 0 R /Im116 123 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im21 28 0 R /Im145 152 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im116 123 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im28 35 0 R /Im105 112 0 R /Im28 35 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im102 109 0 R /Im107 114 0 R /Im24 31 0 R /Im101 108 0 R /Im102 109 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im23 30 0 R /Im24 31 0 R /Im108 115 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im117 124 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im113 120 0 R /Im20 27 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im120 127 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im30 37 0 R /Im28 35 0 R /Im106 113 0 R /Im30 37 0 R /Im116 123 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im21 28 0 R /Im145 152 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im28 35 0 R /Im29 36 0 R /Im29 36 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im105 112 0 R /Im30 37 0 R /Im26 33 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im107 114 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im117 124 0 R /Im25 32 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im26 33 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im118 125 0 R /Im30 37 0 R /Im28 35 0 R /Im26 33 0 R /Im111 118 0 R /Im26 33 0 R /Im21 28 0 R /Im112 119 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im118 125 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im116 123 0 R /Im21 28 0 R /Im22 29 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im28 35 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im106 113 0 R /Im24 31 0 R /Im21 28 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im115 122 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im135 142 0 R /Im167 176 0 R /Im200 209 0 R /Im20 27 0 R /Im113 120 0 R /Im236 249 0 R /Im237 250 0 R /Im95 102 0 R /Im161 170 0 R /Im100 107 0 R /Im93 100 0 R /Im100 107 0 R /Im93 100 0 R /Im238 251 0 R /Im239 252 0 R /Im96 103 0 R /Im240 253 0 R /Im100 107 0 R /Im94 101 0 R /Im100 107 0 R /Im96 103 0 R /Im93 100 0 R /Im240 253 0 R /Im103 110 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im30 37 0 R /Im29 36 0 R /Im102 109 0 R /Im30 37 0 R /Im109 116 0 R /Im23 30 0 R /Im30 37 0 R /Im118 125 0 R /Im106 113 0 R /Im30 37 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im110 117 0 R /Im30 37 0 R /Im30 37 0 R /Im111 118 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im115 122 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im28 35 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im117 124 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im26 33 0 R /Im30 37 0 R /Im116 123 0 R /Im25 32 0 R /Im111 118 0 R /Im102 109 0 R /Im25 32 0 R /Im106 113 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im116 123 0 R /Im29 36 0 R /Im24 31 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im111 118 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im28 35 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im107 114 0 R /Im24 31 0 R /Im102 109 0 R /Im117 124 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im25 32 0 R /Im111 118 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im109 116 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im108 115 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im110 117 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im133 140 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im105 112 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im118 125 0 R /Im24 31 0 R /Im102 109 0 R /Im105 112 0 R /Im113 120 0 R /Im104 111 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im114 121 0 R /Im105 112 0 R /Im21 28 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im24 31 0 R /Im26 33 0 R /Im30 37 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im111 118 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im142 149 0 R /Im28 35 0 R /Im21 28 0 R /Im106 113 0 R /Im25 32 0 R /Im116 123 0 R /Im30 37 0 R /Im116 123 0 R /Im28 35 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im120 127 0 R /Im107 114 0 R /Im24 31 0 R /Im101 108 0 R /Im102 109 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im107 114 0 R /Im24 31 0 R /Im102 109 0 R /Im117 124 0 R /Im25 32 0 R /Im24 31 0 R /Im108 115 0 R /Im24 31 0 R /Im21 28 0 R /Im26 33 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im29 36 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im22 29 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im22 29 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im110 117 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im143 150 0 R /Im101 108 0 R /Im24 31 0 R /Im26 33 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im28 35 0 R /Im26 33 0 R /Im106 113 0 R /Im176 185 0 R /Im111 118 0 R /Im25 32 0 R /Im116 123 0 R /Im25 32 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im111 118 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im137 144 0 R /Im106 113 0 R /Im30 37 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im30 37 0 R /Im22 29 0 R /Im22 29 0 R /Im28 35 0 R /Im29 36 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im113 120 0 R /Im157 166 0 R /Im117 124 0 R /Im108 115 0 R /Im21 28 0 R /Im30 37 0 R /Im28 35 0 R /Im105 112 0 R /Im26 33 0 R /Im102 109 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im24 31 0 R /Im111 118 0 R /Im23 30 0 R /Im30 37 0 R /Im22 29 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im22 29 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im26 33 0 R /Im21 28 0 R /Im107 114 0 R /Im21 28 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im120 127 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im21 28 0 R /Im106 113 0 R /Im111 118 0 R /Im30 37 0 R /Im25 32 0 R /Im105 112 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im25 32 0 R /Im101 108 0 R /Im105 112 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im22 29 0 R /Im22 29 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im113 120 0 R /Im139 146 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im117 124 0 R /Im25 32 0 R /Im106 113 0 R /Im118 125 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im110 117 0 R /Im30 37 0 R /Im30 37 0 R /Im111 118 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im102 109 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im25 32 0 R /Im108 115 0 R /Im21 28 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im107 114 0 R /Im113 120 0 R /Im27 34 0 R /Im28 35 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im24 31 0 R /Im22 29 0 R /Im23 30 0 R /Im26 33 0 R /Im25 32 0 R /Im24 31 0 R /Im111 118 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im23 30 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im141 148 0 R /Im142 149 0 R /Im28 35 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im106 113 0 R /Im102 109 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im120 127 0 R /Im21 28 0 R /Im101 108 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im23 30 0 R /Im24 31 0 R /Im29 36 0 R /Im111 118 0 R /Im26 33 0 R /Im102 109 0 R /Im24 31 0 R /Im101 108 0 R /Im102 109 0 R /Im22 29 0 R /Im24 31 0 R /Im106 113 0 R /Im24 31 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im30 37 0 R /Im114 121 0 R /Im116 123 0 R /Im23 30 0 R /Im25 32 0 R /Im106 113 0 R /Im24 31 0 R /Im112 119 0 R /Im25 32 0 R /Im105 112 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im22 29 0 R /Im25 32 0 R /Im120 127 0 R /Im105 112 0 R /Im28 35 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im26 33 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im30 37 0 R /Im29 36 0 R /Im24 31 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im157 166 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im30 37 0 R /Im28 35 0 R /Im106 113 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im25 32 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im30 37 0 R /Im117 124 0 R /Im108 115 0 R /Im21 28 0 R /Im30 37 0 R /Im28 35 0 R /Im105 112 0 R /Im173 182 0 R /Im110 117 0 R /Im30 37 0 R /Im30 37 0 R /Im111 118 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im102 109 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im112 119 0 R /Im101 108 0 R /Im30 37 0 R /Im118 125 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im24 31 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im112 119 0 R /Im25 32 0 R /Im25 32 0 R /Im116 123 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im107 114 0 R /Im30 37 0 R /Im105 112 0 R /Im106 113 0 R /Im26 33 0 R /Im102 109 0 R /Im117 124 0 R /Im24 31 0 R /Im26 33 0 R /Im24 31 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im21 28 0 R /Im29 36 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im113 120 0 R /Im149 156 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im118 125 0 R /Im25 32 0 R /Im176 185 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im107 114 0 R /Im24 31 0 R /Im22 29 0 R /Im23 30 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im105 112 0 R /Im137 144 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im26 33 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im101 108 0 R /Im109 116 0 R /Im29 36 0 R /Im30 37 0 R /Im107 114 0 R /Im105 112 0 R /Im28 35 0 R /Im22 29 0 R /Im23 30 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im143 150 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im116 123 0 R /Im30 37 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im102 109 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im107 114 0 R /Im24 31 0 R /Im112 119 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im144 151 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im117 124 0 R /Im25 32 0 R /Im106 113 0 R /Im118 125 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im110 117 0 R /Im30 37 0 R /Im30 37 0 R /Im111 118 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im117 124 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im102 109 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im113 120 0 R /Im234 245 0 R /Im30 37 0 R /Im118 125 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im120 127 0 R /Im24 31 0 R /Im101 108 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im107 114 0 R /Im28 35 0 R /Im105 112 0 R /Im106 113 0 R /Im24 31 0 R /Im26 33 0 R /Im105 112 0 R /Im30 37 0 R /Im117 124 0 R /Im25 32 0 R /Im24 31 0 R /Im118 125 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im30 37 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im24 31 0 R /Im101 108 0 R /Im106 113 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im28 35 0 R /Im105 112 0 R /Im120 127 0 R /Im30 37 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im105 112 0 R /Im23 30 0 R /Im30 37 0 R /Im28 35 0 R /Im26 33 0 R /Im111 118 0 R /Im24 31 0 R /Im26 33 0 R /Im105 112 0 R /Im30 37 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im116 123 0 R /Im30 37 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im24 31 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im102 109 0 R /Im25 32 0 R /Im29 36 0 R /Im107 114 0 R /Im24 31 0 R /Im112 119 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im30 37 0 R /Im28 35 0 R /Im105 112 0 R /Im107 114 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im24 31 0 R /Im112 119 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im29 36 0 R /Im21 28 0 R /Im110 117 0 R /Im30 37 0 R /Im29 36 0 R /Im30 37 0 R /Im28 35 0 R /Im105 112 0 R /Im26 33 0 R /Im102 109 0 R /Im25 32 0 R /Im115 122 0 R /Im116 123 0 R /Im26 33 0 R /Im30 37 0 R /Im21 28 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im30 37 0 R /Im116 123 0 R /Im116 123 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im105 112 0 R /Im28 35 0 R /Im107 114 0 R /Im107 114 0 R /Im24 31 0 R /Im29 36 0 R /Im102 109 0 R /Im120 127 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im30 37 0 R /Im101 108 0 R /Im114 121 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im110 117 0 R /Im102 109 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im109 116 0 R /Im29 36 0 R /Im30 37 0 R /Im107 114 0 R /Im24 31 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im111 118 0 R /Im24 31 0 R /Im106 113 0 R /Im24 31 0 R /Im117 124 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im102 109 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im24 31 0 R /Im106 113 0 R /Im26 33 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im110 117 0 R /Im30 37 0 R /Im30 37 0 R /Im111 118 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im102 109 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im22 29 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im143 150 0 R /Im101 108 0 R /Im24 31 0 R /Im26 33 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im28 35 0 R /Im26 33 0 R /Im106 113 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im22 29 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im21 28 0 R /Im105 112 0 R /Im25 32 0 R /Im140 147 0 R /Im22 29 0 R /Im21 28 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im30 37 0 R /Im28 35 0 R /Im106 113 0 R /Im116 123 0 R /Im28 35 0 R /Im106 113 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im105 112 0 R /Im25 32 0 R /Im29 36 0 R /Im108 115 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im117 124 0 R /Im24 31 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im28 35 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im143 150 0 R /Im29 36 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im27 34 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im26 33 0 R /Im26 33 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im116 123 0 R /Im30 37 0 R /Im106 113 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im24 31 0 R /Im26 33 0 R /Im107 114 0 R /Im21 28 0 R /Im105 112 0 R /Im141 148 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im107 114 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im142 149 0 R /Im28 35 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im24 31 0 R /Im29 36 0 R /Im21 28 0 R /Im105 112 0 R /Im25 32 0 R /Im105 112 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im30 37 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im29 36 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im141 148 0 R /Im106 113 0 R /Im29 36 0 R /Im25 32 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im142 149 0 R /Im28 35 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im24 31 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im120 127 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im143 150 0 R /Im106 113 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im235 246 0 R /Im28 35 0 R /Im25 32 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im29 36 0 R /Im25 32 0 R /Im26 33 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im24 31 0 R /Im107 114 0 R /Im30 37 0 R /Im101 108 0 R /Im110 117 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im24 31 0 R /Im101 108 0 R /Im105 112 0 R /Im118 125 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im117 124 0 R /Im108 115 0 R /Im21 28 0 R /Im30 37 0 R /Im28 35 0 R /Im105 112 0 R /Im26 33 0 R /Im102 109 0 R /Im111 118 0 R /Im25 32 0 R /Im116 123 0 R /Im25 32 0 R /Im101 108 0 R /Im111 118 0 R /Im105 112 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im106 113 0 R /Im102 109 0 R /Im116 123 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im141 148 0 R /Im106 113 0 R /Im29 36 0 R /Im25 32 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im118 125 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im111 118 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im173 182 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im23 30 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im26 33 0 R /Im102 109 0 R /Im105 112 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 248 0 R +>> +endobj +248 0 obj +<< +/Length 825 0 R +/Filter /FlateDecode +>> +stream +x¥}Ë®ìJrÝü~ÅJïf¾¤Ü'õP»»¥n»Ò5þ{«2¸äZ+MV2Þ±â¯?ýó¿þ~üí§¿þT¾æ<ý¾¦éûß4O?B_S?æyù*Óòã×üéÿý1ÿøçþùíóóÏß_0-W¿RÝ^P¾ÖÅ^R:¿ ]^¿òóËW,çÄõü|þ*ççåñüü}eÞÏççãW¸|@Ûóýþ �ùkðüuÏéòzZn�àJÁv%·¤¯%î/ÓõËt~ÁSÖØ^¿¦ùûóõ9C®ßðÍÃt9@ú +lÏÇ)SQy'M®¿bÞ_¿BºàBzD!Àa(Èè¡ñQα >ÿ exª|Â&Ø1G@<«_Å/ BP&W=ª_ÓvÔ ÒÓôO3"ðíùl)$A%/1²/h°3´¥gB ¸¬)×[ü:@ìêÍÒ´H ÏèM±&hb¦oE)BôÃ:¨ÃLR*!G°nL+"�°!g3úòÅi·ékÍßpá`x +ìû^ÿ'åG`wµÃáй!e©7CÊ?W!|Ñ0FÃÃ"I1ÑÇó#f4ÔïpÌ(9@¥0! +fF 8,I$�¶"aY�ÂZ¸O-<PÿU# µãÓ8xµãÔ>B <CèçRϯ)C +ļ³àí(!Î*b2^VAâ9³¤GÊ®ä!HH dWsF,]IÌ«&Ä4'( }¤24Mh89Ϥ,¨IbýK½/ v`A2�í�Õ1_ß,Ù/KSv%¦ þ> � è&èADÎR$Cº!M1HJÀÒÒ- D"ÒR,B)¡`$u RP®í¡¯$¦¶ÄxЦ"ê�¥@ÑdÊÀ[<8bÓ[<øT*²äµ´ )Öki-1åá:ݳcicB'Õ`äiAj8bCaD¦$/ +æx9")Ô=AHÐçScê«§ÇÿÉ9 2Aù+SÌÙ>/ÊYB½:a@¥ç ùP j¡½ h/`4Ϫ/!ZTêÑ"1³¥W ÆÂÈ0tÕP=¼â'_0Í¢ÀvÝt}>ÁXpx"r_Vóþüg!&¹õÒìÐñ"\²DA# +êv$<<}À(C¬¼²ßY�(HÒЪG +ÈW1ôûrDûÕĪÊÉj¬8püÙÅ42Dòº�:êô[r¯°ßeä�e@ª#ó,Â:`©}$ =�kìª)If*Ñ"*¥ÀªQß5!G"&Ï|D¿jØÍàôùªùÒôfÇ|é~[ä!¥@J ;WéyJ$fU9JvfÖ ñÕPhÇõÛ²P·"1u$æ3dÀ5¥¥h¯V2 ª®T*rÀÑ,ÐèÕ¥©PG÷QÚÃÁÉ»'À,ÈÆ^eW4WHÓÒ EôWL¯ÊÂ#{^¸æòvá²|×cBõõ®×6V-¡/HQ{Ml´ä²ç,yç51f÷îùaJë ®÷îó¥R^_õR¾òúzAývÇ©£8DEQPÞUÃá«:iG^¬RýHOò`¢ÇÆ:Âþü' +0Mó²ÀûïË5XX~<׺jä³D&aÀóУ +¬E¢�/LHj×ÞSBÏl[çÄA^¨�úµuDìie-à÷¡8ûãX¥(LC¶Î(ÃBToQýÒ}b7vÇÈý7Qµ¼uÚÁÖ åØ]¿Xç�bAOyD5c¤Fi\Èjè®#.ú@;ÚÑJ¼"GÒÑW$z0ÞìèP0°µÒÁ�INvЧPïiáÞû0¨ )æ[Z¸G<ðÖÕ°ÖäÁXL½ÕG1õãcêGè}Ñã%¿ZLÞN0_t3çæ^ð2Î/xhË¥J÷zÁ +_pÍKâéÒëߺ¼ò£%º¾6?,ØËS { À5Eìù:hÊZr: {z¸WÅxï]ðÄ&§Ö»ÏÉ)OðEðæH¹PªåVÄêpHõàRÑ*U.·li.¢)cÂ<�( W +ó¬y*CóÍÄ"Ï÷\ï%{yÁc³{óBX¼606ëÚðñ¾rwë°rw?ߨðæ¾@*CûóCíKóÐèÍey>),ð�Ôë® z;ìV]¸E@»ôs ȪU ZÝðüÚïÓ´&BúMý-1µ¿8u$3M+´R0ðsÍÓ9[s$¾r¦TèRM yëÂ"Ê�).Ô~_2µ¡ÖAu¢ ÜÓ÷H�}8hE2ØQ±OY9YD||>´·xjÈçL£¤t,!ÔA;ò=V Ù1Û?ìQp,·OH;rû°#·OH ;µ`(p1|Pµ¾Óã Ð 3ÝìCs¦[÷à>3Ï!äÍP%£9ª²©d©ÓP§DT VäK;VìÌå>ÛeÍ ÉvY3jF2¶òMC«äÊèóÆzZ ñ.®rÔÌea=jV@¾ÊE()*¬.oÊð¬É°[¡r¢(«LóPq+v×òx~H·¡'N/ÐûÌ¿@ï{°ÎÃz"àïëiµ]·uÿ~ë»XòN@çÊ UTp�øf¯K`%ÐÄz»Ïo«J@Ø[aâq'±g écDè¨ÌÄ(qGßu-x:Lïì3$>Ux¾gª$/ÚP¼ÙÑ¡ÂB©÷D`VÃK(÷ìxW,§Ú�+ûÁÊêÿàûNÿ)ëaBqÛy üg{ÁXØöHC+O¾@n�3_xú}ýüµJçç¯`àL@ÙÖ ÇcaY�ôx,¬ ü~nÉál0Û ÜIebIZyëÄC½y&ÌÒó´ÆÛÊ[' +è 1®P$ô�I;�-ç H(7hi+|§¼LäAáÍIvF4óÄ3D½'êqûÖì~uËËN0àòÙ® ±X´¦,¦þ,d÷æ¾_0Òxaðȧçå 1G>=¯÷·åöügKÈ è%;>/¬ýø¼^"í®æøývÄn|Ëâ"°ò((WY·iõ§-³9±Í7y"ÄÇÕv´?Ù¥qYÙ6§i¾'誱ÝxRÌs³$P t`¿@5'Ä6g& Ï& Ç=hÈøÀ¹x�>ñ¾ K¤»ÃÉ�Tvm%SvMÍlà¼î<|¿õ¾`jÕ xC0¨È'ÖÉгqG?1´d0"!7~aì�s)VÍÐ+¿ \§´lO(_».ñÜ1%`F¿¯XRAá@Sjmîh?uY_1å ×~j*Äó<hÈÚi6Å©"v@ý§9ðEs§üÞR±sè¹Y âFN9ßüùÇFNzñÜîmGÑ Î´#'èNudÕmbûVXÅ Ñvq{Kíâu4µÉ³fK©Ï-ç÷(µ÷×ìx´sµâñßñ@Aöbq ^LFjVc9¼@o¦´yííù±ì®¡ÁGté8t6pݪ4'èÕÚºOè©ÖF@Âjm»ù<P¿ý^çQ!8Nl(�ÚÀØÝg¦À3A$¼'{Fç××Î/8P1ÅÇ«Küî2Þb¸öÐòsôùì@òD §§º)d¨ãê1ܳ¤qFJnjÐ(¿Êé�ËW_×e¡E}ýÎej¨ï>Z + aÇÐý²jJÀ±æ«öÜMȱçWñyÝZz=êSÃX¶#)&Éxhñn<ÀÛº³t�$émbút¬#ªeRu4¶gQ9Ø;4¥`ïÈv4¶ä +@<BûÒçüJð/èèK·Jãñ}é AG_ú¢:RdZ!å>´B_¢Ëð[t×!+ wÞYd::J³hÇ(¢H'ÕqhÈ:öÜ´cù®Ûæ5;ƾE;Äûªåp° B5ÖT\ëMµ ¨Õ³#wÇÆä:`GBël?=¯wRµÎöãóZyÂZɧÜ+þHÁþqm45·øD�}^ÛÇévX¡÷Hî=r>ظ ILE ¾ØxEèØ+�zöÐÍà÷¥:qk£¦ÃKoûÃjþDÙl¥ 1#`Xláìw÷®#¹µ¹F|@Cw?´ð>²*qgj�¾HϳËÛBWJý|YC{¬Dò¡±yäãÈ@-Æ$0¨yüâ<J@ó<YGWø5G÷{WȬìQ¢ jþN,³A©ÝòD)ÃXDÏë3â`O^¬@,è6í- £ 3a4Í¢Òæ +ÍlPp÷d`X¹ÂXQ, Ù±ãÀ·kFhN4e1 d¢ ÐÔm÷þÈõl]ǰm@ì(DdFz¶#Jê:®md|4 Ü+®3vúe° ¾±¬jZËP@¨Ü´Þ|aÇmÙ^Lëö¾ d¤©ÜÚÏw4[ÛÁãù{mYr²*6dVd/¸>~AÏÀvÔlCýñypçͪüamUþ#®U~˺/ÛöÌÞ!:ò-Ø9æ=Içgfpk:¸>ßacBè¶ +µC@Öº«^%N%ä(pJà(íPôùªÒ*Ì'èµhÇ::ofÍÒÊD HôÑ*-¡CfL¿1hÇyÏ@ѾÊкJ2DoÌ'Ññ~èIôsµ= ãÆ¼AZú®5-Ä{,Ø +pwÍp(8dFzösºgGR¦X¿ð.Qt$±'1d"Ú!ä¦FSìù{±@ªj,ÀÈAì eÑ$Î4¬(í¸òO«¦D¬>¸,ÌVÁ@Ï;UØ;h .2DÛé#¶"²#ØvÈifä'SÂ26#3ÔB}^}1oÕ&æé1Ê)>C¼_àdö§¶?³w-»òoýC>gH^Ù Ïw,åÝçõ/º±6Wrü� +®6? c=|EP¢F¥ ÈåµmÆA~¿c²)N@ÄNy_/?*{e`PbÛ;$�IëÚÞ! Jm>c¬g l¤ ±±u`¬'Íðy�UxLB,ìÀX$+@ñ�ë¼Ë ÓûÅ@Ú£ú6 Rz羬âyÕÂ&Äm'Ä4)u$ü}}Ò: Wܤ=ëËD3B)\)À×Ã# +ÂõðìÎɰ^³õîñõðÐËá`²Ö£QWfÍòYû=/u¯½:ñQ4Þ÷£)Ýo7æ·Â¹´+ÑSVør÷YD+Àoܵ`îåLb¡Ö=--¯G\T="53pz¾Öº«n/ +èv²Ã :à-+ +ðÊó¼ÓzCÓãð£eD�¹ pOçùõ$yýºô(úUáK>@f+"`Í&ßz¶x,¸àºìÂ3BLzÁíàø¼Þn÷sLÎYä!»±]$!tÓ²~;f7¶2Ât½g£µÎÂÓÓ!gL{Xç2x�»ñL*Yb\Aϧ¢òùÆjÁ¼©¾ñd[¾5¦Æö|ÑXHï§ ·ÞìyÙ�z^¢$B4¨Pulá$Ú1XFÙë¾9 _÷%É1±Î°ß½Ô·ÌHz³C2P tÈÀê$¿Y©éTHBâYZâ´È¾MICC&M4<Y°jjHsóu©_[µÕpmÕF¿ß3`n¦U9ÞK«2È:�Äl´Íµcäº0#+ÐÑË{8PÆÞ + CèÒsÈ{EiÐ{© d}4ʽÐ뢥ÖóEê[y#¯Lù¡<]Hðø³KD÷¬7 ëóå®®É+xXÂZq·vlôµD´Ý¹>KDÇ/@0ñgÔ§`m4C|2óMÓE +®_°<W´nî¶¼[pát¾±zÉ_°Rõ4ó«ÀbÏ¿Éñ¼Árùç*úpeâµÄѾ ®à+�º'XæX'é�W6!XFÂðßà.¼ËÓEZ ã,U.¼¸µt_¸[tîhnÏǼSà=¢�e6ÌmV[âÁõµU^%Ó� 8�%aN ŬI1eA©®¨ÏW6'º¹Öw +È]L¡ÕX¶_QÅñ=Åæy~d0ÁkÏw¬âgt~Û×6fä¼zؾÅý`³1eç`ç «¡nDôÚ͵÷t0bJày¸®uÀdUlö|cŲËSíþ<Üâ+«ÕVÀ»oÛXá6 dt�}7ul@ï§ß×Û/Ú +Wx¥i¡Ò?bû*VMx¥52ÈfS43B{8Ððm³)µ +èY¥Õ!Z!ôûë&'ìKº¢ vÜÚY`ÇH¥2e$DÊ,qG-GUYuÖ¾b{L,H +{+ÚÂáκ`F#:kñyHêõKEz,Tgé[B;Ô°§Î5 {Î(Oe8xÖ¹Ú°ÓtÔ¹hËi+¢x¢£Î-¨¥$LjZÁ`u mã!£ÞèYm.ÒB¹4Ñéçoh£YÅ ^Ì0¤Ô§cª±}Èw m¹ùiÈ:ɶ|f!éâ± > "Y©öt�¹&´S`H¬íøÛ.,ªOcð56#PÍçd|½ôMhdîðõЫÈÖJµ° t//<rܱeíæñô:¤dël?±@ldgгû(J!Í ¦|áGQ¥-ÌHà�=2yEj 7RtKYT +ÌPôXÕ/ CNµ"t�°,Q:�[ vo èhE[Í:д|BiQGÍ5 °!ïpSÕ"}!úsºl!ÖçÕëIôî|¯8ë¡ÜoÍ\ÃÝ6fxt²$wÄPô~ººv´yV_À +"q`Ìr+,MmÑüpXjÍ`£aiz3 c0êÚBÊݹ¶ðóFÌäZíV¡Ðb*ÒîÀkyKö« ä"R"Tä"Liy!¡²£/£°^µkØå¢zcVߤo:Ã3õÆpÛçé© ½1ÎìÑÁd¤e`Ù^0âȬít�½1<´¾êãôÆð½õ!öâÑ}ÏÙ@^ÐæK|9}.ÖGæÉ�t³òÆéB}ã?r"9 +k ÈPÃêï!k¾X¤óSì>r|¾gÙ@@j¬àÛÆÓââõ¿Ì8bÐk8BLGÒ"²$¦VÜa8üÍÔ6¦æw¬T»¬Tb·¶ÑýV¸iã¢ÙAþüzËFhE`4D¶LigáÐÈuémt{óCìÅ4lЦ3 SZQuÆäâ,~�I*ÓtOÒºv§FZ¸lãG�o¨çIyãúým3"@G 3Ñ/ÀhHxN5i2DyPQ4 *¦åÛ;w-¤kÑ¢ JUÔ">æD +°æÍò15¤=/&1)ðPN'ÐÚÒ2ÛpP¹.´¥-Õ`ÎßiäÛ³àÁ�±[ß<ßsgjñÌè*"`Ï©ÝÕäé1Ù8ÑVïl«m¬)üûú® ÿ#�èèÃ&|cHÅD¢(¬)=Kä»WM(ÚVa<±JHåçÖÕ®ØJ8Ðsik!Í=¸¼ §«¼hzÌ3«I<�!aEZÔ3X°h MáTc}° á:z2äá:ºf`]D°[ã´Ý³ ÈêZ´w¥jíbt¿w¾# KÖÑQVÑ9©#Ä<µ»)Câ.üÕ1üÙh»ø¼óÀ'!I.\AGr¹h®ÊÐ +Y OǬópPýÚxÐÇgÔ½P÷x(yÝ3l¡(43Ë+3Ø9!;º_h[}új¶úÏK\wÈ·. ¨´D¥ ¨¸DeFΨDeFbÜÓU.Ƥñ9 þþé©Y¹-±ÊáÞOßB$_\ï÷¶Sú,Æ4»5o8%ÇKöbýt�ýê?ذéáº)Ýïm o3´/ç÷ù餦÷Õ?lòPÎöA¾à"Ct£¥EõÓxANBõóIÈ®M+b¡ÞÓmQµC�^¨ñk×Y:�í¦@ï¦=è JkÃ-stÐæËN,ÐçE3ÀgÖ5%â-ᢠ&®p1¿÷]5 +ÒT$%®i3$çÆqE,è¨0H{rãIô |f +±X ¤2\)Þ³ûE}«g^3Bo.c]§¶HlT ·øvͬ¯á@£ e÷G +êµöýæÔU#r²ª`Ñ:OT¤ÇÈܶªÞ-T\$OÀv§¥]¹ å [ÛàÆS<»Gñnȶd×Þ?ÓFöù z/¦ÍQ¾Ñ 1íÞRí¦%¤¾a<p5Åô2ã)ÊEJ©/ +Ýa÷BAßĨ%ÇÛEläúõÇç;`BÎÒxSõº`æ×vMq(*ynس±HÀ[¢p�mÌñÏøÝ?b`Ç¥Ö#ðJÓ=®Eú}zk<MHôÅÓëÆî¬z^8-�ú2½z.î«&|sä ¾3!B ËüÒ7Q ÎΣ G£FL^n3Òá¦ú¢Yqg·j2Ì®¶ Ëõô&°ØzO/¸6ÑplõðiQGOøÌHOQ÷´ +ÑÕXØ*ÚÒ²ÉéÔ¿;åVµÚÀ¨%O!ÝbAj�Å.ø¼yTMùçÝ! >ïñL!ï@θ§s�r½);#!ìiÊ4_D;Û]Éáu"ZmÁÕJÂFÄúdDEZXÈ¦Õ oúyó§ ´ÄØàôε¼^9ð�údŪÅS OóÞ¬y¿3>Î1{h ¼as_Im¥Í¶JHÊC y®ö Pw9Q=o<RØÑx ©a¹Àý·ÒÆQP ªñ`Óªú2½¨B + +¥ëh® º@^¬6Ò¹~§·ÖÙ°UøÉ@õKÖ|èh<h~þïÖ�E$²]AýÖ7p"Ï58½å5 uþ�7¯¬¯ÙMvëKË·TÉ,´}§tàxµ>:ÆÊ²:cz�VÀZ¤wÕG( ÷ÞqFR$µ1®ê°ÞÙ±q¤G%¢ô¨Åjë=|gÄ=½×[¦,ÖU3e|±(´Åº/w Áªé!M' lä;KBH/-Xà QÔrvcw¦ÞÐP©{^K¨NÞäºÇÉ<ÌHÍ%Ö:°H!-1ÍIrèüyhÊwܪ5kÞg÷i iÉ÷ìP²ëÇñé Dlbùóéå/Ë¡®i$Ã0ª%=ÝÙ½Âc'%ö|§Pï z¹@SE `w±ò½ç9*l1):G<·çö^<DZêÕ`åörLÍrûY²ãnn>?ì¹ùüøÁÍÍçA¤=7?wÐ å5s:�º1˧´ÍªW¸mÝ^ð¶Yµ÷=-µ¬|h} Í'vå6;�(ë=&tÀí7°ùã4Wð,/´6¸u@=KÎg;÷>¬� À PÑJÕ³Æ: 7¬úÎ; ù.¼VfG±¼ÂH êÅ$â¨Yã!G %¢][³}VCÁ7 +BS¦ïSÜ{GhûFAZ Ra²þ(úÛÛϤøX�2å°7�nëãJxi JÐK¨ã + t9à1#Ý« Pf�y:+(ÁòÝÃßó{eÁñ4§�rïÈ^ð¢!~ï? Za+L$Õf¤@`EôcLþh,cC#±Ì«í Cê9Öå 1J¨i4ø®«Ñ;N¾ÏBÃñ°cÕV¹ã Î34/4ðM³ª¤¡¾w ®ÕF45 ׿¥CùòåI9áÄR§@Fi¾<)gnçA·7n(ÈõØf(DúµñÞº0ÏhÂh<ab<0R<)4?¡çåá>â<Oój»%8>/Ó?´Ãíù!@G»epéG®ýçA®`X<ÔÖ8 gÕ¹R¬²Àè}¤ûPÃAÑó[�x¾çʽm¬Ù ¬>(iGüT^ÑPqÀw®,xÕ÷¶¾çeßãoõ½$[¡}®ÃBùôÆE%`c!PõÁ$j1--¥zKcZo +¡Uv<!¤/0WÞÿ«íh%Ì @G´¬ñ%vQáYR^\A°sÎPß°bÌÐöÁâ ¡ñòªÈìùEz#Bb!Ò¬ñÃWÖ9Hs6¤XALh=õÖÎ|b¡¼-ÙYqði ªhÎ7~ÀRõÞË#ÅEÓc`ûª;cNDÃQ5DttzëÌj]è õé®u�©Q®·yDwNî¼'ÄÁ õ á{8«È!Üò 9¾~A]Pä˾´´ y]di¾å½+ZbD«Cå'Ù3^8C§2fÈ]ç" 1©HADIQQë¢%fóÛ£FgO¿ Q> ÷¶ ViÌÑhu¢m>>/M©¶¢½¢!3Îѽ §çõMmåùô[-àÊ}[Was%ÙE°b/µÐË e;²HÐym_GAº1£çå=1LÃ"øzpGq*±Þ5á÷wt úwÜÛ²W8¦lEØPÊ* ²Ü²B{m±B|Yé° Æ +ô×ç§êÃEmä®|C3g9+ÜO^20¥-'p\ÇÃP-^«¤ÅôÂxVDo[hk iíô-CC0v¶-CBVFÍÓÖË0v¶Ð³¤|[Ǫ2Ú·ðþåê¯}¼ùúÐäËA}Uøl]ÆÙÈ[÷âÆ )ÝÇb\=bÈéÑÀ9fIÛó«úüçe~4D²Â þ>æHV7¡xVq}fu@¶cÙfóúíõ]$1"M=¢)i_@§j2ôe:2Ô½¼dl¾/úÆÙ�ËìaHÚQ^ŪÑ#B½¸R½F¤Þ®mÌòã®ZóPz[fn}iu$Ø=Aê à²ÒBMI.lÓº> +¾à8 @ò=ÁÇÙM+-Dð%ÆÓzQè,X4ÐÞ5¡çuXPïpÏ´´xîH@½5N�ýg;"gò¬Hq$T4±Q²|¤e%ÕF@×e¤ÅÛF ëØ[Âø¼/ ê#¥"3ÖÑ:bv0:\´sÃit¢V_ZæJxã jÉÙTB¹-®ú}c4ÒÛIóÞªQÞñ:<¦YaÔ Íê"dí]¡ÀÞµáYú,!×T ´h*@ExVm��Iq%ÀÁÒýþºßÏJ#î�WO7mmñµaÉmÀ¥éM¹o çûã§ÜiRV5#a=Pt Ǩ±fñçç[±TN ¡X3 +çAq6}äG:J½)3tòuµh³¼ b# {Y¤HFgñ|ð�cÈe³5B1ä¯ÐöYoÏAï`aÄ0Ø]c1ÜËath+K\YÐÕòõ¢0û¬FÆpv°G(UcElYó«®p|AÇè/èØq0-:bHÓ(Bê)m¨¯E¬iba«KdUØ¢d:p4³lȪ+ò^ c]ÄU'¶/É*·iÂѾC´JfÈõdÞ<À:ÝâµBÌvFð|nTÐ::¹S·\I +ð¢²c2nT²æ/ WWYÑVÚ®¨ +^[bÚBÒ0(rIÈï ¡UhOB¨OÄìÌ ](ÑàA²Úè:&b¬¶ñ`áØDLÕbZZ[X3ë1Ø"ßỾ}"äIík¯êÒÌnÒbRO(1£yl"cºçN÷êÆ`H#úĤyC¾Å#©á>áÙ>¡É�mZ(Hõ*X/¤ïcFÞ¨£õFdàðYM-ivnm·AêVêçÄÝ¢:}F¢Wöùû�} )±Âé3à ﺨÒù9`FKK¦Aô¬}ÓÈ4:#v¬qr1kpb¶U'3¾Fµ2LXhÐS£,\g ´éÁz©äkP¡tÀ]Àß×Òá Påv8À×TMùLHB_ ÅĶã ôæ©hÎÔåyÛ1}YµML.(+Ok'&$Åz®ÎhÛÆ~ÄC|(-ÖËìbØd§t(#LãÎèµÇ9½:ðÎä 2Óä6"![&ÍQ +$d:r[ 4 )ÕÆ çÆE(YybÕL1-qÍ0"ÔojT)H´hC:>xØÑ}³";¢gûîQ'¡KöxfpÅÁÖú (M'äɬ5%àXP 2gÕO Qö\dh½ÔWÚ\LþöoÝ#Yhài墹sw¦b0*ßZ$-¤&u?e1 ¡¹ù¶q+ ó%EqõHj×¶çÂê-9¿�ØrÚ¾Ð*<çÈîÜð<p4È)mÑÇñ:ðZÜéyͱ¹ |¤`Ú_04ÔÑ}D�]ú±= ËÌñ¤hsÛg¼ $9mÎdTlMË&xظ°H,ä3 IÔ!RH:¿Ü +3Ò®«ÿ+8¿@^2k2 +âÞÅe# ®ô°]-¤%ªº"Òçrd:ærähÂ& +ìùA8Ï ÉQQ:ì?õ-&5ÄV �;Т $MøLfÆø¢º[±´¬9z2È3ãYú�¶>µ!ßé{éSî©j_Àï½ÑaýVZL9¾3KØkê Ǭ©_à�CB #Êfàó Ìok&$gL¯SзõW)¢©V¼=r�YÙn~¤UË×1]ÚxØza@ÒF9ÃP.RnçwÂ\aH}9?ÍKÛµy\ò`^[LýxÁg"ÃúíºètaýÖ×:WÐÊ+Çç{gD¼sfÎðà@GÙ=>�Ìg)h÷ÞóNÁww*G qF _O*H^7a%Àvo H¿s åXÀYtû¸ÜRBÛÓà*!¸O3ü¹Æi÷Þþ|¾ö¡5âÓþ-XâX;¯a¿@oçµ®|ÿy"Ú{v£ ѬÊò«øK°ÜóE¶faÔÙµ÷¨!Iw Íë÷ã÷zrflÍ4ØTÞO<ìX³D5 Ý?ÉàdzÖ,¨îY@Þ´ãÎq2\@L +¦üÎÞè5åg{Îjx@Òû©ÞT`DÕ³ïe]EC@.'äNA;-½sÔ´TäO¯BDSÓ07HSSf,QaUJBAu°0#5îèÎYóÇ´¼Q?Ö;¢3ÎõóU:?¿¸Ï+áÅ$zGt¥Þ½|$Ñ©Å35z%2ÒÔn¥òÇ>³]ü§ýù¡Ìl¿ø?@^@·U'c]ñõø=]ñ `GW¼U7< +Ò +Sk«?¿@ßaÐû6cvf^!ZÆCÞ¿ !Ò!Î'DBtoÎÀg4µªÄÈJíÇôÔ2ÿ(q*ü�å¾My ÷yE" ¸J ÈÐÎ Yô´BT£ª¬+FÔ»òvGAÞ8ØÑTo3û>XS=ÒÔ¸möe¶ÄÑóe´õ vz¦ÝÁk×4ªÖ:¼©>è¹-:¸å]×8vwå/j@E¾@ %ÙöEKÂʪ)ü<´ïrB*RBOTdô)»ôP õ¯,³D@jzkh}¦¡0D@GaÊÓ÷ PöêãLhj Ê1mH;lÕåj Qyä tv Ft²ç¤D$9Ï¢3ã3ût�^]Ð"B wðÌÈ +ݼêÄè*"`ÇWÞ#ºéóͦáÜ:h<8¼ £÷ 7Wp:Ù«õ{_À×8ýFp-ÕúÐÍ ý((Á@½Æ:¿p[cÍP¿tÜþ¯/è}XVéøX,·@zäS �20huàéÙåilèÀ®ò¡ÿ4,Ï{k8¾( !èih#r[wÿPOyÌÈê=åÑ|ééôúP5ÄVÞ@,ìAôÃvHça¥V¨¬ëdÈäNȸÂ/ÐA×Y¢�µ#ë*ÚÖúDOFÒº i1XT3Bj¹BÝ&Õð¹èeä Øßq¬ºR´`Ö&| #2Ä=Å »ñu%ɦ4!äsAcm>Y õX ëÍ'6×ð`ÅXóɪz¶KZÇ'î±Ê Õߨ¼ÐüPDßÑPÓtËæCj}>˶(ö[bˬÅR ¸C +éåûPkÇ>/MÊrEv¸£:ÕV¹ºp§òòYè¹Ýû^ ,o;_ðx~ìθ´*õéK38AÇ\ Éà=Kóþ¡Ú¹} +8GÊ]hÍ= +ÒXªöTW$ÅBhm¾28½ o/3_æ|�Í+ÊýЦ±ô°�ì@ªÐèãî±J¿OÍÛö°Êt$/Q�2Y´þÁÁ¡plp¬¢àr¾²¦ïfLÜÍX ÍÏ'!@2 '5¶¬ ߨEÑñÆ ¤ùgB¬@RÚX²Ò²TXÿ/Å,·¿éËvÌÇñ±$òõ-hBHóJëò´×¢úÏkGLñûÃsH©WGÞª¯½íÀ?�+.,ò±vç{²¥@ +¯'XÞQN w,Ã4°ì>iöN¬È£_=2Mï'ü2¶j1UO} ¬bXKÓÅýÛm gLiëACô;É,:L=ºÜÿjÙÍ?rõYVVk_7÷(ªóé�ÓóúÂÐþ·{uú¶DÀ0@ÀváæÎìØðü!Gë/ûF ÌvØãèht Tòô=X^ ÷¿Ø:ÃäþÐÐa!¯/DõîÂ,±e·¶ÌpÛ(çd·Ø«µ?^à¥d¼fÍ; ñv÷_ :òkCêÛØÝ¿GB|E²æ|@GT¸&¸zÌ*è�ºí Z´ 6HZDÓS<~~ñ³ÆÞ¼ Ë!AIÀ÷!Bè<5gÆ+Ó=TdÉ;:wLÅÑ,=2`ãÒ¾)&U"+Õ>â±ôt +¢%ý¼ñÀõç|¶B^âÝ)?À, +[ȸJ¤¹e ÔL&tçùtÔ#ÙïÐ é|MÆÞPß91#¢°¬¤445_YÿD@)PE +¸³n@B�TÖPïGMÖF5lë%;@³Ûi¹í£^jæHº)` íQËíø>D[Ê,'ÄÜpne²fËyÊ {X0#w¬±ày/½ßa!Ý´ÁB°^¾°Ø,ýZÜ[Áè¢1\Èæ +âgðÚbè�Sº¸Ña|¸öÞÅA ¨ò@½/3tX@ëæã Ô,é°Vé¹áÈýæpïÀ8½@¾9Ö{$ ¹Ý´J<àà ͤP¿¾A"·Àáò G 5Ò½ñ¾³ÁSC·ÂáQ^àgDs'K¦× +b½PmÒÏ·åü¡`-Èô CBS¬/zâhxj¦8ÚòAS¼o}5Å{ë Ij:!!Ök\[u@#�ËîëÀæÜ¦+$âÐåÙ³{Gh}"Co,![äI½íPøÅãàQWÔªU¶¬º8ÐQ]Xé©.¬Ó`@eÓU³4±4KN»Iªin !Ö×NQù !Ô{óc¼Mì°~4ÁªQÍknDGr[ÂrÌþ¾lÆ2Lu3mJÌu ¤À5Cèxý{qÁAxÁ÷¥ðgHéݽùÒàBàkó¥¡Ëªz�ö-}0XÇðCP +ó7ßw.È+öâBèFßønxqèÇ/y@ +ê*»óúGeÒÐ +ÕZ!õ¡u[áÈ�½w¶JyÄÒÔ<"öìâ³çðfeI!^È`µÛ|Ærj @TQ´Côê¾ !Öï¢Ýøù2Àæ3ì�$Õªi/N -èÀ?Y Ñ'd¨úx À9#DWMyi Þ2CiÒÀò-ÞKóá,}@¥¥úrY·éE)34"úhDÖàJz± 9o\@JÔQg5"2P¡/ÕÃ)HBªF®ô´¢p¨cj}D;Æ:ä¤ìs´©çÊ8*$õ/ÊCZÛecHxi@©ifpH7òM[¾ÏÆä;tñ Û½)³j ¡!êè©¢pk¡CRs« L øhFÞºµ¶MnÇÐu¿Lcø'Á +LÓ ÙÊ8yP^ì�«v�:ØPç]Æê +x ×øÂdtÙ¶0(Ä Óáô ¯¤àzzº ;Â~�¤ ==ÝÍn(c}ý1Ý3$;úà !ÙZCÂj|,#Ðk/z,/RÛÆóD=f£Yc%áD[Ýiuì° cuK-²ÖåÚ¶3 úCX4rXÈ(Ú¶õq°c,À²ÏÑ®þiU}9(ÐMùá)D(:úE¬÷d`G¦PDÖ)û"g0Â3#<Bs´ÆV +ÒWbZ}c4$L3´c:gDÁÖ¤±_´Rýñ¨Tÿý¨Q`É/D·a9 tô#¿X¸=?ÔÜXx|¾+ª/û>³ä5mïÉé�¨ \ç{¨ð�©e[T~Z6°ö õÔr-·(§t[T/QÀóÆC!£çõFÌ6eè=O¯Òv{<vÝÔ{NÐ/]Ó°´Z¿ lQ}ÀÛéÁÛoÐEã!ïgFHïóª}åAM÷xPëM,ñ¦X ÊÝ#±áD( çU«fGh+fKÎf!Ú#�¿uÝùU¦6°]¾¦@Ê7NÖO'Õ°¼"#êýÄqÕKCáMS¦\ÏXäWʦD.>*éç-ù7³l<¬×,)½ötà0¥ +ZÙ§ªEå^K·kGÚÖÒ½\YegÖAm¦Pjó4Î\3# +daó]"!Bצl^û^T¾Â»ox·¼±ÝúÍkO¢{[5&ôáyá¸?ê +qÔoû·¢rëÉÁس²ÕG\;ÄÙÄøvw÷nÊåD¡AÄn/»·à�õ¥ÅÄÕg=áó½hþ0D>øûú¥eCì'@÷°ÄAZy¥E´Õàxx�ÙAgg0g7i2ÌñìõÌUXy*± `a]Ðd×gt´ã¶é¨³ÔSó6"|aA ÷XP4ÐÒåõ3| aóÅó¬÷P{Zv;Ø IhÕÄ"ß²Þò q]/hBÀñðJÙx�½+=Ú[RRDAú1ßû�+T:Ód°u÷|u¥¾dÆmÅ·Ï®ðâ¥ÜÔ¢¢Z2RQ@Õso=ß©SÍ*H©")îX\aujO yW:"ajÃZ55¢©éݹ>ñ>,àXD!$Å ÒâB@iMOSx÷,YM)ok#ÚßýNÐGÞsfÁ³Â!ä&¹6幡ÕõZ¾þ¦¶úΪåö4 ÂPÚË3óh@°ËÃóAñ^GË«};Á'oLçµçôzÏüMÂ>30µúÊôº±{ÈRçhZ<1;à%´BÔÚâOB K±úyàÏWñyVà)@:,yXW Î/K2È&¨ ÃÆmIùé÷å%é{yçøû +x¯R'êx·»ã:ÞÛrïø¾(ÙAgQy÷±4vݵ·¿e@é÷úÊ FëôÚæ×ñ}Pôò(ØèøfÇ*T+zAªv¯+@2 ´^XSü²³ðcS<Ú×Âzïp8ìHbÍB¡ÙJÅ~Z÷ +4ÅòmÍV´V7 %ëyo£²®p<ÂYrf¼81I¶^<â¹å*Jë '¦Tê½ <U1(§,X´x¯;¾H¯Yó/ÄNó¸Í+ΰ[ïleâã\o½ym!H Õ¨úBåfµ ?-#HÐIKE_Í/«&lL2çù"4&Éb<¼a'Íò £îتÈèW~¹BK¬c¹Yq¡|ââÅ=¯'¬©¸¸¬wdÞ_0îÃAÅCM yÔs+o¹ç'µ+ov£�|×A$ÎË[e£|N¡ç·Wlà¿â@¯P°ÖWXë +àÆ®|ÂFpÃa4 +ÍÉ¡ÏBÖû²ª_@+ÖÏ^>£ßpÀåì³A2ßÌð¨fW:òZ«<Ãjà½'¢P̹-x0FÖªi-ZDOÀjH{´hYD-"°ª®á!V$CúÒÃ#<¿@^ìÂsÛnýyYÛŸjÅä)&¤rV´Oæ8<à³$|a¼ sÃ)6naGïMÉýèTKñp7áh4³ÁÞòd©BêpÐ +öÀ v$l}# +i}rÅÖwT°£kbBñdÈ»5Ð_fÅaÑB·42åx/¦ÏIéiÛDf@FÖÍ0ëh:ÈâhÈ÷ô.á´VßT�í`OßÈ[86V_¬H;êU+,xh[ cìÊ¿aßl/) Ü*Ĺ�ëÕö± ß×K;æó Ý>3|�DÀÆMÝ@v߸)Wôt=Ôo ¡¡xBÈÚÎWêmaý±¶+oäA,¿iHHGBÔ¦eQT¾¬aÖÝtÄ4 +tÜtD»ðt¥¡Bê@ÿy¿ß± ÐÙ�B^hÅHÁk¶Ñ1Üdô6н6?#ÙQ4�'O)ê'²¦3óm®ÆL±³Îw``ís1®!m}Áê°¹ ¡"ìZÄT2ÜÑñÎ ¤ÈÉe¶Å62iþÖw¬¾0èÍRA¦°ãÚ~^Ô %²¶q@íõ¦,Ðul+Ѫµî$t®KH~>-¬¤éq¤82±r?u*p?õÖºðì§~¤(CýÔ;îÆhrÌ-:tÍðç%ëHðËÍÌbOÐÃbÛ èÉ ;á2ÖTäô~ê\aDò4#.cAõ=ð§q!¯ìÙuCܳkçü;(iÃ ÒÆ1ä=µ.ò AUµ¼Èë»vLÒè¡ +®Y¢ ï|hUqJpH:6 lÓ@£Ãv-o<H_ ¤ËõUJé "ÒÂëhv åxгp @XhùE¤ÇÚ<·"_ôpiIfjìñwÆ[#vAFL%æ¹9xÅfÃ=Alë\GíX´VäQ;¶§ö®+à ¹¢aýi)È Ië=Jva7$»°FR£Á PT&HZ4#Â÷(j¤TP0ØÑÅ +�½sÇp Y1£pXïâLUf\EÑl�ÕÂYZ[JÍK.beq{ï;pbRNðzð. éI}÷ìø^×pí8û@ZÜѹÁ.¼Á)[ã¨E¼o!vØ)k"¯¶u´ÔQÚ<tÛ=ÉÞv@)ø_õÓ/~~¿ú·¦âñø§zýǯþøHvòcÓW©¿ùÍ¿ûþñßÿú·úÏßþÃúÇ_þøËüù7ÿ÷׿ýÍÿõÿ~üÓ¿üüû?üáÇ¿þݯÿõïüòëÇ¿üþ·ÿþÛÿøùÇùñ»þË?üâûÛß¾~þÝïÿóëO¿ýùÿêüoÿñ?ÿô~ñÿÜûúÝÏüÃßÿøÕÿþé¿ýêqºÿZo² +endstream +endobj +249 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 826 0 R +/Name /Im236 +/Width 45 +/Height 66 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x ± C!DýEAé }:¤¬FcF ¤øââóG_QP¼Ïg`H h"ü)aJ^»UH è4mÕE&²±ô®oñdy*ªMS¤3¹È|6×Ç:Ð]XpyÎy§v+w¯ºÏåÁEÁ.Ûúâü¦62ÒbÜÄùÃq3lvË8¸iéd®Lw´`à�ú çO¾/úx½ÛóÃÿ¥r +endstream +endobj +250 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 827 0 R +/Name /Im237 +/Width 69 +/Height 67 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³ÿìaücàÿßÀüÿAýÁþCý0CþC=Á`ÔAÌj F, +ãñãQAÊ`ePÁNÄ1\kù�ßI»l +endstream +endobj +251 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 828 0 R +/Name /Im238 +/Width 50 +/Height 66 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x»Â0Dq P%¸"2ÍÐè: ¸R\C-÷aàäî³».¸c¢ ýÓµ³éDÌ[Ó2P÷¦uG³ÌVkÀÚ4ü_¶Dn-!�´ú; 6ò ¢×PrM,5áwMQapàj¶ÙLDqÄ-©t¢©ï¢(Äý�9èêëh~¹ÒeGñ´ÅÿÈ;º'é·PòÃùz{^^k¸Z +endstream +endobj +252 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 829 0 R +/Name /Im239 +/Width 67 +/Height 68 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÀôÿ0Æ?ãñA¨¤Ä`üÿÂ`¨ÿeØÿ2@ÁÔÎ8�a°ca< 6Ý +lîAw3Ü0Á} +õ;1 ?0ƨY`0LÐô@ÃÙ¥ö°/�ḿ£ +endstream +endobj +253 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 830 0 R +/Name /Im240 +/Width 35 +/Height 47 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xEϱ Ã0ÀT¸ô*ÒÈZ,Ùeï Q<J>ÿpà4WP$B)@~"Õä¥BJl@·Àz±ÿ9�P/ØØ +YMC&´~ÂA¸9È=ábu§HçCãå¤+׬'ãÂgT%ä¾TÓØÓÔ6ÈVT=µß¯ýñìn +endstream +endobj +254 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 580 0 R >> /XObject << /Im108 115 0 R /Im21 28 0 R /Im22 29 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im106 113 0 R /Im102 109 0 R /Im30 37 0 R /Im109 116 0 R /Im116 123 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im21 28 0 R /Im116 123 0 R /Im24 31 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im21 28 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im117 124 0 R /Im29 36 0 R /Im28 35 0 R /Im106 113 0 R /Im25 32 0 R /Im141 148 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im107 114 0 R /Im24 31 0 R /Im101 108 0 R /Im102 109 0 R /Im29 36 0 R /Im21 28 0 R /Im111 118 0 R /Im21 28 0 R /Im22 29 0 R /Im28 35 0 R /Im26 33 0 R /Im30 37 0 R /Im28 35 0 R /Im105 112 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im118 125 0 R /Im30 37 0 R /Im28 35 0 R /Im26 33 0 R /Im111 118 0 R /Im101 108 0 R /Im25 32 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im22 29 0 R /Im106 113 0 R /Im28 35 0 R /Im24 31 0 R /Im26 33 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im113 120 0 R /Im104 111 0 R /Im106 113 0 R /Im105 112 0 R /Im25 32 0 R /Im25 32 0 R /Im107 114 0 R /Im105 112 0 R /Im101 108 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im106 113 0 R /Im30 37 0 R /Im26 33 0 R /Im25 32 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im26 33 0 R /Im110 117 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im107 114 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im117 124 0 R /Im102 109 0 R /Im21 28 0 R /Im106 113 0 R /Im114 121 0 R /Im105 112 0 R /Im25 32 0 R /Im26 33 0 R /Im109 116 0 R /Im113 120 0 R /Im156 165 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im24 31 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im120 127 0 R /Im105 112 0 R /Im106 113 0 R /Im24 31 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im109 116 0 R /Im29 36 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im102 109 0 R /Im25 32 0 R /Im111 118 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im120 127 0 R /Im24 31 0 R /Im29 36 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im30 37 0 R /Im107 114 0 R /Im105 112 0 R /Im28 35 0 R /Im117 124 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im143 150 0 R /Im26 33 0 R /Im25 32 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im105 112 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im24 31 0 R /Im109 116 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im118 125 0 R /Im24 31 0 R /Im102 109 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im26 33 0 R /Im102 109 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im141 148 0 R /Im106 113 0 R /Im29 36 0 R /Im25 32 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im113 120 0 R /Im104 111 0 R /Im106 113 0 R /Im29 36 0 R /Im25 32 0 R /Im107 114 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im24 31 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im110 117 0 R /Im101 108 0 R /Im24 31 0 R /Im22 29 0 R /Im22 29 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im24 31 0 R /Im105 112 0 R /Im112 119 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im24 31 0 R /Im22 29 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im21 28 0 R /Im105 112 0 R /Im23 30 0 R /Im25 32 0 R /Im111 118 0 R /Im24 31 0 R /Im110 117 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im117 124 0 R /Im102 109 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im141 148 0 R /Im106 113 0 R /Im29 36 0 R /Im25 32 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im101 108 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im102 109 0 R /Im29 36 0 R /Im25 32 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im101 108 0 R /Im107 114 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im26 33 0 R /Im21 28 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im28 35 0 R /Im26 33 0 R /Im106 113 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im25 32 0 R /Im26 33 0 R /Im109 116 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im28 35 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im120 127 0 R /Im21 28 0 R /Im101 108 0 R /Im107 114 0 R /Im24 31 0 R /Im101 108 0 R /Im102 109 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im111 118 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im116 123 0 R /Im25 32 0 R /Im29 36 0 R /Im109 116 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im26 33 0 R /Im102 109 0 R /Im134 141 0 R /Im30 37 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im26 33 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im106 113 0 R /Im107 114 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im22 29 0 R /Im22 29 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im26 33 0 R /Im102 109 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im107 114 0 R /Im21 28 0 R /Im111 118 0 R /Im111 118 0 R /Im26 33 0 R /Im25 32 0 R /Im141 148 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im30 37 0 R /Im29 36 0 R /Im30 37 0 R /Im116 123 0 R /Im25 32 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im134 141 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im30 37 0 R /Im101 108 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im24 31 0 R /Im107 114 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im25 32 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im120 127 0 R /Im24 31 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im141 148 0 R /Im105 112 0 R /Im106 113 0 R /Im24 31 0 R /Im110 117 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im116 123 0 R /Im25 32 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im114 121 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im25 32 0 R /Im26 33 0 R /Im102 109 0 R /Im117 124 0 R /Im102 109 0 R /Im143 150 0 R /Im29 36 0 R /Im105 112 0 R /Im106 113 0 R /Im106 113 0 R /Im28 35 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im111 118 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im109 116 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im120 127 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im109 116 0 R /Im29 36 0 R /Im30 37 0 R /Im107 114 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im21 28 0 R /Im30 37 0 R /Im28 35 0 R /Im105 112 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im24 31 0 R /Im110 117 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im24 31 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im141 148 0 R /Im106 113 0 R /Im29 36 0 R /Im25 32 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im28 35 0 R /Im106 113 0 R /Im21 28 0 R /Im26 33 0 R /Im21 28 0 R /Im145 152 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im186 195 0 R /Im28 35 0 R /Im105 112 0 R /Im106 113 0 R /Im106 113 0 R /Im28 35 0 R /Im101 108 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im120 127 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im105 112 0 R /Im30 37 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im115 122 0 R /Im106 113 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im116 123 0 R /Im118 125 0 R /Im30 37 0 R /Im28 35 0 R /Im26 33 0 R /Im111 118 0 R /Im117 124 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im106 113 0 R /Im23 30 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im24 31 0 R /Im29 36 0 R /Im29 36 0 R /Im30 37 0 R /Im118 125 0 R /Im24 31 0 R /Im111 118 0 R /Im24 31 0 R /Im101 108 0 R /Im106 113 0 R /Im24 31 0 R /Im110 117 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im111 118 0 R /Im25 32 0 R /Im113 120 0 R /Im139 146 0 R /Im21 28 0 R /Im107 114 0 R /Im21 28 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im117 124 0 R /Im25 32 0 R /Im106 113 0 R /Im118 125 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im110 117 0 R /Im30 37 0 R /Im30 37 0 R /Im111 118 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im102 109 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im107 114 0 R /Im25 32 0 R /Im101 108 0 R /Im114 121 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im111 118 0 R /Im24 31 0 R /Im117 124 0 R /Im30 37 0 R /Im25 32 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im109 116 0 R /Im28 35 0 R /Im26 33 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im28 35 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im107 114 0 R /Im21 28 0 R /Im101 108 0 R /Im30 37 0 R /Im29 36 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im30 37 0 R /Im29 36 0 R /Im29 36 0 R /Im25 32 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im111 118 0 R /Im25 32 0 R /Im30 37 0 R /Im144 151 0 R /Im105 112 0 R /Im117 124 0 R /Im25 32 0 R /Im106 113 0 R /Im118 125 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im107 114 0 R /Im24 31 0 R /Im186 195 0 R /Im30 37 0 R /Im29 36 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im176 185 0 R /Im25 32 0 R /Im113 120 0 R /Im110 117 0 R /Im113 120 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im24 31 0 R /Im26 33 0 R /Im105 112 0 R /Im113 120 0 R /Im112 119 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im24 31 0 R /Im109 116 0 R /Im25 32 0 R /Im106 113 0 R /Im102 109 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im30 37 0 R /Im29 36 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im107 114 0 R /Im30 37 0 R /Im117 124 0 R /Im21 28 0 R /Im26 33 0 R /Im21 28 0 R /Im106 113 0 R /Im102 109 0 R /Im21 28 0 R /Im101 108 0 R /Im157 166 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im137 144 0 R /Im113 120 0 R /Im104 111 0 R /Im109 116 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im29 36 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im30 37 0 R /Im107 114 0 R /Im26 33 0 R /Im102 109 0 R /Im111 118 0 R /Im28 35 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im107 114 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im107 114 0 R /Im24 31 0 R /Im115 122 0 R /Im141 148 0 R /Im117 124 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im120 127 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im105 112 0 R /Im30 37 0 R /Im30 37 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im118 125 0 R /Im21 28 0 R /Im101 108 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im21 28 0 R /Im101 108 0 R /Im105 112 0 R /Im28 35 0 R /Im22 29 0 R /Im23 30 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im117 124 0 R /Im21 28 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im118 125 0 R /Im24 31 0 R /Im29 36 0 R /Im111 118 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im102 109 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im30 37 0 R /Im25 32 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im116 123 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im30 37 0 R /Im107 114 0 R /Im25 32 0 R /Im101 108 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im102 109 0 R /Im106 113 0 R /Im30 37 0 R /Im25 32 0 R /Im115 122 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im120 127 0 R /Im110 117 0 R /Im21 28 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im109 116 0 R /Im24 31 0 R /Im22 29 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im102 109 0 R /Im116 123 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im26 33 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im24 31 0 R /Im186 195 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im106 113 0 R /Im102 109 0 R /Im30 37 0 R /Im109 116 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im25 32 0 R /Im111 118 0 R /Im107 114 0 R /Im30 37 0 R /Im25 32 0 R /Im105 112 0 R /Im26 33 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im113 120 0 R /Im104 111 0 R /Im106 113 0 R /Im105 112 0 R /Im28 35 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im29 36 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im25 32 0 R /Im144 151 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im24 31 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im143 150 0 R /Im22 29 0 R /Im21 28 0 R /Im24 31 0 R /Im26 33 0 R /Im117 124 0 R /Im30 37 0 R /Im101 108 0 R /Im28 35 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im102 109 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im30 37 0 R /Im25 32 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im120 127 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im101 108 0 R /Im120 127 0 R /Im26 33 0 R /Im25 32 0 R /Im24 31 0 R /Im111 118 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im107 114 0 R /Im21 28 0 R /Im105 112 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im117 124 0 R /Im24 31 0 R /Im22 29 0 R /Im112 119 0 R /Im25 32 0 R /Im111 118 0 R /Im141 148 0 R /Im28 35 0 R /Im116 123 0 R /Im109 116 0 R /Im29 36 0 R /Im30 37 0 R /Im107 114 0 R /Im111 118 0 R /Im25 32 0 R /Im116 123 0 R /Im106 113 0 R /Im23 30 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im30 37 0 R /Im111 118 0 R /Im111 118 0 R /Im111 118 0 R /Im21 28 0 R /Im144 151 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im113 120 0 R /Im27 34 0 R /Im25 32 0 R /Im22 29 0 R /Im24 31 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im22 29 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im26 33 0 R /Im24 31 0 R /Im117 124 0 R /Im25 32 0 R /Im26 33 0 R /Im105 112 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im28 35 0 R /Im26 33 0 R /Im106 113 0 R /Im105 112 0 R /Im120 127 0 R /Im24 31 0 R /Im105 112 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im107 114 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im24 31 0 R /Im111 118 0 R /Im111 118 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im21 28 0 R /Im116 123 0 R /Im24 31 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im21 28 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im28 35 0 R /Im22 29 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im30 37 0 R /Im29 36 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im24 31 0 R /Im109 116 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im26 33 0 R /Im24 31 0 R /Im117 124 0 R /Im25 32 0 R /Im26 33 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im110 117 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im28 35 0 R /Im26 33 0 R /Im106 113 0 R /Im113 120 0 R /Im241 256 0 R /Im242 257 0 R /Im164 173 0 R /Im162 171 0 R /Im164 173 0 R /Im99 106 0 R /Im94 101 0 R /Im100 107 0 R /Im93 100 0 R /Im238 251 0 R /Im243 258 0 R /Im96 103 0 R /Im93 100 0 R /Im244 259 0 R /Im238 251 0 R /Im98 105 0 R /Im95 102 0 R /Im161 170 0 R /Im94 101 0 R /Im100 107 0 R /Im96 103 0 R /Im93 100 0 R /Im240 253 0 R /Im135 142 0 R /Im167 176 0 R /Im200 209 0 R /Im20 27 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im25 32 0 R /Im118 125 0 R /Im116 123 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im25 32 0 R /Im30 37 0 R /Im101 108 0 R /Im23 30 0 R /Im30 37 0 R /Im118 125 0 R /Im106 113 0 R /Im30 37 0 R /Im26 33 0 R /Im30 37 0 R /Im30 37 0 R /Im112 119 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im26 33 0 R /Im24 31 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im26 33 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im24 31 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im115 122 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im117 124 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im111 118 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im26 33 0 R /Im102 109 0 R /Im113 120 0 R /Im149 156 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im118 125 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im107 114 0 R /Im30 37 0 R /Im105 112 0 R /Im106 113 0 R /Im26 33 0 R /Im102 109 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im141 148 0 R /Im106 113 0 R /Im28 35 0 R /Im101 108 0 R /Im25 32 0 R /Im111 118 0 R /Im113 120 0 R /Im167 176 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im28 35 0 R /Im111 118 0 R /Im102 109 0 R /Im30 37 0 R /Im109 116 0 R /Im101 108 0 R /Im25 32 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im101 108 0 R /Im25 32 0 R /Im106 113 0 R /Im118 125 0 R /Im30 37 0 R /Im29 36 0 R /Im112 119 0 R /Im105 112 0 R /Im30 37 0 R /Im116 123 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im116 123 0 R /Im24 31 0 R /Im116 123 0 R /Im29 36 0 R /Im24 31 0 R /Im22 29 0 R /Im114 121 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im26 33 0 R /Im118 125 0 R /Im24 31 0 R /Im102 109 0 R /Im30 37 0 R /Im109 116 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im117 124 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im101 108 0 R /Im30 37 0 R /Im101 108 0 R /Im141 148 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im26 33 0 R /Im102 109 0 R /Im113 120 0 R /Im103 110 0 R /Im116 123 0 R /Im116 123 0 R /Im26 33 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im118 125 0 R /Im25 32 0 R /Im26 33 0 R /Im26 33 0 R /Im112 119 0 R /Im101 108 0 R /Im30 37 0 R /Im118 125 0 R /Im101 108 0 R /Im110 117 0 R /Im29 36 0 R /Im24 31 0 R /Im114 121 0 R /Im111 118 0 R /Im21 28 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im22 29 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im176 185 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im115 122 0 R /Im106 113 0 R /Im22 29 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im25 32 0 R /Im111 118 0 R /Im222 233 0 R /Im117 124 0 R /Im24 31 0 R /Im22 29 0 R /Im112 119 0 R /Im141 148 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im116 123 0 R /Im24 31 0 R /Im110 117 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im223 234 0 R /Im137 144 0 R /Im107 114 0 R /Im24 31 0 R /Im112 119 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im24 31 0 R /Im28 35 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im102 109 0 R /Im106 113 0 R /Im28 35 0 R /Im101 108 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im101 108 0 R /Im25 32 0 R /Im106 113 0 R /Im118 125 0 R /Im30 37 0 R /Im29 36 0 R /Im112 119 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im113 120 0 R /Im103 110 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im107 114 0 R /Im21 28 0 R /Im114 121 0 R /Im101 108 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im102 109 0 R /Im105 112 0 R /Im28 35 0 R /Im22 29 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im109 116 0 R /Im28 35 0 R /Im26 33 0 R /Im25 32 0 R /Im115 122 0 R /Im24 31 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im21 28 0 R /Im105 112 0 R /Im133 140 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im28 35 0 R /Im29 36 0 R /Im30 37 0 R /Im153 160 0 R /Im105 112 0 R /Im117 124 0 R /Im24 31 0 R /Im22 29 0 R /Im112 119 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im107 114 0 R /Im30 37 0 R /Im101 108 0 R /Im101 108 0 R /Im25 32 0 R /Im106 113 0 R /Im118 125 0 R /Im30 37 0 R /Im29 36 0 R /Im112 119 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im120 127 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im30 37 0 R /Im101 108 0 R /Im110 117 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im120 127 0 R /Im107 114 0 R /Im24 31 0 R /Im112 119 0 R /Im25 32 0 R /Im105 112 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im141 148 0 R /Im22 29 0 R /Im29 36 0 R /Im24 31 0 R /Im109 116 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im111 118 0 R /Im111 118 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im30 37 0 R /Im24 31 0 R /Im29 36 0 R /Im24 31 0 R /Im118 125 0 R /Im117 124 0 R /Im30 37 0 R /Im24 31 0 R /Im29 36 0 R /Im111 118 0 R /Im29 36 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im135 142 0 R /Im167 176 0 R /Im200 209 0 R /Im20 27 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im111 118 0 R /Im21 28 0 R /Im144 151 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im24 31 0 R /Im22 29 0 R /Im23 30 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im24 31 0 R /Im111 118 0 R /Im30 37 0 R /Im109 116 0 R /Im107 114 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im26 33 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im101 108 0 R /Im30 37 0 R /Im101 108 0 R /Im141 148 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im144 151 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im105 112 0 R /Im117 124 0 R /Im102 109 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im26 33 0 R /Im102 109 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im145 152 0 R /Im25 32 0 R /Im111 118 0 R /Im24 31 0 R /Im101 108 0 R /Im24 31 0 R /Im26 33 0 R /Im102 109 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im26 33 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im120 127 0 R /Im135 142 0 R /Im167 176 0 R /Im200 209 0 R /Im20 27 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im26 33 0 R /Im25 32 0 R /Im105 112 0 R /Im101 108 0 R /Im30 37 0 R /Im101 108 0 R /Im141 148 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im25 32 0 R /Im105 112 0 R /Im196 205 0 R /Im127 134 0 R /Im131 138 0 R /Im121 128 0 R /Im170 179 0 R /Im126 133 0 R /Im124 131 0 R /Im245 260 0 R /Im117 124 0 R /Im102 109 0 R /Im24 31 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im110 117 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im117 124 0 R /Im30 37 0 R /Im30 37 0 R /Im26 33 0 R /Im25 32 0 R /Im24 31 0 R /Im101 108 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im117 124 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im120 127 0 R /Im22 29 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im25 32 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im118 125 0 R /Im24 31 0 R /Im102 109 0 R /Im120 127 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im22 29 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im26 33 0 R /Im25 32 0 R /Im111 118 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 255 0 R +>> +endobj +255 0 obj +<< +/Length 831 0 R +/Filter /FlateDecode +>> +stream +x¥}K¯äLrÝþû½´¾/&I/ [7ÍR{4²dë1ÿ{«¼¬s*N$7F£ÉJÆ;"#NüóoþëË¿þí·þ}õ%ýJ_)Ùí«µô+×é«LåWïÓ×Ò_øûß~÷_ÿ>§å×þÇßþüÇÊWîçô¯¹<^ÐÒñu±|}¾>ÿ÷ù�Ûr«_u¾ ý÷gé÷Û×úöûOLèü9½½`ê"r¹>_X¾r}ç@ÿ+ûW})÷² ~íûo$|}0`ÁÔôþõBù+=/øIÂõý�K_°Ø´¯ôMüF÷ìL\ ¼òpÍ÷hmQ-X×[ZP:�ú�ÌfíkzãÀö%ôMùu;@àÅRªfÇèEú�&¥Ö["XªjÇÈùvX;?6C¥M¢Ðñ°*S¬ÓÁí0ÔÁ+öt$Â9M×<ÎyQ¢úü³ôþµ¼+QyûþÕü g ÄWìZ4¯õæÁÒÀʨ,ð÷ßþþ´øý÷©¬ó ¼¯I¦5AÈ¤æ¢ ñ»!ùâZ°Í*káðåï_°1¥VL7fv¨Ö®Ù!&Cµ®¢]? ½ÐÚ·ç¯)hÀàp¨¶U °%¬SÇvNZ4ÄÚ³PtS +B´pF)ÐBzy¾eFê ÇuÑt2` ¾ôØ ÔuºåZ:,3°¥IcàL¢¹Q<ÓclEnQÚaµÃ:I¡Va8%Ç!O¢d/+Öäaóâ6i9S6i æÚ´He$Ãd$Ø·ÞãÙçùa0¨8Òý÷g%¤Y¹îÈÉ I]¡í_ðàäg?¿ ·þúÓóhì¨í<^0V)/O~9µ!ç�Ó*QÖ%z¿Èr_50Cç¼@w¥y©rFqTο/Ù\©ó<K¤Ô%RH+iEJÍP±äüûúù³*�¤.Qª¦4§,]ä v¥f¤ïê^8ÛÑ@Y U$C²À¼Å´´#1æÊˬÏÀÛùiiiFæE5£¬®ð.TV¤PÖqGòÌêS¬�³BU¶B¤¬aåeO ia¥{,¬Es$ÌÔ +Yøîx]Cõd$)mÐÈ´NÈ)u«Jȱ+K$ѲJG2ÐtyBBy ÆöÒØî¹Âº@-ÖEhAvPÏIëªÃ+²"0+'eFHNa0zÌÁ4),÷¢±V´h&Åzbáp/ +Xqö,åÛ%$дpV`J*K´66-¢´¼COnÒå^ÿÒìéüT÷Þ pû¦6#æ$ä[eA´C$«¬{méá +¼ÙÄèô@Vgµó<¢lwç)"ºFÙWxÙý²ä¹½àò²)Ëóx�â!§2p¢�º¨"Xf�ÌfÉÏ¿/(ÁNÀuQ HbúT�ßãÞrÅ IMn¢Ì>à¥iTw +Q@¿.· +iÖ³QïÙÁbÍoÎhqfÊ¢ ÷ýVpt,¤?ÿ~ 0Ð$Òïŵù=*Ë®æCÄ,]²+´z×Ò:¡çå¦èF\u&h ß$yòfÍ3Ö¼j,ä ÍòÊ2bÊFUí8É ++´¢²#®ÜDjý«lä[¬NëM!ÁîÊÄèX@ïSÒ=XÚ°~*áE0PX@V$Ð^Wèäñp~O¬SW= ¾ímG4Æn{·ÍĸI!m8ÀÑìZ-ÐT É·½ fµú5ÅV=aAC9¡Ô2°7L(Ý´mÆf¤øØ6Cy0ÃF¹ªBÐ/LLÏË£8òí×ïöÁ,÷ Å8ß+^ðî hbkÅÇóóB2ÒöÎÓó ÿU¸òC· +×ôÆW +Oß$üñIï\é P«³u@I¨Ï£Ì=¯Ï£Ìè÷#}Öé!©n,Ó!NLÄÊ38ÞÁW$Å##9çÈ]°%UI iÛ@Zv-X>· Ðê]Vòð(Ðò°$Eòµn8jD? &íøPN»¥ÇP'´@pØâÙË.Lé7)SÄ é2Ð!%&hGô6ÅzÐJDý(¢1ö,(�½#¼Æµ0PãYU3Âj<0 U>ÚT+t-©ÚÔ<á�h("iz ¡Þ9PDÐTÈ9µ©u(Hôî4Õz};H¦z¦ªEµ|*Gsf¼}EIi¥Æ¤°ÒIÔhîÑ&0«v; [%rCB\U¢3uf2HmU}!éb!%ìbcUYhûDF(Ð>q@£·OdíUgXXÝ!VSÖ{Mkz´MZPM«DÐFL_ÙdæN©Â,Ò}a%4»/½Vb9½�µaaf«Ô¦tYÿHÒ¾&týÊà@-¹ Pbéà�Ð|ÀñÇ3ä¡ÜÐ{ô\( ÷âó (ßìÈ+â@`²#eéü4/H]!ÞDÉÍ�2d5Å®nsK,JE_ 'E5d¼À±"Òs»V4rÔ.R°!- 4ðûÔ«oø(f¤F @ÁzX¤|¸eÖ(@ÕhUgÆP?Ê /2ÔdC5!5RCí@jíÈÓ-K¶5¡H4;@óóZT!r@L_©A +L0hÒÛ39èÝGzî² kÑ�.AÑ@9feªá"[B^£*дBÌä)ßS㣠cPHtø¢õÂç�¹ý.rTKµ Ú�òHE¾DOKZcJOI!·á þ qÏ èPôÌN&+3>aèÊëÈîÓ |Ðݧ(üÍ·½T+Zv¢øC{n<MÇÜØÉî½/ $41tIÈ(úñ|ìæ×ûªÊ�¹ý7ôä¡ÏòÆè ± Ú!hFM+x> ÆÙf5Sý¬Æ¬h¾XÞO ϹåË'èQiÀTjØ +T¸¡jRÀëMS#]@àkºH¦Ýù©bøñζá<ò: Tºì Ø4Íó!¤i2G¿Ä=\VUYA;�A´·'äé¦;>`E]°úòJiµk¿äâK³dH-µkVHò&&ú~�èô¢Ú@UJãÞðßá±H`L¦Ãrþ0C(s̬@"¥äGPøéÆHn`Õ@Ñ#GäMÍP<gî¶?JÐ1ã2HÀVÚ Þ PÍrTQ¤Ä0TÒAh 1 ·¦ ï~@"é·ö[É}fPZî9Öa4#@ÛZ Æô2éM;ji¥Ü[xÎ/л ¬}c{~¨.ïßÓê@«Ò»ÿ æ|ý¶Â\.�dÝx>Ò½ñJ®Ô+Tóz¼`(«²öå¬*ïIOA"»/uEÀÿðY@rû4kZD{[õ zu$7 ü�P ôÞ% +Ò¼´th嬱 5dÖ )A`HÊÊ3ÈeR+ϰàN;AÈ|,:ÀB«îvÈ«Îx,¤µ½}ã¢úÊ)A jÎXo=(+r¦« P©®ÉÔxn/¹NÔíÜ@c"q3°¯<Ùz¡óö|÷V°¥-UÕ!rO ÜÔ×"ö|'©ý¾¬`Ø[ûÏBVÑd2 #¬,èÈ×>±<É0±Óa·îå]õëª +í`�±îXJÃJ¸m¹£-i!1.Ó*nZ$%à"Ð +é½5ÝÙòþ¢¦Ed6B}îñí¡ÀRsV^-±×�ãë_Ij8Á:hF =MPäMèy0&ÇoÒót0a¿©¸<¯#î7ÛóCÈ Ó"ÒÔ&ößóó¡î@/Í¡îH@÷Ké~Y$RîÃ\»J@6Û"�¯î Pª;V\Ô®¼"è]û¯Ç:[S it¶f¤ 6ª&|´eFÔKSÒXÈ×¶@;ØÈÛ% +òâJ¿ÚÈ;k, =ds~åç¼åýÍí=dó÷ ~¼ ì ¢FäÞÁµ@5ÔI¸lGïÉçæ¸7µç/÷Ø=SË\f9©;ï ñá¤émß©( +LhÕÖDcN(0!)Ô#Ò:r'"þ~`uf i oÆ0½±jÞcoLÈèÝG8"ÓVSH½/¶ÓV3¤¼8ãõ ÁZÁî°ÞÍÒ¼Òn»fáUG´ðê&¼:"ª£ýCfÆf]òÀ®«y ¦´DÖ«fHxïEÕ�_l½Ï«G\3tU°'ñÄÆª6³½`(7´;ÏÓ"»cfñyݱG ;Vé�|óK¬dí*Xq¡¢ß¯ +ò<£ßtn¨À°Qgl¤`Íyf%B-Íë¾ ²Ô*ý yçEBÏëmù¬�ïÜ@ÏCWÄp °w£ÂxÓ!æl®æúòUázFn> Éñh äVàb l}ñ°Ü®è=7b;eãVdÏ«çEó´õeA"¨WÉ ¶Ã#�ï»À"ø¦C|õ +2"PIV#Ô°Ú}ã ÔÌp�¯ÀúÇF¿&é÷iNXÇuø + +%(ù¡Ù ZÖhtoÄ1?0?&Õ°¦rO�z¿ÉM^$CRæ&Ù ^q¼®.EM&XÛGWqÖtÑF͸Õ51a+mµhoA~02Ù>T è¢a6Ó¢iø}à;mQFXÊ;iZD +c3¦ßz6ÜM´:ä¶l¸4½ÌÈïÌÈB"ãVÏãt×ÇFú ¢Èå�ú¶}uÐå�òfì¼ÃkÈ@¶âôº1§è2`+_\ +ò/úuq»FA^×H ÂÝue@_<´,úâ¡5kZD/ÈË#)A!Ð!G¨´mÂrêà´MÂÀ>êab`gKALÔw¶Q9æ âA 6UdÉh^^gÉÓÊHÔhÑÄ('H? D0Åhþ\ݤìyÛ "` 0Qìäò½¸6Cg¨[Ô±¤:f]#S»è:j/IPôÜyd&&O3â;[nzÃZ Ð÷úV, ®¾@ß6QK4*Mó%T&¬ÉºÀ NoB¬XøÞ(u#MÕq=)ä}Ðè]ËtÏ×ÃÅåY2×}&Z²@3õVaÑ +§qdÐ#£¤YúbHô¦x©Ð¬¢³ + JLB¤ + ÌíÄ@ ¦kÞWhf5·tÚNÂxÁµ�²lwèØAÎamû´>TëÏvYñxþs^Ķêî}¸§ç#ûN̺@*<ÓN×+<=ö$Ïò@¯©5ø¯oLG åÙûô`ÅÞ§ +,1Yc1ÖéÈ·±åÂÂðÆa¢ªÇB¾ñ¥K2ì-¤ÀG:é¦ß7Òº¤¹©U.f@¾4/?ìÐPç\;öyì0»ÊB¶nE5cäùþ¾^ý#mù °A÷Q°ÌÁX5 6Ä.LÝ@MYsuÕ(@¯|±¯|mÛÇBäF";µhFcB!ÖK6wfÚ EÔWëtÅÖY4²åÑXä½w~DCcÅ}ï' |&FôdòZRÃÎÖÍz ¼Ð÷Ûp~ZîhJÓäh + +"»FJÍ�;�â@d×HmªXÔãÇÛXD!dxÐà.&¤zpkþÎ ^ÍжÉ")4o _)Ú°ÇWÖée˱ýǼ¶=ÄyD²õA ì¶ÛÆFJàv¹ãù¡¹çg<)Ye`è>YÓM®(`ÊླྀÅPøÎ" §ÖÇ8(GßC�9 'æ5 À«ï�P� +³"ÄwÁîÕ¡èV%w(ÀJ¤eßZuý½÷Ľ/à!v;<!âS)PÀeoÞ8 ÐEÞû°Ö{b¸ubHÒsläḣò¹iÎÄÅ«8A�¯â7¬Uô|°2yÀrûxIqýÜÄ&ÑäÚªµ&×ÖR=èjo÷I#*R°»sL«Ì[v/Ó¹àÛÂEãU¾nE id +iàF_V P U(öÜò¬ +EB+ÌjXÌ 'ÊMÖåÞ4Vêùy[45 _0iÆ6_LH#ÍùÃ@óE_¥Ì6_`Szû[z¿Íïoõçù6 Y0${nfxm¹²Ùð<8=°þÇf+Töt@vkõÓïGækú7Ææk¬Huf>_c2èÍhHôîÛ2,K½'VáK,)¸®yóä@`´CZb1ozf¡ÞW +bв"5d·� +Ú1ñHpÖç/¯lÊCôY &d«³HM T¬ûá"Cú¶YsöbÖ컯ġ�ïD`ýÐú'Ú=C|ô?¸MV dð¨Wû²äk(Én!ÿR@Ç;F;¼L_©ÁؼïÙ6Pf#wÏ b¡Òy)p\@Ï®OÐì{ÝPìn dµ#C¸½>@=]E$QDY\dÅÞ:V"1¯$綬)á MtøÅhLÖ2 + +3VG ÇCê©%Q²â¸:0ܱH<``v &�Ì(î µG«Ç ]f!@i)ñÌb~Ï; ë8ëm^^÷³é8ëG#4tõl©A ´Ì A9ÓyÔ2ç÷Ýìa°° +ÉXÈÚãCýÑÃ1Êy8@Q939¨æM} +°ñ,}ïá$ ¡WdFU8"ª{Èê/yd¨ðØzr¢ÈÖ´ °µ¤"l-±YK¼¤hZÀצtQØË*Q +ÝÝzBDY`w·hKU[ÌvÂBEÖË\sHÈÛXÁI²&D xEL$& ©a�8À,g\lÒÁxâÀ&u?T +òÆ JD³ãݱ>÷/BZ°üÔWH²¦Å=cQ} ë©;çèÈÐ3´W4ÕúÄ,Ƽ £H$¤<4d¼À¡µÝs4¬¿¬t4#GÄÖA¢¥U´y dÍñòH¹y 1¹Þ<P+ 7TLZ»*aO¸WÈ êµ=Q`ëKÿVâ G4bVİ'Ú:£dYÛ:£dØÛóC ï%¶ËänÀm£ê³0åÁ1ûJÕó"¹õîËÎ$L$üùI|MT !pÎYd!+.dIyqCe�»OPô!ûUÁå÷ß2 +k¸)ÿóyÖÕ¹¶pá``iK©ÒÐĺ¬èù�0&�J´´å9àÒ + ýyªkC¼}ª½'çÓ%iµ|c^Ü@mHé ¡IP>eïbsYÈ×±j:Ä»Oåkºüþò5?ëÓ×T_¡ÀXdÑ·¾¬ë XacºÇC¿<1yAî£<Ü3û]±~ñ_>6EWúóê ô`K¨w¢@VµÍ·(Á�GÏ®(ÐûQD çßKûÁ+L{®dQL9ÇE b.È:ª7ð£ÀPGu]Q8¤kqKÐéýÀ6ã 3|ïI¾'-£¬,�|/ +�ÀxP ĬZHÌÈM +"í;M¶Ä~Ct§ªÈý dôQ¼ÖËâm9áoÄ[?Î/·~lÏ4YëÆåôx"÷2|-®ßjOKt>@cºlîlq1Ý>¯¹¾@?ÁÒÔ°òÆ"ÒàîÆÈ¦÷ 1¦÷äÒu/µ_ÀØo/Ð÷NXX½|F4££ûzñ+ôùZ!õùªÉ�o]5!ôÆC|önÏ;pT<Aï·L5²2kàÓPÓ a`:cYïÙ!¯ð ÀT_À¦;"Óyܵ=½D¶NXzîYbÞ9¾ °s¡Î3óÐ-/B¬#´ª !?À,RpJîèÕy0©f°`ùuYÀüU²|6£JñãHÉ,l±hRͨRXÌá1µxïÍ@¦8pcÕæÎé`AFq=È8<%�4bã 2P¡!ÑwÃ6¤Füzþ´î´¯tH�¹Ò&+üpe×PQLÏÐÛ>s¡£s`vðKX<q´ÌèyB'Ðe0Oß@1ìëÈMdyÇñ¿´Í8@Ù¤hþÀBg;|PÀ©Õ2ìtÀÞe<ÔÕðèp~&dU¸ä,r\|f$B®|«õ)¨çÖ;$k8vbA�X°¾¦k.,x/¾ËÀüº¼~Dåm}½`þ¾9oBÄç +DBÚÔÞ°!Aï ÞÒ;�oèèy}1è>àÙ1÷&i1¿¼Ïª!þ<à!ÒÀ²w_�XÈï/È +ÌÐ$02Y²Î÷ÌH 0°w!A;¸¹Þ±â®ì<áÉ ÇæTí(ë= í(?ìhrAm£/°òfèXAC,Lå3ÝVgHZ@¥¸#;(4×¾~µ4Ͳ¼b@_ Wù`D(S.øVNä#¬Nê«Û¾¡svû¤XÙÞaÈPõí°$¸¦7Ú0Ol£ Z^Dúòëw^ä,bb£ £yµ@g è´ ÅÀQì åEì®å%îí¿§¶å6"ñÛfç;Ò6å1TëÎ&E}2ÏumyþýÈí¿¹Ã>éf{9/T h¬¾1jL3¢ Ð!,»ÈR£Zàô;¯¼ èxãÛlÄ3¹íy:b5-àÓ iÞ×4 +ðGBB¨ûî °ði I»}'x¡jàÀ³dÈx÷BºgIKk·,©kZÒòÃ/ÌønQÍz¸ +ê»QgU HÐ]<°8îiñ,±^©ÞÆ#Lº Ó£�mLOP1Ã=µÌIý�rëº[úfHQIjZú¨'2Ü $qf6,ëY·ûÂ5cä�jàÀ:xp4»G²û>IjHIØÕS´wa¾PFÄÛp$)æÛG`P÷u°Û|Å¢[&¬GòuEËHË9³Ñ +KAÞL7 ¶üÃ7 [}CbGÆDQ�üÃÚ7Üpa?g;xŤÙrÊ @�}¤Ãß³Û2¬ÅG}dT±ûWäiUÒ#ÓüJ6_89ð+|¶bÀºGö¬joÉÓ¨WL§1DBÛr~>LÍ#mÐ`1[D$ÌTL¸ølÈX(Í\'¼P&®Pä[ϼ"!í6mºÕGhi ïlrAHb¡émù¥HjÌÛW ÚW*b}WüQq ¿q`ÿób¼Sq+®HJ@I85MùlIº']B:aÕ±êËSæIüÏËU}!"®àhÒZà@¥ÜýëN1|Åñ¯h_AÒ¢H)o@K*Çô[ÿÐC=¦¯©ÐÔ²H mñú²dzL_hÀ¤ þ~ ûCÊEÖç¶êÊ:¿dxúYöÆøó¬rÕ\ÞµµBòÒÌM;íZPX1DËM5XE5àÀª2`MdõF´£<ãÆ¤T# mþÈP %LVÝAf$7/MÓc +<PUÞ3£WÿtÇùÿòðGv=T!kØëMPfK=CàÂWøQ%ðYE=&5¶AáXºÛRTJº,¨lº(o`Ù_P=Rb°©÷: ¥áúÙvÖËèøV%¬Ñ¬h}ÀEkÒìÒ�ã½7°ðù«ÑÔ1lÌlSï.Yg¹w~»ìpÎÏw»¢ïÍçTQH}#i Ý'Ôy´û$ å"0Áª¾UXT°þåæ´¢½À[<âbÖÿ¢iïAZÃRèÈb²b°x é×¼7ÂUoÁ@î%´õ®>HlÍZ÷µU"Z+¶±û:{�8¿Ïñ=÷¬:°v, ²Õ'ö±¨fhõ(ô¨µå*µ¼j4=¿^ðcÔp××l�" IÿCK·Bª Ô1Æþ¾<Zpø8Ïs�Mi§§×°è?j<õ¼FÓ4CDàjg,gè}!ß´W8./,äKÇ.}²I1,¦m#àÓÏà41Ú÷ã^~_O¬¼8èô�ÖW>z0rùkSVÅÁã¨v»-.XJÇÍeÙ@íÞe 4ø® ¿úì𬢰ȾH¤Q¡u1yBä6¦{, ·!âè1M®Ì9vfmdÖîß|fé�4¤ëÈ®ÿíâÓ%�{èHÇż|OÂPó5Ò Üº1¦EDpÕDªÀÌX�N,É ÞC;¼X_ù$!zãSp<#÷ÀÔ²HJ@Ó +V}øBg!!4cäæ´!nN'NèØb=/DOÂï«P!˸½öñ!)`AÑDd¸`R,wpÔÉ@äâô%ªÏ{ÇÒw¬h¶ÊkÛ¸òÚÀß?®òâï(¤ã¢l¥°Çé^<ÐP +à,:ßÄOÎÏâ°k¿|+$<ÃÝìnèPä+«S[¹¾Òæt+$mûfTtõ¡î»÷czåc·yË([ *BªÀÙo vÖðJs.Èóæ G)hQ½GA>w?# +¼^ß(àJnmׯ~o¹î-Wd¼a]ÀóñãÞÑbvïd@G )¹¨`åïüòx Tô2Dm±~È3uÀvëô>ÍçøaÈ ¦$Ém ë0Ç¥Ãê¢2¶u i/ _`Ù£_� a 3:ÖfâhÖ.ZBra;ÖÕp[ ¨!¿sËj8 ° PÀû²³¤E4±+÷DèX:àô5Û°§Ï8å3/#0 æQ#${xÊÁ3£%®¾JÑ�ååøR?èÍõ«÷EtE¼:¡ZrBÁ¹ÀÞ%XQ4`A³I¹Áöh«öµU7:ôÆúØ}A4Ð^Gª#(&Ôªóêd¾9ã{÷#:2õ=!_@ý% þoãâÙÚYJ+(fè*öÁ,`D;&ßÓ Z60¬4G/9xd|r~@`kÁÎÃô<Ý·d»´|DCè, CAÞÝôþ[)èÓ>?°ZÿÑÕÞ|1I ý ¶}¡^ÞÈè�Ðÿ^UÊ3ôÝ ÇÜ÷ùúnÐRdxOpBÏëÍÖ\ÒYn¾È³#T#½<aMÅ®!dÕôû 2£èjx´{jÈ»4-àÕdÉ#XU;ÀºGn=ó=-Ø@í$-p³{lêºKίDΪ1ë^ToÊvÞôfµiÞ£ö£çõ%ÅÛÔ´}sñÌêó½ªZ?é`DUgMxv%-r<5fhÿòNAtiH@Öïðc§ç* ÈÔqBQy ¢ii½e˱i|'`½Ø¨vþüHÏÃaùÚ}IrPñ8ª]m1¹û·:åùyÙ¶I´¤ô?,ÙaHXë8£ 2hýÞx#ËÛÒ;#Ëçç#;ýöÏö¡!%YÞ*ÁnB{Aß_àÀªqd¹"ÑÞïØg r=«¬èyYo¿´»_X¿poås ÈÓó~`¤Üo°rW +ÃÊùd ÿ&Ä49Myõ4±ÙÓ5þ®/H, ÷»7ì�k_ õì¸@ÂwoÊ +fHB¹rÐÔ#zm°p¢×Åê^Ö~à«!Û*XôµrPÓ=WRö´Bp%ldɽ5Ø'¾\IöÉ@ =OUbÚYP<¡·Ö½Ê÷¥äê;÷[V¤ÍÐѽ¼qaàû} mK¯è¥j[ +è»r}Æë*:äý[Æ£§t(áî Ñpƺغ< +Òé[ÞeH¶W!ÂÍóö¨GzÕ'.4_45¢âí0¢Òrý`Tl¸b8ª¶á +ß»ï +b½<QèPÅ!À¢m6Ã3$|¶å¶Áõ£b¨c+\dA3H7í�´@4kÞÜ+áçÙÍ¢ÞØÿh¦¯Ô6ðç_Ðäý)yÕȶîñ¤{ÀÒù3 Ø¡.x7¬Ç0Ù®/,lÒðéH¾'ï`ÑÛµÅÐë_¸@¢<1(DVèð&×' Ìe@n«.U´vw�»áBA¹ g+OH2@Y8U Ìní¢)$ù{Õ 2õ?ÄÕØ~8HÁ'f¨BÖªÚÁ�"2¤*ãaÇ\`;ÑôGu³|)`F2Y +\I5ºÀRÀYÓbZ ©Yt%$7 zï@3%tð99 ü�½w`j¢# ý#Óz8ó¡nÌÚµhå£"4wUØlBt#/`Wª¸ÖE´c¬wE´¡Þt�½@óN{§ÞiÀèÝÖ»à¸\A`º£¢p,2v_×óçúMd<²äþ51£%.é;ECB)0á0ÄÃ×hÁ÷18¯£û¡oä½§øò¼\¡Êû*©óóé^¸¼ 0ÝaBØ@1{áü-¦ú÷l rÖfÎ"¸ùÞ îpé* é ah)^º¥F½à©nH¢²é +HwN3»¼J ÜWQy¤yycW Èù+2èEa>QímØ´ö L9lʾ~ŵÌiGºÄwê!ÀQEÒ@óà ØÌ³ÄCZY ¯îm'w~Ü�±Þü±"%¤5 é�LkHj|A"`8(n¬÷(�Í`T°VQÙpHW}9«n +è^tºÅQL8Òeð°B.L5ÍÐ*ó&ÃùyÈhÖbÓ¬ÝæäûðP4£GCuE2¶Ö;ÑMvFC[uäN4Ô2TB½)¿{ÑÐ%x':/£![§7 mÅÉòÖYtÒ2k>¢b²°£` +l$äì hG%äöoè°[7K2s+®LQèXõNLÝ»a7ÓÃFX1¼×öÝ'çèñÐ1Y2}F¡°&D¼±áJîyÝä¢0äñPÇÎØ²âÈ7î«Þ3 Ö+®,:8é1áí ÏIbz} w�zm\&DüÔY{[^8è Âp[ïàÞgØÑæi,ÿ}UôCHOî÷á|�Ù£aCôÝû Ê )±-HôËí>³vIyïŪqæ%s1?CG¸&6ÐV¡È}Ñxi¢ä¾¨:ÀvÑUÍòòÈ,ÊíH�ÑCÂÀhÇ]4¢ÕÌH :Ñ¡ëãMÕ;"D»wfdÇߣ!>òºXÔxð3xà5Òøq�ÁÇp)upE¡>k½ Ú+ÀÇJT7B2ë±�¦cF9I`Ëzi÷ò¶oòrz¡YaSñ´Ò7 ãñcA%ß?àÈ*Ñu[/bFBd°Ãp< ³ óÚÆ¤s¤¡ÞJÍA¿á»'lcà3I¹=ïÄÓä�v�^Ú@lµ!Ë6\²µ}<ÍH.±añæáÚÌì±{¼4bp@°(mªÄeáç(lÉ +E@Oéúý@Jfðû.Ãè)]^$PX>âvÔ~_¾j;º>æeéù:Ðv� 2@JÚw_]P�ÒsÑtÖæ:¢@`)¯U¼/àMU2£s£ß³ã¶ðcÔvü¨ëøAn -,`;éyU#yëKM+¤u«0{<ä 0kìµ$äYt%$¯ÈÒzÝp=kûH+¥h(A`ûL¡=ÙQVq£Q"�;J¾`ÉÆÞ%WÎEó '±¦©Çü@ÁT ðÀìhaDPÊè/£®¨%ÎÈÈ7-!!ô.µ5oNW24Ä:ÞCQ:Ò´PPD¬½8Ua@ªTøý²9J3á¤ÖºFÖC®JÛ¤|ªJ�G:ÝóÄÇHã¨Îз GÔGe¦8X4+¶ÊLõ@cHVl9Iõà¯ØHÎ +Sd»êc 1Ùrús 7ðû&ÜN´Faü¬2³;êÂ_}^r}Ax]/l }A ±NQ Ð0a¥ï|è¤4ãç ÆY&Iifnà£vä(n8vÄm9q´O¤ 3鏨Áµ/ÔÑ.°ëGmÄã�˨ÑêPÐ@Ï»L¯: OUÍ«ôThHu\ t¼¡ÀTØÚ5#ÂÐëKSí8Û¶2«:ÈZ^DWFóÚÔ7è@<_5#Âça43Îr +I±UV ´oÖ6K2ÄK+Ðü.p!¾eh¤4R$¡]ª£ñ ÕVæfÄpFÍ51hC»TÛ½x[Ör+"niTöäz/<J+ñd+¶*R×F4gÎÁLáhèWRoÅ£ÇD'Äô�Øê ¬ï¾´,c ¬[qETCÖ÷âª&¦£VÜØo²Æ·½Ôã±ÆÝä1ð«c[LþYë3z>¼ËÕã�CíàûwîÙdÐ! _Ó%ðç×áç_Xª=¯/,ÚW@^E8�ƺ챺Ëb< µI ×VÒ"�ÝtÑï +! ª°FúË7Þ¥B-ÖË[µÝdA f@ÔµWðþ¿QòÔ/£]Å`5<ª3ºÕ×.¢ñe´Ò"¯á\´HO+òE¶4 òÐWYÀðJFÅ,è÷õ¶¢bÖ6¢#nuÅ ê'�´<eIEþ HÛ.ÐÒÀT4¤ó,3¸¼±÷yékY®J¸©¥EÔÛfé_ð>%ÿþå«¥×uß\_/ø©oBø`õåÓWßïëì?hÐ}?j'(Ïòqõú ×Ê'ż#{Û¾OðýäÆ×Þy¿¯{ÙËó 7&<xtIÀÞö4ðUe~e©_í[ê"-oôú-$CR$Èñ6ä}!á"1 +l3Þ®¦xÿ½îªGo<¤$ܽ. ÑLåQ!·=רx§À>q¡�h½~ÀÎ^¡ÄkAÙ'Fµ ̦TöjXtwz'ÀþûkÜü+ós±ùfÌ/èékþæ®o<|÷ì½¼ñ¤@?Õ¨:Èð⬼ï<¿ ¼ó`y³Åû¦_ ^7äýÒtë¿ÙÊ/ÐûovÁíùé8«¸à5xà!ß20UÛ²óô¨îp&ÞhfðÀª}Äô¢Üp«= +ðúBÏC(LÖ=ÒU-`-Úðe-³¤EÞd ¬{cºI½ÚîSLHe°¾°¥W +S !ÁÊ PK°u-ùdfÈ8b"´eÏîRAþµoh®Öd¤pï[R4¢_� ÑûÐüx¿4¼PPÿýª:SÖü(¨9ãW~Ì@ÁãËV Ð÷ö¤q/[Ñ1 L¡êMduî¨ý°"#`ui�úùwpúa®Ó=;np¦¾gÈÀ4 ©üMçÒA~ G iÕYØöSes)ÐçRühêó\ÊhDÞ²bp¸ìûi/pø«27ç.2$Çô¶JVb6Ú2,{Ð Þã1= =*½-¾=ðµkf·Cm°s`ßsù}y>ÏvÅ´RfË)¼Ð«{ÂæÝÚX Íá�ï½Ð(H9h±À(÷½îÞïÓÒÆl䬾ó GÜÐâÎÞûp¡@�r¤Ï Ö¬¢¤2Aè+&öÎË÷íA:8ÑlM kéOSê×!KK�rÄ.© ¯Ë¬èôz%R0ß}£úùü0û£:,VÕp>öþÌHCÖeé7E`Rʰtç½]l@ª Yß!Uj¿¤dZ=%+ùø¡xÞT=3Âû&47Äû&àïú&P ¨°oKl5°¡|�¦´qÆî*Pí¥kjfdÀø¶öÂAmJû5SQ`MÊw$Rz÷X ¡©þÚÒc!}ÉI2¬Ïäz-«±�+@%ØP=%¦¨#|/Mîp'G0ç,¢æUðÕ¾ Ãë[þ¼åe{Áûö¦fD;Fe°CG)) &ÔÏx^BÁ'Bªæ=À×±KìØ®LK6ÑQÀ&DõóÂ/IÕû}a)Áé÷ÛÈm¤ã|@ÃÁ¼×eª»´$Ì{¹ì«ú9Óqal²ÝQ<â²/yIè�r^¾mÀ}'a ã!¡ßÀ` °£#êÛÊÃnÛJu¶5qÄ® ßAõH^Ä|4mx4¤Ý8ÌáLE0XZ~ùÃó fbÜ>V¬D{~Á{û/íû<9¦B0-ð®{ƼtÍÓ-ºóTg®g: ¶ V3E¼ëùÓ@÷×D à ¶5¶·AMP "¡ÕGd[ÝÉÑ÷á»Ö¶L^å«åÛ¡:8t$;üaÊÆ²Ãb +ÈõìÐxHbPÆû>dÈh×Ã4 a@¿Ë>ª±^dMióÓ,Æåõò�ðÉâb øäɲ�mÐüHêZBÞùQ% +P<Q«Tw7«P èCGãǨjÆhHÕöÍau~@;&_8µ#¹\GÝDCĵÈ2@ªDû í¨%5Ð +?$$²3)AÛC¿PzZ&ìØ&¦×ïÄ$ëBêîLËàÖ³£ñ¢|ÞzFÛÚ_h;°bÿùy½íÀýçóËà(P <ëhÒÐôÞ\¥ÅcÇLÈé�z<¶Í ݺæÛÖ÷P¤ 5¦u"¸ï°%´Wï;JB¨ÃY+»|¾Â5kZÌËE;�(ó!Åî¹ûÿaÈî} tâ" ú\M§9zÌA+ÍÓÑK6U ©A`áN¿¯çÖ6r!1ËBÈÚ7D¶jHëKø¬3>´ác·o è×¶wجÈD2»Ôni¡^øZøôÂSçEb�®¬ys¹P¦WîÌ´CôýÚp+ûÙ¶+A¹`jÔÝ H^ÐöøbTUt4¦=æjcÚ ô+©½ÝêkR¬czÎÈ0=gdü«i·1pkâÞÜ +4Põ|êS¾-£ :póÜ~Ñî×&[hõu1º2É +@.TÚ÷rbõ²°¡p¦¦l,eR¿upÔãz«Ï@C¤×g<Ç8õ0}¬¯PDIkÉÎMZ_±¦îìía õx~¤Êi çß&åio¢ÉîÖÊ5RôY"ÛÝz¤À1#!ÐqÞQ7桹Ã8÷"Xòà:^[g{Qy6¦$$ú:Þ²oeaÉÒS7ÀèÕsxy¥K(oÐ;ëÞ½1}O¤¯é[g=µm«dHijkåQ%Úê#¢æ}×ÀåäõceF_ ¯*vY1j·m²qÌ $CÌ»,´î ¼¼-ù6³aÚñÏÛh /øêéóä¶ Q ÷Àúºóç-ô*ÎÁªÆS¤ÿ¦"úI¸²û*ÒkÏül,/äúp[ÁËPäKÏc¾Å!Ò»ÐaHªdfioÿ¨¯2k>Yi Ê +Å£á-= gö×°+3ï8ð&43<â¹40Ý*w¦¸OØ ) ä +È'E3{¶oºOଠã9$«oînHàÅ+ëAQ±Ö?ò¬ñL]³$´ÈÕóÔ²õ® TÞJÙxLw^z2Ùí*xÀ"¤5C¦ADHk�IüGÞHÚ8òF=¾à³% ÂóKm/<}F¡â @o§Ü ªBÜlí'´fi ÚÉÔ_õ @�Ê.[µ�ë"صiJcô¨o8ä.³F,)ï¨è伤X3¥C�zó^¡ÐjgÇÖ¾²IÒÇcoi ÃNÿ£D¼À(ZzR$3ÆWâ®÷D`^Dß_#l´Ðï%¶Ñv=DȹaàMd�ÛüÔ?cÃ1³$ù #% ¤b¦©ë?/=ñeaj^ï+è®ÔsÚzÏ +Ã)ÁÌÖ|!ÙA:Ò+}6ÄV ypNqeÔWfÈT_!Õ ½:!䬺 F#ë<h ¸¥ß§m®L6*é!Þ/$!vgSíP+hb\" uïK¨'ëkíûC}p¶ÕÕJÃIbRaêZfM¥¸RÌÐÞ§ûâ8ÝäâÛË u_l/ëÀº'^÷5çDÒîÅúËè$ܽû¼}@8¶'àA�ê?/Ub"Å@1w¶x¸dBg¿vÌÄw$DB}.�dÝè�¨û=ßÄçY÷Ä*rp/¸ä/Õ°ñ|èq8.~j,äõ q�Û³[Â'°ãCöñæ£otÉÑYÏÐéØÝ(89#g`Á<K, %¶¥£ß×û?hÉÕU võ ?XP妿TKÎv²jÌÁ=ó°7}(2Ô"ùa³ó]Ñç)çß ÌV^X1íi<e Õ¾Û'D +KË(t/4$î ©H¾f×ÒBik g|CWçµß³¤6ÝáZRþä nuA!a`¾dZ¶véaû!i¶'øEËø|ÇõH®Rµ¦h¤Jeß±ù( ïzÄÇ#Pn'Gì'hú¹³MH +õ+¯#"×Ïð9½ó3g°Õ÷è× 7ÓµT±÷£>0÷`Ddè¯ííy§ÌÆöxbãÙÖÑÇ3O Ùñ^¥ºÐPßZaîlöpX¢ß)e¹]{Æùó%˰ØxƤñXÌ^^ Xöþl¼£HBÄ+$]#!ÀH% éQ0ÐM)6ã6áö|ÍHóã(i!©ÈéÍxeû¾@oƳ Q=4|OWh2¥ÈfÕ° +<¾eF,`YÚaU.ïÈH õ@+¢ ^í®ÐªÝG ac²í½éùÕ¾Íü9PÃ4.$�Zä\Î<)Vînm@"k2D/ðkS#6â¡93^¢vxLE%ÁçÿX <d�r@Bêd²@¯ÍÈV¸Ìj<CÊ\û¤Ûp<RW5q*ñ¨Ø +Ho¾S&d !$/È¢ñõVr×JÑ hÙ%¯° !LTQ(ré}ÝG #ìK¬r �ï© ´´ÄôÃ9%&ñ|Aw½éóõûtÅùy¯¹=«òÙlÄ~_ò¥V¤ðÙP lè®Ý³¢0¯÷>ÀºàÕq@OJö¤À³"F¦¶ÓQ^¾@oÌNH#ÃI;�¯NT$êD�÷DZ«dyG_ÕóP7Þ5«_í ~5Ü^ðcU}"¾ý£<üq÷í,ùÞð9ß_°c./XÞÆ%÷ü0e?_ W %Ò«ûäaE¶ùQK²ÁcJàÙ}ô'çèù@HYSôð]ì�ëa~a-'Eñ@`< ßs&µhΦ%e¹gË·þ[¶¼þ°Ñ*årÖü9}µuB4ôôr+$¬r@¾¶4pÈË÷kKúÈÍ%_dpiéØ.zb½Ê¸"w.iÁ}A0å$³KES#Þ¿"ÀzOë(4å-yO®µÕèZÍÈ¿×èhw}ŦPNíäÚÕcB éa�WÏæ< ?ÑÂ'NíôúLŨµ$M)ÊaÉxLw¾ar0@xy /º|oòðuÇVx^wLßßÑÁ t!ÈÓ àh_ð(à¡SY [RC§¼<¯WhfHÀ@}aÎÏbbüPús�ιïê¾<¯Î§v|ÀPP±RùäÀPpÈÜ`Øß¼2ìî_BÚ[_í\<*òV´Ðæü6KvpJ igB¦4O¹¨¦ÿï»°¶/p¼á:}&)¡&�dÊ8�RÄÀÅõgÅç²hÊHv¼ÃC +¦`ðy}ÇZ`ÉHµØ'>fIM®qÕ¢9�Dæ%$»®püÄÀů-õà-5¤GyÃ3¤¼ù jJÀ·_@W wàt- °Bí(fÒ +&[~ÑQD¦Ï*óÈH@u³ +Ú Ë"ÔT;JSˤÙ1ÛgäWÿõ +ÓÖü Ť5i$¤$¨M"-д¦I1-o´{SúÑ¡àÔU +õ®%÷zá?fG}$ÍØóÈB2 2/¯Jï9 }¿rc·yG8ÝÊ$C·ÙZÛ BC¿u<æ;N/Ü:fk¡¹¼@¶ýççå\Û}±=?Ïä%ßàO,è�â¥ßú¾¡ ¢kZVТX>ß³à{VïµðáY=�ÙøðFÏ*áCÆö"tÀ^Ĥ0תQÀÛNê ·ÔSCZ·@NìÊT$Ò"Û´Gdm_t�Ì·´¸ô®jñU ÷"ß6س¾½`x÷E¯õëË_P@ub}g]_P Û[}äõ}byÁÃÌ`âtÁUºµAb´sa]à?»Æ$ýùQÛçêOÖò^¡àM,+Ä@±÷è!©R,ðh¢-!·×eÕTÁð^@3ü +Ý\*vmV¤T^¥4ÀW DDDI`÷f> DG Ìò2æÒxz}FeAK¿åQªuÃÅÕÈv®O¥)zBm Æîö¡°&íøQMh\µ ê½äª5dE`XJ,êuy^#´äYPr(²X±Ø×VdE+@,3EÕÛo¡âÃ+a`ØY¶ûe³ nÏxu,à Å"%K HÅÖoìhÅÁ¢0l}Ç"É�¯ñT|FeT +7<³gT^(·ÄU#6bR% XoÈHعì7ͨíÿ@/ì¬Èj\Rx2üÈâq~oÃç4¡ÒjNM\\8¶À£"ê+b§ÉÞ~Ñ5àV{v°Ìå,3RÍ;Xą̈éÛ +åýzo|Y+ ôÆuÖ#J/ÈP +dX·£Å"^IéÜ1:f=(0&<$&+ð¶IsÇ|ÇiÖÜ ¯¯ s`ââHrÞë=cvt±µ¶ DPD6ç£eKÒ(@�£Â@ξ $îìùY6d¥ ^ 'Xvl0ªÔ'Ð +êû)7®e¡]r&¼¾¡É ¥ ´c +vtÀõyëZfÂÐfèôÿé÷¿ýîÏò¯üë÷ýÛã¡Çó¿O¿þòû¿ø©öcÓ×4?þÏ_ýúwÿíýÝßþáÿð¯ü¿þûþ³_ÿô/ÿøWÿ÷ü«_ÿóÿýúïñ§¿ý»¿ûõÿîùïýÙׯ¿øÛ?þ¯?þË~ý_ó§?ýÓüÝïþíßþíëOó·ÿúõüÓïþ2Ïý¯ÿåüÃÿùÝ?ýëöÜ×ßüéïÿîßÿúýÿþí¿üþqºÿÇí +endstream +endobj +256 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 832 0 R +/Name /Im241 +/Width 49 +/Height 65 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÐ!1 á6=BÏCuý +ãZu\cv+HJò¿&¤bQ<1{cYÑV¸ /b(¢}{< Ü!ª3Èb»[Á +Q%'v°¸|0¨u_Y¼E'õß¿ü¢êcNk;�FB +endstream +endobj +257 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 833 0 R +/Name /Im242 +/Width 49 +/Height 70 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmM +@ ¸p9(xîKÝõPEæ¢ñ³Bô%[¡Ù|8ù{/ºáÚp&ÕeTutÄ[Ðë2ª`°Aª@ Åi±Âòèå@@0XOà0ШEn¯!üjK@ÑTØf¾=0Vwd5Y½ÓJkÔØIcúÁ[b§#¹&<Qù¢;ê@NhÞÛÑ5¿Rßü<¼§ çM1© +Ì�-»?ýup'åê-T^Ï×ýA1Æß +endstream +endobj +258 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 834 0 R +/Name /Im243 +/Width 68 +/Height 70 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xŽÂ0 åsáÒ#x7=PSlÂ*.Ä#¨Lx² Ã_OäóNRô0ÑÏ$Bv"R �È-�ôDdÃé!ÁiÄ-J¡öP< C!Ó´Rï"ÂÄz+³ª8ìP"Gß p+üóí¦î´qt¢¿ÂÃÛäo[PmQ|µeúbë Å?Á,³eêÆÑU¡ Vêæº¥L¡e¢¤ÅDà§ê4$mM«¥Ajm4Z³ý¿¶;/÷ÓzØ» +endstream +endobj +259 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 835 0 R +/Name /Im244 +/Width 56 +/Height 70 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xåѱ Ð#ÀVÒ90îáóó1±ö\À@H¹¢ÌB$K_+¶Vv³opÒU¡(1ßx&ðx<ãbÒó¹h¢æ^°¿AþkW¿1ÎË>Áõ¢ +endstream +endobj +260 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 836 0 R +/Name /Im245 +/Width 35 +/Height 54 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÐ=Â0àWyÈF.ðÀ PJ½RÖJ¨á0$×ð¼Ñ¡ªx B åóòü#ÃÈ®Ä`ÇÊPéÑú±¤->CïÖØV tåC,!þÃàLÛéËÒp¸X$®Î¡Ùü"ú$<¯R¾háfÞë=Y®%7°®@ât$aWØ00¸ÕÔG¯Óãò}QW +endstream +endobj +261 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 580 0 R >> /XObject << /Im101 108 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im102 109 0 R /Im120 127 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im30 37 0 R /Im28 35 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im28 35 0 R /Im29 36 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im141 148 0 R /Im26 33 0 R /Im21 28 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im24 31 0 R /Im24 31 0 R /Im26 33 0 R /Im102 109 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im26 33 0 R /Im109 116 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im105 112 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im110 117 0 R /Im30 37 0 R /Im109 116 0 R /Im25 32 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im25 32 0 R /Im106 113 0 R /Im118 125 0 R /Im30 37 0 R /Im29 36 0 R /Im112 119 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im116 123 0 R /Im30 37 0 R /Im111 118 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im22 29 0 R /Im30 37 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im21 28 0 R /Im135 142 0 R /Im167 176 0 R /Im200 209 0 R /Im20 27 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im116 123 0 R /Im21 28 0 R /Im22 29 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im113 120 0 R /Im103 110 0 R /Im109 116 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im110 117 0 R /Im117 124 0 R /Im24 31 0 R /Im105 112 0 R /Im21 28 0 R /Im22 29 0 R /Im29 36 0 R /Im25 32 0 R /Im142 149 0 R /Im28 35 0 R /Im21 28 0 R /Im29 36 0 R /Im25 32 0 R /Im107 114 0 R /Im25 32 0 R /Im106 113 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im21 28 0 R /Im22 29 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im120 127 0 R /Im118 125 0 R /Im25 32 0 R /Im118 125 0 R /Im21 28 0 R /Im26 33 0 R /Im26 33 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im24 31 0 R /Im24 31 0 R /Im26 33 0 R /Im110 117 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im107 114 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im110 117 0 R /Im22 29 0 R /Im30 37 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im105 112 0 R /Im117 124 0 R /Im102 109 0 R /Im24 31 0 R /Im24 31 0 R /Im26 33 0 R /Im102 109 0 R /Im145 152 0 R /Im21 28 0 R /Im110 117 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im21 28 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im105 112 0 R /Im120 127 0 R /Im24 31 0 R /Im111 118 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im28 35 0 R /Im105 112 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im30 37 0 R /Im116 123 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im21 28 0 R /Im145 152 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im105 112 0 R /Im113 120 0 R /Im246 263 0 R /Im247 264 0 R /Im248 265 0 R /Im249 266 0 R /Im250 267 0 R /Im251 268 0 R /Im252 269 0 R /Im253 270 0 R /Im254 271 0 R /Im255 272 0 R /Im256 273 0 R /Im257 274 0 R /Im250 267 0 R /Im258 275 0 R /Im259 276 0 R /Im256 273 0 R /Im260 277 0 R /Im103 110 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im21 28 0 R /Im22 29 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im117 124 0 R /Im28 35 0 R /Im21 28 0 R /Im26 33 0 R /Im111 118 0 R /Im21 28 0 R /Im110 117 0 R /Im117 124 0 R /Im26 33 0 R /Im30 37 0 R /Im22 29 0 R /Im112 119 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im22 29 0 R /Im30 37 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im105 112 0 R /Im113 120 0 R /Im103 110 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im116 123 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im24 31 0 R /Im28 35 0 R /Im106 113 0 R /Im30 37 0 R /Im114 121 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im22 29 0 R /Im30 37 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im21 28 0 R /Im105 112 0 R /Im26 33 0 R /Im21 28 0 R /Im107 114 0 R /Im21 28 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im25 32 0 R /Im24 31 0 R /Im111 118 0 R /Im105 112 0 R /Im116 123 0 R /Im24 31 0 R /Im22 29 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im115 122 0 R /Im21 28 0 R /Im106 113 0 R /Im102 109 0 R /Im120 127 0 R /Im22 29 0 R /Im23 30 0 R /Im30 37 0 R /Im30 37 0 R /Im105 112 0 R /Im114 121 0 R /Im21 28 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im24 31 0 R /Im117 124 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im26 33 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im26 33 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im21 28 0 R /Im22 29 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im21 28 0 R /Im24 31 0 R /Im26 33 0 R /Im113 120 0 R /Im104 111 0 R /Im157 166 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im120 127 0 R /Im22 29 0 R /Im30 37 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im114 121 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im105 112 0 R /Im117 124 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im116 123 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im118 125 0 R /Im117 124 0 R /Im30 37 0 R /Im24 31 0 R /Im29 36 0 R /Im111 118 0 R /Im29 36 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im28 35 0 R /Im140 147 0 R /Im22 29 0 R /Im21 28 0 R /Im25 32 0 R /Im106 113 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im117 124 0 R /Im28 35 0 R /Im21 28 0 R /Im26 33 0 R /Im111 118 0 R /Im21 28 0 R /Im110 117 0 R /Im110 117 0 R /Im30 37 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im109 116 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im105 112 0 R /Im134 141 0 R /Im24 31 0 R /Im105 112 0 R /Im118 125 0 R /Im25 32 0 R /Im105 112 0 R /Im23 30 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im105 112 0 R /Im25 32 0 R /Im25 32 0 R /Im26 33 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im30 37 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im107 114 0 R /Im24 31 0 R /Im102 109 0 R /Im29 36 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im106 113 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im22 29 0 R /Im24 31 0 R /Im117 124 0 R /Im25 32 0 R /Im25 32 0 R /Im115 122 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im26 33 0 R /Im30 37 0 R /Im22 29 0 R /Im24 31 0 R /Im26 33 0 R /Im117 124 0 R /Im30 37 0 R /Im24 31 0 R /Im29 36 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im105 112 0 R /Im107 114 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im22 29 0 R /Im24 31 0 R /Im29 36 0 R /Im111 118 0 R /Im21 28 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im106 113 0 R /Im102 109 0 R /Im113 120 0 R /Im157 166 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im107 114 0 R /Im24 31 0 R /Im102 109 0 R /Im29 36 0 R /Im25 32 0 R /Im142 149 0 R /Im28 35 0 R /Im21 28 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im110 117 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im117 124 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im26 33 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im26 33 0 R /Im113 120 0 R /Im156 165 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im24 31 0 R /Im22 29 0 R /Im25 32 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im26 33 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im222 233 0 R /Im116 123 0 R /Im21 28 0 R /Im25 32 0 R /Im22 29 0 R /Im25 32 0 R /Im103 110 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im24 31 0 R /Im22 29 0 R /Im112 119 0 R /Im105 112 0 R /Im116 123 0 R /Im21 28 0 R /Im25 32 0 R /Im22 29 0 R /Im25 32 0 R /Im27 34 0 R /Im223 234 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im24 31 0 R /Im26 33 0 R /Im30 37 0 R /Im110 117 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im29 36 0 R /Im21 28 0 R /Im116 123 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im26 33 0 R /Im25 32 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im118 125 0 R /Im23 30 0 R /Im25 32 0 R /Im28 35 0 R /Im105 112 0 R /Im21 28 0 R /Im110 117 0 R /Im29 36 0 R /Im24 31 0 R /Im118 125 0 R /Im117 124 0 R /Im30 37 0 R /Im24 31 0 R /Im29 36 0 R /Im111 118 0 R /Im29 36 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im26 33 0 R /Im24 31 0 R /Im110 117 0 R /Im28 35 0 R /Im24 31 0 R /Im110 117 0 R /Im25 32 0 R /Im105 112 0 R /Im113 120 0 R /Im139 146 0 R /Im21 28 0 R /Im22 29 0 R /Im25 32 0 R /Im107 114 0 R /Im24 31 0 R /Im102 109 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im120 127 0 R /Im105 112 0 R /Im28 35 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im112 119 0 R /Im105 112 0 R /Im24 31 0 R /Im111 118 0 R /Im116 123 0 R /Im21 28 0 R /Im105 112 0 R /Im120 127 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im117 124 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im24 31 0 R /Im22 29 0 R /Im112 119 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im102 109 0 R /Im22 29 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im24 31 0 R /Im21 28 0 R /Im26 33 0 R /Im102 109 0 R /Im105 112 0 R /Im23 30 0 R /Im30 37 0 R /Im28 35 0 R /Im26 33 0 R /Im111 118 0 R /Im117 124 0 R /Im25 32 0 R /Im21 28 0 R /Im22 29 0 R /Im26 33 0 R /Im28 35 0 R /Im111 118 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im21 28 0 R /Im22 29 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im113 120 0 R /Im104 111 0 R /Im110 117 0 R /Im25 32 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im120 127 0 R /Im22 29 0 R /Im24 31 0 R /Im111 118 0 R /Im21 28 0 R /Im111 118 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im21 28 0 R /Im22 29 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im107 114 0 R /Im30 37 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im106 113 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im29 36 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im106 113 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im134 141 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im117 124 0 R /Im21 28 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im26 33 0 R /Im118 125 0 R /Im24 31 0 R /Im102 109 0 R /Im105 112 0 R /Im134 141 0 R /Im107 114 0 R /Im24 31 0 R /Im102 109 0 R /Im26 33 0 R /Im25 32 0 R /Im24 31 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im25 32 0 R /Im118 125 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im113 120 0 R /Im157 166 0 R /Im117 124 0 R /Im108 115 0 R /Im21 28 0 R /Im30 37 0 R /Im28 35 0 R /Im105 112 0 R /Im26 33 0 R /Im102 109 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im106 113 0 R /Im24 31 0 R /Im105 112 0 R /Im112 119 0 R /Im21 28 0 R /Im105 112 0 R /Im117 124 0 R /Im25 32 0 R /Im102 109 0 R /Im30 37 0 R /Im111 118 0 R /Im22 29 0 R /Im28 35 0 R /Im29 36 0 R /Im29 36 0 R /Im25 32 0 R /Im106 113 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im110 117 0 R /Im29 36 0 R /Im24 31 0 R /Im107 114 0 R /Im24 31 0 R /Im117 124 0 R /Im21 28 0 R /Im26 33 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im25 32 0 R /Im105 112 0 R /Im113 120 0 R /Im224 235 0 R /Im30 37 0 R /Im106 113 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im24 31 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im21 28 0 R /Im22 29 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im23 30 0 R /Im24 31 0 R /Im108 115 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im117 124 0 R /Im25 32 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im109 116 0 R /Im28 35 0 R /Im26 33 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im117 124 0 R /Im28 35 0 R /Im21 28 0 R /Im26 33 0 R /Im111 118 0 R /Im21 28 0 R /Im110 117 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im113 120 0 R /Im167 176 0 R /Im21 28 0 R /Im107 114 0 R /Im21 28 0 R /Im106 113 0 R /Im24 31 0 R /Im114 121 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im110 117 0 R /Im25 32 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im24 31 0 R /Im102 109 0 R /Im105 112 0 R /Im28 35 0 R /Im110 117 0 R /Im110 117 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im21 28 0 R /Im22 29 0 R /Im26 33 0 R /Im28 35 0 R /Im105 112 0 R /Im21 28 0 R /Im30 37 0 R /Im30 37 0 R /Im109 116 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im115 122 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im22 29 0 R /Im24 31 0 R /Im30 37 0 R /Im106 113 0 R /Im117 124 0 R /Im25 32 0 R /Im25 32 0 R /Im115 122 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im30 37 0 R /Im29 36 0 R /Im118 125 0 R /Im25 32 0 R /Im26 33 0 R /Im26 33 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im115 122 0 R /Im21 28 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im21 28 0 R /Im22 29 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im117 124 0 R /Im21 28 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im107 114 0 R /Im25 32 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im21 28 0 R /Im22 29 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im113 120 0 R /Im20 27 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im120 127 0 R /Im135 142 0 R /Im167 176 0 R /Im200 209 0 R /Im20 27 0 R /Im110 117 0 R /Im25 32 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im145 152 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im26 33 0 R /Im24 31 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im134 141 0 R /Im208 217 0 R /Im178 187 0 R /Im177 186 0 R /Im176 185 0 R /Im187 196 0 R /Im137 144 0 R /Im134 141 0 R /Im117 124 0 R /Im25 32 0 R /Im114 121 0 R /Im22 29 0 R /Im24 31 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im176 185 0 R /Im208 217 0 R /Im178 187 0 R /Im179 188 0 R /Im137 144 0 R /Im21 28 0 R /Im208 217 0 R /Im178 187 0 R /Im177 186 0 R /Im176 185 0 R /Im187 196 0 R /Im137 144 0 R /Im174 183 0 R /Im205 214 0 R /Im261 278 0 R /Im176 185 0 R /Im208 217 0 R /Im178 187 0 R /Im179 188 0 R /Im137 144 0 R /Im178 187 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im176 185 0 R /Im177 186 0 R /Im176 185 0 R /Im187 196 0 R /Im137 144 0 R /Im174 183 0 R /Im179 188 0 R /Im137 144 0 R /Im113 120 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im22 29 0 R /Im21 28 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im145 152 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im176 185 0 R /Im177 186 0 R /Im176 185 0 R /Im187 196 0 R /Im137 144 0 R /Im174 183 0 R /Im179 188 0 R /Im137 144 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im110 117 0 R /Im25 32 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im145 152 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im21 28 0 R /Im105 112 0 R /Im30 37 0 R /Im26 33 0 R /Im102 109 0 R /Im107 114 0 R /Im25 32 0 R /Im24 31 0 R /Im21 28 0 R /Im110 117 0 R /Im109 116 0 R /Im28 35 0 R /Im26 33 0 R /Im21 28 0 R /Im109 116 0 R /Im177 186 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im24 31 0 R /Im105 112 0 R /Im107 114 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im29 36 0 R /Im24 31 0 R /Im110 117 0 R /Im25 32 0 R /Im113 120 0 R /Im104 111 0 R /Im22 29 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im30 37 0 R /Im25 32 0 R /Im26 33 0 R /Im21 28 0 R /Im112 119 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im21 28 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im116 123 0 R /Im30 37 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im24 31 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im177 186 0 R /Im23 30 0 R /Im24 31 0 R /Im108 115 0 R /Im21 28 0 R /Im110 117 0 R /Im24 31 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im110 117 0 R /Im25 32 0 R /Im120 127 0 R /Im135 142 0 R /Im167 176 0 R /Im200 209 0 R /Im20 27 0 R /Im22 29 0 R /Im24 31 0 R /Im117 124 0 R /Im25 32 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im21 28 0 R /Im26 33 0 R /Im102 109 0 R /Im25 32 0 R /Im115 122 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im118 125 0 R /Im21 28 0 R /Im110 117 0 R /Im105 112 0 R /Im28 35 0 R /Im107 114 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im107 114 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im208 217 0 R /Im178 187 0 R /Im177 186 0 R /Im176 185 0 R /Im187 196 0 R /Im137 144 0 R /Im113 120 0 R /Im246 263 0 R /Im247 264 0 R /Im262 279 0 R /Im263 280 0 R /Im256 273 0 R /Im264 281 0 R /Im256 273 0 R /Im259 276 0 R /Im257 274 0 R /Im250 267 0 R /Im253 270 0 R /Im264 281 0 R /Im265 282 0 R /Im266 283 0 R /Im251 268 0 R /Im264 281 0 R /Im267 284 0 R /Im265 282 0 R /Im258 275 0 R /Im259 276 0 R /Im257 274 0 R /Im250 267 0 R /Im253 270 0 R /Im251 268 0 R /Im264 281 0 R /Im260 277 0 R /Im104 111 0 R /Im24 31 0 R /Im117 124 0 R /Im24 31 0 R /Im26 33 0 R /Im24 31 0 R /Im22 29 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im109 116 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im24 31 0 R /Im117 124 0 R /Im25 32 0 R /Im21 28 0 R /Im22 29 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im116 123 0 R /Im106 113 0 R /Im30 37 0 R /Im24 31 0 R /Im116 123 0 R /Im30 37 0 R /Im21 28 0 R /Im106 113 0 R /Im118 125 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im25 32 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im136 143 0 R /Im137 144 0 R /Im24 31 0 R /Im111 118 0 R /Im111 118 0 R /Im21 28 0 R /Im110 117 0 R /Im24 31 0 R /Im111 118 0 R /Im111 118 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im24 31 0 R /Im26 33 0 R /Im112 119 0 R /Im30 37 0 R /Im118 125 0 R /Im26 33 0 R /Im25 32 0 R /Im111 118 0 R /Im110 117 0 R /Im25 32 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im117 124 0 R /Im102 109 0 R /Im24 31 0 R /Im111 118 0 R /Im25 32 0 R /Im22 29 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im25 32 0 R /Im111 118 0 R /Im30 37 0 R /Im29 36 0 R /Im138 145 0 R /Im137 144 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im141 148 0 R /Im143 150 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im110 117 0 R /Im117 124 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im107 114 0 R /Im113 120 0 R /Im139 146 0 R /Im21 28 0 R /Im22 29 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im143 150 0 R /Im110 117 0 R /Im114 121 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im105 112 0 R /Im22 29 0 R /Im24 31 0 R /Im117 124 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im28 35 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im142 149 0 R /Im28 35 0 R /Im21 28 0 R /Im22 29 0 R /Im112 119 0 R /Im26 33 0 R /Im102 109 0 R /Im120 127 0 R /Im30 37 0 R /Im22 29 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im21 28 0 R /Im22 29 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im23 30 0 R /Im24 31 0 R /Im108 115 0 R /Im25 32 0 R /Im117 124 0 R /Im25 32 0 R /Im25 32 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im120 127 0 R /Im135 142 0 R /Im167 176 0 R /Im200 209 0 R /Im20 27 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im110 117 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im107 114 0 R /Im24 31 0 R /Im102 109 0 R /Im22 29 0 R /Im30 37 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im105 112 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im24 31 0 R /Im109 116 0 R /Im25 32 0 R /Im118 125 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im115 122 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im114 121 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im113 120 0 R /Im157 166 0 R /Im28 35 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im21 28 0 R /Im25 32 0 R /Im109 116 0 R /Im22 29 0 R /Im30 37 0 R /Im22 29 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im141 148 0 R /Im143 150 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im110 117 0 R /Im113 120 0 R /Im149 156 0 R /Im25 32 0 R /Im118 125 0 R /Im21 28 0 R /Im26 33 0 R /Im26 33 0 R /Im143 150 0 R /Im29 36 0 R /Im105 112 0 R /Im106 113 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im24 31 0 R /Im24 31 0 R /Im26 33 0 R /Im110 117 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im107 114 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im110 117 0 R /Im24 31 0 R /Im22 29 0 R /Im30 37 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im111 118 0 R /Im30 37 0 R /Im25 32 0 R /Im105 112 0 R /Im30 37 0 R /Im106 113 0 R /Im105 112 0 R /Im28 35 0 R /Im144 151 0 R /Im25 32 0 R /Im29 36 0 R /Im109 116 0 R /Im29 36 0 R /Im30 37 0 R /Im107 114 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im141 148 0 R /Im143 150 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im110 117 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im109 116 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im120 127 0 R /Im118 125 0 R /Im25 32 0 R /Im118 125 0 R /Im21 28 0 R /Im26 33 0 R /Im26 33 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im28 35 0 R /Im105 112 0 R /Im105 112 0 R /Im23 30 0 R /Im30 37 0 R /Im118 125 0 R /Im106 113 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 262 0 R +>> +endobj +262 0 obj +<< +/Length 837 0 R +/Filter /FlateDecode +>> +stream +x¥}˲,»qÝü~ÅJoâ* 2#<qH!5±IJ¤Í§tÿ½»ºµ»ªÖj, &'ιq $òÌýéüõ'ÿão?ýõ§ôµ÷Ã}9g¦¯ÜóWÈáG)ùk]¿þãO¿øïôÎÿøÇ?ÿôÏr9/PÇÉ}ÅúZ`)¶@Hçïã?m | m)ùxþÞ»rÝÀõÛ|Z÷¼m`¹n ^ð¤@F«L¼J_¾ °nû/ ýþåüüû"}ÿÚíñûøüÞè¿Öô}á¼ÿ +î¸@|þékúZ¤/÷}Ë:-P¾7PÑ z¹BDúø¿@\xòà²Îò`»5¢ Äë÷Ûy @¼PÉ@pQLàDÐ|¹GÁàWñk!# +äëï/'¬_nû> ÅÞ"è +¯ LA¥ æ¡Ê=Êþ ¹zì¿ Fû?ë±öû]wà�ä+"p�u MqX!¦PpuÓðÜÀ*ûçÜ£{üËo,_Ùí¤ËÌEm±d7C¼á�/ +Dï5 +0 !RCØÁÞæÁ %Õàõ÷)#RîdLñ7ä�Ù»ìxCLÇ,ZBÊÃÅÎL½\ÁRðr�z¥Þ»¤¸²ðËÇ5¾³¤G·#ÅE3d¡7 �¹ +ÎBëMJNc!fHt'uC <S mÀ#öî¢GýeÞxýäkI;ð²\¸°<U{ +ß;x[ ;´)Â;Úï9´ *Ò6¥Y¶}Å;¤\µ¨îªÈìûïÀv ßÐÙFæYåU*LwTá!»ó¸)fËîØ¹%g2ú~ 9ãÀF3éÅÇß×3ÆCÇßSÏý[rfúª.¦6j³%ï-é&g\34·±°"m«Yà¬-7eÀæ¸ UÎùáaÄu>Þ¢`ðDAú}â÷,78@·$!:ílG +±)òÞ3~ ·Ôà@dD=LÓS�YsBÃ1ä§ÆPR$<¿SE.&RTÑ ¤hAtàQç/à>Qðm\JìÐÕ(èÇgdäÂ-k]½e·ôbi`äEcFcë�Ý Ù¡AÓÄ4´HF[~Ec J?Áó+H +PtÏ~m-ªèh©7Y¨@wDg!*fY¨ °=@ Þ#]ÀÊå +¼»m`u_i}-P¿SlñÂù+]ÌùòÌ|ûSo;(õº+<{ÁÛëæi¥.YÂçoì}õÉ4=ôÐruHô'Ó1 ^9KO$Ä[Dó¤iR&Ç{z¢kÍÉþ4Eúþ3ÔczÊ^ýgý©TDED)P¡"ÒLuÖ+oel 2åúØ4Ùa¤ ±WïScá+~ôêiÙ@úÞÀûÜò¼è©·L�,=äË÷ |Lñä@T¯Ô=)(K¡_xX +ýÁ HRh Q]ägÌ'?òÀ@nÀK<Ä+7v ì +wÒðäD¥U¾ßîKõO¾\@©þ³-Oó¼§N;�ËaõnééieW =.$óÊL à]CË.`¡å�r$¡¬7åÈrý]9"r�U©ôrÞ6`~ùìv²$Ç´"säýŦw°".Pî FP¼íå#=Z¢¶«I~ÄCs('J÷ôDGGÃG¯º%"Ü\£zQÕC,»ÑÔÅÑEèro×¹¤R¨å7èS!,H *gõE³4CRµ¸2Ñ&_{^ñV¿¡xÅ42s3=¼»e¿Ù%¯Ý ÃÐ 1¤Ñ}Tã +(®P_$Õ#dÅZXAY ðBg,Ì$ÛêO ©Ü3¥©j¦æw*ò'aIñÕ¥ %n²+ÂliX?§øxíF�\I@7`éÞhto9¶Ç¤°[|qü~ 3&HßÓUås.XLpÜÌľVéyz¤%¨78ÝX´Zþb!Å�îÌV¼ñÔC§èq¡C$Ð«Ú è|6À8/21 ÍÚI' 50P}b/ ! µÅ-ÒM®ôY´&%x;Ǽ± äßO0åQî]aXx÷·ÜHÑxæ·K %«zl`Õ6@)¸¢ èa]%-Bc4!èvÖt¤°ÛY3®GÛ¼ÌC$¹"¡üZE=È[c¨qEj@¯V Ö7$=ô¦É¦êò=)ù¦»RPT)`© ¤Fx¨"z¤~HõY8.8L«õÛùØ`ECÛ]ºëÑíÍ)]òäµdYâ&Ü +pR\ôÎ<ݤâ¢cv°kH~#MÐütêtU2´F[f¯�ÆÆed© 1Ø@CCʪSIÃ{K°<<©ªpoµ[³ÙG·ç© ïÞ»öîÇS¸¹eºOÐ+h,ÃÓÙ�¥ qq¼½&ß°øtü¤Uèæ£Jí@7g~IÀ,ú£$¸¶ð ¯Ðß¡#èU@[FºDZcåÇ;M/øK± ß(c +öð;½õý÷`ð'À¯$I¨KGÐ;¶_u©¡AïÈ1Íó½©ÂÏ^!ËñdQ)³Ç=kHólöî;kLB ¸¨g³bÂ&_ ÷®Â~u0¨ã®~5Ïò,ñ,O¼wÑݳçÑݳçÑß´ç[hÏq5á%Z®;¸V¢lñöæÛÓq^$L;ð&ðeÚ?wp^�¤×Ë%>w\à¢J+ë-¼[%¡¤Üi¬ûuíõõ¼À VÀÖµ¸ôð/M*O§fÁ�>8;öôàa~îKú®>/�´ÉUíé +-páÄkÂÑJs#\�p"æk<îòAþª´óí�´¹ÅÙÀ(=ØëDDd^@F*BÀ«<yW(å¨A9CØ|EyÛs͵:. óø©t>l-L<.0ШQÂNÂrßÏxÈz9ÏV� ¬.2±À�ÇX` ¢½õÈCDóÞ¬ 7À0î øY4ï<ÄY°: tFU@ç +¾$HOr5=%ļ¾ªqàH¥@Ô;Z²í¬õ jÌ +u¹Ëôõf i¢iõ!bX6aEB8ec-]=H«»Ý¢B"¾)©ênõP¤¬ WÀÊ�ª´^4)âe�ðFÊ�¢*¤ !1)@d¤`¹å m-äe�0 -)51/Ý!&YZá¤ä¦ËhñõxTc È%iÀo%QÓÌzDÉÇ[>m +â%Ò.V5« +SPÙ§ "nÊuI8ѧ$H.§m9¨ÆUhwY@qÿSYî¥l¯_åô½{*TkÛÀúµ~#ûhn¡=âç?çøüæäÙù%y¬w{¿` "£HÕ@äHç{bQ÷ýO½áWtþÈÐ"oQA�}eG@ìHD, £-äáIâönÔãaWµw£Y +íݨËCü ÁÈûw(d\µ=¢ �ôû42¨E>/g¡t ÒMÊ"ñô +bÒãb5Ø "ÕgLéÀû{]4SL7°h,@y°qêò ïòq ¤J©¢CZd¤ºÚ²+¹3¾¶~½u1z¿àUÄxOÙY9ôä ÙgCA$âR-()Üò#P&¨¢.¤H(ÕØ8õj{ $ºT$Íhù®=%<°Þ³çɽ^}rY2§ÂÁc$¼x´Í" ®{T±Ù«=»,b@aè²Ðôïqp"¤&)jÆb ¤Âé¯ÅÑ3ÎuÐ\}.c*È!@N%ûir½C` "úüJ®ó+4;aù4ì[§ÎñûGCoL: ç¼ÉáÕ=½í`*ÏkbO$ó¼ÞÌéaze²ÁP~_n ß,Ý+$7`qAï('U¯dõY~¤E÷Ç�ëp¨à[ÎËO"ØÀ>¢« xý ¼½¼Ý'¼ÅbEßëù 4Ðà2@)ÒóIñ@~¡5Ht! ïÅé�¡:42"ÀHF.Ò(Þôèg0oѨNb> ]Mñü¨D(VMhhÅ2 g¢20�ðYE-Dª_|ÒXÏU ͽÇ[õʤ3tD=m@¯ýjpáþ¾üh²c#³j!=µÅ ðù®~-»£Ý�å�¨ý[n§³zØÔ'ZNÀYªdhéÌúýqÒ!×Ò$ïñ'X ` + .ç¾×m¾kñ¯Þ&¸ Æ0ZîÅd1¥où")Âß×S1JßÓÄBDû¿Zb1&ì áó[$Åô�Ð1EwU ¤â)׫�c",nÅ;oqùçôNn'åϹX0&1ViXmMqdÖ7Üã÷#¥3öPçfW~Æq¥+p~ +À1í¹¡8Ùï-Ã8|öý¢CpýÍÕ/m�½¹â5£ CÒ8ï&{¹á¢öè;É {kÑ8ZnÅirÈ{C½7È +I;<À!Fë-E¶O(BÀ÷Ú +<d½=¡3ô/òRD5ÀR!ÍÖÙ5)¦X êýuR¤úè°MpPhËôÀØizw!,ê1}áÑ ¾ÐÕK®¤[þÌzËÙ{&ýè+IN»JÁ¼]ìA³Bë=!(P !$G +´dô OùvߣåvþÜ@vR(9®7µÀzW¬¢Ò¦6Qï¼ù 9Äú3AP·¥) _` Sz¯|é0qoúJxrÆ¥r§t0&Ñ;¥÷®&É7pªè!YOHèÎrcÉ §.À*WTSÂÔÐÜ¡î¸ÒÈ÷ ãYcÑ +¾Ï¼±¨y~&ØÆ¯lß×ùÏ`Ýtÿ¹Jû§ÙÒêßü$ض· +?¶½£Pù9°mo]¶¾¶M`c¸S cI:¨+Ý+dãWzÒ¶BNëïñ@pù6¶`õèö)H*¬îÅw�××s-9S¾ÜöÖÂWþÎòFðÚÃnRíû¬fGrDTdÌuT9ï¬Y´ÐüVErÊHÉTMrØøûòk?é}O h°%=òÆÍóäÆôÍöM |¶¥$®õ³2Ô6Q±«yrÙ2=C²e×Ãb¶Jî£Dxç ´Gëøí ½-%\Íç6àòÂzÊÐ@jB»AÊ%ÞRãQWlv ò'G@KªfJyjBó9èhyj¡jRÌC4æ£OÊ-5´5åHà]=(&@[ØRÊ øäÑ£¥=-öTä»ÃSHv&A.Ôæ{¦,a=¤·5eM²¸ØLÇÅ[ÝÄ-ÎØ@p¯èc×ÅfÍÝ,¨5ŸI8ÐÔJØÜ�Ou?ÀTèèêæÀ¼1¡-ð÷õÁ¨çwè$ÞSÑô¶¨6¼æÌBúè¥Ì^¡5å¬è[D)`.}ô +Ö}÷ +(¤M¸.kiñÑjvïPîóÞË&º\Ì0;":<Im+P@#mÀtyÙC�}U¬¥DS¤<³PDE{|·²` ®=¾|êm ÆêÐÔ=hà©§1_ ©°ÜjLæ2¦# ^äbÚQwM6Úñ4§r6=@µS]E+$í("zþÄóîÌ@ùU|ógfʯbQ:ÖÓ¡ùS�BøÚÆÊ@Õ]²H@V6à4SDQuWèÓ[lßwGÈ«»Xö©wÄ.°±¦Põä_õ<Rúê Ëo=)¨BØÉ-ûäÖ!»´±À)tGP`JNÅÐQÁ4ÔD*}¸n aÞSé{úbÚLaZ{%{*Nßë=ÍnßÏXß*ø¿?P;ã3Ü·Æã÷5gÚ£ »h¶ôt�½l¡U¾ô@#ûúª8ÝÛc¹ ´va{ðc_^ÈNW{pàÖ±õnLõúfìÆº¢KÐ;Ü7Ou$8øû1nÉ ÿ}sÉ6R´'4¹°ê¡y«¿êSM$EpÀÞE÷|¢'Tå =åÐʺrH¨hLD¯ %){WÀµà�ßô¹¸-9qÚ>r§5eôU)ë©ð÷¸j<LúûÓç 2©Ã{Mô¥Ì w�A!åé4;@ïéñ!ê£JZt>g&Îî<eX ]5Ê¥ÈWÀrªGÊr#È#@â¬P寨»àuPé]=âáÜÈÌÈ�òT\¡èOÎ1ñÀ³Cjx�y*yMÑ Ðg�Ì¡N~Ñê|iõUOÙ¤Ó×)¤/Q` '%B +È)QXGúýÜLFþðȸ ,$g½ôM!A* dG©8î$Å©&]4X¶º´Ì"y¶m)$OK®60äÙ*¡O¿¯=´gÞïóÔG¿¯ãh¦¿?вjØ+»8@o ±ÔÈa-!" ¤^2°ud¤çïågA�ùLî¬v0ý*< ÷Uí®¢· µudô~ ³I/ç+Ôùã=!ØôFjuñä +Ív®N1m%§+Ч600`ϬLKQM÷¤¨j^ÁîIÑ!"w!à^«!,}éA+º8ëA¹ülOt-Ág´ A³9²P ÈÐô±áÏú"{f£ËA$1(Ü ±à@WÕÛèP 7æd\[bAÖ",3±J qu î¨^¶óæÌ%ª&4?ÙúKÓÒ À#]Þ^Þåm3Xg¥ yhP峨I`mÖNHÐ+èëA2f%þ$£èp´r˧OoAÝTÙG-ïÈAÉ@Gfyb@J8XDÑÄwTø{¹UmôLk16°m#ïzDè7° °/0¨`úXÃñ÷á{l¬1[xGD3¦µ|Ô-{¨s){hß§�SÒªÒ<¡Ùóë$j+ >]"hrzÍkø %xÄD(f; ïµò"h>yíÆ0 IÄÆQU$.mMÎ[Ü\;@Òx7T@5¢WmdÄ#ÕüMzVÚÖ®¡ÙËQÖ~{¢ Ø{co¼jÂh©ÌeÕ®ÂU¬@Gkp"¦qË÷LÑè" +#èdÍyÝ )@`QA߲쿥G¶1!¡ àþt×'׫¼jcÊ_i}-ðVÃåÈlOoL:D1Ëd¨ò@Aú¦J?Ý!=¼-?rKßÙXÀ^9ñ¹iÊXÉ£mR@BÞ7à®CA£k¯ÞrHXWI¼g qb¬+dÚ¡Ø'¤Ð®6&á¼rBNYåfMxéDQï´FÉÁ-aÂrÏ+NõW*K5ëNÅX)8µ¥äa´_°,Ûa}ê¡a¾KlÔÇöýÌc¡Y~_sa]%=RÐ+rÕ.pº&ööä?×°WÛ½öáx�ýÕv˯<È,QºCxh¯À!&ZÅ[|ïíÉwgÅ@v*C8gÄKdª,ÄæIpUe¼þí` É R$V{�JA/ÎL4вÜRe¡ 1ÉÑzÛ\#¡p*ä<+-G³Æ]O=xì)®9#O¿.ÆMû@<44íqñ@gHÃÅgbµ´à,ê2Ð +äô%DèÈUTê1hÉ0Û$z$Òò&LûdÖf¥Ð¦uÑ©%-õ)U3%T+¢c¼M1½e½§ã%EÈçÀ¸Dè-±ý~ c6PUï!Ê5å{IYET¤<Á¢¹#¼þrÞfÌiývå~û½¤ÏB¬7E-iùDF$н Cíñ§^ùèJ}¾¯ò ÞÀça!qÙ7¢çsiÎ¥Ï d½I¦Û÷s¨|?2éÁ)Óg�§nkIêAp±ú(×>x«ÅL]+r±ÀÀÒ*n²ÀrVèF³å©àD³¥é3¤(o-YÅ+`å'õ÷àU¸4 ºêQ +Ya]©DÓCqx¶´A¨=-ÀB¾Yh*¤Ø#³,ÕÎEfyQ C +¤zºÁÌMÑä5¤X·³dxZo½üo¢ËU®/ÿhÏQKá@ýHÒ41¯1EÚÁäÙE#rT[ÂC´ pÜ ´Ð¨é(ª¹34°NÆ¥X³â 'ib[Ixõ ²$o%6JuÚÚËGºþÃ4ÚxùÉrËlå'&£Bdý9º|kÏu9É®¢9ç£P9¨qõتWî\áV½rË#ÜÊWîx) `À#ܳ#a(¬Ñ=ÂÔFML{6/eÖ#L¢"äÅ+ÓQ%G¯À¸p xEs©yñJÕ´4màÁ3¶¾M%ß¾BͰüÜñ÷å?oé¹ã÷2¶õhzø^×{jåp~ ø«¶�/=Y¤pØ7 ×MØ Ó ¨SÆÈJGê-fȺ<È¡¶¸ÃïKÏß9×`K6d w4´a?AG³æÄ #½5QcÚU+ú}Ùojhì¥ÉêNµ%W¦U9iRHØLa ªòËn¨wÀzs¨XoH +XO-Ë=!ZhÙ´¤GG^]Ã>jògWg¯ öÓØ Ë2OòP´,sï�l"ô6e½¹æ'BÓÜBºçÐØ(ÕYf¯éû#,·Ô�x®£¹ËÒy@ïÍ)HGòcUóIyrcAr8]Y 5Ô)°"§\lX-R÷Á!"§õÖ¬=æÚrTQ¨Ë/zõ§¡è8#Ô2Àù[i²ð*"`M*LIT ½y%*bóJü=Ú{MôáÝJBrkméöýKe³HOßË×rÆõ{øpO»è¸£óê>,0ÝÜÀ1Ø¡/:W@#*ºB º¥GÛ÷Òä6Å}\GsmÁeé©_mÈG +èñ½O*²Ú E#ÖØU&dÅvÜ:ïiþ=MRHÈq5E +Ðà.{t�=¸3xß.²¾øûzpgOv'ÈM÷vÆreB}pÐV½ðôXàãà ÚZ² U*Íâ<Ø'è3KÖ$éRªÉàwÂ=kÚʬ3Úc ê_wÚtonu½ñU$Å`hûGc2b²2ï`{I F¤ÌõÙÚ{õCï9¶'R¥#íA©Jª2¥&½Ú¨ +;ØÇïõ¡!%j,Ä3ÐèCCª»åÔî)³þÄ^ý0ëm9snÕ"Ó«7Mü±Á¾½;é3+ò ¥´Çw¼â²ö½¹¤ëèÖR=]Þ[2ÉÆ FÇeLÉ*bûá)) H&¡åXéåoÑíg§@[¤ÍЬÈà¯Z_àÔxèáØLòí>tªHÂ^ß<Ü9dÌÄ0ð¦ÈÐQzãÁÃïdé¼5u6@T70ðààãüHA¹GmÏпקX¦óû¼7¤Yó#&·XÃ{w¬7ÝÀ@lëͮŶGD±í9K÷*+÷VÑû8ɲ<e#ácÏ9.6}§Up¾ðÈö«ÃíÑëHy6÷`ÓùîÒþ)E% ¹A{}ïÜ Ï³"ôGz¤ ÞdézÏ;çröfvÜ#÷X`ÏöYä#ba20^ã%R=j³N{Cè�úø¥YPxp; ?û¢± ¯!Ê÷´H°±!-Âs¤ÈD aE$Ô\úC²+,E)ò orâ¾Uq|_ÈCrÃ|Q²ô�aU@ÒKPéïmQTc´þ%%é $$Dúhò5KÊèËð( @}Ó9�/Z¡/¢796op.ÜÉfãÒýᨻs»ÆK¦c× E<�ýâà奄´ÜóÆ× Þ ù@oRÎzc{~rÒÛÓÞXH ôæD Dµ)5�¨# ÉÔ Fµ)- ªõEoP)àÊ7c¢$*BÊEV#¬,aõy8¸{¦ö§_ëw×ãÚV¹±)ĹäNØy¬2ôã*°ÚÔãï Z×rwoæ¼w÷+è¨bÜY´;¤�Ë-Ï~ºC}VEè²[2¸.»e½ÇCn£ËCùË%t [\a"Ûcr&.enj±H¨ç<#=Í¿oW8\¹©BXné¡ïé¡E=DY %xzIÁÀø¤6tDФç7õÕ�áÁ60À¥ÞãÁT=ʲ3eÒX@1¤Zvç|:¼ô +±\Ñnð9Ou6±`Yv%HzÃïTU³ñIáÇPE)b`¢?CcãX41 $YHpò-ÄÆ/õHÈ<ª-aù§jRRÖ&rö">]m@Gd5ÞÄgpâ.ò5h +ô¸%ß²æÖâ&Xs²õ^P°aA©=T÷©G,0^㯠+fLëø¼g]Q>9"Òü©^ p ^~j0ü>ãçôOð?gÖ¡2ü CpÄÏj?§çPõðsfm±áçLÛâ==S';Þ÷ôLëx·ÙMÇ ÔM4TÐî8OEÁðlxSï�¼Ã¯4;{ +ú°ìFتýYªÊC¤ÎÒ#µÓrß+à:Ý+êVé{¦;>jb>»©éÚÁ â�8 ¡^ºaÙ.IéFDR0Ðb>CèôïT.¤6008(#.Î3Ô¤+dºáM¼@/>©è� HuAý©=;Ñù&EÔÄD[éIWù7¥ØÀ}{,À'7!)Ö¢ç\bUѰÊCÜb@,02Ö7¬·ÜêN°áÔ"åÅ'Pêã&¬»kLi-é"o..È!\¤Zs| AU Þ<ªOàÙ HA=½³@)Ð;×xS +Vdt)Ø%)èMNê{õ,;Q$MʱueEF(K:Ðbå=âÝmr\BûÖç;«S¥W@B:JAèÐ T¤"*2zK³»¤6ûhAþÀÀ\aKqt +îÛ»wéö×±ÑÎißÀTå½yϽî¶ÓïË/nÏ{üèz¢n ¢(²=»P&û½=:Î^Á¤+ õ;kLO<¨£ã¶ÑE}! -ò|Ã�BÓR´§'&¥hÏNt®eöà +ÞcU @®Ð+¤ç)kRD«O°Ñ«2bâæªTü<×yZ!ã4Tº.btÝ"ª!Ö�]wÑÔõéRäzoRl0åÝ`õÄ[gÍr¢k=ñCY]"Û÷.Ù-D~»¹)ÀÀü¶ïg2|6ðôûú°{mÊû9Ô~öÏÚÛ¬Göøý@{Ûît@ ¸T½iëTrPöÑÊE¾0Ä6_ ¯ ¼aÅË XI{p ° (i/daõyør&V¿&¤°µ%lC¤æÊ-&èr1)#4[|$á@aÒ6@5yZ%.ä]¦q¿Ï5ù$Oôûz%«Å¹põ%¯]Pù¤?Õz²8àÛlùÓåâu¨Éuxu";gÆüø½^¿åÄB4ÍÞ/z,LS´oZlê¹0ú¤-Ð}©×Cn?Th¤7¨À³ròãïëxöNÑ¿Aâ7 ;3Â7îÙ;ɺëNDC(Y]P@vçØAÍt9Ƶ`ã¡Å<ÄI4w¿2Àßadp"ÞÅ'DüÖ°ý"þIÛêÏ<«GM{,CimþrßÞXõèç;\TIÑ7Ö½¿öU8û/ªlïk}-¿Å ^¸(ôYùðçÊÕ)_ô¤²ámñ²�½Æ,^#}¬)00ÀB´D}{mRì´i*¸6G/¦Ïà;|ß¾ªàò{>ÍÁvì¡}íØõés·4cÂ-Qÿ¸|¦ +|sÚ® +6º§*H±§ +Îwø D÷£# +x¶&4Xòk# ®ÈÜâN7K¿fð= Ù%عÊÜ%øBr{ÎQÑÇ[Þ!Íéã°)òúZ`JoáéS<§·B6;ÂG6¸ÞÂK¿ RHíÔµ;ÂEøx½ø$ìÖ)÷Z"¼" }.úà¹ÀÒì¢?d;À@!TXÅ{ ¼hU±³¼¸U¼BtveN!lÄ8!xõ¬ ,"FÜ⬧a «xö½ÏÉBÂ.Ø)-P»¥PbwÀÊæØÝR([EÚ- ²!¦K + JBM7%¡:JÂ$ÏÔCjÞ:ê<c3¨âmÜÆ4vª[?ÏJ>î`�Å¡¡]¾!Ó}ë?ß¾ÿì]0¤á~_(my×ÓïëH(%Iûgy[ë49~?·õÕHX°"t+-¯ºÄóz9P{=P/jµ$= +ÐýÖ¨r:À@¾«ÒhîßCÔA$¼ñà0¬â 0¤²ÀgãÕ8{ý$E¨&Õ Õ\o顨ÁÆS.Ûs1Nw@c*,W[6ãÔ¸a.ÆyÛOdCöqIÂêÛ9$´·ìîx|ñªÇ8IB-?Òë)Ú°VODÐ<ÊÆ-C®ÏBÂÊH Ôy¬:åí&OEqZ»ÊYéÃe§¼$´ý1=6tµYehÝ.³NAqÌ:e± N%@Ѭ +A¥¨Ð§&µJ²ðÜbÀÂô�+´ºXåÈMFÁ@£½F×´h¨Gå±z6êdЯ-c¼]ß¡þ5Ç«Öb;z ùÕLÔCz»NFzh�ΰRSDESãÏ`§;ËSÖ\ïªYÔ¬[¦Îàåo)§G¶tRu½nÖx +£½¢mßÏõøÁ÷?tÓÞ@ÞÝ�owÉ#Ó ÚÞ zÃNW¨Ï±i5½ïy·LEßëÅÝÀÀ¬iWàd(�i²>Õïà)¡OíÍât%SÛ*tºïtFÄðp[-¸D¹ 4PY1éí1G +ÒÒ$Qñàû°Ö"r1Çâ@ÁâX§ÕÈSZ¥þé{ À +d¡½Î7íUÈöÀÛ]�¸Ñ!=rå!Æ\ôX¸Bc,÷ÐÇ7=6Ó.cs`ú¦?XYëÆ<rî ݳ¥ÛÃém,ÆÂçtÕh'7Ñ=�)±ß+±7 zs½10!%¶+bÁ[Ñ£qµÓì-/m%$Ó!MòÐÉ!ÍYÐüQ@^kz8³jÜp8¦â Cr9J§¦h\5_þ¾2ÎY5lyEªZDAc²VC´´ÍØ+ÎݾÉö´Âá÷XÐP4¶&î) +Zuîé &#ùU¹=ÛÍ5~yl`ªñÓ·þõ õÆO_W°À@ãçVûPÝAßzÎNw .Üâ½ô¡Ï áÑû:Dô~y竾ç0I¢ ÇØDz` i.)9²üÎRAßËïáMt éX^ 7@^Ûë"ÈmR¾Rê¾ÀK¾'&Nð¢lÉ-1f#'X�µ®â(B¢Cb8è²Æ4¬ðQdúhÝW{rÄG¼zQYdÌñ50fep{ÙÃéô ©*=7×{Í^öÐ÷hÈ£qF,02«² )Ôj ) T§-ÀûW5·×IÓ¥fy+R$#C@D]L!HÞ/¢GCB+H·KÉ1|÷'^#R{O7�+òtp¶-<îfHäb¹¦9å8ɧwÿè´=ÍjC8¦°¶nZ|^&»¸·�ûÉ.î-À~§e²Û[MoìâÞ>+jËd÷ÖÝ`G*GÝбvß] m~ÊÞ!p � oMÌíå÷´�°gIh;xðÁV|Z :*¶ù ¾-ðÞµhpÅWýC4È*ÎUUHÄÂ|²%h;H>8¸èë°ÕoÀP´`Îú ÉÂw�þò%ÛäÞ(NÉÙøo!×hãÄàmï +å¡®:qÅåés¢ôòñh²B¹X ÎX¶Â£k¼¦ì(Q£GDzN4�vËÍ ëë,¦e¡âjÝ2õ&#-ð®2§¯ + {y�ðG¨!=oeþ§ôÞGceÿk¢@[ßwRxe 6À/ õG¨Í»ÐÀ¦tEíhú½Â È©O¿DpzÚm3«×ßÈû8G¤oÎÒvÇ ôÍ5ìÍY²)a}b#Ô"¾¯± ol¦ïà}ñè@V@èI!Ò»ÙKÔ :´ lº¿§Ç»¯Øû¿ÉXê<`ñ³<PjÉ:ï³zl¿èè1^70ð +·ªW@*¤-<ñ_·tâÐ̹7~"M00À; [2Ð6ªÊ ~S³4ùN:y,Áov2^O 7~fhLôYwù3øeÑl/Nê¬8QS$¼8)÷2+ V¥h 8*²üOäOLO!¬gSÆ`P"¿o}wô¦Æ¦a +Ë=-"ët<½o²kËXßåͰ*Y«Iס"m` À6#h qÕ#}Ã:½Õf¯+SE2�Ë9t¨%GÜgèPkÕæ ø6éàZ}A~ÜÀ@§7SzX�ùÄÜë¯ +´´.ø`$"[Y¾Äýl@ÔÇïRaÞ½BVÑbÈ¥§®-É¡#L°n#÷¿µðý¾>È#¨HBX'Gd!&ã½4~öü}ÁµÚÎV"}¡8�õzÀÝê?>àÒüVñjÌfðý@a`¨h`Êm@Ò¬³c]=FCûÖv¹ÝÁT¯Ç6ýÖXøìD60pÑi¶ç&¦xߦ¦h`ë"¨*H¼õØõpÈÛ�4)îÞ3¸öS +¤¬RÍqÒÐúÖ\R±¾õI$òÑ"Ð'Ö§ÐÄPI}l=Á®@÷öÚÎa5ð]Û ( çâ¬ÑÀò7ðÒª6Ô!4P§¤ÆE$2ÚòìÒ##ó³£x*IÖvFÑ©¤$L(¬®íÙ¾'Ç´¸3çýsÅY³f¼¸Sskyz1á@³GzÓdSÍVV¸!ûLN¤¾yxo§ è¸Ûm@OùâÚ¾ - 7»·Ñ. *uºÙ2-=Ò?�áÖ(1ÏK7@P± +ÁréÍPï]/½ð ôÒo` ôÂM²M`©Ñ3õg÷p"À@é¡g÷^9þþ-PÑ(09~ $M +ù÷ë-)PBN )ÔM©^ôõð¹¤×²-Ás䢽¶:ÓÞèr1)!k]=ÆQ©Ð½®à*®R¥ç¤º åïmR]µ¬çzÞï>¦Þî0Éøû[å ¤ÉøË=UCU!ËdMÑØ6Ú%vg è:"l¤öBVe$6MäÑñüHäV¯ä^NRDè¾"{>ÆVT>îÔ·ò]u«^>5R¥$®rP^y¢9$zËZW{,À[O<ÈG¯¾º½N ~³ó¼0e¶ÙfOß1eÀ-uO¦(jB^<Ýb¹&=ÝÔc©ÿÏê±�^/H9N ¤k96UÐlQor¬ßÆ~Û+¿Ø;Ííåu$Ñ7¬ÙÓïË¡Uo¿ðGl¬Øé�²[ï ëÖì©]Oßhï¦g +è ¢6ützÌiç +yùGÐ(@,«W0àmù 2S)H#3bÆ0xÄÃ{~¡v±VI¦UT÷ÕÉ°Ä 1¯¿Ð®÷fO<$A&¸Õk ôìù$aë±ëæZ³hOQ&n¥}&&Ñ¥ &¼¾ûrÐk¤àÅ,O[ÓçT?ÜËU +®{<Á®p M· +é/j³lzwÈ$«¨êvÑÄw@wBïñª`ÅPëEùaQ @»n«f +h~&å[jdONtYôe´'Ëóô¶éê5Ô:XP0./£ú[.y¬ú2øûzvfAJHÂFkJ`E.±½¡fk)«½@28g¶^³ÎÈ^»1ëÐZíFÿ +Ù÷ШýXTCÆST ++L<SBQÕj6äaY ¤·°tæÉsCí¾£ÅRI÷rõÔ0pÈ7ê¢ys4ºÍóÚ æ@£ô£ÌF[LqX`4ºõã6mû~FlÆ#°ß¬ 6ãø½æ?Ócm×é÷õôØ�Òc ûôûÂá:;ÿ$tûèp�-ð``O/|ÂóúÄðn±uôYN +ÕæØô®fZ9ôYõÎ P~/H`Dö»ê¸¸B1Òt7ÔÈ+°_4 +°±Ã¤`ê¥aì{F%Ñ@TâÖ[Ð@·{LØ-\èénáÂñ�zW.LòÐ^·Ð·¥$.³®¾"b±5¸ÂVÎ<} 9¨¦öVs<]²·®1$,ð÷e°áXÓMT¤"ëEB>ì[Ô<´×ü!Zï*Ò£zv)y'±�ë-ÚCûã^{è£y@R<ðhÑSbV½ Ò²køùÖ 2±fMÙÔæò(¦0Èí| æÓä@EN9JntªúìcÕ}µy»Æ[9qî±XÛ÷SM Æy»foÊÈÜ +ý`Âår�P¾tE=·Xáð»-ðݸBÃÒ+h9ÓWÐðúW@R"!RdÚºuUäÏ d´p¤aF¾Ôì³ACtn¡aUE$ Ú¨îã÷AG0òÚ¼t�ZQ&oÀ�-ÄÁ=@Ì.z½ú,Èu#IÎä8«ÇÛÖ^¡5UÌ^a¿¯ã¦T$B\³&ÄT+2D]%d!�oZô³+Böµ Þ²·d8P~«³i`³´ç5@ë ññÕódO%6,4Ð&Ä|ª-ÀçyIñÔ¨HyO]bS¹c[Õä¸ÐÖ'÷î%Ý#µò¯ô¹×B`YL&@/^(`y_àÓ%R÷º ïå°ÐPÄzß39òmØ÷ñ{(G·Ôp"1å6R³Xcöt¬1©a´äFìbF0²"ÁiLL6.\ !s Ìç´ò4 e·½wHķK=¨ÏçÝôpÀz e ò@�8o<» ZÌ¥J\ªºJB@½zsÉ:²PX8å«C¸(Búà¸"K�ûI ªX÷£÷·®0zúöæÜãAp®)®GÔ×CdQÕÄìH3ü÷¢¨ õI-2íH!½´ÀOÚ@À=Æ\1D$$¼ü^o3^-¯ôàÀ£ù0.yt´=ÏbL«ø"9Gº!ߢä×[R,4¢ S/?§¨)rÞ#ùt§F�¶ß»Å+àrT@&ÔbL~4Þ_fÐ^ÆÃÙYáCnÙ\Cº ½ðýÈkCЦ0¼B4P á¸õ)@üÚ¸ó .¶BPxúÀu)?ÝÁE_kq-=ö¼ÀÆì½1îQíïE¡ÿÃÞ:21Å&¸ià]®èFº\db(di(¢Áh# áN¼kÞÞ¹æ8?¬Û>Lâ fõ- *>- ê ßs¡òmïæ¡ùÀrÍÛÑrÝzú¿bÅ?¼Úä¡ÓQµýLg¤¡þj·¦{r°Âß×;Ü\~FVör>ÃÑüF &¨âW_Xìr를w¬9g{2zñpí5çîXG×Ipt(@7ª¶`@D/ЧÓßK+}ÏAÆ@ýÛÛy�,i.!MpXW@èáøñ Þ²%HÄ0ó0ë[§í*)rr®yT¼zTHYÂi S4�¤áèà¾)j7ª¢ 4ª&MÐ+Ì¢"¦)"¬äç b\dßÈoô¼ÿú«~ñKÿÃÿøÕ¿=¢íóOþyýåW|Éô°î+×Çÿó÷?þüã¿ÿõoÿô¿ýÿô¿üñÿøóoþï¯ûÿëÿýø§ùù÷øÃý»_ÿëßÿøå×ùýoÿý·ÿñóÿòãw?ÿüøÅ/þö·¿}ýü»ßÿç×~ûó/þÕ×òoÿñ?ÿô~ñÿܾûúÝÏüÃßÿøÕÿþé¿ýê±»ÿ2|ù0 +endstream +endobj +263 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 838 0 R +/Name /Im246 +/Width 41 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xϱ a%`mggCâbÊQ}b$±ó¯¼Ü)¥lVwÜàØ_5´è=ذº&]B=ذº&]BVy±a¤¯Ï_>Îë~.×~X +endstream +endobj +264 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 839 0 R +/Name /Im247 +/Width 13 +/Height 13 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xão°Pÿ¡þÃÿ0âÙ?àoàåì�_Z& +endstream +endobj +265 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 840 0 R +/Name /Im248 +/Width 33 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`c�;ñÙA=øÿ8ànDýÿÿÿÐEóÊm�îM& +endstream +endobj +266 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 841 0 R +/Name /Im249 +/Width 65 +/Height 58 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}Ð1à @Q#FÀ=:uë¡Úkeã(É ²0 ¸ØNP©§'�zzØ<+=ü9Ä=Ã� +1 +ú@IÔ{³£´xÁFD.,ÒêÀü8ë0Ö7XA©àĦ "P«J ël?aë§'Wd.jà A¢ý}×^Ìädèêm3ï ð||Ö×òk +endstream +endobj +267 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 842 0 R +/Name /Im250 +/Width 29 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcàg``@ÇòhØëø?31;Ëÿÿÿà?fQ WÀ?ÿ7|`üßøáÿáöÿ�ÓÀÀüAÖ´n*�»NB +endstream +endobj +268 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 843 0 R +/Name /Im251 +/Width 41 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`üÿÿ Yÿÿ?üßð¿ùýö?òøáI{ V�TV$ÿ£ÿAd©$¦9ó!v!Ûqq'#Ð0÷Ëÿÿ$ÁþÒT]b��L^ +endstream +endobj +269 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 844 0 R +/Name /Im252 +/Width 76 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÝͱ @aGp[Db4lÝE, ٠DðJÓý<EH÷ɲlÅEM(7²:«Áâ +/FëÌuS +¦º<ÅGaUU<ÿònÌûLÅ[q½*)ÚU:ÿE`¿õh¹ß�³¥ +endstream +endobj +270 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 845 0 R +/Name /Im253 +/Width 21 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÀÀþÿÉÿGAA ,ã|à?C=bÿÏÀLmôÿÿ8µ®Ý% �ÎÅ>` +endstream +endobj +271 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 846 0 R +/Name /Im254 +/Width 35 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xα 0Dѱ8tH MPç-B\KpH`1¤/yÉÎJì@&Í_` ]xô¥íA£\!¦¾þ!ÿhb{q5¾ÆP `H¦Ïèë£TsGüìÇzÈZL +endstream +endobj +272 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 847 0 R +/Name /Im255 +/Width 52 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿüÇF1Ôÿ``PõÀ<âPì(3 +Åú�¢*ðQHÔdB±©ÿÿqSP%0 ¨¦ Ùb +[\eí�²ÍÝ +endstream +endobj +273 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 848 0 R +/Name /Im256 +/Width 37 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]λ Ã0EÑk¨p©X¹ËZËM@Y%hÀR `ù�ù°8%ß%yqõÉâ·t u¥É@ºXPlO´¿Á:üCÜ7øC/vy<Á¢ Ùâä7mÑç#2*;Ûv½_Ná,U_ +endstream +endobj +274 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 849 0 R +/Name /Im257 +/Width 42 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuα Ã@PN.*M¬ÀdoìF¹®¼Âºo°-9Mz/È&1ÐDÚ%FÖá(¨!Áo×v©=rM£~´+4\Óó5¯æcGÎÙ8õ¿"wʱZ_âiÝôL 3ä£áÏÇûóÚRhö +endstream +endobj +275 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 850 0 R +/Name /Im258 +/Width 48 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÏÀ`àÿûÿXHöÿÿ0Õ(ÉD2ÃHÆÿì ²ÿÿ 2; ëÿÿòÿ?ü©høÿß@µv)�ü\qt +endstream +endobj +276 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 851 0 R +/Name /Im259 +/Width 34 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÇüáÿ?þ@Âþ?¨©oøÿïÇÿìÿ>ü?Àüÿ8�'ê=à@æÄÿÿÿ0%Õº%ê�º%G´ +endstream +endobj +277 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 852 0 R +/Name /Im260 +/Width 31 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x%̱ Ã0ÀT¸ô¬Òi¥a<Gñ,¿ô¡ â�O>²wvï,È<x�ìËwM P,¤5*µ"Ý&ùüÏ!ÂW5Þ¶áHËÙ#ÂTKo®è¡Ç{ý®÷Ø0Pñ +endstream +endobj +278 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 853 0 R +/Name /Im261 +/Width 27 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5α Â0Ð~ñË?�Å/¨Ø*^%lÀ�rÇ(¬@é(CÄQÇÅëNwÐ¥AÜÍ»_Óý}©4 =ÏòBåDïÔIi/ÍödOÀxÉ{é÷àBôÂas«rÕæM÷)Ó®åÐáÇ;78 +endstream +endobj +279 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 854 0 R +/Name /Im262 +/Width 37 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmÏ1B!༱G`rwskh§ræ(=BGë_¢11oà#¡@v�Í»!»ï«ÒÅ{Åæ£-Fru S?Úü£)©ÇN|`íW-8¹<ϯ #ÑP"[5ú{À H¤(n²¤tr&q%C²Íù¥E$(A Q?àt¹?Ïoçü( +endstream +endobj +280 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 855 0 R +/Name /Im263 +/Width 65 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x½Ñ± 0ÐRPfrEtõtEXë:Âÿl"=TYNà�¹b�`Hä2HÖ(6©`V*ÒD.ëXQ`0p¶MÙ_>FÝzN$ÎHâç æz~X¹cÅþðdMfê(õÿï|ÇÖnð4.ðÄÂaðTçx]?]8[;½¯Þ uºÅÖòZï3ÄñÌ߯ïïó¢°Á +endstream +endobj +281 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 856 0 R +/Name /Im264 +/Width 48 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÇPáÿ?æÿ?$ÿÿ@Rù?´aüßÀþ¯H2ÿûÀ�$ÿ?`øùÿ$²d@òÿÿ?öÿÿcªµKL"y +endstream +endobj +282 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 857 0 R +/Name /Im265 +/Width 43 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x ± 1Eÿ"åmpL =ÒQ²%àÊ+Nù|çÐITHÑe;Vd¾Xo-ðfã20Z¡8OKü¨NÉíÿÙ_Î>ÄÝ +ÜÙÇj0Fr3 < ØyéL3ÖÎÞ%ÊÍiî£TWÄÖãÖ«Dª «E£KÛ~¸U]uKï½CóÍÃê_¥ø/iLÎÀñ|½>R +endstream +endobj +283 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 858 0 R +/Name /Im266 +/Width 58 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x½Ë à DÇâÀÜG" Sª»Ü¶JðÑäÉÀÚbµ¿�¹b0 Ä\¢H²&Ów³!ÒÒÝ$*K1ô�ÈåX{6ÎÉ"g1["Nù2Y>XÏ6ýrE?ü~Þÿ`Øç;qsú>ñCß7ÎÎ4» ®Ï×ë×ï¹7¬Ýk³Ce¥qÓ?¸üq é³Ê¿ÒGì£\®×ý 6Oô +endstream +endobj +284 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 859 0 R +/Name /Im267 +/Width 48 +/Height 58 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÕÐ1 +0 á¿ô�^ÅÅÅ¥7«½[âÄgS\q7<>BQLZ©vèÄi#Õñ +² .=ÑcQ´þ&ÂÍM¾L2y½ØöüÆúµäg?íÇ<'ªÝ +endstream +endobj +285 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 580 0 R >> /XObject << /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im117 124 0 R /Im26 33 0 R /Im102 109 0 R /Im28 35 0 R /Im101 108 0 R /Im24 31 0 R /Im22 29 0 R /Im22 29 0 R /Im25 32 0 R /Im106 113 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im102 109 0 R /Im26 33 0 R /Im30 37 0 R /Im101 108 0 R /Im110 117 0 R /Im29 36 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im120 127 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im143 150 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im120 127 0 R /Im30 37 0 R /Im29 36 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im25 32 0 R /Im26 33 0 R /Im30 37 0 R /Im30 37 0 R /Im112 119 0 R /Im141 148 0 R /Im28 35 0 R /Im111 118 0 R /Im28 35 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im141 148 0 R /Im106 113 0 R /Im29 36 0 R /Im25 32 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im113 120 0 R /Im268 287 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im23 30 0 R /Im24 31 0 R /Im108 115 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im22 29 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im30 37 0 R /Im22 29 0 R /Im22 29 0 R /Im28 35 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im141 148 0 R /Im106 113 0 R /Im29 36 0 R /Im25 32 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im26 33 0 R /Im25 32 0 R /Im24 31 0 R /Im108 115 0 R /Im30 37 0 R /Im21 28 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im141 148 0 R /Im143 150 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im118 125 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im21 28 0 R /Im145 152 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im113 120 0 R /Im27 34 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im29 36 0 R /Im25 32 0 R /Im142 149 0 R /Im28 35 0 R /Im21 28 0 R /Im29 36 0 R /Im25 32 0 R /Im107 114 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im105 112 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im107 114 0 R /Im25 32 0 R /Im106 113 0 R /Im117 124 0 R /Im102 109 0 R /Im28 35 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im134 141 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im24 31 0 R /Im105 112 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im29 36 0 R /Im21 28 0 R /Im117 124 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im108 115 0 R /Im21 28 0 R /Im30 37 0 R /Im28 35 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im134 141 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im105 112 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im28 35 0 R /Im140 147 0 R /Im22 29 0 R /Im21 28 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im26 33 0 R /Im102 109 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im156 165 0 R /Im21 28 0 R /Im110 117 0 R /Im113 120 0 R /Im136 143 0 R /Im105 112 0 R /Im23 30 0 R /Im30 37 0 R /Im118 125 0 R /Im105 112 0 R /Im24 31 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im118 125 0 R /Im24 31 0 R /Im29 36 0 R /Im111 118 0 R /Im24 31 0 R /Im26 33 0 R /Im110 117 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im107 114 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im24 31 0 R /Im105 112 0 R /Im112 119 0 R /Im113 120 0 R /Im135 142 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im101 108 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im24 31 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im21 28 0 R /Im22 29 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im168 177 0 R /Im120 127 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im213 222 0 R /Im120 127 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im24 31 0 R /Im107 114 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im107 114 0 R /Im24 31 0 R /Im26 33 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im22 29 0 R /Im23 30 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im269 288 0 R /Im120 127 0 R /Im21 28 0 R /Im106 113 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im28 35 0 R /Im106 113 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im122 129 0 R /Im123 130 0 R /Im124 131 0 R /Im127 134 0 R /Im196 205 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im168 177 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im30 37 0 R /Im22 29 0 R /Im22 29 0 R /Im28 35 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im106 113 0 R /Im26 33 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im106 113 0 R /Im269 288 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im213 222 0 R /Im113 120 0 R /Im27 34 0 R /Im25 32 0 R /Im110 117 0 R /Im21 28 0 R /Im101 108 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im26 33 0 R /Im25 32 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im110 117 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im107 114 0 R /Im21 28 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im26 33 0 R /Im102 109 0 R /Im117 124 0 R /Im28 35 0 R /Im21 28 0 R /Im26 33 0 R /Im111 118 0 R /Im105 112 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im29 36 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im117 124 0 R /Im102 109 0 R /Im105 112 0 R /Im25 32 0 R /Im22 29 0 R /Im21 28 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im145 152 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im29 36 0 R /Im25 32 0 R /Im108 115 0 R /Im21 28 0 R /Im30 37 0 R /Im28 35 0 R /Im105 112 0 R /Im26 33 0 R /Im102 109 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im120 127 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im26 33 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im22 29 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im111 118 0 R /Im29 36 0 R /Im30 37 0 R /Im105 112 0 R /Im117 124 0 R /Im25 32 0 R /Im26 33 0 R /Im30 37 0 R /Im118 125 0 R /Im269 288 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im110 117 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im107 114 0 R /Im22 29 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im26 33 0 R /Im102 109 0 R /Im23 30 0 R /Im24 31 0 R /Im26 33 0 R /Im106 113 0 R /Im105 112 0 R /Im120 127 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im143 150 0 R /Im101 108 0 R /Im21 28 0 R /Im106 113 0 R /Im25 32 0 R /Im113 120 0 R /Im104 111 0 R /Im106 113 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im29 36 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im101 108 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im105 112 0 R /Im23 30 0 R /Im30 37 0 R /Im118 125 0 R /Im101 108 0 R /Im117 124 0 R /Im102 109 0 R /Im21 28 0 R /Im101 108 0 R /Im111 118 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im28 35 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im109 116 0 R /Im24 31 0 R /Im22 29 0 R /Im106 113 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im179 188 0 R /Im228 239 0 R /Im136 143 0 R /Im120 127 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im26 33 0 R /Im25 32 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im179 188 0 R /Im23 30 0 R /Im24 31 0 R /Im108 115 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im111 118 0 R /Im105 112 0 R /Im28 35 0 R /Im117 124 0 R /Im114 121 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im26 33 0 R /Im25 32 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im179 188 0 R /Im215 224 0 R /Im136 143 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im110 117 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im107 114 0 R /Im21 28 0 R /Im105 112 0 R /Im270 289 0 R /Im176 185 0 R /Im180 189 0 R /Im271 290 0 R /Im180 189 0 R /Im178 187 0 R /Im180 189 0 R /Im171 180 0 R /Im172 181 0 R /Im180 189 0 R /Im217 226 0 R /Im178 187 0 R /Im180 189 0 R /Im213 222 0 R /Im180 189 0 R /Im137 144 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im271 290 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im114 121 0 R /Im28 35 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im213 222 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im25 32 0 R /Im115 122 0 R /Im24 31 0 R /Im107 114 0 R /Im26 33 0 R /Im25 32 0 R /Im105 112 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im30 37 0 R /Im105 112 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im25 32 0 R /Im141 148 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im28 35 0 R /Im107 114 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im28 35 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im22 29 0 R /Im23 30 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im21 28 0 R /Im101 108 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im26 33 0 R /Im30 37 0 R /Im30 37 0 R /Im113 120 0 R /Im139 146 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im117 124 0 R /Im25 32 0 R /Im110 117 0 R /Im21 28 0 R /Im101 108 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im22 29 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im112 119 0 R /Im25 32 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im110 117 0 R /Im29 36 0 R /Im30 37 0 R /Im118 125 0 R /Im105 112 0 R /Im25 32 0 R /Im115 122 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im102 109 0 R /Im21 28 0 R /Im101 108 0 R /Im272 291 0 R /Im98 105 0 R /Im93 100 0 R /Im99 106 0 R /Im94 101 0 R /Im100 107 0 R /Im96 103 0 R /Im93 100 0 R /Im273 292 0 R /Im164 173 0 R /Im93 100 0 R /Im243 258 0 R /Im96 103 0 R /Im93 100 0 R /Im274 293 0 R /Im41 48 0 R /Im42 49 0 R /Im48 55 0 R /Im45 52 0 R /Im43 50 0 R /Im87 94 0 R /Im37 44 0 R /Im43 50 0 R /Im52 59 0 R /Im72 79 0 R /Im44 51 0 R /Im39 46 0 R /Im71 78 0 R /Im35 42 0 R /Im37 44 0 R /Im43 50 0 R /Im45 52 0 R /Im38 45 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im43 50 0 R /Im275 294 0 R /Im57 64 0 R /Im43 50 0 R /Im38 45 0 R /Im37 44 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im48 55 0 R /Im52 59 0 R /Im36 43 0 R /Im44 51 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im35 42 0 R /Im43 50 0 R /Im276 295 0 R /Im57 64 0 R /Im72 79 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im72 79 0 R /Im37 44 0 R /Im70 77 0 R /Im72 79 0 R /Im37 44 0 R /Im43 50 0 R /Im39 46 0 R /Im40 47 0 R /Im39 46 0 R /Im52 59 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im277 296 0 R /Im85 92 0 R /Im45 52 0 R /Im43 50 0 R /Im48 55 0 R /Im45 52 0 R /Im43 50 0 R /Im87 94 0 R /Im39 46 0 R /Im52 59 0 R /Im42 49 0 R /Im83 90 0 R /Im77 84 0 R /Im45 52 0 R /Im38 45 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im52 59 0 R /Im76 83 0 R /Im35 42 0 R /Im38 45 0 R /Im275 294 0 R /Im43 50 0 R /Im40 47 0 R /Im37 44 0 R /Im43 50 0 R /Im37 44 0 R /Im38 45 0 R /Im35 42 0 R /Im37 44 0 R /Im39 46 0 R /Im43 50 0 R /Im44 51 0 R /Im76 83 0 R /Im35 42 0 R /Im44 51 0 R /Im42 49 0 R /Im37 44 0 R /Im43 50 0 R /Im70 77 0 R /Im35 42 0 R /Im37 44 0 R /Im36 43 0 R /Im43 50 0 R /Im277 296 0 R /Im48 55 0 R /Im52 59 0 R /Im36 43 0 R /Im44 51 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im52 59 0 R /Im71 78 0 R /Im276 295 0 R /Im278 297 0 R /Im87 94 0 R /Im279 298 0 R /Im280 299 0 R /Im280 299 0 R /Im281 300 0 R /Im282 301 0 R /Im283 302 0 R /Im284 303 0 R /Im279 298 0 R /Im285 304 0 R /Im286 305 0 R /Im287 306 0 R /Im281 300 0 R /Im288 307 0 R /Im275 294 0 R /Im57 64 0 R /Im285 304 0 R /Im288 307 0 R /Im38 45 0 R /Im37 44 0 R /Im42 49 0 R /Im77 84 0 R /Im35 42 0 R /Im282 301 0 R /Im281 300 0 R /Im284 303 0 R /Im57 64 0 R /Im289 308 0 R /Im72 79 0 R /Im37 44 0 R /Im43 50 0 R /Im39 46 0 R /Im40 47 0 R /Im282 301 0 R /Im280 299 0 R /Im281 300 0 R /Im282 301 0 R /Im283 302 0 R /Im284 303 0 R /Im279 298 0 R /Im285 304 0 R /Im286 305 0 R /Im57 64 0 R /Im276 295 0 R /Im284 303 0 R /Im290 309 0 R /Im277 296 0 R /Im286 305 0 R /Im291 310 0 R /Im87 94 0 R /Im279 298 0 R /Im278 297 0 R /Im292 311 0 R /Im39 46 0 R /Im52 59 0 R /Im70 77 0 R /Im70 77 0 R /Im35 42 0 R /Im39 46 0 R /Im43 50 0 R /Im36 43 0 R /Im37 44 0 R /Im70 77 0 R /Im70 77 0 R /Im76 83 0 R /Im37 44 0 R /Im70 77 0 R /Im44 51 0 R /Im47 54 0 R /Im39 46 0 R /Im52 59 0 R /Im42 49 0 R /Im83 90 0 R /Im77 84 0 R /Im45 52 0 R /Im38 45 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im293 312 0 R /Im87 94 0 R /Im279 298 0 R /Im278 297 0 R /Im292 311 0 R /Im36 43 0 R /Im35 42 0 R /Im43 50 0 R /Im52 59 0 R /Im71 78 0 R /Im39 46 0 R /Im52 59 0 R /Im42 49 0 R /Im83 90 0 R /Im77 84 0 R /Im45 52 0 R /Im38 45 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im39 46 0 R /Im38 45 0 R /Im35 42 0 R /Im37 44 0 R /Im43 50 0 R /Im35 42 0 R /Im47 54 0 R /Im44 51 0 R /Im42 49 0 R /Im48 55 0 R /Im38 45 0 R /Im35 42 0 R /Im76 83 0 R /Im44 51 0 R /Im52 59 0 R /Im45 52 0 R /Im36 43 0 R /Im44 51 0 R /Im43 50 0 R /Im35 42 0 R /Im38 45 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im294 313 0 R /Im295 314 0 R /Im296 315 0 R /Im297 316 0 R /Im298 317 0 R /Im293 312 0 R /Im299 318 0 R /Im279 298 0 R /Im300 319 0 R /Im301 320 0 R /Im302 321 0 R /Im303 322 0 R /Im87 94 0 R /Im279 298 0 R /Im300 319 0 R /Im292 311 0 R /Im36 43 0 R /Im35 42 0 R /Im43 50 0 R /Im52 59 0 R /Im71 78 0 R /Im76 83 0 R /Im37 44 0 R /Im70 77 0 R /Im44 51 0 R /Im47 54 0 R /Im39 46 0 R /Im52 59 0 R /Im42 49 0 R /Im83 90 0 R /Im77 84 0 R /Im45 52 0 R /Im38 45 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im44 51 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im38 45 0 R /Im38 45 0 R /Im35 42 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im43 50 0 R /Im35 42 0 R /Im38 45 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im282 301 0 R /Im304 323 0 R /Im284 303 0 R /Im305 324 0 R /Im302 321 0 R /Im65 72 0 R /Im298 317 0 R /Im66 73 0 R /Im67 74 0 R /Im295 314 0 R /Im306 325 0 R /Im288 307 0 R /Im293 312 0 R /Im57 64 0 R /Im307 326 0 R /Im288 307 0 R /Im278 297 0 R /Im301 320 0 R /Im302 321 0 R /Im308 327 0 R /Im87 94 0 R /Im279 298 0 R /Im306 325 0 R /Im309 328 0 R /Im280 299 0 R /Im307 326 0 R /Im286 305 0 R /Im292 311 0 R /Im36 43 0 R /Im48 55 0 R /Im35 42 0 R /Im39 46 0 R /Im44 51 0 R /Im37 44 0 R /Im70 77 0 R /Im44 51 0 R /Im220 229 0 R /Im35 42 0 R /Im39 46 0 R /Im52 59 0 R /Im42 49 0 R /Im83 90 0 R /Im77 84 0 R /Im45 52 0 R /Im38 45 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im306 325 0 R /Im296 315 0 R /Im305 324 0 R /Im289 308 0 R /Im72 79 0 R /Im37 44 0 R /Im43 50 0 R /Im39 46 0 R /Im40 47 0 R /Im282 301 0 R /Im308 327 0 R /Im57 64 0 R /Im276 295 0 R /Im284 303 0 R /Im290 309 0 R /Im277 296 0 R /Im64 71 0 R /Im295 314 0 R /Im298 317 0 R /Im310 329 0 R /Im303 322 0 R /Im87 94 0 R /Im279 298 0 R /Im303 322 0 R /Im309 328 0 R /Im280 299 0 R /Im308 327 0 R /Im286 305 0 R /Im292 311 0 R /Im37 44 0 R /Im48 55 0 R /Im48 55 0 R /Im35 42 0 R /Im42 49 0 R /Im47 54 0 R /Im44 51 0 R /Im71 78 0 R /Im76 83 0 R /Im37 44 0 R /Im70 77 0 R /Im44 51 0 R /Im47 54 0 R /Im298 317 0 R /Im310 329 0 R /Im301 320 0 R /Im296 315 0 R /Im305 324 0 R /Im298 317 0 R /Im310 329 0 R /Im301 320 0 R /Im305 324 0 R /Im302 321 0 R /Im65 72 0 R /Im293 312 0 R /Im87 94 0 R /Im279 298 0 R /Im303 322 0 R /Im292 311 0 R /Im42 49 0 R /Im35 42 0 R /Im80 87 0 R /Im43 50 0 R /Im39 46 0 R /Im52 59 0 R /Im42 49 0 R /Im83 90 0 R /Im77 84 0 R /Im45 52 0 R /Im38 45 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im43 50 0 R /Im52 59 0 R /Im36 43 0 R /Im48 55 0 R /Im35 42 0 R /Im39 46 0 R /Im44 51 0 R /Im37 44 0 R /Im70 77 0 R /Im44 51 0 R /Im220 229 0 R /Im35 42 0 R /Im291 310 0 R /Im87 94 0 R /Im279 298 0 R /Im291 310 0 R /Im309 328 0 R /Im293 312 0 R /Im292 311 0 R /Im37 44 0 R /Im47 54 0 R /Im47 54 0 R /Im76 83 0 R /Im37 44 0 R /Im70 77 0 R /Im44 51 0 R /Im47 54 0 R /Im39 46 0 R /Im52 59 0 R /Im42 49 0 R /Im83 90 0 R /Im77 84 0 R /Im45 52 0 R /Im38 45 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im298 317 0 R /Im310 329 0 R /Im301 320 0 R /Im294 313 0 R /Im295 314 0 R /Im296 315 0 R /Im297 316 0 R /Im298 317 0 R /Im65 72 0 R /Im298 317 0 R /Im64 71 0 R /Im311 330 0 R /Im65 72 0 R /Im310 329 0 R /Im291 310 0 R /Im312 331 0 R /Im296 315 0 R /Im313 332 0 R /Im68 75 0 R /Im314 333 0 R /Im68 75 0 R /Im51 58 0 R /Im36 43 0 R /Im35 42 0 R /Im45 52 0 R /Im47 54 0 R /Im52 59 0 R /Im39 46 0 R /Im52 59 0 R /Im47 54 0 R /Im35 42 0 R /Im71 78 0 R /Im52 59 0 R /Im38 45 0 R /Im77 84 0 R /Im35 42 0 R /Im42 49 0 R /Im35 42 0 R /Im38 45 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im43 50 0 R /Im52 59 0 R /Im71 78 0 R /Im39 46 0 R /Im52 59 0 R /Im42 49 0 R /Im83 90 0 R /Im77 84 0 R /Im45 52 0 R /Im38 45 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im43 50 0 R /Im40 47 0 R /Im37 44 0 R /Im43 50 0 R /Im52 59 0 R /Im39 46 0 R /Im39 46 0 R /Im45 52 0 R /Im38 45 0 R /Im44 51 0 R /Im42 49 0 R /Im37 44 0 R /Im43 50 0 R /Im70 77 0 R /Im35 42 0 R /Im37 44 0 R /Im36 43 0 R /Im43 50 0 R /Im277 296 0 R /Im43 50 0 R /Im38 45 0 R /Im37 44 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im48 55 0 R /Im52 59 0 R /Im36 43 0 R /Im44 51 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im78 85 0 R /Im69 76 0 R /Im40 47 0 R /Im35 42 0 R /Im71 78 0 R /Im45 52 0 R /Im42 49 0 R /Im39 46 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im44 51 0 R /Im43 50 0 R /Im35 42 0 R /Im38 45 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im76 83 0 R /Im35 42 0 R /Im70 77 0 R /Im50 57 0 R /Im36 43 0 R /Im48 55 0 R /Im35 42 0 R /Im39 46 0 R /Im44 51 0 R /Im37 44 0 R /Im70 77 0 R /Im44 51 0 R /Im220 229 0 R /Im35 42 0 R /Im36 43 0 R /Im39 46 0 R /Im52 59 0 R /Im42 49 0 R /Im83 90 0 R /Im77 84 0 R /Im45 52 0 R /Im38 45 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im57 64 0 R /Im73 80 0 R /Im40 47 0 R /Im44 51 0 R /Im39 46 0 R /Im40 47 0 R /Im37 44 0 R /Im38 45 0 R /Im35 42 0 R /Im44 51 0 R /Im72 79 0 R /Im48 55 0 R /Im70 77 0 R /Im35 42 0 R /Im81 88 0 R /Im72 79 0 R /Im35 42 0 R /Im42 49 0 R /Im43 50 0 R /Im35 42 0 R /Im47 54 0 R /Im37 44 0 R /Im36 43 0 R /Im36 43 0 R /Im35 42 0 R /Im43 50 0 R /Im36 43 0 R /Im52 59 0 R /Im71 78 0 R /Im38 45 0 R /Im35 42 0 R /Im70 77 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im57 64 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im70 77 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im42 49 0 R /Im45 52 0 R /Im72 79 0 R /Im82 89 0 R /Im35 42 0 R /Im38 45 0 R /Im52 59 0 R /Im71 78 0 R /Im72 79 0 R /Im37 44 0 R /Im43 50 0 R /Im39 46 0 R /Im40 47 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im48 55 0 R /Im52 59 0 R /Im36 43 0 R /Im44 51 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im282 301 0 R /Im289 308 0 R /Im72 79 0 R /Im37 44 0 R /Im43 50 0 R /Im39 46 0 R /Im40 47 0 R /Im282 301 0 R /Im308 327 0 R /Im57 64 0 R /Im276 295 0 R /Im284 303 0 R /Im284 303 0 R /Im47 54 0 R /Im38 45 0 R /Im52 59 0 R /Im48 55 0 R /Im36 43 0 R /Im82 89 0 R /Im35 42 0 R /Im70 77 0 R /Im52 59 0 R /Im73 80 0 R /Im277 296 0 R /Im78 85 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 286 0 R +>> +endobj +286 0 obj +<< +/Length 860 0 R +/Filter /FlateDecode +>> +stream +x¥}KÓì¸Ý¾Å·YøÞ gé+ÂÇLÚØRk$»õnÂÿÞ "À*çÀ;7, odüëÿþõ×ì×?~øëá{1æË|ýÏôíù²>~»è¾R +ß&-_¿ùã¿øï´6}ýëø÷ÃB8~ |§åñ`ëâ÷²Àózÿm^ÿØH>¯·&ÊFûû¶éLìÊü~uipöJ3 ó·yn +X ¬åC�WPÎî0µ;ôßkxQÀ]?°^H˲'p²¾p Í+851Á;\¸C®<1,+Z!�]¿Âßë,ëxaA& ÎxM +¯Bðà½P>°|[ÀCøuÒ 0!p6ßçî s¢Ð ø n�+Bç® �mzÌ ¼S`q¯+�ªØ_xà¹7EöFUU#.[jÄíz¬C*9hRÀLËd +ò ë Op¦HܲJäz U×¼Sà}à1{îsÌCÞ ;¼ò»BÿÐC¢";3Ñ&ÆÞB&öê xütØx§"zojhFx/Úâømb!b¡p¡ ÓC>M1=âcôåÁ7=ôYa[èêNë=5ä³êÊÈ#à!¢ÆdSäW¨®CEN°RÀ6¶ÆÁ è<¬¿ÅÁÊ!æ¡ðæÍà²D§J¿}ÅÛïåê;aþ¦)|üë= +ͦïdàúnÀZ GÍ`j($èËZ $Ñ!e¶<d�[N gM-,Ùç¢ÿlÙìÚ>î h ÙP]ÚÃÐ%Ø>Z°~ÀìéÇ>rÓ6UMð¦¨h¨²mlx$!ði±&²A\¤k"»ø{X ÈN¹]£ÆLm3ÇÇ ÈN¹3@wÊ÷ìÆq½ì»Tt.F¶qÐSî\ÖMx¯I! îý®@vÊ]ðÒUÈè +eèñÛ÷éé*RÂCq½ÇC)¨$'ÞÔØ;@~\AÖ®fبG-RYp"-Ò¢¡û_¡]jo¬Èl½ª ®Yæ-5M¹Þ LMΤocËÒw4/-$9ÏÈÞ! + !ÎûT]ôZ ÓÔÞ'ÀÂÖê'Ú hn"dI ÒÔ�tÇtwÎGY°ìΪòÝþ@Ën@c~QC,Ië3º$_*É*F=$M0©þåBìeGCü1¶yäh=~ó 6"1FÆdct $=ã¼è°ìêc6xÕ¡%µjèâNÚ§Ö|_¿ýK®ÆdGSrùÀ#ð>}àáC¸íÕ>ðëw/[ +Lb=Áã3îÔþèþX?åÛT3lÇè.ùþêþ¸)ܶת t[T^ݯ$Ð]òV>ðøû²KnW¿Sp.·±&t�Ù%ßÃÒIÚÃÒ1=æ¬zÉñþì~¤ÀuÎIWHc +¤ÄÔ'÷ñ°` jX×l=¢aYÐÔBÔS1<Hn Ù7Ðô¨EHíˮŹ +4·¨7H°õfV/©!ÊÃÍÕîMM½$ï i¡=è-"©°zÄNV¤lÀA[(+ÒýÙÒgÿ[zlL'õoùµ£ëá¦Ù£?TCþ¢uZD"2�ÕàH`½Õ$,¸Di\ÜÒc§èqñ +ýQ9..Qå3.~Sqq0&D4,³((jKÉzg&½¡¶yä#q±èѸ¸å׺j½kRLãâ�e@´¤3Àßì7{ºVÙÙ�}³ÇÞØEX;dèË� "5 1¥¯ø,fÛ6ëá#ëgàW;Ê» ^ë&p� CÍ7°`Ö<ø·ÂÅ!#Wtò¢ñ�-çoïíG&C¢ý½ýxB!µ©·Bo>BjeÀÇ;ÔëVqû¦êVIÚhLcU9"¹ëï±±³ÆÆÌ8ê¶`³?@¯h¥À6æ 2 YnÃLR-&xPr®-&lL¹0%iC@B�øÔ¼#!K@®_ÑÜXÂ=9\ÐFäpu÷äpoièÉ!kLäYT½ÒÛ TÖ@¯£,ÉIkв#rj®q {oò¾¾7¹èúÞÆt;Âò̯ä}o$¸È!O¯hn!%a4 éFÕ°ü|* Y3½ÅÑçúÔqÔåAOet×ÂEBJ@¬u.áété�õ îì-=MÎ{DàÏþAS#4=à.²g5:%$ôÈ© ÆGÁÃÐæÚfK ØJçÂqt¨o jN)e¢$Ú"JÂÝ` +p§qØQl·o¶×߯ *ÛøYxO@Ø70"hElv²?l\°ÝÎ&J@/EµiEÛåm«Aëü>o)@TJ/*1ë§8âAu£!&ôx°0¼SÂN6¸9³ (M ñ ìøØÕAOà¬vúòî ë%õÍ+¢COÁ¤q>ijn A&Ìn�êÁØ´%{ûze8LÂïì]].&Åi½gK\Öc6$M +xÂLÀÊGDAàX4&¢W°zí +Ö*õÄÇþ.¶Ë{ºØ·´`µ&{¡£Ìéã¹CL4Ю]Ê/4kB;¬ÊtÈ^èú$=DkF 4{N#"ô)Qc¡@DD¡À t¡'ô¹ào>ÙKT¢KDJhZÇq UõCM¨À¬jX@n`E<8¤u&.mÐ×so9ÁNÛݶ>ϾWË +û-:üfü¬©ÁñîRuÌHHÔçCÀ(.Ç5Aõ ìDB7 ù#1½ULfBB4�ÈØJ8ÌdsmïèÝÞ6x°¤GæB-#;@ïKhI23×*l60ÐÛWðû@ 1²ô¶<=JF=Ê^°è +äDéèѬhÐ ^¹1÷¸xoép1í66b"Ù#tÖÞ"gëRäZIö¬íé®1ÐfBuGL§S0 è ÷ô¢ °1îw8;Ñ Øz$äq±;¡*ÖsdJ;±ÜEÞÈ÷x¨=;öx§7²ªHIllFBút5©ÞÛa¡?¡÷Vô'èÓ¯ðÀKOÜ<OÀ»K¨ ɤˮ0ÎqËN Jµz!!1¼ê±L³jb½¿{d<òV>xåyYùÃ"¹#ÑqZ5Ð^ý3´6h:BuØB;PZIkwSRZ`&mi]Pý)Ö£¼ü"«!¥$Þ�Pä$Ã;4bKjT@x AE¬jf/¹#Õ3/H꯮ Ò1>Ä)o¢e'Êf2løâ¸÷°%ÚÏÐÓ+µø¢·:2¤úô±ÀØÌ¼Y¶ãFÔL4?S+xNW([°ËCtõͱ·xh A´ pê"¤t¬ ·@o,× �Î$\õ¯¼} 4XñXH½-;¸¦Î$¸ê è^®§t5,èÞ"ïPÉ.ä ¤®|L[lBëai?¡@ùæÐWË¢mþyæEWñÉîPÏ,xò.Mõä2ñDÎòföjlgòþ)|`ohPÉñ öPF*oå]1äèI"V¾u¹AÓ`!¡¨~Hêõ¨>@!B»#,¤ ¢ê}ßèÝ�߸çù$ºd4áKvÑ=TɳÈhe¹©V{ï +×$]!Gß-]07Á«7ü$½Ð;nÙâ +)Rõä[ÞD ÜÜÊ?Î>é%GÅ!æÔ¦Kr,)°nxC>¢v¢¦Ixô)uôøÀ@*aM"£ÁqZGÌ(2{$ÂØ´*Gy«p? gl}÷,ë;ºõ§8@ÂhÌoR k`ælOäOqðq½5¨� + +Å�$hWÈT²ÄÄ4.2÷XÀÈÓ¹E,0ðt^Á¬N7(Ð9øûr¢³ÔHj2JÆy»àÒ lòLÐx³¼ôfP1tÒ¨Ý!±Jw@0z ùÐEb>´ÂB5¢·ø$È@)ÊMuaùHO:1Ѿé"³Ïý%]9âð¢YTåIO +hph4[ÂñM*À7°]&âø¦Y»|ÑD¾âM¾S��¶cUÖ�4ºª,&¡4l©Þ¾ M{÷:Òp¤CE;ð¡*p|VÙA"9P¦~A|¬£µ.è@U4&[¡9©ÅôÚXÎY§®å`½JàÒA{ +Ýlð õÖ�CÃî$§×oá\N]º§]xðyäÐ >5-*ç¡jhöy¬æ4ï Ôa!Ámc¢ô·RÄ@´Ô¦£ ͯNÁx~ F·©¥C¢ÛdJ£0,G�ót ×¼"Ð<tWSÀ×gi½þßà¦l¹Ð"&>gJÛâ»^? ¤»kq¾qpáÂÅO¿ÞDøí`EGXeEàZÆ}R¸:O®§z-"gE 7Hx»Ëá\D« HÃØ~5ËSKûe d¬$Ç|.gÒ4Ït�½A"ù{<x WU)Kñض¹ç ÖìÂkx%ú¼y£>Þ¡á4&äHAæt A£ö )$¢ís}|H¢%`s9U<~GèNÔ/XQØþMM=úyè pP9Ææ¢CÖÃÇì)[5Dm=òEF^ÿ[³GAHkdHÁlVÃ;äLè©æ½~¡GCzMèx1.â@Ö|�½!ÜóHC=Rzй¨R/ +'`¹îÐJbOÐæek:5(î`ÏOÄÜdcO{$ݱ1Aìàqõ�(NÐ>5]`<6DÄh 'hõ³'h^yÿ§³vïÅî=ñF$ÉìMðñªÕ©XBm¼êiúpQó£Ï^À?´òõ^ZOã"gÐ ¢YB`3Ü# ÆÞBÜGAT�$À��Æ +n` 6WõÀXwÀ¡ùp�*Ò�Uâa4-ÄûC&Èï¬öA-8òøo,"=¿ã&´²ÜÄÄ×R8Ú9èNè¡ó¢?ÄàAoóïÙÂ�Æ´-õªb¹SÎGäM°´ªæ>³ùOKPJ<ò\æjé|ö7¯ #èÛ:t IoÀcwLïjÅ}SDb[&õP«¾îcØ?ïqP°ð�rPpÈT5�i +øU£�¢ir>ßsÙ u:æ¬7R;ny#¶Ý% p¨»dn 7àu<(:N?)Z¤3ý 3Öé'1t LhíDñzü>jÏ®ÏHF´r %¡ÃÃ&¼V;p"¾3úâÛ¦ñ¬»m`dúC¿¯O?Éí'ÚøÓ¼Fé�´�juzT«ÈQthLcÐÄÅ9%ÌC6[Þ»BÞݲHZ 7<e[ngeÄÅÞヲÆh\ì×{<GêêÈ®£é©¤``k1Mè ²ñÒ ¨Êµ~Ûç5}¸tRz±@c¨£üÖ=Mij3ÐÊÏÖkB=Eú¦ gR¤m8loÿl¾®7I>_wïMéõ¦ äFøG_É»&íò0©½pôÉÞK2À|rï)üß{[&U±óHgâwô®-$Êî9>A)½ú¥§)g{Ï#ô]Á@òͣ˯-Ú8zÚÀÀ£=²nÕ/= â °á/È!x¬ +F5zkCR8PúáC7àô[Nù^uÊ>ê¬S¾§&xOÍ2qÌ÷ò½øeÒ`2¥#åC9h¦v'µâ£7M?OÇÞ~ä!>Öìë§:¼J~èɾâÃL+ØÁ@©½õøÏ``ô�qÑ@?ÜqÛrþ3N|Äw°´øøÊÅ~§RpY5 +v<Ç Èm{gòöOçøôö?0ËÎYxzåE,¤»Ä®=9Oj½ôfV¸VÚBÝ]òg:=¾H® EÝ+`³m«?ãM/.d³i!DP ¥ïà1¢Ù¼HwöhW@ñq[Pq"ÀEXIú^ür$�jVƵ¸¾5)ú.Üäø|ÑÜúã<pj;9ªt/~éð�oíY%[DckDbµ/U ¸YhÐlÉ�®¤¨hvåMMÁÏDÏÚkg:ÄC¼æÎÐæ¨¬SÜXEoÜà #Öñ:¥32´¾@ 'YWÑà³cT!&¯îæ%Ä+]A.µ^Ë]w´ØÜiÊèÑ#ï@£ö ØúT--`kµ3âhr!Üãâ�ãRèÓYCËÔC!ªz0AõM>9Cwhx4n´wUí(¦â YÕvA%²ªAVMû>Ö"³ÇÛéérSFIN\ï`�x$¿60óâ¸¯Ø +)jù¶ÆU!OÐ Y@¡âxh ø¤¢Ú.¦#+> H UWÄÅ'^âa>wÑÔ@·³¨ËĬø$Þâ!×¼=¢¹ jb +ÕÀ@õKÒ6@¥ A@õ¥Ð04¤$ÈqmtÈ ¼øÅIÖN`ZªKw¤�Àt=ÁsÕÀ]׬ Ó\Ô÷(Hli9Ñ·5à³g5@±%+H/qIô¨ðèÇ;¢êØÔ#[2Ry 1ڵϬüY³NÚÐôBBÆ`�ÛVÕ¤Ûv1È©ÕÕ;2ëì®A»#NÞߦFX¦;RPµÈ ÜáÞÜÓ»Cãñf÷JçoùÄ#ù¤JGHPd!IýHD\üj ÐO0á1¯ÿÈ·üâ"¨ÿ.ÙÀã½úÂ6èªÍ$üÌÍjæàgl{m0Ã@Z ;¥ò é 2rlÖ i&ÁävìóL&ZËÂñ½2í� +¿p PxÊ2ÅxG>éÝ�Ëõñ¶ÏÀÀ¤ÉÁFÜJiÄ4C`xä�6i`LTúkD&bØ®p±Xì) +3 +lÚê/Ì6ìHP)9°üYÀKºh^\,dvÝ?ðþô-³q"±1EÀÉÜÁN¬·w,ðÀC *ÕpZ®ôHUSeûéòܨG;4ªD8Þü=¥Ý «ë°Á2©Z¯Z3ágMòö+21+à÷x¨½öxøAs +é ÒC8)kÆádèê89I.Y·½dÖ«ÝÛKf½ÚRqË£ñ«æÕ2{\f·Hö@À;(@¡ Ê1ô$#ÐnlÀ/÷¬ù^Á0iÍÍtk¾o´æ¡%ûÖp$D�)MÖ¿@=�n�;d×$ûN'2ÏÌÙ>»Å¬ß«y}@Íj CXç ýZÃqýÀëq5feýCSfà +> ;4¶ë$¤_G=Pvhle¢ã tÆVÝÓïëÝ9îkÉ+:ìÐ4øiZÖÞq¦ìÐØU]×YëçÈMÃV=]þôZýN<$;4¿£{´ÃyM +{5].¦)`8PvhJGqhNPæ;,¯C(o/¯;°B¢ï5Ýu¹^J0ôÐôê~[1@Â2YÝokmöñ#jn_?SÝr§ßÒjjÂþôûz·c}9<p ÛqæpéÔTRe¾Dy¨dC>@oÒ1úø¦ÊÑþ*Çu¦ãù�ry¼sQ»ªj`0+«OAå~â©,_mû>í_nqij!O¶¸´Vµq8¹îi>Ã*J2D9(-79(;»Ôð�²eçÀGèLiXüä³¥ûËòþúî2¹pn[÷Fµ5oL_$È;Ø÷ñ[£NÓ+¯#, â<°Áxé¸ÚíçªC±oóÄ|1gt>h;ÈÔLO;¼h`¯4FÜÆ6*ÄæKKðPFÒüÅkh>M(\dÞÂ#¾¼w)«·@Æ×û³4_ô ÝAw@¥±,\/Òè ^õâ+Íç·3VäWlTÔ¦÷\Û`î¹¶ç¬gÔèï[+ý>SgmYRg½aR³6¥l +-' +îYn_Ó,µ+ õTÉ ÇNDJAò«(`vB^t+>§;ÃC?¦;é¤çæ§erÒs-Ê+G+¨:¢Ñ×Lzp2w§ À'>0ÐôVêz'àùJ§fëZ¾2Ö¸WÖ(eý\Ó[w;@oz«èn'êy1ÑTF-ï=×ë0LRáÑ@àÑh,Àñd ÀФixhdÒtÓd³Mo²&cx4 ñÀÀ¤i#ñ0455À[¾VÙ¤i$Å#¦³ÆC®Øi¸7ªwô(T¬`[_'øðQÑF5&Ñ`F³ç´§OcßÞ=&Íq Ñoã·;kˬhÉsDQðiÓPè%iÐ¥ÀC©ÀX}MƬ&ÇtÚ ÕCÍR)Xj Ïd]íü<àúxGqÆ4¶2 È"6´Ðc .Òß ÃO5£ CÖBÂAþæNw(?yLWk4ðü°O5 Ðt9e"¨È ±Á"êrW+$G³ªËItYxvðÜj««Úèj->®x@Ý3q´8ÕT¼Ùðm¬{f^m©Ám{§ è5e-Íç +mB70RTÚÎ< ×Ú +y¢À%¶¢<°ø+¾ºD¥1a·MÀv©©c-Sq¡<Õª>p ÜS${ARçixèF@[À¤ïu�9¦¯Ðµu³+ZÞç!#i¥9æ(î&ätK]U!ã]M6L´¡½Å¹öÙ6Ò§g)ܧEb8^îk£A_ðÔ ÅÓpª=&)äÝ�ùýz¤!ÎÎøÛ¼¤[^fýzIä©»ªèÈèwI°,÷Ô@3VÄDö÷óõÙÜÓÄ{|Þ×ÄÑû20PpZ\@ÚV÷n±?#ç ¢ ë:¿BÔ¼ _[øé¯ù ë j ÅC=K(x«òúÈí5¹Î Áäl{²èbë¬ïïÿ¡×ªBâ¢Úsw\?4¦æ'ÂdBCl=@¯oö¡×éAêRë°öûîØ´à¶N§åVc?Ë>½Ëü«önþì Ö¬E÷N»Gâî³Põy§r! ¬<b¢d&çé)¢ýùþ´!8nýJË=Av1H$¤ Ä`` MBl Ñ#¿x°ónHò#íù<ôzg CE2ÀúÁaÁ«÷uùVd±«9[äëX«3ËîH&£QD¦P@qT´Ò®¡p.Þ"sñYÓä4¸ðu8hàí<Zt zv¥"Øw-|WÝ âïñPvI RRQ{|·ª7ÀÒ 1Ð-Á^ß!!¯íÇ>Xjó%òâzt½ü $@å$¸mÉz©r6.7Ýb㽺¿ÏÆm@÷èB7ÀÚnjÒ×$ÇåöT!MÐD¨õ¬ õ©H»&ô¹Ùü·Úek9âòÜRq #¢ÍµÛìªâwtÛUûÀë +×"BëÙ:G¯X/îÀÕÏòÞ~hâ3ruIë ×\3û_2Ø¿55/¨¨£ÅN¸ð %àªp½(í�?ûóï»nàÜé¶`-:B¥ Ù O©`¹Q=èW]ÁþÜ3y>é�W5RóþûïB0_ÔH¹ÕV@SæÜ½>p¹êa_St¢øÜqqìk½ÔbÞêgÊï¿. $)¾ÀR?SÙi=èö<wúm¶¹TÊþ|þåXxP¹àÜýñYn³ç_~zûË÷ãÄ?}ÕÿmûËï§?gÙ7¥dkMùq÷×NQzú5J§÷Ó·ß_�õãåö¯6Ä×ÞÄ=WbAV¡p¯«}'îѹWwÛÃÏ8ÑOª{y]8³ÓïmÿÀ"¿ïàï?ß¾sÿ¥ìF¹&}-±×¾+ýêýD?bB¿¤ÿJ?Ô¯þ\-ZÞªÉïGtþëïSúGMûlN÷ÿ0J)í÷ÿ®þ 2àÍ ¸]}½«ß¨3PÔW '1�%J@È +Íè +ÂæÏÕÚÃùã¿¿Üú}oàþù=Óoû}oÇ·0$5Ðùö»ýl¾iË=ÂØc +©1ý}EjïÑñ¿w�Óß÷Ð}Ð*à+ý(ÿ(ýº?]¶r¥YÚ2}zö¿+ýk7ÒY +u-óÊ< V¬4ëµùÖÓ +¤¦#gX+Uêý>=ÿªyÌ�:DnÆ�<Yÿ +Äö :°»ÞòàB¼î`,áM~òQ>ܽ¥2O÷Òáä÷ý*zàX¢�Ã>÷Iñ`ü1þ¥÷5êĪûOÈ�¸«O ):ÑÖDik|ÕY-R/y«±)ëçðê×ub5PË´"J Ôéýç$í&j@ë; ìK¡dç_~zûË[¡ýåwøÙæÿv¯_«Î9®×ý&|<=ò_YçLØ©ÿF=À=Øÿm7eHÂgÿÀ �¶+Øÿ@üã¶gÓýéñË÷ÒøÅ[t²ÿêÿ;É?®Ö(öø&�ú}ä¿ýUÜ¿Ç÷ÿ\ÝOXÐþuþ«Õú=þã uç¿ @XEõýVWtb�ðËË=Z½¸òûë*ý>»@ Aóo=ékçaÿä÷- TåÍpþÝ@G1öí_àò¥Ðî?h +'�hÉýÇ{¨<`ÍÞ_k7ºîÿ¿Qúïîã$ÿ×}þǨMgê J¿íÐÅmúòq=h°ðÿf°VÍ2¶éË=2 +FS�43£¿o¡=¨e2ëAµb¨YªÍõ Z§Tÿþñ\ðÀëË�úö`'ü +³Y±Ý +öñ;Ö+,&`ªàã<D¼{Ö�úÁÇøVÎæ®Ã8üÅ[Édݳ¼4¿¦}.@²díW%²<KCÊTíîýÐ%²<å²Å)ífe¯²L·�èëó%¶Kx¨µ\#IºÜpܨe!׸®Ú5^ë^(ß«A0¯±³è%øç}âÈ? \çéòÁUÕ²ZÐShð6¸vѦÂ8ò¢#¹ôkEO÷) HæêRH0ÈèWÆôµÄúøûú¦kO.üÓ¡1õúúýÏoRX¸:»«¨ì`R PÒEôUË,_mâ²M"°~?}Ó¦]F âýY¥Á@ôxºÕþ%3Ï*Õäôûò³ÊÖe@èû¬D{ÈlA)L¼eÒ}7¸6é%4¼eÒKlxˤ?8ðI÷»gÒ˳dÒ©&x(Ã9MÐÞ#´§B¡ýv %¾.!^pôs£X÷×VPfMØZêx È àK(o´Ò% ¬ÅÃ]pï!Æ +¦ãtBÇn ÀÈ4HªX§(AR«TMõöÝ¢¬@¡«^û/Ëf^º\+8¬¿Æ©,QÕ¦V¯à¨âë½´º¢ý£Vªj$úñ¦¨>¬GÕüûý>h¸!^irZ/¸V¨0{Í¢wÖÓ¢ÎÕ£ôüµwtúü1Mÿé·ªÃz%Qý·»î?è^}ZïÉöüÓ¨&Ãóë/Ýßågê¥{i¿oæ^ºWtþîuû×£Jo4þ¥½Iþ¡-PTjZd*5møWÊBûwÑWW£Ðþþ8RK/tIÕ<|`Ä©Å#4ôAü~{>HgòÙ!6¬ù ÞvråÌh½þØ^@×ëí>»qX¯çêK~Ð^X`¤]&£óë:¼U«töÏ«M^ôÒáÁóèð +^²S:¼5ûï_×áuxÄqÿÁ +}º?½Ø"©2º?½Z)#úø�Aâª?*Âí´þXü*ínÍ#þh×Z¤¿x±Ìr +<®¦ÿX±¤òLçXöõa¹²HüK}gEýEÞú[±ËÁ�¢·~R¬äÃ-þñ~éOu²¿¨ÙÛÜÓ> ùÕÕ}Dòô7ñ£¦?èùSÎOå¯Îú¿ý'Ù~ùV«=i¿üäw@ÿ,÷ì_4ùçµ6÷ìWÃêéëëPßgG\î0¢"Æj�N0Q1@ +ð MvPÑ©Ï�>ÖAm`Çùb Ä2ÞÐ1±aFHN_¸Ð¼?rWà-n·¶WprX¿ô|]£{É)ùë5>Qu¦æ!RØêî¸ ßY.¢ÜÂáí¶¸$ï�pÏ`òøp8×pØÉKX6Qx¶ ºot;AkíaÙÁ;» õz8¼nGÇõáp-]<®×ÃáV»}dk8LÝ:þ¾.ã̤[íöiÿrJ¸¹£ÇõzJØ;´=%ܦAÎ/§|EaëÝ?¯½çÓ ¾°TNð±ý~J'øäWO'ødÁþܱ¤ñ/wGWIþ)ÿf'ñ/åè7À?Éß@JXÔ¿½Þïqùmîd÷Oz&¿´÷× ùÕù·ô~+üË×Gq=9¿EöGIG´Òo/Ñ÷/·ä'xxÿzé}-ýîÛoB¿ì§NüÐ;ú«ôßÑ_¥÷üýcº¥¿ÚÍYýÕ00ûüGJ®ýVhYüÈÁ"·êûåYSòo`Ѻ°'w�Hxrmm%áÿáã@Æ6>�hpÚð$çÔl3Gk<{õbÚ2ÚÐ@R××¹ÓúÑÂÁzSð�Qù °¦ý�ï\$Lo¬Û¦|¬Øf)�4)Z·5ë Ø\S +ía@p%[ݾ×HÀw]xqÁÇÇ]RFR + Ä«9Ú ,·×1wì¤2z#ÑÃ|ñ#ħÂ×)¥*NpÉûóXCÝÁ;Gc*HÙZÊKÛ`Ùrk¢Éðr±gE´ÐDÓI«*gÒ*<öʳ§Uº_ù\§¥¯\tá´° ÛÍ*C=-R1E\§%¿òiû¿NØÔ·¬wNï¶ðäl>zÈó*¬="À@^Å×¼À$¨M�ç@eÚ3áñüyÀþò*õ¥'�<¯âößÊ«¤$ +�áè7Wñÿ03ØftÍ ¥ª@:HðõÔêøV°®ÝHq®ËÖRãô.[ç5õ3<hk¹éq½pæEÁ®Vªw<¿ÞÀUJõ±m +½Ø{®%÷SÇä1ÁÖxd½ó§ASXïü)cç6s?ΧýS?.DÀ°ó笾s�\poÀbS×4ñIÈѹKh :¿î }�©"wDJ&ybî¡´væ?0ÕÔÆ|we¢vSH'`QMÅö¹¨Æù-¦xĨ¢*N|ÙÁGe@wà-ÜÁxTSr¢Ò÷é2N«H@8d}j:ëyí`ujûõ%*ië?;µä±´¢C¤ö0£ßfÏmµ[íèqýÀcw*ûxìöFâÕÕÚïÓþõ¨Îkô£÷Ðþ¯÷׫;*#¦,A)8ynàð` XÍÖ¢§h£nqS§#ènqËlv '»[ºÞûI"¶'ëÃhÐÑqí aäÅ!#¼8´üÔá×ÞTùȹÃ%^UÂMvCçêQ¸N74õö7ꬩëtCsz®×MÆrtf_?jͰYS{½±Òu_§ÿ´=EeÑùGºùD¢²+¢¢rí÷çºA['ÀþzÊ£ûHQùe×S)ªà$þá� Ýß@'Àr*ì|_~¿ÑïÀN¦(Ê_'E×9?Íò+¿qJþm½óæßôçT|AçxãXáýëokäÍ0à÷uo¸¡vöå¿qì×ÀG +üz¥Ö[;ÉRM¸l®ØB¤ÓMNP1»'àµè A¹}}$äÈÜ ÛiÈî&ìç +J±¬`= +ÊÈú5ëIPÜÄÈ~nhãOY:?¯�wûïÏ=u°~ (¶hÿà¼öt~Ý lnl¨òðüã/G%2ðRYßÌ5ïnk(ß_*ídC^Ôø·ûRi'òRø»A~#/HþÜÀ~¹Q,RèÃËĪÉTX ÓÐsÒX1ÎGÐ{[^ìô½'±v? ÷$.~@Ï ¶ÇÚÞ5ÒNåÒZ8UDZßÉëáðC[KÌ6 \â«¶ð¸Þ[Vce´p +ô²«ç \»s[N©| ãÎIà~Åø¾¡»òq°à5+ÚjÊe¾\Zo:>Guۿؽ|ÜAØxï^Øðºþá¤ÈHÚ.yÞAç{\b}nkåJY?ÓQÙçõú0¸V×+ÓôþÓzàϱqdü>J+°qh+:ÿ�H$¢¿bÏ[õé"ÿó<óÞýõ�ü�Èùv~ +0S;N(ømY¬dþõGÚ6ü¸ÿ´zü7�Ðä'é×�2࿦ÿÌ4ED?}wõ§{ô§üÓôgèùíü|<¿òºjüKKÇ×|Ë~xôïÀ8g%úõ@ÇõÏ+ é?O·ìwˤýhù'ò?Ë' óä4ùáùÄ#ùwKÿqâwô_Á¬¿£ÿ|öc è7O°¢ýÂúÃcÿQVª�I³ú³ÀÝ+ú?¸{÷¿æ[ú+¤?tÿ5Õe¯"ÐÔ;êí=ù N_ÞQnnùAÖ¬£ÛÞâP=fô«á×ýë ñ!FÑÿ%篥9½óÓar ÚOY´Hô££2:?(ø¦m¾:0Gþ³ÀP:ÒÛúfkìñ÷µg¢àÃïëd[�s\/MIØj»Â½ßpÿr�P]lësÇaÓèÛù©i¶1àáþôºVwºÒÅÖqÊ=úSþ_4þç¿ùGvìê$úñyôIâðm%ú³E¥m(_äu±ã$®«³ÇõIo[²P~ô�Ô!ú$ V ÿP8A¸öè÷dCøÖôOàÀóëSR0)? á{V~JÇùq¢þí&&õOAøÖì/¹¿åWOÀåxË~»Z#ß³ß<åïñÏ¢ÚÒo¶ û£Co]6=úÓ)5;à¤?øZhj/¼C`D ÿH�lIÿÓßo ¬®ÿÀZ÷³È¿,ù_¯KtÐ~êunö_]Û¨Ü?ïÒÑôÅ^ðÿF°°Ñ!¾Cþ~ôÐTD8JV2 4PÀ̬�$ý2íaÒøö:i@JaòÒ +g¿"úéüÓ +gøVXÜ p×|6yTà¨kþ +I·aB@ÿ,g@ò£f +f@å�$¼9ð3ÜÄÿÓQsà8¦$<¿äÀ¼c2öèÏp7B<â#¤$9 4ÿ d ³æ�nEðÇ�:=××Z´ßi_:LqKàô£$íÌÏa²î 8?ÉjÛÃDµ1Nî¿Vð´°ÿÉMiëõò^å?cÓõ©»Ðo ýxmïì¿%Àºûg ´¬×_Ð]Å´?ÉxA'tÅT>®1e5úó1»+Ùþ +* ùÜ$Ý? àÚÿ@È#þH�ULüþ¢ Ôßã_ZjÕç)Î?@÷ô·Kþî&Ð:÷Où¿UPuøî¿%À:û§ è~ ½Ü³¿nµÒýñ1¹IâæìTÿá6ðÉãïk°am&B?¿ÚEÔ߬ +Ño ËÉþPú{$¿:n]Á~¼£ÿ}4·ü·=sü}9þòXé ´ä$ýÃó?Pɸ>7ÿ7Ó$`wý§p=ôÿôÜ6âoÿXþE£?¯` +·ì_¡þÖg +dÿGò?ÿÐüÕüZúo©ü÷·!o¨gÏ7ô�u V¦jÜÑ`!Ü@C¨A +Ð7CØRní CXy3$'ù°y3´.¢7C8:@rÖ>@Óͽ@0¤ªNÚ.ëgܽíðûH : Úm]ê¬l3ãßWÞ°ëu7Ð63|ü}9Þë ôGi@Vå$ú³4º^ë¯itVØ:bëA! +ä)y|aÀ÷Bÿú«~ñKûe¿~õ»ÒüXøUkëüê¥ÉÐÏÅ÷ú«ß~ýÓÿøó×OøÍúûÿòõoÿú˯¿üíÏ¿ý¿¿ùñ·_ÿëÿ}ýÛüü~úúõ?ýæ×ÿüõËï¯ÿøÃÿùãß~þú/_¿ÿùç¿üË/~ñüãûçßÿáïßúñç_üúAßýíþéÿüâ//ë¾ÿóúç¯_ýïþÛ¯»ûÿÚÚm +endstream +endobj +287 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 861 0 R +/Name /Im268 +/Width 49 +/Height 61 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÑ1 +1 á?LgZaÏ`g¡äJöx+oâÁr1ÎÌF±>fgM@ncTjä,ä;ñ,#á&íjBE §R$Ìh?&%¿Ñ¿!½Ñ!¢ÎÕ©FøFføâ¿S;¿¶ÎèôSÏà7ê$ü¶ÄÏe§´Â3Ûâ °<ÑÏÒÕ-µÖ5ùâ§i6A_Ŧ[6ûãe÷bcI +endstream +endobj +288 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 862 0 R +/Name /Im269 +/Width 44 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xM˽ Â0áÏrq]¼�"EDáU2@Ù AnÁ¥pæNïw^0ÔÜ*è®ô¨8ÜhãCL;Rduå«Dhåy3ÿDS_pÍÎ}³ä«»´+Ì ÉfÏI}4}TÇÕbúMÒNg ¸ó)?/o|ÁF¿ +endstream +endobj +289 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 863 0 R +/Name /Im270 +/Width 56 +/Height 61 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmÐ1 Ð!kl³ËÅ6ê¹¶â(ÒÂÈÎhÔG>þt¥VÅv¾Ä´@ÏX+°{:l·ª}Åy!ÙûaF»c'Ãv%Ö+cg5É´N.Ì:541ìîôNÜ®õÆjR§¼¸¡¹s¶wvÉ®òâ »Rl'íåtXQVÙueÜ£äREÉ3ìÄædàß½¿¿ü i +endstream +endobj +290 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 864 0 R +/Name /Im271 +/Width 58 +/Height 61 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÑ» Â0àß²@Ê +¯¬DIoÂ4d2E¹ JAa}.ìóù?�HÁôOQìÒh`RhéFxOVîN6öÉ·øI÷vTÝ@¶T-ªU¯Ò5àLÕÙ£_ªÉZ.ZË.ë¹;TE~øØôËvŰl*âí.»úÚ±ì:»ÍÖ9â úg£ÆÅSàøx +¬Lar¥&±_µ!#Q4ÑË}ÒVmæ?ßnÃÅkT1 +endstream +endobj +291 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 865 0 R +/Name /Im272 +/Width 60 +/Height 68 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿþã§0Øÿc`ÒP¡JÛCiy(Í¥ÙaôÍfÄJ3>ÑРͥù¡t=ú(¦¡}$Ò`@g© m\j»�¦Å¿Ù +endstream +endobj +292 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 866 0 R +/Name /Im273 +/Width 76 +/Height 70 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÍÒ½0`ù\P2+dºT c¤NãlÂ*TRpV$áòS§0XHHè3u"D¸ "SP5ÐU=>uYÆýuÆrÙácU}¶oBi¡²¡ÌªÄ~kk'«ñ~Õ¨Ân<B-¶Å^¨´¯ÊïJ®ðEVøJh:§ªüKþÚÏdU÷AÞÉ£¼ã®©(nòi muªatôé?j"jJ<9âiâ Ã0Ë¥nkÙ2©éé´ëÒå|^_îéu +endstream +endobj +293 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 867 0 R +/Name /Im274 +/Width 39 +/Height 70 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``øßÀÀÀÿÿCýÿÿÿÿ``þßÿÿÿ?ù?ò@â°õÿÿÀó Áp�D0NüÙ Ó¼ êÿIlº[íQ%�{Å +endstream +endobj +294 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 868 0 R +/Name /Im275 +/Width 52 +/Height 54 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUб 0 á³,Ù [H¬à"JU^*5ÂQß=,Û×|Ýÿ¤#"Ò$gkBÍÖX£6A7;cn¡}3À9¸@ièÀôÀ;kL¬Ql!}1 Ë}qYð`8¸`¿iTZÊüçkù¼ÿ¦O³ +endstream +endobj +295 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 869 0 R +/Name /Im276 +/Width 55 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUб 0@ÑoY +´)PX)EU! 2£xJ +sg#n^wwß^ÞÊ^#6ÂF/Ð&¾B¹ +ñ'VìYÉh5fPrÁ&JeÖ¥ØpYbV&6¡HÔÛé¨oÒ1Rt&B×ByYìÊwdà-ÒÆ®>2k*ATúþãqÿül>bG +endstream +endobj +296 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 870 0 R +/Name /Im277 +/Width 42 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5̱ à áC¯ 3m +ËH)SD)]DQ2'ÀxÂ(@IÙyâæ«î~±ºÒ18£3F÷¤]TÁl3ûðIU,Í·Mt©"¯àý+8Õì®áû×tT·Âv£í8å·Èw¯$®$©@ ZtCsà4KÊP%Ü®ásÿbe=£ +endstream +endobj +297 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 871 0 R +/Name /Im278 +/Width 55 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÏA +Â0Ð +f#fëBè)Dq+ykÏä æ(9Ë.JÇ? RtßùHª:ÆRÙ�d êØ±g,dFªÄ7ðüKC³'9°zdrìŰx2±b],ú6*¼f±ãì$~ÉÿWôüzµzì¿÷jì¬WCeo½²sT]~5R¹±05TF\Î×í,iqX +endstream +endobj +298 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 872 0 R +/Name /Im279 +/Width 51 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÀäÿPª"È@PÇ>c96�q©5ì +endstream +endobj +299 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 873 0 R +/Name /Im280 +/Width 27 +/Height 75 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``ÀÀ`Äÿ00°``àrù00Èpí°=300Ôñõõ@«ÿ3@h$©³§¡[Àø�Äß ÿÂìða í]½] �ÿ(8 +endstream +endobj +300 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 874 0 R +/Name /Im281 +/Width 37 +/Height 69 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuÐ10Ð2樸j&îÃÈHÅà&¸@F +jÊ·ÃÒ,Ë`�¾´+QÞ5]Øe&(9O!hÀí8ÜuOÁøyÿ¡6M)$¢ÆF}ÆIv¥büy}Ù¦ç¿1ïq÷|ÝSý¤¶EÚ +endstream +endobj +301 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 875 0 R +/Name /Im282 +/Width 18 +/Height 74 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x1@@DßF¡#QËºÈÆDáVÚGP*Í. ¼ræÏû`8£X¨¡°GÜFaR(R]ÂCQc~süäSã>/jZÒ(í¶Þå C¯RNïè)¬¦Õá>*ï +endstream +endobj +302 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 876 0 R +/Name /Im283 +/Width 8 +/Height 8 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³©ûu6UÓD6¬¦ +endstream +endobj +303 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 877 0 R +/Name /Im284 +/Width 18 +/Height 74 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x!0 êÚMÊGÀký¶Oá H$e àHÆÝíÝlfÐ&Ó¦Î6±C¤½QxnjÆå¦üãwãþþ$%#«ªwy%¬*Õ©âº)-þ�½®(¶ +endstream +endobj +304 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 878 0 R +/Name /Im285 +/Width 35 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]α 1 áYÂÝeRа�ÒUd%à.X T¬ T¤g(àh>ÉÿÐÈóKþH3âÌqÎÃhÆÑ\ɮɡ¸ªtFïÔÁg¹n¢Oê7ôÂ÷ÚûÊ[?WrâìóhyÑ¢>¤Dö9¦è¸ùAÒDµQcABǼгL+HÁr½;®^T«D +endstream +endobj +305 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 879 0 R +/Name /Im286 +/Width 27 +/Height 75 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÃÀÀðÿ�ûÆ?@Î? ®b{n``§%Z̲ü3Ìõ@ù`ÄäAê@êiéí¡þÿq(\@ár´wõv5�«Õ9, +endstream +endobj +306 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 880 0 R +/Name /Im287 +/Width 4 +/Height 75 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKø@-Àâ]±]�¤0FÄ +endstream +endobj +307 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 881 0 R +/Name /Im288 +/Width 38 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xU1 +0Eqèèº9º¸·×qð:Þ£x +1ùBÄB´4Éû@ Ò IôZn�¢ºb¨hOãe8IÅ »cu4õCô4Cw´úÿ÷õ~ó²/âJ.§ ¨FIê¾âÀ0e§y; C +endstream +endobj +308 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 882 0 R +/Name /Im289 +/Width 55 +/Height 67 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}ѽ 0à¶Vf;Á¥,ºdG°´õÔà?äùà^#§Eé1ÃxLßD·ÂÈøFeü&¶Ê§WöCÒÇÝvÌrÛêp!PA/rȾn g˲Áû~ Æf,d P¯P¡ë/Æõ"vf +endstream +endobj +309 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 883 0 R +/Name /Im290 +/Width 47 +/Height 62 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+`�?`ò?¬?�"å?Hv°#=$þ!HD¬¢6ÂP_CB þ?üÿÿAH¾]Õ�z H² +endstream +endobj +310 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 884 0 R +/Name /Im291 +/Width 53 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuÐ1Â0@ÑeÈFV$®ÀZ!WáHäP GéÂÖ¡j° +TK^dÅmÀl{¡[JºJl²Cx +N3Á>ãFaÀKÜzà X¹+IßcSÅV¢fýA`YOßH[ñeÿÌßô++.sCÓ¤F¬ØØ¥²]H»ºÝËZ;b$ ³»T Z/]¾èØÚþ±»=ºjRþ +endstream +endobj +311 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 885 0 R +/Name /Im292 +/Width 8 +/Height 47 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³©ûu6hÀ¦îP¼ÞØÙØØøxd, +8ô«æ�i Ü +endstream +endobj +312 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 886 0 R +/Name /Im293 +/Width 64 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÐ1 +Â0Åñ +f³:½BÁÅEêQzÝ\¤ñJ àE^ vïKÒé·þß *Ç(ê0h'@Û$£6+o3°Kni ®Q=Úì *ñ$Ö µY3xõ"[E5*'*AÔ¼(ÓÊÚÔ?W2}gŤú³iæüR&é,Æ´¬Ù¢+ª¤æ»¸³)ØbS¼¯óLÊ\ +endstream +endobj +313 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 887 0 R +/Name /Im294 +/Width 59 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuα B1ÐR¤ÌçPc 8+8J\Dâ?ò¼Ïoñ-¬N{DÒ¬ù£k +Ö\ÁuuK+¶j¨aaDUãdÚ5S æW³4æ{·^¾Þ8ÔD9z:ÐèsÒK +×1têhÉç68ÕÐ:gí@¯t¹87oIl_ +endstream +endobj +314 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 888 0 R +/Name /Im295 +/Width 44 +/Height 52 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃ�ÿqü`Ê$óÉÿÿ�´ÿÿHþáÿÁÀþ÷Pûÿ`²ùd@ÿÈ?ô#ÿÿPÿÿ&©cR»Ù�pm³ +endstream +endobj +315 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 889 0 R +/Name /Im296 +/Width 18 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀÀþÿü?tJ1`Àÿ0üGB õÔ@ÿÿ#!ÓÚ-�8·:j +endstream +endobj +316 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 890 0 R +/Name /Im297 +/Width 19 +/Height 52 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃð ñÿa`Pôÿÿ86©Ý,�ÙAz +endstream +endobj +317 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 891 0 R +/Name /Im298 +/Width 36 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUα Ã0CÑ/¨P©�i2 64JFÑ(7Â.Óï$IÖ.i')AÝè³9m5ºQm\¬×MqE~YDÝ?ãÂþÅ£¯Nò²-¦ëJc2$hq,ãùx^'ßK +endstream +endobj +318 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 892 0 R +/Name /Im299 +/Width 37 +/Height 70 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc```0�b +ñF0~Ì`ûÁß�#ä`¨#Ó8I BÕt+�sþ-V +endstream +endobj +319 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 893 0 R +/Name /Im300 +/Width 31 +/Height 64 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5ϱà áÇ© dÓe +ÎX.§µÒi¬@V%wF¡øÔ¾_cÄxAø +Ñv50I`ÏAb½EDÝ4!µ}ÊÈÙC:´Ln©¥Ó"Æ/lÂÒãßfr·ÝÆJFO'ÚÔжê4è¨Vª¾Ë4ªiTÒÕá?õþ Ï×ûñ6fgÔ +endstream +endobj +320 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 894 0 R +/Name /Im301 +/Width 43 +/Height 52 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc```üÃ�ÿqü`$û?iÿÿ8üÿÿûæÿ@»öø0Èÿaÿ�²×þXLÖCÈò?Y$² õHæI~°½ò`7ØÝSÿùóÿÿî|$íÿ·ÿ©fÿÿ@Û¤v³!�ªÇp +endstream +endobj +321 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 895 0 R +/Name /Im302 +/Width 39 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x¡0¢²#ä¡0ìÍ(£0JGé} !$æÜ¿XìÈ0Hy ¶" N¡"ìPnÈZã 9æ|f®ás|÷øhOß¶×~zMÑ +endstream +endobj +322 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 896 0 R +/Name /Im303 +/Width 74 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]бmÃ0 áG "jUÖ +ܤcï)x�i $;de8È)]¡ïDÊvC|×x?êtP§ ³Ú¢ BPg²¾©Ýê]dÃ*"WäU¿ÔHý\f ¾ÔQêÿ®ÔI4eHYê¤Ù {9U%òv/p¢¦¨S½`@Weõoö¢éI&Ö«¥Á`åf½"8´<Zêg½!Ȱ1z>KV¨ÎÔ¸(BS -¥¸Å®ªMµß?÷7Ïwÿ +endstream +endobj +323 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 897 0 R +/Name /Im304 +/Width 27 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcàc``Çøüàc~ðÿÁ>ùõ}öäßýg`þÿáÿû²Ab 9Z^¸Ìg�Ú-P½] �h"â +endstream +endobj +324 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 898 0 R +/Name /Im305 +/Width 32 +/Height 52 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`°ÀÀüÿÿÿ?öÿ1ÔþÏð¿ù?ãf0fþÂÿ ¡páÿÿÿ¡`|j© ëNGÆ +&u¥;^O +endstream +endobj +325 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 899 0 R +/Name /Im306 +/Width 30 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]̱ �Ñ#6&,`4:®ä�ÅQþ(@Ia¢ßÐWÞÁö6<AUª)¦Úlk§¨dÊ`{ÑhIü¹>BÓ«Aùv'¬¸äè$bĸÄs~�A5"¦ +endstream +endobj +326 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 900 0 R +/Name /Im307 +/Width 37 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]α Â0á³\¸Ì¸Bb: A¢ÄX EÖð¸t9Ü[оî~=�*Ø?B¥kLÛðWPÉq5#Ðë H*CE¢#²dÉUb+תàä³N A6ó]Gn.L«$6õ?ìLÜìOoþ÷ÝïÔòBg?ÓñöÇáyø�»P~ +endstream +endobj +327 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 901 0 R +/Name /Im308 +/Width 29 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xe̱ Â0EÑk¹pXB2@b< +£x7BJORæIïÂUrl¬A¡£¸£$44ëOÐLh3±Züó²ùí?ýìâû´ÂâôðÎT3£¢ ®·í}ÿ3,« +endstream +endobj +328 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 902 0 R +/Name /Im309 +/Width 42 +/Height 48 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xK````lø�$uòd5@¿BÚIy{ iÏ ßÀÀPÇÀÿñûbüßPÿáÿÿÿ +þÿiùÿH2´jÖ�CRà +endstream +endobj +329 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 903 0 R +/Name /Im310 +/Width 44 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÁüáÿþÿ¤ýÿ@òÿÿ?°ÿaàÿ}�H²ÿo`þ$ä?$òýÈÿÿÔÿÿIê(Ö.0�;Z< +endstream +endobj +330 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 904 0 R +/Name /Im311 +/Width 44 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃÀðáÿzl$ÿöìéH²#ü`RþHÊþ?ãßÿ?0üÿÿHÚÿ?$Ùÿ1ÿÿ £X»À�zQÿ +endstream +endobj +331 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 905 0 R +/Name /Im312 +/Width 48 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿþüÇ þ?`Ìÿ@$#du`ÒC#ÈI~¬$û8É&íAäÿÿØI,T%²^f¼$E$ÐòØHãÚM�Ùã +endstream +endobj +332 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 906 0 R +/Name /Im313 +/Width 40 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xu± B1_"e@rKAÅ�d3ìM¾ØäR¦°ll*DsäÏ�°ÑµØ+îÎM»r_UV5¦Yì1fñKÿÒElÙhî]лµoHâL¸¯D¸q$f¸¾j`çK)1¤Ts úÏUǶ)ú+Ú<s ¸Þ¯ÛÕqÅ +endstream +endobj +333 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 907 0 R +/Name /Im314 +/Width 31 +/Height 49 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`¨```øÁÀÀÄò?ÿÿ`øÿÈCÄ®ÿÿÿ27¬Ú �ØG@ +endstream +endobj +334 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 580 0 R >> /XObject << /Im25 32 0 R /Im24 31 0 R /Im22 29 0 R /Im23 30 0 R /Im21 28 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im120 127 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im21 28 0 R /Im24 31 0 R /Im26 33 0 R /Im106 113 0 R /Im30 37 0 R /Im30 37 0 R /Im116 123 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im21 28 0 R /Im145 152 0 R /Im106 113 0 R /Im23 30 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im22 29 0 R /Im23 30 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im28 35 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im120 127 0 R /Im105 112 0 R /Im116 123 0 R /Im22 29 0 R /Im21 28 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im102 109 0 R /Im21 28 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im110 117 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im109 116 0 R /Im30 37 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im118 125 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im30 37 0 R /Im116 123 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im21 28 0 R /Im145 152 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im105 112 0 R /Im116 123 0 R /Im111 118 0 R /Im28 35 0 R /Im116 123 0 R /Im24 31 0 R /Im101 108 0 R /Im24 31 0 R /Im21 28 0 R /Im108 115 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im107 114 0 R /Im101 108 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im111 118 0 R /Im29 36 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im102 109 0 R /Im173 182 0 R /Im221 232 0 R /Im119 126 0 R /Im28 35 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im107 114 0 R /Im28 35 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im21 28 0 R /Im106 113 0 R /Im102 109 0 R /Im30 37 0 R /Im109 116 0 R /Im190 199 0 R /Im120 127 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im26 33 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im179 188 0 R /Im107 114 0 R /Im24 31 0 R /Im102 109 0 R /Im23 30 0 R /Im24 31 0 R /Im108 115 0 R /Im105 112 0 R /Im108 115 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im111 118 0 R /Im105 112 0 R /Im28 35 0 R /Im117 124 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im26 33 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im179 188 0 R /Im215 224 0 R /Im136 143 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im30 37 0 R /Im117 124 0 R /Im105 112 0 R /Im29 36 0 R /Im108 115 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im28 35 0 R /Im110 117 0 R /Im110 117 0 R /Im105 112 0 R /Im106 113 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im118 125 0 R /Im105 112 0 R /Im23 30 0 R /Im30 37 0 R /Im28 35 0 R /Im26 33 0 R /Im111 118 0 R /Im22 29 0 R /Im23 30 0 R /Im22 29 0 R /Im112 119 0 R /Im118 125 0 R /Im23 30 0 R /Im106 113 0 R /Im23 30 0 R /Im29 36 0 R /Im24 31 0 R /Im110 117 0 R /Im21 28 0 R /Im108 115 0 R /Im101 108 0 R /Im105 112 0 R /Im116 123 0 R /Im22 29 0 R /Im21 28 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im145 152 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im117 124 0 R /Im101 108 0 R /Im106 113 0 R /Im105 112 0 R /Im106 113 0 R /Im111 118 0 R /Im117 124 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im22 29 0 R /Im28 35 0 R /Im29 36 0 R /Im29 36 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im120 127 0 R /Im21 28 0 R /Im101 108 0 R /Im30 37 0 R /Im29 36 0 R /Im111 118 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im24 31 0 R /Im108 115 0 R /Im30 37 0 R /Im21 28 0 R /Im111 118 0 R /Im29 36 0 R /Im116 123 0 R /Im24 31 0 R /Im106 113 0 R /Im111 118 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im22 29 0 R /Im23 30 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im28 35 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im103 110 0 R /Im101 108 0 R /Im108 115 0 R /Im101 108 0 R /Im117 124 0 R /Im106 113 0 R /Im106 113 0 R /Im29 36 0 R /Im105 112 0 R /Im30 37 0 R /Im26 33 0 R /Im28 35 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im110 117 0 R /Im101 108 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im105 112 0 R /Im116 123 0 R /Im22 29 0 R /Im21 28 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im145 152 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im101 108 0 R /Im30 37 0 R /Im29 36 0 R /Im111 118 0 R /Im29 36 0 R /Im111 118 0 R /Im109 116 0 R /Im24 31 0 R /Im105 112 0 R /Im23 30 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im117 124 0 R /Im102 109 0 R /Im111 118 0 R /Im143 150 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im24 31 0 R /Im26 33 0 R /Im30 37 0 R /Im29 36 0 R /Im111 118 0 R /Im29 36 0 R /Im30 37 0 R /Im108 115 0 R /Im29 36 0 R /Im171 180 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im29 36 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im22 29 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im176 185 0 R /Im315 336 0 R /Im137 144 0 R /Im117 124 0 R /Im102 109 0 R /Im316 337 0 R /Im251 268 0 R /Im259 276 0 R /Im256 273 0 R /Im257 274 0 R /Im254 271 0 R /Im317 338 0 R /Im188 197 0 R /Im181 190 0 R /Im212 221 0 R /Im120 127 0 R /Im318 339 0 R /Im181 190 0 R /Im171 180 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im318 339 0 R /Im228 239 0 R /Im107 114 0 R /Im24 31 0 R /Im115 122 0 R /Im319 340 0 R /Im320 341 0 R /Im321 342 0 R /Im322 343 0 R /Im318 339 0 R /Im323 344 0 R /Im324 345 0 R /Im251 268 0 R /Im104 111 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im29 36 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im105 112 0 R /Im23 30 0 R /Im30 37 0 R /Im118 125 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im24 31 0 R /Im109 116 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im26 33 0 R /Im102 109 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im141 148 0 R /Im105 112 0 R /Im24 31 0 R /Im108 115 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im107 114 0 R /Im30 37 0 R /Im111 118 0 R /Im21 28 0 R /Im143 150 0 R /Im22 29 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im26 33 0 R /Im110 117 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im107 114 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im26 33 0 R /Im26 33 0 R /Im110 117 0 R /Im101 108 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im105 112 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im221 232 0 R /Im103 110 0 R /Im101 108 0 R /Im24 31 0 R /Im21 28 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im110 117 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im107 114 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im111 118 0 R /Im22 29 0 R /Im21 28 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im325 346 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im22 29 0 R /Im23 30 0 R /Im176 185 0 R /Im202 211 0 R /Im120 127 0 R /Im213 222 0 R /Im137 144 0 R /Im326 347 0 R /Im269 288 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im29 36 0 R /Im26 33 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im202 211 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im108 115 0 R /Im29 36 0 R /Im102 109 0 R /Im107 114 0 R /Im107 114 0 R /Im117 124 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im213 222 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im28 35 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im24 31 0 R /Im26 33 0 R /Im110 117 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im107 114 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im117 124 0 R /Im29 36 0 R /Im111 118 0 R /Im28 35 0 R /Im22 29 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im116 123 0 R /Im29 36 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im22 29 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im26 33 0 R /Im21 28 0 R /Im145 152 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im28 35 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im111 118 0 R /Im24 31 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im28 35 0 R /Im106 113 0 R /Im120 127 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im24 31 0 R /Im22 29 0 R /Im23 30 0 R /Im189 198 0 R /Im181 190 0 R /Im171 180 0 R /Im120 127 0 R /Im24 31 0 R /Im105 112 0 R /Im142 149 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im109 116 0 R /Im117 124 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im176 185 0 R /Im327 348 0 R /Im206 215 0 R /Im137 144 0 R /Im328 349 0 R /Im329 350 0 R /Im206 215 0 R /Im207 216 0 R /Im166 175 0 R /Im111 118 0 R /Im143 150 0 R /Im101 108 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im327 348 0 R /Im206 215 0 R /Im173 182 0 R /Im174 183 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im176 185 0 R /Im189 198 0 R /Im176 185 0 R /Im187 196 0 R /Im206 215 0 R /Im137 144 0 R /Im137 144 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im29 36 0 R /Im187 196 0 R /Im206 215 0 R /Im181 190 0 R /Im213 222 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im211 220 0 R /Im141 148 0 R /Im106 113 0 R /Im23 30 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im103 110 0 R /Im109 116 0 R /Im106 113 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im116 123 0 R /Im29 36 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im22 29 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im106 113 0 R /Im116 123 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im22 29 0 R /Im106 113 0 R /Im28 35 0 R /Im24 31 0 R /Im26 33 0 R /Im109 116 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im101 108 0 R /Im30 37 0 R /Im26 33 0 R /Im30 37 0 R /Im101 108 0 R /Im110 117 0 R /Im29 36 0 R /Im101 108 0 R /Im111 118 0 R /Im111 118 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im22 29 0 R /Im23 30 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im28 35 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im29 36 0 R /Im111 118 0 R /Im28 35 0 R /Im22 29 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im141 148 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im117 124 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im117 124 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im142 149 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im101 108 0 R /Im108 115 0 R /Im30 37 0 R /Im26 33 0 R /Im108 115 0 R /Im111 118 0 R /Im29 36 0 R /Im26 33 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im106 113 0 R /Im117 124 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im29 36 0 R /Im105 112 0 R /Im28 35 0 R /Im26 33 0 R /Im106 113 0 R /Im105 112 0 R /Im142 149 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im113 120 0 R /Im20 27 0 R /Im30 37 0 R /Im111 118 0 R /Im29 36 0 R /Im101 108 0 R /Im268 287 0 R /Im330 351 0 R /Im331 352 0 R /Im105 112 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im118 125 0 R /Im272 291 0 R /Im98 105 0 R /Im93 100 0 R /Im99 106 0 R /Im94 101 0 R /Im100 107 0 R /Im96 103 0 R /Im93 100 0 R /Im163 172 0 R /Im161 170 0 R /Im94 101 0 R /Im99 106 0 R /Im332 353 0 R /Im333 354 0 R /Im164 173 0 R /Im98 105 0 R /Im95 102 0 R /Im100 107 0 R /Im240 253 0 R /Im94 101 0 R /Im100 107 0 R /Im99 106 0 R /Im41 48 0 R /Im42 49 0 R /Im48 55 0 R /Im45 52 0 R /Im43 50 0 R /Im87 94 0 R /Im39 46 0 R /Im52 59 0 R /Im42 49 0 R /Im83 90 0 R /Im77 84 0 R /Im45 52 0 R /Im38 45 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im308 327 0 R /Im57 64 0 R /Im39 46 0 R /Im40 47 0 R /Im45 52 0 R /Im42 49 0 R /Im74 81 0 R /Im36 43 0 R /Im44 51 0 R /Im220 229 0 R /Im35 42 0 R /Im334 355 0 R /Im57 64 0 R /Im38 45 0 R /Im37 44 0 R /Im42 49 0 R /Im47 54 0 R /Im52 59 0 R /Im72 79 0 R /Im48 55 0 R /Im37 44 0 R /Im38 45 0 R /Im43 50 0 R /Im44 51 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im276 295 0 R /Im218 227 0 R /Im57 64 0 R /Im78 85 0 R /Im78 85 0 R /Im78 85 0 R /Im57 64 0 R /Im276 295 0 R /Im335 356 0 R /Im52 59 0 R /Im71 78 0 R /Im48 55 0 R /Im52 59 0 R /Im36 43 0 R /Im44 51 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im35 42 0 R /Im43 50 0 R /Im276 295 0 R /Im37 44 0 R /Im36 43 0 R /Im47 54 0 R /Im35 42 0 R /Im36 43 0 R /Im39 46 0 R /Im38 45 0 R /Im44 51 0 R /Im82 89 0 R /Im35 42 0 R /Im47 54 0 R /Im44 51 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im43 50 0 R /Im35 42 0 R /Im80 87 0 R /Im43 50 0 R /Im57 64 0 R /Im39 46 0 R /Im52 59 0 R /Im42 49 0 R /Im83 90 0 R /Im47 54 0 R /Im35 42 0 R /Im42 49 0 R /Im39 46 0 R /Im35 42 0 R /Im70 77 0 R /Im35 42 0 R /Im76 83 0 R /Im35 42 0 R /Im70 77 0 R /Im336 357 0 R /Im337 358 0 R /Im54 61 0 R /Im85 92 0 R /Im45 52 0 R /Im43 50 0 R /Im48 55 0 R /Im45 52 0 R /Im43 50 0 R /Im87 94 0 R /Im43 50 0 R /Im38 45 0 R /Im45 52 0 R /Im35 42 0 R /Im57 64 0 R /Im44 51 0 R /Im71 78 0 R /Im289 308 0 R /Im72 79 0 R /Im37 44 0 R /Im43 50 0 R /Im39 46 0 R /Im40 47 0 R /Im282 301 0 R /Im308 327 0 R /Im57 64 0 R /Im276 295 0 R /Im284 303 0 R /Im290 309 0 R /Im277 296 0 R /Im44 51 0 R /Im36 43 0 R /Im70 77 0 R /Im44 51 0 R /Im74 81 0 R /Im35 42 0 R /Im70 77 0 R /Im50 57 0 R /Im292 311 0 R /Im71 78 0 R /Im37 44 0 R /Im70 77 0 R /Im36 43 0 R /Im35 42 0 R /Im57 64 0 R /Im52 59 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im38 45 0 R /Im73 80 0 R /Im44 51 0 R /Im36 43 0 R /Im35 42 0 R /Im338 359 0 R /Im87 94 0 R /Im279 298 0 R /Im277 296 0 R /Im339 360 0 R /Im289 308 0 R /Im276 295 0 R /Im292 311 0 R /Im72 79 0 R /Im37 44 0 R /Im43 50 0 R /Im39 46 0 R /Im40 47 0 R /Im39 46 0 R /Im52 59 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im71 78 0 R /Im38 45 0 R /Im37 44 0 R /Im39 46 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im37 44 0 R /Im44 51 0 R /Im72 79 0 R /Im35 42 0 R /Im47 54 0 R /Im71 78 0 R /Im52 59 0 R /Im38 45 0 R /Im307 326 0 R /Im87 94 0 R /Im279 298 0 R /Im54 61 0 R /Im292 311 0 R /Im42 49 0 R /Im45 52 0 R /Im72 79 0 R /Im82 89 0 R /Im35 42 0 R /Im38 45 0 R /Im52 59 0 R /Im71 78 0 R /Im35 42 0 R /Im70 77 0 R /Im35 42 0 R /Im72 79 0 R /Im35 42 0 R /Im42 49 0 R /Im43 50 0 R /Im36 43 0 R /Im39 46 0 R /Im40 47 0 R /Im35 42 0 R /Im39 46 0 R /Im74 81 0 R /Im35 42 0 R /Im47 54 0 R /Im340 361 0 R /Im87 94 0 R /Im279 298 0 R /Im54 61 0 R /Im292 311 0 R /Im39 46 0 R /Im45 52 0 R /Im38 45 0 R /Im38 45 0 R /Im35 42 0 R /Im42 49 0 R /Im43 50 0 R /Im72 79 0 R /Im37 44 0 R /Im43 50 0 R /Im39 46 0 R /Im40 47 0 R /Im39 46 0 R /Im52 59 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im305 324 0 R /Im302 321 0 R /Im65 72 0 R /Im341 362 0 R /Im87 94 0 R /Im279 298 0 R /Im342 363 0 R /Im64 71 0 R /Im302 321 0 R /Im343 364 0 R /Im344 365 0 R /Im342 363 0 R /Im301 320 0 R /Im302 321 0 R /Im340 361 0 R /Im87 94 0 R /Im279 298 0 R /Im340 361 0 R /Im345 366 0 R /Im289 308 0 R /Im72 79 0 R /Im37 44 0 R /Im43 50 0 R /Im39 46 0 R /Im40 47 0 R /Im282 301 0 R /Im308 327 0 R /Im57 64 0 R /Im276 295 0 R /Im346 367 0 R /Im284 303 0 R /Im292 311 0 R /Im45 52 0 R /Im48 55 0 R /Im47 54 0 R /Im37 44 0 R /Im43 50 0 R /Im35 42 0 R /Im39 46 0 R /Im52 59 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im36 43 0 R /Im307 326 0 R /Im87 94 0 R /Im279 298 0 R /Im307 326 0 R /Im345 366 0 R /Im334 355 0 R /Im296 315 0 R /Im305 324 0 R /Im340 361 0 R /Im290 309 0 R /Im307 326 0 R /Im338 359 0 R /Im345 366 0 R /Im336 357 0 R /Im347 368 0 R /Im307 326 0 R /Im338 359 0 R /Im282 301 0 R /Im342 363 0 R /Im344 365 0 R /Im338 359 0 R /Im284 303 0 R /Im64 71 0 R /Im295 314 0 R /Im298 317 0 R /Im310 329 0 R /Im65 72 0 R /Im298 317 0 R /Im64 71 0 R /Im311 330 0 R /Im65 72 0 R /Im310 329 0 R /Im64 71 0 R /Im65 72 0 R /Im311 330 0 R /Im298 317 0 R /Im292 311 0 R /Im289 308 0 R /Im72 79 0 R /Im37 44 0 R /Im43 50 0 R /Im39 46 0 R /Im40 47 0 R /Im282 301 0 R /Im308 327 0 R /Im57 64 0 R /Im276 295 0 R /Im284 303 0 R /Im290 309 0 R /Im277 296 0 R /Im44 51 0 R /Im36 43 0 R /Im70 77 0 R /Im44 51 0 R /Im74 81 0 R /Im35 42 0 R /Im70 77 0 R /Im50 57 0 R /Im298 317 0 R /Im310 329 0 R /Im301 320 0 R /Im296 315 0 R /Im305 324 0 R /Im296 315 0 R /Im305 324 0 R /Im340 361 0 R /Im348 369 0 R /Im307 326 0 R /Im338 359 0 R /Im344 365 0 R /Im336 357 0 R /Im347 368 0 R /Im307 326 0 R /Im338 359 0 R /Im282 301 0 R /Im342 363 0 R /Im344 365 0 R /Im338 359 0 R /Im284 303 0 R /Im64 71 0 R /Im295 314 0 R /Im298 317 0 R /Im310 329 0 R /Im65 72 0 R /Im298 317 0 R /Im64 71 0 R /Im311 330 0 R /Im65 72 0 R /Im310 329 0 R /Im305 324 0 R /Im66 73 0 R /Im297 316 0 R /Im63 70 0 R /Im298 317 0 R /Im292 311 0 R /Im289 308 0 R /Im72 79 0 R /Im37 44 0 R /Im43 50 0 R /Im39 46 0 R /Im40 47 0 R /Im282 301 0 R /Im308 327 0 R /Im57 64 0 R /Im276 295 0 R /Im284 303 0 R /Im348 369 0 R /Im277 296 0 R /Im44 51 0 R /Im36 43 0 R /Im70 77 0 R /Im44 51 0 R /Im74 81 0 R /Im35 42 0 R /Im70 77 0 R /Im50 57 0 R /Im298 317 0 R /Im310 329 0 R /Im301 320 0 R /Im296 315 0 R /Im305 324 0 R /Im298 317 0 R /Im310 329 0 R /Im301 320 0 R /Im305 324 0 R /Im302 321 0 R /Im65 72 0 R /Im65 72 0 R /Im298 317 0 R /Im64 71 0 R /Im311 330 0 R /Im65 72 0 R /Im310 329 0 R /Im45 52 0 R /Im345 366 0 R /Im289 308 0 R /Im72 79 0 R /Im37 44 0 R /Im43 50 0 R /Im39 46 0 R /Im40 47 0 R /Im282 301 0 R /Im308 327 0 R /Im57 64 0 R /Im276 295 0 R /Im335 356 0 R /Im284 303 0 R /Im290 309 0 R /Im277 296 0 R /Im312 331 0 R /Im296 315 0 R /Im313 332 0 R /Im68 75 0 R /Im349 370 0 R /Im68 75 0 R /Im60 67 0 R /Im71 78 0 R /Im37 44 0 R /Im36 43 0 R /Im43 50 0 R /Im48 55 0 R /Im38 45 0 R /Im52 59 0 R /Im39 46 0 R /Im35 42 0 R /Im47 54 0 R /Im45 52 0 R /Im38 45 0 R /Im35 42 0 R /Im71 78 0 R /Im52 59 0 R /Im38 45 0 R /Im43 50 0 R /Im35 42 0 R /Im36 43 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im40 47 0 R /Im50 57 0 R /Im48 55 0 R /Im52 59 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im36 43 0 R /Im44 51 0 R /Im36 43 0 R /Im289 308 0 R /Im72 79 0 R /Im37 44 0 R /Im43 50 0 R /Im39 46 0 R /Im40 47 0 R /Im282 301 0 R /Im308 327 0 R /Im57 64 0 R /Im276 295 0 R /Im284 303 0 R /Im290 309 0 R /Im277 296 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 335 0 R +>> +endobj +335 0 obj +<< +/Length 908 0 R +/Filter /FlateDecode +>> +stream +x¥}I¯4¹Ý¾~Å[v/übê¥ÑàÑÖR[*µdæ2ÿ{'3x#3ÈsͲðA^Þyüëÿþõ×Ü×?~øëá{Ó×ô=Mö7~/ÛôåÂüígÿµ,ó÷¶l_¿ùã¿øïôó׿þù[¿ç¯ß¿ÃZåúð½z¸>F´Þ×ßßõË÷¾¤õÛyþ};×r½ÿvK¹>ÈÍp½«ÏïªïûDÝâ¾](Ï殮Þ<À¢=@øÕÄçvt]~À5H�°n�èl^zãºà`Ú¸Oàûnªà¾ýtÝ <ÿºýñáçñ{zAÀW'`ðS¸ ~ï=wqð�Çx·r@b̼%.ÀÀ{jHdáC@D¸ÉçÇ\°:?}¨a�#bÑ÷õ³CßL`à,2FÄ~ñ"õ«º~Ê$òë×_hØéxp±{4¸- +¬ÏûØ ¸i°¯"¨i <þK `I¦(JBüÁ ±.@¥KÐxÈEª°'Q!xBÆBnÉòEAÂø`¤/0C>^|Êø>f#aY%6B_pEº|AÌÂæ4>Ä$Yxc#%A]äcw(Êe6rÆISfÄIæOFq@Ö¦¢Û4m)¤Ñ{M!e,¾©S}8¯Á Ä cr¨±bÆHbD®ÐÅY5j0ÅY£"¦ÐÅ ãZ¡ãëáù(a~ÀÓª ß{|aÀuµÒ"X¿§ÀBglä ++Úµ!ËÂHÒ&gäyÇ#ÚDòØúÏb× +^¾ø%§käzJ0aè� Ãã ÝêÀ«6 4¾Bê[ÙzB`V2׾_Än'~DbjÖLvßR']5-â gÀ|¬ ¢ê ¸kbFO ûFܦ1=Gd¤«Éµ¡@±FÆô Â|ó "¢ãï9'Fpx'àdÔÏè�H%%Þ¥Eeå÷3�MÎî{ó/*õ1¿NsO®ñ¾þø/~ÍÊ+¹J-çüö"ã· Bµ~Ûn C¿kÂqÒ0yËpÒÈáppu ,974 çwÚùïeB4<BAç*mqàWb>T>Ȩ0E£B +B¨é>Æä1µÍgQ%¥o0CTö1È;|a T ûW¨ÓÖ>FêXWQ'ØüÍ'Ø[êDØR®«aÇJ¹,ÍþkÒ:&ô=Î'*µÔ9àR s »YfØ®jdN¶ÌbÒ°âÅqÒ HÝ!AMFÔG6#u@bæù�æèmº¨ïcN±i:?+Á¡UÃA5·¼èX¹Xßá©v1_àKqi4Îb×ès<×D[ ÃxæÆ*:hV�[êEöq]Ðá«w[]o ç~l³v�ûÞ #÷c÷à zr?Võ HàZå7³`ð§{¤Ì=áÀz¼^cDLz¿¡ÔÂ»Ñ CjÝCN¨'Pùè%"¢��/'wx2_½óý³¯¾v/Z¹_¦Ã½pEµ²îçï¥xÂ)ËÇÖî±ßóô¢¢ +ïX]a˾îç<¬Ôw�t +Çæ,¾ëz9w!eá=9ée}GÍéê¾l 8j/êH¸ÃÒè.OÐîØU2NOâÄÓ&æßæµ:A70GskÄ68L\åñj£�áw=¬NøµpOõpPÖêÏ4¸â�²+yð<º]}ÂË-në¶Ï¼'Ò!è!+¿¾øÈGGëü=Dºð÷cõu½:Ë~ð{Fnÿý@±`G¬`u2MN¢êë é>¦iÉ�k$Áyp~¨4, §aùEBBî+vV¿§! Gï Îæø¢Ã³äqEc6ÌHèZm°Ù /V1ÊËÃF5ä(]4yNqhÅò\w®HB?'sõjT@c^»ÓX1åC;§ºuB²DwÄ ¡@GÈçô·¨&#ºZqôV\ßÀ\Åû) ß°VoÈ´Ê,èÈ)>3áfͲFB@¸ f®Ð\Å'kºz[ê@ÓÕÛm£3ã Ò¸0Oi>ÀeD,kë; pZÇÐ<¬õu±· ¨+dzCß´rË#CСQ&ãúÖöYº�õÓ$¸®×|¦_4ÊFY¨qì + +!3sSB@¹¬ÄmAO¨f¦Ó^Ö÷ä-à ;tb³:qÝ@×OGçüÒOGgã ©§w^o±¦P!µîåàóA=ÑtÚQZè6lA%cr]£êØWÄ:±U48)/r[EYLÌç´' ©©ZvÞkXL¼<âDºNó§N|=@/oKíoÌ\èË×8A±<ªOy}P%d\7Ð2S¡ÒPBfX!Ë}¦±"jßåAäÔɵC tÇtS-?ÍÛA8:U+&÷´Òèö[ò0úxOFº^êR×QêZÝSêç{jm»¨Ö%Ñ´u2¶Á®B²mH@¸ $ò3Zèµ ôëzïÉÀO',i,ö ü´ÁÄeÅöz< ¬Ø6/À²Ë]FÅuv9õ0dqTÜ@÷±lDfa{ñ X&Ó. ±¢§m{È�"Ï$iCç(HìcP¨#fl²ÐòZÀÓTb-`¢xþ:òyþ쨽߹jFCf^7iBp¾ ÁeÍ<÷Ø _ ë\¨#l ß×ýÛ"±aê`Ùíüñ³,æ-`êù©Ê + î(6ë¸õÜ:F\¸'hç!ÓÂÉæ±âp \îÙâCÔ°|Hï\r:d©å %?Ìt~Zb4B%FózK +¨ òÈ9Ô;"çû°*rDΣFÔ7±¡'ÐÕÙ�9å̵F@ÚæÀw)åÒ8-"`Nè�wTÒ3íHÌk¬>Üߦùôa½y¨1rD1rX%F6±Q¥c¡¬Ð,o +ÝPÑu\: xû-t2Ðæsä¾�Þ\6C5ÏVât]ßS!´¾´ÁgÁ^àz=«{}A`D± +¥b½`æ¼þ-¢ïË!CËj/î0G/¨càéhÀFì&üµz˶h7pYµP«.Wë¶Qõ¥'¤Vß +ëQão¾@ØD.Db®°#j+E8H3ºç£ÝüÐÇ,ÏÉ|øôl´nÀÛÛî¹gAc#Ô;·n�{ìL%%¢ â ÜÍï³*ÈXâ�b¤YNÿ*Q1u8DD0ØÆ¸,Òxÿ'Ò�ú¨¢ÉHá(aE!k¿b�¨9Ü-ARòoIÂðÆÆF,/¡�oP §ÁñvBâ]ÛGõQK©\np§ ~ÿssÛ¡éäërÛèE*¤oø ^åW% ÉzË-9rXQÓ¨)@>Öõ�Ú¬j#¨Á1NJÝi·ú(}ªO3µ±¼_AH2Ï2 + XN~âÃ@ÊÉ·ÿe}WN¾@|Ëë� uwÑ :º»nÚ ZÝKJÊýØR÷qfÝñÌ»°7P´j«yϽ¸+M¯è]OçÀõ²0ðnE�ÔKÞs.kóy÷D=Ýa5�ò¬~@@ æ®´»6Q¼Gí (gegÝYí §Ñî¬÷8©_ENÊs2ã"±îá2¥øú}ÝõËuÝ%÷"SÛ2§âÎT³-çQË[¸®×£þ~ù1Ìr§ +ШlHy vDýc¸E!n÷$QxS(¢þs¼%NçB"\De7ÕDÏ[@4ÐÑ2lèzW̰ ä56Aã¥TÇd7sèp3G°§$qGÀ׫Vëì +â$Í(lÌwBcļ"!ª¢ëGhÈ EqV©x7 aÜáÝx³ìÚ¸Nà�À®¥N>4µ:&Ë:7ÁÎTêåsKEV*ì, m¹4D¥Â̹ð:ÀYãL,®¬7ë¬Y§sbÞ{kÌ»±Gì¨ÉØ·ó Æì*Kb[>·&å«z�bV¸I�w. 7ÔG&M�°Ä}_Útÿ®Î¨DÆôÁÖ¼�KØ$�ÒFl¦Ò$û8½ÈÇøà/`üÔù ¿õ²[õ¹¾FÔµ°Élàà.ã ¡©¤ ò =!µÌ®éaµ)·Á+m.B·|¼aÙ/;L7-ûAIüvOsQ¶$!¯T¨[Æñ&¢¨P5~\³`#{.ö|x= 8¿õW¢ÖOïÆò8KxXgåP7<à'8Ú'ò(¿°"NÜ¡§Á+E ¥¸äÅV4©Ëõök8Äù +6ð3À£ºMöá«ÏhPl ÉÓc|ê +µ^nÁà!%ëx¶Á7¨¸Ùü½blƯ ýåµÁ"mÒìô7õÐÙò+¼z?Ôõr¢ <-÷u,`PjÒtÆmË'ØZ jPªôÄ0HBUSlP´|Tlø8±xÒÂÇbUîðuä´â`Yµ×tt±±t´ëK8¢ÎZXw±É8Gð^ÏjV¯7èÉÆZ-jÚé1Ík;ßà=èçeÛÿcËTéöKá2«nû_¢¶NóÈ<°âÔMBMT´?@°ãáÅÏj<ôC>`�® Ôg<ÚDfàªWOâ<SÚôazå´!±:¦AMX,IÄlãì®Ù8º³$OÖKE_ÜN Ñ?\#%;¬0ôQ:V¼î>g ñd °5@¢�¡ÞÄdG ìòjþ®ë÷uwM@Q�@éqi.2Ù0¡uð Íá5¦cïâ²³tÞcëa2ÝCboQÔA$N 4$nôÐh_`uTtÿPò!½Òcݵ4KU®7è/Uiò £ñ!î±2$nfH³ fmîòPB,ëüg[*÷ò,ÏÊ¯ç ÆdQ¡àæ ÆJN¯A $¥ßaÅÃ* +nÝ 5¬¸D9¿Ø·IýSVíãsªÙüËoVvì !ÈcDVD@¸!°cM&äܤs£Õ?·¼ É$Áiz5O)AoÔJÞ$S£#ÌÁ!^ói͹-¯X,\6BUIXÁÍrÅZ&))H#é)¸AIO7e½'lFK5i4Y)±í,£eK/=Z¦VÉæ0Y45rÄ©um¾¶i,3Ï&`Úù0ï5ihjféë~¨0Nk¶õÉ·¤9ñ°j-TZj1ÍÒ4[t6çÃÀ'àt/´wâð: +%<Æí�|T0:@ϨàIbc|@次 @ÜE� ïZDÄGhh 8¼@Òi`Ñh¦$½ñÑ1÷¯ì÷�°AF®3¡ JB=!hCçïéó»o�úlHKjHRjR@.Ú3ÒÜ´× :fC:Y ³!=BÂÙ~¿ÅÆB@\ £Ö%l÷$éÔDbCQÓÆ(ÍHöÔºäéM>Ú R ®o\{l\Ç%ô¦ÇýÕã}`q¹érveÚ ¾ëÄ×èÝmäúõû=%ø9§©¸nín�GÄmA�Т\v·f;K1��Ö¹ü¼¸lÙÌöðÝ¡ ¼lYoºUDÂ5¹Ëi¹AG÷tï #ºAGÔuzäç]"BªÏ,è�z~®i¤m.ÄZ»!&Ðá´òóöXù:Âá%©7ÙÈA3ïlßÛS¥<Ò[ã>½¼Bý4T0yx÷$qbª©f;(õ¾TÊBn" Â2¥(§7l¤(ã¼NÓ)Ô1CUÊm.�dU®Õy¤ZD +¯U* +VR¹ +ÔIÒuFßö¤Í0¿®àÞ©@~oyÄì¦-¸èÕÜ@îJd#Ë*%¤]#$>²¹¡</¾¯D 4ÐcÓ®2VAé´þ×HtôM÷7u"WµX @EòB½<"³@kþ¼ÿ^pçù +.ö4\¶hZ5ïúHG¸ìõ§[Ehõ}ëçäôVß÷ëzÑÑýl{nJ麦Ì.py(^yÙ.p¦U^NÐð2It¡Þ8}ÛÁ÷;úëí¬ï1îwí�ܶ �XÏ>2L¢¶¥[ Êù3§qÚ�7nwí�¼zEo¨w´æhÃoWñ Yk³Q"²úc§Q1Ó}îY2²J3?e2.·ú õAÇ61¼Ø@tìsZyq}(Ü®a1µÌ&È;âè{-sl¢ ³m¬c¯%S²ihX<ÓrRqÞ\^;�W VÚ¯Ø$àñ +$K:Â">I9aGçpDÅ]ÉH O°!$ÖYqؽÆéì»JĮ + ÞiÚ¤'ä¥TØ;`ãÆ[dL +8¡îþ¥Q ;bð·tâ4u7:µFãM äpG$|pº,¢0&(ëE[(ØjÞdÄZ{=7xðÓ!Ö2!¯t´Î 8iý]'ᴾϻguª�d[?Mã�h#l"ÙP£PÓ0À.Õ) ¸e©ø +ýéòÎppiuËeµü-$´DÂþ7ÈÈÍÆ/éͨëåH en>0Ä~FßïÉ#H¬xmMÛ]! +uC|°'êi^ÊÇFC -°xÞ`Q½ÁçTÀNÉÈ--2âC¹é%ß§mÝ$Cö Ò÷y¡å¾¯jz'§Fóïÿ½Ky×îP¸îÚÍ�/ÐÑ] §ÐÔ<-.@ÝK³¦ð¶ßHép/-èî¥Õ«L¸ÖMTèØL°ìÛ(DÎ ¶UäB̲÷Úx%Ô&ºÛ·p÷o% u LPtrGC«âº9úé<Áùt\ß #j;}Ôt|ÓGÒÈbD¢¬§u{Tí¶¥GÔYSè(.Ã*iö¬"S÷Ь]©?3²"aDØH±ëz]ØD±´~H¾u0$ +¬kwY¤"Åç^Ö÷ô2úz�ÀÇp[rl5ê$6·ßãy±¸})ÖB¶ö� :Lss.4 ÈDr»]ï6X$x Ê\ÖÜß2Làþ¼P(ýMAï-o0ÔÛ1 {;òqÝQCâV¤öçÀ²õèÕFBbØ®Y)¿B +X±`CXëXyG¥í>AVÞQå·HdÄÛ~C�èáºiYWù(iËèÐ÷íè![¿¨²Ô¨åñM*¢ùÐa9rÂ]#'¼.1;Z¤æêë#z�úßqzÙ¤¼§ÁË\áÁÏ)Ýów¬8{61ryí{y»BEÉó³)¸9:çksMô#0ÈSÇSZéGÌ"[ùÄõU)X«u\ái /ÓQ1_j¡¡Íü\·MNCÐßuEÜ@gcÝË~ÊóUµpG¶AGÔ(BÜ3Õh2>G7H6þ-np¦¶·¸Aíe8Ü©ÓV¿â +¼e¿bÿ,ÃMãÁJXß +<Ü*7ä:3� +¬×'D'©V4"®H*É5y Dõã3 ¥Ó<ªtºÈ&#òÃÌ]jõvÓñpñ^a4©Ä7ÚLÅO¹Ï:µy1\Ø @dÒOÈüÖ Fümgõùå�=yðûzDPÖú>ÃÂÿÄÂèǰÐ×:ºÏXÈÍäjØò &I.ÎÓÇ¢;V¾½¡7ÐgWçÑ:v´ò9'¯Ø@¯ÿáû°IXT«fù _×+Ù4ÓÙ0ùÙF".½=.ãò|2#`Å7¤¯¾¡Þʪ®o ;¾ýæ%*hÍ»®ï!oÎÑì=©¿J¬ìs*Åç!a3EgânpHè×Ïòí'jzºY¡yD2äd¨Ç R:RÜê!í¨óxûÞ� qCTþ]3Ðúæõ|±q«Ül³2beÞT²~u½'Îúõ0 Xl~ÓA"l"SNdá'â#¼5iDøÔäDçn^À!BÖS#£w"+&)âyw�ÙsÃ$ÒCyT)µ nʳ�~PÇ(*´Ðbv<ç±üébóaNM1§ddË5-ôë(ÌF"åHìãp¦±>g:Ahõ"!ÝѬV#´ú t +â Ï-uxËä}9!2) ûúlx�¼=\D(pr+4p'�úË·0 åhðy Óð äu½@Gü¾e�`O»ß¨Ñ 5 Mfo1Ö 'G}Éâü!ÖLC¿,à :râðþnMM)oQwP8é�bºiè⪠Dô v$ zæ°ämFÄê¶[| XS¨&#eóÐv^#Zh .¡ûgÂv BD¸+Ï?ã oô8ä3Ä5YHQhÖPB`YU"jÄà`ë5YÆç¤B>ÚD°Ý<À.z¨öÜKåúIîV.uÝ #ÉÝAN®'¹;Äô@Ñcu@îÓC¼¥&ÛZ Ô»`M&F¯ Gd^|?7oõfCFÆHá{¨ !¦ÑÛ_[¾¨Í4³ìÝX?Ó,vcý|N³Ø öó9#×n°ÏeïÆúùYön°OʲO O{Því�´¿E¬ÜX?³ñz¨F;a�T@K6è0,DYz+·º¾ÞÅáì-×ÄAlmyà]�5)"@GêAÜT"b½å¼l nÚBÙÂaÞø1b rîBjhr¼oå.$²Þt¢Àfñ¿ûQQURKê,@¨'©OÈ?ãi"ïÀÉXÈ&Û4Bñîv^%d6)¾¬5ì¼Üá#Ѭ!4,sµµÌ63f¶é(>;®*^/tƽâÙ¶H!épí²BBÚX½Ð <ö¼}ÖPù/gÁ´Îx(ù#Z½Ï(9×|$ xØy¾ÅÊÏærmVÞè.W@§lÎï&á�M®_ Y!'<ëÖøÞ{¢ ®dUR: v3Q25´qí>7´á#ɲF8µqKÖê§ÁV n �Ô-S6µ±1¿×ïwÄZÎözS£ ¦=½5¥jÝàS=p Σèf é´o8¿°Oêð1½ë(dÛÖ>RÁÙø½IäaWqd$,m>ÚmïÐ@Q,-Þko@É`ÙÁ:Ì3nÝxD·y)} ÑaOä}ChÔyOÛnËÀi?"±-'øºmi~Æ&¨¥Ôß@ÓM¶~U¥1Ì@ÅKyàr2Í»°ß#EðÀµÔ6¶wÓ2h/Úð¤xM§¤¶ñêT*&¶ñºHú@s¨[ã4îüPɶúuÜyµÏ. +û¾!±Þ7}B@ + «]G�ìémvqµêù9ó +£r}? +ϼzúø´¡Xqê@XÀú PuÌ¥¿Üåö({h¬Å¨aFÃ0hZç VÌ×C$ÐÛÃA Jy#Ó\×õºÇxJªñä|»ÀZ1¢úGwݹÁë{u�´>µWñqØÁÌó²äùÆ)ï2,°æ×¡ëT¸çX÷õùÝT=aMÆù9´8@ B+:@ À»+§ÆgØ't¤ MÕ øÊ¼ÞÀ-@'Æo`-[oÀp MÚUp á!ÝÜ@ öªHòêÑ: «®üÏ7aF©+BµñÀ¢3` +,f&Tç(Aâ#IÝU(³âQBN¹"!,\5,ô@'ñèÍïiPuäº !û9´^p1 +Ë:mý½ÙD©4åâñúþëþ¨o7f©ûE2kõ MUCÅK^Æ5÷/g< w¿þøø÷I zþøéíÇÄÓïã?~wQeJp ¤õ¸¼>�«¶îó\ïX?SlÍAØ~}Ráý ý7è4ÒÒ 8°× h¯VP«ÅyÌuôöÔªd¾XÁùÀÞºÔþ¹Rñ~À³EÄx%ìuÀ+ó_N&/ÞDþÌîþÌ÷@ø¸#_§ª-Ò!&ßâA¾ïìgCfU¸EȽk®E��)wjÊC +ÓØà÷ÁìÝX_·!wÀ/L(NÅlnÅ6öôÁ¾»çu½GÅÌ/Y\�p_ÙbGwÏl\×êcRÃ`ÌÂy ¥¬# 14¿dk +zzõ"ú~÷Ç,,ÄUbaµ-ÏÿÆß(@V©µ ÿrÔ?}ÿàúýJ>Å;"(¬¢ßßü½ïo*!ø³!La +¸à +9Î\öþï¾Áò4Ïíd ï±%YFç%T«ÐS®Z +½Vßçë·{ë½ÖÓû¾ ß´+_J>@0-hºÈ 0§q +£ØÐ³ÇDÜ©û¼3x1)Æôr3&?Nóc-ÄÚÿ]×ëZå9¤õ#<ÌçY×ïw¨ñ~¾Oác-øQ-2×0ß×áÑûÕð§Z¸ÉðëzÙ Ìþmàõþ©¸¼6ø,Ä �sçÀ�¦ÔßGJym?ç7#Àï/¤¼fÞ×>)AÜ$¬ µ Dçß$;ø0£ ÌÀüý(Özz¯Þ(A>H*A#`fÌÀt+0N·P2BóÓïÏ+ïÍàyø¿|crþÜ/°-À»dê¢�èn°@þ!ûAäJü +°ìµÉü%ü=Ö#ù¡óïù§ìF²fm�?N^|?¶~Îø×³äÁ!þ³Êôoimøn´lyÄ?P/{ò}¯É_z¿K÷¯£HóiÔôj^0G$1 \ó¯ +Ê4 2µ)ß`~i0¯¬2k&)u)öôÃ= ñZ¿I9!G*¿ /XèC_×Àâh%wÞHÍÉ£çÏðóÓ8Úþ½bÆÑüâh©¥ÜöüñÓÛ·8ýøpúd*§§úcòt==r¢7¾ñô©þÛ*]×#ú'a£ì©å/5@Ãëû Pì@°<ýëúÚr)¦fPïûù}=ËyqOòz� ÀG òf|(,|;âPËP(8Û7J%ôÛ|PÝ«LÁkÌQ?#�vDòÖ]BajÃçü+$?jÁsI +¢R®9I=o_ìB.H%M+@_éq´Éñ6 ¾xDÉvô ++�p3Q12Cq43 }ܨÑ!lÜ?lÒýi,)f3Ø¿WÏÕúZº�ò»ìæHkðqÌÙ(`áÑ EàÊQYË|KEcbÜE߯íXÌÓÄõ£¼iC~ 29'Ó=l©¢ñ¶~÷¯Ç²1tÚ±4Nt;pRáW'd+ÂÑs¼ð/Ô�¤j¼!ðà çj<2Ãü3ÒY>äôÎÁ²]n³,e` Âýù7M³:NßTZbºh²d æÏº(ÓDÜ~tÛ¾Âh"OY¸ fã4§Á½8¢ Üëúº6l3d®ë;Ü¡»~_ÖmÌõþîàÆ÷yNJëwdV-ï +?Ý7Gt]5Ó|?¢F,˹þAÅ@n~p]ßÓµð¾î0ÛzÓâ$øñø~9-èü=9-NÂÿ4"V?ÃÚýÿ³Ñ5-þÇÝÁ3z9ÝîÜù$ï"ý|øágîà&ýáp¨©!iöû»3@H)ÊjÈz¸ÓwÔ¿7Ôæv¹â?à;º%ÂSÃø" {°/ÒòRWðµ¡*GßWÒ"³È(xý~GD<GtÒ-\î~=Â\/àûzJYÒü� ³0z¿WD¶ïë*PvH¶¾OñgY%üá"X{ÑÝ%úá"<ï÷Y YÂÅùuOD¹S¬×Uà}C÷×#¢öþ|=Ä_p~ìʳBûdWEtûñÇDðt +O"¼ÎÈv¬Àí2£¾~¦ÜæAøÐEàáPO¸%%}vF²ÒBiî!°^/¹¸íúH°õ³¸YÁ;º¿ÎóHéë÷{²¶óüX Ù +¾~¿Ã«ûë^<Eµu~.§Aü3îßá X5üçÎdÿ^Ü-¦E?ÿ¶åþíN|¿Òj-3üÖøN¨OHYÞ~.7�¬d¡y\}Ý`Iq*oðô$椴þ]TZ$¯n¾ Cdgª_)Õ £ïCoP ̲òÙAH¿¡&4ßp¥©+|Ð¥¡OOÂN5ÎØ¿6 +}a8~3Ç#*WÂ@èkÙ»Dª "/aPÚ20ÈG¯ ¿ÌÞ`oÔç²>«· *f@sdÜ7ð92îu ¡<¹�#$ãëú/¾¯çÈtÿ4Á÷¹Þ æÈäzÅ:rdf©ÀåÈäzWÈTp¤)eìñ¿ïT 'Ù,sFb÷9ɦiU\©@q¬Uà!ähTä;5³cÈȰd±¹íª7J 6d¢ø¾ì°-*æ9Ä;´ÚY}[[ѵÚÜN· ÿR0«Â_h}ó&ç wøæsÇ´Á-Q<Ç(&7ÈÅ +ÍpQó ügQÌ>¤¶;¶ÁǦ¨ =ÂÃuê0UÞ3Ù²¸l�m¢ÏäaÚà£>òÝÑ 4²Ù3ú+S ~Fìâs¸tÉ.ÜÑðÙäû°² «û-®Pã^!ÒC +=ðàæûP};BÇþõǧ +þý³ÿÔëÇ*ÿY7OßÀT¢á70nÞz®TmRÇÄ:2èJ È:"öÙ|´ðÑ·ì3uÃ`uÇÔH^7À j#¹n$5cvìH®²6Då «ly+à àµÉ'®ãg >¸ZØ \Ny¸®7`o`o`p¸¬Ê°Û� �=Ã&XI�½@ξiÆ-R,è��ÆIÊßød0?'ONpÝ@·ñ|̿Ǭ¬Ý^ÖX×ïë>÷î¯Ûøá#¿Ùø)u�P·ñÃ�é6~²Oj*è¨Ia±:`ËTÁ7T³M� zê`r;ô:7a0TcÎÂ+Êu0qX,×ÁÁûë÷õàù´¡ûwc{éþÌÇFè¹Aê`¨07}ÈcêÈû¾l�d!s¹§rZ°6Îô0r#Ø ÇB4+¹84³æb£NóMõ²Á:5r(XUúi£>6x«JGκz=Á:Å϶µNrsµÇúh4mÔëFlÔÉ7mTßlÔÇÞ~¼Ù¨ö£ËF~³Q[oдQlõz¥µ Muf£0è·Q/0°QvÔo£ôÛ¨×Wì·Qo¿c£^ר¨ÅºmÔëúµZ�<If£(2ÉÌn�´kÆÙÀ*ßp³ºãña¤:°A=w¹è Ü4^ó[lÐoä^¯Ðoä¦õwÜëú~#·ø~·{½¿*o¹ÅúÜ+ +ô¹÷¹%#7NÉFn:ÁGÕ²eä^a8`äXÐmäØmäTØmä¶Îß2rïw¹Åý»ÜÖý[Fn¢;Fn²Uo¹× Üb~#·¼B·[@W©rh*bnß~Ý k@ ¡¹Ò¥Ü@OsÝzÒ\³f}Ý Öêèz{ÅéÅÙ¸¹®ïÑWx�Y/vy.çu}^|>Añä9$ÉSbøÃS*äÄ´~,»qZóÓhvã@ØÝNe7æÝÙ¼@Ov#ºOvãt( ó>Ý�;²ãá丢@Ov£DÐÑ?5q;6hôáçÙGBI C½ ØêO Nü#ù¨U¢ñ®Ç<¹l K'mòÛÛ8 LG½tÓ_/8¿¿éE¡2ì*Åêø/>x9Á¾õPÁm{= )ÒìÚ39×¼á"âÍk}n]×ë]¼¼sç÷?·ÏÀ uÃ,Öã°R·çé¥"AÇQ°©pÀO¯?YqøÜCüänÊ6¡X/×¾&F\¿?JQ&%3s�ßïÊ7#üÕ'm:oëþ~]¢úþ+ú>zrÿ<©uJ?¹y~ø4U¡ó,Òÿ¥óÓn¶æ¸À¯cÁ4¡õ*iÓ$ÿl§ZRÿ¢ÓÞúÝίz~è÷sárëû´Ä"·¹j�È3ÂÖï"ÿÿܾ«E¿|*¿üÞøçÐûÍÛ-ú êCY¢?þ}x~a¸y0äÊ×÷ï 0l\ #À°OÅ+ç[<ì²-im0[Èì ÔücËpÈXÕmÉÔÁk % +tÌt˼ ++F0DMÁ²)C8o0d +ƨøb +þ×_ýð_º/÷õ«ß=h!ÿJÏÿçWLß»ÎåçW¿ýú§ÿñç¯þðÿô÷ÿåëßþõ_ùÛûóão¿þ×ÿûú·ÿøù?ýôõëúͯÿùëß_ÿñÿóÇ¿ýüõ_¾~ÿóÏù_üâÿøÇ÷Ï¿ÿÃß¿ÿôãÏ¿øµ[ßýíþéÿüâ/Oë¾ÿóúç¯_ýïþÛ¯§ûÿÞ2qË +endstream +endobj +336 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 909 0 R +/Name /Im315 +/Width 31 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`n```?W07Øüan¨ûÇÜ𯾹ùýáöüû0ÿÞßÀðÿýþbÅ@r 5 µ = ½ 3@fá³èyê½Z�[Æ4z +endstream +endobj +337 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 910 0 R +/Name /Im316 +/Width 34 +/Height 58 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`ÿÀÀÀøÿûÿÿò?êìüo`øðÿ0Áø¿J0ÿgÿ`` ø2 V/ÝÿÿÿaJVµ;e,~_$ +endstream +endobj +338 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 911 0 R +/Name /Im317 +/Width 48 +/Height 58 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÏ�ÿqì`dý ÉüÿäÿÿHÊÿÛ0þo`þ_&?0Èÿ0ÿ?D6 HþÿÿÇþÿLÒÀªv§)�°^ +endstream +endobj +339 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 912 0 R +/Name /Im318 +/Width 40 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÎ1 +1п¤ØFH» 0`c)æJöêfÁÂ3Ù'ð +ñ¦T7ÙÅ"/Í�F¥?`3ýDfæ]Q3¾ÒVúÖA¥«¾?/'»-Ë2Ã2mXâĤA4h3ä±°?r³JDÊÄܬÐ4[ÔÈRð]RÝIØöÐ~³eþ@xz§/üaò ]W»ómýåXí +endstream +endobj +340 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 913 0 R +/Name /Im319 +/Width 29 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=ͱ@0ñ¿KB¥3U¡Èñ605ÞV°Wr§ß×~�À¼Ôgô£afÆ´d'Å4YÊ`°è¼Ö×=F? Üë<æHÊK Ûü$#i.QÔn©n\&6� +endstream +endobj +341 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 914 0 R +/Name /Im320 +/Width 10 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcn`?�ü `È Ï v6@hÁP@ø�¹Dk§ �Ô +² +endstream +endobj +342 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 915 0 R +/Name /Im321 +/Width 32 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`üÿíø?ãæì ür@,Ä6@lÄ@\�ÅøÿG0±Hj+ úm æÌ²dÈ^ý`wÜtzÕB]�\Å*d +endstream +endobj +343 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 916 0 R +/Name /Im322 +/Width 23 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcàÀ`ÿáã>æ;ö:~:9;0ú> Ë + +rìøÿ30ÿ`®)�BL +endstream +endobj +344 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 917 0 R +/Name /Im323 +/Width 13 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcxÀøù²�Ãìøð�Aù dg°g°Ã0¬`øxåjç�&K} +endstream +endobj +345 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 918 0 R +/Name /Im324 +/Width 47 +/Height 58 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xµÐ½ á#ÀV66NfıìE7ÐNåó;+ÿ:có$÷:*x×4h¨ÇDKl÷ZH@t«8D¿jCu>jy²îïâ×»ØÀ?kÛ<;;;^mHü¯z¨ AʪÍwÃÛ +endstream +endobj +346 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 919 0 R +/Name /Im325 +/Width 58 +/Height 74 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``àa`f�9ödÚ ¶aàg@¦käQè + Nlô Èô H4ã Èô N$ùP'2}�¨Í~�hCý0hPÿÀh8бì°y6Þ&èâ¼ D7�æo`F¥A:hwiím`:+¯ê®�õ{ +endstream +endobj +347 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 920 0 R +/Name /Im326 +/Width 50 +/Height 68 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xK`�êªo�SöÀ?D*ù�%)ùH®düæ°ÿH}H ·D"ÅPÀ@'PÿÀäÿP +*häR¹Å�GhP½ +endstream +endobj +348 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 921 0 R +/Name /Im327 +/Width 30 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÎ1!FáPL97Xo¡ ײ »\Ë£XØRNAÀaQ±øê÷à×jÿÓT]Ì ÊBC® g½(q³Å.F8C\:U'?àËÔCí?¶6Uµ2ÑPäÄù# \øxGÐé £7Ût)úüÞ®áqy¡¼Pi +endstream +endobj +349 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 922 0 R +/Name /Im328 +/Width 45 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}α �DÑO(èpÃVZ8% Û¸£0¥B ñW^>(z(ìX¹Ò`=kÓ Vμã-"(Â+¥ï²NW*gZÏ¿X oe6HWú ¼Æm.`Jf +endstream +endobj +350 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 923 0 R +/Name /Im329 +/Width 46 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÏ= +Aà·88¶V °ógnã5r9Â[ÆD]!|â ªÚ13pu/Hôìn¦Åüo|-mJè^©µÐ±fwebñ ]Cpçîòô๰»l͹û7»Ï3øÛóôDBL +endstream +endobj +351 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 924 0 R +/Name /Im330 +/Width 48 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿ@âÿ0ùñ1üg`°?�"ùHö ùü&ÿHFdò?Ñ$.¨i`ýÂ.½`7�5÷L~`�3 +P`G¡µ;,=ln +endstream +endobj +352 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 925 0 R +/Name /Im331 +/Width 55 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xåÐ1 +Â@áÜ&hkÈ1̼@=¥GÙ#X¦gP<Åã{W$¢Vý`ÊhÒÆãsr'¦2éC ýûzB»swm^=Þ3ÁyX>f-7c¡Ñ\Êì)\»áq{¯¨Qy +endstream +endobj +353 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 926 0 R +/Name /Im332 +/Width 55 +/Height 69 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨?À�ÿÿ¤!ãQìÿÀýÿõÿÿ uðÿÿ@êøû?@ê|<ºÏÀÿHÝP Ôöÿ@ê +õ�u`(Qÿÿÿoþÿÿ>Êܵæ�Ø}Ǥ +endstream +endobj +354 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 927 0 R +/Name /Im333 +/Width 79 +/Height 68 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿf ñï?,û@ðÿÃÈcýRXïæÁÈ"6!Xþ.5#�ÅË$· +endstream +endobj +355 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 928 0 R +/Name /Im334 +/Width 27 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xEÁ Ã0GÜCO`HÀ¤ZRyD¥¸+E%¨�áË?Ì2ìq°»¤%àiÎFçÚ!r3ϧ7«ÖÁâ AB_TuTwQüKö\/ +C87,¬[RWÌ1ÕLóg{üê¸0 +endstream +endobj +356 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 929 0 R +/Name /Im335 +/Width 47 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãg¨cøÃ ßø¿ù?ááæãì ïÏ07$¾aüÁ|ààÆ@ò|Àøù�3³7�i½½clüür< ÒBJ@H99)ÿ¨G_¼vª�«#)k +endstream +endobj +357 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 930 0 R +/Name /Im336 +/Width 23 +/Height 48 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-Ì¡ 0�Ào*{ ¢É¯Ä± +#0ýÁ6Ìð£t$´ôyÓåGÕl@¥Ï©¦Ö4ÎÜÊKí;H27ñJ¼dr;ã¡èÓé/rD.ü +endstream +endobj +358 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 931 0 R +/Name /Im337 +/Width 47 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+`�?`ò?¬?�"å?Hv°#=$þ!HD¬¢6ÂP_CB �LêëU´�ë"1» +endstream +endobj +359 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 932 0 R +/Name /Im338 +/Width 32 +/Height 48 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÌÁ !FáÂat Æ +,ÀHc +qéDJàÈ»!zøn/ÔX6³£Ñ*©.*£[åÒDÝÚaZ©k;åíàÏÄôÄHú$Ë{bñÞ)ªðGT?ÑÒ4ãt½×íô¦DÉ +endstream +endobj +360 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 933 0 R +/Name /Im339 +/Width 29 +/Height 75 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``0```¨�âPü000Ãðvn``àa y(¶b ®bÆf¬ùFr1F3$�±¬wÍv5�2Í. +endstream +endobj +361 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 934 0 R +/Name /Im340 +/Width 40 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xEɱ Ã0ÐDMðµ.T)R¤t§<°o¢QnWaÉÒ¼æÁ�¸ +*át`ñ:#¯ÖWlÌQ¸|NÄ¢ ±¼µ³ jgGÂtbí;Fõ+mØÿ´Ñ~#s:#óòdQáÕËã¾|7õ:0 +endstream +endobj +362 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 935 0 R +/Name /Im341 +/Width 20 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}ͱ Â@DÑo]°!ä£K$d¦à +ìCdôB[Êp!e±×�£L4Cg# Þz*üO%mHÏ!sÎÜ2C.ÃÈ<2 _¸ï6ºðmR¨íGêE|VÔ«Y.¦ÓgÑònãqq¼.Ó®'5 +endstream +endobj +363 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 936 0 R +/Name /Im342 +/Width 25 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`g``àby ®g``ÿÏÀð÷30ü° V\ßÀPÿÿKUmT�Þ +endstream +endobj +364 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 937 0 R +/Name /Im343 +/Width 63 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xEͱ Â0á{zHnPܦ°Ä)PLÁ *y£0Gñ(pab@õ5§ûÉc +PßbªN+·hº3OÞHmzzÖxzAËÉ:¡]ÿõf RW9Â8?\Uü]jVÖªÿ9fµ_F´OñjÚQ>GªJÒ¾RÜl8s¬KC]Î9´E +}PðºÄ&·À(,hìqx\?2Z +endstream +endobj +365 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 938 0 R +/Name /Im344 +/Width 47 +/Height 4 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿ@Äÿ²,¢ÏR5Å�Ý^ +endstream +endobj +366 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 939 0 R +/Name /Im345 +/Width 51 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``H`�ªÿÀäÿP +*8(J�bc£Õ6�hEñ +endstream +endobj +367 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 940 0 R +/Name /Im346 +/Width 15 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°`¨Â +ÀÞ ÀâÁ ódo`oàgàgágãB ¹þ@1åÚ b�µd +endstream +endobj +368 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 941 0 R +/Name /Im347 +/Width 77 +/Height 100 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÍÒ10Æñ×tèX/`¸#x'¯à!4ñb=J½Æ &å}E^7dßøÏ÷ ZA-4H©^J)㥬*HªÎèÑóL&ï/C¿ÎÛA%¢ðRGiȵª£zèÐ!êS1ªqkŨ¯7³aa#ÓófIïÔe³$5ö,³MX/©ÃzI«3âã>ktçãôBzöBjvB4Ô]¡ôïUñs<··Ó>h× +endstream +endobj +369 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 942 0 R +/Name /Im348 +/Width 47 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`�ÁP"ÿHö? Rþ¬?�þO;a°0@d!*é!ñ2úzU+m�õ0 +endstream +endobj +370 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 943 0 R +/Name /Im349 +/Width 35 +/Height 49 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUα Ã0ÀT¨Ô*ÒºÉÑbÌ2Gá.]ù<cH +]¡'øÄ8J:y`Ä<1°J£W:£\FÙ\LCË_(|Ð{ÅýcScªk-Îr1L<P+ªãeGÓa¤·¤'#Éèéún÷õ¹¼;gw§ +endstream +endobj +371 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 580 0 R >> /XObject << /Im24 31 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im102 109 0 R /Im25 32 0 R /Im140 147 0 R /Im22 29 0 R /Im21 28 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im107 114 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im111 118 0 R /Im141 148 0 R /Im116 123 0 R /Im29 36 0 R /Im106 113 0 R /Im117 124 0 R /Im102 109 0 R /Im23 30 0 R /Im101 108 0 R /Im111 118 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im350 373 0 R /Im138 145 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im101 108 0 R /Im351 374 0 R /Im155 162 0 R /Im117 124 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im116 123 0 R /Im29 36 0 R /Im26 33 0 R /Im26 33 0 R /Im25 32 0 R /Im26 33 0 R /Im113 120 0 R /Im104 111 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im225 236 0 R /Im173 182 0 R /Im174 183 0 R /Im225 236 0 R /Im190 199 0 R /Im176 185 0 R /Im225 236 0 R /Im215 224 0 R /Im136 143 0 R /Im137 144 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im22 29 0 R /Im26 33 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im107 114 0 R /Im30 37 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im117 124 0 R /Im21 28 0 R /Im101 108 0 R /Im29 36 0 R /Im102 109 0 R /Im29 36 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im109 116 0 R /Im225 236 0 R /Im120 127 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im118 125 0 R /Im105 112 0 R /Im28 35 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im117 124 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im142 149 0 R /Im28 35 0 R /Im21 28 0 R /Im22 29 0 R /Im112 119 0 R /Im26 33 0 R /Im102 109 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im116 123 0 R /Im116 123 0 R /Im26 33 0 R /Im21 28 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im141 148 0 R /Im117 124 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im25 32 0 R /Im22 29 0 R /Im23 30 0 R /Im101 108 0 R /Im21 28 0 R /Im142 149 0 R /Im28 35 0 R /Im25 32 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im117 124 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im29 36 0 R /Im25 32 0 R /Im21 28 0 R /Im101 108 0 R /Im109 116 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im30 37 0 R /Im29 36 0 R /Im117 124 0 R /Im25 32 0 R /Im22 29 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im117 124 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im111 118 0 R /Im25 32 0 R /Im22 29 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im29 36 0 R /Im116 123 0 R /Im21 28 0 R /Im111 118 0 R /Im26 33 0 R /Im102 109 0 R /Im111 118 0 R /Im28 35 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im22 29 0 R /Im21 28 0 R /Im26 33 0 R /Im21 28 0 R /Im145 152 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im221 232 0 R /Im150 157 0 R /Im25 32 0 R /Im116 123 0 R /Im26 33 0 R /Im22 29 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im325 346 0 R /Im107 114 0 R /Im106 113 0 R /Im22 29 0 R /Im23 30 0 R /Im176 185 0 R /Im202 211 0 R /Im120 127 0 R /Im213 222 0 R /Im137 144 0 R /Im326 347 0 R /Im269 288 0 R /Im117 124 0 R /Im102 109 0 R /Im105 112 0 R /Im25 32 0 R /Im142 149 0 R /Im28 35 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im26 33 0 R /Im105 112 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im26 33 0 R /Im106 113 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im22 29 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im25 32 0 R /Im111 118 0 R /Im105 112 0 R /Im28 35 0 R /Im116 123 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im28 35 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im30 37 0 R /Im116 123 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im21 28 0 R /Im145 152 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im22 29 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im107 114 0 R /Im30 37 0 R /Im114 121 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im28 35 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im25 32 0 R /Im115 122 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im173 182 0 R /Im21 28 0 R /Im109 116 0 R /Im107 114 0 R /Im30 37 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im143 150 0 R /Im29 36 0 R /Im105 112 0 R /Im106 113 0 R /Im136 143 0 R /Im193 202 0 R /Im193 202 0 R /Im29 36 0 R /Im101 108 0 R /Im111 118 0 R /Im30 37 0 R /Im107 114 0 R /Im26 33 0 R /Im102 109 0 R /Im105 112 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im136 143 0 R /Im193 202 0 R /Im193 202 0 R /Im193 202 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im21 28 0 R /Im105 112 0 R /Im30 37 0 R /Im101 108 0 R /Im26 33 0 R /Im102 109 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im26 33 0 R /Im25 32 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im120 127 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im102 109 0 R /Im28 35 0 R /Im101 108 0 R /Im26 33 0 R /Im21 28 0 R /Im112 119 0 R /Im25 32 0 R /Im26 33 0 R /Im102 109 0 R /Im106 113 0 R /Im23 30 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im26 33 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im114 121 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im115 122 0 R /Im22 29 0 R /Im25 32 0 R /Im25 32 0 R /Im111 118 0 R /Im105 112 0 R /Im352 375 0 R /Im193 202 0 R /Im193 202 0 R /Im113 120 0 R /Im20 27 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im26 33 0 R /Im26 33 0 R /Im102 109 0 R /Im120 127 0 R /Im118 125 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im118 125 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im23 30 0 R /Im25 32 0 R /Im28 35 0 R /Im29 36 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im142 149 0 R /Im28 35 0 R /Im21 28 0 R /Im22 29 0 R /Im112 119 0 R /Im26 33 0 R /Im102 109 0 R /Im22 29 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im112 119 0 R /Im105 112 0 R /Im118 125 0 R /Im23 30 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im325 346 0 R /Im107 114 0 R /Im106 113 0 R /Im22 29 0 R /Im23 30 0 R /Im176 185 0 R /Im202 211 0 R /Im120 127 0 R /Im213 222 0 R /Im137 144 0 R /Im326 347 0 R /Im269 288 0 R /Im23 30 0 R /Im30 37 0 R /Im26 33 0 R /Im111 118 0 R /Im105 112 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im114 121 0 R /Im105 112 0 R /Im22 29 0 R /Im29 36 0 R /Im21 28 0 R /Im117 124 0 R /Im25 32 0 R /Im111 118 0 R /Im26 33 0 R /Im21 28 0 R /Im112 119 0 R /Im25 32 0 R /Im26 33 0 R /Im21 28 0 R /Im23 30 0 R /Im30 37 0 R /Im30 37 0 R /Im111 118 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im116 123 0 R /Im120 127 0 R /Im213 222 0 R /Im21 28 0 R /Im105 112 0 R /Im29 36 0 R /Im101 108 0 R /Im111 118 0 R /Im30 37 0 R /Im107 114 0 R /Im26 33 0 R /Im102 109 0 R /Im116 123 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im30 37 0 R /Im22 29 0 R /Im23 30 0 R /Im28 35 0 R /Im101 108 0 R /Im112 119 0 R /Im105 112 0 R /Im213 222 0 R /Im166 175 0 R /Im120 127 0 R /Im113 120 0 R /Im113 120 0 R /Im113 120 0 R /Im120 127 0 R /Im213 222 0 R /Im353 376 0 R /Im30 37 0 R /Im109 116 0 R /Im105 112 0 R /Im21 28 0 R /Im145 152 0 R /Im25 32 0 R /Im232 243 0 R /Im176 185 0 R /Im213 222 0 R /Im353 376 0 R /Im107 114 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im23 30 0 R /Im108 115 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im107 114 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im105 112 0 R /Im137 144 0 R /Im113 120 0 R /Im156 165 0 R /Im30 37 0 R /Im29 36 0 R /Im110 117 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im114 121 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im202 211 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im21 28 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im26 33 0 R /Im102 109 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im28 35 0 R /Im106 113 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im106 113 0 R /Im22 29 0 R /Im23 30 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im28 35 0 R /Im117 124 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im105 112 0 R /Im117 124 0 R /Im25 32 0 R /Im110 117 0 R /Im21 28 0 R /Im101 108 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im213 222 0 R /Im166 175 0 R /Im113 120 0 R /Im104 111 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im106 113 0 R /Im22 29 0 R /Im23 30 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im109 116 0 R /Im29 36 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im116 123 0 R /Im30 37 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im105 112 0 R /Im21 28 0 R /Im110 117 0 R /Im101 108 0 R /Im21 28 0 R /Im143 150 0 R /Im22 29 0 R /Im101 108 0 R /Im106 113 0 R /Im26 33 0 R /Im102 109 0 R /Im111 118 0 R /Im21 28 0 R /Im144 151 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im109 116 0 R /Im29 36 0 R /Im30 37 0 R /Im107 114 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im107 114 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im29 36 0 R /Im25 32 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im26 33 0 R /Im21 28 0 R /Im112 119 0 R /Im25 32 0 R /Im26 33 0 R /Im102 109 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im106 113 0 R /Im23 30 0 R /Im108 115 0 R /Im26 33 0 R /Im28 35 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im325 346 0 R /Im107 114 0 R /Im106 113 0 R /Im22 29 0 R /Im23 30 0 R /Im176 185 0 R /Im202 211 0 R /Im120 127 0 R /Im213 222 0 R /Im137 144 0 R /Im326 347 0 R /Im269 288 0 R /Im25 32 0 R /Im29 36 0 R /Im26 33 0 R /Im102 109 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im105 112 0 R /Im25 32 0 R /Im28 35 0 R /Im111 118 0 R /Im30 37 0 R /Im22 29 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im107 114 0 R /Im25 32 0 R /Im101 108 0 R /Im114 121 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im23 30 0 R /Im30 37 0 R /Im118 125 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im156 165 0 R /Im21 28 0 R /Im110 117 0 R /Im113 120 0 R /Im138 145 0 R /Im107 114 0 R /Im112 119 0 R /Im25 32 0 R /Im105 112 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im109 116 0 R /Im22 29 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im25 32 0 R /Im115 122 0 R /Im116 123 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im105 112 0 R /Im25 32 0 R /Im142 149 0 R /Im28 35 0 R /Im25 32 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im318 339 0 R /Im29 36 0 R /Im101 108 0 R /Im111 118 0 R /Im30 37 0 R /Im107 114 0 R /Im26 33 0 R /Im102 109 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im318 339 0 R /Im354 377 0 R /Im120 127 0 R /Im21 28 0 R /Im109 116 0 R /Im330 351 0 R /Im29 36 0 R /Im30 37 0 R /Im117 124 0 R /Im175 184 0 R /Im136 143 0 R /Im182 191 0 R /Im174 183 0 R /Im354 377 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im26 33 0 R /Im25 32 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im105 112 0 R /Im106 113 0 R /Im101 108 0 R /Im111 118 0 R /Im29 36 0 R /Im111 118 0 R /Im111 118 0 R /Im25 32 0 R /Im108 115 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im105 112 0 R /Im347 368 0 R /Im318 339 0 R /Im354 377 0 R /Im176 185 0 R /Im136 143 0 R /Im215 224 0 R /Im354 377 0 R /Im137 144 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im117 124 0 R /Im25 32 0 R /Im23 30 0 R /Im108 115 0 R /Im21 28 0 R /Im30 37 0 R /Im28 35 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im114 121 0 R /Im106 113 0 R /Im29 36 0 R /Im30 37 0 R /Im26 33 0 R /Im26 33 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im111 118 0 R /Im25 32 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im26 33 0 R /Im355 378 0 R /Im113 120 0 R /Im156 165 0 R /Im30 37 0 R /Im29 36 0 R /Im26 33 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im108 115 0 R /Im26 33 0 R /Im28 35 0 R /Im25 32 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im355 378 0 R /Im120 127 0 R /Im23 30 0 R /Im29 36 0 R /Im111 118 0 R /Im26 33 0 R /Im102 109 0 R /Im101 108 0 R /Im102 109 0 R /Im117 124 0 R /Im29 36 0 R /Im25 32 0 R /Im112 119 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im118 125 0 R /Im21 28 0 R /Im26 33 0 R /Im26 33 0 R /Im117 124 0 R /Im25 32 0 R /Im107 114 0 R /Im25 32 0 R /Im106 113 0 R /Im134 141 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im118 125 0 R /Im21 28 0 R /Im26 33 0 R /Im26 33 0 R /Im117 124 0 R /Im25 32 0 R /Im105 112 0 R /Im26 33 0 R /Im30 37 0 R /Im118 125 0 R /Im120 127 0 R /Im101 108 0 R /Im111 118 0 R /Im26 33 0 R /Im107 114 0 R /Im30 37 0 R /Im105 112 0 R /Im106 113 0 R /Im26 33 0 R /Im118 125 0 R /Im102 109 0 R /Im105 112 0 R /Im29 36 0 R /Im25 32 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im29 36 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im28 35 0 R /Im26 33 0 R /Im106 113 0 R /Im113 120 0 R /Im104 111 0 R /Im109 116 0 R /Im355 378 0 R /Im21 28 0 R /Im105 112 0 R /Im105 112 0 R /Im107 114 0 R /Im26 33 0 R /Im26 33 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im105 112 0 R /Im142 149 0 R /Im28 35 0 R /Im21 28 0 R /Im22 29 0 R /Im112 119 0 R /Im120 127 0 R /Im117 124 0 R /Im28 35 0 R /Im106 113 0 R /Im21 28 0 R /Im106 113 0 R /Im26 33 0 R /Im105 112 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im101 108 0 R /Im105 112 0 R /Im28 35 0 R /Im101 108 0 R /Im29 36 0 R /Im25 32 0 R /Im26 33 0 R /Im21 28 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im28 35 0 R /Im26 33 0 R /Im106 113 0 R /Im105 112 0 R /Im113 120 0 R /Im200 209 0 R /Im115 122 0 R /Im116 123 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im107 114 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im105 112 0 R /Im22 29 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im26 33 0 R /Im26 33 0 R /Im23 30 0 R /Im30 37 0 R /Im118 125 0 R /Im106 113 0 R /Im30 37 0 R /Im22 29 0 R /Im23 30 0 R /Im30 37 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im355 378 0 R /Im111 118 0 R /Im25 32 0 R /Im116 123 0 R /Im25 32 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im25 32 0 R /Im111 118 0 R /Im226 237 0 R /Im29 36 0 R /Im25 32 0 R /Im26 33 0 R /Im21 28 0 R /Im117 124 0 R /Im21 28 0 R /Im26 33 0 R /Im21 28 0 R /Im106 113 0 R /Im102 109 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im26 33 0 R /Im21 28 0 R /Im112 119 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im22 29 0 R /Im23 30 0 R /Im21 28 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im113 120 0 R /Im246 263 0 R /Im247 264 0 R /Im356 379 0 R /Im255 272 0 R /Im253 270 0 R /Im264 281 0 R /Im324 345 0 R /Im253 270 0 R /Im264 281 0 R /Im265 282 0 R /Im249 266 0 R /Im254 271 0 R /Im250 267 0 R /Im253 270 0 R /Im357 380 0 R /Im256 273 0 R /Im266 283 0 R /Im251 268 0 R /Im264 281 0 R /Im267 284 0 R /Im265 282 0 R /Im258 275 0 R /Im259 276 0 R /Im257 274 0 R /Im250 267 0 R /Im253 270 0 R /Im251 268 0 R /Im264 281 0 R /Im260 277 0 R /Im119 126 0 R /Im28 35 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im143 150 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im101 108 0 R /Im111 118 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im108 115 0 R /Im26 33 0 R /Im28 35 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im23 30 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im117 124 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im28 35 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im142 149 0 R /Im28 35 0 R /Im21 28 0 R /Im22 29 0 R /Im112 119 0 R /Im26 33 0 R /Im102 109 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im26 33 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im156 165 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im116 123 0 R /Im28 35 0 R /Im29 36 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im120 127 0 R /Im118 125 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im26 33 0 R /Im26 33 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im171 180 0 R /Im172 181 0 R /Im117 124 0 R /Im102 109 0 R /Im119 126 0 R /Im103 110 0 R /Im135 142 0 R /Im358 381 0 R /Im113 120 0 R /Im224 235 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im358 381 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im116 123 0 R /Im30 37 0 R /Im101 108 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im120 127 0 R /Im101 108 0 R /Im111 118 0 R /Im29 36 0 R /Im22 29 0 R /Im105 112 0 R /Im107 114 0 R /Im29 36 0 R /Im112 119 0 R /Im111 118 0 R /Im21 28 0 R /Im29 36 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im22 29 0 R /Im21 28 0 R /Im26 33 0 R /Im21 28 0 R /Im145 152 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im103 110 0 R /Im111 118 0 R /Im25 32 0 R /Im106 113 0 R /Im21 28 0 R /Im26 33 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im115 122 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im21 28 0 R /Im105 112 0 R /Im105 112 0 R /Im23 30 0 R /Im30 37 0 R /Im118 125 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im156 165 0 R /Im21 28 0 R /Im110 117 0 R /Im113 120 0 R /Im350 373 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im186 195 0 R /Im28 35 0 R /Im105 112 0 R /Im106 113 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im29 36 0 R /Im21 28 0 R /Im117 124 0 R /Im25 32 0 R /Im111 118 0 R /Im105 112 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im26 33 0 R /Im110 117 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im107 114 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im28 35 0 R /Im106 113 0 R /Im25 32 0 R /Im105 112 0 R /Im26 33 0 R /Im26 33 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im106 113 0 R /Im30 37 0 R /Im22 29 0 R /Im22 29 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im26 33 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im269 288 0 R /Im141 148 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im108 115 0 R /Im26 33 0 R /Im21 28 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im111 118 0 R /Im28 35 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im28 35 0 R /Im117 124 0 R /Im141 148 0 R /Im119 126 0 R /Im103 110 0 R /Im135 142 0 R /Im358 381 0 R /Im323 344 0 R /Im30 37 0 R /Im109 116 0 R /Im358 381 0 R /Im113 120 0 R /Im135 142 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im101 108 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im120 127 0 R /Im26 33 0 R /Im26 33 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im22 29 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im111 118 0 R /Im25 32 0 R /Im116 123 0 R /Im106 113 0 R /Im23 30 0 R /Im141 148 0 R /Im143 150 0 R /Im29 36 0 R /Im105 112 0 R /Im106 113 0 R /Im105 112 0 R /Im25 32 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im21 28 0 R /Im101 108 0 R /Im358 381 0 R /Im323 344 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im29 36 0 R /Im30 37 0 R /Im30 37 0 R /Im106 113 0 R /Im113 120 0 R /Im119 126 0 R /Im28 35 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im25 32 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im120 127 0 R /Im26 33 0 R /Im26 33 0 R /Im108 115 0 R /Im21 28 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im29 36 0 R /Im25 32 0 R /Im107 114 0 R /Im29 36 0 R /Im112 119 0 R /Im25 32 0 R /Im111 118 0 R /Im101 108 0 R /Im111 118 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im21 28 0 R /Im29 36 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im106 113 0 R /Im28 35 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im111 118 0 R /Im25 32 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im107 114 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im111 118 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im116 123 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im101 108 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im106 113 0 R /Im23 30 0 R /Im108 115 0 R /Im25 32 0 R /Im117 124 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im108 115 0 R /Im21 28 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im30 37 0 R /Im29 36 0 R /Im23 30 0 R /Im108 115 0 R /Im25 32 0 R /Im117 124 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im109 116 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im26 33 0 R /Im110 117 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im107 114 0 R /Im142 149 0 R /Im28 35 0 R /Im21 28 0 R /Im22 29 0 R /Im112 119 0 R /Im26 33 0 R /Im102 109 0 R /Im143 150 0 R /Im101 108 0 R /Im111 118 0 R /Im105 112 0 R /Im26 33 0 R /Im26 33 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im234 245 0 R /Im30 37 0 R /Im118 125 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im30 37 0 R /Im101 108 0 R /Im26 33 0 R /Im102 109 0 R /Im29 36 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im108 115 0 R /Im101 108 0 R /Im106 113 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im108 115 0 R /Im26 33 0 R /Im28 35 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im116 123 0 R /Im28 35 0 R /Im29 36 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im105 112 0 R /Im29 36 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im30 37 0 R /Im28 35 0 R /Im106 113 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im22 29 0 R /Im21 28 0 R /Im26 33 0 R /Im21 28 0 R /Im145 152 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im120 127 0 R /Im117 124 0 R /Im25 32 0 R /Im22 29 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im26 33 0 R /Im21 28 0 R /Im145 152 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im29 36 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im101 108 0 R /Im111 118 0 R /Im101 108 0 R /Im106 113 0 R /Im113 120 0 R /Im104 111 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im25 32 0 R /Im105 112 0 R /Im102 109 0 R /Im106 113 0 R /Im30 37 0 R /Im25 32 0 R /Im115 122 0 R /Im106 113 0 R /Im25 32 0 R /Im101 108 0 R /Im111 118 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im29 36 0 R /Im21 28 0 R /Im117 124 0 R /Im25 32 0 R /Im111 118 0 R /Im26 33 0 R /Im110 117 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im107 114 0 R /Im22 29 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im26 33 0 R /Im102 109 0 R /Im117 124 0 R /Im102 109 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im21 28 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im30 37 0 R /Im28 35 0 R /Im106 113 0 R /Im116 123 0 R /Im28 35 0 R /Im106 113 0 R /Im106 113 0 R /Im30 37 0 R /Im26 33 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im28 35 0 R /Im117 124 0 R /Im141 148 0 R /Im119 126 0 R /Im103 110 0 R /Im135 142 0 R /Im113 120 0 R /Im156 165 0 R /Im21 28 0 R /Im110 117 0 R /Im113 120 0 R /Im155 162 0 R /Im21 28 0 R /Im26 33 0 R /Im26 33 0 R /Im28 35 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im106 113 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im29 36 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im22 29 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im113 120 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 372 0 R +>> +endobj +372 0 obj +<< +/Length 944 0 R +/Filter /FlateDecode +>> +stream +x¥}K³4¹uÜ~~Å·¾,< +@iéáC +qÉMRm>Drÿ{wuãàvUe6¨Í1]88ïG?ÿô/?þüûñ·þüSüZÓòcùZûgüJeùáVÿ²ÿÒúURùñë?üôÿþüã~úÃï÷ÿúøû¿Oî˯çß»¥?¾JH |À¯×ßËÈKûýVÚï·þÒó.ÇúûðµÅïxù%HÈ_e9þ>-Ïßç/Îp¿u9@öð�[BOx¹ÿréLý~t*ü¢ ~móï/èþ¾[À?_Àïp¡QðL¯Q !ð>Àä+ Î<ðbBLâ×ò}'Ý`{~�ÑÐ_~Oß0." +ĨQà¡n1Ñz×iR ^4)=@v7¹8¯¿.xpÑCô +ý�â뮦à¥Iý5ér±ì ÂU8à%a)è *Á©ªó`ðª5ÇO¼(EWEözÐ8`y=A(_Û?P¾ÖåÛ +'x©Ò¦J) cå;$aEbpuH(®YeBòiE.Ö»D¡¹TAÞ$1 OPÖ{l¼!{>ÂÆ:�`cfãâ${Ìty\=EºS .I¥Àù êo<Pü75ð9|RÀ»FÂÜ(¬@oø>}Åír p,9ÉbN* £Y0ec9ö©"tB«¸ª LC&"<1AzÞ)fÈÆ+¸ ®¥üQ2AtFÃÇ>GX?¾úÒæÇ\µùõÇ O¸Þ {éZ|ø½¤Lk]ì~Î"»:¿@·Èn[@ýýMúû48[5cðú}~Ïô ÁUпï´ó»§È½ÿþõÿx÷æ+9à_ ¨¼Ç×'Ôc«-¥0, úp}ÐX F�4¸åñë¢jìøÕÀõë öOú´¢'¼¾áø_GÄÆùÂÆ¿åôÿ~þJ{l³®_îí_û¼B|½Âúµb6xDÈOêñoüЯW6ð§+lOÉU´å×+¬oW"ä×t½B:¯Æg\ê+<®ôý'âßÐ3 +!V"h.> »¸EáõÏ`W8Dy ô$L!"Vv¸Æ$@[¡Opád¦ ìáõãe:ÓÌ-0(äïgäTi)óWµ¡lNBq9éÈQ;æ9¥aRfââ5{Ä8 bHδE§½� ½FAà{ÈÁz|î§Ía%`ÐT�}Áµd%ô@Ä÷YCßc&ë]&^ÊÄä)I7 zÆ$Kw-¾^Ñqe¢Ç[NÅk¿¨Ú¸TKLé2º¬Gî_ûýgMΪ¿øýH¢¤{O`>eï xt\ÅèHè@/à·òó#DêðIlæ Ëy¾=¼cz3%qù¡ðë½øMº�S¤> E×E¤ .#zÁâo,ª!ñùêD! Xv�§ET¤ö(þ¦¢ªV}ÎÒhñ·øFÁÅ_\C&DùÖù-¼Âº£_Ã:êÕ/ÄD4*Y óa¶PvgZlßyBÖºÚBPð a¿{f'°&ÔVUâoôª""o1BbD"ãZs¿¿")ÒôÈó º¾�-ý&Ñ¡/£ö +2ÖpîçÌq½Á¶¨<ĪßHø¤{t¯#Xï½A\6U`,ºÚÌuÔåQÈP½øx/+|ÌóP˶è_ ðJÀÈÌÉ)² [»õÑ|º[ϪN1ÖªÓérÕ)ÂàThx¾¢Ðl@Å$ÊMò@¯LÏóƸ@dË/dU;íé{Òþc'©=[¢Ú^í| yíL=Áã3@Îr<ÇßË`OP� +E@^ éh¦ÔÍá÷ÍÞ¯y$-Áq8Ùìùëß .4¸\ò¤ÔÐÈÇhöüÕ��@¯[ãxÁ-_jù>¾Bm +ð`K$«¿¯RðÝ_ýýH$F1èhä¬q1½ArÒ "Ûë÷"öЧ 11hJ%k¯ïé¢)¨ÈH°&/s>iËp)(÷úMãA*äA$8Ç,.8=ÈñètAÐ[B[þñ A¦DשèÚ¯Ó¶ì]¨õè:2ÀóË=o DdõrGÈ ô!µöþGÖ)¼²ö|ôÑu°ªa×#$oðP¢&'èRxõ¡@1ÐÛ +bC½à K¨=æ½�O@¦VÑz~,ªrÒþðæRNµ?8¤rîî)òè5EÎ8BE +>@H·¼¡J=¬Qshi~kÕ, o¾@À!«&Ã<·"ú³4·s½)kÀ{'ª>³%ÃOØr#|zBÖÀÓR#§Sϵ÷Á(x8À9#áñ:v@qàH°ÔB_¯YºfNûðÚdÂa¥5Ot)Èr¥Ý`ªÖàæ×ãîìþñ õ¸Öí4ªñY{zKµßÀrâxn ¢ Ü�Þ_D."¡ýp5f´ÆlAGyjB>ú^` ;ýMzSSÓpd:Ãf¼âü1*¢O¸Q'Ø´' cãV²|8¦ÃyþgL°dñ HXèMi÷Æ&)¸s©ßéL}`E¨Ìþ[vÂK ë2Ç ó¸ªÆ5_l¢?@ëµÌjòúIäbJÂ}BY¨Ét,¢ +2YÈÈ!h¡*ÐëZ hZ�Ñ/ø·Á£"zje¦T.×í© IxïTäzd¿ ~ 'Þ!2Ú7`ÓªÇ\ûÖçPßûWÉ8ºWµjYߪUþJtÂï¡õç>lÒÛN qùCÌt$;ó7[ôþ>Àg[ÄÎßøÌŬèÑïe5ÔÃãùê#øý?ÕÖËÒó§HÙÝäø@ô7èH9½áÔÒáA8í i?±wàï44ÛUÿ ITÝ+.Ìò¦öEc>ó¸x §<¦{O°"O.2å«Ôósàú ÇÂ�¬Ôc0ÅEÂëé*2òÖ=Ó{C*FE#¢6¨ Aö[(²ãH<k?^�õië.WcvmËÏ�Åæ5ó¾µ¼LàêÔý×ñëÌ{yæ^öµ+|«=]/'°È*#eäzG+)ÖdyéEıMªKÀ©ã¶lëÿtªZhräC½}#¼9Sá±Åݰª¥èÔð¶î©¡¢u )z-Iâ!ÚÓì 2ÔÛÒ²#ÇÞ«^¡×(À§¾ÝÍ'ë¤ScuÓ»$" é ¢zV¹ .^¹]Ã=&^Ë$Òû. )|&52`Må�#,³*E¬«üeÌÖG65±k¥×õ¡§ +µrÿýÌ«XÅÇߣ+¼¢¿?0õWð÷RÅ �l!«ü&é(ª-ín"éõ`T`AgñlêÝßbïJ Éà{¤¶6 ÷x¶Gõ Xþ +îÎ7Ðs4r±£Yµ7äuÛMR#|è<Jj¬ï?»_λOÈ[ª¨X|_T`uO$ Þ=�¯{:Är(,ШdÁ< ÷RîѹQ` +8 xhd[¼jHÉ&,÷ÔHá *R¹ Ë Û{`=9Q®,pMÐ$� øLÐTúô ÌÝ"Q°×ÒÝ"ÜH²;A¤°&7úRHu¶eÚnê¡ >¼Ã%l^³%<9¡)BVúµÂéé�zé7. b{'º#¼©F5zé*ÒÒ¯_US@BóD¼@íÄë½�½@Ä<(×⢶ôU +(¨ßG7êKzåï;ªÅöëC·ïQQ§Ï+¯¯üÐ˸:õ¿à³¶ê9�Ä%¤x*>00±Fðà#Ù.�³T/!êÕ +W«^ëã$SÕ=<WÞïDCL42lêT.$pv�ÞW5.âá9AÅWÛ¡�½@H÷íTU>MðqHA=ų"1Ò +FOÀôäßýò¾j¤®RDó¦<1ñ@~À¤ Oîå«'гtE{BYÿ0åJ+f=eâ é$EldÛ#@Ñ5ÅÛnñ@¨Ë+`3×Hozlnâ¸)²4×f rª¸·=A°jÁúµÀÈPèHÁH!ÁèxçyAÉ�®_!ÝZP _·°]L¡6íx_ý�räiì}ÎÜ.Hë#;*Ü*:dG¢+'û¥,Àu*¡ÑÇ^¡äcÕ÷9¢ lµ¨ëÓÚm̪ ±�Pße´Ïß1ÈFgsÛÉ#&x[ÎbÖH #) Î̤ÉÏV<Os¶ítñlçÈÙÖV>OsÃ9µtæ±5qfMÐ3kòøÀ5qfMæ? .¯ðù ñ¡^}5Ï4õfn=üû°ïAúû<À^&åÐæÃ=1jvG8lü +. &Y°:DÙúÕ^ ;rÉdH82x¼hOÀ£Ä|ð8iOÀ}#áÇàGèÐèúÙS¶ô<ßbb\îRguP§wÚ_ï̤Ïýõ´rçÊ-{¼Ó9==Õ¿E)b>\>@oí*çx(òÐaWuC}¿©ÊmçyO ðÁå *B·°"¼âm÷VÊÍXóW~�Qp�>À2=àÇé?¶(þXo:`ÜZý\ÔCüå&<²TÙ¢L »Ôle;R +5÷Gõ�-K<ÀÓð¤¢×2¢P¯ %A½bBAL1u +ð},Àwóëú9?À§ß3øÀ�*Xú>ÀTs¾Ãßî«þþ�Ê+ç%¸nCé¯RxdX³(V. =Z2̦×#¸>`Ñbû.;±}�0¾À@w¾÷ý'<Ïn[o»{ÍîøÎï¸8A´7ÇÛ ¦2L¶Óûº÷~}!¹èòrÛ{ï-¼?j" Èl§ÔD§è¼£ yõiBEÛN7(º&ôP `CðJ�Z|^Ô¤2~@«~)¨ã¹. ¯s� b¦ÇBoÉ.øXe(NîJáR9ÖÝ®¹´5ÚçÇèÃ-¸ôG¼ºî�[´Ð¤$JáçÑýiw u·û#Ök Õ@ ìP1¼pwOFèP¡¶\-Û-=dxã}=Äðµó3-¡?´ßçM©(p QÞJÿûªï© ñ1Üâa[×>ã¿Ç¡K+Y`xOÒLðþ:rAJªccë¦ ø67õ¤w!£(0½ßýó1ô´C,¯<ÃG Y²ÓôejöÇÈ9NgOxøýÈpÕÛ7Xf¯¤¼FAæÏí¹ §?ý?ç*PðWMÌËöPïµÖüÎÐÔ¹ô¢çwA:?_7_Êã¬òFó °îbëZ¼«yX_mÚúÐËþVmÛ·j~.°¹{M ñUhHt®¤8@ÏYÛÁìB-e¬ïÉ °ÅLù(0¢ 6¨Èõ'Ø6ñ HHS7u- i|ëÁ!=>P²vðï_| ¹'vlÈ£Àlmù'S¨çv¢CR C5Ǥ=!ßõ®!aUãaøPC[~éÁ9lHt<^` »æPlÈü}9lÈRÓÜG`C¾9TsØ[A°!YÝ]Ó<6÷OÊsðïË+h¢Gb0Pë0P½ikèÓrL:hÐudFC"µ1ª<À@í O'¯ïhÁùQõ$k«{wÌ o«×ÌY·lþð-çÖê]ÝúÐYµNc[s*Ðð´à:¸©ü3èðy×<í¨«+NÙ&ÀFÆÖ3z}K[?R``Sú6IÁïüëïzÐÜ@ïAk¡ù$ZÙ¿K�Èè÷²%kxû£ì +û}ϪöAã@Z±öÕ:q4Tñ¬X[ùøE>¥<÷÷Ð;Pc²%ñÖ=9KbËÄzz×ñuwóª!½è^9d½j:ùò5å«jIÙ6íS²¾_xÁR¨W ëußM:6rnCóË, ©¿æ'NÐ7Yù{bdËȺbDcËP³ãb˺ñÌ:ªÜ +YkXE>îÝw5 Ûæ ¸Hønuÿ¾µÅi¶>Ä úÄwÀ.ÙÀÄ÷½r}âÛTѾåxl+`ýå¹Õú²øÖßµÇs?iCÞÃ'Ðóî�ºµ:lÁO6S4¹åýĶl|62kÌ^µÿÙÀ²H¬ÎÈ^ã«n9e-½àzûæqhÕPñÜçmé´ôo÷îó¾y^úÏàïK¦ ^À@íÐkN-=à:ï?àÊÚ>ÐñVLÃ1y< ìÒìñýÓ¥yÄ©]_>ü¨·T/ñî²úL½|/Ñ=c è=ãKò'x!ëU§ä¸!sÕÓÁYÒTöÅtOet%NiG¶DCë!iÖ±vmaùéW¬]·"u~Íø?{(}¿ ìU˵vö`µ3Êù.¯±!Eç³NÉ@0»¾Ã4ʵtá~È=ß1j4Èu± Ò\ÞC +Èe[Ù}bC`±8²Ê#ë!IrDç̵<@ϼ)\Q°¡&ãXÕ°Ýá¡c4@Á¼HF¸½ Ð|ðY³µvEôùàº×¤òÀTsÁ俬IþÜD@w^«nÕuçõËìØzWkòpúõ&�¤ôI5¡.è¨ Y{}Òl /á«Æn¿iÂ)UÜúó'å(®Xõöò¤ Òåi +á!N ÿÁkøç´5È/�ísJ×[ñjé !ñ0»Ò`ùÀ�JûýÚâ÷Óß×±ëí I, ¶XnéḰÙû�8Ò`(æÊ^A~AÔ{âü^¶`éà9Q`=·hoÀ;Ü#z`½ 1±>vìC}NÅ'I/g H Õìãä9=¾¾%F oRüo_7i»ÉÄ9Ücâ\$&¦(^£�G~Ð)¸»-îÃblUp¨Fç¡&Õû³mÒ¬ó»BDB+¨G¢s¤p ¶ôH +Ðíbwk±ïèAZ¾µI¢Á-T(.ÞÑë*CO(/¨Y4æ<? ñþGR8ÒIRD[FlÖO4©É÷ð^¡� äZVXzÀvEåÙyèÕËÅÃ6<ß}¶×-ÝR-6ðF£ërìF¢FôòñÔdÃë* âÍC È(2HeäS´§WXº¸Í8¸êÑ?4{þzýsýùè�+Ïkhúûò2'WG¥N¿×ª!8þ~ hh³ëÓ/XR»/H³3ÕÄÁÁqñ640Ý\§7V×ȸ¼N@3¤ò[ßÝðØ^ãB¾îå kBCÆÞÐ0¬* ÙZ77)V<_56äÁýrKö^¤ÏÑ}÷ôXꨩæiUà³×Þ {ÈE: +CA4 ï½&H|>¡öÒ]áÏÛ¡öø|oÚß ÓEö»×´Ìôià±Ez[k²ßÚ#vâØîøtïCº@"ÒåcâVéSøiÖ-©¬ÛrBrµäÑóëèdMèß/Iüû$G²-àõà(lôàhqªcM£EÛÔ6A +Ilâ9)^;Y|®±�ïPwy:R#êy߯OØsëPB¬§XÖ¬êaVüN÷(e)bðè�ú¼U¯KgV^kí;q×ü¹o¿ +ë +ãïôоîÉ쥳ùôñ¹KàZ\ÜxûÁÜmÑhHo°¡G¸Þv`l¥½ÁÇîÁ kÊÇ£7X_a¦¹Ð»¢q!â÷tt4ÿÍDg`£'ö±ô¥ ëê¾å3kðyqû ôÍ+|½?¿Bt í HQ@÷a®w|¿HÆoÇÊ\HtU1ªU§®ñðØ! +�Ä!s¨ï¥³êy| ÑÈ^:·J Àï>ß¿#ÒÞûV7EÓòDªüªhhA&Ù 5kRÌß5)äóãÐ_þ>w{Íj|J½-ÔE»ÓR24%zz¤hB@p1Î:ÀxtÞW$6]²äPõ¶²Mù3ÏØÔi.%ïlGÆ| 2ó²GG²AõHd è¸åQ|^>G¦hùEÈøÜÙ>áS[v`Sý©Ï[ß§õPï'õPî;<@¡ÍÌ#ÍÐföyÚÌyÚ,}_`� @\Å'Üû(¦Ökº\K¹¨Cújgûé:xE·;QPîDsVpê]Bl ]�W öa�l!íëÔò2'ïVHõß,Q÷>/ëÉ@oîüøûñ¹ó_ùìãóyߤ1 ù졨6ù¤±�oK_U)&ù©´¡èÐñjïxG^ßçÖw=6 ùìK@o)µj{`�Í·t +Ïó¹kh0ù¼|_aó¹vxÅ|æáð±qåDal¬w¦[ÙºgiïÀÃ'-À!ðg +ÔÞ5.tA@Ô±ÁoèRé¡iRY´¶g³FK§tCM02:_²xCPî¦[FÐÑåoPIlí¼h>m÷þ>G^wzËg¼òCݹVÐÖüPT ãY®'½ ã=EÆ¡ÕS;0°"E<�ßÓ¼¾Om0<µ½#¸"¯×À¤Nmï¤è&¤3ÚÊ-ëgìzä´ô ×÷L =Û®s÷vüû W±Î¸è½~¢©å¬ZÓ¡�ßjÀï¥}B´èéÐZb-8íAìu_{Ã"¼lëÄÜ`RÐð Ør¡Ö +ÚyþêÌN¯ÀàøpáâGO¤èf.9@ïÎÂ�x·õÀk/Wt�!MeuW§ná +·ze.ÍÌõ»Uµ$2±è´£ypªQR îv)À£[Õ [>ý^ÎõÚf°îÐ¬áæ®Y´§®ìI¨ueOS $ìV~gë!=¸Ý4Eôà6¨ß·àt-½øDË&RE·*Ç2±èÔOÀÂc¤F`~ÄFyµâ Õ«òÜÚ«1¤ÑaÄâãoänäˤ-0änäQéhú3º5Y´Æ¼-º2a¤2M'�©Ó8�±O)ÑóÞÎìã »³HßWàîôÉç-hèíåê=])´Ôð:¦ÉÑ<^y´à´{ÊLLÊfÞ£'Ôï¾�+FIié4¾`\Î�j4UÇP7%ëIR(ûÔ~-ñÝ J1¡UNR¨gë}ÖÞ÷$oðò._tæÛtFìÀ1ÑK]5» @ÚåØcÛ[Æ,oFÀ$ÃzH|nz`ʧ5H®qSb±5² PÈ""àò¶j$Fúà{°tò©ÒõpP ìõJâèdä�c/ÒïÚïÕ¡ë igwy<k¥aQ¹5V{Í ®_×ï·o{öý0�hdíh]UÂÇEHhæDA_ñÒóÚÛ½}åð²ñûYP¦µzëceà ä \Zº|àUMÜç eòÝó8TAØ~Köú¯$t÷øØ@ª<Õ +t|(o)lÉI¤ðµ¡¥±ÖæEë 9 ½µù©IÂ$"3Ï8t1X½Î~À +Ðv .6Xø<>ÏCôÞ`À¹w%" ·ÅøtÚ]½EÄEr|f°ß´WÖ>ÐÑC�7£HG4ò ÒÓ#1èÍ &¼ y@0¢à�hvDé!°AaUh1>R@mTοÌrzÅÚwf~[ôONÏ»é]üá9¦ú´¿ëß¿ýËÃÞ?þ½þg¯ù7EêÂÚÓèñ¾{ûõøÙ ýÕå�þjìTùRª#\ªksòòôöøëü-F¨pDÅÝ£Áöl£8Ò@_Üh0ÐëRã¹æ\$ À7Q³0*c½îÞtÉX¦Æ´³D�(1@®GÁpÅnZ£TkÄf§×ieþlNÎz�9_Û`ź Û|Ü6R5kCÙD¿ã~#§r °Y ëS£KRÝrK4Òò¯KñÑeÑ¡àÀdÈ)&ó÷\²VAâÖ >éµÑçY,NG§ßýá"~ÞêÕ{ÂÞV¯i +fÙ©íô?Lâ½þpßÅõ"±aݽ`F;ëÑ?@CF{Í.¯èïË3 +=¼ó{Z¾6Sv8¿î̸ºêöô�zlÜFO�m,dz»nõÚ^¦¸º"òDYüH8.`w7VóÃá;Àj4´r#ù 3F]."$ðH +GzÞ^ $é´üÃ-1ôQûû4ÁS·Xõ Þ²Þ$@ZD#Û'ô÷Ãz9�0<¢#ékVwX2c¡3TMÐ.M<wë7/=ÍÑm+!}nx, Ôß+ÃwE>ÙÁl±.D¶¬+D¼`(ÈwziÎ�K}A@eiñÛPÙNÔç+â:)Bª¶ K[¬Â +Ô)¯¦:°hÝÑqÿMò`Öxç&4-Äû6Í BP tø�ëÄêù¢ä°lH¾Aë>èßµ>5Mß$&àÝùè�:EËMt�Ê5X¶3 Ç"Ü ¢¨È8,ÌC¬¹1ñ�PoL±üo0µ½È�F¶zzF¶#É 1,£sÇrG9ÍÝrî3Ï xôûÜB~Ïs$\èpön@¡åÜ$B=ïãªÕqM×Ú.X^uïåáFìMPî¡*¿dA/ÛþÞ øÂð@ÇJöQ$!&síSöVùw=$¶0IáÐÂðªÝg$¾0|Ó· 1Y�\Éi¤¹ÒvOúniÒ60©IÛF±IMÚ¦f5©-WdZ/žê§W¿¨¶MÞk<HËÒä h`gÉÜÒìXr "5 í 'E¼ï�` oï;PnÀá²Ä|Ù¢sÊDk7÷M +øè|V1îÑ CkQèJ¥D÷¦Èa¬^îѤÊÿi6À}Gä£÷ ¿ó`Ü£³ÎdL ¿=4f:ä·GÆxd©\¸éÓ¶ÎI¶utdV'y4´]Q\40Þ"E,Ì~¹.IB¿ ÞºE5Ì»^"¶ÏÈ4®¬õþûwÌö?Äd¡ýé�CýL ÔÐþD�fG¥Û_à|y?¬{xôårý°®Z²Óôý°;ò]aªÖ`Ù4�µ¾-¡GÐýêÊó.ÑòÚE×ý�»vF0Õ\'}¯êóßÃ'�lL�³}©l\æ¶èøj»Dó;µùt=¿¨ÊH~§ìºbDó;+<ß©AÁù�z~'EÄz~§âiug7 5�OX"Òó;K±>ÛRÐ̶T\@Á}C%,~Ú¾zT +T;(<J\0³ pgs*#ÿï"£Ù ö'NzÞºöi1Úü ®ª*ÿ<1km.cÜ©³ôì²¹¤ÊvÚeäÓényPÍCÝ4a+ÍQTä hqC,<�mÙéÀ$.Z`BÄ£Ô7ºAM8ÛºMâ!:rïã´GúnB¬o[÷((PZ/jãA@(bÈ< ÕÐ%gfRÑd£þ«M Ü¡4ï¼@'fÍeWMR +däP +°äÀì(%®[¦krÀ,i9à^,KjëÆ ¼¶MIs¯-CSæÐ´ÙñD©ù YÐïåõ-?S:l�f; ¸fKÏ5|óÀì{§æÃü² ¨eW"ú½è¶{$ôRM !ëpÐüN9q± +P +ôìLR(ïÎ0Ôãýõ²¹!K�AS~^ª×}AzT¤P¨¨} /�õÐÀ$þ~C¬×¬ýî?²ÉkQ ɲ øxMsÓÌ�ÔBÓi{nB³d¿imÛý¬)²¹®åÀFBÛX%kNopë"êÀòÜåÜÀ¼âY[¶'DMøyëAOõ¶ôÅö^Ó$T¬^5+GqAo¨ïmÒÅK,ËÚ×Dgcd°éi¸?E|3Fráy Q¼r>¡ñ� ß4ÙTv"xQìD ¸í{¤ä#ÒÄ·¶u¡wÝÐB9@ï©"ÃIV.+] j:¡:Dl.úbˬiÚû`ÍyzBg¦,÷pOpƶF?°ÌæBöÌuÔjYîâ°îʹDP7,¹{À%Q2èK¤sx ¬D¬{ÈN, ÃùÅI,DÃâ%J@áDÿ¸:¡Ø;�ö¯ÝØg@àöP×!y´7 +Fйqf¡×ÿãâïü ·ä©¡ý¤·à=.½¸g@ƤL]õ'Ô¦Tà�dÂgÛrðé"GsáÕFNPÉ\¡bËÎ_¡dõ +WQ|2ÒVOàË=ô ô@µå;1(ÚKïeó@¶k÷Cm>�áWðs"x ¯`öV©³ÿ5¤µÀ�a:¯µ1³íå¤Ñ'©tûxÅÂP|0'@«ÀWÔûwó.Dd¬ìëî.+Ó+dÌD«} @NÈÿg($kED¼2 O ËÂO X¦zKØÍ2RXà+\ y7¶É}�d¯D|Z¦j\wDwë,÷ô¹pº`¦ÂÕ(ëxâÕêÑïõµfµAÿD�=Ýåª,ïÜô1ÝEÏó(÷¬~ÑèÍÉ5oÞ'!¡@ éR¯ßФñWùî¤(x R(,ÛâÛÞà +ËFk'u[p÷|øÛkàËÓ-9°áñi90Ç@àR¡©¢©foÀ»Ep� ±Z¤ÕH?gMy © +RZÑ ôJ6¾Ýã"ÊÆÙÝdãÔñHt(ȤÆD½ñí2¦ñúù²Yõ)zbÄÇ¿3z½1Ò!FmäüñðÈn·,",÷èÊWy4#å«(Ú:m^¾Z$½î䮣Hqò�6ü½©$<�]²Øwè QH¨§M Yíô{yR&l"{°ñ})ÄzÔ +]=Ê»U&f íðôâG<<P|ñÈ`ï<É)f¡Uð&âÛ»¾J¦`WØÈBdÈl³¦hÞ¾'é)²Þ4eDÀ!}|[Òä441æç.R>ªí4Ï}>COh¿_ÁïG +hëâü½VkÇè*ñÀñ�#Ðn|@W®À'aK/tÀÛ7ÀBpr4x× ({lÐ ëØÞ÷(¨wf.ÆC½^ï 9ê|FR0{û@Úô2¡+2Ò#Èp*ÒQ ¯�´=¹¶. o-·<éóì ñéïäv\RÜÐä®gHÙûx� $ñÈ߯»1û¦ÜC,¤¶û¦Æü½µó}-B[ó¨O$å(_©dÊ®J¢y?k m¹gKC7G}BTe¡¶I4Ôö *ÒXjξ-eÍÁÀpµ¢ëÐÑôPé@sqÑ9ßÙÄh ?%úST?50y,úÔt1åöBî?SyÈg'xû¾@$¾©²[´%òV¿=9 FWÍt�}«_R`ÝÁIã¦Hbs¨&rî;å,¹�õ¬ ãºÝÓ¶q~VÆ\Ú,kÌH Î@Db³¿' +\HhåÜu®rnÍLÞSþøýL¿õ÷þ>LF3¦A.â½Ô¿>Iz¥¤^PçÁÖûÐ¥ iÿ0cz ÀÈèpyaÑo ãëUàùîxrAo¨Ã-Ò¢³»ùÖÔ8~�=v*Idj©òÃt¯ØÝÎL¤¦®ùD=4±>ûõàaY3:¿¾19é8l}Ò¤6�UËÓôZozh«uîü²;bÝ=MÎWÊi,H pËr\5¤ÂËNLò¤°Ö¸5=È °ôÒ£%ÏÖy0éµìFó%®³ÙçµQ0ç(3ã3½Û`Õv)|{Ã,¯ã2X³³G)¯¸ Í!Z&WÕ9²ÞP¾UñÇÞ«S~zÎOr�yÎÆ ?uöÑß}ZæôY\Ùàù7Aúþ@¸ö¦SP¡ «(#P¡3 j~ "kõ"ØìMfv:@ +1ÎúTVúÐÓd\ÞWç¤ôü&Õ1墷Ðâ#Ѻ¥µÆ§eÊ©quÑñ÷zÈY#-جÓYßý=N=8ÿ@lgNáá÷)g^á#ÊÊ´Òwçhphí +t»Iĸ]h¨ "÷áR-· OàM{¾q}móì+$Í>=çÙW uÏ> .ðì±Ó=û¸h<Hkïæñt½§;ÞcÛ¸Þå!áP5ÅO¯ ä&»f:é&tÙ`d6ÂÜÒ&ãÕoôê7d"`Í"Û õeDÓx&(wÁk¤Àã^/pmaáÕó¤ñ¶ò"áÕsÕ£"ññG5Ó êÜð8ÖÒñ5MÌë)Á ²ù KÖÃí&aÝYÞ#!/CÐëMÓé ²°%Û´ó#ú çï¡G}ß·Mzqyn¹åMØÆõYo":VôD×í7ÁÒµnzRÄBzãâoáÇOO#oÏÆ%ÇEk$9~¥7V9r7Îu|½·Ðt¦£w_~ë[íýaG¯OØíP{¿gbY9Ö=àò´-Üj^Ç´ Wxµ½øöÑò¥í@çÞè<Çý__JVñz`)« Ýpàn #þ:³ÆèËnËà÷pÇ*KoDÈú>&ç¥7äcÿ«v�ÖJçý·~l¥ãùHuô ohô1?CÊB5§'M¸èÝ[õýß3Ízt_zªÞàWH7HÀ¨>⺡GFÛÐ(IH[@2D¤ÊÎP>å ³§'Öðb·²[ÑGt +<0¢cé<«~î=ìx4$C³!&ÁÞ^ô<C ï@ít�aBÅæ ÊPB>Þ×Dl/"àÈtõ!u}*`öT)7X½ÀÈà}Ô¼B¾×>^XUf$Æä5)¦<=豸¢ãÑÐ.èJ0@ q-£P %x6Í Ü¢DAª ¶íˬWn ¤2à ^l9¬"q)dÈ (®@N°YçébÁȰÍ&ô"C:ð¦g÷Ùx~F³D4ÇäÈägl8aRÄõ¨Ç\DCÔiyðÒæÃïZ¿ª»ºìùô½nÞC«7`Å# udII7ÐëæÎXðø÷åL·«[D¿ð\ÞÐd_ Í6ÌòPAÈt;ë)>Q@Ï0¡ i\jÆôHB>Ä[L3Éûlx6` Çkzþ>@!Àm·ØÇåï&øÖ®~^_£]@îHHQLÈ:GÒ$,3ãîɰWÕàÃ\\ܱWjR ÅËëåaү˷)ÓQ-·Lð^¦HÞ°é7d 6l6PÇñÙQÓ¸Ö©¶Ä¥Þi¶Æ¥XÉr²C©?ùêîéýPGxrãɨÝÖ êR1#.Ö¾ Õq2fÕÛ7�DÀÝ~é;õ$4^L +ÖÉ©w¨É¦Þïj²ÝÐy;ѧåkã¡O«7Àøt+,héÙ° a?ô6À<Âr=^ïjý+Çèõ®¸jqß §C_öÊì7ÍYÌ÷ÌÙy˵?eä¬Ýw¡Hµ¥û#~tíÖúè9.·~`¦°¡G¯O·$t~iÇæ)Ãr$$ËðÇ0$++â¡$Y]í}&É6ÄñµM]y@¯ I©ÃÃ<Aò- s¡"OLò·¡íÑ�Û$E;ÞáTPÈÚ øÞ é$²¾ú.3ø(écYáß×P$^íðX$iDê¶¿t^²@Asó$G³ WÆçÏ96÷ÞÚ_\<0÷¾$ô}î=¸ð{|`jî=øo6î̽Ù(</µã7¼>ðxfMÞzÆAOEI7pͯÐàÄú+&ñy�ZTyqAÈQs+ùÍ&i3$ª=`»'¼¤ÍxÀ(8· §h$G�Ûfy Üó"ôJFr÷<k[>ßå! øpjÊôÙïW1ÎW¯ßÃàJPYUÇ4Ñ$-¶â»+Ö,Ê-=ßôè´åñ}¯®ÓÂáæ@ÍZ¤j-nÔ¬µp¸IP³ÖÂá&AÍZ5k-nÔ¬%ܨYkáp f Ã͵Y*3-®îØéJK0Dé »�"= +ðÝHººþEU3tÉÄx`ñBHÓLô +Ï¢àíÛÎ7` L¨¬±Ý^{Cë¶ão&uó6+×ec`#c40Ýá7øòäÿ¾Áéõû.Ô0©þ.NÓ¥t+á²"]*Ôl^)}1å3ÅðpÎ?¦= nÕì)Gàp9£=2Þ³HoÀ» uA@@Î5È®E'O°.â°h~8p)óù¤K:�2ºÿ�¬^(ßö|.Ie@@{ýS¯@O0"[Q5Qc [ð°ô¨J»ùI.j}NVCZC?² OÔ' $ù& £FBz(2a¡³/¦ +ùþ(ºì÷Z|Ì;¢FAÚFbû'\&×Z`9±©5>¶Àe°A|.xG¿õ@K,]X9a¨<¸ï0èì$#ñiÚÚL9$ cé©°CÐm+AzB¾]3£¿/;$áø÷/2Àµ{By¾à,´á$ÒûÊÞ ï Å Q�<%ß{È I.ÇðjG¨íñKĦ èÊ k@pz#Ò¾ÿB"ayÓSM$ ½ÀÊeëÙ_á4ELD¾áÀþ +hôF¤²z¸¿Ñcb>ãE[JxȰ&y(,#û+dɺXöüÈSØÒ#]SÈà3¢¤F(Bk@x¡ê¡Ä$Ê�Ah]¡¹"´rø¤Ç�HÒ£(Áºsz¶¿5OôRr"Þ&ʦé!Ú ; C)5üÎvñ'ºÞ�Kn¨LL"{ÛþÑ"Røv ô·÷AôY4~bÑJZøÓÌBD/0`k¹¾°æUvàAÇ °p$ô:XL7}òÙÀHFa¡ô\jnÃI81W3ýÇè".¾\ÚÓô¨ÂÕþØrÏÐ~ÿIqÑ~Ü ©XP§èÙÚs>þ {äëOÆC,C·'GÊõú +[;ÁÔ ÍWÞ``¹¦ûýH8²\3oHâ*Áö6ÔNÄq�þ¾ß²äFÿÉÈÃøÑkz¬·þäøeXܯÆ4*¾þ=ÁH)AMªO¨$$ЫgëO¢úòÙ}Û¾"û5õÛ¬5µßÃMkûÀÆÛ7zȳ¨ÈèOÐ`M¦_ÀkX`h½g¾eÎm}ÊuUebö{Õ!ÙUtè$DÁ\Èô]^ù�Ë"Éõïð·¼r°f ©^À°{\l ñ¸¢®^XJ#áT?gtȧÔJ Á¢ïxMùp ¢óÍ¥¤à ©][~dVG$xd=H$ô#"Kª+ríUäî)D¶ü!Tg w°øpGå¡<¢òêüà÷zOµu~/ 7ÔFÆã±Ùöã F²I½ë¼pàz¢ØÖ~/'Â< äãÌv)HLuûÉù�²±õ'' +È8<ûúr}½µ÷ãô½«úDB¹Ö;ĽµØp~=½â!êÝ/ét.Ýð9÷Tß\º¯Sn=EÈ>#ºÜÂæ¡"h^YE)¦,¸B)áÒ÷ã¬e´q_Qíöaµ·üNÔ1Z3Ò#W[D h¦øjëFO³²wËÔ´r{mé²â!D§èdIÅì?Ý�µïÈÖù{î@°4oÏà³)á&4ÎYMTår`PÈ5KLuG +ï?°6ÞsGZvdÒ ÉÝsGÂGø9ª`»aK«wñ <ïÓ¿gt ªÚ;"¨Ïð5ǦÀGz¦7@Mª7,È(ü»B`-}!`¹åðF8¸&FÀ5+òàÔ\Ó§þáhÊ4²Îy¶ez~%¡GDé àIë=M³v�*Ysª)úJ9¹×¦~[~%uÐChÝÝÂ?zÕ¼ù#¶ßÏä(MÓ�asÏ/B=¿ÃzD�Ù'mÍ#ï|ôIiûK9@Î;*:/@ PD�ú÷Ê,»RÀïGà]·ê ÷²ºh,DCÛ%¨BÈz?é4°« á§ßË.¯PÙÝôFkN<$»´Þ'ødR#ºKÛºO:ä½#ákÙÒÁõçSÖé±¹Áõ> %ÒS²¦øþrS +´$z數gyÈÒ3ãzÌzW 4éléP¯ö´Þ øfZDɧÙR{¤lYðè F31§qiÐ'¶[B¸·¾ÜÂ�éÀ^×þhPýQeMvA9Éæåyõ0¹u¾ô/@@Ô·yS#Ø9æÑò gbd)çý9÷ä¦n�6ÚãîE¥-;ÓJ{igYÈ6§L³PP/¿§©HðÅ'QÒ|²'ß|Â-þ zãGk}éªÁÏ{S¦º6سösHÛD\Ðïõ¶ 3¥ë$òNk}Y{àEl.ǵßϵM-]{³$� +J³YÛ©R¸v±ø>ôoÀZg²Ä¼óÅOHxØÚé;<ÌsKúû:ZãLçü~áùûüÞEufÛD!f©¡Bh¨+ýdkW.! +¬]q²ùëZ®BoÈLHzh�X6¨z$""Á�4oÔ, ÍÌØ8Àñ÷òmKê=!ß H¡Í5î ØÑd/Í5ÉR@P´pÔtäØ ½ý *R]·ÎIEdÈyXToM5-÷y°jR·ÔÔ¤"oSU³¼Uõ½)Ò ÐÐ{QuÆ>CÚNÿý5J´=¾þ+$H�¹>$ô�#Ío álMÑÔïþ ^êÛsK {¶X½&:AoC§+è;VÕd-»ÔÕå7O»Ñmîõ¡¸Pß=D¤ qÏ@¬Z;(÷øEdCÞútJ±É¨y*<ÓS©]à]ôcrxïÑzË%lC³Ê0ªÊ°Ûû'°ZïOCÀj½?qÅl~yR v1ÀXhÐMÅ.�ÉϤ>rt¬÷Ç¡Ðq V{X8æJÀи5ÿ̲@©ï²�OÐ ÚDA}®§¢°ísss=Î +ÌõXf ¼5ÒvXf¸*Û´ò6¥ÜÑBt®ÇiDléõ@mûJàóVÝÞï9(.Ò¢ÄA|é(Ã3ÁÔ$èè-;ÓbªE +äa}°ÉòätÖ7Ø,^ +KÔNÀ[o4.â7È Ý½Wm9ÛÙ4EÆóPʸõÞt51Ë ª3ÂzoF�Þ{£z#$:åHã×ÖMQ&Ñ%§\\qy»\Üê#*¡\6ß·î�i²_Ø&û¶|ë-?2þÇA îÌ*½!]ë¡ê¡±Ôó+©âÜþþÈXOô·lɾø¶îa¬æÖ±ÐÇFZÉ÷¼ò#S97ß|²jÝ3¾B×é9þ~¼{Æwð·ºÝ3¾ÅØéñàE{Æ÷°Xn#J¤]©¿?0ÙeQï`ѵÌykO85ÑÏpn-³¹õGêk§¬êê{�\î®uºWf À×|}!`Éåy8Ô½�ZÒ{á k^ H ÀocÝqcöm¬.¸ÏÛXÙò5¿Iðª¿páµ5?[z|??t>k¢×*L¿¯¸½>ð½ +óa!Ô¢Ûk[®lp-º_)BôËñ«.y¡¡è©"J5\E±`êxÕ1'¶Xâø{wdIÒïi\±¨Êvy4# +·iÚïýAO¨Ö2iNBÝ_&\뮢KC�: #O³v¾ +¾tFvêôK~ßm7¨ù¦KÑ5B ÀÐóE¥`'¿á»(ñä$j»xɧ¢{¨äÝW Uw56v ±Þ=<½ã¡S«OW�]ànÊÿë/úÅ?¹îÇ/ÿm_0þøý'ù^ÿãx|;>¼|ùñßüæÇßý?ýøýï~ýÛ?þõ·ÿðãÿñ~üç_þôÿûëßþæÇÿú?þù_þÝïÿãW÷ë_ýýúúñ¯¿ûí¿ÿö/?ÿø/?þãçÿó~ñ¿ýío_?ÿÇïþúõÇßþü_¹þí/ÿóÿçÿù×ýw_ÿñó~ÿ÷?~ù¿úo¿|îÿÞ×õX +endstream +endobj +373 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 945 0 R +/Name /Im350 +/Width 35 +/Height 58 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmб à Ð(è¦H ¢4¬bØ*ír#PRX!ÿHåÂO2þ|#t�y2®Ç/\Õ¸Àp$i§D%A`5ÌÁv,âû"4CI¬dç,½F]¹müJKý#<ÑÉfð{VÞâá E)u·ª§5ßíÍó Æë»Á8ÿÍï×ûö¤íZ +endstream +endobj +374 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 946 0 R +/Name /Im351 +/Width 35 +/Height 58 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuб Â0 áßJáÒÄ +¼ +#°�Ø[Ñz2Eã OnîÞ;CªàlovT<<°èífr¦¾ÐHÊHÔøF*_ä7tgo5m'7a7fìª�k²ª}Eã*âÚ/ò?Ô`£¾;©¨i*¡õ;:+:kÁͺÕë#À âóýy|gs_¸ +endstream +endobj +375 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 947 0 R +/Name /Im352 +/Width 33 +/Height 58 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÏ1 +1Ðv!ÅÖÊRDÜ«xK!s+¯#l"$þ¿ v6¯ù3V0Ç6ÖûÂ,²pR1eü 25rÍÆxx¡pdU£íMéqIðÏ_´ÖÅU¡7q@¨8êä,½awD|(O ¾HzeËÅÝéñÜ¿�Í[H +endstream +endobj +376 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 948 0 R +/Name /Im353 +/Width 52 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xco?ÀþÿAýùü¨°a0øØPóÀÁà7CmCÂ?{ õBý`°R0Ô�?)FùHõý�P2�Q`óæ (ÔÅø°A¤å1bøÏÀÇÀÜ�4ÓDºv¦5�4nC} +endstream +endobj +377 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 949 0 R +/Name /Im354 +/Width 34 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUα à Ð(()RFHK�É¤É ×e 6°KÈÎ?¬D¸àÿ¯v7?Mh>¹0ÏŬÄ.ŸJ<YIýÈSýøgiLÙ3bWX;â:øÇA¨Ú-¸#õÆ^ +Ëtb'²ÎlJã3JÞËíù¾~C{Oñ +endstream +endobj +378 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 950 0 R +/Name /Im355 +/Width 25 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmͱ @@áO.qÐSHtV1 8,p£A©çûñ'¢xÚ÷Eä³ö#^Õ©N�SN¼.:U$eÄ®ìþ·)÷ ·%åÔÒ@=mÈf»8y²[4ãZÝ'µ6Í +endstream +endobj +379 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 951 0 R +/Name /Im356 +/Width 39 +/Height 56 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xu!C!Cà YûeëÿTÕ #¬ü!ÍòEMk !Ù]D(4 q"ÌDD<Óì©#cV6Ö¸eûF´À(�PC%i Òª¶ìbö÷ìå·ÜWàh®´Ë±ÿ}±Jêdª×o̦¶¡¬/]óeí{&ªÖúºu<¯÷ñæè} +endstream +endobj +380 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 952 0 R +/Name /Im357 +/Width 45 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xe̱ Â0ÐráÒÄej×¢@$Ãd<G¸Ò ã;HXæÏLŪýéHèNtÅB/4ãÐ-¨ÀR T &Bk7V¿6OCó+Ýõ{�µHM/*ö<lV]tÊ0æaï?ΧÇv~¡¶J¯ +endstream +endobj +381 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 953 0 R +/Name /Im358 +/Width 59 +/Height 61 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmÑ;Â0à?ʱ+j¯ÀΣâV,¨¹÷aêMè2v¨bü*Té"Ûÿ��eLLCEh #(_"4m&ÄÛ¯ÌeÖªgiÍH íµ\íF³çtZ´Ü³Á¸·qlr²unU®Én?þwXÍÿ¥U|¨ªô£Sy'ò!&>[É~_õ8\Ù]bú¸X| ìË? ±rÖÎV{òÈËMÞRÒtÓ_¤|`#UO@9ïÏëÅSk +endstream +endobj +382 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 580 0 R /F2 582 0 R /F3 584 0 R >> /XObject << /Im312 331 0 R /Im296 315 0 R /Im313 332 0 R /Im68 75 0 R /Im359 384 0 R /Im68 75 0 R /Im37 44 0 R /Im284 303 0 R /Im33 40 0 R /Im52 59 0 R /Im42 49 0 R /Im83 90 0 R /Im77 84 0 R /Im45 52 0 R /Im38 45 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im360 385 0 R /Im60 67 0 R /Im88 95 0 R /Im71 78 0 R /Im52 59 0 R /Im38 45 0 R /Im43 50 0 R /Im73 80 0 R /Im52 59 0 R /Im71 78 0 R /Im35 42 0 R /Im37 44 0 R /Im43 50 0 R /Im45 52 0 R /Im38 45 0 R /Im35 42 0 R /Im36 43 0 R /Im281 300 0 R /Im218 227 0 R /Im57 64 0 R /Im281 300 0 R /Im361 386 0 R /Im73 80 0 R /Im44 51 0 R /Im43 50 0 R /Im40 47 0 R /Im38 45 0 R /Im37 44 0 R /Im42 49 0 R /Im77 84 0 R /Im35 42 0 R /Im282 301 0 R /Im281 300 0 R /Im218 227 0 R /Im284 303 0 R /Im279 298 0 R /Im280 299 0 R /Im54 61 0 R /Im57 64 0 R /Im342 363 0 R /Im286 305 0 R /Im37 44 0 R /Im42 49 0 R /Im47 54 0 R /Im38 45 0 R /Im37 44 0 R /Im42 49 0 R /Im77 84 0 R /Im35 42 0 R /Im282 301 0 R /Im281 300 0 R /Im361 386 0 R /Im284 303 0 R /Im279 298 0 R /Im280 299 0 R /Im54 61 0 R /Im57 64 0 R /Im342 363 0 R /Im57 64 0 R /Im362 387 0 R /Im286 305 0 R /Im78 85 0 R /Im363 388 0 R /Im346 367 0 R /Im364 389 0 R /Im365 390 0 R /Im47 54 0 R /Im35 42 0 R /Im42 49 0 R /Im52 59 0 R /Im43 50 0 R /Im35 42 0 R /Im36 43 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im38 45 0 R /Im35 42 0 R /Im70 77 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im281 300 0 R /Im346 367 0 R /Im282 301 0 R /Im283 302 0 R /Im284 303 0 R /Im279 298 0 R /Im285 304 0 R /Im78 85 0 R /Im82 89 0 R /Im284 303 0 R /Im33 40 0 R /Im52 59 0 R /Im42 49 0 R /Im83 90 0 R /Im77 84 0 R /Im45 52 0 R /Im38 45 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im82 89 0 R /Im35 42 0 R /Im70 77 0 R /Im52 59 0 R /Im42 49 0 R /Im77 84 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im43 50 0 R /Im52 59 0 R /Im48 55 0 R /Im37 44 0 R /Im43 50 0 R /Im43 50 0 R /Im35 42 0 R /Im38 45 0 R /Im42 49 0 R /Im36 43 0 R /Im52 59 0 R /Im76 83 0 R /Im35 42 0 R /Im38 45 0 R /Im281 300 0 R /Im218 227 0 R /Im37 44 0 R /Im42 49 0 R /Im47 54 0 R /Im281 300 0 R /Im361 386 0 R /Im78 85 0 R /Im296 315 0 R /Im313 332 0 R /Im68 75 0 R /Im366 391 0 R /Im68 75 0 R /Im84 91 0 R /Im44 51 0 R /Im42 49 0 R /Im47 54 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im72 79 0 R /Im52 59 0 R /Im36 43 0 R /Im43 50 0 R /Im36 43 0 R /Im48 55 0 R /Im35 42 0 R /Im39 46 0 R /Im44 51 0 R /Im83 90 0 R /Im39 46 0 R /Im37 44 0 R /Im39 46 0 R /Im43 50 0 R /Im44 51 0 R /Im76 83 0 R /Im35 42 0 R /Im39 46 0 R /Im52 59 0 R /Im42 49 0 R /Im83 90 0 R /Im77 84 0 R /Im45 52 0 R /Im38 45 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im82 89 0 R /Im50 57 0 R /Im47 54 0 R /Im35 42 0 R /Im48 55 0 R /Im43 50 0 R /Im40 47 0 R /Im75 82 0 R /Im83 90 0 R /Im38 45 0 R /Im36 43 0 R /Im43 50 0 R /Im36 43 0 R /Im35 42 0 R /Im37 44 0 R /Im38 45 0 R /Im39 46 0 R /Im40 47 0 R /Im44 51 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im39 46 0 R /Im52 59 0 R /Im42 49 0 R /Im83 90 0 R /Im77 84 0 R /Im45 52 0 R /Im38 45 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im360 385 0 R /Im60 67 0 R /Im88 95 0 R /Im246 263 0 R /Im247 264 0 R /Im246 263 0 R /Im367 392 0 R /Im256 273 0 R /Im324 345 0 R /Im258 275 0 R /Im254 271 0 R /Im253 270 0 R /Im264 281 0 R /Im265 282 0 R /Im266 283 0 R /Im251 268 0 R /Im252 269 0 R /Im368 393 0 R /Im369 394 0 R /Im256 273 0 R /Im370 395 0 R /Im253 270 0 R /Im250 267 0 R /Im371 396 0 R /Im372 397 0 R /Im373 398 0 R /Im257 274 0 R /Im250 267 0 R /Im250 267 0 R /Im256 273 0 R /Im259 276 0 R /Im264 281 0 R /Im260 277 0 R /Im139 146 0 R /Im30 37 0 R /Im109 116 0 R /Im24 31 0 R /Im29 36 0 R /Im120 127 0 R /Im30 37 0 R /Im28 35 0 R /Im29 36 0 R /Im109 116 0 R /Im30 37 0 R /Im22 29 0 R /Im28 35 0 R /Im105 112 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im117 124 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im140 147 0 R /Im22 29 0 R /Im21 28 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im118 125 0 R /Im24 31 0 R /Im102 109 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im28 35 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im119 126 0 R /Im25 32 0 R /Im105 112 0 R /Im116 123 0 R /Im21 28 0 R /Im106 113 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im30 37 0 R /Im116 123 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im21 28 0 R /Im145 152 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im144 151 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im105 112 0 R /Im120 127 0 R /Im135 142 0 R /Im25 32 0 R /Im101 108 0 R /Im268 287 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im107 114 0 R /Im24 31 0 R /Im102 109 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im26 33 0 R /Im26 33 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im117 124 0 R /Im25 32 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im111 118 0 R /Im28 35 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im25 32 0 R /Im30 37 0 R /Im29 36 0 R /Im105 112 0 R /Im116 123 0 R /Im24 31 0 R /Im22 29 0 R /Im25 32 0 R /Im26 33 0 R /Im21 28 0 R /Im107 114 0 R /Im21 28 0 R /Im114 121 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im156 165 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im107 114 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im120 127 0 R /Im24 31 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im107 114 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im24 31 0 R /Im101 108 0 R /Im25 32 0 R /Im140 147 0 R /Im22 29 0 R /Im21 28 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im120 127 0 R /Im117 124 0 R /Im25 32 0 R /Im22 29 0 R /Im24 31 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im30 37 0 R /Im107 114 0 R /Im24 31 0 R /Im101 108 0 R /Im102 109 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im120 127 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im111 118 0 R /Im24 31 0 R /Im106 113 0 R /Im24 31 0 R /Im101 108 0 R /Im25 32 0 R /Im25 32 0 R /Im111 118 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im30 37 0 R /Im107 114 0 R /Im28 35 0 R /Im22 29 0 R /Im23 30 0 R /Im107 114 0 R /Im25 32 0 R /Im107 114 0 R /Im30 37 0 R /Im29 36 0 R /Im102 109 0 R /Im113 120 0 R /Im157 166 0 R /Im101 108 0 R /Im25 32 0 R /Im105 112 0 R /Im30 37 0 R /Im26 33 0 R /Im28 35 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im107 114 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im107 114 0 R /Im24 31 0 R /Im26 33 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im22 29 0 R /Im23 30 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im269 288 0 R /Im120 127 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im26 33 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im107 114 0 R /Im24 31 0 R /Im101 108 0 R /Im24 31 0 R /Im110 117 0 R /Im25 32 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im24 31 0 R /Im22 29 0 R /Im23 30 0 R /Im120 127 0 R /Im23 30 0 R /Im30 37 0 R /Im118 125 0 R /Im114 121 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im120 127 0 R /Im101 108 0 R /Im24 31 0 R /Im29 36 0 R /Im29 36 0 R /Im30 37 0 R /Im118 125 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im153 160 0 R /Im105 112 0 R /Im108 115 0 R /Im21 28 0 R /Im25 32 0 R /Im118 125 0 R /Im117 124 0 R /Im102 109 0 R /Im109 116 0 R /Im30 37 0 R /Im22 29 0 R /Im28 35 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im21 28 0 R /Im106 113 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im30 37 0 R /Im105 112 0 R /Im106 113 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im107 114 0 R /Im30 37 0 R /Im101 108 0 R /Im116 123 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im30 37 0 R /Im107 114 0 R /Im25 32 0 R /Im101 108 0 R /Im24 31 0 R /Im113 120 0 R /Im103 110 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im107 114 0 R /Im21 28 0 R /Im105 112 0 R /Im25 32 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im22 29 0 R /Im23 30 0 R /Im30 37 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im269 288 0 R /Im23 30 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im30 37 0 R /Im28 35 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im30 37 0 R /Im24 31 0 R /Im108 115 0 R /Im30 37 0 R /Im21 28 0 R /Im111 118 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im141 148 0 R /Im143 150 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im120 127 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im22 29 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im21 28 0 R /Im29 36 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im109 116 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im118 125 0 R /Im24 31 0 R /Im29 36 0 R /Im111 118 0 R /Im105 112 0 R /Im117 124 0 R /Im102 109 0 R /Im26 33 0 R /Im30 37 0 R /Im30 37 0 R /Im112 119 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 383 0 R +>> +endobj +383 0 obj +<< +/Length 954 0 R +/Filter /FlateDecode +>> +stream +xÅ}]³%·Øûüó;µsÔüfï[¶¼ÚÊKj]RUìM|5²´liWþ}/ÝMÞF÷XzйÄ4AÁ¿¾ûý㯰Gööñé±àïÇò»ÿ~¿üÏÇïþåëw_|iæñõwïü3ü¨üáñ¯?½Kþélx>ÆÇ×ß>~cûøú?ßå§§¯Ëõk¿<])ÅüLqÁÿ?þâKK4Þ/Ïhã£ü,&àßáÿúõ;óøû;cAÑgN¡4ÞE÷4åS¸¸<ý +_¸§¦+.<^ÄOJO <WJçÎ=*M*9?M®ÿ^¬æéMýÂIU|µ_Ûô±p«£ôJHrù¥ÏWÖ?W{n0¤vÍÚ2L®Íú\ÖÜsà +kÏ SPDßP"4nP±ã:npéà«e$ØqÛÔqCZ-¥WBË;n,å_MÏÔ-¡üv²Ø§M=+Bn / ++Â2E!6^H¹1C µ÷MPJWfÇjVÇ i·p»%Ì â¿µ3R»Vª§5uåÒÎd;vì±\Ç\p¸)?³õ\îøÁRGø!8k¨¾tjÙÇÂm¯<æ¾ÕQ òN>¢}Æ2;aHò»,G1ÄgJ eÆÜOPpx×pÃæ6_¸ÜMt3FêÈÎZ&ªpË:)¶NéPå2ñÕ;«Þ±ÂöOã×G*¬wõñϨÇ{ûô9nA湦|�¾½¾d[ þa)ݲ´ü\îsb Ý®¯6>=/&WÚPTq+V3ÿ´tmà.Ö°"ªÖpÃY¯¼³Ïu)]2eDÖ"oÞ®¥¶«_Í¥e=,ã×ÃÓDÐ RÙæO¥%g(=/ó¥RårÁü3¾ ¤à(-EùÔ:Ef¢K g-ÕB-ûØA¸íSú&T¹LòÖZç¶Ìþ'©ý¦Èi+úB&û%¾X)ö,)ãmi(}Aábc ;0¤cÔî ÎZ&ªK¸eK¸éËܳ:TÞr$¬ë3/=G"Ýk³®§/Èb\ÇW$YQæ¢üV¢\nHãHý«8¥ÌT_65ö¦Jéåò#e"®)õaHë^1'£må2ÓK=KR,¨éYJs>®8SÑßEµUª\îXÂ%RGº'8k¨v,áu,¶W6sßê@Py7o|ûyÃ: L±Ûm¾'ѧ3=OÀtXrã Z©ñDÊÝÄaH7q¤LÁ)e¦ÚMnY7q¤íSú&T¹¼ã+S2»'©ýs×ÍV6¸®v<qKYprÏòk8ÙÖ¬T«íY[Ç'RGú'8¥ÌT;pË:HÛ§ôM¨rY¹"ûô(ÆWËhIO»àÇf¬,¥à<nò§ø)Öߢ]ae !õú[åvL¸Yu}»H.?c!Óãu^µ±¨½«¼Xu¨·ºecvèxqó¢#§â qÏlÌU^ËÁØ¡¾Ê+ã/ñâ*9æEGN¬Î×y±<ËØñâu©Ï´¸é¨£ý.ÖþjïaáY/ÏkÎEmì4Ì6[\¯·÷D.leÝCki÷3wECpC +Í>E9 ¡gò 4%÷º)sNêAi1ÙZV²5¿÷°FbÎ=�LÙfç¶g-»²ì-°¬4HÙlãòÖ eWX¶×²¬y-(&_¶¬ô!VÀÇ(b¿¶OlYØ}CXDñ¥¨Q+[]ñq¯ im¬í*;,¡ãj¿ +çsÁVË XD÷N¤g +©ç )8\ãE͵ì²+M.7^0 ãC¤k°bã7ªñ[]ñq¯ w¼Xîg/PûU̺%vr²*8& ²CÕv¼�k?¹gàù2À¦)åÊ4^»&¥§L±ñÕxÁ®¼à^ /¸¸åE(¿kÇ +.×^å2ÃbèÊ¥¾cx¬,îö¾±"L°U6\n`@Ç#a-ÅÀ6}lejsã+v©òK;Å*ϾÔñk©¼vå>ýN"Bv¸«n¢úMÓ=謪¨Ü&ºÉÁ_ÂWKD¯É7©É·¹¢ã> =.*mhë©©PÍýüÿÉ'æËn:ôÅ6FÙ 4>¡ççj<¸¿ü} é M±¦e\¤Ì}LQ}bp§|Ós-ûãV.ûä +q(\;HÙ3ùØp©ÌJËGZè +)8`¿ ² uÐÛÎZ&ª/Zö±pÛ§ôM¨räµÎá´=ORûW~aÇ\˾Р¶çI,¸l°ÍsÃYö9¶¬¡*;0¤ãÔþ ÎZ&ª/´¬ã´½òûVGÊ[gÈ¥'þc+;\7_:Hä¹c x°\æ2¾r!hü +ܵOÊDð¥P>vnµ`^ I.︮iï{n0¤vÔ_íÚô¬5H(kåÚ³#Áo8cÁ±®\îÂ#RGú'8k¨v<áu<¶W.sßê0Py7karÏÔkW6eôzIJgË©ç ZÁ5`P¸Æ)w³!ݬ:2§j7k¸eݬ¶NéPåò'|X=KP{W¶T°`¶rßèk8¨=Glzi.źռ¬McHÇ©#cRd?¸]?¤å;&4©¨\ÇËæÃy+&_õ{æÂ3<èý?Üyà2z'Dá®/{_tN-æÂÖSúv\Yë,Øi¹Wý?p¢±^æEÙÅG{¶¨%\ðÿ/®^täT¼0e³z)ó"«#ê]±LtÉU^4r¯úÂ*/*~¯¸0ªÔ ²»ÏQ'Gû |ËVÛ6úï¤Í®Æ.ÜhsÙÀ\pFÂxÃȿ﻾0iH!ÃâzEð\.í¿D'áÜë +ö½^=(q½/ÏâÚûÊåæ�*«K0ks�I¹9*¤:*@S<@BµzLÙmÂrs[IÛê«zéJµ,N /P HÛ§ôM¨ný@eïb=,ÅÅ¢wý²e'{ü#|2&´·«ã¯LʸdzoSdgèT>[®cÙ|ãíW_bùª¬ÝÎ?GMócú +BY�ûRLÃvaeäÖ¹9Cy.½5[,<-ýWísYV²n°/KáËZùâW:`_ñ4ta@\JÓ`g®óxö'Ú +ö26ÉvÈÁË2zbÓÍ1Ô¨¢ 鸣ldsphî7Ìå+pÁæÕblXpäà«äÑè`C¡hXÈ�{u¹$8lûL �ä±a÷|u=òòU$WP ^Uî&w�¤Övç³½ØÑÂ5å&X4Ó1d�@^LH{ØÏÆÃçÐ)[Æ]wµwèÏ-£gp {],©¶Îê;»VRwºÈy´(@Vpô´û(¸¥pÃÈ-B =Dvȶ-=©¨#ÆåsG>r°wÿ!á¸)voÞvàpZãzUB¬ü¸;ðªÒ»ÅEôªÑ@@,lÃÒ :³Ï[IYÐzS% +ÆÀ½¤ÛÁäÔKJX·Å?¹VQ? ªìñv[мÄ�zbzBÊÜnWöÎmä¤Ù%J³!PÆ×ÆÄ¸L_%¸Ù)8¼i7ÄÔ@' {Ùìã^(ÚÚn[*ðíÉθ.×@îpWVx6 ïÜòTôFZ·-í÷jú¥ÙfÓ·¼B¾ÚÄ×wPÅ0(v è,Xz?ÿü·d¡"d~óÇßÊ¢ü¬ ÿ(H¾}±ÙAÄG":` +ñ '6Ã`?µb,ãGÁ% eyð9`@@BáB¬(CÑs«§ *e +ÆXãÁ_¥NµÊ5µLT_*DZö±A¸é²öJÖç?c¬bÍ,Q¸¢Ý-LÀ9`¦¹Ïá«2ÁMÿUû¦¨*ª%¸BËÁ÷¸²Á*Ãô¸ëWí°ÎHylÆ×Ä/ä»QtÁZ3 +¶I+^Ë5üK ³È[W¯"e\%oÎÓK4¥±³EW,¶B(v6c3×YËêlCYËDô¥B¤a;7qÖ®1U)óøîÙ!+êz.6¸JFÆàEiXQn¥(ÿ R´6àä8*AŤ©è\1Ê1øë@<_ g-Õá}ì ÜvÁ)}ª\ÞN²_8²]äÈXÎÿ\�ÆRÄOÙÆCk �¾0Ô!¡w²4!ÙdA@éq1×P4o� HÐMî(8ôyÄ©¬7e},s¬ì~&âF$ò¦LH>0¤Br¢O<¬@��Z¬²-®X@¨Ù"^�@DóôRöÔþ͵ð UÈ)V*7û¢ºÄìªÿwe ,öb«I!_§#éÐ~ue¡ ¾0t{�Îà[Ì�ªSÆ#" RNeíwôI¤!u+Câì¦aÁ'�¢°!°B�Ï@E&`3AÈGëIkà¦BO× +*í6$Q`áv @\ ¹üI\èæPFs xÚáÊ�gþÁÊ�èîvEÒJ¤-Ý?B%¡¡/f[Tk!Fd:B¼,Ƚ²Î5¥@ÊÂèX¯ vþ;#ú¼BW åVú&ÿÊÞÁs-²ûáêÀ*¾øB\D`HKÆÚ ¤¬o!ÆJdZ]´µâydøbx:êÅ^)®mm~W:öûÞ~ h #)XwItI8 +Á/9¾¬Ü@ý+RÅ/)¸,opO©Éº¸UO&E¦�lmRyØ#Ú(¼`·k¬InYV60²Ç38Åá*ARÌݤ÷pK*HÁoLÄ6ôWï<hqG2ÊY5[(^Pª¯´îûbÙs `.õ +dµ| Ãä<CP¦Ì«|{V<Ê4>E18Ò<<o�teHÊtÞd �t¢µ!Îgìª3!àFDÁ¤|¹ëÛ^¤ÅØL±üxGZÐëaS¿Ò z+µÖ#z¢¦©DºÛ亵2Äy!§¬Õ£Èª ~u#Cðì.øæ¯ÁZI #Ð*:1-èè-V±. âhøÌPvÝ(#ëW¸Å0d1²UiáAÜBSÇáÍ�Ç�p� ,þ<s6¸P¤hzË�'¤(§Ë²Ès %v¹x¬Î¥1«î +Íý; _]0_âùRx£ bxÏä1r( Ì#Å;'²,#BçpÃmÐ2Çzp]_O qÅë#A6;`ìVT;ÝTH }EàG¡_´®æUÐ$RGvIà 5©;=÷�×HÃæÇvw+�ÀNUË�8å±4Õ`ùo +dáMN.x# +2]¡ +2°1¥,I(ÄÉd.;`BîaBKB±&/,C2`uxì é¢ Óܽ%H`4ðçqÀÊrBBæ*I~à.6cÙ0WFÜG3KÆì¶#¡5&ßf,SË]dÀɳyÝ GREÞ\÷IÝ¿êfϸhvýNáÕ/JÙ» Î4i|úDl/ó´5bcE,-Þ!ð|ðA7ÆÑ/æà즫d0¡¡Ýìä red´WtÓQ¥«m³h¹¿/ãÃÊÏßüéãÇ?~ûÃË_v·å HZ~ÐÕΫà DË]ÙÞôWößSì!Eøño>þðóhaaÙûkÿTß²ò¿_p·ÿüOBËÀÌê�ÿSs!ýþñWÌ ð×w³ +ÐÝúÄbØmÙWÁOï¾øïÀ¤üÝOï~ß!(vÌAÙ/£¬Ø"y;`ÛíÀÿ ^#,à{l-p{ECø-�;Ç} +¦Cì¸Eéï ~n (K¥¶QÛ%oëShõth@:²Æ¤:�þd[ ¨Ó²rÚ="4 /É×F�Î({)ÂMÂA`ânëÆb¨Ôú~Pÿ(B(e7eí?�Mbë³S©ö?àØ~ÂhQÿÂ8ðÏØQÿ1ö;µ�Aì®Nò®~± =Ô_+ý®ý¸äùªãøäo&?e¿ò&ù±nQÉO%?l¿ÕÉ: Ø`Ä@g88*A]}ÅæLÀ|£�Ѱ1(õ�À¦Q1�S.H#ÀSSt �éÃû¡~R+0».7ûÏü_W%ÿýp»Åè»)�·Ä7)�×) ×ø?SÎø7)@gFü;ÊÏz®«¹Fõ6ÌÞ㠽ʹ÷6.áÌ�Ï&DAÐYQæÀs�8©Â` ô�|ºÄát¢Â6=pñ`6Ñï¬Ã³EÈu:ìµEh:Nç�õÈ%?¢X¦s Óaw�p_ktÀlG¶ÎQp¥1¢fsØ+uàÌ +÷bG+xÐñ�á&1øðTxÚuüÑÜìɰ}Òa+ãp¥¡k¤Z�ÞViÁ@ÓaJï]ÂfÉCfzÌR¡Ç6sܰÇYtã)Br`°ç!ºÛÞ0ÁÙ¥G=ä°þh3àë!ð ZÖ[z¯['ª§ÿpû¿¡¯×CÆó:°¤[zÈFÿ2tAôoé!y7¾ä{K1Æ·2Wâi"kÂ]ÔzÈ$±Ì==dr YXZpK¼V)¼£ÌʺRÞÐCfe=¶EG15Àª{1¦Ø m¢ZSb4E¸6U{5âi`Ôï½*Ö&bX{·¸Xvü ùàØ[ѯ!ðVZ0pl÷8Sgbß ÁÆn¬ÌíPùXY¯SfSÏO*e<ÝXÑ7ÖSÇ�èºCÿûIÿ£Qõ¶1ÇÊHÕíOFÕþ٦¦0âÿ@ Núeÿ'TÆÀþª£?ÚÔaÿW?è:ôê]Ên +ÝøM7¥ËpüÔQ·dÕünêUS·UÚ"3ìlÐéà-âlÖS³e"iGa:%n§Ó8ÿ6k;*khtBåз²¤âÙ´<À@Àó¥ø(Ü�x8áq¦,LJÎN¨PmÌ9ý 8GÞ4V£Gã*''Túúªê9ÙÔÌ´^N¨¶zL½xcÞ´)ôrBuScøßô°·ÃM¥Z{;â^~¼[vÔØñNgÌ&°÷#;ì8§Î9??úuÜÑü9®ãSþÿ6þõMN~ÒÌ¿©üŬ¿¹SH«&íOQÕþÙü§_ó>pÔÿmýÑøíåW\?u»a¯wJRÙÒ×뢪ÿóú«§Ttþéíx1ú¯ëïSåo[_¯¿L£öô×<ÂÄ*åÇûÏëÿ¶~Ðð5oãÿüÛáv¡ÿ[gàJ¼z611ñª4õ$¬ ©'Äè=!S:5Ç^UëbEðªWuêã3Þ-:#\ùîP1x«=½ït _ p¯:âÅÀ>©ÆK@ H!öåZÓ"âWÛSÆ·¡áݹFG9_£t(K LádÀºå +aJvo9+!J ç¾ÜSíë6]fô®ûx,·W÷P0îªîù²øjOxÌ(¡þïËTã¥AàNÝ}¹Ö þ®xA³£\!L¼/Vº2R}_Þaod+éàʰ@`Ø·áöjx«/ä�î`²M3ð³2Wxé� ó6PNI, +3«£JåJNäs8Ñ +`¢inÐó$ÑðбÈ>ùC¹bi�"Ú0Õ ÝÜdPÉðÄÜÙ +`²#ÝRØÕ $Aí¡,òQ!,Aþ¼(IÞQ®¦T~KãåJY BI0ìË[Y)oS'U¨bäÒ3®öPnbU,V#ËÕè¸ ç:²¨d k¾à´-7²Àd+F&»¥°%×B_{º £wteªÑãµQßʵF¯3:ÊÂDiʲ@`Ø7ëÜ©(ÕÙt( +aJþ¼¥ì)«OG¹B¦¤_åJY BI0ìË[ÊEëÀ¿r 0%[LôÕʲ@`Ø·ã^-tnOrór. Þ3d#@Z/XãJ!k¤kQS<åù!j#$ʼÎ0\ä¯RÑ+º!L¯J[#¥òx»N¾¡zô¯ív¡:®AJê¸ò<^΢4 6Q"%<Z,f{GJâW&@©òxOÆÃ±g4ü°` 8@ Æ"^Q+²ayÑþ!LQÈÅèvö¸Û!kµÃÜ +) vBÌb"ø¦±Ò0YÄîýí=v`{U¨IzÚW{öVG¾¡t3ærßö +é°[¸º¦{ûJ°[¸¤Í{±=açz¶pÆ$Äî"§¼±ïøJ¯?a=ü«Ç&!¤1w5õûcaðH®¬·$àrÀSÈnµ.¤½}ô^Ác(S9Oô}Â8ÁÌc³:Lìõ ð�>røÞ Ç4±À=Èk^A·Üò"|+>ïTCösºr¸òo5ä!à%äy0xß'î0fcÊ=[àâ¼RUK"+X#!7û>§é3&£¤O[üV^x:I;Ó6nå aó]úíä ¿!IÈ´\Ã-| ÇØk.ÈÔá]m} ]®mLMÛÜAR(LÉÈ£à²\n&UKá©EèåIù&¼¯Q6ÙõJRWæ©Ï=vl°Øc¯_Uì ïùõÈûHýävÃt¨ùmúo@ôsÇtù¾bºLÙ/µáôÃ8+îÂNvGâ7já}»@à6àIÊâºÓµ|iÛQìÔ£oð±ËÒªàøq®R-GÔÉ`RQZªUGCiP¦/ â 1ICÅ®\+à¤&`b&L}-îÒp¸Òí¡,5^:HéÞPîò=Ò%7tRéx×ù÷ån ¡rWìéÚyá;²*nÏ/áPnXÉTÛÒ&7Kèi&ÊpYiÊËF,$A°+2æ0,yÙudè@�,QDzÐ&T1ìË[Ê?zÂ`:`·Â9+]F°+n©Â°Øl 0²$Ãòp,WºBa_ÞRL)³ Ú -;¸§º/Ò÷/�:|R=ãLÞãªßý×_ ,hª n¼wB!ú"øBNOw,sa ¦apO;ük¦=�¥L®Ç²N�+!eÍ¡Ì5^:HÂüù ç¾,5ê(ÿ¤¿¢a` 5ÊaJ ¥Ê»R©øöåm²E¬cÂŰ:Òëä âqI!aPÎü¢w È3mÉtLÿt;®dÉÌʬ@PE°+nûûë¦ÕpuäÅpe¶W`ÜÊXá¥à8°GócG¡Jó¯@Ã9²Ù +`2r{ËBV�BVÙ-éî¯Af¯y¶»Ø2gz=é]ÈV¿+Ê÷/$¡ÿaÜ¥Oß_péð1£.úd1¸@Ð#ÿk_/$᾽ᤠùtùW"ÝÍáJY BIæÊ¾Üð4Qn8òÆ~ÿIÓHCjÐn÷P!÷ØÀ̰¤A¹nBæ´Ë Á®Øµ<Îÿx°4-~|§½& üè9y¥sÀÌîà]s`KpÁäÈtmvOÄÛR&pßr¶Ó]=Ìö+ÀjÁGs C^-0ú ócBæT?¡jøÐam¶çàâ°Ýâup?_i7ì¡0è{ÌBï0KÜ}§,\Gpà^;ËrFp=ZIéºÀç(Ô¾Z7GÈÓÉ÷éVvÇ}gä¢BÖ-ÚuùÅá*r`ù%2xð¼ÙðDBÇox$P3´²²C ·~¡fôvó#~;[¿ ^RêÌÖì +éqÃ[9É÷¸ëWÛB2¿´Eî§·Ä6B=;ârqóÃZåìZ»L_YGµE/d»MH.¢þ¦SoÐ3 ûðÆÂ¢é3ËJ®;ðõ{¹]A.2:iâ);ÈÝ'Ì23¡s$;È\su)ÂWî#ÙÁ_Üê®7Z;ìçk®ßDUä�XíCêHMÈw3Ù 1à¿tä1uò´�ä²[Ƚ&þ(ô^j°¯y#-0ßbìå ïaÈ®ìö¼®RÅ ¿!AOx°ÃË7d÷Ø7 Çlös`½àèÁ%õ 7±qëvL½:w)|cMïwLñyã.]->$ÝáHýB¾l×ã®ßTÜøAÚàn¬×%ú©çðÍX·a9Ô¤GSÚWY',o% °»ÌSϰ¹"÷ðO Ãu{ßãKs2e½¹ßÚ YGý5\WF×Xfú°øÔ£@¨cEb*]æ âIÈ]eªñÒ èdw þ\k|ßSÎ ¾¬ÌYÚQÚ¹FG¹ì¥amj8÷e©}ÆDÑe%;åF¹BRŹ/÷1Á»óå +aJn Îë±\ñ4Qj8÷å e8¡sè79ðÜ93(¾BÈ¡_°CO úÄÜn&$ >+aá ïIìä«®"T¥çP<ÂÞ`ÂEWÚvñéÁ�qá +N9ÊÍIß èį·¥Þ¥Ur=QT*EgAb÷}¹£Z!Ibö宸¡i㦳©t ·8ûlËÝ +!B宸¡+Ó« n ð`Ê=ëà +WÈàîHÈvøGwNÄz.ÁÙÊÝ9Q ÐÁPE¹+nΧJ;M¨>=ºr=M}y³ÿ>4Ê BDzP®¦T1ìË[ÊIÉ÷7 ÂÀhÜ \)D( }yKr>§M+)A´÷r¥,¡$öåínÖHÇ'võ4C@(úæCYj¼t2nÎ}YjOáW"]5fÇmÐFã²+³B;y©¿-mý ÿx¢4 ã:t?&±<�<xRS à¾,5^:e o8÷e©AÝýHÃdòøôZõÁ6�ù\Éq,²CUÊìµÙ»C/Ýý1.{,o:Ë +ùÕÓÆU7xGÕUoÀrP]EVë=E«^?l¢ +i"xø#c«§¨}$"È-ÞÎUvÌk¤4Cë}EZâ+¯ë;_8ºn¯òÉåÎW6¯a¾¯¾ÊõLÎ"ÌýÆY,F×Póº¬+© Þë˾÷5x]Ê(Dg6î"| a »¨ò³C\§K§}ÅÈéëÖ¥ãá9 ß·¼Bzä²Ùõ¸ëGÛ;|m»èëwHNolì;o|ï5oÜ·HyjgªWn [0:w=[Ñyà£ÈvònüÕ;X§ùs`;ÒÛahõç�$vëÎG +§ÇíjsHÅ{WT^iÊö®(ØA»Þ[ÄñuìÊäì½E.íMÇ^³sºÀsÙ5o|®Îé"Î_T½ú*¤ó´TwQûHÜEU\:wüfÓ¹0xØ»MËÖÖ¬O¤C;5ÝÓÓPÿß +¡µ¹sé�$pè^ÓË;ÖZsçÒ[Gté/G5ÔRQãsE¦ÃÜ>ÌøÌºuD5ÆÓE ½Ó ùÝ|Eí#qº¿{_ÇgÖæ+·`¼´ç¡¯é=:8acì½Eø¦Ç²i8$´;ääÔæ-ÂGTlïËÙ Þ¼EB Ü µ.mñSLlà8dHàèÁE +ÆUIáÂ8^Ã(LO¡ØÞ4¡È~x3"ÖOdÂì`]úÈZü6'¼¥Ôà-Ãa»?ÈÇÆqJ ¹à*#!ÏÎ;Ü+÷.±.c´;÷¬rÔ©Å=2Å[:TXðÑ)p¸´¬¶c + ,¡çJÂ'ø^6ûý ö +6Á[SÄÓL!ÂÃû[kÇxÓ.b ôRCv¾äå-¨ü÷º) +t8�L!äÐïJA»3ûCáõ7n¬§xD$¢ÎiLA%×)°l¬ÎwL'<©¢éMy4¥EÓ�óÃDAï¸yl9É8S²W Ï1#><Ï >¸CðInPjè÷Z<WÃâÉK%dZù#¼aYX¾Ð[F 0<ÓËÏ ãã4ÁSÄÉAAï/ìðéxÆãå¿}|úéÏ_þòáåï~xy|óòùÿCïÆ.h·½#yzlåQþ{ùéÇï~øóß~þæó?ýHÏ¡¼·¡oÁÀ®Ý~øøåozÿ»ÿöoû/X·±Upõ£6.À«éiyïð&x´$ñ«/VÞµÃc&¶JæýÒÀ÷)uïÉ@¹L· +òÞK齬o±ï˺ãÞJOÞ<bÁã\ßè1·¬÷ÁX~G%iÔµÌê2eóÒµ-H+J GfYµ=/k2Z?gxQoW~Ø:r?|÷ùýçÞÿüÿÿüøÝ_=~üÛ§?}øùWFÞJß1iÌ1Ìu/íu=3ËiAeXøv2öøæÇo¯¿5Ç(oykfàÆ[3pÚý¦·f¶-=õy@(9¬4`ÃxèÁÙ[3g âð[3ÛúÇD\³D6pcñØ}"à wõÕi èâÕ- Ä´ýüTÍíöç¬lÿ$;ñ*üó·ñÀ=<ãý×'\ý×'4¦Ö-J:¤²4 ë~Ò'å¶ôG/uÑÀÝAûõ =9Òÿ§ô½SÑ%B¬¯óJ"¤éø aÿlfõã¨þà¬ÉSAqQοq"=Í0ýwL¤7OUí¦ÁIq ipæ Yóç@þRNþ¦üÏ£ù7âÿ8]Gí×'RMÄ[äâü;K¨z¦?æ Uë>$8Ñò;}eÃêÖéK=vÔÿ/õ¸Ñü»ðJÓÍiB^oÞ$ÿ£ÿ©üxÝú3NÿÞI¤WÎîÉ5êk' õG^ÉÙZÐayl¿³Tc¿MçÎÿABóIû«ýöúú9¿Õ½ÉþWrÎì¯cûJ¤¹X|{ÂÕlÓ¿þõ¸luëç,¬UÍÿi"S3?½ýåù¥°»öÚ£DD¨nQÊß$®óJûa·*ù?Kä:´?öÏX~½×í¦PÃÛö_ïD¡?§òóæ¯$b½»òi(jûÇp"`¸Í~Çþ1nÔׯ_ò:Ô¿õT«gùÝÔ×Û?Õi*nØ?FägÓ½ýcdÿ±iÿ ×Äÿ²?}"Z~is×~µýSý/ÛñSÛ?p~ò&ùáD®gò3{ªU±îøÕOµµ À§ZJeõ_{ªÕ .Í +¹:æñAsà AÀ +"ì¦À¤ÞëZ>D¦"è×PE.V´Z-\¬±zà-ö½+[ͰGÃA"<7¹Ñ "ZÝÁa&O»°ÆããD#W0I²e¡S¥öø8Q<èê5ÏR·r`Îì£$R ÿÔºëa2 +!êh$Hô¾©CpëtGú1+p䤾v$q`PçõC}0~(6,Ü M¹õg.=$#ܨö¸)<vAøÑ(ßO>êDæAQ(Gènå8x..ûæÖÛ#ÌÆe<y¨Tuïµ!Ø1wÊÄ)ÕëL%q«4ÕËKrÃæÂL¥¹eØÑ{kÇ'ãN¦ãê~äAB§áïß1£ýÑpägø)y@ÐQtC +`ßAýÖ³(6hÜÀëʦÇñØ�^VØ@Þ6ÀüÇ4R Û"Öï_õå`Ì*´ørÇÁy´ª0A~2M1¬Z:NªF00ÑÇ´ËþÇE9â[#úføH*ºÑ¨^£ÇU9&à§ØoryEåCÆ3XöOrÜhØÁ.uRßp¬?5ÌØË½áÃ<a9&¼3±ünãi¦HFÅ4ÂG³xäèÏÂjÌÂQ¬Kº¡Ö3`Õ1`:kÐÀq£l»§÷³è`NÐndd ¬ÃY¤x´XàLTéc°UXQý£IfÖ³£Él-§ß´@Ö{æA§H^[GîRbÛÃÆ0cx¹ð-bìÂh5¿ HäÀì\O8uæÄTÖLÃuÓp¦\À`)@V*©j«b¼Ø¦2ÆÈsÌÁÝÅÌ/J<n.I x3TºSdéùDg6!æ~Q-ÇfwgÝrlv{ȹÙù,ÈA$(ÞX¹!iÚÉÄá¶b°NzF"0Ôçá¾ÂX0ÙëÝ¥[z@Îζõcöï,9úê÷øÍ'g Ðõ~2¸ ÝËæ~ËÅÖ¦¬6õ/L#8þ:²@¿¢Õ<DßM8ñ¯]¿e¡ÊEEõWNPîÁª±W÷À®!ìLøMôÕdge즱5Q5ç§F'³åbeo-çÕ¿p.ÄKJ=0^Î%y'CêåìÝ$Ob~Ó$¨þÓI0óoè¹c¼¨sGjd°³Þ°ÃvÛãU88o #ÖÁÀQ:Ñy4Gz`ÂÕèX0%³åtº5ZF«ÑÈG3s(uùtsºç± Ü�£\Ïg®Zgò£ÃI¬Su`îß0Êy8 ÇvQ'Sr<òmM$Ég243*ÀÀ¨6@© +G˱³e·©7.º7-CúîA²oZ\4úÅ�o]ëÉ,ÊC³~È±ç »;²ÂÁÞnÂU·NÝËh9¹M¶÷R¦»c£\KfÇ×äxìy@ gH'ϧ·;yVùx;½§Ô»M74k÷¡ÜH5`ö=°£Ë±'>ó¨úHÎçÑØÝ:çÁÑÝ>SÆø²£n?q²¤ê,|UEáÞEõØðúDîOÅÓ¶C ßÊÞÂWµñ¨>E(Q}}ªUõ§.0¢áìÔH8Õ#e:sÒÝÌm5b@|]C(6FªhæcI!ÍIV«ëÀTVÌ]£!ÔÛåðJ«rg>Fªtâau÷Îí 2S' ²ög³hB¡kÀÜÅ1jÀÇH^qq,:2oJÜ6ZUfsÈ«÷¦¶iQêá2`à§2@bÄï2 ÇÛHÝUí³ p ´Úá¼3@ v´º%(Ðd_dFpÁÑ + 2n9ZV În¬ÕVçì´\·¾« ª{ã®5çÆÖ~oíÓÛd(xÁÑêBÖijièâhÓp*CÉ(ehâH#^pfµ=9Ã<2õ-¤~úe¸«}lÕ=±"µAìæÞÍéíH.øWìp)RøWvá×'ïK% S|ýäz²1öN©ÈÆk¤¨Ö¬eÓ£=ÑqgÆCÔpÔíç\pcÂ|Õ¶|QjÁøN¸øL8a:i�õRd8óD¨¡É®ÒñÕ~-ð Uæ VÄpwùÆZh$rÓ�ýZX=úÖÂzñsÇõ¡#¸&ò±ÇCÇÑ}½ñÑ¥Ùí8àá Û! ¹Cµ§òÏ)¥x|âVol >q3k1@¿/^ôÕ.R+kéNU7®Y0íÎBý±µ¬Å'à +õí٩ɾÔfá }©±m Ö£õÊë©yVt0õMß¾©0Ôz߬Ågzt~WΡ¤C×@Í¡+äÄñ®YujtªÖõ×,!¨á×,y_kÞ(μMëåóÅ|z¡kÀÜ5¡[æ® ÿ&sÌÉAÓÙJ:ewÊlì%m7ôþ5¹x¿mÞ¿ßfÖ«-g"4õ¯%3EükÕ;ESßH.ÆzÿZ¾»Iàn-»6æàܵ1 ú{ ÎßmÉZ54¼pº=Åtg;QúuaÄÂÉå§\ +f&½wqÔ�EN>ÉÉf´{wF¼·&é( +nâ_ +#DoSKV·sU|w±ãÚGêczÓjìÓȹp[¶ºGî{7ø¼q1·®çÔĹgO@f7Aðg7®árr`Û�¯Ï{ Û¨o\qm ¿qm¢ó»-N;ßBZ+oéI{ü/í,u °@ãéúi0Å`zf*þÓ1^xç HªÌ½Ó½)çW½= J)ìMíh\9v}Á";uolG@í!¬[úúöû߸Ûr[NÞm¹+r·åL§²¢HóQ <dóä¼âÞÊþZª¥h*Cër{1G^X§F~éáùÅ_LqÚ¥l²76I)ÄúV·M¯e¸ÑBt!ØÉiÕM{Îyå,f?a{ÎÀ#¯ÏÜY9 fî ÷&=ä$Øæî±EzÁ½ÑXxÓ½áóxæÞ® ÜîMkYܸ»U÷Ä͵ÌõÐ÷QïfîѶìJÚ«YèÇh\Ø»"Ô6(Û?ÜîkÕ÷å½Wn¦"FÛ2ý}yÆÈßÎ^MC÷ssj2vW7Á4ÜéÏÌ9òR'Ü;3ç- ¸ufÎké¶zsÐòLìêë°më_ü` ÚöÿÂJi;dnEnvÜZ ËÐ â6ÜHôiUùJʾ>xhµ:§í£èÖõM2$q§24ÝÑ$ÆÁÎÒzæ7 q+ÕȤV'ó;-AÇÂyZÏE©fõªþtýªÂiÊFô·áRr'ΨU¥úɨêOC7ò2Åë ¼µçÈsE8qM°I¾Mó®IµN7ÆËH]¥!6Àh΢95U.E¹u-}uc>ÂtüÈÔ/%=,xÓ)»»êÇd÷óHTâïiBþ@pÍ¿$7Ty1ÚÔnË&Ë)»·B0½aÊÆ-ô^êjÏl Ïäi[´gÀ{Ä:pÁ *Îí/ÁIó£¯êÁ©=rÞ*E´õ¶FÒÝD¤@5æöQ5`ÀI\)Ü[°!8¨C«R'UÐ êIz¦FæiÒu"0Dàp5ÈP:v)õÐ<XÔ +ñ,'ï,%:TúÍf$CCM:qôÛÑ\tÈ Xí¢tNgÌZò¨ýê÷"ßM»åëuEÌ"ÂÛV# OãGù<&ñ$fcsêBr¯Óðµ³L9°Z¦~v>²=âéÅ%ªVi¦Qáü Cש£ßFÝ$4¸E¥Ææa#M¢ÙIWÒ¥ÏÒ#ÓïA·¥§ßR¯#Ê´(bÆÖÌñ1¾éQIÊ´3Þ££É¶L\|¥+wx(QPÿ^ çY°iÀ¥Kªë Òoq ]}uBM®ÓÃ9ìØ6@ØÃ¡À»!¼ÆéuC8?êXU24M3ðêÛauk¿ù¿8}ÖçwLÝhõÛ²eÄAýí0Ëiq÷Ô_Q´2íÝôYC=¢¿¢hG³øRú,]¦CèjäBú,¶©·ôõ=>ëÔÈü¨UÀdkÏ»öH½«ßÀú4÷Q7 ¦"¤ÕcÓ4÷¾Cp!Í}Ud'³h¹¨4éüêH^b~xè®W×ÂÝżºNóy¥yÉ%׿¸ÌhéÝCÎê80ml +Î0MÚÕxâà�¨3!gÀRÓ5Ù¨(ÈjÝ\]JU<{Bm4út¢ßûÔÙÄÕ;qjÏò{{¦~·5[øí!¥]8Ð7På½ñ2£Q>)ý4'ØTÓxê0ÚY8¹bY-Bwvµj êÌ` +¡Ú¨öCPRvz¾¾znMDp¼±=àÔ7O"wÕ7 )Àts`:�Q7�³÷Tå¶½;Cg)¼à¢äI +¯É¾PD¨ØÖwîÕ8ÎMý¡´5ó¤Ó(BßðÚ>èÑÌuÿÒ&pbÓ¹]Åúçá£ó×Õªþ<î" FP? $×N`9Âï·íeP åÃÀC ?ö_t³pZßXxᨠᢲ)8á项,¥[êoÚºpC¯êÏÁocÑIÐô̼S·nú¨S×gð:ÕbS]l8qÐÍ2p9åÎî¸*õðÔ»zX}Åò³Î÷e S·d ´Èß̧·W¶ÇÊö´´)âÉ:M>Sdn¨Hl¹1úÎ¥xðîÓx1×ÛNÃéÎØ³XVéÁrvÉtÈsß(4Á,ÁøÈ$Ìn¹.ª<½â&©þªvÑ¿â!ÚÅ`vÍv´^yß]Nm'_õÍ?FªäÂ3Ùi-²uºìt ÚÕdöþº3ÿLzMé6áY¯=ÔAù~¨ôgàõ³7õÞ%Ý*YøÇÈ*ÕßLña¤CpöøÙý1LoFòøBMòÂWßW·Ã¸å÷ÞEÓXëß=#úWÞ£\xâ^|ý»èCÄ¿prjyÎ5Þ5à°9¦8ÏÌÒmF¾ö½QÐÒ]Ôqdfö@p¼ø7É@¾8iX¿8ΦáôÜ_ÞMC}ü\¬¸Ë¹XqÆù}¨GôAí=±éÀ¥#è» T£ix¡ræxÞÙEQ¶v.\ÕÉÀ4xAË7CÒÛ4¡ÍJM8O¥kÀ<zb(¢'²J½®~*g¯«ÀäÜÙf¡ÞOY·ç[ª_Ð×ËÎêOýC5xÁQëø¥Ûpñ6pcèF+þ=Ç/ìp%Ã÷ò¦¥ØÝR<ý/ÅúXüìÁXN Î_?£Ix!ÖpèS`ɵ»Zh]tZh~³D·ÎÚ lá{lÌ\½HÚµ|²36^9&αռwæäëÕ-¤W|£þ_pñÉëkç"4¡9zÁÅ'/»jéÍ0ÁÍyðÅH/ uæàë,pà¾ätzðkA|6ßÛXËZZêßs-øQôתocÛ 1Â[ä®·÷F@Þeßr@¦\¸l:paKRc'N98ËaÅæØ¶ÙÅ8 ?´g9ª§9°¶# ¶çªgdÛQ +ªk$)G`ú`uÇ^paOfí +5ºpÎø\ óK±ìCóúKÎÔIðªA9ÝØ»¨E§ÑgN£'N¥p²1÷I«Ig Y&D>ʲÁ»÷]tJMr>qÎYo¯ÉS)3¿»ÊØá g× SM°®Êõ|²·]FCxåYêeØ�u"2gFC¨·¦8U U*iÒ§µfi+F¤÷±:?¤¯¢áîæZ°»Xr>g¡CT}ѵ^,Ù5@}ÑÕÅ]¸èZ7ã ütfΨÒÃÓèu¸£gæÞ ¯]'\ó8èOâÝ0jv1d¨Æôù¹VÆ2,ùÁo¬-rb@ó¶;·`¸³¼æ% ¯Msø!Õk¹#³ü'h·ÇÏsb; úéªê¸iVïÄ]ÔK:ĹIú/_¿ûâKó0¯¿+ê?Pè¯?kÕ±_!o¾}üæüôøøÃËùðÏÿÝ¿üüÓ·{ùðíãOÿ÷ñï_}þáãÇÇóòÇß>¾|>¾úáÃ?üüùñþñýçÏùç/¾øûßÿþüüý¿<üðù?¿ûùÿ÷ùê=¿ÿüéão_ÿç»ýº´îÿk +endstream +endobj +384 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 955 0 R +/Name /Im359 +/Width 35 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xu± B1D¥ø¥GHAKÅY)<JFHýãDÍÙgØ@§ãBNY°æÇ ¨³ÐÛÆú(¹lìhåm +Ì.ß[¶ÊþÎí lbÃÑBèCàüø`F³wKsKûªcÈ¥\YdzÕ×ûãy{EÃo +endstream +endobj +385 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 956 0 R +/Name /Im360 +/Width 52 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xб Ðä,,!´³`3d&'pF ¤ð!Á;¸ÃÎ^ª\þ'"ò�üST2�f@�í%,A£0%o¡¼SÅús à¥ßÄ_6atRw®í¢Ô|SÛDí [ÎüÛ`!)Üs�æésê +endstream +endobj +386 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 957 0 R +/Name /Im361 +/Width 22 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x» 0@ÑÚì$ ÜÀÒÎUÁÒ"`FqR¾"ðüiô¦!/¶ì¦î ö'q¡ñ¯©ØÍô¬p@ÁdgëðïñÊ¥¢Zßãïð�Ö©&) +endstream +endobj +387 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 958 0 R +/Name /Im362 +/Width 29 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=Ê!Â0Dáש(Ä¡;(D\ #T"6Wâ9Jèð³¥â;û¬ÒÚOÆ%õÄ|! ¿©7\]å{ÙWû7k®îü¦@È»e Fi£¤Uât{ÝA×UF¹ÓQéB×f<=LÁ¬FYÄÌÊÏáüx>{¬FV +endstream +endobj +388 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 959 0 R +/Name /Im363 +/Width 31 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc~Àüÿü;»ÿìü3¨oøWPÏð'¡Ô10øÇÀàðAø3ðfáÌÂXr@ãäê(�Çõ)ó +endstream +endobj +389 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 960 0 R +/Name /Im364 +/Width 7 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«øóçß¿:666 vªVa�gyB +endstream +endobj +390 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 961 0 R +/Name /Im365 +/Width 25 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÁÀÀÿ ñ*f>Ù丽ñ0{s;???<¿ð1Èõñ¹:~n`°aoá +~ffb¨`gcøÀÞÃðùCÐrIE�¹Î +endstream +endobj +391 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 962 0 R +/Name /Im366 +/Width 39 +/Height 49 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x Î;Â0a[[¸ô pI>k¥yÜ#À HÌü²D´_5Ú]ç\rÊBÖx0 Îp ·ð< ÝEDÄjhá%<ØCF9y:X!+ ¿×ö1ÊÿOýú(ùT¡ +endstream +endobj +392 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 963 0 R +/Name /Im367 +/Width 68 +/Height 58 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x¥Ñ½ à `=ÒФÈY$Â]VréQ<¥/p?±dR$ÊI OÁ=��rµÐj3m-ínÂ*ð¼©Â!+Úà)Ò¡tÀè<.µ65fÖ|89idFÖ¤Þ#æÓ9¾{Ïòößp7d)Ò/Åo3A0á¹2F`fxùÞZÜõòXn/PçÏW +endstream +endobj +393 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 964 0 R +/Name /Im368 +/Width 47 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xб Ðx)(¬¬ÙLÆA (-8¾,ôÔN^AùÁE�L= +4³ H¨ìI!rÓo§®ÜµõßÜeÏ= =Ï]*©¢Ì¿QË¢½hçÁ½¼9Nó:í§æzQ +endstream +endobj +394 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 965 0 R +/Name /Im369 +/Width 22 +/Height 58 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÏð ±ÿg`dèÿÿ?p$fU»S�$\Gç +endstream +endobj +395 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 966 0 R +/Name /Im370 +/Width 45 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xeͱ à á((*e`³bÉ dK^�ÉÍÈ/wפpó !~9 +oF¶(ìqغí©uä¦JPæ¢æ¹ªéj¤¸C ÔÈbsós®øÍüËËÞ´ö þ¾ånfqñxñxÕe@tAt$*åîóñþ¼~ßø\Q +endstream +endobj +396 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 967 0 R +/Name /Im371 +/Width 45 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xeϱ Â0 ág¥p â hè"¼V + éX12bàÒEãݱÍWþ÷N¤8©òg'@:Ðg8:Ò@'Q9£Ðâh,.ÓªÚ¥ÝÕÓ~õÝzê·Tíd0_ÔÉÓ\)¤þ:fÌÍßE3z*òVQ»ébN¦·æå£áù®ÉkÐX«Ø2o§Ûãø¶¨_ +endstream +endobj +397 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 968 0 R +/Name /Im372 +/Width 13 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xão°Pÿ¡þÃÿ0âÙ?ào`À +øqªçU\" �H'A +endstream +endobj +398 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 969 0 R +/Name /Im373 +/Width 56 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ@äÿêúßÀPÿÿÿÅøÿb�ªQ@¢ìÿ SòÿP¨ÿdR(¦ Ú�µâ¨ÀxDýPÀA`ðQWb§,,kw8�oN +endstream +endobj +399 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 580 0 R >> /XObject << /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im21 28 0 R /Im29 36 0 R /Im105 112 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im26 33 0 R /Im105 112 0 R /Im21 28 0 R /Im110 117 0 R /Im101 108 0 R /Im21 28 0 R /Im143 150 0 R /Im22 29 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im29 36 0 R /Im25 32 0 R /Im110 117 0 R /Im29 36 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im118 125 0 R /Im21 28 0 R /Im101 108 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im22 29 0 R /Im23 30 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im217 226 0 R /Im103 110 0 R /Im101 108 0 R /Im114 121 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im116 123 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im22 29 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im26 33 0 R /Im21 28 0 R /Im107 114 0 R /Im21 28 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im21 28 0 R /Im29 36 0 R /Im105 112 0 R /Im21 28 0 R /Im145 152 0 R /Im25 32 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im22 29 0 R /Im23 30 0 R /Im30 37 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im105 112 0 R /Im28 35 0 R /Im117 124 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im21 28 0 R /Im22 29 0 R /Im109 116 0 R /Im25 32 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im117 124 0 R /Im105 112 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im156 165 0 R /Im21 28 0 R /Im101 108 0 R /Im26 33 0 R /Im26 33 0 R /Im102 109 0 R /Im120 127 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im107 114 0 R /Im28 35 0 R /Im106 113 0 R /Im28 35 0 R /Im26 33 0 R /Im25 32 0 R /Im115 122 0 R /Im22 29 0 R /Im26 33 0 R /Im28 35 0 R /Im105 112 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im23 30 0 R /Im25 32 0 R /Im26 33 0 R /Im116 123 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im22 29 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im30 37 0 R /Im29 36 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im116 123 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im25 32 0 R /Im108 115 0 R /Im26 33 0 R /Im28 35 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im111 118 0 R /Im114 121 0 R /Im25 32 0 R /Im29 36 0 R /Im117 124 0 R /Im26 33 0 R /Im102 109 0 R /Im113 120 0 R /Im167 176 0 R /Im25 32 0 R /Im106 113 0 R /Im358 381 0 R /Im117 124 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im106 113 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im119 126 0 R /Im103 110 0 R /Im135 142 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im175 184 0 R /Im177 186 0 R /Im166 175 0 R /Im120 127 0 R /Im113 120 0 R /Im113 120 0 R /Im113 120 0 R /Im120 127 0 R /Im177 186 0 R /Im353 376 0 R /Im182 191 0 R /Im374 401 0 R /Im168 177 0 R /Im176 185 0 R /Im156 165 0 R /Im21 28 0 R /Im110 117 0 R /Im113 120 0 R /Im350 373 0 R /Im137 144 0 R /Im120 127 0 R /Im101 108 0 R /Im111 118 0 R /Im26 33 0 R /Im25 32 0 R /Im106 113 0 R /Im189 198 0 R /Im72 79 0 R /Im44 51 0 R /Im42 49 0 R /Im101 108 0 R /Im111 118 0 R /Im189 198 0 R /Im72 79 0 R /Im37 44 0 R /Im80 87 0 R /Im111 118 0 R /Im25 32 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im107 114 0 R /Im28 35 0 R /Im107 114 0 R /Im226 237 0 R /Im107 114 0 R /Im115 122 0 R /Im21 28 0 R /Im107 114 0 R /Im28 35 0 R /Im107 114 0 R /Im29 36 0 R /Im101 108 0 R /Im110 117 0 R /Im25 32 0 R /Im22 29 0 R /Im29 36 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im26 33 0 R /Im21 28 0 R /Im106 113 0 R /Im102 109 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im109 116 0 R /Im25 32 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im101 108 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im358 381 0 R /Im21 28 0 R /Im105 112 0 R /Im117 124 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im176 185 0 R /Im136 143 0 R /Im227 238 0 R /Im189 198 0 R /Im72 79 0 R /Im44 51 0 R /Im42 49 0 R /Im137 144 0 R /Im353 376 0 R /Im101 108 0 R /Im111 118 0 R /Im176 185 0 R /Im136 143 0 R /Im227 238 0 R /Im189 198 0 R /Im72 79 0 R /Im37 44 0 R /Im80 87 0 R /Im137 144 0 R /Im353 376 0 R /Im120 127 0 R /Im101 108 0 R /Im111 118 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im101 108 0 R /Im102 109 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im138 145 0 R /Im353 376 0 R /Im113 120 0 R /Im375 402 0 R /Im133 140 0 R /Im23 30 0 R /Im28 35 0 R /Im105 112 0 R /Im120 127 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im105 112 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im106 113 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im119 126 0 R /Im103 110 0 R /Im135 142 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im119 126 0 R /Im156 165 0 R /Im139 146 0 R /Im26 33 0 R /Im110 117 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im107 114 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im26 33 0 R /Im105 112 0 R /Im106 113 0 R /Im105 112 0 R /Im28 35 0 R /Im117 124 0 R /Im105 112 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im25 32 0 R /Im25 32 0 R /Im107 114 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im118 125 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im25 32 0 R /Im117 124 0 R /Im102 109 0 R /Im105 112 0 R /Im25 32 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im26 33 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im101 108 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im117 124 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im21 28 0 R /Im106 113 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im28 35 0 R /Im26 33 0 R /Im26 33 0 R /Im102 109 0 R /Im29 36 0 R /Im25 32 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im118 125 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im30 37 0 R /Im117 124 0 R /Im105 112 0 R /Im25 32 0 R /Im29 36 0 R /Im108 115 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im107 114 0 R /Im30 37 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im106 113 0 R /Im25 32 0 R /Im105 112 0 R /Im26 33 0 R /Im30 37 0 R /Im30 37 0 R /Im112 119 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im25 32 0 R /Im140 147 0 R /Im22 29 0 R /Im21 28 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im111 118 0 R /Im106 113 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im113 120 0 R /Im156 165 0 R /Im30 37 0 R /Im29 36 0 R /Im175 184 0 R /Im177 186 0 R /Im166 175 0 R /Im120 127 0 R /Im113 120 0 R /Im113 120 0 R /Im113 120 0 R /Im120 127 0 R /Im177 186 0 R /Im353 376 0 R /Im182 191 0 R /Im374 401 0 R /Im168 177 0 R /Im118 125 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im26 33 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im26 33 0 R /Im26 33 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im107 114 0 R /Im30 37 0 R /Im105 112 0 R /Im106 113 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im22 29 0 R /Im21 28 0 R /Im143 150 0 R /Im22 29 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im22 29 0 R /Im26 33 0 R /Im26 33 0 R /Im25 32 0 R /Im111 118 0 R /Im116 123 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im146 153 0 R /Im177 186 0 R /Im166 175 0 R /Im120 127 0 R /Im113 120 0 R /Im113 120 0 R /Im113 120 0 R /Im120 127 0 R /Im177 186 0 R /Im353 376 0 R /Im148 155 0 R /Im120 127 0 R /Im21 28 0 R /Im113 120 0 R /Im25 32 0 R /Im113 120 0 R /Im116 123 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im146 153 0 R /Im177 186 0 R /Im166 175 0 R /Im120 127 0 R /Im113 120 0 R /Im113 120 0 R /Im113 120 0 R /Im120 127 0 R /Im177 186 0 R /Im353 376 0 R /Im148 155 0 R /Im173 182 0 R /Im174 183 0 R /Im175 184 0 R /Im189 198 0 R /Im166 175 0 R /Im376 403 0 R /Im191 200 0 R /Im377 404 0 R /Im190 199 0 R /Im113 120 0 R /Im113 120 0 R /Im113 120 0 R /Im190 199 0 R /Im189 198 0 R /Im353 376 0 R /Im376 403 0 R /Im191 200 0 R /Im378 405 0 R /Im180 189 0 R /Im189 198 0 R /Im206 215 0 R /Im376 403 0 R /Im191 200 0 R /Im379 406 0 R /Im174 183 0 R /Im176 185 0 R /Im177 186 0 R /Im206 215 0 R /Im176 185 0 R /Im178 187 0 R /Im137 144 0 R /Im174 183 0 R /Im380 407 0 R /Im206 215 0 R /Im137 144 0 R /Im120 127 0 R /Im380 407 0 R /Im206 215 0 R /Im181 190 0 R /Im29 36 0 R /Im101 108 0 R /Im110 117 0 R /Im25 32 0 R /Im176 185 0 R /Im177 186 0 R /Im206 215 0 R /Im137 144 0 R /Im182 191 0 R /Im268 287 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im116 123 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im146 153 0 R /Im177 186 0 R /Im166 175 0 R /Im120 127 0 R /Im113 120 0 R /Im113 120 0 R /Im113 120 0 R /Im120 127 0 R /Im177 186 0 R /Im353 376 0 R /Im148 155 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im116 123 0 R /Im30 37 0 R /Im101 108 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im26 33 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im106 113 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im114 121 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im119 126 0 R /Im103 110 0 R /Im135 142 0 R /Im176 185 0 R /Im156 165 0 R /Im21 28 0 R /Im110 117 0 R /Im113 120 0 R /Im350 373 0 R /Im117 124 0 R /Im137 144 0 R /Im113 120 0 R /Im119 126 0 R /Im106 113 0 R /Im29 36 0 R /Im25 32 0 R /Im26 33 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im22 29 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im117 124 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im111 118 0 R /Im111 118 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im109 116 0 R /Im25 32 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im108 115 0 R /Im26 33 0 R /Im28 35 0 R /Im25 32 0 R /Im105 112 0 R /Im113 120 0 R /Im156 165 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im120 127 0 R /Im21 28 0 R /Im101 108 0 R /Im156 165 0 R /Im21 28 0 R /Im110 117 0 R /Im113 120 0 R /Im350 373 0 R /Im117 124 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im106 113 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im21 28 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im115 122 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im116 123 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im146 153 0 R /Im177 186 0 R /Im166 175 0 R /Im120 127 0 R /Im177 186 0 R /Im217 226 0 R /Im148 155 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im29 36 0 R /Im25 32 0 R /Im110 117 0 R /Im29 36 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im187 196 0 R /Im21 28 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im102 109 0 R /Im350 373 0 R /Im178 187 0 R /Im177 186 0 R /Im166 175 0 R /Im176 185 0 R /Im187 196 0 R /Im137 144 0 R /Im227 238 0 R /Im177 186 0 R /Im217 226 0 R /Im176 185 0 R /Im187 196 0 R /Im137 144 0 R /Im113 120 0 R /Im268 287 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im112 119 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im118 125 0 R /Im23 30 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im116 123 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im105 112 0 R /Im108 115 0 R /Im26 33 0 R /Im21 28 0 R /Im111 118 0 R /Im30 37 0 R /Im101 108 0 R /Im26 33 0 R /Im102 109 0 R /Im29 36 0 R /Im25 32 0 R /Im142 149 0 R /Im28 35 0 R /Im21 28 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im29 36 0 R /Im25 32 0 R /Im107 114 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im107 114 0 R /Im106 113 0 R /Im22 29 0 R /Im23 30 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im118 125 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im120 127 0 R /Im101 108 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im114 121 0 R /Im116 123 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im28 35 0 R /Im26 33 0 R /Im106 113 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im107 114 0 R /Im26 33 0 R /Im107 114 0 R /Im106 113 0 R /Im22 29 0 R /Im23 30 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im113 120 0 R /Im119 126 0 R /Im25 32 0 R /Im106 113 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im118 125 0 R /Im23 30 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im116 123 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im143 150 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im30 37 0 R /Im29 36 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im26 33 0 R /Im25 32 0 R /Im108 115 0 R /Im26 33 0 R /Im28 35 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im105 112 0 R /Im107 114 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im109 116 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im115 122 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im28 35 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im101 108 0 R /Im111 118 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im106 113 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im22 29 0 R /Im29 36 0 R /Im25 32 0 R /Im107 114 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im26 33 0 R /Im28 35 0 R /Im116 123 0 R /Im111 118 0 R /Im106 113 0 R /Im25 32 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im30 37 0 R /Im101 108 0 R /Im26 33 0 R /Im102 109 0 R /Im106 113 0 R /Im23 30 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im21 28 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im29 36 0 R /Im25 32 0 R /Im21 28 0 R /Im101 108 0 R /Im235 246 0 R /Im28 35 0 R /Im25 32 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im107 114 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im25 32 0 R /Im111 118 0 R /Im105 112 0 R /Im28 35 0 R /Im116 123 0 R /Im110 117 0 R /Im107 114 0 R /Im25 32 0 R /Im141 148 0 R /Im106 113 0 R /Im29 36 0 R /Im25 32 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im109 116 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im105 112 0 R /Im28 35 0 R /Im107 114 0 R /Im107 114 0 R /Im29 36 0 R /Im102 109 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im235 246 0 R /Im106 113 0 R /Im106 113 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im22 29 0 R /Im23 30 0 R /Im30 37 0 R /Im21 28 0 R /Im22 29 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im21 28 0 R /Im101 108 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im29 36 0 R /Im25 32 0 R /Im110 117 0 R /Im29 36 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im107 114 0 R /Im26 33 0 R /Im26 33 0 R /Im101 108 0 R /Im111 118 0 R /Im107 114 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im28 35 0 R /Im107 114 0 R /Im105 112 0 R /Im21 28 0 R /Im145 152 0 R /Im25 32 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im106 113 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im105 112 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im109 116 0 R /Im105 112 0 R /Im106 113 0 R /Im22 29 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im21 28 0 R /Im22 29 0 R /Im106 113 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im116 123 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im167 176 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im116 123 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im105 112 0 R /Im29 36 0 R /Im25 32 0 R /Im142 149 0 R /Im28 35 0 R /Im21 28 0 R /Im29 36 0 R /Im25 32 0 R /Im107 114 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im107 114 0 R /Im25 32 0 R /Im107 114 0 R /Im30 37 0 R /Im29 36 0 R /Im102 109 0 R /Im25 32 0 R /Im140 147 0 R /Im22 29 0 R /Im21 28 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im29 36 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im30 37 0 R /Im29 36 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im108 115 0 R /Im30 37 0 R /Im21 28 0 R /Im111 118 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im141 148 0 R /Im143 150 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im120 127 0 R /Im118 125 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im101 108 0 R /Im26 33 0 R /Im102 109 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im106 113 0 R /Im107 114 0 R /Im106 113 0 R /Im22 29 0 R /Im23 30 0 R /Im105 112 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im26 33 0 R /Im106 113 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im268 287 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im25 32 0 R /Im142 149 0 R /Im28 35 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im26 33 0 R /Im102 109 0 R /Im120 127 0 R /Im26 33 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im116 123 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im105 112 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im116 123 0 R /Im29 36 0 R /Im105 112 0 R /Im25 32 0 R /Im113 120 0 R /Im156 165 0 R /Im21 28 0 R /Im110 117 0 R /Im113 120 0 R /Im352 375 0 R /Im30 37 0 R /Im28 35 0 R /Im106 113 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im105 112 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im102 109 0 R /Im109 116 0 R /Im105 112 0 R /Im106 113 0 R /Im101 108 0 R /Im111 118 0 R /Im134 141 0 R /Im106 113 0 R /Im30 37 0 R /Im30 37 0 R /Im28 35 0 R /Im29 36 0 R /Im112 119 0 R /Im101 108 0 R /Im30 37 0 R /Im118 125 0 R /Im26 33 0 R /Im25 32 0 R /Im111 118 0 R /Im110 117 0 R /Im25 32 0 R /Im134 141 0 R /Im101 108 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im26 33 0 R /Im106 113 0 R /Im25 32 0 R /Im22 29 0 R /Im23 30 0 R /Im101 108 0 R /Im21 28 0 R /Im142 149 0 R /Im28 35 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im22 29 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im116 123 0 R /Im29 36 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im106 113 0 R /Im29 36 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im107 114 0 R /Im25 32 0 R /Im107 114 0 R /Im30 37 0 R /Im29 36 0 R /Im102 109 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im25 32 0 R /Im111 118 0 R /Im113 120 0 R /Im104 111 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im117 124 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im30 37 0 R /Im101 108 0 R /Im29 36 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im108 115 0 R /Im26 33 0 R /Im21 28 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im115 122 0 R /Im106 113 0 R /Im28 35 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im105 112 0 R /Im176 185 0 R /Im211 220 0 R /Im166 175 0 R /Im120 127 0 R /Im211 220 0 R /Im217 226 0 R /Im137 144 0 R /Im113 120 0 R /Im156 165 0 R /Im30 37 0 R /Im29 36 0 R /Im110 117 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im101 108 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im101 108 0 R /Im111 118 0 R /Im116 123 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im120 127 0 R /Im211 220 0 R /Im166 175 0 R /Im101 108 0 R /Im111 118 0 R /Im211 220 0 R /Im217 226 0 R /Im29 36 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im28 35 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im105 112 0 R /Im116 123 0 R /Im26 33 0 R /Im21 28 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im153 160 0 R /Im105 112 0 R /Im109 116 0 R /Im25 32 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im118 125 0 R /Im30 37 0 R /Im116 123 0 R /Im29 36 0 R /Im106 113 0 R /Im105 112 0 R /Im101 108 0 R /Im111 118 0 R /Im116 123 0 R /Im25 32 0 R /Im29 36 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im21 28 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im115 122 0 R /Im22 29 0 R /Im26 33 0 R /Im22 29 0 R /Im28 35 0 R /Im26 33 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im29 36 0 R /Im21 28 0 R /Im117 124 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im106 113 0 R /Im25 32 0 R /Im26 33 0 R /Im102 109 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im22 29 0 R /Im23 30 0 R /Im105 112 0 R /Im28 35 0 R /Im117 124 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im113 120 0 R /Im27 34 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im29 36 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im22 29 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im23 30 0 R /Im105 112 0 R /Im23 30 0 R /Im141 148 0 R /Im106 113 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im120 127 0 R /Im21 28 0 R /Im101 108 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im111 118 0 R /Im106 113 0 R /Im29 36 0 R /Im25 32 0 R /Im110 117 0 R /Im29 36 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im176 185 0 R /Im211 220 0 R /Im166 175 0 R /Im120 127 0 R /Im211 220 0 R /Im217 226 0 R /Im137 144 0 R /Im361 386 0 R /Im69 76 0 R /Im40 47 0 R /Im35 42 0 R /Im77 84 0 R /Im35 42 0 R /Im42 49 0 R /Im35 42 0 R /Im38 45 0 R /Im37 44 0 R /Im70 77 0 R /Im48 55 0 R /Im38 45 0 R /Im52 59 0 R /Im82 89 0 R /Im70 77 0 R /Im35 42 0 R /Im72 79 0 R /Im52 59 0 R /Im71 78 0 R /Im47 54 0 R /Im35 42 0 R /Im39 46 0 R /Im44 51 0 R /Im47 54 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im38 45 0 R /Im35 42 0 R /Im70 77 0 R /Im35 42 0 R /Im76 83 0 R /Im37 44 0 R /Im42 49 0 R /Im39 46 0 R /Im35 42 0 R /Im52 59 0 R /Im71 78 0 R /Im76 83 0 R /Im37 44 0 R /Im38 45 0 R /Im44 51 0 R /Im37 44 0 R /Im82 89 0 R /Im70 77 0 R /Im35 42 0 R /Im36 43 0 R /Im44 51 0 R /Im42 49 0 R /Im37 44 0 R /Im72 79 0 R /Im45 52 0 R /Im70 77 0 R /Im43 50 0 R /Im44 51 0 R /Im76 83 0 R /Im37 44 0 R /Im38 45 0 R /Im44 51 0 R /Im37 44 0 R /Im43 50 0 R /Im35 42 0 R /Im38 45 0 R /Im35 42 0 R /Im77 84 0 R /Im38 45 0 R /Im35 42 0 R /Im36 43 0 R /Im36 43 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im72 79 0 R /Im52 59 0 R /Im47 54 0 R /Im35 42 0 R /Im70 77 0 R /Im44 51 0 R /Im42 49 0 R /Im37 44 0 R /Im47 54 0 R /Im76 83 0 R /Im37 44 0 R /Im42 49 0 R /Im39 46 0 R /Im35 42 0 R /Im44 51 0 R /Im36 43 0 R /Im40 47 0 R /Im37 44 0 R /Im38 45 0 R /Im47 54 0 R /Im78 85 0 R /Im31 38 0 R /Im35 42 0 R /Im76 83 0 R /Im35 42 0 R /Im38 45 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im70 77 0 R /Im35 42 0 R /Im36 43 0 R /Im36 43 0 R /Im57 64 0 R /Im36 43 0 R /Im44 51 0 R /Im72 79 0 R /Im48 55 0 R /Im70 77 0 R /Im35 42 0 R /Im36 43 0 R /Im43 50 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im36 43 0 R /Im43 50 0 R /Im44 51 0 R /Im39 46 0 R /Im36 43 0 R /Im70 77 0 R /Im44 51 0 R /Im74 81 0 R /Im35 42 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im71 78 0 R /Im35 42 0 R /Im37 44 0 R /Im43 50 0 R /Im45 52 0 R /Im38 45 0 R /Im35 42 0 R /Im381 408 0 R /Im36 43 0 R /Im39 46 0 R /Im52 59 0 R /Im38 45 0 R /Im38 45 0 R /Im35 42 0 R /Im70 77 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im73 80 0 R /Im44 51 0 R /Im43 50 0 R /Im40 47 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im43 50 0 R /Im38 45 0 R /Im37 44 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im48 55 0 R /Im52 59 0 R /Im36 43 0 R /Im44 51 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im39 46 0 R /Im52 59 0 R /Im38 45 0 R /Im35 42 0 R /Im36 43 0 R /Im39 46 0 R /Im37 44 0 R /Im42 49 0 R /Im36 43 0 R /Im35 42 0 R /Im38 45 0 R /Im76 83 0 R /Im35 42 0 R /Im37 44 0 R /Im36 43 0 R /Im37 44 0 R /Im38 45 0 R /Im35 42 0 R /Im37 44 0 R /Im36 43 0 R /Im52 59 0 R /Im42 49 0 R /Im37 44 0 R /Im82 89 0 R /Im70 77 0 R /Im35 42 0 R /Im83 90 0 R /Im38 45 0 R /Im36 43 0 R /Im43 50 0 R /Im37 44 0 R /Im48 55 0 R /Im48 55 0 R /Im38 45 0 R /Im52 59 0 R /Im80 87 0 R /Im44 51 0 R /Im72 79 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im78 85 0 R /Im382 409 0 R /Im69 76 0 R /Im40 47 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im42 49 0 R /Im45 52 0 R /Im72 79 0 R /Im82 89 0 R /Im35 42 0 R /Im38 45 0 R /Im36 43 0 R /Im39 46 0 R /Im37 44 0 R /Im42 49 0 R /Im82 89 0 R /Im35 42 0 R /Im47 54 0 R /Im35 42 0 R /Im38 45 0 R /Im44 51 0 R /Im76 83 0 R /Im35 42 0 R /Im47 54 0 R /Im82 89 0 R /Im50 57 0 R /Im37 44 0 R /Im47 54 0 R /Im47 54 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im70 77 0 R /Im52 59 0 R /Im73 80 0 R /Im35 42 0 R /Im38 45 0 R /Im339 360 0 R /Im45 52 0 R /Im48 55 0 R /Im48 55 0 R /Im35 42 0 R /Im38 45 0 R /Im82 89 0 R /Im52 59 0 R /Im45 52 0 R /Im42 49 0 R /Im47 54 0 R /Im36 43 0 R /Im71 78 0 R /Im52 59 0 R /Im38 45 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im42 49 0 R /Im45 52 0 R /Im72 79 0 R /Im82 89 0 R /Im35 42 0 R /Im38 45 0 R /Im52 59 0 R /Im71 78 0 R /Im42 49 0 R /Im52 59 0 R /Im47 54 0 R /Im35 42 0 R /Im36 43 0 R /Im339 360 0 R /Im37 44 0 R /Im39 46 0 R /Im43 50 0 R /Im44 51 0 R /Im76 83 0 R /Im35 42 0 R /Im39 46 0 R /Im52 59 0 R /Im42 49 0 R /Im83 90 0 R /Im77 84 0 R /Im45 52 0 R /Im38 45 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im71 78 0 R /Im52 59 0 R /Im38 45 0 R /Im35 42 0 R /Im37 44 0 R /Im39 46 0 R /Im40 47 0 R /Im47 54 0 R /Im35 42 0 R /Im48 55 0 R /Im43 50 0 R /Im40 47 0 R /Im37 44 0 R /Im42 49 0 R /Im47 54 0 R /Im37 44 0 R /Im48 55 0 R /Im48 55 0 R /Im70 77 0 R /Im50 57 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im44 51 0 R /Im47 54 0 R /Im35 42 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im43 50 0 R /Im50 57 0 R /Im383 410 0 R /Im335 356 0 R /Im346 367 0 R /Im384 411 0 R /Im385 412 0 R /Im203 212 0 R /Im335 356 0 R /Im346 367 0 R /Im209 218 0 R /Im386 413 0 R /Im346 367 0 R /Im279 298 0 R /Im282 301 0 R /Im342 363 0 R /Im345 366 0 R /Im386 413 0 R /Im284 303 0 R /Im335 356 0 R /Im78 85 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 400 0 R +>> +endobj +400 0 obj +<< +/Length 970 0 R +/Filter /FlateDecode +>> +stream +x¥}KÓìÈqÝ~~Å]JD½Z:dExãB\rcDÃÿÞîJ| à®S ÍÌÜt!ßyòÏ?ýË?ÿä~üí§?ÿ¿R^~,_Ëbÿ_¹.?\H_¡ø9§¯ë_ÿá§_ü÷?øøãÿôÓ¿¼=¾?>¿||</ÎÏ»%ë/(Úâ×zyÁúø&ÜO¯¬uÿp=@©ìÏ¿Q ÷_.¿<Nä2ü}wýýpá@Ü#z~í°¿xÀA·\>r dDêrOjÒ@YPW«»IÂõî¬êø~ABà½ÊB¿d èüz@°í÷]Õ8Àè½x%=Úó;á÷¸¥o^jìÃàË è$}AúZNv¬|- CÝeðí�B"C1Ü¡xx!JÁ4 +ÒHð�`Àç yüøÅ竲:iÇ^fÈWwÏú +eöe~U}áÀZ%0-KPµËpX4fÉð�ñ«.H+È:Yy,ovìûáBA¦! (AY´äØúxÀ¤9sz|ü¢¹jjÀ,i(H+Àv$T-&§jXµpRpE¿?àJª²¸ WÙÙä§ePüZÞ´TØE-¹l£['?àeÈ¢GÁ0dL¢¿Ç EÄÌÆ RúÈ +`C#F®é@Tí {2ìý¯¿x¬^_à@4°,çlziñz @éûGJ¾½æ!ýÆÃ÷O�vÐ Ôåçb±êDùZo�K¹è,ªßùÝúÊáùòHû¦Ê#qp5´¼àï0/%uÙà{GÆÛ( gYAX \ à÷¡3<³ðeË·òQàý:×(*¡ud¦%K'iC2¨;Cï;ÐÕ"nÔ{xKLM3cÀ®Î×&QYqÄk"HË3U$×hIjó=;ê$lG}B�É!aµÊPFfä*Cåy\ppñæT,)8iÁåµÜrE~ER¨»¢½:1lÆZr¿ÍÒ¬ä(jLs{§ÙaV9d²eðQàZ£¤ín:viAñ²¤¤À¡�2D2Û\~WáØh$$¤Æz4R¾'C٩Ѿ*¹ gª_hÈôÛ¢P²v�ÊÃT_Dx� áì¶&¬0"Õeh-+R"àJhn½ÔI¶äÞ1=A½ND}ND¯ùBJAé·Ö1@oct÷´8F-«B¾4ø·òÈÉ-&x3¤:Rß[Ê<Ë&ÂÅß³B±hE3{ëÉCfÌ.´häñüç"3ÉJ2rø}äÉÈót§] }?ô#¬se@ñ09@ÎÚX0å +¢À5bÁ^9�e䪻IÂN ÐZWZ8v:ÜøàÖ òÕVèI_âþ¤dÖnÑH@3k%=æÕM hßGj ä>8�$¯H¯,¤y\�Â)o¾ðÈÆ¤è® È`ªª²Î wO2tEºihÅ|úD` ÂYáïˮį7 ±_ïb¿w~ÌÕV$+tå Þݲ£[ë¦D¤w%ÍSõ¬¶2+áÍèKyq¥L:s+®ÉðÆæJèÙ ±«Ü¡ O«Cä�²!#¬Ðêõ½Õßò$[iE²¼4|U \Õì+}"Ö×ÍI^êQ00Ð8ñf§ªÜ[m½ÊCÑHÈÂýp"âPÖîiALwµ «ZÀ3jmÈPFµ*w,¢/£Ý;KZ¯'¸vï¤KëK~ÚÖ¼ñ<ïÞqIï{°¿NY¢½¼q<b¬¾ö/jØËÇðzÞKÏÇK^×ZW¬<âË׿ p±îÙ-õþWKÖ6ó_ß{_¼^¢³>Ì#eSì¬óðü@ëÊDh@üâÀÌ,Ibrém åÇ nVÝÞ®¢¸òî`ͤï5ãZ|ê=yhÁ`ëWVM(¢ÊÖ{Ò¼Ùé�útT¥VÞLéT0Çý>&6¼yÄA)�¹!+ /@ Ièªv�ZbZã-gäWä ÑI, 1úþí¾,X÷ÈA´4¯8ÍÐKk¯ycÚùá¡dåhÉújI±í+§/`åE´cQ` ý(!´$äÊFÚr@2<Ð~da}ÏQ!´úHWIy¢@+ 'j¬o]©å#ªZ$f²"#ÙÌtiÚ:?Þº©Îd^'ð÷%£IV9&JCýi2§±ÑUõåÑáp¨ QB¬W%ÕáªãA½<fx�¹<ÄÂñ¸¢^»Í¹29c½#ÌMÅÄýù:·3 :üþ@7÷Zr<ÜÍíì¦àt�¹ÛYDdÞÍí +ü}°¨:ÄB}(Å*ýß×s¢sÃd°sÙÃ07ZíH�àæGBÏË~Y5%¢¥dHh½ËHôÖ{$z@ëý*Q7nIøXLÕ¬�ÅüÉ Ðzîsi. õ B½qÁº »ZÌ:7¢¨DD ò]%(ª²"ï¬UDÀ©ÕxOÐK¤«JòkV}!É ´CAÚdp Æ»ÏÕLºÂm¬Fù�ÕY[?b !*XçFÐd%%!Z0{I aAB¦±=¯E3T²×dWÉS +ZHÞ§ + ÜÉC½UÉ9fYȦZpÞ;'ù2Ù;dHõ +iÄfH?¿©~ë{¾8{¾xÃü¸ã·¡Ñ¼:Á@o}I÷£±êXF"02Ö¡ï[÷ÊDÏv?ÊðñæµæÏÈ94¯µÒÄÒ#]æKvIì÷g9"÷HÝä/@Ö>@o{°êØzm¸õeCdÀÖxñ ÏÖ1=¾ Ô6(s¤ áÒ*çm«qÿ²Ó0$}4gER<2¬o}$Ø'$ð±Äp`¬éÁHq!!=(.,à÷¦BÞìÐ` ï¥{ÛÃÒÁ £WÖodæÊÚ§"²&Bü�ë=x³#S"PjÓ/ø+Z_ª~§à\}ɬˬ´BKª×V(ú ©+w¼)ÍÑÓSçÐèÅoÉÐ^èÉPþw^Å èLÝ .^pEË5|9ÃýW\ÏÎð§©¥þ Ìu o:2×±HR.<X_©õÃðRÃø- E¸¯Zý #á!&+ (L¤<ñðSîåLÞCª°^Öð0Eõꮽ¬,*Ü0E¥¨¿`½ùÕ«/ 4X£FÊÆuÕØø2^Çø6òÒÅø.È DUX·Äzñù½ÌÉSÜ7Ò r±ÈÈ<A%Ã{�Pì/PYþòµ×'¤ï(³Îú¡AÓ;ëcæ@ѱbgÏ+shЪIr¼Hr+UeÈ@Ý[@ñË%îðÆÄpѦû|E_?o^Iëg$(ÚBкù¶ç;×&,ÑG!z×·Dýx=¾·ô,¹µó>�Å÷ë ém@ãô +Ú¯Bðð0 +¼ÙP©¸æ¨®¥é×ç#³µßo@P§çå ®Á\ÏÊ _ü=´ñ®2Z>ÍBßÚáÒÃ9ba¼ÂmóÍlÏ¿yDaèù¥¾µ2¿ +ø¶Ö jq/Ëîi!_ÛT YnFÐ!}Ϊ (Ë-;´Í&Hàk72¤z©ª"%¸~�-²P±áÓèU!%Gé�øD>]ä~¼í +^:ÀµÖÔR¼°>¬ÍÄ·Z(DDBHR*iC¿3Î䦷¡ßÓ®&T2T#]2¶dºpO +V ¤N°"<^oÅ> øðÐLPDB:½d»� +ÈUô9®"¢ ÞaV1²w¦ø)áÀÔv($èHÐ +$×/ãØr4ï?cößAý§ûOÌÌÞÙ¼¥¶ÀëpÖê$Ýo/¸Ó<äãRØ?` +lO;àÐ-«¨s�ôÁ$ZjWôò½+qP'`ês!C@Àü-µ®�%®|¡@k"h¿§ayMË +ÌN*m½èË Iìú}©¨åE~¹g¼B¤S ]¡OS TôöÒaG8²#²#;Z[êm~?dzíñÇß@.¨fÉy=úòÆ(¨,0j_°VdÉºË ¤9{|wÉ^pX@b»¡lt{ÁÇn(¾r¾ ×ßÞ%!mONÓã²`_ +IjkAiÇñµ² +HÂ5# +z�Q }òò'¶v!õsb@/½Ùõvs¹½àãÍåÕ¶ÜÈ9 ËP3H|¦çõU¥Ú7ßÒkàp½ßÖB¨×ûGüIÄ+ëñ>>¯_ÙDKMÏë<¯+ü¯ô +?zQ®Wøüê5I¹ _Êé)�Ö80 ·üô©£4¥[~úÔÃfË=p1¿ô`K³fô`O0ó:§În]rº÷r¹ùÔÇ¿gî½¶ég`vøýë½åáÃ?õàÈC]\måê>ëE×[&t=~ûÚj ù3¿}u»LÞ¾p�èSItíÚÕ[îàÑàØB»<ıgygÃî¿ÅU`îÍäÆ#íÒn½@')¼visl8dIôÙM GæíÚ%â÷¿eÂÉn¤G##ÜQ¢ oÓ^5!âàvU£�-´Xhç0¼E¦¹hÃîe5"ésè�úÍÃ-Á#(´Øfà éÕ_Z¤·(G?ibQ]»>)¦ètiEÏËp(7mFö·kFØí/|¿D"´·CÁÞZÂY; Á÷[+Áàu+åI|?[LسCôú×Ýg¶üZS"ryéo*¡ÃÍúÒ=¿¡G&ãr/Q3ô�I<À55´ìÒ2£crzBZ!Èrfİç_ïÎÂÛ£´«§\çUèåµA¤Ã »~ùæÌ¦Ï`ôþÔ¤ õpØrÀ°@çþd§©Ý_¦ü9;¥ðývóæ`}\Ã<±@Cp%è8®¬èyyÍPwYÀV$«ý2x~dµßÖçÌyßøÞÝå�Ëî½ôôúÓ(Bú³y£Ôµ¡#ÌÖ>Cªðè(�ß-XwÎõ6GÄfóF³"`Ýá ¹q|ìZ:Âl0i"Ϫi"¯ 5ÙíeP¯qUhGu¼uÑdÄEѰtäKòùòæÌtzÁÀ³«è#ÌCöé/è0è Æ4=N +ïQqµE²d òàÊD6¶ÚºäÓ®cW9nLlCÔg& ·{Ié + ü)Bæ!ð÷ ¡M0 ½¹Ã9øuL!_§Å´4=^ò=%¹³«°È Þ¦#¢èñuHBû<ÀÄH6dÛýû¨<FèµêÄ7§{1]L«ø>úc}F W0@½Á<æ æÜj0?@_ÂàlHáøûò¶bZLwü}=·µþòf¯£ÆzÔ×=°XX}$pV=xÞØ°ú@QiH¨mÇë -¬P�à|9^DR¬ö6íu8À@rè<øýìköe¡m·ë³=¿JÏs7Ä81H(E5ä k¢ñ +2¥W!¸æVV!PõÍlÙBÝúÔp6?Þ·¥lþ` Ê´º`M!è ÷Åøóv»>A¸KÎöæ¶íté|ìãáëåÖ{¦(Mhr;Ó'W÷£ÈÅæ³äÍh}ÁâòNHG¯ïSÛNBÊÙçã.BìpÐZä;äåÈA9( U JYv9(Gl·H@ ¯yc>þ^T`ì(&ÕÛ¢í(M =²£mL1À/Û½/lµMÐÙçøí§æÅ"4#ób¶º¾³ì¦%ú ÌÝGö¼ÑÌÌZÙBBgMµÇV^±'äæ¶! ×9÷òÀá�ÓÓ6íÕ!�¿ûÏè÷õúLÛªtâ Ñîãß`½t{r:ÜK·#«uÀ6×{@Á×Z4ÒkÇ*µE§§çõ ÕÎ!Ò¯Þ-$ï<O;ëyàá:9-(·pïèZ!v÷nJ9;@ D�Zë¬|®"8Y[Oï8 f(zc| 2`½×(@3óªYr>þ.ò¶OXPþPÃAyoñ}ÏðÒ�ry±]þwì`oïýéy½/Ý;Mibë¡ë}é¹Â¾ô qWô¥Ç,Ec<³Gl¤/=Oì÷ññ}Îì×R^(¢±årþ¦ÈvÍ6h=m@=H¸Ì´ðZææÈxZ8Âí $³ÇfHoð0ÑûòC½å c�½÷ù^R´w§µVõÀÚz-)ãËá½p.f1'⥠U:È'%;'öÒ÷SBèLÏ!¤°f1¼Æ/5³àã&+¬6q$\§ßç:$äiÿNywÊ÷f +t{mãxƨ}Aw0áð VÜ8²�D¤:c §¨M8@fëã;@¿ð´>¾®³ÉUXçhè«GZo +Øzº$}eA\n²À*ý]0l½rS ïzV-+èQcó-¢3äÑÒÔ¼@S¬·~dçm2bØî~FJà�ë{p·Üù^é©1¯®´ øw®<ÉØ~[³y>à4ÐÌÒ!d9ërà}$Ãpï{%@ñïÕ®`ϯÒó n®H" �)ïhGe%JÐ�0 F�ÚW,Arb¸UH#fdÈ4!Éí{®,.¢+㸳ݩ8ÑðAT1+o L»,y¶~dFP ,.°öñêWYH> ¢p�ú"A_:P¿/~oSRfL×úå2ce>ìÔx1éI¶Æx7ãVØv3¦GL0µ%t[I÷p{¼`jKèÖxñE\ÞA¶ºØ¸¬s[B·Îç ÞG)à/Èw_°ª/ 4È^£ecÎ)´biÖ|9`Cê[B7è úPW¿¹0µ%tßwäB *¤-Ýz/ª×ïýìwûÌÜí£ ç¯Ö¨p à@ÿæçyûE¾G?êÐ8ZûÆQ�ôh[Ì 7à¤|t§àÖÏ|´CÈÖÀî`ÆzÄdz/àÝPuÖdyó¦ØQ3B4»^Ðïd×ËzK¹ª©1ìOÀô(ØÅgOxÿ²äý©Á@5- ívqz¢kûô¢)ï@KNºÒ}1aGùò +µH§`iÕH¶nª¥BC¢7 ¬¡ÍQr¦Ô¬«fºÐ]W@ÃEÇhûÃXÇ%´>¶Yg½)@¾à- ,[$LÊÀ z¢ïK:Ð]CÌj4¢Ò"QB<ØnaL¬ïfÌ zH¡!Ôýÿ£ÃnÿÇ)º/·þøH/;11~hYI\ë³ÑãóR8c/XÕ°ÙÐHP;JÀfcÊþüLWº-¾8>[hÎ,hÅüÚ¢×ü^B¥´ÕWÊ«L¶½`®LV^e²ç¦ÊdåUc:á@¬ö:Yåj/XÕ°õ^£eã56²2u±l/øX&cèÓÅ£$^¢*Fßö9uiÀû` 2ÊíhÛH@C³&ü�E;�µè¹|s s½y6Ìã)^ÙÑñùõÄ¢·BÏétÞ¼úöüEo÷&ÇçG,z©/þHæ,zu/SPâ¤E¯¯}PÏLYô¶è$ý Õ+òZî½`#_@¬Ù406n5{Ô¢;ßt9NZtoº{ýºkÃܪöô÷¯^üó^ÓûÚ$±~¹·�{ïn6Èârýë-"[mfKsOöèºÚ)US¦årÛ:û^¾ò7¯ûá({n¢eFG9p+è?lBÛêTÚ'¼¯`WIL|O>¾D9¿c®²=ðÅßTç%qäU{¥Ai@%qõ$R{ÐsºöIâ¶»÷$0RW¯¥C;AmpÄEZ=ض÷.ëÅTÁËöàü ¯ ÍÖÿià¯åBp7¹Æ «_xÙ2äDlÖ·.Eɬ³}¡Ýc¤;3sÝðİ1;ôrÒ>Y¤[ÎùHï*øUè ÊwØYZIØXDï|MØlqÙF¸j#åÂzkÒhÀ¼/ yqÉ÷hU£J¯qß¾ñ»=åE¨)ÕÂû)æ\¥¤³·f©rÑM[ âI¬.zê%ö(ß²gÛå[ölÛÓtK6¤(IX¨¾ãA¨~m³zHk=kRhãOsôw¿#,íâ@I-ÂJscÕ¶fi{~êft«F?®ãôQ×bcÍ·yÆ# ôÑ kéJݸxú}½þTêNÁ©QצxN ߺvµ<-CpàfÔpÏÐÛ R-NÚÐV-g/sELßúïg h+[HBÄ_°ª/`íP å"¦UTCä5ÒÒQl×RC4UÄÜî$ù¹"æ¶ëéå ü\Ó·ÖçêEÌå°^8PsÈùîVõVwéѲ±d´hQ[üd³.úÏELÚzke£.êýVË"yÚlí)¤`Ïk.6ì9Õ±¦Çª9$ÞrèT@8àË-lQå¹�¡ ²}WEs(ÉI$ hÌyAB¤w}â¸RÇ=k8²=Naà + +íÖY#Ð'hÛV5kFl,3¡Üíßdc^A²n +2ùvÝû, ýf8, ù6©pâa{Úëë²BÑ!íX0´×;Ö¬½`X lÙÔr/.6ШiÈHD ßó$±Ä_Æ:çh×6Uù¢à£ßµ:w1´ÄÐp\· Û¹Clv(v@ø2êfâÜh®3Wç0l[Õé÷õu¨ÄÎl2ÇèôCÃÃ>` ÄP6ººì|O+ä ¤¶¬ê|y©³²ýã7²jå¹ôÌORü±àÊæ«7Ì%ð ×ùjÞ¬E) `+nÕô7µô4vFÌã%9´Èo|3!${ÌPNÊc«9¹no ¢H¦ +¶º« +|®²Þ²F*ݵFô�¹ ¥¦$sÌA©Wätا +©þý5ßc@[WÕe�jþPßµ,àF˺$C]òCêJ Û<}sX$ð}Ö±`d]Vðy]Õéy½FõSMUHrf#3ÙÝK Sz:,Ý+aé^ K:'íÐ)}+,Ýa©JOËÐZ5¢qKPµdYÒ4§e|¦q`ÔÙîf ©á>ÍÒ(Û1ÒIáïë°K¥Fú®¥ ö !p/Pt]!ÃZï #%)DpdåZQ9@®¯CÓ¡0 °-Ó~²0tÆRyH#aè<úD[·µ=?ÃB<ø} ®Õ0�ÞæbO ÃgDÑh×ö3( WhjRE ®Ò(PÉ2RkHª'è9Å¢ÊIÌNÀ;¨ÅÊhr{AÃê¾ïËÊ·´Ð[JС Eë·cö$#ÛÀ¡ÓíÈÖÂq)kZp½´3̦ø:º4 ,»!èÜy}Þ5G7-ofKF¶®UÄk ²iZÖ$A6!à¢ï#Ðo$KLÓJ§2T¼»eÑÀÕÐ1Ð!CUÊ÷iãt$Rô ÈÓº'Ã|w¼ ~ ± vk9ïD¡¨ñ�!AA!%$)pU Ð,¢FU³CtÌÃ�|ÆWW`<¢Ñ*Õx)RÄ$§ª²0tßAí¢ÈÞk]XEÿí¦.¬bÞHYsĵðçÖÁÅH/ФYwbrvÍ@ÂÌ"¾%S©U,Cï8:ì-Ýî3HIoéÖñùfľñ䫽Ô-4_÷|é®_ð¼¼·)ã8}#z/Øn/(ñX ë¡>»ót³À[5THÖe§àÔ[ú"Dk&&Váè²M©dMh_¹s¯7 ¼µAj?Ü$ðÖÖòppÀ[\Q½á@wÿáJÞ=|B0[t½ZsÊ Ðúá\t"£ÛäæÉ)jÒÇ Êw6:¤It+xB D2|~ FâEw@Ì¡>Xع¹e^4�µLZóVe²!ô¾Ce ¢5æ#&HµÕcÏ íûþu `�»íÍ:S@ªB¬³ 8ô�rXG(øÖMÝ[µ·çÏÒ¥®ÉÀÃå«T)°~_>Ϋr f b +l¨@C ¯±u<üm¯wWiµrèã{Ø£²ü¹âNSlC³xàcM|×:2½ûjBür/¬ÚÐ,¤°"!øu;½ÅX·.QÉ Âw\6ìòú|+·Ifxù^d _§r<t¸èJÔ¸@uÁ0Ç\´±ä"Ym¥÷%OvD¥ÆË¾®íJ8=ÌÞ©êì +r9¢¶ÉÛ"v|æ#z!":Mã¬!gé@Ó°Ç|I*V:Õ2ÀJ cé ÂÒ°fÉØ-ºÀJð÷õW%ÓvnðLË$(ð¶<K9�MqCÖ8Ø[Ï-¼ Ó1ËÂXEjSBvtàþËgÈ}ZF2<°â}7C` Þ[o,jð¶õÚ]CØm 8p úB] GbR¶íUÐôf\OQäIRT4âI¾æ»Uõnà/èF Ðü.B +è"Q8¢¯¹"ØÆM,BeèdQ$ +ÒÙ�Î8Úf+áH¶>«1Ñ@®t4ð�rÁ|¯1tµ´È/È ´È/q2µç«fEx#JJVO9OÚAÔLÃð>µOh"L4 Pgë¾êëá@£!ÞF!æ4Td.CYHi7ÏnG»ái)+dB`}[ɳSleË«^åâíSwèñ56{|~`ÿ7Nñ±¸q¤�ÊkÉï·ñýß']-'8>¯ùr[u}þêH8T¦ k¡k#YiQ``×L+×8(@2}y\98кuAH y¥Ód&UiñÀåsó =ð9(¨KRçét´Ôx`XÊG¨Åzq¦¹"AÅ*² GÀµÒyE,ÐC¡'C´ äÍMUX}»öëòÏ{±ûJ@dpE¿ )ÉI MyTDÁt>§&e7¹gh^ßÖj÷-µÏëø ÁîäFð²Ûéø ÉÁ$r¹!Tö¢ *FSº´Y;¼HHvw/@3¨f ¡*z²ÞDïhyoE÷HJÒF$fµ8:- §Y¡£1¾ÔzE!T"3:`£G\³Ù*õù|omÕV«Î'$d`3 ¨vd�¢(¥0yu¢rSç½µÔAºµz+Î4BåöüÌÀ H×Úmáñù¦Ö¼5¤uöÙ0Ëfê$Ì^¨s@2®5X¨gÖ ®ÇBúûwmá@¡/"ÅV%?@ª²¿¶1#BI«$MhVd!ùñõÞXïÃ=6¾n{?@¼§DþÍÍÔÙmqèÙÉ-Á>C!Ô#âÒc3$wôþC|6ÁI®£[B¼ýõæEû�Þµ *Mtær<8èÌå*¹5 ô-@D¯Û¶Î#àË+P02P%ßj)D|µ±N ìØ}~~gþffZ·¦QÙö'aIòâª}�ÍÍ+²#ðÐ ´ÖuÐ iY<Ä*m\ê-oa@40zïê½pbÃO¸õ¤:¸c¿¯¯ Ó:º>#'óÊ Üñ/4ðÁd1¤åð7YøfÇfú`c:zgm òòÞY7,±øÏ¸??U(wV(?¾`dÅg#aîÀ¨ð ÁÈÏH0²âsA,Xñv +Nù2C_8}ÀÀOwO*"à@Vã¨Zïxq¢Ê·âÆBÒÍî ÈáÌÖ5pKö¶®´Ê#(ïµ òE¯Î ¨tÃÇ{V`¯-t¬�å@T9ðy¢¢«Dt ¡²uí(-peÄBPöÀ%{2ÀE$!¨Xf=' è²uÑÔ¬Es¦¼:´t˳(¸åì³z`Ð |Þ®Ùsôâ= MÖÁöG^'Á+ÞLÙç ÷Î y³ÜÊðTn +av·""Ûî9 A3!ÄVAîp`®z}§"hª(-,Zo`ÕÀ¸x)è¶^L&[ëÅ-°¡Yî^biËE§Ã¦M +bMN +¢õÓwXH2BWÑQge(YAU_À°%¡ g`D¨ã"ZçEÅE4hÉÐ¥.0#ëÜhf ByYu%Ý<@[Ç×?�I¼éñùõ%vÕ&¨ö©4/ÚæÏ$ÔñE+$Á�¾¨9Ã4/Ú°)O_ðEIyÂÆ*Ðí"©½´mûôÎ,q¤öÖÔÅs#Õª°Ö§I1HzxDV#à ì«ÔÜ^ßpª²½N¢ ï½È÷ì/è�³â{}bY±[~Ñ3D¼¾±ÞÓ° SªÖìs'È£5yÒ=/rHôý){óE×°¹E²äüyøûúÚ0°½#NöP¬ÿxØ¡zU¢kóR¿·_µPßEKHhs®]&2Ätĩܷ'zá�¯N xDÛ{/ú ªUjyy@sfôAÎl ¼ñ}.oÖWÕ@C)¡ _oT1D ½Õ ³¦0ª¦¯æÔ ¾TÎ-Ùd¢QÆTƾ±Õ}-ÀØ7{÷Fê ÃòÝqÊÏjýñ3ßí÷çgJýÛdÇScû /÷à�ÛC¬y#Îá~¸Àó#Ù}Ø.Z¢ô´¨Ô;QPÉöî¨Ô¬�ä\/P.J@SÛ7Ëß�z ç7gÚUbÙ¶Ý §ß×ñþ÷âøûëAguØ7ø¢YÞ[7z:L¯Íã·~g<´'bJP0e¼6á4 +p8M¤ÄºÙçJºÀj#I³¢ô}·ªYcÇO )EJ'$_LïLâÁh:À@rîä`àónÎîxë ìËë"Òçã==Ø.éA·÷¢OB2^dÊ(,¨ï±ößXu!N© m|ï*6¦å uÒ/:¾·=¿~¥ïñ8P^Xµ´CJÂd�RòEw/&ÝÊ·Ò}4¤ËBV]Ðd D Ù=$b^IkxÒ!i0âY`#*BÀ¤Æ´¬ua¹ï°] +²ÉÍðÖøûôvm8¨×¹÷ÞçêܶØóü½ßjý¡C&CL/¸ +! ä4!<}ÁÅÐdLCÓ³:}üQP ª]gÞzZ?FÕ�g«.<Å0t�pø¶Ö:B|[bâȶ(D!¤Éé²îÐINÙº(Ê�.Y5 +rଲ5?,ÒðáX0¨haýÃë6z2Àwj:ôû²%ô \Ts³Z´ZÎjQY$ +òôú}¯ª%%¬õ¦¬~ò�V^@J4 ûlHß{ckë::Ísä$ ÞÍ*Aû�ìÐ�$cf@¿xv)ñàyýÆpk¾¸º2PB;6} Ê×eû\G�|®SzçFPo¿)�PV¯1cj¢ÌFÐË�á[ãÅ-#ÙKïå¢Ó(Àç: #X¶ThdQÿN >Ö÷ø`¤þ!¨y%)nzObDl@"LI.¿Ï'Kg&K&¡8"i ¹>ÃÉÖsyiÏ^ñxV óK(je$¾Ä'SZÕ÷°_¬ñ£C�Úw +øý¾0Ð988´ÉÔi, õ²"\-/UDòå$!`yõêé?£ùñçWéyÛ¥óÓ{wËHú2@ÒR�¤Þ:{, òeÕ¡V[Av`daHÓzøîÈèä"7à>Iq%GM 9*h(²à_%à¢|ÛåKº'uÑd¶TdÉÌÖ�>``ÀlE0váé;Pj|°IáÈ`ÆBZÛ°"¯Etôm§ò¬0²ñcÑL9ÝøóNÁ) ³Äx ۺѱ|ãA}ãGÖ¼)åtò0¨Öa;J½'C$ØØâ©¾ }eȤØvf-!½w^Ú½³ïã¥øuïÝ÷ Þ^2XPäN'`A»<`å >³aH¦ßì%})$RduÞuE»_@Ú_Oð#ð÷å:kÌÈô/iØ`v<0aîÔõ�|Xóƺ??ljÇèÀ¦q0°Ó0¨Üà>â&QAMÝgðZ]°þ¡¥cÆ7@ès!¥Aþ¨ÍºzÇ%ÕDo#-»Ü«³Ü`E% +òm¤Q¢�èy=/ôdxç(Bô�Áß²Bû6Ó +ômqå£-e§ÀTV²GzvÏÆ[Ô[vÒú\$CJe¨xM8,iÊP÷d/ؤÄYÉÞyÒ·C7iÁ@qÂ.]ûjÌz_3é}q¢ÐÔÒ¡x +1oéz2äõwç½ ª/`³5^"RÞ;§Ù}m1Íý9ÅyÄõzkn¾âE=Ùm:h«w¾½ ë>í¶LÝúµAÅãcnQmjÏçÙ¨vÙ0Vên ÍD´MûÍíb¬Q¤ _ Úãózhhp 5ï:ôEâÏñgn,Þ ÅUúvïo ¡÷¥}ÀA£Ð×b²� ¯"lÛ'ÈÝÖO=MÀvgØ' ÞA360ëë¡ÒSS»±&`){¤¨H�F®×të�aA44m]oqÀpæûVOÆWvOÖÁan.lÔ8,»xÏØÝèòô¶&B +Êh!jàñ¡ù¬zRvá¦É_ãWnùP¼Ìp$8èô¨N%HD]Q8:t_¦ .Þ¡Uç8\¸On÷mÒxC±ÔÅ#O0/ª1½qôéU^ OºÆ(00éCÖ>7k4äÓÒZ<FÑøJj ®cÖô~@Fz80îÝ|²bä´° ìoû?_÷VN¨kü ß%ð}´Å¥ï|6¬× #Û [ï(3"À�|Î^Z¨sûváv¢ /m`}ÂlÍtaCè*ÆÚ*lÚkµ;Ò©Mô^À7fQ +ɵuk(>``'j½ ¼oŧ7ªéóÀ;]Ãæ ¬a³êDG9]LÍmÛ|NOxGsõbDhàÚµLK±Ý¹õ¤«'hIäfT»²ë=O«IÐÀUF¿?�ìjûs»²Û´øcrN9XátHÃìØ@^±Aõ¦¸S ôfZÒÔp ·´8,È +M\ùMS0@C<׺-°øzK MOBV!@ïéHFzºFzºñîUhOwHzº55ä`zAt欧û¦/Uó ½óiZe%`=Ýù!ÚÀø$Òæ%!ÊøÂߨV J@ç=yåLéØR}Ãã[EKHXa<!dfÖX8TgFX³óì:Âô|¤BtÏFÑò]Ð멱`Dß±ìíS Ém*àx��¯ó~_OÍÀtx~`!¨¡ñÍ�pdàÛ|yé _ðæfKÛì¼w¯ðÃúG200êêìÞ¸Ãn ©§¼@D! \³DAÞ¼â4!âMáEc»îØLÇ &²zzAy?Üyv¯ømÉäR³÷á =²$#4l[̺4ä%&¤G <±»<ÐÀ:ÀÀÂÄ éñH}"yE~ +BK¢x,(ȤÏ_ñµPËTÐ!ëàÕKVh°-{1md×õÚÂgµh/õÝ!['¹d%¢¨ÆdìE}kr iyÀÃHïbPF³c»÷ìbÊÃxOBÔ´r ©`MáU%Àç óZQD1@Á=*Ääkû¦½q¨ÄÚV_åxfAm5"û·$½Èµja1-3®«fùÔ}ÔH®¤·¨2®ç 0$¹Ök!gÂçÂ�T꺣¯÷½¨ãÎ9¬aºÆ GŤµÃÈìóÔÏñ0TcQõÀÎÜé=Á*ØItÄ^$ÊÐÎnlòtÄ^$ÊЮͫ_ Ï×u¾ [åÉn6¸úëµÝzBëãyÿñ9½÷ñ¡¬Òðóàüñȳ"I'ÙöyÈÈ/ðPig´ ÉÒóW bQ H²DAÚÔÂÏB(Mø<I 6 @Ê5ø®ñ¹u;@]óóNÆÞ05Þ*S!*ù¦UĽ#roB9ٽʴjB@ pEÐïLln¼kyJ>oX3ÒñêþÆ� )η K¨tõÚØºÅn®Ðê +ØÊäïcV#*ÖâùR]'( |Nè7P¿÷Vôÿ¼² Ï@V]Xg#R«.!-ï`)¢u:Pú~Uê +¨Hfâb$èÀ£òt}N)¼W¥jѰ úþ¢8Ù¦_¼Å¶¯w�Òî(½od3å; ÉÝ[uàN0ôÅútÒ$ØÞA&!í¬8>CÐÐÌÚ +LÇЧÌlçÀé�:¤]�ÜÏPp`l~ê|=@A,ß8Òg#©çEÂ%²½ÿâ!S%² TÏ´`* Ûö1Þ¡aêõ(@<Ò¢gì>()Þý ªQg@§ó<¯ 8ÍÐ+ªW-Ð'~½ù¢é r©j¶ï(HôËÇ¥È*VÀD°S·/DÉÐ/h;º_À«S +´]b]1ä$-åÙ=²¥K³¿oX÷Á¬"·êU)û-DZ U)'`UÊYÜ«] +2ÄÁ!õ!Ú1L:~AƦTÏníÒ-vJ µH�Rb©H +ôÖð=Á?p {@e4³ ~\M2½@ó²³péÉóm³ëéú×Þ÷ ´/|åEKȳsSò=;²Ct ÈÌíd(ÕYKjÍr\Î&LüÈ0ÿ» ½ñÖzH>ó¿çG®Î@&adôÿøÍÿ*<¥øøNo_È~Áà¬^[;`ð4o:^t¥Az @G5oÚa1Hû;ÝÄnõùü¾yX�LîöÃñÐÜõùëúxðàe÷rÚZnÝxG&¢Örü {DïÂÛ£ïà]³EOð×ìqayö¹./ 9ºoc*¡ÊÅ2wÔã®M»ß"zÔ$¸ÞðÙw@´BSè`%sUô¤ #ôä2mÎ_nÖ!µRÙn̺hϬÙ}ànë !ááªùt#R5FÅBÄ$Q¢ Í/$ÄR~i=«¨ä�>Þ¹¿ñ2˪J1±@>y`N&®ñ*EP_À¦44KÂa4%ÉH !H% ¶*ÇÀvNG5V«Õð2ÉMEZo*Ò¶ÜPR$FøÀôB«ö6^XEsDüÁ@ÏÓ6 F÷£¢ó뢨ÅdI$¢l`Ño´®Ð¾-% 7K25§Ë=S<ÞRPX*¹£ï! çü× +ðÜÖ©ï ³ñ) f| fÙVlòi2˶ÐÚ#ô½ $<z^ÇQÈÇwmتöúEûZl* <?ÆQ¿¥h°+îEÑ#kèÙ±(|Ô-bY" ØýcOijîÌÏÁ*m{TnIáU*¾a"[4rhþÐ÷P H¢&Å´Tôí_qáònµCQôl!m¨IËÎ 5],®³e.õŸ·b)Ðǰ)XæE!fQrZ'`E¼Èàn9I¢§|ÒDöl? R¥PÔ ZBÖ^ %íµä¾V)¬cÖk0îÚ6i¡ªag̸7³QE K;H +P5h¤TU))UU1$á]4gB `¢`o¸uö¼!Íp¤«<ÐÙáÜü|/°þf`¿×(fû ¬óV`¿#)Lö1j=ï¥(÷XTÚrÒì@·HÑ ñEþV¤�j.òq¡jßÇâP PÅVô¼Üæláû&BÏoΰ{~Ò`ãÓÇçåùqg"Ø9?¥ùÂýx}¢ ÀáùúáÃ?@,ú½³ þðûýHÎàáN}nE,鯱»Ç#õ¼d@y VßÖ~÷ #q/¥¯Ö Ý!ÒaîA¥7 ë-îYÁ©Cͨ<òµ/íQ^ÀGDÂ0ÐÃn*AF2<ç2)¶Åx_Îèp*¡é}4¶$rÒì«Tz®¤»J¥ÃÚ¾,¢/Å÷%{uÃMÂJí«PN¾HAl�ÁC +ªTQHb/�Q³ÑXèÐ÷ËEÞ`ðÿýXÀp`+&´¥6 ʢ絤Ä#6@¯Q5+@Q&K}UêJtmhÌoÚ õÛ¾ ¾ñzõ¢²UµE£�ßC¢I1ß4ÖZµRÓ´Ö¡¤n`#Sô0«Óm¼fGxûÒ j!3¹Þ¿aV¦÷¯¤pË +lÝ÷t 'Ñw +#]OFt ß:@ +Ö½±ô�XïEKêI$½2²Ì!©ìÍKI lÚìö2 å¬hÚgD9H¨ DâJ=Ù:'Àó2$Ô>âÑ}TI¨®AAö¢½8¨¯\"x~hMm³£K·~TIÜA(²+, t~)"n`ÝÀÛ7'<ä>okæ~7CWÄú&²ÈBRfÄôÝË$ƨ ô;ÐÝ౸ñ ¯-¯7Õ¸jLa^í¶sÄÄÚK)æÐéBäG�2¨ l¶º½À¹\Û¡T pO÷ÒB÷�lÿ LðÉ +M ùÔtÏí]³ÈI¦XiC'©d +2£#V`í±j±M©uµU&²Ó¤S#ø +v|Á�þIHÇ\Ó*6Ø ¡ÿàµ`÷LÑHwýEWHßL@IÁED@'·ÒÂsîü!SsçûhÉúÖÖ¶ñÐz¨ÃÔÜyÌr@D>Á.Í{@¤ãð sçÆsîüÈ óܹéÅÅxüÓ}=x´ýá÷oøuûóë{ýáß?:-ÆyüÐóç7Äïó,Q¹¨ÁFh× +dÛ¦Íïdi)Û³ï¡õmÀÇË}ç&¶$u{þM;?W¹ÛùÛ`{ÆßwMÔùÉï· ÿûçïo(ðûAmü~ѾÿjÛï×W7üñ÷ÈÏôk¿ßЦO¿`®ñk(¥ï/ÂêDÚLÊÖ=â¾é'÷Ú÷·yñÞ÷_÷H½¾ß/Ð? ¡Í´ þU°ÕÓïa«$ú1ù1tÏü`_«G ÿüúù*Ñùñ'ý?ý¾K¾/@~£¬ÿ>QÿØóÐ~\ì'â¿óßkCNöCÝx~Bú{ý~þûÿÊï7ùÉýcöÛç,ÙoYüÂaÙ¶ü¼}¿H?õïÍþÎø/kµßÛ(f¿Èï¯Nú}jVôýögEúügß ý½±Ì éÿÕ1ù Ðþêþ;8è¿A9<ß:Múòí¯A¢ÎÚß U³¿}ÿ�ÿ`L6DTEý3@Ô¾ý#çOÚùYü`ü«ÇÚ_]CÖâ@½úR@Bÿoùí·àÚùÅøÅO¥ÚPä èeû ñùÏmüGñQÒç¶VȵÑå[öÃXgíuØÌÚë°éòïÍ~âÓ+ÍÆ/ëø%Fí÷YüwûÝËÿÉùS¸wþ¤ÕýÆoàN=é'ÛßµøÅ± ó£üÛoëêÙof;g÷É_]ÂÝ;¿!³4ý=<¯ç{ýêð¼¿[oÎéûÁ"nÌÿ½~ux^÷¿ÛòXð¼ì7½½ÒOßý[³}þÌÿ¸Õúëþg9;ËÿÚ x~4ÿjã»§ßókÌ¿gþîü!ûí×^:þ¾pm,Hÿ¯ù;ão`=þÑü=¼Ú´¿ê¯¬~U%ù].ökimAá«\~¿\~?_îñÿbôà ÈOò'çÿùÚÓ?úû9J¿Où×p¥züãõ'·??WJüòúÓrËXKPÏðß/"ýþCû«Ç?~ ü¦$üóþa«_½ôǽÝ?$ ÿ$ÿ]øû$ÿ]d?iþùf¿?çøþ%8û}÷ñþ Ö¼¿%?3+?¶Ò§G¦¿¡-)ìë/©@ûço!é÷yýJJ¿ý¿N¿tóüIü@ÿâòýy^_õ7¨rüm8ýøûì?¿ÇÄÀïëô+ZüGù_ó-ÿ·ôÞñÛiÀ&´±«ÿ¿Ö¿iþ¿h¿Oë?Ë=ûÛ¨ì8ýc1Ëàü×úc·~Ö(ýDûÏüw|Äï/ÿ¿â÷óUê�zÀÔ�Ð`) D�ÁpYd�+-÷ ÕØ 90Ô@B¨µãN+PÖnëÀ:´áÔ©Ö) ¼¨}}Þµ=ÛÛØ[&ÿÞ�ÝÇïgô·HÇß×ÿ~_¾�1àéß·� óû¼,îÏÏ8à¦7}ó®¬9°ãù彬#?´�ÙÀ.NÏK¨Ïà&ß/ðüzLÃüÙº?]`°n/À=ìàç:ÖÀåü!ÿý§÷ɯ�o¸;öco ëÈ?ýý�åG¶ßÞü~T~ÌÿwäÒ?!þéñmm:=/Ç/{YW~X.Hö�d?)ýÊMúôýWúÑtMëÙO*?5ßò_ÿþ~¿@Åþ5!û£[¤óÓÓü-@x/Ñþ¾]`tÐ?[úâMúÙ�Â,ýâ*Ê/i Kþºý8þÔ²ªÿ¤Ú¿²üÏ@W_93Òÿ*ǯ³&¿D~V(¿ztEù^@Þ +PsüÅßÜÿèó»ýëŤ~à²Hÿ:¤¿þÕ6äG.ÀF_¥ø]Àìõ££þÈúf¿iý"jù3ýþí^¿öw ~ñ~²ì<¦V�<Ò_¸Àm;TkàI²«íNÐyOLÐ ;."`× òNÏ˳Îïó"¾_î µÒÇß¿V°iYE¿¯Ü ZÒ +~ÿ*?~VÀèòMÀ½Ðãç×à>7Éï üè ûÖ©È¢ü >s�üÛæä¿ý~[tß 6$ÿ0ÉIòÃ'È¢¿Üî:ÿH_þ é³G*?éïU~hÏ&xô{>élmÍé¸þ´ó7t²þ÷³çÑïë¶p¹/?$[²¨ÿ¸�»OÅú±�Ë;`ä?ÿf\È~\(v³Mþ~ºÀ¡ h¿º®ÿ9ÿþúzKt/ýËL!#4@×�¶@Y�¶mÈ öÎó|ËÝcÝ`u@+ �rD + ñ¯¢ßGü# ÖÉ�²}¿h�y}? + XJüC-($[4úó>JòC3ж +îD?ùuoLlÿÒl²wpL& ä3ìôda¨°Q ¨üd$¿ hùmß_ª¤?4µ¢°vnPÈño[:5BÔ Ãó#D ýþH ç �üåÀ7§NZ@W�ãó`mk¡høzL $g@®¢óëÐ>ÃÔ�ö|è×ÅÐV�k¡(Ò1Öyxþz @[0¬þ!À[0°Ø[(ò£gàÁί·àl»ýá-éüï-ù§òýFZ(hÀ±Ü[(º`%Ä?=óVí|?o¡üðÍ~Pù+éýÞg:öÎPaû+ ºZÃßrÀ~-"ýH¹ýëÇ^AZÑÑ_Úï~ÿiç½hÿIg +þñM~)ÿ¬¢Ã?þ|§¨ø§cðí3<ßÿTä3<ý§üÏPþô +a tü7ÕÃÕ·øsj¥jöÒ¿ÎÒß + (þÖíÁ)÷íIÀÿ]Éøe/ tèÇgp(?¬#Iú·^*ÀkÁñOÞMþÿíÿ/HÙ6DÓ[lð#p+Á´Ãñ(¬|½r¡±2½ 0¬ãÐ *裧OpîEX¿R{Ã÷ü¢SÑ Àb¤b©È¿áa_d<~´*èµH¥r¡vnò ¹""\¿!_Ù×WmÕ ×uÀ;&´/ÂÜú§o°òÞµÁ£zØ9xmÂ{^Dlêèë{8Fj®ùÀó)¾>a»Y~£¶«È<^ðym'8Òà¢NL]±ØeÖãÊ +øÞó_ùÓ/þÉýp?~ùo?=ìÖãÁOxü×üò~}¼.=2©_þæÇßý?ýøýï~ýÛ?þõ·ÿðãÿñ~üç_þôÿûëßþæÇÿú?þù_þÝïÿãW÷ë_ýýúúñ¯¿ûí¿ÿö/?ÿø/?þãçÿó~ñ¿ýío_?ÿÇïþúõÇßþü_¹ÿí/ÿóÿçÿù×í¹¯ÿøù¿ÿû¿üß?ý·_>N÷ÿÛß +endstream +endobj +401 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 971 0 R +/Name /Im374 +/Width 50 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`àÿÿÿüBÄò?@ ¾Lý1æ`ýâ?�¡ +å);ª ªP?P¨dR¨¦T`³Õ-¨î:ê¨Ç Þz°�4° A HH°U®u�KC. +endstream +endobj +402 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 972 0 R +/Name /Im375 +/Width 25 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xU1 +0C_qèè,âäêè z%G*½÷ð(=£XSÄá~~"d1GËJÏ ôùèB98Á`&z!ËÉñþS6uªOtÂûKYÙIN6mÜA{E³lõf #v +endstream +endobj +403 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 973 0 R +/Name /Im376 +/Width 8 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³¨ù÷ÿ½5333EPU�c +endstream +endobj +404 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 974 0 R +/Name /Im377 +/Width 17 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcH``|ÀÀÿáÿ@lJPýÿ ©-�ä± +endstream +endobj +405 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 975 0 R +/Name /Im378 +/Width 42 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãgüÁþÁ¾ýüãsò5É7ølà?�$ð7Ø00àgì räÜ +Æ`òa|VñÁ¡AK¨v¢1�± +endstream +endobj +406 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 976 0 R +/Name /Im379 +/Width 13 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc(`ø0 þùððæì ÈÏÀÏ!'rüØxekç�-áJ +endstream +endobj +407 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 977 0 R +/Name /Im380 +/Width 18 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}̽ 0ÐO¦V +BÖ\ÉüÉZvÅ,-hî®^ýà¢y£ðY`³;Ä. V¨u3«.æTdþ¿7,Y¤¤jPêA-ÖÓÏfÜÎ2ê +endstream +endobj +408 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 978 0 R +/Name /Im381 +/Width 9 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³a¨cø ÿêl¡¹AÁ¡!S¼j³(�¬ +endstream +endobj +409 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 979 0 R +/Name /Im382 +/Width 24 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-˱ �Ñ#´&´Â ,`ǰ@gqFaÊ_ü!1yÅ5GÇöâlõ4D4.(Èd¶âé³ipAi']$ýEá9Éls}^ëv¿á-¹"' +endstream +endobj +410 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 980 0 R +/Name /Im383 +/Width 77 +/Height 83 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÓ±mÃ0 á'°`ÉÖWÐæ©Ü¸ôîm£p)ióîÅä�Âêñ£ ÈX4ä¶Y¹¢¯(¢ ,HíY^¿5I ß·Y±øeT¨î6Ê×IF9ÖÔ ed3'$³qëeÈÕ7_¬{l]ä@D^Ë8l"¿sø'×|[Wà~F¤»g}²xfH¸ Âÿ¸¾'vpüFÌ$Î$N$nÑpÕþ ¡¹èûôéT¢O¬I}²§ý§òê_X^êãpÉÇ;Èc¬i +endstream +endobj +411 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 981 0 R +/Name /Im384 +/Width 39 +/Height 15 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿÿá)à?ª^uþÉú�cQ +endstream +endobj +412 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 982 0 R +/Name /Im385 +/Width 24 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÏÀüÿ�{ã~r66@TÁ G?äAÅ5vF 4á?Rí9�!; +endstream +endobj +413 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 983 0 R +/Name /Im386 +/Width 37 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÎ1 +1EÑR¤åÁÎh¥KJic¸¿·@±ÓÞPBAf&X,¢¶<guȳÈVw+uB²uD22¢¼}fCÿ°?ê;\;29B£äiJó´¥:´èu ƨÜúï§cz?mT:õ +endstream +endobj +414 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F3 584 0 R /F1 580 0 R >> /XObject << /Im312 331 0 R /Im296 315 0 R /Im313 332 0 R /Im68 75 0 R /Im387 416 0 R /Im68 75 0 R /Im84 91 0 R /Im37 44 0 R /Im36 43 0 R /Im43 50 0 R /Im36 43 0 R /Im48 55 0 R /Im37 44 0 R /Im38 45 0 R /Im36 43 0 R /Im35 42 0 R /Im47 54 0 R /Im37 44 0 R /Im43 50 0 R /Im37 44 0 R /Im37 44 0 R /Im39 46 0 R /Im39 46 0 R /Im35 42 0 R /Im36 43 0 R /Im36 43 0 R /Im78 85 0 R /Im360 385 0 R /Im37 44 0 R /Im43 50 0 R /Im37 44 0 R /Im38 45 0 R /Im35 42 0 R /Im77 84 0 R /Im37 44 0 R /Im38 45 0 R /Im47 54 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im37 44 0 R /Im39 46 0 R /Im52 59 0 R /Im42 49 0 R /Im83 90 0 R /Im77 84 0 R /Im45 52 0 R /Im38 45 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im38 45 0 R /Im35 42 0 R /Im48 55 0 R /Im38 45 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im42 49 0 R /Im43 50 0 R /Im35 42 0 R /Im47 54 0 R /Im82 89 0 R /Im50 57 0 R /Im43 50 0 R /Im73 80 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im47 54 0 R /Im44 51 0 R /Im39 46 0 R /Im35 42 0 R /Im36 43 0 R /Im341 362 0 R /Im218 227 0 R /Im37 44 0 R /Im42 49 0 R /Im47 54 0 R /Im341 362 0 R /Im361 386 0 R /Im39 46 0 R /Im37 44 0 R /Im42 49 0 R /Im82 89 0 R /Im35 42 0 R /Im37 44 0 R /Im39 46 0 R /Im39 46 0 R /Im35 42 0 R /Im36 43 0 R /Im36 43 0 R /Im35 42 0 R /Im47 54 0 R /Im388 417 0 R /Im45 52 0 R /Im44 51 0 R /Im39 46 0 R /Im74 81 0 R /Im70 77 0 R /Im50 57 0 R /Im44 51 0 R /Im42 49 0 R /Im43 50 0 R /Im73 80 0 R /Im52 59 0 R /Im36 43 0 R /Im43 50 0 R /Im35 42 0 R /Im48 55 0 R /Im36 43 0 R /Im78 85 0 R /Im21 28 0 R /Im105 112 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im113 120 0 R /Im156 165 0 R /Im21 28 0 R /Im29 36 0 R /Im105 112 0 R /Im106 113 0 R /Im120 127 0 R /Im24 31 0 R /Im101 108 0 R /Im30 37 0 R /Im144 151 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im26 33 0 R /Im30 37 0 R /Im30 37 0 R /Im112 119 0 R /Im25 32 0 R /Im111 118 0 R /Im141 148 0 R /Im28 35 0 R /Im116 123 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im106 113 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im28 35 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im21 28 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im115 122 0 R /Im211 220 0 R /Im166 175 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im30 37 0 R /Im144 151 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im120 127 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im29 36 0 R /Im25 32 0 R /Im107 114 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im211 220 0 R /Im217 226 0 R /Im120 127 0 R /Im21 28 0 R /Im105 112 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im24 31 0 R /Im22 29 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im23 30 0 R /Im141 148 0 R /Im106 113 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im113 120 0 R /Im156 165 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im110 117 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im107 114 0 R /Im106 113 0 R /Im30 37 0 R /Im117 124 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im29 36 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im120 127 0 R /Im136 143 0 R /Im137 144 0 R /Im28 35 0 R /Im101 108 0 R /Im21 28 0 R /Im142 149 0 R /Im28 35 0 R /Im25 32 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im23 30 0 R /Im141 148 0 R /Im106 113 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im29 36 0 R /Im21 28 0 R /Im25 32 0 R /Im105 112 0 R /Im23 30 0 R /Im24 31 0 R /Im108 115 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im117 124 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im110 117 0 R /Im101 108 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im115 122 0 R /Im106 113 0 R /Im28 35 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im105 112 0 R /Im120 127 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im138 145 0 R /Im137 144 0 R /Im21 28 0 R /Im101 108 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im115 122 0 R /Im106 113 0 R /Im28 35 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im105 112 0 R /Im107 114 0 R /Im28 35 0 R /Im105 112 0 R /Im106 113 0 R /Im117 124 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im106 113 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im143 150 0 R /Im29 36 0 R /Im105 112 0 R /Im106 113 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im107 114 0 R /Im25 32 0 R /Im106 113 0 R /Im117 124 0 R /Im102 109 0 R /Im22 29 0 R /Im23 30 0 R /Im30 37 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im28 35 0 R /Im21 28 0 R /Im106 113 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im30 37 0 R /Im144 151 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im24 31 0 R /Im105 112 0 R /Im28 35 0 R /Im140 147 0 R /Im22 29 0 R /Im21 28 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im26 33 0 R /Im102 109 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im23 30 0 R /Im141 148 0 R /Im106 113 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im116 123 0 R /Im29 36 0 R /Im24 31 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im25 32 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im118 125 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im110 117 0 R /Im29 36 0 R /Im25 32 0 R /Im25 32 0 R /Im111 118 0 R /Im102 109 0 R /Im24 31 0 R /Im26 33 0 R /Im110 117 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im107 114 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im22 29 0 R /Im30 37 0 R /Im26 33 0 R /Im26 33 0 R /Im21 28 0 R /Im105 112 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im141 148 0 R /Im109 116 0 R /Im29 36 0 R /Im25 32 0 R /Im25 32 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im23 30 0 R /Im141 148 0 R /Im106 113 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im105 112 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im111 118 0 R /Im28 35 0 R /Im22 29 0 R /Im25 32 0 R /Im111 118 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im30 37 0 R /Im101 108 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im28 35 0 R /Im26 33 0 R /Im106 113 0 R /Im105 112 0 R /Im173 182 0 R /Im117 124 0 R /Im25 32 0 R /Im110 117 0 R /Im21 28 0 R /Im101 108 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im30 37 0 R /Im105 112 0 R /Im106 113 0 R /Im109 116 0 R /Im29 36 0 R /Im25 32 0 R /Im142 149 0 R /Im28 35 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im211 220 0 R /Im166 175 0 R /Im141 148 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im25 32 0 R /Im105 112 0 R /Im120 127 0 R /Im30 37 0 R /Im144 151 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im110 117 0 R /Im101 108 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im21 28 0 R /Im101 108 0 R /Im143 150 0 R /Im29 36 0 R /Im105 112 0 R /Im106 113 0 R /Im141 148 0 R /Im143 150 0 R /Im106 113 0 R /Im107 114 0 R /Im24 31 0 R /Im101 108 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im22 29 0 R /Im30 37 0 R /Im26 33 0 R /Im26 33 0 R /Im21 28 0 R /Im105 112 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im22 29 0 R /Im22 29 0 R /Im28 35 0 R /Im29 36 0 R /Im105 112 0 R /Im118 125 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im107 114 0 R /Im116 123 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im30 37 0 R /Im30 37 0 R /Im22 29 0 R /Im22 29 0 R /Im28 35 0 R /Im116 123 0 R /Im102 109 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im23 30 0 R /Im141 148 0 R /Im106 113 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im29 36 0 R /Im102 109 0 R /Im30 37 0 R /Im144 151 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im176 185 0 R /Im211 220 0 R /Im166 175 0 R /Im137 144 0 R /Im227 238 0 R /Im211 220 0 R /Im217 226 0 R /Im120 127 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im211 220 0 R /Im166 175 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im29 36 0 R /Im21 28 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im26 33 0 R /Im24 31 0 R /Im21 28 0 R /Im107 114 0 R /Im25 32 0 R /Im111 118 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im24 31 0 R /Im29 36 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im30 37 0 R /Im144 151 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im176 185 0 R /Im211 220 0 R /Im166 175 0 R /Im137 144 0 R /Im21 28 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im29 36 0 R /Im25 32 0 R /Im107 114 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im24 31 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im23 30 0 R /Im141 148 0 R /Im106 113 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im145 152 0 R /Im25 32 0 R /Im107 114 0 R /Im28 35 0 R /Im105 112 0 R /Im106 113 0 R /Im117 124 0 R /Im25 32 0 R /Im110 117 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im28 35 0 R /Im107 114 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im24 31 0 R /Im115 122 0 R /Im21 28 0 R /Im107 114 0 R /Im24 31 0 R /Im26 33 0 R /Im30 37 0 R /Im144 151 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im107 114 0 R /Im24 31 0 R /Im115 122 0 R /Im21 28 0 R /Im107 114 0 R /Im24 31 0 R /Im26 33 0 R /Im389 418 0 R /Im128 135 0 R /Im132 139 0 R /Im132 139 0 R /Im127 134 0 R /Im390 419 0 R /Im124 131 0 R /Im121 128 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im211 220 0 R /Im217 226 0 R /Im120 127 0 R /Im21 28 0 R /Im101 108 0 R /Im30 37 0 R /Im29 36 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im24 31 0 R /Im108 115 0 R /Im30 37 0 R /Im21 28 0 R /Im111 118 0 R /Im24 31 0 R /Im22 29 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im105 112 0 R /Im117 124 0 R /Im25 32 0 R /Im102 109 0 R /Im30 37 0 R /Im101 108 0 R /Im111 118 0 R /Im106 113 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im111 118 0 R /Im113 120 0 R /Im103 110 0 R /Im105 112 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im118 125 0 R /Im24 31 0 R /Im102 109 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im25 32 0 R /Im25 32 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im138 145 0 R /Im137 144 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im24 31 0 R /Im111 118 0 R /Im111 118 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im26 33 0 R /Im30 37 0 R /Im22 29 0 R /Im112 119 0 R /Im211 220 0 R /Im166 175 0 R /Im106 113 0 R /Im30 37 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im29 36 0 R /Im21 28 0 R /Im25 32 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im111 118 0 R /Im106 113 0 R /Im28 35 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im105 112 0 R /Im176 185 0 R /Im211 220 0 R /Im166 175 0 R /Im120 127 0 R /Im211 220 0 R /Im217 226 0 R /Im137 144 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im186 195 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im106 113 0 R /Im28 35 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im105 112 0 R /Im176 185 0 R /Im211 220 0 R /Im166 175 0 R /Im120 127 0 R /Im211 220 0 R /Im217 226 0 R /Im137 144 0 R /Im120 127 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im26 33 0 R /Im30 37 0 R /Im22 29 0 R /Im112 119 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im24 31 0 R /Im22 29 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im29 36 0 R /Im102 109 0 R /Im111 118 0 R /Im30 37 0 R /Im25 32 0 R /Im105 112 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im22 29 0 R /Im23 30 0 R /Im211 220 0 R /Im166 175 0 R /Im113 120 0 R /Im167 176 0 R /Im30 37 0 R /Im22 29 0 R /Im112 119 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im29 36 0 R /Im21 28 0 R /Im25 32 0 R /Im105 112 0 R /Im107 114 0 R /Im28 35 0 R /Im105 112 0 R /Im106 113 0 R /Im117 124 0 R /Im25 32 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im145 152 0 R /Im25 32 0 R /Im111 118 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im144 151 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im109 116 0 R /Im29 36 0 R /Im30 37 0 R /Im107 114 0 R /Im24 31 0 R /Im101 108 0 R /Im102 109 0 R /Im389 418 0 R /Im128 135 0 R /Im132 139 0 R /Im132 139 0 R /Im127 134 0 R /Im390 419 0 R /Im124 131 0 R /Im121 128 0 R /Im211 220 0 R /Im166 175 0 R /Im176 185 0 R /Im25 32 0 R /Im113 120 0 R /Im110 117 0 R /Im113 120 0 R /Im215 224 0 R /Im136 143 0 R /Im137 144 0 R /Im113 120 0 R /Im156 165 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im102 109 0 R /Im120 127 0 R /Im30 37 0 R /Im144 151 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im211 220 0 R /Im166 175 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im143 150 0 R /Im29 36 0 R /Im105 112 0 R /Im106 113 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im24 31 0 R /Im101 108 0 R /Im102 109 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im115 122 0 R /Im106 113 0 R /Im28 35 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im120 127 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im109 116 0 R /Im25 32 0 R /Im26 33 0 R /Im102 109 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im106 113 0 R /Im30 37 0 R /Im193 202 0 R /Im120 127 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im22 29 0 R /Im112 119 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im23 30 0 R /Im141 148 0 R /Im106 113 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im144 151 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im109 116 0 R /Im29 36 0 R /Im30 37 0 R /Im107 114 0 R /Im106 113 0 R /Im23 30 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im211 220 0 R /Im166 175 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im25 32 0 R /Im105 112 0 R /Im113 120 0 R /Im330 351 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im105 112 0 R /Im107 114 0 R /Im24 31 0 R /Im102 109 0 R /Im30 37 0 R /Im28 35 0 R /Im106 113 0 R /Im116 123 0 R /Im25 32 0 R /Im29 36 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im135 142 0 R /Im25 32 0 R /Im101 108 0 R /Im268 287 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im111 118 0 R /Im28 35 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im24 31 0 R /Im107 114 0 R /Im28 35 0 R /Im22 29 0 R /Im23 30 0 R /Im109 116 0 R /Im24 31 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im109 116 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im234 245 0 R /Im30 37 0 R /Im118 125 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im120 127 0 R /Im116 123 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im105 112 0 R /Im105 112 0 R /Im28 35 0 R /Im144 151 0 R /Im25 32 0 R /Im29 36 0 R /Im109 116 0 R /Im29 36 0 R /Im30 37 0 R /Im107 114 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im21 28 0 R /Im29 36 0 R /Im26 33 0 R /Im21 28 0 R /Im107 114 0 R /Im21 28 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im116 123 0 R /Im25 32 0 R /Im117 124 0 R /Im25 32 0 R /Im22 29 0 R /Im24 31 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im116 123 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im105 112 0 R /Im107 114 0 R /Im24 31 0 R /Im102 109 0 R /Im107 114 0 R /Im21 28 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im24 31 0 R /Im26 33 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im145 152 0 R /Im24 31 0 R /Im114 121 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im30 37 0 R /Im117 124 0 R /Im105 112 0 R /Im25 32 0 R /Im29 36 0 R /Im108 115 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im28 35 0 R /Im110 117 0 R /Im110 117 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im105 112 0 R /Im117 124 0 R /Im28 35 0 R /Im21 28 0 R /Im26 33 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im23 30 0 R /Im21 28 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im102 109 0 R /Im30 37 0 R /Im109 116 0 R /Im116 123 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im30 37 0 R /Im29 36 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im142 149 0 R /Im28 35 0 R /Im21 28 0 R /Im22 29 0 R /Im112 119 0 R /Im26 33 0 R /Im102 109 0 R /Im22 29 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im117 124 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im22 29 0 R /Im21 28 0 R /Im143 150 0 R /Im22 29 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im24 31 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im105 112 0 R /Im113 120 0 R /Im139 146 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im24 31 0 R /Im22 29 0 R /Im23 30 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 415 0 R +>> +endobj +415 0 obj +<< +/Length 984 0 R +/Filter /FlateDecode +>> +stream +x¥}KÏ-·uåüþohñQñÍÊ0Hô¤Àè&-GJ$¿¤Ñÿ¾«Î!ë«ÇZ¬É½WGÅ*rs¿¹÷âß¾üÇÇß>Â>²·?}LÏ¿\þ?×ß׿¿ÿø?þò/_¿|ó[÷a>¾þéKzøùùÐò÷üÇ×¾x÷pnù)>æà>¾þñãW?üúãë Ï,ÿ0õá8=æåõfZÞ0ÍϧÍóéûúÅ|üãÌÃXÿxã¹m¿ÄøðÙ}Ø<?O×ÿ.#þðùK¶çýçÎÿ½øþãw_¬[¦üGþ1¥*6¹GòyûåÇýS˪}0û§Ê/§}d·èõÃákv!Åî¡òËá)c!§ýSåÃSÓòwû§Ê/û§Â<-t»§ê/§ÒüHvO_O ¼ìÂõÃS>=ò~ZåÃ3.=¬ÛÓ¡þrxÊÆG4yÿTùåð >X~y>5Yx3¤ôâó]Û/æBy×l>Ú'Úyô²/õçSËûg¿Y÷übÎ<§íçSÙ=bX)v~~1§Çüüb}êó÷0éEå'§Î¯§¦°ÒÆøÖn¿<Z8aý|»±æùTx¸{èó»!ɰl¾9!O|ãÂëoá_Ü2WbÙyùÎÂdõפ^iÿÙüd12Û/§¢ÄÙï*¿ÚDs{j'ÛShnOíDs{ªæöЧhnÏl¢¹=´Íí©M4·§v¢¹=µæöÔN4·mÝD³>µÍÏͯ¢¹=µÍí©¸¨Ái¿ÄúËá©M·§v¼=Ux{èS·g6ÞÚ ðöÔ&ÀÛS;ÞÚx{j'ÀÛSÓÂIé@òËþ)¿pg +{jÕ_Oe¿põZõ§¿ëÞ,}ªÉ2°áO Îk}j2v÷Ôç3Ù<ÏÛÔÖnÇ:©»ªö +±«téð|jÙ¿Ùìzý°æL-,ç{'b~L/'bùÇæDØUÙÎ.CòÎXØzQ>ö{þùëbùísd\v»¾b_³]¿ÏÓγ0ËòçÝýzåîÏO¶º'aùÄçKð¤Vøãõá¿üéO?÷ËÇ/¿ÿÏ¿{}Ü,0}üÆ-Ä}¹;ßÿþçïóù�t©yÌSÞ»T¯û«>¾ýõïj~HÀ»Â[\Õ¼ÿÊÿËï×oüSã3ó#[wøNÜâX>¹¿-CS\<¦©þó4},¶cÙµ Óübûñ¾|ó¿~rüë_¾üÇîË~^^à_7à¡:¿À/[~~Áú§ñÑ ëÌÓ¨3pç,ç/xýb´ñyË.°x(úù5>N`1ê¢6�HøÜ� ³¿.`ÊÇñ¯%Ũãw¸ÌßíFǧ²ñ\þïéû±®ñP;÷ ¤ß_4åûþBÿWÅ9¬d6úyÀ�~sé·îÖ~üân.ß·«cxÙwù>[ÿâÑIëwO]ÆÏh|¸®?@¶ß_ÖÏègƬMÿÐï/Wù>?ûOè¿i°ÃøYù_¬´ÿÿBù_ô2~zJËtxËS~Gãª?ÓE~Yú3ÿ®iÓç÷wò·¼Ye¤)�ÊÀÙÞcàî) Ù +0Ð(óü_à¦ÊËúmetS¼µþ5 VÖÏà¡+ +pq-\¿Eè?¿ÌßZ4þâQúÛtþN¥?æ%$ØYÔñȰ~B¿àEú]]ÐçþðOä·Ð?zþçù¿Þè"Z¿ +ðÒäîÊ·ôõ%ù¡üÈþÄ?þk}Gÿú ` ±ìÍ$9Àtþ&Ü¿ÑPæ@xën9ÀÞªôÃûïÔß Æüï] 2wÏ÷ë©äÀù§dòCø/T~ÂÿEé£D¿«Xö/¡�4úcýáâ«þ`úkM¢<ǯ©¢ûo\BãýUs0%�[Æø/¦ ù3þ]30uüH�cªý>õ ±ÿ¯L@ã½i'ÁÊÆü`ÖðgÌè)À¢pPîqPFß¿r¥`µ m +F(Âf¯$Ü.^^À .<Hc°)ßÚk¬¸X[kÀü¯:®¿ÚÀñ$ÖO¿ï v$AìÍñÚúyê0= uÄIÜ?ÄFàëø _(¯ñÓÎ\Å Æ&¤D¯A3B«0ÙIM¸Ë÷í3Á÷ÓåûhþÏñ³AãA +;Q[g=¥|ãDÑ jBßïHBìèìL û/;q®!ñº·%Qã¯N`ç4@׿(Peý4âTùg1¶eüÔÉú±³¸®Ãùÿò}tvNôï}¨vë1¯ã_|ÿ93 YòG_ðâéÕ ^9àüá «Ì ØãÜE¸§Æ?ÎÀfüýèÀ÷-`Ás-=MÀê +ËòúŤeàeæz.nd|®Éd³Í`÷�¤paN"-'q.VàÎYcBs9i;Ù²vgÖ Àºõ8òºÑÙ½H¸÷\Ih¦Ë01Z«z1¾Øx=O¬$ÜM�¹"xm)ª6¢u³$ ÖI Øàn)cD + ¼ÎXYÚ$ ãÇ_óOHk] e& ëⵦUÒÅW1?kÕrnÌÃô)Â^aÐ+�9*Ø"Z«ðDE5¡³È£¸jB&Æë¹èP øITÅêÁÞ@^±Fc&.¨ æA=ád¤|{4{òàNñ`B^±Äe¹:$[o?·$çÉ +°G£¯`FRW@pFþÐdüÜjÖ\2ò`pãuJõ|ì4ë +®/xm«_bÛh^ªp7:ìX¯'dc/~mYóȱvàüxÑx¨ @xL6ÑCk"mâÊj"ÀÌ/^¹$¿isªÍ cHÈ$Ù'èSÉNOÐ¥¸*CßÖ?!ÇÜøâg3æo!þay=é:¾@wÌ׿®`(:[º\¸¨õ·\HÜø¹#êÜT&<îÁUÜósÉ=°À1&vBèHrTǺ± éù4ø~É �NJÈf/MîÀ<«;@¢ÃIdBLY\MEbbòöø¥þ²õ´X4ï*¶Ì²ÝؤÛ=�9%Ót¦á3:ª®y>C{§Y|ó[ ·4A3Æo)S VçüHCÙ9·Õ9Õæ[?ÊÇÕ ¶øJb$Ò4ÅìJS�q2+s7!@ÊÅñ$>4 ä¿32X¨Êô|sÊØ+tÎ#1kçæAsT¾ï¡=aÁàE$;Ij¨,`§Þ/�'ÊÖÁ3QýûDeäT $z¨#Í]¢4ONzª±+²ðÖÍÕ÷á-;7Z+x+ß1Eì'äèGwÞ@c,àÒÞT#ÞÞS#µ¶F0{4ñzç/ÈP Ëñ÷ê¾ÍQ¨ Q(®¸r�îã4èÎÕô¬ Xz*±ÀÊ'$0°"Áu)Ã^Û)ÆÎß«)<¼@9ô©ùÆ=ÊÓ¼�¹3$¶EÇEu|Àcs³¯ÅØø 'ôKh;è½D?Ê9kHÓ;s9|_}÷IÆköÞçòù§fö$ ó+°^Ýðnæ°{ITW-ÙàØÿ'À ½AãZë É (1ÍqP)/¡3øé?BÝ#·J쯥°@ +ôò8I¾0 G×1¼<òÅ¢yä¶40AE"{ä*²ÜfH¨§ør5)?A.§Ó¤iTM¢3Àl ÊþØh¨!Úд�ÏL )îm¾¥FSe�ûzcfõ¨ó~ ½çOº ¹S4.H:üI %²5ºc ô§zÒk9k/àÕVtHùĦÇR+,$çκ"cÕª&ÅL´6êIêµzáx¢$$0tÈ£çÄÆ<·�H.DóØ!»ÖÚiéò©õCß-·Ðbbº]ÂYôé¼ái&Ö2¾ôÈ-·äÂáz9dÅI[Jw9ä³Å²Ö.,q M=/<.@ï¯ OY^GómÐ+Ó+ÐÚireºIP°CL$@bpn²©í ¯6ÙÓ®P ,¼7³)/ïÃ{Z?R°N\$«[ÚÔbk`XÆdk`¸V&JrDóf)È$&¢ph:¶Ð¹{bP×1 Ñå¦ß«"f ¬7e>d lA¼¶k»îk°õ7ZuYG ¦jM®ÖlêÊ®@¯ ¯µð WÄ1QO|h(Gd5U:*ȵé¶jõè5« ,zç4^>1X«'î- @E¢oaÚÒ³÷Í+;êR¹´Üí¼²¡Òr·SEC0YcÂð<$aÎÈ ÖojAÕFÝ,zÖ4Ä/¶b1ð=¥%4E`Ø" ªA^iOj÷ØVóêè8«mR wÍzïm½BÊCùµHÆztçãÍèÎ'¤G:ÌqÅ!k)"Z^YÀÁÒôºkmñH{/nña|GcB�è(ì65Sµ¬äma7/¡(ìHáð·dY{NMH Fmo8|_o\6m!*á Y<õwdÜ+û�zÉXNÙo Þ¦ìih2$à%Pd(-CÐ !NQŤHª_\~|]ÝúÓè´@) G§IòI]½Qð¹cÕµxR &U¹Ý-âݲ±(2!ISe¤zÒTîjS"+µð¿§ÜÅà¢M0xÈÆ@ð¸æ*ÖßZ¨ôüE=@ÊP²æ=e(nÖÄÖ{èO�U¢ ¡åq/Nõw )BB@ãý ëGNðkMkÛhQtóPMOdÑ#$ÌHôa»3ñ�Þ^�iKÏcåx~r÷üµ;ã?³ugú3[~bÐñVãAÿPdzì¤C[ðÂ0PêÑ5Må²ÜÁÃû÷'´ÁÂC¯ZP$5¿àD9dù -²ä vܼ:DTcJ�=:½YsÃh21AàHûàȨ8¾QÃá8¶7b²Õp&ò3×ôÛ°"ÀÃa2 \ãZCR£ +÷Ï÷ÒxÞ ¤ùÇGØTpj§Ù9@ÏndDÀìÆPéxNôsÔ^Àôè_q-KD! ãËm'ñ}¢øS'*PjÈ´QðKÍÓ+3AGS¥dÈÌC,=b%1¤,äÄBº² «0<£À'Z/Ôó�zl ÖäÈ-K`wlh3äA °3agd@>1ÜÐ%óç &VSÄ<9é(ÿ(éM&¤± ÒÐìA, +`Xr'H[H `g�4;äu@ºxÏWÌuÁsK +\@¶T÷ç\nùsê1½rKÎt+òÏ,i>§ÊBd¶3Ú�È$¹ã+¹â0½Ì¬À %áÕ+ª%`àù?è'äèù9o 3!çç|¹>¹åÍQXÅ#oñ0îB$ççÖÜÈB¬v%ªî!aCk7È )ìÉÏaRÏÏ'ò0á :|Cå² 1a'$p¤½¥æàj(½·¾^ð? ¦jnƶ ÔXéJáaÛ�£ BÕ^ »c¦Ü�u/§ç6dPÛBða·ÌÈl"{6@ÚrDÔÑeg´=ø¸3ÚݰÀz;ià©ÐS÷Q{kìØV9Ó`ÕV\ÐAÜZkßoÜÒf!= å7_Ø!^Ü�vóH©�´ )^ø" +Ñõ¨«ôörÔuëEb£Èļô& ê¡ÝªIjÓ"£é±¥HoðJ³ªGXé â¢s}õȺ_Ö dmØI"ä"ù¤aÃi§¢&ÿîtd|HïOÀA +t fIY¶Þwf"á^íOhSÅ7¡M[ºnAÅôkkc¨@H'èÉ÷PO$UKê pǰBórɱæµ4À®OÁLØQ<c5 ·LХ踽ÄÛKìêÜ^B¦ä¸la"XhÒ;D¬æÓüÂÎ/|b¹Ð;¤It.ôØ-ÔóÞ«^©Ýð¥vã(×Ú ¯ªéRVíÃ4^í£HºQ3GT¬Ì9vpAäL-8¨Ff÷¬ÁÉ4gejYsþ iÎjKÑ´^м½e³Únoᬶö¦iÎj+ iî!É2eH¨ÃY¹Ñ4geêÉóôÎ_¿Õ âÅHö ÒÐâ¾üb@bE.f�$H +�²í!µnÁPǶ ª&cY?ªIjKe¢Z®÷4 TJÃT2UQ9Ñø¦;ke|Ãð,×ø°r:ªMݤrä´ÁÇüÁ»è�¨(¥Çt?TÒ2ä(¥ÈôÜÑ* +"ÍóÔ,CCÒ$GLÜá¯w¬¾ö°9NS]qLR]ütË ¹S2c'ôý1ÌêH¦)#¢êv¶÷ôÀw@ïÔÈ´d{ðC²äÑøÜ"·V¯ÚJ0ÆÐCÀr+°ðNÓBMôÆ4ÑCÚ¦å"¯¼ÑÓà@Þígô©�á!ÝM00Ó=Ò-9Ðâ ÚZQòµ0wÈ +RT¾¾`¬¹& tÜ«Ð÷;NÏëí+§ È®)õJ§¼ õ,8÷ )�M îÏ$9©Êu°è¾I_vÀ`tÀT9 +½ð%%®*MûMÐÒúbL/Ð!hjEk<m (.ùeUlÜwk<¡Ø)¢wªbsziѦBÄwXH©êâZÂЯëõ%ô}ÙAU\»Kßs ÍìŲîiz¥g¿Ç.,÷,À®%rpRdKz.4Hv\*i¡Ëç5Îòpí. %àØ ²9'QL¢:5=Ä 4KÂíjýÂú¡]íiÊq+µÐf"v·«èÓ1Àöçméµ;Àö$ß»üòãûÞt=¾_ÍÙÛã{ºÅ'[1çOK¸bÎÇ¿ð¡f7æ2Űî:P%¤ÁL Ømí5?q¤AÇmík"_}tþÍ*4Æ+ EÕ3ÎãÉxqhwò ÍÐE@>QO%êÑ{eú± ò@Ç%,ªE}c´1iq(«{÷γ§ð¥f?eµ¦(À÷%!|52ÈïXh|]ã{�^«AÎ-,+Öã ¾×|AGD©m>¾@é[¯õ¯Ó÷3 åTwHmñ�-©A!²Æ¾ò ÞâPz<Z,DÇÛIÏZ4nÒÏf~¬EÃiÌ{DÒ-´P õÀRè±wPéÀªáàVRµzåy5j߯ÔX<kéÚ>O@¿çyé+pcq g´¸bz¯Í"cqÅôºë´ý.« + Ñ2Ç4º4Hô X$I�ù3ûõÖCE3Ø¡ÒËû=ä dÌ:¢ + ÑVÆd"öÈô$OÁYn +2]Ar¨_� =Cʼ ?_ ïAÖVÀ,êÒ4Õ<êSÖ;^Í-)¨W¼ºDÞh.ý¾Ñ¢`!»D$2¶Q~ÃëtË)®è¤m +2Y5ÇìXwËx/ûdøØ±"`¬Æôí±# ]¼Â|^ +X+(N/ÐKë±'ÊVú¡ÕVÆ08LAAYǵ'ø�ÆwZÛ^�>´Z,ÖC«µÿxèÐj½½å)F§è Ò¤Ó"á;J¡C«"ÉRxZÞaz:LrF<Jg_ ×ñkÊDZ^à N踲' ß¹bXH[À¯o¥Ý5.æ) ++íb41ë¡éI*PS$vPÛ3[غ¾¥c È3¬Ê¤�"Á tTph;À!(T:FìnR`Ö¬)ïíð·L+÷\¸jbp{ Î-4ø P é¹~çÒ¶ ôVqS +jsÇ0MÓ-;Z¤êå¬#b¸ºn§GöQA@'cýȬlS g´©@Ñ´<B@.iGã{¹eúìéï %=ïfTàÚÆ´Y;1hK¶Ú-¡øFf×ãâ-=0ÊÅ^thû�U©.ÇõvÕQ9ö×=¨yÎA9ö F)¨�Ïàxq?+\|Ú'>¤_þk=îøEäõÿHîò'eû_/ÈÚìÃO Li5</A½_®4p³ÐèUü Î�hÃs-Z¡Aôpd,zÉé:)÷"_ 3r½d?ESo=}_îU45Ý[HïñN< { ¶�"×¼Bzò9ÁèÕÖe§.« GOï« )utaM|=r_s¥ÝXZ�8òaE,d"z$.æ^Z@³Å#6ÐèDmøõ¬È£ yº¤êA²ì¥PØé¡÷2@Xh¶ñ#QÞOÐÈ}R®:öÍñ$85z3" §äê¹cû¬E8È +êyÍP@!è8;÷Úð20¶xhRH(ÂØj- 59kÑðª&%r²¨ -& )zfÓðè8zrI;:¥fÕ£#ñõlaO|=AMråzxmÂ4¯ÏÝïéé£uû%hHG¦*i!8´Ì °D¹wÛ×Z¬£Szm{åp@§´£Á#JlÈ|Dª"°fÐ2öå2¡¦2¦áq¹àÔúù}hCc«ã±¾`Ä-75OåߣP4|Ò«Ùàà[@8ì'o`8øA8¨-=àǰñ¶ßR!Õ/÷ HÚ¤Sæ~ËÇ,£r¤R8ö�ÖFSö#8{LTÛLÄ Ò-°Öj[à,ÀWi÷ñ çòvWjÃ.ª ·XɵáÖGÄD=NcºAÝDàG´Ë`ª5l$¡îÙ¯ |" Å@Á½dM¨c?!9ê8;hΦ*¿º/h80 Íëã&_M&>·º¾£¿'Nt©% ¤Ñi=ùk1¿"i£;BF¯³$DÝQôx`ÖXvÉdÍ+¦5y4zß¶§A§¶÷ª-ÃqÉÚ q+.Ù2qI½Ã¢µ;>[BÄñ!5EÎÇ#F÷z.À¨£ð(°ë�ÈÝ1~CèM_Âa_¢àWàÈTFÛ²>¦W"=½P\6þÐÒ"̧_³ÏU7 ³Á?¸AÿáéM¸ ;¸] yFסK¨m:%°³gSçK�gÏtÂü¬\Í÷hUâZÀb,ÃñI¡ø~+ piL¬MO]àØj$ÅQöî=.Çåñwþ´@Ï\)¾2$Á½x`¨Ìzy{¡hLB<Ö +ãx ±\×ÜAÞ£áT ]&R@¬µÑ®2Ioútñ¾ ^ã! Aj ì=·Ì½ß£æ`ÍÓß26º{æÀF¤HzJjfÔ¬IÉPäI£çªY={S×ËF[Ú_$©çþ6}a·®=×Q$´èàîñ¦ÑÖüùM£yT×F8ª3ç«ín ]LsL}¿#Ï4sJó|1 ÈóqNÑpùKæ½¥\æTGBÉб×+²èÔR%0CÔ±hfÈ={R¼%y¥xëSink3R¤_bèÔñÎãÙ%¡ñGç+~A¿×xõdºC²(Q(6Õõ>")Öõ[JC#Ü¡ ÃÆ¡dý¢±qL¬M.O-r@G²ÞT:Ì@ÍÞ®±¾UQÉ0(ÊW £ãrÌñÈ1 ++í!ÇøhZã±/ù x~e)Àn¨ BqZ~5a=y=î@`*,Ã2£ È>ýÖar#ÈÖA&ìÎ]9ùµ xAVº&8òu¯5¡t»=àÓFÂýäþwÈÆdËVí=Än½u·~MO}"sÒÑë§M¹¦ËH¢4»"+É~N`Ö&@#«ZÌÖÚC' &F6gì@CÐÌQGè(ØùDCÙïoùTz4=á¦OµÝÒð©hl +QGDÔ(ؼF¤Å ¢¢á´ýÅá +t50#¢'Á¢ºD¼GÃt´:yQÑÅPX4¢ñK>¡K¤'H*JfkxÔ¤râwÈôÜAÕ@G6M·wPǦó;M:_°-ä-*X@]4á[ ó`½b² Ak¾]b|gÍ©Cå0¾~Ági~!|N`~¡v9¿¯Ã/T:ï¸dëïH4ÊG�ÀF&ÓÃxhÄ�(èû[õÆqrªkpiî�kpàû=Ðvµó$?W;df´X+7¨ !¸Æ 4?c $¡©¦°©H\èÁ¸§·þ 4#Æ#ZË'xDÆáÙÅsä"hmLW6ÔñÖéȦâ9-AÆ#ZA0®4èÀ#Zo"A3ñl6p<YÉRí´ÙX¢m6¯DÛÊïmüéUȳ¼àm!OQh +eúÜ·Mxéc=®Þ´¬`<Ý¨Í îÖ?W$Z[^p¸"ñÏvåä²7¡8}ÇìYtÜETDhàfá=âdç?]ÃÝ_¸¬BÇxÅÂh+u¶9Ýò-]®\èêÉQÓ7%h"õÁQbÅ`.Q×d2¼Ûgëõpmç%Z,r;ò3ôïu´ÌiR;r<yu¤ÛÇÍ;¤Ý>ÆKH»}jƸé]²BtK½ÞmÇ]«ª³»Va×s×jÐL:½îÖÏÓDG(L×k"}a¶\¹%J¶ãÔJãÈç§GÉýyÉ6N=XD¡É¹õÐâø}=ȶøðýZx@G @Ø;ïh01k/ ×±Ô:ãèµ8µ$±±á1Æ×«Rö½-`m*hÃ(A<ÜqhaæYÝCr>A)±L¶»DLHóõÌâ$2(ÓV1÷m"tõÁÆ +x¢ÃkrÌï"AÐõòH¶ÌLÄË8¢¨H!$úŶø7l%!TD=ɪ +â¿FúïUDr�$ìÈÚÛzþÙ í êGWvÎh¼rX±Bè(ïfq$¶52°:Ä»È"x^Ea#"aP qÔ C|¬Êä¿ ì³¥Ìi| S§'Ú¶4¼%Ñv\�êõ"*õÀ¦=f |K®¥Þl"ë¹,¹µX-pÖHȱ@fÍx2§z³7Ð+\[v¢eÌøu©Vuk ¬F~[ét/´ñ.Ýs¶EÓ«<+ +'2o$L{0_B ^ÕDdìm"O0 UÒQ£êײbÃv¡¤qa+Ca×l¨¢d(Öñ#Y¶Z 2>~Æó ÙÆTwÌu¢\Ý]Aóï¨î6¥Yé8»FܬÓVÐÑ,T2çè)y@OѦËÓʥŵϤõ}MYA~שÓX. ¶¯^F×*Eõ]9lKT °�«1 )Ê¥:Ðß<Ðä¡òàû»RÛ<ÄnB, ÙD¤Gõ6[ +ÚÎ Ãý&/©1væ¸fG*´Ùì$ +ÐÈ7w`Vw5É{zܶ¦ÓB§¶@/h« -Òsk$gßµ!Î" [].mMÎ0,Tw¶^ôFxrc¸bÕîôØÐ©ë +ºº®õ¥oO]Y´"¥I gI]Bæ¼£þ¤8µ]bÖå\Ûì2Üä²åh Óüª_9ûÔ )](øB×{å©W×öóNGí^ËÃëFM9l8ï:öêXzáâÔjÖ"§ÕHT1*/Y£Ïúòëtt×{±Xrt-& ç5¥ r%åÐPµ¾û8íÔ0ìÃÔÛî·°@bB~nZ¼òÞ§Úù±%¢@OVÃÓCC?mCE«éÆò³´�zô¬&ôì>z$:Ç<ÌïSS§éVaîøé×úV\oH\ÅømY2ï~ªXªð?8öMUÌNmç[ÆÌ»ÏjB&nñÐÚ"gt]¤@?kX¡õýÚ~¸rfèïéçïézh:¾IA8S÷D·Q3FÔ¯OH![ S+Ãýº<ÝóI]öðc_¸ ú]8]ïüàSKÕ¥=H¯æióºiÁîÈÍé§FóëéíiÎpö×{\ÁÚ-£Zî|²MPO=M@ÎÎ}Rº÷�w¾¿Å -É ¢&H¼ÿ\vìÉ&u§ñ}o�íj¶=6;OYÿ·Ý^0¢KM :ÓM´`èÈÜQYwðD�Ù)\C2exx>ñ=UÅþÿü=ÃQZ.O+Ð33Üõ~¢b£]Ã÷Gi44ªnñô¢`£M&M #0©nu7ÖüĬ±=sr-@¿áÑ!v·Õµv")ì¨I. BÂØ±Aj@¯GµÉB@)ñ=5ÍPuÔ4gDB=[o±ë¨Év÷hÎ÷¨^¯8*DõzÅQ!rª¤Ø©±Îgfi`Vn-o;ìrÄtí`GÍUúø=ǶE÷-[Jcã IÍ¡%M+Í!£RèvþܦxO +Ë ÕÃ<±G®çgfѡ䧯k`N3@èçnÙÒð;}Î`ïkÊîWDLÚæI»®qÈ]ÛuyI3Òdº1$6)�â"Ý£ôqÑUiA²Ë Èä~À-°tN?Òõ.zd °½@tyrqaÇÆ$ªRßI¢Sܺ"q 4=e'B³»dJÒñWkDÁÙ +üþ:~VáVoËqú¹imû>-@¯3¥5Þv@¯ÛÊB£e§7âF±¢èyBè(ÐØxß²¬¼ßI;Hã*¿¯Çö~ÿ2Þ45 °Púkª[Ä'ļ¦ªAåÏZü êQZ|PN+д�_©QEh´òªjoJÏøyäFG[k ì@¶â°ìJBã¥Õ@Gì^ÿEd¨x£BTº§Yc!Y$D¥T5Â^àï顸aЩ÷ +¶}:¬ÉõÐÔ#!è®÷³fK(Uð¹u þ_ý·çÖzßܳkñÀ5¬µâðÄ`Öt9Opä{+ðL÷=ßm]ưû1è¸çFt9ø¿ÆEÎIrD»Þwªì}²ç9·üÆ"CgGúz×Èç5Þk Ù <¿¢iBºq`ªßÛ(ôÈ�Îø®Ó3íèkÜâϽFïmp%Cå=N´a¹ò°o5,ؾú÷=N´5ÁGðýÖÚ«é\Öö|JU_q .Áåô'tüVT<ö@vÜÆ{Èo75òË ³ÈärÝøi(²b°zY[/ÿ°`Õå&ÓWlÖ£óøVË2KpL÷ÉaT$kå"ÙºSFõ¢"¡áñNõ +Ö2¸õÜäý¹+{AÒ^À3$ª°Ë£*È tÉ«H<�V%7JH\Àaõ49â°~ÐÈm *'tÀòQT¥RV½ºÀÊQÍ8Iò¾q¤t{î\í9»];¨×_xÄB:|F½t õ}ZÂ7 ×»¨íOðäzM]Òl!-ÊvS£Eõeõ¼kÆ¥3²'ïþ¢ßÔÏÏ@=®ÇÖÆBÄò;¢laò5M!¿[%:CbÜQ¸åGºÅ æW`lÛßZÒ2 Â|¢ÆCÍÖ4[Kº»Ù7ç~§G¼ KñFEijyÈÚÒ6wg^ébJß×éjíð}HÇïVÌh2´ç·^NùÚP M"Hn ÖÆ#"Åq@GÉh=w#Îhd-bæ" +ON¢ ¿±((W¿lÐG +èMûÖn<8ÖÜ@c¹£ö ökàÈzsNE:~_ï¨ÀM-ÂZ[ Ô[["T=-3@OùK/P¥ü¤"ÒMYGùIFz £ú£ö41O,$ÉÒ¾r×iÑÝ)$, K¶ôTäÖðÞ3¨Hëx´Ú¹IôFÈ-MÎ' ¹C¼¹e9knñª`µ^RDMàQ5°õ¦ª ÑnP lv )âÍ-¢7Ð,þhöäràvò\ÅêÁÚ\òÄmX^°ÇmÊYb0C§Zl'dN{ʧ$n"@¬sÀN÷\Â9¥áòܨ&¬¥"Ò{oDõ¦DÕÔÓ¶"aÅÐëWRFÍR +FÍ'm]'ØvÞ_'ÈYð_¾~ùæ·æÃ||ýÓ ÈËð§3óúÇ× åzMgþøñ«ÿýøÃwþù»þø÷ýíÇ_ÿþ?þß?|÷Çÿüÿþ»_~øñÇoõoýñÛÇÇï~øî¿¾ûû/¿ùøþ_þúÏß|óüãñË÷?üüøów¿|óIñOÿýÿç¿þ¼{|ÿËO?þúãëù·¯Ëìþ?M®Ù +endstream +endobj +416 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 985 0 R +/Name /Im387 +/Width 35 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}ϱ 1Ð¥¸]FHAKÅ�°ØIuØ�⮼"ù +Í+,ûÛ>�3c D¼èbpa¤M´¿Üy¼gÕC=så`K"HÑf=_ø*Ö&°úqF¤°¡ma(.àkª×IdýýºÇór?=Spj¬ +endstream +endobj +417 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 986 0 R +/Name /Im388 +/Width 38 +/Height 48 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xͱ ÐO(®déLìÜÉlà +n"ÈD<.1Ææ]sÿPÖ«TCPEï ¤v¤.ØàáþäóÒ:÷þJ½¨ë:o©Æ$¦'FñÃ~Ìëv,ý5 +endstream +endobj +418 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 987 0 R +/Name /Im389 +/Width 41 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]ϱ à ág¹p¨>R(¬äÒ enB6!PRX&ïLV(¾îôA`#pÓÜRx�óttbh WÚ½w_ÅTE`«±9D¸jÃ×S@Þݨ/v+«~&*}V8ëùV§áp#°è°è¥.¬®ÍîhjöGu&óäìÿ<_åyù�Ï \ +endstream +endobj +419 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 988 0 R +/Name /Im390 +/Width 28 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÏ!1 á·S0Ôq z,Ìn¯ ëQâDFt +é.PÄgú_7ÿi®SgCèt Nôh 'g®TØa KÐUÞ¤_¤X«`ÙÄ®Ø*åGÇ^=ê6)NAp¦}Ì`ÿàvÇËýðÛO= +endstream +endobj +420 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 580 0 R >> /XObject << /Im24 31 0 R /Im26 33 0 R /Im105 112 0 R /Im30 37 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im25 32 0 R /Im108 115 0 R /Im26 33 0 R /Im28 35 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im25 32 0 R /Im120 127 0 R /Im25 32 0 R /Im115 122 0 R /Im116 123 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im107 114 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im105 112 0 R /Im23 30 0 R /Im108 115 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im25 32 0 R /Im26 33 0 R /Im26 33 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im117 124 0 R /Im25 32 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im106 113 0 R /Im25 32 0 R /Im110 117 0 R /Im102 109 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im110 117 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im101 108 0 R /Im116 123 0 R /Im116 123 0 R /Im26 33 0 R /Im21 28 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im391 422 0 R /Im392 423 0 R /Im164 173 0 R /Im100 107 0 R /Im238 251 0 R /Im332 353 0 R /Im94 101 0 R /Im272 291 0 R /Im100 107 0 R /Im94 101 0 R /Im94 101 0 R /Im100 107 0 R /Im93 100 0 R /Im238 251 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im108 115 0 R /Im21 28 0 R /Im30 37 0 R /Im28 35 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im28 35 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im109 116 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im101 108 0 R /Im111 118 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im109 116 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im30 37 0 R /Im29 36 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im22 29 0 R /Im26 33 0 R /Im28 35 0 R /Im111 118 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im25 32 0 R /Im108 115 0 R /Im26 33 0 R /Im28 35 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im114 121 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im120 127 0 R /Im118 125 0 R /Im25 32 0 R /Im107 114 0 R /Im28 35 0 R /Im105 112 0 R /Im106 113 0 R /Im105 112 0 R /Im23 30 0 R /Im30 37 0 R /Im118 125 0 R /Im23 30 0 R /Im30 37 0 R /Im118 125 0 R /Im106 113 0 R /Im30 37 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im110 117 0 R /Im101 108 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im104 111 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im26 33 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im30 37 0 R /Im29 36 0 R /Im101 108 0 R /Im30 37 0 R /Im101 108 0 R /Im141 148 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im107 114 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im26 33 0 R /Im105 112 0 R /Im29 36 0 R /Im25 32 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im120 127 0 R /Im111 118 0 R /Im21 28 0 R /Im29 36 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im28 35 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im105 112 0 R /Im101 108 0 R /Im30 37 0 R /Im26 33 0 R /Im30 37 0 R /Im101 108 0 R /Im110 117 0 R /Im25 32 0 R /Im29 36 0 R /Im109 116 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im120 127 0 R /Im21 28 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im107 114 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im30 37 0 R /Im111 118 0 R /Im105 112 0 R /Im23 30 0 R /Im108 115 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im117 124 0 R /Im25 32 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im143 150 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im29 36 0 R /Im25 32 0 R /Im28 35 0 R /Im105 112 0 R /Im28 35 0 R /Im26 33 0 R /Im26 33 0 R /Im102 109 0 R /Im117 124 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im30 37 0 R /Im101 108 0 R /Im108 115 0 R /Im29 36 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im110 117 0 R /Im29 36 0 R /Im111 118 0 R /Im21 28 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im111 118 0 R /Im25 32 0 R /Im22 29 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im22 29 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im25 32 0 R /Im22 29 0 R /Im23 30 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im116 123 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im22 29 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im28 35 0 R /Im116 123 0 R /Im111 118 0 R /Im106 113 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im28 35 0 R /Im29 36 0 R /Im29 36 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im108 115 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im29 36 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im110 117 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im110 117 0 R /Im29 36 0 R /Im111 118 0 R /Im21 28 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im25 32 0 R /Im29 36 0 R /Im29 36 0 R /Im30 37 0 R /Im29 36 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im104 111 0 R /Im109 116 0 R /Im109 116 0 R /Im25 32 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im29 36 0 R /Im25 32 0 R /Im23 30 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im26 33 0 R /Im102 109 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im29 36 0 R /Im25 32 0 R /Im26 33 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im26 33 0 R /Im110 117 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im107 114 0 R /Im21 28 0 R /Im105 112 0 R /Im112 119 0 R /Im101 108 0 R /Im30 37 0 R /Im118 125 0 R /Im101 108 0 R /Im106 113 0 R /Im30 37 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im105 112 0 R /Im26 33 0 R /Im30 37 0 R /Im118 125 0 R /Im26 33 0 R /Im102 109 0 R /Im113 120 0 R /Im156 165 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im186 195 0 R /Im28 35 0 R /Im110 117 0 R /Im106 113 0 R /Im25 32 0 R /Im110 117 0 R /Im29 36 0 R /Im111 118 0 R /Im21 28 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im26 33 0 R /Im110 117 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im107 114 0 R /Im105 112 0 R /Im23 30 0 R /Im108 115 0 R /Im25 32 0 R /Im117 124 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im26 33 0 R /Im30 37 0 R /Im116 123 0 R /Im25 32 0 R /Im111 118 0 R /Im146 153 0 R /Im351 374 0 R /Im148 155 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im106 113 0 R /Im111 118 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im105 112 0 R /Im28 35 0 R /Im144 151 0 R /Im25 32 0 R /Im29 36 0 R /Im109 116 0 R /Im29 36 0 R /Im30 37 0 R /Im107 114 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im107 114 0 R /Im113 120 0 R /Im234 245 0 R /Im30 37 0 R /Im118 125 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im120 127 0 R /Im117 124 0 R /Im25 32 0 R /Im22 29 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im117 124 0 R /Im105 112 0 R /Im21 28 0 R /Im22 29 0 R /Im26 33 0 R /Im110 117 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im107 114 0 R /Im118 125 0 R /Im30 37 0 R /Im29 36 0 R /Im112 119 0 R /Im105 112 0 R /Im105 112 0 R /Im28 35 0 R /Im140 147 0 R /Im22 29 0 R /Im21 28 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im26 33 0 R /Im102 109 0 R /Im118 125 0 R /Im25 32 0 R /Im26 33 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im116 123 0 R /Im29 36 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im25 32 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im107 114 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im120 127 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im116 123 0 R /Im116 123 0 R /Im26 33 0 R /Im21 28 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im118 125 0 R /Im21 28 0 R /Im26 33 0 R /Im26 33 0 R /Im117 124 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im28 35 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im107 114 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im106 113 0 R /Im21 28 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im107 114 0 R /Im21 28 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im393 424 0 R /Im247 264 0 R /Im248 265 0 R /Im394 425 0 R /Im257 274 0 R /Im260 277 0 R /Im253 270 0 R /Im254 271 0 R /Im266 283 0 R /Im251 268 0 R /Im264 281 0 R /Im260 277 0 R /Im253 270 0 R /Im324 345 0 R /Im256 273 0 R /Im259 276 0 R /Im257 274 0 R /Im250 267 0 R /Im253 270 0 R /Im251 268 0 R /Im264 281 0 R /Im260 277 0 R /Im104 111 0 R /Im101 108 0 R /Im110 117 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im28 35 0 R /Im29 36 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im25 32 0 R /Im108 115 0 R /Im26 33 0 R /Im28 35 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im106 113 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im118 125 0 R /Im21 28 0 R /Im101 108 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im22 29 0 R /Im23 30 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im26 33 0 R /Im102 109 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im110 117 0 R /Im30 37 0 R /Im26 33 0 R /Im22 29 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im22 29 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im21 28 0 R /Im105 112 0 R /Im23 30 0 R /Im25 32 0 R /Im111 118 0 R /Im26 33 0 R /Im21 28 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im26 33 0 R /Im26 33 0 R /Im102 109 0 R /Im117 124 0 R /Im102 109 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im106 113 0 R /Im107 114 0 R /Im116 123 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im30 37 0 R /Im146 153 0 R /Im193 202 0 R /Im120 127 0 R /Im136 143 0 R /Im148 155 0 R /Im113 120 0 R /Im103 110 0 R /Im26 33 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im26 33 0 R /Im102 109 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im110 117 0 R /Im107 114 0 R /Im25 32 0 R /Im107 114 0 R /Im102 109 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im108 115 0 R /Im21 28 0 R /Im111 118 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im22 29 0 R /Im26 33 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im107 114 0 R /Im21 28 0 R /Im101 108 0 R /Im26 33 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im29 36 0 R /Im25 32 0 R /Im235 246 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im118 125 0 R /Im21 28 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im145 152 0 R /Im25 32 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im105 112 0 R /Im25 32 0 R /Im120 127 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im30 37 0 R /Im101 108 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im25 32 0 R /Im108 115 0 R /Im26 33 0 R /Im28 35 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im117 124 0 R /Im186 195 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im106 113 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im143 150 0 R /Im101 108 0 R /Im26 33 0 R /Im110 117 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im25 32 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im22 29 0 R /Im105 112 0 R /Im25 32 0 R /Im120 127 0 R /Im25 32 0 R /Im115 122 0 R /Im116 123 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im107 114 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im105 112 0 R /Im105 112 0 R /Im23 30 0 R /Im30 37 0 R /Im28 35 0 R /Im26 33 0 R /Im111 118 0 R /Im117 124 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im111 118 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im143 150 0 R /Im101 108 0 R /Im111 118 0 R /Im105 112 0 R /Im28 35 0 R /Im21 28 0 R /Im106 113 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im112 119 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im201 210 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im30 37 0 R /Im105 112 0 R /Im106 113 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im107 114 0 R /Im30 37 0 R /Im101 108 0 R /Im26 33 0 R /Im102 109 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im22 29 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im111 118 0 R /Im106 113 0 R /Im25 32 0 R /Im105 112 0 R /Im29 36 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im21 28 0 R /Im111 118 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im106 113 0 R /Im102 109 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im101 108 0 R /Im111 118 0 R /Im105 112 0 R /Im21 28 0 R /Im110 117 0 R /Im107 114 0 R /Im30 37 0 R /Im21 28 0 R /Im111 118 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im201 210 0 R /Im176 185 0 R /Im225 236 0 R /Im137 144 0 R /Im174 183 0 R /Im138 145 0 R /Im271 290 0 R /Im226 237 0 R /Im176 185 0 R /Im136 143 0 R /Im227 238 0 R /Im202 211 0 R /Im225 236 0 R /Im187 196 0 R /Im176 185 0 R /Im215 224 0 R /Im225 236 0 R /Im137 144 0 R /Im137 144 0 R /Im215 224 0 R /Im271 290 0 R /Im113 120 0 R /Im156 165 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im120 127 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im118 125 0 R /Im21 28 0 R /Im101 108 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im22 29 0 R /Im23 30 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im101 108 0 R /Im139 146 0 R /Im141 148 0 R /Im105 112 0 R /Im23 30 0 R /Im116 123 0 R /Im25 32 0 R /Im111 118 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im112 119 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im201 210 0 R /Im173 182 0 R /Im104 111 0 R /Im150 157 0 R /Im210 219 0 R /Im146 153 0 R /Im193 202 0 R /Im120 127 0 R /Im136 143 0 R /Im148 155 0 R /Im22 29 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im30 37 0 R /Im29 36 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im26 33 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im105 112 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im29 36 0 R /Im25 32 0 R /Im110 117 0 R /Im29 36 0 R /Im111 118 0 R /Im120 127 0 R /Im201 210 0 R /Im176 185 0 R /Im225 236 0 R /Im137 144 0 R /Im174 183 0 R /Im136 143 0 R /Im226 237 0 R /Im176 185 0 R /Im136 143 0 R /Im227 238 0 R /Im202 211 0 R /Im225 236 0 R /Im187 196 0 R /Im176 185 0 R /Im215 224 0 R /Im225 236 0 R /Im137 144 0 R /Im137 144 0 R /Im21 28 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im22 29 0 R /Im21 28 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im120 127 0 R /Im117 124 0 R /Im25 32 0 R /Im22 29 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im143 150 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im117 124 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im143 150 0 R /Im106 113 0 R /Im105 112 0 R /Im109 116 0 R /Im29 36 0 R /Im30 37 0 R /Im107 114 0 R /Im142 149 0 R /Im28 35 0 R /Im21 28 0 R /Im22 29 0 R /Im112 119 0 R /Im26 33 0 R /Im102 109 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im28 35 0 R /Im106 113 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im108 115 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im201 210 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im105 112 0 R /Im25 32 0 R /Im21 28 0 R /Im105 112 0 R /Im201 210 0 R /Im176 185 0 R /Im225 236 0 R /Im137 144 0 R /Im176 185 0 R /Im136 143 0 R /Im215 224 0 R /Im201 210 0 R /Im176 185 0 R /Im225 236 0 R /Im137 144 0 R /Im137 144 0 R /Im113 120 0 R /Im103 110 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im118 125 0 R /Im29 36 0 R /Im111 118 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im22 29 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im107 114 0 R /Im21 28 0 R /Im101 108 0 R /Im26 33 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im107 114 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im26 33 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im110 117 0 R /Im101 108 0 R /Im105 112 0 R /Im193 202 0 R /Im113 120 0 R /Im152 159 0 R /Im106 113 0 R /Im30 37 0 R /Im118 125 0 R /Im30 37 0 R /Im101 108 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im120 127 0 R /Im193 202 0 R /Im113 120 0 R /Im352 375 0 R /Im106 113 0 R /Im30 37 0 R /Im111 118 0 R /Im29 36 0 R /Im118 125 0 R /Im105 112 0 R /Im120 127 0 R /Im101 108 0 R /Im111 118 0 R /Im193 202 0 R /Im113 120 0 R /Im136 143 0 R /Im106 113 0 R /Im30 37 0 R /Im26 33 0 R /Im30 37 0 R /Im105 112 0 R /Im106 113 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im26 33 0 R /Im102 109 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im113 120 0 R /Im104 111 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im101 108 0 R /Im106 113 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im26 33 0 R /Im21 28 0 R /Im145 152 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im106 113 0 R /Im101 108 0 R /Im30 37 0 R /Im116 123 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im26 33 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im108 115 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im102 109 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im25 32 0 R /Im115 122 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im25 32 0 R /Im115 122 0 R /Im106 113 0 R /Im29 36 0 R /Im25 32 0 R /Im107 114 0 R /Im25 32 0 R /Im108 115 0 R /Im26 33 0 R /Im28 35 0 R /Im25 32 0 R /Im105 112 0 R /Im136 143 0 R /Im113 120 0 R /Im193 202 0 R /Im101 108 0 R /Im111 118 0 R /Im193 202 0 R /Im113 120 0 R /Im193 202 0 R /Im29 36 0 R /Im25 32 0 R /Im22 29 0 R /Im23 30 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im113 120 0 R /Im135 142 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im101 108 0 R /Im105 112 0 R /Im25 32 0 R /Im142 149 0 R /Im28 35 0 R /Im25 32 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im176 185 0 R /Im176 185 0 R /Im187 196 0 R /Im206 215 0 R /Im120 127 0 R /Im189 198 0 R /Im206 215 0 R /Im137 144 0 R /Im137 144 0 R /Im214 223 0 R /Im206 215 0 R /Im207 216 0 R /Im166 175 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im30 37 0 R /Im117 124 0 R /Im186 195 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im143 150 0 R /Im101 108 0 R /Im111 118 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im108 115 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im395 426 0 R /Im396 427 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im107 114 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im107 114 0 R /Im21 28 0 R /Im145 152 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im25 32 0 R /Im29 36 0 R /Im29 36 0 R /Im30 37 0 R /Im29 36 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im213 222 0 R /Im176 185 0 R /Im395 426 0 R /Im137 144 0 R /Im174 183 0 R /Im136 143 0 R /Im212 221 0 R /Im214 223 0 R /Im205 214 0 R /Im261 278 0 R /Im207 216 0 R /Im166 175 0 R /Im397 428 0 R /Im261 278 0 R /Im176 185 0 R /Im395 426 0 R /Im137 144 0 R /Im217 226 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im397 428 0 R /Im261 278 0 R /Im176 185 0 R /Im395 426 0 R /Im137 144 0 R /Im173 182 0 R /Im174 183 0 R /Im189 198 0 R /Im261 278 0 R /Im215 224 0 R /Im201 210 0 R /Im398 429 0 R /Im204 213 0 R /Im205 214 0 R /Im206 215 0 R /Im207 216 0 R /Im166 175 0 R /Im208 217 0 R /Im206 215 0 R /Im399 430 0 R /Im206 215 0 R /Im376 403 0 R /Im261 278 0 R /Im400 431 0 R /Im101 108 0 R /Im111 118 0 R /Im399 430 0 R /Im206 215 0 R /Im376 403 0 R /Im261 278 0 R /Im173 182 0 R /Im174 183 0 R /Im108 115 0 R /Im26 33 0 R /Im176 185 0 R /Im188 197 0 R /Im206 215 0 R /Im176 185 0 R /Im187 196 0 R /Im261 278 0 R /Im137 144 0 R /Im137 144 0 R /Im113 120 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 421 0 R +>> +endobj +421 0 obj +<< +/Length 989 0 R +/Filter /FlateDecode +>> +stream +x¥}KÓì¸Ý¾Å·Yøk¼³tác&FKml©5·Ú¡ð¿w±dÉs +àæJ}ã$òÌýáß¿þúÿúÇý!}OÙ}¹oçìÏôg÷åãôKøÊyúóüõë?þðãÿcH_ÿúçþýíûðíOßçïåñ7>¹ï0mß/óþ}>¿}¿"ø}ï¦óé;%¼@Ù7ðZ :å�å±%?Mè�þúûËå�ëü4ï½»,?B¸~/7øÜ@FËõû°x@À�.pPÉQ½Æô�ó$o`Q7p^ õòíãu\yh¢à EÁeä{DXÿõÁ÷ÞÍ* �e@ÖB!@.`ÛQPôýÇQØ8($¯qÓb!©ZkÑÐ ^µ(Óaª$Èá&r(PC5ê] ¨ Ct¢§¹ã÷ñùgxèÁùù}úv/ +ËÐ ÌÚÐÆËë +Þ(àÁ³;_ÁjÂb8Àg� º(ê1l +£+)d<½¿ÅCñMñPaø +�b£(ÌF¨ ¡?maLH\m!SÅ1!k~UÅÌÅ ñ °eô'¤Jw¤^ÁCÞÖå±8IÓ YåBYãbfÍãÅX2Û÷ô=ÓÄñ¡%M¿³<´@ÈArÐ])²$*2¤"Sbºý1}ÿP¡ýc-¢»çÒ§xÓ¥O ÞìÒ§¤¹ôW[\¾Ýúý\zïeS2Ò"ºKï--pS ¥¢©!æM¤¢y4®´ÔÊâÅqÙ(pZ�P¤Ì>øtÚ§N 5~ +êHhoÉãÜDMîOß:¼¤�Ä5go`si}öô:ÙäиàÝ#w@ò[% kNx`ö÷xÀ²# W`AAë +h`ç:�mI`çu8tÁ; IllQÁÀ Ùæ¸Ì²#qüÑbÔ ù¸ ;ìHoh<Àü¢ ðgÈ $Mhvãa%EH `AESH~'{IPÎYãaÿÔzïlJÍnðhúNfÝÓjM³,ðßN°\wÙ÷´{7&§.\0=ÿùû®ö'ð¤)çù¼õT¾<¨¹l¼S¡ØÜwzña¼è²kdRi0£<¢þ+#c£-éá�¸\HP.ßÏOÖÎ rÙ�£áª%²¥ðïé{z 3Áù§ºÀX.Ä(_Úf¢³K&ÒÛéæ¾ |UçÇôàÈÞüÖïû£êÕUM0=|F¢½¹yt�ýÍ-Oâ°Oãó¾> }õ,:lO|A7 ÙÕÄú9 �½ÙÍ;vÆVueR W¸ +@Ñ%qI\@Ͼĥp[x|>îRx(ºKáw¸ÁßrÕæWÈr$«[ðPÆY"!=Aò*2¿@ÉÓÕwÏXÃ0ÉRÄXîaÈqÐTÈEã*%krHÿg$ÿ³jKpT¿ÏtºQÒG+UEÀ UUL =Ú"ñ®¯~·Tyù*PWå1&íér$×&Å1³lôÙrBÖ¸C¯¯~&&È£¨WË-4KÆZ6¬Gã<iB@)0Cc¬Kñ#²U¤ +áo@.$LNôè£Sµ�Û�" §´WGѰ¸,SĸIQ +³(EìÝzW5@ï jL@½»g +RBªX7 Öº)H*:¼ú4AyõX×GEé (ôéµ@§XW k~åÉss)}M·¯åWÒþýPEíTUéé�zp=ei´*½¾û ¿;ZTÑ$�«é.�zpïKÐ8 ß9 #¿3èjÀÏü~GhyæÖè»kÉ>o�8D,?¥+¤éZ8JÁ==Ó¢àôí¢ÀZ (Jº5SËìB@L²Ø£1!&=º5=®°£*;ÞÂò-)ÜÓ3£<4!ö¤Ø²Ó9}öËéùìwÚÁõÙÝÁü|xD¦Ì;ÙrS Z@ѯêfÈIjwÜ Ñ)¯ªÆTkdçêÎØØ«7@bs¿ÜRå1 o #=ò¦ZÄÖür�ZÑôöÐ öHÈê`á8!o £¦zZîyÔ1#-¢{Ô1#M®whÅ¢É0jJ¬£CkMÏ(¶²à¢yäèëû_ }äÒ=_`Ï®úÉ»[J(y@%=êæQ³+´¢îöDÑ#¦UíØ£²nFeé¦?núI÷ 3 +ìuKò½ ÈJºÏ÷ܳféÞ®pþ^ÜËéÝÊVûRÒ½¢îóÝEÝëýIRza¾ÃPTFrÜ9~¯ç6¦¬æ6,¹s$ZÈ #·Q;E¿k!qÑZø¡ÉP8è/â-ó.L̽½Hpé.¡©ZÔÝfBºù®éQÉ,¨hí¾û(Ç =CâÒ0KlÌȺLDtÀ¬Ù覤Jë9Oðªjí +hª¤Jecf¤{Êoæ¬-@3\ªYñéÐc|2ÁR4eL{5íÕtTîÕ# ]ÊÎ9ÑI®54$ǼgÜßS¥{zcTÇ$*s^2IÌ«?Ð :2LªHH)#[ÒñX°æ'C±¤qA~øYý± ÎõòÙó"®E4&¼~DÕ$¶rÈ)ì"`Ï˽÷³Ç5E1_w ?ø© ÏôÕpª/>§ä\··Dc-MDîM;èxº7ä°½ÓÚMϪ¶Ê~6pcZXhrÚ�-p²yì¿n £óÝиZ$¤>nBW(wüî/¿ß×¾/SÇ: t¸DÁêIäuõ QP÷* ++»1ÈúMÛRÈ^¦x]|Õ¥§tNH:ZìåwdOf¸ Yl6ì1¢J!á!óGZ<Äëò¨X"íxw^&×ò[`d §¨Û!SÔáÔzd +%Sä6ìY9¿.0}O¯do*j·Èãþºü¦cÇFFS[BTä¤jWX!Kx¼\çÔ`ÇËuÑ ÊRP-ÅÔÒã<.Bè`ñpGcÂE&¯Ø3ÍkX$Â9Í¢åÄ^dAöÜü² UÙ~n ;zä +Ç¥9#)B=,óÐ^ßôèɳgBÞXÏÃqÖÜAæïUõ£yzP÷ÈS¾çï¿£ùþò;èï¿m<{ÚÃïäR|{Mþáû«%¢q±ÒÇ÷q±T!JK«¹Dö¤<R@~nñöÜrøæFUÕ7 ÃYU}k¼ª>;詪×xWÕcñþnÛ8�GM@7 =zr#ðäHÈ¢þäg¹Á+VÕ&�ËmÏqib¬§·R@Ƥ§&·Ka#ÇJ`¬q�Y°VÝn5òC#@jT$ ÃI )ÔÛ£BÑXvÌÀî:ºæJÞ°DM),zÞ,h8êA¾%Ñkb@Ccô¸$ îä\ã^Ùéázø +âtKÆØ¸ãÍ2!MÔñfæ{Ñ^ßÔd,¿Ø¶*ÔÙöºüWÍó;Ed{ ò Þ¡.«°¢¥ Q¨xé¡Bºä¡K'OX5Ey(hu&NAU#¬\¬Hé@DL¬óÀÐrHxzyÕI¾¸#É#Ë$_Ð|ñ "R¹`±ÃóÕÆ1�½,=~_¡5ÍV»¨ zM³½xÆÏ6¼¬< ÈÙéè'¤ô£8´9ŵöü|T¬le<t-£;gm|ZÐà I¼DaYfð}OxîÆt«ÙúXÆv\Æ ñÂt(òð½0½qy!V ¶ ´Èþ#äÙ0°ðÓïëV×ÞÐÍüFCÑÞ +3ÇïõÞ +3±ÀC6P´ ðÒ,]�MoÌ]VoiÖÆ÷W°Âå[ ÛC|Á[þ3aë'¡"$§¸ÖÜļ(Yó89óÉcC÷ì'Éi^´ ,¡?ÕÓqmÁý ªa}Þ4êjâ»yðÔ³?êìEñÍ0HF$ ,TêÈ1îµmELN0kB@a5çE*xQ|ÖîBS}bV|!7Y ZË£¥^BA"^»y¨§vC"^{¤H/HO q@ÇHËİRC¸£,MÈtdh @ù å¦EƼë~X/ú¯ Ö.K¦Á ÆE¡ÂD²#V}Æ ÖìÆó +Cz%7Ðïëþ·7ÏÐ@à¡Ån@nÏÚ'V4.O©Øã +h8_~¿§·ÈòìÇô'G?# +tóî'<@Â*C4-x¨#.·¾#7ð*½�<ÜÑóª7ø-¼t J¡ÍQÕM=ÔØ|]àj6¦´H@/Ñ*²ØìK !p})-& w` r£¦$tËìŦ$ÌPeS²g'MIX ê¦doÙ4%û¼ASbSâÛ Ê~öÏ8p{8&Ģoß�kë@WØGQÐ+H^º§|ÏÄ:qXîûMcÆ +4"x òä½naTghÌ *@û>ßâE5Å$9³`wNiÓ8Öô;dzjú±Òkúô~ëÝøÐ5¹TbuQbR¹ÕPOåFÊ·¤8YoÓ +LJRù1¡BõOYs(¨Fô%Ec[[>ÛRúâl?5ÚFÝoMoÌÂô)÷,3áàüókÃù@8¿Ãï÷*(è:FÌq§àèÈâ´+ 'Ör¼tÄ2 ä]!âðíIÜ�©Ú°,½-SöyDûiú¨0kWÈSH +:¢ºX4=HI¸ë¡ i\=Iò¶,]aÏ4P{/lZ6Êò¦dI:\ÚòBÔ#lTÂ=M¬ükT®£(oiÂ=·0¨ ÷QMkÌê&fñ{VMø÷åäVn¬jbÜ¿Mm)uÑÈ åj±YRĺ?¶¼åEQñ² ÄÂ=e¢cO=+à|]@êÙs§È0rñÍ!kè1¶@Q`uHõ·¢õbÐY{2qèÇZA/îU{r£©IGA7Ñ1Æ0jî%å6F ¦Ao¤&w&-¦ ^`âDP]zr\°!V@WB®"ÝS|¬"m"V<|Ï)âbÅáû´?âx+`l~Ïj&ØÇI{ª<þ¾Wa³í¿¯ÃU^ÆáûpÏl4@sc%ttøîE.=W¯ hfc<$k¡=3rü¾0##v ´»¤-@£R)p9ë 6|íð}îL0K|dës'ì$9äh¤E6FêQ½Á2ÄÝzÄ2+Õ8ß²dlÐÒHÖÒPÄÍn!²9 îJñEPÈ&3¢ªYÔHX {é½ø0gáD4Pdõi{ÕÆÉé¹GLÐ[Ñ@E6d=)èSn:tñM Eæ )â m îa$UNÓKªb8s `-!¢?AñDgÕ±xOgdóA7Àª}ÌÂã +?UtJ«àE'Uz±&ÓeÝ^JVG{\`´;°°ïQ`ÒQ=TMȳ+KÆA¡=»§C3}aÒ¤7µ §ùM§æïòÌ®Äï)^¸xÖók¼¡;ñ^i;¥Ëx0:Næ8ÌæØÔа>U¤y{ð´ÊôðÍF<}íS_¿yðôiß÷¾Ôßé�zCCåÁÓôY%¿ßáÑ¢+(ÐHZ3$+ )¦Z~¢ Ú È&Ò_}ê8 #ÇWã·ð:Ú,ÄJ_ä$¡¡ÐCCW è#6GrBRØ3GR;/]É¢!°PS"âÁÒjÏzLøS;Zhvê±0!-ÐQÄ2ä!½CÕ;Ú' <P¦<0;i²êÊYÒ4ɹ¸VW!À6Ðá%¹ú³X¶¸Ê»ï¥l¦$½Hçd ÌükewIãԱ�EO ?7ÄÚ 8lM¬üeT[§¥9 §S@Ø(!cл2QXýÌ¢êBV~Tòh HÂVfÀ ×$¬/b/0Ôi?Á;à"Ö[£YeÃN\ý*4òäcCýhGVl&rôY V¼2àZ%ÝSDÖZÓRD-Ô~¿üX½"6¨)Õ ²úHdEÆPCPpÛÒ`t«?{&¨uhäT-LL¥õõÿ´À5QzÍWȳe901MjG%áZ8¬¶Þã÷]¤ , ûÕ6rå´Ý¯¶q² pØ×>I¯�Ùå+/Ͳ)ç+;ÃíhSTQչЧïAª¤¾`CÀ+"@£C¿ßåg$m×{sëOÐS4à8©ù�IqOkLÖX覢]!/ÀÔY+Ö¨ØÄø,Y¨ ô +3e¥VФD:*hÌ¥o¨Q^?Ä$282¸h2HÓ¤Kßg`;�¬H\èwt¦`-üI\Ã(pÀ¡qe E9[�Y²À4AgvgÉ eçÂ÷ÀT/"¼ê!ÞÚ¢êAV½¡ºs$¹(z RIóq²ª&%Õ³ß5éÇê *ÇodÈ¥¶úÖаÊü{$ÇúLèäáïëêå± FÖ»"#ë¨jBÖÙ2îÆê$-ÀAoÑó +"Ù2Ôö¨ÒðÒí8èòf:Þ«lÚÉY èV{ËXY~ÜJ°Öï"_ÛDèW`x §ïåÀOv�^»±d '2ú}ó¢;9@~ñÛK/hD·ÒY" çkðð}Ï<_K<(9ÖWQGN ?YZéCxgIÐ(À{' +!ÅÐÆÏ3Æ-=v¼Ãkz qQG`Xûå'hæ&ZÃv M¦T±§×Ä/oÊQA|¬{(Ú¾C)è +:²3s´E§äB('fg¬ø¢¡ÊyoRå@ðä²%bQû30õ?CÃ:¨F:I1ô11ª¥wx6-eÔ£æÓ·=JÛzPô|sèFÞ b=J¾Àrϧ6àaz°æ"ê!)ôÐ#tírè²ÂÍ©å¨QôÊ$©æòi% ;FmD/mCÊaKn )Ð:¶ÜæÐôT<¬ç6&í÷in`B¿ß«Eo¾hËôAEíidk¹iгÂn¬ßU(zü}¨DXn¢²é3òO-dD�}ç´Àè®fʦ6â¤+ ,P4à]ü~¢h¡iQ4î ¡·÷¾iý'8ÄÄ ó²@îU3·`¤Eä!Õ( r{EÍ®qEbØEiTuàÀ¹ùºÀµþìzW9ûðôJÞN°\¸V´oãS-H&-;XC͵Å-�\Ï4¨%tÔô¸@\.Êü:ú5·éº@À®|lº,AëÜêúª�C;�×xN²Ùà¥�¸Ð _n¡î`ñBm·\/> §gs/(½Y®õÖ-µ[@]ïÛô'D}W}²ekñÀ-eáÔ¨vZàb,w�d!Á×ó=[{Z@¿ $ÞUªé.'Nw9j$Àtù×nt[Ì{^@ÜË]sðó°«4ºÏów¨oAÖézQl~Ѱ/L~9È×�ï×WÃæÏO÷Æ ðñÈäHÃÌû:ίEBþ|gwØEÆhY!à³×õ ´m¸nA=�q}P:µÌCFRÔã¢W°ëö27 pçqÙy¸¦±ÆeMiÛnB<Ü1£<Ôß-EFΦñ .Y^\¤ýsÄü¨i!þöô « ì²æ¤ÙBÙ5æÓ�¡ê°nàÐ>yxqtÀuïïñÀþø7Èûãß Ä,aÏúuÝTÄQ^Ù,n÷MOª7Á õ49äÀvÈvàÂeÙ²±ù&[δqôí«Í§¥½ó³¿¥ËWÔýwX7`X6£.mª°ãåÃiþhè?ÔQ<þøDkF!.ëVu9ÛÀÍØÔé±)/N±©<å;MPË)kbL)Ñïwø©hh¾6Õ�y¼©OÐqI-áöo<´.0R`Ç tæNn?ÀXh^ß OÐCóòzÜ@Ghq¬"ÐHÁX¹-Íw:�ÉUP»tâZ£#Xr#Kä°pîUS(°d×&£tTâØDÁÖhh"ø¾Q+ \¯¾ÅsÿDÞpæ-OªS~Z +¹jÃÍÏhu=¾×ßkrã|úTÉüñ¶ãÄ1Io/é^Ùo�xÄä »¾¼~¿£2¹zö(År%Ij¤§®µöH´M j*:d4¹tü{$óµ`T[]° ±-)ܳå1Ih\<ASØQXU-D0é&x�}¤eÞT¡X,ËÝz5-Ä3Ëà XbÀkÎ¥` õ¦¢èMQ%²@!Í%\À{^¢ícw6¹¤¹³´¬ØCg +!¸ìÞ\Ó¡&AeL?Ëó +H:r¼)!SÞ33 eUHm:V¤òCCz*?¿²ÄÈ"RVØ4ÐÜR\Ï-Óè¹¥]7üÙfjãá=í©Ç#E{jã´99dù§ ÈL৸S` ¬ôãxý±hÏ6 +«(ø¹täLYø:¥¼IÂVåÇrríü< Ïu\DàóÞHæÑtôÜzc?ØsäXé ØÆöµ¯É ¼ñÚIrØj¼V{vdPXíǨ"fNGÁ:ÕïÞäY¤�9Añ£'°ê¬j":¯)cæåÙ¾"Fa¶¯ »f»GîÀ`)[ð(Ȩï%|guÖé"P ¨ñ®¦O4�¨ñd\¼[ÐÚò¤Jôe'â;É¢c@¢Òl¶¾h|È»¯6íP#r +4×|û~Ñ$F¸iºe£=Yjãµ!ÒE$Ï5ep=³v 34':0\¶+t±zdxCª&aiñi¢lw¨'ʤÍõb{åq±jê·%ñÛa1³ÝÖþÝ¢�Ý@@LØáئ¨Qæy¢ÈŶ~Ö[åLØ["dýÝ1å¨)"¥P½2 ç[ØP*íf«ðkAÛÈ£¯üë÷ÝEH[×à²/ð)ÉÁ»C&¸î6Ð Ü@ÇP8sÌßëIÐ êíµã°Å´ücF øsõ÷~¿Kfª§$Äp×@»vôÈÎ#êÈt +<ör¦A +ZkH}s:@® Y«/l¡ ØÃé Øó I.K÷·´/ÿ¸ÉDyÍ%£jÄpåZj&ÙìÝóá%ÙÞôØPmFz´'óDÑ!X²&4¬s ;Z3²¤Pö´fTÁ0Ø{ÈrZYR#×ëZ=P!6O¿uT±¨mVÀT´é-å%é&¦{z,N7á^@Ò2Þ& hd^ êyAÖXolPöà;.GËåÄ>ß;äw¨â$ºdHâú½æ<Érl¸÷;¤ÓÈ|Mó7pMó2ÜCÓ;`Í%h%î%vL|LGjÙ¬·d8°IYSÆ-äûKFPÐïw´§4 âb%µz'î%mf7Þñg +°æzÇ÷#þag~¿8?ûgÀù|Ë)Y è) Èa ·Y|¢ºÁNwb9²´|- ß[TÐd![ :PÆx¿H¤-ófK¿¯ïß«:AËU;t"`´T"zíB@7Ø-8¸cÈ´9µ7@F +¦¬Êàj~3½-Óó +òûCŬ§w&UIkYâã÷:<¡UCó%<DòK]aOUAw¨½¸¾ÏôkgWDKƳ#vw¤ ÙÓäAÜ@z¸ôÀç{Lý"Ý!mo Xé ¡^øE +ðôÊ2xU&dí-]4&¤ ªü¢÷ÀVä §øÅº Ýé×vGH~h65ÇêÖÞ,å�6º§©rú¤*"×úY²¦ôÕ? ¸÷?@cªãþ¿9TCɯ7ØI²IbXÆòÝsRvîµÄ{to/T¤©h<@y°Àß<H½-³ZÀ%,3² ïõÌBJàû®UÓgà©9Õ +ºÔÄÔ$¨h| Zs¼Þ|út^ñÀ¶¤$î¤pàþ*W¬µ$}ÿ¡¥;»q¤`Gé=\¡!U£ èO®îÅ !÷Ϫ1äþ¬-@q'êXÁÓ% +°ñ§Úô¦w¢Cw(=6=÷éüT g7"ë@MØ{KbÌA4w£ßà[Q +ÖQVÂzSD#Í®aFRØÞ±·¶ ,° +è@p^£`Ö³yË©©XhM;Ë êrJCèQA.dmÈ%Ò]ªû¢_ÛP<ÈEú»}Öìy³ò¡ÍDYsJùL<Ä=qưû*"½/Å*'¿Ï+/t¼ò¢ +_@[à*Å¥ ɤô¦ùÞ4 ?Ô¨GÖ`5`-)â¨*0ô{þ@J²?pM±¥grÁQz{î ú,¤u,߸PFs[ÓvChn6¯åU7Û:VÖ£ývìØÕdùêRÅAµôáɱ B2$`Ç@hö¾èØ]ë +è"¾ÃyNÀÃc7 cY×ô6Ko©îØBbSC2 >&ØI \ÌæâÁ È}0D»ãcÏë©R@ª'bDßë KAGx4 +pè1¡¾ ò¬ + yñ@T5!a¬1!«ÁjIGæT)@ºkæ®P3AX|´ I¶IAdzC¶HnÖ"6({cE[ øEÔ§v4ÕGX´+äS; ê04°6Ì«=hCZض¡Ðj÷lXSÞÕK$Ý))¢îKP3AVm ÉYªtÐ#Ä%ÔsTs¾eÎ÷Ũ9Ú©´ê I3F¼·C½C¸ëÒ. Å}ð7ýú4¿'_ßZ�}Bx$Éü=M´·vj¢4 ÇD\Øän£5sDyúI"*Þ\RT§ þ¨RZ xÓúBf(êãz -2 c<;ôE貪ÈA£�O^e8"Ü5ï¿(t#èlÆ5C²QÀ}Î4>ÌöiË6wq&Ýcéµ"w7ì%Ç;D®=ÛÁòËâ ù2¦9<W¯9uÞ÷óîí :»m7ømGP»6FÇã³A"ì¼pùQg[WdÀs¿á/ wLÄu¶©tØoMsÌWN¼û]oaû5ͱá±Ç·#HUÏT¥)Ô+³×Ã'N"V:ÉÏhP3x}#·gíòÛ§öç¥Â+®Òë¨$Ð ,÷¤1<$|Y ¤ÑIãQ)I# ôÉÂõõezê##ÍémÈqI/F¨õFíÒãаK<WÐ÷ú3ìk3<P#BßCÌHéæU\=ÿDYÎXå(9Wá1EèÆµbxÏ;Û'JÁìoyg{§DÛ;#X´Ð8ÕA)è�×sÐ$Êå{ª |¥AGþmÇ_4!¢¹ëØ + Îf1Ãh´3ÆH;Æeã +é×x°gÊ+Tdw8![Ô3å5#cÔ3å5#.Ä1Ì »"kra£Y·4H nLä?#Ðf{Ãô8èC¼¥«|K ÕBhhöJøÏ@�y¾G�1Ú"ÀÕlNíâðtj¼A¿G!ãè¶dÏù5>óñ{rûIbm¾¦BÐjópÇqhÞØ3cè�{¼"LDâ=b¢Ñj;ÿ1H+ "ÃÅ(s1®®Ü)èÕÁúO;ïûÑãÊ÷`ÖlTíÍMMÆ)òN¡Ä{(*n¤ §Ûò^]¹C<)àæÞêÊñmů;(rûê^ÍàØbù¢I¬ÝáeÎÞ´ùt!â|É0lÉ« +ám;rÑÕ£ s8bÍû>84$Æ Ï"qt l,:$t³HLh ·ÝÄ ºErmÚâz1§Q}ü +ѯ²Ü30·¨~©È¤iHuJø¸Ù¦ï!úM?¼ÆÚä=Äî÷,O` }Þ#8�XdöbOãÍ©êd·rÿÆøS¸Ó,2DJ(¡tP0k¤8m@4IÐ%¸úµ,Ça/ékâPÃWX©³ôÓú_ÒO<o·Ðâ¼�7:¦$æ2Jú\ë1N�=ÅDAyê²ý=ÌY#�#, +] `O³" 0$ìÙ,¸ Ðâ´ +c@çèµú5@oC%Æ{rlzKy>ª¬ÛaÒô�HØQ© +cyªÖZ°}?N*bl[ 2¼ÙYãspWcLg4>á&F¥3¸ÆÇe®LÇjÖn ¥lÕY»Âé:ª-ÛyÚ^´NxÆÇÿmÔàҤ̮Á%+éYÇL®;X0TÒó|mPn!dí¬¤glÜ0ôØÇè%=ñÍ-*éY#ô|&½¤ç±v¬eÑ·4+é±ûaaZkî%a¢<\#qRN"º6<ÊGÎiG©mrNòh½·{ù÷¥¶(L*¬}'FÖ/ì%¼e[¨�g6óÑî-%»NcÌ%8ý¾^Ê&qÿT�ý~Ï8IôM9䡿Ñ<èñ,Cÿó4Á·%,I£`kà0KTÌP[¾"Ð¥ØE?c{ðB}/EhÏ(¿¦ºNßËù^_qÌOì@mÌp:ªCÙ:ÎÐ3=åÅC=³Æ4WVÚÎ,(©&Bk4ÏQ1OÐ=V½!½Ö´o$ |ÔXA ¿ì| +ãiIÛ_`Ñhæ)È* ôüÜaH5 s¼$ +ÞTÙçDyG "$IsPôû= +QUÅl¬-@S-UaØyH@¹xsØDmtÐÅ{d}|Ô$ s©¯ÓiÎ4n%ëu@ ËaECZ%UaÏPH¨×µ#¶ï,éYZÓÔrÊ8¨f8*¦ÉXUnàZUFQTå:² ½=Í© lA(0«n9áa¨È:xxA<LÒ.jÖ6Ä;hÀ Æv>©~9É/ø2( 5EDcDaAh¯Ã&ï¨"HjhÅê0 䦵4©>)µ`p®K08ÕSÝzÞè�)¨S ê²emüJ´ñ3$Âú}£<ôÓ§ú_B«¶Mu¨¯wïøcÆç¥+Gl¡B¹&ò#OÐipú^oÕ°¸ |Fá roÿu(Ckÿ´Âléôb eÞp¬Àù[ØÍd Ü`Ç|¤`¶´Éä ?xô½Dì¢}�E°cX =6Þ@BʹaÖô}j Àc±�¨Çzj�rÜ^;è@"ÈE;ÅÄ(®êò&@è¯OíO«ÄØ(·_Öêp÷»×¸Ü¼FCc¾Æè²¶@ÎátLûlËÓÊGÿR'ïA®Î\S¢>bØ^3)4I¡S WGÆ:d¦¥iÀb¦Q&C¬¬40ëøÜÉ ÙTzS½<T×ÄøIbB¸ü>sL ApLt#tåÊ<chó0CnH +{E«Lk(jÛWÛ/be,Ë-°^y¯æÖðÑȱísÈ WÑ ô\¡eI£|ÙÖC,É2K)ÅîÐï÷_Í^Ú�-¥ÊË==ÞôØàøRGM¬8Èk¡ðP1èzh,AÍæ¬ °-QÇð4¼½|æn<WÇSógl&:Ö!/è�ÂȽ:ÖÁj8²oe»Ù`X c8IEA>ó ^1C +tä8&¼ +$<ĺ]ut¡»¤ñ |¹Ü»àvPxt ]Í.³v4Oe/ù3´Q3KÒÍ%qÚ0Mh/×pdY³G'Ðß\lôeËPDËø75!Q$ML¯pÚònj°8QI!Õä¶/"!Í.8d a²@9ø6 X¥vpͰð,h>!Uè:zIit: $U0¼I$É"6ϳ!»{NMÌÚ (¨uQEóK)Ñ ò>¨MõésºÇЫëQ%ˤ]uy¸eóP <Ö{dT%Ëö¶tBß0/ë»ÃaQ×Ekã.²ñ£^ÅÞ*Óö*Hat gSB¸z³y5°F¤y¦|¼·ùÕ èÐ>99 Î+H4õ K¢aN© ð%q-ÆxÒpr-IÄïok¢,zp?à\Ä=Ó1}Ffá´ÿÙ½fó)ôû4OPÂ~CO¾d$Ub&-5@y ïî`44ûU¦Ï�M4Ìv"òrIÚ� R´²AÁ&ªÆÔ<dõ$Ê õѼû©úHHU&"½^3^Q5D1"©¦ÏØ©4O`ÏS/ÌÆðÓDCÐ ñ²§¸D;Xw[%Úe(Ø:ÌB¿gË¢Ù2Z#î-ëAÃ÷"ðÈvT§Æ Ms FÛ¡!¸¡kR¹B8ÆrÏĤÙ>£Ü³¦qÒ6@¹pU.di|Ï!Ùë(mÉÞ,2¨Ö$¨XòzFhºQ `´ÐÛÉæR¨~5+¤ÖLBÈé�\IºBÞk}Z½Ñ Q\«(bØÊ0�%¹@wÏP41á «uÈÒ) Ù§ )Ò^9´eîH^¡;»÷zÄ^!,S¡ØDÄivÆQÄFk!!ah!ñP[¶ÕAÔ;c8{«HüC{UìõðHÁ, +üz:@G¢ þx·Ïܾo¢ ²m@.+õÈÌ)ÞÑ0NÈW°74®÷zxÄú<U +¸Æ/¡YHè +årªý=)V[ÝbÚZmuÌC[>Óë!=Ã4!1Vrt6Ó"j<ÀË h@Ïåµ÷ÈN¯"()hÖAÄAl«0ß4faÑT)Íѽi²N<¢ðª" %þ +²#Þ}¯iRÆkzBbÂfD[XRezX¡K§'ïE-UJ7Ô+`Ù ¤YÓÖDQÌ&z´<2 +å!ôYAî +¬Çhí¼Á¥X� u!IºyAtÔ"-/æã»'åEµç$²z¬çé×£° ãé7ÕAeMÐ"ï]Â6:z { Dãx Ä|KÚPQ·:%ÈDzõy4!I¢zÕ¤ÃJôÛàóLkºå'D§ò°5ï¶x8_®°lÜVHôàå÷ztknuóðVÑá<öü@ÃGÛ¡$èiô(U +B/¢õIð}\èâE +$UAl®"´pXxo]á>£u <?Ñêï®1±)¾×!eÖO§úD�ú{ïÛ<H(hÕt +R +¤Q +Xz "5¤1$n:5I&0Û¯p(.Úà]³¤Æhl>ÃÐ[ æ¬ 1Oø{X{à^+½F+ +M:V½E)b@z^Îz¡q<;0iRÀ7°LÀZ,DAúîjXñBP¯@<ò'Ê?¢©ÐU§µ�g·y&G6FóLαdDóöXàMéøkýÄ|ÝÁµ2úZ_oóL W:r´#ð(suÌÓè@ -AyÁJ0âñýXB[ ¤Ï4.¼-¹i{-�h0áLÓC¥? Cî(â>¢!®CVJÁ#}¤{É/¢>c¡ B=_Áü]V<¸gõ +^æÜvФЯÑ;eÈ|(dð2¡+ì¼4 +rÄÎQ£~j3il&, W)`æ;?è+9M2XÈq=]ºb~>iè¸@4KaÝFôv'ã~Á2 +è(£°øæ@Â2 ++iôè\{ÇqzÅ\v&*£ØèȳhW@|kâ>~¯Q¸Y¥�+£à�Y{ý<^!(£` ýþ(HIQ<, W3í#EZbÈ4fi=ibHyhBL3Ø<û§0V qÒÄ2°P(yÑðDK6@)0ߥÀ¥H.¬R@/¬Ý(zQ,Èv@]Z=X[2HÐQ)è(ÈëB{£¡Hé÷ J±3Ðù;ú&Haÿ¦q*È!DÍ~¬bA×d¤:<¢uÝÚòXDà8ð +:p(÷àP =(XÀóÿ>½Y²µ{øý�À2ìçôL´åÇDuGêóóºîÝAÙ`O;ÐGX¯Iÿ5Á²b½ °^mÉ©[k?ÒÇÖâºÿùåëoÿñØßã¿ë?Ûþã·o??Tå=½EEkpð~1 I²ZƲBÅ}L=¾Ë~|²ft¥Òн%+²FW§ÒxÞb9À8ä'Ó<[-^§"åÙêñuólWYªèÕ!VF|¥¸¢:BèwNþH.]ïc¬!þ°0Æ4kÂß>=ܪB:VÇr6ª0ΣsAjm¥âXtâkEÒºÀ_d°¡Ç tÀNð÷ågd_±öZ¿Ïä` ¬|ò@Ìcr°bl¤19Xr¯?Ô(UüçõcFÉÏû:±ôk¡üúæ2øPn²UUŹeÕðóFi�è5¦ ]#êJepªÃ´A ¯;ø8Õáê`>AyFêkxRѽÝc\2¸ª£$b+òéP]wíDç¶uÅàÞn2|¶ì ËúÑ7, êGß°Ö®çZoXWn¶3kÚÒÀ¤Ø ÁU«[ÛŲkµw ¿¦ÖÄcsî"[ø±ºHåÉÍõµ4f ùX&T¢·3¼Cr2ZW¶@ÿXóméK1½AÄ6�ß 0¬CDïñA-8ç}¿ÇSÒø§µ¶áqZ»/$ãDûGjSôé;úGf'1"í'À¨±U6ÍEA^ÚôÖ=q6ϲFKÖøaY´#°µ0!?iب±a¼Î2½å(eÓMãQ?Ï8¥÷Ìýå?þÂù¯_þöá°®ß=Ñö~ùÇÇÚéáÝ?4ryüß|ýÓÿøó×~ÿëþô÷þåëßþõ_ùÛóýÓo¾þ×ÿûú·ÿøù÷øÃׯþé׿úç¯_|ýÇïúÏþöó×ùúÝÏ?ÿå_~üñÿøÇ÷Ï¿ûýß¿ÿôÓÏ?þêq¿ýÛÿüÓÿùñ/_¿ûþÝÏüÃ?ýòÿðß~ùØÝÿ±ò +endstream +endobj +422 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 990 0 R +/Name /Im391 +/Width 45 +/Height 66 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x¥Ð1Â0Ð_eðØ#ôìLDâZH4GÇÀGðØ¡ªùv(UôT)Müû@(P!¾/>é®éZªi7kª)ï?¬Fq<Ý;äµÏÕI02U¾¡xcòâgï¥Q¦øûv9:¶°j8[è»ËO-wÃÁmÖ5Çt½#\ÒU´©cd`ÃÄÌXSÉ¢FübÍÄüûÓõÖÏoK¦3 +endstream +endobj +423 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 991 0 R +/Name /Im392 +/Width 111 +/Height 69 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÓ10 áA.}¸ +Õg-(¢ÀÑ,íE8%òì¼g;)«mÐ|S$ñ£ªQFU±Iÿ)7é£=ä.2bè5ëòú·&{®yí©%¯½jÉkGÍgȦzÎë¤2¼Ê«}3Õ»&_c¿Ã*¨¡ä,njgnq¨CÚÂpG®hè2RÊ´ Àp!µè±JªWÍ(°$MÙP²$·+@sMÙÚMV�Yνiq= + 3dCÈB5èQ´B#aÝ¡@s©×æ4n¸±Ë¼(Y}\¡¡¥H©5©}þ»ï´ß³òm +E¼(ªgÞ«â¢r%Á$¿§fÏÇ÷×w'D +endstream +endobj +424 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 992 0 R +/Name /Im393 +/Width 37 +/Height 56 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÏ1Â0Ð_U"½�'vF&z0S1û(=ÇUÌw:1°¼ÅÎÿñIE1iP¨ =ÙO¶¤âQòÅú h½0tÙQ'¶aç«ÜtàmpJÖJ8×ÿ>PC¸fè+ãÂ3+ò6(oîëýù¾}�×Etl +endstream +endobj +425 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 993 0 R +/Name /Im394 +/Width 59 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÑ1 P#GðÆÁÅk<£GñÄo _c,/òÛ¦Õ¹$ +UBt5¶¬C,½8¤b«V¾s4_ëi}öS±OY,sóý£ÿa·¹u¨s¶ào·ÚzÖ»ç§áà|û÷^ÌäkßMËx°ïÇ +endstream +endobj +426 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 994 0 R +/Name /Im395 +/Width 63 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmб à á((oPf Ë®²+FÊ,ÙQ²�%âòpL¤H©¾æ8ý|�`4ÁFW¸,Õ¾*ºG Ͼmþt¦ºÉ·Íu¥®Rw¸'ÓÐ¥t7øaV.;MCCK_¢@æ£?öîh?müÕ _Ø¿²üB£(&ôc4l`×¼ÇÖ «YÌ#`¹Þ·7ào +endstream +endobj +427 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 995 0 R +/Name /Im396 +/Width 27 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°o``üÿùÁö~9 äg°cào�a h ûdüý9Ùù ,Ï ¶d?È ÷0�Ý%^·T�®I4é +endstream +endobj +428 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 996 0 R +/Name /Im397 +/Width 60 +/Height 60 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]б 0 á³,Æ +H^ *{0BböJs£0%ÂØwk>7þ¥;¢2tð7ÅdÕÞtIõiÖ°Õidq¬9âRm Z1P»V{ØÁ 25[Í]Ϊ%µ)ÏM²dw]^°/_vÉ9$«²jXaê.Y²¢jÂMËâvðS-D&V%W´bdÉÅô0fËuéfÃðý¿OjB +endstream +endobj +429 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 997 0 R +/Name /Im398 +/Width 31 +/Height 148 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x½± 0E¿å2à�fJ%Q¡Üý± âU¾ÿuþÿ�Ô�Zá%¬[�?ðÐòÔ oa8õK¤*ÆI%){&¹Y6DJÔòÚ_ðÁoöøg«?X|§ÿZ´E&yÊùù5çêRM¶ógì}±?©{>YdÃs¼½»½¡:Ï¡ùÐtU +endstream +endobj +430 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 998 0 R +/Name /Im399 +/Width 41 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]Ð1 Æñ¯!±8»96Ñ+9:k¹õ(=#Ò~ï=ÊòK/ð¸ [[ÑK«7çÖ[ÖI]ý*><gkêyÒwÛÖ¨Â-èªZvf)rfúÌg{ÙÈ-vqiSó&O]¤£Z]ä@q²õ³óAòó #=ªgu@^O¾rÁÀ¿¸ÞßÛ~TÊ +endstream +endobj +431 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 999 0 R +/Name /Im400 +/Width 31 +/Height 148 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x½±0E?çØ!ÅàËÈ£x$KÜ*Åëô¿åÿE�&æÁLÏtI@@@#ÈÐ̼»Ç»ÀEÁDPXL<«Q +j+jLGôéL3_£ü_vùö@çÿ¶ùIj^dé¹õRó÷>¼ïËûÛlv=»l'ÑñXne°ÛINâó|ßV} +endstream +endobj +432 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 580 0 R >> /XObject << /Im139 146 0 R /Im106 113 0 R /Im24 31 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im24 31 0 R /Im26 33 0 R /Im110 117 0 R /Im28 35 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im395 426 0 R /Im401 434 0 R /Im396 427 0 R /Im402 435 0 R /Im120 127 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im24 31 0 R /Im22 29 0 R /Im23 30 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im116 123 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im117 124 0 R /Im24 31 0 R /Im105 112 0 R /Im21 28 0 R /Im22 29 0 R /Im110 117 0 R /Im29 36 0 R /Im24 31 0 R /Im111 118 0 R /Im21 28 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im114 121 0 R /Im22 29 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im28 35 0 R /Im116 123 0 R /Im111 118 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im108 115 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im24 31 0 R /Im22 29 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im30 37 0 R /Im403 436 0 R /Im401 434 0 R /Im404 437 0 R /Im402 435 0 R /Im174 183 0 R /Im215 224 0 R /Im405 438 0 R /Im178 187 0 R /Im176 185 0 R /Im265 282 0 R /Im259 276 0 R /Im257 274 0 R /Im324 345 0 R /Im395 426 0 R /Im213 222 0 R /Im137 144 0 R /Im176 185 0 R /Im395 426 0 R /Im401 434 0 R /Im404 437 0 R /Im402 435 0 R /Im137 144 0 R /Im406 439 0 R /Im395 426 0 R /Im401 434 0 R /Im404 437 0 R /Im407 440 0 R /Im166 175 0 R /Im402 435 0 R /Im174 183 0 R /Im395 426 0 R /Im401 434 0 R /Im404 437 0 R /Im402 435 0 R /Im227 238 0 R /Im403 436 0 R /Im401 434 0 R /Im404 437 0 R /Im402 435 0 R /Im113 120 0 R /Im405 438 0 R /Im228 239 0 R /Im193 202 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im116 123 0 R /Im105 112 0 R /Im21 28 0 R /Im145 152 0 R /Im25 32 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im265 282 0 R /Im259 276 0 R /Im257 274 0 R /Im324 345 0 R /Im395 426 0 R /Im213 222 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im30 37 0 R /Im109 116 0 R /Im213 222 0 R /Im153 160 0 R /Im105 112 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im24 31 0 R /Im26 33 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im108 115 0 R /Im24 31 0 R /Im114 121 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im105 112 0 R /Im408 441 0 R /Im329 350 0 R /Im408 441 0 R /Im216 225 0 R /Im379 406 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im28 35 0 R /Im116 123 0 R /Im111 118 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im25 32 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im110 117 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im29 36 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im25 32 0 R /Im29 36 0 R /Im29 36 0 R /Im30 37 0 R /Im29 36 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im153 160 0 R /Im105 112 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im25 32 0 R /Im116 123 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im118 125 0 R /Im21 28 0 R /Im111 118 0 R /Im25 32 0 R /Im26 33 0 R /Im102 109 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im143 150 0 R /Im22 29 0 R /Im21 28 0 R /Im24 31 0 R /Im26 33 0 R /Im101 108 0 R /Im25 32 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im101 108 0 R /Im25 32 0 R /Im106 113 0 R /Im114 121 0 R /Im118 125 0 R /Im30 37 0 R /Im29 36 0 R /Im112 119 0 R /Im105 112 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im26 33 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im24 31 0 R /Im26 33 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im108 115 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im105 112 0 R /Im23 30 0 R /Im24 31 0 R /Im108 115 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im111 118 0 R /Im28 35 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im135 142 0 R /Im167 176 0 R /Im200 209 0 R /Im20 27 0 R /Im153 160 0 R /Im105 112 0 R /Im235 246 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im173 182 0 R /Im409 442 0 R /Im213 222 0 R /Im409 442 0 R /Im208 217 0 R /Im206 215 0 R /Im176 185 0 R /Im395 426 0 R /Im137 144 0 R /Im174 183 0 R /Im215 224 0 R /Im138 145 0 R /Im212 221 0 R /Im214 223 0 R /Im205 214 0 R /Im261 278 0 R /Im207 216 0 R /Im166 175 0 R /Im201 210 0 R /Im323 344 0 R /Im398 429 0 R /Im204 213 0 R /Im205 214 0 R /Im206 215 0 R /Im207 216 0 R /Im166 175 0 R /Im208 217 0 R /Im206 215 0 R /Im399 430 0 R /Im206 215 0 R /Im376 403 0 R /Im261 278 0 R /Im400 431 0 R /Im397 428 0 R /Im261 278 0 R /Im176 185 0 R /Im395 426 0 R /Im137 144 0 R /Im399 430 0 R /Im206 215 0 R /Im376 403 0 R /Im261 278 0 R /Im113 120 0 R /Im176 185 0 R /Im138 145 0 R /Im137 144 0 R /Im104 111 0 R /Im109 116 0 R /Im201 210 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im21 28 0 R /Im111 118 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im106 113 0 R /Im102 109 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im25 32 0 R /Im115 122 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im409 442 0 R /Im213 222 0 R /Im409 442 0 R /Im208 217 0 R /Im206 215 0 R /Im176 185 0 R /Im395 426 0 R /Im137 144 0 R /Im174 183 0 R /Im215 224 0 R /Im138 145 0 R /Im212 221 0 R /Im214 223 0 R /Im205 214 0 R /Im261 278 0 R /Im207 216 0 R /Im166 175 0 R /Im397 428 0 R /Im261 278 0 R /Im176 185 0 R /Im395 426 0 R /Im137 144 0 R /Im399 430 0 R /Im206 215 0 R /Im376 403 0 R /Im261 278 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im28 35 0 R /Im105 112 0 R /Im120 127 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im25 32 0 R /Im116 123 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im28 35 0 R /Im116 123 0 R /Im111 118 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im28 35 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im140 147 0 R /Im22 29 0 R /Im21 28 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im26 33 0 R /Im102 109 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im26 33 0 R /Im25 32 0 R /Im116 123 0 R /Im24 31 0 R /Im105 112 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im29 36 0 R /Im30 37 0 R /Im28 35 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im111 118 0 R /Im24 31 0 R /Im106 113 0 R /Im24 31 0 R /Im113 120 0 R /Im104 111 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im118 125 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im28 35 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im109 116 0 R /Im176 185 0 R /Im138 145 0 R /Im137 144 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im29 36 0 R /Im24 31 0 R /Im101 108 0 R /Im110 117 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im105 112 0 R /Im28 35 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im118 125 0 R /Im24 31 0 R /Im102 109 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im29 36 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im116 123 0 R /Im25 32 0 R /Im101 108 0 R /Im111 118 0 R /Im105 112 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im399 430 0 R /Im206 215 0 R /Im376 403 0 R /Im261 278 0 R /Im111 118 0 R /Im21 28 0 R /Im144 151 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im109 116 0 R /Im29 36 0 R /Im30 37 0 R /Im107 114 0 R /Im193 202 0 R /Im120 127 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im30 37 0 R /Im101 108 0 R /Im212 221 0 R /Im113 120 0 R /Im200 209 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im22 29 0 R /Im21 28 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im102 109 0 R /Im118 125 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im105 112 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im108 115 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im28 35 0 R /Im105 112 0 R /Im24 31 0 R /Im22 29 0 R /Im23 30 0 R /Im21 28 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im111 118 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im110 117 0 R /Im101 108 0 R /Im21 28 0 R /Im143 150 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im106 113 0 R /Im113 120 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im22 29 0 R /Im23 30 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im107 114 0 R /Im24 31 0 R /Im102 109 0 R /Im108 115 0 R /Im24 31 0 R /Im29 36 0 R /Im102 109 0 R /Im117 124 0 R /Im102 109 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im109 116 0 R /Im24 31 0 R /Im22 29 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im105 112 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im29 36 0 R /Im21 28 0 R /Im117 124 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im116 123 0 R /Im111 118 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im116 123 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im110 117 0 R /Im25 32 0 R /Im105 112 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im24 31 0 R /Im106 113 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im102 109 0 R /Im111 118 0 R /Im21 28 0 R /Im144 151 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im25 32 0 R /Im111 118 0 R /Im105 112 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im28 35 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im29 36 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im120 127 0 R /Im117 124 0 R /Im25 32 0 R /Im22 29 0 R /Im24 31 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im116 123 0 R /Im30 37 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im21 28 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im117 124 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im116 123 0 R /Im116 123 0 R /Im25 32 0 R /Im111 118 0 R /Im120 127 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im120 127 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im29 36 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im117 124 0 R /Im28 35 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im24 31 0 R /Im101 108 0 R /Im106 113 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im107 114 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im22 29 0 R /Im23 30 0 R /Im25 32 0 R /Im111 118 0 R /Im24 31 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im116 123 0 R /Im25 32 0 R /Im29 36 0 R /Im26 33 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im26 33 0 R /Im102 109 0 R /Im25 32 0 R /Im106 113 0 R /Im113 120 0 R /Im103 110 0 R /Im105 112 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im118 125 0 R /Im24 31 0 R /Im102 109 0 R /Im106 113 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im107 114 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im145 152 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im28 35 0 R /Im116 123 0 R /Im111 118 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im105 112 0 R /Im117 124 0 R /Im102 109 0 R /Im111 118 0 R /Im21 28 0 R /Im108 115 0 R /Im21 28 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im102 109 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im399 430 0 R /Im206 215 0 R /Im376 403 0 R /Im261 278 0 R /Im410 443 0 R /Im174 183 0 R /Im193 202 0 R /Im21 28 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im24 31 0 R /Im111 118 0 R /Im30 37 0 R /Im109 116 0 R /Im212 221 0 R /Im113 120 0 R /Im393 424 0 R /Im247 264 0 R /Im262 279 0 R /Im373 398 0 R /Im251 268 0 R /Im260 277 0 R /Im253 270 0 R /Im250 267 0 R /Im253 270 0 R /Im251 268 0 R /Im264 281 0 R /Im411 444 0 R /Im371 396 0 R /Im368 393 0 R /Im256 273 0 R /Im412 445 0 R /Im256 273 0 R /Im368 393 0 R /Im256 273 0 R /Im264 281 0 R /Im324 345 0 R /Im256 273 0 R /Im264 281 0 R /Im250 267 0 R /Im413 446 0 R /Im256 273 0 R /Im253 270 0 R /Im265 282 0 R /Im317 338 0 R /Im250 267 0 R /Im260 277 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im109 116 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im107 114 0 R /Im24 31 0 R /Im102 109 0 R /Im111 118 0 R /Im25 32 0 R /Im116 123 0 R /Im25 32 0 R /Im101 108 0 R /Im111 118 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im24 31 0 R /Im110 117 0 R /Im25 32 0 R /Im30 37 0 R /Im29 36 0 R /Im120 127 0 R /Im107 114 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im114 121 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im102 109 0 R /Im120 127 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im28 35 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im106 113 0 R /Im102 109 0 R /Im116 123 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im156 165 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im24 31 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im120 127 0 R /Im22 29 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im145 152 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im112 119 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im30 37 0 R /Im116 123 0 R /Im25 32 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im105 112 0 R /Im28 35 0 R /Im21 28 0 R /Im22 29 0 R /Im21 28 0 R /Im111 118 0 R /Im25 32 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im24 31 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im21 28 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im107 114 0 R /Im24 31 0 R /Im101 108 0 R /Im102 109 0 R /Im25 32 0 R /Im101 108 0 R /Im111 118 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im113 120 0 R /Im104 111 0 R /Im106 113 0 R /Im107 114 0 R /Im24 31 0 R /Im102 109 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im117 124 0 R /Im25 32 0 R /Im118 125 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im26 33 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im24 31 0 R /Im22 29 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im111 118 0 R /Im114 121 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im30 37 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im102 109 0 R /Im116 123 0 R /Im25 32 0 R /Im120 127 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im143 150 0 R /Im106 113 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im26 33 0 R /Im102 109 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im22 29 0 R /Im23 30 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im30 37 0 R /Im29 36 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im24 31 0 R /Im108 115 0 R /Im30 37 0 R /Im21 28 0 R /Im111 118 0 R /Im117 124 0 R /Im21 28 0 R /Im110 117 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im186 195 0 R /Im28 35 0 R /Im107 114 0 R /Im116 123 0 R /Im105 112 0 R /Im118 125 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im22 29 0 R /Im29 36 0 R /Im30 37 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im102 109 0 R /Im116 123 0 R /Im25 32 0 R /Im117 124 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im111 118 0 R /Im24 31 0 R /Im29 36 0 R /Im21 28 0 R /Im25 32 0 R /Im105 112 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im22 29 0 R /Im24 31 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im28 35 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im24 31 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im109 116 0 R /Im24 31 0 R /Im22 29 0 R /Im106 113 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im141 148 0 R /Im106 113 0 R /Im29 36 0 R /Im25 32 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im120 127 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im23 30 0 R /Im25 32 0 R /Im26 33 0 R /Im116 123 0 R /Im109 116 0 R /Im28 35 0 R /Im26 33 0 R /Im106 113 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im143 150 0 R /Im101 108 0 R /Im25 32 0 R /Im143 150 0 R /Im101 108 0 R /Im25 32 0 R /Im110 117 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im111 118 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im102 109 0 R /Im116 123 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im105 112 0 R /Im107 114 0 R /Im30 37 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im22 29 0 R /Im29 36 0 R /Im30 37 0 R /Im105 112 0 R /Im105 112 0 R /Im24 31 0 R /Im111 118 0 R /Im186 195 0 R /Im24 31 0 R /Im22 29 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im106 113 0 R /Im102 109 0 R /Im116 123 0 R /Im25 32 0 R /Im105 112 0 R /Im113 120 0 R /Im156 165 0 R /Im21 28 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im414 447 0 R /Im37 44 0 R /Im47 54 0 R /Im47 54 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im415 448 0 R /Im283 302 0 R /Im416 449 0 R /Im417 450 0 R /Im418 451 0 R /Im419 452 0 R /Im218 227 0 R /Im420 453 0 R /Im421 454 0 R /Im74 81 0 R /Im42 49 0 R /Im52 59 0 R /Im73 80 0 R /Im42 49 0 R /Im37 44 0 R /Im36 43 0 R /Im422 455 0 R /Im72 79 0 R /Im52 59 0 R /Im72 79 0 R /Im35 42 0 R /Im42 49 0 R /Im43 50 0 R /Im45 52 0 R /Im72 79 0 R /Im423 456 0 R /Im421 454 0 R /Im39 46 0 R /Im37 44 0 R /Im42 49 0 R /Im44 51 0 R /Im72 79 0 R /Im48 55 0 R /Im38 45 0 R /Im52 59 0 R /Im76 83 0 R /Im35 42 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im39 46 0 R /Im52 59 0 R /Im42 49 0 R /Im76 83 0 R /Im35 42 0 R /Im38 45 0 R /Im77 84 0 R /Im35 42 0 R /Im42 49 0 R /Im39 46 0 R /Im35 42 0 R /Im44 51 0 R /Im42 49 0 R /Im39 46 0 R /Im37 44 0 R /Im36 43 0 R /Im35 42 0 R /Im52 59 0 R /Im71 78 0 R /Im39 46 0 R /Im52 59 0 R /Im38 45 0 R /Im38 45 0 R /Im35 42 0 R /Im70 77 0 R /Im37 44 0 R /Im43 50 0 R /Im35 42 0 R /Im47 54 0 R /Im71 78 0 R /Im35 42 0 R /Im37 44 0 R /Im43 50 0 R /Im45 52 0 R /Im38 45 0 R /Im35 42 0 R /Im36 43 0 R /Im78 85 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 433 0 R +>> +endobj +433 0 obj +<< +/Length 1000 0 R +/Filter /FlateDecode +>> +stream +x¥}I³õ¸Ý¾~Å[v/ü`/mExãèÖR[CKvÆr(üïMHÞK2ÏŸQèU|Ä29äð×þýë¯?دüð×ÂwæË|#ÿ¿½3_ÖÇï°¸¯âwåë7?ýðÿþõË׿þù[À[w^ }»uIÌ·õû%t] |Çt^ |§Rß>_pá¾û>lX¾]Ü¿_Êñ=蹸o®äJµ Ø;§ å{k®lX?ÜðßÅXs] }'£î co$° &A± J` èJÃô½¤ºÊOá(!D<tF#ÂCDAg5!à ÈYÿtê5¢Yè}v$t:W(j¿_EÈyÐcmÿ~án¡ÆÂº¤Ú-t·K¸.TD£}ûï5ElÍÀ2baÊ ür[À~"Ëߦ.°*²¼ aù¶ÃýøMfdÑ#Ëi7);X5áNóÜ}wYÀoÿëÊzömáÛ¼ènbïÑÂéb¨IÀi$ÞxJÑEö&AVÅÐ[§}ã�²%Þ&Ê kàWE6yvUêÝ©RÈÏrà*Äis²¼[pA«l� ¤göÜGÕ*<�iû5öI£ µâUpB(Ê©iÏÁ-:YïéæÐÂCä×ûEµÇ7¿r`áÔUgk°´GË]µ¤ë<XÍ¡R¹~£C;@BÕ%SHI@*2t'=tBàn<@`õࡪGxiM¬Ûph®-ÐïqHê5Pîñ¡h$ÌNs +(]¾7[¸Vn§@þ^Ìë�´?Q!M¢+Áù{Ú�Éé{å¡Àâ@HÎP°Äx|ÿa,ÀþS¢öDØE÷Y!ra9�à â5"¼ÁGÊ.Ãç ð¡]ŤH|ä²Ú§u&p'@¡kzBÚ#<�FVñû÷ +F7à +µ×y§F [lGñÆ`H�J/ QbkȸäHK�(KݺlÜm!Òä.sblE%�mJ]É$Á÷Ç�H¿E³$<ý¼±$ý@Xi4Wb ¦ðVÝ� îxïÞ¼ÀÄ=-Áüìx¯)â;ï'Ø_¼\pûתO_ßsÓcâeW úd\µÕMm@ol'ðé´Û5;¤ö²Û=Hßá²ÝKviõm] ¼-`óméäNïÿ6Edw²×E´7U¿£vç\¸ @½ærÛÖ|ìÀ¼1+oVW.,y¨ºdÙv`¾ã n»X}'>ѺÀr<º¤øµ×#6iöl¥ÁÛe7u²ðvöÒAÄ÷n(U¼ÅFu:eWè±÷¶YTwÆËÈÿ +w§U(G°·ÛØèåûÌF£^`áä�Ò øS¯~õk)/Ú¬BñòrÓS(Ér\@//uí:/o; ¹à§0IÄoGvçÂz'æÔº¼¢[ÿw ²ÿúø´qa]À×(¥ºZ·'ë^¯dnÒ°,¡íÀ~6,ð2ð~=û#6Ï?=6â,³DÜÿK}@Ú¸Òà͸:âñawqx"âã×PïE'N1$È?¨/H¥ ÒÛ]¸ä¡ìûÙC¹ûHû©¸]ÝA] Üên·¤ææÕÞr³Å6´´;u±ú$¨OEÞª³]ÏëÉI;úHbÒy¸WYR`ñ0r© ðS2âbFßra5$ pf'¥ðôoÕdÀ yã YtùOóÔ e¯m@ `¨v»Wq +U\TyÈ*kPra*T©þÝ}PÅ5³^©PÅå¢AUÀE(Ë#u,è×´2rËòLKjϬ:ö ÄïßDöoª` +ö¤*YN³<ì½a9Ð/¯`�ÁôEã ò8Àý·íÞþ!ÙBÝ®. 5É<3g> G·Ø§üìûl9©A @äY{r¯ +±ó¤hÑ®1sZt±¤ï'¸]d$9¨kPg°¦ñÍ"ÛHgKØaÎ1DnQÐu!]¸¼!UHmñáÙ=º.¤_õ×CP@ç!¨÷O¯savRÔÌ©f Qj¥8XE¤»ZÔu ³v4~Î-k×É-á¡ßßÄc^ædXê3$´ÁßOyT¶e¸°E/ ¢»=Ö¨ G»b9CM·h@O½XVrñ§Èâ"Æ6Ùõ¸¯¶r©õê?¾ýñ½ªñõïýíüÚÿÇzû¿V;~ 4§Ü]ÛÛ-ðÞh³°à{÷ùvÖVQrBkK7E²Sɺ,àú--F»<R¶$êáü¨ bXüc²vè·dYÔ©7gÕð9nÎe>Ç͵ª®*0F¨&d§4Ìú²ºðD +¸zBÓ8UQ~UÒ~ßÞßàÒBr�PYG§7©¿Ï}W Èçè-Í¡YýNvÍçÚ«Ù;PòàÔ&îCÉ=»Þq�åyú&yÕ<ĵÎÁà:,áÚ«@r�@¤9BH<'àPõÀ�ÀÙ{^/Kä)<îÏ(þÈçâ©Ë÷tʾ_Tw¯1-åqÒ`H5CKËVXMò8e° !°W¨ «N ?B\Á>Óä¼1©ÉÃ;ôYÑ÷¬7Ð U*ü\øÔû¾Wø4.í÷sÜ«zl¢N} X·#øÚºÀç4FiI$× Ð5¬µðiÓBç ÐZHZÿh s>¯ ¤5Ìy¼Î0] +"ÚæSg;SÛì4°yb©qÉ¢1ìâ©ïaù)õ28@Xf¸ àòÎ:]pâ¼�tKsi8uØ×î_Dê|& ¦ôu)ªÞÊ,Ap£F>¸~Ó sY4IÛÀS. ¾=m ¨å÷v Ö Mút¹EÍ.$ 1>¡4.8ÞP4¦=]!®ÖÙD`Ötzv½§"æÈ@éø4¸9cIß¶&-4õe!x;÷ëÇû7U4ÂT§lj + é Ä Ú�î £ÚêÝxÏ@)ä-Fðå4)ÆWÒà hJ Ç5î`\¨9ǯ¨,àkCzD¸¹Çû£¡t·QoqP{ðØ@94 Q/|á´¸` ù©$Ð É^¡SÔÛFéÃT¯îê'ÂQ³dÐccé)×;it =²näcöìÛ*o±Ó·âbãçÞ:¸÷n>¾« +«|o-ÐHöH{rO0u!5ã²êµcK]2+ê鏯Jj}èäC#5[&[«(QøÜØ¢\âOÏM 0FÔLÉå�t-FYiõÖ«Âp h,·�RGþÉ<и,$�<!ï5g +ÝþäûDq�#Da\d¤Ê0´:y¯9mGZ#o1ìûZ+èï"äèÆNÒagÕó R¢ +^!á@¥Ú¡I»·!L¬î8IÕc´S_¦gB¸[ Õ[Ì·À£ðPÑ~¦-!ÈAÁ·:ÄøªélZ÷¦§kþÎ=Zów`íòþMOVhRÀF; ýÅ«ZN"óÓBÁ>¤`H¤³2(ðå8ñ-Σ<Æ»Øb¥è-øÖ¬;ç*C|oÁ·õ Ô7½Ü©9vÑ60Ñêþ¨R_*;îN,løUÕ�ß45èz¾ Áip�]ðtTÒG¼¦î,L·`o"BØëÖïß')-¾Âím5rñå ¼w£¹ñ0Ð:´®D!2·#[¶¼ø]`}ò['ôäů§ +L{äàøsÁ5Kïé¡ñN¯ ÌeO¼áçJ¾?Yãe[ÓÎ`h^Å)÷îÅF�~ÿ9>ã`1ñp§ Ob*Ä©÷%ßëåV(8Ѽ¸ .¾þs¡$¬²!ïØ¢É߸Ö9�ð�òÚÒ=� 8åâôHi¡;LÜzÐe0+ݤ®(·ù\Må;âÜÙ|,ð¡âÜY³þôõÓFòʲõßþØÛ?»W)âýïw(¬òÇýßïPxãÀ];¥Lõñ*¶ï PôhøéÊÖè1;×èQ:pGsò¨îdàV)Ú\ªóî]a{½Õ©á¢}[ãÞ5µòþcßV¿Ù¾»1X?jG8Wj^ØèR1\Í=Äðø£áþÏîb<ºÚA[Äðý(½õîd"¨ìy(˽1¿¿ùM»Õ*µÊ°Æ8æMÞ{]Êá\uvNûåpE®ûίÎr#"v:»7Ô069ZE4ïyÁN»ï5Çõ1ÓM®ñÈàðÚ|5i«"ÌQÙÎß._öz¾ªÅCÞÊ(xk8Q@JöóÞ9i?+5$ +µÝå#Q¨x% +H± i'8 ؽ¤Æ îÎ d¤¥¦ÎzY}Á¤ò··sÓ»Ó\»"åí:¬Ä|íànZJ¨9mb>ª|Z´}¾á,ßý¿ÔÀBÅ·.�ÕÂw;CJÜ`áZdðÄ@u{³ºân¢XÊCQ\ÈË�E±:hDqÕeQJE0 59 R¸P§(9@NJºòÍIù°99Y!-Þ¨;ù¯öëDzÖ®¨¸ Ù|¶Ð¸vÉ+GÈêh¯±õû¹ÂäLæµdí|óØü¢ÀL%wE^ +±Sâæ À?§JåRï�yÑD`$5i)ál0.ÜDVôÚývßù\0.rÛÉ £1®¢è `"*]²G>=¿÷äö§Pp ·'hzd$·§ªÙ°¹=¥Â´*é=U3SÊ#cà²&Ce/.iU¶xÅk×ð|Àì¤"°ss0e®ö <¹pÀ]ܬ=HsKX{¥fzÇZMUM^µUU:ÐUëª| v+r¬^-ÁÝ5à«X¥ûï´G�íZ®4¡H¦DÉ ÄÑCóé걩wÖÓ .ðé Ô*�[_Ñ÷?~|û£°áíê A%µùêÜ;@+;©Ì½xÿ9B(|2[xV·bî 5©RæÞZ|zÙÁÀ;@nøí*Msï�eÏ6®¼z¨øívÞßÒİVÞZÃ×M÷6ð°C§Þ|Ë +1̾à¯/sï�u§áiï�Ç!V»2 þÚýnùþBÐÐ¥&v4l£j/å9аo¾Í2ªhú6WäºÍ4/"Î-ÅåBÄÐpÕh4¬G SæØÇ5U{¯4ÒBV|#{Z` ¬Döól<e=ßÏt°-íöü½ZÊzõ´·ÝÚúl0ÊL)r±kXMkdòvÚ@ï{\ÖüÓ3 ùV;¶$ò�¨°yÈö0Ûe¬á0VÛÁ@ QïßjǪhµc£²À@«ÜºB�· (V;2ÁC�zNA¬ãP k� (Np)WÐxÈ×F¸±&Å©<!Å�7Îñ8ÁT +ÿv00+¾xÍò³âUU6P¶Dí÷é/ë| Ðo¤°åËvQí�¦;eµbV%oÌê1÷xÚ!Ax*tY³cëÅÜ5ñ*tKvVÕ×c¤´OAeÍݵ¬å*W>R˵.ÄLÕ¥#üziõc¢`fÚW«G´êém £ 8¯² "ÐkÈk.á@¯!ÏiÒ^«YPZõL{e£d7ÛQ[ú<´±{U>>ãQOSÌ·Ic!Õ2LJ±Ò¤GÙ"³/Ôô¨©×/ÔT¡Lj:?Ð4M�ÚÛý£?�+¡]N0P +ï§¢óæ×ækS "l* +d 53îÊ�^ Ï. Å\{x]ÏjÏØ*>èøÔ^±/ßÓQ43>{ÃÝç$yMj:I(*Ü%Öü\J5ÍAÉçéo�B9êâFÀ;�,JA>°Ú%âÛg:]ÑØ½©±©öÒgfzI»#cÒÂ^ïèzl�ß)&ÀwJaoB'µô^ál¿ðïçvÔaÔê%s$ÀøªÊùAÆ4faqAÑDí¥UKÏàaت*å; ³ª",Aeõæ´w"Ö O©9Æù4þ¡¦üHúléB©éêBôìV{½»WÊ'wúB^d(EjOøEKz¤á <´�ÍÁ¨!«t~ÔÕ®ÁÀ¸+§RFÉdvïÂv9^wIh,¨Z¡nÄåChMÙ§ º4â§,Ð{âd�"$tKah&BTFûò·r±¥3�%ÒÔQÒ5§NϪûª½xkÊe|ÝWE(öb¯îLj)gò2úò=ßL¸Í»ò` æÈ*B0ðà Ý^.'àµ#= +àV+F¡�?µÍµg¿Þ÷¸nyÄÁ_èswbËJg6Îð$Apè4 +ÌÙñYcÒÚ#!½h'æFB¾_OT 4500¹ëô*2ª¡^ÕF°Ü-e{âÎ]¿ÙS®ëÞ)7tµ;�Ì*Côwäp'WòvÃû®*ÿ\-ӻŸõ?Îê¡ó¤¢yJxßá!î¤jÕ¤,lÏ8VfYK8ÜÉá2¹¿ DÆÂ.Í%UIXªHµhr¢Ù8] +ùçsÿP×2FC|A×$ ´ð<ªRxSe`PÉH?Þ¤ÉÀ@\²êRñÓ³êTòçÑQ9è8ÇÏÑ1ª©Ññ7ÀWØÖ!ÈçN᪩ÑqÞàæªDj Â~ÓîU"0:míßÎ4-¤ÀàÌ »A¼·$nÈAãbPÜ2Ex1f¬Ð%ÈÇûç÷{-A®b<ÜäÂBæùX +"wzÍX{$Ä£b¥ .A4*ºô^¼g�,Ç-xë̽ÜÌìGá÷M~æÎzÂW¯ÑÀ~TîñHz¿áÈQ½F|EË˽ÆÇ~÷dû�9RÀº¡81¢ýþ�Z-í4z·úÕÆp@%ÈG~1%7<ÚÒnagôê/£N.;0tÁoyµW)⣣Ã) +ÑÑ"JO× * )zþ�â¨k� DÍðE.>©ûççaKJåê}ÄÉ`GÖ¡ô,/4±/¯öû¡Õ 7@×ýñyïâQÀªñ©ÕÔèÅáï«[?NÖ^%¨§Fàã¯ç¬"ë¢vøGEªPXçàkÝÀIjhƯ6pJÑ~~æ=8äQHvJÒìT¿(ð£Ç¬d\6 ¼ðZ²@Roz ëïGjÄ&Û{üD=ÇÜ¡iË|~ë:z¡!ߢÕý^ïCQÂC)\,% 0BÒÑÎßóâÙw{&JqEc�=ñèÈ�èÝB¸«JÀÀ¾×$` »Û³¦½¨à[%C�¿ÿî +tKºzäpHAOáíÕ(DêhpYm*jð(%æ;H +&©³ÆÃBSÃ#]<Já.1Ø["]vpÇîÉ>ÁïH[}»÷ ~ô8Ü£`/ÎmZy5ݺWN×lQkåbÓk3µN¶5á8?dÌ|òÉ [ê(âr½¤üþ@ëdc9 zDª\ÎÜõNkª8wÁÁUYc?ºLÒéâd5òXy$ÚaH-�Z¿<!Jz2\ÄÇn ÔðÓ<cA"Õ4i!¯1BûUäqy¦F\W#ñ=¯s¡-5D(¼D0Êè¦Á£Ú®#é$ÐéàÂi^}%?ÛÞ«Æ +¼Wm©¢HbëS�5ãѤPÉa;ÛûUÆI}bm `AÖ4)cˤØ.qÆ£ýª"à£S»]ÕP%)¬Üèz´Z»¾G +ñæQò5³ÇkAG Nl5-0˳éÝÌáÄÑ´SfMpbï(!¹tAsGF:6ª@X¿º¾/[l\P ,ïBkõT=ÆçÔ&CÙhCÁ»"�Qby¹÷½>* @l¾[0 +RùÚ(ó@Æ#ÑÏ|Ö§M ønÕ2FBþ¹G±ïôOÀè}x¬ +Áp»ä®@x¢h$àã ¿5Èb²úû<Hh´ß)Ö°Àwº`¬ß?B+ÞBXêå´ ´Iu»Fð,jÃ`p<%¸¡Ra¯1ࡪ ^ìrÃIUê¤v¾wøä%eBx!ʼ�¤ËÆC:¶<^V!-¥[r×Âk Hmç Ìv·¼¤p*³ý(xd7p»eG34,sº<ºg÷Ø;í¥c:Ö£e ä!Jçä¬DXjøZ5ßhtIrÛðsHdËe~Oê= Óü*jëI�n <Ü@Q#¾úþ(¹ìÆ6˾WJ.+ƨå³ft«n` §TUAîiOAB§Ó 9æ¨å´êPÜtØ0Y÷*ù|NRB+´Çßé*A¢ÌQ� ²ÂxØØ@ââ{Xò4äegÒ«î¦v!Êælë�qTºnÕ3xüªc7W·-äë÷ +5Ö60Ò0ºëïC +dOQ� 4°ô)úE'Nzó¤!BMÖHÀWÚðÀØÖèfcvÐÍq ©$dRù#=tî%@ù#ÏÔÐÏô.uè±nÀ¨ª¾â898}¤h"ÀODËÚïmöÂUø¤Ú´·�ÄèʾÜu H¾_f)péö<kÌeUÿÐÜåûIDÒ·~Rôiúò» ´;à¿>ëP5!ö!PƼfÉ©=ÞO 5 ÿ"sN1.÷$=*H¢ê2íÝ,°Dî"!¬9HNìmWS8ùtA:ÇOút2Pª/¨!öû +atíNÑ«Lº2~°á[Y])|w.¡Pb"e�UkÚÙÈDðM´%#;KòËL5¢9r0ì\£ÜÓöªÁïKbuç÷ax.2h{¥÷ $Få{U$iOhGKï¥V³EǶS1ã{tfºÈv[¡!a·rx |: ]8ÆøÂ±�÷[öÔ%À)EeÁ8@Ð;ÎÕNÀ'×;í ÄÇÞp5:þuæjt¤í6�õ!�èî&vÒü «Q }¦rÍ"ÂC~&CbKÇoÑ¥\ÓvÚGÀ"¢Q@Q¥8B;Â@$`±t¶ÚøqË´f8B³f#ÓįïAAªRHBϨdÒà4Ïc: Khâ3î�º.*0á¬1,HàBîçÏÏ\Z/ ro(¶¨Î�ñð-ã®Î!/÷ JP}FA$;° þ:àÂä:À pæª2)º:2fuÐMt6� 4zdÖt8ißB¬tFAõÌJ"«©ånHµ$²+¼7Ä*ä}·Ä/pÉ0LiÕæsÿÙKoüdd+�qõ�VµL«.Ç÷¤AGòÁü +.ÜyÈWüÉ«_9 [Lx¢pÁ*$àßj''Eù<º£S0®³ÚøöÎr2+'C0¨qÜ5î>þ÷E�<¼ú¤m` 8"=Ü@P)ÀwÓÕØJmEOÃìÐS¸¶ASÅÙ9>»Åòävb:óè1©ÉÇÿÐ =[3¢Í3ò!<¾E ²wºm«zhZ¯¸³nóÎ%ý;)ÝNѦäèݹ¸Ó5k îym&æÓøÚÕâ½r/½¸f-ÁÑiºk:¦»ÎD§,áü=]r}%ôA·,¡çNÁlÒÂ$»seHÊ +ü¬1n$ôG;¼qøC§çõ«_(xtzî(/Dí4 ¤&ÂÍ4M:B¤ªR¾az6¬1Éù%][dÖú×¾XsYÙÍÖ¦ú¶Ôóz4kx=�LmK?¹lh&©g4ÒË xM á¹+fP½ð|^B°¨< Ó¸dÔòté´<+Oäæw �ÏZVOÀx¯±íZóïó9PuÈ`§>Õ®¾¼×µ ðSí\+3«ôoä§ÚÕæuª]½SSíj÷ý§Ü§ÚÝó'=¯ÓÛ^æ ÜÍAúåz´Eøæ;Y·ªöÅ ¬@ `¢X±:þ8Q¢$Eµ'üÈîÖÈ¥« +p}æ +~=·6Åý"© QG£/yo +4ïÅø2ãuAm_@é8QË¿Nð.DüD°Ïµ»ìé-¯q¿Hé¬ÉzW&îÿ¥>{l;H§#Å¢ÜwP1àêXÉÞÃ|e Ó5NßX§|¦æGìQQpB +ö¤Æ -ªÉ¨ÚÚ4[Ûâ\õ¡dE6mrYßAKòïî�É4ãwyoê ßîtÒwu¿ÃÍ&lV©uªöѼÙEetå}E[ )Ç]!í¯:¦»û]p^§Z)§©@§4$ 9U(¤aó ZºBÑ8® ëû>ÜÀ®>¨5r·6",þXáecY¤»I¤dÜdW%EÅE«¥öGÚïñ¦K7åÎZÍ0x-ØÑÙà[fM Ȳx§â(ëÍy$-Â7×Ƕ¿ó#¸I>¾ÿD}À;éYyþ~ ·M/ +Î<cØl4R9ªût+¯` ©¢PûÇ Ët% _2R²F�ÚKór´Ë¼+¨Mgx~÷rP°S6ê%lÒX8P/ñRoÑ¥ ®°ê%¼h3[/a©[ç«B<P/aÝÂê=º .©jh ^Â=¡¤p¨^Â+ªÐ(02¥,aËÌ%B<7Á8|vÌäèSð kEìd9¾e7²*<«ËQSÍ`F^ógòBTj¤éft&YoÕTV@RU)ûµ¼ÖîÐå¨#B î!Ìlɧp^'Å0»iÑìù�tae�ä5Mjª¼ç¤ÃC× ùT¢Ç#\óÀÙsØOÁ7Øó¬ ïý¯ÛC7¢ øQuèÂ)ÉUáp(fE(q%Nj 5±»áDfÃBnÏÑaý ó:Ý@ZÚ!Ôzä·Ð#§aý~ªBhZàüû|hÛê^.¿?P°`©ïaBàjÔ?:Tè×í»¥×Ħ)(MÆÁv%Çy#)òrpæÁÀ¼ÎLÉ0¬zèüÌ-ǵC0ÃÈÎDêÁÈL¢ûp¿F¯m{ g¤-4tàü=ݶ!ÅÍYÿ£vË3úðÁ²WÄuTC¸Ý¢áî�Lª!ÁÁ½§ÔD¸ÒKu.À©1USÄ7]-"çÕØÎÑWc¦GNÚ;å4±7ê5úPzRâ^é-y¡][1VEXîÜÌ´Ç=äÅ÷îOf(÷ø\óÑS¥¸äÂ,,Úï¾ÕuoâäXEúA¨Öo×I) %Ú4;Ð8ÚÓ°áeIOjlà�¦âB£ ñOZ[®õ&ÎÆu2c6®3qÝÚ«¯¼Ü+¯ðÔðõ¼Ütgu §ê¤Ï:D!¨$à;Æyhûý¤ÅöÔ«Yæa&¯q¯f¥ËCÜQ¢yå¶LÀ5?}?` +dâh]`,2|Æhà±yi8ÿþÀ¼P£ì z g¨ð8«ïí#í.ëÐÉ©Èîg:$Äó4'CP÷Lí !L£ªT�¢È Ao Fxâ(¹Ü/Ó÷åh÷p¤_¦e @ë27Ï í¯ tt70ÐWEÌiW¡~^;�ýÚâZ1|_�$MæÖR±u¾oìRTcÄä »Dø÷ó3\Tà& +ÌVEZî¶è¡Þ<G½ÏåÄAɧU/y`Ë£KxdL^BïØKmZMé*ÞkþÜÀPßé0�â;AóHÚºD�s|§KAÔmS³¶à¡t_À5d(wEÓ¢éÌ^Je°Q (As1õ .A0¤3çLZ-ªÑÁK* +æ6gÒ©1KöïÔKÌ# I�<æ5|�ª'ÂÃcá.T-¬H0Ì=+3 +Hzìb3ý 4ÉBÂ4×1õÀfL«%õfý~*Õ¶®6ç PZ`.à̪¦Ò(k»Ðûø4Ê£²æB:òH~éð�¢;~&!?úÜæ½kíå÷;ÍV£` ¸¦¥]@| +¼8&ô¦ô¤�&?|áTS×:õuI�þ&OÿtÅ娿Ïö>Lþ¾×$¨%U6À¿Ë,iDCêbY·¾ÅWUÊ÷¤I`ÓZÉ$½lªyÞÁMp hZ` ªwpqÔì>Ñ(|dkÕKL'hãüý@açôD½P4ú +=çò8}°!¹+¬Bu5£ N~QEp °ôà¥6�E@Uu"}bÜðô¡ò SC8÷E»·pÜ / 2?Hoc !ØYMGÀ«Þâ ÐqxõZç^XáOF%xÊ3!Á±·QXHMð´ï�}¯þ>ýÜäM ¤^åvÙq¡}·°h½z'5:|yrþ~àÙöÐP³æú½¶*׺)FrOÎdn4ch?9g´a\½ `tcg®àÚ´ ¢' Y$R +K!YRO<'Ÿ´Ç³BÀt\¹ÊfO»RC[òÆ5õ¤Ü7 UÈ¡ê¢ñÀ´ZO2¢mfô LæÔgªÈµY«³Àµ4¸®&èá=!^IÕ$¼fKý>LÝÈI!b,ã ÎQ OÀZ8 ÀÍb3w Pÿ¦É¦ðHç®A³ ¬×dnÀ#V/2HGF¾ Bèé!°Z�FçÞ=²2fVdÌ5tHzafM6ýÑ5ðeÇ]£ÂÑ"U¢" +P«c4UÄÙMÖ©dYfI{}7AÛ�ÍZ\Cà[Uø¬ôZóÈFÑã!8ë6¶ùAÑW¦ Âæ2Kí¬2¯)¨:FµfüÄXU LM,УaH¦ÉøGCéÒwjdô£áqÑö3ò}J¯!ª Ú÷|mMKâ©ß©1Á7²òûJDæÁôá´cÝ× Ð3kúG¹Q`$û"G Jö!)A¥ùÉü%âÐH£mÄ.<ëH!@ÍSu�üá9!å8áH©+É×ðOÿª»�WÆÃ1]ÂÙ!îóf3yP &¶°L6s©¦È@Ö.Ñ@N¶Ë.º\T5B·nñßç÷ßJ[ú¶h 4%PMÄÖª&Âê³çµ×}ÙzÏ{»ÒÖï2üæÏ RÓc!ìÙJî¯' §×ðFé¶EÅ- sh`h4)É!ê5â³¢fÛ&í÷ZXÊ' êPñ³Õü?5t×ÚÒ§E2Ñ Uø6îòé6f¨ùHa=*ZZwì`êÍ*.ÙdèÐÊôú÷¬U}2mP%m}6[LPC+B <BHAZûN�X¢v�ä)MÒkþÑ»P²&c3©`à\ZpÛé¬Ùod3gÍdpK]`&#V·\¾çÄææÑ¶Ò|$Pû¿ß*Þû¿æ¾díûpA£ÿH÷Â@¬éĶÁ3mÂåå{å¥ Tm ÛEª6þý²¾ãÑ®¯äahÜ:³^ï0Ï8GQ�f8u}7ÄvÀçi½ïjc2)ݰ`hÛr!{÷ýPµÅæÎåN0<÷E5¥qH<6Ðy(�lÓ5ûDÉR¸µlæ(/QQehàÎâìí´PE:Ìà˽QyÀOÜ0E=?q£¥ Ó²7V7̺d4¾2j_à+E¨÷ÈòHú7MúÙ ï9c³?4obÀKï>Qö'QA¨uëOt)%Ê í{ò>q¤>}(pëuÕ9Ë3Stä®oàîôD²`aC +UC0|õ7êï+Ð@VfNÝ>ñàÕß:ÖdÃr.5¤Ó\j- [¬ÆÐÆB¦,@°%-*péCàô8JA«ØÂB-KQsÉÕ¸å¾p@÷(Nɸ£C¬7ª[ÝàÝ_mc¯ÜÓqï`³c;öû|}¼ÄnCHÔ6ÌÄu¸;ÍôpcVá@§1+.ïIÊ Ê{$ª.P¸º&R<Äå=-²¼ìbI!Bs}EA\Þ£ ñPyIXÞ#O%±Ó ÷dN +1@ä©{¢ÌI!î=§pyÉDðDN`ųRÊ{4]6RÞ£``°mÒiH¿wÉðþMßM + +Û,øÜ~䢸{cHsð¨|?ÒÑi¾·QÁ@újùýKuMgÿÝêYct¤L#ï5õÕ<ºêYM|T×tY�ð¨ä¤rOIϪ#ù¥G@¼ÀS°<©¨ÆXë�²ÈVlË";û#Z8Á¢` óQÕÝ1¨ztdtÏC°¶V¥ô(ì3ò¨íõ)cÖ§<²_&}ÊZÜCÝ#TP«{Êüµ_;x[à>G ¦¼¹t3±Uí`òLévh&#ü#¦ï£é9Fb}¬c¿~ÚÂɶ?~|ûã{½?~µ¶ÿñûÓùËÍ#Û�ÁéÛ¸·P 7!�@,kòf¾ `ãÓ÷ÿ>j¿ÿÞ*.q)*\¿#�1áÝïé7Rtþ^QCWúµß\ñÒcù¶ÿxà²ýÛ&ÖV4ö7-b¶í¾/`Áƹ.VQzÝ¢ÀþFÁu´/9sà®HíMÇM*7!Þv°ìðZ@©¸"¥K8ø}[~eiÃsÛÁj×Ík"oßAí²/àOjä¶DZ î¯VËM£Bh{¹él/hìÎÆm1¨'AÎôE8R`:ÁßäpW$GÏIâíû}·Úï7[rú>Ú÷!M^ä¶UÝ¡?±îýûE9¿W,Y¾ìÿ/nBÜE0¼ Àí�Yy8ÝGkÌ<é0þ¾Tçt?èXF@",i¿/8kG�î¦t÷¯jqÍ]�Ö!áè=¢èQÞÒéw$tèèȹÐí�HUpRA^U^ õ+è½æK0¾H£`à$�ùGaLÇÚïß9xâÎAξ�Ú~?åC_¿ïïu C[zànÚïgÿYüN ìK¼ÁÒÖT5 +4ö¿hÔ}ÿèû jûýAü;ò&ºüÓït5íPÿÒÔtÿGÖD~ºüWLäËýB:¾<Ü¿WùG[0éÚwÁÀïGÊú_¤?ÉX,DÎ ûOáý Â;é¬òÿÌêýþ[±®|¼ÿ#±üvÜ;iû²~×_G,?¼å½²Íþ¡ï3ù=8¿xàçóS÷gKUÈ/ú½Ñ_yXÔ×_ÃuûYs5äüì'<¿¤jtα ²(û¿cAP~òH~eoÿ 4áýY(ú£ÄIïÁó÷´ý¬cªÈ¿ûÝ¡¡*?7ý 0·Úï|çÿÛþÿë¯~øÅ/íýúÕïW/¾~øµ½JíÿçW?WsuÖåâ*5¿úí×?ý?ýøÇßüîOÿÝ¿|ýÛ¿þòë/ûóoÿïo~÷Û¯ÿõÿ¾þí?~þã?~ýú~óëþúå÷×üñwÿù»¿ýüõ_¾þðóÏù_üâÿøÇ÷Ïøãß¿ÿô»ñkÓïÿö?ÿô~ñ¿×ï¾ÿðóO?þóׯþ÷ÿíWëîþ?«0· +endstream +endobj +434 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1001 0 R +/Name /Im401 +/Width 15 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`càa`0`H`xÀx¹¹AelÀ°0|À + ©èÀ4d*ã@;vñ0°ñ[W�È +endstream +endobj +435 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1002 0 R +/Name /Im402 +/Width 15 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x;ÀÀ`À ÁÀÃÀÇÀÎÀÜÀÜÀxñÃ@XÀP6phÇ Ú!©è)�ðñã©ì@óyö�í;ÀÀo]»Z +�t= +endstream +endobj +436 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1003 0 R +/Name /Im403 +/Width 38 +/Height 61 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUб C!ÐC@&3D,ÉH+G¡KKùô³¥|)Í£1Ç L�ÝØÌ¤iIûFÖæÔyæE à ä¤`;'ÃQÏódñéîÝÛ1ÀH5N·¯X6Mg2ÍÍrÀfuÚb`Ð'D ôæÈðļÝûþØd2¸²Ð_Ò´*êjÅ&Þ\ãöx¾ï_{Ð +endstream +endobj +437 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1004 0 R +/Name /Im404 +/Width 19 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xca`°£$ô?0üÿÿ�æÄ~�øHÀè16Ø13ȱ1ÈË0ðÿ�iV«[" �e ¢ +endstream +endobj +438 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1005 0 R +/Name /Im405 +/Width 46 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmÏ1 +Â@ÐRlØ6 ÎRÒ©Ü«x[!&s²GYo°Â)Ä¿«¥Ãð`æÀyp6%&ÔJG:i0ñj`ü®RþÛ:fM@Kco}¶Ë^ÐK1ÌY?õë«dÙ²X黸ÓÏDµÿ81cÑF½¶¸iËÀO¬¯½ c¬X͸VûãôÓQIº +endstream +endobj +439 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1006 0 R +/Name /Im406 +/Width 27 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuÍ¡ 0�DÑkH¨iÐ$Ô °u¬ÂHaæ`QAR~ ñÜ¿¥×,O=V,¸²Lud5l-:8xD,H(¥¤êýùcni¦Á0íçø� y2§ +endstream +endobj +440 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1007 0 R +/Name /Im407 +/Width 43 +/Height 43 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`àc�zÿAà2I7@HmíÚÅÆ�h÷k +endstream +endobj +441 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1008 0 R +/Name /Im408 +/Width 32 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=Ê1 +!áÿaa/4.'ØBr¦--$Ù¤Î1<Gx¥Ep#+,ÃÃ0¸¢-¬R©¬ÒhQâà/Shw¨ Råc6éãøzBCZtU¤*¦LvKX®# 'cÝÒáöÈßûâZ0© +endstream +endobj +442 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1009 0 R +/Name /Im409 +/Width 43 +/Height 62 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}б 0г\¸¢0@2Y,±½AJã XÁ#¸¤@8w6¡ '°þýì^S4ÔÕÀ&³.âIÀ¸ðßþD<Ænî4ÂåÃ+$þ;Y7jË@]rïÌÎ0KV%+RÍdÔ¹ÆæÄð!v9ü4HÞ?}sGmît¦»J`-A]7K.Úõ�ß*q¼lú¨cR ®(ÃåZÍZù6¿>÷/Bmd÷ +endstream +endobj +443 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1010 0 R +/Name /Im410 +/Width 42 +/Height 78 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc````l�Ì@$;Éß å¤YDþ@$ó 5ÉxªLcwjüº¹l0CÔò+ÝÍ��uJ1d +endstream +endobj +444 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1011 0 R +/Name /Im411 +/Width 59 +/Height 56 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³ÿ ö¸èÿ?0ÿo¨?�¤êÔ7hùu N×iv8]¦qÒ? ô`'Í�¦Á`dÒü hÀM[[Ônw�nÕ¤ + +endstream +endobj +445 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1012 0 R +/Name /Im412 +/Width 64 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xµÑ½ à3ÀVÚ:Á±,Å()Ox4T¯âçÞâ:pE°q¤`_ëÖ!;!;ÆC<ðpg.®Ñgukèí½ïåÿ«e.ãäÜGsâüd¾Æ×ü¹Ñ/ÆþÖy?·¹Ï +endstream +endobj +446 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1013 0 R +/Name /Im413 +/Width 94 +/Height 58 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xѽmÃ0à#T¨äæ�m&K¸,M9R¤PEdvfAèòî»H÷Uïî1sNÌfnü.Ds#¢ú'sê®î h3|6Çî&ÞªåbÏϼSÈÌæ![^âLÃþÛ1£Ô¸§wuxAÙHæóÚÕ pAÁºÜCAÙÉSwU/âµø«ÞcwoU<·qCÁ¢>~d7J¹Yü©à¯Ý|BÁîWøªù¥®fVf2£Êzï >Ü}mòå[yàU\ݲÎϲH¹wg·rë:rÖóÓåí奧å +endstream +endobj +447 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1014 0 R +/Name /Im414 +/Width 24 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xM̱@@�Ñÿçf\B.@ BZt R¢Õ¹ØyñJÈY@1«P&4¢]èÄ;a'¦1µÌj0)÷}þÂ9½ê~;ºt )Ë +endstream +endobj +448 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1015 0 R +/Name /Im415 +/Width 43 +/Height 68 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xeб 0 áYáh(©BA2E*0G LAî.DOϲßȪ7õVIô\È)E(pbevæhF«.jò1¨.àEðrh¦òA8, &1Ùîò°ÛPfnUmoç\ ýÚµ~®'£ÝYþhÌæ¤7É·&OU2ht@È0ÒN/*ìå"¹Û£6±£sÑUìÌöäh'ãÍu~4o8KA +endstream +endobj +449 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1016 0 R +/Name /Im416 +/Width 36 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMϱ !Ð\P2MlÍbºL nF ¤@ç|_tºkü±üÔ�¨ñi6ºÓt@ZvRtiÁØIÂrük0«ïÓîx¦¬cPÁäèÇj0±*»³HÁjrò8)w¸Ü í \ì]ÈÞ$vÀB¹³y¹"zïQxòãõþ>£,li +endstream +endobj +450 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1017 0 R +/Name /Im417 +/Width 14 +/Height 49 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcàa°`(`xÀx¹eÐ+R ø+ÈU@Õtt³303070`x�´`àá3¬Z"�£W +endstream +endobj +451 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1018 0 R +/Name /Im418 +/Width 17 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc0``¨``ø@ù�Ãÿÿ @d°7 ?ÉA#5Ø03ذÿöµó%�D¥L +endstream +endobj +452 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1019 0 R +/Name /Im419 +/Width 34 +/Height 3 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿÿásU¯�½ +endstream +endobj +453 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1020 0 R +/Name /Im420 +/Width 14 +/Height 49 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x;ÀPÀ`Á ÃÀÇÀÎÀÌÀÜÀxñ�à ,�à + $Ú` ¹ +¨Z .næf Y|@3-økH��ß® +endstream +endobj +454 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1021 0 R +/Name /Im421 +/Width 76 +/Height 2 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ +>ü³|¦ø�8!~ +endstream +endobj +455 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1022 0 R +/Name /Im422 +/Width 23 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcfàagác°a(`H°`x`Àp ñ@c=`n8ÀÌ�G÷+þ3ÿùßüêAÈáC ¸xÉf5�q +endstream +endobj +456 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1023 0 R +/Name /Im423 +/Width 23 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³aøPÇøã?ójþDõÿl¾16°Ás3±3Ȱ1Hð1Xð0È0X0<(`<ÀØ .^·Y �aN +endstream +endobj +457 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 580 0 R >> /XObject << /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im24 31 0 R /Im101 108 0 R /Im102 109 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im102 109 0 R /Im116 123 0 R /Im25 32 0 R /Im105 112 0 R /Im120 127 0 R /Im23 30 0 R /Im30 37 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im120 127 0 R /Im29 36 0 R /Im25 32 0 R /Im142 149 0 R /Im28 35 0 R /Im21 28 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im120 127 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im108 115 0 R /Im21 28 0 R /Im111 118 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im107 114 0 R /Im24 31 0 R /Im26 33 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im22 29 0 R /Im23 30 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im107 114 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im30 37 0 R /Im29 36 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im25 32 0 R /Im26 33 0 R /Im21 28 0 R /Im107 114 0 R /Im21 28 0 R /Im114 121 0 R /Im101 108 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im141 148 0 R /Im143 150 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im113 120 0 R /Im135 142 0 R /Im26 33 0 R /Im30 37 0 R /Im117 124 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im102 109 0 R /Im26 33 0 R /Im30 37 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im22 29 0 R /Im23 30 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im24 31 0 R /Im101 108 0 R /Im30 37 0 R /Im116 123 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im24 31 0 R /Im111 118 0 R /Im120 127 0 R /Im24 31 0 R /Im107 114 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im26 33 0 R /Im30 37 0 R /Im22 29 0 R /Im24 31 0 R /Im26 33 0 R /Im108 115 0 R /Im21 28 0 R /Im25 32 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im23 30 0 R /Im25 32 0 R /Im26 33 0 R /Im116 123 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im22 29 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im101 108 0 R /Im25 32 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im111 118 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im157 166 0 R /Im101 108 0 R /Im25 32 0 R /Im105 112 0 R /Im28 35 0 R /Im110 117 0 R /Im110 117 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im143 150 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im24 31 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im28 35 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im102 109 0 R /Im116 123 0 R /Im25 32 0 R /Im120 127 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im114 121 0 R /Im105 112 0 R /Im21 28 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im109 116 0 R /Im29 36 0 R /Im30 37 0 R /Im107 114 0 R /Im24 31 0 R /Im111 118 0 R /Im186 195 0 R /Im24 31 0 R /Im22 29 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im106 113 0 R /Im102 109 0 R /Im116 123 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im26 33 0 R /Im26 33 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im107 114 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im30 37 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im24 31 0 R /Im101 108 0 R /Im102 109 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im26 33 0 R /Im25 32 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im102 109 0 R /Im116 123 0 R /Im25 32 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im107 114 0 R /Im30 37 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im111 118 0 R /Im24 31 0 R /Im28 35 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im102 109 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im111 118 0 R /Im30 37 0 R /Im116 123 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im143 150 0 R /Im106 113 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im102 109 0 R /Im116 123 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im116 123 0 R /Im25 32 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im107 114 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im235 246 0 R /Im25 32 0 R /Im115 122 0 R /Im21 28 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im107 114 0 R /Im24 31 0 R /Im101 108 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im113 120 0 R /Im156 165 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im116 123 0 R /Im28 35 0 R /Im29 36 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im120 127 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im123 130 0 R /Im124 131 0 R /Im124 131 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im143 150 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im22 29 0 R /Im21 28 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im120 127 0 R /Im23 30 0 R /Im30 37 0 R /Im106 113 0 R /Im30 37 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im28 35 0 R /Im106 113 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im26 33 0 R /Im102 109 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im22 29 0 R /Im23 30 0 R /Im106 113 0 R /Im102 109 0 R /Im116 123 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im156 165 0 R /Im30 37 0 R /Im29 36 0 R /Im24 31 0 R /Im101 108 0 R /Im102 109 0 R /Im106 113 0 R /Im102 109 0 R /Im116 123 0 R /Im25 32 0 R /Im120 127 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im28 35 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im22 29 0 R /Im23 30 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im105 112 0 R /Im28 35 0 R /Im140 147 0 R /Im22 29 0 R /Im21 28 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im26 33 0 R /Im102 109 0 R /Im23 30 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im176 185 0 R /Im105 112 0 R /Im24 31 0 R /Im102 109 0 R /Im326 347 0 R /Im138 145 0 R /Im193 202 0 R /Im137 144 0 R /Im120 127 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im105 112 0 R /Im24 31 0 R /Im109 116 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im143 150 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im24 31 0 R /Im22 29 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im24 31 0 R /Im105 112 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im29 36 0 R /Im21 28 0 R /Im117 124 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im108 115 0 R /Im21 28 0 R /Im30 37 0 R /Im28 35 0 R /Im105 112 0 R /Im105 112 0 R /Im28 35 0 R /Im117 124 0 R /Im105 112 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im104 111 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im105 112 0 R /Im107 114 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im176 185 0 R /Im105 112 0 R /Im24 31 0 R /Im102 109 0 R /Im424 459 0 R /Im155 162 0 R /Im137 144 0 R /Im120 127 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im141 148 0 R /Im143 150 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im21 28 0 R /Im105 112 0 R /Im26 33 0 R /Im21 28 0 R /Im112 119 0 R /Im25 32 0 R /Im26 33 0 R /Im102 109 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im114 121 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im23 30 0 R /Im30 37 0 R /Im28 35 0 R /Im26 33 0 R /Im111 118 0 R /Im117 124 0 R /Im25 32 0 R /Im106 113 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im24 31 0 R /Im105 112 0 R /Im21 28 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im21 28 0 R /Im105 112 0 R /Im101 108 0 R /Im30 37 0 R /Im21 28 0 R /Im101 108 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im24 31 0 R /Im108 115 0 R /Im24 31 0 R /Im21 28 0 R /Im26 33 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im120 127 0 R /Im21 28 0 R /Im113 120 0 R /Im25 32 0 R /Im113 120 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im106 113 0 R /Im30 37 0 R /Im193 202 0 R /Im113 120 0 R /Im268 287 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im106 113 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im26 33 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im107 114 0 R /Im25 32 0 R /Im29 36 0 R /Im110 117 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im111 118 0 R /Im186 195 0 R /Im24 31 0 R /Im22 29 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im102 109 0 R /Im116 123 0 R /Im25 32 0 R /Im105 112 0 R /Im120 127 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im26 33 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im24 31 0 R /Im26 33 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im22 29 0 R /Im23 30 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im30 37 0 R /Im117 124 0 R /Im28 35 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im143 150 0 R /Im106 113 0 R /Im113 120 0 R /Im234 245 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im23 30 0 R /Im24 31 0 R /Im108 115 0 R /Im25 32 0 R /Im30 37 0 R /Im101 108 0 R /Im26 33 0 R /Im102 109 0 R /Im24 31 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im26 33 0 R /Im25 32 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im108 115 0 R /Im30 37 0 R /Im26 33 0 R /Im108 115 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im102 109 0 R /Im116 123 0 R /Im25 32 0 R /Im105 112 0 R /Im30 37 0 R /Im29 36 0 R /Im120 127 0 R /Im21 28 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im30 37 0 R /Im28 35 0 R /Im110 117 0 R /Im23 30 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im108 115 0 R /Im24 31 0 R /Im21 28 0 R /Im26 33 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im120 127 0 R /Im106 113 0 R /Im30 37 0 R /Im143 150 0 R /Im106 113 0 R /Im24 31 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im145 152 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im107 114 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im26 33 0 R /Im113 120 0 R /Im103 110 0 R /Im101 108 0 R /Im25 32 0 R /Im115 122 0 R /Im24 31 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im105 112 0 R /Im28 35 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im107 114 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im26 33 0 R /Im21 28 0 R /Im105 112 0 R /Im208 217 0 R /Im176 185 0 R /Im179 188 0 R /Im137 144 0 R /Im174 183 0 R /Im425 460 0 R /Im178 187 0 R /Im179 188 0 R /Im227 238 0 R /Im327 348 0 R /Im120 127 0 R /Im179 188 0 R /Im396 427 0 R /Im424 459 0 R /Im179 188 0 R /Im424 459 0 R /Im179 188 0 R /Im166 175 0 R /Im120 127 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im105 112 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im29 36 0 R /Im25 32 0 R /Im26 33 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im23 30 0 R /Im21 28 0 R /Im116 123 0 R /Im117 124 0 R /Im25 32 0 R /Im114 121 0 R /Im106 113 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im102 109 0 R /Im116 123 0 R /Im25 32 0 R /Im179 188 0 R /Im134 141 0 R /Im22 29 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im111 118 0 R /Im24 31 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im110 117 0 R /Im25 32 0 R /Im29 36 0 R /Im134 141 0 R /Im21 28 0 R /Im101 108 0 R /Im146 153 0 R /Im179 188 0 R /Im396 427 0 R /Im120 127 0 R /Im113 120 0 R /Im113 120 0 R /Im113 120 0 R /Im120 127 0 R /Im179 188 0 R /Im166 175 0 R /Im148 155 0 R /Im113 120 0 R /Im157 166 0 R /Im109 116 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im29 36 0 R /Im105 112 0 R /Im25 32 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im112 119 0 R /Im21 28 0 R /Im101 108 0 R /Im111 118 0 R /Im30 37 0 R /Im109 116 0 R /Im107 114 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im26 33 0 R /Im21 28 0 R /Im105 112 0 R /Im30 37 0 R /Im101 108 0 R /Im26 33 0 R /Im102 109 0 R /Im107 114 0 R /Im25 32 0 R /Im24 31 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im109 116 0 R /Im28 35 0 R /Im26 33 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im102 109 0 R /Im116 123 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im102 109 0 R /Im30 37 0 R /Im29 36 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im120 127 0 R /Im105 112 0 R /Im28 35 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im30 37 0 R /Im116 123 0 R /Im25 32 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im120 127 0 R /Im107 114 0 R /Im21 28 0 R /Im111 118 0 R /Im111 118 0 R /Im26 33 0 R /Im25 32 0 R /Im141 148 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im120 127 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im101 108 0 R /Im111 118 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im116 123 0 R /Im30 37 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im28 35 0 R /Im116 123 0 R /Im111 118 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im425 460 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im327 348 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im110 117 0 R /Im29 36 0 R /Im24 31 0 R /Im111 118 0 R /Im21 28 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im22 29 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im21 28 0 R /Im105 112 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im29 36 0 R /Im111 118 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im22 29 0 R /Im23 30 0 R /Im101 108 0 R /Im21 28 0 R /Im142 149 0 R /Im28 35 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im105 112 0 R /Im24 31 0 R /Im235 246 0 R /Im25 32 0 R /Im115 122 0 R /Im21 28 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im29 36 0 R /Im30 37 0 R /Im117 124 0 R /Im28 35 0 R /Im105 112 0 R /Im106 113 0 R /Im143 150 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im30 37 0 R /Im109 116 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im102 109 0 R /Im116 123 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im116 123 0 R /Im25 32 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im113 120 0 R /Im103 110 0 R /Im109 116 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im105 112 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im22 29 0 R /Im26 33 0 R /Im28 35 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im426 461 0 R /Im427 462 0 R /Im428 463 0 R /Im428 463 0 R /Im162 171 0 R /Im100 107 0 R /Im99 106 0 R /Im161 170 0 R /Im94 101 0 R /Im100 107 0 R /Im96 103 0 R /Im93 100 0 R /Im429 464 0 R /Im430 465 0 R /Im94 101 0 R /Im332 353 0 R /Im164 173 0 R /Im162 171 0 R /Im162 171 0 R /Im96 103 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im109 116 0 R /Im29 36 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im30 37 0 R /Im29 36 0 R /Im112 119 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im109 116 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im117 124 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im105 112 0 R /Im116 123 0 R /Im21 28 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im30 37 0 R /Im29 36 0 R /Im112 119 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im28 35 0 R /Im29 36 0 R /Im157 166 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im110 117 0 R /Im29 36 0 R /Im24 31 0 R /Im107 114 0 R /Im431 466 0 R /Im432 467 0 R /Im433 468 0 R /Im434 469 0 R /Im435 470 0 R /Im436 471 0 R /Im437 472 0 R /Im438 473 0 R /Im438 473 0 R /Im432 467 0 R /Im113 120 0 R /Im27 34 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im110 117 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im105 112 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im24 31 0 R /Im28 35 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im30 37 0 R /Im116 123 0 R /Im25 32 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im117 124 0 R /Im30 37 0 R /Im30 37 0 R /Im112 119 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im24 31 0 R /Im116 123 0 R /Im114 121 0 R /Im116 123 0 R /Im26 33 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im106 113 0 R /Im25 32 0 R /Im22 29 0 R /Im23 30 0 R /Im101 108 0 R /Im21 28 0 R /Im142 149 0 R /Im28 35 0 R /Im25 32 0 R /Im105 112 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im28 35 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im29 36 0 R /Im21 28 0 R /Im117 124 0 R /Im28 35 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im102 109 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im25 32 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im110 117 0 R /Im29 36 0 R /Im24 31 0 R /Im107 114 0 R /Im113 120 0 R /Im431 466 0 R /Im432 467 0 R /Im433 468 0 R /Im434 469 0 R /Im435 470 0 R /Im436 471 0 R /Im437 472 0 R /Im438 473 0 R /Im438 473 0 R /Im432 467 0 R /Im21 28 0 R /Im105 112 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im117 124 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im117 124 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im28 35 0 R /Im107 114 0 R /Im24 31 0 R /Im101 108 0 R /Im157 166 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im102 109 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im26 33 0 R /Im102 109 0 R /Im120 127 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im101 108 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im29 36 0 R /Im28 35 0 R /Im101 108 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im30 37 0 R /Im101 108 0 R /Im26 33 0 R /Im102 109 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im29 36 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im29 36 0 R /Im102 109 0 R /Im23 30 0 R /Im24 31 0 R /Im29 36 0 R /Im111 118 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im146 153 0 R /Im138 145 0 R /Im148 155 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im106 113 0 R /Im24 31 0 R /Im21 28 0 R /Im26 33 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im431 466 0 R /Im432 467 0 R /Im433 468 0 R /Im434 469 0 R /Im435 470 0 R /Im436 471 0 R /Im437 472 0 R /Im438 473 0 R /Im438 473 0 R /Im432 467 0 R /Im153 160 0 R /Im105 112 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im24 31 0 R /Im26 33 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im111 118 0 R /Im102 109 0 R /Im23 30 0 R /Im24 31 0 R /Im108 115 0 R /Im25 32 0 R /Im117 124 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im28 35 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im146 153 0 R /Im136 143 0 R /Im148 155 0 R /Im113 120 0 R /Im149 156 0 R /Im25 32 0 R /Im21 28 0 R /Im26 33 0 R /Im26 33 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im30 37 0 R /Im101 108 0 R /Im26 33 0 R /Im102 109 0 R /Im110 117 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im23 30 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im108 115 0 R /Im21 28 0 R /Im25 32 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im29 36 0 R /Im25 32 0 R /Im22 29 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im107 114 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im120 127 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im117 124 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im105 112 0 R /Im25 32 0 R /Im116 123 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im24 31 0 R /Im22 29 0 R /Im23 30 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im24 31 0 R /Im117 124 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im113 120 0 R /Im157 166 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im21 28 0 R /Im105 112 0 R /Im24 31 0 R /Im116 123 0 R /Im30 37 0 R /Im116 123 0 R /Im28 35 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im439 474 0 R /Im24 31 0 R /Im116 123 0 R /Im24 31 0 R /Im101 108 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im117 124 0 R /Im30 37 0 R /Im24 31 0 R /Im29 36 0 R /Im111 118 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im120 127 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im102 109 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im106 113 0 R /Im30 37 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im102 109 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im30 37 0 R /Im101 108 0 R /Im24 31 0 R /Im101 108 0 R /Im151 158 0 R /Im115 122 0 R /Im151 158 0 R /Im141 148 0 R /Im117 124 0 R /Im30 37 0 R /Im24 31 0 R /Im29 36 0 R /Im111 118 0 R /Im28 35 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im351 374 0 R /Im155 162 0 R /Im106 113 0 R /Im30 37 0 R /Im141 148 0 R /Im22 29 0 R /Im30 37 0 R /Im26 33 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im105 112 0 R /Im113 120 0 R /Im20 27 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im22 29 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im24 31 0 R /Im101 108 0 R /Im25 32 0 R /Im107 114 0 R /Im116 123 0 R /Im106 113 0 R /Im102 109 0 R /Im105 112 0 R /Im142 149 0 R /Im28 35 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im117 124 0 R /Im29 36 0 R /Im24 31 0 R /Im22 29 0 R /Im112 119 0 R /Im25 32 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im30 37 0 R /Im116 123 0 R /Im116 123 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im153 160 0 R /Im105 112 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im105 112 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im113 120 0 R /Im156 165 0 R /Im21 28 0 R /Im110 117 0 R /Im113 120 0 R /Im352 375 0 R /Im105 112 0 R /Im23 30 0 R /Im30 37 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im25 32 0 R /Im115 122 0 R /Im24 31 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im111 118 0 R /Im105 112 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im101 108 0 R /Im25 32 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im102 109 0 R /Im25 32 0 R /Im29 36 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im24 31 0 R /Im26 33 0 R /Im25 32 0 R /Im110 117 0 R /Im24 31 0 R /Im26 33 0 R /Im107 114 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im120 127 0 R /Im21 28 0 R /Im101 108 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im22 29 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im102 109 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im30 37 0 R /Im105 112 0 R /Im106 113 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im105 112 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im117 124 0 R /Im30 37 0 R /Im24 31 0 R /Im29 36 0 R /Im111 118 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 458 0 R +>> +endobj +458 0 obj +<< +/Length 1024 0 R +/Filter /FlateDecode +>> +stream +x¥}˲ìÊqÝü~ÅJoÖ@CÌORCMlió)]ÃïFw%vX«sUarâÞèB¾3+så_úçý)þøÛOý©~Õ~¯°ÿY¾J ?b¾Ò~Ô:}-uùñë?þôÿþÇÿøçþùíùk)çÔåñÀÒt~>}Åz|¾~Íi{¾îϯËþ|<?_¾&òüÚ0}@¸¾`Mç¬WÆ© ä+âåù´QpZ¿b¾P0Tÿçùú ÿìDù+l/ã~ï/a½ `Îð0_Hx=@¢yE$¼üþüü5ðü2çc}!h°N©ø2ð:@ +�Háùê&)Ô] +×òýt}Áà¢éaù +ozx"ÆÃÈC, )!)d ¥4=¢Èª%!Ì«DA*D DSÖ(@¥poJaM2oê"y* ³hãW:}A~þæúµ\¿ Éî -YrTMCN+²Å9d®,¸ +Ñë�9À èÚ7É:ä7a"ã¢�=@¤P$$Xs6%8|@j|µDÓóð�2K¡%C¦° ÞAÀ)Þ²"y}'2É®ñ"àfDÏ"�CN~ÖâÊÅ3W° :/Eª)¡D*}i^qD9V`ZrQ°¨!éY_AyÚñË KÒ+&%ÁpHN +JM +òªe%,*ÌPL¬¦Q-hxd£V`Ó¢2i1SRJ@P¡Ö0Ëi¶#e®a®p/OLi,-¥¹Gl=må§ïH¢ áã#iQZZt:Å©J 4)v(È(Ö~_J¬>²j,`a|$ËUPN@¤ÐÜ©' ´@²@è5< uÏæÖAbæ SÈI,Í^ ÄÔí�Q>�IΨ4±LP@P ',¢y|ÔÃK@Be ¬¢úÈ4C@`å ç�U¤�¶êÆUô´`«n¸ýåî,ÚP%X¦ùÉ0pG\ d¶-± +HáßÏ1¿ quØ>3óÂkZBó"hD:j9ß'24#J<Ó(XæÍìÅQ%È'ô°>ÃF·¹"3ÖÃÃYvE¬¼Ú +,XäÐ)/Fy-Z4@3«�-¹YQiv."^,))oØuÑh@W2´zy#OÒðêBVp Ì"&ÄAíâ|s ¥BʼTMi ¬bãÉ2kv4}ÕÃóî¤Ìsãàôµoo}÷âB½å +<^0NÅ2½¾àð<§XóźÁg;Èrû<ßWZ êôz÷HEÐÀÖúpe!2cg/ÌÓWÛóËP¹Àã> õ^<Brcá½}d©ª°¬ÚhhͲ/kU#+.4)Êëç*a|üý±UæWçxxaB½¤t$½ªe}½`þ¾8ϲ1Þ»/4ìèÞÈ¢"òFZ"^ohfdÊ(ò*>_ "ëveù8ÇÇÖz jÎÁi8HïýkMiºiJÓ$SJ«332å¡y¹iF¢^ÝH%¥%>h õ_Qb!MRÂÔ8.·²êÌH}&Ut�½>¡ÑëCyÔ̹vÔp@§×¦¢)å` ÷¢üfêCq�vòêÈ|O÷êÆ¨/õ!ΫÓÒß_'R~ß#+ +iõvâ½÷ÂQÚ(B2JÔÌ(-ÎDlFõâLÒ¬�M$1¤§Q93.0ë¡À¢%} se¦wãJHXã=;V**è׿cúµyá`KʼhI"áò^yHãû :ê+|~ó_ZRòxÁ/eyIÁézÅî,/@¦T¦ +¾�)"Îëb×2+í}¨-5~$NïùëÈv¾Ïv$( &uzèNYëÞ$®«$4±4ovü}=±ê÷+×8!TRF ý ̾å ÒtXï]±¹ãôÖ¬ �Íì-'8é0Èì 'd;8h®"y-§y±õ=9 ·¾Ì7Up¿DÅXD4¢z4ÖIóCÔ@#¤Á+îÈ)¢êÉ kD~ø1Þ8 ëPN³¤C�Y#�ÍJKP%d¥åí¬²ÜXGG~®Yâ -nUMÊùy®ÐËùyQeMe@G$çÕyEDïÈßû Û²S×Ð;¹KAö<b¡n +ezºÒÍdñ�41ÞÇñ¶ I"m½ñ©Mè ñe5KÊ3û(göÈudöÄÉiñÖ8!±À- OîKËrãí¾t+ ÔíÚ<Îï÷¥°Å¤4`Þìñ!K²eööÁóáIÃÃópD»³hRt<�¨ÔÜ +ky¤gÎhyµ>x/ $48JÂ%j$ä-*>½@ï\°6Àu¶¬£-kÕ¤¦±�¤4³H:2«¸J2@SÃ$ê1ëI9ï20Ô?lÌÐ"úîIa*H +:.¾âo+{÷My¡2O" ¬wÀ7¦ê«GDeT +-ÁOª1%Á}Hô[»²dycyÚ6GäRyCM°Ðü#819@F,èºÏ³D�^"÷ÑÞ|àhÈvÂ.K¢&L:k¸ÇÀ +Ðß$Ðʾ7Ös³m®B2"|°c%ðnðª0/Ì·"º½uÁÏKHvÅh52î%+ÂpÚ';<)ä5Dë3gWÛdÇr=ÀõÊ&èyT +Äq31)E)yûêK±%Þ4Kì4ªÁ,ª;ñÈ/>ÎfÐä2·[Ë0GP<ìrónBt<^*6Æð[¢Í9DÉÁ¥.Æ´:Wð1ÙlÇ"|À\µà¨A¢ m}0wÆð_öò+¬¼Àóóq]n`G}ðÀ';3ø/ɰàÂ]XÌà¡9°£vhÅtxàÂbzZà¶?¸BÀ`1÷Àb"3ÒQîÞê#Xj¦oCâ QÑ òPNÓ%ýDB\ô¸÷!H-Pмôtâáò5?'#Â×_à-ª]äÜ.-æÀH:îÿbaÇõyÀ,ÔS«UoÈf3àÌ$[WsDÝq1=cÎ0¦Áâ4ÝáYZa° ++ 2i`Ú\;ëAU"!G¶Q©<çmèÛy]]fÃ÷=꺺<ÛòWWs^òηd�ðKqVU^ç%i0 °Ç¢É¶Dð&¼£Ü +ìK\îe&;4¦Ã>¡4¬#«îT8 +ü�>¤ Þ&Ý"wÈ 5¡ë#:oÕH_}©º!.UT"úsºå¶x�ç×åù´âÑYd{ÁPzßnÐ#"8þ~GCat�¹¡ÐêçÈ ÖqbÞPçY"!/pDÄBVrYÁïë ±ÁÁ)(ßXaZá]ÀàÉ-ÜYôô¾íí8±@Oï/tÕ×u¤÷i(HÓû45¦,h^4½oHNUXy@UC6±� +ôÌg`C¦o¯©fâç̯íoª¶dz¥r)* H¥r ; >V*éÉ + ¾9eÕ|M®ÃtÏæ¼YÇåsñ%é¸|Nù)Íi¾eJó)1¥VÞ0¥ÖARÔxʬ* SÖ¤¯þA]Çæ$ º-Í32Dа)h +¯¹!-ñ,ÈõxÖ,(T5 ÿA4¥4½ÐÊÍxÛ¤49E3e4=MIBÎ Y §×Ùòì´J]ÐSs+ÖA¡y#þühbpÄN¯ ?b4½.0¹ì4aX&Èí·ÅåK?È3=o@ѧçûy|¾£ ÇÀ1/ÐoÝl1èöüÐ[l]<)ê¢QÞÿ-®Æ6htú�yð|ÛªÅÔqAÐ/lí÷<öúÈì +²Û@²\EH¿Ø +$FÁ¡Û +Ûq"AÇHFZ¬/tLH: +¶6Ã?�¹øÍAaÖþ0IV·?hEôÕ)ÙahÈ?#Sú_ÀÚAô*ZrZ¨«dÇ(Z±~V§õxÈËèúßVµP®Oh$ds^Ùbò# õ9¯¼ ~ë>41vÓ{¼û�*rG$kjÀËéæý©^ #2ÝÒÕCnU!"ÖXíF|F$©Æd÷ó"ùCZXfÍðò² J+/R @SÔïDkÎW{¦E"ª<$_Ò==Ø $=`EªQTÖQ¤Ú x æQiªTn<V¤zªT h×eoa@ÉYǤ¨g;(¢@ÏússøÒÝdèñü´ è´"Óá�ÐY pá ]>aãï_×ð"�ÀdFQÒY;¦t +>�´`Ðy³ãtP»ös(H[»úýÖnë`pæ6ɰØóÚx?K$¤×ïઠt{ÈÃ-׸i¦Ë°[+Òo¼½`Ò»X +¢@ObyT,µQ±u,>¨PåØ=ÁwÌ�ï?@J�/lH£M^O8É!®vï G!ñaá$ÒhÓ°ù¢ì6 gÞQè3üϰ±ãm@b¹Rà:v|ÍíZvÑ�Ð,½{NE2Å´7>A-ÐÓóÍ~uÑùa^Ã�$2"@ÇöEA^À¡F´uxæZ¥bi íYgZa(Pd;ß"º!ydVX¬¹A1BÌ 4;Feè- Cç²/"ÍAeiÐw¬ÏÐâ1Z[¡ÕÓÞ½ ¥E41ÍHz`Jv�ÊrO K¹§ü¤|<CR!«PSë^@ûìÊü-NK+¹û¶âÄÃ%ø²}¼âð|¶ ÉÐãù!;Pëñ�=:AGnÞv_РѶX G´YÇÓÈí¢ ¡K�ÂÂå²C|U/8§¶gY¾ÂzaÙGzÕ§1½`Ò^@sÓÐ.Nb,£$ë&t¤XÂb£RÌ{RÄ'Dv !öôÖ[ÆcÜ?~¸¥±1¡2IÆÖîÚÒ$ÚR^¡5-à( +°(·ÜÙ^áugÉzÑ<Ð2_½> £kùÆz±Öx ÷b³äigy@ZÐÓY5Ls;hÊôK»}BÄ7$dv2ýÒnkÔò·µÁذïÙnZ<©Ä)Òº<ÉQé@hp:®;áEèQu¨Ý)²¸-"Qr¾ÈD3$"j¶¿�%W=AT>cs½=_4 |Ç(úý&t3»ÚgD\! à*¼CÍ®¬Ø<L�«6jÁVe#:Í-"½6cíRµíQP +Ä¢ÔÁ«²^ [ÒØ�ÏwTyìæÕù}>c2ïÏwbP´3zd8CûÈ:J§ËBZåi(§tlYT"@(k<è�Bi(þ PoÉ`©¹¢ê;<RÜ90tk¶w2vk2RÃÛ÷Ô°£Fd Çß×\ET"^_è:fDò=Mø + kI´¯ YE +6~¶$H ;V¬I5ÄlÈdBÜÕ¬¾µ !èh-· ÜwwøzLÃ]~û +Ðoßs¼çw-zX2Ô¢�´ksmGÖàLÐu¬ÁéX3A +èv¡!ì�ÀUWDj³Ûo1[!"sDþÂ!> ²jV¨hJDÓ²¨9c¦¯)è�[!"'ä²rü $=³ EøÑò@o®/-ZbKëKofìc@Fw>ìØr}Þ]ê7º¢÷ùAK\æ{AýÞËPgýñx~-Úå#»ée³ Jzø[º'¼ðòDãaÎc¶Ô ר¶åzkb\ÚË |AÇå\ÅeVÑ:ÃBбc4Dt�½¹?À»÷£ÈÉaá&V)©ZD ô{ß$HOåòòF,!-¯3sDw?vGæ{"Ø6ö`«OU¤úfÄ4#W¢oFLs¾ÇÀyHè·@Wª8U²¡´<õfÇÚvÕÓ:·/A!FÍðÒT½4¦{:¼OÇ8:Ìá;4?ÌÑ9±»¼sÇÈ£yRµ°`Z4ÐÚ zb[>â;BV¸gFl¿ê<upÑÌ8-3^¹©D;vëÙpâ@GxÇÎð^ÀxPÞìØ'Ì´o"AK®ïæÌZ,À·"_XÀú6f1d»CP8ßbd#BøÎ ¾"×.«ü¬õM@-3[¯ê»"2!µsÝÁ@û¹ôéDÁõ)U[icÝdøáÔ§o廢h�±mrÖ½sx*®°ÚHcÁã>Ê@}{ôõçòäj´æíòz'AFÈ+ΨëWY__ðÞ¼Á¹4Ñú¬£ùñùûV³àÀÅ| (hqdÉ; 65GshèeÖhw'1Ò;«MtÀjH;üY26ªÉ`óE Û/¬ùâ(h¹%ß(; GúolA©ËC°YÁthÁd@ÁG +è=ÕiÚ¸ø> ü£ë"«:<äõYBß#-@ Éìyøûz}`qôè/\}ÐÂå� 7Õ<ßÓToSj_ò1$¡Ã%)ôä É0G¿(" ò¬Qf·Ö»à*±3á[VD-&ý;J±¢ÓÔ Â¨°[rõE'ô +ß;®!#U6¬p ß½¡Å3+"`ÇJº½ùÁõ$$½å%,QUcg°Â³³Þsæ%à X-±¬n´ôØQ½>Þ´cc:BÌÑ#4-f@LeBÑ�bâù9§ôæªE¤´F5£pDé©·Îud%{ëBt1hÈT]ÆÏ0DûÁd0:ø.z ÷´q`B'лò£-屬øòvgvô8+ba�É\ÀïwtmËõ×"DÂå½óát97ÞöwÜÕ'&|¶dELÔ;»6â½<áH1- èyñm Ñ®aس&¼:qS wì G i¨ ôTʪ½BÌZ¹<BÌV(D2®á>Ûûq _ÏC%Ïã:i[µû$U»Ó,²RpÉYµ;--" +«vo§-ë[µ» ÁËï£G!@z°Íf<ÕG&èÅêÁ>Á%·¿TìÚ2r*i®a)¯p èxV{Bô`åÎÆ4´Ããÿâö|þz°a/ê]0eBþ´½b +5æ/(÷Ìù¾_ÔªH¡FÍ!qк«r÷¢áç`\¦;¤}A©gÌèÏÐðé²àß>E9FþbÕ*J�Ôé÷×ÖáYsQr¤w¦8©BÌ("!TècEõ^`]2 +jz,0ÁÕÑ/J½Xï=ÙÙ¾ßÔc!³åûSÏÓ&ê<CÆ«$Zn.&áy±UI^_¾Öowå®ÖØ +meC´&íù~¼ØÖuï)4Óè%Vè; £D0!ö`¶6g +uª_WHÅ :G(ðBÏXÀózc·m8=_XjgPÚµý%çÈÖq¢Þ>VM èÝmÌó §Uú�Û5_8jR»oÀÆCëW6)C%Ô7E§ÖËÕO{~Ѭ�ï!ÒCÓ£ÏvLP©¢%ç ãèÈuìÐáïëJ´$é÷ùÔUä îH£Ä:@Ð`HÌö§ÉplÌ$úrFÙäÖHæ*¯¯hààP.¿Oç+2r=óå%ÏE´ä¼8nÅs9ÏYqDPBÁ6óíQØfLô¬àµðÚD8àÕFüxQ Èú? õ}x¶Õû�}¡#ñaFçó&"ïÑtâ´5R'@·EÔä�)¨øÜÀ2l»X< +PXÉÌXÏrY×v, w,5%Ä©¶l¹ì|ϲçh<f,n<æu°eKÌ:X/èl@ÛçÈW±u»/àÕ¾�ys2_RóNÂó%´£¾ó·80Ëés[ûøx>Á#×+lóÄD9³ÜË#ÃRdþ´[ìyQùKÞ0XÉz©?Å P §@Ô@ûG1µÁqW(´dZàèÐ�}y¾h <,Eã!í2R#ù¾)µ^8O ùò$Ä=BØ® +Æ pF2 °àÎyRCá²ä{@åWôûÌYR±/û´tdɨ*ù-©^éÞËQ`AX(ÈD½9¿TÑ1lÊx(\xY}¢ìë]¨á7Ë5©jÀº/íÜ«ÈD +d N',_s}U¦|ÂE/1¬A©Èi:¬Z`No¾ì ÙîU ÌÉE4S8 +;ëÇLbXË1( !ÐIFB~�d +{à1Q\ÞÑ>QDÊW¬Q)±X4oB¥°M +i¤fÈãM +io¶ürêÝbS*-0Çðx¡s{~H +¢UüçA<Øñ'ÐëͶäô|GbÕ>7`ÀèË3Ì!ÏÑl¼õ#Â0xÎ� Øb[?2©`5ÖEt¤Ü]oøÐñ�kà8)>´ ~,ùË &Mir1¥°öµ¾¤Jv²° ¶YRüz_ ÷Td;°T(úõO8JįÒótÎjFfPßĵ Ê#§É²êmP«ÆHA½û jvüS}AR +¢¤Ä´/ßzÞrR×R°Â£ÀxLð£!^0;8«íâÎfÚЯË:a3óplÂfÃvé³ad.W_Ö$¥¨MYÃÀ°²eU®u, oaHÒïóÚ(èBÎÜ2RD¯#´¥ú~Ò(@çS2r&º7.oyÝHV³UÄÕ@4êÌØtRLõVLnÓ!Ãm© ÂîF:#_¤[ÚtIbyê` öÚìw*NÔ1à8ý¾YO/\¿ãó]ý@©ÑYiaBïÜbÛå1`Ñù;DÐ6xà¥uÇÍG+B³�EP®q&ó¤ÕiåàIÔ!Õ$$=í Ê Þ~a½èZIkj®*åaF'ÐïmSÑf¦S@ZÔÑ}a1¹s�ÊÂEXÝã�íX%;FëcsÑ1oY¾-ùPgÿ¶¾C1D^SsenmÁ1¼w!K:À¯ÃÏ¿f;àïwÌv ß6ÙhRbØWÏf;4_Î÷B%<&P0Ó ½|iGû͸U×#Wd5"í'{8å:S²×Ò®jªøy5iDi½ÈÃHá|IÇѽùÅQ¥ÕFê ^z^¡!Ñg´ÖU³ä¼÷¡ªRÈJÐ÷OG¸2D2ët/+*)v6Ô?Ï÷Î/cîhûý÷ +®akj:LQ#* ¡¥ü¸{c8³Ý~ZJVbZq«¬cÝCÑD`úB{ÒtÉñù¤hzN iÄi¯,8àU¢ M¬-%ºQ ¿±9%ðÚÆ^ÐQÛXuZÆ >h¹V8,t»&U HnÌ´q$ >h¬Úù�[Àô[ëb¹!ýbë´f©HZH÷~4hÏvìý°kÿðÅ4(D>fÎÔwl0ٽР´]8¿OW¬íbr I]Ü G¨,UzUSC^Ñ8@«[vÙéúâkïÔ6¢²Ã±È¥-6õÀû.r ×Äv-ÄZb½4´/àG´p/iJPºÔ¬¸e cñHÖ¶Àö1à +ÄÃæÃó6PDØ 9káïºh=G +*]óÓÁÛâ3ä&Ƽbê$\5¢l¨èΣ{ÎÈ6RL:òmÂsç´ï!Ý KuF ò- º((rjêôM8Þ^ÚÛ «WêÂ4# +_B`A+:Þ¼·=8¦êÀ¬¥eLöâDv1Xq"ï/±äѰà²Fçíý8¾@·äÑ\QþÃ×v +êȱB\E¸~_"�ÚCÖ.ù _rýÂoPÊ êýô 3jÉ ÖÔ^P?cÅ_iðÝÀ%¼ÁÝÇdfW=zväǸPtÛUÁÃ"ï n +,¶×³hD¼Òàõ7[zü¤Á¾"[]C×^ÍN¯/ %òZ±»Õ¼ù.BiÒhq,ÊO?zàíVÐNÐö&Ôuÿgoù%¨l$'Xn`ËðDm<O·ÆöP Íï>¡àmnðo& ¤x4CJeyá÷â¹FÌLçÌØnJïüôæÕJþSñ7_б² +èØ6¨ègx(0鸼®³FB0Ip¡[»àÉ0M1»�£×.xàÀ«(B$¹Àç ¡Õ}]}×[i±&G�hn Ò{ÂÓ¢© úÔ¯3 ¡dÅ;®íjFiz7A?"û¡2iÉPìÉÍì]8Å{b¹`_fÍ{K6^:KÈåsnRiN,Zµ5 ÂEKcpbûõ»ó<ßÚPöçÇPjÒHÈ;û+8AhÍv8 ,×,\ªt�÷öûH�ùÊ Ú\raØ^ÊEä�ÛÚPT`ýíÚ' ¢ÅIbzo£Ébâ÷ßë=-Ø[ûµ AC¤ïNVlM0FiBj¨7"mýÓUS#¾¶!k,äE=fcÿÈëME-à÷ß"èeiÆhÛÜ I!¿WÕÕGZéHk}d½ Uå¹VqÍ~[«Iu Udå]b{s½+Eäö4£ßï¹=-?æÍõâÜêãMhro}4%rº³}ñ§È|+ä*Z"ݧ{d+/H+z|ê÷b">÷¯×1¾ÖÙê¡Ùae`¿~öd ^X°¶¹ýúº9Úî.¾e È7GÛVFɳ±¡ç)>ü)xCitÉÁ¤£ë¦¶?âHÄk'Át÷úBGX%Ѳ±.]99|^9<Nà\9I4$^2<JÄY$âõúaßçéõ èà }ܱ/ G 8¬mqüö°"Ú6¡Ãó»Ëþøû É&�Öz ޲ߤGÁÁ-3ÄÏL¢5uÅA ¸|ÀX¡ÅêGÊõƸ&ô¼ÞÌ`XÁØ®ç½Íþ¨×]Ï|Â,}¯3tý �Ŷ¬M~ÔN,gGhvFBÔÑöÐ %rt�ýæeG'< +QG�ª¡¾Ý°"KÞ18»Ãò¼ TÃ$ª¡^f°îÔm×óöþ¾ßÑbÞç>K2D3Dë(:>¯gk¡!&ÍÓ¼Ù¡!(½":è|túÙ®n<KF!bêD$ô +¾ÀDâØ»(üp<vûÓG'¤â&y¬d¼×9Ü`Ðê%ãB Û[CÉÜ6W ×pËï]s¢¥ØÝ:¶ï_HòNhtl8ë¤ð3Pîö%CK¤÷gê½ EÚ(?%19u�Ýi©ñ^\¿ãÒNuàó7£ø|<4¶ü ¨ 3Ø¥Ýÿ 1X§½@Æ`¢¥ÎóÌí£ÁEä!°¼Àå�©7 ®¶°Äà9aÍ%.:ÆåDX¿xÚP$ÐÏÚº³DS»�Y O,mÛ� ä¥ �(¡¾<Á|iCéLI3Èã䯢ämÍAX!Ñb[?Wù|'b¡^#3`1ï�bñÛ~Ìé¤É55ä@+ü Îãù Ö»4$5.Û¿àY"þÑsCèLôûÛŸµQåuýù°o×E¯/Ê¢'E¼D³H¦Á'ôÔ²æNé M®P +(Q&¥ªtLÐ÷òß3¦{ cøfY[^0,ÆÆD*Æf¢.ÆkÅ!ìAÕá�×»W,ï§/гÃËEªÈ¨Ã[T5hôBßÞ +â5|VyÈ0¬¶ ca¥8f-¹å£ÐêÍ80¹íª]¿{vïIÀ! t¬Ð¥Ç-_¹L?¥F©±ÍmoCÓ2´x<@G_clîðôú°Ëôbáé�zS^lîôt�} AìÏë×qÎû87&ÌCt8, %õ#ÌJÞïSDvñy¦ ±ÖÊõðõé¦vóé@¬%|âØüZïÁ�ÇнLPôärBa9Á^';pÅð&-NLÔk3IyÑÄÊZÅéôqR½?:µþè¼80s|Cc¼eÉrÐ,©è +!_ÃÔ�Ýý¼&ª`Hzzì,lÒ± kÒC8<�º9%³2 êtKbE? ÕÃ<êáaÍ£<l=³ÑP=¡èM(ó*Æt ht.è÷;¦Ö¬Få¤h ÂHØ fhjúP´#¸ª4AèY"(¬ÿBÌhj[ õþHØe2i"D»&dFáÅ'¨/øðÑ|Äù^5ºh!å|@Ê`©ÝÞ7K|xAGo{»µ:=ßÔ7í0Ô´< ðô=9oõã3&"K�_ _ýÆHäqï'àùËØzÙ<Òâ@Û+¶Üß\i(`ïq@ßm×.ï=r 8¨¯½oB'êkï�3øþµ÷9ç{ÖÞ·>8W½�è¶ì¬CòRT°ËpRÂ+ì2ÏÌA%l#䡾Ic@¯/Í7p% ¥9¢êÌ�³:ÙWDA=#ARcÙOÐ<¡ ;LÒÒìh>bkèu}9³ÛÕ=PC}ÉÁ FìöZ^)«hXj-ë¹9ÌMÞÍ9ã*ý¶bn�LÔo+òÑÕÁù9Äù +hËzæ+VQèåµÜÂUuG$µÈuB[Ú3_E +Ðù8ïj06_Ñ\)äKUJ²Óͱ^¦´=ýh(¢ò5êØí¿(E¨1Þ$aE¡yÇÌÈôèACztõ5¶¨¢N^rÀxAÊIQSDPþÌ¡>Bô1?« DZ.(¨ÄV#i¥ÖÓäV°X_òÇ/èØç²à] HB[~~¼rwk øyÈÁCÞ÷v¡41t;à|@òtÚx:@Ǽ45ÐÛxÂÁ!£ghôÛó<k 2Td"$ªEÓt "Îã!/ÜdAY@0C3ÐÑA¼Y,Qug*Ò^PK× +ì@Gv¢æÎhr êÙQXî(¬Òbªés+Ôø¦Uj)íAjÌEÒcúyUÕ]¢HÀÃG°K¼bkBZUH õ{+±8=Íå¦ÍË-S1 ¡®eVÝ)!áZ%ºUA;°WI< +°zi å×z)m" éªÀ³C½$!Þ1á3êp°ó¨Ø:Q_RJ¾'CiaÏ:IÎN PædÙiøÛ2%ð}ÐéEf-*¥$gÕëHÜ`SX× (Z#Ïãù¡I¯½Åù�B®ÐÊæ ¹´úFMàü=&ÇÈ-¡[8@GÍÒ²ãÓ:P23b¾dA2رÐe ,!-^7g|"°kÒ +4ɰÞFã-N±2ÌÚ`Véü|GÑ$æÖiAÐ1>3â`>cè¬ µËßÓdh½T 64Zyé`Þë3övË@ïÉõuʵuSÐú²]ñ> 2ú«,¤kE"ÐÓÅDpi2 TF$:OÐëq]) Ñ^_JÈvÔ¬!Ð!=_¸ï§\/¦¯r§¶3îûV){ö»p½ð`y®Ãméñöïë¨B?4&Çï\¤¾`ÎÚòÛ£OhKð4¯b´,çldÝ:ÁÂE®åé¹80>l½à«°u¹=oS·çc|N çR5M>�T) )8¿`j+ÐWðhóõùâô%Ù[kñõ�+X"qÎ+¦§¤ôÚ"ãËFGL4ç"![@X`M ®xIñ¶¾üJ ¹²à¼Æ¾±`ÂBâR¬G0¤GüP®/ RÔv(øRD¦<ZzÃ:¦<ÚÅáñ¹Y÷çG:bkÄÙ£¡i;39}qX«ô<½;nb+ù$Ö^}u£Ë+;;AGÅ2( uH'ë Ø¶íÝê å%è>wPøRø¹ÂÓ¯âôûz ¢aÏ~_FnOm`ðL@yyx*ð�:Ú¡G� +pX°ê0 ¦DtTçÍ~ìÆ£ée]ÁtD©ôfÇz!±^c&¢àu ¡E!Þ¾îQ Ëù®èszìbæÌóqæðè[!¶hòE ùâìT6Ãäê?Ϫ3gCQõ¥¤ÂQT-"Í^á Ô+Ó¢V8p<§W8êtOfäH:fçmF¿iý+Up yýºÃ}Y(_ÖÆ5LXóLÐÎ<~ÝaàÞùés«ò ë ê@¹iGnG±738tÝQ +Läë2ZÌ÷gÀX¶¥µöË@½)0¯íù¦/µÖ×ÒÒD/ÙkG0@bCu{w©±=?ç¥å-¯m§è+LlÆéôÒBEè(-´+·#z�$fÈB¹/Îv�ÊÃ%òÐð-és}chd|º¤¢çåhÀ +å¾á÷P;ó£¨lÞÒ6`l@ç-yûÁ«ï,:´`·ô,åÁ%Êí&¡Û¼ #³mMTÒÜ~z|Ííyq¢JÀ/ï£fHøå;R#}YsZ Èݬ{mÂá�[½aXlצÛóκlVî)QHzER"ÚUáïËX<9!Ò±xìêÞ ]æhi!#oÞBR¢ø¤©¾ÔݤN:@êºÅ é ¨ñ¾îöXÊ¿b».<¾àm]_pÁ×¥ñ6aZü~gîÏÝíK/_gÚð'Ð'Èzí+>ÁE ^'Xv.¾@Àox½`D�óÅw{AðÀ³LÚlI(¼`zm²9;d0÷åÒÖtQßÎQDÒ±"´=®ÖPPvÙ�1¡¦ cIjÛ?1ìѪú÷Oô§&-7³°úA±Þ»4¬qÈ#ÚpÃöüG4�·vÈ#Úp÷náðÍ âø¼$öY{¯0@ +tTfð|W ¡ª$`Ó AâpY!ôîue´5ÐÑZv~" Þ¡ W÷vëy:2ïiQJ7Ehï¾p@ÚÌöéy-ÙV|úfPAf¤cGjAJܱ#uBè@lË®]#BkdØê6ðÑ/x'" à±)±õ^xJÌ{/Ю®ößXôÄÔ³íª°úȪQÀm¾p|Ê2ät_¸Ñ+PD5cë95OÄ·c&M 9Â&´#Èu!lNZ@H ¢ÛÙò äJ°ç§a!zVÙHBÔÆ¶_¬¢/!°"5ìèY/ì¹7 ¨'¯k 6%"È éÞdû/|gBîÞS¼Qt3¢,Y(?¯Ï¡Å¤'×¾î)î�N(¢7£µ)K!¯¬·BÚ#*eVC(æÌÒ¥Ö·x¯¹Í½®ßë¶£|½ºQþç×hGâ/{/<^Õ×ÚvÎíùÏ-çèùåíÆêð|&ørδ??bööÃïw\ZîíÎ86gØ)8ÍY5Рʰ>diÁQôåÖí};Yâ¤Æ1JDRã8I¤©Ýzz2È¡ª¨D0µxîh;vÈ4lÎõêΪîØdÉIô @Ç^Æ4!;¢¥qÑ6&9&Ä Çg!ù6p-|�{Á¬¾-QX/vê5;°Ñ°òȨ3¶ç§{2´!kj2Ä5'èAÖ !Ç~}!ïß¾ðâiu#CÐ53re=[d +ô"ã6ÛrËÛQ-̨ |9iQã!6Ý,¡¾q[¸p+ Ûë3Y^Ôk"SÞSÞABܬFÍwÍòí¢èZâÆ ¤D¤:0ç~vE|û +;¢í½+NbÍ·§!Ûb¿?X(ä�0 +pGwÙãùsG7Ñ"Z>ܬXG¡~o]y|A'Þþs|ªònÀOKÝ}d¬ù¥wòç¥t.òG[`3®#Û¡C²³°&´:a³¦Ù[ÐêÔgòØ>´½>}hn}fVq(À§c*z^ï¾±fPOhyÁfM³»ô>;vÔ^|Ç*É�Å>±¼Ä×Y #gä�XÐ{ÖËì²ãø)Û²7/ðlÇ=¼ £-{ëy¶ãHÐѽ] ÈmÙxú¹-{*@'Û²÷Ó ä¶ì´$ø r[vjtçÈmÙ@¦ô*ë¢Éß_²Ü2٪ž9$eôë)3ÍmÈåx�=¶Î6jÇ ïS2NTÂkAõlJQ cWï5 +ò"Ç*ÆeD¬§×^ãXÔÀÔ©Q%{ Jx ee¢õ.W ¼ÆXØÕB2ßcAjdÌD%fAEAMG;`±XײdÇ@vÃ6·íæK6·ù{<¬÷ÔhG p¤V)føûzc ®lÉ÷¿Û8mé6p$`43¼U\¸L Kjý<xÏÆKòþ#BÛ½q"ÞZFè 1L¼ôPr mGõ9à`{&@,¢~w¼'øé3 NÉ¢´'¬nÿX®ZZáGùxIÏwTñ�N'D~"ô~\>g¨Ç:~FÑì¥@A¿/áYþEo`@ìØÞQÑïC;àà_x/àÛM!; [2¶ÝtÚ ÓÏ&L +àAÏúñhjÊ-S¸£{z¦Ðm¤@V =�4$:MÞ#ª^Yë`XïyÃ\àôÕq-¤ãHA"vsçË ÉÍ¡!êèC²2ã(øûº©s¦y á�r¦vå1H8 Õ$ã¡x9ÿÚJ幸b¡òÖÐ êC+ixí8)ѵLKOÚ½ßéà=cj1åª gൠ;zÆéäµ {ya0¢Úñ5Ý¡_$M ø|Ç"W]¬l6 ¢¾Ù9°Í ^4àÂkú¹-ÛìÙ|YìÅk©¥UÊ£³Ò]»mó!O=hH[yáY";|AǵÛ6à^ _»m �èäk·m¹':|íf»¤Î'¯Ý¶úùÚÍvI_ _»më=¥P9X'Mx ¾ìy<ô#MÀþpÙ< §?Üô2÷¬(M|AÇô}ÏÉ ÉÛÏÓïëçÏY:?ôÉËnÍÅvÎèáI1NÍóü~ÏÒiÑì9/r@î(rÌê1¶éøt�ÆF6e`A<è¶(yXE£ Õ¢u¾erJбßZ}õ!ÿ»fµ?hVcp,È 1_[ÿDt°i~!ôü:kÀQ~3CÕî½Dâ²õOtË÷¤ðç!ï@1©«ªÄ³(´ÊõfºlXÍØFäyÁ¼"ÐçK@¿ß1/XîÆ%ÀpHÏÏ#r 2PR]éHH )Ò<Ù³Lô°NèZcyx´"Íñ×Ì`Opã`ÈS£²º^j ¶Få[ +Þz@^«41bÅÊm(Vò*ó*VðçQD¤TYlÊ¢aHAh º0²CÏ8(|Êþ~Bhü}Û2ït² +¢Àô;£}Fc�uÀg<ªt~Úba�Ôì)¶Á$|Æå/ÄuõBR2§³.û>ÞÜÒ´*dô:Àg@,èêÀ¢´ÊÒÐ-x $oÀ¢iÖogEB¬oÆÜ#¢&`ß®îPÕDR°VôfdFÁðhGõ ÇæÐ&¤q°ãÞ4ÙiG yÿ²£=yue¾@®oíaÚ0ÞsE{ÿG¾v>w¨víE2Üáa{ =;Ä×»jÑ-ÏQObëYúlºd¾å·plHgäÉz0^ßìP_q£QpEUG&ÍSZÓvßïêº"ÏiÕA-.®Åûz×Q-Þ:P$ºÅGøtJ_�î\ Uy¬Z.jíñÔ¾}e4*0 » +eÁâ)À>Ý¢%æTë])E)¦ ±K¸\ èÚÏB2ë Ù.ðúÂc¢íCèMNÏë¥ aôø:¸¢_>ÛñëÍ·Tpþ µsÇä¶î@A}ÇîR´/ åvåy:N) ßÙÐqgÛGè°[ëÇfÎ$Ô·ÆUbÙ¥"±V72dAG6:xH45,QbVÞ@<ÔçÔ´C=íCÆJÁnR°.vÀZ/²&ÄüU}Cè¢X&IxïÒÂÞ t}GȪ°,Úhb¡;ÕFä(+OdQYy*Awïg)J¸É�Ù±âªC$5nF6ÞâÛAÖ{²Q¿6CyN·ââ¢<ÑoFüÉ@ϵZL2;õ¤� ¸kÿø8> ÁÐ[Z²õ3oWCбµrn/»µn·Ûn[+çñ�; gøû:rB®ðç¶èüW¤ÇßïX*Ù<Éòã¶òú=HsC(t-éÚ64á�¤Ù²#¤û®WC»*B¬¡~8Àw*&ôû :WwZ;wu=u\¿rSʪrmeİ~ò�(9»³$+Æ·MùiÀ·Dð|/Nf½;×a%XgQ ØkDP¢!ä3!.ê�ë(×´Õ©óªSow®±*ñ,W5¾VùZÈY³t¨ ä[8·=T¾!=ùÕ<d`ɶ:ªq®Ð )f/@ÎÚB=rIÀnMÒ±ùÑÞ5°´"Ý +H¶[Ï[b¼§blFŸìÕ ¤¨÷ê±\%-0¢êx.¹ÓµPP-&¤PLp6æß~× 0NR[ÿ°N»¿ç¶äs=Ah×õ+<ãõkúÞ«XtH4»µ¬e,(ñø=(²½Ççõ Èó·çG¢hqõ�LõíÚòøòxM´Ëãô(ÑdG +ÈÃ)»|¾gõÖ5ya!Vضo'øVÔà, <¡8>aêØløêc:3AöÈ)`==²!çûz-Á6ÿ´uþl è¼pJHå~JCÎ÷>2Td½Æôû¼Ä°JÄå;ÑOOO´z\&dI{6#VÈÍE³d|3""2²~yw@'l¡ÈÕ\ÕÐçV./ÛNðFÂX>ÕÆö)aÏÀq@踴 +Ðöo65C9ÎvÔÚº7íXifmÝÃþ<cC¨ ËjHÒÓþá:Cõ¿ß·½í[?ó@ê¬HaÞ8VY°)Ô«,Ðv\×UÒÞ×oÅy®÷b¬ÇDõãP¯wï%A¾!ÞrÇ{bÐØjÃaS\¢&´ÂîbëëB«0Iéñ¾l-&ä}Ù<Þ_«fy_uR})´íÙeê-¶ü¸íSkv÷7űé6u~<Ƶ7Vï(qLûïM¯èüúõyEèÁíàü=¸ýÖÆs}ÓðÖXýâÉ÷ç{cµ# kXHI¸. ½©ñÓtÄr«×û<$åÑ Ý&óFº-G +È!a2oæ<OÓsóf'!w¬@d c5aI¢"Ù¹ÕëÏ3zµÃONÐDùÊÅÆÎ=;F|5jV·@@G x*áñyèè#ZLãXWóÞá¿8²ølî\4¼À¡òäA>�É®cÖ¤ö ÄùU¤z¨Ã>kN(éÚKóG¼/q1!ͯ3t&rPÛ2)$½µ6 +WH'Ì[L8Vè«è�úýu®ZDÃJ[Ƽ¼§6Ïß,x¿óçm1¢±GÖ"JE$ÂþV©ÚÖíï÷f²ëóÅ ïÈP:[w¸¢-B5¸^»ñ6 +uô¤ ¥¼Èô¨§ÆPP\©9´×jÅy÷GN¡À¤Å¼Èë®"Ǥ%E¦ú]Ûè±ÎHÌ¢!`4öI c4öÙóÃzùæýù¾Ck!°Ðþãe¶Üðt�Y£ÊÔ;K÷!|t;dÈxøô"u' YlÊbF/¸R·ât}³^¼'ÅÉzúyúýÅtvõç½~AÖôãö£èx@ÛÄÓd@¿/Ë=ZÅÝUC¶Ûþ¾|ó¸OI<!_d» OÐçDÚUϲz½&Ü,ñPclZTCÈFÇU Z'IèÕmÐ< ï¨t$лkh ôh&'du_ÓzÏï £°N.�tʤ±�Oî +ô$÷+r=ɽ¦´ÄdÉùÑ]ûxÿTÂþYs|B9ÂXbïpÌ¥À + PnÇ, c:|Â>`á:Rvù?¿ÏòâpËn[%3J²¨c§^ï 2ÇR[ «hIZlVh4)V"EJÍ·Bbsó£¡áí"Z¡k(âBÂ¥å³âniÁH8Rôé�Ð6¶|<pÕ`ØóÍX#{�{áp�½g8ü~G,J|8�ê tÀNíØ×,` £¯< vô['Ors#xAG_y¬Úøl&¼°°@)Ôóò|S÷ÂÀ î pòáM©>¼oÎÌeÃtéÃûs@çÔö¼ÞÓBÊÁú9/NÐu¬mX³¦D4¤=CÏùâ(·8¿ØÒªãÞëüÿõW?ýâñGüñ«{ø¤íùO xýǯþøx÷#°}¼uÿæ7?þîüùÇ~ÿëßþé?û?þéùã/ÿñçßüß_ÿö7?þ×ÿûñOÿòóïÿðÿúw¿þ׿ÿñ˯ÿòûßþûoÿãçÿåÇï~þù/ÿð_üíoûúùw¿ÿϯ?ýöç_ükë¿ýÇÿüÓÿùÅ_þs{îëw?ÿñÿãWÿû§ÿö«Çéþ?I +endstream +endobj +459 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1025 0 R +/Name /Im424 +/Width 50 +/Height 68 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`�ÆÉÀ~�LÉC¨z° ãÔÔÔ:HÙ#K1@¤þ1 ¹Áþâÿ¦¡ÿPâX~Ť)¨ÿ `òÿ(4r©Üâ�÷P³ +endstream +endobj +460 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1026 0 R +/Name /Im425 +/Width 38 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÎ1 +1ÐRl#¤ÝBH· ¥¹½ºð*dÄÄ8e°q-¶y|fþ�3�[ p'ÁãÍ:À&+Vàiè$Å%òN Ú"V,¨Ð;Ë +ÓÉMÞü±Ù6ÆAÆrádoåäñänüa[[WÑ_§ézß}îBÛ +endstream +endobj +461 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1027 0 R +/Name /Im426 +/Width 45 +/Height 66 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}Ð;Â0ÐR¸Ì ð èé"q-õÑ|Á¥QYPøÉz åýx @dƺ Àd Ó0WÄ+°êÕ,ã¦*JXÝigT+f×{À,ñ´¹öfð·-j6cd¯Uå¼e Æu}n溩6}ný²©ÕOí¯ó§uî=ãN ä¿^^9ä@}ÉoG æ?RØv ²ô´{º8/ùt!)Æü +endstream +endobj +462 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1028 0 R +/Name /Im427 +/Width 76 +/Height 69 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xѽ 0á³\¸ô·I\¥Km° «PdF t¸ø~#P\=åû�p{Mi¾jXîDëEò<mÚoª¦*ȢŪÉò¡ªdÑ]¯Ú|ÍÏÎärvk|æûU(Òè0ÿ(©bæÇP ,FÞyRbIþï!êY=Py'14ÿe8É6:$vÍo&CD2U£Ä[~RÍoêå"EÄ_¹ð_½Ýçýºà +endstream +endobj +463 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1029 0 R +/Name /Im428 +/Width 54 +/Height 64 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xµÑ½ Â0àg¥H²%a1äÄ'1�#®tqÊã]$?ÖWØï=£ÚÐ�ÒÈYÉE\È&®6 Æ=Q´Ñq.taE§µ +íèÏÔö)~Ïû÷üu²mÜÞQò)X`Èk.ª P!.TO^UYHFß�þóO¾³;OûE¼Ì +endstream +endobj +464 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1030 0 R +/Name /Im429 +/Width 15 +/Height 44 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc? ÿÁþGýÿÿaýûòØ0àìxuòëT¬�âE/t +endstream +endobj +465 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1031 0 R +/Name /Im430 +/Width 71 +/Height 70 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x½±Ã EåKAéÅ]²@¦IG£È CÑt;ç\Æ<dé[gÒ¹ë- + uâ&û"ÇÈ²Ó I+#zH.Þ'ÉÞ*ÙU#vËC VBc�ôñVéÑ¡DkËæPÏZj +é +Ø¡ÿf£ÕüøABÓ`£+«Ã1 øó×äí.öÅn!ëhlѯ"Ùî^ +²T2Ââ mAÌbÚ 54¬åf{Ü_ïçtJæ +endstream +endobj +466 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1032 0 R +/Name /Im431 +/Width 47 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿH$ãÿ@ða(lxI>0ÉAÊ`6`²ü"Á$ÿÆÿ õ?þ� +©oY³Ã�ÉY¦ +endstream +endobj +467 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1033 0 R +/Name /Im432 +/Width 43 +/Height 45 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x± E¿¡°d0Ö¦Aöq ,)zç'Ú¼8îÞØ»ÒKT XѺwزMêWÆ·,T}8$r3 +¿¶^.cþǶ'Y'ÚôÔÐWÛ³þÌÂ\µbÌþþÃ8-ûü�3fDr +endstream +endobj +468 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1034 0 R +/Name /Im433 +/Width 45 +/Height 45 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xϱ Â0áßráÒà RR¿Á°;JalÀdÊ(æÒÓ|Í;=Ý-B_¤å¡îp%¼à°B%¾Á<¢@eq3¥Isße=»Û!ÿi}êOoÒÚ°É2e=mï<úkKÕ._äåÃS{óMÛ·¨_¦Ëãüñ¯6 +endstream +endobj +469 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1035 0 R +/Name /Im434 +/Width 18 +/Height 43 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÀÿÿØ00 +ÚølµvÍ*I�,g1 +endstream +endobj +470 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1036 0 R +/Name /Im435 +/Width 28 +/Height 45 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMͱ Â0 áßrá,á.«dÊHñ>,áQÞH4Ar\B_ñtÒÌÁ¤T^:Õt!jrWðo\¾V`só®Âàc0m!ÙF4³Bg~ÝuÂÛ=Úð£ÿ XWR1::"o×,úóí~zDkG +endstream +endobj +471 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1037 0 R +/Name /Im436 +/Width 43 +/Height 43 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿêÁdýþò Ì +$#d8�&Èò�LÀE2HÁJÖ?�1ÿÿoÚÚµ«´Î9á +endstream +endobj +472 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1038 0 R +/Name /Im437 +/Width 39 +/Height 43 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿÿAûþÌAÃQ�'°0â�`@&á;øÿF¹H²ÈÚØ`àÁBÈÀ Q"~�]Ïþä¡®]³J�NfPk +endstream +endobj +473 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1039 0 R +/Name /Im438 +/Width 35 +/Height 43 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃÁþùÃÀ X(#`ì B¾èúÿ ÿ�B(k׬Ò�c? +endstream +endobj +474 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1040 0 R +/Name /Im439 +/Width 35 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°ÿÿÿ`ÿÃÀÀÀþcö ¢¾Hü?àÿÀð¿HÔ3ð?`(`À`Á AÁ¾(ÊÀÞÆÿÆÕ700([×îÐ�gÖPI +endstream +endobj +475 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 580 0 R >> /XObject << /Im440 477 0 R /Im441 478 0 R /Im442 479 0 R /Im443 480 0 R /Im406 439 0 R /Im375 402 0 R /Im217 226 0 R /Im166 175 0 R /Im444 481 0 R /Im445 482 0 R /Im446 483 0 R /Im447 484 0 R /Im448 485 0 R /Im449 486 0 R /Im450 487 0 R /Im451 488 0 R /Im283 302 0 R /Im283 302 0 R /Im283 302 0 R /Im283 302 0 R /Im452 489 0 R /Im452 489 0 R /Im453 490 0 R /Im453 490 0 R /Im59 66 0 R /Im43 50 0 R /Im37 44 0 R /Im38 45 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im48 55 0 R /Im52 59 0 R /Im36 43 0 R /Im44 51 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im282 301 0 R /Im79 86 0 R /Im70 77 0 R /Im37 44 0 R /Im39 46 0 R /Im74 81 0 R /Im43 50 0 R /Im52 59 0 R /Im72 79 0 R /Im52 59 0 R /Im76 83 0 R /Im35 42 0 R /Im284 303 0 R /Im441 478 0 R /Im442 479 0 R /Im443 480 0 R /Im406 439 0 R /Im375 402 0 R /Im217 226 0 R /Im166 175 0 R /Im444 481 0 R /Im445 482 0 R /Im446 483 0 R /Im447 484 0 R /Im448 485 0 R /Im449 486 0 R /Im450 487 0 R /Im451 488 0 R /Im453 490 0 R /Im452 489 0 R /Im452 489 0 R /Im453 490 0 R /Im453 490 0 R /Im452 489 0 R /Im452 489 0 R /Im453 490 0 R /Im453 490 0 R /Im452 489 0 R /Im453 490 0 R /Im452 489 0 R /Im453 490 0 R /Im453 490 0 R /Im453 490 0 R /Im453 490 0 R /Im453 490 0 R /Im453 490 0 R /Im452 489 0 R /Im453 490 0 R /Im452 489 0 R /Im452 489 0 R /Im453 490 0 R /Im452 489 0 R /Im453 490 0 R /Im453 490 0 R /Im452 489 0 R /Im452 489 0 R /Im452 489 0 R /Im453 490 0 R /Im452 489 0 R /Im452 489 0 R /Im452 489 0 R /Im283 302 0 R /Im283 302 0 R /Im283 302 0 R /Im283 302 0 R /Im283 302 0 R /Im283 302 0 R /Im283 302 0 R /Im283 302 0 R /Im49 56 0 R /Im40 47 0 R /Im44 51 0 R /Im43 50 0 R /Im35 42 0 R /Im43 50 0 R /Im52 59 0 R /Im72 79 0 R /Im52 59 0 R /Im76 83 0 R /Im35 42 0 R /Im441 478 0 R /Im442 479 0 R /Im443 480 0 R /Im406 439 0 R /Im375 402 0 R /Im217 226 0 R /Im166 175 0 R /Im444 481 0 R /Im445 482 0 R /Im446 483 0 R /Im447 484 0 R /Im448 485 0 R /Im449 486 0 R /Im450 487 0 R /Im451 488 0 R /Im453 490 0 R /Im452 489 0 R /Im452 489 0 R /Im453 490 0 R /Im452 489 0 R /Im452 489 0 R /Im452 489 0 R /Im453 490 0 R /Im452 489 0 R /Im452 489 0 R /Im453 490 0 R /Im452 489 0 R /Im453 490 0 R /Im453 490 0 R /Im452 489 0 R /Im452 489 0 R /Im452 489 0 R /Im452 489 0 R /Im452 489 0 R /Im452 489 0 R /Im453 490 0 R /Im452 489 0 R /Im452 489 0 R /Im453 490 0 R /Im452 489 0 R /Im453 490 0 R /Im453 490 0 R /Im452 489 0 R /Im452 489 0 R /Im452 489 0 R /Im453 490 0 R /Im452 489 0 R /Im452 489 0 R /Im452 489 0 R /Im283 302 0 R /Im283 302 0 R /Im283 302 0 R /Im283 302 0 R /Im283 302 0 R /Im283 302 0 R /Im283 302 0 R /Im283 302 0 R /Im283 302 0 R /Im283 302 0 R /Im283 302 0 R /Im283 302 0 R /Im283 302 0 R /Im51 58 0 R /Im52 59 0 R /Im36 43 0 R /Im44 51 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im37 44 0 R /Im71 78 0 R /Im43 50 0 R /Im35 42 0 R /Im38 45 0 R /Im72 79 0 R /Im52 59 0 R /Im76 83 0 R /Im35 42 0 R /Im82 89 0 R /Im56 63 0 R /Im312 331 0 R /Im296 315 0 R /Im313 332 0 R /Im68 75 0 R /Im454 491 0 R /Im68 75 0 R /Im32 39 0 R /Im80 87 0 R /Im37 44 0 R /Im72 79 0 R /Im48 55 0 R /Im70 77 0 R /Im35 42 0 R /Im48 55 0 R /Im52 59 0 R /Im36 43 0 R /Im44 51 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im78 85 0 R /Im89 96 0 R /Im35 42 0 R /Im77 84 0 R /Im37 44 0 R /Im70 77 0 R /Im72 79 0 R /Im52 59 0 R /Im76 83 0 R /Im35 42 0 R /Im36 43 0 R /Im37 44 0 R /Im38 45 0 R /Im35 42 0 R /Im72 79 0 R /Im37 44 0 R /Im38 45 0 R /Im74 81 0 R /Im35 42 0 R /Im47 54 0 R /Im73 80 0 R /Im44 51 0 R /Im43 50 0 R /Im40 47 0 R /Im37 44 0 R /Im47 54 0 R /Im52 59 0 R /Im43 50 0 R /Im78 85 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im30 37 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im24 31 0 R /Im101 108 0 R /Im106 113 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im116 123 0 R /Im106 113 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im157 166 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im105 112 0 R /Im106 113 0 R /Im24 31 0 R /Im117 124 0 R /Im21 28 0 R /Im26 33 0 R /Im21 28 0 R /Im106 113 0 R /Im102 109 0 R /Im120 127 0 R /Im107 114 0 R /Im30 37 0 R /Im117 124 0 R /Im21 28 0 R /Im26 33 0 R /Im21 28 0 R /Im106 113 0 R /Im102 109 0 R /Im120 127 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im114 121 0 R /Im21 28 0 R /Im106 113 0 R /Im102 109 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im28 35 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im173 182 0 R /Im221 232 0 R /Im139 146 0 R /Im106 113 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im105 112 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im117 124 0 R /Im25 32 0 R /Im235 246 0 R /Im21 28 0 R /Im116 123 0 R /Im116 123 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im30 37 0 R /Im116 123 0 R /Im116 123 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im102 109 0 R /Im111 118 0 R /Im21 28 0 R /Im29 36 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im26 33 0 R /Im102 109 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im29 36 0 R /Im21 28 0 R /Im117 124 0 R /Im28 35 0 R /Im106 113 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im143 150 0 R /Im101 108 0 R /Im24 31 0 R /Im26 33 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im30 37 0 R /Im105 112 0 R /Im106 113 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im107 114 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im105 112 0 R /Im106 113 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im30 37 0 R /Im22 29 0 R /Im22 29 0 R /Im28 35 0 R /Im116 123 0 R /Im21 28 0 R /Im25 32 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im24 31 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im22 29 0 R /Im23 30 0 R /Im30 37 0 R /Im29 36 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im22 29 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im107 114 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im105 112 0 R /Im113 120 0 R /Im221 232 0 R /Im234 245 0 R /Im24 31 0 R /Im108 115 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im109 116 0 R /Im25 32 0 R /Im118 125 0 R /Im25 32 0 R /Im29 36 0 R /Im107 114 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im30 37 0 R /Im116 123 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im30 37 0 R /Im116 123 0 R /Im116 123 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im111 118 0 R /Im24 31 0 R /Im101 108 0 R /Im110 117 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im28 35 0 R /Im105 112 0 R /Im120 127 0 R /Im117 124 0 R /Im25 32 0 R /Im22 29 0 R /Im24 31 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im114 121 0 R /Im22 29 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im26 33 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im109 116 0 R /Im28 35 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im113 120 0 R /Im221 232 0 R /Im20 27 0 R /Im24 31 0 R /Im112 119 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im26 33 0 R /Im24 31 0 R /Im105 112 0 R /Im106 113 0 R /Im107 114 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im101 108 0 R /Im157 166 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im21 28 0 R /Im105 112 0 R /Im24 31 0 R /Im111 118 0 R /Im108 115 0 R /Im24 31 0 R /Im101 108 0 R /Im106 113 0 R /Im24 31 0 R /Im110 117 0 R /Im25 32 0 R /Im30 37 0 R /Im28 35 0 R /Im105 112 0 R /Im120 127 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im105 112 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im153 160 0 R /Im105 112 0 R /Im30 37 0 R /Im118 125 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im26 33 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im22 29 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im30 37 0 R /Im116 123 0 R /Im116 123 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im153 160 0 R /Im105 112 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im105 112 0 R /Im113 120 0 R /Im330 351 0 R /Im24 31 0 R /Im29 36 0 R /Im21 28 0 R /Im106 113 0 R /Im102 109 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im145 152 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im30 37 0 R /Im117 124 0 R /Im105 112 0 R /Im25 32 0 R /Im29 36 0 R /Im108 115 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im117 124 0 R /Im102 109 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im26 33 0 R /Im24 31 0 R /Im105 112 0 R /Im106 113 0 R /Im107 114 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im30 37 0 R /Im116 123 0 R /Im116 123 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im28 35 0 R /Im101 108 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im25 32 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im102 109 0 R /Im25 32 0 R /Im107 114 0 R /Im116 123 0 R /Im106 113 0 R /Im102 109 0 R /Im117 124 0 R /Im30 37 0 R /Im24 31 0 R /Im29 36 0 R /Im111 118 0 R /Im29 36 0 R /Im25 32 0 R /Im110 117 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im146 153 0 R /Im136 143 0 R /Im148 155 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im117 124 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im105 112 0 R /Im23 30 0 R /Im30 37 0 R /Im118 125 0 R /Im101 108 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im117 124 0 R /Im25 32 0 R /Im142 149 0 R /Im28 35 0 R /Im21 28 0 R /Im22 29 0 R /Im112 119 0 R /Im26 33 0 R /Im102 109 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im115 122 0 R /Im21 28 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im116 123 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im117 124 0 R /Im28 35 0 R /Im21 28 0 R /Im26 33 0 R /Im106 113 0 R /Im28 35 0 R /Im116 123 0 R /Im30 37 0 R /Im101 108 0 R /Im24 31 0 R /Im29 36 0 R /Im24 31 0 R /Im118 125 0 R /Im117 124 0 R /Im30 37 0 R /Im24 31 0 R /Im29 36 0 R /Im111 118 0 R /Im29 36 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im23 30 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im116 123 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im23 30 0 R /Im30 37 0 R /Im118 125 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im156 165 0 R /Im21 28 0 R /Im110 117 0 R /Im113 120 0 R /Im147 154 0 R /Im113 120 0 R /Im234 245 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im145 152 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im24 31 0 R /Im26 33 0 R /Im120 127 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im26 33 0 R /Im120 127 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im111 118 0 R /Im21 28 0 R /Im24 31 0 R /Im110 117 0 R /Im30 37 0 R /Im101 108 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im26 33 0 R /Im25 32 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im326 347 0 R /Im155 162 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im26 33 0 R /Im28 35 0 R /Im111 118 0 R /Im25 32 0 R /Im111 118 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im22 29 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im107 114 0 R /Im30 37 0 R /Im117 124 0 R /Im21 28 0 R /Im26 33 0 R /Im21 28 0 R /Im106 113 0 R /Im102 109 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im107 114 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im105 112 0 R /Im111 118 0 R /Im25 32 0 R /Im24 31 0 R /Im26 33 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im21 28 0 R /Im107 114 0 R /Im114 121 0 R /Im116 123 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im24 31 0 R /Im101 108 0 R /Im106 113 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im29 36 0 R /Im25 32 0 R /Im110 117 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im111 118 0 R /Im110 117 0 R /Im25 32 0 R /Im105 112 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im28 35 0 R /Im21 28 0 R /Im105 112 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im136 143 0 R /Im350 373 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im24 31 0 R /Im110 117 0 R /Im25 32 0 R /Im105 112 0 R /Im120 127 0 R /Im111 118 0 R /Im25 32 0 R /Im116 123 0 R /Im25 32 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im107 114 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im105 112 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im117 124 0 R /Im30 37 0 R /Im24 31 0 R /Im29 36 0 R /Im111 118 0 R /Im113 120 0 R /Im103 110 0 R /Im116 123 0 R /Im116 123 0 R /Im26 33 0 R /Im102 109 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im106 113 0 R /Im25 32 0 R /Im22 29 0 R /Im23 30 0 R /Im101 108 0 R /Im21 28 0 R /Im142 149 0 R /Im28 35 0 R /Im25 32 0 R /Im105 112 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im29 36 0 R /Im21 28 0 R /Im117 124 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im108 115 0 R /Im21 28 0 R /Im30 37 0 R /Im28 35 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im120 127 0 R /Im24 31 0 R /Im117 124 0 R /Im30 37 0 R /Im28 35 0 R /Im106 113 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im101 108 0 R /Im107 114 0 R /Im21 28 0 R /Im26 33 0 R /Im26 33 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im118 125 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im143 150 0 R /Im106 113 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im115 122 0 R /Im21 28 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im26 33 0 R /Im102 109 0 R /Im136 143 0 R /Im113 120 0 R /Im352 375 0 R /Im107 114 0 R /Im21 28 0 R /Im26 33 0 R /Im26 33 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im106 113 0 R /Im24 31 0 R /Im112 119 0 R /Im25 32 0 R /Im105 112 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im23 30 0 R /Im24 31 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im30 37 0 R /Im101 108 0 R /Im110 117 0 R /Im105 112 0 R /Im102 109 0 R /Im107 114 0 R /Im107 114 0 R /Im25 32 0 R /Im106 113 0 R /Im29 36 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im26 33 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im30 37 0 R /Im24 31 0 R /Im22 29 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im113 120 0 R /Im139 146 0 R /Im106 113 0 R /Im24 31 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im395 426 0 R /Im401 434 0 R /Im396 427 0 R /Im402 435 0 R /Im174 183 0 R /Im455 492 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im143 150 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im22 29 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im30 37 0 R /Im112 119 0 R /Im24 31 0 R /Im330 351 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im28 35 0 R /Im107 114 0 R /Im104 111 0 R /Im104 111 0 R /Im226 237 0 R /Im350 373 0 R /Im350 373 0 R /Im350 373 0 R /Im268 287 0 R /Im330 351 0 R /Im331 352 0 R /Im24 31 0 R /Im117 124 0 R /Im30 37 0 R /Im28 35 0 R /Im106 113 0 R /Im350 373 0 R /Im193 202 0 R /Im23 30 0 R /Im30 37 0 R /Im28 35 0 R /Im29 36 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im24 31 0 R /Im22 29 0 R /Im22 29 0 R /Im25 32 0 R /Im116 123 0 R /Im106 113 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im24 31 0 R /Im22 29 0 R /Im22 29 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im22 29 0 R /Im102 109 0 R /Im26 33 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im26 33 0 R /Im24 31 0 R /Im109 116 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im138 145 0 R /Im352 375 0 R /Im193 202 0 R /Im21 28 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im200 209 0 R /Im142 149 0 R /Im28 35 0 R /Im21 28 0 R /Im116 123 0 R /Im116 123 0 R /Im25 32 0 R /Im111 118 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im114 121 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im102 109 0 R /Im105 112 0 R /Im21 28 0 R /Im107 114 0 R /Im21 28 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im118 125 0 R /Im25 32 0 R /Im23 30 0 R /Im24 31 0 R /Im108 115 0 R /Im25 32 0 R /Im186 195 0 R /Im28 35 0 R /Im105 112 0 R /Im106 113 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im22 29 0 R /Im29 36 0 R /Im21 28 0 R /Im117 124 0 R /Im25 32 0 R /Im111 118 0 R /Im120 127 0 R /Im431 466 0 R /Im432 467 0 R /Im433 468 0 R /Im434 469 0 R /Im435 470 0 R /Im436 471 0 R /Im437 472 0 R /Im438 473 0 R /Im438 473 0 R /Im432 467 0 R /Im117 124 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im23 30 0 R /Im28 35 0 R /Im107 114 0 R /Im24 31 0 R /Im101 108 0 R /Im157 166 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im149 156 0 R /Im30 37 0 R /Im29 36 0 R /Im26 33 0 R /Im111 118 0 R /Im141 148 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im107 114 0 R /Im116 123 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im351 374 0 R /Im141 148 0 R /Im193 202 0 R /Im21 28 0 R /Im101 108 0 R /Im103 110 0 R /Im28 35 0 R /Im110 117 0 R /Im28 35 0 R /Im105 112 0 R /Im106 113 0 R /Im136 143 0 R /Im152 159 0 R /Im152 159 0 R /Im147 154 0 R /Im146 153 0 R /Im138 145 0 R /Im148 155 0 R /Im113 120 0 R /Im103 110 0 R /Im109 116 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im109 116 0 R /Im30 37 0 R /Im28 35 0 R /Im29 36 0 R /Im102 109 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im105 112 0 R /Im28 35 0 R /Im22 29 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im109 116 0 R /Im28 35 0 R /Im26 33 0 R /Im106 113 0 R /Im30 37 0 R /Im28 35 0 R /Im29 36 0 R /Im101 108 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im102 109 0 R /Im120 127 0 R /Im431 466 0 R /Im432 467 0 R /Im433 468 0 R /Im434 469 0 R /Im435 470 0 R /Im436 471 0 R /Im437 472 0 R /Im438 473 0 R /Im438 473 0 R /Im432 467 0 R /Im25 32 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im22 29 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im157 166 0 R /Im22 29 0 R /Im106 113 0 R /Im30 37 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im136 143 0 R /Im152 159 0 R /Im152 159 0 R /Im147 154 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im138 145 0 R /Im138 145 0 R /Im141 148 0 R /Im118 125 0 R /Im21 28 0 R /Im101 108 0 R /Im108 115 0 R /Im21 28 0 R /Im22 29 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im102 109 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im26 33 0 R /Im24 31 0 R /Im105 112 0 R /Im106 113 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im28 35 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im157 166 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im106 113 0 R /Im30 37 0 R /Im28 35 0 R /Im29 36 0 R /Im101 108 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im113 120 0 R /Im150 157 0 R /Im25 32 0 R /Im22 29 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im26 33 0 R /Im102 109 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im116 123 0 R /Im30 37 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im109 116 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im29 36 0 R /Im116 123 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im105 112 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im116 123 0 R /Im25 32 0 R /Im29 36 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im24 31 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im28 35 0 R /Im29 36 0 R /Im29 36 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im107 114 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im120 127 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im114 121 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im24 31 0 R /Im105 112 0 R /Im136 143 0 R /Im351 374 0 R /Im117 124 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im110 117 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im113 120 0 R /Im139 146 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im136 143 0 R /Im193 202 0 R /Im141 148 0 R /Im105 112 0 R /Im142 149 0 R /Im28 35 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im116 123 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im136 143 0 R /Im350 373 0 R /Im235 246 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im28 35 0 R /Im105 112 0 R /Im29 36 0 R /Im25 32 0 R /Im142 149 0 R /Im28 35 0 R /Im21 28 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im350 373 0 R /Im166 175 0 R /Im396 427 0 R /Im178 187 0 R /Im138 145 0 R /Im178 187 0 R /Im136 143 0 R /Im350 373 0 R /Im456 493 0 R /Im136 143 0 R /Im113 120 0 R /Im352 375 0 R /Im107 114 0 R /Im21 28 0 R /Im26 33 0 R /Im26 33 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im117 124 0 R /Im102 109 0 R /Im106 113 0 R /Im25 32 0 R /Im105 112 0 R /Im113 120 0 R /Im331 352 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im24 31 0 R /Im22 29 0 R /Im23 30 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im28 35 0 R /Im22 29 0 R /Im23 30 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im29 36 0 R /Im116 123 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im30 37 0 R /Im28 35 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im142 149 0 R /Im28 35 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im143 150 0 R /Im29 36 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im115 122 0 R /Im114 121 0 R /Im116 123 0 R /Im25 32 0 R /Im29 36 0 R /Im21 28 0 R /Im107 114 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im105 112 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im105 112 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im105 112 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im24 31 0 R /Im106 113 0 R /Im24 31 0 R /Im24 31 0 R /Im22 29 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im105 112 0 R /Im22 29 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im117 124 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im30 37 0 R /Im101 108 0 R /Im117 124 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im29 36 0 R /Im102 109 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im118 125 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 476 0 R +>> +endobj +476 0 obj +<< +/Length 1041 0 R +/Filter /FlateDecode +>> +stream +x¥}IÓ-¹qݾÅ[J]jÐÒ!3Ââl´_slÃÿÞ [Ⱥ5sqÚP}?= Df"ó ¿þðïßþúûöÜ´|Kóôíço> _Óøúñýðã+Îëïò϶¿?^ÆÃèõÇ÷ÃÃhûq=é=:ÿø~øñ½ÿ¸vñ0zýñýðã0Ú~\Fûp½þø~øqm?.£?^|?ü8¶ÑÑF¯?¾~FÛËè4F¯?¾~FÛëèå8z9^£xÞó¼^ÿ+ÿ?óïö#ÆÃè×Ãèy¶Ñó|½ýxg8zlô2Fo?Þ£×Fûa,£×ÿz.?öù¡Ñ+kÑ+ÑÛ÷èõ¡Ñ+kÑ+ÑÛ÷èõ¡Ñ+kÑ+ÑÛ÷èõ¡Ñ+kÑ+ÑÛ÷èõ¡Ñ+kÑ+ÑÛ÷èõÑý!| Ãðm8üoüçae𦼯åkço¿ýùÿûÏ1ßþõÏ?üûi¯ÌÃae>Màî|^Á8L§ |ón<M-Ø>øôµÌû+¶® Äà + Òx à +¼®ø¯äÙ£Ë|ç¸l!Îç Ö/ç f¿Ñ`ND÷ ¦Û +õ/nà7ø¯¯`Yà`x~áx+½áó}ñÆH¯øñË m#Åå¾ ü½;#ù¶d ï÷ Æ; ²4ú÷-VnÒ¸þ¿/+ØþâUyä-ñkzsâ|&:¶ ÜÜ9A'È+é`¶ òJ>M°^WcÜþ¯"¿ä Vb¾ù Ý4À¥mü?M0Þ¶0-_)l¤á=Ámt<0l[ø8Aüæëã°é¸n!MëiD Ý8ù.Ké%n5Q³(äñY¾¿Ò<qÛµrn²¾ÜEÂ�n÷ï¿!�Q&ë_µ²~÷ü3ýÜKmwÊùûwuº©ïûúýÐø¡ó{}ß eüÊûùM7úŧÕxؤp¿ãûû7ú nçç}Ü×ÿ¦ß]иÁøp»(ýèÏÎ߯Wù£ó³ô}J¿8Hô£ü5þñ_î2~~QÄÍë Çéköo%z Ý,�Ùx ð80Ý" `a óøÛMÈÈ´ÿ³¹Då�·ÿ0þ¶þøàúw>¯_g@6<}µ1sî0?@òþ@É÷M�+߿ӯ|5@îã'Á 5çÌQ,�Y^àE�.èW#?ÍAqÜ ¼l{ùgW/þõçe8^Ãèe8^nÂöçå8z9^£oBþó8ÌïÑùÇ÷Ã÷èýÇe´£Ýtí¦ÃhwC«^öãa´£ýxíohÕëÏ!FtÒat¸¡U¯?ÇxãatÑñV½þÂat +Ñ)F§Zµ±ÁÒæÅûí_o^|(^|}Å�æh£çx=Çóè9ÂÑK°ÑK8^ÂyôÐè0ø2zý¯÷èòcÿívî0Ú¹óhçàh?Øh?Fûá<Úxô¼£çËèÓatΣÃGÇÑFÇñ0:çÑqD£9àà§¡ 6¡µÙ'X|jcë5Ù Ú측µÉ¼\]·ô¡6û +üÜÚ쩵ɼPºP?È#Å>ÔÆÏ@Fmü2 dÔ&N £6Á8Úï7Ôf µ Á>Ô&cÿ²;jCÝýU§Ú|t÷bõø±ÈVWäU¹4Au~ê<ò¤ ª[X'è£Áz!IÐ-¬Nã#ìD\½÷g|Ýÿ®-¬D|¶#b÷ +ü¢ z +½ì§0,Y¹{; î ÖS&àǸlǸNðLzWOa[ÁÐ)Î&µ ê§0< î,ÔVP? Î-Ø)¤Å=; þ Z¯NP£AàRMùíѺ'(T¾©¬fÞëM%VÞTèsy +½¯:ûÃà ¼{8ó'Bß!øg4° Ò?O°ÜUÆÍÜ]ÅóÐÝT¾ÃÒ]Ö>½OÞ,e +«/ ×QÕeÞ×ÿUŨâKÓu<Bñ÷ðßǨjpèû:ªûR7úé¨nØe>¡º! õë¨nÆ]êô+ lþ ʾl¸\ùgWîõç(k^ ìûÇaôÝþ¼G/ÇÑËqô ÍÞ@Ù2`eß?Þ£(ûúóµ/Pöýã0úʾþüemÀ}ÿ8¾²¯?¿@Yðeß?£ï ìëÏ/PÖ¼@Ù÷Ãè;(ûúóµ/Pöýã0úÊnlðé¦#89]ÀÉ óNÎGpr¾3'çe½G/ѽìÐær6´¹@h3m®ÿõ]~ìò?C£AëF»3´ÿí _ÿë0ÚðüÏÐè`@øú_ÑáçFG²3¼GÇ3ÿY(Æñ(»OÐÊÚÝ ì>A/('xÊî+èe÷ zAÙ<Á#P6LÑAÙ0cDSeÃâ²qpÏ@Ù8,Ï@Ùèæg lôÓ3P6ñ(ø3PvÕã@٬ʲûº1UÛB/¦ºo¡{7>eóòó¢!U"öB¢@ÙÝ+ð馺B7®< Y=Æî ì{'Øe¡{;Æî |zêîÇØ+ï§Ðêî§Ð©îÂÔ¾O¡w&L½¨îûzér +ý l9 î LºQ]£A?ªk[èe÷-tOP©ÕÍvâ#T7ÛÏ&pÃÓ g¸òj> [ë@Ù÷ +zQ][A/²=GÈö¾nd»LP¦kDìÀd!Íéóë #îÃhGhõî.PhuDЦ1¿~A£rÄüêc?ÖäAëôû³¾Oé7GÆó¯;íþ}!ã¢|ßÎÏô2VÆâ2û~hþÆ?þq6â ýûÓ˸ÿqÃ&²&ò4aïÓD,Q\½OÔèwϸ)çO¸¸{Zq.[ǧ¹t[ÿßs?7ÐpÊrBÊÈXRH'0_n+Øðóù- 4 ékxSÐr%áö·¤MV0ÞX0ÞXp[@Î|0~ÒM±ä¤e,iÆ;Î@ÒasÜ>Üíû³4ã½ß¿ÿIñ¤"§ïßef ¸sÀ§¬34´gM¿0?4â÷ñm2\Öiý4i&%ðý¬¹´ õëYsc�ôkx^ÓÎ]Ysã"}ÒorýhÖÜ4¢ïëôÑ÷ïôç"HL@±ð¤?f�þ_FÿqÖiLþjY§ÄZõ§¢üñÏ]þixKþâáAä?qÐ}áþ¢>Dçnpr~1HçÇlÈÑýu·!éþ¿Ûþéù§Y¼¿Èþí·wÿ«í¦ì%ÚÓãeý@úMðþ�òï +Å¿ïÿþl8ÞËþîI÷!dè÷Wéþbámq@ô¿G�0þÉ>Â?þÑý¹¥Ù~~èGQ¤ûo¼=ú/û×¥²ÿáøøï8À;å¸Tè4NôK ~ÿ& +h¼1ÀË)Im BÝ+E4`_5Po|ï(yûVøã2ÁíAnääÿç#¸á :BH»úqµÌýa<¸¡Î[Aöâ´3¸.låcFD`Åá#ð~Ðà®FÊ<b\¥¨lÀÏð�Jv`Õ7j;@Á¯Äí@pDm|R a9 HIÚ�SD~$ED `Ð#D&dȯ¶¤"Ù±"¡gX°ªg8Þ¬©éeùÅ¿"ÉòoDn½bTAd| mA¿ÎvªÂEè6 +~_º¶ñPÊ88´~$ÆXfLQLïþXUú±S§ ¹ûcgràQËP$CL³C&XYíü,÷è2 ¼ÀeJÎpBWCäE=H plÐ ÚÔ²1æÄ¸ZÅ+]L¥*å9�¼þw5)çûeè®mÒõpYE1QtH40QôPÉL´{L´¿îu2QòU(ÚÓD/Åì+LÄIÈ Òòu9°g(%hÝofTF{^¨{Vãüè>´G@UËkTúðª'»¯exo��LĹ-^ãºØØ -È"ïbcWÊ¢ÅU'VØø +Qmqq|±ñyîþH¶°a4À 2»h(ñq¡AñmâûØÐ+ý| +:º rìàç*ïP6Ñ 6ÄV"�p¯ïGø*W]^ú/ãAv¾MÜ ¨à2?:@«îZ;À»mȽ&$Dw ;Edb<¬®e\ò½ês{Í+ÈRCâÊJßô^ßò`ÚTa Ë.v%^î<n»jvYfÒ¼¨Ìå >1ÅzËcËe²sfPëu²sæJÄÚe²sf5¯G(;gYÁÊÎY·y´\ò]Y�:: ³TI>�¼R:© 2À +ÞoHë¬1æbE1¤Heò¥¯á¦É^ݾ#Æ¥ãEò'dP©á\3'ÈfÔ& $GÈÏH%þL`÷q ¨>ئÏf)J Têâ*uxªô³$È®:¹0Yì ¢ûP31¬±ªé$Ä èȼ�F sÆ #¸¬àî\±ð$w=[~·Ìïg@ó~_GÌt)ß/Çn7 +G©4) Å�:�Ñ!àN� +S¹âÕÀ¦¢H ±`ôȨÒYкº`H߬ÝE'È*m0ìcwÐC´ht5{åq~Aa¡Q¼Ì)Ú<Aê`ïnUÍâ¥-+}ñÎNpì?ÈεïºÊ²wý:±ú|Ï0®¬�AĹ5ïz¬½Þïz�¡IJ0ªòü9BÊ¡f_°«püüøK]»=P]�õ-(1!]@Éoºð|xï$ +Rײ3^¤Å÷ÞàþR¢Ä1]v ½7¼(!õ ¨ÇZ4>RÇTçAÔèô«pwî+,Ä,z¿ÞDótÞÏoè²èÄ·j½}ï®ýØùömAHíjÈ<ó¨ò0që¨É©kí «Át,H»L) ¦ÉéE;CG4·9sÍ15`È jÀFy *ÂÆ¥Gl?ÇkI$Óì¤ËF2Íè^lrzv1p�æ}p Ý�u±übË¥<º#Ô úMNÒ@#8<´ô�Y@wmYLkYúõËaÕ ãeÇ{51!·èîÕð¯]eTFí& 8i6=aCHk2\uíS-ö¡âÚÆëíîڧϱH`|ÃUê&6 C¼{ôKeôÙzZÀ�Ä ÎìÙ¿lò?C[+d°{x?¯ÀIyÚ[üÊHp³Éée)C¯gQäaâS´~ú}7ßg JP&Mèg@BÜòê5!bzÜ*M\ÆèÔ9¿¨*DüÙ.@s.ùW +êÐȤñ�Ï/B<Ø`Êä¾pFBÔ#¶ 3lâEbîÇG7YÀZD¾,x?ö_û.' ûÕþ!¼JFè÷K½ú÷CÑþ eDW¹"ÃÅ¥Mq?À®@ØÐEÐKÀ[`ÁG)ÚL;§C3S+ÐáµÙ?ãá°áÅ^5'XDs¾6Ac"êÓÐqèÐ 4à"ÑÁ#qèGwy~±îrêZðRÕ%°Ô-¸½³T)Y@D¶�ôIð;AÆæ»ßß ªáqü~wjÞy¯-Äp²�î´ì|R¸ÁÒ2NãÝ e¼íæ¼Yïá§ñ Ê|s^Ïâ£2gH|Y¬LwÏô|76¤íÏàîÙR· t©-gV$t7°ëÐ[øÓ òu¸¿6"/Èü¨q1¥`Ð(È#Âè¤Þlºè;+?¤agâ.£Ì'tJnËûÍY£�qÌF§éêZÐ &IHH]»RèªÌ}Ûª.¯ø¶í$´Fó3 +X§ÆxéùZé^1»ª!`R'`ÆþY¯FwÄ#`åò{i²Ý=¬h²Zõª"áÅ#@GÙÂ4>RV|¢Û¦ÚÝ˺MÅüKÄÆ-é£dðð¡[^/v¨é²þ\]Ú\³"A {,°<úI<BâÝDý¹aw/;àutúFôý°>&ÄZ§- ]ó¬x@·{¦HãC×.ª®]òCésåê³qpy¾Q»ïÙ]EçïËPm~6ë[ö §ñ <¼W6À0«`ÝÅ(¿L ¤»s~>B½¸è¢R½új,È_}!êN ßoȶÀ÷[̼*,|e¹æ W v˵vüUÃÁÏ'¨gÄEÜ�{urh`FÐóíZ°ËÝÅýòÙåÏÖHU!&G8#n¨7sºrÑX¶x 0Vµ {uÖ.RêÓÂØÉ;0P'�ñJýÃ{hO5ï¼öhòªd~9b¡&`@ÕÃĩŶ^Ö3¡Ùb$îÀòÄkz9Ö+î²97-÷ëd¡²iÀ5-ÂÓÌá÷åç¶°O{>ç6>?·Í ]àé¹ÍÛ!§ºR>Écê¾Ñý"NÚ}m]LÐòÚÑZ^Û1âæ2ô¹Tý-ýIÐ`ÐOûøV·|3È õ2hÞ*<DÍ9çÁøw7j'@ûJÃ+éÏ}Á#hxî#ßòÜÑthf7É;ÅÐ'ÄÃ-)ªã *"f'm´ÌúªHF·MÐUf=¤rý¤'zÀ/ý<°rÂïËåòc¦GX ¨*DãDMN :Kkªð ¢sH¡öï×ä/ +xúCQ@¼!9D¼ÒüȤ¤)Rºz(¨zÕªFØ[zDtYÕQâbJ:zxK@ßßIöPÐЧ®¡dú ±ø=öÍÚ +èCÅv^çÑÉ\LÞÊ<ô+dÔ +½÷jÂ4ðBïIBºøðâÓHê °êOð.ÑSdÓ"jV¤=<ò*¬È»àU°Q/m.`/SâY0ÌÍzp{ëöñ})#Z^Υܪõ¯PäÝP4ñi-$4©BB¢éÀx)EÓ&µ3 ¨@ß<O+ÐmÂ=ɳvÕêÊg.sÕ½KÒx;tÑ+GÒ®¢ó÷eðaPÅW.ðÆånwãbëGÞÁÅöà· ÒSxz I²¿×UÏ24!¤°JPÐôËÜÏP èõ«f¤GõËÜ/Z¿.H´¼ø.õç6¨E[-xû`æÜT\Ò¼4µ&Ä"°@^į¤)<ñ®HH4D î壪j¼wNcêYzäÈþàw¡ ¾iïbnÕ4©3}·Çª,H +ÂÙ¡"j0Ê÷@ÞN1Ü+C÷#¹ø¤x$ðüÌ-ØÁ º[PÉ4í5ª÷LÓN£zî5ª÷LÓªAPÉ4- izf#ôô=ÁÖî<AлªÆQµ)À1B£TàÙy ÈÑAV.ôë}få¥Çݤ¨T'Oß`È:é5!'7ôè"+BÇw"Úx)´�t¡²n]zù¾\X×+ï7t`h¼¾úw»þr�Q§^ñ�Xó(DÀ·ÿÒiá:þêZîÓ ußÖAÒñR~¦J¾q@oêjøÆeȪ%;(y1²\e´lï«\b}¢þhèK9Æà¹ÎAcb°LÖêc×yèsôEUS&àè,U9ße]½2ÄÎP÷TÅzºxÄF`M(a4 d9þânô�%÷"oçe) Q46zì@D<¤ãt!"!j©.]ª>T5!y &l)d5¢ËHåR¥ ¡|aÒnÃZ%®v{À £`êÄX¯NÀ0YÚo~b¹)m:mÊ©ëÐ] ?Y%®ª"á}î5MÆ»o¥gIôÐ$ÓQ®�)¨?¾YnñmuA1Ï8i®)¿@B¤ô/3x©=úæQöÍ<T¡ sü¸vY®ußøÞpî0Qï®J®ÄwÐ�1YvE¾SºØYøË +]O"8 +`@G ÝRÜëó!Ê(¡[fpcS²¥¯»ðíøBeÔ¹.¡|5.¦©ªåÙ0³@³MúÀG´Ý7-AÑu`ñám´ùRØÂ.Ü¡n$¯$-Ã7.]_ä bgf}m»â²áq¹p5nã£Ð:È â-Óí²�}È +R±(.+h(Ëè� tÆlÉÐÛFnÇ+°8V\LjϾ9× È¯^V8â2þ|m#B¥i ?x³ëÛ»'3Í~n%Xç¦Ë< he!¯GØUMo3Öº)±¯±¯éZ0Z¯ZÏv9,u,Õm@£á& çiMÊwÌNbbZ¤§½ò ìçâÏXhÑĸV<¢®T®àq$ÇMê°`0mhôÏ0#¥,`Ádð.ÓK¨ zg,dON½=ÜVr5»Pêt×N'Ê7/J(Ø7©æJ7 +®Â(wQÛÒ +Ò÷ø_7IÑ0,?Ä¡Vüaë807x0µFÀ#ÉêLLúØíöX¥ÀpÎÞ®1@h)µËñpðÌ n×PRóëÊãÈ#CN~eSºj½ÛõйáUê9FOÔ:P°4�ÊaÂ2A² bMX×BÎ@ÎúZ÷*¼P ²ÍàZBÙü>¾§¢¥Ê Z"ZÔ(z;ZZ�E¥ÝÀ"n } ÁJv +¥¥ÚM»T +PT3çÈF©¶¬ó�kèIQ'$! X±@Ti±:<áù0«B@¦�@:+¤#èbÂCixÁõ«7&4^ïû1ÎQÙçÇwҹĬêwÃG&oR×l@LØPЩW «£oÛ÷ÊiM+®2 aq Ò£ ¯!¨GÈâ¨@DzHu´ÒWȯkÞ¡ê¾õ$tTCúèí'XZßT/^EG³y¢:ÁBD¬YCÃgÖDÎkydMìðB§5Ý3k":Ñ IV>n-µv~#x¶}%Y ÷mIò ")°¡çTdz±ùS ?ØÅÝ$z©òho=½j`:Õ@zPYknà@½qÍKªb¨´=¡µ=Öº~ð uV¸³÷Ï&WíýSIëí$çë *ynÕ3$°<· +xCÊ(�K3ó*XÞm@øØ@ÃÃÿ0ñ-ÿ.h<ÄøРb-9¢¶{ìí.ËYbv .D$FhÞÆb4,Øóî×y¼_80¾jÔæ 5jãͯ¡+X5´ÖÞ×4ÉQÀ )IÀ+Ùh2ÁAôdÌZ%ï³Õ<±Þ¶¢PµØõsÖ{b2xA»hG(×È3æ»ErA¢):ÒÚÛ\×JáôÁ/âuÈ¢v¼P0´Hd¬?G?�ÐJùn:n ÈB,úa6À£Äë"<#:G¿0¡4Ô@±Z<íש£HB,¹+ÒÊuÌÓÌMÕàÞ¢YÎdëR°?T¤»ÇoI^ªAEèÑ]ÜRÉ#EÞ%ÔPCí«òÛnÍXÙ´+òqxôB=ö !hT×Iq4 ¸ÞÑÍMÈ1¹»vãaäö¿óëP2@òºKrHâ»O[ÒCJ©çpî"tï<×ÎFTÎR»ú}ü'&â©ú~C غPÊk^6 DZíYnÕøÉÒÍ P~ïr¥¼æy|Cå Þ¨¶BcYnòHLøPê½Ì[eir½ Ý(Ê�k + +e°¡Jñ,Ö° H[:KÐÙÑ×ÈÑx�:¾iéÉiµ´ÔÕÞEÊ=«<Àè 5½982Hg@c?Ì%¨èAþ}x¦e×"]ùÎÖ4óÀÇ@F +°-%W´Ö½ØË>O ¿ØY¤ õÜï¢lCÓ[Ñ®"Z�&8U +_jØFÅ¢~±ÁĽ]ã¤)2ºO@_@öhC#«&VïnL¢?,v5©»ÞRÝ"fMDEB':ÁçÖ¤Ýb¸ 1ÐßÃ"2ïaMÂ"½2ÊÚ=|£³¿o®ÂÓ«^%ÖrÛèEÞüxbt-M&õ:%®uL(Nx-Àªu/ AD_IÄB¼F°fÐÐäèËÌër¢ákÞ<$g8íánîuÆnérÌùëø·g<tú~Ãs×®&Сþ]9m áÁnO-©íÃÚa~Eï[Q9BÞD)ªdá#Ø@C�Ï tj·è �Ô7¢´~bû:kø8H�=/Ãñà×+Cï"BwhòöTЩöŵPç>¢´ô 2· ÊD,3½8.4|¤Æ ¼Ó$1aÉkL@½ûiܼûó!êÞ½·>ç tï~Ï-9bChMT+_TxçR-ýy¼ËO" ^7ÂÍ�úú½¦G¨céÍà¡þ*A38¼îB¨ÊIí8ï¨<#LåPʽÄp}$zfDzHiÞRxÀ2λy`B×iXé^D¯Ìâ]ÄKghRÀ{D'í*áÙ5åx/r\=C½üª{{q«]ç¼J2ºôLÕ_é<ÃèÅ3¤èG6]ºÔË ¯Ì*⪹É4°gîUïɯ¼oãw@rHBUÿU&úÜ&ºvr«"¹uaê=DgaíCµBÑ$Cg=:gɪCi#eɪCêm#UTÙÐWËgR#!oT]ÂâJQC1Â4`XK ¦M2Të1D]�Ãh¦}|×¾§èÔHH£¬Róð¹¯.êÔ0eÔä£$AJbqíµðú³ªJ{ ÜÓ0=âÂ=E§~¤xD\Ðä³Öéúº�¹Ç¬.l¨jçG¸=g +èõ@,{+LÌ«¦+î¡àâ)¿ UÖÐÑmYÔø¼åæ{#¦Ú¨çÒ#E´WíUDá©"ÚQNEdEDÔ(ØR$9ñXÊ(uµVÓu5ÀòS Y{Bµæ + óTÅéeæ éM#¬õs³éªMÅ'X´ (X¹ ëL¯¹*õ19È�ŨdÀ×aÈ0h6ïVýPì(C§&~ïc´ pA5X«ií6âA Ð.<¬À'2HZa%d+} KÖÑÎ:¿{'¤QÉ!Í7£8Ñ$úÇ +æ üR-'E¼Ëú'hðð#\nRå ÷ IÅRd¾èv+r¯{Ç#"`KïT;ºCReJù×)À�Æ·Ñàð+é `ÈòM`íOÚ §v5Ѭ¼hy+)sì!ßy $òÐç$ó4¿æ �9ë´õZyQY#Ò4§E=Ê:]ÏÖÊv³ÀºY`G^5ô."!íÀ3mUd.j@¯]pBH¨,â]ÄK =¢¡¡´¡U@5&ä92PHaÁ[ +´ôïCEÚ Sï«/@½Ê@¢&E4Ë'"5�£Yc=Õ-`PwíÓØ=~[ÿòH¾Ó«ÃÖßÒ®^Õ%4R`FB¬G5[Ö^kÊBPz-òîN«¯T5ÈúlCëDçå"âõ]¹Ñw9@Bܰ�DÀxl×£ÕÛØõhg±sCwêRD°x�¨îh5Ï1ÝBão½Ê0ôÌÊMÝñªKT³!éq,θ°Ò£¸#ä;{$[ûÚ÷iñ`GrJ}¬BìÐ!3=< -@¿ +¬¹¯¶éfàN1ékÎ98£²�_` ·qn.íÁîz¶¿qq_À±²¥áq¬ýÌ(1ÈJôI.CÑõ`gá'Õ jEPêb@Î0jgȺ±åî1àõnl>AM*ûeÞÜ"«/XÙ^EÃW)kSS¼CÔKdÇ|||³eA½9þe¾jÕþ¹É"X0 å+.ÛǨàÛ¨w?àëL÷î]Ø4³tt¼×®ß�Êú©oëûõȱJÕ -|"ºNLB«Ò#>O@¯a¢fÒÑ$¨ õÚaª"#�Ë8#DÏv\kzÖ2Þ+è«e4C1¾çY>Ä<Ë'h$d6U."ÙTÔÁR/ZCr$·´$^×jÇXªqÏýǫ̂´8=FåÖ�49æ-pà èÑYÅ îyLÈ·kÐÅñ ÊztqÕÛÕÝk^âåzIdÂZOÎ@ïJ5s%+Oð9åøD°±~¿!þ% ñzôù%§ñ Hé°ä°ÒD3W +®×(ÈlZ7E¸ùÕÔÍoöØtÎÞ+ºIhñ/5Ò§ïÒNâÙm¸®à£oDÝÓNZ=>&¢Qz]ØH¾3ÆñREê µì±&ß3DäHnáí:¬È!õÏÍ18¯_.¦dePêëg(îûQÔçüÎA]6©7¬·®JIÕìèm®¡&khs½@Ô1¦eÒdú%RC îýðì*È BQÇÈ!s¢áÕn`é´GöDGQõyÄÄ-- IøCD&%Ä#ãü¾>b7¦#>RQ<�Ýc-0 p|dëÎzYjçv%áôBësË']'8´sz¨+)01ëÁ3?rÂÍz}O5©õàéÕ#qÀVysRõ2¤Þ¹CaKW :=�ÂgÀ{Ã3¸ÁÄ8 M²� T +ó×ôÚA<t`HxpØN!PdÉñy7m:~Å.Ù*·æ>ù³ãyÕgT\£¬Ä3]òÞB¼7aaÅq6sÃy¢Æ¡3¿Â<u®üü^Àݵ¢a,Q7ÐÆbI:ð>8 ã(f]ûp27ñL³ÆÌ7ÙÃ8NhAÈUD¤ð Fm^rqCÆ7!¹DAƱZh}Q²aÉéPL!qÑCñïÎr(#ö{HEy©V¾+¥²*$pº5$zÚZ!�uGù*` É"q�冷¥N&$ÄàÑçØ,o×yúàÓ©Õ9/ ` Zµ#¤î45DM{'ò�áèW¤/Ó{IhÊAU Þ;æcÄe gÚ&êWE¸6¹ófU®WA<(B¹¾_°èìuú~lù᣸Õr¿£9ÙŲ>MàÇ0Qó "*Dr,VzÙBÐ;å.2áT6lHØÛ=ªê!@Ë\NØYZ¿OHJ¿<cCë{À-r(K®¢¡Ö<Ïâá$õHHÚX@zÎu:¯G¨L¢eO)8¡±¡ =Jµ+ÉÀÜÛu|[Á¹Lçe¼ç2`¼\ÇÅQyÞ¿PʨÔÖÏsFðývÛÎ2{ hA |<ü¾ìX:¡¥Tö.*~óKªÔi-þÆÂ¼Íì( 6¸|ÙõvyXwã#ö¥ú/z»Ç:Yк´ë�+ Á1þúË-Öa:ýd@°b^ql/¨öb@¨ÄpTu�_1ï"Âzà r@Cz¼Et2C ^¬¬xEÜuØÇò¢ÕÇÿäù Q¾¹ ªrÏÎØüêòRp¦@�,Ó;rrMð1½útþ- iÞÃÄ!èØDÏëAý#YªJ!åÕÀÓ+ ê, °¥üDÐÁjvÄ íÙç ìîLïH8è]rw{rê«K¸§GTns^/3¹°b°§AJ«²EËZÄjº"+ÙS�éç=^á}ÜÒãõ*!¨6={ý¹ QTe¼<("@Cê{UÀ&UfRQ +LЯÔûOP]þ¹G¬OCG,Ö#;2ÆJ(C6 +ÎãõäÿXNã[Þl \['è¹Ívhä´Ð|s+Nßoè±£ÀG«á¸GHv0%upå¼�¹° òÀüJÃõn°Ë´FAêÚ #X@kçÐ:G8ÄȨ%ε=øÖy%ó5y5D%ûà% Ù!K·îí ²�ê]GÄD ÞµI®jbx%àNâjyÏòòQ]�écøÈ²9SÜ Þª×6À,R¿@5Ò¹?IФo P¦`.®©PÇDySqÌI"ÿJ̯'èN¤pÓ³Þ£6ÌÒeN}c{iªéQ +/ÄI"RÛÐâi/L(õ{yËê]Æà¸ê#Ô¤rÁù0i·x z¨¡Ãê�Õèf¤GZÊ["6ÁÍx4ë¥ü1 9Ýü¢ ÉV_8çñ·ng¾â° M¼BON[áÆÛ?¸N �¥Ûró´áB/+ð ®�TÀ +ïc<®@¨dp xåÊeèàÀ·aà"ÂÉi|@a¦^Iº0îªÂÈ +ÿÈ*Ù!Ú PM.ðÕ2 ä_+QI.ðk`T£'*ß§ºAþsZ~À�óÓ÷ +³¹©oøZp�*½¦Èl|ÙÃI?V[é"óåtóжÐÐÝrðQïnß«ùÊî\9´þ»sµ@ȽÿÇùcCbÀ"-×>�QµÃª¬$9PI6ï.?t¼d`úJo¨6êÕGR,íU5ÆÊ;jZ",#Ö"BÕ2Pé+%>)D3z9H<LófÄ'įïÞêÆûsuF êÆ$&¤ïÿZAËû¿!Õ3`É " ioI«T{@¾ÎCæðdb¦ ;ëÂlÏè¸\¦:F¢v³:§¡4m¿ò,XjÁذ!å`5NP|ÜiD&M¼i3wcàM¼<\D$Á@ó´ù6"Þø®`7ªÎ+�8\uþ~z×\cQEöxyçÄ®°\cQde$ÃiØ�¡5 +ÐØzÑ0£Ù @ÏNðR¢%\újÑeV"Q3í©&É.¢¡{Ù1jêgWhf eÁ©[/%]sEb(<ìjU©X~EhH°··êxÖÄ" õë=V-U¯F@:ÁèÕ XCy¯©!Å0KGÈü»½F£«ÕcAþ®çK7G°]îAU&9N$t�ÛøoÈÑñ"Ý?¸�½>£ã©HuÏìõ°FÞEcRy5±°3t}]ç½]¦)àAH(°ev»JOÚ!3Ð\W)eÃ^~^ùÒË /?~a"AÃËO®Â&_~rF´ùå'ãhòËÏÞfô²ùå'7²@[_~r(@~ùÉF¥ ä*ðN£ã#u´×Y¬+dòkHÇY5¼Ä[rudA\�bBêLO¢BæPSí"VªQ³iDå^W2EÑÞÐérò¢eÊÆkBÀ;u:iýf¸n\Ð÷¾r¢©ÊÓæ hkÕ·`fØF¨Ç<P -ÒòîñP1´r½4MâûÐÊßBÜ VÆ8÷N`EâÂ;ZI]F|z²VDz²ËäT6f$à]¢×@0bø\É ºØÆCg gÙPG<DK·jµÝF^#q@ßo¨¸¡$ÙSí«h<8ôÖHê `È>/£ô´�1w*Òì0÷Ê|=�áó ´¹¤]`¤¨r+²Àød+$q9E}ÙWvÀ+Ax$Gòî ò¯±!}Ç @K,:l×fAn.ŰåZ@AÖy(!MÔÐ=|ïYe,áUMBòeô¯Ý&)2Ðÿ¼)ÐôëÐ[×àÞëÐ[ÖXDM©YHYEx§Lt7ÄÃXÇ\Û§M Òåzm·Ü*S<nTqwè¡ÞuÎBÁx¡/.1bªdÌ`M&Ç%$ +Òn§ ~_ï:BRoÅ1¢õëI_a)]Àd ¡ÆìDb�Ç(Þ¥ ¯2^¡RSäLEUQ÷~X$¦UºÉmrÄC,&§jÌ÷ 8+ ÊëiÈÊ}ÞzH.l!æyÏ<`÷ßËxý»ÄvÖ¾Ï#Ì}|׿õ|ç9ä/ßpF+Ð{»R+ÁïzùróÖº;ÿß¾&¥<V<F~B$hp¿Ê¡ïëV}qì&bÙ Iq� ~U1g.�w{>¶¨åaáòl@{ÀËèÔ)ôkͯ" GD@Þ!0i,\«ß~ÖapÙ)ø1 E=ú¹H`.½,X8 Ád=^éú9¾~³e%`N AèÝ#!^¼y¿A½[?<0G@lòè{ËâÀ4ô¶µ«?;÷òµ ðx(Ær90!)jWfQx=hPÊqÙaÑ49 ± »¼¡Uè«Ûô¬uÒä0üùeó36z$ºA½êUñAõkv¼@_ħKªSÄ:@E¬¯?©Æ�á Qtø«õ3{0NÏìA{´ìAR8¾<Õä"o]e6ñàÔWYÌÅ´ïÉoÉ¡õ¯#<oÈo±ìýózGKPÙ�ÏÞw`|Kö~)Gs9ìýÐ\ßï²æQb!¯åÈøù¾;¼Æ1Yòÿ: í.8¦nع¸ë*óä¼p¡Í¸EcÌðîH +ºIÞ¬FðâxB¿8Jô«½8÷sPJQhcDj ¡@âô`Gú~õ*âТaC9HgH)0#lIPY1µèf¢Ó.ª!âÚ]Ä;Æg\léÿ5.¦^GæLCñz¯½´Yðå2«6£åR¤ KH°ÁzÀe{£`Z@!Ù];(Ð Ñßl'¨ôS|&EÓòPfhMèR4#EÖÀC¶õÚûMø1 +¤©cè =!DzZÙ6lò Ë«J<DÓÎ=ÒC£$Î}D)` tQ4éx[EÕ³eu4vаpèºkÏ + ¯¦afOÕäÖóÔ긱ZÈæs_Çó avbD<¦¿@cgùݨî�´®¯¸,�5cè:´ÒAC8Cã¦7q>=;'GnØ +*Eµ é¿ÐP.o1õç-èÑÄ9Zâ"¯-ÇäÏÏä ÃäÀrÿër@}Í/+E¹èÌ1¨,\CÅ«º¡l9öÈÑe» [0mþȹ)g9ZU¬qÐàÒÂà<ACøJZ¤3àºÄhDb(ÅrL"Óºìê=ü£"]ÚcWû%h @ëTnWçðQ§óÞÈz)c¹pþòu©.FÖ ¡®ÊHu@5QCuÀÒ*÷¢ï¥Læªs«µZY�GÔX$Ü:¦Q~zµÂu»"°.s§a[hhóX)K 0#ô¤)ùIÀ&XÙDa, A-tôñz@&MCTTU!Gi ʲ>v@JøôLY«sê!a´5/¸ßþ^ÇGruLDAªFTvÀ[8 ³²¡uý´Ï@¯1:iN>£I6)>·pÈhC_j-©V|dzÀòÓôÇV ñº=¥O¿l@¾Î¬öÁeòu¶Ã,ÉõÙ{M £ MhQ(ó3Z~M æIã� +-aà£&¾÷+'°z9Ù4³Òá.ð$¿ÆHpzuYä<µÓ¼n£U£oçhËOdæåâ§s%¹btCW/ÔWÚ5\¨Þ/Ú1Þs-e,ǸӾ äâç¹F¢´JÄR#ñ2ºãÖ "íÇx¤ÁMðX�¹¥Y¦m«D4^%ÁÚLL'x5t@Ú¬¥Ä@Ƭ½AΩRå;ZõºÚØñõR³)x}EíJ¥>zi�_½hù{7krÊߥüÐE÷Z¥tÁi[ �!|LòºÕ˰vC wg½(ü3ÓtO©¦µvÝl8¦)&ñ`=?@ˬ!¬m©Ú¶¬A6@¡lS¥j2}I·LÚô%}×ÞÁñ: ®% +ÒÜZjO©Êé ÞwAdþed#´'ôITÄU£®ÆÒüФÓß¾öLÎ$üÓ®$î&]å&¡íì.Êv<UÆ ô·/gI±³>b,Bzë#Úûiì¬ +b;«¹Ríø:Þ¢T =ï %[hಠÌ1ËùÐl¡ñ�²'8ϸXo âKK¦Ëx½Ëà ñõÌì*uéÜ֯װ@Êò@¤ !}A/ÅkZ¤V±¾¦aZ,T«ÊUxTO RÄ£]Ø:9Ñ=;Q=HÃ÷�óå2½tñêIUää xÇ$Þe¬vó2ð2×ß¿]¯°(ôì&Ü3m:oÂà¡"× à'�týÐk(ìáèÅ1ã¨r0Ù@ +`y6³Ætcz&ê±ÆXCÈ\ÌÉóUÖD3#@<PÀ¨ +1Át¶¸×ºuXéMðdNÂ|;RÑ^bµ6ãý¹f~%ʼ Êãsðvm!PêUHdBÐÌDÄ é{¾OtÆ@8Lò.g5¨+;¿`�ºöTÕ¸þêRãá«å*u<|_M¬½ÿ\Î/§ï.¾RЩQ!�Íõ±( ß]¢´p±o®öÆ&^rä+Eµ(Â5#hèÝàì>¬"OTq xRÈ BeèHB^ãt¹¼;@¯Êµ'ºtʱ5¹¬É1õîí:ô}%¥ö<ÿ¹¤Ïs´äøÓ4)Ç74 +ð,H=Ó§´áéçá´<LbFxzÎ ·Ë* 8`·i]°"£NZ�¿âXë tz¿i¿,âøJÒªa9*³Ê,öq@Ó-íɳBBêÛúI¼*5J+G@_íú~Ë«½½6õò@B2 )bÃ'ÐMC>÷ÆlW#ïGÔcö*Ò0¡*RV#´Ôá4î`AWICês A§?Xä»(^<¹Í£&±Ük¯Qê+}¨wÐ]ÖÀÅ1 &ÒÃwbQCäX!{¯D$Æ Á+г¼kòZk̪WUE':Mú8i&=O/©Ýÿõ×?üø+÷Í}ûõï×)ÿöÒ�ÛüúçÜW\¿7|¥iý7¿ûöOÿãÏß¾ÿñ·?ýéï?ýË·û×_}ûËßþü»ÿûÛ~÷íý¿oÿö¿üñû÷o¿ù§ßþæ¿ýêëÛüñ§ÿüéo¿|û/ßþðË/ùüÇ?þñõËþø÷¯?ýôË¿qÓøû¿ýÏ?ýÿò÷<îë¿üüý¿ýúÿðß~½®îÿHñÍ} +endstream +endobj +477 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1042 0 R +/Name /Im440 +/Width 25 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨g``þÿ½ñC ó3T á ®Û7�ñù@Ñ?Øÿ�êo``�ÁøÈÿýó?ÿ@½ö@,ßðÙ1Pùj!6TÜÃ�t¤zíRE�+ +endstream +endobj +478 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1043 0 R +/Name /Im441 +/Width 27 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x3```°bûÿÿ@ñúÿÿ@¸!y0È�±�U?�â@ÌÜ�Áì@!~ æb9$lµ�kÐð¸AZ£v"�$] +endstream +endobj +479 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1044 0 R +/Name /Im442 +/Width 25 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]Í1 +@á_¤´U.±¼½ ¢ñxKã: +BïU3åa µ"äÑñ%'µ¾ÝÙÒÂ7¶$¼»r»Z§ 7þêþxeLêëL{^»-ùg!Kx½û©9�]a(6 +endstream +endobj +480 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1045 0 R +/Name /Im443 +/Width 25 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x`àag¨aÿÿ?�ñ n`üÃÀ Á×30HÔ6~`c¨`a°Ûe@X@Ø�64üAÅ@ÛêØ�èüÌÿ``ø4_½v©"�a " +endstream +endobj +481 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1046 0 R +/Name /Im444 +/Width 29 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÇÀÀþÿ�?óvö5@lÄvr@Ìíÿ10þÿÇÀþÁAþXMÿa°@à::0¾oaßÜÿÿÿæìdeêf)�6f +endstream +endobj +482 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1047 0 R +/Name /Im445 +/Width 31 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xão``øÅò@ÌO,nüÃÀßÿÿþÌø0~�ð þÄ5P\ÃÔüëqñó>þþÿÌ?ä5ë«�n. +endstream +endobj +483 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1048 0 R +/Name /Im446 +/Width 24 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°?Àðÿóö|ü òòöv`TÇ WÃÀ�D°! x1Û10Ë3°ñ7°±àaþ`Áðÿ}LÝ,9�Lå +endstream +endobj +484 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1049 0 R +/Name /Im447 +/Width 31 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``~ÀÀ`Åì@ÌL¶o~ÀøÿñæÖØøðõÊÅí¸k øSSÕ'6hVüæÅÿæÿc¨g~ ¯Y·\�!²:+ +endstream +endobj +485 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1050 0 R +/Name /Im448 +/Width 24 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=± @Ño® ÖpkYÂNã(¸¥ F +_e4¹n_%+fX!4£}SòCçëêÎ mg4RÝB9âsÕ¨ +endstream +endobj +486 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1051 0 R +/Name /Im449 +/Width 22 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`À`ÿ¡¦áÃÆè@ûöXÑÿÿ @KÄÿ¡þiÖ¯�+ +endstream +endobj +487 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1052 0 R +/Name /Im450 +/Width 28 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmʱ Ã0 áߨPnaáÊ[h.FÑ©²Àh+].ç*R|Íû5ÉÞKÕÌÉÌFaÿën÷Ç¿È1xX#UH|ÍNÌ»]D3²Y+ä¾]Êô÷¾{+H^ v³ÖúZ>l32 +endstream +endobj +488 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1053 0 R +/Name /Im451 +/Width 31 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xão``øÅò@ÌO,nüÃÀßÿÿöüø�ó8n Ë`ÿðÿý?ר[® +�[5õ +endstream +endobj +489 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1054 0 R +/Name /Im452 +/Width 62 +/Height 62 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x½ ! ®pÉìE°Ö§$«0 +#P^ɱÞÔAå÷èu-©Æ"2"òUlҢط>, õ¹ÞYOýÁbõì¤ÍsânL1Öè5¸ÉkoÌÎ0ÀÃI¸OîàìpL>ÿÅ5ÿZíoíoºp7¦ +Ý #t½uîð¾À'øvû_§Ï9Þzæe` +endstream +endobj +490 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1055 0 R +/Name /Im453 +/Width 58 +/Height 58 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xµÑ± 0À +JF`4»0 +#PRDyl!KÐ\í$ï¡}3 +M@?&ñ±«^ÆÂ·^lkêL¹Ðjr¬ö¦növpüå×¹_÷ôïñïõyhNæh¹rð+wÝîE÷d{ë{qßâXaQ[ +endstream +endobj +491 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1056 0 R +/Name /Im454 +/Width 35 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuÏ!1 áSQ¹G( &éÅí8BR+>¦,ëÀ|b2y3R§f5õ)&qeß&c5æAXvâ"U.v 2zª¢VÔ]Cm²DKaL²]Ý(¶ZþwJø0òæåû)¾Ùÿ®ûfeìi´²¾¾Ãñ|½Þ? ß +endstream +endobj +492 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1057 0 R +/Name /Im455 +/Width 39 +/Height 56 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xµÐ¡ 0FáGÈPEâºIIØ Í(¡²¢éqóäõÿJ'Q*ÈÖèB_ëPËødñl WDMýÞuí¿|=ù¦K˳ùv¨(ËF5ôÍ÷áúq^öé[ +endstream +endobj +493 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1058 0 R +/Name /Im456 +/Width 54 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÅλ Â0 á?ra:/.# +$ÃF)#lÃ%#¸tq8.Û|Å=÷AÞªf::QNÜÏR1¹¬ÎÜ2©ÁõEpfYmµê~n©îàÑÝDÁ|p7±ü©¿þrïÇ<ËYÈ +endstream +endobj +494 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 580 0 R >> /XObject << /Im457 496 0 R /Im312 331 0 R /Im296 315 0 R /Im313 332 0 R /Im68 75 0 R /Im458 497 0 R /Im68 75 0 R /Im459 498 0 R /Im460 499 0 R /Im461 500 0 R /Im462 501 0 R /Im463 502 0 R /Im464 503 0 R /Im465 504 0 R /Im466 505 0 R /Im466 505 0 R /Im460 499 0 R /Im381 408 0 R /Im36 43 0 R /Im48 55 0 R /Im38 45 0 R /Im35 42 0 R /Im76 83 0 R /Im44 51 0 R /Im52 59 0 R /Im45 52 0 R /Im36 43 0 R /Im48 55 0 R /Im37 44 0 R /Im43 50 0 R /Im43 50 0 R /Im35 42 0 R /Im38 45 0 R /Im42 49 0 R /Im36 43 0 R /Im35 42 0 R /Im43 50 0 R /Im78 85 0 R /Im51 58 0 R /Im37 44 0 R /Im43 50 0 R /Im43 50 0 R /Im35 42 0 R /Im38 45 0 R /Im42 49 0 R /Im36 43 0 R /Im43 50 0 R /Im40 47 0 R /Im37 44 0 R /Im43 50 0 R /Im39 46 0 R /Im37 44 0 R /Im42 49 0 R /Im82 89 0 R /Im35 42 0 R /Im52 59 0 R /Im82 89 0 R /Im43 50 0 R /Im37 44 0 R /Im44 51 0 R /Im42 49 0 R /Im35 42 0 R /Im47 54 0 R /Im82 89 0 R /Im50 57 0 R /Im38 45 0 R /Im52 59 0 R /Im43 50 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im37 44 0 R /Im42 49 0 R /Im47 54 0 R /Im72 79 0 R /Im44 51 0 R /Im38 45 0 R /Im38 45 0 R /Im52 59 0 R /Im38 45 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im82 89 0 R /Im52 59 0 R /Im37 44 0 R /Im38 45 0 R /Im47 54 0 R /Im40 47 0 R /Im37 44 0 R /Im76 83 0 R /Im35 42 0 R /Im82 89 0 R /Im35 42 0 R /Im35 42 0 R /Im42 49 0 R /Im52 59 0 R /Im72 79 0 R /Im44 51 0 R /Im43 50 0 R /Im43 50 0 R /Im35 42 0 R /Im47 54 0 R /Im78 85 0 R /Im32 39 0 R /Im37 44 0 R /Im39 46 0 R /Im40 47 0 R /Im47 54 0 R /Im44 51 0 R /Im37 44 0 R /Im72 79 0 R /Im52 59 0 R /Im42 49 0 R /Im47 54 0 R /Im38 45 0 R /Im35 42 0 R /Im48 55 0 R /Im38 45 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im42 49 0 R /Im43 50 0 R /Im36 43 0 R /Im37 44 0 R /Im42 49 0 R /Im37 44 0 R /Im43 50 0 R /Im52 59 0 R /Im72 79 0 R /Im44 51 0 R /Im39 46 0 R /Im71 78 0 R /Im35 42 0 R /Im37 44 0 R /Im43 50 0 R /Im45 52 0 R /Im38 45 0 R /Im35 42 0 R /Im281 300 0 R /Im73 80 0 R /Im44 51 0 R /Im43 50 0 R /Im40 47 0 R /Im38 45 0 R /Im37 44 0 R /Im42 49 0 R /Im77 84 0 R /Im35 42 0 R /Im280 299 0 R /Im54 61 0 R /Im57 64 0 R /Im342 363 0 R /Im57 64 0 R /Im362 387 0 R /Im286 305 0 R /Im78 85 0 R /Im281 300 0 R /Im282 301 0 R /Im467 506 0 R /Im284 303 0 R /Im44 51 0 R /Im36 43 0 R /Im47 54 0 R /Im35 42 0 R /Im83 90 0 R /Im42 49 0 R /Im35 42 0 R /Im47 54 0 R /Im82 89 0 R /Im50 57 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im48 55 0 R /Im37 44 0 R /Im38 45 0 R /Im43 50 0 R /Im44 51 0 R /Im39 46 0 R /Im45 52 0 R /Im70 77 0 R /Im37 44 0 R /Im38 45 0 R /Im36 43 0 R /Im388 417 0 R /Im45 52 0 R /Im37 44 0 R /Im38 45 0 R /Im35 42 0 R /Im39 46 0 R /Im52 59 0 R /Im42 49 0 R /Im43 50 0 R /Im35 42 0 R /Im42 49 0 R /Im43 50 0 R /Im36 43 0 R /Im282 301 0 R /Im35 42 0 R /Im78 85 0 R /Im77 84 0 R /Im78 85 0 R /Im73 80 0 R /Im40 47 0 R /Im44 51 0 R /Im43 50 0 R /Im35 42 0 R /Im47 54 0 R /Im44 51 0 R /Im36 43 0 R /Im39 46 0 R /Im468 507 0 R /Im469 508 0 R /Im54 61 0 R /Im57 64 0 R /Im35 42 0 R /Im72 79 0 R /Im48 55 0 R /Im43 50 0 R /Im50 57 0 R /Im468 507 0 R /Im469 508 0 R /Im342 363 0 R /Im57 64 0 R /Im82 89 0 R /Im70 77 0 R /Im37 44 0 R /Im39 46 0 R /Im74 81 0 R /Im47 54 0 R /Im44 51 0 R /Im36 43 0 R /Im39 46 0 R /Im468 507 0 R /Im469 508 0 R /Im362 387 0 R /Im284 303 0 R /Im78 85 0 R /Im60 67 0 R /Im79 86 0 R /Im33 40 0 R /Im312 331 0 R /Im296 315 0 R /Im313 332 0 R /Im68 75 0 R /Im470 509 0 R /Im68 75 0 R /Im89 96 0 R /Im37 44 0 R /Im38 45 0 R /Im77 84 0 R /Im35 42 0 R /Im48 55 0 R /Im37 44 0 R /Im43 50 0 R /Im43 50 0 R /Im35 42 0 R /Im38 45 0 R /Im42 49 0 R /Im36 43 0 R /Im43 50 0 R /Im35 42 0 R /Im36 43 0 R /Im43 50 0 R /Im35 42 0 R /Im47 54 0 R /Im78 85 0 R /Im84 91 0 R /Im52 59 0 R /Im38 45 0 R /Im35 42 0 R /Im37 44 0 R /Im39 46 0 R /Im40 47 0 R /Im52 59 0 R /Im71 78 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im48 55 0 R /Im37 44 0 R /Im43 50 0 R /Im43 50 0 R /Im35 42 0 R /Im38 45 0 R /Im42 49 0 R /Im36 43 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im36 43 0 R /Im44 51 0 R /Im72 79 0 R /Im48 55 0 R /Im70 77 0 R /Im44 51 0 R /Im83 90 0 R /Im35 42 0 R /Im47 54 0 R /Im48 55 0 R /Im37 44 0 R /Im43 50 0 R /Im43 50 0 R /Im35 42 0 R /Im38 45 0 R /Im42 49 0 R /Im76 83 0 R /Im35 42 0 R /Im38 45 0 R /Im36 43 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im52 59 0 R /Im71 78 0 R /Im88 95 0 R /Im35 42 0 R /Im42 49 0 R /Im33 40 0 R /Im52 59 0 R /Im42 49 0 R /Im71 78 0 R /Im77 84 0 R /Im35 42 0 R /Im42 49 0 R /Im35 42 0 R /Im38 45 0 R /Im37 44 0 R /Im43 50 0 R /Im35 42 0 R /Im47 54 0 R /Im37 44 0 R /Im82 89 0 R /Im52 59 0 R /Im45 52 0 R /Im43 50 0 R /Im55 62 0 R /Im55 62 0 R /Im57 64 0 R /Im54 61 0 R /Im54 61 0 R /Im54 61 0 R /Im76 83 0 R /Im37 44 0 R /Im70 77 0 R /Im44 51 0 R /Im47 54 0 R /Im39 46 0 R /Im52 59 0 R /Im42 49 0 R /Im83 90 0 R /Im77 84 0 R /Im45 52 0 R /Im38 45 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im282 301 0 R /Im289 308 0 R /Im32 39 0 R /Im471 510 0 R /Im342 363 0 R /Im342 363 0 R /Im72 79 0 R /Im44 51 0 R /Im70 77 0 R /Im70 77 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im57 64 0 R /Im277 296 0 R /Im279 298 0 R /Im472 511 0 R /Im56 63 0 R /Im284 303 0 R /Im78 85 0 R /Im60 67 0 R /Im70 77 0 R /Im70 77 0 R /Im39 46 0 R /Im52 59 0 R /Im42 49 0 R /Im83 90 0 R /Im77 84 0 R /Im45 52 0 R /Im38 45 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im35 42 0 R /Im43 50 0 R /Im36 43 0 R /Im83 90 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im40 47 0 R /Im37 44 0 R /Im36 43 0 R /Im40 47 0 R /Im75 82 0 R /Im43 50 0 R /Im37 44 0 R /Im82 89 0 R /Im70 77 0 R /Im35 42 0 R /Im36 43 0 R /Im73 80 0 R /Im44 51 0 R /Im43 50 0 R /Im40 47 0 R /Im37 44 0 R /Im82 89 0 R /Im52 59 0 R /Im45 52 0 R /Im43 50 0 R /Im473 512 0 R /Im342 363 0 R /Im54 61 0 R /Im43 50 0 R /Im40 47 0 R /Im52 59 0 R /Im45 52 0 R /Im36 43 0 R /Im37 44 0 R /Im42 49 0 R /Im47 54 0 R /Im35 42 0 R /Im42 49 0 R /Im43 50 0 R /Im38 45 0 R /Im44 51 0 R /Im35 42 0 R /Im36 43 0 R /Im78 85 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im30 37 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im22 29 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im110 117 0 R /Im29 36 0 R /Im24 31 0 R /Im107 114 0 R /Im153 160 0 R /Im105 112 0 R /Im112 119 0 R /Im101 108 0 R /Im30 37 0 R /Im118 125 0 R /Im26 33 0 R /Im25 32 0 R /Im111 118 0 R /Im110 117 0 R /Im25 32 0 R /Im117 124 0 R /Im102 109 0 R /Im24 31 0 R /Im111 118 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im105 112 0 R /Im105 112 0 R /Im23 30 0 R /Im30 37 0 R /Im118 125 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im156 165 0 R /Im21 28 0 R /Im110 117 0 R /Im113 120 0 R /Im151 158 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im26 33 0 R /Im111 118 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im25 32 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im24 31 0 R /Im105 112 0 R /Im26 33 0 R /Im30 37 0 R /Im118 125 0 R /Im111 118 0 R /Im30 37 0 R /Im118 125 0 R /Im101 108 0 R /Im30 37 0 R /Im109 116 0 R /Im24 31 0 R /Im117 124 0 R /Im30 37 0 R /Im28 35 0 R /Im106 113 0 R /Im155 162 0 R /Im352 375 0 R /Im474 513 0 R /Im113 120 0 R /Im157 166 0 R /Im101 108 0 R /Im26 33 0 R /Im102 109 0 R /Im24 31 0 R /Im109 116 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im28 35 0 R /Im106 113 0 R /Im21 28 0 R /Im26 33 0 R /Im21 28 0 R /Im145 152 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im109 116 0 R /Im24 31 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im23 30 0 R /Im141 148 0 R /Im106 113 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im24 31 0 R /Im22 29 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im105 112 0 R /Im22 29 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im25 32 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im24 31 0 R /Im111 118 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im186 195 0 R /Im28 35 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im101 108 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im29 36 0 R /Im25 32 0 R /Im25 32 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im110 117 0 R /Im29 36 0 R /Im24 31 0 R /Im107 114 0 R /Im24 31 0 R /Im22 29 0 R /Im23 30 0 R /Im21 28 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im117 124 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im116 123 0 R /Im25 32 0 R /Im29 36 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im24 31 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im24 31 0 R /Im29 36 0 R /Im113 120 0 R /Im133 140 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im136 143 0 R /Im105 112 0 R /Im28 35 0 R /Im107 114 0 R /Im107 114 0 R /Im24 31 0 R /Im29 36 0 R /Im21 28 0 R /Im145 152 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im28 35 0 R /Im26 33 0 R /Im106 113 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im106 113 0 R /Im30 37 0 R /Im28 35 0 R /Im29 36 0 R /Im101 108 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im108 115 0 R /Im25 32 0 R /Im117 124 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im102 109 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im25 32 0 R /Im24 31 0 R /Im22 29 0 R /Im23 30 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im103 110 0 R /Im26 33 0 R /Im26 33 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im118 125 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im102 109 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im117 124 0 R /Im29 36 0 R /Im28 35 0 R /Im106 113 0 R /Im25 32 0 R /Im141 148 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im22 29 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im431 466 0 R /Im432 467 0 R /Im433 468 0 R /Im434 469 0 R /Im435 470 0 R /Im436 471 0 R /Im437 472 0 R /Im438 473 0 R /Im438 473 0 R /Im432 467 0 R /Im29 36 0 R /Im28 35 0 R /Im101 108 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im30 37 0 R /Im101 108 0 R /Im330 351 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im28 35 0 R /Im107 114 0 R /Im104 111 0 R /Im104 111 0 R /Im226 237 0 R /Im350 373 0 R /Im350 373 0 R /Im350 373 0 R /Im330 351 0 R /Im268 287 0 R /Im105 112 0 R /Im113 120 0 R /Im157 166 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im23 30 0 R /Im24 31 0 R /Im29 36 0 R /Im111 118 0 R /Im118 125 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im431 466 0 R /Im432 467 0 R /Im433 468 0 R /Im434 469 0 R /Im435 470 0 R /Im436 471 0 R /Im437 472 0 R /Im438 473 0 R /Im438 473 0 R /Im432 467 0 R /Im24 31 0 R /Im22 29 0 R /Im23 30 0 R /Im21 28 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im107 114 0 R /Im21 28 0 R /Im111 118 0 R /Im111 118 0 R /Im26 33 0 R /Im25 32 0 R /Im141 148 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im25 32 0 R /Im111 118 0 R /Im30 37 0 R /Im109 116 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im115 122 0 R /Im21 28 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im26 33 0 R /Im102 109 0 R /Im138 145 0 R /Im147 154 0 R /Im193 202 0 R /Im154 161 0 R /Im101 108 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im226 237 0 R /Im105 112 0 R /Im25 32 0 R /Im22 29 0 R /Im118 125 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im105 112 0 R /Im105 112 0 R /Im23 30 0 R /Im30 37 0 R /Im118 125 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im156 165 0 R /Im21 28 0 R /Im110 117 0 R /Im113 120 0 R /Im147 154 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im101 108 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im110 117 0 R /Im29 36 0 R /Im24 31 0 R /Im107 114 0 R /Im106 113 0 R /Im30 37 0 R /Im26 33 0 R /Im30 37 0 R /Im30 37 0 R /Im112 119 0 R /Im136 143 0 R /Im138 145 0 R /Im141 148 0 R /Im136 143 0 R /Im155 162 0 R /Im116 123 0 R /Im26 33 0 R /Im102 109 0 R /Im24 31 0 R /Im23 30 0 R /Im25 32 0 R /Im24 31 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im30 37 0 R /Im116 123 0 R /Im25 32 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im107 114 0 R /Im21 28 0 R /Im111 118 0 R /Im111 118 0 R /Im26 33 0 R /Im25 32 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im25 32 0 R /Im101 108 0 R /Im107 114 0 R /Im21 28 0 R /Im101 108 0 R /Im28 35 0 R /Im106 113 0 R /Im25 32 0 R /Im105 112 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im105 112 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im105 112 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im156 165 0 R /Im21 28 0 R /Im110 117 0 R /Im113 120 0 R /Im151 158 0 R /Im118 125 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im22 29 0 R /Im23 30 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im117 124 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im30 37 0 R /Im101 108 0 R /Im117 124 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im114 121 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im25 32 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im234 245 0 R /Im28 35 0 R /Im107 114 0 R /Im24 31 0 R /Im101 108 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im102 109 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im109 116 0 R /Im29 36 0 R /Im25 32 0 R /Im142 149 0 R /Im28 35 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im26 33 0 R /Im102 109 0 R /Im107 114 0 R /Im24 31 0 R /Im112 119 0 R /Im25 32 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im21 28 0 R /Im29 36 0 R /Im24 31 0 R /Im117 124 0 R /Im21 28 0 R /Im26 33 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im22 29 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im117 124 0 R /Im24 31 0 R /Im105 112 0 R /Im21 28 0 R /Im22 29 0 R /Im116 123 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im157 166 0 R /Im109 116 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im22 29 0 R /Im21 28 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im25 32 0 R /Im111 118 0 R /Im110 117 0 R /Im25 32 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im138 145 0 R /Im475 514 0 R /Im151 158 0 R /Im141 148 0 R /Im22 29 0 R /Im30 37 0 R /Im29 36 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im157 166 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im120 127 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im109 116 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im24 31 0 R /Im111 118 0 R /Im111 118 0 R /Im116 123 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im21 28 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im115 122 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im28 35 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im107 114 0 R /Im24 31 0 R /Im112 119 0 R /Im25 32 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im24 31 0 R /Im26 33 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im111 118 0 R /Im102 109 0 R /Im111 118 0 R /Im25 32 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im107 114 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im23 30 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im136 143 0 R /Im351 374 0 R /Im141 148 0 R /Im105 112 0 R /Im142 149 0 R /Im28 35 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im116 123 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im105 112 0 R /Im107 114 0 R /Im25 32 0 R /Im25 32 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im109 116 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im113 120 0 R /Im224 235 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im28 35 0 R /Im26 33 0 R /Im106 113 0 R /Im105 112 0 R /Im105 112 0 R /Im23 30 0 R /Im30 37 0 R /Im118 125 0 R /Im120 127 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im117 124 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im111 118 0 R /Im112 119 0 R /Im101 108 0 R /Im30 37 0 R /Im118 125 0 R /Im26 33 0 R /Im25 32 0 R /Im111 118 0 R /Im110 117 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im111 118 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 495 0 R +>> +endobj +495 0 obj +<< +/Length 1059 0 R +/Filter /FlateDecode +>> +stream +x¥}MÓí¸Þ¾Å»Yä¶øMÎ25qU6©/½IìöØÉmvÊC pĵè[¯Ôù@�ÿúÿýõóõLÉ_ÑÚ¯¿¬ßòñð=|óùõÜ~v<üþB9uæÔSgHí<£~=|g.Ô~cÔ¯ïìQÓÃ:rêÈ©#§:pÔG-pÔF-pÔG-pÔF-rÔ"G-rÔ"F-qÔG-qÔFmç×_õÜB±ÔFèÛíᤶ'^ÛüIMD°ÿP¨ÍƨÛC§®?CÔ±SGN/ÔR¿~ܨEШÛC§®?CÔ}ÙÌ©ó £æ:j£æ.¨9ï¨y¿ æ1j¾£æ9jþ¨ýõÿÍÙíkû¶môïñÆô͸ +Vøf¶üõÛøñ¿ÿìCúú×?ÿðïªÌÑ@( l¡5àÖ0¥ øô©BCÐmö¯çñÄÚÏ®ëíx9uæÔSb½ËW"ØåëùÀ¨Gùº¿Þå+ìòõ|`Ô£|=^GN9uäÔ|Ý_Zà¨Ú(_×µÀQµQ¾î¯#G-rÔ"Gm¯ûëÄQKµÄQåëÉ-¯¿Øzk}½íßWk4D £nºþQ§N8uºP'HQ'ǨÛC§®?CÔ¥SN].ÔRçZæ¨åj£V:j £V.¨Zé¨Z¹ V jns]:0Ôèöݯy{(_(_c~&_m´ùú¡[æSÎjw¡0Ý5Ú~v]°ÇëÌ©3§Îz5ûëC@7C@÷F= +èýõ! Á! û£ôñ:rêÈ©#§ôþ:pÔG-pÔF}¼æ¨Zà¨z9j£9j£Þ_'Zâ¨%Ú( ·fÒC_°ÎäN9u¾PCCÐY2_1jûnî?ÔÁ×_Ú½ûÏuìÔSÇ54ï¨y¿ æ1j¾£æ9jþǨ Zਠj£;j£/¨E,wÏ´sévÎ<ÐÎgÚ¢Ðh º ºHÆ íöº?Ú?~6¬øýuæÔSgN=ʪúzðD°KøóQ __ïv >0j á÷×SGN9õ(áëëÀQµÀQ~ÍQµÀQ¾¾µÈQ5 áëëÄQKµÄQ¾sËë/¾âËeÅCSÔ¥¾ÝKÌ¥N )ê2¢¯¿u~7E÷!êÔ©§Njlnn)Z )êJGpÔʵQó¡öú뤦"بéë¡FÚ@Ô¼I:qêt¡¨ÉÂÉoñ÷ÛöPÂÿPÂçüPÂgûP§¨ðh Ú Vexml»W´>|g§W´?¼{EÃkc{R¿¾³FMWê©§.º@êׯö¤~=|g.Ô¯íIýzøÎ5=\©9j £V8j¢7Z}øÎNêþp¥.ºpê©!jÑ0ÔêÃwöÀ¨ F-æÓ^N/¸ ê«Ç`óº9¾jòÁîÔf#êÃñݨ¼SW/8¢:rêx¡ú%õa'5êæïÔÕ¨s§Î:_¨1j®£æ8jîèùç¨ùj£æ;j£æ/¨yÚ o&økòÖ\®à/ÞYkÀ&xx±îb®5`WùÇ>&äøì$ äUÛI@H ÒI@A¬NÛCÇ4gð¡cÎÓ3tÌþz×1D°ëóQ:æx]8uáÔ SÒr½ë"ØuÌùÀ¨G³¿Þuì:æ|`Ô£9^sÔ +GpÔF³;Ê7Ú¡cÎèãuáÔ SN Q;tZW+ígpÜÌ9ÿMæ´.sõUbECÔó¿Q·N]OuêÔS§uÔ/ÆlÔ#6êvЩëI�¢.ºpêr¡.:wÔ2G-_P˵ÒQ+µrA`ÔJGpÔʵQ«.þº9ÿj: ý$à!/ø² ?üzùat±Ü�¬7ðÄòÄ¢±ú9üÙMÇôÓ¹ tÌþúÐ1àÐ1ýQ:æx]8uáÔ SÒr}èFpèþÀ¨G³¿>tL#8tL`Ô£9^sÔ +GpÔF³ûú7ZÓ1ýá¤:æx]8uáÔ SCÔi¡ÖÕJû÷!s³çé0£ËíùzJAÔSç5´çë)E£¶Ì§ÃNm¡=_O)µcö<ftjíùzJAÔSÇ5´çë)E£ö5AÍcÔ|GÍsÔü5QµÀQÔF-vÔ"G-^Pµ¹~yA'ë ´³õÚiÈÒÃüSýS +Äêù>tLó¨:æ|8ÝëHÇÔ×»!]ÇèýuáÔ SN=JËúz×1D°ëóQS_ï:vs>0j cö×µÂQ+5 cêiÃÆP;tÌùpR#³¿.ºpê©!j!ÃP;uÌñ38î&s +9å"s =_ÏIubö<§têíùzNÒ¨3³çé8¥SghÏ×s¢N:]¨±=_º=_¸=_.ö|ö|='!jZ¹ V jõä n'(5§Á~¨ ¡ÖNPµyGm?NAÔ©S'N.Ôµ¹#ÙÑDG ë ´Ã ä ´åèHéAAôF¢µ/.2ûÙÀkóW¤ÙÏúCó?|'ûë©§.zôÛÔ×60jµ Ú~úÚFí£vQ»ÑÛµ¿N:qêÄ©GoW}í9j£æ9j£æ3§Î:sê1j¶¾QϨgÔa¯ãÆ¨ãÆ¨ãÆ¨ã5k#q=ìù[ÚÃàð¼ÔÑ?Y°Dí,£nz÷ðêÜ©3§Îꩽ'jïu{èÔõg:lD6FÝ:uý¢î¨Z¸ 0j±£9jñZĨÅZä¨Åj£<'uº j3 V£f{Ú@yØæiOAOAOA¤iôËÁϪl&>®ÛÏ®åÎ&õ Ro]8uáÔ SZ®¾ÞµìZî|`Ô@ËÕ×»#]Ëh¹ýuâÔS'N=j¹úÚsÔ<GÍsÔÛ_gN9uæÔ£«¯w-G»;5ÐrÙ7-G»;5Ðr[^1©/R/c]Qº®(\W®(XWЩ§ê¨ÝfÏ7sRÓì?CÔ©S'N.Ô R¿~ܨ%Ô¨ÛC§®?CÔ¥SN].ÔR[BÍY=tjQsIÚ]PsµOþ¡x,ÛÓâ³êêÃòÃ!Ë*@\o >k ¸Þ@Ö4à|çã×øÔrý¡ù þ£ýuáÔ SN=ú®êëCË5CËõF=j¹ýõ¡åÁ¡åú£µÜñ:qêÄ©§=~õµç¨yç¨Zîx9uæÔSá×õõ¡åÁ¡åú£µÜþúÐràÐrýQZqçRÏ_¤ÇºÂw]á¹®ð]á±®]W®+ÂEW¬+B×ëpÑëØuEäº"^tEĺ"uÔG-]PKµÔQKµtA-aÔ²íëíé¡Sg¸t93éÀ¨ó î?<Uþ¡¨r{ðT@{Va½4Õô>Õú& o)¾7ðÒ¯5ºÏ o.Ù/ÿ²uK¦êø¥×HêQªy®±ú·kõ_ãý7jþÛϸk¯Åîß8Þ°}KîÚWKC®ô Ñô9 º�áÞþ%IÄ|å +ªI¶7ÀFðúØt¨0#eàê�Mvhq`#·ô GØï¼,ÎÞ{àÇìÁÑ�Z þ¥!$Á«YØÀ°äpÀRÂ|PÃäU|`¾mì.¬ _Zý\yàÇH©vïAî³pöÀ\Ò! ìËL%a`N¥4²ûV*½;öqèýàÞçPÿå1}?ú4\G(°/¸x`âãk ÿ>ïa¢UTY¾TáHïÁæ? ïßÿhTóïnßH¸AÖ åë÷kö©M¦óÿ dú ¢ù/Áõðø¿âÎø¢ÿæ¿xÕüã/ºñKøÓ®ÿ6¬ãÛPå ¨rÑúuYCaÿ:±}Æ¿i¶Ê¿Î"ù¡ç_×Î&Vù·9>á_Çäï'þñký¿±ÿ¯~Wú�å?0äþ ù'êÖ8ÿ®_`É +ýìØqþSRÍ?ÚÔÝËHeÀ?Âøúÿ±þvPþ!ýûï7Ä¿cÿ¥ù÷[Rò/?Ïäß§ùìv§±¤ù÷Ìþü¼þñüy«µÿÆõ»ãoáF +ð¯0NÇýôzÛæo¦Ã ?$ùëüúl?cþõñßÈ¿"ÿµ|eþh¤>êôÈ¿òQʯëøÛ÷W{¾Û/ÿ0~Ýýü5®éÿýçþãõSAã÷ÇõM|û>ñßÛ÷Óð}iþª+ôì¿ðú1¤?ßèÑú裯?Oü??ñû-mö}?Ò¿üDþÉ5ÿÒ߯}Ð'þÖ¿)çüØo¦DÔ ýÏfÀü!ýõÝ Göà?0VÅ?âþö/ù!î_nýHò£ú4òC¿©?qü.+å§à?òÿÑ$òGóSòðýUßé#¿ÆþjøE¸þôü¼ÿ%ýÓý7ú§û_&òSô?å¢_"½RþÉþ¸8mÿE>ôÉúúoÞñþ�ñwæü>?jùçLTÊ?Éå?Ø?þëòKÀßYþÿ:§Õÿ~/ûQ´þGã׸ÿZý'øNþøGþ¢ÿ,¥ý(ð_ÒÊ_¼ÿìþìÎo(i¹ÿÝþémÃôÈ~Öû¯kÜýå +\?7ü7ZùÇ_3 4ãú÷ÝÿsÛþ?ý7ïøÙ¬ÄOð8üäwhüzûÁCùö¯ÿËÃùôϸ~ÿ*8°~8?¾tëWÿ Ó²ÿÇ/îÿuÿÏ;½úüÃ'^þuÿÏmù÷êÿñåEÿÒ§ÿÐ�¹6ð-Ï¿m`Դ̳àE¿b�WÐøýxRàïßW;P 1Ð=ÚÀ +¸Ø6Ðoý¿á#þÞ½ x2(|~ÿ³¾òOÙÿ} G0Öëûi;LÀ5<0®ú�ÂÀ@RL-s¹ï ^@ÌP7jÐ#;4p`1ç¥u¸Î@ë@Y P,<5MÁ`H0k +`ÜIB¨:qTBhIÌ»X¨Q@¹1q¶g`\ãáZsßb¸Î@H=(mï=�l(1Èô¾!'8ÒrmD$GPQɺ?: G³B#(«ä ãýðKY èË|_H 8ïkh<AùuäÈêQa#µE%þÂFÔÐüÙ¥@²ZçK£Å¬Eü;Úr NRá/;btv¿ü¯pDvGÐ{ÿùCýßùÇ#;&éa|x6ÜÔlþDGBü«¿i#óÆ¿5OD;Ñ«&@0g�&!,{¢ S$¸Æv²'0g@ÃXJ@)Å À+¨ZNéIÿ½ÙýÇÈ8 [`Þ*m@9v`�P²«+Ig¡]ÞßwAõ}i'ßC&;yÉðÌýd®¬�w²jOoõþP@àF(XDHâV[°jW¶Çx Û°wG(¹^|`{¨ó°[JPoÀ¾e³�.¸|ó¥¼Xrs¬ hnîÄ/$4ß0rÌDÉ/úOÎ`ÉîÁ@oým`ÑF*ü}¾ ûúþ§=ÈAù)e5]×PËM,©q]uæèXhÏó6QIftçyg!}< } gWWX`qiý§xÜ÷þ+âÉ~Îþë °¥ó·ïßpÃ88þñ<V ´j>×£%t60]B;²^ÊP%4º#EWZí³+MtGÆ12Æ3-ºi;yN/k¨ïs U¬ßÙÃYã¯?¼Wô«X¾³º?\©#§:rêñ6òúÚXFm,£6Qñ6òýuæÔSgN ë*¾mFmjÞ2Ôúà ÚqÔGÍqÔFÍqÔGÍqÔFÍsÔ<GÍsÔ<@-·e·ÞVqêõ³þð^Ó±QeõñpRW¦GÔ¹SgN/ÔR¿_£>Ê86êãá¤~ýQ¨2úx8©Ã©;j£.¨Zì¨EZ¼ 1j±£9jñZĨ%ϤçÒá:AÔæ5½[½FîÖ(h5×h54ðÄøÄøÄÎWQ|°Ü@yØ@çÕ:,7ðĸčQ_ ÛF[%]¬µj<Ò¨g<¤ÑùpVjD¶Êëõa«4ÃV9Njd«ì¯#§:rêQëÖׯ2jcu·UaêÌ©3§ÎVÇ<l"°µÓV9~©GÍqÔG Ø*ûkã¨9°UêkÏQó5ÏQ¶JçV³é®|Ñ]küÒ5~á¿\4~Á¿N8u¸PD]Kn6>?q6>?:Aý¤N:qêt¡NÚ8¢>Êþ5êãá¤~ýRN]8u¹PHm µV³QÛwÔêϵ3L:x.Þ¨Dm^Tr]ÉÑözñY½¼Äzùaæ!¯ÿ6ðÄsWµdg¤§ ØõQ½Y-oÚX,üÖØVg¡7ðDW& "[%Vo!ÏÝóîâ^®¥04:Jl6iÔÎzÀV©¯r4[¥?ÔÀV9^GN9uäÔÖÝ_¶J#8lþÀ¨G[åx9uæÔSçÍVi¡ÖÍö3Hí8j£æ8j£r¼æ¨9㨶ÊþÚsÔ<GÍsÔF[ qçºË_tÇßwï¹Æ÷ï±Æ]ã®ñÃEã¬ñC×øküpÑøküØ5~ä?^4~Ä?uÔG-]PKµÔQKµtA-aÔ²íëyeÚÃI¡WÆå̤çÒázeæ=×µ¤ªèÃSE*úøÐ1ãÒCÇK3.?tÌLÜÖJ5;ã 4>xÐ@zØ@ã ò¹Ln½fíQÜ÷ÊäÖËÉ}ïÁx8ÖGm¨µÐËAÏRA@Ïç2¹óHµYÐdum1Î)Xh4í½¨ºL*mýbj q@$ áÅtZ ®µM4ø!åéø-Õ&ؼ^®UøµIÚå~óùRZnë;ýÚÖ þ«kÒÁ2~~__¶Õ6[î¿ËÏúßb)æëG%ñÿõµ)l'{T ·¶ãEþékG4~}m(uòoR3Ç_EJI)¿ ïgÈ¿êÚsY¿ ¥EÀ¿ ñkðoüW2ÀÌkã:ÕúSzrüBD¾Ñ?1¥ÉÏ¥Úv{¤?kJÎýIµUVõ'ÝÁ¾ª?]è^Îëì9¥ñïÚ¾Á<Ò.¤GúÇÅë'>\?éáúéöççñ)eÙ¢þúG¬Íå§>Ùuùùyý)e%£ïë¶M5~)¥Õ3ùû)¥UÎèÑÙ¯bBAòGÚjËvù¹&ÿ¼ äw:ù%ÓëÖ¯¿òC_ÛÃGòÏ3ùû¹´®-H 5ïý××ôX~êÇuãZ¢nÿ0«Í;[¿bmìG}F OÐ~T×&3´k+Kö£iZþýâ ëyñG v¥?Ïë²Úþ7¶ä{ÿõNóÞÿ?é¼±Öæû=o×Öá/fqªþótó7«[í%ÿS«m¿<ínùø¥ï#üoøoHÿÆÙÝÂþskûϸV[ÜÓ¿¿ä¿0hýßð_úô¿0~UãsZm´wúµ]^\t·úþ/ÎOÊùÃéõn$Â¥#*î#ú¢¢sÑ¢?üOÑOÒ ï·».ßúS 'ÿû2=ÄØßBmåìÁüöÈÿYÇÿb.^Aò_¿ÿ¨A@~êsá +꿾¤O÷ÿÄÏw»y¤?ãWujµUòÂú³¾iô§\éO}m@çÂ#ýEµuWõWõÿhäè?ðÐ~SÛß. ünðOÐÚxÿá´?Ô)ªÿ'7þùXâ0WßØê¤°\ÛñT¬nN ð©ºõ¸ côÜ:ù1:*ïy ð8Cv¥4ôÖÍ Tª±Àª±H묢bbI x¿¯R=bâN,ûlzûlänJFwEeÄ}ÅBØ{dDÛQkàµ{¬ÍÐÖ@âÅ ¯)6Á<Á¶]14nC=ªQ>fTï t1ðfé+ã¤ÈqCêj2XúêLxÛkBµ¼òoôú5ÔCi&ô²#cëô+ Ðßp$" +³"ÙØ¢µïôzC¨;BÂçKv$C¨;BÂZäî ³Kb@l;ÿB&§þýC¨;R¬H·À?áwZùÿ6ã?}Q zýFÜ8þò%ÕIÕ±6©Õ9§<âH3á1)Sù!BøèõEeQ?ùiÿýpýþ_Y[£YÆÊ§#AÏ¿Q7ÿr Sá':ââÿE ²{¤?{ Ídýó¡üæ_ªlGiïôúõ5F³þä@ )ê}mÔvIÛ*ÿ8kUü#nä-â?½#×9ô}½#·ÒLõvD:®?nÁ+PÛûf@¿0H=ô`t Ê¡,Û3ÈÖ¹Vð HÈF$ =fªA¤´ EWTÖY`â5Q}_ïÊí¡, , óã"C ¸rM)]34·ÀüÎC,²àGþkË& @PmÙ«íÀkÜþ}c7,Ä]$ßèÕ�KgÀÑóqMèÀ¦à@j ¬:. +®6z`ZyXEW-ÚF]ñ�¨Ð/L ³L¦`L§9zd(åÞl9lnʹ̡ÂÕFuL$ ;Ý=:бÉÌfð$]õÀñ¦4ä±cRÂ0{ÓpàcA½nF9WSâ`Ã0Eܰ=«0zD ;´}Dñû÷Õ fÅh$jÉ=$¸Øºg\ÜÃ"V¹¸oçg\,-dª¼5]È(3¯´*£�° +h·¾Íy@º,Æèd±ÈÄ=abI[&K?Érq +Ûµm)0GVQFÁ¸ÒþkðýÙ@pÄx.WÿÁ $åÉ&($é1ZÔIiQLt\xÀ)¾ÒBvP ¹¨Î¾ÆóáÖ, +c@ÁïQPe×1]s§~iÊ,ÖQÝ+×0¦àÆèhç2°3¼.$º�xë#`ë`Smc2X3ÛÕÎÔ�2(nì-4ëô +ÕåøL¡ÖÝõ# ZÃ)T¿AÔ +µ§,*TO¡VóÍ æB¿lQro!6@É"ó²LÒÈÞÁíÐȽWöX!z¸C +Ql ]¨Ð¨âþÖåYÒ>¢U�ô¡8)èæ@ÜáÒIÝk=.ípÞèA·Ø_RÎú{`6òLG l±É´ßââ;÷8]F0n±QÝãÐ!H̲Tï ·½ø´C=éÄÏ *¨ÝÍñþ}µUg2b¢Ñª ÅñC@àbrr̸XÜ^mA ¸Ámw]Fà$1ñôÒÛ+ +=¾ ÌJaLaw[í -:9|ßPè6¹ñè§ âB½Çn´½@mÔô% F«p´(uhÓÉÅÂ^ +$HÐ2 +NÕhôtê5cIÖ$�,:I.nÐ74Ð öV.$%C|6(ÈnTÎ*-qN7i9ʯ"aMvõeÐE @y°ö:{BÜÝÆ¬(~$ïyÈ*6(îzüÙüT¹E@¿tnC-"WÜ×Üyþ;Þ+&Y¥µ Ê*à r:R)^¢zÀRÀÂÞdÃ&joò 1ØSE´VË~ÉSUS!tê�¯dOõÌf+yê#XÕè=á¶F'2u>iOfX\É>�ÒîÐÝþVäA&Ê>ñ øý¸©¾ìzgá P(Ô8�õÖ.yU¨C¼¿ötr4Û_§ø-«°ÚFK¾JÓ¸6°â«¤l÷èÍâê¡ ,)tÓò²/P¥ÕC1Ò«mm +Z>Æú´ãÇÙ¤ølthÁó\éìꢨٶoa;×±>¥ +¦@ØÛl ôV!¹8.Bqoc6¡~wjjÊq:�D «PÛèü> Æï´bHضìê)@÷° CÍC2PiþþUM`£n +D/YDß^2±M.¯Ôse¤J¡5 H: :@§( +Ä76·-LÑÉáxzl 9¢?=nÉ 9N[vC²ôóQçðew4À6VYa´ >³ÈîmÈÃç@oÐP¥O 6\Hê\ÞQÓIã@¢VHHÞðR¥¬3jÅ)ÈmJ sWVõiÛ¶jñËðΦ7çÕêÀV¡ ÑÃU¬Þ{DÁBwc{¤ «wdmWAî²Êä&-x¨Jô�I-`$*kÅͼwßR?¦.BåÎTPm Y-�£¦¬.ES¢K5íV"»w#û&â'³]¦bóHÞfѽ @Li.ïßG×s«: oD¯ÞÕе+�A¶¿åR½Ú1-ñÒ° hïôµ|vW´e$×Fpä·ÎÚ¹Së=ìRì"ð=ÇäÚvêy @¿3uHÜñN U|ä·í"´)bJdSIü9Id½à:Ú\¿håÿ¯L~ÑB¼~aTÝ#)<Äuê4XvodØ}®Zª@ïã+hêWÃÉ)üb[dòd- +þ(É4g®ä*ÏÍÝÍy�:7¿v Ÿs +Xco9|Ã*XpPµ*SQ.&Ù Ô'Ù,ËÁæM*ß$¬¤Ö*Á$È\F69drX©%¡+éÑ2òäaÇÎ\úsï +hHÎ ÷Hz�¼aøVKa;S ¸±3U[dsA§ÍÅï{Û³UܽU,Ç~@{Lá©@|¨Í}Bèµ¹Oµ9ñ°É~Cbf�97^ôwÃoz§¢OÝéàÿ7Î (;彩-þè ÚCØï�¨¼LL^uØDÎ «â�Ñ;pÔSÓ-/PçP-Ì)räFÐñ¼R +ðÎÖxZ.ÎÍ \j²SfL Æ_�éÒÕ8§ä⢠+×è]\L-¹¸ÚÕÜðïÝ2C'Pn¤ç´»µHpï´lÕIñѽ#Æ/µl3]";'tP +g¶$áö9Yv. ]thOqá!µ$¤²ËÚêJδ©¸35Pª=Õ=ôb¶eïNÊõ/¥À¯2'dßÄöH;¯Ö Ë_¬!§crñ +£�;] >ëqI«NÕ¾OàËP+ÂFȱ¤èjX®DÔ}zWÑÉ 9-Æë䡬¥)óØ�òP^SäR« ynÊxTgª¤Lt¹F6çRÛç#g9ðC'¥MIw¬nJzàÆt}®|1]rå lªå�®X>AÒ{VOâ.¤ÌÔ5?¢ë¶-EAÂæ !M&uÄ1¹ÇâZ%)CÁ?q±¡ãƸXªgÌ {7]D÷ +¥ Äû5tÊÍ:?®ûâb!CS&Ày-õÊÒ=¯%ºY^ph½å>µCkkðÈåA£j +å´ cý®¬Ý5ɵ`ßp-´[ÃgôF V¹QßÔÔ}ñÔ[t6$ðý;C¢Õ! n 1¢÷óWßjJUjuÏïþÞÀËN¸ÎaØ/-«Îh®#ðãÍÇÏAÅÃFíÑ'·mp#Ó£53õ`EÁÑÜÙ÷@ðÞ0(Ôk8.5P`À? 4`q$>p¶èø@Ü_:(Ô +tÎ4²Øá³N ¯k@Üà8RS¬vB~Q<-ÓÉöLÊMAáä4,JpOÙÀJt7@ïíörrrJÔb�Ûíï)U}7xÓ®§{@¯ ¨|{Îi¸Z¥Ý$ÚtÚkxfyzÚ¼XRéaAÙi%ù¨\Ia¸%µ§apö ^j¦uPtþ̸ýmé(ü}á}%êjØà+éô(»4]Û&¶2*µ¥óS*ùÞ)änò³2(Ræ,ñÓÚzLPø»¥ÈQ�¿ÌÉS�£³ErøÕÔ?!`7ÄÄ7®áhÕï/ßÖµ°E!ãøíûw¶(Öôe¼¶E± 6 Þ¢Ô4õÅ:Üõ¥îõ ¶(ö¥ÐÔ[l@½EÙµ±¦¢Óñ0»Q$Á¨¯í#aÞ¦Â\CØT+YôxQâöEèÏ07]ä,¯ÕFÂ)²1*ÃÃ)óúb¨BüY5 ò=NÉ }ªL¹ÛÂ=T¨7 éßÎÃñý2>:¾Å]2íóý¤.ÈD¡<c¢èuL$Bì³e!é.ÄÙ¯"¡ÄW¿X3Úå¢Á¤ÄU�mªÕr=4nxÛ7KÞu®aBñëtS(7P´< ¸DË@?O×h̦�mîö ®wh +¾Â£×ÉrÑÓ$½käHκÝé4a²Åx·&úB³ä¯ôB³¨\0ÝÂ±Û¤îÆ¨mÛC¿6髿bïÛï C¸÷ +pr\ç ÝãAÙ:ïCo|3 ¾7 ¯»Ýà ܬ$°Å¦¬A7)ì%¥Sª[«¦ÒTºiU+ìp4hô¾Oüäp3 6m¤p¯@( A©ïô l6örØ ñªú;e:8À 7*e>@<K¶èû7\}5`¦n± uñÞ(apaíf¯^$ÒUu¢k4¦ PyR®VLê0¼O¡:é«×a¸Ïê dRY×ÈÅë0ábù" 4w.Ò°«(º9ËLfÀ2J},9\ëQ>²ÔGK"ýBܤΥXÂg_F ¹ÙJ1Y&íñÑ:¸Q #Bu¦vº;¥$)@{@_è3!{àAÒÓnk£6XFáì)õD +\F¨TfR§ÐåH�(Jõ×<ðLÐ5 +e ù¢Î¤K) i~£R¦Cf©½v¹~kÒó ÍÒ^Ja¾9ø&LD "Ar£¨ Ýcqáb=$-Haiu\®Á°õDú5vH/i?×ó3.ìj¥Ë� ¯tIÊÐ~®!Vº$7]tr�RBã¡÷Ð×R ¿·ï+cªt¯åAa +(Ý`2b6ù»ßÔßGQmSè£~\GfÀ(Â[ÛÙ+'{o�ÕÆÂ®FK®ÆKIËøxé¢ýà˦»®tCng«×H�ÇÛÙD_I" ©Á T~&In&ë!�I �@I¤wòd´oÜCQ²ÿR)4þ;0l ßÈz?]½±û:wÖ?Bç(¼q�3'îÂýð¶åVGÐÛ´ý�~6 Ó@ûUXß´$¢{AiPÈöêL¶×³u,1´oDÂôÝñt ÉVt# ûdVDÙMDÑEf±Þ®ïãÙB³ñu\(*D\¨I@lçÏ>>³j}@;£QtâpabýèÙäÝy$K}BâÖÒñͤ¢aN1òfVÖC±°êCafV©OÑoshKã²jÍZM ÎLjJûcrŲ}kÖÊrôýíäãk8zBÉ[\Ï¿ó8½·¸aloÉ*zoq/8ùÖÀ /5ÛݪTÓáàâÄ61)tVkM}nÓ +R^ÛT±2« ÝLÅ¢)Ô×ü¤äÅm5}³` +n8ìm;ü2\ÔÁ« Ã8´S ÝÇátÈU!r GøT"éþRI|ÆÅêãÜmïÑ:¾s)ù·µ<è^ñr¡q=ÅúðÇ1Vȶù«×ué�¼¼Ì#pò3ðÔGuÚ-HܨSe©\Û¢0uÛ3IÒMÓï Tgú¦¨ô¹èæ±ôím|·=ιGй¬[Æò}²à ¤õ;*´µa4D±JQ,tÐ18 1ñ-?R§p¥ª5Ë ¹{KÖ©S9uæ÷zS] gzèìj1ÍÀnpõ5NO>N ú8¼Ò¤£8PîDqPþ)Ó!x£|±gÍ'EWeÊH_jKp£ÇÕ"Ûvû¢a«ðµ½>Ï. àÏ÷YÔ-ÚÒæÒËwúeY(£6°RëÜ\ïÐKbòr½ÿÆÞд WôH,&ýuC^Kú3É«èå<@b@HÈ 1!0 ¥ ûZlô2`ÊâÆhÊU ]ø©É? ãÙ?QÐ�Ô@ä_XCõ>GrªN®Ê!º.tC�ÞáA$ù WmÍSÉc4e¸)åì·èTIGÙHÀê[frÅPÝf+3ãBùºM¥2ý¹ètÈSbc}®QC#\+S/)Z*âLî UAä\Çúrü±�Ü +Z×%Ñäìóó ó|¹¯ÎÛ:ßxãA¯ðÐÐEµå8 T±rY¶½mëÊä¸p4+W¡°¢Ñ"¹@ïâIZ9ãB)MåªLôr ëäÈ2¾ÊÞf´r@ØÛnZ.b0Ψ+a$îûtºU ß÷Ôñû> +A1ÊÁï+âzÉ?²=²i©Xåý5DQ4)";�AìÝ�èK®F$4VõA}a/rÏÌÏ92 +!ò9G¦Vk\ËO ]>§ýÊ92Ðë=tt]èu�ú*í¬àÒý «ñìÀÎ´ÈøË÷õýOªÿ"$%ÈÞÄúZ2¦4ÌÊlj?ú¾B +7c¡ñO¦å:^¹ß±�;çþ&#ôf@U ðh +9> ç:OrIΨboôñèXðï8{$jOyA½{Áî-òQ§I¾ÈÄ- +nÊÄbàíH.ËP_I§ !ܨ2Z¢r«\3U(NlNÕ¹Æ'c7J7¨Hô~ krXªÿQt,('éÖ|Wè¦UåBè×r0�h¡E,xBÒsrÜêÀ ç^KHÏBL +-Å`!t£JlF¶Äâ¨Àgµf&þÕÏqÅç¸ý"Ú ^lÑKT}ã¾.&z´#¹qØG·}®*ï 1¡¸$°å7yÁÅdݱ±hÍTÇRJ Äg¢îÙXDT½c¾)Bo"2éoCt È g\zpÿ¾ðñiW`ZØÚÀM%ù&Ú¡wô1ð¨u4Ö"/ÈÏ?gíý°å[HRÿþ½xês"~NT}-Kîò}}ðNû/nMa!ý=2¹t\ó®§ä�É»gðÆ%"Fù})r%èÖ¸3Ý[c:pð ¸··ôÚ DPºmÔªèE÷PK¾�lJ!)ÔyVñ[jr^ +7òRò³ULõIW±:fõIg<(Ç Uxãå¸zS`sÐ(ß ¦ð{© 1výD¾û,Da'VkKÞ #7*OP�ÞlâÖÒ@k �âBJõ +ZHéÒTHéÚãMõø}/nêÁÈ>qrU BCø\5»Ã¤ÚERN%xÕB=,È Ô;ª©¼é\HX9×ä!yfϸ¤µg È' ë&@°(-Ê×ÖÙÃeX +ÚÕx}^7ÍÔ¹S@¹Æï'°·5P߸AE' å¸ÿLyûLy + [ä!ïw6÷íRº©27÷"Ý¥úͽns/×W}hÓQžBðSbLï§LQi×K¨IfMO_PfM°K� +£³Ú!RuSø} .£ÈMÕÑ¹ÛÆ2|.¾":´:�Km_í!w,æle÷OYUuÑÿz÷HQò ØroÜî�¹'6áÂÔ³Zxê¸XN¬«¨¹¬éS0ñJþ ÿh[yH¿·uV¹eÿÈØÿ ²m+¤uÀºHk\l»aµ\ØÄB2ÏäÝðÏf ÷Æý(-ÆéV±AFC¸ÓêDOçPn iòbÌ£e춸¨ßëÃNµ¡XàNbÕIB¹òÖ" tÐ ¾/^¡#H2uSZtr}W8Þ(ÊõHZÀ"bÚ½Ë&qOY4©ìÇl¡1¡/°ÜqhOéó{ZÍñrÐmCx¼T~ز'i5! Vý0a(èç»[ºLðï8¨ Ôu9kZrIáæ2¥ò´Ë» +¯cry[ÈÎ Ìú¼5UWË÷ -ã_RÐ `Vݶ:)¢kðÇ>?«]ó{^Ê{ôù =öÃ߯¸w®Ü2+NûNçfRÒeÓþ)òoùY(!|'·é ô¿PÕ Á'Tõî½#^xD¯ÞXÓÕ/ó ö$Ûê qÚUáXRºÖ¸<»´Cè5ºÈ¾ Ä7¶ÖîäÁµ&Ç#®¨xHN,q:9*Ç^Ô±hÜ80´XêÃ_È91ã!¹¦(zVezï_, GÕäèZÚ¢S ¢¶ A~㸪ú62Pæú+%·³<tA]$¼G_øµ"áTt¡°³¶Q5 bÿݦê¿Ú¢5çàFEO¯ÄÓs9/ñª¾ Àè/!x%ÚÁydên¯Ät¯¼tÂ$xEº[Öê&A¬üBV®,V~ÉFeATJPôÐaPTtö¸·§;·XëßCîÆÖÚ8A$5YTÞBÐgVX¤odVXµ /rc&z<2ÉîÔ õZe"UUõ¬jOÉÆËLD~ÚYbìFD»û7<'¨Îod×(-1³övZÓSØRí»V¬Ø»eÔ(9§ ±Ùiõ É¿b;@Ñ#ñ�qS}_þ w;-"&äöî½zUÒÍ xóN»êà2�}9GC�¤&¹1Ó)<bß«çè¯JØñ`ò à0[_DKr°Weµk´¬Õ-1tÂÂïëÝ+Íà¥3` ©²Nÿª)«:xò(ÈÇ,è°cÈXå-è â[³Ê´«M¡XU6EÔPc]X´©.)¹Æë8@D Ý)º¾ +rÈ¥Ot<(º6Ä£{AØ +Òcä´kíG˸Wu]]ÆÎB]¢¯¾âÐ2ÐïúÞçBª^"@Gv®7ÁÇ!úÔ(Èô.YhQ*"¨xÒæ7êAºlÚ;á'hïd©-B)|JB] áQ¼Bpl,ºD}ìÉD!]n< bQOwzÓÕbýÊwÏ¡ EùÎ6®å;{¯µHèÔé$¸5Õ\4ßP߸v'gS¦ø¯¿þáÇ_/óõëß¿b¥ÿÚ©?~ýóKSû ¹}éõß}ýÓÿøó×÷?þö§?ýý§ùú·ýÕ×_þöçßýßßþô»¯ÿõÿ¾þí?~ùã÷ï_¿ù§ßþæ¿~õíë?þøÓþô·_¾þË×~ùå/ÿòãÿøÇ?¾ýò?þýÛ~úåÇßÿ·ÿù§ÿóã_þ^é¾ýá¿ÿóׯÿ÷ÿíׯÞýßÌ +endstream +endobj +496 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1060 0 R +/Name /Im457 +/Width 36 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x%Á CK8pd.$Á*NlàÂ&2GD @Éÿ_ìà<fRìCq/Åßgk@¶f{E|E(¡ðNlNY¢RjQ³ÆJÐ ,e® +¤h +ùÇñ¸¶ª�0ó +endstream +endobj +497 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1061 0 R +/Name /Im458 +/Width 37 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xͱ 0Ð!àZ¢®ä%#¤Lï¢ 6Ü+ïF0S!ç^ìÄN°Â!$¬À¤ h=<#Úsp¶P6! m +´7ÊWôyp²ôÁþÉV4Û ËÙ_¥²W +endstream +endobj +498 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1062 0 R +/Name /Im459 +/Width 43 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ?Ã$D00üdò<N2bÌ`LòIy0YßÀøùÃ@!µk7�ªNTn +endstream +endobj +499 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1063 0 R +/Name /Im460 +/Width 39 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x± E?¡ dJíÅÆ9 ()ø=Ll É»ärùÿ5�د*°óqzè lÉ6rãâÁÁI4A`ÆD'ú_|Ì*E½EÊEC¸(jh¯®?_XÖãÚn @¶ +endstream +endobj +500 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1064 0 R +/Name /Im461 +/Width 40 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}Î!Ã0FáTZ0©´0p¬W +YÚÓì9J`XPÍsª®päCÿFØê3S¸+¢AWJuntXNòÄÙIåâãð`vàDz9QçÆtáïO|2¶ñ##¶ QöF¡SÏ}d×la_ïôE<È +endstream +endobj +501 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1065 0 R +/Name /Im462 +/Width 16 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿþì(üÆüP«]*�W(F +endstream +endobj +502 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1066 0 R +/Name /Im463 +/Width 26 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=Î!@á¬Àu}E7Aõu\©²°§é9^ÃEÖa²¯mxÉäQOÄfæÆÈ$ç¡e9Ö¿ Ô}/$_i}ÓÑѱ72$¦ÀìNå'k§ÝU_Ìöâã¹7®÷áÝ}}2H +endstream +endobj +503 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1067 0 R +/Name /Im464 +/Width 38 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿÿÿzQÇðñGà a�$$ÀÄ !s�Hð`#ýÆ@¢þÿ¡¦V·T�ç9â +endstream +endobj +504 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1068 0 R +/Name /Im465 +/Width 35 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿÿ ÿ}ûvÁ'ÁÄÁ�#(Á"øÄÿÿ0Ì H0# PB<@6B ¬düGþ»YYv©�,¦D© +endstream +endobj +505 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1069 0 R +/Name /Im466 +/Width 31 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¿á?ó```@uÌó!a(¶âþÌþÿÿÆòjµKÕ�c3/ +endstream +endobj +506 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1070 0 R +/Name /Im467 +/Width 40 +/Height 48 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMα Â0EÑk,á2#¸P²ÂFYQXÄ(¤Ã ðb æt÷éa±àï8òüE=?\Õ}â¬úL«û$èñGg°/ìL¤c¡¸Â&Tl`*d¬¯t^¥Êºf©Î7^Csha ²<#K¬2¬¤Þ+fCJæÙÿs<õÃÀK³ +endstream +endobj +507 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1071 0 R +/Name /Im468 +/Width 6 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûð~üùóûM¦f�m§ +endstream +endobj +508 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1072 0 R +/Name /Im469 +/Width 68 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`�(øÁøcT`0j`ÃÆÇ`ð7@ì`P3Ì2F¸e`zúÿp�Jÿÿ�gÀ¥àÑ´Ã [·î¸Ã0Ý÷Üp/cÜía^e¾�©:< +endstream +endobj +509 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1073 0 R +/Name /Im470 +/Width 35 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xE1B!DÇPPr +[+/°3aä8 +GÐØPÆY5ßæ ì>y0v| ͼ;6£U{ªÛ~ F`J±-Ùè cÏ BÎÀ@¦2RdbƧ3¢¼H¯Cu1/ìMwF4(]/Âõ@ù£3дèíWÍ¢ºÌ´#|~믯·ûå ª(k¸ +endstream +endobj +510 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1074 0 R +/Name /Im471 +/Width 51 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x½Î± 0DÑo8¤ëÉDHp:» +ÙR\Cİnð6yÁFK.ÀTuvFÝIò°&É5Üöcºl'Ñ6,Ù˾áe¾àº:¨±:Éx½?ÿ2¾Çò�ÑåZÎ +endstream +endobj +511 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1075 0 R +/Name /Im472 +/Width 32 +/Height 52 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x3```°bûÿÿÿÃpýÿÿÿ øOE�ñ001s;P'ó±K�±@ñfêbFÂì ÌåAí±àz"0Ð +&5Õ�Ó-Z +endstream +endobj +512 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1076 0 R +/Name /Im473 +/Width 31 +/Height 52 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xe± B1D/JÒ Ü1W¢¤áÿ¬Ä%#¤Lýp&¢¢x²ìólhæ@©Zh9Cê ©S·»¸*Q¤E[C¤^À2°òÎñ>Àæ{_ÅèPÎñc#óqp÷IôÞq4 VáÍ·ûl¡××ûòE¥ +endstream +endobj +513 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1077 0 R +/Name /Im474 +/Width 58 +/Height 67 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5AJÄ@D+4Ø1Ûû +. xàR0`{0±a.ÒGèe ±êÿ$<H'ïWý`¯wØoÆOøÆ W Þgà;cÁc üvÁiÛþÀ·N©OÀ³÷@ß¹:©7Õs< îãDùÁæIo¤y.ÒóìYzæý^ù¥WéÕOzõ^éuÍ@Ôüäz;Ö3,B{Ðm¨wÐrBb %ÈÌ!kI±bv&Ä<é9°Hï\vö«S»ÃÁêd6ãx0»7i2çÌ;'1èÇÀru%¶{å¶å°-½l9ìT½X³^^¿~ßþv +endstream +endobj +514 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1078 0 R +/Name /Im475 +/Width 40 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5½ HɶnAÜ!¬ÑqC7!q:)Hð¸ÄæÈûûî�¦Jñ2'J4@óLu¶ØM; %p+ðaÁKáØ7¦_dt"°ãQj -ëL�¡xÉRæ¡@¦«àq|aY¶sý�7D +endstream +endobj +515 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 580 0 R >> /XObject << /Im476 517 0 R /Im66 73 0 R /Im62 69 0 R /Im297 316 0 R /Im298 317 0 R /Im314 333 0 R /Im68 75 0 R /Im69 76 0 R /Im52 59 0 R /Im45 52 0 R /Im38 45 0 R /Im42 49 0 R /Im37 44 0 R /Im72 79 0 R /Im35 42 0 R /Im42 49 0 R /Im43 50 0 R /Im38 45 0 R /Im35 42 0 R /Im36 43 0 R /Im45 52 0 R /Im70 77 0 R /Im43 50 0 R /Im36 43 0 R /Im78 85 0 R /Im459 498 0 R /Im460 499 0 R /Im461 500 0 R /Im462 501 0 R /Im463 502 0 R /Im464 503 0 R /Im465 504 0 R /Im466 505 0 R /Im466 505 0 R /Im460 499 0 R /Im45 52 0 R /Im36 43 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im82 89 0 R /Im37 44 0 R /Im36 43 0 R /Im44 51 0 R /Im39 46 0 R /Im48 55 0 R /Im37 44 0 R /Im43 50 0 R /Im43 50 0 R /Im35 42 0 R /Im38 45 0 R /Im42 49 0 R /Im36 43 0 R /Im48 55 0 R /Im70 77 0 R /Im37 44 0 R /Im50 57 0 R /Im35 42 0 R /Im47 54 0 R /Im46 53 0 R /Im473 512 0 R /Im46 53 0 R /Im75 82 0 R /Im77 84 0 R /Im37 44 0 R /Im72 79 0 R /Im35 42 0 R /Im43 50 0 R /Im52 59 0 R /Im45 52 0 R /Im38 45 0 R /Im42 49 0 R /Im37 44 0 R /Im72 79 0 R /Im35 42 0 R /Im42 49 0 R /Im43 50 0 R /Im36 43 0 R /Im37 44 0 R /Im77 84 0 R /Im37 44 0 R /Im44 51 0 R /Im42 49 0 R /Im36 43 0 R /Im43 50 0 R /Im36 43 0 R /Im35 42 0 R /Im76 83 0 R /Im35 42 0 R /Im38 45 0 R /Im37 44 0 R /Im70 77 0 R /Im76 83 0 R /Im35 42 0 R /Im38 45 0 R /Im36 43 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im43 50 0 R /Im40 47 0 R /Im37 44 0 R /Im43 50 0 R /Im421 454 0 R /Im44 51 0 R /Im42 49 0 R /Im37 44 0 R /Im47 54 0 R /Im47 54 0 R /Im44 51 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im421 454 0 R /Im35 42 0 R /Im72 79 0 R /Im48 55 0 R /Im70 77 0 R /Im52 59 0 R /Im50 57 0 R /Im35 42 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im70 77 0 R /Im37 44 0 R /Im38 45 0 R /Im77 84 0 R /Im35 42 0 R /Im48 55 0 R /Im37 44 0 R /Im43 50 0 R /Im81 88 0 R /Im43 50 0 R /Im35 42 0 R /Im38 45 0 R /Im42 49 0 R /Im36 43 0 R /Im36 43 0 R /Im40 47 0 R /Im52 59 0 R /Im73 80 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im84 91 0 R /Im44 51 0 R /Im77 84 0 R /Im78 85 0 R /Im55 62 0 R /Im78 85 0 R /Im69 76 0 R /Im40 47 0 R /Im35 42 0 R /Im38 45 0 R /Im35 42 0 R /Im36 43 0 R /Im45 52 0 R /Im70 77 0 R /Im43 50 0 R /Im36 43 0 R /Im44 51 0 R /Im42 49 0 R /Im47 54 0 R /Im44 51 0 R /Im39 46 0 R /Im37 44 0 R /Im43 50 0 R /Im35 42 0 R /Im43 50 0 R /Im40 47 0 R /Im37 44 0 R /Im43 50 0 R /Im36 43 0 R /Im48 55 0 R /Im35 42 0 R /Im35 42 0 R /Im47 54 0 R /Im72 79 0 R /Im37 44 0 R /Im43 50 0 R /Im43 50 0 R /Im35 42 0 R /Im38 45 0 R /Im36 43 0 R /Im78 85 0 R /Im69 76 0 R /Im40 47 0 R /Im35 42 0 R /Im36 43 0 R /Im43 50 0 R /Im38 45 0 R /Im52 59 0 R /Im42 49 0 R /Im77 84 0 R /Im35 42 0 R /Im36 43 0 R /Im43 50 0 R /Im76 83 0 R /Im35 42 0 R /Im38 45 0 R /Im36 43 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im37 44 0 R /Im38 45 0 R /Im35 42 0 R /Im43 50 0 R /Im40 47 0 R /Im52 59 0 R /Im36 43 0 R /Im35 42 0 R /Im43 50 0 R /Im40 47 0 R /Im37 44 0 R /Im43 50 0 R /Im52 59 0 R /Im42 49 0 R /Im70 77 0 R /Im50 57 0 R /Im45 52 0 R /Im36 43 0 R /Im35 42 0 R /Im35 42 0 R /Im44 51 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im38 45 0 R /Im48 55 0 R /Im37 44 0 R /Im43 50 0 R /Im43 50 0 R /Im35 42 0 R /Im38 45 0 R /Im42 49 0 R /Im275 294 0 R /Im52 59 0 R /Im38 45 0 R /Im477 518 0 R /Im78 85 0 R /Im69 76 0 R /Im40 47 0 R /Im35 42 0 R /Im50 57 0 R /Im82 89 0 R /Im35 42 0 R /Im37 44 0 R /Im43 50 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im48 55 0 R /Im38 45 0 R /Im35 42 0 R /Im76 83 0 R /Im44 51 0 R /Im52 59 0 R /Im45 52 0 R /Im36 43 0 R /Im76 83 0 R /Im35 42 0 R /Im38 45 0 R /Im36 43 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im44 51 0 R /Im77 84 0 R /Im42 49 0 R /Im44 51 0 R /Im83 90 0 R /Im81 88 0 R /Im39 46 0 R /Im37 44 0 R /Im42 49 0 R /Im43 50 0 R /Im70 77 0 R /Im50 57 0 R /Im57 64 0 R /Im37 44 0 R /Im70 77 0 R /Im43 50 0 R /Im40 47 0 R /Im52 59 0 R /Im45 52 0 R /Im77 84 0 R /Im40 47 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im50 57 0 R /Im37 44 0 R /Im38 45 0 R /Im35 42 0 R /Im342 363 0 R /Im342 363 0 R /Im478 519 0 R /Im36 43 0 R /Im70 77 0 R /Im52 59 0 R /Im73 80 0 R /Im35 42 0 R /Im38 45 0 R /Im78 85 0 R /Im49 56 0 R /Im40 47 0 R /Im35 42 0 R /Im42 49 0 R /Im48 55 0 R /Im70 77 0 R /Im37 44 0 R /Im50 57 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im37 44 0 R /Im43 50 0 R /Im35 42 0 R /Im388 417 0 R /Im45 52 0 R /Im37 44 0 R /Im70 77 0 R /Im36 43 0 R /Im43 50 0 R /Im38 45 0 R /Im35 42 0 R /Im42 49 0 R /Im77 84 0 R /Im43 50 0 R /Im40 47 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im82 89 0 R /Im35 42 0 R /Im36 43 0 R /Im43 50 0 R /Im76 83 0 R /Im35 42 0 R /Im38 45 0 R /Im36 43 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im52 59 0 R /Im42 49 0 R /Im70 77 0 R /Im50 57 0 R /Im42 49 0 R /Im35 42 0 R /Im35 42 0 R /Im47 54 0 R /Im36 43 0 R /Im43 50 0 R /Im52 59 0 R /Im36 43 0 R /Im35 42 0 R /Im37 44 0 R /Im38 45 0 R /Im39 46 0 R /Im40 47 0 R /Im37 44 0 R /Im82 89 0 R /Im52 59 0 R /Im45 52 0 R /Im43 50 0 R /Im362 387 0 R /Im339 360 0 R /Im473 512 0 R /Im52 59 0 R /Im71 78 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im42 49 0 R /Im52 59 0 R /Im47 54 0 R /Im35 42 0 R /Im36 43 0 R /Im421 454 0 R /Im37 44 0 R /Im36 43 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im38 45 0 R /Im35 42 0 R /Im36 43 0 R /Im45 52 0 R /Im70 77 0 R /Im43 50 0 R /Im36 43 0 R /Im52 59 0 R /Im71 78 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im43 50 0 R /Im44 51 0 R /Im72 79 0 R /Im35 42 0 R /Im75 82 0 R /Im40 47 0 R /Im37 44 0 R /Im42 49 0 R /Im47 54 0 R /Im44 51 0 R /Im39 46 0 R /Im37 44 0 R /Im48 55 0 R /Im43 50 0 R /Im52 59 0 R /Im45 52 0 R /Im38 45 0 R /Im42 49 0 R /Im37 44 0 R /Im72 79 0 R /Im35 42 0 R /Im42 49 0 R /Im43 50 0 R /Im36 43 0 R /Im44 51 0 R /Im42 49 0 R /Im47 54 0 R /Im44 51 0 R /Im39 46 0 R /Im37 44 0 R /Im43 50 0 R /Im35 42 0 R /Im78 85 0 R /Im52 59 0 R /Im48 55 0 R /Im48 55 0 R /Im52 59 0 R /Im42 49 0 R /Im35 42 0 R /Im42 49 0 R /Im43 50 0 R /Im43 50 0 R /Im44 51 0 R /Im72 79 0 R /Im35 42 0 R /Im339 360 0 R /Im77 84 0 R /Im37 44 0 R /Im72 79 0 R /Im35 42 0 R /Im289 308 0 R /Im42 49 0 R /Im52 59 0 R /Im47 54 0 R /Im35 42 0 R /Im36 43 0 R /Im52 59 0 R /Im48 55 0 R /Im48 55 0 R /Im52 59 0 R /Im42 49 0 R /Im35 42 0 R /Im42 49 0 R /Im43 50 0 R /Im38 45 0 R /Im35 42 0 R /Im36 43 0 R /Im45 52 0 R /Im70 77 0 R /Im43 50 0 R /Im36 43 0 R /Im73 80 0 R /Im44 51 0 R /Im42 49 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im282 301 0 R /Im72 79 0 R /Im44 51 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im35 42 0 R /Im36 43 0 R /Im284 303 0 R /Im282 301 0 R /Im71 78 0 R /Im38 45 0 R /Im37 44 0 R /Im39 46 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im284 303 0 R /Im73 80 0 R /Im44 51 0 R /Im42 49 0 R /Im36 43 0 R /Im47 54 0 R /Im38 45 0 R /Im37 44 0 R /Im73 80 0 R /Im36 43 0 R /Im70 77 0 R /Im52 59 0 R /Im36 43 0 R /Im36 43 0 R /Im35 42 0 R /Im36 43 0 R /Im48 55 0 R /Im35 42 0 R /Im38 45 0 R /Im39 46 0 R /Im35 42 0 R /Im42 49 0 R /Im43 50 0 R /Im37 44 0 R /Im77 84 0 R /Im35 42 0 R /Im60 67 0 R /Im342 363 0 R /Im54 61 0 R /Im81 88 0 R /Im342 363 0 R /Im54 61 0 R /Im54 61 0 R /Im78 85 0 R /Im55 62 0 R /Im479 520 0 R /Im362 387 0 R /Im342 363 0 R /Im473 512 0 R /Im56 63 0 R /Im55 62 0 R /Im342 363 0 R /Im480 521 0 R /Im473 512 0 R /Im56 63 0 R /Im56 63 0 R /Im78 85 0 R /Im55 62 0 R /Im79 86 0 R /Im342 363 0 R /Im54 61 0 R /Im81 88 0 R /Im342 363 0 R /Im54 61 0 R /Im54 61 0 R /Im78 85 0 R /Im55 62 0 R /Im479 520 0 R /Im362 387 0 R /Im342 363 0 R /Im342 363 0 R /Im480 521 0 R /Im54 61 0 R /Im342 363 0 R /Im480 521 0 R /Im473 512 0 R /Im56 63 0 R /Im56 63 0 R /Im78 85 0 R /Im56 63 0 R /Im60 67 0 R /Im79 86 0 R /Im342 363 0 R /Im54 61 0 R /Im81 88 0 R /Im342 363 0 R /Im54 61 0 R /Im54 61 0 R /Im78 85 0 R /Im55 62 0 R /Im473 512 0 R /Im362 387 0 R /Im54 61 0 R /Im473 512 0 R /Im480 521 0 R /Im54 61 0 R /Im342 363 0 R /Im472 511 0 R /Im342 363 0 R /Im56 63 0 R /Im473 512 0 R /Im78 85 0 R /Im472 511 0 R /Im60 67 0 R /Im79 86 0 R /Im33 40 0 R /Im342 363 0 R /Im54 61 0 R /Im81 88 0 R /Im342 363 0 R /Im54 61 0 R /Im54 61 0 R /Im78 85 0 R /Im55 62 0 R /Im362 387 0 R /Im342 363 0 R /Im342 363 0 R /Im46 53 0 R /Im479 520 0 R /Im342 363 0 R /Im472 511 0 R /Im46 53 0 R /Im56 63 0 R /Im46 53 0 R /Im78 85 0 R /Im473 512 0 R /Im60 67 0 R /Im480 521 0 R /Im81 88 0 R /Im342 363 0 R /Im54 61 0 R /Im54 61 0 R /Im78 85 0 R /Im56 63 0 R /Im342 363 0 R /Im342 363 0 R /Im472 511 0 R /Im362 387 0 R /Im56 63 0 R /Im479 520 0 R /Im362 387 0 R /Im54 61 0 R /Im473 512 0 R /Im46 53 0 R /Im480 521 0 R /Im78 85 0 R /Im46 53 0 R /Im60 67 0 R /Im472 511 0 R /Im81 88 0 R /Im342 363 0 R /Im54 61 0 R /Im54 61 0 R /Im78 85 0 R /Im480 521 0 R /Im362 387 0 R /Im342 363 0 R /Im55 62 0 R /Im473 512 0 R /Im56 63 0 R /Im56 63 0 R /Im342 363 0 R /Im479 520 0 R /Im480 521 0 R /Im46 53 0 R /Im55 62 0 R /Im78 85 0 R /Im56 63 0 R /Im60 67 0 R /Im55 62 0 R /Im81 88 0 R /Im342 363 0 R /Im54 61 0 R /Im54 61 0 R /Im78 85 0 R /Im472 511 0 R /Im342 363 0 R /Im342 363 0 R /Im479 520 0 R /Im56 63 0 R /Im480 521 0 R /Im473 512 0 R /Im342 363 0 R /Im472 511 0 R /Im480 521 0 R /Im56 63 0 R /Im362 387 0 R /Im78 85 0 R /Im362 387 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im118 125 0 R /Im116 123 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im105 112 0 R /Im111 118 0 R /Im30 37 0 R /Im25 32 0 R /Im105 112 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im25 32 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im25 32 0 R /Im111 118 0 R /Im111 118 0 R /Im29 36 0 R /Im30 37 0 R /Im116 123 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im143 150 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im21 28 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im114 121 0 R /Im22 29 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im24 31 0 R /Im105 112 0 R /Im21 28 0 R /Im110 117 0 R /Im101 108 0 R /Im21 28 0 R /Im143 150 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im107 114 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im142 149 0 R /Im28 35 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im24 31 0 R /Im26 33 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im110 117 0 R /Im29 36 0 R /Im24 31 0 R /Im107 114 0 R /Im107 114 0 R /Im24 31 0 R /Im102 109 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im117 124 0 R /Im25 32 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im117 124 0 R /Im102 109 0 R /Im24 31 0 R /Im111 118 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im109 116 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im116 123 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im105 112 0 R /Im117 124 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im118 125 0 R /Im117 124 0 R /Im30 37 0 R /Im24 31 0 R /Im29 36 0 R /Im111 118 0 R /Im29 36 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im234 245 0 R /Im30 37 0 R /Im118 125 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im120 127 0 R /Im24 31 0 R /Im107 114 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im25 32 0 R /Im144 151 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im21 28 0 R /Im22 29 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im107 114 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im25 32 0 R /Im115 122 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im117 124 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im28 35 0 R /Im106 113 0 R /Im116 123 0 R /Im25 32 0 R /Im29 36 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im28 35 0 R /Im29 36 0 R /Im29 36 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im481 522 0 R /Im242 257 0 R /Im98 105 0 R /Im482 523 0 R /Im482 523 0 R /Im161 170 0 R /Im95 102 0 R /Im483 524 0 R /Im161 170 0 R /Im93 100 0 R /Im97 104 0 R /Im484 525 0 R /Im100 107 0 R /Im240 253 0 R /Im99 106 0 R /Im98 105 0 R /Im240 253 0 R /Im240 253 0 R /Im100 107 0 R /Im96 103 0 R /Im93 100 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im116 123 0 R /Im24 31 0 R /Im116 123 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im116 123 0 R /Im29 36 0 R /Im24 31 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im26 33 0 R /Im109 116 0 R /Im29 36 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im118 125 0 R /Im30 37 0 R /Im29 36 0 R /Im112 119 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im107 114 0 R /Im21 28 0 R /Im141 148 0 R /Im24 31 0 R /Im28 35 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im109 116 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im114 121 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im117 124 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im113 120 0 R /Im27 34 0 R /Im24 31 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im30 37 0 R /Im101 108 0 R /Im24 31 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im21 28 0 R /Im145 152 0 R /Im25 32 0 R /Im111 118 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im107 114 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im26 33 0 R /Im134 141 0 R /Im22 29 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im25 32 0 R /Im111 118 0 R /Im135 142 0 R /Im167 176 0 R /Im200 209 0 R /Im20 27 0 R /Im134 141 0 R /Im25 32 0 R /Im140 147 0 R /Im22 29 0 R /Im21 28 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im22 29 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im23 30 0 R /Im24 31 0 R /Im108 115 0 R /Im25 32 0 R /Im117 124 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im26 33 0 R /Im30 37 0 R /Im116 123 0 R /Im25 32 0 R /Im111 118 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im114 121 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im120 127 0 R /Im25 32 0 R /Im115 122 0 R /Im116 123 0 R /Im26 33 0 R /Im30 37 0 R /Im29 36 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im116 123 0 R /Im24 31 0 R /Im22 29 0 R /Im25 32 0 R /Im120 127 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im143 150 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im113 120 0 R /Im150 157 0 R /Im24 31 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im117 124 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im109 116 0 R /Im25 32 0 R /Im118 125 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im117 124 0 R /Im102 109 0 R /Im28 35 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im101 108 0 R /Im30 37 0 R /Im101 108 0 R /Im141 148 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im120 127 0 R /Im118 125 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im117 124 0 R /Im102 109 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im117 124 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im107 114 0 R /Im24 31 0 R /Im101 108 0 R /Im102 109 0 R /Im134 141 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im117 124 0 R /Im26 33 0 R /Im102 109 0 R /Im107 114 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im23 30 0 R /Im28 35 0 R /Im101 108 0 R /Im111 118 0 R /Im29 36 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im23 30 0 R /Im30 37 0 R /Im28 35 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im134 141 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im117 124 0 R /Im30 37 0 R /Im30 37 0 R /Im26 33 0 R /Im25 32 0 R /Im24 31 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im117 124 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im24 31 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im21 28 0 R /Im22 29 0 R /Im29 36 0 R /Im25 32 0 R /Im26 33 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im24 31 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im118 125 0 R /Im105 112 0 R /Im28 35 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im26 33 0 R /Im101 108 0 R /Im30 37 0 R /Im101 108 0 R /Im141 148 0 R /Im26 33 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im144 151 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im105 112 0 R /Im111 118 0 R /Im21 28 0 R /Im29 36 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im26 33 0 R /Im102 109 0 R /Im120 127 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im30 37 0 R /Im28 35 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im28 35 0 R /Im29 36 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im101 108 0 R /Im24 31 0 R /Im26 33 0 R /Im102 109 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im120 127 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im30 37 0 R /Im116 123 0 R /Im25 32 0 R /Im101 108 0 R /Im105 112 0 R /Im28 35 0 R /Im116 123 0 R /Im116 123 0 R /Im29 36 0 R /Im24 31 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im26 33 0 R /Im118 125 0 R /Im24 31 0 R /Im102 109 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im114 121 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im28 35 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im102 109 0 R /Im113 120 0 R /Im135 142 0 R /Im167 176 0 R /Im200 209 0 R /Im20 27 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im118 125 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im110 117 0 R /Im29 36 0 R /Im24 31 0 R /Im107 114 0 R /Im24 31 0 R /Im28 35 0 R /Im106 113 0 R /Im23 30 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im23 30 0 R /Im28 35 0 R /Im107 114 0 R /Im24 31 0 R /Im101 108 0 R /Im105 112 0 R /Im25 32 0 R /Im115 122 0 R /Im22 29 0 R /Im25 32 0 R /Im26 33 0 R /Im173 182 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im105 112 0 R /Im114 121 0 R /Im22 29 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im102 109 0 R /Im30 37 0 R /Im109 116 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im111 118 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im24 31 0 R /Im26 33 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im24 31 0 R /Im26 33 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im117 124 0 R /Im102 109 0 R /Im131 138 0 R /Im121 128 0 R /Im123 130 0 R /Im132 139 0 R /Im128 135 0 R /Im129 136 0 R /Im127 134 0 R /Im129 136 0 R /Im185 194 0 R /Im24 31 0 R /Im117 124 0 R /Im30 37 0 R /Im28 35 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im110 117 0 R /Im24 31 0 R /Im107 114 0 R /Im25 32 0 R /Im113 120 0 R /Im135 142 0 R /Im167 176 0 R /Im200 209 0 R /Im20 27 0 R /Im105 112 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im21 28 0 R /Im143 150 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im24 31 0 R /Im105 112 0 R /Im112 119 0 R /Im117 124 0 R /Im25 32 0 R /Im22 29 0 R /Im24 31 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im25 32 0 R /Im115 122 0 R /Im24 31 0 R /Im22 29 0 R /Im106 113 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im107 114 0 R /Im28 35 0 R /Im26 33 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im105 112 0 R /Im101 108 0 R /Im30 37 0 R /Im26 33 0 R /Im30 37 0 R /Im101 108 0 R /Im110 117 0 R /Im25 32 0 R /Im29 36 0 R /Im101 108 0 R /Im25 32 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im111 118 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im102 109 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im107 114 0 R /Im21 28 0 R /Im105 112 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im115 122 0 R /Im21 28 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im115 122 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im117 124 0 R /Im102 109 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im117 124 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im106 113 0 R /Im30 37 0 R /Im107 114 0 R /Im21 28 0 R /Im22 29 0 R /Im109 116 0 R /Im29 36 0 R /Im24 31 0 R /Im110 117 0 R /Im114 121 0 R /Im107 114 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im105 112 0 R /Im113 120 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im118 125 0 R /Im24 31 0 R /Im102 109 0 R /Im120 127 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im101 108 0 R /Im30 37 0 R /Im118 125 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im110 117 0 R /Im29 36 0 R /Im24 31 0 R /Im107 114 0 R /Im107 114 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im22 29 0 R /Im28 35 0 R /Im26 33 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im24 31 0 R /Im117 124 0 R /Im30 37 0 R /Im28 35 0 R /Im106 113 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im117 124 0 R /Im28 35 0 R /Im21 28 0 R /Im26 33 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im117 124 0 R /Im26 33 0 R /Im30 37 0 R /Im22 29 0 R /Im112 119 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im26 33 0 R /Im25 32 0 R /Im24 31 0 R /Im108 115 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im29 36 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im109 116 0 R /Im24 31 0 R /Im22 29 0 R /Im106 113 0 R /Im28 35 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im102 109 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im105 112 0 R /Im118 125 0 R /Im25 32 0 R /Im26 33 0 R /Im26 33 0 R /Im24 31 0 R /Im105 112 0 R /Im24 31 0 R /Im105 112 0 R /Im105 112 0 R /Im21 28 0 R /Im110 117 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im107 114 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im102 109 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im107 114 0 R /Im113 120 0 R /Im157 166 0 R /Im101 108 0 R /Im25 32 0 R /Im25 32 0 R /Im115 122 0 R /Im24 31 0 R /Im107 114 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im110 117 0 R /Im102 109 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im117 124 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im116 123 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im116 123 0 R /Im24 31 0 R /Im116 123 0 R /Im25 32 0 R /Im29 36 0 R /Im173 182 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im30 37 0 R /Im117 124 0 R /Im105 112 0 R /Im25 32 0 R /Im29 36 0 R /Im108 115 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im115 122 0 R /Im21 28 0 R /Im114 121 0 R /Im107 114 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im21 28 0 R /Im107 114 0 R /Im116 123 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im24 31 0 R /Im101 108 0 R /Im106 113 0 R /Im157 166 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im26 33 0 R /Im26 33 0 R /Im30 37 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im116 123 0 R /Im106 113 0 R /Im105 112 0 R /Im22 29 0 R /Im30 37 0 R /Im107 114 0 R /Im117 124 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im111 118 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im222 233 0 R /Im107 114 0 R /Im25 32 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im101 108 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im26 33 0 R /Im223 234 0 R /Im24 31 0 R /Im101 108 0 R /Im24 31 0 R /Im26 33 0 R /Im102 109 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 516 0 R +>> +endobj +516 0 obj +<< +/Length 1079 0 R +/Filter /FlateDecode +>> +stream +x¥}IÓí6Ý^¿â-»þDÈ^:Úá£;ºµ±«¤®²_ÍrTøßäEòr8çâ�\H¡«ø�9g"¿þðïßþúûöþúCúJÃðmøö§íß._!ûo)Í_ó4}ûíøñ¿ÿ1æôí_ÿüÿ6_Óeð5§eè¾üxÝ ÝÖ_.]àãº>£õþºÞù ®=¸óýÁÃ#8§ëá+_6¿¦åL.ů®¯¸¯Ï¼þ[Þ7H·_ùB·ÉeÃ4ß/0_ÖÇ/¿bz£pJ¶~¼¡ ~·õà +)õq¼ßaÌîËÝx»ÿýû¶>FpþaB÷_þÙá÷>¸QPÞþúþ}? ïçÛ÷ÃWÄßwÀ/ÜàÇîï]îï7r=pZèÏû7üø*þ¼$üÑûD÷ûÃÊóú"Ó¯³D¿îköWþ[EÿÿDøûtÿáÆÿ¯ÿãG$À2?w¾Rg¤CÆ�_éF�«Vñ)éÁ»*d7pu¾Âç®pWCw('éDDÛ &(ÄÒMIJ `£«+,bmp£#¾>`DLa*`NP"M9)¸,q+]¡p%yð½Ì¾o,Íqçä&c(MÝÏÿ!èü7ü1M"ä@^-©E¬ðþ'Ùã$Y~Ôä:ý$¨ÉoôCá&ô} ¯ð{Ù!Û÷þþ>°Äü&$ïð£ô7ýñõ³¨I üæ Z"Ø +s~dÉÆòÐBþâ ZBÿqñÏ,¡è3w·ýD¯Yâôüü|ÁúÞ,¢G b¿äOPùqµÄ^ü¡3 \àßTïï ! +4¼°8Ó[Öç v�d�@¬À£QR`R|äÊÅ�íqåbF®ð�[Ã1/è³�#®|(ç?opåc�ë\ù8íçïråMÖ뮼:¿ø¾ÿ5sîÊ»¤ûSúÉH?X¸É£óþ'ð7'¤Æÿ{(gL]üïæIú>3Àü�á/ðÞpÔwJpñþ½×ðOC9~éc½GüsFóPR¾OCYA_$}7ýù +òP~#Â_üÆü~ÉIð£ô ýÈOÄ¿L®¤>ýYîþøBßoàÿIÿÌ÷3Ô¿²ïgMÿRnpÒùçý½ìÏ0Ì/ûsÕãïõ^Z =ÓiÀó ª +{ ! x÷@èú¾_Oá5¤0j@¿?BøË @¨� È;þ)çA#`ÂàÌS,`BMç¾Â0H!0èþ$0Îrþ®BpIb@Æ@{¤SDX¿Ðèâ?BL!Å( PfÁDÙe/y0~céÐoÿñæÁQúËýù¯x?â³ PßïþMþU#(1w ÷Êi½n»Å°ïwE@Ì8×-H7:t~à°õðþÂczÉÇI_ß.eðý»ü~} À/;ÿ{G`²fìÉ0çõ²¹ð¬ô}öïÌ?@2R%R=?{$åMFpÃ+áôý{2{7î÷ÀÇÿÒï{íû,kÜáOÆ¢Xð"ÿ°â>FI~ÑïGU~xôò§$ó ¬oHæò«!'QÿûCù×ÉñüÙ#ùÃìWoOÀçûëØ Ê_ù |MðüÇ"_·ü<=²?ÖÂ?<2Kß§)N?4áò#ø'ü¼j¿ÿu¿é£ýLñ'Ë_åì?{®ðõÿG$?ÿOðü3ü§$á®ÏÃ3þËáþyõ'¡ßI³ßý²¦Ð<±_Â<<²_Ö'öK4úç)0PþËôèTýMâ.ø'ñ+?HþM!²¸ªþ&ñ0Hö;ÿÄgøÃþ·¿¨éö#¢ý-ÏäGó#ù&?ý¤9EÿÒoö5ûfXATH]ñCýµ¬ïñöó÷õ¢qØ¿ßcÿ9Óÿ§ó7Äo,ëôý;þiü)EtÿöøQ/ü,~Ù¿<Iðã4A¢?z~{®âÏÞo*øãÅX3º¿?ÛüïÑÿcûÝÛûÍÂÇÞohüÀ¡ûë%Þôw'ýzé_ööbªÊzêáO~ÀÝ3h:ùÇG'ÊJ"üHüë ??Çï ýÙòúÑñþâÍêäÿ5~¤À®·øyU~øg~ üó$Âį,±"îïi»7ÿç´ÞßSiÁ�RÄF �éâÀ9.õ|p¥ù,uÒà� dx&öL i(:Q"¤, {=ÿ¨qPµ©S`wJ=Ó©öL/þXþí¯"Áy{äYÅ?ö`ÃèïîÁRpð×=Ài`½!:dÁèXtÐ� �xä5D�¼&h ¨ôCîÛÐÑñþ"�®+å§~ÿQ»? %3�b¥Ü?A\Î@yÏ-¦/hÙúÚ3x:úÁÃ3pÊý;¢çoÀlúï¼^ÿYÖwÕàXÙéûZ +«u´¹_÷×Îëûñ£ýânðóe}±ÿÖLÂýû£^c5xøÓû[åþ<ã$øóÎð¯GÀ¦Ð¯®ÿu8_®¡tö¾è±6ùSî?GéþÔü#ø{³ªðgít²ý·Fþ¡¼ýóv:yߣv:ûßõç«%ØÁÉ÷ï+ +¸l½¶Á½)Y.1üç×ãðvaõ2"ÂA �§$ ¢eD ±°Ä¸1ÝYqW0U¨a*$Hè&DwüÝ« ,èÍ:v=nÎDH¼(BHaz 3üÅ®"5£$à½hBóû$ ¤' þk¨Â + GûèU øYN~Õ*¨ +å!$(ÿú-øK%ïDa¢°¥SJ6ÅpÜ#rodSàXìY8RmdSE !M�æ1¤lVñ-±Â@4cHlÈ=¨Ó]Ù<ú¾¬¡ â½V<Àôj¶!-é¯!GÅ?áèû-Y<�¥1¼äDþ%ðK0ÒÅ|è^Fò¯%úÐþX²~1º²L/ë{²µô<oÁÄ"?\hÌB°>8I:?Ïq�~zKþz²³*ÂÓzÔÓ¿Ë}_kücEÿ²Fôü³v~ +s`ªðg-CÂôïþbÖÇæü}ÝsÑCÆK÷gúÓ{¤?I�Àªåµ$Fß¿Ûϼ¥°Jÿ÷$õßkÌ9ãõýn0 bÙÀå=î@ëøÆ·ilew)¤ª²0AdX Ë È>Ï +(L^b^¥H3¢ +ªäÁ4³@I£FQ ^À§<´uòX{b¾ÏïäÁ[Á �44£=Ø@]>ìnÃôpÝ#¨«'ÅG:,@Ò@@Ú`r%kÈÈÑ+YÃ4H6,aQûOÀ"ÚPº�VÙ)À£%âuÒÿè¤ÿlD¯Ù�ÔôPÜ|HÚKÕ*1ÏðoAhüO{ÑÆ`Ôàúº ºVi6(ñ¡Gø}YÆQóÁx~_®ÄX~Êy1k>í³ËÏðñ¥ÚIf}>¤ÅÐNëò�,åüýö^¼ËúG½xOë;zñÎßÑ÷ôý^¼çï·÷âܿڷJ?Xî½xÏçc{'óùõN43¿.Ü�þ:Aðûz'«$:ÃOï1Lýò^¼^Ä?¡$~«lÎü#W"[Ö8ÕbÀ$Zøg>?bóõ´ÇðxþÏÖõ]1Ø}¿Aþ`íûµ<¬ó÷¯ôçÝò÷ÿöÇ-f·@wýñ}ÿ±Üa¯ßï?KÔ ¯à~¡/[¾¼À×7eóúz ¿ÀÆ +?Àh#`èïËA°VÔèSíJv7�ùú>y#¿ääW~ìä·þ"¿{ +Ù´üÑ«íþ£ðð~§@iÜOº¾þZ;9ßѧ¿ü¬ÿC +Ýéÿb}a.è[ûíè³±íÏú¨ïàÞÝ|z¤{,©W÷éôÒuOèû ùeL¯î ã(I»{뮾ØÝøúCñ>Sÿ§ØÒý ±;(}ZbwN?¹?^÷û³Öèðýûã =8hûȾKt³D¿¼NÖóØü¾~þò~X??ëâ£QÝÁö[~|?ÛÏ~m¿kÒi£G¿`oZ¿úôoå{;>7ÞøÉCÔx4ã-]Qåoâ?·Þìù6íëûoûæÖç[³ý"ø~ò/%ÌõàéÀXß\°Yu/ú+öÞþvKð`ü5Ñ_é¿ý;ü?=ðüù�Ö7)ãh/ð׿É!üÝ_>Fdè7ñ%þ£ÆsI_=_7ü$þe´6áèw3k7ú5w£ß·)|°~ý2íÌw>]_×»õÜ)þB©®¯Ö³&>xKÈù>Äz,Ù£½ì·Z¿ +ûQüþ¸õ9HðãÖ#Â^¾dÙó5öãÖ£vþªõY]Ïf äGê/@ñsýþZýüâþufÉÎýöÃ~û3Äý|Ýþó»7Ð×sÒ§Ç÷Úm÷òá¹ïPyɾ«åÎ× ?y7¤üè»eôà¶»)Oß×3~.e£Þ8é¾þk%ßïßʼ~µÖÝhÓ+gv»÷b¾úþ\¤ÎæL,ÿóís,?¾Ïa?~þȳ%cÑ¿úÞ¿«VIÂaöãÆg¸íÁ:zp#+mÈJÙmÿ,àûñ1ý1³_ðß ðÍáO¾' |µÑóõæ>¨ïÓܾ~ëc¾ÍÛÀgVÞ¾·ýw0ù0øpÂmpéeq±n1ù¬6ß#ò±¶]W�H9ÃÛqÚ¯pÀ<¼:~åºõ°8MÏ 0¡¬7H +7`£!³6z[ÃA¥¡×ôõ$"¬÷NZÏX8B¬³ð0¦Àø5BÁ£;~ +hQto´üø~ÐFd?Ðéë= +hÙàÃ3Ô}S@/°iüÎyÁ×Fá_Q@ðUÐzÚÐùûí +è´+ |¦s6ð½µÑAaðUÐû +¨N>l´* �Áù=*,h îLè�=èBDHmDdJg#¢·::h NèÀv TY_Õ@Ufߤïs¨à/\ Olë¡[üñ·ÓAÅù ÁìG;}½G-<Ò`"y¤Áº/½pM5½à_Öþ»:;h0ÿ«¯ªÁÎÔÓ®ÁÎßo×`§õ7ᳩ¦ |¦´6ð½ÕÙAaðU4ØûH1ÈIð¯zPï/(°ó +¬z«3Ðt«5f88@7&`ÓL ÎÚhèÍ +L¥¡;Pöa#$!@U Våa]Õ@U !?wª°¬¿ª0¼~Õn.´¬_ ¬U*pùñý *Ð~4©ÀÓé{Tàéø*0¸g*°û¦?^`Óm/ø÷ÿ®*é |\"üµ¨À¾? ¶ÝÞÖvû·:;h0|û;#¯Ã«c¿âÕ7¸" <=ñ¯ç b{ð,¨°ú **ìr¥îõ36Õ´Ñ)Þêì ÁT:i°3U·¹æ$VX'îAÀø/ +`{z/λׯìGÓójÏW.ÏòãûAý]{ùúGÓ+1ëNÅQðvº~âÀ âxÁ¯èüv-rPMðË~¾Óéúzä`U<Û¿/¤<ðO³þM¥là3e³ïHMTì©i3ý*å"oÍc4v¹<?U1PÑ<yoÍ#Þ ý«Ðp5øw¹ +þm4dÊf£¡·:hLCDszÅóýuÕ¿ûN5XU=Ufªo.PÕ C®ia<håÇ÷:9hûñ³ÀÞ<¿åë9°ªAaòH®ß£AN7ä¿¢4^ðÛÕÉA`øU4Èǯdø<x¹};ãHÏ®E |?nØàgZcß[T_E ô¢¿ ÷ðÛ ÚÎ_/e½W×W\n¹@@nº¶kÏ4¸©Lil$ôV' I¨¢AN�èÐ +ª**W*PS qNçøV ëïmrP ö£ÅY¿þ z5ýçÚÜÏúã|ûýq¹�Ð|/QÀ·+þh_àkÖçëë_ó@Îßo½Rÿª^ð+*ã¿·29è¿Ïú£ý¦?®�xS w6xQ@ÇóÍõBáÀY0üü賩À` /"*JãEDourÐ >G¿ê(Ä6% \�x÷áj*¤ÎÅì�v{éRÚPb³ãx|@B]'¯µ#¯zëZu^ï¡öÍZg¿ÚF®¼ÓÏÝ�ªîÕ+¯¾Sº`+ ǯ4½{gàAý�@é{&@ ×pï]Q#Xï¨_ÂülØÚn8l ¯o7(C/7�Bó¨Ñ�ß`V7À8ðei aØëy@ }&"BÖÁFå.¸ñò«ÙG´àZTNà Í +è3 +ÊG1i8 (ðêÀT¼!©øªMËÂ¡Ú Øz yûk�ÁE!¨eÂÈXW%%¢iz$̸çI¥B,K×YbOdid" ´FØí¢ð%HöAd!¦B+G®³ÅÖ̧&)KNE·Ebå{-Ueipí¤Ý©JAõ8>cà +Ñ ØzM0eÔH 2dãû'$ +A@� +²;PnUÞÇú¾þÏÚ{ºKBw£ât@Ú°KCþË×Ô,ÎFÑ!Y|g#æÚXaq͵al=²j[¹;E$D¥ÁXÙX.Á"Ád¼ÎåÈÂ0B2ÝÃà î½¶M§Ck ç@¢¹ABuà ÒS¨²Þ�ZU÷øý¸þ<`}å<¼ <÷®LX©é³YIÜC³ÌÏëu÷0 |Zß`Ò¸ev9¬PÝÀ$ 7gí4ÈaT¦²¢ MÏPP: (í°õYC töÔÊÈFtc> +"'gp� HØ ü0J7`êÈgp>�jFÜKØ@k7 ¨sæ½Aê`ûI£b%PÙ<Ë t9 äeNU-=ß@¶KMïÈ.%g°Þ »Õ;Æ¡ÈrÙôK!ÈY:�¥â ¢*²* ç áyø~ A>q@A"+àªYcqH¼+gÍ QÇÇ;éõv sAÃ#"é"qx&JCÔD)¥¡¨)ôýWÓ5¤L<`"#ÉÏ$ñÚ³ø$¶éuI 7V5hèr/@0(L Ó0hYO6Ñ 6Æ7X[¯iÍõ�eäÒ0ï(x·îr$F6çÔa{B~²ªçÉbqÔuP uî¬ýY¯(öêSãc +±¶^ôlèIÔ<D¢9<ÂÜkC&cÞìßÇD¡.Þ |ú|ÆÈ.uìc{\¿O$ ¹ÁÁú÷mê_§7»INë" 6?hÅA£>+ (CÀ¯'ñÇô~A"0ê°BÝCgÊW{Å Q¦á@¸²Z�4dQÀïï¸$¯YU],6¼Æ<À5Ð J3QaEñ¦N«(`IAccúnYè,ÏUæL6OÚ xapH!GU�Á¹,Ĩ%Äa^I¶fQ<dÁò¹:Ù(¸$²ñ<RÇwd9Á#J9å\7{HCÌ¿G\¸``Ô)À(2÷ÍYÄÔ)J"{Mrÿ^ÓÆôyDù¦r4̪%A²´ blÍOÅX%ÀÐi¬é�<©sdÕçØ!1¢kè ,eûð}Ær¤%%¼M£&®ADTxå1bI,Ç÷�E p,bJ²ÙS0:iÄ®åM90jÛ%Í NÐ˺h/(lÈ{|á41 Ùlïxm.j÷ÓtQn³½Ïß×óù½úUÖß+-:Q2@Î�DÈ̤®^¤Àä"Ïë¥ Q¯üy¿@ ¶éÞALHp�ØÍyÈ ¨»ÖCÐ H3é+<DÂ�`b<à 4ýÂɳÅ.¥H +é$°f?<"(�ÐíçÈ:?B&Ô8Âïë%.¤½� !ù!?¤áD1´6&yÍímÌ¢J¥ì9 bßMg%¢85"ë³ë�¹Ðɯ5a@ÆÖ$óipÂ!k�'HtÇC*3ÃCÐ)Ä!hÖ�/?"6ÖßZl\óUè�¡2ÍBÒìYúr=+åÑY}âbñÉrCeqõ¢ÀB¬5ÐøØtAC=õZ¤aD¬'Ñ� H´ä>8dkÓ!6Qµ&XîDRͺ`·.ôiÅ ÐàGhÑ{[¤1B·N/Q³ééDÉ¡8bFH¹×¤µÔ (äaclµ!oT åÍÜTáy½þfnѱÁ7 Åõ,²ÐùõîFxú~KÿT¬±ÓZcÄÜÛO\�¬9È3"!9so_qF¡ìºÒ¹F<²á¥óó´¬a8�ý¹w@lxîA& ÷@WæÍZ©¢U$õ$6$yÞGzHqxFÑ?£(Ê1öPãA:Ý7¸?Ô·2Çi+ýàÖÚï÷ ⽡Üxä;m-êÜ6ð÷¤þ»_ûN±âµÓyùF kç½xÝ`;Aö §Û øÓvH¥¶Aoav¾KB ¹`÷ Þ'A¨ÿÚÑ*QX,£ñpð`o`pª7@h\o°&Ýa8\oð¢£5Î +Èàfη¼yeEC 1!ûmàÀÌ׳Â1¬rêÆJ×RòAr7yÎ8iS*D/Gít ál@q0îÒÈN02 [¡â9IT4Òtx³\/ WkZg¸ëÍáÖ úÒYK +ÐùzÍ:Ã]ÖËÖõÕsCáår +Kv�ßÙ-;p%¼ ÎEy¶¼@0m~AGçæð�fZ�øÜ®÷Þiä5Û × S?hLÈ_=£ÈDìÕ3Kà�w¹Zæàüß&úWWBA â +H +éÉ+Vñ}½^04À|J`=|."¾M©9o G íѲ»±VÍ�N¹jßÝ5ð¦tã3UJ¡¦Êkßu=DMKaHUÓxDÄzÛ+ø®r!ó¬Rð½øéÎoyÙã»Pl(ØH²'·ù5×óÜFÙdè�-H4V·JZ·.Sx¤Ë-£»nõØÓç,a?9BA®7Å{!ò^ä¼BúâåTúó£g1 +cºÒkÆðеzu9Hä 4SÚòl="èÝ[â8ª)Kç$ ç'¤bô1CÐçza±Ì?6Ôãå�oÒõâT&\Ö74Ô+$pZß\^M× zÈòÉÏÐÈ^MÏßoxqråÝýº^ë]Êë($7È£zòð>9DzFúô¦40?¤Y¦M[:m_! ¼Ý¿Î rSÆ=6ÓÌÆA$ÐÔó(hh¾â± Ó+:@C/µRS¥ßm¡·ä=%<,%<k4ÀÍÝ3X¸ -#Ûi÷ü×r½´\¸@ºÇíéúTc8ܨpÚÂ#oF>îè-ýôâ3"Z{þ?AÁ^©¡zvQ±®LB©¸Ý¨ vc+-÷Ã"+ÝkX¹84Hôbç$$ä�Ø"Ò[&@¨¡eBÖ6,idï7G iÁ0ÚS©.#`ϰTèUúUÃôÛSz«v'ZÔ³uª9BÓR¡WÃ$8ã!�uÏü ź<ó¤hgÇG<¸Ç6*D£S#´¦ôó½ÔÒ¹ã3§*&äÔ4D§ nN©niÔ}ñzTê¾nðù¤]éu^û¶°îpg"<N�woßJBw|=´,6Ñá¡åÞpתg�q e,ôe}C>v�À×ÏÒz^©î%R +ü�¥ò¦É×Fý[êÕ²Á{ªèÂ× ÆÛhä?`ö/LnL&C¿6ÁkªÛe T'¸Op}T"f¥ÒNBbþÐnÄgÞøj³ôj\Dó^¤bYí~y+~ùE·ûåg6ÐËÓlßêöÅVæ@Øõ%UB @\¯ Z%ADÌ<\\|À4�иån]HPÐ�u±¡]Ô+ªÔ!N�� ]W¬¡AxH4Dx÷¤ * +YTàÛ£51F!0!6ØÖE®~B3²'[h`¤qbTop> ÐGFçT=ÀÜògr4zQÒ'sK:¸¡^§4§°bc6ÆÏ¸(÷EwǼã(²q5é *>÷k }4ä¨YSÕ¤ï>'Ð÷ZóÌ«¤'º¶×sÖ·4h7Ï~q*DȦèä§å]ÉO{AÇz5Aé¿t>æ{äw£ ( °LèÞdÀ(mSª4@+RL/J©k\ßWø,YÖ4Ð0mÃÆøÕpÀáMÐFvu" n©gjQöñ¼QCkºæ=Lw"º7ªygA 7óezÖ÷&`µ9U6 e-_9ÞMq"±¼ $Êî¢WT"&DEq$Ûã3½ÚÌ[6vkð. ЧuL³Dļ*%#"ÖI×Vx±´$òáÝЯ &h¯@IØ_ßo¯Ô)í1D1Ä,èzyãvq^¯èF&YÓ6$MB4�ð´ Ù"cð<¢»sÌÆ +OÆ +6²jÖ³Vv"óVvñ2ÙëJzId×D(&^¯,öâÔ)ש]dñ;Ñ)÷M§,!K�ämþ_ÒÔæ_S4õ`DD¬·öÝ#4u×´²ÃÞ±,GÖÜN9bÉQõ+Ȱ<mp6ëA"èïAë ÖÒÃËñ(«ý¾A_eÈK×wôÜX7è1J-Ds¹Þ0"Áïë3ôÒS�d �¼eG0HC4¥ØüüýÂÒXör�¹ÈÒez^¯ÉºòÜq½ÜÛ×Zn\P¨÷öõŬ¿ P÷-.¢÷Ì4¤ÀGí�Ô¹õPå[ý×åëw6ì²g¬]MЦ£D$ØåÉ=¼AB|Ô0m¡¼Xôªc¯$,M3D>mal¨pÒHg�ØR^UºfTÑý鸸×CØÙ°y>ø+@áD°Â¤zV¥\¼WY£[?i÷úG hè9Gê0D¬LuXh49ûBÅaD +¹¡0"!¤¡kDE°Ë3ATAÈs`hHâQ/æÅøNa¸5Î@VyKãdÐÀàî3kÊOºÔÝgh&UCm +2©ZjS²j÷þ ûjSz-2@.Ö{ýI³h'jº7Þ1@ZзÖ[¢kÉCT·d!%DB \&,UsNr,.»ÛYoI0ëë®(+}²ÏèSy]ypXÛ®¤è=@2}YAÝó4èÙ|ÃR½�=H* ]UË0Î +õbe7!(~uÎ(ìrDCz^º5®¸\@6IýD`ñ H°%Ãe ¬+©ÓP@}KT¹ Ém°| VC! Ò Ð³-äz�¹Ôr-ÐÐû²&Dz©¨5Þ¨a°^©¿^©ab�ô4®IÃT +LHµLý(È®èL8kLHÝ¢ 1x¤×¾hÀúnôÒÀé¤àÇgÀ2PªúÆ¥ÐÕ Ócl_Yì16>Qå#ºAK[QLÅ ³9Ò2ѽU*d³j7úب%Êho^Se¬-$7,ÿ1þlh}A`>Zl$>b%Ã1¼¯aû%ôÎh7i:=mÝ3ФÌÚw´@³VN³ö]¢àÕZÑ1²ÊeQ×úOøìkô¹ÿĺAOb³+%ç´ôàû Þ©½;æÊ$1À[ +çÏãðj1¯¤¹õP/@Z{Z´<÷ ³ +á,ÁJõç¡#½4¸;ø¤p£zæßÏxO`¨Ò�qb¤Õ0Þ\¨ÑDAdúÑË 6õ£hElöÀ"*-D9Åú20¦,²ÁÁø¸!DP +,:¸ <ÿ*úI²ú¿¯×'¾U. éù®¼d×÷^°;¸*u âc; 9¡("¤A!¤?>³Ö ¦á ¦øH ÌA_ î}DMBÖOè÷õ¼%Ôzò¬Ú�æôHí©5EDmÊÄ+t)@]{(¸!>c Uä#/.oÈ]Èlh-+½SÆ(*B^Û¨áå|Ô·¿@LØòrDMÈCöºµy/m)êZiÃ"Ðû*^Õçõ-¯®±àð´AC^zy±®ÿÈÇ|hèªÜºO\ (L;w¸|_LXøü}½1fiqù~Ã0Óù?P£ >ñ°aâ (°X¸P`ÃÄ ØPà´ö®î'@NW´Æ~?Áa glæâBÝöfÐWõÈye&yçbN,*¥åf$mÞºÁIr·E6`/ïPê#qÄìùÒc¹Fôü¢£Sä(_õÞúc%üÑÒ)bGªãqt²DA ùKk[ÜGÆí5f¬qCÕáe 5Eýê ¥-ã [#û³{>7^¨*cxf hN5äÔ¯e[5 ¾ú +þlQÐPÖàU{Å6&¨_;xQú°¹iCíü÷6áÖ5bÞÅбuÜ¥;zí�|(T Ó@EúÕaRU Î4U9V MT RBC#´t5 (LtZÁ}WöJ9�lH9(SªE gº£(!N ">Óïô´´y 4äXlä|�ù¹Õfn ?·ºqëõÙàkÎ�ºAv!G ¼¨Á!èC/¦"/4¨M +òVæI «jðhhO¨Òqkĺ[ì £ó|ÐÐg|Ϩb� D�,ea�$ز5<S¬ å�¼§fB�5õÄ\#4Td0PÆOUywÕDEBB+¢PQü}%Xʹ[{QC(f/Bå|¤g(Üs>*(¤néºÅè+gPKI@~t @CÒG~Ùc1wödôè =½^Ô�AÐ05ªºô°Zé3õ 6·¤nù!%h0i&%ánÐU@H7°ö7uÔ åú@ÕYcz4#²Á3ü3QhKzµY´ò®ÊxM@Þ³jãÛýiKIl¢ä5r DÔµ©× ±Ät�h'i9R7(XæÇ IR4¨On±æ9û&·$èÖè[2-Àâ¬ÏKüÉK¨giá züg%Ëú9¸VlDxþ~CæJ1jOë[ò¬$ä|}jÇ8õ-S;, sñðºÚ¯©'®Tì½iD xîÈøÓ áF¨ìÑö|�9º°¥T¸©2éºaÊü�=ïaÐ0@=;7�$K*+ñÓúë¹ð\âéÃ39´÷èC>jrúÆeâå²=µ×´T�Àã3 æTÖóøÎ¼ÑÊKI¿JñåÙI¥_ÉÄS³N&^7èLlÝÏ'hL<°AËdbkO|Ù@öjìͶl¨k/¹ùaaæ¢-.õ-Ù7 òäàzu©ÕÔ {F+ Q5&Xt¤øeË9ú<ó1)kp¨dÐ]:r¶Ûsü@-d'1!M_²Ü^]º¦®<±FöÔNk$Ì¢.¦Ã¨å×8h$DýZ¿/÷ÙßSOzͱ½fõ$¸Ñ!ß^iCIHDz ¥®)BZ}´G6ªRÕ´`{VÎ:X»]H$ÀgºªbÍtÕ�8âÕÄØg´ £Aß×¾É úæöMÚ(\ìcs¦ O'h24´ã4Eæ«=cX`¡Ø³þsßê×[yè�ú¼É«`E)DC4´c]Ü.4¤WÙ&«¢øÕ¦É.Ð;ùYh Ô-´ÖIgê¤aýüfWIÅh\ @&Ö;ôHy³çëb¤N£aBÓ U²n³zJMËù� #¢ çÝ(Ò@~HL,qJ½©îüLïyíºØ \ Å/w¢àãL£¤Ëø´Iâ"úàì¡.ÖÛqúü ÖÈÆ& +¢¡©3±ÔwÍ¡~)£Cʸ¡_ + ±%±üX¸§}Tí16ëCµfÈý¡Óí0+<D#+³$¤7¢Éáý>Ægr0Bs®¡?|Äö<Ü}L�kâ>ܽZScli.@óNBÚû3EÀâVNwf}g1ñØä"½*c-UAYÓ$|ÒR °h%kçZÖéVauíεáj-WX»Ö7¤Ãï5-®Ö¼ êûúÏÖ~-ÜÛ ,fYeøô$RÏÞjZ\µÛ kð¤¡@ïÄ9%D\gN«41¤á¡9#.:öà«4â<!å(ï>Ë´BÞÊsØ "ËYx#J ¤á?#>ÔûeXÕ¹¾¶Ò{x¢Ê¬hBD¨w öã £pô +ù6FU"NQ¬eÇð3â"Ôµ2E1ke´aC+S+¬�µU +°YYR¼)¤ ~ÝiK+S¨I]XpÄUº�2{b¥Z³'ÂF²ÀµþeÖO7eöÚ`¹Ê|Û�É»c±m°HR´°ëïTðÚ`üÊw2kµm°RtÉ$ymïèAÖ+wc�:` -A;ÁË; n!éDv&¤Io BSZ`Ù<T¤P[z²NHè¥Â{¤*XöGÖ¤!/{Å©¥LHê²ëÕ'Å¿µi! u ßÇvÖû8Ó^ÃzÏߨ@årFµ çr®1XDQW.çÚùÃ@ØË¹G9ÎD4ȹ1;¸ªT÷ÃPéÞB++,È0|n¾Â{:°¾a8·us¥mªiµC_&g5ç_C¼R᫲£X¦gD=âCÿê4à;æý}9,V¨9ôµ¤ÜÛVPÀK3B`!Àj;8âØúI»b£W +G|è@¬L«ðP!0)xó,1ØP>° e` ú~ëˤh¤±±OthïQ½�Y5AÈöÁ ||ª®¶¾¨aEIÖÖ�zdwò«( £$Á L¤GI<´&t�úYäÁ0iä/ÓÓÚCL�èóùAUBRDj7ï^±) 'UÎN#a>L`C[UÀh͵#¡Ñó¸fÑ©áâ xmBÞ·"4ÈJ;k(R¬¡Þ=<®µè¹¯éBPRÙÑ2é^ëKÑÐ7á1±kH ð ôvQ´Æè²x�ß±® sL`ÁÕ=<l J°® ç j+J¨u}g>¾/Pd,b.èlãxÞôe\7+|lfJ 4À3ÀaËÐ\¸AspA@"ËÀz°ß@°a$±f [hgk<1k4D_¿ËÃÝyyÁwbÀ ;;ù]uv2óqÃÄBÍ Ø\ë1ï(üèZó¾PËqf_f2WÅ�O` P"Îá:Ð[ã"\ftò$Fº·ÌH4DúoD xãðH7J`LJ"W ¨sï'´ACxÆÌòê o[b¤½L°DINûQ g쵨"k3Sz-ºµ8C4ÈË}yì©*sÄj¡ix$Glk¯±¦r¤pFVyË4ÐÊ}èà ôÜvçÀEí�Ô½wo¿¢3ù@³iùØðÌ$AÃLZè6¸K"½yÅí¹Q¸õtÉçÞuòsïºQMhpw+4X+ÐXë÷?hPײä5¯c9»2`Ö¾¶AOjù_È DÖ + ¹ÚE( +s¥ò¬ÙÓý +÷ ºÂß3Y¯0Ëå¬1f?˳a<ýÑQCúCi@qYß¡é<ÂÁ:nhléFÛ$Ûä«}qÙ®/ï×.§ËvùTÔØ+òÈñô±¬¡ áÑĦ¢Vù¨cÈûAQ*J $ʲJW:Þ!J7 8(sM«8 L"'S*FA%5q~Ák!ëQyT*ÏH;ö½ ïç +¹ FíÖF6µ¦x±qKoÈAãÂZB ¼7ä aöÇ]uöú\ï ¢¤M©fÍ®åÍ%±]*ÆÖ¡ÁZsIX¦Ëj-m¹È +\Ä"®e0éPþ"ëµ»$ø¾Æ±=$§ñDh5D(¢ìZ±ò,ÊQr"@~6 ! ¡F(&ÄÄzPÌå¡Ý¿¯cTßWKù\(ÆHª5Á`s3Ê»ãy}Ãܼ_ +ÜîJËô¥Ã 3ü¾>3!@&�(MÙj� ®y�äáÎýÎë cJ5´QÙcÐèÊÀúÉ)fÐ'_5³ô¤Ñ�ïN©â½à�zåµÿBeµo÷ÒêUnJW1¢çÅÛ³aEÕÚS +DDh ¢Àd8V1ª7$Ò3B}JòÚù*ÚÓª($¯ÿJâÙºÄzÑ<ôêBL 6jðA¼�yw²$x`1QÃÓ·y°Ós¼È4Ükº÷DÆHKoIÄ Ò=ù¡ªHHlk4{¢Ð\* + 'MQH²þ<´fÎñ¾Èj}ÍA=I6Iò½4-ÆT¥#ëÛ Ùü4cÒL êþG¡ �y7wBIÚ+G£×41u-¬"ºS¸§^t*¢5§DER¬Ác¯[në! êï1!N bc34ÒàZɱx°{s{eÇØÚLË+Xßó³ ÕÀ7HÚÔ±·ðÞXë(Ç&M0VûÏÈÅfÆJK9[â XâGÒ@A`Ú¸ÆÇ{påD¥2[èÐç^Ó¦DàK«é"°Ø +¤B¹Ï±7m<6÷²àÌÜ˸´ðÙ§">2« 8°,´*g'iaÀ¾_Ùè ( +Ì-èE½4t£ ôcëFÁ¤ÉÊ3Ò§ {qÇXmÈfoÄg|I,¾áqpXÜÈ¥B®é¾ªw½v|õ3[ɽ68ô3¥×ãôªFäsA£H¬¼BÃ°ßØÕÁ%$dµ¤NdhöYÖc¥W2@Q¢³Á¤¢fPÐ@e`UaLÜËú\Íá¡0ß«3*ÂWw j\àEçoYË|bA³Á(á'o «®%y#>S&Q´hqÃ(ºL!G{y¯)dJÅ ©34F kÏß>} ÅÎtÖò¼®Ì\Dh©î÷õ¯î¡Ò¦oX)ö5³Ú]ü*YgÊêF>¼yD~Éi(àµ!Å;ÕlÌÃİù#¡�²wµnRäí~ÈÏ@èBê\ùÝ@ÖÇÞ¢+àéFż}DÒø>Þ[YüܷȪ a)(HûÑ]±yZÞªÌÎD¨ÏÓò)?$Â$I/K2â2B×$Ê!¨MY!=å{þD' ,ÈiR¶)³)Ékû yoËI£A�áEQN<3Ebá$TA°Pg/$.¤(H7 Ðêmëæ�Ë pè�zó ¤Â,¢u;_'W>v;§Õ5f JgA>ßJR½ ȹHO¢°Á7Ü31`óA{Å@°¡¹¤CLØ4T4¨xm +DÜ*|MÑì)0Ð0MkOaè4èöæum0>s-cö%Ù6û#ÍHé Éö +U»O,¶ù³î¾³£ÙÚ}b#"ß×ÅÅbøÎfÎ\þs3¥j +ïë ·§0Ô!H,fÔûj_?2`Ô¬zÿ¹ ÐLA@uïá +yoÊA¢!^Xvöh¶¶ØÍ >>UãuV⾯ˬ÷c7mßðûòêc:C}LõÆg|F¸¬'\ɬ)\å¼¶#JPí{Qc<ÿ!ª5¾�,:¼ÑMó Ñ�on)+cÒnà� Méö¾eH=;TIËÛ¿CºLTï Ü#Õ,n¯Ï¸l k+×°ÚݲWìUMÀÂ"Òz(îxµa +9|ÅÍ8Ö'ø;W;OÔø°Úy¢z Áüìf¤L]gÙ¨½ åÔ7wÐ+Ñ}sT^¢½fÍ0Þû^\HXÇ`æLCp)àB/GÍä©Î¡6³jMPNÐÒT A¾øèFFÖ^éóÛ5'IXÿõ×?üø+÷Í}ûõÏ4]×ÛV¿þã×üÁ}ÅžƼüÍï¾ýÓÿøó·ïøíOúûOÿòíßþõWßþò·?ÿîÿþö§ß}û_ÿïÛ¿ýÇ/øþýÛoþé·¿ùço¿úúöøé?úÛ/ßþË·ßÿòË_þåÇÿñ|ýòû?üýëO?ýòão\N?ÿíþéÿüø¿¯ë¾~ÿË¿ÿó·_ÿïþÛ¯Óý°eÆ +endstream +endobj +517 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1080 0 R +/Name /Im476 +/Width 55 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³ÿ?ì±Rÿ7Èÿ¨o�RÌêã:Åð§LÕ@© +0eú¦ì>)9¬b¢<0¬>`§Ìj7Ú�´{ +endstream +endobj +518 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1081 0 R +/Name /Im477 +/Width 54 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMл Ä ÐE]EXºà*;5¹J¡B'öfv±ô$>ÃìªÚEÈp´ä*¹{7")/c_ð{}ÀNäÆIÀ[&Mv¥jä5Ë8Êc¡JôbIݸ<çn M?㦮ä ÂÁ×L0Ø c}©_yü +ªÿ#¹¿Ïùþþt¨ +endstream +endobj +519 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1082 0 R +/Name /Im478 +/Width 55 +/Height 60 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-1nÃ0`6BغÌ/Hì§ä .S6»<)-"ÿ@%röH7A¸Û3ÐÑmOþ'AHÁeéÀ'& +\q·äÂÇs+|3Üþ¸UØÓ-þ \REl8Q15ÌÔõ&³S3\Â¥F¾¤Ôð"rPJ7ZüͶ1A{±ÏR>5Dqw ÜÚåfWa é(AJ@Èw+éU\WúVüÍOì{gJ+ k âü¹Bñl]MÍÚ[<;tÕ©VÜBûñ( W\§À^Uµñ9οç37ZO +endstream +endobj +520 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1083 0 R +/Name /Im479 +/Width 31 +/Height 52 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]ϱ Ã0DÑ/°P-`]&HÅÖJÞ@£h*:áÊÅëGÒap:2ÜK--7¹kaÈØHs½9épxò§È^bÖí"}^jöÜ^.}ñ4¾Î6mÑCtßæmûé÷fqU±°¢/ç@Î?~~ûûkP +endstream +endobj +521 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1084 0 R +/Name /Im480 +/Width 31 +/Height 52 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]α C!ÐCà.¤HÇJx¥¿£0K +sü&ÒõJß°ä +ñÃG<#ö8å¶¶¿/Õ-ªL¬`YWOÍ[ì®Ñ\Ãp\¦¶®»zÃìŹ 9Yq¥Æe«9Ër<?çã,{QÅ +endstream +endobj +522 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1085 0 R +/Name /Im481 +/Width 47 +/Height 68 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x¥Ï± Â0Ð\¸ôxZº4 J<Å$Áe ++áÿû(FD¢á'¹¸ûò h6ºIÖ£c·Ñ VZh6g5M²5â!N´á&.ê@]|AB¦I ¬U°º+U3«êi(ÝhfÎ|8ߺÃA÷_ú?ô+¯ô/¯÷çåJ{Ý +endstream +endobj +523 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1086 0 R +/Name /Im482 +/Width 87 +/Height 45 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xíѱ Â0áR¤|#x6@d:æ @ÊKEɰ�#PxàÒ åãB +DDO÷ýÒuÉXH1ѹ#8¥W窥±h-x¨èyqÐÐñ[ØÂx\Y4ÊÊOf1LbüÆ(úoòõõKû ûÍé~x5ìg +endstream +endobj +524 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1087 0 R +/Name /Im483 +/Width 54 +/Height 64 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}ÏA +0 á,\æÍ-º©4=b¼O/ÞÄ#d :}3R((ñågfr¼ò:^îDÂ�Àê</¾Ç:�Îð ¦ô`f !7ÀîÅÀ¸ÌJy +©JB¬EÙ°- ++ó/Ø=àtûZO'ªQì@CV&S%RdH2ð Ë +Ef«{ëSoYÜzÚÕmÆ.t}L¯ÛÌ:ò +endstream +endobj +525 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1088 0 R +/Name /Im484 +/Width 75 +/Height 68 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÅÒ± 0P[)(=£¸I>Ó Ñ,eFHIøøNö?¤£¡«'#Ûèþd ºøQ; Zêf®_F¬M[SÈèJrD5 4=ä°*Ê+ª`ú¬]yów¯+ÍNÃIå¶¿ëþ?ûÅI8Ólâì-zn©ZÒ>µN¢$ek*¾uÖDyðõ¾ïû¸ð +endstream +endobj +526 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 580 0 R >> /XObject << /Im107 114 0 R /Im21 28 0 R /Im26 33 0 R /Im26 33 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im111 118 0 R /Im28 35 0 R /Im22 29 0 R /Im25 32 0 R /Im111 118 0 R /Im24 31 0 R /Im101 108 0 R /Im25 32 0 R /Im115 122 0 R /Im116 123 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im110 117 0 R /Im29 36 0 R /Im24 31 0 R /Im22 29 0 R /Im24 31 0 R /Im116 123 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im117 124 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im24 31 0 R /Im101 108 0 R /Im102 109 0 R /Im23 30 0 R /Im28 35 0 R /Im24 31 0 R /Im101 108 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im102 109 0 R /Im25 32 0 R /Im29 36 0 R /Im113 120 0 R /Im103 110 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im109 116 0 R /Im24 31 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im110 117 0 R /Im24 31 0 R /Im25 32 0 R /Im112 119 0 R /Im101 108 0 R /Im30 37 0 R /Im118 125 0 R /Im26 33 0 R /Im25 32 0 R /Im111 118 0 R /Im110 117 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im21 28 0 R /Im26 33 0 R /Im26 33 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im110 117 0 R /Im30 37 0 R /Im25 32 0 R /Im105 112 0 R /Im109 116 0 R /Im24 31 0 R /Im29 36 0 R /Im117 124 0 R /Im25 32 0 R /Im102 109 0 R /Im30 37 0 R /Im101 108 0 R /Im111 118 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im25 32 0 R /Im101 108 0 R /Im111 118 0 R /Im25 32 0 R /Im111 118 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im102 109 0 R /Im105 112 0 R /Im106 113 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im115 122 0 R /Im21 28 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im143 150 0 R /Im29 36 0 R /Im105 112 0 R /Im106 113 0 R /Im116 123 0 R /Im26 33 0 R /Im24 31 0 R /Im22 29 0 R /Im25 32 0 R /Im146 153 0 R /Im136 143 0 R /Im148 155 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im28 35 0 R /Im26 33 0 R /Im106 113 0 R /Im25 32 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im110 117 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im26 33 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im109 116 0 R /Im135 142 0 R /Im167 176 0 R /Im200 209 0 R /Im20 27 0 R /Im106 113 0 R /Im30 37 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im110 117 0 R /Im24 31 0 R /Im25 32 0 R /Im105 112 0 R /Im30 37 0 R /Im29 36 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im30 37 0 R /Im29 36 0 R /Im111 118 0 R /Im25 32 0 R /Im22 29 0 R /Im21 28 0 R /Im105 112 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im111 118 0 R /Im30 37 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im103 110 0 R /Im106 113 0 R /Im106 113 0 R /Im29 36 0 R /Im24 31 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im22 29 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im21 28 0 R /Im111 118 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im22 29 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im135 142 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im117 124 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im110 117 0 R /Im24 31 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im102 109 0 R /Im116 123 0 R /Im30 37 0 R /Im116 123 0 R /Im28 35 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im118 125 0 R /Im25 32 0 R /Im26 33 0 R /Im26 33 0 R /Im24 31 0 R /Im101 108 0 R /Im24 31 0 R /Im26 33 0 R /Im102 109 0 R /Im145 152 0 R /Im25 32 0 R /Im111 118 0 R /Im113 120 0 R /Im103 110 0 R /Im101 108 0 R /Im111 118 0 R /Im102 109 0 R /Im25 32 0 R /Im106 113 0 R /Im120 127 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im120 127 0 R /Im23 30 0 R /Im24 31 0 R /Im29 36 0 R /Im111 118 0 R /Im118 125 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im28 35 0 R /Im110 117 0 R /Im23 30 0 R /Im26 33 0 R /Im102 109 0 R /Im25 32 0 R /Im142 149 0 R /Im28 35 0 R /Im21 28 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im106 113 0 R /Im30 37 0 R /Im109 116 0 R /Im30 37 0 R /Im28 35 0 R /Im29 36 0 R /Im106 113 0 R /Im23 30 0 R /Im30 37 0 R /Im28 35 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im30 37 0 R /Im29 36 0 R /Im111 118 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im29 36 0 R /Im102 109 0 R /Im330 351 0 R /Im268 287 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im22 29 0 R /Im28 35 0 R /Im29 36 0 R /Im29 36 0 R /Im25 32 0 R /Im101 108 0 R /Im106 113 0 R /Im26 33 0 R /Im102 109 0 R /Im101 108 0 R /Im25 32 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im111 118 0 R /Im443 480 0 R /Im106 113 0 R /Im30 37 0 R /Im22 29 0 R /Im30 37 0 R /Im116 123 0 R /Im25 32 0 R /Im106 113 0 R /Im25 32 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im23 30 0 R /Im28 35 0 R /Im24 31 0 R /Im101 108 0 R /Im149 156 0 R /Im30 37 0 R /Im29 36 0 R /Im26 33 0 R /Im111 118 0 R /Im141 148 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im116 123 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im156 165 0 R /Im30 37 0 R /Im29 36 0 R /Im135 142 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im101 108 0 R /Im118 125 0 R /Im30 37 0 R /Im29 36 0 R /Im105 112 0 R /Im25 32 0 R /Im117 124 0 R /Im25 32 0 R /Im22 29 0 R /Im24 31 0 R /Im28 35 0 R /Im105 112 0 R /Im25 32 0 R /Im117 124 0 R /Im29 36 0 R /Im28 35 0 R /Im106 113 0 R /Im25 32 0 R /Im141 148 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im105 112 0 R /Im21 28 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im111 118 0 R /Im28 35 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im117 124 0 R /Im29 36 0 R /Im24 31 0 R /Im101 108 0 R /Im22 29 0 R /Im23 30 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im109 116 0 R /Im24 31 0 R /Im22 29 0 R /Im106 113 0 R /Im30 37 0 R /Im29 36 0 R /Im113 120 0 R /Im139 146 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im24 31 0 R /Im110 117 0 R /Im30 37 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im105 112 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im112 119 0 R /Im101 108 0 R /Im30 37 0 R /Im118 125 0 R /Im101 108 0 R /Im25 32 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im28 35 0 R /Im29 36 0 R /Im105 112 0 R /Im24 31 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im21 28 0 R /Im26 33 0 R /Im26 33 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im106 113 0 R /Im30 37 0 R /Im117 124 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im117 124 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im135 142 0 R /Im30 37 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im110 117 0 R /Im29 36 0 R /Im24 31 0 R /Im105 112 0 R /Im113 120 0 R /Im104 111 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im30 37 0 R /Im28 35 0 R /Im29 36 0 R /Im30 37 0 R /Im116 123 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im23 30 0 R /Im24 31 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im112 119 0 R /Im25 32 0 R /Im102 109 0 R /Im106 113 0 R /Im30 37 0 R /Im117 124 0 R /Im25 32 0 R /Im106 113 0 R /Im106 113 0 R /Im25 32 0 R /Im29 36 0 R /Im22 29 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im135 142 0 R /Im30 37 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im110 117 0 R /Im29 36 0 R /Im24 31 0 R /Im105 112 0 R /Im26 33 0 R /Im21 28 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im108 115 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im114 121 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im103 110 0 R /Im105 112 0 R /Im106 113 0 R /Im24 31 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im116 123 0 R /Im30 37 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im24 31 0 R /Im101 108 0 R /Im24 31 0 R /Im26 33 0 R /Im102 109 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im112 119 0 R /Im101 108 0 R /Im30 37 0 R /Im118 125 0 R /Im101 108 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im118 125 0 R /Im21 28 0 R /Im106 113 0 R /Im23 30 0 R /Im29 36 0 R /Im25 32 0 R /Im110 117 0 R /Im24 31 0 R /Im29 36 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im21 28 0 R /Im29 36 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im115 122 0 R /Im21 28 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im117 124 0 R /Im102 109 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im25 32 0 R /Im111 118 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im143 150 0 R /Im110 117 0 R /Im28 35 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im105 112 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im135 142 0 R /Im167 176 0 R /Im200 209 0 R /Im20 27 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im24 31 0 R /Im28 35 0 R /Im106 113 0 R /Im30 37 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im22 29 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im30 37 0 R /Im109 116 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im117 124 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im28 35 0 R /Im111 118 0 R /Im21 28 0 R /Im25 32 0 R /Im111 118 0 R /Im117 124 0 R /Im102 109 0 R /Im105 112 0 R /Im25 32 0 R /Im108 115 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im24 31 0 R /Im28 35 0 R /Im106 113 0 R /Im23 30 0 R /Im30 37 0 R /Im29 36 0 R /Im105 112 0 R /Im113 120 0 R /Im331 352 0 R /Im106 113 0 R /Im110 117 0 R /Im30 37 0 R /Im144 151 0 R /Im146 153 0 R /Im136 143 0 R /Im193 202 0 R /Im148 155 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im116 123 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im105 112 0 R /Im24 31 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im26 33 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im26 33 0 R /Im25 32 0 R /Im24 31 0 R /Im29 36 0 R /Im101 108 0 R /Im25 32 0 R /Im29 36 0 R /Im120 127 0 R /Im22 29 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im25 32 0 R /Im111 118 0 R /Im200 209 0 R /Im167 176 0 R /Im156 165 0 R /Im120 127 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im22 29 0 R /Im30 37 0 R /Im117 124 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im105 112 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im25 32 0 R /Im105 112 0 R /Im30 37 0 R /Im109 116 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im117 124 0 R /Im30 37 0 R /Im30 37 0 R /Im26 33 0 R /Im25 32 0 R /Im24 31 0 R /Im101 108 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im117 124 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im143 150 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im21 28 0 R /Im105 112 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im24 31 0 R /Im22 29 0 R /Im23 30 0 R /Im23 30 0 R /Im24 31 0 R /Im105 112 0 R /Im117 124 0 R /Im25 32 0 R /Im25 32 0 R /Im101 108 0 R /Im105 112 0 R /Im23 30 0 R /Im30 37 0 R /Im118 125 0 R /Im101 108 0 R /Im106 113 0 R /Im30 37 0 R /Im117 124 0 R /Im25 32 0 R /Im25 32 0 R /Im144 151 0 R /Im25 32 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im21 28 0 R /Im101 108 0 R /Im105 112 0 R /Im24 31 0 R /Im26 33 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im106 113 0 R /Im21 28 0 R /Im143 150 0 R /Im22 29 0 R /Im21 28 0 R /Im24 31 0 R /Im26 33 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im105 112 0 R /Im120 127 0 R /Im117 124 0 R /Im28 35 0 R /Im106 113 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im26 33 0 R /Im111 118 0 R /Im101 108 0 R /Im30 37 0 R /Im106 113 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im108 115 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im25 32 0 R /Im21 28 0 R /Im101 108 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im26 33 0 R /Im21 28 0 R /Im22 29 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im106 113 0 R /Im30 37 0 R /Im22 29 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im112 119 0 R /Im25 32 0 R /Im29 36 0 R /Im105 112 0 R /Im113 120 0 R /Im133 140 0 R /Im23 30 0 R /Im25 32 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im30 37 0 R /Im109 116 0 R /Im200 209 0 R /Im167 176 0 R /Im156 165 0 R /Im21 28 0 R /Im105 112 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im26 33 0 R /Im30 37 0 R /Im118 125 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im25 32 0 R /Im111 118 0 R /Im113 120 0 R /Im133 140 0 R /Im24 31 0 R /Im112 119 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im21 28 0 R /Im101 108 0 R /Im106 113 0 R /Im30 37 0 R /Im24 31 0 R /Im22 29 0 R /Im22 29 0 R /Im30 37 0 R /Im28 35 0 R /Im101 108 0 R /Im106 113 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im110 117 0 R /Im25 32 0 R /Im101 108 0 R /Im28 35 0 R /Im117 124 0 R /Im25 32 0 R /Im29 36 0 R /Im30 37 0 R /Im109 116 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im101 108 0 R /Im25 32 0 R /Im25 32 0 R /Im111 118 0 R /Im25 32 0 R /Im111 118 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im24 31 0 R /Im101 108 0 R /Im24 31 0 R /Im111 118 0 R /Im25 32 0 R /Im142 149 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im25 32 0 R /Im108 115 0 R /Im24 31 0 R /Im26 33 0 R /Im28 35 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im101 108 0 R /Im22 29 0 R /Im30 37 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im115 122 0 R /Im111 118 0 R /Im30 37 0 R /Im24 31 0 R /Im21 28 0 R /Im101 108 0 R /Im105 112 0 R /Im120 127 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im28 35 0 R /Im26 33 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im21 28 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im25 32 0 R /Im144 151 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im30 37 0 R /Im116 123 0 R /Im106 113 0 R /Im21 28 0 R /Im21 28 0 R /Im145 152 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im120 127 0 R /Im21 28 0 R /Im106 113 0 R /Im105 112 0 R /Im25 32 0 R /Im25 32 0 R /Im105 112 0 R /Im23 30 0 R /Im30 37 0 R /Im116 123 0 R /Im25 32 0 R /Im26 33 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im22 29 0 R /Im30 37 0 R /Im117 124 0 R /Im21 28 0 R /Im101 108 0 R /Im25 32 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im143 150 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im113 120 0 R /Im157 166 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im29 36 0 R /Im24 31 0 R /Im116 123 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im24 31 0 R /Im22 29 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im22 29 0 R /Im30 37 0 R /Im101 108 0 R /Im105 112 0 R /Im106 113 0 R /Im29 36 0 R /Im28 35 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im109 116 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im28 35 0 R /Im29 36 0 R /Im25 32 0 R /Im105 112 0 R /Im30 37 0 R /Im29 36 0 R /Im24 31 0 R /Im111 118 0 R /Im24 31 0 R /Im116 123 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im22 29 0 R /Im30 37 0 R /Im117 124 0 R /Im21 28 0 R /Im101 108 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im109 116 0 R /Im28 35 0 R /Im101 108 0 R /Im22 29 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im118 125 0 R /Im23 30 0 R /Im21 28 0 R /Im26 33 0 R /Im25 32 0 R /Im143 150 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im118 125 0 R /Im25 32 0 R /Im21 28 0 R /Im110 117 0 R /Im23 30 0 R /Im106 113 0 R /Im105 112 0 R /Im176 185 0 R /Im25 32 0 R /Im113 120 0 R /Im110 117 0 R /Im113 120 0 R /Im485 528 0 R /Im432 467 0 R /Im486 529 0 R /Im487 530 0 R /Im488 531 0 R /Im146 153 0 R /Im352 375 0 R /Im148 155 0 R /Im120 127 0 R /Im25 32 0 R /Im21 28 0 R /Im30 37 0 R /Im105 112 0 R /Im21 28 0 R /Im105 112 0 R /Im101 108 0 R /Im25 32 0 R /Im106 113 0 R /Im118 125 0 R /Im30 37 0 R /Im29 36 0 R /Im112 119 0 R /Im105 112 0 R /Im146 153 0 R /Im350 373 0 R /Im148 155 0 R /Im120 127 0 R /Im101 108 0 R /Im30 37 0 R /Im111 118 0 R /Im25 32 0 R /Im105 112 0 R /Im116 123 0 R /Im26 33 0 R /Im21 28 0 R /Im106 113 0 R /Im106 113 0 R /Im21 28 0 R /Im101 108 0 R /Im110 117 0 R /Im146 153 0 R /Im136 143 0 R /Im136 143 0 R /Im148 155 0 R /Im137 144 0 R /Im120 127 0 R /Im109 116 0 R /Im24 31 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im21 28 0 R /Im21 28 0 R /Im26 33 0 R /Im24 31 0 R /Im29 36 0 R /Im22 29 0 R /Im30 37 0 R /Im116 123 0 R /Im26 33 0 R /Im25 32 0 R /Im115 122 0 R /Im21 28 0 R /Im106 113 0 R /Im102 109 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im117 124 0 R /Im26 33 0 R /Im25 32 0 R /Im105 112 0 R /Im113 120 0 R /Im157 166 0 R /Im28 35 0 R /Im29 36 0 R /Im105 112 0 R /Im30 37 0 R /Im26 33 0 R /Im28 35 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im21 28 0 R /Im105 112 0 R /Im106 113 0 R /Im30 37 0 R /Im105 112 0 R /Im25 32 0 R /Im116 123 0 R /Im24 31 0 R /Im29 36 0 R /Im24 31 0 R /Im106 113 0 R /Im25 32 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im105 112 0 R /Im25 32 0 R /Im106 113 0 R /Im24 31 0 R /Im105 112 0 R /Im112 119 0 R /Im105 112 0 R /Im21 28 0 R /Im101 108 0 R /Im30 37 0 R /Im29 36 0 R /Im111 118 0 R /Im25 32 0 R /Im29 36 0 R /Im106 113 0 R /Im30 37 0 R /Im105 112 0 R /Im116 123 0 R /Im25 32 0 R /Im25 32 0 R /Im111 118 0 R /Im141 148 0 R /Im28 35 0 R /Im116 123 0 R /Im106 113 0 R /Im23 30 0 R /Im25 32 0 R /Im116 123 0 R /Im29 36 0 R /Im30 37 0 R /Im22 29 0 R /Im25 32 0 R /Im105 112 0 R /Im105 112 0 R /Im24 31 0 R /Im101 108 0 R /Im111 118 0 R /Im106 113 0 R /Im30 37 0 R /Im110 117 0 R /Im21 28 0 R /Im108 115 0 R /Im25 32 0 R /Im24 31 0 R /Im101 108 0 R /Im102 109 0 R /Im30 37 0 R /Im116 123 0 R /Im116 123 0 R /Im30 37 0 R /Im29 36 0 R /Im106 113 0 R /Im28 35 0 R /Im101 108 0 R /Im21 28 0 R /Im106 113 0 R /Im21 28 0 R /Im25 32 0 R /Im105 112 0 R /Im109 116 0 R /Im30 37 0 R /Im29 36 0 R /Im30 37 0 R /Im116 123 0 R /Im106 113 0 R /Im21 28 0 R /Im21 28 0 R /Im145 152 0 R /Im24 31 0 R /Im106 113 0 R /Im21 28 0 R /Im30 37 0 R /Im101 108 0 R /Im113 120 0 R /Im489 532 0 R /Im164 173 0 R /Im274 293 0 R /Im164 173 0 R /Im95 102 0 R /Im164 173 0 R /Im93 100 0 R /Im99 106 0 R /Im164 173 0 R /Im240 253 0 R /Im342 363 0 R /Im78 85 0 R /Im90 97 0 R /Im78 85 0 R /Im79 86 0 R /Im45 52 0 R /Im38 45 0 R /Im52 59 0 R /Im78 85 0 R /Im32 39 0 R /Im80 87 0 R /Im48 55 0 R /Im35 42 0 R /Im38 45 0 R /Im44 51 0 R /Im72 79 0 R /Im35 42 0 R /Im42 49 0 R /Im43 50 0 R /Im36 43 0 R /Im73 80 0 R /Im44 51 0 R /Im43 50 0 R /Im40 47 0 R /Im90 97 0 R /Im45 52 0 R /Im70 77 0 R /Im43 50 0 R /Im44 51 0 R /Im75 82 0 R /Im51 58 0 R /Im38 45 0 R /Im52 59 0 R /Im82 89 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im37 44 0 R /Im42 49 0 R /Im47 54 0 R /Im37 44 0 R /Im42 49 0 R /Im35 42 0 R /Im73 80 0 R /Im40 47 0 R /Im44 51 0 R /Im77 84 0 R /Im40 47 0 R /Im75 82 0 R /Im388 417 0 R /Im45 52 0 R /Im37 44 0 R /Im70 77 0 R /Im44 51 0 R /Im43 50 0 R /Im50 57 0 R /Im35 42 0 R /Im76 83 0 R /Im37 44 0 R /Im70 77 0 R /Im45 52 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im71 78 0 R /Im45 52 0 R /Im42 49 0 R /Im39 46 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im71 78 0 R /Im52 59 0 R /Im38 45 0 R /Im85 92 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im70 77 0 R /Im70 77 0 R /Im52 59 0 R /Im78 85 0 R /Im490 533 0 R /Im491 534 0 R /Im492 535 0 R /Im493 536 0 R /Im494 537 0 R /Im495 538 0 R /Im491 534 0 R /Im496 539 0 R /Im491 534 0 R /Im497 540 0 R /Im498 541 0 R /Im499 542 0 R /Im500 543 0 R /Im501 544 0 R /Im502 545 0 R /Im503 546 0 R /Im492 535 0 R /Im501 544 0 R /Im501 544 0 R /Im504 547 0 R /Im501 544 0 R /Im499 542 0 R /Im492 535 0 R /Im505 548 0 R /Im495 538 0 R /Im506 549 0 R /Im507 550 0 R /Im508 551 0 R /Im509 552 0 R /Im510 553 0 R /Im501 544 0 R /Im494 537 0 R /Im501 544 0 R /Im499 542 0 R /Im492 535 0 R /Im505 548 0 R /Im495 538 0 R /Im511 554 0 R /Im497 540 0 R /Im494 537 0 R /Im512 555 0 R /Im513 556 0 R /Im512 555 0 R /Im514 557 0 R /Im512 555 0 R /Im501 544 0 R /Im57 64 0 R /Im342 363 0 R /Im479 520 0 R /Im479 520 0 R /Im472 511 0 R /Im78 85 0 R /Im362 387 0 R /Im78 85 0 R /Im90 97 0 R /Im78 85 0 R /Im79 86 0 R /Im45 52 0 R /Im38 45 0 R /Im52 59 0 R /Im78 85 0 R /Im69 76 0 R /Im40 47 0 R /Im35 42 0 R /Im85 92 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im70 77 0 R /Im70 77 0 R /Im52 59 0 R /Im72 79 0 R /Im37 44 0 R /Im43 50 0 R /Im39 46 0 R /Im40 47 0 R /Im52 59 0 R /Im71 78 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im50 57 0 R /Im35 42 0 R /Im37 44 0 R /Im38 45 0 R /Im87 94 0 R /Im69 76 0 R /Im37 44 0 R /Im74 81 0 R /Im35 42 0 R /Im36 43 0 R /Im40 47 0 R /Im44 51 0 R /Im90 97 0 R /Im45 52 0 R /Im38 45 0 R /Im37 44 0 R /Im74 81 0 R /Im37 44 0 R /Im72 79 0 R /Im44 51 0 R /Im76 83 0 R /Im36 43 0 R /Im78 85 0 R /Im89 96 0 R /Im52 59 0 R /Im77 84 0 R /Im44 51 0 R /Im36 43 0 R /Im43 50 0 R /Im35 42 0 R /Im70 77 0 R /Im70 77 0 R /Im52 59 0 R /Im78 85 0 R /Im511 554 0 R /Im509 552 0 R /Im509 552 0 R /Im515 558 0 R /Im516 559 0 R /Im491 534 0 R /Im514 557 0 R /Im492 535 0 R /Im497 540 0 R /Im499 542 0 R /Im517 560 0 R /Im57 64 0 R /Im362 387 0 R /Im54 61 0 R /Im282 301 0 R /Im473 512 0 R /Im284 303 0 R /Im87 94 0 R /Im342 363 0 R /Im55 62 0 R /Im479 520 0 R /Im75 82 0 R /Im342 363 0 R /Im479 520 0 R /Im473 512 0 R /Im57 64 0 R /Im342 363 0 R /Im479 520 0 R /Im479 520 0 R /Im472 511 0 R /Im78 85 0 R /Im473 512 0 R /Im78 85 0 R /Im59 66 0 R /Im78 85 0 R /Im53 60 0 R /Im78 85 0 R /Im518 561 0 R /Im37 44 0 R /Im42 49 0 R /Im36 43 0 R /Im52 59 0 R /Im42 49 0 R /Im78 85 0 R /Im90 97 0 R /Im35 42 0 R /Im44 51 0 R /Im52 59 0 R /Im36 43 0 R /Im44 51 0 R /Im36 43 0 R /Im42 49 0 R /Im35 42 0 R /Im43 50 0 R /Im73 80 0 R /Im52 59 0 R /Im38 45 0 R /Im74 81 0 R /Im36 43 0 R /Im78 85 0 R /Im515 558 0 R /Im519 562 0 R /Im520 563 0 R /Im499 542 0 R /Im497 540 0 R /Im505 548 0 R /Im501 544 0 R /Im494 537 0 R /Im513 556 0 R /Im497 540 0 R /Im507 550 0 R /Im501 544 0 R /Im514 557 0 R /Im492 535 0 R /Im499 542 0 R /Im517 560 0 R /Im511 554 0 R /Im497 540 0 R /Im521 564 0 R /Im491 534 0 R /Im492 535 0 R /Im500 543 0 R /Im499 542 0 R /Im512 555 0 R /Im513 556 0 R /Im491 534 0 R /Im497 540 0 R /Im522 565 0 R /Im492 535 0 R /Im491 534 0 R /Im505 548 0 R /Im501 544 0 R /Im494 537 0 R /Im494 537 0 R /Im513 556 0 R /Im497 540 0 R /Im523 566 0 R /Im504 547 0 R /Im524 567 0 R /Im494 537 0 R /Im525 568 0 R /Im512 555 0 R /Im501 544 0 R /Im500 543 0 R /Im494 537 0 R /Im57 64 0 R /Im48 55 0 R /Im37 44 0 R /Im77 84 0 R /Im35 42 0 R /Im36 43 0 R /Im56 63 0 R /Im56 63 0 R /Im473 512 0 R /Im75 82 0 R /Im56 63 0 R /Im46 53 0 R /Im342 363 0 R /Im57 64 0 R /Im342 363 0 R /Im479 520 0 R /Im479 520 0 R /Im54 61 0 R /Im78 85 0 R /Im46 53 0 R /Im78 85 0 R /Im84 91 0 R /Im78 85 0 R /Im518 561 0 R /Im36 43 0 R /Im45 52 0 R /Im57 64 0 R /Im59 66 0 R /Im78 85 0 R /Im60 67 0 R /Im42 49 0 R /Im37 44 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im37 44 0 R /Im38 45 0 R /Im37 44 0 R /Im72 79 0 R /Im37 44 0 R /Im42 49 0 R /Im57 64 0 R /Im90 97 0 R /Im78 85 0 R /Im59 66 0 R /Im78 85 0 R /Im33 40 0 R /Im37 44 0 R /Im72 79 0 R /Im48 55 0 R /Im82 89 0 R /Im35 42 0 R /Im70 77 0 R /Im70 77 0 R /Im57 64 0 R /Im37 44 0 R /Im42 49 0 R /Im47 54 0 R /Im60 67 0 R /Im78 85 0 R /Im31 38 0 R /Im52 59 0 R /Im73 80 0 R /Im37 44 0 R /Im43 50 0 R /Im220 229 0 R /Im50 57 0 R /Im74 81 0 R /Im78 85 0 R /Im360 385 0 R /Im35 42 0 R /Im35 42 0 R /Im48 55 0 R /Im69 76 0 R /Im40 47 0 R /Im52 59 0 R /Im45 52 0 R /Im77 84 0 R /Im40 47 0 R /Im43 50 0 R /Im78 85 0 R /Im41 48 0 R /Im42 49 0 R /Im69 76 0 R /Im78 85 0 R /Im60 67 0 R /Im78 85 0 R /Im90 97 0 R /Im37 44 0 R /Im38 45 0 R /Im36 43 0 R /Im70 77 0 R /Im37 44 0 R /Im42 49 0 R /Im47 54 0 R /Im37 44 0 R /Im42 49 0 R /Im47 54 0 R /Im53 60 0 R /Im78 85 0 R /Im59 66 0 R /Im39 46 0 R /Im40 47 0 R /Im37 44 0 R /Im35 42 0 R /Im526 569 0 R /Im35 42 0 R /Im38 45 0 R /Im57 64 0 R /Im35 42 0 R /Im47 54 0 R /Im44 51 0 R /Im43 50 0 R /Im52 59 0 R /Im38 45 0 R /Im36 43 0 R /Im57 64 0 R /Im509 552 0 R /Im491 534 0 R /Im500 543 0 R /Im496 539 0 R /Im514 557 0 R /Im512 555 0 R /Im501 544 0 R /Im492 535 0 R /Im506 549 0 R /Im509 552 0 R /Im495 538 0 R /Im501 544 0 R /Im494 537 0 R /Im494 537 0 R /Im506 549 0 R /Im499 542 0 R /Im497 540 0 R /Im519 562 0 R /Im509 552 0 R /Im491 534 0 R /Im523 566 0 R /Im497 540 0 R /Im513 556 0 R /Im512 555 0 R /Im513 556 0 R /Im491 534 0 R /Im497 540 0 R /Im57 64 0 R /Im48 55 0 R /Im37 44 0 R /Im77 84 0 R /Im35 42 0 R /Im36 43 0 R /Im56 63 0 R /Im56 63 0 R /Im75 82 0 R /Im472 511 0 R /Im55 62 0 R /Im78 85 0 R /Im59 66 0 R /Im48 55 0 R /Im38 45 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im35 42 0 R /Im38 45 0 R /Im527 570 0 R /Im35 42 0 R /Im38 45 0 R /Im70 77 0 R /Im37 44 0 R /Im77 84 0 R /Im57 64 0 R /Im342 363 0 R /Im479 520 0 R /Im479 520 0 R /Im54 61 0 R /Im78 85 0 R /Im56 63 0 R /Im78 85 0 R /Im34 41 0 R /Im78 85 0 R /Im60 67 0 R /Im78 85 0 R /Im89 96 0 R /Im35 42 0 R /Im76 83 0 R /Im44 51 0 R /Im42 49 0 R /Im36 43 0 R /Im52 59 0 R /Im42 49 0 R /Im37 44 0 R /Im42 49 0 R /Im47 54 0 R /Im34 41 0 R /Im78 85 0 R /Im59 66 0 R /Im42 49 0 R /Im50 57 0 R /Im47 54 0 R /Im35 42 0 R /Im38 45 0 R /Im78 85 0 R /Im60 67 0 R /Im47 54 0 R /Im37 44 0 R /Im48 55 0 R /Im43 50 0 R /Im44 51 0 R /Im76 83 0 R /Im35 42 0 R /Im48 55 0 R /Im37 44 0 R /Im43 50 0 R /Im43 50 0 R /Im35 42 0 R /Im38 45 0 R /Im42 49 0 R /Im75 82 0 R /Im52 59 0 R /Im38 45 0 R /Im44 51 0 R /Im35 42 0 R /Im42 49 0 R /Im43 50 0 R /Im35 42 0 R /Im47 54 0 R /Im39 46 0 R /Im40 47 0 R /Im35 42 0 R /Im36 43 0 R /Im36 43 0 R /Im78 85 0 R /Im41 48 0 R /Im42 49 0 R /Im89 96 0 R /Im78 85 0 R /Im79 86 0 R /Im44 51 0 R /Im38 45 0 R /Im42 49 0 R /Im82 89 0 R /Im37 44 0 R /Im45 52 0 R /Im72 79 0 R /Im37 44 0 R /Im42 49 0 R /Im47 54 0 R /Im88 95 0 R /Im78 85 0 R /Im33 40 0 R /Im52 59 0 R /Im70 77 0 R /Im70 77 0 R /Im44 51 0 R /Im42 49 0 R /Im36 43 0 R /Im57 64 0 R /Im35 42 0 R /Im47 54 0 R /Im44 51 0 R /Im43 50 0 R /Im52 59 0 R /Im38 45 0 R /Im36 43 0 R /Im57 64 0 R /Im522 565 0 R /Im492 535 0 R /Im491 534 0 R /Im505 548 0 R /Im501 544 0 R /Im501 544 0 R /Im519 562 0 R /Im513 556 0 R /Im497 540 0 R /Im523 566 0 R /Im494 537 0 R /Im491 534 0 R /Im521 564 0 R /Im512 555 0 R /Im495 538 0 R /Im501 544 0 R /Im528 571 0 R /Im512 555 0 R /Im495 538 0 R /Im511 554 0 R /Im497 540 0 R /Im512 555 0 R /Im501 544 0 R /Im492 535 0 R /Im497 540 0 R /Im499 542 0 R /Im512 555 0 R /Im513 556 0 R /Im491 534 0 R /Im497 540 0 R /Im499 542 0 R /Im517 560 0 R /Im490 533 0 R /Im491 534 0 R /Im492 535 0 R /Im493 536 0 R /Im494 537 0 R /Im495 538 0 R /Im491 534 0 R /Im496 539 0 R /Im491 534 0 R /Im497 540 0 R /Im529 572 0 R /Im499 542 0 R /Im505 548 0 R /Im495 538 0 R /Im513 556 0 R /Im497 540 0 R /Im501 544 0 R /Im530 573 0 R /Im501 544 0 R /Im499 542 0 R /Im492 535 0 R /Im497 540 0 R /Im513 556 0 R /Im497 540 0 R /Im523 566 0 R /Im57 64 0 R /Im48 55 0 R /Im37 44 0 R /Im77 84 0 R /Im35 42 0 R /Im36 43 0 R /Im55 62 0 R /Im56 63 0 R /Im75 82 0 R /Im55 62 0 R /Im479 520 0 R /Im57 64 0 R /Im342 363 0 R /Im479 520 0 R /Im479 520 0 R /Im342 363 0 R /Im78 85 0 R /Im531 574 0 R /Im360 385 0 R /Im35 42 0 R /Im35 42 0 R /Im48 55 0 R /Im79 86 0 R /Im70 77 0 R /Im45 52 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im37 44 0 R /Im38 45 0 R /Im39 46 0 R /Im40 47 0 R /Im35 42 0 R /Im47 54 0 R /Im37 44 0 R /Im38 45 0 R /Im52 59 0 R /Im45 52 0 R /Im42 49 0 R /Im47 54 0 R /Im362 387 0 R /Im54 61 0 R /Im54 61 0 R /Im72 79 0 R /Im44 51 0 R /Im70 77 0 R /Im70 77 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im42 49 0 R /Im52 59 0 R /Im47 54 0 R /Im35 42 0 R /Im36 43 0 R /Im48 55 0 R /Im35 42 0 R /Im38 45 0 R /Im36 43 0 R /Im35 42 0 R /Im39 46 0 R /Im52 59 0 R /Im42 49 0 R /Im47 54 0 R /Im44 51 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im342 363 0 R /Im479 520 0 R /Im479 520 0 R /Im472 511 0 R /Im72 79 0 R /Im37 44 0 R /Im43 50 0 R /Im39 46 0 R /Im40 47 0 R /Im73 80 0 R /Im44 51 0 R /Im43 50 0 R /Im40 47 0 R /Im86 93 0 R /Im37 44 0 R /Im36 43 0 R /Im48 55 0 R /Im37 44 0 R /Im38 45 0 R /Im52 59 0 R /Im76 83 0 R /Im78 85 0 R /Im60 67 0 R /Im36 43 0 R /Im36 43 0 R /Im45 52 0 R /Im72 79 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im37 44 0 R /Im36 43 0 R /Im48 55 0 R /Im35 42 0 R /Im35 42 0 R /Im47 54 0 R /Im75 82 0 R /Im45 52 0 R /Im48 55 0 R /Im52 59 0 R /Im71 78 0 R /Im71 78 0 R /Im52 59 0 R /Im45 52 0 R /Im38 45 0 R /Im77 84 0 R /Im37 44 0 R /Im44 51 0 R /Im42 49 0 R /Im35 42 0 R /Im47 54 0 R /Im82 89 0 R /Im50 57 0 R /Im45 52 0 R /Im36 43 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im36 43 0 R /Im48 55 0 R /Im35 42 0 R /Im39 46 0 R /Im44 51 0 R /Im37 44 0 R /Im70 77 0 R /Im48 55 0 R /Im45 52 0 R /Im38 45 0 R /Im48 55 0 R /Im52 59 0 R /Im36 43 0 R /Im35 42 0 R /Im35 42 0 R /Im76 83 0 R /Im37 44 0 R /Im70 77 0 R /Im45 52 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im40 47 0 R /Im37 44 0 R /Im38 45 0 R /Im47 54 0 R /Im73 80 0 R /Im37 44 0 R /Im38 45 0 R /Im35 42 0 R /Im37 44 0 R /Im42 49 0 R /Im47 54 0 R /Im37 44 0 R /Im36 43 0 R /Im48 55 0 R /Im35 42 0 R /Im35 42 0 R /Im47 54 0 R /Im52 59 0 R /Im71 78 0 R /Im362 387 0 R /Im54 61 0 R /Im54 61 0 R /Im86 93 0 R /Im42 49 0 R /Im52 59 0 R /Im47 54 0 R /Im35 42 0 R /Im36 43 0 R /Im339 360 0 R /Im36 43 0 R /Im35 42 0 R /Im39 46 0 R /Im52 59 0 R /Im71 78 0 R /Im37 44 0 R /Im36 43 0 R /Im43 50 0 R /Im37 44 0 R /Im43 50 0 R /Im35 42 0 R /Im75 82 0 R /Im52 59 0 R /Im71 78 0 R /Im75 82 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im75 82 0 R /Im37 44 0 R /Im38 45 0 R /Im43 50 0 R /Im51 58 0 R /Im33 40 0 R /Im39 46 0 R /Im40 47 0 R /Im35 42 0 R /Im36 43 0 R /Im36 43 0 R /Im48 55 0 R /Im38 45 0 R /Im52 59 0 R /Im77 84 0 R /Im38 45 0 R /Im37 44 0 R /Im72 79 0 R /Im70 77 0 R /Im35 42 0 R /Im37 44 0 R /Im47 54 0 R /Im36 43 0 R /Im43 50 0 R /Im52 59 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im77 84 0 R /Im44 51 0 R /Im76 83 0 R /Im35 42 0 R /Im42 49 0 R /Im36 43 0 R /Im48 55 0 R /Im35 42 0 R /Im35 42 0 R /Im47 54 0 R /Im71 78 0 R /Im37 44 0 R /Im39 46 0 R /Im43 50 0 R /Im52 59 0 R /Im38 45 0 R /Im35 42 0 R /Im36 43 0 R /Im43 50 0 R /Im44 51 0 R /Im72 79 0 R /Im37 44 0 R /Im43 50 0 R /Im35 42 0 R /Im78 85 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 527 0 R +>> +endobj +527 0 obj +<< +/Length 1089 0 R +/Filter /FlateDecode +>> +stream +x¥}KÏ,;rÜ~~ÅYZÃg=´4lÞ6<KmìÑÈ=£çÿ½»ºÕ]Åb ÜsqYM&ÉÌddä?ÿæ¿ýúçßø_ÿöþÍü3-îûqÎþL?)¹_>æÃ¯iÊ?ë²üúý~óÛÿü'ïæ_ÿñóß¾>~ütþÀô3×R^¿NÛø ôñëðø÷ü³æ¿ë,ÀM¤>§cü2ÙøèêñkÑü½«&|õ÷^ã|wY^Áì¥ÄxàüãÞã§ë¬í¼¶~Á|¯ ÚÃzEÔ¡jé'WãßXaH²è!":°Î° §B6à�Áj xÓ¡ø³ãÅ]?°mjðvÒûè¯tiqYÔb|BD:�ݤ=`§ ÄI;tÉ=²dáËX²g,ä¨Z²ëö» LPQµÒÚÐÌ¢ÑS0ÏÚ)`0¼L©f |YÒ{¸.`¿Â¼d¶M _¦ðkZ�3Üè P_ �¢¿/ìà.èe`A»Ø);tà Ddê ¼&ÿ?#wÀË v¨yÈ +¾ÑÝ +Ø!Þ¦²?ó¬Yr*I�YÁbÙÄY½ +°;çEsèmè)Zfé±°(®È°Ù¡ä¨í[@rÚ +%TLÀN`7) BÞKåv§Ü:°cV EÖ ;Ï@ÈèaQz1),¢fHJ�¦HDò2èív0MñG&éaM?ØÖ¤yÒì,cñ(_WÊÈmîͧo¬àjÈv;àSq²ÿYÓçÀaúÈof|jìÐù³*&¨¦%Pºs|¶vµ·�b¿-ÎáÞÓ×ÑȦܯ(¬CÁ9M! +.#²àÑ)¨½ÿ¶ßã÷ÿükoê-ôO?Se_«ÿÌ)¿èt +Þ+¢ñìÂD gxTCBÓ/Cò6æ§=I:¢ ] 2<À+'¿gñ÷Ip?p@pO%8M©Lë3jÉHï0 ¾×/éå#OD24Ë*2æ5¡ñÀ=\×g{-ÓÚØC¦ Ñ!thaô³¶æÄàE%8´Û.àå×}@ÜC*-Q%f~¢aht'íÒ-¼´4:ÃèH`ÖäR½w`A;à½àÕZ~AvêHäË'»kÂH¼¯üb;äwÇNUBzäVKÎ[yù2!+hÐ ÞH4%@¢ËO°å$Gà1JL2itnaF¿¶'Ð:tÚ!¨Cä³§8´I³Ó·ëXÜâ×^]&>§îõËħtqk}.níeò1ò¦Ý(¼*A_0üB<&ÐpJÉ'M VB/d0Þ;ðèE¶`EÐC+¿&¤ºWîéþÄß_v@!èódR°dõy¼¡ +PìÂ,Í>ÛFUId3Ü�ù*)! ¯²#90º6�, ÿ¸@È+2Ik,8/"|ÙóSN^¾gx ùíaÇ!WéÓÐxI§`YÕ?Ó¡uÒtúôÚñÚ§§a§ÉV$HK3£ý:l¹h3CBó°j:DÓ#1jÞAòªH`;¼¢i±îÏmÉÑÃîPdweÐ!!oÿ³ àÌè.éx7ÐCa *âò9F77\@>½nÉâÜ!éɪÄU.#%B!yúõâeÀ,Éä@·K\$½v +xvAËèã{|v§4¼ûøÁ ?r1O.ÌaÄÀ]çiÂvD¾ÎôÀàu~Ôf¼nÅ!X¹!XNã;Þü¼AX^zóói>f0b;3Z+`Ìçb:¯@Oqù)+ ä =³¶4Ád×áYôÓ$ ÐA/¯So~ù+HîÌÑYzÂk3 ¡÷ VI<Aá9�. YAµW,` +"Ô2èèxÆì.-<#ûÀ¬} ?8#Z-ÔºøN0øcoqÕ>0K× U $ÖPtg^GaÑ®#*Á5=ºâÑ9ªèîÙe}$ÈÒl1¤Äu*±Í·Áû FyXyhÉX²ùE ÃcF"Ð14Gá<^/±±*ùjþë¾þ[çÝH&Á[uÛág%Õèì<*2`Ä>Ì�ë%,oüB:öà{ ±(Ñ<ëÚÐTãáÝBz×U=$¼tpzxé5-¤á¥Oª[Kâk<ª:¾æõð2aP)ÌÏnÓã£à.éá)ÃODÉqüêÓÌP�hÈåDëáhúÔs8ó gÖczfëñ¾ðóCôÅëЧ èY¾}q/EÞ +? EG~£õZ`è³uþ ËöÇËFà(ï8KP.´ó4vWDM©�,(i£OV $F^qúý(äA>Ñ� »åàmª}ªT`Þ#ã×UÖýó'AATªC°¤þa:ð5©l' K)ï¨?°U\>ð:+Uk)�ô94N³jYvÂZÄÆkZÈ#Ò3K°-y5KÎáð÷ ËÜÐvó¨;MÃÑô±ú³©S%ÈJ%î 2:ÝÈrNÚB*0Î�ÕGt;pÑÉÍ wãîâüTvÏÌÐA½ÐmF,·ü©4ëQÚ0èÐÅY; üN!ÒA1WÓ"y%JfC³3¸BoH/w )@¦Ý¡Y1z4zhÍ»÷XIÁk'N @ ÝÁ·aÐ=Ò +mP_V¬Òи<©:H$ ûR¬.Ù ê ÆTzfgÒnræJ$èIÏÄÀ¨Ð 7ÈÈg¹)×d QÁ�]/] +syísM!ÆÛ�% g6LÜÒÁÛàZ>8aq½ki1ZËEÚJ<a7¡kP�qÚVÐÃ*9=ÓaC¶tã&2ÚúRÞ ×]ºÔ3èà]ðÜò.pÜCÐÿÀ¤~Ä VÑ<8$-¢#t-B<Y�8-å,ª1K³ç¸#* +_pÄ£;䬳´MÚö]DHg4`Jye2 hÉIµå,·¡RNÛ bÛ@JØÛ@§XªKøh q§°#·¡º$.µió¸4BÔ+yü¥§ªO]È3 ÈÚE@;Yth]Åu¸>Å,O¿±J¾óô¯ÜæéiraAJØZÐ]ØV¬.Y.]Ï·Óî"Ý@aIëCB1*¸gÙdHõ¸(u4.:Ò CBÍË R&hIô<}þTGþH/Â4¹g,ÍÏ@¨ú3«D%¹×8æ«ãù±uAlãïc +¨/À¼6I!ì`*hPrÎ�$ ¤È¶0« ´ áø²2úʲ-Ð9Ý£½ü¾|¬åE[Xr"J¿Ïhý=ACÞ.Ï +©PGyF´N!'} +ðñpe +QS!Nú~_¢4Ò M + Í¢�°³Ì@Ó!oê ÉI ɯ zh©=Å¥naöÛe¶93c6]ÂCC°,¨¬ª,¸÷âu̪2öìÂÕ�xòpAÜÿô®ìâé6CðR³ïó1! +£èé>æÐ hõgëÒ}ç²éèuP2ªîáAîIÀSríDrÐt0CFçõ4÷¬¿ßAûn£"Îè�7ÈÏ$°:ñ%^Ó£°"}ÙÁ¡woâ¢<½P¿A'òqÑ×Xr¢uxIêÑá, õÙMfÉ~äØ5ødDÄ«ºFLÒRðIFÞþX²óë#Ö -àÐuYËt; |ôBrfZ5yås,5çtð9,ô6~ÏÑâÆxËÆëuA~úü~_«1jÎê0Ê& �}ic7,@)$¥ûÓU�zYNyo¼L #;2veGZ~1JÍþCdÙ,é ]_µpJL8½Ö>Ìê°ôJt?Q$¬-uâyn°åÖoé[Àg±Öü³,×=ÜÓ#óÏä÷|ÞëÂ$Ã#½Ñ:T °!ÒL³8ýX !ý!«ê½ +Ó²}°ñÚ1¦ ®ÝÅ¥6¬y +yneÑî2Êàì[QIóò²ôBÛ}âÀ:ÂÛTÔ[¿á $yÎÁ d3åß~ ±-Ü36ZXмYYòôR÷(zd´ãÇNÃÖËm,n°©ëK5¤MNÜB@[XOÒ zäÔ?öôÆ:xt"<ôF#, éá°K¥&méïg5.bPå^iO!ÉnÌîQ\cí2wÙ +Þ±¹A'^ù%=6·-Ü8|â_æ·ñw}÷/ñßRî0Àóü¥éîhá6§|?Ù}$¨&LhúSË8K@~'ð3ü}ÿäôûW&äií§¼Ø32^bØÓÐÖ!§×eìôSÔ¯ÆùgJW ¼CËRäxù@î tñhcJÃz±C:Õúi¶ÀÊ*J\s¶|)oÃV;ÌË1ìh!ëi¹ª`tQ2$tóðXpõô¥)["ä|!¢XÅ päD2¸ïa<ðÈèÈOøE3¥ôÑ8 cId941j SÔ£I3$4ºÏHzÚ5LÈw¦@K¦×wÅiì3#q:,¸¸;¸¨ìàêÕ¼'}hé0«"AË LÚMÐ"ì7C®´ËȪSOÚUw¬`èÍÓúe!+«h!RØt9òazäΤ"#l«�@èEY;CtJ/ÎѰ0MÐ eÓâ=E_S>äeòÁ |*ÀÓx©ÔÜrñøÀhµò<Ï Í²T]ƹÏ`|íG¡¨?K@/Tö¥²è2yå@>' 7LYu´10õeÒ³ùzQ*/èhEºJà6fí4§p. yHôÀÜnÒiUE$ä¸U<Ä$5cÚóïëDv¾Ñ+±5ê=C¡0ß4�Àw £§fF9ax5Qç ȾÀzh×p¢g}6а?6UÕARñeÆþ8ã{P¯RÔztê´/Q7$¯Ð)ì©(Y¤CD[,ÄRqÞ:Ç]/ °ÄeO¿>ð"öV¢Ðêd c-¤hê�kEúÌ4¶#½XF·u +9ê]¥:©±a¶ÇÄêqÐÃ,î�y0vð*ëûIÚB +÷^tFXIHÜQ:¯:3343ÈÙ4¡ÓÙ4#ÚÁ6MÙÌÒWTÚ¸Éîû¶·¬ 9Íld¨òU¦øP&ê:0k!MµÑ`M3¿n¤ÜÌÆ¦ùÞ×ø±ÜLBèÉÍrç4:Î!¾¬@ê³±·Éh^ZqX!öÒe}D/"@/]dFYÑZÏ-d0~ºë:¨Æª¸È! t¤BØ�/꿯¦!sÜÑb èé iPäÆ8êBÜAºivB¬´ì<^¯ÈÚrÔS-ñ=e{X .µéÐ6c. +÷ÀVES!Ü.ã·Yáe¬ÓÎXLÑO£:§9|È9öóÑX�ÇÌ*TR# N¸XjI #¬&ÁfAFÓHÈÓÍp´ª¶nÔcÞÄG=ÆàMghÇuÈÄütäÍu,¢KN·`¯RÊúòÆÞùµ× É¡s¬sÈ¥ÃÊ}"Ý)¹@þ¬ÒSݨ(M SoÚð*ÑPÚSÑ ?xÔc´üAúèo ]--fYâ 5±°LªiYJr�-AÏ0MbdÙNçp¢í2¾¢E1u§'ÞOÎ8ï KHß9ÞÔÍùß÷àÌ1Ö 7z°÷ÆÓøüt4'ÐH-hÀ)µÐZ�oÂYÛNèa¼X¡ô¢CRuXL-µÐZ�ÿÀúLÁC%ìÈM,èKÔC'6Ì³Ô 2:èÅ ¾ à ùK.$uXMÉ<h +p!O`|Sy "ä%ÓC-úâ +î»x¶îÈÈt '%ì8 +º;Ò#ë +æßÃch´¾4 KÊ+:7ÐÓæ 4л"½ÍA(Íëcmâ¨(µöCÔpH(ö"ÃÛPgͪGHþ¢cÃp6qR]ÂFIGC )]ÂC4Øl|Ò1¢I2lHd4b¨¹\ÂüjhXä?¡;ÕÉ¡ éN~&@ãà4¢ù wä7"r `éuT&èPut;Éðv4`h«ãw&dH{ð;³vRüÎ )0#×Bq÷~F>Ø$ãë{Â&/ÇÉ �@[rá-óx90;2Nã;Ò3áÄëC±µe'Nè-;qúý�7§þò�te4·eºÂx±@;¿¤:°,ÏtÀ.ãQ0Y'P$ØÕ 4ïyÖóz:~fð½!QkØ -¡Õ ´©¼ "F(É´°[aÇ#5ölØTcËO¢RX¾Å%/רÆ.Ñѯãã õ- +ºêÈ -Ý3Îh:2¥éŰ,PuSbÃçpodcYᬿý:èt·òlÙ&gEÿ1úf( ±e×N©?Ǹ3Ój IÓ!^¡Ã&iFk<Câ$;BërV2nGJ¤ãQã$sV¡9¶¼]ÇÆwàQŨg¼u6¡Éi9hI6NË'ÁÍÖ°cÐñæÚÓW]Æ»_g}cJêÑ9î!õ(<ë õLîÙmx`0·!ãN¡¾ cåXq ì²n¤è2ééF,©Î¬ÛE ôÇok¸á<f¾ÅýÂr$³:òún~½ã²;x+ü=÷ +`Àß.`$4^oÆ9àÖ·¤Å@Ñ®ÁhÉ)1½öÞt%ÐÈp4T]D1ìSÁowF§Òs +ÐÒT §´Á¢pÞ +ñò8¥gÞÂSqoPñQøCÁ`or�±ü[îãÚ6#-îiIk=ø Y0èæ¥76ØjG~£iÉYzbÒ´@Ð]ÖAþaõ!-Ô¹3¬±²oñhc´"-ÖQtHÀ1Ê?.! 7Ψ%Ð×{G¨"zx +ä¨"g×ñßxb·LqÓ#SE3OàËLÏXë!ß$c#[çÁ-0�ºMáÆF=¢h/§Q¬dÙ¶OÈÈ/F£DÚÑ.CX9d!ùÇ×¹ìP¶C¡d[ ÈJæ4å¯ÿÒwyBüÈàë$OÕ&Vß`%g5v¼öªÁûiP_·KmÐËáõ îðÅ¥õÄ~ ®î»xþ@GtZ²müHÏÏô¾¼ßß%ºÙq·àp»ÎÎã{òÞ|È:°Ëê±ÕÖpA ×GM<º*¤;ª�x0aãgi<í +÷Ävhý=�B|ÝýÕ0NÚrZC¤:GµÑ"¶O!Ù´*@ÓC.±iKùÓ¹{¦CSÖtN`F; ¿¹m¡¥I°ñÜC>°dõ$¸]G7ŦÃvp]ÔDv^ zdí¨þàV<º�©Oë'ÍѺóÂØò%Z¡iÿZd4@¬#:Å]ܸPÛBÛfÑðÐ2=»âôôÍÚ)âäÈèèÍl¼mw@´£ár:"»X @M-¦³»d°$/;4ìé[;GZÐ9ê×õ ³êÕ¡bäèv@Ûã~_snÄO²%íhZEw³ríá\ëøÃ¹¦�¸@4Ä4µ0ïmð.WJ¶nï,ß&1êO÷ lû@'¦ØªÊ!\ -bÄó +ëºO?K[Á÷kAu|µµ#¾Îû +ÒGIÌ>=\Í Î7=:í¢_+5 K°Àà²áB¶çwÛÅA&_8ÅÎ2èy~$- ¸jçµÐØÌûÆh~À®Ó¥IgÄè: +§Ó&À¹ð,;b»¦%àÔQ�G÷Ï@;è=oC{7"@»eéÔÚJ¬7Mè÷»¹Ú@ (óÆw¢,pô~ç=ÿ¾>ÿuæO3çµÛÆE,÷TLôÉM´¼2�]=æÐm®×úÅBiÖÞB²èÕêÞ÷"=ÕôPÒCÈ¢Ðê ú:½æU £kÄ*böð7@Rá}üòì³÷Ñ{,.h¨óÉÕûk(ñÉ«\éZáÈ QKî«*hi o:ñLéD[n�É2ÈG÷ðùÀí£;öÏààÙ5xߨÀêïL ·®ÒÊÌTÞc )#Ò½!å¡Þvbî¤ÞPsÎÒüiÕ»éÀÜ¢¢º¯ +8ïxµ·pîæ/±ÔB�¢ß{±<Í WÑÃè ,"ïé?hßS¡³ô§_è7®Ð+3$ì ÐÌÈjJ4Èac=.3#ôC9ôÙÞÒ)äy ôûy C~ô«å%ddý,ó³ÚæèFt +;Þý-$¸0¡=è@ß@CØÈ³jÇX×ðÌ1dÓq^F'cZRB}3«ÇuH�8í³»,¬â]Æ[bÚ)jpòñ¾hà+½ÆÝ±c7 êqÐL9Ç~@3¢óFÄ *µÆ!¼ï;1,Òw¢%Vßw¨¤·2tgtüÒ¶ ¿$;$²ã£èÈÆpd4&_fl(&ëôÈFèOv¯lOt8y÷ì&9²M g¯¹SX3ÈQ#m]Ú&rdЦ(ë�I%4 bÉëà{½Ð4Mª1ÖYõ&XvZR¹Ð4©1+4Ö 4È_ê2IýpÇ>1û@Ò>À©)5ÆÈÈìÈ4Èçf¼ Mê0Ï¡YêtvvtY`1ÝÓ§pjH'íMÙíÔd¢"µ1Ë +>ÐÁ=a©I©Ç>°j ±aác»°#ųãï/4ÆÜ$ òâ¸zÏ�+*HÇGtuLº5ål¯d¬Â¤fÿË aÒ·Úú:&Ýh%[ãyiÚÁ%Û"d¼ ðÉXаxéQæCÀMdn[iË /àÖmÊÁY4#$´±WËQ-6ÚQ->°ñ +£0d)AGt[¸¾[c?ò3*Ê 3:Eü5 Ò@CÔOÓ3CgtCÆ;o -è¨vÑ,áeðB\¡C©%8xt:;Ñâë³C¼¦,0Û8%ÅÀ<ÜtÖf. @ ê"CjàÆù iébHâQÜ(%Gòý9ý&5JÊæMJ%øåÏ &dÇk3L[¿3ª÷EUÍ( ïXiÌYjøo²úÊ©ñÚsßôüÖTsIàgrIÔæ1"/oJûIö¶I�Sb?ØgÊάYô%ûsÐñ,© +~æaغr>Q£ªe@ÞA m �&�JN +fÐñì²¶ºÑK[À»";ÔÁ¨Ò3¤Y@v£1½pê!`àì@Ge=:æ{.7Z\f.}d· Èn}¶¬)¥{¸j§sJªW+Y¥à¹¤é/ÑC7ü#CíͲmèMpJFäÎè8Â#·ÑTB<íÞô$CwLÏÍddEÐüI¿`G{èÝ)½*c*,W«GìNéÕêqv<ámàÁÐ[×¾Õ¡u¶Eb9·<TB)²ÞSðÐ{BoJXh´nhZÌCó b|iOh¯R=4Ï?HuÛ!¤Ds/ÂK¥×uղ⢣.$h7\\äí½îôâ"o0¾óêâ¢faGlñGs«ô æÞ0btVQb» Wäñì Ó3Þ¿°¿Óó¼�`ºoIÙ�笰Ì-[ÊJ3Ð:^=aU½áb6å;µîåêÅÇ&µ.,` ZhøÌÒbàòð^;ȼ´Â£ ô´´,>Mî!P¼åC~¶hʺ:JFÍq^ÎY2%¶ÙÂü±ÉÇëäº+üý«¸~FªÑ9¾ìØXpl/ný·E×AU!F«9¡C G&æW7L1}´MHú£õl«0 N±¨oJ~Ƽêâét;X9¡vqbÂ˸:7' W&,èöÀwd:ku&ÎKf&n:q£:|ÀGõ J̦²wxè¥A´2@ÐÛiFèèª +gghÆ$¢E×¢;ÅÃ{M/÷>ùÆ)ùätóà àÀM�£®!4) oD¹BÊTìO@G3Eë÷îÙgxUC¿ßQáåíÁ¬9òðnH¡ACIæv tÁû%I½¡ßÐ N@&ró«¶ üáÿ£Ã HÐ\òihoÿÍ`ïöï¡ò3¢úé§é¡NåWZ°jÀAú0¨!@Ãê/+6òb¹F(Vã&Í +qÜ�2c= $äV ÿK 3 ×i ËÞ`&Á©-=Dãl"jEÖ(ZÜ÷h×q@ÝS6 +!`ìÝþÙF/ï!ãLÈÃvpïÄ·PÄGäÌô�â#tt$çZXj-FHN@3è ÈIõ§Nè.èh¾1JJM/}¢¡ôÒ\âFHttÐF|¢¸ÎZ96fgV(�Ëz´ÛhZRV0?s¬ä¨8úô 4é½YUóëø:4)bS®Ó>سsK éB +í!Ã.<ËRÖâ2ÞÉ«dh~kÓó"�¼1«Ç%G&Q$¬³ü¿g½ Í.b¹Hüø£®p¤¹&Ð1Þizq·&¾ÁzA³CGèÈoT¥/sKô÷-*hü>oÕQÌ oR²nª³¶{b(¼³*+Ä»©&0øÔ¼i&n¢wXâ2@Ò1ùêÚz´G{K|½»Û{åY tþ`qEÃñôÆ,HÀ<[ )Îß²S-Á ùò9°Ú$Km êÀ#7ÐAì©ì- gEÀ;,ò~¦ÓÏ´¸£Nòn´$@#C%5æ¤Húu-®h_G4b6$§¦gtb"KØÃì¢ +pÖ CÞñ £4Z²RÇT #IíXtbð6ÔIgõ6#)ª¹Õ]-?´À2«Z¥jËnV4&ÀY#Ð1ê>ø£}ôÁ;´�úà¡?ÑÑì`3½2xSôâEÀÒ+ªÂôʨLITÞÐ[ÞP :Ç÷^Q¶ +`kNª©1VZÎPÍ00ë@>Ø]êZ\zaQ kJèDBè V=À®ÁCÆ[~ð=0;Z¸^òO7Ô}|R³IhéîàxiKɹÿ%Vµ%V]6þIû�OP =îHPXTÑ>$<·°¢¥´4ÄWC×$VMËußIà~&¿à«©nB³ÝEÛ&eSYeN2¥%Mð÷õv¤öÜÐ4¦¾`ס$fÝ#¤P LY�A¶lÕò 6~¸{"0ª:Ƹ õwtÎY#º KGÂãļØ!yÒÆÒo·JDCcë~ÔÜA2ÿàE $e@·yü#¨[H²Q¼ËèDmèÓHe¯<b3¨zZÏÑËü(m¼Ìã$;µ¤8ç0£Ëã9iÇãW´«sj"-îàùr ²�¦©¬¶zåzvÁÁß×+ºÉ:z -Q qòðèÐ Fz`xàV`Ç{~N 0o$Ùj¤GFíдC+æ¨JY*xdø~äKàGÇð¾¥êfNFÜ k©zßßRu?i·ªç ´T=Ï ¿¥êuÅ5Ú½4¤0o\$п(I²¶�et Ū٠ð¬ 4zRݳ&°½ÞÜk0ZNíÒÔB¡¨ÖkÊ:ª¡ªêUç4%Èñ'Èu4×¶ª ÈmoB +iiE§P/(<Tªn¤ÜªkÀ!ÒFËÙÔAþôP§g¦ÜZ²ò2rÇeDQ-Èõ ¨V/içõTïÖSuÑ$д!'ö\FµðSàSbÊfÝI ýò³Î»òGæ� riê=¤´a~gº/j\gºix^JHg³6ª]|Ë0í¹öóÒ¬ÙUw·ÜÓ>ðaÕZSÂå÷¾n}GÒZ}`00û¶Æ¨öï%�N¹z ûøÊøj×Rã3>"® 5¯Ç>/1WB¤3(=¢¯3�K ¥^KQåe½G$R$Ïne§cygÕ:VÉiÎ5ͳø¨3V'4Kà½M6N1³¨ÙSäsóJ¡½MS}SÆQ|»\W¾)0)q\í¹|HH$%`dK´H¶,UÄ-5ü¶eàN#3ó3[f H¶F¥Ög«½l¸§¬VÇèæ¥d*æA*k¯zþ4Þr5`:C¦aY¶ôÿP¼Ñ¤÷@çÍ·&ñ4«ûÛÏU:¤t n~·wõÒ +Ù¶<PyC~³ß{§ø$ûµØ×~QMº×+ûI>/!Ê.i`K¥eúu ü)[ÁÐÛµ{}à+H_DkEüT0ß[3´Û2>¦¤ÁBA"¬h|GôÈmhÉñºô²¹#c479!Ë$M¦¼²fL©LH:Çdàüe,µiiP&¶uób¡ m ÅCîÙuV(Á>U:CfË#RóÁ´Ú¸ÞÇ[é:y±¬Ü)·ÙúA:©Hü*Wjî!E(Ã#¯2Ft +:jð 3ªñËÔìY#æ1¤)GÕ¥ù¶)b=Û_áÕ;]öúÀ-¶ÕBêpìUê½hJ[!2 Z¼¢Ð¤ÖbÞäV³Ï-¡Ü2VÃ~}-!Çãhä|2Hôp)¤AS~®wjªÏ±¯Òü^ð<âêgkSÛ¾ ¤(wÅ4AKØÑêyWAÒ¢Á9¨áù=§?¨(á}aÜÚ@Ï4Fv�z¦1b._À±×è8¦Ý(´gì¶ïÉr/tÈÆ`ÙZ?G° ÙÚ Ð#Íç2R¢ÑVÐé\g zÂÜa.æ%¹Qh&/Ô3¥ÁnÓ¦ØmÚX�¯U +ê) ±mÄ ÙNQO3¤h:Ôà:åÕ±ñ«4êPÕ§ÈBõÇmNýË d÷IÊ(Îå²ðlÅÊVuX#åÙmvdHo3£céßCK°dU¬\Èè¾\©}IC$þ;°iDw| Õ0¾](,6&õ.#ùÒ'W¸K|Jû7>inRý Æç²�òy^.¤94E´x¨:ëóòPWYIÒò¯=lä)@¦ØÒÊ-SÊ? :tAµ¥$8 0´}²#¿Ð:o3ænrJÄùj_¯gÛ·f:xÅ:hïVó8F¼hG©Bü}ݽ'Ö¬ÙrªÄóüÈ!9@,yÔ0,y4Iä´ñæ×çA¶R»MOã;]½]§ 0¶RoI²ój¶Rá(Y²{*ÂÃ-°,YC¼biå'ÜB¹OíÖh©?P?ج¤py#:º½otZªs+�ÈÞÃÚx Îðð(®j¼¼!ÓË>ðµsõ:<<´m=¯Ï3XFLÀÔ¸5×Y&ðò +ß óªM¬KnÊwÿL`Õ÷pT ^A<åk�Øhu»Ä·6ÇõgÞN²û@¬ûj¹ +b¾ÿ-]\`M.ceJ|Øé{§ñkµ�úû/[ªü~ +ïß7:ÞÀw:ÇCK®·Ävç �Íuý»Nù÷ù÷k?ßKÉoEò«Ë4jùí.Z0�Èiü,y]¥1OZ©è^^ÁWE-¿ëÃù.¿£nò$¿(ï߯»ì ®íGÝäi|Mß?ßÞ-ñ3ÈïõG/íß^uÑüA·óÀµÛä÷]çÓ6`eþä=Ï@ûCó·ä4~®~îAàûG×?¡ß¯×R3Vs ~@аýÝ©ûËì_ö§¶H~ïù[ö¬¿ ³Dä·júC÷oEçGiQrôë´çè7Z¨þ>Ìþû[~¸¶Y¨c)·Ôì»?¬Ózëþ¨×¿Æ/²ýyi%:¿òý:ÿ¨qÖ-;¬¿k Pæ?÷ß×ü ¼`Ù¿$ûÎÿ[þ ý~¿Oæ§gó4ûO÷ûúß`ûmDR-ûÍì§Ñd·ì'³FãÔ¶WùÛx³?ßiÙYÿìg=f¿ÒËÿRìWýû»ÿµµ1ÛõçÛÿu+;ÀFÕ:ÀL× »R@°¾¤�/`ÙØPkÂðFCµÿÎ×eqì�Zõ¶xu ör ëbyºiy¶YÛ?ª]`ú79iþtÿ§üȱh-ýcXµ�|Cwû¨sï|pÞsÛKû×þIìK;Ô~þ¶ñ÷ûçïK«óïë/àù÷kí¿/ùËûïË{ÀeþòþyÔù÷õý·Tl[~dÿEÚ:ÿûnÍ&` +³öù÷kºnÀ·g·Æ@mã?Èûè0¥°µÿ4�ô É_¶ÿÁ¯Hõ�®$ .û'ÝûøIÏö?êÖþ³ØÖ¶l®õ¯ÚÿpoÐëþ[ãuÿSAG@.°ÃÄü»õ¢�+8ìÓ±ï£å^ßÅ#×�ꬫL Î@ÈcÐl3�i8"Hó¥¬:¬é;¸gI2eRg@2)«B|3×]Ø-Ñ;�4QÉXou´ê.ÀY|À{°ì$ÐèÍ¿þ¶Ö�B¼zc{8³Ó-ok°| 3¹F¹L§¡_ñXXRe² I¬ñË4N#A\4Ф +±6ÉoEJë±"e'!àß3xùÔâ&æEÓDº¼×¼}� `ؤm ɤù*° +o´UäÍEʵ¦fz«ò|«rePêÜ}`=\ï�ߨ>LoEzùVµEÊ5Ø}à ùzµ¶¯(ü¾]&²«m«j®6:à ô2iÎBzyHÎÂÖìÑYØ®Åë«òVTYãÚv¥0Nº\©dlP@çúPZò4yFwc]ÔS3~X ü\CNè M3¨S=E:Ùë2¡ 6½g0KÛ e2ª Ò»6HÛ[¶â=~ùÆý�¼Dݲvç{¾}ûÀVè +hFø@ííïÈ»U¿|@ÌÈ êó9yO`>ÉpêÆ?Ð99ïÇ´~cNvàÔe|椤|æoô[æ¤Ä:ç èÀxðû=,Êo·Ázªå7 ò³fjË1ÿ¡I©É9¯½YÑ+L2ýK-Çþ ¥Bx¶þ0Kë§)èÁïw¤J§ùÖx2*Lá-ý¥Ü£øÉ äåE~òÁðQöϿ/0¡õ#ý!ò5ûÁRÆKwm¿ê1ßòf<|~ÊqëüÐ\Õjö;=ùEîôû3P£[úK1+ s©uÿÔ÷G,ÝèþGÄÌøþ Ѷ}õmýµm Ð ý!%Ù?h¿fñêÄñ ê@`õÚù§ï_yÄþÛºWü7ùO[5¢¢¿TfÍþSý'Ièï/Nú}vÿEhÿêûcf þùcÈAüòßî Lÿþ3ÿuë,¯ø¯(¿úä=ò_ëÒúdïÑúÑ-Æ¥Ãÿ·#y¥ý£òÐÿ�ÕC2Qê(Gý+£õ_Szæ¿&ì?ÊþÓÖ·íIüµµmSôfãry;Ù8~WQÆk�$æ ÷,Úv 9 ½I .ø@¸zË!¼¶¤ÚWfZ~/ÜAï¤êë÷BÛAï]<}�dãè,w�ý°<z3ìÈPÕ6¢´Gܱß2�¦ç·ò} ¡$¹¬eïñ±Mà6EÓyË8ëH©^+)·uÜêov ø/j�ØxÁy0T#hÙ¶Ög»Î3¨ÀÜù÷©Ñ;Ïr²Á{0¾#'»q-=z0Z>ÅA +5Õ¥ ä7÷Íg|Â¥H=(dMÍ𬱸åT´HD ?A¡>>óÛ@³%Cù ESË�ÝëÄÙ&æÆ&6óù~È1Ýî¨#1@®$HßÞØ¿ÏP´@Ö×?ië@[ËYóÓøúÌàÈnËìÛFª9ÌþièaÏÞj®Ëï «ÌéÀø0j¡ëjÍ ç¤ ¤Õtn9ø.3ÁÁìÕ¤Ht0ðælÈVcmÿéü#Ô?9²´ß§Õ¬IÕ²IÛ?Ù/`àÓø:²åÕ¬¯ 8ÝÿI;´ºt�=ËeÆpfË^ξÿ3Ò_=³³½,(ç Ûø;¬¼p!µn|jsÞ�/}ÞH©J¶wh1&ÛP¤õ@LF³«.À¨@ï^ñ�F¸ÃPÓ¹|@}E?Ã%¨Tõ¸JOÂ.)ø/ÎHµ;T"ËOÄйÊüGN*³ôBÜBÚÚÖé)³¶W{ ãÖâì4=¨wa/Xx£Hß2ßo lì¼@!êXÄm¤¨òF*'z°fMnmãNDª¬c÷\ÐìÅp:¼�éEEB ýÑb®mFL²l"<ÎÇ*j"ñgËöpðèbÙû�¾\å)«,ßL £x½_Oã^¸Jcæ«E3Àå é+Ên'LvÏ3ÐwawáJæö%Ì%kóOþ,u%ÆéÀ¡¦0¤ÝÞª|þ@ÊÌ*o¹0Ú*3!ϧ�!Òܽݯ í.eÈ`4FBx_SGÑdËR2ç§ d~µ&ÒÝ3,<¶dÉù÷e/Âñ YS¿}ØËA**ôu;Ægq<KÛ»Cþ·éJv÷%í¾õ»M»ØØ\�öCølÀW¶AÀ1XÚ9NÐmÎ&ÝVqèâªMnapõ¤{aÿ@àõûÍXÊù$ý-ÝÚõx¯Í{¼ÿýX ÿ^ÿi¼òxg)÷Eú}ò6,éi<HyS+f9óxoÅø#vã» Ê[¼y,Å +Æ0öæaeÃÍ ¨ýú´ìüµL®¤üÚ@D`EÀÐn9~äÉÂ[¿ÏÁôL{Þÿ0½G¿äGÖ&iý4åý1ÿ0âñôÛø} +¬_Ì÷?Cùëw ±'4Î/}òÂq~GÕÄ5Î/³¡pÚ0k3½Ià÷£L ·e¼é=ù5õGñ°_( Úóü;=ºt0bôZ¿F4Æöx|~6Æ ±ûÏÀôë£ó£zÿÅî@ÝñË~ÝÝìüm`ö'õæ¹Ø?iKQ×úW?ùqFîO10¼fÿ)§ó4îïºF)&Yýõ5 v;�wÕ8Í¿&t�eüHN7³<l@j ¦pjÑññÈêåP½aÁY9ÐÆ N°\wÀÉ sérntCsÛïßç¡èúó$3 "R` +g²t�Ûÿ9 ùO+Æ×_í-g¶üIÜé_3?ï�QàüûåðÚïÓrüBA~ʹXö#¿jùjþ¨þ{å_¿oyØóïK §ñ÷¦dýÁ7ÖÏ#x~_÷ ¬Wîù÷u +ê- ûhþÁ=@¿_ÏÒçÅxAnnóC#Àô9?w HõrðÒ°û"=bÀéæù%ó"? à¯A[F>XÿCi4 cõì DSKI¾B_Kÿ2Ió§huÒâ=2R ½Æºò»HäÐþé¨ÇþÉb=Ú Á}öÒ´½~7ÆÊÔÕtâ +Ðê¼52B|¢?Làíc2 ¢©»§ïähµf s[p·ËtÞÇ\h/2ÐV9� e´'ý³!ÆA¢H[3-E8ib¡,¼,A~Î&D +ý\&v tâwÀÈ.,â.4ánÈÞdUHoZFÛXÏ� i}ïæ>±H)8Í"QP0§ÊµPJDV×"EjÅ Î÷gÍ"q¬ÒÔbÚ.Ü¥6$!R¾?ÃI5®F[2ª¤ó½"¿®mX5-¶!¹+ðëF(ÍoL©J·àk 2GEß?Ày6Æ3ÏÛxC|¶Wâ[O,ñôû &ÖTÎÅ7>/ �'[,Và5~¨¤²´(½ü¾P\@rwk£¿"k¯P{§ùëýäÈi<âa3/s¥ Ü2t�·äýþPlhí!òCÏCïØÌÖÿµÿA_. ô7QYàù�èÙÃ7ç/[à-;£(@³°ýtz +Û`�º +Û#°@# íò:ÆÎêÚ6^"F8ëî/&ÆÎÝÿþ~߸bvúþýرkþ~#Á?àoü>ã»Úî°ú÷ß:/îß}~ +ó Y·÷óø/ÞAËz»<¯WÕ¯Z¿\U¿«ÇëUõßmcþ<ÁýøÍâï³?ú}ñÀç÷¸ÏïàoFßµ|8VÕõWHmÔ(Ûî×µp ò7ZüyßÄøÝ½Â!ráý ó*Ù_*¿eäר5ÏãÝí϶ÿw1� è8Èÿ.?Où"±ýÑù"Ý,ÙÑâýCÓ¥ÅZK~"¤ýkõ8nÉAßä«<¿±ôo_ÞcY½¿paëôN"¸V¼/Ùiãþ¥ëÏý¢çgþÎ7,Ú_Þ#zäOõoÏôoFç_ß²úý¿üÇö/÷,?ï{]ÄóýÏä ýëàÛÕüWη»J÷/xaÿQx'ÚÆîÿ:þ¡ëYZ?ë7²ñÕÖ¿_Çïï7Aù -°âÁ7ûÄ~§õ_°ßå9*#ý¯!ú<?¿Xß$ôû5@8IüóþÉó7áÇÄ_¾�<·ñ#ñåο¯Aìß9ìiÏßlã¿ú¥Èþ»/¬Nçùë%.[¡wýûuï³ò»»ÿ9@0�ùë%Æ72~ÏÁ/hÿåüåZúCY½\òÓñ1F0ûn5=*�÷Ëïëø(¿HúÏYý¢$ +;>éòû:+\ákoé//QLÇïà£,?¼ÿÉKûϨo6V?;ÿCÔ7¡0Y]6@§¾ Éêúúf#ö«?ÐA}¦½óÞõrWÚð2âÒ(5ÞìÑjP 3¯k`ú&Ì+ÜFúÆj%7E¼ÐFÛËg sª j*ã[µÑ\/�¬NÎá]�ÞÁ¹½[ùu ÝôCh%K¾ú9È PaË ,ª=àt|`.gã%&NP¸¨á%f©2ÚÆþ[bFnUNÈ t@¼"´Ê¯rQåqãü-jâû/ÿ|W{í3c÷C·sÇâ¸\ÃQo¦ä±lÒ¶$hÒäSÖDVGjnòr!§3xù¹ÎBøz*!Z¦õ ô 0v?ìżj&Õ)izÀûd&îÂìUĺTÏÚÍtGÊôö7îÕÏ6F¹íýqå»tæ±éô¦óÞn¦ËôæB ¤ñú?mÈÉt=Ø)H3`îþVºoã|ïîóîDånÜ60Zâè4¾ápݹÎèÀÎ9ûýi<9ñ§ß.¶Î@`|Ãàgý÷A`øãôò¸qo[è¬+çÏÆO`<@þņ̃ãºÀYý�YÂä´%pôc¸f¯ýëTø×<ÿôFÍÓû/üúËKE·¿ïÿÛþ¿=YÑkql1qÞUøeÏ¿¬hÍ/ÃèE|y|ß(#ô"¾|m¸7l|ÆS#ZJ@^Wu^¿¾mèÉ· ½¾í ù5V¯u»eèË Êa£G¸Ñ7VÐÞ?v}äwÑìµÛÑÐÇç +ËïëåõÞý×_ÿ7zM~ìõbòë@ òªüÉëEDò×éu¬'PëüpôåöOG¯ÚÖ?kQ¹]@»?`ýò1;ø>¿Jã)Ãß¼ (·6zË\R²Àß_ÃêÇïôQ?=�ëè0ø$4@ãWi< ÏA¦Ì¿¤çDFáSA3 Þ!¬Òȹ &É¡óOêÎàhÉús|ä�ÄÝ4øcëæ£úgðGMÿ©þÎYÒ_ +ÿ\®Ã7"¶:|sÍþÜÁ8üÊOç'tÉ"¸äË;ÑYÿõ 4þÂç°#ÝRÛâpóÖ{Ç|Û2f +AHtÚÆq¨8#ðË@7â'<ex*d,©°?jL ØÈ ãðÉL0Eë¯ÐS °àdÆrò=¡aÌ÷äf pxó¡ó'eôÓ^Âqù!=ÿ>ºÃH ¥%ò} `.Åæ{3-a]C~w%T< ¥ýçãQHið<>2áùLcÁø§G¿ßA£P8z}º¯¢çUüîÑù? çÿH4Î?çXDçG÷aËAk<O" û8ä%â{¼_"ò} Õÿ ?D!ò/]^Úò'1ðö_°Z föwÐ6Ùo4ÅðÈ~t$±Vtÿ¡$0£8ôÒýÃοuI=ÿ±·Î?°ýÒc RÔ²ÍÂàùµ. ýç׺ ûJ`H"ÿ1õTÎúíwÌÚýM÷ßü·Ñý£ûϺ,´ô®ÖÖO÷ÏìßàýuäﯸÀûW.A+?Ø?b?Ö4l?N9³ýùI°4ãÞ¾÷ýÞ5ûMæïµøö8HÐýõ? UÒÿGtvô¨ð÷e + Qxþdy¤¿Öã¡¿¬ë¯ê¿±JÍç=">ú{¿àùE²Tgäë9à4ÃøKÊ¿A�?ëmþ æRñâ} (Í?L¼/á¢% y¿J@qþÌOáøý»üÏ¿<\¡ h,rþ}İdiþ´·P\ôG/á]Ñïw�\åí(,ñzüîKü±ø½tylíÅýgVHÑ&A,à÷;âßôůJ ÷ùütòG@ İ5%°ÉÄy(Mh34àò#øV{¨l çB°kA¿ßÅ]£tëß_wZq#µvÇxôK"(O°þ +í´ÌÇCê¯ÐÝ ú !H'P-,øhȾ"¨ë}vñß_¤ßç(x ÐBB|CsÜbÁéþÞÔ2ÿ®Ì¿EÕÞ"'ÉæÍ ëypÊúyÃ=ò`FÃå(Mÿ3+Ë*]ÂοAM&aÙPæAܰ>ÀHG�gúsd /Ð'ñþbãáý#{ÐFÕö ºôlë2ÙvX' A{ÝC÷X2hÿô>ëiÒîÏ ÔÅþê$BAËmF°¶ÿᾫàZ2AÈ`<r`±þ{Ûÿp_Æì/]â.¿¯@Yé4¾Ö_úûó"ý>Í YÇiÿuûµuÉÛÿs#îk9 Õæ/ÀZËóüuØ££¹~ phþ: VéÜÒ_1F¸¯åmÿéøäßêùgtøg+ãPìWÁq¨>WÎìOÈ«d8vòë(¡ýÕszd¿h?yìEp-ðþÕIô× éo9úÃòÚþÑ6õ®±VÆú~÷ßþÿåýîo_Rܾþ9þåwzmM +ëësùuj÷7¿þÝùÇ_üûßÿáþõùë¿þÇ¿úõOÿòóÿ¿ùõ?ÿ߯ÿúßÿü÷ü㯿þw¿ÿë¿øõW?¿þûßÿáýá_þüëßÿú»?ÿùþò·¿ý·û·?ÿÝßÿëÏ?üáÏ¿ýk?Oû/ÿãþÏoÿé_·q?÷ç?ýñ/~ýîÿæ?ýî5»ÿP'Ä +endstream +endobj +528 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1090 0 R +/Name /Im485 +/Width 71 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuÑ1 +Â@п,$M`Ût¹BZ«ö ÷°È²\´ôæ�)S,Tp7ìÌç1000"`)YD,¡¨§#%Àc$ª$îQ¸ÎDÄÅ}ÇþD/µ:4"QÅ('ÔèmåÑgÀpÊæÐ°As˼¶(ç4Ô=`~aü:TGÈúÜ?¸HìwÇóá kú³D +endstream +endobj +529 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1091 0 R +/Name /Im486 +/Width 45 +/Height 44 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃÿÿÿ?00°ÿ`øÇÀÀüÁLò�ì$ý ü®bÄd-`äã°xíò ¢'ù�)"?Hv(iô#óÿÿ0þ(�õ@ûÖèêÔ¬2�áZÆ +endstream +endobj +530 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1092 0 R +/Name /Im487 +/Width 37 +/Height 43 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿÿÿÿa`ÿÁðù|à?�$Ø@AüÀEÀuõM4d3È6 êÐõ@ªÚ5«ô��IS +endstream +endobj +531 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1093 0 R +/Name /Im488 +/Width 43 +/Height 43 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ@ýÿÿÁ$ûæ?ÌÐüÿÿ?¤`âÇÿH¾ÖÖ®Ye�mªeP +endstream +endobj +532 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1094 0 R +/Name /Im489 +/Width 80 +/Height 69 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÑ1à @Q£Ü ¹Iºwèu*r´H½GÈÈplØRè ~iÐ`MTE +qA�QtÃ]õHUÈM¾4ÍUä¦Úþ¢ñ˳¥ßÔëíõF_iõå^jMIÏ{(mrÚÔÖøÜ4ê70³â/ÉʨР°H];÷¡¿ÿ`9e)Ë îÒ1pL8¯ççûþ}ù\ +endstream +endobj +533 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1095 0 R +/Name /Im490 +/Width 69 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xeб Â0 ág¹pc ¥@PQ²Ë<x`DAæîÀ-^õuOúKÇmY ÂCÀ-¸³�ü°ÿÃTá¶E¸& +6ì Ø.pè00*²Âf$âsYÏ6rE8YÏ[ >o1Å\áA£"5+¼à@©ÃÆoÜB³£¼*r"5QúóN;?�è² +endstream +endobj +534 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1096 0 R +/Name /Im491 +/Width 30 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=Ρ Ã0@Ñ20ôµTÒ-µ¢ÔRé(Å#<pJz xüC¾ æÎ.*&Ë#t¬ÚðiåOüØqKvÔoyL;¥¶SÃÊÂ*JùÒÕ Çsû¾~X52. +endstream +endobj +535 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1097 0 R +/Name /Im492 +/Width 30 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc>Àÿý¹2µllìü±°oøcQÏð§¢áGAC3|øÃÀð�~000�1#`f~�Áì0|�ùa¸åahË)U-P��Èa(! +endstream +endobj +536 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1098 0 R +/Name /Im493 +/Width 32 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÍ1 +Â0àÿ!+x¡$WʰðÂä 7Éøb}¶¾ùÉ )CÍÐüÃÂW®ê«®+FÓX_×õTZ¯JSlÕ3A¿�ýwÁùÄ5ÃH,õlåÁa]Õ¢íqDb`ø`Òv¼í¾«?± +endstream +endobj +537 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1099 0 R +/Name /Im494 +/Width 24 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5˱ 0@ÑN°LkeÀ),suGqáÊÁáÿ#F(Ää±ÞiãEÜíDiÔSªºjÔÌQè<°Ã2³´ÿ·I1sD£?Ãdi½Â˾'% +endstream +endobj +538 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1100 0 R +/Name /Im495 +/Width 35 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]α Â0Ðo¹pÇm@L@¯DD1\6ñ.O"Â9Ùh^õïÿ1`óA�0üïL¥3w¶xma>1Áä +î0_MÚ ÔpQ㱩$PhÁV¢~æ*Ìn´òzþX@¯ 3ÈUtN sÜ }ãõñ¾ì±0E +endstream +endobj +539 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1101 0 R +/Name /Im496 +/Width 37 +/Height 48 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÎ1Â0ÐoyÈØÐ ±r¸jRuè58JP.İÄânª¨byú²-}càǼÒñxr¦û2ÝÞ$òIݼàv.rEÐ F\%£GãlG+'[6·l,¿@2 +ðIа4x#7ÜF4Jùcô×ÃüMÐ +endstream +endobj +540 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1102 0 R +/Name /Im497 +/Width 38 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5ͱ Â0FáßJák)P,Qа@Va² Q<Ê!¸Ò %8¥ùÊ÷⤡aLyÄ)kÀtBqÜ8m ^Öm,Õ@ÇUÌ;îµ1Z§½1yq5úâôÉ Øv$°{ãSlðÅÖ»¯ëõþ;I +endstream +endobj +541 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1103 0 R +/Name /Im498 +/Width 49 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuÐ1 àG9WÐÉÁÄ^ÉŤi¹ð�½=BG|ÿ/hMtúÈxð�fd+Ù°ÏYÝdØ`Lá&~9¤t<3�#7_u%dŬM¤o0ddáÜÈ+ñcÿ·õ¤cÆð:´ax3Ö¤,¢v«øI»±KúI¾LN½üYw[!ídåbìûñ $&S# +endstream +endobj +542 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1104 0 R +/Name /Im499 +/Width 32 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=ͱ 0ÐNÊu¾,¥É +)Y%cPXGaäQ<Â' âÕ¤¬@ô_$Q¬¬²RcåFMê%>ÕRo¡l°ËÃ0²!ÊÁ²KÈ}ÂæSg~ "/àúMêó5Íïß.ý +endstream +endobj +543 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1105 0 R +/Name /Im500 +/Width 58 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÍÁ Â0 áWå[½@ÕHLQ¡Ò¬ÂªÚ ÀQÂ&ÁÇ*ÀiâôI¶å_y1ÄôªÞí¹7úÐL·Ñ¾ÑY¯WDt³ÓQ<ÍÐ\É)Ë+ÈWaq '¢(+ãÔ×�ü)+>e} ò©xu²@ß4FýÓFg-Q)mkJ¹m½D¥L)²ß]öå1U© +endstream +endobj +544 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1106 0 R +/Name /Im501 +/Width 26 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xe̱ @DÑÚ`ÃÍÉnòHR\ +¥\ /@9xÑèÖ «|MVM¾" :¹&`edÍæÝ+=³«ö§¨aÛiÁµ0ðÊ{.aï¢dx{Ìç�' +endstream +endobj +545 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1107 0 R +/Name /Im502 +/Width 34 +/Height 2 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿÿASåu�gã +Ñ +endstream +endobj +546 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1108 0 R +/Name /Im503 +/Width 50 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUϱ 1Àµ\Æ5ðz÷�HßÒDp5QKq Xq·Éh Ö·H¡M8º ,+u@XáËä +Á?. î4ú8�?Á"ÍÍÓð0¼ Uã,Eã-YC4/|[hm¸§ÛëüÆaK÷ +endstream +endobj +547 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1109 0 R +/Name /Im504 +/Width 41 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmÏ1 +1жHç^@L-@`î%Ë&ò�鼯ÞÀMÅqfÂBÃk>þ�f5 i`½ØÙ¾L5âØ, wÀ5!Çï7oübgHê¢~EGR§²VÖ n4Û¶ËüóÐyÒîǽ|×;üvMIËNZÄd +-ýTù¾ÔYÌ#8_ÏËÄ B: +endstream +endobj +548 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1110 0 R +/Name /Im505 +/Width 27 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]˱ 0á³^ñJÂR²³ fòÂ)¬E +:}åAß y%hAák²ÕåK+¥ê¤ +oNS7^üºvS@ °ü2±fR¯çÛtçðyíï³#b +endstream +endobj +549 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1111 0 R +/Name /Im506 +/Width 11 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcnà ì 0`<ÀØÀÜÀÎÀÆÀÇ Ã`ÁP�æ¯j��ÁÅ +endstream +endobj +550 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1112 0 R +/Name /Im507 +/Width 58 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUб à á(èÌ"Xb¥¤d)f¦LÀ(@:XöÁ±)N_qÒIÿA-vñÐ4ÓI�Ø�¡HkÜcv»|¦Úobã@¨á ]lX¿k7%Ùe]Ë:S©ñæö=¿ÕPáU| TÌÊÍÙÄy-Då�1g1sfÈ_Ýv9nÚ³ñÐpVQ¥ìDïçü lNÞ.ãçºÇp^Y +endstream +endobj +551 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1113 0 R +/Name /Im508 +/Width 52 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUб 0 áwrá/`P¤@b-(x¦LàQ<e +sÏ&Ü|;ýôp"0yô[0DYNð¾±ßØÐÈÎdZã!_´�SɪßJJÄVV¥�â*ú ÑeB£x ÷N'cî³0ç.=`WØófârNg$ ôHáñú?ÿh +endstream +endobj +552 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1114 0 R +/Name /Im509 +/Width 50 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuб Â0Ðo¹p7 ;Ð"h¨;blÀ +Ù�)¢w ,½æî|ÿ�42;âKñ$æøHÀ9ùYàÞ nfQÏ#гyPÎR¬'àn,´?n%ä-2ǹÂô¾ÿ,_0Þ¤ÛVBÅ"DcgÃö¯3nÎß/cÄûAÎ¥n;ȽfÝ©H^4E3y]êÐ^íü0FÓ +endstream +endobj +553 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1115 0 R +/Name /Im510 +/Width 50 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÎÁ !Ð/æl@n),a×R¥XÂ=fþ¸IodñCzo�Bï= v}Þ£ÃU+¶^"Øh_8Pg¸° ôºbÑÿ|ß Y´\¢Á2Åd !dî"O,íÁòOÑm3ÜW¯?\Ò¾«þ ê×Ħ¬m'c=g)d\®×í sd_ +endstream +endobj +554 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1116 0 R +/Name /Im511 +/Width 33 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcàÿÿ¿F000Ø� pFÔÃ:8ñNüâ`F`;x�#øÄ! `yÎ;êÿÿph¹¢qõ&9�´[4q +endstream +endobj +555 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1117 0 R +/Name /Im512 +/Width 21 +/Height 48 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-̱ ÐÏ¥ ¤²°IVp]Å9<OÈ ,é0!Þ½úâ`¶a®áÄÝ꽡A÷rÕDWLrÖï_ÉUP%¨"T2GpBbD*¦åxæ<(¾ +endstream +endobj +556 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1118 0 R +/Name /Im513 +/Width 19 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`l``�Bü@ò�s!Àøù¿ C CÕ1|¨aHøÃÀðÔ´�ÑbpýàþøÁ¨ù�?s?;1ðóek6®Ú(�µ{"Ú +endstream +endobj +557 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1119 0 R +/Name /Im514 +/Width 36 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xEÈ=@áw3\À°±ñ®Â°3 Gñ(/2ÆÂvJMt@çû H"#/ÈÙD¶3å̱ æ\QÑ®ôôXGG¦0y[ñCÌ»èFT¬uÔ²QTdÌ>ò»cÐú5;½®ú8ìwÛá0¼:ë +endstream +endobj +558 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1120 0 R +/Name /Im515 +/Width 47 +/Height 54 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xM̱ Â0á³\¸s°ÂtÈH²{x)úâ2�òwù]ñq� [wúºÃ®zcx¨4³±Ð6ÕmC_tÕK#i¢ÙXMu"ò×Ví8ÕÎ4Ñ fZèNꨧӷ¯téÖóåöº~�hÊ> +endstream +endobj +559 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1121 0 R +/Name /Im516 +/Width 39 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUΡ 0áGH ©p$¬S:0JG@V4¸g>y÷¸[Eæ,¯Â<£ Ú¸ÆDk3AeðÈSDý(jÞÛ?+'µ\Júq;m6 +endstream +endobj +560 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1122 0 R +/Name /Im517 +/Width 16 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°gÿÏÿÿCÖ�á üÁð?0~`ÁÌØAð�û~làoAy{ ´B¨v?2l~X�aÅ>üxPùÀþ�?iåf�;ý,a +endstream +endobj +561 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1123 0 R +/Name /Im518 +/Width 53 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿóÿÿ?þ£PÿØÿ00üc``þ1ÐÔ À ËP(hýǦÆu¬�F\[ +endstream +endobj +562 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1124 0 R +/Name /Im519 +/Width 34 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]Î1 +Â0á¯üà¿5¨-¸xÁ¡$×êbîä.=J±C¨~Á6˳¾/�3òþàÀUl%T|%ïHZYX=oȪ M"²]$ñA/CÔøø(xÀ³Ë9§ClKBËÐorQò«¯;¶ Ùq¹MÏëº[?} +endstream +endobj +563 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1125 0 R +/Name /Im520 +/Width 30 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=ñ à @Ñ®pç,`a)Yy@,äxâQáJ +`¬DOÅI¥>,ul§Ö·ÎâB +¾ßñpkÅQúh +Áè¿%ÿ³¿rW$½Ñ JwùÀ>·Ïëö¬.B +endstream +endobj +564 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1126 0 R +/Name /Im521 +/Width 36 +/Height 69 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``g�ú@âÃÆÃöÃ`(Á~¨¤¿=°ñþÿC&ê@5X? âL|À$ÁÄLL@!øaoÀ}`"êl`Ä¿ +cAÄÝ {ìÁf4¨¸6m��H9<ö +endstream +endobj +565 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1127 0 R +/Name /Im522 +/Width 51 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUα !Ю ¼âÒ³Xt0S&`áØFJìgÉú#QNfl&\ÃR7©BÆÔ)àv¬ T kÃÐ>£ÇÐÀë£ëÄDîKä\(Càö_fIjÉXãv,ÇÔ7l +u×õþ¼¾N? +endstream +endobj +566 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1128 0 R +/Name /Im523 +/Width 32 +/Height 49 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5Î1 +! á_,,= ]ªÝk¥õ(97ÈLÚÒBbÆ5ËðÁ;0úýÁäMGdA]P0éÿëf*´ElVuÑÕ,Åd#¬pE=«åbdâ+ãlÉXæ_wé|itUyè`\nþyý[¾B½ +endstream +endobj +567 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1129 0 R +/Name /Im524 +/Width 32 +/Height 49 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5α ! á\Ð "HÒ]q:VÉQ86È + QØ .)(bî¬Oraé7 m,ÌÅÂ]Å*ÿÚ° )!qD|vD´CW Mñ¤±bª U=Èf+ªú¢xÏØî7àä!I¤c¢AFP Eg¬rf: åÿÛãý½ÿø>Ò +endstream +endobj +568 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1130 0 R +/Name /Im525 +/Width 17 +/Height 5 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¿á?Õÿgd( � ² +endstream +endobj +569 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1131 0 R +/Name /Im526 +/Width 47 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`°Àÿñÿûìä~Ø0È7ð¨c°gðHÉ?öþ1þ̪('ÿÀdZ&SdùèÚæÿÿQH}Óú-º�úTs +endstream +endobj +570 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1132 0 R +/Name /Im527 +/Width 53 +/Height 53 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmб Ã0 á'Qpë"Ä+¤14^Å#xX3ebo`H#ÑåNé®>8ÄÝ6XôK�æ`w¦®02¼�B[ æÎ[aðÀX ÀÂPh_Ù2¯£`#N=Ã1gE"iú1KCÅOÂàGEfÍ4«W¸74Mä* 1Uúþùz|¢I +endstream +endobj +571 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1133 0 R +/Name /Im528 +/Width 34 +/Height 52 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMA +Â0E_É"ËÜ 7^ÀeÑkUm<7ÈQê ²°XBðáý ø¸ÂüÎ"¸%d|ö/D\¡oP#iè°&M2sr¸ðRF|r¼rpûmËÐoj¤Y#5Vº%Ü^ÈÎdì¬M±ÊÆ#LEUézs;~;úRÄÇÚ¶¨mÅÒV9]îÏó.4Bó +endstream +endobj +572 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1134 0 R +/Name /Im529 +/Width 70 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÑ1Â0Ðo¹p\ÀZ±MV ¤ZÎD³Öbí ²â"á¡Kaþ8vÅ^7_`Bà<¡~B$<´`K·Æ(¦86£Üà+ãÀÁm Å¥®äðÿ�}I0ZLBa[ûñ+0DU.ðF´o(~3Cu¦(VÐ^ð§}3à &,\ñÅoQÁUmÄ`¨{HíM1 ñjt@È M¯øªüN%Øýçéïû \¬ +endstream +endobj +573 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1135 0 R +/Name /Im530 +/Width 43 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMα 0 á\¸ô&Rú° + nF taåàpà^óé/DUÉÀTH¸ù%ds¶ºÝÝÈnnbåvC]A.Øx(f,6ÞM×x7_ãÛs|6í´!4\±¨j >îßóú:�=4E +endstream +endobj +574 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1136 0 R +/Name /Im531 +/Width 22 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x`0cü ÿÿüÿòÿäÿ1H``@E@A óÆ$~00TQ 0ÔT0Ôü¢?>0>°`| ÇÞÀþñRÍ9�Ð!© +endstream +endobj +575 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 580 0 R >> /XObject << /Im480 521 0 R /Im78 85 0 R /Im49 56 0 R /Im78 85 0 R /Im518 561 0 R /Im78 85 0 R /Im51 58 0 R /Im38 45 0 R /Im35 42 0 R /Im36 43 0 R /Im36 43 0 R /Im57 64 0 R /Im59 66 0 R /Im78 85 0 R /Im60 67 0 R /Im78 85 0 R /Im69 76 0 R /Im35 42 0 R /Im45 52 0 R /Im74 81 0 R /Im52 59 0 R /Im70 77 0 R /Im36 43 0 R /Im74 81 0 R /Im50 57 0 R /Im57 64 0 R /Im49 56 0 R /Im78 85 0 R /Im69 76 0 R /Im78 85 0 R /Im527 570 0 R /Im35 42 0 R /Im43 50 0 R /Im43 50 0 R /Im35 42 0 R /Im38 45 0 R /Im70 77 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im57 64 0 R /Im37 44 0 R /Im42 49 0 R /Im47 54 0 R /Im79 86 0 R /Im78 85 0 R /Im51 58 0 R /Im78 85 0 R /Im84 91 0 R /Im70 77 0 R /Im37 44 0 R /Im42 49 0 R /Im42 49 0 R /Im35 42 0 R /Im38 45 0 R /Im50 57 0 R /Im78 85 0 R /Im507 550 0 R /Im514 557 0 R /Im500 543 0 R /Im501 544 0 R /Im492 535 0 R /Im513 556 0 R /Im505 548 0 R /Im499 542 0 R /Im517 560 0 R /Im510 553 0 R /Im501 544 0 R /Im505 548 0 R /Im513 556 0 R /Im496 539 0 R /Im501 544 0 R /Im494 537 0 R /Im506 549 0 R /Im532 577 0 R /Im497 540 0 R /Im519 562 0 R /Im501 544 0 R /Im519 562 0 R /Im513 556 0 R /Im512 555 0 R /Im513 556 0 R /Im491 534 0 R /Im497 540 0 R /Im78 85 0 R /Im33 40 0 R /Im37 44 0 R /Im72 79 0 R /Im82 89 0 R /Im38 45 0 R /Im44 51 0 R /Im47 54 0 R /Im77 84 0 R /Im35 42 0 R /Im58 65 0 R /Im42 49 0 R /Im44 51 0 R /Im76 83 0 R /Im35 42 0 R /Im38 45 0 R /Im36 43 0 R /Im44 51 0 R /Im43 50 0 R /Im50 57 0 R /Im51 58 0 R /Im38 45 0 R /Im35 42 0 R /Im36 43 0 R /Im36 43 0 R /Im57 64 0 R /Im342 363 0 R /Im479 520 0 R /Im479 520 0 R /Im362 387 0 R /Im78 85 0 R /Im472 511 0 R /Im78 85 0 R /Im60 67 0 R /Im78 85 0 R /Im89 96 0 R /Im78 85 0 R /Im59 66 0 R /Im37 44 0 R /Im72 79 0 R /Im45 52 0 R /Im35 42 0 R /Im70 77 0 R /Im78 85 0 R /Im59 66 0 R /Im52 59 0 R /Im72 79 0 R /Im35 42 0 R /Im36 43 0 R /Im43 50 0 R /Im45 52 0 R /Im47 54 0 R /Im44 51 0 R /Im35 42 0 R /Im36 43 0 R /Im44 51 0 R /Im42 49 0 R /Im72 79 0 R /Im37 44 0 R /Im39 46 0 R /Im40 47 0 R /Im44 51 0 R /Im42 49 0 R /Im35 42 0 R /Im70 77 0 R /Im35 42 0 R /Im37 44 0 R /Im38 45 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im45 52 0 R /Im36 43 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im77 84 0 R /Im37 44 0 R /Im72 79 0 R /Im35 42 0 R /Im52 59 0 R /Im71 78 0 R /Im39 46 0 R /Im40 47 0 R /Im35 42 0 R /Im39 46 0 R /Im74 81 0 R /Im35 42 0 R /Im38 45 0 R /Im36 43 0 R /Im78 85 0 R /Im511 554 0 R /Im533 578 0 R /Im529 572 0 R /Im516 559 0 R /Im491 534 0 R /Im514 557 0 R /Im492 535 0 R /Im497 540 0 R /Im499 542 0 R /Im517 560 0 R /Im491 534 0 R /Im521 564 0 R /Im510 553 0 R /Im501 544 0 R /Im494 537 0 R /Im501 544 0 R /Im499 542 0 R /Im492 535 0 R /Im505 548 0 R /Im495 538 0 R /Im499 542 0 R /Im497 540 0 R /Im519 562 0 R /Im534 579 0 R /Im501 544 0 R /Im520 563 0 R /Im501 544 0 R /Im517 560 0 R /Im491 534 0 R /Im496 539 0 R /Im500 543 0 R /Im501 544 0 R /Im497 540 0 R /Im512 555 0 R /Im57 64 0 R /Im473 512 0 R /Im282 301 0 R /Im473 512 0 R /Im284 303 0 R /Im87 94 0 R /Im362 387 0 R /Im342 363 0 R /Im342 363 0 R /Im75 82 0 R /Im362 387 0 R /Im362 387 0 R /Im479 520 0 R /Im57 64 0 R /Im342 363 0 R /Im479 520 0 R /Im56 63 0 R /Im479 520 0 R /Im78 85 0 R /Im55 62 0 R /Im78 85 0 R /Im88 95 0 R /Im78 85 0 R /Im69 76 0 R /Im35 42 0 R /Im36 43 0 R /Im37 44 0 R /Im45 52 0 R /Im38 45 0 R /Im52 59 0 R /Im78 85 0 R /Im69 76 0 R /Im360 385 0 R /Im75 82 0 R /Im88 95 0 R /Im37 44 0 R /Im72 79 0 R /Im72 79 0 R /Im52 59 0 R /Im42 49 0 R /Im57 64 0 R /Im37 44 0 R /Im36 43 0 R /Im35 42 0 R /Im70 77 0 R /Im71 78 0 R /Im75 82 0 R /Im43 50 0 R /Im35 42 0 R /Im37 44 0 R /Im39 46 0 R /Im40 47 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im82 89 0 R /Im37 44 0 R /Im39 46 0 R /Im74 81 0 R /Im77 84 0 R /Im37 44 0 R /Im72 79 0 R /Im72 79 0 R /Im52 59 0 R /Im42 49 0 R /Im48 55 0 R /Im38 45 0 R /Im52 59 0 R /Im77 84 0 R /Im38 45 0 R /Im37 44 0 R /Im72 79 0 R /Im57 64 0 R /Im38 45 0 R /Im35 42 0 R /Im37 44 0 R /Im39 46 0 R /Im40 47 0 R /Im35 42 0 R /Im36 43 0 R /Im72 79 0 R /Im37 44 0 R /Im36 43 0 R /Im43 50 0 R /Im35 42 0 R /Im38 45 0 R /Im75 82 0 R /Im70 77 0 R /Im35 42 0 R /Im76 83 0 R /Im35 42 0 R /Im70 77 0 R /Im48 55 0 R /Im70 77 0 R /Im37 44 0 R /Im50 57 0 R /Im78 85 0 R /Im507 550 0 R /Im501 544 0 R /Im514 557 0 R /Im492 535 0 R /Im499 542 0 R /Im517 560 0 R /Im509 552 0 R /Im491 534 0 R /Im500 543 0 R /Im496 539 0 R /Im514 557 0 R /Im512 555 0 R /Im499 542 0 R /Im512 555 0 R /Im513 556 0 R /Im491 534 0 R /Im497 540 0 R /Im57 64 0 R /Im282 301 0 R /Im362 387 0 R /Im284 303 0 R /Im87 94 0 R /Im362 387 0 R /Im342 363 0 R /Im56 63 0 R /Im75 82 0 R /Im362 387 0 R /Im342 363 0 R /Im479 520 0 R /Im57 64 0 R /Im342 363 0 R /Im479 520 0 R /Im479 520 0 R /Im46 53 0 R /Im78 85 0 R /Im479 520 0 R /Im78 85 0 R /Im88 95 0 R /Im78 85 0 R /Im69 76 0 R /Im35 42 0 R /Im36 43 0 R /Im37 44 0 R /Im45 52 0 R /Im38 45 0 R /Im52 59 0 R /Im78 85 0 R /Im69 76 0 R /Im35 42 0 R /Im72 79 0 R /Im48 55 0 R /Im52 59 0 R /Im38 45 0 R /Im37 44 0 R /Im70 77 0 R /Im47 54 0 R /Im44 51 0 R /Im526 569 0 R /Im35 42 0 R /Im38 45 0 R /Im35 42 0 R /Im42 49 0 R /Im39 46 0 R /Im35 42 0 R /Im70 77 0 R /Im35 42 0 R /Im37 44 0 R /Im38 45 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im37 44 0 R /Im42 49 0 R /Im47 54 0 R /Im69 76 0 R /Im360 385 0 R /Im75 82 0 R /Im88 95 0 R /Im37 44 0 R /Im72 79 0 R /Im72 79 0 R /Im52 59 0 R /Im42 49 0 R /Im78 85 0 R /Im509 552 0 R /Im491 534 0 R /Im500 543 0 R /Im500 543 0 R /Im514 557 0 R /Im497 540 0 R /Im513 556 0 R /Im505 548 0 R /Im499 542 0 R /Im512 555 0 R /Im513 556 0 R /Im491 534 0 R /Im497 540 0 R /Im494 537 0 R /Im491 534 0 R /Im521 564 0 R /Im512 555 0 R /Im495 538 0 R /Im501 544 0 R /Im515 558 0 R /Im509 552 0 R /Im529 572 0 R /Im57 64 0 R /Im473 512 0 R /Im55 62 0 R /Im282 301 0 R /Im473 512 0 R /Im284 303 0 R /Im87 94 0 R /Im56 63 0 R /Im55 62 0 R /Im75 82 0 R /Im55 62 0 R /Im57 64 0 R /Im342 363 0 R /Im479 520 0 R /Im479 520 0 R /Im56 63 0 R /Im78 85 0 R /Im342 363 0 R /Im54 61 0 R /Im78 85 0 R /Im51 58 0 R /Im78 85 0 R /Im32 39 0 R /Im78 85 0 R /Im58 65 0 R /Im43 50 0 R /Im77 84 0 R /Im52 59 0 R /Im526 569 0 R /Im78 85 0 R /Im33 40 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im43 50 0 R /Im38 45 0 R /Im45 52 0 R /Im39 46 0 R /Im43 50 0 R /Im44 51 0 R /Im76 83 0 R /Im35 42 0 R /Im71 78 0 R /Im45 52 0 R /Im42 49 0 R /Im39 46 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im37 44 0 R /Im48 55 0 R /Im48 55 0 R /Im38 45 0 R /Im52 59 0 R /Im80 87 0 R /Im44 51 0 R /Im72 79 0 R /Im37 44 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im42 49 0 R /Im78 85 0 R /Im69 76 0 R /Im35 42 0 R /Im39 46 0 R /Im40 47 0 R /Im42 49 0 R /Im44 51 0 R /Im39 46 0 R /Im37 44 0 R /Im70 77 0 R /Im34 41 0 R /Im35 42 0 R /Im48 55 0 R /Im52 59 0 R /Im38 45 0 R /Im43 50 0 R /Im479 520 0 R /Im472 511 0 R /Im75 82 0 R /Im46 53 0 R /Im57 64 0 R /Im58 65 0 R /Im42 49 0 R /Im44 51 0 R /Im76 83 0 R /Im78 85 0 R /Im52 59 0 R /Im71 78 0 R /Im90 97 0 R /Im37 44 0 R /Im36 43 0 R /Im36 43 0 R /Im78 85 0 R /Im57 64 0 R /Im342 363 0 R /Im479 520 0 R /Im479 520 0 R /Im472 511 0 R /Im78 85 0 R /Im342 363 0 R /Im342 363 0 R /Im78 85 0 R /Im90 97 0 R /Im78 85 0 R /Im49 56 0 R /Im50 57 0 R /Im42 49 0 R /Im42 49 0 R /Im35 42 0 R /Im81 88 0 R /Im53 60 0 R /Im52 59 0 R /Im42 49 0 R /Im35 42 0 R /Im36 43 0 R /Im78 85 0 R /Im31 38 0 R /Im52 59 0 R /Im47 54 0 R /Im35 42 0 R /Im36 43 0 R /Im48 55 0 R /Im70 77 0 R /Im44 51 0 R /Im43 50 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im77 84 0 R /Im87 94 0 R /Im60 67 0 R /Im39 46 0 R /Im52 59 0 R /Im42 49 0 R /Im36 43 0 R /Im43 50 0 R /Im38 45 0 R /Im45 52 0 R /Im39 46 0 R /Im43 50 0 R /Im44 51 0 R /Im76 83 0 R /Im35 42 0 R /Im37 44 0 R /Im70 77 0 R /Im77 84 0 R /Im52 59 0 R /Im38 45 0 R /Im44 51 0 R /Im43 50 0 R /Im40 47 0 R /Im72 79 0 R /Im71 78 0 R /Im52 59 0 R /Im38 45 0 R /Im71 78 0 R /Im35 42 0 R /Im35 42 0 R /Im47 54 0 R /Im75 82 0 R /Im71 78 0 R /Im52 59 0 R /Im38 45 0 R /Im73 80 0 R /Im37 44 0 R /Im38 45 0 R /Im47 54 0 R /Im42 49 0 R /Im35 42 0 R /Im45 52 0 R /Im38 45 0 R /Im37 44 0 R /Im70 77 0 R /Im42 49 0 R /Im35 42 0 R /Im43 50 0 R /Im73 80 0 R /Im52 59 0 R /Im38 45 0 R /Im74 81 0 R /Im36 43 0 R /Im78 85 0 R /Im507 550 0 R /Im501 544 0 R /Im514 557 0 R /Im492 535 0 R /Im499 542 0 R /Im517 560 0 R /Im509 552 0 R /Im491 534 0 R /Im500 543 0 R /Im496 539 0 R /Im514 557 0 R /Im512 555 0 R /Im513 556 0 R /Im497 540 0 R /Im523 566 0 R /Im499 542 0 R /Im497 540 0 R /Im519 562 0 R /Im515 558 0 R /Im496 539 0 R /Im496 539 0 R /Im517 560 0 R /Im513 556 0 R /Im505 548 0 R /Im499 542 0 R /Im512 555 0 R /Im513 556 0 R /Im491 534 0 R /Im497 540 0 R /Im494 537 0 R /Im57 64 0 R /Im342 363 0 R /Im282 301 0 R /Im342 363 0 R /Im284 303 0 R /Im87 94 0 R /Im342 363 0 R /Im472 511 0 R /Im75 82 0 R /Im362 387 0 R /Im362 387 0 R /Im57 64 0 R /Im342 363 0 R /Im479 520 0 R /Im479 520 0 R /Im473 512 0 R /Im78 85 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 576 0 R +>> +endobj +576 0 obj +<< +/Length 1137 0 R +/Filter /FlateDecode +>> +stream +x¥]É䯽÷WÔÑ>L5sOú8°Ìe`Ã:ê2#µ-µ«Âüý0¬"ó=ò Bç[FÆþòáo·_>Ûï~ùàîÉ·á>íïx·~¸7Þ]²·Ã=ù|ûúÿãÛúð· û×Ì¿ïïÉ͹Mòvüx7Ý\ìݸn£¼~4ÒúójëõËLôw¶ãé& HÚÂÝf¸¼n`;ÞutóúÙ/|wÝúîî7ëOÊø¼ Çe|èÇ¿üeühÑø¨Òxs6û·÷TÎ?þôKÛñ¾ï±Ì2¤»·d´ÆØ+@á5ð?Ê +h¶~xP«?kG´~w~&?ÖI~ü=ÄíøÂ;Y ~¼ã´`Ö#N¾ßÿ~uÿ?ýÐÉß×ßñÉ¿ üÓóQ:¿¿{¿?KÍ~Lüx¿Û?Ó?5ýcMñÀæøügd{ù§ëáòT~qÃÓ~¾ØÛ) �÷ +hï9o N"á[ð¢N¥ñtÿv/ |:«]LM£ñeGÎ `¼ +¸5uÿß tÍë·|o ÔÉS`çíÅ´ò/½ð'çÈ£óoÇWh}ßîó/ À�$Ù�¸¤ ì�º.àÞ¤ëgÍw ¸~ýÜÉ/Õ1KúÃäÇïÉÂEù©ã Ôßn<³_Þh³_Þýb¸·NºÀüøÉþiØvü,?Ó®îÑtò;�n=Y$¼*Ðf: ìwP'M0�lË:ÁdB±�<ÂbçÄÍ8°ò¬è.Ql|Làµî`²bc§Ea�bÉLàÇÎ";Pì°²¹w¤M'±ó¡ MÂ'dd6É~°qà&Ú /Eó±òzLM¬Æ`zU</c?ç4¡ÁÄF½;×&Hà~÷ÁVë<Wm\!àEc;9xĤòs/rà^0Zx)&ðÄ1!90àQ¹`¨qíÀNN½´&Ö8MmçÕw¡Á¢,4kFm̨ÈFO?"ÐÅ¢ÜÉ}Û¹§ í»V½kù-¹q-$Ùk]#ëklhuÞ5J&Í® ÕµYï(ÒÖU)iÿ\?×»66Öàîj}íiö¡Áþ§UÝýú§{ZÙT&ÓÍ´÷´¢±±ýz×ÅlËøK\CìÚÚ]ÓOm=Î?&þÛ« >í?Ë 6D?FIþXlÎÖ±i0üòÐJ^ö¿ZaÞ³vñ&öôiêE®`ÎEþÿÉM¸>àìM¸�]!`?zøAÅÀýãÐÛÃ{. /ÁÕ>¸Á'ê[Ö#Lïv¾!vGàá ÝÁý»æp>6àÝêòsà +ÀS5®Æë�OyÕ(ë{bLÕø|aMâú`3Éô�stÅ 2¹ñõþO¼&eü@EÖ1ñ½cñµpýë�á`ßâ_y(ü£�ñàü=ÀFX%þQ'ÌFþ kñùõøî`¸ui¾×ò.qòñF?êûô§w© ïÄPúH?þ!Kôç/í:Ñ1¡ñºü¦ ÚòÌN²þÒØß^~�óù/ãcË#â*ý¡ýÓãón@öG·¿Ë#àÀþÒõ¡ýC _3ÚýÇñQ·Ø}|às/öóÊ#Ò9Í~p|êï |´ÉÙ}Ä3û»<ïòö-û夿N¿îÏôN¢}Ä&sñþ«úígo¨þeä¿)úWÏ(?DGûÿêFÄÝÿñ¢ýcþ7H~{ÿ·?jù!ëý Ù¿ ú#ß_Û/Y~¼Cþ¢ý°àåôÿeÿË{ÿöYº?ýó¢ý£øtÒû¥ßVXq5>N�.9OÑ}?ß= ÁX ãQ ÐjÁ#^QÈÂPî2Mp�¥`~I³^M�0zºnv ?ÃÓ�'�~¸Ít È�·.Æ ]Ò ã\ÈÉã==&0¯ñ\+òlVQÞ±ÛÁÍÀæ:¼\Ò £íÉAGHr@qÉl2K3XÍÍKÒ#ä'½}²ñur²GIÚh°µ-i#¸=â�¸YámÙ"Ó¯VY¤ôs,HD¢G6ÑêÊGmÌ"Ùdß³H6a]�d§°Mi7_ ånÙ8èDÜkTG|3Îp¾ÁÀDC£9H3T{eÕ}¹ÛÐü0Ó%D1ËÑtÃÙ6E@?ÙAQ\ÞÁdAæÍ:mî½ÄÙÆ(EcÂÊ!DÉ*NesÝÀëxSQ¬Î9°Õ± 6A¯ÃÌ?iÂÃ"N'Ú.<Tê|RI@&FQPF4)¢&D$Eg�×d´ ¶hG£á<}²<hàéä�=·*Jy=@' pë4þ,ÜúCµ$«õ³^ÏÙàÖõY=Q)(mç¿ROWÞ9çò4þR=fËYZÙnMËþÏ¥ã·Gë£p)«gpÙ~(ÜÃU¦Á«õûpå«çºÈ;ÿ±{´ñyÙÿ«õø(¥kÀúÝk)µ¤@¯²�Q¼Ì@>ÞÉÇÒx^$¢xU°`}Êô3ñáJ=VIºTèOñÖ8J'=:ÉÑÚÿA{Àôñfª?ÙJúCñþõ¯ÔCÚQ»�(ÿG/òù/ÇÛÝàüëõÐ�À»Ì éÅ{Z=ð4]ðÖ~ý[âE6¿Å¿¥ôo(I@ÿ�ý ýZ¾Ê!ýÈù[¾ÊÅûÃÄýþXðÒ÷ñû£<!4ù%I¿-é|uxà@|ìÞrÀ¼ôðüD~FM~èþÇ(íÿ°õ¢ü-xëü°ûß·"÷?¯'Uh·"Z¿¼ oÙ/oß»¼Óî×féüïôèÔûOT~¼æ¿RúÍÿ¦ûÿr¾£á-ÿÇGþDþõû>EÉÿ£ùºÍÿü+ùb¦õCÆïë.º1íþZ×nLË÷9X¿åKÀ¶÷C)ÞÙ¹¿èú)ë�H Ï/øuÿ¹Êÿ´ÿ+õø×uûëñK�ãÆzüCwE�¨àdRýÚNp)Y `¼ýaeoÅ77ÈXÁxs§b1ûE&ªGx :Êì,<Àú ²æ YDÛyÛ£ràGMh rðp]BÒäî "I<Sñô*è ãÉBeÙÖ`%:<¹$°¯Tôdà ^eò<©ÂîÇIÀÝÁXQÍdxÒȨ'«"[/6ù�Ù"ÀyÒp¢èdKw laé˰^¥�ÖZ§Äµ@'D|¨Hä Ñx¯O %cºàsæådÐQ£#t2}¼6x²Lð<¹ÞÀyxòh}O �ïÀeü;ðäfü x2/û¿O:°þxrÎ^Óï<<¹^ÿ<ßâqîßá¿Ý&øÏ«9ô?פ:d¶Ñ/D7 ºW«èO[8#ñ¢3.HòKÑ17"ú§U¢õÏT`ýcA`ýà�ýÕáÅÞ86@û=i¬�)ý[9($ ^Î\Ë¡6ëë +4¦£$¼U[ÃNR Êÿ1 +LàÁHüãð&¢ß xs@à¼Ù.àt ³öâ¼.'=Þ?i÷êÐú¨Ý+¾�KOådù9t#?z~NéwûxÆÏòs¬xQ»(> + Ø |5ei<ǵ +à¨`ú© bÇ/þWøçæ¶ü;ôµ7àFôÈ 7Ï7ÌndN`6mùjG4Adn¼wè0i4\uxzÃUoÎ4\õ²QMú0À#èMgSi@$±J"ecDÙËÉ|pjðÉ©GÀ5y¾DGÓü ÙÉcl,Ǧå.Y5 3à³�V±µj³ðANý£ÅULË^KlÁmb +¸J]ÈJlhvÐØÒÏÈä\¹.¹Mͺ[�TÀð 2 ϧ!êéZ)Aò0]jxJe¦tº!Þî@°hÂÙ ùùêò¥Ú Û\ÛÐÌQ;gãÙ qõAè>A@?JЫñcÚÉ}ÍÀêÒk +É ¶!¨$C´ÛZÅûÖ$@jLB㪤$\"Üiu�A 7î´�ú=³Úîp=^ÿ ©éïÇëãÏyú9 õ�kó(Ög={MMßÜпÏÒ§JÛÔõ÷Ûåà÷}i¿>¯Ò'Iº=¯Vë÷Ï+à+nÓÑø#Ü`îWX¯¡ún4B\óÏ@|-½ڿRÚú%¢õOô´F ³0P µî#Ø¿Þ/ÓÖ~_ógë·¨)p{ø'7½n¤[¯¯çßµÒmÎ/xó-Âøê_ÿ?¥ßd°«òÏìPþuþ×üÏËüOQâ?µéMû5úñ�¹Y.À+ù¶ö« )í"l´þ 6}?϶GÉþÐøàôG£~ùÞzýÞ çMß³$?4>jýÑó¿[Êÿi¿>çÞÒÒÇàýiý¯ê{±¿â»5kñØÿ �C{¬Æë{éa Ù6>HöÖïE(¿ÂÜâûý©ü¤QÖïÑç'ú¤?ü{xÒ_\ï_ ®âýõ5bý$?ô{r <´ß¬_$¢¿aÑúEÙZR¿§wìÿât«_ZÓð¼À|qV ¸!ù(D::¨Aòg+üر'°ñ`¯|¶ÆèɤU0]õàý»çÁÓ1K7Õ ÖW4èù%>å@pá<¸¤/ãG½¦ `¦ñW*ÐL»ÁÖãõOÊ·ì`<@Ôùõù{þQ,!UýñRµýúgbí ++î¸F-5Hâä«+£_DèÚWWÆ,ñà0Z Ê}² FmÃ@êjþZ¸ßk!dÒúìÃì¦Öqñ{fçu|¾»upì0Í\í_ÿ®¯©O;Ï¿Û2,ã÷ü(ÛAÃiíüù} >¥ÏP>tpEÿp"iÁþOÄ!x~¶ùôãqÐÆëHA +¬òq äÇþú;t~ þ5×À¼Õø>ÑÇߤ¿Ïýi)4ùêxÛÇ'7üÓ¿; ý?¾·$ +¯éàp6>Hãùwk´ýóDc#ÚOöñËF¿$Q4¿~x½~æ³ï¦Dã&ÿ/q=ÑxH~åïV-qÌö³}wæØ~bý[âúÇ?é$ù£qØÚGdcÿd¨ìõû×q g¡ýq}GÿZ¥cý#?uHþN|üÔkþï£Àýq"ýPú(´8¨ìÕ¿î=T¾[£È/åþþñÖ¨Éÿî ¿þyÖkþÉQ×*ÝÖãeÿ§õqºÌ¿1Hü£QÁûßÿnαÿÄÆCÿIþn_饸4hòE,~ÐnÐϪô#Q,h¿OÄ_ì÷ÿûB:Þ¡û¯Og¤}Z"ÕýäßÍñïÏEÍ"ÿ¢¨ßoKõ´ü¶ÔlĽÒÖ§A¤á_òoÝÛO=~ÑÞ?%ÏÿJü¡½¦ñûñHkÐj|ÿ0ý)¬ûñ(¡$µ÷Çj¼®ÿå{=mý}þã>Küh5}7ûß&{D=k"ãzý}üÒ¾ªÓüe Îôq +Ë .öqÀ§ú8ÕêÍ'ú8å9+~s}Â\0Mp±Ó�p¢äÂp¢S½ÈË tSÒä÷q²p½RÀ¨D¹ö ÙrAøzXâüóBÄ×2`(OæPeÞÇ ÑàÌ'2DðÉ%VæS¾$,R_æ³Z&J"Ï-&`öÀM&M²LÝuA®,í©ôºAW¿_v(Hô{Eé mtüóØ&VLMä±¥QÓV7èZýèfΤñ^NþZ/'ïw�àEúÅ$ßn6wTïEvðb¯í`rgè.~³)`¨Þ '`(µµ`lu¹ÈÔÞó»`%»olÒÔ,ÅeMÍÈÙhP9Îá=9ÊÒRl¬aþ ä\ Ö¯û 3g4ßg<ýÿòÃÇ/ÌÍܾüÇt/§?Ë?¾üab·ã4]HÓÿùæöÿüéöýw_úñ·OºýõÏ_Ü~þõ§oþ÷ëOßÜþûÿnýûçï¾ÿþöÕ¾þê·/î·¿÷é~ý|û·Û·?ÿü§ÿý÷ûço¿ûíþã§Ï¿2)þã×ÿúñ_þ»ûùïÿxûò>üåËiwÿB³iY +endstream +endobj +577 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1138 0 R +/Name /Im532 +/Width 35 +/Height 52 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÏ1!ÐO¦ ä),¼ Õr`¹1jÆXØyo0Gá[lèLÈ#a ÿ¤ + ¬¤ÍX¢&EÙ!&çä,+.´3©$lPS³d¢Îs Ùä¥Yå¢òAAØð`6FÏF¢×HFX�~ÃÿóÙYüe(ÄX8*"+sí Ü_çÏn¸w]±ä¾¢¥ÞP¥³|èêAûãõ{øGc +endstream +endobj +578 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1139 0 R +/Name /Im533 +/Width 50 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÁ à E?âÀ²C+õÊ`Bfê%#pä ßvS é!Û|þ7Âc"Q @ÚÐ ÙÀ,l,ûë }M~pMß8ìªÖ )ø +_á\EÄÓ=Ч8 +ZìÇ]!ñÐwê±á&(!Ò'¶+ÒDÕ\~"ë_'VU¿Ä@]Ûôïº +Íö8l«ÃL?ïÏëS*fo +endstream +endobj +579 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1140 0 R +/Name /Im534 +/Width 53 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUб Ä ÐRP2C®¹&D2ÓMÀ(!e +îÛF@ +xl°¯µf Ó(�ÖÝÝ +6#îçYñä ±01ua®»:eÆ=¹fÜ7ð§¾ì;aâÐC##ذ6bïf$]IÍíÉ[É~àÖK¤ÁÚLAx~ 9W(ÜÃûõý}þðÕc +endstream +endobj +580 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F1 +/BaseFont /Times-Roman +/Encoding 581 0 R +/FirstChar 0 +/LastChar 255 +>> +endobj +581 0 obj +<< +/Type /Encoding +/BaseEncoding /MacRomanEncoding +/Differences [ 128 /.notdef /.notdef /quotesinglbase /florin /quotedblbase /ellipsis /dagger /daggerdbl /circumflex /perthousand /Scaron /guilsinglleft /OE /.notdef /.notdef /.notdef /.notdef /quoteleft /quoteright /quotedblleft /quotedblright /bullet /endash /emdash /tilde /trademark /scaron /guilsinglright /oe /.notdef /.notdef /Ydieresis /space /exclamdown 164 /currency /yen /brokenbar /section /dieresis 170 /ordfeminine /guillemotleft /logicalnot /hyphen /registered /overscore /degree 178 /twosuperior /threesuperior /acute /mu1 /paragraph /periodcentered /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf /threequarters /questiondown /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis ] +>> +endobj +582 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F2 +/BaseFont /Times-Italic +/Encoding 583 0 R +/FirstChar 0 +/LastChar 255 +>> +endobj +583 0 obj +<< +/Type /Encoding +/BaseEncoding /MacRomanEncoding +/Differences [ 128 /.notdef /.notdef /quotesinglbase /florin /quotedblbase /ellipsis /dagger /daggerdbl /circumflex /perthousand /Scaron /guilsinglleft /OE /.notdef /.notdef /.notdef /.notdef /quoteleft /quoteright /quotedblleft /quotedblright /bullet /endash /emdash /tilde /trademark /scaron /guilsinglright /oe /.notdef /.notdef /Ydieresis /space /exclamdown 164 /currency /yen /brokenbar /section /dieresis 170 /ordfeminine /guillemotleft /logicalnot /hyphen /registered /overscore /degree 178 /twosuperior /threesuperior /acute /mu1 /paragraph /periodcentered /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf /threequarters /questiondown /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis ] +>> +endobj +584 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F3 +/BaseFont /Times-Roman +/Encoding 585 0 R +/FirstChar 0 +/LastChar 255 +>> +endobj +585 0 obj +<< +/Type /Encoding +/BaseEncoding /MacRomanEncoding +/Differences [ 128 /grave /acute /circumflex /tilde /macron /breve /dotaccent /dieresis /ring /cedilla /hungarumlaut /ogonek /caron /.notdef /.notdef /.notdef /dotlessi /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /oe /OE /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /space /exclamdown 164 /currency /yen /brokenbar /section /dieresis 170 /ordfeminine /guillemotleft /logicalnot /endash /registered /macron /degree 178 /twosuperior /threesuperior /acute 182 /paragraph /periodcentered /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf /threequarters /questiondown /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis ] +>> +endobj +586 0 obj +<< +/CreationDate (Sat Oct 13 15:27:03 2001) +/Producer (PStill 1.55 UNREGISTERED by F.Siegert frank@this.net) +/Title (main_dvi) +>> +endobj +587 0 obj +14302 +endobj +588 0 obj +112 +endobj +589 0 obj +99 +endobj +590 0 obj +151 +endobj +591 0 obj +154 +endobj +592 0 obj +260 +endobj +593 0 obj +65 +endobj +594 0 obj +171 +endobj +595 0 obj +33 +endobj +596 0 obj +169 +endobj +597 0 obj +185 +endobj +598 0 obj +111 +endobj +599 0 obj +113 +endobj +600 0 obj +169 +endobj +601 0 obj +115 +endobj +602 0 obj +159 +endobj +603 0 obj +179 +endobj +604 0 obj +150 +endobj +605 0 obj +166 +endobj +606 0 obj +110 +endobj +607 0 obj +166 +endobj +608 0 obj +49 +endobj +609 0 obj +109 +endobj +610 0 obj +82 +endobj +611 0 obj +127 +endobj +612 0 obj +114 +endobj +613 0 obj +33 +endobj +614 0 obj +133 +endobj +615 0 obj +77 +endobj +616 0 obj +65 +endobj +617 0 obj +110 +endobj +618 0 obj +147 +endobj +619 0 obj +105 +endobj +620 0 obj +159 +endobj +621 0 obj +139 +endobj +622 0 obj +105 +endobj +623 0 obj +108 +endobj +624 0 obj +117 +endobj +625 0 obj +58 +endobj +626 0 obj +97 +endobj +627 0 obj +76 +endobj +628 0 obj +32 +endobj +629 0 obj +66 +endobj +630 0 obj +64 +endobj +631 0 obj +42 +endobj +632 0 obj +65 +endobj +633 0 obj +113 +endobj +634 0 obj +107 +endobj +635 0 obj +107 +endobj +636 0 obj +210 +endobj +637 0 obj +133 +endobj +638 0 obj +92 +endobj +639 0 obj +99 +endobj +640 0 obj +66 +endobj +641 0 obj +90 +endobj +642 0 obj +150 +endobj +643 0 obj +125 +endobj +644 0 obj +51 +endobj +645 0 obj +107 +endobj +646 0 obj +155 +endobj +647 0 obj +141 +endobj +648 0 obj +154 +endobj +649 0 obj +106 +endobj +650 0 obj +102 +endobj +651 0 obj +69 +endobj +652 0 obj +65 +endobj +653 0 obj +110 +endobj +654 0 obj +102 +endobj +655 0 obj +29 +endobj +656 0 obj +71 +endobj +657 0 obj +27 +endobj +658 0 obj +68 +endobj +659 0 obj +99 +endobj +660 0 obj +135 +endobj +661 0 obj +115 +endobj +662 0 obj +21 +endobj +663 0 obj +102 +endobj +664 0 obj +154 +endobj +665 0 obj +19 +endobj +666 0 obj +123 +endobj +667 0 obj +124 +endobj +668 0 obj +19 +endobj +669 0 obj +108 +endobj +670 0 obj +83 +endobj +671 0 obj +84 +endobj +672 0 obj +150 +endobj +673 0 obj +151 +endobj +674 0 obj +25 +endobj +675 0 obj +158 +endobj +676 0 obj +67 +endobj +677 0 obj +136 +endobj +678 0 obj +51 +endobj +679 0 obj +34 +endobj +680 0 obj +90 +endobj +681 0 obj +94 +endobj +682 0 obj +85 +endobj +683 0 obj +135 +endobj +684 0 obj +143 +endobj +685 0 obj +91 +endobj +686 0 obj +135 +endobj +687 0 obj +57 +endobj +688 0 obj +74 +endobj +689 0 obj +140 +endobj +690 0 obj +157 +endobj +691 0 obj +32 +endobj +692 0 obj +115 +endobj +693 0 obj +73 +endobj +694 0 obj +103 +endobj +695 0 obj +106 +endobj +696 0 obj +68 +endobj +697 0 obj +154 +endobj +698 0 obj +117 +endobj +699 0 obj +124 +endobj +700 0 obj +24 +endobj +701 0 obj +19 +endobj +702 0 obj +141 +endobj +703 0 obj +117 +endobj +704 0 obj +117 +endobj +705 0 obj +148 +endobj +706 0 obj +121 +endobj +707 0 obj +54 +endobj +708 0 obj +114 +endobj +709 0 obj +125 +endobj +710 0 obj +133 +endobj +711 0 obj +95 +endobj +712 0 obj +133 +endobj +713 0 obj +100 +endobj +714 0 obj +111 +endobj +715 0 obj +111 +endobj +716 0 obj +144 +endobj +717 0 obj +140 +endobj +718 0 obj +104 +endobj +719 0 obj +119 +endobj +720 0 obj +80 +endobj +721 0 obj +21 +endobj +722 0 obj +169 +endobj +723 0 obj +45 +endobj +724 0 obj +110 +endobj +725 0 obj +158 +endobj +726 0 obj +168 +endobj +727 0 obj +127 +endobj +728 0 obj +20 +endobj +729 0 obj +123 +endobj +730 0 obj +97 +endobj +731 0 obj +101 +endobj +732 0 obj +113 +endobj +733 0 obj +25 +endobj +734 0 obj +120 +endobj +735 0 obj +25 +endobj +736 0 obj +226 +endobj +737 0 obj +143 +endobj +738 0 obj +178 +endobj +739 0 obj +155 +endobj +740 0 obj +54 +endobj +741 0 obj +161 +endobj +742 0 obj +122 +endobj +743 0 obj +13066 +endobj +744 0 obj +95 +endobj +745 0 obj +159 +endobj +746 0 obj +184 +endobj +747 0 obj +129 +endobj +748 0 obj +138 +endobj +749 0 obj +150 +endobj +750 0 obj +33 +endobj +751 0 obj +194 +endobj +752 0 obj +144 +endobj +753 0 obj +182 +endobj +754 0 obj +43 +endobj +755 0 obj +67 +endobj +756 0 obj +147 +endobj +757 0 obj +182 +endobj +758 0 obj +109 +endobj +759 0 obj +179 +endobj +760 0 obj +127 +endobj +761 0 obj +29 +endobj +762 0 obj +32 +endobj +763 0 obj +97 +endobj +764 0 obj +110 +endobj +765 0 obj +145 +endobj +766 0 obj +24 +endobj +767 0 obj +169 +endobj +768 0 obj +18 +endobj +769 0 obj +119 +endobj +770 0 obj +94 +endobj +771 0 obj +190 +endobj +772 0 obj +193 +endobj +773 0 obj +151 +endobj +774 0 obj +71 +endobj +775 0 obj +155 +endobj +776 0 obj +105 +endobj +777 0 obj +111 +endobj +778 0 obj +129 +endobj +779 0 obj +75 +endobj +780 0 obj +182 +endobj +781 0 obj +113 +endobj +782 0 obj +185 +endobj +783 0 obj +130 +endobj +784 0 obj +154 +endobj +785 0 obj +132 +endobj +786 0 obj +160 +endobj +787 0 obj +220 +endobj +788 0 obj +112 +endobj +789 0 obj +158 +endobj +790 0 obj +112 +endobj +791 0 obj +127 +endobj +792 0 obj +107 +endobj +793 0 obj +291 +endobj +794 0 obj +83 +endobj +795 0 obj +27 +endobj +796 0 obj +163 +endobj +797 0 obj +119 +endobj +798 0 obj +106 +endobj +799 0 obj +117 +endobj +800 0 obj +216 +endobj +801 0 obj +167 +endobj +802 0 obj +155 +endobj +803 0 obj +26 +endobj +804 0 obj +112 +endobj +805 0 obj +115 +endobj +806 0 obj +38 +endobj +807 0 obj +173 +endobj +808 0 obj +106 +endobj +809 0 obj +16222 +endobj +810 0 obj +21 +endobj +811 0 obj +64 +endobj +812 0 obj +61 +endobj +813 0 obj +157 +endobj +814 0 obj +149 +endobj +815 0 obj +73 +endobj +816 0 obj +42 +endobj +817 0 obj +64 +endobj +818 0 obj +137 +endobj +819 0 obj +134 +endobj +820 0 obj +85 +endobj +821 0 obj +115 +endobj +822 0 obj +170 +endobj +823 0 obj +52 +endobj +824 0 obj +80 +endobj +825 0 obj +16992 +endobj +826 0 obj +177 +endobj +827 0 obj +89 +endobj +828 0 obj +195 +endobj +829 0 obj +112 +endobj +830 0 obj +142 +endobj +831 0 obj +18458 +endobj +832 0 obj +131 +endobj +833 0 obj +218 +endobj +834 0 obj +223 +endobj +835 0 obj +110 +endobj +836 0 obj +161 +endobj +837 0 obj +15518 +endobj +838 0 obj +109 +endobj +839 0 obj +31 +endobj +840 0 obj +46 +endobj +841 0 obj +171 +endobj +842 0 obj +75 +endobj +843 0 obj +103 +endobj +844 0 obj +117 +endobj +845 0 obj +51 +endobj +846 0 obj +110 +endobj +847 0 obj +85 +endobj +848 0 obj +116 +endobj +849 0 obj +125 +endobj +850 0 obj +73 +endobj +851 0 obj +71 +endobj +852 0 obj +114 +endobj +853 0 obj +128 +endobj +854 0 obj +150 +endobj +855 0 obj +177 +endobj +856 0 obj +75 +endobj +857 0 obj +178 +endobj +858 0 obj +180 +endobj +859 0 obj +95 +endobj +860 0 obj +13800 +endobj +861 0 obj +178 +endobj +862 0 obj +144 +endobj +863 0 obj +177 +endobj +864 0 obj +196 +endobj +865 0 obj +100 +endobj +866 0 obj +218 +endobj +867 0 obj +92 +endobj +868 0 obj +142 +endobj +869 0 obj +159 +endobj +870 0 obj +140 +endobj +871 0 obj +168 +endobj +872 0 obj +32 +endobj +873 0 obj +93 +endobj +874 0 obj +131 +endobj +875 0 obj +106 +endobj +876 0 obj +19 +endobj +877 0 obj +107 +endobj +878 0 obj +154 +endobj +879 0 obj +89 +endobj +880 0 obj +18 +endobj +881 0 obj +119 +endobj +882 0 obj +136 +endobj +883 0 obj +69 +endobj +884 0 obj +181 +endobj +885 0 obj +43 +endobj +886 0 obj +181 +endobj +887 0 obj +140 +endobj +888 0 obj +76 +endobj +889 0 obj +49 +endobj +890 0 obj +30 +endobj +891 0 obj +109 +endobj +892 0 obj +59 +endobj +893 0 obj +147 +endobj +894 0 obj +119 +endobj +895 0 obj +99 +endobj +896 0 obj +218 +endobj +897 0 obj +80 +endobj +898 0 obj +70 +endobj +899 0 obj +99 +endobj +900 0 obj +151 +endobj +901 0 obj +108 +endobj +902 0 obj +88 +endobj +903 0 obj +71 +endobj +904 0 obj +73 +endobj +905 0 obj +84 +endobj +906 0 obj +147 +endobj +907 0 obj +47 +endobj +908 0 obj +12300 +endobj +909 0 obj +87 +endobj +910 0 obj +81 +endobj +911 0 obj +81 +endobj +912 0 obj +164 +endobj +913 0 obj +111 +endobj +914 0 obj +42 +endobj +915 0 obj +96 +endobj +916 0 obj +74 +endobj +917 0 obj +56 +endobj +918 0 obj +120 +endobj +919 0 obj +137 +endobj +920 0 obj +83 +endobj +921 0 obj +127 +endobj +922 0 obj +107 +endobj +923 0 obj +131 +endobj +924 0 obj +97 +endobj +925 0 obj +118 +endobj +926 0 obj +95 +endobj +927 0 obj +51 +endobj +928 0 obj +113 +endobj +929 0 obj +106 +endobj +930 0 obj +99 +endobj +931 0 obj +56 +endobj +932 0 obj +122 +endobj +933 0 obj +76 +endobj +934 0 obj +132 +endobj +935 0 obj +120 +endobj +936 0 obj +51 +endobj +937 0 obj +176 +endobj +938 0 obj +26 +endobj +939 0 obj +42 +endobj +940 0 obj +63 +endobj +941 0 obj +191 +endobj +942 0 obj +60 +endobj +943 0 obj +143 +endobj +944 0 obj +17326 +endobj +945 0 obj +156 +endobj +946 0 obj +160 +endobj +947 0 obj +144 +endobj +948 0 obj +127 +endobj +949 0 obj +145 +endobj +950 0 obj +106 +endobj +951 0 obj +152 +endobj +952 0 obj +121 +endobj +953 0 obj +199 +endobj +954 0 obj +16726 +endobj +955 0 obj +141 +endobj +956 0 obj +119 +endobj +957 0 obj +98 +endobj +958 0 obj +135 +endobj +959 0 obj +94 +endobj +960 0 obj +29 +endobj +961 0 obj +105 +endobj +962 0 obj +115 +endobj +963 0 obj +155 +endobj +964 0 obj +112 +endobj +965 0 obj +30 +endobj +966 0 obj +133 +endobj +967 0 obj +160 +endobj +968 0 obj +37 +endobj +969 0 obj +93 +endobj +970 0 obj +19175 +endobj +971 0 obj +117 +endobj +972 0 obj +111 +endobj +973 0 obj +31 +endobj +974 0 obj +36 +endobj +975 0 obj +87 +endobj +976 0 obj +56 +endobj +977 0 obj +97 +endobj +978 0 obj +51 +endobj +979 0 obj +94 +endobj +980 0 obj +223 +endobj +981 0 obj +27 +endobj +982 0 obj +61 +endobj +983 0 obj +133 +endobj +984 0 obj +12315 +endobj +985 0 obj +136 +endobj +986 0 obj +112 +endobj +987 0 obj +155 +endobj +988 0 obj +129 +endobj +989 0 obj +14712 +endobj +990 0 obj +171 +endobj +991 0 obj +289 +endobj +992 0 obj +146 +endobj +993 0 obj +132 +endobj +994 0 obj +166 +endobj +995 0 obj +77 +endobj +996 0 obj +180 +endobj +997 0 obj +168 +endobj +998 0 obj +158 +endobj +999 0 obj +165 +endobj +1000 0 obj +13490 +endobj +1001 0 obj +80 +endobj +1002 0 obj +80 +endobj +1003 0 obj +169 +endobj +1004 0 obj +70 +endobj +1005 0 obj +154 +endobj +1006 0 obj +94 +endobj +1007 0 obj +30 +endobj +1008 0 obj +124 +endobj +1009 0 obj +185 +endobj +1010 0 obj +74 +endobj +1011 0 obj +79 +endobj +1012 0 obj +121 +endobj +1013 0 obj +255 +endobj +1014 0 obj +85 +endobj +1015 0 obj +192 +endobj +1016 0 obj +151 +endobj +1017 0 obj +68 +endobj +1018 0 obj +66 +endobj +1019 0 obj +21 +endobj +1020 0 obj +69 +endobj +1021 0 obj +21 +endobj +1022 0 obj +70 +endobj +1023 0 obj +70 +endobj +1024 0 obj +17920 +endobj +1025 0 obj +92 +endobj +1026 0 obj +139 +endobj +1027 0 obj +179 +endobj +1028 0 obj +203 +endobj +1029 0 obj +143 +endobj +1030 0 obj +40 +endobj +1031 0 obj +205 +endobj +1032 0 obj +67 +endobj +1033 0 obj +122 +endobj +1034 0 obj +137 +endobj +1035 0 obj +32 +endobj +1036 0 obj +127 +endobj +1037 0 obj +68 +endobj +1038 0 obj +90 +endobj +1039 0 obj +55 +endobj +1040 0 obj +87 +endobj +1041 0 obj +16275 +endobj +1042 0 obj +118 +endobj +1043 0 obj +88 +endobj +1044 0 obj +113 +endobj +1045 0 obj +105 +endobj +1046 0 obj +92 +endobj +1047 0 obj +86 +endobj +1048 0 obj +71 +endobj +1049 0 obj +84 +endobj +1050 0 obj +80 +endobj +1051 0 obj +57 +endobj +1052 0 obj +112 +endobj +1053 0 obj +62 +endobj +1054 0 obj +167 +endobj +1055 0 obj +132 +endobj +1056 0 obj +140 +endobj +1057 0 obj +110 +endobj +1058 0 obj +119 +endobj +1059 0 obj +14782 +endobj +1060 0 obj +117 +endobj +1061 0 obj +111 +endobj +1062 0 obj +65 +endobj +1063 0 obj +112 +endobj +1064 0 obj +124 +endobj +1065 0 obj +29 +endobj +1066 0 obj +118 +endobj +1067 0 obj +64 +endobj +1068 0 obj +85 +endobj +1069 0 obj +48 +endobj +1070 0 obj +143 +endobj +1071 0 obj +24 +endobj +1072 0 obj +107 +endobj +1073 0 obj +153 +endobj +1074 0 obj +109 +endobj +1075 0 obj +103 +endobj +1076 0 obj +137 +endobj +1077 0 obj +269 +endobj +1078 0 obj +129 +endobj +1079 0 obj +15902 +endobj +1080 0 obj +76 +endobj +1081 0 obj +157 +endobj +1082 0 obj +245 +endobj +1083 0 obj +134 +endobj +1084 0 obj +133 +endobj +1085 0 obj +136 +endobj +1086 0 obj +134 +endobj +1087 0 obj +181 +endobj +1088 0 obj +153 +endobj +1089 0 obj +18512 +endobj +1090 0 obj +166 +endobj +1091 0 obj +114 +endobj +1092 0 obj +82 +endobj +1093 0 obj +51 +endobj +1094 0 obj +169 +endobj +1095 0 obj +186 +endobj +1096 0 obj +102 +endobj +1097 0 obj +94 +endobj +1098 0 obj +142 +endobj +1099 0 obj +95 +endobj +1100 0 obj +142 +endobj +1101 0 obj +144 +endobj +1102 0 obj +135 +endobj +1103 0 obj +177 +endobj +1104 0 obj +117 +endobj +1105 0 obj +173 +endobj +1106 0 obj +103 +endobj +1107 0 obj +21 +endobj +1108 0 obj +133 +endobj +1109 0 obj +164 +endobj +1110 0 obj +98 +endobj +1111 0 obj +49 +endobj +1112 0 obj +174 +endobj +1113 0 obj +155 +endobj +1114 0 obj +179 +endobj +1115 0 obj +163 +endobj +1116 0 obj +82 +endobj +1117 0 obj +95 +endobj +1118 0 obj +109 +endobj +1119 0 obj +131 +endobj +1120 0 obj +128 +endobj +1121 0 obj +108 +endobj +1122 0 obj +93 +endobj +1123 0 obj +54 +endobj +1124 0 obj +145 +endobj +1125 0 obj +105 +endobj +1126 0 obj +128 +endobj +1127 0 obj +131 +endobj +1128 0 obj +132 +endobj +1129 0 obj +142 +endobj +1130 0 obj +22 +endobj +1131 0 obj +86 +endobj +1132 0 obj +153 +endobj +1133 0 obj +164 +endobj +1134 0 obj +211 +endobj +1135 0 obj +118 +endobj +1136 0 obj +92 +endobj +1137 0 obj +5252 +endobj +1138 0 obj +174 +endobj +1139 0 obj +162 +endobj +1140 0 obj +147 +endobj +xref +0 1141 +0000000000 65535 f +0000000015 00000 n +0000000112 00000 n +0000000158 00000 n +0000000396 00000 n +0000000435 00000 n +0000000457 00000 n +0000028442 00000 n +0000042820 00000 n +0000043121 00000 n +0000043409 00000 n +0000043750 00000 n +0000044095 00000 n +0000044545 00000 n +0000044800 00000 n +0000045161 00000 n +0000045384 00000 n +0000045743 00000 n +0000046119 00000 n +0000046421 00000 n +0000046725 00000 n +0000047085 00000 n +0000047391 00000 n +0000047741 00000 n +0000048111 00000 n +0000048452 00000 n +0000048809 00000 n +0000049110 00000 n +0000049467 00000 n +0000049707 00000 n +0000050007 00000 n +0000050280 00000 n +0000050598 00000 n +0000050903 00000 n +0000051127 00000 n +0000051451 00000 n +0000051719 00000 n +0000051975 00000 n +0000052276 00000 n +0000052614 00000 n +0000052910 00000 n +0000053260 00000 n +0000053590 00000 n +0000053886 00000 n +0000054185 00000 n +0000054493 00000 n +0000054742 00000 n +0000055030 00000 n +0000055297 00000 n +0000055520 00000 n +0000055777 00000 n +0000056032 00000 n +0000056265 00000 n +0000056521 00000 n +0000056825 00000 n +0000057123 00000 n +0000057421 00000 n +0000057822 00000 n +0000058146 00000 n +0000058429 00000 n +0000058719 00000 n +0000058976 00000 n +0000059257 00000 n +0000059598 00000 n +0000059914 00000 n +0000060155 00000 n +0000060453 00000 n +0000060799 00000 n +0000061131 00000 n +0000061476 00000 n +0000061773 00000 n +0000062066 00000 n +0000062326 00000 n +0000062582 00000 n +0000062883 00000 n +0000063176 00000 n +0000063396 00000 n +0000063658 00000 n +0000063876 00000 n +0000064135 00000 n +0000064425 00000 n +0000064751 00000 n +0000065057 00000 n +0000065268 00000 n +0000065561 00000 n +0000065906 00000 n +0000066114 00000 n +0000066428 00000 n +0000066743 00000 n +0000066952 00000 n +0000067251 00000 n +0000067525 00000 n +0000067800 00000 n +0000068141 00000 n +0000068483 00000 n +0000068698 00000 n +0000069047 00000 n +0000069305 00000 n +0000069632 00000 n +0000069874 00000 n +0000070099 00000 n +0000070381 00000 n +0000070667 00000 n +0000070944 00000 n +0000071271 00000 n +0000071606 00000 n +0000071889 00000 n +0000072216 00000 n +0000072466 00000 n +0000072733 00000 n +0000073066 00000 n +0000073416 00000 n +0000073641 00000 n +0000073949 00000 n +0000074215 00000 n +0000074511 00000 n +0000074810 00000 n +0000075071 00000 n +0000075418 00000 n +0000075728 00000 n +0000076045 00000 n +0000076260 00000 n +0000076471 00000 n +0000076805 00000 n +0000077115 00000 n +0000077425 00000 n +0000077766 00000 n +0000078080 00000 n +0000078327 00000 n +0000078634 00000 n +0000078952 00000 n +0000079278 00000 n +0000079566 00000 n +0000079892 00000 n +0000080185 00000 n +0000080489 00000 n +0000080793 00000 n +0000081130 00000 n +0000081463 00000 n +0000081760 00000 n +0000082072 00000 n +0000082345 00000 n +0000082558 00000 n +0000082920 00000 n +0000083158 00000 n +0000083461 00000 n +0000083812 00000 n +0000084173 00000 n +0000084493 00000 n +0000084705 00000 n +0000085021 00000 n +0000085311 00000 n +0000085605 00000 n +0000085911 00000 n +0000086129 00000 n +0000086442 00000 n +0000086660 00000 n +0000087079 00000 n +0000087415 00000 n +0000087786 00000 n +0000088134 00000 n +0000088381 00000 n +0000088735 00000 n +0000089050 00000 n +0000114275 00000 n +0000127419 00000 n +0000127707 00000 n +0000128059 00000 n +0000128436 00000 n +0000128758 00000 n +0000129089 00000 n +0000129432 00000 n +0000129658 00000 n +0000130045 00000 n +0000130382 00000 n +0000130757 00000 n +0000130993 00000 n +0000131253 00000 n +0000131593 00000 n +0000131968 00000 n +0000132270 00000 n +0000132642 00000 n +0000132962 00000 n +0000133183 00000 n +0000133408 00000 n +0000133698 00000 n +0000134001 00000 n +0000134339 00000 n +0000134554 00000 n +0000134916 00000 n +0000135126 00000 n +0000135438 00000 n +0000135725 00000 n +0000136108 00000 n +0000136494 00000 n +0000136838 00000 n +0000137102 00000 n +0000137450 00000 n +0000137748 00000 n +0000138052 00000 n +0000138374 00000 n +0000138642 00000 n +0000139018 00000 n +0000139324 00000 n +0000139702 00000 n +0000140025 00000 n +0000140372 00000 n +0000140697 00000 n +0000141050 00000 n +0000141463 00000 n +0000141768 00000 n +0000142119 00000 n +0000142424 00000 n +0000142744 00000 n +0000143044 00000 n +0000143530 00000 n +0000143806 00000 n +0000144026 00000 n +0000144382 00000 n +0000144694 00000 n +0000144993 00000 n +0000145303 00000 n +0000145712 00000 n +0000146072 00000 n +0000146420 00000 n +0000146638 00000 n +0000146943 00000 n +0000147251 00000 n +0000147482 00000 n +0000147848 00000 n +0000148147 00000 n +0000181376 00000 n +0000197676 00000 n +0000197889 00000 n +0000198146 00000 n +0000198400 00000 n +0000198750 00000 n +0000199092 00000 n +0000199358 00000 n +0000199593 00000 n +0000199850 00000 n +0000200180 00000 n +0000200507 00000 n +0000200785 00000 n +0000201093 00000 n +0000201457 00000 n +0000201702 00000 n +0000201975 00000 n +0000237519 00000 n +0000254589 00000 n +0000254959 00000 n +0000255241 00000 n +0000255629 00000 n +0000255934 00000 n +0000256269 00000 n +0000294696 00000 n +0000313232 00000 n +0000313556 00000 n +0000313967 00000 n +0000314383 00000 n +0000314686 00000 n +0000315040 00000 n +0000344634 00000 n +0000360230 00000 n +0000360532 00000 n +0000360756 00000 n +0000360995 00000 n +0000361359 00000 n +0000361627 00000 n +0000361923 00000 n +0000362233 00000 n +0000362477 00000 n +0000362780 00000 n +0000363058 00000 n +0000363367 00000 n +0000363685 00000 n +0000363951 00000 n +0000364215 00000 n +0000364522 00000 n +0000364843 00000 n +0000365186 00000 n +0000365556 00000 n +0000365824 00000 n +0000366195 00000 n +0000366568 00000 n +0000366856 00000 n +0000393450 00000 n +0000407328 00000 n +0000407699 00000 n +0000408036 00000 n +0000408406 00000 n +0000408795 00000 n +0000409088 00000 n +0000409499 00000 n +0000409784 00000 n +0000410119 00000 n +0000410471 00000 n +0000410804 00000 n +0000411165 00000 n +0000411390 00000 n +0000411676 00000 n +0000412000 00000 n +0000412299 00000 n +0000412509 00000 n +0000412809 00000 n +0000413156 00000 n +0000413438 00000 n +0000413648 00000 n +0000413960 00000 n +0000414289 00000 n +0000414551 00000 n +0000414925 00000 n +0000415160 00000 n +0000415534 00000 n +0000415867 00000 n +0000416136 00000 n +0000416378 00000 n +0000416601 00000 n +0000416903 00000 n +0000417155 00000 n +0000417495 00000 n +0000417807 00000 n +0000418099 00000 n +0000418510 00000 n +0000418783 00000 n +0000419046 00000 n +0000419338 00000 n +0000419682 00000 n +0000419983 00000 n +0000420264 00000 n +0000420528 00000 n +0000420794 00000 n +0000421071 00000 n +0000421411 00000 n +0000421651 00000 n +0000443311 00000 n +0000455689 00000 n +0000455969 00000 n +0000456243 00000 n +0000456517 00000 n +0000456874 00000 n +0000457178 00000 n +0000457413 00000 n +0000457702 00000 n +0000457969 00000 n +0000458218 00000 n +0000458531 00000 n +0000458861 00000 n +0000459137 00000 n +0000459457 00000 n +0000459757 00000 n +0000460081 00000 n +0000460371 00000 n +0000460682 00000 n +0000460970 00000 n +0000461214 00000 n +0000461520 00000 n +0000461819 00000 n +0000462111 00000 n +0000462360 00000 n +0000462675 00000 n +0000462944 00000 n +0000463269 00000 n +0000463582 00000 n +0000463826 00000 n +0000464195 00000 n +0000464413 00000 n +0000464648 00000 n +0000464904 00000 n +0000465289 00000 n +0000465542 00000 n +0000465878 00000 n +0000499360 00000 n +0000516764 00000 n +0000517113 00000 n +0000517466 00000 n +0000517803 00000 n +0000518123 00000 n +0000518461 00000 n +0000518760 00000 n +0000519105 00000 n +0000519419 00000 n +0000519811 00000 n +0000533349 00000 n +0000550153 00000 n +0000550487 00000 n +0000550799 00000 n +0000551090 00000 n +0000551418 00000 n +0000551705 00000 n +0000551926 00000 n +0000552224 00000 n +0000552532 00000 n +0000552880 00000 n +0000553185 00000 n +0000553408 00000 n +0000553734 00000 n +0000554087 00000 n +0000554317 00000 n +0000554603 00000 n +0000591382 00000 n +0000610635 00000 n +0000610945 00000 n +0000611249 00000 n +0000611472 00000 n +0000611701 00000 n +0000611981 00000 n +0000612230 00000 n +0000612520 00000 n +0000612763 00000 n +0000613050 00000 n +0000613466 00000 n +0000613686 00000 n +0000613940 00000 n +0000614266 00000 n +0000636989 00000 n +0000649382 00000 n +0000649711 00000 n +0000650016 00000 n +0000650364 00000 n +0000650686 00000 n +0000678921 00000 n +0000693711 00000 n +0000694075 00000 n +0000694558 00000 n +0000694897 00000 n +0000695222 00000 n +0000695581 00000 n +0000695851 00000 n +0000696224 00000 n +0000696586 00000 n +0000696937 00000 n +0000697296 00000 n +0000723667 00000 n +0000737236 00000 n +0000737510 00000 n +0000737784 00000 n +0000738147 00000 n +0000738411 00000 n +0000738759 00000 n +0000739047 00000 n +0000739271 00000 n +0000739589 00000 n +0000739968 00000 n +0000740236 00000 n +0000740509 00000 n +0000740824 00000 n +0000741273 00000 n +0000741552 00000 n +0000741938 00000 n +0000742283 00000 n +0000742545 00000 n +0000742805 00000 n +0000743019 00000 n +0000743282 00000 n +0000743496 00000 n +0000743760 00000 n +0000744024 00000 n +0000780607 00000 n +0000798606 00000 n +0000798892 00000 n +0000799225 00000 n +0000799598 00000 n +0000799995 00000 n +0000800332 00000 n +0000800566 00000 n +0000800965 00000 n +0000801226 00000 n +0000801542 00000 n +0000801873 00000 n +0000802099 00000 n +0000802420 00000 n +0000802682 00000 n +0000802966 00000 n +0000803215 00000 n +0000803496 00000 n +0000834789 00000 n +0000851143 00000 n +0000851455 00000 n +0000851737 00000 n +0000852044 00000 n +0000852343 00000 n +0000852629 00000 n +0000852909 00000 n +0000853174 00000 n +0000853452 00000 n +0000853726 00000 n +0000853977 00000 n +0000854283 00000 n +0000854539 00000 n +0000854900 00000 n +0000855226 00000 n +0000855560 00000 n +0000855864 00000 n +0000856177 00000 n +0000877226 00000 n +0000892087 00000 n +0000892398 00000 n +0000892703 00000 n +0000892962 00000 n +0000893268 00000 n +0000893586 00000 n +0000893809 00000 n +0000894121 00000 n +0000894379 00000 n +0000894658 00000 n +0000894900 00000 n +0000895237 00000 n +0000895454 00000 n +0000895755 00000 n +0000896102 00000 n +0000896405 00000 n +0000896702 00000 n +0000897033 00000 n +0000897496 00000 n +0000897819 00000 n +0000928879 00000 n +0000944860 00000 n +0000945130 00000 n +0000945481 00000 n +0000945920 00000 n +0000946248 00000 n +0000946575 00000 n +0000946905 00000 n +0000947233 00000 n +0000947608 00000 n +0000947955 00000 n +0000983733 00000 n +0001002324 00000 n +0001002684 00000 n +0001002992 00000 n +0001003268 00000 n +0001003513 00000 n +0001003876 00000 n +0001004256 00000 n +0001004552 00000 n +0001004840 00000 n +0001005176 00000 n +0001005465 00000 n +0001005801 00000 n +0001006139 00000 n +0001006468 00000 n +0001006839 00000 n +0001007150 00000 n +0001007517 00000 n +0001007814 00000 n +0001008028 00000 n +0001008355 00000 n +0001008713 00000 n +0001009005 00000 n +0001009248 00000 n +0001009616 00000 n +0001009965 00000 n +0001010338 00000 n +0001010695 00000 n +0001010971 00000 n +0001011260 00000 n +0001011563 00000 n +0001011888 00000 n +0001012210 00000 n +0001012512 00000 n +0001012799 00000 n +0001013047 00000 n +0001013386 00000 n +0001013685 00000 n +0001014007 00000 n +0001014332 00000 n +0001014658 00000 n +0001014994 00000 n +0001015209 00000 n +0001015489 00000 n +0001015836 00000 n +0001016194 00000 n +0001016599 00000 n +0001016911 00000 n +0001017197 00000 n +0001026174 00000 n +0001031505 00000 n +0001031873 00000 n +0001032229 00000 n +0001032570 00000 n +0001032699 00000 n +0001034026 00000 n +0001034156 00000 n +0001035483 00000 n +0001035612 00000 n +0001036886 00000 n +0001037033 00000 n +0001037056 00000 n +0001037077 00000 n +0001037097 00000 n +0001037118 00000 n +0001037139 00000 n +0001037160 00000 n +0001037180 00000 n +0001037201 00000 n +0001037221 00000 n +0001037242 00000 n +0001037263 00000 n +0001037284 00000 n +0001037305 00000 n +0001037326 00000 n +0001037347 00000 n +0001037368 00000 n +0001037389 00000 n +0001037410 00000 n +0001037431 00000 n +0001037452 00000 n +0001037473 00000 n +0001037493 00000 n +0001037514 00000 n +0001037534 00000 n +0001037555 00000 n +0001037576 00000 n +0001037596 00000 n +0001037617 00000 n +0001037637 00000 n +0001037657 00000 n +0001037678 00000 n +0001037699 00000 n +0001037720 00000 n +0001037741 00000 n +0001037762 00000 n +0001037783 00000 n +0001037804 00000 n +0001037825 00000 n +0001037845 00000 n +0001037865 00000 n +0001037885 00000 n +0001037905 00000 n +0001037925 00000 n +0001037945 00000 n +0001037965 00000 n +0001037985 00000 n +0001038006 00000 n +0001038027 00000 n +0001038048 00000 n +0001038069 00000 n +0001038090 00000 n +0001038110 00000 n +0001038130 00000 n +0001038150 00000 n +0001038170 00000 n +0001038191 00000 n +0001038212 00000 n +0001038232 00000 n +0001038253 00000 n +0001038274 00000 n +0001038295 00000 n +0001038316 00000 n +0001038337 00000 n +0001038358 00000 n +0001038378 00000 n +0001038398 00000 n +0001038419 00000 n +0001038440 00000 n +0001038460 00000 n +0001038480 00000 n +0001038500 00000 n +0001038520 00000 n +0001038540 00000 n +0001038561 00000 n +0001038582 00000 n +0001038602 00000 n +0001038623 00000 n +0001038644 00000 n +0001038664 00000 n +0001038685 00000 n +0001038706 00000 n +0001038726 00000 n +0001038747 00000 n +0001038767 00000 n +0001038787 00000 n +0001038808 00000 n +0001038829 00000 n +0001038849 00000 n +0001038870 00000 n +0001038890 00000 n +0001038911 00000 n +0001038931 00000 n +0001038951 00000 n +0001038971 00000 n +0001038991 00000 n +0001039011 00000 n +0001039032 00000 n +0001039053 00000 n +0001039073 00000 n +0001039094 00000 n +0001039114 00000 n +0001039134 00000 n +0001039155 00000 n +0001039176 00000 n +0001039196 00000 n +0001039217 00000 n +0001039237 00000 n +0001039258 00000 n +0001039279 00000 n +0001039299 00000 n +0001039320 00000 n +0001039341 00000 n +0001039362 00000 n +0001039382 00000 n +0001039402 00000 n +0001039423 00000 n +0001039444 00000 n +0001039465 00000 n +0001039486 00000 n +0001039507 00000 n +0001039527 00000 n +0001039548 00000 n +0001039569 00000 n +0001039590 00000 n +0001039610 00000 n +0001039631 00000 n +0001039652 00000 n +0001039673 00000 n +0001039694 00000 n +0001039715 00000 n +0001039736 00000 n +0001039757 00000 n +0001039778 00000 n +0001039798 00000 n +0001039818 00000 n +0001039839 00000 n +0001039859 00000 n +0001039880 00000 n +0001039901 00000 n +0001039922 00000 n +0001039943 00000 n +0001039963 00000 n +0001039984 00000 n +0001040004 00000 n +0001040025 00000 n +0001040046 00000 n +0001040066 00000 n +0001040087 00000 n +0001040107 00000 n +0001040128 00000 n +0001040149 00000 n +0001040170 00000 n +0001040191 00000 n +0001040211 00000 n +0001040232 00000 n +0001040253 00000 n +0001040276 00000 n +0001040296 00000 n +0001040317 00000 n +0001040338 00000 n +0001040359 00000 n +0001040380 00000 n +0001040401 00000 n +0001040421 00000 n +0001040442 00000 n +0001040463 00000 n +0001040484 00000 n +0001040504 00000 n +0001040524 00000 n +0001040545 00000 n +0001040566 00000 n +0001040587 00000 n +0001040608 00000 n +0001040629 00000 n +0001040649 00000 n +0001040669 00000 n +0001040689 00000 n +0001040710 00000 n +0001040731 00000 n +0001040751 00000 n +0001040772 00000 n +0001040792 00000 n +0001040813 00000 n +0001040833 00000 n +0001040854 00000 n +0001040875 00000 n +0001040896 00000 n +0001040916 00000 n +0001040937 00000 n +0001040958 00000 n +0001040979 00000 n +0001041000 00000 n +0001041020 00000 n +0001041041 00000 n +0001041062 00000 n +0001041083 00000 n +0001041104 00000 n +0001041125 00000 n +0001041146 00000 n +0001041167 00000 n +0001041188 00000 n +0001041209 00000 n +0001041230 00000 n +0001041251 00000 n +0001041272 00000 n +0001041293 00000 n +0001041314 00000 n +0001041334 00000 n +0001041354 00000 n +0001041375 00000 n +0001041396 00000 n +0001041417 00000 n +0001041438 00000 n +0001041459 00000 n +0001041480 00000 n +0001041501 00000 n +0001041521 00000 n +0001041542 00000 n +0001041563 00000 n +0001041583 00000 n +0001041604 00000 n +0001041625 00000 n +0001041648 00000 n +0001041668 00000 n +0001041688 00000 n +0001041708 00000 n +0001041729 00000 n +0001041750 00000 n +0001041770 00000 n +0001041790 00000 n +0001041810 00000 n +0001041831 00000 n +0001041852 00000 n +0001041872 00000 n +0001041893 00000 n +0001041914 00000 n +0001041934 00000 n +0001041954 00000 n +0001041977 00000 n +0001041998 00000 n +0001042018 00000 n +0001042039 00000 n +0001042060 00000 n +0001042081 00000 n +0001042104 00000 n +0001042125 00000 n +0001042146 00000 n +0001042167 00000 n +0001042188 00000 n +0001042209 00000 n +0001042232 00000 n +0001042253 00000 n +0001042273 00000 n +0001042293 00000 n +0001042314 00000 n +0001042334 00000 n +0001042355 00000 n +0001042376 00000 n +0001042396 00000 n +0001042417 00000 n +0001042437 00000 n +0001042458 00000 n +0001042479 00000 n +0001042499 00000 n +0001042519 00000 n +0001042540 00000 n +0001042561 00000 n +0001042582 00000 n +0001042603 00000 n +0001042623 00000 n +0001042644 00000 n +0001042665 00000 n +0001042685 00000 n +0001042708 00000 n +0001042729 00000 n +0001042750 00000 n +0001042771 00000 n +0001042792 00000 n +0001042813 00000 n +0001042834 00000 n +0001042854 00000 n +0001042875 00000 n +0001042896 00000 n +0001042917 00000 n +0001042938 00000 n +0001042958 00000 n +0001042978 00000 n +0001042999 00000 n +0001043020 00000 n +0001043040 00000 n +0001043061 00000 n +0001043082 00000 n +0001043102 00000 n +0001043122 00000 n +0001043143 00000 n +0001043164 00000 n +0001043184 00000 n +0001043205 00000 n +0001043225 00000 n +0001043246 00000 n +0001043267 00000 n +0001043287 00000 n +0001043307 00000 n +0001043327 00000 n +0001043348 00000 n +0001043368 00000 n +0001043389 00000 n +0001043410 00000 n +0001043430 00000 n +0001043451 00000 n +0001043471 00000 n +0001043491 00000 n +0001043511 00000 n +0001043532 00000 n +0001043553 00000 n +0001043573 00000 n +0001043593 00000 n +0001043613 00000 n +0001043633 00000 n +0001043654 00000 n +0001043674 00000 n +0001043697 00000 n +0001043717 00000 n +0001043737 00000 n +0001043757 00000 n +0001043778 00000 n +0001043799 00000 n +0001043819 00000 n +0001043839 00000 n +0001043859 00000 n +0001043879 00000 n +0001043900 00000 n +0001043921 00000 n +0001043941 00000 n +0001043962 00000 n +0001043983 00000 n +0001044004 00000 n +0001044024 00000 n +0001044045 00000 n +0001044065 00000 n +0001044085 00000 n +0001044106 00000 n +0001044127 00000 n +0001044147 00000 n +0001044167 00000 n +0001044188 00000 n +0001044208 00000 n +0001044229 00000 n +0001044250 00000 n +0001044270 00000 n +0001044291 00000 n +0001044311 00000 n +0001044331 00000 n +0001044351 00000 n +0001044372 00000 n +0001044392 00000 n +0001044413 00000 n +0001044436 00000 n +0001044457 00000 n +0001044478 00000 n +0001044499 00000 n +0001044520 00000 n +0001044541 00000 n +0001044562 00000 n +0001044583 00000 n +0001044604 00000 n +0001044625 00000 n +0001044648 00000 n +0001044669 00000 n +0001044690 00000 n +0001044710 00000 n +0001044731 00000 n +0001044751 00000 n +0001044771 00000 n +0001044792 00000 n +0001044813 00000 n +0001044834 00000 n +0001044855 00000 n +0001044875 00000 n +0001044896 00000 n +0001044917 00000 n +0001044937 00000 n +0001044957 00000 n +0001044980 00000 n +0001045001 00000 n +0001045022 00000 n +0001045042 00000 n +0001045062 00000 n +0001045082 00000 n +0001045102 00000 n +0001045122 00000 n +0001045142 00000 n +0001045162 00000 n +0001045183 00000 n +0001045203 00000 n +0001045223 00000 n +0001045244 00000 n +0001045267 00000 n +0001045288 00000 n +0001045309 00000 n +0001045330 00000 n +0001045351 00000 n +0001045374 00000 n +0001045395 00000 n +0001045416 00000 n +0001045437 00000 n +0001045458 00000 n +0001045479 00000 n +0001045499 00000 n +0001045520 00000 n +0001045541 00000 n +0001045562 00000 n +0001045583 00000 n +0001045607 00000 n +0001045628 00000 n +0001045649 00000 n +0001045671 00000 n +0001045692 00000 n +0001045714 00000 n +0001045735 00000 n +0001045756 00000 n +0001045778 00000 n +0001045800 00000 n +0001045821 00000 n +0001045842 00000 n +0001045864 00000 n +0001045886 00000 n +0001045907 00000 n +0001045929 00000 n +0001045951 00000 n +0001045972 00000 n +0001045993 00000 n +0001046014 00000 n +0001046035 00000 n +0001046056 00000 n +0001046077 00000 n +0001046098 00000 n +0001046122 00000 n +0001046143 00000 n +0001046165 00000 n +0001046187 00000 n +0001046209 00000 n +0001046231 00000 n +0001046252 00000 n +0001046274 00000 n +0001046295 00000 n +0001046317 00000 n +0001046339 00000 n +0001046360 00000 n +0001046382 00000 n +0001046403 00000 n +0001046424 00000 n +0001046445 00000 n +0001046466 00000 n +0001046490 00000 n +0001046512 00000 n +0001046533 00000 n +0001046555 00000 n +0001046577 00000 n +0001046598 00000 n +0001046619 00000 n +0001046640 00000 n +0001046661 00000 n +0001046682 00000 n +0001046703 00000 n +0001046725 00000 n +0001046746 00000 n +0001046768 00000 n +0001046790 00000 n +0001046812 00000 n +0001046834 00000 n +0001046856 00000 n +0001046880 00000 n +0001046902 00000 n +0001046924 00000 n +0001046945 00000 n +0001046967 00000 n +0001046989 00000 n +0001047010 00000 n +0001047032 00000 n +0001047053 00000 n +0001047074 00000 n +0001047095 00000 n +0001047117 00000 n +0001047138 00000 n +0001047160 00000 n +0001047182 00000 n +0001047204 00000 n +0001047226 00000 n +0001047248 00000 n +0001047270 00000 n +0001047292 00000 n +0001047316 00000 n +0001047337 00000 n +0001047359 00000 n +0001047381 00000 n +0001047403 00000 n +0001047425 00000 n +0001047447 00000 n +0001047469 00000 n +0001047491 00000 n +0001047513 00000 n +0001047537 00000 n +0001047559 00000 n +0001047581 00000 n +0001047602 00000 n +0001047623 00000 n +0001047645 00000 n +0001047667 00000 n +0001047689 00000 n +0001047710 00000 n +0001047732 00000 n +0001047753 00000 n +0001047775 00000 n +0001047797 00000 n +0001047819 00000 n +0001047841 00000 n +0001047863 00000 n +0001047885 00000 n +0001047907 00000 n +0001047928 00000 n +0001047950 00000 n +0001047972 00000 n +0001047993 00000 n +0001048014 00000 n +0001048036 00000 n +0001048058 00000 n +0001048080 00000 n +0001048102 00000 n +0001048123 00000 n +0001048144 00000 n +0001048166 00000 n +0001048188 00000 n +0001048210 00000 n +0001048232 00000 n +0001048253 00000 n +0001048274 00000 n +0001048296 00000 n +0001048318 00000 n +0001048340 00000 n +0001048362 00000 n +0001048384 00000 n +0001048406 00000 n +0001048427 00000 n +0001048448 00000 n +0001048470 00000 n +0001048492 00000 n +0001048514 00000 n +0001048536 00000 n +0001048557 00000 n +0001048580 00000 n +0001048602 00000 n +0001048624 00000 n +trailer +<< +/Size 1141 +/Root 1 0 R +/Info 586 0 R +>> +startxref +1048646 +%%EOF diff --git a/hash/Analysis of Transposition Tables.pdf b/hash/Analysis of Transposition Tables.pdf new file mode 100644 index 0000000..999550b Binary files /dev/null and b/hash/Analysis of Transposition Tables.pdf differ diff --git a/hash/Information_in_transpositiontables.pdf b/hash/Information_in_transpositiontables.pdf new file mode 100644 index 0000000..b28eeb3 --- /dev/null +++ b/hash/Information_in_transpositiontables.pdf @@ -0,0 +1,9542 @@ +%PDF-1.2 +%ÐÓÔÌ +1 0 obj +<< +/Type /Catalog +/Pages 3 0 R +/Outlines 2 0 R +/Dests 5 0 R +/PageMode /UseNone +>> +endobj +2 0 obj +<< +/Type /Outlines +/Count 0 +>> +endobj +3 0 obj +<< +/Type /Pages +/MediaBox [ 0 0 595 842 ] +/Count 13 +/Kids [ 6 0 R 154 0 R 203 0 R 236 0 R 257 0 R 279 0 R 284 0 R 296 0 R 308 0 R 313 0 R 350 0 R 369 0 R 415 0 R ] +>> +endobj +4 0 obj +[ /PDF /Text /ImageC ] +endobj +5 0 obj +<< + +>> +endobj +6 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 420 0 R >> /XObject << /Im1 8 0 R /Im2 9 0 R /Im3 10 0 R /Im4 11 0 R /Im5 12 0 R /Im6 13 0 R /Im7 14 0 R /Im8 15 0 R /Im9 16 0 R /Im4 11 0 R /Im2 9 0 R /Im9 16 0 R /Im2 9 0 R /Im10 17 0 R /Im5 12 0 R /Im7 14 0 R /Im2 9 0 R /Im11 18 0 R /Im12 19 0 R /Im4 11 0 R /Im11 18 0 R /Im9 16 0 R /Im8 15 0 R /Im9 16 0 R /Im4 11 0 R /Im2 9 0 R /Im10 17 0 R /Im7 14 0 R /Im13 20 0 R /Im14 21 0 R /Im15 22 0 R /Im11 18 0 R /Im16 23 0 R /Im17 24 0 R /Im18 25 0 R /Im17 24 0 R /Im19 26 0 R /Im20 27 0 R /Im21 28 0 R /Im22 29 0 R /Im23 30 0 R /Im21 28 0 R /Im20 27 0 R /Im24 31 0 R /Im25 32 0 R /Im17 24 0 R /Im26 33 0 R /Im17 24 0 R /Im27 34 0 R /Im17 24 0 R /Im18 25 0 R /Im17 24 0 R /Im28 35 0 R /Im29 36 0 R /Im30 37 0 R /Im21 28 0 R /Im20 27 0 R /Im31 38 0 R /Im29 36 0 R /Im32 39 0 R /Im23 30 0 R /Im33 40 0 R /Im34 41 0 R /Im35 42 0 R /Im27 34 0 R /Im17 24 0 R /Im25 32 0 R /Im17 24 0 R /Im36 43 0 R /Im33 40 0 R /Im34 41 0 R /Im35 42 0 R /Im21 28 0 R /Im34 41 0 R /Im27 34 0 R /Im21 28 0 R /Im20 27 0 R /Im29 36 0 R /Im23 30 0 R /Im37 44 0 R /Im38 45 0 R /Im39 46 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im46 53 0 R /Im47 54 0 R /Im48 55 0 R /Im49 56 0 R /Im40 47 0 R /Im50 57 0 R /Im51 58 0 R /Im52 59 0 R /Im43 50 0 R /Im53 60 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im56 63 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im57 64 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im44 51 0 R /Im60 67 0 R /Im61 68 0 R /Im62 69 0 R /Im54 61 0 R /Im63 70 0 R /Im60 67 0 R /Im64 71 0 R /Im54 61 0 R /Im65 72 0 R /Im52 59 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im58 65 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im45 52 0 R /Im43 50 0 R /Im42 49 0 R /Im42 49 0 R /Im67 74 0 R /Im58 65 0 R /Im39 46 0 R /Im51 58 0 R /Im42 49 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im40 47 0 R /Im59 66 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im58 65 0 R /Im44 51 0 R /Im58 65 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im53 60 0 R /Im43 50 0 R /Im58 65 0 R /Im66 73 0 R /Im55 62 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im58 65 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im69 76 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im52 59 0 R /Im45 52 0 R /Im66 73 0 R /Im43 50 0 R /Im42 49 0 R /Im70 77 0 R /Im41 48 0 R /Im40 47 0 R /Im47 54 0 R /Im52 59 0 R /Im44 51 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im58 65 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im68 75 0 R /Im60 67 0 R /Im57 64 0 R /Im45 52 0 R /Im55 62 0 R /Im47 54 0 R /Im52 59 0 R /Im53 60 0 R /Im55 62 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im70 77 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im44 51 0 R /Im40 47 0 R /Im44 51 0 R /Im44 51 0 R /Im45 52 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im58 65 0 R /Im43 50 0 R /Im59 66 0 R /Im66 73 0 R /Im43 50 0 R /Im58 65 0 R /Im67 74 0 R /Im45 52 0 R /Im40 47 0 R /Im67 74 0 R /Im42 49 0 R /Im71 78 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im44 51 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im57 64 0 R /Im57 64 0 R /Im58 65 0 R /Im39 46 0 R /Im47 54 0 R /Im66 73 0 R /Im42 49 0 R /Im39 46 0 R /Im72 79 0 R /Im52 59 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im55 62 0 R /Im47 54 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im43 50 0 R /Im53 60 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im58 65 0 R /Im57 64 0 R /Im57 64 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im52 59 0 R /Im67 74 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im40 47 0 R /Im44 51 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im42 49 0 R /Im44 51 0 R /Im66 73 0 R /Im42 49 0 R /Im67 74 0 R /Im40 47 0 R /Im58 65 0 R /Im57 64 0 R /Im57 64 0 R /Im46 53 0 R /Im69 76 0 R /Im55 62 0 R /Im40 47 0 R /Im67 74 0 R /Im55 62 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im55 62 0 R /Im58 65 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im57 64 0 R /Im58 65 0 R /Im43 50 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im50 57 0 R /Im66 73 0 R /Im58 65 0 R /Im67 74 0 R /Im45 52 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im52 59 0 R /Im67 74 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im66 73 0 R /Im58 65 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im59 66 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im43 50 0 R /Im40 47 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im58 65 0 R /Im39 46 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im45 52 0 R /Im47 54 0 R /Im59 66 0 R /Im40 47 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im52 59 0 R /Im40 47 0 R /Im44 51 0 R /Im55 62 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im69 76 0 R /Im42 49 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im70 77 0 R /Im59 66 0 R /Im52 59 0 R /Im67 74 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im53 60 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im47 54 0 R /Im43 50 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im68 75 0 R /Im60 67 0 R /Im44 51 0 R /Im42 49 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im59 66 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im67 74 0 R /Im47 54 0 R /Im50 57 0 R /Im66 73 0 R /Im58 65 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im51 58 0 R /Im47 54 0 R /Im52 59 0 R /Im39 46 0 R /Im59 66 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im44 51 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im40 47 0 R /Im39 46 0 R /Im40 47 0 R /Im50 57 0 R /Im58 65 0 R /Im57 64 0 R /Im70 77 0 R /Im69 76 0 R /Im40 47 0 R /Im39 46 0 R /Im59 66 0 R /Im47 54 0 R /Im69 76 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im69 76 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im52 59 0 R /Im42 49 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im44 51 0 R /Im68 75 0 R /Im74 81 0 R /Im45 52 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im40 47 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im45 52 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im55 62 0 R /Im40 47 0 R /Im53 60 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im52 59 0 R /Im67 74 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im67 74 0 R /Im47 54 0 R /Im50 57 0 R /Im42 49 0 R /Im44 51 0 R /Im48 55 0 R /Im43 50 0 R /Im47 54 0 R /Im50 57 0 R /Im43 50 0 R /Im42 49 0 R /Im70 77 0 R /Im52 59 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im51 58 0 R /Im47 54 0 R /Im52 59 0 R /Im39 46 0 R /Im59 66 0 R /Im44 51 0 R /Im51 58 0 R /Im42 49 0 R /Im67 74 0 R /Im58 65 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im46 53 0 R /Im58 65 0 R /Im59 66 0 R /Im42 49 0 R /Im72 79 0 R /Im52 59 0 R /Im58 65 0 R /Im45 52 0 R /Im42 49 0 R /Im57 64 0 R /Im46 53 0 R /Im53 60 0 R /Im42 49 0 R /Im39 46 0 R /Im42 49 0 R /Im43 50 0 R /Im58 65 0 R /Im45 52 0 R /Im42 49 0 R /Im67 74 0 R /Im52 59 0 R /Im45 52 0 R /Im47 54 0 R /Im75 82 0 R /Im44 51 0 R /Im68 75 0 R /Im62 69 0 R /Im40 47 0 R /Im39 46 0 R /Im67 74 0 R /Im42 49 0 R /Im69 76 0 R /Im42 49 0 R /Im76 83 0 R /Im39 46 0 R /Im47 54 0 R /Im69 76 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im45 52 0 R /Im48 55 0 R /Im43 50 0 R /Im47 54 0 R /Im50 57 0 R /Im58 65 0 R /Im67 74 0 R /Im42 49 0 R /Im43 50 0 R /Im45 52 0 R /Im58 65 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im70 77 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im44 51 0 R /Im40 47 0 R /Im77 84 0 R /Im42 49 0 R /Im39 46 0 R /Im47 54 0 R /Im45 52 0 R /Im50 57 0 R /Im52 59 0 R /Im67 74 0 R /Im55 62 0 R /Im40 47 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im51 58 0 R /Im42 49 0 R /Im53 60 0 R /Im58 65 0 R /Im40 47 0 R /Im39 46 0 R /Im42 49 0 R /Im59 66 0 R /Im48 55 0 R /Im43 50 0 R /Im47 54 0 R /Im50 57 0 R /Im59 66 0 R /Im47 54 0 R /Im52 59 0 R /Im51 58 0 R /Im57 64 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im39 46 0 R /Im52 59 0 R /Im50 57 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im40 47 0 R /Im42 49 0 R /Im44 51 0 R /Im71 78 0 R /Im40 47 0 R /Im45 52 0 R /Im50 57 0 R /Im40 47 0 R /Im53 60 0 R /Im55 62 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im48 55 0 R /Im52 59 0 R /Im57 64 0 R /Im45 52 0 R /Im47 54 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im58 65 0 R /Im59 66 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im58 65 0 R /Im57 64 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im47 54 0 R /Im44 51 0 R /Im42 49 0 R /Im42 49 0 R /Im69 76 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im45 52 0 R /Im55 62 0 R /Im40 47 0 R /Im44 51 0 R /Im57 64 0 R /Im42 49 0 R /Im58 65 0 R /Im59 66 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im58 65 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im52 59 0 R /Im57 64 0 R /Im45 52 0 R /Im68 75 0 R /Im78 85 0 R /Im52 59 0 R /Im43 50 0 R /Im79 86 0 R /Im43 50 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im50 57 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im44 51 0 R /Im50 57 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im40 47 0 R /Im42 49 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im59 66 0 R /Im40 47 0 R /Im67 74 0 R /Im58 65 0 R /Im45 52 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im45 52 0 R /Im58 65 0 R /Im59 66 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im58 65 0 R /Im57 64 0 R /Im50 57 0 R /Im42 49 0 R /Im50 57 0 R /Im47 54 0 R /Im43 50 0 R /Im46 53 0 R /Im67 74 0 R /Im58 65 0 R /Im39 46 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im59 66 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im58 65 0 R /Im59 66 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im58 65 0 R /Im57 64 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im39 46 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im59 66 0 R /Im47 54 0 R /Im52 59 0 R /Im51 58 0 R /Im57 64 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im40 47 0 R /Im77 84 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im68 75 0 R /Im80 87 0 R /Im81 88 0 R /Im82 89 0 R /Im83 90 0 R /Im84 91 0 R /Im85 92 0 R /Im83 90 0 R /Im86 93 0 R /Im87 94 0 R /Im88 95 0 R /Im89 96 0 R /Im90 97 0 R /Im91 98 0 R /Im92 99 0 R /Im91 98 0 R /Im88 95 0 R /Im89 96 0 R /Im88 95 0 R /Im93 100 0 R /Im91 98 0 R /Im94 101 0 R /Im95 102 0 R /Im55 62 0 R /Im42 49 0 R /Im39 46 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im58 65 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im66 73 0 R /Im43 50 0 R /Im47 54 0 R /Im53 60 0 R /Im43 50 0 R /Im58 65 0 R /Im50 57 0 R /Im44 51 0 R /Im51 58 0 R /Im52 59 0 R /Im40 47 0 R /Im57 64 0 R /Im59 66 0 R /Im57 64 0 R /Im58 65 0 R /Im43 50 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im30 37 0 R /Im20 27 0 R /Im21 28 0 R /Im21 28 0 R /Im96 103 0 R /Im68 75 0 R /Im62 69 0 R /Im40 47 0 R /Im39 46 0 R /Im67 74 0 R /Im42 49 0 R /Im58 65 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im47 54 0 R /Im50 57 0 R /Im42 49 0 R /Im45 52 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im58 65 0 R /Im39 46 0 R /Im51 58 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im43 50 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im59 66 0 R /Im58 65 0 R /Im45 52 0 R /Im51 58 0 R /Im46 53 0 R /Im44 51 0 R /Im42 49 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im58 65 0 R /Im57 64 0 R /Im59 66 0 R /Im40 47 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im67 74 0 R /Im45 52 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im72 79 0 R /Im52 59 0 R /Im42 49 0 R /Im39 46 0 R /Im67 74 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im40 47 0 R /Im77 84 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im45 52 0 R /Im43 50 0 R /Im42 49 0 R /Im42 49 0 R /Im67 74 0 R /Im58 65 0 R /Im39 46 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im52 59 0 R /Im67 74 0 R /Im42 49 0 R /Im59 66 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im40 47 0 R /Im59 66 0 R /Im42 49 0 R /Im43 50 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im46 53 0 R /Im40 47 0 R /Im48 55 0 R /Im66 73 0 R /Im43 50 0 R /Im42 49 0 R /Im41 48 0 R /Im40 47 0 R /Im47 54 0 R /Im52 59 0 R /Im44 51 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im52 59 0 R /Im57 64 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im58 65 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im97 104 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im105 112 0 R /Im101 108 0 R /Im106 113 0 R /Im107 114 0 R /Im108 115 0 R /Im109 116 0 R /Im110 117 0 R /Im101 108 0 R /Im111 118 0 R /Im112 119 0 R /Im113 120 0 R /Im104 111 0 R /Im114 121 0 R /Im115 122 0 R /Im116 123 0 R /Im103 110 0 R /Im117 124 0 R /Im118 125 0 R /Im104 111 0 R /Im106 113 0 R /Im111 118 0 R /Im103 110 0 R /Im100 107 0 R /Im106 113 0 R /Im108 115 0 R /Im109 116 0 R /Im119 126 0 R /Im108 115 0 R /Im111 118 0 R /Im117 124 0 R /Im113 120 0 R /Im106 113 0 R /Im103 110 0 R /Im104 111 0 R /Im120 127 0 R /Im121 128 0 R /Im101 108 0 R /Im103 110 0 R /Im100 107 0 R /Im121 128 0 R /Im103 110 0 R /Im115 122 0 R /Im122 129 0 R /Im123 130 0 R /Im124 131 0 R /Im123 130 0 R /Im125 132 0 R /Im108 115 0 R /Im126 133 0 R /Im127 134 0 R /Im128 135 0 R /Im127 134 0 R /Im115 122 0 R /Im127 134 0 R /Im129 136 0 R /Im130 137 0 R /Im130 137 0 R /Im131 138 0 R /Im116 123 0 R /Im131 138 0 R /Im118 125 0 R /Im118 125 0 R /Im105 112 0 R /Im132 139 0 R /Im106 113 0 R /Im104 111 0 R /Im101 108 0 R /Im121 128 0 R /Im133 140 0 R /Im106 113 0 R /Im115 122 0 R /Im134 141 0 R /Im133 140 0 R /Im103 110 0 R /Im135 142 0 R /Im103 110 0 R /Im106 113 0 R /Im133 140 0 R /Im103 110 0 R /Im104 111 0 R /Im136 143 0 R /Im118 125 0 R /Im100 107 0 R /Im137 144 0 R /Im105 112 0 R /Im123 130 0 R /Im138 145 0 R /Im111 118 0 R /Im118 125 0 R /Im101 108 0 R /Im136 143 0 R /Im139 146 0 R /Im140 147 0 R /Im112 119 0 R /Im104 111 0 R /Im103 110 0 R /Im113 120 0 R /Im141 148 0 R /Im103 110 0 R /Im104 111 0 R /Im115 122 0 R /Im113 120 0 R /Im101 108 0 R /Im106 113 0 R /Im103 110 0 R /Im104 111 0 R /Im142 149 0 R /Im101 108 0 R /Im143 150 0 R /Im141 148 0 R /Im115 122 0 R /Im133 140 0 R /Im103 110 0 R /Im104 111 0 R /Im101 108 0 R /Im141 148 0 R /Im144 151 0 R /Im145 152 0 R /Im121 128 0 R /Im105 112 0 R /Im123 130 0 R /Im104 111 0 R /Im113 120 0 R /Im136 143 0 R /Im101 108 0 R /Im111 118 0 R /Im112 119 0 R /Im113 120 0 R /Im104 111 0 R /Im114 121 0 R /Im123 130 0 R /Im100 107 0 R /Im136 143 0 R /Im146 153 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 7 0 R +>> +endobj +7 0 obj +<< +/Length 425 0 R +/Filter /FlateDecode +>> +stream +x¥]K³å¶qÞϯ¸K{á#âAð2å¸*]ÖÒDc%J©òïsx毾7s§îL@£ß/üýÓï?þþÉ}üüéïÒÃÇåcy,üéÜcKÏk|¬KüH9>?¾ùñÓWÿö£ûøÍ_?ýþøüHK ¿=ÒþOþ±ÅÜ·àéS³¼?l,ZøýñòÛÀc¿üæ!øÀ×Üás§OýîSDàÞ°üÖï~Yº»[_ôÞ?|já÷>>ïï_ð¬Yäû°2È×HÇÇȾûäÝ«Ë'twÝò Mì¯Ï-ùíß-,ñùÐ×F<a¡G;~xÒŸ-ípäFè±wÐnr{Ë#¥ëÝ4â ÀùÊþW$·úý«Ô÷<C}*ï´ÞâÝ�'Í»*õìÛ=æËJ1FýÑmõwäwêèR{ây*GåmÀu<·�é×uì¯p\EÀ½æ=åÛÞ_+øNw¹o øõ·?éÐwðÄ õ÷ß1ºþóÜÌúéw´þóhýÂcoðdI¿¨à}GÀ¡;2BÞ;x ZøÖïX°ßÿIÞ;ß1º¿RûWñ +îøð2Æ|( +è)ÈÝrÁwü÷²Ýý¿ÎåüO=¸_ð½í§ÐEûcÇë¯Ë#÷ëÓüçúY{dé?y@ÿ¾W×ßÜ-þ÷[¸Åÿ~ÓüÿÂÿþ»õ}§Êþóè·þe½æà-?Ââoñ_X ü�Ök« +¼Cò#tëkøn§ð:ä4 {xÝ[Íÿ;ÏÝáùßÀïá?tò«7�Ëþ#ºÿÐÉ/ÿÃênñX3Åü éü i§ÖWéÿüUïÿi@ߺÿ®Ïßæî_y#í¼ÿ¸xjÿýEÇѶÿèþyù=Â/ÿ4ù=´ÿûñ¼¿í~úõO0Ñ?ûøú¯ üýQÀãÿàâû?Â'/ÿÕWëý×: eý§ýpÀÕð±Ã¿jÿ>ý~ýî¿Õ<Ðmè¯ÀöGìg ~Cðÿ¨øËþ<°?Oûâ¯=þ^ö¾Ð¿ÈÏV~}¶?Àúü.òïðÃûówô»¾¢-Øþ8é¿§é÷°ü÷þ9¿G÷¿úoù¯¬VOËïOÓðþþëõ×iÈúëc¿âk¯úï[úÁ_ìèO?¿mèOE~ÿWð½ü@ò÷ôþ«×ïøG]?ïÔúÿþü¯Ððï$þþeö¯ÒCë÷ô§óïròo½ÿNþhú'xtÿ+?G÷×ëOÿáúÀþPð2Â:þ9á׸}úêä×ÚEýïg�¶'ðÛéÿçPàÓöKü§ÈößËíüýõüRà] ðâ¿/ÿÇ/h}°|~¡¿ñù1¼+ùµðQYçºtÊßé,?Ü�</ÿÜî<Ø?¶_ø5ïäº~ð@~bþuEþ7ðDCâ×á·ÿt½üRí_ïÒß/ûÓõvÜgû3Ñö§äÎG÷§îßCüóö{8í÷·ßC¤èG_§ÖWñWìÇþTú)öã4ý¬ý(ôÐþ{úW×OZ_÷?9ù¥û¿P~òûß!ýÿU³Ñý%âþÅ øô«Ù¯þhùÈ?ôùÃùÖ_bÿNÃ{DÿÿýôÁ~ ÿûÊÞUÏå+º?%~±Bþ§å_Hh}^þRþ¨þÏSþpò_¹¿ áù +þ±ýÅûPþøÊ$ógtýù5þPþðò;.Üý«ë»{ú#zÏ뿸ûW÷8ù¥îÛ/4ýÄÈÊL?1"ýÑë?-~æÄ~YÞÇÏTÿ¡ÔË(~ñïÒàýQü¿_4°ß1þÄêõéüáá¿ù>uûWý_áÿz}>þ¸8jÿªý%þ×ò>¡ú%~ÖÀÓöwÿÿ³ÄÏìôÓø_ËûüºÿîÏà¤_ÍBç7øßà®gþ¤çýÏÊÞÿ|ÚOÌú*þâÿýègó$ý(ô¿Cþ7øo þä_>ÿYú{ÑÏ(8Ë?GýÒüåo?BùÙÛ½þÿ Á'>Ò-þüÁøþ4ÿÝ?òÿýòKõ¿ üBü¯äÓÖ' +øÿo~§Õü3_(ÿ¬ÄHù¥Ò_üýgZõSwôGÈÈþBñÍÿCðýüò¼?"ö¹~êÎù#¶ßhû3Bû/ø(ûK÷ÿàýü?H¿àümýÖrÖB¿gò ¿Ñü'þ_ÌUþÔßbþ9ü¿®§ùGü¿¦ÉßÕð|ýÉÑù Öñ¾È1¼ÌÿtüBüÇæü´ýçJþºY·ÿCü¾È¯fÿ¼ÿêÐúûÓ¡õ þgéÿ½ÿYÃóòß?ZJþ¬Ù?￯~yÿ} üËûï+?=ÿøÇà¿_ò+Îùï\÷ß7È¿<ýî¢_~JýÂ~ôõó-ýáý5«?¤þtD?ºÿÉñjÿ:Ä?¼ýÂo¿éõk࿯_Óó~û^ÿÂý;þ�ñS¥þ) ü÷õOêùc¤Î¯Þú÷_¡üdâ÷âBú3äe?©õ·IÖoózþñ¯!¿£ýðå¡þ¶ß4ÿÉoÞ~ü߬ýhÿ÷/þGjÿ +?}ücäÿÍÚ/1@ýAÛ/ÊÞ~Ñ/o¿Dl¿ýÿÞG×[ÿQÉ¿ÿ¸û)ûGòqúÑü·ÁÓöÏ?|¿§íWê§xÚþ9êGõõúÑ@áOõ÷ÀóöÔÎ?ªáyûçòkxÚþñ¥ÿ§§íï ýüÏ|~½ß(úÑëO¹õõü'¤:#õÓôSê'ìô#ðèü|ýä/õyÿ=¡ó[êG!ýÑöÔ÷¯ø¿?È=ÿîÏ?òáOëBò³_éý÷äX8ù¯×"üõûÕäWï¿7zÔ¾ü·êþ7ÞÿtùþúÕiü{n}½ÿ ®OËOÉÎÊÏ¡þçÏ9ý¡Ã#ü!ÿù}þu¯ÆOVÿuÿáÉÅÿÞýÂØ_åþ.ûq$?µúWxÿ¼ÿ¹#ùÅé¿×þsûßèõ#¶ÿèúëí?Þþüç,ÿElÿÑüIù§úß~þêúÛYûçòëû£ãW?í_«_¹üßZÿÑõ+®Ô_ÄÍOÉcpíkýÏ¿þÅïw[Ñ?O;î}ý®ÖÿÐúþÇÁÓñ·Ëÿ¬ñGÇß®üç`ÿjþ`A÷øGó_áýñóC\ßà?Âû3ÔÏ.ýóþÑáw +^÷?!ýñùk±¿ô£øObÕû'äg]ÛÀÓúϯþ þËÖ7äï÷g©¿ ÷Ççï6D¿ùA;ÿøÉù¯ßÍÿéùK?Cÿ\éѯ^¿öo¿å7Nèw³=§?txÄ?ÿ´úÙ@òâÿ@ùÇËï£òü>üÏ9ûIü×î¯ÿ¤Ö/¯èü½ý§Òò÷Ò_øÍø¯ +¼~ÿÅnÓßÀȵþ9Cúçë3´hû!BùÇ×?ÈþiþÒÿt÷ô÷á?ÞÑßÑßÓß1pú[÷?ýüOÿ*ý¬PÿÑñ+ZüP³ÿ$ò«7øOÿ¯×þ?-ñÃz}ÞÞÑù þ³øõþyÿYüÏuó3Â?oÿ\ùÓÏÿ: Õþ]2¸?~þàå¿Ö÷G×\þç:¿£ù¯¤Íÿs�Þà?HtüËGxù7çó÷~EøãåòËP¿ þøøÇù÷ÿ7?ÿ¿#ú1øÿ;ZßàÿgD?ùËIùqÌÏaäj¿-ðþøúÅÉÏþÕúSwÎooðÇ÷ïýǹþý+þß÷/êñ[à9úýr~ÝG¿WÿK´÷õCZ_׿ù±@üñõÞ??¹êf÷ïÑúùa¥ÿ®Gõïç×ð§Ï+þG´öß +|DøçãïâÇDëâ+ÂÿDÿK|ß?ªë_xÝùûù×¢?ÑýmÿõCÛ-þùÉÓ÷·ß¤ß2?}D¿ªý!ýêfå¿À#ùièqp}¾~Ë/¾ÿÁCþããgòaþA¦î_ñg¨ÿúÃPÿÃí_öÏÔÏÈüv¡¿÷ó§ôú´>êÄogïOâ·Cù¯Åo!ÿÛûW&õßÕ¿2*ýeþÔø}Fò·ßëõ?¬ý¤ÀCûÑ¡ûãågÄò¾ÿí/ÞPþê§°ü2Ï?Óß %æhþW¹ÿð~þ½>|EðùãÀóþ»ÛÐúþÈÿÞÐöoé?I�×2ÿü ãwúC.äùµúÎÏû¿sýWüu?5þãýâ"¿Â\ÿ¤p}>þ&ý'õúÿáÏâÿ¡õ ñûòxOñVD?(þ®Õß þ3Ô¿Aùey?®OÛo×üÿêþ|ÿSôÃßç7̯üÃÏÿZàùÍóËgùWÞ/ë_Íÿãôz~ñô6¿ÊÞ~h}Cÿ9)¿Ôú!éð¯Þå?_´"ûåó&í¯ ü¦ë/ÿmHJý¶¿óï8ûO÷Ñý[æÀóÓüÕßLêï«ÿcRGå½ÿcR_ýú;bûÖß2ÿ|VËüóYý¥ÿlR_õ7úûòÿü\ÿÏUãß÷ÿ¨þÈÿ¾ÿE༽ÿÃ[ûǤá¯×ßúüôóýêÿsÕßÔð¼ý'ý³ûúoü û?êýÓï\ýúÑçÏ¡õ ýïѯ!ÿ8úSóOR¿\ÁòOòsý~ üÇû+<?¿HèüüSBûçóOÿg¿Rô§ÏòÛðþ*â_ÿexÿ¼ÿüC×Ï]óçô«ÏC÷Ç×_,xÿÑÃûãûG<+¿ýûúÿê¿ÔÿWÿÿ¤þ¿¶ÄÝGòCÏÿ!üYòB?n¿UðXükýÿ þÏñÏÇ?v(éùÛWÿŤþP~¡ù<¡~Aöáý+h?ññy¿j$ÿý5¼¡ÿѯaþA¸'?c`å§2¿/¢óóý;WÿŤü»ü¿üÓôïåÿ¹÷ý;úü"?Ý\ÿÔÿsïû_ôü]¢ÖWÏ/óç×ë?7OóÏQÿÙïõâüïÿ;áÃÛü¯Vpõ_Tëóó#ü²ÞºÿËÜ¿^þéøù5νïßÒðwåÿøöï»÷ýSÃþýÿ6Büñó×"\ï?ÿ±Æ?? üG×ß\ù¿YúùúWý· oÈ?ïP~óóë3·äïýú ü±äïEzÿ§?ôúQDÿû_âçËûù5zý(Åþöÿû?@üóõsñ¿áýéù¯òË?[¡üæó ÞLðþøücy¿xd¨øò˿޿ùýâüRûòï¯å?|ñoFô³ñù3,¿èúñ+7É?WþnÈ?ÿùÿ åaþ·ö=?åªÿtï秨þoàü½~Þ¡~?úúþýû¥Ðª®üaÏÏ/¸ú÷kxº~@ÞOí_ÿæî_êç¾U¯Ïç/%þ>X_÷ÿþ¨×'ò÷§üô¥þêxpæý«ÿpWþp¿aÿa ÏÛÏ£?ÝôgÿèÏR +ùÏ0ÿ Ò¿aþ¿eþ<¿áýå}þÅÿ÷g~¹7ô?nèüüßîßÿÛýò¯éËûËHþññßcþ8¸>¸Àõù-MþrÿÊ?-ÿÈí_÷áþéþ#ÿxâßû_dý?üãPþòCù¡åü³çgõïå¿ÖøãówÔÿÓúü6Zþòí¿éïÌ~ õ£~ óÇÑúHæ¿ ìw½ÿðÿÊûËcù¯Ë?þýæÀÙúü7x~¾ÿË/"~Uö_æ÷tøn~åèýå°Ï½ß-ý <mÿÈûY5¼a~Lñ903ÿ_êGýóïïðü¼ÿáùÍóÇGøÓó'\³z~ª/õó5þý)þ§ó¿ï¿Í¯±ÓO¬á ö»çÖ½ÕÀóóÓKülþ|_³ô'ýãó¿÷kx&ÿ(ðþÑüåüPþòg ò¿þüþUÏØàútüýx?ë¿7ø'êg¶³~þ¿õÉ÷¸í</Òé?mîýrWò/5<Ï¿®Ìï«áù÷«ÜÖïé_ÿýQ¯Ïï¿ÔÏÖGòûÿÀo@~kõ#hÿüûEüßÞ÷©õÃÿCðþs?>~.óÃx^~G? ?püäè?�üg®?iàéøÌÝÿ¨ÿ¼Á??!Áûãç·ùa³òCÞoñ¯Þ?(üëõ#ýèïG°ô«Í/˷俼1?úü0Þ¿1¦ÿÒ/ÿ~GüÃço¥þ¤Ù?ÿþEúSï/KüoÄÿzüÊCüo£èO¯ò¶þüÿÍýëcþQâ¿IôÇû÷»Uüm÷äô?Øùçsÿ;çß-ïW4ðüû§;ÒúíþÅÿÐ_x?òw£Ï¡ýhÆÉ?¤~fÄ?£ùi#úUûÿNà¡þàãÇí¯ÿ½âûwôþáÇxOZÿ|Ñ?i®Núx¾¾ä?x®ä_kx>pÅÓ¨ÿÇß.ÿ/½ïÓçÁýóö_yÿatÿzüÝ!~Wú¯ÆøÓü?´>+þW?ݬÏû_Òï LѯêExÿüül±_øÓãoÿ õèþü¥ô õyûá¿õ÷ox¿rw÷ø§Ì¯ñ¿ß9ù¡û;)µ÷!þùúù®Ï篡ü`ò×âÁýwë«õ#Ò/Í2ÿkVÿõ§¡~o¨¿Yü1Ì¿Z¡þ¡ã?!ÁýóôíCübëóñÚ|ÿø?CûMó8üê7Fö_ÿ8¿xøO¯üGªÞ§å÷ñ~<s~½ÿ�êoÞpþõõÿÒ?>¶µú DÈÐê78üéþÒúí'¾þ@ò%¤ûoÿ³x¾~Fê÷x°>®ô/5ðtüRæÎ¯úeþjÏϯ.ówýóþäßjxþýÝ¿åý½xkÿÒÿ=½¿Ôðú¢?ýý=Dÿ|üOæ?7ð|ÿ{ëóýËÑ!þáû#Ä?_?/ñïÁúzþÒ¯¡~áÙÏZþÞú¡üÐü7$þ×ø¿XÞË_åþvH?<ÿcùIÏ?ñP~òùÛ�å'?ùÓ³ü$~5É?ò~Ñ,ÿ(? þGú×2?ã}þ¤Ú~þõ±ý¢ÁÃóÓõ;ÿYÁ[Þw~ùøEâô§î?¢õ ñ ê?~ÿ;¤Cÿ9ä_~~¶ßøógh¿òï/þÐßöÿ¾ãþÓß/ëÓöÛ´ß®üÛÀþõ¯ÏÚß1@þ£å§Ì¯Ëíýø{ø»üÏbóOâVð¼ü¹êÿkx¾ÿ[ì§¼^¿¹Qû×ß÷ø?|&áß¿ÿ>½¿×ðDýøÑÿ~ÊRüïvý¨õÏOÿõÿ«à÷Ïúç#ÿ÷ª~òñçúç?Õ£ûçã?Wýè~úùÕâÿyÿ!ÿÐô/ïèoÔ?>ËÿWþpÀ?êüïè×òþlY?ä¹ùßä_Cý('¿ôücç7ÌÿÞÑþ-ýçüÖVðÿ©Ì¿ÓV? +å¿ÿï÷=ÒóH?æ÷û7¼?åÿñü Xþðþë +õ?ÿþOôgxÿÉÿ>~¤æ¡üáß¹òÃýòöÓU?9´_5ÿ-PòOßòÿóÇûÓë¡ýÀÏ?výª¿?äÿPþðñ¿ËúÚûAyÿÿíw~~wDüÇÍOør~ØQG2c\þÏsþø5¼áý Z_ïÿö�×2ºYÖÿNä×àüZÿµ¼?[ßßÿåëõ ïÇæ[÷å÷¯ÁCüóþ«Gø7ø_[_µÂ¿áýÔñÇço"äóüèñýkþä¾?!üÞïÁòÇÐÍѯ?,þc Ïû?;?ÝÿüOÇ}?Ú¿zéÃüÏ¿ËüéYü_õ£<?'@ùgÈ_:È¿¼ÿä9þÕý?tÿÊ?¾ÿ+Âûçñ¡ý¯å¡ÿlEú¯? ÒOÿåýýóüéó¯WR~(þ#¶ÿøøÇðÇ×oÿ8ÿVý',ÿhù¡üêù_¯? ôÏû?Ðþ2øR¿0i?_õ§ûYÿÙ¿ùkÐ~3Ì_ö¯?/ÿÏm÷òüDþ¯·çÿðÃüß`ÿÃü_ O×?_ý{³øÏþõü]@ëóö£øõúüû9oè¿sèþýw¾Øõú|ýççý¯�é÷#¤?>&õOþÖÎ ôËûOeþsÏûRUÁúߤþÊŹþÙ áßP¿¼£ýêw¸>_¿,þß�ÿ£÷Æò_[½Å~\þöãðg°¼?Þ~tH~ñõËGþïÿøÏ_ó§ïÈßå§¡þÊo:qÍ©ñÏ×/¯ìý+þ×ÊÉoÝÿ[îñOúÛ0f§èG÷?¡ýÆÇ°üäý,?ùùMÓ?jþo÷Ççÿ ýgð¿t¼ý§þã$ý]þãÀþÕûýÅ÷ÿËûE³òûÊ?NÊïåoÿ\þçÀþ½_Ê;¦Vþ÷jxÃû=ÒÿX¯oÈ_n;ßPÃÓóÜÎÏÏ_ºúç×øÏIý{ O×õ£àüüüËâß)ö×$ýÈûE#üÞí_Ï?Âû3Ìöèü|ýj@øçç^þëÔúIñ_zlfþà¿Ò¯æ¿ÞãÿÃÿdø__ÍѾþF¯âoòïÿþ¡ý¨çß¹ó«ôåÁÿÎPÿðódþi ÏÏ\üêåúþæÓ}Õ¿Wð}ýûúXûÏ/äúÍ'O_öìý¸'ÐÞ~à8[ó«¾ù@À£ÎÓ GM¾D¾Üe�^ð»Cè$hî4p~é´#à; Ðcð\ß?o�À´ñþ½óÔþ{¶Ü´04 R ×àÞÞàð ©&üè^DÜ| "§ÉÚ_áQ÷>Ft~©"ÝÀw4¼uLXö¿!ÊRÖ/Fàh}õvxÈyþ1èiXàw°~&¼Ð2EkÀ§®Âë.°¹c¡â)Çk»2ïE{EÜ(T o¨¢\Ñú¼(YÄf}óñþW|JW?z +£T¡6ëóU¬%XÃóSX]Bî_èköÏ¿ÂQ¢ø£ûW³(¥áÐ$ï_R¼ÈCõûç³xÝ¿e +wÿúxtÿ U¤èþø.d©"màù*ââßPEzä×Yùé7N~êU¤h}$ÿ´*Î W½è]îïý+ìú+®~ø)´Òñ +nyE³D±ÇòC{öÿÊYþ).#þÕ_qàô§^ õxET{Åé_¾üxÅÑ?£Wõiþ.ÀÞPEôódÁ8úQï?!úaø¯ðȯ!ÿ(Q,¿ÌS\fí¿°ß³ÿB¾gÿ,¿hüÅåþ.±ý×¾âQª Ýjì7 ZûK²h÷ü+>x ì ~¿ÿë÷;ý§EÑb@øã_ѱÄ*ÿE/®÷ì÷Hûo +ý&dð¯`Åí~Ðà¹(î+)ö³Û§².ü\¦üW² <E\þ©áé,+Y÷×D¯â¯tÁð§OÑ�ÞØàùé)2Åv´Íþs;¢¾_¦5ëóUØáÏpÿ¥ +otÿªÿzùÿsç*äÑùG]¨£û×_Fûç»�$Üß<EhDÿúÛÏûïââ»Búç_AY!ÿ¦Aúá«KÜw,ÿ´)¶pÿ<þ7¨¯¬ÿüÞ£_=ñÏWqd¸à¿â. É¢Öúuiñ¸ÞÁò÷_$~0I?Ò:+?eìÔý(ÿù*è°þ³øÿPþðþ¿Äü¯¿ÂÑ^éÇð +%·½Ýï?ø·×êù'?ô)F,SÐþùøyÈþ òçß+þ0)¿®øÃþ9ã¿áH(ÿùWý¬þx´¾Áh}ÿnÞ¸'"ö_ùWXV(ÿéüKÄöþÄÙÿjü%±ò_?AùexEuþ_Å+ô³ìø ò +L©BoàiûïÔð|ýÐOo©ë^á ÞP¿°QëëõßP¿�Ïo¨_@ø·Ô/DêþôøÄ¿a +Ä??iAø7ä¯È<¼Cç7Ĥ~a@?züo?x´>ïÿ´Cü'Büó÷/öûµWPþ.Þ&~QÃê'ÿñöÇU�9{þ;¿>Ñ¢¥þ`üÏW±g´¾¡Ëþ÷ÒEÓÀó¯.PþòþÛÂÝ¿>o©¿_» ù£wQï�ÿLþ_¦hþHoãOzüÚ_DþVà=e¿iþÛ¿¨öÏ×É+:³ò7¬ü×ë/ ýÀßB÷obí¾Úo)Ö;\®?»ê/fïÊOË+°üÔ§0CûÙ0:Qü¯¿ñGÛ¯Úèþ.rÏùoýF(?-S¼ ÿÒò?Hÿ´üRÿ:_êù¡ÿi8ÿ +íO>þ°ròG¥¿ù]^Q1Áûç»ø¡ýXÙ_a{<ùùøÈù×ú3¿ZÎ^°ð\aM/.&ùN|ì:<9Ë:#þyè¦;#q©Ç/ðDî,IF ï¾ïñJ;jû൤ì hÒö(ìðD.·| ¼hÐ~�0S['XáÀB +·CbÏN'K9Hû`OõõxçbùÀòX÷Ï ºw@D +ò +q@òù) i>àhRöÞèk+O0iw�²ÊT+;pp0KËZn?@óÂQWBñBOHçG2^à ¤?ï ûÀÒ!ñ$n_*+Jt3i"Q´8 |%Õp0<Üêºö3ɰX'ìr©(*/!/¨GØðO>Iè(8Ø2+T±LôPG )[3§| Çb^Ô·@ÄiÎ#,Tû#htp&eây¨àÇLÈÀ»¡LÔè xZ¹bRÓ-%ZDHåöO:vãæ¨7);ÐÈêæ5å*#ÂNTvI$ªt1y¬P/ ¦íP3õGÐtãñö3¥5y e3í:£ßÁR¦¯/eõÀómã{ÙÁ)°dÝA;þ£ì�KeOä~Ë5fR&jê]oÚå<Tß´ ÂGòoAÙ8èw òñEÊê<¹¤\Ï@Ýè Ý(25A)ðûôÊõ$e©Âi?�ÆP`[9FÒVVwPê ;ÐxAySWû�¼ þ÷7x½÷ÞÇps¢á&FxM6Áàâ|bc¨ÃáÊLÈöPU¢÷IíìD;ïݨyï.Â#ÚJ¤!5tÂ^i:XµÉdÊö © à %z$ËA�ݨËXvD^¡ì`tÐï@dÁôר"1»H,*GP=×2awȽ@@TG ¢y²(Pz¨úÎÏd!B +ʾ<Úî £DÍN<*Nv´¯HVsÚõ=¦$¢r²sjD3BâÊ +%*RªZÐ-0 .ÛëPG$ëe¥í_qL¦¨!ARîcª*;TÕõ`R6D² vî#*ÊÍP»r+W^&î$Õ°ð9í¬"ë *3exb&U?XHõ®¼ ÞÄ@RFÓC0Ã;àg\z¥£frIÙ¤HF¼ a|¥DÙÁM3O¿æé t ^£âpÐ.y}zB"záxée¹| ÞmêÊCCG3qöxç(B£Lõ¬jScª)sBU30p e`¨¸RYMPlù¤mÀªOÚñD +ê5fhhòI[©;É´]J9ç(QÃA\ð@²ÒQGúL-e"Ü9Qȵ<øâÿòõ§¯~ë>ÜÇ×úô4¨ð8*ùúÇ'F_]·çÿùöãÿþ×¾ÿ滿üó»_üî7¿ýøÛ?þúíÿ~óÝ·ÿù¿ûÃOßÿðÃÇñÍùñÛÇǾÿûÇO¿úøóO?ýí×_}õóÏ??~úó÷ÿ|ü廾ú£ÛÒþñù¯þöÏîñç~üá_ÿ÷§ýú¹»ÿÜQ· +endstream +endobj +8 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 426 0 R +/Name /Im1 +/Width 26 +/Height 49 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿH;þæf)ú r�Fg +endstream +endobj +9 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 427 0 R +/Name /Im2 +/Width 40 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÁþáÿù@Âþ?øPßðÿçúü?ì°ÿf°ÀþøC+âÿÿÇÿÿ£ +µóuÏ=V¤ +endstream +endobj +10 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 428 0 R +/Name /Im3 +/Width 29 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`øÏÀÀþÿ�üÿöÇ?0Ô÷ÿ`øÏÿÿñÿ`þÇþùóæÿ10àÂÿÿÿAÁøÔR×ÿÿeê6J�µJç +endstream +endobj +11 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 429 0 R +/Name /Im4 +/Width 35 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`ÿÃÀÀPÿÿ�ãÿÿÿ°ÿ``ÿÀøÿÃ?ùõö@¢LÔ7�9â?x@¦ aØx°E`+ÁvÈiÊ +uó5�¥yE? +endstream +endobj +12 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 430 0 R +/Name /Im5 +/Width 28 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüQÇðÿÇÿÿ?ÿøÿûüÿ¿å?ðÿÿÀþù°ÿa?ÀþýÅøÿÿ(XF¡n¾"�0¢8à +endstream +endobj +13 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 431 0 R +/Name /Im6 +/Width 63 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÍÅ¡ 0ÐOáØ¤0¤·#°JÙ¤ º²¦ +Ï3¯Ë}M`¶£²¶'·ílAµ§Ê¯æø`ø\!ù}¤MFraýÚ ó:Þ³ý +endstream +endobj +14 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 432 0 R +/Name /Im7 +/Width 36 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmË¡0áÍ "S�"f(#Eá/tB+)%(ì½}3g>óï¢0ð"¹!õÒ-H/·Mü(<5¹}ììã²êÿH^6>(}¥%´ÈFS®6O}ùålEd +endstream +endobj +15 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 433 0 R +/Name /Im8 +/Width 25 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcc``@ÇvH¸ÿ10013³±üÿÿ03T<ÌÞ3þcg`üÏÏÀð¡þý >0HêÕ¯�>3 +endstream +endobj +16 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 434 0 R +/Name /Im9 +/Width 18 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc~ÀÀþÿü3?`Àÿ0üGBüØ)Fÿÿ#!ãºMb�Èá8 +endstream +endobj +17 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 435 0 R +/Name /Im10 +/Width 49 +/Height 48 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿõX©üÿ Q¢ìj@<âgø¦P© DÀТ@áÓ24¨]o�¿¬cõ +endstream +endobj +18 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 436 0 R +/Name /Im11 +/Width 25 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-̱ 0 á_¢ ¼dËJ7�(X ®IÅ<²>éI¶¾1z#H¢ñÕ,ÝL}5ÀqÈ +ÙOýT>úîÅmtS°ÉNBWê ½Ýê´ðWÇ)®{¼�ö6 +endstream +endobj +19 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 437 0 R +/Name /Im12 +/Width 39 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcü#ÿáÿÿþxPß�¤å°ÿcÀþÿ`ÿ'þÀf0ñHâ^°Qü? Æ-úÏ`ýÿÿ ì g°ÄrP iк^Ý|]�¼¬a +endstream +endobj +20 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 438 0 R +/Name /Im13 +/Width 39 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃÀÀðÁ"Ø)"ä� aìÿÿÿêØÿ3È`ÿÇÀÿ�¨ýø#ÿ ÿ$Pµ!̶lå÷@Ëq�ä ÓÔê6ê�â×\~ +endstream +endobj +21 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 439 0 R +/Name /Im14 +/Width 19 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃð ñÿa` ôÿÿ86ªÛ(�S?o +endstream +endobj +22 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 440 0 R +/Name /Im15 +/Width 32 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xM˱ À ÑoQPzB9X,6É* ()."qÒ+<¢TÅMn¾»ÎÆ%4`R·bÔUàT~ì/Ó¸#øÇ) ¨6$ø ó{ÄÑ< +endstream +endobj +23 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 441 0 R +/Name /Im16 +/Width 29 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]ñ0ÐÏQPºÆEÌÊcÉ(@UÎ{÷(Ù¡ìPªïõkr¥sç¹ÈlbÄZÕ:éÕpì÷s¾h,5 +endstream +endobj +24 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 442 0 R +/Name /Im17 +/Width 5 +/Height 5 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øñãÃVÖê^�#eG +endstream +endobj +25 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 443 0 R +/Name /Im18 +/Width 39 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÏÀüñ?û?{ö@DHC|óô0%7g`8ÞØ#ùÛåDèc`fa#6� æ6lÌ*`Ä +>æ +ÿûÿ þÿê2u³Uô+ +endstream +endobj +26 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 444 0 R +/Name /Im19 +/Width 27 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUû 0Àg¥pÉ�|²HÄ\TÈ{°GÉ âáN:!!¤¡$EÞǾêhjhà;¤îqmLþ¯¡¶Å=v-:æå¼Ö¶) +endstream +endobj +27 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 445 0 R +/Name /Im20 +/Width 16 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³±¯K?Ü~¼ÿ8?;;Ê@¡PíD!�ÌϦ +endstream +endobj +28 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 446 0 R +/Name /Im21 +/Width 14 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÀüGÇǧ¢þÃÿ °£@Æ¢ÂþPÍDa�:ÿ +endstream +endobj +29 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 447 0 R +/Name /Im22 +/Width 19 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãglon0nnH¢vÃíìì ÄÇG +<2 22 @Ïæ�ÿûæãÂBµÅ�4 r +endstream +endobj +30 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 448 0 R +/Name /Im23 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã? ù�s²3@ <1_ºÌyÙ~y6yûË,<Ãgj,dkç� ù +endstream +endobj +31 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 449 0 R +/Name /Im24 +/Width 6 +/Height 13 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x± l¼µ-¼�%Tr +endstream +endobj +32 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 450 0 R +/Name /Im25 +/Width 22 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°ÿÃ�D̽øH Ù@QU0ü�¢0Ô70È30ÉÖÎ�; +endstream +endobj +33 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 451 0 R +/Name /Im26 +/Width 37 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5Ʊ 0á_«àkÓèUväï8Ñlp¸LF\"]4 6ß~ÅWУµ¨\=!Óð© +©5c¦0!¦0#VÏG¦oÆ!óäLøíÅdÚÂ&1tz7/Ê#8 +endstream +endobj +34 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 452 0 R +/Name /Im27 +/Width 33 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÿü#`°aøÀNT0>À >0ÿÿC Æì èó~t½Aøÿh�P©-�Ìä. +endstream +endobj +35 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 453 0 R +/Name /Im28 +/Width 27 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿQÿ ùøøxàXAÛ0 à +üá�36@03Có00XX00È```?ÀÀ -[1[�æÀ +endstream +endobj +36 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 454 0 R +/Name /Im29 +/Width 11 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc8Àøñ�càc°g0nHn8ÎpÈA hÙ`Ï ÇÀ-S;�`0H +endstream +endobj +37 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 455 0 R +/Name /Im30 +/Width 11 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc8ÀÌ øÿÁÿìì|P( + @xÀâ|?·TíL>�Õ=» +endstream +endobj +38 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 456 0 R +/Name /Im31 +/Width 25 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãg8Ì ßx¼ÁA¸¹¹ápsc;3ó±33 0³1ðñ1?¼ûçÌ0H +ÕN�l¡; +endstream +endobj +39 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 457 0 R +/Name /Im32 +/Width 15 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcàcBdðñ³@ád<�Ì É ß¾3üc¨`àWiÍ�à!õ +endstream +endobj +40 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 458 0 R +/Name /Im33 +/Width 17 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc|ÆÀþÏAFÁFÁB¡>XÀQà>6~f°·caª( +�û>Ú +endstream +endobj +41 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 459 0 R +/Name /Im34 +/Width 20 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°¯gHÜ|¸áxsÃqæv0âcg">>I�"þì "BµÅÓ Ó +endstream +endobj +42 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 460 0 R +/Name /Im35 +/Width 18 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcà?À ß1°ÿcà³cc°a°a¨�£pÔð¡°áAaà ìíäddkæ�v +endstream +endobj +43 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 461 0 R +/Name /Im36 +/Width 16 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãgï7îOîOn?ÜÌÎÌÎÌÇ,|<2<||ìÕN�¾? +endstream +endobj +44 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 462 0 R +/Name /Im37 +/Width 11 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcccøÇð'üÿàÿnáÚI�~Ìà +endstream +endobj +45 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 463 0 R +/Name /Im38 +/Width 26 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿÿ@ÌÏ ÇÀÏÀC5ÌÎ ÁÀÞ ÁÀÜ`ÀÀxÀáÁúòR²u³ål²z +endstream +endobj +46 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 464 0 R +/Name /Im39 +/Width 20 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûWÇðï?|?<{èÿù@$"T?Q�TS +endstream +endobj +47 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 465 0 R +/Name /Im40 +/Width 10 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xa°CdðåðÀÿþàmà �Ì _ +endstream +endobj +48 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 466 0 R +/Name /Im41 +/Width 19 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßÿàÿ9ö9f~6(bï£;Ì7Àèãbx�EÂBõÅ�Ri +endstream +endobj +49 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 467 0 R +/Name /Im42 +/Width 15 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc~ÀÿAÆÂB¦B®ïÿ¿ÿÿ>0@`C ÿæüBõ �gòà +endstream +endobj +50 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 468 0 R +/Name /Im43 +/Width 13 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû÷àÿù +¹ +99lðÿÿx ê' +�� +endstream +endobj +51 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 469 0 R +/Name /Im44 +/Width 13 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x)�Öÿ°?ðppà0à0ð�þ�Ààðø�xÀ8À8à8ðpÿà ºþ¦ +endstream +endobj +52 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 470 0 R +/Name /Im45 +/Width 12 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcc`C> c°cøÿàÿ94h�| üðHÕÏ��÷ +3 +endstream +endobj +53 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 471 0 R +/Name /Im46 +/Width 19 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßÿàÿ9ö9f~6(bï£;Ì7Àèãbx�C@¨à�ÃÏ Çêl¥ê'�ü\ +endstream +endobj +54 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 472 0 R +/Name /Im47 +/Width 18 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀÀÿANÁ¡½¡¹áó4J�3`ª( +�oóR +endstream +endobj +55 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 473 0 R +/Name /Im48 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨aüÇ|}>¿<??þðÿ ë?ÔmÃ�]^ +endstream +endobj +56 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 474 0 R +/Name /Im49 +/Width 21 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿ~²àg0àg(àgøÀÏøáÿ©-�`° +endstream +endobj +57 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 475 0 R +/Name /Im50 +/Width 32 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûgÇ~àßÿùäÛ7|g~PÂrÌÆÿÏÿü +Bõ2G" +endstream +endobj +58 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 476 0 R +/Name /Im51 +/Width 20 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÇÀðAªcÿÏ ßÞ Çx@ñ}À@@RÊdÿ3HÔ0ÈÖÏ�>a0 +endstream +endobj +59 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 477 0 R +/Name /Im52 +/Width 20 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûgßðϾAÄßÀ'ßÀÿýóó"Bõŧ® +endstream +endobj +60 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 478 0 R +/Name /Im53 +/Width 18 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`n`~ÿïÛ² rpd!Ã`cÃ`ÿÁüCÙÿ`°ÿÇ ÿÁþCûTÀÜ`ÃÏ ÿýLý$Q�< +endstream +endobj +61 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 479 0 R +/Name /Im54 +/Width 27 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿÿ@=Wð3(àg<ÀÏpà?Ãü ÈÌüÿKËÔÏ�ø1 +endstream +endobj +62 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 480 0 R +/Name /Im55 +/Width 20 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÇÀðAªcûÏ ßÏ ÏÞ GúþÈÖÏ�·¹³ +endstream +endobj +63 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 481 0 R +/Name /Im56 +/Width 26 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏðÿÀÿÿøäøð1ïP\Å6@,ÅüPÌÞÄgxñ 3üâ ¶c9 - Ìà %S7[�®¸X +endstream +endobj +64 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 482 0 R +/Name /Im57 +/Width 10 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÇðAdøÿÀÿ\² s¸ÿª · +endstream +endobj +65 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 483 0 R +/Name /Im58 +/Width 19 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÀ`ÿ¡Æ¡F,ääØÿ1Èÿc°c¨cø�B dPQÿÀþÿþþa¡ú¢�þt^ +endstream +endobj +66 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 484 0 R +/Name /Im59 +/Width 20 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°o`�"vùyÿÿ9ùö +öö¨�,eÁRÆÿýûó"²õsÄ£o# +endstream +endobj +67 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 485 0 R +/Name /Im60 +/Width 28 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`c``àGÂò ¨Øø�'>@àౡÿÿ``þÿÁÙäàXÿøÿedëçÈ�<; +endstream +endobj +68 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 486 0 R +/Name /Im61 +/Width 24 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÀÿÿø~ð3Ôð3Øð3Ø!!°à~ ÿø!jârüò¨¢þÏÿÿ?þÿ? !S7[�¹Ä= +endstream +endobj +69 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 487 0 R +/Name /Im62 +/Width 18 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÐ ÿ³ÁF¾¡½¡¹á1BÑ ªa`¨?À`ÿAþûÿ ü Ì@ñÀianøÀÌðáüæBrusÄÔ´$ +endstream +endobj +70 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 488 0 R +/Name /Im63 +/Width 28 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿÿüø*Øí°`<HHýÿ~æ@>Í�ÂðdlÀÏPcðÿCMÂÿöøÈÈÖÍ�ï² L +endstream +endobj +71 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 489 0 R +/Name /Im64 +/Width 25 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xu̱ 0áiÔ6ÉÌBä â0YÅ RÚÅß`kñuÇ$Ú%WWùx3(½sÚÌÝÁ·Ù?ÙØd#¾L¸º@« +s<Îø�"Ь +endstream +endobj +72 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 490 0 R +/Name /Im65 +/Width 27 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ�Ãÿÿøþ�±Ë1²7�ñ~f~@�CÕôôò7@̱ ²ã?Ð.iºÙ +�Ñz1 +endstream +endobj +73 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 491 0 R +/Name /Im66 +/Width 20 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûWÇðÿ?|{ó9Æ ÄðAÄ�Éÿg«ac@GÿTýDq�¦ +endstream +endobj +74 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 492 0 R +/Name /Im67 +/Width 15 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀÿC®Æ¢¦¢¦ÀâV0T°Ù°Éñðÿ`~À/T?Q�Z +endstream +endobj +75 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 493 0 R +/Name /Im68 +/Width 5 +/Height 5 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øñãG+km�!à +endstream +endobj +76 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 494 0 R +/Name /Im69 +/Width 27 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûoþÁ ãgoãgf�a~þ6nc`}7a`þøü``|ð00H`ª(�ügH +endstream +endobj +77 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 495 0 R +/Name /Im70 +/Width 11 +/Height 3 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿà?r37tñ�2ÕÄ +endstream +endobj +78 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 496 0 R +/Name /Im71 +/Width 5 +/Height 13 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øðãG AA+om�Mâ +endstream +endobj +79 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 497 0 R +/Name /Im72 +/Width 20 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc~ØÀÿ¹ANºÁ¿¡>` 8P|ÿ÷æç ìÈþHÕO�æ +endstream +endobj +80 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 498 0 R +/Name /Im73 +/Width 21 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«?ÿ¡þüþöö6æ3Ìw00|�£ +?@4Y½áÿü@$*Ô0Q� ÿ +endstream +endobj +81 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 499 0 R +/Name /Im74 +/Width 12 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿ~Òà úÙü�6 +v +endstream +endobj +82 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 500 0 R +/Name /Im75 +/Width 27 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°ço`øÿÿ�óãÏØÛ?`g?üýà~æèøÿÿ?`M\ßþ¥eæH��-Û&Ù +endstream +endobj +83 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 501 0 R +/Name /Im76 +/Width 19 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÇÀðAª?�Bvrrr räèÉU0ÈÕ0ÈÙ0È1ÈÉ3üÿ�eëç�Ñ/ú +endstream +endobj +84 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 502 0 R +/Name /Im77 +/Width 14 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿSÿ§¢¢àGÂÄɰ7°÷ðóÈóÈÉØHÔHTTüÿñÿPýD!�²lè +endstream +endobj +85 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 503 0 R +/Name /Im78 +/Width 27 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°o``øÿùÁö~9 äg°càòØjØpó`U¸1H L=H/ÈY 3AfTìb�Ú)-W7G�b»& +endstream +endobj +86 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 504 0 R +/Name /Im79 +/Width 21 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°g`øßÀü¸½ý�;û~ bnàg`£ÿÿ�?3±¨¾ýÊ6Ì�÷Ä> +endstream +endobj +87 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 505 0 R +/Name /Im80 +/Width 23 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`g`àg`¨g`ÿÏð~üg` ªÿÿÄÕ«)� -g +endstream +endobj +88 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 506 0 R +/Name /Im81 +/Width 42 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿ õÈdCýûúü @J�Iæ ò�|�$q@aI ZuËõWÒ +endstream +endobj +89 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 507 0 R +/Name /Im82 +/Width 46 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUű à �À·\|ÀHé(,±ËT92 £ü/È#á(nîemL 3ÊÅsÌ0)ÇeeÝ�êªk·Í;@p§3ßÁôÙ? 3�Ë%%Jw1b>ðy}ÔÃ=É +endstream +endobj +90 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 508 0 R +/Name /Im83 +/Width 29 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°ÀÀøÿóÿüêäȰoà�Âõì`ø?û|¦¦dÈ<öÿÿÁæ3�í®¥�1 +endstream +endobj +91 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 509 0 R +/Name /Im84 +/Width 39 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿ@�&0ÿc°�$ø?� ö â`ÿ`:ÀzÁ¦�ͲdPJÈ8$B]³n �k)RR +endstream +endobj +92 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 510 0 R +/Name /Im85 +/Width 23 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûüÁÿó?þßÿÃÿóÿGzðÿAÿâÑÿÿP$.]7K�÷(ù +endstream +endobj +93 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 511 0 R +/Name /Im86 +/Width 32 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿá?óÿ3ð?ÿÿÿÿüÿØ?ðÿ`þÁÿñÿÊÃð"0T-Pï dñÏËþ¿ñVÝJU�2H +endstream +endobj +94 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 512 0 R +/Name /Im87 +/Width 15 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿà?òS þÿüZu+ �JÒ.£ +endstream +endobj +95 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 513 0 R +/Name /Im88 +/Width 26 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xEÌ» 0Ð((ÝCáQ¼ñLs£dJ(Æ E¯º(qaiJºÁ\½âÃW@?�S¹+TJ[|½%Gz Û~ú�;Ê,4 +endstream +endobj +96 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 514 0 R +/Name /Im89 +/Width 51 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû Aþ�ÃÿÿÔ`øüÿÃÿ?øÏó>üÿûwF uùÃ?þ̨Ì?èIýÿgÿ¿ÿÿTÊXºv�B^& +endstream +endobj +97 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 515 0 R +/Name /Im90 +/Width 28 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=ÍÁ Ã0À5zè©zù&¬Æ¾rRÆrî@!Â1y,DzÂw/üx5zCóÅWäË@ºM~Þh�;°)l +CNT ´LúD$hjÉ=.é¯#ÅÏCÿ´`joííÚõÚñx®¯ù_P¤ +endstream +endobj +98 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 516 0 R +/Name /Im91 +/Width 20 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc(``£ ÄFÌØ?0È`øÿÿ±E@ùÇÆÿþ70Ø3¨Õ/�CÓ.C +endstream +endobj +99 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 517 0 R +/Name /Im92 +/Width 30 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüßÀÀÿÿüÿ?öÿ1بbûùû~ûf*þÿ¿å?Ø7Ô�Uñ?\âÆû öÿçÿáÿÏÿùó9éºY�HÌ/÷ +endstream +endobj +100 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 518 0 R +/Name /Im93 +/Width 32 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûàÃÿÃÿþÿÿÿþ;@|ýÿ(~@þÿÏþ?+H×ÎR�ÿ<| +endstream +endobj +101 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 519 0 R +/Name /Im94 +/Width 22 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x%± ÐO((íl(\Á XÉÂÀLÜ×yá«ñåù¹/ÔD-^3Ôpü'@A¨ì²QÍÑÜoýfÑ))7ûE¬±´ø�ë/M +endstream +endobj +102 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 520 0 R +/Name /Im95 +/Width 40 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿàÿÃÿÿA<C ?0àg° öì é ùÀóÌl`|Øø`øÜøá3¨føÆÀPH "2@¨![?[�u4l +endstream +endobj +103 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 521 0 R +/Name /Im96 +/Width 14 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÀþOÏF¦BÆ@Aþ�ÿö* + +>�áõäøj' +�/© +endstream +endobj +104 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 522 0 R +/Name /Im97 +/Width 1 +/Height 1 +/BitsPerComponent 1 +/ImageMask true +/Filter /FlateDecode +>> +stream +xc`�� +endstream +endobj +105 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 523 0 R +/Name /Im98 +/Width 9 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãa¨aøÃ0Aüßð¿S ®�vl +endstream +endobj +106 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 524 0 R +/Name /Im99 +/Width 23 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûðßÿÿäHB| ì Ìÿ70Ô1×O�Ñ +endstream +endobj +107 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 525 0 R +/Name /Im100 +/Width 19 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûóáÿ?y~vèÿü@$Ì×Ð+�7 +endstream +endobj +108 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 526 0 R +/Name /Im101 +/Width 8 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x°±`�8øÿC¼a�AEö +endstream +endobj +109 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 527 0 R +/Name /Im102 +/Width 16 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûgÿÏÞBFFBFÏ�ØØ c�_}¯0� +endstream +endobj +110 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 528 0 R +/Name /Im103 +/Width 13 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã? ÿÀ¢ âÿÿ?>0`C üö¼|õ½�, +endstream +endobj +111 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 529 0 R +/Name /Im104 +/Width 13 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûûàÿ¹ +¹ +dø¿á/_C/�Æà +E +endstream +endobj +112 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 530 0 R +/Name /Im105 +/Width 11 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x?Pà2üc¨o?Àæ<xðÿÀ|n¾ú^>�O +endstream +endobj +113 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 531 0 R +/Name /Im106 +/Width 10 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x`�C +ÿ ÿ,àoàgà©Ì�â + +endstream +endobj +114 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 532 0 R +/Name /Im107 +/Width 16 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûgÿÏÞBFFBFÏ�ØØ ccC2Ãgcÿ*Dê{ + +endstream +endobj +115 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 533 0 R +/Name /Im108 +/Width 15 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc? ÿÁ¢@¦@æÈXXÈ`?ÀÏWß+�áA² +endstream +endobj +116 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 534 0 R +/Name /Im109 +/Width 13 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÀþ¯¯BÆ@ÿ7üo±!HW¼a7�:| +endstream +endobj +117 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 535 0 R +/Name /Im110 +/Width 19 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿ9( =c8 Çx@ýÀÿÿ $,^?M�ûr +endstream +endobj +118 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 536 0 R +/Name /Im111 +/Width 29 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûóÇáÿ¿ÿ òüȰ3Äÿç?ÿ²| ½r�×t¹ +endstream +endobj +119 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 537 0 R +/Name /Im112 +/Width 18 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÃÀðA+úà ÿAA¹Aù�:boçgþÇ ñAH¼a�äC +endstream +endobj +120 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 538 0 R +/Name /Im113 +/Width 19 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûcÏðÇAâggàÿÿýùa¾^�¸>ó +endstream +endobj +121 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 539 0 R +/Name /Im114 +/Width 16 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãgÿ¿ üCÔ?ÈoH`¨ÿ`ÿ£þϹ| Xacÿÿh}¯�n# +endstream +endobj +122 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 540 0 R +/Name /Im115 +/Width 4 +/Height 10 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKøð¡ÀÀ áWm3�9 +endstream +endobj +123 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 541 0 R +/Name /Im116 +/Width 23 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿÿrÌä>È1TÈ1XÈ1ØÈ1ÈÈ1ÈaC2`dVùAñPïÿÿââõÓ¤Øy{ +endstream +endobj +124 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 542 0 R +/Name /Im117 +/Width 18 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûóáÿy~öæè½(%ÿAæýo�!!^�X½ +endstream +endobj +125 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 543 0 R +/Name /Im118 +/Width 16 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x?Pÿ ¢ ÂÂÀÿý +¬?XWT×ÿà«ï�¹ +endstream +endobj +126 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 544 0 R +/Name /Im119 +/Width 20 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcø#Àüß¿ùà + Ä@â@Y9ü Ìÿþ0×M�`t +endstream +endobj +127 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 545 0 R +/Name /Im120 +/Width 15 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã?bÿ¦¢&AæÌ<þ0Ô°ÿ ÿýC ß0| óÃâþöüâuÓD�O^y +endstream +endobj +128 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 546 0 R +/Name /Im121 +/Width 13 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc ÿ梢¢Àà0THØÈ`?ÀËWß+��ç±| +endstream +endobj +129 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 547 0 R +/Name /Im122 +/Width 20 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿÿ9ærä> óùÿ òÿä°£ÿ@HD¼~�λ +endstream +endobj +130 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 548 0 R +/Name /Im123 +/Width 4 +/Height 4 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKøð! ¥¶�d³ +endstream +endobj +131 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 549 0 R +/Name /Im124 +/Width 22 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÃÀüùãl0P +j*êùÛ�õ2üa¯& �Ó +endstream +endobj +132 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 550 0 R +/Name /Im125 +/Width 21 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿÿ9ærä> Ë|@þüÿ0© +TRóÿÿÿÿDÅë§I�n/ +endstream +endobj +133 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 551 0 R +/Name /Im126 +/Width 16 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûWÿ¯^ƯýûææìØ>ðÈXü©ÿS/ÀWß+�òf ¡ +endstream +endobj +134 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 552 0 R +/Name /Im127 +/Width 15 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÀþOFÆÆÂ¦@¢áCÃ÷ÿüù!óAÐ()ÿý�¿hý!�æ +endstream +endobj +135 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 553 0 R +/Name /Im128 +/Width 12 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcfàgøÏð/¬ÿPÿG´n�xX +endstream +endobj +136 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 554 0 R +/Name /Im129 +/Width 13 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xo°PøáÇ?* +*@ðÃÆÌ ì|<õþ!¯hÝ!�8 +endstream +endobj +137 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 555 0 R +/Name /Im130 +/Width 15 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc? ÿÁ¦¢Â¦@¦@æ:VØØTÈ`?À/Z?E�ç¼t +endstream +endobj +138 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 556 0 R +/Name /Im131 +/Width 29 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏÀþãÿùþ ,%±Äd®8À¶Í,ÏÁ|ÌþóÉÿ�aYñúi +�|s*k +endstream +endobj +139 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 557 0 R +/Name /Im132 +/Width 9 +/Height 3 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßð9Úy�)à +endstream +endobj +140 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 558 0 R +/Name /Im133 +/Width 19 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÃÀðA+úà ÿAA'ú?ÿ 7L�sЫ +endstream +endobj +141 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 559 0 R +/Name /Im134 +/Width 22 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿ£þÿ + +2*x ¡Äÿÿ�×O�ñgL +endstream +endobj +142 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 560 0 R +/Name /Im135 +/Width 23 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÇøï?ã?ù >` ýÀ@òÄ6vrüì@ù#1�QÁ2¯&�Ïï> +endstream +endobj +143 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 561 0 R +/Name /Im136 +/Width 9 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÃðA(ø¿á§xÃ4.�¹K +endstream +endobj +144 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 562 0 R +/Name /Im137 +/Width 18 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨c`�">,ÿü?9 +>¨ÁÂAþÿþóÄë§��¨Ûï +endstream +endobj +145 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 563 0 R +/Name /Im138 +/Width 21 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÁÿÿäÈ1$È1È1Èñ@ü2äx$ ,@Ê@?üÿB¢âõÓ$�@÷ +endstream +endobj +146 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 564 0 R +/Name /Im139 +/Width 4 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKøð!,¾Ú^.�Dg +endstream +endobj +147 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 565 0 R +/Name /Im140 +/Width 13 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÁø¹äcøÃðù°Ê²3070þ`øÁ«X7C�Ka Ý +endstream +endobj +148 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 566 0 R +/Name /Im141 +/Width 18 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÃÀðA+ªo�!²ä0È}�s+dldäþÛ�"!ñiÂ�óÚ +endstream +endobj +149 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 567 0 R +/Name /Im142 +/Width 22 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûó,* +H¦&AæO̾s¿í�{{17033ñÕ÷J�WÍc +endstream +endobj +150 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 568 0 R +/Name /Im143 +/Width 10 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcl`>À|±øð`Ä |<ð¹á?ló4n�0ÊÁ +endstream +endobj +151 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 569 0 R +/Name /Im144 +/Width 13 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÁð+dn`üÁPÁø¹»<Pï^źB�: e +endstream +endobj +152 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 570 0 R +/Name /Im145 +/Width 22 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÃÀüùÃ?Ç$Ûgfî9"ÉíÇgüý`Qñ@¡ùÿÿbâuÓ¤dG/ +endstream +endobj +153 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 571 0 R +/Name /Im146 +/Width 13 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcl`n°oøßp¼høÿÇÿ¼25³Ei à +endstream +endobj +154 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 420 0 R >> /XObject << /Im58 65 0 R /Im57 64 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im46 53 0 R /Im42 49 0 R /Im39 46 0 R /Im67 74 0 R /Im47 54 0 R /Im52 59 0 R /Im39 46 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im57 64 0 R /Im57 64 0 R /Im41 48 0 R /Im40 47 0 R /Im57 64 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im67 74 0 R /Im39 46 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im40 47 0 R /Im39 46 0 R /Im57 64 0 R /Im43 50 0 R /Im53 60 0 R /Im42 49 0 R /Im59 66 0 R /Im40 47 0 R /Im43 50 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im70 77 0 R /Im67 74 0 R /Im67 74 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im71 78 0 R /Im67 74 0 R /Im57 64 0 R /Im57 64 0 R /Im42 49 0 R /Im59 66 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im30 37 0 R /Im20 27 0 R /Im33 40 0 R /Im34 41 0 R /Im96 103 0 R /Im147 156 0 R /Im148 157 0 R /Im96 103 0 R /Im29 36 0 R /Im30 37 0 R /Im29 36 0 R /Im148 157 0 R /Im34 41 0 R /Im30 37 0 R /Im33 40 0 R /Im149 158 0 R /Im150 159 0 R /Im21 28 0 R /Im151 160 0 R /Im152 161 0 R /Im43 50 0 R /Im42 49 0 R /Im42 49 0 R /Im39 46 0 R /Im51 58 0 R /Im57 64 0 R /Im45 52 0 R /Im45 52 0 R /Im21 28 0 R /Im30 37 0 R /Im33 40 0 R /Im150 159 0 R /Im17 24 0 R /Im71 78 0 R /Im146 153 0 R /Im153 162 0 R /Im154 163 0 R /Im155 164 0 R /Im156 165 0 R /Im62 69 0 R /Im57 64 0 R /Im45 52 0 R /Im42 49 0 R /Im39 46 0 R /Im59 66 0 R /Im60 67 0 R /Im45 52 0 R /Im76 83 0 R /Im40 47 0 R /Im39 46 0 R /Im71 78 0 R /Im146 153 0 R /Im153 162 0 R /Im155 164 0 R /Im155 164 0 R /Im157 166 0 R /Im68 75 0 R /Im60 67 0 R /Im67 74 0 R /Im57 64 0 R /Im47 54 0 R /Im44 51 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im55 62 0 R /Im47 54 0 R /Im69 76 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im45 52 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im45 52 0 R /Im43 50 0 R /Im42 49 0 R /Im42 49 0 R /Im39 46 0 R /Im47 54 0 R /Im69 76 0 R /Im67 74 0 R /Im39 46 0 R /Im51 58 0 R /Im42 49 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im40 47 0 R /Im59 66 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im44 51 0 R /Im44 51 0 R /Im42 49 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im158 167 0 R /Im20 27 0 R /Im33 40 0 R /Im147 156 0 R /Im159 168 0 R /Im71 78 0 R /Im59 66 0 R /Im52 59 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im68 75 0 R /Im74 81 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im40 47 0 R /Im59 66 0 R /Im42 49 0 R /Im57 64 0 R /Im67 74 0 R /Im44 51 0 R /Im42 49 0 R /Im47 54 0 R /Im39 46 0 R /Im42 49 0 R /Im69 76 0 R /Im47 54 0 R /Im52 59 0 R /Im57 64 0 R /Im59 66 0 R /Im57 64 0 R /Im40 47 0 R /Im76 83 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im66 73 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im43 50 0 R /Im41 48 0 R /Im42 49 0 R /Im42 49 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im46 53 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im42 49 0 R /Im39 46 0 R /Im67 74 0 R /Im47 54 0 R /Im52 59 0 R /Im39 46 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im71 78 0 R /Im45 52 0 R /Im47 54 0 R /Im53 60 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im69 76 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im40 47 0 R /Im45 52 0 R /Im44 51 0 R /Im43 50 0 R /Im42 49 0 R /Im57 64 0 R /Im42 49 0 R /Im41 48 0 R /Im39 46 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im68 75 0 R /Im160 169 0 R /Im47 54 0 R /Im69 76 0 R /Im42 49 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im71 78 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im50 57 0 R /Im42 49 0 R /Im50 57 0 R /Im47 54 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im42 49 0 R /Im72 79 0 R /Im52 59 0 R /Im40 47 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im42 49 0 R /Im73 80 0 R /Im67 74 0 R /Im42 49 0 R /Im42 49 0 R /Im59 66 0 R /Im44 51 0 R /Im51 58 0 R /Im46 53 0 R /Im57 64 0 R /Im43 50 0 R /Im53 60 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im41 48 0 R /Im40 47 0 R /Im57 64 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im67 74 0 R /Im66 73 0 R /Im67 74 0 R /Im40 47 0 R /Im45 52 0 R /Im46 53 0 R /Im47 54 0 R /Im48 55 0 R /Im66 73 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im70 77 0 R /Im59 66 0 R /Im46 53 0 R /Im67 74 0 R /Im47 54 0 R /Im50 57 0 R /Im66 73 0 R /Im52 59 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im71 78 0 R /Im45 52 0 R /Im43 50 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im40 47 0 R /Im50 57 0 R /Im66 73 0 R /Im57 64 0 R /Im42 49 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im42 49 0 R /Im59 66 0 R /Im44 51 0 R /Im79 86 0 R /Im39 46 0 R /Im40 47 0 R /Im45 52 0 R /Im42 49 0 R /Im159 168 0 R /Im33 40 0 R /Im96 103 0 R /Im159 168 0 R /Im30 37 0 R /Im33 40 0 R /Im149 158 0 R /Im150 159 0 R /Im21 28 0 R /Im151 160 0 R /Im161 170 0 R /Im39 46 0 R /Im52 59 0 R /Im45 52 0 R /Im55 62 0 R /Im71 78 0 R /Im146 153 0 R /Im153 162 0 R /Im155 164 0 R /Im162 171 0 R /Im157 166 0 R /Im68 75 0 R /Im60 67 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im40 47 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im45 52 0 R /Im42 49 0 R /Im59 66 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im47 54 0 R /Im34 41 0 R /Im22 29 0 R /Im163 172 0 R /Im149 158 0 R /Im21 28 0 R /Im20 27 0 R /Im47 54 0 R /Im48 55 0 R /Im66 73 0 R /Im47 54 0 R /Im45 52 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im40 47 0 R /Im57 64 0 R /Im57 64 0 R /Im46 53 0 R /Im44 51 0 R /Im52 59 0 R /Im164 173 0 R /Im67 74 0 R /Im40 47 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im57 64 0 R /Im46 53 0 R /Im57 64 0 R /Im43 50 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im40 47 0 R /Im77 84 0 R /Im42 49 0 R /Im151 160 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im159 168 0 R /Im33 40 0 R /Im96 103 0 R /Im159 168 0 R /Im36 43 0 R /Im33 40 0 R /Im150 159 0 R /Im22 29 0 R /Im21 28 0 R /Im157 166 0 R /Im51 58 0 R /Im46 53 0 R /Im52 59 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im44 51 0 R /Im47 54 0 R /Im50 57 0 R /Im42 49 0 R /Im55 62 0 R /Im44 51 0 R /Im55 62 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im50 57 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im47 54 0 R /Im59 66 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im40 47 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im39 46 0 R /Im50 57 0 R /Im66 73 0 R /Im66 73 0 R /Im42 49 0 R /Im59 66 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im47 54 0 R /Im39 46 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im51 58 0 R /Im46 53 0 R /Im52 59 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im66 73 0 R /Im43 50 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im55 62 0 R /Im44 51 0 R /Im55 62 0 R /Im41 48 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im44 51 0 R /Im39 46 0 R /Im40 47 0 R /Im39 46 0 R /Im59 66 0 R /Im42 49 0 R /Im73 80 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im151 160 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im159 168 0 R /Im33 40 0 R /Im96 103 0 R /Im159 168 0 R /Im29 36 0 R /Im34 41 0 R /Im35 42 0 R /Im21 28 0 R /Im165 174 0 R /Im157 166 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im50 57 0 R /Im47 54 0 R /Im44 51 0 R /Im45 52 0 R /Im66 73 0 R /Im47 54 0 R /Im66 73 0 R /Im52 59 0 R /Im57 64 0 R /Im43 50 0 R /Im55 62 0 R /Im44 51 0 R /Im55 62 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im50 57 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im47 54 0 R /Im59 66 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im59 66 0 R /Im51 58 0 R /Im46 53 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im66 73 0 R /Im43 50 0 R /Im47 54 0 R /Im53 60 0 R /Im43 50 0 R /Im50 57 0 R /Im50 57 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im40 47 0 R /Im44 51 0 R /Im59 66 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im43 50 0 R /Im40 47 0 R /Im51 58 0 R /Im42 49 0 R /Im59 66 0 R /Im51 58 0 R /Im46 53 0 R /Im166 175 0 R /Im47 54 0 R /Im51 58 0 R /Im43 50 0 R /Im40 47 0 R /Im44 51 0 R /Im45 52 0 R /Im151 160 0 R /Im146 153 0 R /Im153 162 0 R /Im155 164 0 R /Im167 176 0 R /Im157 166 0 R /Im68 75 0 R /Im95 102 0 R /Im55 62 0 R /Im42 49 0 R /Im39 46 0 R /Im52 59 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im40 47 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im45 52 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im59 66 0 R /Im42 49 0 R /Im42 49 0 R /Im66 73 0 R /Im42 49 0 R /Im39 46 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im39 46 0 R /Im59 66 0 R /Im50 57 0 R /Im40 47 0 R /Im39 46 0 R /Im40 47 0 R /Im50 57 0 R /Im57 64 0 R /Im70 77 0 R /Im69 76 0 R /Im40 47 0 R /Im39 46 0 R /Im59 66 0 R /Im47 54 0 R /Im69 76 0 R /Im44 51 0 R /Im42 49 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im71 78 0 R /Im45 52 0 R /Im43 50 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im70 77 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im44 51 0 R /Im50 57 0 R /Im46 53 0 R /Im44 51 0 R /Im40 47 0 R /Im53 60 0 R /Im39 46 0 R /Im40 47 0 R /Im79 86 0 R /Im67 74 0 R /Im39 46 0 R /Im45 52 0 R /Im57 64 0 R /Im46 53 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im52 59 0 R /Im67 74 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im75 82 0 R /Im47 54 0 R /Im43 50 0 R /Im45 52 0 R /Im151 160 0 R /Im168 177 0 R /Im51 58 0 R /Im42 49 0 R /Im57 64 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im71 78 0 R /Im146 153 0 R /Im153 162 0 R /Im169 178 0 R /Im154 163 0 R /Im156 165 0 R /Im61 68 0 R /Im42 49 0 R /Im43 50 0 R /Im57 64 0 R /Im40 47 0 R /Im39 46 0 R /Im42 49 0 R /Im43 50 0 R /Im39 46 0 R /Im59 66 0 R /Im168 177 0 R /Im51 58 0 R /Im42 49 0 R /Im57 64 0 R /Im70 77 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im71 78 0 R /Im146 153 0 R /Im153 162 0 R /Im169 178 0 R /Im153 162 0 R /Im156 165 0 R /Im62 69 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im75 82 0 R /Im42 49 0 R /Im43 50 0 R /Im71 78 0 R /Im146 153 0 R /Im153 162 0 R /Im169 178 0 R /Im153 162 0 R /Im156 165 0 R /Im160 169 0 R /Im46 53 0 R /Im45 52 0 R /Im45 52 0 R /Im21 28 0 R /Im30 37 0 R /Im33 40 0 R /Im150 159 0 R /Im17 24 0 R /Im71 78 0 R /Im146 153 0 R /Im153 162 0 R /Im153 162 0 R /Im167 176 0 R /Im157 166 0 R /Im71 78 0 R /Im42 49 0 R /Im44 51 0 R /Im66 73 0 R /Im42 49 0 R /Im67 74 0 R /Im40 47 0 R /Im57 64 0 R /Im57 64 0 R /Im46 53 0 R /Im40 47 0 R /Im39 46 0 R /Im42 49 0 R /Im39 46 0 R /Im59 66 0 R /Im53 60 0 R /Im50 57 0 R /Im42 49 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im69 76 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im47 54 0 R /Im39 46 0 R /Im57 64 0 R /Im46 53 0 R /Im48 55 0 R /Im42 49 0 R /Im69 76 0 R /Im66 73 0 R /Im40 47 0 R /Im42 49 0 R /Im67 74 0 R /Im42 49 0 R /Im44 51 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im51 58 0 R /Im47 54 0 R /Im43 50 0 R /Im59 66 0 R /Im68 75 0 R /Im62 69 0 R /Im45 52 0 R /Im40 47 0 R /Im57 64 0 R /Im57 64 0 R /Im71 78 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im44 51 0 R /Im39 46 0 R /Im47 54 0 R /Im66 73 0 R /Im42 49 0 R /Im39 46 0 R /Im72 79 0 R /Im52 59 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im55 62 0 R /Im47 54 0 R /Im69 76 0 R /Im57 64 0 R /Im43 50 0 R /Im53 60 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im57 64 0 R /Im57 64 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im52 59 0 R /Im67 74 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im40 47 0 R /Im44 51 0 R /Im39 46 0 R /Im59 66 0 R /Im42 49 0 R /Im44 51 0 R /Im66 73 0 R /Im42 49 0 R /Im67 74 0 R /Im40 47 0 R /Im57 64 0 R /Im57 64 0 R /Im46 53 0 R /Im69 76 0 R /Im55 62 0 R /Im40 47 0 R /Im67 74 0 R /Im55 62 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im55 62 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im57 64 0 R /Im43 50 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im50 57 0 R /Im66 73 0 R /Im67 74 0 R /Im45 52 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im52 59 0 R /Im67 74 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im68 75 0 R /Im74 81 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im40 47 0 R /Im44 51 0 R /Im66 73 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im69 76 0 R /Im42 49 0 R /Im72 79 0 R /Im52 59 0 R /Im39 46 0 R /Im45 52 0 R /Im40 47 0 R /Im48 55 0 R /Im46 53 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im50 57 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im59 66 0 R /Im40 47 0 R /Im75 82 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im45 52 0 R /Im43 50 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im70 77 0 R /Im45 52 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im67 74 0 R /Im47 54 0 R /Im50 57 0 R /Im66 73 0 R /Im47 54 0 R /Im39 46 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im68 75 0 R /Im170 179 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im71 78 0 R /Im69 76 0 R /Im42 49 0 R /Im59 66 0 R /Im59 66 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im53 60 0 R /Im42 49 0 R /Im39 46 0 R /Im42 49 0 R /Im43 50 0 R /Im57 64 0 R /Im72 79 0 R /Im52 59 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im55 62 0 R /Im47 54 0 R /Im69 76 0 R /Im69 76 0 R /Im42 49 0 R /Im67 74 0 R /Im39 46 0 R /Im66 73 0 R /Im43 50 0 R /Im47 54 0 R /Im79 86 0 R /Im45 52 0 R /Im50 57 0 R /Im47 54 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im164 173 0 R /Im67 74 0 R /Im40 47 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im57 64 0 R /Im46 53 0 R /Im48 55 0 R /Im43 50 0 R /Im47 54 0 R /Im50 57 0 R /Im59 66 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im57 64 0 R /Im50 57 0 R /Im42 49 0 R /Im50 57 0 R /Im47 54 0 R /Im43 50 0 R /Im46 53 0 R /Im171 180 0 R /Im51 58 0 R /Im46 53 0 R /Im42 49 0 R /Im39 46 0 R /Im57 64 0 R /Im43 50 0 R /Im53 60 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im47 54 0 R /Im43 50 0 R /Im51 58 0 R /Im46 53 0 R /Im59 66 0 R /Im59 66 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im59 66 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im57 64 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im172 181 0 R /Im74 81 0 R /Im39 46 0 R /Im62 69 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im173 182 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im57 64 0 R /Im67 74 0 R /Im47 54 0 R /Im50 57 0 R /Im66 73 0 R /Im47 54 0 R /Im39 46 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im43 50 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im70 77 0 R /Im45 52 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im42 49 0 R /Im57 64 0 R /Im40 47 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im59 66 0 R /Im39 46 0 R /Im59 66 0 R /Im44 51 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im42 49 0 R /Im44 51 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im72 79 0 R /Im52 59 0 R /Im39 46 0 R /Im45 52 0 R /Im40 47 0 R /Im48 55 0 R /Im46 53 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im40 47 0 R /Im43 50 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im66 73 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im50 57 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im45 52 0 R /Im44 51 0 R /Im40 47 0 R /Im44 51 0 R /Im53 60 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im39 46 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im43 50 0 R /Im40 47 0 R /Im51 58 0 R /Im42 49 0 R /Im59 66 0 R /Im40 47 0 R /Im39 46 0 R /Im62 69 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im162 171 0 R /Im68 75 0 R /Im62 69 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im174 183 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im44 51 0 R /Im59 66 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im57 64 0 R /Im67 74 0 R /Im47 54 0 R /Im50 57 0 R /Im70 77 0 R /Im66 73 0 R /Im47 54 0 R /Im39 46 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im45 52 0 R /Im43 50 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im68 75 0 R /Im74 81 0 R /Im39 46 0 R /Im62 69 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im175 184 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im52 59 0 R /Im57 64 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im48 55 0 R /Im44 51 0 R /Im42 49 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im59 66 0 R /Im44 51 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im43 50 0 R /Im42 49 0 R /Im53 60 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im39 46 0 R /Im68 75 0 R /Im176 185 0 R /Im43 50 0 R /Im42 49 0 R /Im57 64 0 R /Im40 47 0 R /Im50 57 0 R /Im40 47 0 R /Im39 46 0 R /Im43 50 0 R /Im46 53 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im67 74 0 R /Im57 64 0 R /Im52 59 0 R /Im44 51 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im43 50 0 R /Im42 49 0 R /Im66 73 0 R /Im43 50 0 R /Im47 54 0 R /Im41 48 0 R /Im40 47 0 R /Im59 66 0 R /Im42 49 0 R /Im59 66 0 R /Im40 47 0 R /Im39 46 0 R /Im62 69 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im154 163 0 R /Im68 75 0 R /Im177 186 0 R /Im81 88 0 R /Im85 92 0 R /Im92 99 0 R /Im178 187 0 R /Im179 188 0 R /Im91 98 0 R /Im179 188 0 R /Im83 90 0 R /Im93 100 0 R /Im92 99 0 R /Im87 94 0 R /Im180 189 0 R /Im83 90 0 R /Im89 96 0 R /Im181 190 0 R /Im83 90 0 R /Im93 100 0 R /Im88 95 0 R /Im93 100 0 R /Im91 98 0 R /Im94 101 0 R /Im182 191 0 R /Im47 54 0 R /Im43 50 0 R /Im39 46 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im51 58 0 R /Im42 49 0 R /Im42 49 0 R /Im75 82 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im71 78 0 R /Im40 47 0 R /Im45 52 0 R /Im44 51 0 R /Im55 62 0 R /Im47 54 0 R /Im52 59 0 R /Im57 64 0 R /Im59 66 0 R /Im45 52 0 R /Im57 64 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im48 55 0 R /Im47 54 0 R /Im57 64 0 R /Im57 64 0 R /Im47 54 0 R /Im69 76 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im151 160 0 R /Im170 179 0 R /Im43 50 0 R /Im44 51 0 R /Im57 64 0 R /Im39 46 0 R /Im59 66 0 R /Im71 78 0 R /Im146 153 0 R /Im153 162 0 R /Im169 178 0 R /Im154 163 0 R /Im156 165 0 R /Im160 169 0 R /Im46 53 0 R /Im45 52 0 R /Im45 52 0 R /Im21 28 0 R /Im30 37 0 R /Im33 40 0 R /Im150 159 0 R /Im17 24 0 R /Im71 78 0 R /Im146 153 0 R /Im153 162 0 R /Im153 162 0 R /Im167 176 0 R /Im157 166 0 R /Im171 180 0 R /Im183 192 0 R /Im184 193 0 R /Im185 194 0 R /Im186 195 0 R /Im171 180 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im50 57 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im40 47 0 R /Im53 60 0 R /Im39 46 0 R /Im40 47 0 R /Im79 86 0 R /Im67 74 0 R /Im39 46 0 R /Im45 52 0 R /Im51 58 0 R /Im40 47 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im55 62 0 R /Im44 51 0 R /Im55 62 0 R /Im41 48 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im71 78 0 R /Im41 48 0 R /Im40 47 0 R /Im77 84 0 R /Im68 75 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im67 74 0 R /Im47 54 0 R /Im50 57 0 R /Im66 73 0 R /Im57 64 0 R /Im42 49 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im51 58 0 R /Im40 47 0 R /Im45 52 0 R /Im44 51 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im59 66 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im55 62 0 R /Im44 51 0 R /Im55 62 0 R /Im40 47 0 R /Im39 46 0 R /Im59 66 0 R /Im42 49 0 R /Im73 80 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im76 83 0 R /Im42 49 0 R /Im46 53 0 R /Im59 66 0 R /Im40 47 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im52 59 0 R /Im40 47 0 R /Im44 51 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im50 57 0 R /Im47 54 0 R /Im39 46 0 R /Im53 60 0 R /Im59 66 0 R /Im40 47 0 R /Im75 82 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im51 58 0 R /Im47 54 0 R /Im43 50 0 R /Im59 66 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im55 62 0 R /Im41 48 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im50 57 0 R /Im42 49 0 R /Im55 62 0 R /Im44 51 0 R /Im55 62 0 R /Im40 47 0 R /Im39 46 0 R /Im59 66 0 R /Im42 49 0 R /Im73 80 0 R /Im68 75 0 R /Im97 104 0 R /Im187 196 0 R /Im131 138 0 R /Im118 125 0 R /Im104 111 0 R /Im105 112 0 R /Im136 143 0 R /Im118 125 0 R /Im100 107 0 R /Im137 144 0 R /Im188 197 0 R /Im128 135 0 R /Im189 198 0 R /Im190 199 0 R /Im127 134 0 R /Im191 200 0 R /Im113 120 0 R /Im105 112 0 R /Im103 110 0 R /Im105 112 0 R /Im106 113 0 R /Im133 140 0 R /Im103 110 0 R /Im106 113 0 R /Im103 110 0 R /Im104 111 0 R /Im111 118 0 R /Im192 201 0 R /Im136 143 0 R /Im108 115 0 R /Im121 128 0 R /Im141 148 0 R /Im193 202 0 R /Im123 130 0 R /Im173 182 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 155 0 R +>> +endobj +155 0 obj +<< +/Length 572 0 R +/Filter /FlateDecode +>> +stream +x¥}M¯-»Ýüý3ìôy¥RUõ0èÈ$èF{ØÄ~;ñ·_`äßg×Ùbù¨´ÖÖ¢öäâââr«DIþáß>þüCøøÛþ!®eùX>ÅþÌ).!±ärÏ%æ_ýþÿÛï×ýã_þøÃ¿}£yiéËçñøÅ/ºýv§O!ÂõsëçÔÓÓDïôtÿkö?w¼ÿ¿ãõtùA_lýüëû¼ÿrû¿¥ß2 OÝ÷Óõ7´~éÎÿù¿ýÖÏ|ÿÖ_õýÚþãç¾Ãó; ÿWqòß}?Ó¸ìoéOHþùyʳò_×ý¡ûOË{ûOPþtþgÈ¿¬ÊOÌhÿ½ü0ûóìïãUúýSì7§Ï==ÿÎÙ_FÏ/èôÐ~È÷_ÜÐþüß¶÷ø·«ü#ú»CýëøG¿ÿPï¢fÿZv£þK<¶Ï-w÷O·ÿò;ýÛë§î¿Ó_Æ¿"¢í +´Æÿ5ùc÷_h}tÿï®ZȾÿSþì?&l;û¿}ÓÃóüÃúV$¿È~`ûVxËö?(?á÷ì¥ ÙÝLÚ?ò ÿw¨ý3zMþ©þÐÿéì'Û^Ð÷ëþG^ ÿ)û9@ûÛÉí¬¿9ÂýËþ[jüÏ/Cÿ±÷_þå¤ù_Lþ2´_Hþ°üçU»ÿé÷¯ïùYôßèùcûÓ/Ïû;_þÛã*×úºüÀøW+²ç)ù¹ò' }/?ÃüIKïÈlØBoù¾·ß4~¶üI»>¸ÿÊÍÿX¾Î?¬Gåßúyd£ßäû;Ä?$¿,ÿ²Kûçùø&=ä|_pz$ÿúý´tÿó;ÐþñÏöï è¯#þ t~}üó<ò3þyøAÏn²ÿ#Z_÷¿bÌÿ)ÿâ!ñÒ§øÿ¡ývä¿Ò!ÚÿAöÉ?YEú£Çq ëøónë÷Råï;}÷×=~ü{þ¥§À~/0~[ú<ön}à?`ÿ+>âðýÀþ%Iþèò÷èü¾ø·ÿ¿ëo@aÀÃö}Nw`Á<3( Ð�,AiÉñõÑ öë3¦4Ò2@�W a@\%Ð Ä]R^�, ó0á ` ?> ôI&éá÷? Køq{LIÙd |¦ýï_ÐýÂSd¾ÿÂöu±¦]óêüíd?*xË~x*èÕýðýPý0A?ÔÙÐúºö$Ýã<¤ù4w@?Ä!úàÆ*pæ4ÀF$/ÈëF$?üHÅ0áÙ�ÈÏ1!+Ô �sóeEGð]k"!ák�¼ÄãLxN`Èä��¼EÜÏÐ~�A'=«ðð¢³1O3zfú/(òkF.7ϳQ0#[¼A+.{ÓW6ih Õ8[ÊfÙ¤^·â!Ãõ;úþµjD_/G²%z%P×/ÐoÀ%Ù¸¾·ëËÙÜ«fÀfÄÎj/|Èá[ðË5ë;X8ª z0â¥c6èÌÇ �GàLÈH?@Á¸ÔOxßAá*©oÊzB#ÅàMkA¤<'½#'²)FV¿éÄ´#-ßt¢å¤[zSýg¤Åñ¯÷ÅyMËñС7QòýeøGs +íÿ»)rMáY¢ñÐïªüØÏ_¯ÚÕó#òÀ[H~?3*ïZæÏÿYøL0© pýnÿ}M%$àùëûÈ~êo +WMÉÐ ü^âE¡ýòÔ@û¥Ç¢+ä¾h¿5MÞz.eç'ßiGç§{áiG^þ¦¸¾:ÐýÞdXM +Ò_äA(ÛpþäMÚGMG@Q~ÿdèé¹°ü¢(ÔÄ$èÿÈö3CÿÙO²ÿýO=^5ù§üöGB3´* 9j, +/ˤ§ÁÞzGOCÎ^÷ÕµëûDÁVÓÝÒþï'¦¡ï³¼¦"¢ï×k +ZßQ³Aþé5A:?½'âêiéåûçêÿ°¦brý¸ ïwÄÖÓ2ä?©IH~ßoþï¤üDóö¼éGd´ÊWüò3²îM0<ʧj>Àñ(ë£|kÀGù[QD»dAûªÀgÀB¯´¬fÍô8zE5¬, ôÉBx$B¨¬ à ÑË!dÜ¡ +é)~¿^s èa° ù Ò]è´+0Ê^Ó�M# 4Ydmyþõ),ÂÈp}G[ ?Ù Jù\(ÂkòC×_WÑ #ü[ᬷ d?òS4¥ðÏrþèSøÿÛ÷ ßùµ`ô¶b+Ënèuûw � ½nÿ.¾]_~È=˪¿ä¯¥×CÖwVÎ2ø~êop}a`ÿzYjØÑùë!|°rÁ÷Óâçïpáü!þÿaò¯§à:½--¤¿ý÷³Îå·ç'§Î²æ·öÿzÿ·GI~©ÿÑþõ¶ÓWÖçôE´?¸ Z +«µÿúùÿCûIüß é¯ÃÿÞÿù¹ùÿ9zýHBèêBý¦ëÐ~èO¢ýâOxÿºÿ¾ ùëa x[¹&>BùÓP ýs|zÿÐSøoñÇ俯£¡ñË忽Öî'IéþW¨züRýwÄ/Øþ9ÚÚwÑ~þaûéhkGþ£}×ô·¥#ýw¬ õõ't@û#ó//h})Cû§ÇOÛ?½Sôÿx[;Ô_[»[~¬úÿrþó,fþûÕç?)ÿ3Ü¿+áþ¥ðW5·P<ö1Õ.Ç¿dÿEõߨ(ô ÈïÝ×ê@~YüsåOâö2þámñõþièõûç*dnéõü=¡7ôJªå_ö÷¾ßÚßÏ@3¢×Ûº-ÒÒ;P¢×óGûøçÉ$i}þ»!zVìjko¿_/ä?Ðúúýx~z e@üwÀ´¾+uæ_Àú2¬ÔõÛÒë%Ìʯ+uÁ¶ç/ÃR\%ØùámåPþ°xþÿ+´_zþjEö[i¤¨%ü¥ð·÷(á°©ølKÿzBoèC_ÃÏ0Pä°«zpòl$@ +hÀô�>BæI @î9°gæ)�ë sÔÐtþhlÀ:þQ\»¹%AäX?ÃÐñ�©� �²p#?¨=`Bþé5ÀØÀ¯ï¿ìO#ÿ?ýáÄÕS.a õ,ÿÕd5ÔðÖkpÍþ,ÁÊ@£¯ãJeÑþüÏØ2@õ¨¾Ù«{`?¸|�hË7p ¸|CûI0VÀó{¸|Ã�ÐvþakÉpý@ï( °î0Âds ½ì ]_`g°>/�©\x9ìÄs¸W ö¬¿g*Àèû ù¡ôVÀæpu¯ þ=¦yð�Æj¸´>/àÐöÏqéQ~I�þhHOú ð=@²(?@þHư-½~þæ¿Î÷pCû¬HÚo½�ªhúËÀ# w$�7¸¾«íáG¾ÆUes ýÕçªý!úc ýá Hþ¨¿ÆÏòOâÿT.ö#ÿŬêÿHÐÑóGé²Ýäµ& [ùÑçRôý¹å=ÿ5mÐþ:z¸¡üëñûïO°>KaùáýÅ + ýqä÷�c°ú¿Ô¨FÿQ?I+BýÓ{È#Ô?¹.G(ÿz3´_zCÎP~äÑý¥]s&å7cÿK. Ë«ÿ +(þC[¥õ)ÿ +¼ô¨ Ù/Gå/I\tË_,¯ðxDFôzük PËk$?ÞÑþõï«`ò×Òë=ôÿ¬Ïü¿«½åìÿ]ù%¾´ÃüÅìùYþbp~tÿâ¿þ~uå/ëÓøkAòï)À@úçisyÜßoÿ¹E²|.£¦?¼�~·~ÿ~bù$¿Þ½"ùAçÏPVIÿ©üXþvV~f?QþþÙÀ^!�zÐAÏù+ pË@ÜèÑ `}²æmN68øQùÌ@Ì1 F0§ë$È˾ ðÀ²/ü=ظaÙk*p» "à0X¹Q +¥!à5ìH 3ê(#Ánè\Ë`r-YæP±Ï4!Pö¬Ãxà�áÁÀúè%$_Pà( Ô&Æ}BM[¦D½1Zz=x9S¯AR¬¼ô`ryï2ÍvÒõc°> &r&Ád|Ï9íÞ 2´úcHÎL¿$Îò/#ùõYëët+Ô½£�Ð%S üéÝ$ê^̳¡`Æ1$±Z¯Ç$,{}Lhé=h ÐëÝLæq£×j1HKïè&(O4Ûþu@¸²úùÙÂ�}(²/Î)¿��_¹²çÂÓ¹í�h0FD;!õ�äÀÊ1F@ã4ÀQaø¨:W@ègësÂ^OçDÄG:§¦3Fß?ä[°×ý #Àû9Xß§Ñ÷+åX-¢_+z9u\¡þÈxL±CÞ¾X°¤C +Ø(z=ÈL¸£iÛ%aòO+Pó:@Ç +tä÷ð@P¯Ç=s!së[.ES` °\kþëã"©ÇM¢aúò?!ää²2 üa£ý¿QX}¨ýxM;¡$´" ö úk` ÙHGFùlé}8=£ê¨×^Ï(§yÑ`Ì<kJ>0 fG áã�ô !Lãàq øÃMò©3wW",C?ÔÑÖ³tð²dFõ1£I5£g&åHÚÊRFn�m©m1ãk¥hûçeÐÊe¹ kDÎÐ t@Ëײµâ#0#N#y»ÆZz2£õõ¶ªpÿëïçe5i××3A&? ½.¿Ö³nÛKùuÜö/ËuÜö¯·Eղʽ޵#þ飥㶾l¿Cm˼¯ãÔ²È^/Ë=q1Àú²üÇ ñçAàùÉmÁK±ns¸ÚÑÜèÁùñÑA²Ã<Ä@ÿ9.â¿#]hÿ,ëÿ¶ed¿è÷Mú~z~Ð~é£ÙcÖþÄê®?;¼¿ô4ÈÖïùOqa°ý=ð3 ¡Üßô%¸¶ÕõÑo=O#ÌÛ¯¯&Bû)ã*'è?9p!¡ÿ¤§ÁöôÑÐÒ_Ò:+?@öÛKY4ÿ ãr"ûéà?öô¹ØÒaEv¤?4äñÿk£gùU~Iü½hþÿh4à¬ÿkm)³çom)þóoÛRfõÏÚRÆú÷º-e&~ûÞ2ë?Z[ʬÿhm)³þ£µ¥ÌúÚ?[ʬÿh³÷UbÌêÿ¨í \ÿ_·¥´ôþ¶½»-åFïnK¹í_ÏßX}ðýìþÅø_¦òq[_¸¡ós´Åì ðß¿©£Á[zGþÆ!||¿¡m5ÇøïµXþxF"ùÑ+Áb@çï+¢×ëXbAç¯ãZ&¨züü8âÇüþ[[Éh}*?ëòí¿Úýûíþi×ÛÏ2eÿ4ÿíò~tËí'ÅúãåÔîO« õ_®¼òîûÛè5ûMãߺ?®üÁðþ`ýH~uX@µ?L§¥ïaù\ÀðÿV$?ø»@ý× +:?¬ f¿é÷ïÐ~ÊöÏæÌú¿6dÖÿ½òþï?ò½àW\ÞÓ*¹2Ô`÷d±ÇU$gáÉïô2s´ÇWE«röhéõ23 m�5VZ @ÿQîÉËkô¨l`ÝèõZòl P-D0%ÚjÌMä´¼àôgÐ+ °Î¡s£×9t¢`åÄëktúoiðv}½ßÜàu]%X|¡«4¹ÑëktÆÚ5¶Î¡Ë\aø`ÿ<âúl<<?}¼åRݨÞÎ"_GèF2þpt$?ïPÿô02iúÏÛ)6p~ñ$ñ_O#ÙxÓuMSe@WÀÀþÐFö¦Q +GeCüÓË®2 ûñãZ_G÷8à÷;ÆÂïw °ýÑÃØ�õ_NC's×ItÍä5³0¿]Ê¿]¯×ºÊ�&ìç³ I÷çh<èøþ!eØþÈãù®0~`?9º$\_¯íOÿQtVldt¯í>åÐüß Ã^³P!K÷7]?hëÓ$@Ôì'nýwG?ôßÝ +#ûÉË�´óçmë¤ÿeôH~ûû*ÀøK$öO¿?¯gøÉûózÜh}¿¿�¹ÅEÒ8»À²QÃøèÑ�x ëËxõä9Dq£×p»�³Q¦¦pBÅW[ó�!3)¯,T+:2SØö*CÈLç[>ú)ìð¦hãâa0ÌtÎÙ|Ãkd¦£3D·~¿mápÌ5ú43=jèõzʰ¢õu|´+Ö~¿£dA߯×lÕhéõzsû'õ${µqyéÈÒï?ôýÔÕ1g7z]~ì=g ?4^ üÉøUÓÊ^ ü8æÜªòÃÆÔ@þéc2Õ¿Cû×Ù«fxþ¬ò_ïG²z¾¦ú ®zIûw%âúÏûi·ìO,HHsDö×Ó ùÕë9âäW¯§°1µ#ùåý4ðûå1c¬Çäù]°òDûÃÇÄ ýuôEÕþ2X$ÿWJ©>Ä<òWcØäíW?&~¿á"ÍVýÊîOG?Ó +ïyÌôÕÏ3àß07ðßx=vÿðzxÿéõp;ÏñOOdCÿÍï{Ô0²¹?õ1×W"oè?²D¼õ~�ã½& þ;úa"ZßÑc¡ÿ ös$¸¾ÈKhÿ<ÍþQùñ«£Æú1öðo öGïöÓÑW4ý¡òã_tÿâûó,äQîÏ!H/óx¼¦Þÿ-½ÞOcȪ ½^Ȫ-}'ÿ¼(£ýËþÓléå1 ÁÂc +1lèü<ù¢ÿ¨þÃÃöõÓÜ +õuÿ9TÑ÷³1!Á`ú~LÈhÌLKï³åO¿¬vÈ??òãÈìþó1·á-ùíß1&6iöç_vt~z! +´~öYþDÛ?/$Bòï($*Pþõ~¬ ®¯ç/7íþªåèÿï_½ïû×åÿ@ü×ãÏdòü.<ÿP!ò3ýÖñ4\_óáùËýWþÅm V4ÕbøÇüòqýÜ:¼ÕÊ×Zó¡£!l.O>é/ÈС=%] Ö ¾_Oá^-Q¦�J 5m®PÇ:¨ë&�?ò)AËëd>«7£@Y(öøiÍ6 'µãÕ¢ã�ZÔÏ©¢-¢äyÕ +²&(í-%² 7#%âYÐ: +²´{Æñ ù<4¢z9Ã8¸÷Cüæ:¦kúÈ8Ö ¼w-Q�)!¾L¤FÔäãR�QÓÒ; +j 2uU§ÌÇ6u $ç-Ò~¿§©ÎyËrê uÎÛíô[$lâ°[$Ô®ºàéq{V#=¢þúIu|ènB¤{óÖÕÒ;Ð ´>fX6¯GqAJØG|è®¶>oëBûïo¦1o)á®òcnÞRÂX£i%<bßR¦Ïÿ¸Æú ns"í â^¨O#-â«BS2ú,ÑÓɽ{RPþÉàÝÝN°¹ +wX_pæ4õtÜçòVvû¡(µFtK~ËI·ÌÀyËi7�Û½48]¦¬xKë)$t£S`y÷.ë»Ñë=b55Ü~¿ªw ëËÎHZÉ¡yDÍ¡ëo¬ïÈ+ÕÒä=í±¬©éÑ5B×ßË[¶"QÚH~hH\{ÔÆEë+¥U5$Y¨xiâÞch¥)7z}ÔHBüÓKs *vd?hiFΰêÚOÔ«ÓÒuÝ(õìêºaziKQõð»ÿYi¡ä}ûnÿõ§ý +uÖÒ;Z#2Zß1êÄîÏÞ1êÄä§]_>?+-ié¥Ûçöýòý¶ªû:ÆTìm}àÝaàüådÂÌhé dÑkòËGîÀ¿Þ~òÒ É?Ofdiÿ~Gû×K"_G2%BýG}Å÷¯C}Úý7Ô?6jñÏQ±"þ9J#V¸¾^Úbþs»>èq&üß þé¥Q\_/Ø¡üéK;ÒǨ©ýù[ý/*8|¦!¾Ø3ò"LK(ÿ²ÿM¼YkË"Ý?>Iô4~5~oì/*gP³ïù)¾Éÿ¤OóÐÿr@ýfht¨ßì·ò¢eù¤ÿ:Ƶ¶î_>ª®ïUì¿~½É¯¾>¶_zþFô¨üAÿIXHòñ×ì#þZà÷ëñWÐüQèõøÃJ"FßÏü_+ßrÖì?ÍØöäý±ÿ%OLÏÿ§&¦gÿé£Ê{ñ«UTÌúWü?´$þµû§VVxý?U{£óïWüßÒ;ZKD/çÿB-néõüs¨£nô²ÿ,ÿ4 çµ´>ª>*gCç§ÖÆíÞ_LÑУ÷Í÷¯:®)7z£øç§Ç¿oèÐÉcÔ¨å/ZzÙµÖþÑýGtþhøçæÀöOÏ`û'¿^ù-MBsÀóÓóO¿êæH¢þÊ0&í÷Yñý>Gå(ô´Åò'Íùõù[æÿ]ùÿºüPþõÖ²ÝzþÓ0vGòÃ1váùëñ{Pí÷ëQ9#ûÃK("Z_È?Ykæ¿ñü´_2FvJÈ~8 M2?¹êÊ_LÞß6jgöþNØ~ê£Wä¿: I +²¿z1hÚ4ÿC õùh¿£vÄ?GkÛ¡Å<ô×?cû¥ÇÏAÓßaýÄçâç�ã/½¥#"ùÓå'Ç÷ô?[GÀ@ÿiýGBë#ûÇê7Ðý¯ª¼ê/òÃòïÅO6jw¬¿¬~Ú÷¨ÜqüózTn.#hÍq�zÏÖ×óvþeÉ EGëÓý¯pÿhR´¾#þ·üEy íÄgôhç?æ¸ÑëñÿÏO¯?±üGy áuÉ7þIþ×sT/:ÿM_-¤ïçÐúû}ò§Ç?qÎ×O ý;âóßËÚÄÏÐþi£ùm}?AòëÈöÆÏÿoå_ÏÿÍ~SþÙûcÃ?ýýðÊì'¶çoôý=Ðúh£úG:h¿eh¨dù׿üPý7º¿ñO@òç²ßú¾¡üéùìéï×ÐÿÒ[ê Zt$?<ÿ�ím²BùGµÐ¢üFýNË_Aúïõ;ë^õÿ÷_¬ÒùSh«mýGþá=ÿÿêßôÿ¯þ 7ÿ^ó?iü(úoî_Fpÿzÿ¶:¤DBûwÔÿ'¤hTÑöí× dðýÃþIûm3fýQãø/cÿÑß?2Ô¿×çw¼FÔäOÖ´©¿°û{õB²XÿGFôhÔêÿ¯Ixþ$¢ýëùí½üÝßíú= Vµü[»9¬ÿ1SöãO¤|?Ï ï×ûm4Ëèüøcm}ÿ,p}ùþËèLZÿsâoòúø~pö|Õ¿7ôa7 _ WÇúj4[e,�äûí +0 À34 úl®ïH ê@CY+$Q~ lG0ïHÀXex~¬@ùÐéC +#4`¨�ajçDZEÑú�dú§Ù] þéÈA3 <ì#À`¯üXr@¼ÀtÀ�Ðó�h õCW¨:ð@ÞÀäh�)ÐÖ@¶7ùí§Ê¿^c�-½^³CùÑp ýô�X ý;@Ƚڿþþ¤ôQ£ç�ªÿñzHò8�b (èþ÷`z¢ûGo�Ëö>h¤@þÉCÞ3ôzùa³ÎB¯ýl@Áö§Úý^¨Ð�ÒÒI°ê40! K�¤×�$4�µóO¯`P�öl ©¬ ýã_åØõ +î3Ð^|uÀ3�Ð;*ì ï�I`ÿãL¯¤è¦Ái¶ß¯wà/PdT�9eÃYÇu ósp É#ËH~õ¨3 èÏÁbR~cEæOÏEüst0èüÐ<è�ÿ°d ¿T~7M~ùpôýú|öK¿@¯ÀäxUPlýëPVÁP+ØÚ°Ï@Ñ@ +èÉ¢jÀüäxEðÃ@ ¤°_-¤=(¹ý H¯!�9e à5~¿e�ßO"ðM»�x â¿#¶ÃõuËyÐ$Z ©?á/ÐÐ#ÈEÓ?ÞÂ/Pý ßJ Ò$dÔ.p^Bhý ?!Úñ4ùáëo9@6dÖÊÐ~:JhVDïnj-´MWÝ|(²¿úüÞ$`÷o| ÁÂ3¢!Ìl:jK¯ûW"NB@ÚùG/e +¢¨Âr@?L@ÄÐ�"z!°lºªÉÏk>#½Çsà'ùoÓMgù BnÀÞÂþ8¦ñüYãôCP þ9ØÖw°)ý; ²v~£é¨£ýóa"Z_n¿ 8'í÷Õ2°ß4�ÇöÓa¡ÿ`Ȭþlû{ú³£ý;ôgG÷òm-uDCú'XÚÃfÀR¾?È=l×T°^¹@ê@©ðµe(e +Ьï©AÜ�½£Ò ]_Ï héõ' øï¨!´Áù!fãÕçW#øë bÀ@î 8¸¾>_ÚjxßÏA¤D/{PU»ý ý;< %¦üH< ·èzT ÿPÖÎ{0Ø¿AÆ]�zöõ1à÷ àþå"ìx°<öýüG߯×Elÿô&ØC[7¡jöwøÒÒË ø Û?½ 0ÀThbµFt;@âüKÐÑk�º< Øhÿz÷z?©!´&¨Iý½^@òC¾;pr7oB ^CXÇ +ÏÞW å¤ýKÐ~êMXWê²M5a]/0CÿèÏôO÷Òäß6ðÉûûÑ®ÊÉûçz¼®ÌIû±ÿ(?Á_M¨ýÑ3Èúp¨zsò¯¸È~é´l5äûÃk@UûË@¸ ÿtqlå&ühfM OýMLÙ{ÛLK¯×pùm}ýûk Ôèû9wô¨ÕD¯m:F¨C4oôz èöæ÷×ä4TïϽì[ èÞ1íöß×p[ 'ââCÐlý8âþx&²ÃýËòwh)òGãïäÏQÂþ;â×äÏ3Ä®¯çßjü2¶?ä§Þ#ùçùUÿÈ÷׬üðüÉäßÂï²_.$¿ü´.xþ®MVBÎÏ1¹ú-£ï§ñߢé/�¦¿a®0BÿA¯�ÄöO¯�LP~dÿûÌßhòÃòGÐ~øåo ÿ¡÷àfíþæ°Ð~;òGû[÷wÂöSïA-ÿú¢ÍÚ´©úË@СüÈi×î +¢í¯cøýw{ß/û_g«Âÿجÿ¦?ôûëYûc´þø£°§(ÚVÁ +ïOYþ-3+ÿûzþÚOÄ8?ìçÙr³?ÿ@ü¶oùþIö÷û·ÙûÓ*Xgíï?ÙãTüjålK¯ÇÂu1ÎÜ?¡bؾ Ãýëù¿»ÑËñ£À´ôºýµl´^À½£vëËö×@¼nôò°PßnüÓógõýatþ4~_Ðù9p$¿!buЬüÇõGÎZkKȳõ÷·ô/Ö!Ê#ýã-¼Hÿû÷§Ñ·éóÏp}½~h-û¿åOúÏ +Ï +Ô³-íaª�1Bûã"í?DlôüE:æ?« öS¯94ûMë?_è9P©¢�Þ@Hà=èL@¼#@ >¡Ä&hõ�´ÐÏ +PÊPõ<k�¬ pèK Áð +t +¼B³ 4°#ÄBvÌÞAP-ÈëÚYÎz`Gû§T@߯÷0eèé7ðÙ;§ðWp@æèAUÏëONðÖ{P:?½7cHÿ¼"ê¨�Zþéö'ÍþÐ1pê?×0ܧzUF#póvx +¹V@¦ +â`ôÞüÂõõxÕÖµ°ÜÖ×#à +Bs£_PC#|£_P¯ +Áù +(Zz½Õ<à^¯ ¶ÖYþÛôÙï·Ñ÷S> þé÷ïÈ}Á¶ûoRÿ¯ +Iù Êuç^ï ©(#ùá$AZòÏ2 ö3f¤?üÑëþëUAáãôW¯�VAÖÒë<ØþÉðYñ�7ôúÄ«¢¡wA<üè´äg�^¹�Ü2þqzôý�<höÆOö7©¿6F}V Å{lÿI'/àüB?GÏ!S �)Y¡ÐK@Vxz D\/ÁØ4Ã`kܨäÆ?½f× O`h #¦]à4Z Khó�¹ -ä�:Z¢¶b¢· D$?�6!ýõ$�þ:`С¤±È+t tþö·PÀ�BqßÞÿMÿa ÀúkXÐÐO�¬¯Aè%�ï�¬¯A�%�ëk¸a @C?Q0Øÿ°`»J�Ö9Æ«`²�È?G @ÎØ1ä?~A±9\g+îL × ¥ÈÀò¯?GMÿF X#ù£Xª/ }+æzbè´ôaç0\ü¤�]=`¸o + £xù-f(X#Fׯ=àc&d�ñ9^èüt±{hmz{ê(Ð6ý¦�: 6z» ìµ õõ1)Iþé÷t¡9J$� +ðüuëAÊÿ 1{~ pEò#_à ÚO +xÖô' "Õp=1( ¿úT4W@ÀXGaß4' IûmôPÿtû±#ûïí§£`Q0®9@,{bP<}*±ýr$ Ðùé\à ¼Ùÿ +IûyU@í' àóÎ/ôM¼!IpßÄp|¦òÌ�|ѳãÀ ×ÛýÂ)ç,ê¯-4¿°w&ùàç7 éÁ(°;*ý¶úCh£ª[:ÐþÂ&dQ¿ð#ü!v|]WÚîAÃê¡¥/x]ÏÅ3§ ÀÙVúäè�ôøÏHP9EÈóÏjp°Nî/Ý9~{ÇÁ½3%+ÚAÏÁ3åÜÙ¯(°pï°?§*¯ÏÈ!ÿ}`¨2ÙÁ4É!Gd CÁú`ª8^ÿªG¬Ï´ðzNháÃeÂëcîl9¢7Dá>î "ì®Ï$¨õXíxfD¯×óToº¥w òÔt|K飼Ϸïw¤C£´>OÂõéPx~r6Áf +È3¡vÞÖ×g"H~ÙÑ;0Ík=Á,ÿc@òç¨H~õ`É£,!ýsÔ¥äÇQÑþõ`ê^V§Éä×CiòÃ×ßEý!ü«Ùÿx6t}Ë~"Íhÿ<zLÊ¿uT!þ;êÁöðßQv@ùÕg-ðüäçà´@ù¦Ê?³¡ÐþèØþ9² ÿÐÑ£ú'¢Òß¾7tiësDtÿ:êѲ¦?¼!ɯd ò«ÿªùO}2âiÑODàÓoï~¦&GÖì'Gþ^δAùl&âMÿtýßáúz6ÿþ·^Nv þ+¯) Eü×1s@öS÷ÿrxOÿr}½?²hÿ8¢¶ZàþuDØîo",ôßåh«¿ÒlìªÅ¼K³|&"â¿£qÍÆ_¨;¿ülspÁägC´±r°Ûúàþ&ýPµâF¯÷Cpÿòkt(X_¯Æ%Iôôûöý½ÿeùÐ÷LÅÛúî-½g¦bÕÿmëÊÌ~E}?E´\Þ߸hç?¨t£×gÚ¤¿v?iéõüOí§Ù¯ÑD¤ñùþ'h¿ÜFòÓ¿=äýé? }{Nì<ðíóÀqë3ß~A@-Ŭ%,HGÈAy$¼ °BÚ ÐÇÚ[KÙhÿñO¯¨;2A½ÎB¸3ò ø2ëùo-mÇ×3ÚMPEC¥ÉUSó"$ýÀ~ ¿Åø\$ü¼µ¥aíx¶ZÕ´°ZhÈ4fH_CóÑHPôÑNrd=´ÀL$F¸+ü÷yþßk"¬¬kë'àîüдҢþ&¥ÐLg]kgÆB_ÕÁ293ö83!ï}{ÓñÝ_ Ô¦ÖÛ8/ö ím,U ¡?ô¢|o]^eýE×2¢·Þ´>UsúnûòÞ<¿é3ûÅÄÜèï$1&KJ¶[@²Ì^wÀ=«q½*7ôA³ wDõµÆò¶¾Õ¸¢ª^ÏjRu[ßUeiÿåcAû³b׫ô¯q>oü³"òq[_Æ ?ÊXTlå~¿£GsþL¼*å4yÙ«òÃ)zà8¨ÿ¬Ç&Kßß7yýèûÒB²ì²,¤Bçç ©ÐúWñÊ®ÿÐ~9^µC:?þ* ïÇZ¨¿9µðþqÌ©ÝÑþsfÕûÍ9òçxëë= +Ðþ¡WEÖc@GͪÝ$Ê¿þýÊo§?^³£9±7zÊ(ä¿^°k÷åöµ:Àée,Çç¼ÂõõWý£Höóò¿AkX"�4¦ç«2Ü¿l?¥tÖ~XÎØÿ¼JOÆ/Yôÿ(Ê%ôÿô9õÒÊo_8B é/ öGö¿¯WéÁþùUd?sRê?ùßüêUmÁªSºÿCí¿Ñë(VÔÒë¯Ú¶ÿÞñª½ÃýË÷0ÿ³]_¶¿6gô¶¾ì?^UÝþqÑë(wÜ¿cNhÖÆßçg ·ï×_ ã!É?ßáþñ;â?Éy=gtVÿb ©Õ¿h])³çWýÐý×ëI³¥w`L@û%ûßWU÷àûyUuìÇhÎhKïxÒ<ü:æäP~e«dU }rEßböëËÿlèõ9cyÛ¿EÈ?=~ÿÐc䳪ÉÂØaUÙêýIC/û¡,~ÕäÆ?Ö2Ð÷/ç¯SÑìï°*{Rÿ´_1#VR©üiÚ¡ývlnïß>ëÿXüî/þbÿË1çÞú�ù/´õ=¼?uå_¯*ºü^UÙnù5xþ:FIÖôuåd{ÿhí·¿X5ÿÊô¿ô÷£+~vû·øypþÃøy6þ4ûÃËøoXÜÐëAWUp»¾²¸Áõeù7ÉÛúÿø|ÿ®ñC8æ¦ØûÍÃø·¥×ß¿·ôzWëù¯ûÿË!OãO¿òǦdlÞñþáúzü üëñå?úCé3Z_Ï¿Ç\ÄócS&vÿÃ÷ï°ªòüx~zþ @þëù ®¯ç ýÒý'S9Zÿ±£óÓóÏWü<Ø?õ_d?ïá½û'hÿtÿ;ÀûÇ1ebKÿ´?zþ$aû£cìY ààüiþÚGþd| }?9a|ãóG¾þÚþÌ?-O °ôàÐZv(}ÕÆ>ç�õ÷¢àgfö*e\ZxÐ^uÇWzbZy\rÎ*ïàçÛè Óþ@T¡þ@©©¬öàô<Hå/yû ÷ÊæÊr /HBapýË&xÐûò@ðgêv|@î<Ø¿þ%Xmóò½M-ô@WýøÔ±öüùÍD±Î~�c5Æà@?pÊó¢] +·-ÈLËØ£u198Õà`]ò צczûýìe¬÷«éyY\OC·Eº`Øîº ôkÕ-d¨Ldó@à_rÿüfTû{Á~`ØòÒýÀ+g æ× ¹lßÿzôDf£nïê\·ò"ßLWßÜÍYº D|û>L¢LÜ3db'ý,WëÝóÚ-H'_îÚúfmìõ¾{Jÿå?üøð>~ùÿ¤ÿ8¡ë_~ùûãñøÕu{ü_üÃÿãÇï~û«þð×þùã_ÿåúËýõÓ¯?þçÿûø×ÿù·¿ûÝÇüïþã?~ñùñï¿ýéýô?þéã7?ÿü§þñÇ¿ýío?ÿæ·ýüÃO?ÿøa+ÿùÿñÿóãþzÒ}þæçßÿî?~ù¿ø¯¿||ÝÿÞE@ +endstream +endobj +156 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 573 0 R +/Name /Im147 +/Width 20 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcooà¿@òÇèÀF0bn|�Cب½½ï_É ¡ÿ $"U?Q� +endstream +endobj +157 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 574 0 R +/Name /Im148 +/Width 17 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÁÀüAAÁ¡½>ð3@Ã92ì0ð70 +ÕL�°Ð² +endstream +endobj +158 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 575 0 R +/Name /Im149 +/Width 14 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³g¨gàgàB(´|`ÿÁ΢¢ÀTaÁ<<ÜPÏ ÇÀ'[=G�ìt¶ +endstream +endobj +159 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 576 0 R +/Name /Im150 +/Width 9 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xo°o`o`g@>(B(,�Ã"gPXãà � +á +endstream +endobj +160 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 577 0 R +/Name /Im151 +/Width 10 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc8ÀØÀÌÀÎÀ2@hPøÉCTôô³303060àÒª'�� C® +endstream +endobj +161 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 578 0 R +/Name /Im152 +/Width 28 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xeͱ 0CQG)oÄ1,E<Ãd6HILDGñJûÃIô¡íÕi0.21I³Üð×Û+kW>i|DºÄjjlj5Â+æå8×/&%µ +endstream +endobj +162 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 579 0 R +/Name /Im153 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc>ÀÿAÆÂB¦B¦ïòÃ`| ¼ ½ü{þó| h!S#ScQa`ðÁþ�lÝlQ�ÀV÷ +endstream +endobj +163 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 580 0 R +/Name /Im154 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÀüONÆÎÂÎB¦¡�?øþã̹|ø>ðÃ`òYðYÈÈXð`~ [7[�ó¬Q +endstream +endobj +164 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 581 0 R +/Name /Im155 +/Width 17 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xK``¨ÿß�F@Ã6<`$ÁÀ`�F @3bÇeëf�2Øî +endstream +endobj +165 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 582 0 R +/Name /Im156 +/Width 5 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øñãG|øñ£BBBÂÀ ÁUªv"�»å + +endstream +endobj +166 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 583 0 R +/Name /Im157 +/Width 10 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x;ÀÀ`À`Á |@ÈÌ Px�ÊCTôô[�MJ`8ÀÀ¥U7O��,Æ +endstream +endobj +167 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 584 0 R +/Name /Im158 +/Width 17 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨l`üßÀÜßÀÎÞÀÏÎÀÇÎ F6|HHÁBÁÆA¦ÿû0*`H(`øðáãÿ õRu ÁÕ +endstream +endobj +168 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 585 0 R +/Name /Im159 +/Width 18 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã?À ø*øÿ0ð÷1ðó1Èñ1ÈÀ Y8X�¡Â z`Ï Ç $[;G�»½Ç +endstream +endobj +169 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 586 0 R +/Name /Im160 +/Width 26 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿùÿÿ@ÌÏ`Ã@þÿUÅÿ¡öHÉÔÍ�&¼¹ +endstream +endobj +170 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 587 0 R +/Name /Im161 +/Width 28 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¡þÁ æg°càg�b N�âü@ÌÜÀÀÏÎÀÀÏÄr@,Äö@?ÄÍ u áÿ�â + ¶b9 g�Úñedêf+��/õ +endstream +endobj +171 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 588 0 R +/Name /Im162 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc? ÿÁ¢ÂÀ¦Â®Fíìl, +ذ`(�²íääää ܹ +ùìdëf�JÈ +endstream +endobj +172 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 589 0 R +/Name /Im163 +/Width 31 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xg?`oßÿ =ñFAòÁÇ1;ã0æcnxÀdØA0s[ð1þ`cø /T;Q �Ë"³ +endstream +endobj +173 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 590 0 R +/Name /Im164 +/Width 33 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcgþÀÀðÿþæ,Ø?Ô0°3 ~æ@ñ`@'þÿÿÿB�¹6õÇüo�² s91 +endstream +endobj +174 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 591 0 R +/Name /Im165 +/Width 16 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãßoø8ñyâùç1`n�ÁâÆïÌß³ï«ýSðA@¨v¢0� +endstream +endobj +175 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 592 0 R +/Name /Im166 +/Width 20 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿ¡þÿ:ÆÌ +°7$�?C<C C CÃb|ÀÀüÀù{?1ÈP à ìþÿ!ºÙ�Ü +endstream +endobj +176 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 593 0 R +/Name /Im167 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc>ÀÿAÆÂBÆB¦?ðãyJþìdëf�ëôã +endstream +endobj +177 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 594 0 R +/Name /Im168 +/Width 24 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÏÿÿøjødøxøøøØøáÿ?ÌÄBÌ PÔ%4ä?Ø4 ºÙ2�2Ëk +endstream +endobj +178 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 595 0 R +/Name /Im169 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc~ÀÿAÆÂBƯ�+ø*dìdìwÈ?`ÿÀÿCæE]\ÿþìTÃcc#ÿýlÝlQ�ºÔ +endstream +endobj +179 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 596 0 R +/Name /Im170 +/Width 33 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßÀð¿áÿÆÿ ü0 ÞÌHÏ6¢ °@!äPþý�2!ÇÜPÁðÿp;Ð BQ¦n¶� ¢+i +endstream +endobj +180 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 597 0 R +/Name /Im171 +/Width 5 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øñãG8¬Bµy�pÅ +endstream +endobj +181 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 598 0 R +/Name /Im172 +/Width 15 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã`ÿ£À¦@æÈ1Ø0T0<`<ÀØÀÜÀÌ�L0ÀÎÀß�@Z¶n�0A ® +endstream +endobj +182 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 599 0 R +/Name /Im173 +/Width 16 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc? ÿÁ¢"Á&AîÜùü?øøääÐÁ¡áÃÆf6f>ff vûõÿþ¡LÝlQ�Z²T +endstream +endobj +183 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 600 0 R +/Name /Im174 +/Width 18 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xca`�"0úÃÀD{÷0°Û0°Ù0ðÙ0ðØ0HØ0XØ0Ø0$Ø0<°aøÿÿ�t¡"æÿHH¦~¶(�bª +endstream +endobj +184 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 601 0 R +/Name /Im175 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x3à±ÿcÿÃþý4~`þÁÆÂBÆ@Îøá¾¹ +ùìdëf�Yòõ +endstream +endobj +185 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 602 0 R +/Name /Im176 +/Width 23 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¿áÿÿüø*øløì0 Xê?PÙÿ~<èÿ©-�^% +endstream +endobj +186 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 603 0 R +/Name /Im177 +/Width 27 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMʱ 1DÑo]àð + °DBv[Àn5ÔáR\Â èµ ÑKf9YE_j>y%aËËÛ422j6õÅ|pBúÀv@Ësº2x{©ÏlzúJhÁ$×Ëíù¾þ�²^Fù +endstream +endobj +187 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 604 0 R +/Name /Im178 +/Width 32 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`¨ÿÀ�Çì¤áúöÿ`ÿÿÿÿûòd;×3@ð"0L-D/?Ðùüêæ~ÿÏüÿùzöÿ +Zu+Ut²GY +endstream +endobj +188 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 605 0 R +/Name /Im179 +/Width 15 +/Height 43 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcgà? ÿÀåð`g@ÿ ?Ñðÿ?ä×®[%�*'« +endstream +endobj +189 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 606 0 R +/Name /Im180 +/Width 40 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xα ág(èdZ-íMXËÂäÇ1ÜDF`�âÉ3Dk¯»{? ÉÀh±ðªÝ v ¦�b3\ÅûÔpáhXyzúùàð»=¶,¬ZÙk©=ØkýÅã´íó ¼}=Ï +endstream +endobj +190 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 607 0 R +/Name /Im181 +/Width 32 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿà?Ãÿçÿüÿÿÿÿ?þü?Øð?`þÃÿñ3ü'áêÿð�êdñÌ}þ¿ÿá? :øÿ?VP¯¥ +�¡J +endstream +endobj +191 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 608 0 R +/Name /Im182 +/Width 22 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÇÿÿ?ø*ø,ø$ødøx@@ÿ?±3@E ýÿBb2u³¥#Êá +endstream +endobj +192 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 609 0 R +/Name /Im183 +/Width 22 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏÀðäq!ùPÄÏ /Ç oà _Á ÿAþüy; <ûÿÇÿ@lýI�?1 +endstream +endobj +193 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 610 0 R +/Name /Im184 +/Width 19 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃÀÿA¿Áý@ 3=øÃüàÿúÃÀ�A5uìÈ7àÿßÀøAX¨~¢�#ý +endstream +endobj +194 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 611 0 R +/Name /Im185 +/Width 22 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûøÏ0g|Àßx�Ø7Ðóæç@ÄøèUQCEÃ0<|Àðø�C}TýDI�S"¯ +endstream +endobj +195 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 612 0 R +/Name /Im186 +/Width 12 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xg°?øàÀ00|`xÀx±Ç@ÂÀ þÁ ä®$�N, +endstream +endobj +196 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 613 0 R +/Name /Im187 +/Width 11 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xg¨o8|à0�!ãæv>úÿ[ ¾�?Ò< +endstream +endobj +197 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 614 0 R +/Name /Im188 +/Width 9 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcl`f`càaa`°`0`(� |ÄAò@@<@Ì Ju3ø�Bt´ +endstream +endobj +198 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 615 0 R +/Name /Im189 +/Width 15 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc? ÿÁ¢ÀâÊ`]ý?ù{Lr22ìÈ7ðÖO�Ê¢ö +endstream +endobj +199 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 616 0 R +/Name /Im190 +/Width 15 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc? ÿÁ¢@kdì-ì?ð?ÿaû§àÏ»| XÀS=À/Z?E�Æ/ +endstream +endobj +200 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 617 0 R +/Name /Im191 +/Width 9 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x;ÀÀ`À Á ÃÀÃÀÇÀÆÀÌ ØÅAòl@<@@ 8êfð�Tõ Þ +endstream +endobj +201 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 618 0 R +/Name /Im192 +/Width 4 +/Height 10 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xS(HxpàÀX¸j§q�BH +endstream +endobj +202 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 619 0 R +/Name /Im193 +/Width 4 +/Height 10 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKøð¡ÀÀ áWí4.�9¨, +endstream +endobj +203 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 420 0 R >> /XObject << /Im194 205 0 R /Im195 206 0 R /Im196 207 0 R /Im184 193 0 R /Im171 180 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im40 47 0 R /Im39 46 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im71 78 0 R /Im69 76 0 R /Im55 62 0 R /Im40 47 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im67 74 0 R /Im58 65 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im59 66 0 R /Im58 65 0 R /Im67 74 0 R /Im52 59 0 R /Im45 52 0 R /Im47 54 0 R /Im75 82 0 R /Im71 78 0 R /Im47 54 0 R /Im43 50 0 R /Im47 54 0 R /Im51 58 0 R /Im45 52 0 R /Im58 65 0 R /Im40 47 0 R /Im39 46 0 R /Im42 49 0 R /Im59 66 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im55 62 0 R /Im40 47 0 R /Im53 60 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im59 66 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im47 54 0 R /Im43 50 0 R /Im59 66 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im68 75 0 R /Im197 208 0 R /Im198 209 0 R /Im195 206 0 R /Im199 210 0 R /Im184 193 0 R /Im171 180 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im40 47 0 R /Im39 46 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im68 75 0 R /Im62 69 0 R /Im40 47 0 R /Im39 46 0 R /Im67 74 0 R /Im42 49 0 R /Im69 76 0 R /Im42 49 0 R /Im58 65 0 R /Im59 66 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im200 211 0 R /Im70 77 0 R /Im201 212 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im71 78 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im67 74 0 R /Im58 65 0 R /Im39 46 0 R /Im51 58 0 R /Im42 49 0 R /Im58 65 0 R /Im45 52 0 R /Im43 50 0 R /Im52 59 0 R /Im42 49 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im71 78 0 R /Im58 65 0 R /Im39 46 0 R /Im52 59 0 R /Im66 73 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im47 54 0 R /Im52 59 0 R /Im39 46 0 R /Im59 66 0 R /Im47 54 0 R /Im43 50 0 R /Im58 65 0 R /Im57 64 0 R /Im47 54 0 R /Im69 76 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im47 54 0 R /Im52 59 0 R /Im39 46 0 R /Im59 66 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im59 66 0 R /Im45 52 0 R /Im47 54 0 R /Im58 65 0 R /Im59 66 0 R /Im202 213 0 R /Im52 59 0 R /Im44 51 0 R /Im45 52 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im200 211 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im201 212 0 R /Im51 58 0 R /Im47 54 0 R /Im52 59 0 R /Im39 46 0 R /Im59 66 0 R /Im44 51 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im68 75 0 R /Im203 214 0 R /Im204 215 0 R /Im205 216 0 R /Im171 180 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im40 47 0 R /Im39 46 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im206 217 0 R /Im58 65 0 R /Im53 60 0 R /Im40 47 0 R /Im39 46 0 R /Im59 66 0 R /Im40 47 0 R /Im67 74 0 R /Im58 65 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im69 76 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im58 65 0 R /Im45 52 0 R /Im43 50 0 R /Im52 59 0 R /Im42 49 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im71 78 0 R /Im58 65 0 R /Im39 46 0 R /Im52 59 0 R /Im66 73 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im47 54 0 R /Im52 59 0 R /Im39 46 0 R /Im59 66 0 R /Im47 54 0 R /Im43 50 0 R /Im58 65 0 R /Im57 64 0 R /Im47 54 0 R /Im69 76 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im47 54 0 R /Im52 59 0 R /Im39 46 0 R /Im59 66 0 R /Im68 75 0 R /Im197 208 0 R /Im184 193 0 R /Im204 215 0 R /Im199 210 0 R /Im198 209 0 R /Im207 218 0 R /Im208 219 0 R /Im184 193 0 R /Im209 220 0 R /Im210 221 0 R /Im207 218 0 R /Im171 180 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im40 47 0 R /Im39 46 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im57 64 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im59 66 0 R /Im42 49 0 R /Im66 73 0 R /Im45 52 0 R /Im55 62 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im52 59 0 R /Im51 58 0 R /Im45 52 0 R /Im43 50 0 R /Im42 49 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im59 66 0 R /Im68 75 0 R /Im95 102 0 R /Im55 62 0 R /Im42 49 0 R /Im39 46 0 R /Im59 66 0 R /Im47 54 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im58 65 0 R /Im39 46 0 R /Im211 222 0 R /Im70 77 0 R /Im66 73 0 R /Im57 64 0 R /Im46 53 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im58 65 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im40 47 0 R /Im44 51 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im58 65 0 R /Im45 52 0 R /Im66 73 0 R /Im57 64 0 R /Im46 53 0 R /Im212 223 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im42 49 0 R /Im42 49 0 R /Im71 78 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im59 66 0 R /Im42 49 0 R /Im66 73 0 R /Im45 52 0 R /Im55 62 0 R /Im40 47 0 R /Im44 51 0 R /Im211 222 0 R /Im213 224 0 R /Im212 223 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im65 72 0 R /Im42 49 0 R /Im66 73 0 R /Im45 52 0 R /Im55 62 0 R /Im40 47 0 R /Im39 46 0 R /Im59 66 0 R /Im40 47 0 R /Im67 74 0 R /Im58 65 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im55 62 0 R /Im47 54 0 R /Im69 76 0 R /Im59 66 0 R /Im42 49 0 R /Im42 49 0 R /Im66 73 0 R /Im58 65 0 R /Im66 73 0 R /Im43 50 0 R /Im42 49 0 R /Im41 48 0 R /Im40 47 0 R /Im47 54 0 R /Im52 59 0 R /Im44 51 0 R /Im57 64 0 R /Im46 53 0 R /Im42 49 0 R /Im39 46 0 R /Im67 74 0 R /Im47 54 0 R /Im52 59 0 R /Im39 46 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im55 62 0 R /Im58 65 0 R /Im44 51 0 R /Im51 58 0 R /Im42 49 0 R /Im42 49 0 R /Im39 46 0 R /Im40 47 0 R /Im39 46 0 R /Im41 48 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im53 60 0 R /Im58 65 0 R /Im45 52 0 R /Im42 49 0 R /Im59 66 0 R /Im68 75 0 R /Im95 102 0 R /Im42 49 0 R /Im67 74 0 R /Im58 65 0 R /Im57 64 0 R /Im57 64 0 R /Im58 65 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im69 76 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im79 86 0 R /Im41 48 0 R /Im42 49 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im79 86 0 R /Im42 49 0 R /Im57 64 0 R /Im59 66 0 R /Im44 51 0 R /Im58 65 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im58 65 0 R /Im57 64 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im68 75 0 R /Im65 72 0 R /Im52 59 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im71 78 0 R /Im42 49 0 R /Im58 65 0 R /Im67 74 0 R /Im55 62 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im40 47 0 R /Im44 51 0 R /Im57 64 0 R /Im47 54 0 R /Im47 54 0 R /Im76 83 0 R /Im42 49 0 R /Im59 66 0 R /Im52 59 0 R /Im66 73 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im68 75 0 R /Im74 81 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im40 47 0 R /Im44 51 0 R /Im48 55 0 R /Im47 54 0 R /Im52 59 0 R /Im39 46 0 R /Im59 66 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im42 49 0 R /Im43 50 0 R /Im41 48 0 R /Im42 49 0 R /Im44 51 0 R /Im47 54 0 R /Im39 46 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im43 50 0 R /Im42 49 0 R /Im42 49 0 R /Im66 73 0 R /Im52 59 0 R /Im43 50 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im71 78 0 R /Im59 66 0 R /Im42 49 0 R /Im66 73 0 R /Im42 49 0 R /Im39 46 0 R /Im59 66 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im48 55 0 R /Im203 214 0 R /Im204 215 0 R /Im205 216 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im197 208 0 R /Im184 193 0 R /Im204 215 0 R /Im199 210 0 R /Im198 209 0 R /Im207 218 0 R /Im208 219 0 R /Im184 193 0 R /Im209 220 0 R /Im210 221 0 R /Im207 218 0 R /Im68 75 0 R /Im146 153 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im59 66 0 R /Im42 49 0 R /Im66 73 0 R /Im45 52 0 R /Im55 62 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im57 64 0 R /Im57 64 0 R /Im45 52 0 R /Im47 54 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im59 66 0 R /Im40 47 0 R /Im44 51 0 R /Im57 64 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im39 46 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im72 79 0 R /Im52 59 0 R /Im58 65 0 R /Im57 64 0 R /Im45 52 0 R /Im47 54 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im59 66 0 R /Im42 49 0 R /Im66 73 0 R /Im45 52 0 R /Im55 62 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im40 47 0 R /Im42 49 0 R /Im41 48 0 R /Im42 49 0 R /Im59 66 0 R /Im48 55 0 R /Im43 50 0 R /Im47 54 0 R /Im50 57 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im33 40 0 R /Im34 41 0 R /Im35 42 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im40 47 0 R /Im42 49 0 R /Im41 48 0 R /Im42 49 0 R /Im59 66 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im58 65 0 R /Im45 52 0 R /Im43 50 0 R /Im52 59 0 R /Im42 49 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im68 75 0 R /Im56 63 0 R /Im47 54 0 R /Im48 55 0 R /Im52 59 0 R /Im43 50 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im55 62 0 R /Im58 65 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im51 58 0 R /Im42 49 0 R /Im59 66 0 R /Im47 54 0 R /Im39 46 0 R /Im42 49 0 R /Im171 180 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im40 47 0 R /Im42 49 0 R /Im41 48 0 R /Im42 49 0 R /Im59 66 0 R /Im48 55 0 R /Im43 50 0 R /Im47 54 0 R /Im50 57 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im68 75 0 R /Im214 225 0 R /Im38 45 0 R /Im44 51 0 R /Im52 59 0 R /Im58 65 0 R /Im57 64 0 R /Im57 64 0 R /Im46 53 0 R /Im71 78 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im58 65 0 R /Im57 64 0 R /Im44 51 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im40 47 0 R /Im42 49 0 R /Im41 48 0 R /Im42 49 0 R /Im59 66 0 R /Im48 55 0 R /Im43 50 0 R /Im47 54 0 R /Im50 57 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im71 78 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im59 66 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im59 66 0 R /Im42 49 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im50 57 0 R /Im40 47 0 R /Im39 46 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im66 73 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im67 74 0 R /Im40 47 0 R /Im66 73 0 R /Im58 65 0 R /Im57 64 0 R /Im41 48 0 R /Im58 65 0 R /Im43 50 0 R /Im40 47 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im68 75 0 R /Im173 182 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im59 66 0 R /Im42 49 0 R /Im66 73 0 R /Im45 52 0 R /Im55 62 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im57 64 0 R /Im57 64 0 R /Im45 52 0 R /Im47 54 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im59 66 0 R /Im40 47 0 R /Im44 51 0 R /Im57 64 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im39 46 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im72 79 0 R /Im52 59 0 R /Im58 65 0 R /Im57 64 0 R /Im45 52 0 R /Im47 54 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im59 66 0 R /Im42 49 0 R /Im66 73 0 R /Im45 52 0 R /Im55 62 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im40 47 0 R /Im42 49 0 R /Im41 48 0 R /Im42 49 0 R /Im59 66 0 R /Im48 55 0 R /Im43 50 0 R /Im47 54 0 R /Im50 57 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im33 40 0 R /Im34 41 0 R /Im35 42 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im40 47 0 R /Im42 49 0 R /Im41 48 0 R /Im42 49 0 R /Im59 66 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im34 41 0 R /Im148 157 0 R /Im30 37 0 R /Im58 65 0 R /Im45 52 0 R /Im43 50 0 R /Im52 59 0 R /Im42 49 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im68 75 0 R /Im74 81 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im40 47 0 R /Im44 51 0 R /Im67 74 0 R /Im58 65 0 R /Im44 51 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im67 74 0 R /Im58 65 0 R /Im39 46 0 R /Im51 58 0 R /Im42 49 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im59 66 0 R /Im45 52 0 R /Im47 54 0 R /Im58 65 0 R /Im59 66 0 R /Im202 213 0 R /Im52 59 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im200 211 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im151 160 0 R /Im40 47 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im58 65 0 R /Im57 64 0 R /Im47 54 0 R /Im69 76 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im47 54 0 R /Im52 59 0 R /Im39 46 0 R /Im59 66 0 R /Im157 166 0 R /Im47 54 0 R /Im43 50 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im201 212 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im151 160 0 R /Im40 47 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im58 65 0 R /Im39 46 0 R /Im52 59 0 R /Im66 73 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im47 54 0 R /Im52 59 0 R /Im39 46 0 R /Im59 66 0 R /Im157 166 0 R /Im68 75 0 R /Im74 81 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im40 47 0 R /Im44 51 0 R /Im67 74 0 R /Im58 65 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im200 211 0 R /Im45 52 0 R /Im47 54 0 R /Im51 58 0 R /Im42 49 0 R /Im53 60 0 R /Im43 50 0 R /Im42 49 0 R /Im58 65 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im39 46 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im72 79 0 R /Im52 59 0 R /Im58 65 0 R /Im57 64 0 R /Im45 52 0 R /Im47 54 0 R /Im201 212 0 R /Im71 78 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im39 46 0 R /Im58 65 0 R /Im67 74 0 R /Im52 59 0 R /Im45 52 0 R /Im47 54 0 R /Im75 82 0 R /Im47 54 0 R /Im67 74 0 R /Im67 74 0 R /Im52 59 0 R /Im43 50 0 R /Im44 51 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im39 46 0 R /Im47 54 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im55 62 0 R /Im58 65 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im51 58 0 R /Im42 49 0 R /Im59 66 0 R /Im47 54 0 R /Im39 46 0 R /Im42 49 0 R /Im68 75 0 R /Im78 85 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im69 76 0 R /Im40 47 0 R /Im44 51 0 R /Im42 49 0 R /Im71 78 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im40 47 0 R /Im42 49 0 R /Im41 48 0 R /Im42 49 0 R /Im59 66 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im67 74 0 R /Im58 65 0 R /Im39 46 0 R /Im51 58 0 R /Im42 49 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im59 66 0 R /Im58 65 0 R /Im44 51 0 R /Im58 65 0 R /Im79 86 0 R /Im43 50 0 R /Im44 51 0 R /Im45 52 0 R /Im67 74 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im40 47 0 R /Im59 66 0 R /Im58 65 0 R /Im45 52 0 R /Im42 49 0 R /Im71 78 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im67 74 0 R /Im42 49 0 R /Im40 47 0 R /Im45 52 0 R /Im69 76 0 R /Im58 65 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im40 47 0 R /Im59 66 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im151 160 0 R /Im47 54 0 R /Im43 50 0 R /Im58 65 0 R /Im45 52 0 R /Im57 64 0 R /Im42 49 0 R /Im58 65 0 R /Im44 51 0 R /Im45 52 0 R /Im53 60 0 R /Im47 54 0 R /Im47 54 0 R /Im59 66 0 R /Im42 49 0 R /Im39 46 0 R /Im47 54 0 R /Im52 59 0 R /Im53 60 0 R /Im55 62 0 R /Im45 52 0 R /Im47 54 0 R /Im46 53 0 R /Im40 47 0 R /Im42 49 0 R /Im57 64 0 R /Im59 66 0 R /Im58 65 0 R /Im67 74 0 R /Im52 59 0 R /Im45 52 0 R /Im47 54 0 R /Im75 82 0 R /Im157 166 0 R /Im66 73 0 R /Im43 50 0 R /Im42 49 0 R /Im41 48 0 R /Im40 47 0 R /Im47 54 0 R /Im52 59 0 R /Im44 51 0 R /Im57 64 0 R /Im46 53 0 R /Im68 75 0 R /Im162 171 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im59 66 0 R /Im42 49 0 R /Im66 73 0 R /Im45 52 0 R /Im55 62 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im57 64 0 R /Im57 64 0 R /Im45 52 0 R /Im47 54 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im59 66 0 R /Im40 47 0 R /Im44 51 0 R /Im53 60 0 R /Im43 50 0 R /Im42 49 0 R /Im58 65 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im59 66 0 R /Im42 49 0 R /Im66 73 0 R /Im45 52 0 R /Im55 62 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im40 47 0 R /Im42 49 0 R /Im41 48 0 R /Im42 49 0 R /Im59 66 0 R /Im48 55 0 R /Im43 50 0 R /Im47 54 0 R /Im50 57 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im68 75 0 R /Im74 81 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im40 47 0 R /Im44 51 0 R /Im67 74 0 R /Im58 65 0 R /Im44 51 0 R /Im42 49 0 R /Im47 54 0 R /Im39 46 0 R /Im57 64 0 R /Im46 53 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im40 47 0 R /Im42 49 0 R /Im41 48 0 R /Im42 49 0 R /Im59 66 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im59 66 0 R /Im215 226 0 R /Im68 75 0 R /Im74 81 0 R /Im45 52 0 R /Im67 74 0 R /Im58 65 0 R /Im39 46 0 R /Im51 58 0 R /Im42 49 0 R /Im40 47 0 R /Im39 46 0 R /Im41 48 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im53 60 0 R /Im58 65 0 R /Im45 52 0 R /Im42 49 0 R /Im59 66 0 R /Im79 86 0 R /Im43 50 0 R /Im44 51 0 R /Im45 52 0 R /Im71 78 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im67 74 0 R /Im42 49 0 R /Im40 47 0 R /Im45 52 0 R /Im69 76 0 R /Im58 65 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im40 47 0 R /Im59 66 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im58 65 0 R /Im44 51 0 R /Im55 62 0 R /Im58 65 0 R /Im57 64 0 R /Im57 64 0 R /Im47 54 0 R /Im69 76 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im71 78 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im66 73 0 R /Im43 50 0 R /Im47 54 0 R /Im51 58 0 R /Im58 65 0 R /Im51 58 0 R /Im40 47 0 R /Im57 64 0 R /Im40 47 0 R /Im45 52 0 R /Im46 53 0 R /Im51 58 0 R /Im42 49 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im55 62 0 R /Im40 47 0 R /Im53 60 0 R /Im55 62 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im45 52 0 R /Im58 65 0 R /Im57 64 0 R /Im44 51 0 R /Im47 54 0 R /Im69 76 0 R /Im40 47 0 R /Im57 64 0 R /Im57 64 0 R /Im51 58 0 R /Im42 49 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im59 66 0 R /Im42 49 0 R /Im42 49 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im52 59 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im59 66 0 R /Im45 52 0 R /Im47 54 0 R /Im40 47 0 R /Im50 57 0 R /Im66 73 0 R /Im43 50 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im47 54 0 R /Im43 50 0 R /Im59 66 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im68 75 0 R /Im97 104 0 R /Im216 227 0 R /Im217 228 0 R /Im109 116 0 R /Im106 113 0 R /Im133 140 0 R /Im103 110 0 R /Im137 144 0 R /Im103 110 0 R /Im117 124 0 R /Im106 113 0 R /Im133 140 0 R /Im105 112 0 R /Im106 113 0 R /Im101 108 0 R /Im136 143 0 R /Im136 143 0 R /Im106 113 0 R /Im108 115 0 R /Im112 119 0 R /Im103 110 0 R /Im105 112 0 R /Im103 110 0 R /Im118 125 0 R /Im104 111 0 R /Im121 128 0 R /Im133 140 0 R /Im103 110 0 R /Im137 144 0 R /Im101 108 0 R /Im105 112 0 R /Im136 143 0 R /Im103 110 0 R /Im105 112 0 R /Im105 112 0 R /Im106 113 0 R /Im133 140 0 R /Im118 125 0 R /Im100 107 0 R /Im106 113 0 R /Im133 140 0 R /Im103 110 0 R /Im137 144 0 R /Im103 110 0 R /Im117 124 0 R /Im106 113 0 R /Im133 140 0 R /Im104 111 0 R /Im103 110 0 R /Im106 113 0 R /Im104 111 0 R /Im101 108 0 R /Im103 110 0 R /Im102 109 0 R /Im103 110 0 R /Im137 144 0 R /Im115 122 0 R /Im106 113 0 R /Im133 140 0 R /Im103 110 0 R /Im105 112 0 R /Im103 110 0 R /Im118 125 0 R /Im104 111 0 R /Im121 128 0 R /Im133 140 0 R /Im104 111 0 R /Im103 110 0 R /Im105 112 0 R /Im113 120 0 R /Im136 143 0 R /Im106 113 0 R /Im105 112 0 R /Im111 118 0 R /Im118 125 0 R /Im107 114 0 R /Im137 144 0 R /Im101 108 0 R /Im218 229 0 R /Im103 110 0 R /Im104 111 0 R /Im109 116 0 R /Im104 111 0 R /Im108 115 0 R /Im111 118 0 R /Im106 113 0 R /Im133 140 0 R /Im103 110 0 R /Im104 111 0 R /Im103 110 0 R /Im105 112 0 R /Im113 120 0 R /Im136 143 0 R /Im106 113 0 R /Im105 112 0 R /Im142 149 0 R /Im133 140 0 R /Im103 110 0 R /Im100 107 0 R /Im105 112 0 R /Im103 110 0 R /Im118 125 0 R /Im104 111 0 R /Im121 128 0 R /Im133 140 0 R /Im101 108 0 R /Im100 107 0 R /Im114 121 0 R /Im142 149 0 R /Im101 108 0 R /Im106 113 0 R /Im133 140 0 R /Im108 115 0 R /Im113 120 0 R /Im106 113 0 R /Im118 125 0 R /Im106 113 0 R /Im104 111 0 R /Im118 125 0 R /Im100 107 0 R /Im105 112 0 R /Im117 124 0 R /Im108 115 0 R /Im105 112 0 R /Im101 108 0 R /Im106 113 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im118 125 0 R /Im112 119 0 R /Im136 143 0 R /Im103 110 0 R /Im123 130 0 R /Im219 230 0 R /Im122 129 0 R /Im104 111 0 R /Im108 115 0 R /Im114 121 0 R /Im104 111 0 R /Im118 125 0 R /Im111 118 0 R /Im105 112 0 R /Im113 120 0 R /Im105 112 0 R /Im101 108 0 R /Im100 107 0 R /Im114 121 0 R /Im118 125 0 R /Im105 112 0 R /Im117 124 0 R /Im101 108 0 R /Im104 111 0 R /Im118 125 0 R /Im106 113 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im105 112 0 R /Im103 110 0 R /Im118 125 0 R /Im104 111 0 R /Im121 128 0 R /Im133 140 0 R /Im118 125 0 R /Im136 143 0 R /Im105 112 0 R /Im108 115 0 R /Im113 120 0 R /Im105 112 0 R /Im103 110 0 R /Im106 113 0 R /Im133 140 0 R /Im103 110 0 R /Im105 112 0 R /Im121 128 0 R /Im108 115 0 R /Im104 111 0 R /Im103 110 0 R /Im123 130 0 R /Im217 228 0 R /Im106 113 0 R /Im101 108 0 R /Im105 112 0 R /Im113 120 0 R /Im105 112 0 R /Im103 110 0 R /Im137 144 0 R /Im109 116 0 R /Im108 115 0 R /Im104 111 0 R /Im105 112 0 R /Im103 110 0 R /Im106 113 0 R /Im106 113 0 R /Im101 108 0 R /Im100 107 0 R /Im114 121 0 R /Im106 113 0 R /Im133 140 0 R /Im103 110 0 R /Im105 112 0 R /Im103 110 0 R /Im118 125 0 R /Im104 111 0 R /Im121 128 0 R /Im133 140 0 R /Im142 149 0 R /Im101 108 0 R /Im100 107 0 R /Im137 144 0 R /Im108 115 0 R /Im142 149 0 R /Im188 197 0 R /Im125 132 0 R /Im104 111 0 R /Im113 120 0 R /Im137 144 0 R /Im100 107 0 R /Im108 115 0 R /Im115 122 0 R /Im128 135 0 R /Im189 198 0 R /Im127 134 0 R /Im220 231 0 R /Im221 232 0 R /Im125 132 0 R /Im103 110 0 R /Im104 111 0 R /Im136 143 0 R /Im101 108 0 R /Im100 107 0 R /Im103 110 0 R /Im104 111 0 R /Im115 122 0 R /Im128 135 0 R /Im189 198 0 R /Im222 233 0 R /Im223 234 0 R /Im221 232 0 R /Im224 235 0 R /Im101 108 0 R /Im136 143 0 R /Im136 143 0 R /Im108 115 0 R /Im114 121 0 R /Im136 143 0 R /Im107 114 0 R /Im115 122 0 R /Im128 135 0 R /Im189 198 0 R /Im222 233 0 R /Im190 199 0 R /Im191 200 0 R /Im123 130 0 R /Im162 171 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 204 0 R +>> +endobj +204 0 obj +<< +/Length 620 0 R +/Filter /FlateDecode +>> +stream +x¥}Ë-»qåü|E íë&ùò°að¤aÃw¨-]·Ô·nCðß{çÞbæZ+8@á PLÁ`¼¸âÏßþíãÏßÂÇß¾ýùÛö¹mÓÇô9Mö3¦8}4Æ%,ûò9Åüñ«ßûá_~öüñOüöo_>0N~ gøùúW0OðËùùs^ðôí² ð'øeù\óåk8 }.øk+XÖë¿FãW0>ñ`|ÚÏãã ËÇx8ÿåé ì·ëüy:Ï¿/Çø×¸Óü¼ÿ}ö>¤ç1úÅöèw^ÿkÿ1 !/ãÿÅçòüqCóËü¤ße~JÿæwÐ?#þ¿Òý\ +ñÏøËoáúübùÒY§ÿç¿ÐÉ_\ç[ò¡þÒõOÜwÈÏ®üìHþ4ù9Ö&;¿ü¦ªÿÁ ù'Mÿ®üÃä'UáóOaÎßc ÒùÑùcùÐ/Þ»?SÒîÏ«ñ:Öb@|=ÿ«ý°|f¨RöÃe~Æÿ PWþ§ôµûÉOÿ"û¬ê?]~Ó +õ¿¬ÿÒªíòÿ +õ¯¬¿´ßûß4ýOõÇéäù¡ý ÎßÚ_WûÉoús÷EýÉöFvþ9ÂóòOè4û®?Êo}À+ýüdh!ùÁú?ÏÐ~º¬ÿªýgtÿùþÏKô?]ÿ +ïOùþÏ+´_.òKýϥ̿eçýYü·eã¯þõ?W8¿î®Í¯ûëþ:ÿv~Ýÿ4ýÝGþ'ÿÝÎ/ë°£ù¯úÚßSéOìï Ò_·¿<Ý5ýÛú?1çås}úßÅÙÂç¶Ôùüõ'DýÒ"Ñúß¿ÃÿFòå:ÿøW¿ãö¯Çߢ¨ÿèú¡þÓí§¸ìÒù]ï×oâZîvÿýî¿'ÿnÿ.ô§ü»iòÇýo¤?®ûgñõ¿IXÿÈök +ðüåøMõ;ûçþó*é/jÿ'8¿pþ6Ý_ºý]ýßAùOùÞýfÈ?àþÞ2ÿÐþÀ!ü·ÀýëñÉßUÿPùY¡ý¦ËÏåW ê?]~DýAíolÿèö÷ï_ùþÏPÿ þcþ'Ô?ºÿõÏeýLÿdß ÚÏ9"ú]ígfeßuì/vfßuîÏô°ÿæÏùá÷-Ë×ña0,ì?pYA7{ú�0áÉ +,xúó>àÉÂίCh?0 m>àÉÂn`¼'æ÷daáü,lã=YØbE,cR\³°ýó,,â OÑß ]ýYXDt, yËû[GôÓÏÿACpþ³Ìÿ1#ú#+Ð/#þÑoñ8£óC·8¶ââÿúþ[àúuþúËÁXéQ ò¿ úÇ ØáùÉò&t éU�iBôóxÿQ+ë ç×½È4ßÒÿÕ¼ÿª7(?ÕdQ¤ùy®ß¢@=2T°BþÕ½ÀU½?YtÎßùWÏBoÈ̽g¿¥]³ßqdA¯ìÕ¸®}y!ýórÒçºÕñ²üYÌ;òâ=¡þºÚß|¼&¬"'ä]«(èüÚ_²ý¡¥d±- í7¹ +$/p~YÿåE£?ÏBBý%GÁóÎÝ_IJýϱs°,hBã/üûðõÿÁøC²/XNèôcÔ4ä>÷\ÓÈñK3òøùªî[x*åÁß/ 8`õ [ +ÈqØ£×= ªcèxíüzÆêHñzSõ@ÛõËuGóy4xP$ÂýëHDû÷ä!áü<$@=hd÷ü$ Àóÿy@¨ÁtÚò�Ýýù[!ÿÊuXÕmÆ£8nÇmçwx dýSóýS8h7¯ã ëò'´]¿Ì?)Þ¤_ò#G°RBò£G°ÒÃ{] Íxݰ(ú(ý2ÒJ¿ÔÏYÒÿ~Pèò[=X·üªÑzÐêxÐlü,çyDÈ¿:ZMÿS~úW¯#öî×:X÷ùòú?Cûy@dÿ ßÇM~àüí]e«Ãïê/²ÿÝ¿J¬yÿôªÚ/Ìç'ËOõ�K&Ã+?µµïÈ�®p~Y~ºñºü«ãjç#XGêóþiÆëudÁê0Úùõ:² ®_÷?¦îxþºÿv0ÞáýÕá?º~{ÇÙ×ý«£èЯAlÇËuhõgþÔÿ5ùãþÛÍóÑù;2p½{ ô#`êÇ;Ö ÑOÖwý_Ïï�;êH§c|Ú�¬ãÈQÈ8¡ô¤0¡� +s@!ë)4¨À)´÷¡¡&¨@z@P8< nýN3ÿ2 pîÂ=q00aÈVx Ê&PU�! 6Ad LÛÍØµà.@p1L3!YÊQ + +®P94d P]¸A Px&Xuá¯ààùéI<QÐõCâHÍH~ôD&(¥°\³+.ÄV_À+YN�^nI°xHÂ÷bà8 $°JÖâ5+ð¢{gÈÜÐ÷¸¡÷¢Nh~½uCó; +Q·ð§±^¬_.¤9CÞYuc»ë' !¢ùåç(Ñ +A:üÇÝPDý9Jd#0¦$òq£ìéð?w!ýu8¡ö¯Ë-¤íðOÂýëó/÷ôOMCvõ+¤Eüë#Y![;¿£êO=°#ú9ÂH»v~Ü ô×á@ þÒ³¦À¬!«Û¿¬ ´üS½ØÎþóJcNÐS \� f6&Ôõ=Ǻw§Ðá.ð�b°IZ?Ç#Bô×ë04Àu2@Qè# +ÈE�ijB'¤�Nl°g4¢4º~¨À<N8T`@þÉþä}ÿpúþ¡äØÿ¬9�¼ò¯Ç ¤ þJÜ.ÿÎÞÃOûP(þoÇáM`¼®?ëKÐv~¹«âµãå:®`xíúå:¤ê�·óËA°ú³¯¿D´4HþÌÞÿ8^"´ÇKD¢vèGëxc1`ðHWÍãvèG÷op3^¯ãªx@ú±:¬ZÛì_¯ãªx@ñ<åWwàD?½%bý#'aªÛίóÿ6z~6Íï¨ãÝþÓë¸jngÿÜ ôë¸jî þJ1úì?"ý©×q¥ô·^ÇUëpåçp`ïÈOÍÂÊO¡üêIL¨?IÌÇEç§×q/A_÷Osþn<yû:â¢8�§\Á@xh�Y ÉyàØ0 �$˺ C´bÄó.D\?ó%ô¬¦[°83ÁðÎåm"hÞÖ¦(3#µ%N[O±Ü$]"²d^âSN4ÐyG2åºG0¶$SÚñ»¼$SÚñ`zDG 'óbBlì°åKBø4¿+ÉÞþyMaFû×QeftþdÄÎßXàüº-»"þqÔB%âé-±óG¶«)Dûw$ó +r$óöIä_²þ=w¼iCüïÀ6Ðx[Îláù_%¸C®¾ï-ç×K¡þsôFHë-ýe¶ð¨þNÐñ ¢ ýçAEA¦ÃX ÿêØ¢+ÿWÈÿòê´iüG÷õ£·ÔßúÄ]ÓßÛ×cáPÿ8 +ò þqä8¿ªýÇr9÷îëí0ªÿsó˾är5 ¯¾ä~Y¿$Úùm_Pm0%C5çï@5½?-æw¼É27p]baVLØ¿ú¼·A±_Úñz1í¿¯c³Z.e^s®~r,¼zõ³öy¸@0ªËÃa/°½Eu¡ÁðÌø{°a à6ÿæÏ ϪwÄÀz5TBèÕÔ¨÷(í4¿î@bv¼Tf +Dwà±ÒIP9«ª�8º~s�7I~x5]0¯Ôø: S8SøÏËÔã=ü"ê}sÞú{ÍúúßÄóg°~ò£Î5®ê3Cùq4g@ò£ëêvôoîïÉ}9÷îïüs[1_ïþÞ>¦Ô_1èݪÓc@ö$nA¬?ãøòà áðà4wÇô#+�ÝÎð#Õì§ÝõÊ{¬uT¼=( +~þ«¦�y5\QÀË<d@®åi¼^ fûoÆëtõ Ûùeþ¥»t;^7 å´~ùüÃè¯GÐEàºô'ìd󧡺¡bæwt÷Û%úq´8Àíü:*HDçwåêÁGÄ¿À¿¾i6G{½§ZÖϰ}ÿÀ ÙZ]ÀÓ +ôoó\VÐÞàÍíêÀ<+GkM(lP è1 ©Ga*D!ì</ªý ¶KAnïüøªéUÒί'JbC[~PÖ$à +4`ËQh/ºz*'ÿ; +Ê2¼Âuz΢ +ßZ¡Ï¿ÌÓäÿåÏÑ``ztEò§$AÛñ}Ä�°þÓJw4¿çA\¿,8!þu¸ ͯë\õ×{ýCñÃ4TÞüÜüëp!ÿ:PUàùc&QÔ?`T¬ô$:Ö?r8[¯_Õ$fÃ?(Ã\ÈÂ?å¼IÔP +¢Ûñé¥ ºïiíæ÷ ª ùÀ¶ú môï¯`Ehóã(ïh¬ùÇ\ÐÑ_º^9ÌâÌa,d.h¸Öï@IEþÛñr¨æP;üÃç_¤ù)ý¢&?<öïÈ¡ÎPþuÿê?Ýþ«E¼íüz© кòÏügÈÿe³¨ÿXnùáz¢ý#þa! þÒ[óM*ýYc8¿CPÿ8rÀû üøùïó4TTý÷üÑý'H?¢¤ÃÌèþv<èÊ%ÙÚ?r^(yæÞáQûÁôoìµ#ãMÿÆ÷áxsé w Ê-ÅhÇëEtÅîîç/±ÐþæÿÇ÷9 ÁÆëExfvÖÏðf0ÞÓ: õK÷ç+bü;Ö3´ýÐþöéßø¾µ#¦ñ?.ÒüÜ~Fòë°ÿÇ#8¬¿tû/kú§k¶ãåøÇh èþÊÜZ³æZýÛo%õ=Ì¿?= ¹¡óGñ{2ÿ®òDü£Ûzÿ2@(rþ¬Úù)¢]Dhǯºýmö_;¿n'mý½Æb}ý×Éßtï?\u4óË®K?z¥Ò_FtMPÿè®0j?ÕüËàýw<"»sÿÕÀÁû/Aû =b ò·£ûû*<ÿrO~òæW�Z@¿ÓxÙ~4@¿¾ýÈò7÷ì÷õ^ÂîÙï5ÿ3h¿ÔÂýyþFÓ~Ð~Òå÷(!¼#¿ÖZ{T~k bG~éùAûËÑXnÕüWêZü ôwð`·1eñ¿Í~ï#RÿÝîÏð¾±_D´¹~+Ì%~Ów4V[Ò«þ¦/Ø~zþÇâÇá}c>è?ú;!ZýWè5ÄñÇ`5ðÓÞ4fù7¸G %¤¿£±Ý"ñ? ùñ4¶û×ëç"Gþ$jüÇß"ú;ÞàAýçhì§"ÿïûvßÒüèÏ�ÑüúÙýÙ¡ßY zè5&ñ§ò¿¿[ÑýåßmIÒ<þÏ_ßmèþsÄïvxÿéñ;¨?oøÌè¬Ç?î_ +h~ £PtéGÆGQýÏ+þö¿ê±_Ï%´¥~Ãâ'Å«ýö^Ðó_Â-û%-ýÂãPþôúåéGüqC÷þ¾Aô¬¡À¨ÿ`]ýFý<!ýûY´ß(K$ÿÑ_êW[ùöy!ÿ;`Þ³3´ß<O0UûÔßVÿsÌþÈ3²þ3ô¿õúQË ÚµþuÐþÈ?´?êÌAû£Ö¿ÚÖÕp¦!û#Øý×åïùåø¿õD<×ë_íþlÆ;ê_g´RBóëõ³ÿh÷¯?µ÷kíüzýÌç×jlļþbèOùÏò£ügþãõ×; +Nÿ~®¯Fÿxý ¦ºõò_ë/ºüÃ0àþõøSFòçeÈrþ¤Öo´ãõø ÔHÿê]©ã¢É=ÿÉþ~£ÖotöO׿i÷íºGIñú8¿îMÿÑýÁâp~ýýpÐî>^¿ÞûݼoÎ0ÿú[¯úKkHñª^ÅõøMóëõYµÙû[¨?túÍèþ»ÎÏâß©toé"±ðþÕA¬±ý§óoôο?qϪÿ´+p×~&ñ¯}½e&hÿéù;!Îûû¤ÔüQÿ1hþ@ùqÄ?Ðýé¨ö{ÿèçhhxÓÿÌP9è?k÷w¯¡ã¨üÖúÑõþ+o ý'Ù~´ú\üP¯ý +þÅi<¨ ÿ¼ñqº(�ÚO¨ðç ^5ÁÈÛüEÅI/)=Û8P@;ÞBY74¿ÐÊÇB¯nDíxOO¨r>àè U@tºgÈZ:Ù+äóäPña#È=¡Ëù¼¹'Ô¥u]£'UR§{BÅdD\ÆzBÙ[àÓôP1cYzBV±F öhgmZª·Ùþ XRW8^öjJÕ~ÀSö2Úñ:WÕEó¦~ÕEóXOë+v_(æðÈü_á³`Nʳæw +î"ýY8tCóë=<?¢_¹Ûñ ôþ9ÛiÿòsÌXÒýñ,é'Ã)Y9Ùi¼^!ÿ;ÊÁ ÿéáD³:üÃÃH8ÊÑD?GO3DG9[1§GõgúϲÁùp +Ißa_ÿ¼´ïÉ/§é§�é¯CºDCúÃÑÓÉ¿g þÒ}ChÇ+ágBýå¤ÿ$ë/¬ú«éïîèèÒéäü ýåèO]ãÞÖmôþ48ÂÞùÓùoÚ_I¶¿X9½'´¿pÚ/z9¥cí_+ç¥ÆúÇhOþ«G?ȯټÚßòsÎP»¿"?âãå_¶_kX~°þÓËYþó~ù}G È_ößwT áTó¿óû¬¥úßÍøk9Éh~ÝÝÐúñÒO?{NÕ_?ñ?,ß·¡ö·ÙíxÎÃüçü¾¥µIô£q̸¼XÍø$¤Ã¿û¿ÏøU;^H'ØsªÍ¯ÃqçP£ük-ÕFù7Î<å<þàp.Pèò³jòÃCÁýË÷õ?ï/ë ÞçÖRò£'7¤î¿ïPÿÈåt ê/G9HyÕ×Ó¹Ö¼wqÿê/ÝÚùóÞðþw´ûá$RFüã3Éèü=©gÕ~!þëï½ë?ÿå±ñHþþó¤ûó ý;è·ÁóÏ©®÷7Ê?E <à`YÈvýús¨<á6É~§åÊçáý!à X9Ϩýbí�Fí4þáþ7ôþfþ/_½§¼hqÿÚzOùE³ºþo÷þeþ/ÔºÿfûO½v"¬eFãáÐüzüÜàHNãåø£=Ç9wtÛÑþeû±æ¿ÉN$¢ùåø{Í»÷oþgãÏ_¸¿Ì-÷W3>è-!c¨;¦;ÄñHyÞ³@p$p¡�8ðDî)ÇFô÷à tôÀ +H6@«Û¡Çó( v¼.ÀXéý�DÆÀ¬ßççw$pý=ïiqÿ,¬éºþø_Àïi4ú3<{ú#%x~:kôsàñCýã±~x§ùeýWèÎùÑ�Ör¡& ÛýË $`¬âÉMùÛ¡ü8ðHÐþxØsà ùuàM~9É0TA{-&/ ìô5ÃE£õdF Ø÷I÷à §4°ñÐp4Ä +Hô,=è²ö ÒPn¶õ¿o(Ç{ºï Òî£ +(`¯§ûèT=ð8ÖЩzàq¬¡PõÀãXC!k¨w¡Í`ÛÐî_4¨Ü±×P=FôÓ3@_6£)ðø¾¡ôÔÎZlþºRÆÆ»âõ×Ï*°µó§óÞ×ÐÅógìU^ÁäÇ5¶Ë +ðÎþ»à£ò·@þÑ#h+Ô?²-Ôί@6¨?e nH~u ZNGÿRzÒô?ÄúÇÑPÎïpÀ¡üê�Ô_@ÂùOv�RiÈÙ׿ÌúOp� + C.Ø:~3´ô +ôÝß@¨¤Ð~r�¬ÚýÇ-´óã8G�dG÷¿£!Í÷¯"NÚýÇpD?Oö=ý<?ÝÿH;2¸Þß2 ZÆúK~hÏþ þ7´¿t@GËÏõÐd6þßµëÿÞ¿Õÿ¼3öÿô¸æÿ>äð= «À.ûaÈþ=Ê?Ï¿¯*Zv3ÞÑÐÞ¨ÍøkBÁõ*À;ôï5mçw4dÝg°~½¡j�o÷¯'àìagýÜÿóëþW@ûGçÇüwÄ?@JÄ¿þ ýõÿ¥�ÒÆ;�)³$¢4ä8É8ÿ«ýcGü9í_ ÃzaDû?D;ÞqïhÇû! Nó»! Fæÿ +ö^G÷§ùÝ}ú¿8Íïè¿÷å4Þ qÚ¿¢?þ=DÿüX�2 ñnÓúÝ=þïA@ôø§�ìËßû�àiÿnÓünþuC@êÏõ¢§?{=ùíA@ôõÏ{üö Fùß úüÿbTÿÄèýa=þëA@ôä¯Ñ÷C@ôôgbTþ¬¿ÞC@´öâD7Dïüz£÷§=a½? ¢wþ=aùí¯÷£ú;CûË1Ê¿1jÿZ�qþë7Ĩü[N~=Þþ{½õ÷ ú÷÷{QûÍ NãÝÃòõ"δޮA@Æ»! NãÝíx?Äi~ÄæwC@æw@@ ý{ ´~D@ãݧñ]¢ØíxÄ+|ïØÑüÄ(?(¿Äþë¨ü¬üsH=�¾E¤³Èÿì¤êO¤¿^@ÿ{ ´û¿`úÛ¡?/ É"ÿ1¸¹üð5ýõwе4Z.Ы%î g ÒÀa±B@µÂÐ1,6¤@=PëüXÎ`æ ®_A0ÍB+ &D~Ö¥G?þeüëhÑú¯-qùd�:Zzdxëtò§·d§[ +0CÊá° ú¡9 H~ØÒ× (Ù�« Üe:ÿê6ãXi xßñdEãeúÙv¼n3�^K²þÒ_6@]ú±$QÜÇ]ÆúÉTvë'c-MOóëtDë×[*YÈi~<GKRíüyxCëïêvõI`/èüôTÕuó%Pü*Ðö¤ÈCð9¾íC£3ШÎ@T zÆæ×KÓØÁP< v¼ã Ê$ç ¦@¸ +@.Áµ¤ÃûOèpì?Áù/û¿6r2Ñï0Uf ¿# ¹,(|ÔÀº¸j7Àuýazzõ +ÂÓ y²©>bW@Û,0}ÅQ`Æë>üm0G? ;¨jvÐÈP9ÚbF¨ÂõW0Ò_OFÍà¯8Vÿ:IÜý9º1YÕ äüf¨/ã¯E¼§$jË?z�´Áü5üªú° ÌàIÐ׫À Åà4¿lò +¯ïè©i>l;¿PWnHÿYF>§æÐ½`óB;ä^ðÆËFPõBÛñz.ÀÔÓprÐ ®eã?æ�túêEèIÌkà¿"è@¹äÑÚñúCÈ7£tAû4N" gÒ�( AÕ£ñúS¨"°ÂÐE` "ìðc:!;RºdX£*¬úÁÆýh¨Bu?: td_ðÒ+yãè%h~(:?å60{;¿ÜyÈÆ/Òx^ èç#Ìð +(Ã5¢Òå_w±þÑ+¡þq@1lt#ê(a(ËÔh0=8!º¦)½¥bo Có½24¢©Ä{GÁè dpúý¸ JÞN ! p´ÈðÔ÷ïY�yÖèÏ"º HX6¡UÏÝ6óP.«ú±ÍxºC>óÚúsxÁs±;_Ïe8êþú -ýdv8¿£xÖÏÓ¢ó÷xÁ´~î£ý;àÈFêF4¿þ«>m÷ï@ãçç@ãË"ÿb²æbÎôÈc®ú¶¥¿Nɯ#`.l;^½Bþ×sÉ+¤?N§õ(ÌV¢0 ýAÁ¹Ø§× Þ+¼@¹\õ!6ø 0ñ!Ƽ)@å5µùPêp~ )@ÇkĬ)0ÆñÂ_�®úü3ä?ý5ôÖ¥?æwT 8<Èÿ²°¤ÇPDî0xóË1Z;xghxP~t&ªúxpQÕ_ïáàG ÷Ëóª ?#úëd5þç Ñ ÿȵPù¦E¤ë�¦14ê�¦±×¬ÕLï_³Ò4 é¿ôþ5=Mnh~Ýè§óÀ5ã4¬õçUR¨ßÛA¬zgôs8p # çרæ¿ê/Ví1DKMÆ^S¥Þktæ�¢ù=Ÿ£üWü{¦1ÿÁCòÙ£ücöß(ÿ,ÿ¯Q!ÿ9^£Âó×_£npÿר³È¿ì5ê&ê�Ø!ÿ8^£BúépТßõþ¡ý¤/ÃA&¬ÿä¾õC¥_ªþeµ¸PêëÏ~ºÿþpø3²_tû'úâ"úø÷GZUùe9Lxÿëñ(ÿºý°üë ´?/ó?´$iÈþ\å×ìͨ{ÿ0ÿêOÝÿH~pì ÑÏDûwd 3â?]þk±Ã¿¼V³ÿ¸ÿøWêvèÇáÔUûâjú¶C[5û£û·dâ9ÿ38ô"¿íxÝâÍxzãõøe-äm×/×p³ÿ:ûçhJÿÂ?Ìÿª Ìvÿ2ÿÇ)ñ4Õ ®_÷¿\¿^!ÿêU¬?ìòó?Ã-ù©þ¯[~lüÎOo¨ÑùûûÆëþßé§?Ñù)ñoKÂñºÿ´jëçhHPÿèoA-~×Ѽú¡HXßWQó*\H= 5ª$ðOP kØRØ;ð±Óá`ÌÔà)©�Ë B "Dà_%LÉ2|WÂÄ3°PéxT3² ô@ÅÔÀiëwTÑ"ùsà)¯*ý¢*a!çoÔîù³(_Æ´Ú~þ5ê/½!²ÕÐ>ôÈ»ÈÝÚÑk6jpHþãx¾Hÿ8<¸ÇË(ÕíZ ¬¡Ô¿:ð¬Ýàÿx~rJ^Ðýu@¡ÄB}¦ÐNÄ Ñ´Üjé¦A@!NïÃÒ"VËaLïᨹ&ÓûÇÐ4k9éýcbÃ]Àx=Zp§÷±yK¯ì_o) ᥥ|ié4DÚf~¥Ósý¥¥Óñî{9,z»´tÛûôZ:µãý-NãÝ-ÚñþN§ù-æáù_A½¯z-Nó»[:õéÏ0èü<-´þ^OºÓxGK§ ÷´tÄñ¬¥Ó"qâ_GK§Ä?ßÑÒ)Küßë ßãÄQåï}ûiÿNpÿzjAô÷´tBúÏóÍïiéçw´t +üòNøºÉÏ<ôÉB@£çoEð£üÚ¿'Ï_µûÁûC4KðüfýÁ 4úó"D×ð÷í7ýü8¿^°Búé!¬úëkK¨Qû+müôBH£ö=ãÕ?VDÑ£aAý¥¯ê/GK¡Ò¤04´{ú×BX§ñzK¡xïþÍPÿé- râ9ͯÑgíþ£!¤é/·²Øiÿú+îåÿ¡ýæïI?*Õÿ^{¯ÐI�©ðÚñ:"n°ý¯ï@x�ê>wQ¬hÿzü£ÀY¶ãu +¢hÇëüÀjÇë÷¿½ï?±ßMÿ¯c0Úõüö{@û÷qì`¼<Âýëþ_Dó;Öü)(í#ÓxÚ,ò9ÿ9Hò˨ö +ýxý>Eøü£óÿöïñt~½T§ñzü`û×1�|~Üÿü§?bØþw<bØ5ýÏK8àùéEä¤îÿD?Ï#¤"ä?ý�Ö_:ý_²ËóûÇJ8zúúï3¼?ôø¶ßôG�ßÁØ~þCºÿüÕ/Ä×ø. +âÛ-ÌØzwàá®@v¤�UôÐsTÑOÚÎqÔ ë,T@þ�ÓýCLGÉ ÑÏáÀcÌ£X¡u´Ô"ýq�½:àEð¾½âã¤îCèééèÿ±WHÖÓ9. +\n(íxýU ÆËüg(§ñþèpàúyD׿Áýë %ðr¯¿")5Èíx +Á +Æë¯Hâæ×õouà;ûç |íüù+þö¯¿"|y×ã�ë×_W°§ùu~Fó;^Ìÿ¯H +¹_~¾ÃÀóÓ_`ýåpÀ!ÿ:P ýü ôÎþyOf8Þñ +»E¿4¡ù5üäpv@V�Ôö3qÜ¿£'´Æ?ÜFúÛñ"Cý/à¥îOG|ÖÖOø{/`¥Ýßz3Cè?»¿j¼sq�Èz��êG�lCë÷¼âôÓ`vÄzTÚáý/ÛG\±?99¤¿ÇÒ_÷_ ý¤@äªâP|NP;ÀÓ ýc l¨¿ôä¢þâ(�ðüähí'>>ßÒÀû?cûK¸?E/þ»&z(xq¾×w¼Â_ÿ4{Q$NìsÇ_ÝyzÃf/0NôãGG[Û?Y¿éÿÁõ×xwýïQôNëwà ÷æç0诣�ýÙY?GÐøÎ´ùéþ3<?G/±¬0D¥øä·ãeû1Býå@14ýÝ=?2ê/Ç5Iãy;?ÿºiúûÏüçÎüÜòã÷;òÇýçøÇá?¯ÿsÿÊþ;BþÑÆ?|<¼?Äìü§±N`YwËýy;HüËØªü²ÜðüuÿuU÷ß)@oõ·î¿nýÀýÿúgòw9?ÞlyùÏíþ夵�½Ý¿¿²>b}ûä´õü-Ö_¿{ögö#~4þ¡ØÒO.@ÊXÿèõ3¤¿_àüzýªù?½vÖ}û¡Øû1OCü[ýßf¼®¿kþ¸ï@Ohýr´µ;Í/? þo;^¶ÿõyþíøËù3ù©ùßvÿRþìk3ëã!ïHü®>Àn×/Çï¬u~<ø×"áü²þªþkþ,é§ï?CþÓ÷?ÃùõòyÖÏ@#úéö{\ ÿëù_¨?<ù_4¿ =HòOó÷Z¿ÿV¿ÞcXQÒÅ¢¿±ß_~Ü'Ï<ÿÛ~榧eÒcóòì-*ÉôèròC_i09óuÄ ¼xµøókGAÉ×lHàaB1¯Ã f>�bÙg]PV°D´$8c¯úܦrZ ÍË +Ì9@ bYÁi Ý'O"nFésþhs=Fz +¦~ +IÐ;ÄÊOXHè´!&ûÚB´ÞÂç1æÌç¬T48`] 4$ðfWôhp½^§Pë§² ¸ -áj)+°ÔjO#Up#Ñdq×è }�BÂ+ör"ð/Èf(QHðcá1êJÕúÔ+ÕúƬ§T©8¯ð^@âLiÅÂ4ç ëDÁÍ(+03gXZ[ Øñ1êZy¿y±X3"'bi¬`3=i¼® |�kåIȽhP£ýÃ4âåÊ)EÌʲ4ZÛÖa§BÆ8GÉÞ-'U[yô°VvÂí]×wo}}@h°@KÙlâV>Ð%LW°:ês¢l¡¤íæÕV_ßõiz:Ë_?ð:Ø´O/÷ó$²V®õò°o÷d!O7¯¶°,Èf^Ñe¤Õºnæe¬Öu}±Z×ͼHçÞ1&h':¶D×òAÆÇ(ÔÒØ°ÇVͼ<fÆ<ã-Ì¢·\JùÀ£8he"+F$çÔJ£Ò&¡$½ ¬$¡4(sû¡ÄòN¸ÞLó%gàQ×ÁÕV G²O¤Ñ¢y+üPo+ØÕà�D V:}�¤Æ1+náÊÊ4¶âSÐCad$G@r¬ìà}ìâ +ºÑ¼Ód|DóÐ1ÊZ¹ãN§ ÇҬƵÇÔw¶"× ´Þð 2Æå{XßöøcJïLh®="òXZV Eó >pDófÈÊhFO4jå+ÐXÚéz7R>X®§ðÂ�¨Q!|¦üý.D¤ÂÕ:½#4Ø0+ËKE½X¬¥(Î$º¿cYCaÑܾ¾V&ç¯w`Ñ<¨®ÒÈqâ)P÷?È&ÙB4p$#¶Òd¥Z£yýÛãRI=¤ñm0qb"j#ÙQëà # DeÈʺ8§oAÎ7¦YTª3feF¥ÏH,(ÚÊ<dÄÒÖj$PíÄ´b¥ªë ÓE'^£yS)f.ÅÀ§ë]2¶*é+NÂ÷*×ÚÈ!Ñ`é©«ÛgU S}PýÆ©cð*MÝfå`ÊÔaeê¹+> ',¥§®ZÇú 1u¯wæöem4³ãSÐ MKNF MKöø²P߸ªÇoçÚ^gêÜÎÔÔõ$M7 ©VôHmN·sLPôÛ¹ôTeåOA÷gQpÇs¢î;/ðbqøÎ¦î;RÝéjÓ}g+#i? ×ÄM¤/#Épz j +÷áüÆÑ¥ú£¬\_|öXûøjÓS¦aUqDuY:< «0Q%áSõAÕÕoìZë¹@ïh 4_2·ñ(¹æNFÝñ\ 'êqÕk54{ú`ò ³òíG&¥"ÊJ(ð)8¬BÔʼ^,Waâ5ØÄqÔ`ÒHSç^ï(IC>@ª,LYµiýAÄ| {,Ù¢y= Ò + ätïj«xÌ£W[æDЫÑí£+ ZY/¥ÁZÙQ ´bCóBc±° µräXB¹ÞOÐ )N<@xh+ØÐZg¬>pÕÊÅéêñê/lÏßey¶·>ª�¾?nXÁ]Û^TíhQ&di�Þgc\7ô«}@q§p=F ++@ZðÁ.ò+ò<Þ8æÖ)ò¼¯HV,|Ð#ÐHç-Ø´ M°PÊJæy0ÙBñr +W"Ú¨1^u"ku5,ÖkúÌz FÊ0ÑøAZÑ®ñ ++qÃZ9Ê8AXÔ"Îøb¹IcóMi·Ò¸@ ¢IãqÕÆ¯+(ËCVP2ç¾sÆuQ¥X/ªÐäçG(Lbe*L;ÇÏÊÊ7¾/âè^,4ñÛõ{þINÐÈB[Àž©^,ñ}±/}�1!µîÆ#wK }X*[ÒhMÀO+ØAz�Û:°÷,ÐPØÃÜBKDÁg*0^S9 v^¿ãò ÿëÇo?ü"|ÿëÛCtãÿê~üýCÒsÜ_×Çßüúãïþ÷?~÷Û_ýô¿þôÿúO¿øøÓ_þøëÿÿ«~ýñÿýñ¯ÿþóo÷»_þݯ~ù÷¿øüø÷ßþô~úËÏÿðñþÓ?þðÃßþö·ÏóÛ¿~þá§øeXÿúËüáÿýð§¿ã>óóï÷÷?þßoÿüãcuÿTÁ� +endstream +endobj +205 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 621 0 R +/Name /Im194 +/Width 37 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû/àÃÿúÇÿþ?üÎß ßðý�`øA"ñÿùûBU¨~¢�£d.Ö +endstream +endobj +206 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 622 0 R +/Name /Im195 +/Width 21 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃÀÿ¿AýóÆ@ôñ�3þaª(�^½æ +endstream +endobj +207 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 623 0 R +/Name /Im196 +/Width 22 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûøÏ0g|Àßx�Ø7Ðóæç@ÄøþQ ÕO�®ç +endstream +endobj +208 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 624 0 R +/Name /Im197 +/Width 14 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x)�ÖÿØ?øpxà8à8ð�ÿàðøü�|ààðø8ÿðÏÀ~Ûè +endstream +endobj +209 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 625 0 R +/Name /Im198 +/Width 17 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÁÀÿAÞÁΡäþð0üa@A5uÌ vÌ òì ÅÌ? ê&�ãbà +endstream +endobj +210 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 626 0 R +/Name /Im199 +/Width 17 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûWÃðï?Ãÿû òóÁAA;úÿ ê'��Þ± +endstream +endobj +211 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 627 0 R +/Name /Im200 +/Width 23 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÁÀü½¹M¹Ç¹§yFóÀèÁÆ Ä| ÿ í1ùøTÕO�¥!Å +endstream +endobj +212 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 628 0 R +/Name /Im201 +/Width 25 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]ȱ 0á_FL)he/ؤpàºÃdǰõIQ;v¬JÀÉC2ÝR#fGìü#ÓïUi]N4¬ôg ;¡#ò?áQ¶óR\v¬t +endstream +endobj +213 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 629 0 R +/Name /Im202 +/Width 13 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc(`øHýû +° âGÅ?Ô°gàUmÃ�Z, +endstream +endobj +214 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 630 0 R +/Name /Im203 +/Width 25 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÃÀðÿó?ì¸á?×`àÿ@u0M®ÿü¿%eæH�ñw.À +endstream +endobj +215 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 631 0 R +/Name /Im204 +/Width 21 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÁ ÿÁ^¾Áȱàa?ÀüÿüÿöíêØü#þuò?ìÿàøCT¨~¢8�Úáû +endstream +endobj +216 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 632 0 R +/Name /Im205 +/Width 21 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþøÿÿ;ù +þþ 5ü dÃÏ`'Ï ÿÁøCý : ÿÿýÿ?>0T@PÃ;æòÿ0ÿc®(�zÈ!n +endstream +endobj +217 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 633 0 R +/Name /Im206 +/Width 21 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°?Àðÿ�óóìíØÙð3££ÿÿASª?ÿDeæ�A "Z +endstream +endobj +218 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 634 0 R +/Name /Im207 +/Width 24 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏÀðäq!ùòõä~oøBøÐÿçÿ!HB¶~4�gä +endstream +endobj +219 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 635 0 R +/Name /Im208 +/Width 31 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃÿÿÿAø�ÿùüØ?ð?`þÁÿÿð?`á0Z^ ³äÌØñA^¦n¶*�Ã&? +endstream +endobj +220 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 636 0 R +/Name /Im209 +/Width 23 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûoàÿÿÿþg�¢?ò5òu¨$ÕðCþàùÿäíäÑÿP$.U?Q�[á +endstream +endobj +221 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 637 0 R +/Name /Im210 +/Width 14 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcg`C~0g°ÿóåÐ òKð`~À'U?S�| +Ú +endstream +endobj +222 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 638 0 R +/Name /Im211 +/Width 22 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xáo°·?^ð ýÀã ÄÎ�B| ¹E¹ØedØ%,?H0>ª( �¶P +endstream +endobj +223 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 639 0 R +/Name /Im212 +/Width 34 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xá?ðÁ^þñtr>ô>ã*D`g(|dP Æ`D!h°`n°g`lcPª¨�&@ +endstream +endobj +224 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 640 0 R +/Name /Im213 +/Width 25 +/Height 2 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿà dªíR��G= +endstream +endobj +225 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 641 0 R +/Name /Im214 +/Width 14 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x?`ÿ BÁ¡¡áÿþ@ÚÁÆÁæÍúòøë' �U +endstream +endobj +226 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 642 0 R +/Name /Im215 +/Width 14 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcxÀÌØð=y ñÀàAÁþÿùÿá²ÿaÿÃ'\?I�î4. +endstream +endobj +227 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 643 0 R +/Name /Im216 +/Width 11 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xg°o(<Px@ñ�c?ã<xðð@}=·@}??�å¹ +endstream +endobj +228 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 644 0 R +/Name /Im217 +/Width 12 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿ~bà Jñi¼��h + +endstream +endobj +229 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 645 0 R +/Name /Im218 +/Width 23 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨©aþÿÿ<~v8úÿÿ!`¢ÿòH\¼a(�£¦ +endstream +endobj +230 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 646 0 R +/Name /Im219 +/Width 11 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcn`BþùéãâÇ ÿüÀÜ�òäpÔ÷ó�ýá +endstream +endobj +231 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 647 0 R +/Name /Im220 +/Width 15 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã? ÿÁ ¢Âl*>°?`�¤mä +ä~ M ýþü¢õS� Ô +endstream +endobj +232 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 648 0 R +/Name /Im221 +/Width 4 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKøð!>|(00(HxàÀ"RÛË�wxÍ +endstream +endobj +233 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 649 0 R +/Name /Im222 +/Width 15 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xK`¨ÿH8`ÀÀp±±¹ùá_¬nª�Ðî +endstream +endobj +234 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 650 0 R +/Name /Im223 +/Width 15 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc(`øÀðñóö¶¾ÿÿýÿÇP�ÌÿÿñÖO�·Ñ +endstream +endobj +235 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 651 0 R +/Name /Im224 +/Width 23 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÇÁüûÁ|2@ôýU0T�HeP=ûÌÿ0üç¯&�E +endstream +endobj +236 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 420 0 R >> /XObject << /Im74 81 0 R /Im39 46 0 R /Im44 51 0 R /Im52 59 0 R /Im50 57 0 R /Im50 57 0 R /Im58 65 0 R /Im43 50 0 R /Im46 53 0 R /Im71 78 0 R /Im58 65 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im59 66 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im45 52 0 R /Im69 76 0 R /Im47 54 0 R /Im66 73 0 R /Im52 59 0 R /Im43 50 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im171 180 0 R /Im151 160 0 R /Im146 153 0 R /Im157 166 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im40 47 0 R /Im42 49 0 R /Im41 48 0 R /Im42 49 0 R /Im59 66 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im59 66 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im47 54 0 R /Im43 50 0 R /Im59 66 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im71 78 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im151 160 0 R /Im173 182 0 R /Im157 166 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im40 47 0 R /Im42 49 0 R /Im41 48 0 R /Im42 49 0 R /Im59 66 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im59 66 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im70 77 0 R /Im57 64 0 R /Im40 47 0 R /Im44 51 0 R /Im55 62 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im68 75 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im57 64 0 R /Im58 65 0 R /Im44 51 0 R /Im45 52 0 R /Im67 74 0 R /Im58 65 0 R /Im44 51 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im42 49 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im58 65 0 R /Im45 52 0 R /Im43 50 0 R /Im52 59 0 R /Im42 49 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im71 78 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im59 66 0 R /Im47 54 0 R /Im42 49 0 R /Im44 51 0 R /Im39 46 0 R /Im47 54 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im41 48 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im59 66 0 R /Im71 78 0 R /Im47 54 0 R /Im43 50 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im52 59 0 R /Im39 46 0 R /Im59 66 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im71 78 0 R /Im40 47 0 R /Im39 46 0 R /Im69 76 0 R /Im55 62 0 R /Im40 47 0 R /Im67 74 0 R /Im55 62 0 R /Im67 74 0 R /Im58 65 0 R /Im44 51 0 R /Im42 49 0 R /Im42 49 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im200 211 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im47 54 0 R /Im43 50 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im201 212 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im58 65 0 R /Im59 66 0 R /Im202 213 0 R /Im52 59 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im59 66 0 R /Im68 75 0 R /Im182 191 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im41 48 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im53 60 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im50 57 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im48 55 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im41 48 0 R /Im44 51 0 R /Im68 75 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im69 76 0 R /Im42 49 0 R /Im55 62 0 R /Im58 65 0 R /Im41 48 0 R /Im42 49 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im42 49 0 R /Im59 66 0 R /Im44 51 0 R /Im40 47 0 R /Im73 80 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im57 64 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im68 75 0 R /Im146 153 0 R /Im68 75 0 R /Im62 69 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im69 76 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im47 54 0 R /Im52 59 0 R /Im45 52 0 R /Im58 65 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im68 75 0 R /Im173 182 0 R /Im68 75 0 R /Im62 69 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im69 76 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im58 65 0 R /Im57 64 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im71 78 0 R /Im69 76 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im47 54 0 R /Im52 59 0 R /Im45 52 0 R /Im197 208 0 R /Im198 209 0 R /Im195 206 0 R /Im199 210 0 R /Im184 193 0 R /Im68 75 0 R /Im162 171 0 R /Im68 75 0 R /Im62 69 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im69 76 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im58 65 0 R /Im57 64 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im71 78 0 R /Im69 76 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im47 54 0 R /Im52 59 0 R /Im45 52 0 R /Im194 205 0 R /Im195 206 0 R /Im196 207 0 R /Im184 193 0 R /Im68 75 0 R /Im174 183 0 R /Im68 75 0 R /Im62 69 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im69 76 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im58 65 0 R /Im57 64 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im71 78 0 R /Im69 76 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im47 54 0 R /Im52 59 0 R /Im45 52 0 R /Im194 205 0 R /Im195 206 0 R /Im196 207 0 R /Im184 193 0 R /Im71 78 0 R /Im47 54 0 R /Im39 46 0 R /Im57 64 0 R /Im46 53 0 R /Im52 59 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im40 47 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im58 65 0 R /Im210 221 0 R /Im199 210 0 R /Im225 238 0 R /Im184 193 0 R /Im196 207 0 R /Im204 215 0 R /Im226 239 0 R /Im225 238 0 R /Im184 193 0 R /Im68 75 0 R /Im175 184 0 R /Im68 75 0 R /Im62 69 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im69 76 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im58 65 0 R /Im57 64 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im71 78 0 R /Im69 76 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im47 54 0 R /Im52 59 0 R /Im45 52 0 R /Im194 205 0 R /Im195 206 0 R /Im196 207 0 R /Im184 193 0 R /Im71 78 0 R /Im47 54 0 R /Im39 46 0 R /Im57 64 0 R /Im46 53 0 R /Im52 59 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im40 47 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im58 65 0 R /Im227 240 0 R /Im195 206 0 R /Im225 238 0 R /Im228 241 0 R /Im229 242 0 R /Im196 207 0 R /Im204 215 0 R /Im226 239 0 R /Im225 238 0 R /Im184 193 0 R /Im68 75 0 R /Im154 163 0 R /Im68 75 0 R /Im62 69 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im69 76 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im58 65 0 R /Im57 64 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im71 78 0 R /Im69 76 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im197 208 0 R /Im198 209 0 R /Im195 206 0 R /Im199 210 0 R /Im184 193 0 R /Im71 78 0 R /Im52 59 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im51 58 0 R /Im47 54 0 R /Im45 52 0 R /Im55 62 0 R /Im40 47 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im58 65 0 R /Im210 221 0 R /Im199 210 0 R /Im225 238 0 R /Im184 193 0 R /Im196 207 0 R /Im204 215 0 R /Im226 239 0 R /Im225 238 0 R /Im184 193 0 R /Im47 54 0 R /Im43 50 0 R /Im58 65 0 R /Im227 240 0 R /Im195 206 0 R /Im225 238 0 R /Im228 241 0 R /Im229 242 0 R /Im196 207 0 R /Im204 215 0 R /Im226 239 0 R /Im225 238 0 R /Im184 193 0 R /Im71 78 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im194 205 0 R /Im195 206 0 R /Im196 207 0 R /Im184 193 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im146 153 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im154 163 0 R /Im58 65 0 R /Im43 50 0 R /Im42 49 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im42 49 0 R /Im59 66 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im67 74 0 R /Im47 54 0 R /Im50 57 0 R /Im66 73 0 R /Im57 64 0 R /Im42 49 0 R /Im45 52 0 R /Im42 49 0 R /Im39 46 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im230 243 0 R /Im44 51 0 R /Im58 65 0 R /Im76 83 0 R /Im42 49 0 R /Im68 75 0 R /Im231 244 0 R /Im232 245 0 R /Im233 246 0 R /Im181 190 0 R /Im88 95 0 R /Im85 92 0 R /Im179 188 0 R /Im89 96 0 R /Im88 95 0 R /Im93 100 0 R /Im91 98 0 R /Im94 101 0 R /Im82 89 0 R /Im179 188 0 R /Im91 98 0 R /Im234 247 0 R /Im92 99 0 R /Im91 98 0 R /Im85 92 0 R /Im92 99 0 R /Im178 187 0 R /Im179 188 0 R /Im91 98 0 R /Im179 188 0 R /Im83 90 0 R /Im93 100 0 R /Im92 99 0 R /Im87 94 0 R /Im91 98 0 R /Im92 99 0 R /Im86 93 0 R /Im87 94 0 R /Im88 95 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im44 51 0 R /Im42 49 0 R /Im45 52 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im59 66 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im40 47 0 R /Im44 51 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im48 55 0 R /Im146 153 0 R /Im169 178 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im42 49 0 R /Im67 74 0 R /Im52 59 0 R /Im45 52 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im235 248 0 R /Im236 249 0 R /Im237 250 0 R /Im151 160 0 R /Im95 102 0 R /Im55 62 0 R /Im40 47 0 R /Im45 52 0 R /Im42 49 0 R /Im70 77 0 R /Im45 52 0 R /Im47 54 0 R /Im70 77 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im157 166 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im45 52 0 R /Im58 65 0 R /Im76 83 0 R /Im42 49 0 R /Im39 46 0 R /Im48 55 0 R /Im43 50 0 R /Im47 54 0 R /Im50 57 0 R /Im58 65 0 R /Im50 57 0 R /Im40 47 0 R /Im59 66 0 R /Im59 66 0 R /Im57 64 0 R /Im42 49 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im173 182 0 R /Im146 153 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im42 49 0 R /Im67 74 0 R /Im52 59 0 R /Im45 52 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im235 248 0 R /Im236 249 0 R /Im237 250 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im70 77 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im45 52 0 R /Im58 65 0 R /Im76 83 0 R /Im42 49 0 R /Im39 46 0 R /Im48 55 0 R /Im43 50 0 R /Im47 54 0 R /Im50 57 0 R /Im58 65 0 R /Im39 46 0 R /Im42 49 0 R /Im39 46 0 R /Im59 66 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im151 160 0 R /Im44 51 0 R /Im42 49 0 R /Im42 49 0 R /Im60 67 0 R /Im66 73 0 R /Im66 73 0 R /Im42 49 0 R /Im39 46 0 R /Im59 66 0 R /Im40 47 0 R /Im73 80 0 R /Im157 166 0 R /Im68 75 0 R /Im61 68 0 R /Im47 54 0 R /Im45 52 0 R /Im55 62 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im44 51 0 R /Im58 65 0 R /Im43 50 0 R /Im42 49 0 R /Im66 73 0 R /Im57 64 0 R /Im58 65 0 R /Im46 53 0 R /Im42 49 0 R /Im59 66 0 R /Im51 58 0 R /Im46 53 0 R /Im55 62 0 R /Im52 59 0 R /Im50 57 0 R /Im58 65 0 R /Im39 46 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im45 52 0 R /Im44 51 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im146 153 0 R /Im169 178 0 R /Im50 57 0 R /Im40 47 0 R /Im59 66 0 R /Im59 66 0 R /Im57 64 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im55 62 0 R /Im58 65 0 R /Im41 48 0 R /Im42 49 0 R /Im51 58 0 R /Im42 49 0 R /Im42 49 0 R /Im39 46 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im59 66 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im155 164 0 R /Im66 73 0 R /Im57 64 0 R /Im46 53 0 R /Im71 78 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im173 182 0 R /Im146 153 0 R /Im42 49 0 R /Im39 46 0 R /Im59 66 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im146 153 0 R /Im167 176 0 R /Im66 73 0 R /Im57 64 0 R /Im46 53 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im66 73 0 R /Im57 64 0 R /Im58 65 0 R /Im67 74 0 R /Im42 49 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im50 57 0 R /Im42 49 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im59 66 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im58 65 0 R /Im57 64 0 R /Im57 64 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im40 47 0 R /Im44 51 0 R /Im236 249 0 R /Im238 251 0 R /Im239 252 0 R /Im240 253 0 R /Im241 254 0 R /Im242 255 0 R /Im243 256 0 R /Im71 78 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im50 57 0 R /Im42 49 0 R /Im69 76 0 R /Im55 62 0 R /Im40 47 0 R /Im67 74 0 R /Im55 62 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im44 51 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im151 160 0 R /Im61 68 0 R /Im43 50 0 R /Im42 49 0 R /Im52 59 0 R /Im76 83 0 R /Im42 49 0 R /Im43 50 0 R /Im21 28 0 R /Im30 37 0 R /Im33 40 0 R /Im150 159 0 R /Im17 24 0 R /Im71 78 0 R /Im146 153 0 R /Im153 162 0 R /Im153 162 0 R /Im174 183 0 R /Im157 166 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im50 57 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im40 47 0 R /Im50 57 0 R /Im66 73 0 R /Im57 64 0 R /Im42 49 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im42 49 0 R /Im59 66 0 R /Im58 65 0 R /Im44 51 0 R /Im58 65 0 R /Im45 52 0 R /Im69 76 0 R /Im47 54 0 R /Im70 77 0 R /Im57 64 0 R /Im42 49 0 R /Im41 48 0 R /Im42 49 0 R /Im57 64 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im71 78 0 R /Im66 73 0 R /Im47 54 0 R /Im45 52 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im40 47 0 R /Im58 65 0 R /Im57 64 0 R /Im57 64 0 R /Im46 53 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im69 76 0 R /Im47 54 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im68 75 0 R /Im38 45 0 R /Im66 73 0 R /Im47 54 0 R /Im39 46 0 R /Im58 65 0 R /Im67 74 0 R /Im47 54 0 R /Im57 64 0 R /Im57 64 0 R /Im40 47 0 R /Im44 51 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im39 46 0 R /Im42 49 0 R /Im69 76 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im40 47 0 R /Im44 51 0 R /Im58 65 0 R /Im57 64 0 R /Im69 76 0 R /Im58 65 0 R /Im46 53 0 R /Im44 51 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im71 78 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im69 76 0 R /Im43 50 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im57 64 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im40 47 0 R /Im50 57 0 R /Im66 73 0 R /Im47 54 0 R /Im43 50 0 R /Im45 52 0 R /Im58 65 0 R /Im39 46 0 R /Im45 52 0 R /Im47 54 0 R /Im39 46 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im66 73 0 R /Im43 50 0 R /Im42 49 0 R /Im41 48 0 R /Im40 47 0 R /Im47 54 0 R /Im52 59 0 R /Im44 51 0 R /Im45 52 0 R /Im69 76 0 R /Im47 54 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im151 160 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im50 57 0 R /Im44 51 0 R /Im47 54 0 R /Im48 55 0 R /Im39 46 0 R /Im52 59 0 R /Im50 57 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im39 46 0 R /Im47 54 0 R /Im59 66 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im59 66 0 R /Im157 166 0 R /Im68 75 0 R /Im60 67 0 R /Im57 64 0 R /Im57 64 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im55 62 0 R /Im58 65 0 R /Im41 48 0 R /Im42 49 0 R /Im51 58 0 R /Im42 49 0 R /Im42 49 0 R /Im39 46 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im42 49 0 R /Im59 66 0 R /Im69 76 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im44 51 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im42 49 0 R /Im44 51 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im44 51 0 R /Im71 78 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im53 60 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im48 55 0 R /Im43 50 0 R /Im47 54 0 R /Im50 57 0 R /Im169 178 0 R /Im161 170 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im40 47 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im173 182 0 R /Im175 184 0 R /Im154 163 0 R /Im161 170 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im40 47 0 R /Im42 49 0 R /Im44 51 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im58 65 0 R /Im57 64 0 R /Im53 60 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im50 57 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im59 66 0 R /Im40 47 0 R /Im44 51 0 R /Im50 57 0 R /Im40 47 0 R /Im39 46 0 R /Im40 47 0 R /Im50 57 0 R /Im58 65 0 R /Im57 64 0 R /Im70 77 0 R /Im69 76 0 R /Im40 47 0 R /Im39 46 0 R /Im59 66 0 R /Im47 54 0 R /Im69 76 0 R /Im71 78 0 R /Im40 47 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im70 77 0 R /Im59 66 0 R /Im42 49 0 R /Im42 49 0 R /Im66 73 0 R /Im42 49 0 R /Im39 46 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im200 211 0 R /Im70 77 0 R /Im201 212 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im68 75 0 R /Im60 67 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im50 57 0 R /Im42 49 0 R /Im58 65 0 R /Im44 51 0 R /Im52 59 0 R /Im43 50 0 R /Im42 49 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im72 79 0 R /Im52 59 0 R /Im58 65 0 R /Im39 46 0 R /Im45 52 0 R /Im40 47 0 R /Im70 77 0 R /Im48 55 0 R /Im46 53 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im75 82 0 R /Im47 54 0 R /Im43 50 0 R /Im45 52 0 R /Im69 76 0 R /Im42 49 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im39 46 0 R /Im52 59 0 R /Im50 57 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im33 40 0 R /Im150 159 0 R /Im150 159 0 R /Im39 46 0 R /Im47 54 0 R /Im59 66 0 R /Im42 49 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im41 48 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im53 60 0 R /Im58 65 0 R /Im45 52 0 R /Im42 49 0 R /Im59 66 0 R /Im71 78 0 R /Im40 47 0 R /Im68 75 0 R /Im42 49 0 R /Im68 75 0 R /Im71 78 0 R /Im44 51 0 R /Im52 59 0 R /Im50 57 0 R /Im50 57 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im52 59 0 R /Im66 73 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im47 54 0 R /Im43 50 0 R /Im39 46 0 R /Im47 54 0 R /Im59 66 0 R /Im42 49 0 R /Im44 51 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im57 64 0 R /Im42 49 0 R /Im58 65 0 R /Im48 55 0 R /Im39 46 0 R /Im47 54 0 R /Im59 66 0 R /Im42 49 0 R /Im44 51 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im39 46 0 R /Im52 59 0 R /Im50 57 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im39 46 0 R /Im47 54 0 R /Im59 66 0 R /Im42 49 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im182 191 0 R /Im40 47 0 R /Im53 60 0 R /Im52 59 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im146 153 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im173 182 0 R /Im174 183 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 237 0 R +>> +endobj +237 0 obj +<< +/Length 652 0 R +/Filter /FlateDecode +>> +stream +x¥]MÓõ¶mÝ¿¿âY6^¥,;ifºé$/³i§qkçÓOÿ}¯î%äâp@ÇNüqI�/þíËo?þö%|üôåo_âc]§é1MòÏåQâôÒüKþX¶å1ÅüñÍ_¾ú·JþøÕ_¾üö}~¬SKéE¿ú´éÓ#DH}æ×# ã¾<ÓD?ÑôËBÑçǼ@úýJó¯lÉ^ÿ¹ïü¤_S¥Ï0ôË><âÿï µ<J>Ó@ÿÆ}?ß}ÿqJèûgqBçÏð¯Ò@í_ßüðú#F*ÿâÎéÎÿ½X?¡ïÏ ÞBßßï?>r·ÿíy"ÏoxÑè;ýSå'sò£¯¿Pë«üËP;þ©ò3#ýéåGýþÑ÷߯Êÿì7#ÿñîìÊÿ²þÏ@þÌ¿Êow¨ëoü©ò¿êï>Muÿië§Ó?) õ{þiç´ÿÀþÒÇøäë_ÐþÓö+%x~Ýý¡é_Êþ-ýí×ÒñOýþ®Oغÿy#ïE~ä:ä·Àýû[ÙÿáÝiåø§îEßïпÞ<ÿ6xÿuë÷þÐÿ÷>ô`o@czÊt~Z ÷/¤GZ_è¯þÞ&OÛc[»-ô>¬¾ §§~Ý)jZ±nQls(x±X +2¶B´dl :-R×ÏÐ�·¨Â?i/>C¬0¾ÅóÌyqê÷Ïj^T^ PÖ^çQtw¨(X¢k6P0¶¢An±ÝB +ùiéiþ ®O{a oùiéi/0ÞÒóQ9¿ÿ´þR¨õUþmðO¿°.hÿ´¶ñöÃåG±ÎþhúsDõ'íþÄåÖáúàüµ(?ÿÉ?ç +çäOùþ®Oë_Ñúüý²?jaAòÛGúó{»`GàiÖåà_·-¸G^>à¢Q¼ðöüø(Üî/ôýülPAFñ@wÿf@°àÞ¯.l³P:¶°Õ_cNp +Pi'8EÈDÚ N* Ã;Á)qFPÀKvSü§HY'Fù~ÒÒ8Í÷¸#µ þ¡K@EÜs¢t¢pk¡(¿|(bCFÔ!ÿt"h':Oñ'øý´ÞÎØ £Ï?Ç{ò#+¿ØÎO'ì}å/ç{ö7ßtÂòÌé¯ÄX ¢S)@>$(²ÎzÇѨù±åà ©4§J_âe*F§_½DüµôT*ôµ¾±ÚýÓ©À0OÔþÍRwÂÜO9¸rÂ5ù=JÚýÓþ[(ÿ¼ÿÊÖ§ý£¡¥çKÖí"(ç¿%JþÕóßÐ÷£ûG¡S ù§ð }?²ßøþ}¨©h¹?å/Ftþ¼üÅ¿º_ûR§Rd¤ÿ H¡ìDÿß°_êùÍPÿøR¹öSáßí?_J± ýëíoÄxÿI,Ã7ô%ÿ¯ JAòÇâ¥ÆþÕóÛ ÿxýÛ¸ûSÕ¿ ê?öRÎþ*øsBëó¥xG)©ZüÚGüÉ/ÂÊ÷Ç߸ï×ã'ýÕã'÷ü£bP~ÓÌù/*ÿhÿyþAÿÍ?(Ðàãòú¿r÷ÿåÿï_GüãÞý'¨|ôÿEÞÿø ä]¡ýãKsâüuÿÝ¿ø÷ÿ3¶|ößhüç{øi/¸2´þaû×ÑkI¬\j!Sãÿ;Já%ÿPyÞ$Öÿhèù$VÈp}Ú3¢wĤ¦]Hü¬]ÆoAJr<ßVv}úþ+Ü?ßöøÅKZzúþ¿íÌúzF¡ø§â)Þÿ}/ÿz·=þ(ùÕ[Aàú<~ö?Jü!P߯·b,·ìÇÑ +aص�Û`µV¨¿|ÍíøÉ?åüV$ÿ\)xSÑòÿþ ¿£Þ?<þ8þëøê¯£ê/?ÿ<~ÿút ü©àïÄ鯺>ôùÿ×'âoîñÿ×øÈÿSð÷ÌÞFüÀ8?U~ +'?*ÿVÄÿ^ÿÍú Áû?Aÿ¥÷ÿuz$ÿ¼ÿ¡ÿü?xòø+ ý;ðWÀsà¯õÇ_³¿*þJÒ?õû3ú~>¡ýèåGkå:ðwk?yù[ þÒþûï×Ðùñö?ôýü'þkÞâßAê÷zG+¾Cï(¢&Ö EĽÞÄðæûÇR×Òóø_êïZþ;ê"É? ò¯Xáùóß¿¢ów|ÿùß}ÿüü�ô»eP@?À_`Ç,CÕ²\`-=@È@DKïïàcÁ ��gÎ�.(ßÿ\__´'ðËÞË'à)Ö´�bàoCàu¾'ÀØð¼AæÈÀ#tdà&îU4@ QþÀOK/<È qtÃ'$Ä]af +ß´Gàï?IOêZ°'ÕiX¯X>Ñ6áAb Í8r�méé½õ¥-½£0°âC/ðûùFÜ~¿Ã=�Ç8®ÏÈ8ÿJ ¯Ôp=±ôU ¯^ÃøÇçÀÃÏÏïÉäLùÃü;q þé5¨ú~=ùï¨A ü§ÇÙ.h»>á£ðAý;\ÐAûuÓ2äÇtaóÓqáþbÔ ö_©¡^ þtú«Aûw4¯Üý¥{Àó-ûÔ ò§®¿Aù%fÉ<PãüUdªãpúÞÑ=XxÿÑ$AûÁ#=ÔË@RDüçÈáç¯ä°ý¡õo£iFûçõïÈáêßÑÃ:¨ ÚÁqd+Òß>÷ÀÂýó�bCö¯È§?:ý=ûkÿp ÓÑúW5LzÓ?µú(¬õ FJÿ4ýÉ ÚOG*¼ÿèA.GhÐÿ:r@òô°¶ëÓ=ìÛº-?ñã¿=½×/¿öS,ÌP¸¥¿ç^ë7ôýúj ¡¸'¨çp&jÿ*þá÷;â+øþþüôqجÏË¢ñýú ¬èù¨£3XüÔöûùÒñ³UÎCßïÈAÿlò_ñ¿'îûõAZp}ZÿTCÏç üÞîßßõ÷ÇmÚø¼_ø£ý~ÿ5þôô÷YóÚ@yðï?ÙØ÷ ´?�Ðù/oú'Þ#°óº¼r9O×&Îv}Gy5@-½gFëóX-â<ñàP8Oû§ç Ñ÷¼�|_ §ïç8Õ?Ñó¸ ?�J�$Àõù\5 §õù"ÞÈ~¿6É_uý¶Ö×pÿü{ +?É:P-½ã= Úþ= Yø Àô�"\¯(èûC�J¾§¿É¿cÀ:QëëÌtOWd=MôþèMèH)ì Úº2 øÏ¿§ MðÖý«PÃJùÚÄÝyùKãÀôÎt`ë ÌrÓY®h:0˵�ÌrmÀM¦åßY®/pÓi×÷;0Ë ^,`80Æ÷ëEtèü@Düs8�µÄuÿµÅÚ¿Ê¿ùG¬UàÃç_§xZüÓ×/Ôúê8#þyBüã+@$jË6ÊxßÏO¡è°üò»ÊoAµø¯?(Ïw`7±c¬<HdÉÕÅgí_¯A¼g¿¥pTS@òËë¯LÕßýáXyÐȾ¿6!ýq8°ñßáÀÖ +Ë~è]Èâ»ö)Èoÿq¾ìBR3¨Ð~òþKZ¸ûC=ÿõ¢Tüñ4,ÿ+ôø)RØ~û#aùß �ÙÀL8 øt Ñ"V%6! 8e§cLgÁk'óéV:½¿§Ä0õ=Aù3= +3Q`¾óM¯óµ6Q`»¾¶üó£À|mELǬèó=P`³¢ +4¾ßDÆù(ÐØ¿ ù1Q ±¶ô~8zþ þ(ÐXßDyì=P`C?Mù3P`KïG£ò[nÊï:*¿'hðßDíþý(0ßDü(ÐØ¿õ÷@ú{ ÀAý=Pà þ(Ð÷í÷[z? +4ì ÿËDù& +ô_8*ÿê¯þGå þß¿vô?£À>l3AÜéºô'wú`Â5LÄ¥Aõs*ïµ¶³n8³Ã�qñ&lf9@Qn8³Û�q-ÿü Î(Æ7AÑL`¸Ñf² ïqõý:Còãqðü ¿ÄÁów8d�< .Þ;ÿõ×â8ùÓA?Cüó8îütWÀ÷{@ÜMù öËâFåWè9þë ¿Äýqüé }¿Ä pKe ç¨þî9ïèïóï[ú+Ó@,ùÑAg¿tôÇâÿ= ÙOÃöÓâê?8ôýW©å¿pò¯8xÿò ÚOë;@÷ýfÐ�q¸Ä!Òâ"üÄÕ¡±P: É<ª1*Ú dµ¡²!=kCíB?ߣîo¨]Ð:2%>8%/ÿ546%H ¬T½6LR¶ôG%6´¾c QAô|C^ÈÑÒó:I$´ë; +!ÿù$þ©¢> +}¢§å7Nh}äkZNh}º!=$~Âü×E$ÿüLÏÎßÓOåÇе!Û> ÿ}¿Cg¤¿üýç Ú¿*µ!Û?ÿÇ5í£!¶pú¯Êÿ +϶±DµÛ?^7Ⱦ¡yãî=ZHùÓµßïÉôŰÏåtÕO«Üo�³%hÀ@1Ûü( + +;<Îè +>¸äaÊó'tN¨CäeÊÓ'LÀ<? /éDô 1(L\ð0±LTËêël'Cà.)ÌOæSIaé¾ÀÊFåízV6ªÝ?Õ®ïÏFµôþlÔi}w6êÄ?w6ê´w6ê´¾;uú~w6êDïÎFYßoe£¬ó·²QÖþl%?V6ÊÚ¿:Ñ»³QÃç¡þº³QÖúV6êDïÎFµôþl-×Ù¨½;5,¿Ð~ù³Q~ùm³QÿlÔiÿîlTÞÒl%V6ÊÚ¿Õ_ÉFê¯d£FõW²Q£ú+¸%?V6ʾ¿®³Q£ö[²Q'zw6ʲV6Êò¿¬lT«?þlÔ¨ÿ"Ù¨aù/ü[Ù(Û¹ÎF Ë?´þlõýV6ª¥ÈFÀ:ÿ;uú6ÊÒ+5*Ú 6ʲ!V6ªý~6Êa+5zJ6ʾî³Q¶yÊO_æN6*¯éV6ª¥÷g£N뻳Q'zw6ª¥÷g£N뻳Q'zw6Êâ:Ñ»³Q-½?uZßå¿d£,þ[Ù¨ü»³Q'zw6ÊÒ_+eÿu6Ê⿲äÇÊFYû·²QüYÙ¨Qû¡ýóg£FíçÁí§d£FígÄöϵµ²åï:eñßÊFYö£"SÇ@ü±;�5�A\ËF!)êd¤1ò<ßó)Î?�jJ:kAN'µ -ò¤³ +:O:«`9àÐò¤³ÖZKâOg-ñs:kv7Wååzf:«ÙÀ@:k¹6Ef:k¹6f:k3¥G:k±®#µ\_ f:«]ßÎZ®M¹5!ãDïa}¿5!Ã:kBµkB%?¦+lìßq¢wOÈ> Çü³&dXëëé,Ä?ÿÞ?!ÿë 'z÷aù-7å·pöWOg!ýõOÈ8íß=!cÝaÉ5!ÃڿôW&dê¯LÈÕ_1ª¿2!ÃkB}]OȵßRUv¢wOȰì5!Ãò¿¬ þø'dú/2!cXþ¡ÿèaù/êÁ§ÿ÷ö[EÏÜúzÎ`¤cÎ`Ú +{æNp|Ò´RB¨æ#°ÉçS">iDýC'ÔOIb¦¡|JÎð¤HÛ³Hyn4bêùIMq~êú2â|<0cÌ?wX ÿi1¦ã{à%¿sß 5a =O ËÖ§ó)¡V%èù|8Ñ-=O uÌ\KÏçSB}íäDïx.>¡ý;/äù+ nBßï�qâDò£?è{'LÝääGB@ùá(õµ¨Óþýù0ãüÔ|ÔÄúg=÷>üý3_G>iëóù¤é#í#íOZ¡üòù¤é#¿eRþ´ �ü~>í£»IüÇÞÓÝ�zº"Ü# öt7eøtPFàIÍH=é ù.j4¤p¡M*Péh^Z¡!åÐð$V7¬t^4CUv$Veàâùhì_üôtb5ÃÛÜ¡I9ÝÔ¤uÙ¡I Õ¤<¤æùxº×!eðqí]Þ%=JÛõ;zÌø(q¬®]f|$VO?@±E§ ËTÔþ�\k-µo~ Ïm÷±É:¹Tô¨ëÕ3 rïä|Dô|h^=rKµWèÑþ{z]Þt-}ÿ£[9rûÓz[Ñsëü~ Ãïa-Ö |ïê°í¿õzëD}¿VÜVCÏçF\Æíú|n±¾"¢°¿b¾?⼿bÞÒWÌõâ�ôädä¨'çÑöF\ÅÕOÃõr%¦íººG¹PÐQFÌ¥QÁ-ÁRhoY£ÐtÐ ¦æ÷+X +² |¡7´ `ùÏz¯Ph7îÓA7(@G³ç ÿ`?Èÿ ¯?)¢óãC)qò£ÿÝ6Î_ÓߣJÕÐ_5»;#d YÓ?5;<#ûn@eýåÞ äÁ IJ~áÖ7ã î\è¡þ>ô·V¬µ:5¤OÉçµJo�0GdpC.ò úN¿w@1 ÐXÆ.ý�^j}qk@´½b;ÚéSͰÉt8zëB£ÛË&ùí ûÞ½÷$8ôüÄV?¡¬uó#äa$(QÝ%òÚA°hw°R¡ý6#zÂ<ííGðOtÒIAT>aOõǸv? ±`w¤hkÃoK¿Hr{)¶T¹è»#ìcuý8ØCvw3 fN ¸á�¡Ê¨=ú#ØU}'*wL(-©<Ø&ÄDâ2{AÑ!b=Ú»=ÒöÂBí_åàdAgà")¥{Rêô"ú2¹÷ý¸Wt +9®ô3ÃÞ¨§©?EÈ×)Ä(6¨G°rb¬~Àl©G7x>EýýQ*Úm±"ºãª{ܸêÞWméyT qÕ=¿~-7°ÖWãuüÀ¤w´ñ Üÿuϵ¾Õ35Ìÿ?S.ÒÆUOòÃóçÏÿÆ¿Þ3 ÎßVïrÓúñðûù¨TDüGqy\_=,nÙX£"¶þ*ôêyçÇçeâ,ë/cQÕöK¢ºöùk=Sèûù¼L,Pÿù¨fÕ_ª"ýåó2q öÏËlÐ~ÒöKzZzGTrçÏ÷üLÿ|ÏDuíûSëyâäO]?"ûÃßß2¾`ôüSòËW)aû쿯=§Öý£åS.¯¼`KòêæwÓͦ>åÕú®#+®;¬wª�-CÊ=&P¥ézdýCü, R-@-x·,Þñ= Æ·Unÿ+àë?`¨÷1w ¶ÅüñÍÑùVÀÂwÏQ?�æÏ? 06ËæGú±é3¥ÌM¤è3PãR£ý ¾ì>/"µíÆqZۼ˧:o®ûßÛY/ôþ8@\?^iÛI¢÷êÇôÄWûWë{juE»>Ê*û¯ÕÖþõÙ'¢§Ôgè²ýª¡Ô@PLRÓO^Py¨û>È=bpPEòr´ô´'¸O_yKÐ2¤ÁR¡ei¾þJ¯7^RµÆ+$Áé ®O{ÂRàe[¥>*"ùáÓ»òAKϧwcòË#É,ce¾rZßQ-D(ò7Cù§ëSHiµé%Hþúó×# Üúj$ceõWdmÿ}$P§GúËOJS�ûwÔçLðüüå§"ÁÚ¬±_@Wëú A¤¿üù'l?èHÔgÙ߯umAù£\¥>˲úô¸>e^ç'Õ! }èCj(àéB¿Bí Pd#ø/È{ÆÑ£õH~ ëóH~ã$P§G>$ä$ÜJä$<èAí¥ÕV|@çç@òÉÇþïO5!ßìÀä~Fy+<òrH¯Ö( +È E6p¨£CCµ?êDÏãØ:ÃêDOÛ§¹ô¼ µÊ÷´>/ÒàÃÑú<" ="Bí<íï;Ìä¿2~eüð3XWôý<¨ü©q }¿ELhÿ6£Î¯ò¦£ç/ãG¬õÍ|zûýôø©Å0äÅË8~ÿ*ËÜùëùphù8Z\ÞCôv\F²õ::AÏ�úãÀû¼F'¸Ð}&Ò§´ãÁkB:Sô: 7 ßç1!þ9pXà4PÏh/ mÈèaªGiíI:®RkU¡F@þybA©ºÑ-==*AÄJÐ9æPÎP\ÊÏHü ¡Gm°ÌáµÁÒid[0 Gs>¤>9îöÒøçèܸïW1ØÄY@Õ£Ó÷Ó¹¬} Î~í_"yÍþù8P£>´ÀpèCðó>ºÁÑ:íI¹@}¿>Ê/]Sg¨ÿDU»`päð>xÊ1¯b(Þ?0x}ZLuÖ`ðÞ1kC"¹Ó46kC29Æþu¿Ob@-=_.¼¥çgÅ,5 +ÖÐ;fÅnè= kFô|OÜ?îó«ûÞ¯@zC﨩ÛÒ_ÔÓ¾¬©SQX@'èÈ¥Å�4ÈK ]GÁã%Áþù\Ú¢ ТòÈÞ¦w TQ|ß·?.6â¡r xh(~AçïU"$ë¹ð- cÖÜ?ÅÞgôG¯JB»%RþI.ÛàÁ wdâ&¸>}¤�å>9ýÑéá Ng²dèþ¼¾?Aûɯ9Ìz ÿÿJ?#ýsÈÏ<�G&wáì¿zþÞ¿< Á®HÿøÔÒÊé oÊï×§³(;öîÊËÓ½ûã@àÆùõ3ä�2²BØÃ\_ j"-¥Bè´õ{X9k¿¡ïGª¥9ÊÑïAóìü-� àyög(Hr Â÷²¸¡Dh½Zz>2ZO ß]±Z@øi}Ú ò=?°rAüã]hyGc/+h}G9xAôrð7:Ñ;ÊÁZßýµ¾^Îßÿ¥?z98\¸@Zcû¾ol¯£ò#ô=m�÷rðÝ�¶ô Lzà}ÂÐ¥X1s¨¿L4¿¥ ¼]¹ß²¿l¿ßÁíú|O^¶?íq± ö¼l¿RÔøiK 6°j ÙÐù9>NÓ üG7�1Z"Ý�½þ¨ôÞ@tdOÄß¹åQHZÃ-®?§ ×ç[Ó3´À<Dfôý =0ÇùÏp}þüèÁðç_ ýs¤Ñoß:*¿üãcÊÂïyyâì·F·ìÆGzZ{ɳßz~?FÝcýú|UÒðÖý¥¿D Ï2sç¯òFßÏÆÉ3¼?iû#/aÚý/þþ0Gïy s¦wo÷ã®ø¯"Ð:Ñwë«ièüNc·ô £tß*Ä?ý�QHQ`yÏV9ÿ�5k¶Ô ø¢ÏgPw QÓA£g#R`Ð'0©ú O/ü ãN?Щ±JÜ+Úß<XB2aî$Fü´:a®¥wÀ ®ÏÃÀ©UßÒónàäG¿?¡õy7P&ÌÖçsÙi1ªÇƯ²GhúZr üÓ'¼Ò^¿û1|þ ½]ø78aO`ø¨þlðüùwKê\=ÿnÆÎßñnÆä·$Ä?¤?Ú8Îþ¨0¤VÖwäÒü9ªZß1a.Ãó#ôWêù~èû3f3©õøswp_¯gÓáðÙhqDÐ_î@¨ÒêÃÏ÷¦õ9¸É¿ó»?׳x0ýï m+ðû?´u÷/úõûW#â#@þï}Ý=}èMúòÆ^ÎÓÐ@4´Ôlr(¨&Sã>Ï%ìPúÍÄ>©ÿÀÌýgHÏ,$ÐØ1"N¶0µíeñ½òù!ú"²öQGôÀ³fàȨ/cã%úâ!õèý£ÞOû§ñ0Ãõñ@¯?A9½±åz´>ªíßÏXµ¾þf¦ø§VÔÖîçßCù$vZ/ªø üÄû~uý�Ïoí®ãEZzǨiÒËõx/ûo[ËOü@Tk ôü³÷Ï?À9Ãóñx ÿ<b¸�atþÈkEéhÿüÍXÐÝ÷q=ÚD+J÷ôw ÷]+Eí'zÈ@|ÐþïÍÌ÷«@nòËdÿ¶º¶¨ýD`R ù¤Áómÿ5/<ÕËÚû=#¯<yøOc£´_¶rîü¢øÑû'Aûç¨'áúü î%QþÞÖøÇçSSAþOÝ«bèµzª$¹FþÔÂ�Üý§Zþ=â9aûÉ7(?|>uB÷ÓT(adÿPE±èÿõK59þkþCÿ¼ÿ¡ÿÆTJ[ûtË~flÿøzî 7Ïüè=Ès7\8ü¦òoáôOÏç#ýã+3ö?©øÉçÑxûCöCmñrÿÎccEyl¬¶³ÖW;êù¿øÅ|=FoËç¾_»¿ùz¬ ÚÖ_Þ³)ÛõQü®/FøÇ+8§O1L¦Bª[)ùS;äþ¯Ç +éOÝmÔùë£í + çëi婸ÿéñºòTõýúPjçë±4:}¹G/õhíþéø?ÑóMݵ'ÎZ_åBòãèÉH~ñ§~?_È2CùåãWË=û+õ¬ï·ëYë«ñÏ?tWÄ?O!¼?ø6øýt!ÆÑ0h´ü ü8ãôWÅ_ê/cºe?d¨À¨ý¡¶ýPö_Ç*Ú_ëg?ÈÿøA¥³îMÿ´¿]õ³ö¯Æäÿ8âú? ÿ¨Å/ ÿÀÇ/V¸>¿8ü¿Aû±ÁûÏ1³ßjþyBö»Ï¿¨US6çâ§ +þðûc!ÿùñü®Ï×óGÈÿîüÔøKBüG÷·²~ßÏÇ¿r¼uÿdèÿ9âõ©cûþÑÆ"þ9âo~¾ª?Ñ7î¿4õþkÆö¯?~<6ìègÈÖL -~=mÿåi^ýþ9ïwÔ?Ìh}GýÜ¿yl¨XüÇÂÁùz(?ªdèù§êP³ÿè±Gü%_e2'2ûWð³Üÿö¬ýëñ¸>ñÀÐÃó£z1#ýáëÜ?ÿ_þÏPø~xñÿ ýÕØËþéOpöWÿ-ÐþÒùû¸¬ýÔëO8û¥Ç_àù;æ)@ùããÐþ8êw6ÄGýÎÆé¯?YoÝ?)@ûé@þññ)ùSñ_÷#~²Ýÿí#~ÂÞFüÃÍÿs#HÚ®AÌÉA ã*ô ù +lÁøFÂÝ�j+TAäh Z9Ú¬àô Ò5ìNzP*=ô íÃ8÷ý�=ÁH÷ä/C+cB®O?ô Ðß oÏöàóMû±ýà´ÍdêôFHKO{ GHCÏWp íúþ +ÞÑÁ"÷O»¾eAëóܰÀõJ½ÁC©%±õPí1·ÐpÔ`àÇÁ®!?¦2¶ sø{ Coö'¨Í´Ù{Húõù6ÇTÅ86Ó&$ApßOÇ BKOÇàöüølù�h5É?_±ägÌ!\§/hÿ|F¹gAvÿüú+'?æ0QùÛüpSß1tË~¤ó�ô�ò�øa)d?øaØ~ñ1ÏGpñÏ10Aýçgêe¨¿` VÐýÍ×pÌeÿuÖw<¸ ós<ÌQþ9VX¡ü;f*BûÉëßùGßßûÃÌùYOî?OÐþÓXýWlßOç@rûçgÚAÿÇ1SÛ'îþÑg"BþÓ=�G qé{ö?ÏÖ{HÖ[ö/öOï!áôWåßõï!)Èþ9r¸â¿kÿ½¡ç{`åiÆ=¹Þ-=_!08Düÿp=LJf¸Ô@ðN²HAëó¯b0x~B¾¯! +C|Þ×5DÚ?§!÷/øÁØÿÕË`ÿü Ê>â-}§?úÃÈ~ ÿ[«(ï�Z(×/c¢�ØûY:RµÙ@@Ãд*DY�½c¥$Èìâ0,°^ÁY�½ +!Pd= 9jAãøç¨"ÈQ ´r ½ì´W1�D/;ió$R$@H ~ ¤¥éPÒ=JÐ +8&!Î +ëÈp¼¬¡ò(.Å[:°æiøÇ?ðêël-=?Éíb´·�?t^$_G°ÀówÔ@/"`Ä?/ m' +åÇñ¼$â¿ãe Ý|(OaZ) yqGáÅéQxþ< +HÒÉkØ=}¾?AýïèÕ:Ögê@$ +í¡ý õ?Ïðþà;døçÑsaï£Âø~µ_î¯ézâ+ +Æ&É5IIëdÔúz'C¦¾_EárþÓØ$¥ Ä5I O¢;&iN×è´,F(èûù,Æ1Isôü%`¿ û¯å]uD¦ëI0*ÿ6´~Ï?-´Ó½ü·ézC¦ø¯b°ôÏ3 sBô* +È: +Åÿ7õOëÄ@òÇGc*¤ük<!ÿ1d¿Q'2ÉR¢°ýЫ( ýã;yft~*h, ®'qUîõ ¾ÜºÿI¢ö÷¨â0í/ö¿IÓõ$·ù1cü#dÍú»$xeÁ]ÓëË$ì£@÷ÐK+�qâdè4r¬"Ðo@&Îuí èxZÎëú¤B»>] êë0õ'9àùñ³ +w©üÄãmÏ É¿ãm½ó ôôàiùÏÒ&/Ä? p}Zÿ: +óÕÞ³<ÿ6(¶|%q߯×A¬à/üÛ3w~ªüAûá¨#Y8¤×A@þñu CðÚËL]ÀüÉ,©G×åO¥XïýM «Y<Vã´¾;ÑÒ;òÐ5¿×ó_硵: ¬ïèd©ø=ßɲ¬ÞÑÉRàú|'K½ÿZzG'ËÐþùN Ñ3³ì¤ÉCT³ \¶¿R`ñ_ @ùã{ÁÇ,¿ê?Ûò«õ1$tþ|£Þ_£ú'UÖþõ*xþYYðüyþ/|'köïd*=Y¡ýs¿¥añOEÖçëÖ¾9òþÆOÚí³öÝNçO?i·ÏrìéÁvú,ÜèÓâ Ð"hët -mAe㨦Z0~Å%ç?ô`øiÐ Z >°ã¨açïæäÏ1Í£VbÚüÇ¬Ô X¬Êhù¾¼a}¿üsLD¨cdx?Þ">ëkBÖù©¯AFYÿz¼à<0}ýZ_å_âøgE ,ýÓk8R¡ö·¿TúÊÃNQû!tL£<ì§e?^kÂz=ËDFXspa½eu2´ë;"5ÖÒ;:Aäü×±Y>òÆï¤Xÿù¨ý5J¿ þy¦ABþñò·¢ïçý¿°MÔþÕÆ¶ ùçôtïüãÏM²FÐOû§#¨GÁä¿à"\ÏÁ¦ä×1IÚ/Ç4ÃäEà*ô<#ýãù?#ùáå?bûEË¿Ô�ËÿäÇ!ÿØþÐ5Ü{ÄËièùîX'ɾ±¡ósD ýqôLhÿ|H^ó´î5 ÿ@G¶<~¬üQùK ï�ehÿùP^nÙ#~0h?$?j?ÒÂÙ½áæùx~|ü¤Ö`úR0ê¦ Ú?¾û/~ünðÿ©åÐ~îö&ªþùo4 +Pè��ìcÅG�<gi@�C/AÀȱ>T`b_åßÓyEpÛìsÀz2Ð1Y�Þ÷(m;w $ SSBxrÏí|:ùúËW¿áãë?>oÒþù×ñ¾þáéÞä¸=u.Ïÿæÿôïùøþ»o¾ýó?¾ýåÇo~õë¿þý/øßo¾ýÃÇþßÇo~÷ãwßÿñûúæ÷¿øøõããwß}û_ßþýÇþøÓ?þõ_}õÓO?=~üÓwÿxüùÛ¿ú}(Ëÿþþ¯þúîñ§øþ_ÿ÷ýú¹»ÿdÝê +endstream +endobj +238 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 653 0 R +/Name /Im225 +/Width 24 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏþã?É3B?øÿóÿûÏüã¿PýDi�ê| +endstream +endobj +239 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 654 0 R +/Name /Im226 +/Width 11 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏðåIÿ ·lý>�Keµ +endstream +endobj +240 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 655 0 R +/Name /Im227 +/Width 23 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏÀðäq!ûòÿÈü!Ï�D5`TÀâ ?ä~ûÿ@ƾA\¶~4�°Ä +endstream +endobj +241 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 656 0 R +/Name /Im228 +/Width 24 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû/àýÿ?È7ü�!|èÿóÿ$!T?Q�ªA% +endstream +endobj +242 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 657 0 R +/Name /Im229 +/Width 23 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcàÿÀ�AØóÏüÿ?ȳ°cüPF0DÜù<ÿ?þÿÿ?þ# �×þ)» +endstream +endobj +243 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 658 0 R +/Name /Im230 +/Width 6 +/Height 13 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øñçO Aoí�IÛ9 +endstream +endobj +244 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 659 0 R +/Name /Im231 +/Width 27 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xU± Ã@çqð¡ +øAºðW&þÜë¸RTBBç}ã@ +]nXb#ÇÁð>)êÚì²tÂã¼C¬Â ÷Hú£zç)[ýÃoÈZ½Y³þ¼vdí!q^>Ó6UD. +endstream +endobj +245 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 660 0 R +/Name /Im232 +/Width 39 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿÿáó?yÁþH0QL0¨�Èó(Á$þÿG!ÀbHJð¡2 Ña"*@Ä«@3ÿró¡®Y·B�çM^Ð +endstream +endobj +246 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 661 0 R +/Name /Im233 +/Width 32 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5ȱ @ÑO(®d�1q kÙÁNã(@iA8¯Ðâ%?_{ú&Å?ë7f;äÒcÄ +ÁµØ&v8l +g«éöw¬¾ª-éoòµ¾ü-¹ +endstream +endobj +247 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 662 0 R +/Name /Im234 +/Width 32 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿá?óÿ1ð?þßÀÿüÿþwüøÿ�ñöü øeøÿ?ûÿ0¬ U»R�uÍK[ +endstream +endobj +248 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 663 0 R +/Name /Im235 +/Width 42 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÄ1@@Fá_¡U`{ HÔ¸ +7PÌ=\f2n@§[ayy{X¶1r=F¨úÈP¢ÖüésÍ:SáÉ~ô*¿ +pòÅ*MÎf4ÎNZg®)¢¿E¶nå Ã4Z +endstream +endobj +249 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 664 0 R +/Name /Im236 +/Width 27 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿÿ@=Wð3(àg<ÀÏpà?Ãü ÈÌüÿKËÔÎV�ø. +endstream +endobj +250 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 665 0 R +/Name /Im237 +/Width 35 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßÀ`ÿàÿúüêÀï{HÏÆyP¢Y°aC!äx`¿ +Á¾ `~�%äÈ1ü?xðÿ0¡,S;[�Ë%¶ +endstream +endobj +251 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 666 0 R +/Name /Im238 +/Width 31 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû?ÿÇ¿ÿ@lÇ|ÀBùË3?(àgÿÀÏÄm°÷ý8ÀÞSqýLåæ;µ Ì7lØ70þ°g`ü Æäð±¼hýe�Q$d +endstream +endobj +252 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 667 0 R +/Name /Im239 +/Width 20 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÁÀþA¹Áñ@ã>`" Ù0�ªço�êbüÁ "Z7E +�ÅLÏ +endstream +endobj +253 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 668 0 R +/Name /Im240 +/Width 26 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ�Ãÿÿ?øjØåX ËAåj@jÁêë rü Ì~�ÄåÁzÿÿÿĤdjg+��Õ +endstream +endobj +254 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 669 0 R +/Name /Im241 +/Width 10 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûàÿ9Bð?Phý^�òÅ +: +endstream +endobj +255 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 670 0 R +/Name /Im242 +/Width 21 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcø£Àþ/¿ùã @ô Hþ1>¨�#FJ zöÿþ(ÖM�¾W +endstream +endobj +256 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 671 0 R +/Name /Im243 +/Width 15 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc8Àx@þÀÿ0 ëÿÕÿã©-�8Å +endstream +endobj +257 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F2 422 0 R /F1 420 0 R >> /XObject << /Im58 65 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im67 74 0 R /Im52 59 0 R /Im50 57 0 R /Im52 59 0 R /Im57 64 0 R /Im45 52 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im52 59 0 R /Im57 64 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im48 55 0 R /Im57 64 0 R /Im57 64 0 R /Im146 153 0 R /Im169 178 0 R /Im39 46 0 R /Im59 66 0 R /Im173 182 0 R /Im146 153 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im71 78 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im66 73 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im57 64 0 R /Im46 53 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im50 57 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im39 46 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im44 51 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im70 77 0 R /Im45 52 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im55 62 0 R /Im41 48 0 R /Im42 49 0 R /Im51 58 0 R /Im42 49 0 R /Im42 49 0 R /Im39 46 0 R /Im42 49 0 R /Im73 80 0 R /Im50 57 0 R /Im40 47 0 R /Im39 46 0 R /Im42 49 0 R /Im59 66 0 R /Im44 51 0 R /Im42 49 0 R /Im66 73 0 R /Im43 50 0 R /Im45 52 0 R /Im42 49 0 R /Im57 64 0 R /Im46 53 0 R /Im68 75 0 R /Im244 259 0 R /Im245 260 0 R /Im246 261 0 R /Im247 262 0 R /Im248 263 0 R /Im249 264 0 R /Im249 264 0 R /Im250 265 0 R /Im251 266 0 R /Im252 267 0 R /Im253 268 0 R /Im254 269 0 R /Im255 270 0 R /Im251 266 0 R /Im256 271 0 R /Im257 272 0 R /Im258 273 0 R /Im251 266 0 R /Im259 274 0 R /Im248 263 0 R /Im255 270 0 R /Im251 266 0 R /Im260 275 0 R /Im261 276 0 R /Im262 277 0 R /Im74 81 0 R /Im39 46 0 R /Im182 191 0 R /Im40 47 0 R /Im53 60 0 R /Im52 59 0 R /Im43 50 0 R /Im42 49 0 R /Im146 153 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im52 59 0 R /Im57 64 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im43 50 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im57 64 0 R /Im45 52 0 R /Im43 50 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im47 54 0 R /Im52 59 0 R /Im43 50 0 R /Im50 57 0 R /Im40 47 0 R /Im59 66 0 R /Im59 66 0 R /Im57 64 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im50 57 0 R /Im42 49 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im42 49 0 R /Im66 73 0 R /Im40 47 0 R /Im67 74 0 R /Im45 52 0 R /Im42 49 0 R /Im59 66 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im79 86 0 R /Im53 60 0 R /Im52 59 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im55 62 0 R /Im47 54 0 R /Im69 76 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im39 46 0 R /Im52 59 0 R /Im50 57 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im39 46 0 R /Im47 54 0 R /Im59 66 0 R /Im42 49 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im41 48 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im53 60 0 R /Im45 52 0 R /Im42 49 0 R /Im59 66 0 R /Im44 51 0 R /Im48 55 0 R /Im52 59 0 R /Im39 46 0 R /Im67 74 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im70 77 0 R /Im45 52 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im44 51 0 R /Im40 47 0 R /Im77 84 0 R /Im42 49 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im39 46 0 R /Im52 59 0 R /Im50 57 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im57 64 0 R /Im42 49 0 R /Im53 60 0 R /Im42 49 0 R /Im39 46 0 R /Im59 66 0 R /Im43 50 0 R /Im42 49 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im45 52 0 R /Im47 54 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im42 49 0 R /Im59 66 0 R /Im40 47 0 R /Im39 46 0 R /Im62 69 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im173 182 0 R /Im68 75 0 R /Im182 191 0 R /Im40 47 0 R /Im53 60 0 R /Im52 59 0 R /Im43 50 0 R /Im42 49 0 R /Im146 153 0 R /Im171 180 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im43 50 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im50 57 0 R /Im40 47 0 R /Im59 66 0 R /Im59 66 0 R /Im57 64 0 R /Im42 49 0 R /Im53 60 0 R /Im50 57 0 R /Im42 49 0 R /Im156 165 0 R /Im155 164 0 R /Im70 77 0 R /Im66 73 0 R /Im57 64 0 R /Im46 53 0 R /Im44 51 0 R /Im42 49 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im68 75 0 R /Im182 191 0 R /Im40 47 0 R /Im53 60 0 R /Im52 59 0 R /Im43 50 0 R /Im42 49 0 R /Im146 153 0 R /Im67 74 0 R /Im57 64 0 R /Im42 49 0 R /Im43 50 0 R /Im57 64 0 R /Im46 53 0 R /Im44 51 0 R /Im55 62 0 R /Im47 54 0 R /Im69 76 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im45 52 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im43 50 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im151 160 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im154 163 0 R /Im157 166 0 R /Im40 47 0 R /Im44 51 0 R /Im66 73 0 R /Im43 50 0 R /Im47 54 0 R /Im79 86 0 R /Im45 52 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im50 57 0 R /Im44 51 0 R /Im47 54 0 R /Im48 55 0 R /Im39 46 0 R /Im52 59 0 R /Im50 57 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im39 46 0 R /Im47 54 0 R /Im59 66 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im42 49 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im59 66 0 R /Im67 74 0 R /Im47 54 0 R /Im50 57 0 R /Im66 73 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im45 52 0 R /Im47 54 0 R /Im44 51 0 R /Im42 49 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im69 76 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im47 54 0 R /Im52 59 0 R /Im45 52 0 R /Im45 52 0 R /Im43 50 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im151 160 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im146 153 0 R /Im157 166 0 R /Im68 75 0 R /Im182 191 0 R /Im52 59 0 R /Im43 50 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im71 78 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im197 208 0 R /Im198 209 0 R /Im195 206 0 R /Im199 210 0 R /Im184 193 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im43 50 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im70 77 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im151 160 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im162 171 0 R /Im157 166 0 R /Im40 47 0 R /Im44 51 0 R /Im50 57 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im66 73 0 R /Im43 50 0 R /Im47 54 0 R /Im79 86 0 R /Im45 52 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im194 205 0 R /Im195 206 0 R /Im196 207 0 R /Im184 193 0 R /Im151 160 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im173 182 0 R /Im157 166 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im40 47 0 R /Im44 51 0 R /Im40 47 0 R /Im44 51 0 R /Im59 66 0 R /Im52 59 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im48 55 0 R /Im67 74 0 R /Im45 52 0 R /Im45 52 0 R /Im55 62 0 R /Im45 52 0 R /Im69 76 0 R /Im55 62 0 R /Im42 49 0 R /Im39 46 0 R /Im42 49 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im47 54 0 R /Im39 46 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im51 58 0 R /Im47 54 0 R /Im52 59 0 R /Im39 46 0 R /Im59 66 0 R /Im44 51 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im50 57 0 R /Im40 47 0 R /Im39 46 0 R /Im40 47 0 R /Im50 57 0 R /Im57 64 0 R /Im69 76 0 R /Im40 47 0 R /Im39 46 0 R /Im70 77 0 R /Im59 66 0 R /Im47 54 0 R /Im69 76 0 R /Im40 47 0 R /Im44 51 0 R /Im52 59 0 R /Im66 73 0 R /Im59 66 0 R /Im45 52 0 R /Im42 49 0 R /Im59 66 0 R /Im71 78 0 R /Im40 47 0 R /Im45 52 0 R /Im44 51 0 R /Im57 64 0 R /Im47 54 0 R /Im69 76 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im47 54 0 R /Im52 59 0 R /Im39 46 0 R /Im59 66 0 R /Im69 76 0 R /Im40 47 0 R /Im57 64 0 R /Im57 64 0 R /Im51 58 0 R /Im42 49 0 R /Im53 60 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im45 52 0 R /Im55 62 0 R /Im39 46 0 R /Im40 47 0 R /Im45 52 0 R /Im44 51 0 R /Im52 59 0 R /Im66 73 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im47 54 0 R /Im52 59 0 R /Im39 46 0 R /Im59 66 0 R /Im71 78 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im51 58 0 R /Im46 53 0 R /Im67 74 0 R /Im52 59 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im67 74 0 R /Im52 59 0 R /Im45 52 0 R /Im47 54 0 R /Im75 82 0 R /Im68 75 0 R /Im74 81 0 R /Im45 52 0 R /Im66 73 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im45 52 0 R /Im69 76 0 R /Im55 62 0 R /Im42 49 0 R /Im39 46 0 R /Im42 49 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im40 47 0 R /Im44 51 0 R /Im48 55 0 R /Im47 54 0 R /Im52 59 0 R /Im39 46 0 R /Im59 66 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im39 46 0 R /Im44 51 0 R /Im70 77 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im71 78 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im40 47 0 R /Im42 49 0 R /Im41 48 0 R /Im42 49 0 R /Im59 66 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im67 74 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im52 59 0 R /Im45 52 0 R /Im47 54 0 R /Im75 82 0 R /Im40 47 0 R /Im39 46 0 R /Im51 58 0 R /Im47 54 0 R /Im52 59 0 R /Im45 52 0 R /Im175 184 0 R /Im167 176 0 R /Im263 278 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im67 74 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im68 75 0 R /Im160 169 0 R /Im47 54 0 R /Im69 76 0 R /Im42 49 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im71 78 0 R /Im45 52 0 R /Im55 62 0 R /Im40 47 0 R /Im44 51 0 R /Im42 49 0 R /Im75 82 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im50 57 0 R /Im44 51 0 R /Im48 55 0 R /Im52 59 0 R /Im57 64 0 R /Im57 64 0 R /Im46 53 0 R /Im48 55 0 R /Im43 50 0 R /Im47 54 0 R /Im50 57 0 R /Im51 58 0 R /Im47 54 0 R /Im52 59 0 R /Im39 46 0 R /Im59 66 0 R /Im41 48 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im44 51 0 R /Im151 160 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im175 184 0 R /Im157 166 0 R /Im68 75 0 R /Im54 61 0 R /Im43 50 0 R /Im52 59 0 R /Im42 49 0 R /Im41 48 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im44 51 0 R /Im151 160 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im174 183 0 R /Im157 166 0 R /Im55 62 0 R /Im43 50 0 R /Im59 66 0 R /Im57 64 0 R /Im46 53 0 R /Im55 62 0 R /Im41 48 0 R /Im42 49 0 R /Im39 46 0 R /Im46 53 0 R /Im42 49 0 R /Im75 82 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im40 47 0 R /Im44 51 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im66 73 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im71 78 0 R /Im47 54 0 R /Im43 50 0 R /Im71 78 0 R /Im42 49 0 R /Im41 48 0 R /Im42 49 0 R /Im39 46 0 R /Im69 76 0 R /Im47 54 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im71 78 0 R /Im55 62 0 R /Im41 48 0 R /Im42 49 0 R /Im175 184 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 258 0 R +>> +endobj +258 0 obj +<< +/Length 672 0 R +/Filter /FlateDecode +>> +stream +xµ}[³-·ÞûùëÑN&»çqjÆ©$US3å35Ql]Fr¶$[:+ùõénì?l~ìuü £M®A� ùÿöøËóøÛ¿|ðÏ1á9ò¯:;<6øGÃs°þñõ¾üo?Óã~þðox÷4ÂûÀ{WÃÃ{o¯ðö9Mgøð´~-¯ðþ9 Wø9¬ð¿WûÕ~ð!¶ûá#¢ßXáÏ0axhüS¤ðÛ§ÇôÝwãWøwóWñ¯Æ?vóWÍ¿Ö;xÐèûoD?oXþ±ò?à?,¿ÖÂñÓòk-'¿:~ÄÞ³üg{ÿ¬(þSùÇsü£ß#ýÆï0üÆï«þ»çäáøG4~_ÉÊ¿[?TúǤ¿o)øþá×þ/úo®ðÆÓBam`|Æ©4f3ä`0Ìw�?^Ý�ñWð�+Ý¢N@ à)pfâ¦�`Age ðO35ÀcrêPêðJ5vaÖM9u�½9É5L¡ßm@Úq#Ò!5«ôEÿES_ð§]ðÏè¯üÁ¬àè5ÔE¸Ðk¨¸ñ«ò3yJ~ÔþOp §m`7#¢¶Uþç? 5·áü�m ÚóG?µÿÙ èçMó_ëßZ~R_lÈ$?§ù«V°ðôÕüwG·ñ;4ÿ¼ç±þ¤}(?"°ö¡TüXÑòïä¿Jÿ¨ü H¯?>ÂþÓ6°>,oÆäoÙÀkcÿö!Gb�ð1añWü£âþ9ã§õ¨ÿ<ÿÆØO +ýãDÑ_L~(¢ðßûßÃ< ~0ÿ"1óøyÄ þç=kÂ_Áë>¼EòKë/ë ýxÞAþ«øW@ùðÊüCýbZã_µÿ#ä_>ÐüwÄ"â_^Øéô·B¿ÇÏÓoôçé7Aþ£õ@Ü?7pò§úZ¿þÀú˸~Ñë·úgáú_ÍÚ×Zÿ:ø·ÃfC~TÿQb½!~>þí>þ ýÇÇ_Ô?|ü%R~úNÿ¨üí¯ì3\ìç!ðýú?>g_â'<ý&NþTùÁö!?þ3â¿ÚþUço`þPZóÿYûY¿«ÿ3¼AôGó¯ø³¿UÿÏBù!ôgÆ/ñßþáâÇ)~ÖÚÿRã?Õß<ô_ùø´ÿøõßhþxÿÏCÿ±Ãü9þUýWÿ¼¤áÇðYÿàë Õÿ|Í?ªÿ*óúWÙ=Àóøù�É8ÁwÐ?þjü"ÂñÓöOÉ8ã§ý/#ë×þoñÉ¡XÆñ¾ý¤ÅþûOó¯, _ÏÁ?ÿ²ñ?·füÏÇϬ§ùããçvYÿ¶øù ?ãeþFXõ×¶ëñS6Àf{íÀ¼) v`/ +`îÁ²¡jjÓÓl1H<bhÚÌÒ¼4�v!¬¿6°ò ,ìA¥Fôf®49¢!Ô¼^lZi@=@+¹¬Ý2+ÓÞ@%Js¥JÒ4®¢¸±ò¥.1À!X8õfY &ÜÂ[¨Y¥¢óXS±^3F< 4Ôb¹P»4P CÍ©OvYQSyh�¨ Ñs4¨5Bn`Â4 ag+N]KuFÀòÈ3Gz¤À²º!Ícl]�Óià¤A òkãÑ6¦£mKççàkÛ0uà÷YOð®æÛ¼¸`+¹cVÊÃøB1q¤Ç Ö¨ªq;¬#ÂÏ×óøAÞöóÔK»º;7¨üî¨ì® ÈïÊîZ7ĺ}mÊîÚ]ü& x>CÖ"úwdÈZ$@²Ò¯cw ÒÏõÿøYá½ÉнÉÿ¶( {üo¡â£+6XÙ]k̾»çô_ÿ Ê??ÿ³§æ_N~üîAð»SéÏÝ)ä·#ºnÿwì.ÚZÀUú9~*~w×Ý9¨ÿøÝè×±;ê¹ùSÇ?"þçõ¿/òo@hÿ$ÿ»«ÉOÇîjú§#;Wæ?ÜÛ]¥õÒhuì®ÎÓKò[vÇnʯ þ¦å×hýåå×Cû¯cwÍÂõß²hýåõ·úßõÙO»£µßñúí=ä?0~eþG¨¿hùñ#´þRð(<ÿaýÇgGNÿª»S906²£UÞ§¢c3;_ñsvÝ?hòü·àõ�Dýçùßäìð±y:�gg¬Ù½ |7;C ñ»F�DÙÊËøùÝÍ)þÑwçÐüwìÎÍ¿÷NÉ ã±q:J?ÀþÓë¯]¤ü¨þ«Aó×qBÚR~ú¢ÿð�·ßärþêîh¶ÿ[ü¯g;?y$?Ù¡#§?[ñ»ògC äO?!l(þSûÿð§ÓlDóß±»=ݧ_: õg5êîôv§/ã§Ow¹Ñ?Ý%ñ<M?g8þ¯w$þôWö^?%þÐ^?ßÏî½?ê!ÿð§S¡ýÔq:uDöçÿ¦øÒ¿(;OËEüW¯5ÿãþïðÿÙõ[Ë ô£ãÇâÿßÒÏÎÐúÅxØþt¦úöÄÿ¾ÀóÙêÞÿrüªþ£gíOÍö?ó#géþ÷]ûON·Bÿ¶_ätëíùöo¿o®øñæé#öçÍìdãþÓ¡ù¯±yºC»!, xÚ1ùtHþÿ,ý7÷üçèÇïçß?~|vîdPÿyþËùñëÙ#Å?zv+¢Â¯ìø§ãt-ê½þéþ/¢?m-ÿÿÇ¡ùë8SþÄÿ??ðHÿðëÅú«ã®HñJÿÀÉ¿ê?D¿ü¬è-Ôù#>»]ìç»§ãÅ~¾y:ÓÎÇþaÑ_7Og?¿hÐø;öÍDÉ¿~º÷5ýãìkúGNßÕ?r;YÔÓNôÇÍÓ?=ÿ�®_|þÈ×þtæìg~ÿůٯ.@ûçÿÈÙuN¿Äþüø#äßjüZüÐM9~x¶øøáíG>~4Cû¿ +Ú=§kYûAë/ÿ°Ð~åãÒ`û÷±þ!®xÎþWóFh¿Óþ·þü�ûOÛoû<ÿG¸~ó ø¿h®ÓOçæþ7OW*þ·Øïa~×ÿÖãįÄ_$ q:VÏ?@ø;N·ÊúÓ8Ýٺݫ5~õvµèÁü×þ£¿:þ ÑݧÄOÄþoNÕì?9{çýçö÷ßòí:þé8]ËοÏɯvº~=Xó:]¯ìKü½qºZí¾ì.ÿY¬¿èÛ×øjýÑÖëQÿùü9¿pWÿY¨¿øõ¯ä4O+ôÇú¯ZÿUúÅé7Áþóô^¤ßÌÑO忼oÑâ?5þ5Cþçýßñ¿,ñ·K8ð÷_àäW¿Eú?Æä¹twæpA}}T¥ãè§ç ùé¸ÝÙCþáã7#K%~3BýÏóo@ë'â_å~ý0çù;ÂûõU<¦ëÍ/°`ÅÂã#Îþéýüøq-Æ7©WfMªX öò÷ÿxü´õÃ<þûòß>üÏÿõß|Ø ÃÓ8i95<.`¿ßÐ/æôÝð»çlJù[h£ß[ZÑOÃsR¼¢_óÄAô¹\Ð/öCìRn!ßÚÙ§âùRO Ò¥ùí*Zè·vô©xA¿Hî:Áoâèß+ÈK» yi÷ܤ¡ìF¶ý»[È×vÆy*^»4ÜÉÐö²Ýv�H-ô[K;úT¼¢÷ÛX +v¶M´ä¥¢ \ÚÍÈ¥Ý3òR°Ú^Æ#åKEýÚÒÎt¹xEÓ` +ú(²Îî]Ê-ä[;;òT¼"ÓP +òYË×7 Çy/-ô[K;úT¼ Ã6Áob8jº½¢¼´vÏÈMJÁndh{y<hºRn!_ÛÙ.¯È]JAîdh{9-:TÑB¿µ´£OÅ+z¿¥`÷yh{ÑÙÝ+ZÈ¥Ý\Ú=#e M@¡,°¥lÍqÞKE}ØVÔ> 6Æ4>ÊàöòåK¹ |mçÀt©xE>_Æ>_Æ>_Ç>³cÏc?nvÏñd\-S¬«qS@zÐWûBl¥ùé§éØTqè¥'CØæ*ñÛ¼zçâÒðÎøëëS4¬5ÁÎì5rjvbv{/JùÔ5f^íÝXkyÛ+åÓìÄvëıñC'B\&È;±Ô$[²ô¢Ôn¨v7VàÃò©ë Ï>ÌnlW@»C/J Üa8Àn86>×Qú°qï1÷ÒjwBdA:!eÈq²y=Ì®G*¿Ëi8B´ÄälHÓ/KÓg¾<¶ÈBùîX0a}8#-|yíDæ0õ³C9wá�Ñè¹Â.?t8V$GV'NHO^;ØKýêPGUMtàÜTáÇK +w]y0Wó=VRºðXïËÛâknî¬>LUa³Tm¼)5;s5»ôÄ{ Ó¡s +nW*×|ºUo«éñ»m5eɶ(0¥éÏaÚµ]%«w¦-ß0gRCõç¿pæÚÈÁ±Êìkë¯J9>çÍ6-�RÁôåÜjaå°nô×;�³9× óH uÙþ/0¥¦¡\S[^¥Æ·jsäà\sàà5Ob\jZê5£ÝÙq}°±ÙÙ?}gl;İÁÍHw^] c`sõW廽"IvV¨érg¼áln$ÒuúÌto¸4=ÿ3Ê+ï¿/ßyËEDÊÑ>§Ñxr¯A2ba +vñ6G·,Ã'qÝ×ñÜ}©Ïßí" ;Ì{"{íÎÿa}?쾨OësùîÀ§þþñlSöõ½ô§Ø�¥C¥&sñ+¨þðþePñÊ¿2ÔógIJ H@èTõåû`)diW¯þù¨^SÅ®^ÍÑÍÚ`J ÏÊ[³æ i6bmÆæê¢ïö +#+s1ï¬Ì ++DEûãʼ«\WæËgEá¬Ë¤oß1£6Þ<ÙQ»p×´²î5æiÇîÍlñôkíymµGïO*vïoD©è`ä}wÁæéhÓ¦\:}Ôȹ¼'f Þä-X$J°´k7Wbò]©Óîm RÑaî4.óÉ�Ç?ÎÂ8Çïì!f¯vÃ^Óaîfü{Ü B"W¢ñbB¬»L;+%ÓÓþ=°î!WîZ®¿r¸²qxswÇÙ8ÙxkCLÓ1é|¿Ø+?/ â[)f±÷_R{Ïaxüçcûßý|W]Ó7{(··¦+:³7Xʹò=Ýá×1T^sÒ&·7¹æy·7Yʹò=Ýé×1ÔãaªVáYÆyºR&å{¾Ó/c¨:½¬ËÉúq»Mb>L^)˲%ßÓ~CÝéÙ&kØñ9&¯¥IùïôË~OIù0'0u*)ÂÓÅ]Ê¥¸wÿsµ×èlذzÞ%<ßör6CÊ÷¹:üzNgÝm:Hx.¿íå!mçïsuúõ6[NâLª,ѹü¶sEù>a§_n³Ñé,±aY@Û%<¯A¨´lçïCqàêN¿Þf«ÓIb·7uÜ.á¹\$<¬/]¸]ÂKvúå6wU§Ã6ý²É÷ +è²"¿fÙIò]ýuªûþ~(ÕaøZîR?{¯ü>&E&Z ú=Ù±}n¼ê�9$ïzÕ!îÄò»?kê÷ àçÆ«P\Ò1åfØ0o<~ +:®¿Ï);J´Kõû9è~f¼ê�¯<§ j=/kÆ=ôY¼`ÙCÊèò{çø¹ñêÜÝv³Ö²q¬@«M±;ÑZß3|Ç�?3^Máã]Ûe!1±¨µÈÅu¶1[J×_MÒràïV�Ç´Êgv4/¿Ïy-^Øå÷ÿÞØ>7&r%¤ygpÓh%¤,¿Ïy±-Ûå÷ÿÞ�?7&v£´I£íÍæßZñî.¿üÌÈÀwHÖsÖh%_~áY<Áëï!-Âú�?7&v9Ee'V"û××xú=^¿?¦¦ÝÒÖ£6¥>Õ'ÅãÇýæmËÒ¤$m±ðLLë½Xt¥|úþ%yOÛrtÙmË\1h²Å¶ßß°oâa,Ãa>ZhçèÔ¡|üþ%xOËò+[ +Y¬Õ¶ÅµÆ^>}ßméÝÆÓ²ìÒæú®%ÖÕ¡|ü¾Û»§Ër[çÍôì}e=QÇÛ¦Ú½Vûl³uüá`1³Íò¤#öòé{»Ýríµ^18tĺ}sÊÇï [ëvË}¶ÕºÿÆ]G1{YGÊÇï [êvË}¶Ó¸8 á`ÑlN(åÓ÷t»å>Ûh=ÕvÒá¢#ÂYGäï [èvËy/vJÇÙd®ï:D³×¼í5F1ÃH9í6þãÇ_þÎ>Ìããw{Òn%Ó?{ñõ)ßÇÇ?Ø mx,ªüæñ¿}|üÓaéó´oùCUóǪæªù¶ªyT5¿V5?T5ÿïVË_ýhú'¢¡ÿA|óçªæç[CýD|S·\¢ÆõÕo·ªþ¸1Û³¾FÙr7q}í¸6R¢Ï(9 +RQ3ÚÎ^_ìL¶ñØö×ÂhÎ?¾ðÏÅÍÙúô/ÒËyνükUócUóǪæÛªæªæQÕü\Õ|G@ýD´ó ÑÃ_ \õ7u; ÆþuUó=Ñr=º»ªÕ É47è1Ï8Ø#ÕøÞªÆºßõ\Ä*,ÆÓz%ÙæM[nJ.¿Iy\ØØkjÑZêá Ã÷âÛh®G¦4uËå+ÐV¶/RYl´Tí«öCÏ~8áÇêCË~¨&4GåCe0õÊ`";úCe0;3õÊ`êÁÌÊ`øH¸ÌF¥©<ÜÅP8|¸ÈÉq¸uY§¥ [£û0ÂÓ$FACÖj±ùsªi;¦»0ÛªfÊPï}3V5á [ôd¿Þßo§DGï·X¢Ë;k¹¼^°)ü})£ä×ÛLFs®ô¢�Ó~=k½æ¿ç·SÍN8½BMmÝ\!×°©uר�,¶ô¼:vLù´ëÛc)¿íeâ°åû\n'î¼á÷ÙBói(s!Ü´0o©x+ëm[Þ£w`ûs]JâsqÀË2Iÿ£Ø¶²I¥æSUó}UósUóW¢ñ upìEpVóÂè/¬Z®+8Ö¤ÓÞG(õX*<ä#þÂÉ?Nráº!¤Ývá²TÞ¹np)ü^¾Ïe¨^n3s²±é|˺É9w(TÜ*Âr¾µÀì5/ðòºï·ôxà)I+K8Væj©ùDÔ|QÕüXÕü\Õü[ýÙ¹»TÙú#ÈÝa(¬+ÞNI¡agÆ2Cï'.«1c¿¬1ëµ"Ky+ÅùÐ+ù=&Ù®þÝõås|n¼Âüæ¢ÝÒ33«!r*ËyÎ ¯0~|!ßÅ*D¯VjUÍ'¢æ××UÍÏUÍ/·zxPôRåê°(NKÎOo§¤0úë(K à!cÂk!g¯îÊïSZ=W«ßs6±ÛüܲTØid..ÏR` Þ©<@zeQ]ï,cÅ«cÅucÅuc%cŽRó×ÏÔr]ó1¯«>3=<HTùú#,q>æå·SM2@ÚuMªÄùÕz8iw¹>Î÷âòdNßËÇïû×»x²D¹yÛ]¡g WÈ*øR*^(»¸óY¢ò^x±Ô|[Õ<ª?V5?W5j~ªj¾!p}"j¾ Æõ5Ñç_nQc±R5Öa[Tçz®ü c¹æíTÔêê¨h)÷%5|²Tî^×\¾UQdÁE$²°ß3ëØÝs8c±Úä´4K/M¶ø6Sj^³8?§éâ2ý?T5ªï«U×ÔP;ªPtäÐmÖ{Ñ-|Ÿ¸ÝëÌñ]I3ñ3x·èxØ0?¼^|çacyáØXv¼ôØ _Ì{'ðËÃÓsª ðÕÍòõżò²Û.æ½4«§U´§qÌFÀ?c¦ ÁóOCæ§ ZT¯6^ã�;@¨ÆßzÚ Ýåjsè×ñ´ ÆR¦³3¢ÿ4 ýç¯ÖÏO«´$Pí¿Gó×ñ´Ô Oëa B?gñ·Ö§ Úü£ô?¢ñóOÙ8R+Ê?ùiÿ¨ø×,±[+<à)úéO+ ùéyZõi¼ÉOÇÓx¢ÇÓxùiÚ<ÿ4\~¶¥?õ§XD{É?ÎÁþÓOë8¨?ùõSFhÑO{Äü*ôÏO[÷Ó_àÑúvÖà!ýø§5òÓR·ù7BýK?-æþiYÀüCýSË¿:ÿ3âþiyÚ°5þÚÍOÓ5ýuý[ìò�C%ÛÛtá3Þ&1µiúü8¬3ñÝÇMµÜ[Càêã6RXs@ÆïQ»êãØ£-`-8 =iÁ©ýïÃÉãgøúqõqÄJ ÿ8bàV@uüá¯çO{ÛÅC²~\U"�®DÝ"$îÜ@O!©°Õ»Dðgü=AÀwòëÀø BÜ @@{1 ç 0ÏsN"¦AL~ÞìÖ &?oÖ@uüùy³Öø5 nfaá·d :c ÁZ1þjüujðïç°5þVãÏ?nÓOapü«öü, íyDH?~üÁSãWch)à`ôãcXÿð1@¨:b3\@è þåc¸Ë«åÀðú¼½ üÇû@òtñÀýbHÿó1@´ùGé?4ø eÀ©ü3rüÓAôò¼"ÔÏ3"ùé!AýÕàúÃÇ�'DÿàøÊùp ̰EÖ Äê¬;Ä�ªèQNkL{(À?0í½÷À´Ti¡Òð`$PByVà(´ÀxÂ{¤Áy D{Ä+øCH>´9±,"Ò½W 8vmM¡ÊB +1½YDãÔÅóÙÈΨnDàE`"ï.µ +(Æèw4(Â?½:Ãó hüü"`G Z4~>~~#ÈL?¯Ìl¨ùÓ!àüóQ¨ÍÍÿêõ9?Zþãòß"4ä¯qç,¢z#]whþj'T¥?Ô_5ýõ ¢oÙê?ÞáüÑú×ÈÿüüÇáµù hsþµD¨¿èmD8ÏpBùüvÌßð£ âDè ÿÐA`gýù °Ãúâ;ô¿ä,Ô|"ú0%â§ùÏAû _bÀõ«× ýBoã @ÃþTù/@ýËó_òËó_òËÏÿø%R(AÚßô&Ãúbùê_~{àì/uÛÀõ߯6?¿mütlc[hÿÑA8o§ìoõ³þ¦]Ðõ¸Aßøî.°¶ UB�gúÑD~´ÔøõëÿiiPÿÐòç¡ÿÇA% ¡eÿªã?ïÿÊú¦[&§±áùM9Êp§71Ì8Pý×B ñó&Ô>~#üÂMÑøyýo"?¿QâgxZ~Kü Á?zE ð«ôË1ZôSùGÖßÿ¨È7~u|@òÃǯJüáOǯ¬AôçãWVÖßóøùMkCÚÄXá[% ¢ÑmÃ:(ÀobFC¨ýÇ´#ÇOob¬FÕÎ9ÞÄ(ÆøÕF@Ø!Á²w¯É[blyh'x¦ÀÒ&ÆE*!Ôr×ý³$CÇ.ð¹k$uà4:QÝ +åSQJ¤ÉÃZ*« /Ð@æ£âçÇo9+ªfÔâzsqb£ªCêÇ9 þãH{s¼¦ä8Çmþ!ÿñQ<lEÒ©Pê°T¨u8Ê!~~þ'(ÿüüOáG¡æØÌÀëq + ° BTq° @CÎÌ EbÞò.4z] :o½áWÖ¿èÊú]Yÿ¢+ë_te} íÊú]YOº²ê¤|¦v5èÞ;¤ºÂ +ïé5.óïøþ>=b~Þö# _Oå~ÞG´bÇ`²4tË3ùT÷e´+gd3ôÏ»r%2¾¦M?Ñ9OfàøùÇÁ+WN÷NEÚa Ưßj$¸Ã3?¶&clVÀx:Tz¢.·àîå£YXÏG³ qù Pód?³¡ôh§D@ÏçJÚLBXðþÅþ«ôp£óñdá¢y ~>9¡ùïgÎhþ;²4þ¤ì©@ÏÔ" +Ò#pü|R¼¹KD ü=C@ùí$Djüz$ê¿HßH\Â;" ìªE8#P$8´þôGîÎÿæïF$¡A¿©ê¿Dÿ¹@=�ê`¬øñHNÉñ±�èYõ²'s×Ëîò^ödnò¾X1÷ùqÓ/¡¼Ñø;@-Ôq°$pãofEÜ\EJVÄ Cþt9÷G¨H÷e}.Ný=õ`Å&C§.Ô{2ê ²à;n(CøÏG#B^Nð¼#R|ù3|GbÂø#_¿áÑ!úÑñ%1áTv0£þÓ¨Üyço7_üYÍGôë8]o"Å¿ª#([r ú©±�qÄÏðü òHÔÒÿ ÛIú{8~þvqäïÎßÇÏ;Xñ·C(?~õvféOßÐVng¸Ë¿PÿtÄÒ&í&4V4ñ+ó7#ü6!#Þ_-¥�ê:SñþSIä§qÄôWúï þçA(ý§:¤þQAæ¯Ã9þQñhþjHwĹõSå¨jûAGôcö]F4ìUþ þáF:lÿðü;Ï/ñ¯¸õCML8û[?ØÀÉ¿êZ8ô §Û?ü1»¢ð«ã÷P~@ÿµû¡üþi¸ðgxúv°²ß°?Tü!¾6[¿»ù~ì¾_4íÆgýéì»úGß �<;ñ?OCü¼ÿ*ö¯ë½XââéGoÙÈrÛùû·9ÚíÁó[&H¿ ,§íõvDfüZJçê¿oñ£ýQJ§²<Lÿ5÷ÒôÓ.Fðÿªý·ôÝ.©Ä/,ßÛgJþuÿÍGZ¿d¹÷ï&j^p¦m¿øýô&ýxûµøïîý»tÿño-ºÿÏÍ¿þB§ÿuøâ~fåGÛçøG÷ß!ÿð7ÄË6}ÿzcýb´þÜ¸Ø ÙívFh¿ðþ³cõ¯v1GývG¸~òG2<Ô¼ÿ?Bùå!Fþúí?￸ä·ãvÈíþvÑéOÛÛ_´ýX6âoØébOÁë@ùá·p±þ¢×ß²sý-»ø7×ßr±ÁÍõw½Øàõ×CýÃÛ¿~}D²µÓ�¯éOêÖû +·ùÚOc4ÿ¼ÿâk?*ïsÈÅ.®u»»âÿow÷¿ôf�ßq±\ìsïxa�ðûß?:ÃóûI +È ¿XÄÈÅ@æýETúKü Aÿf.}sþµýwÄ?üÅåbÃ3ýéýó²'üOÌ`þc _=<IéGÙÛ`ø'ò¯$IJþt˯¼nõi]l¥ÁO¼~¬Î?¿ê¹ñëôá§ý';FRiûï:ò"ÒùÊ??0AýÍçLhþ:òfD¿ýÏê¯#ýÜú¡¿pÈâ×ÙÑüuäX8Gò!~þuä×_%½©¿ýS¨?:^G¡þêx!RöêÿNþtÿµ´ý{¨¿:öï-%?jÿ'Kõ_ßçæOß?w?à_mÿþ5úy¨¿:ü×_þ«AóÇ¿°é-7ºÿôOG +5ô:ü_íÞÿ%íýb@h¿ð§ù±ýÂæÿ¢ï³ë§ö°�\?þmì¿[së}Ïâ7/¶ý«áæÅv¿Þ¿Í@÷Ý.ðüi~ÉÞ¿M¢¹ÿßÀ¯ÒOâ? úéûÿÀw\ì|ÇÅqð3HüùÏ?Ì0Mþ3Ì~G¯lþ÷pïJ¦ò0Aþÿ0 ùéÈ?6ÿùýkéÇäõ¯_¥ òÃç/8HþZ=)ù×ó`ÿ;âP~ùk=¿ÿæ?þuË�éÏ¿N(¯àùÙËAþëWyXá.ÿKü¡)<?>~^âwëoGø{®üÛÿ°ÂMýå°þû§Úþ?â>þ]öÿó§øÎüÇ_lõÿvò°Ô ¾ëñÏû_åaý¤ÎDð¯F¤¿:ÎLyþ ~fÎ~Qo[üÿí�îâÇîâ©@o j ó¶¿÷`,Ô².Ñ[øæ zgxþK* 'Àpú:¢¿·*X»Pï5ÄC¤#�ª¿¶¸�òþµÀ[Îó<E/½uÜHpn '?x>×dºà§mhÉÁ¿ÀwÜgç(üúz¾x}\peu/ú*>ü?@dÿßqÁ|¨~þE~çO°ÿÕó§Ù0kÝ´i÷éqøuÑ¿ãyÎhÍ¿üÏï![8~~?C'^ø¿ÏCýCïÁØñOÇã~Pÿ!N{`ø;rÐ¥àµ2¹ï¬¿Pö8¢£è×òá[úW!LPÿлÉe|-þÓsütø_ÞÐúÑqÙ ügsÒ?ïÃYný×s�ýÃ!uÌñÁÿñwÐHÿ]ûErøÛú_¹ iM"HÌÍÈäbþÖ´ÈÖSü`§/"sÑ� Æg9¬øÅ^³L}rKAÛײ�vì¢HwD1Ë.Ôø~C¿/ßI|ú"²õ"$C'#¾Ì[¨Dér=4¢ñóQlñ/\Ð¥ID¸»xÚÒ ÁÓ/B%ÞÅà`ý*>ÂëSs÷®Æ[ñÙ<Áw\+SñÖ-í[×Êßèë*<¼pà¿V^8ðÏ/&%i_M hü©ÄOl ä8ZN%8ÃK¯@~ßæ*üiÞ±PG6u¾ àÏ{R±@ÇivDÏÆ³ÖîðD%qáÚUûïâkôHjþ:<Âß 0"üÙ@ÇnrΦk°:b7毵߿ Ìp%dÍ~É_G$pK(¿;Dj Ñ#hü×Ò[H?þ4ºåô§îÉÔøõÓøPþh#¼DúW¼f8Múm*WôÏ=ÊaD^~\ú8ÍxÙ;¿ÞÉQ#yÐê8 2Áùç¨"Õ=�íþ4Ö_ü öÐ~êCp&¨zAðè4�éGÏ¿\èßÖ<¤¿î8ùUoð÷o¸k¿Ém�wí7¹ ð6ÿB¬#áúìå4Ñ"?3-ö?|ù;ó0ß-ä +ÿX3qò\æÖÛyiu\¦íã7ßüËÏ·¾þö§_¿ýÇ¿þÓïþåçoþúõ·ß<þøÿúûO?¼½=¾úÍ×_ýöñ»çã÷?|ûßþòéñÅãûOþü_~ù·¿ýíùéû~}þôí§/¿21|÷Ë~úß_þù×îùý§ß~ûøø§ÿüqéÝÿ»{ +endstream +endobj +259 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 673 0 R +/Name /Im244 +/Width 23 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=Ì1 +0 á +fìè"ÔÞ,<WéQzJb¾åÞ½fï G8/ýÖ ¸#7Jr¼HAdùgI*qå={ɺ˽= , +endstream +endobj +260 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 674 0 R +/Name /Im245 +/Width 8 +/Height 8 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³©ûu65í�6 +endstream +endobj +261 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 675 0 R +/Name /Im246 +/Width 19 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``¨``þÁðþþ``¤ªÿÿ�jæË��.°&R +endstream +endobj +262 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 676 0 R +/Name /Im247 +/Width 48 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿAþÿùÁþ?;|�%ëÊa¤=Ãs)ßÀxä?ÀÜ#Ùó>4ñdøc ë +ÐI à¤üÉßÀþàÿþÿÿa$;ÃÿÿJuMòÃP" +endstream +endobj +263 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 677 0 R +/Name /Im248 +/Width 12 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãc°g°o¨Bû{>dð¿å Àÿ@G¥~1?�14² +endstream +endobj +264 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 678 0 R +/Name /Im249 +/Width 26 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`þÇÀ�ÃuDaÆuìÿÿ1ðüÇ ÏðÁ(ÿ`ééåoþýýÆ?õ¤ëÉ�À¬) +endstream +endobj +265 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 679 0 R +/Name /Im250 +/Width 12 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßðåÉÿ? rý"~�O¤ +endstream +endobj +266 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 680 0 R +/Name /Im251 +/Width 21 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÇÀþ¿¿ý<ó{Æu ôãýÿBÿ ¨êì,ä +ø|`þá?¨XÝT)�¦ÊÀ +endstream +endobj +267 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 681 0 R +/Name /Im252 +/Width 14 +/Height 5 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿç?ò±Ö÷ +�k +endstream +endobj +268 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 682 0 R +/Name /Im253 +/Width 38 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x ± Ã0i¨p©¤Hå4ñZ%0ÈR¤1ü#eX\É;ó)D~4eOMóªúÂ,j EDǤÀ ÄØ?ÔÜãú>¥ïi¤åtF8èë´÷P't¿å|A, +endstream +endobj +269 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 683 0 R +/Name /Im254 +/Width 24 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿà ÿ¿Áÿ@=ûzf ú`ÇüAùýÿÀþÿüãöÍâÿPûzÙÿò?þ5IÕM�Óì#à +endstream +endobj +270 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 684 0 R +/Name /Im255 +/Width 42 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßþÿÃÿùì0üßQWðAþÝùö u0²Ázäÿÿÿ?LjÕMÕ�5j +endstream +endobj +271 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 685 0 R +/Name /Im256 +/Width 32 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿPÌþjØeXeøP± ûöÿÄ˰#a ZÅ`Äu »þ#Ù T·P�¡>K +endstream +endobj +272 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 686 0 R +/Name /Im257 +/Width 27 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿÿPÌþ ýÃæ>``ø¡¾ìXȶå¾``|Ä00üÃÀÞðáÿA 9P,-V?U�«-Ù +endstream +endobj +273 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 687 0 R +/Name /Im258 +/Width 26 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßÿáÿÿÿ?üa?PÇ ß` òx�?©cÞ@3fÉ÷�ÁÿÿÀR +uSå®+/ +endstream +endobj +274 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 688 0 R +/Name /Im259 +/Width 19 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû/ÏðßþÀÿôòÇa¨ù|Aôÿ ÕM�µÃ +endstream +endobj +275 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 689 0 R +/Name /Im260 +/Width 26 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßþáÿüÿwüaPà HÇÿ?þ?�ÃRbuSåÞ&Í +endstream +endobj +276 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 690 0 R +/Name /Im261 +/Width 17 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc<ÀÀCÌ0ÄFüìÿ3ü#þxÑáTÄÀþùÃA úùb�F6 · +endstream +endobj +277 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 691 0 R +/Name /Im262 +/Width 17 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÌ ÿ¡B¡á;ý``øDêÿ0Øÿɲùö ø°7|�£ìäþÿa8þAP¬nª�¥¥} +endstream +endobj +278 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 692 0 R +/Name /Im263 +/Width 30 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-̱ Â0@ÑÙ´.""ÄîHa<K*8ac �[qñÚ7.®ÅH¾;òóÇ~û²Gß .VeýËKQ¬+Ø1âç@h6O¬R§lÞ0Æ2ÖÝ£çËã}ýt!: +endstream +endobj +279 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F2 422 0 R /F1 420 0 R >> /XObject << /Im39 46 0 R /Im42 49 0 R /Im53 60 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im42 49 0 R /Im75 82 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im264 281 0 R /Im38 45 0 R /Im66 73 0 R /Im47 54 0 R /Im67 74 0 R /Im57 64 0 R /Im47 54 0 R /Im44 51 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im53 60 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im40 47 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im67 74 0 R /Im47 54 0 R /Im50 57 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im57 64 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im45 52 0 R /Im45 52 0 R /Im43 50 0 R /Im52 59 0 R /Im42 49 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im44 51 0 R /Im58 65 0 R /Im43 50 0 R /Im42 49 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im59 66 0 R /Im47 54 0 R /Im57 64 0 R /Im46 53 0 R /Im58 65 0 R /Im48 55 0 R /Im42 49 0 R /Im69 76 0 R /Im45 52 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im44 51 0 R /Im68 75 0 R /Im54 61 0 R /Im46 53 0 R /Im66 73 0 R /Im40 47 0 R /Im67 74 0 R /Im58 65 0 R /Im57 64 0 R /Im57 64 0 R /Im46 53 0 R /Im71 78 0 R /Im58 65 0 R /Im45 52 0 R /Im43 50 0 R /Im52 59 0 R /Im42 49 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im42 49 0 R /Im67 74 0 R /Im47 54 0 R /Im52 59 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im71 78 0 R /Im69 76 0 R /Im55 62 0 R /Im40 47 0 R /Im57 64 0 R /Im42 49 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im52 59 0 R /Im59 66 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im42 49 0 R /Im67 74 0 R /Im47 54 0 R /Im52 59 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im45 52 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im47 54 0 R /Im52 59 0 R /Im44 51 0 R /Im58 65 0 R /Im59 66 0 R /Im44 51 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im44 51 0 R /Im68 75 0 R /Im244 259 0 R /Im245 260 0 R /Im265 282 0 R /Im256 271 0 R /Im260 275 0 R /Im249 264 0 R /Im266 283 0 R /Im254 269 0 R /Im255 270 0 R /Im251 266 0 R /Im256 271 0 R /Im257 272 0 R /Im258 273 0 R /Im251 266 0 R /Im259 274 0 R /Im248 263 0 R /Im255 270 0 R /Im251 266 0 R /Im260 275 0 R /Im261 276 0 R /Im262 277 0 R /Im182 191 0 R /Im40 47 0 R /Im53 60 0 R /Im52 59 0 R /Im43 50 0 R /Im42 49 0 R /Im173 182 0 R /Im171 180 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im58 65 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im42 49 0 R /Im59 66 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im156 165 0 R /Im146 153 0 R /Im167 176 0 R /Im70 77 0 R /Im66 73 0 R /Im57 64 0 R /Im46 53 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im52 59 0 R /Im57 64 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im42 49 0 R /Im59 66 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im44 51 0 R /Im58 65 0 R /Im43 50 0 R /Im42 49 0 R /Im58 65 0 R /Im58 65 0 R /Im57 64 0 R /Im47 54 0 R /Im53 60 0 R /Im47 54 0 R /Im52 59 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im52 59 0 R /Im57 64 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im50 57 0 R /Im40 47 0 R /Im59 66 0 R /Im59 66 0 R /Im57 64 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im44 51 0 R /Im71 78 0 R /Im51 58 0 R /Im52 59 0 R /Im45 52 0 R /Im58 65 0 R /Im43 50 0 R /Im42 49 0 R /Im50 57 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im66 73 0 R /Im43 50 0 R /Im47 54 0 R /Im70 77 0 R /Im47 54 0 R /Im52 59 0 R /Im67 74 0 R /Im42 49 0 R /Im59 66 0 R /Im58 65 0 R /Im44 51 0 R /Im67 74 0 R /Im58 65 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im42 49 0 R /Im40 47 0 R /Im182 191 0 R /Im40 47 0 R /Im53 60 0 R /Im52 59 0 R /Im43 50 0 R /Im42 49 0 R /Im173 182 0 R /Im68 75 0 R /Im170 179 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im71 78 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im58 65 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im50 57 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im66 73 0 R /Im43 50 0 R /Im47 54 0 R /Im79 86 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im40 47 0 R /Im42 49 0 R /Im59 66 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im40 47 0 R /Im50 57 0 R /Im40 47 0 R /Im59 66 0 R /Im59 66 0 R /Im57 64 0 R /Im42 49 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im44 51 0 R /Im68 75 0 R /Im182 191 0 R /Im52 59 0 R /Im43 50 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im71 78 0 R /Im69 76 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im57 64 0 R /Im58 65 0 R /Im43 50 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im59 66 0 R /Im151 160 0 R /Im173 182 0 R /Im175 184 0 R /Im154 163 0 R /Im161 170 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im40 47 0 R /Im42 49 0 R /Im44 51 0 R /Im157 166 0 R /Im40 47 0 R /Im50 57 0 R /Im40 47 0 R /Im59 66 0 R /Im59 66 0 R /Im57 64 0 R /Im42 49 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im44 51 0 R /Im52 59 0 R /Im44 51 0 R /Im40 47 0 R /Im53 60 0 R /Im47 54 0 R /Im57 64 0 R /Im46 53 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im194 205 0 R /Im195 206 0 R /Im196 207 0 R /Im184 193 0 R /Im48 55 0 R /Im43 50 0 R /Im47 54 0 R /Im50 57 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im52 59 0 R /Im57 64 0 R /Im45 52 0 R /Im44 51 0 R /Im40 47 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im52 59 0 R /Im45 52 0 R /Im58 65 0 R /Im162 171 0 R /Im162 171 0 R /Im263 278 0 R /Im47 54 0 R /Im59 66 0 R /Im42 49 0 R /Im59 66 0 R /Im42 49 0 R /Im67 74 0 R /Im43 50 0 R /Im42 49 0 R /Im58 65 0 R /Im44 51 0 R /Im42 49 0 R /Im71 78 0 R /Im69 76 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im58 65 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im42 49 0 R /Im59 66 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im59 66 0 R /Im42 49 0 R /Im67 74 0 R /Im43 50 0 R /Im42 49 0 R /Im58 65 0 R /Im44 51 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im52 59 0 R /Im45 52 0 R /Im154 163 0 R /Im154 163 0 R /Im263 278 0 R /Im68 75 0 R /Im74 81 0 R /Im48 55 0 R /Im40 47 0 R /Im58 65 0 R /Im59 66 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im197 208 0 R /Im198 209 0 R /Im195 206 0 R /Im199 210 0 R /Im184 193 0 R /Im48 55 0 R /Im43 50 0 R /Im47 54 0 R /Im50 57 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im59 66 0 R /Im71 78 0 R /Im58 65 0 R /Im45 52 0 R /Im47 54 0 R /Im45 52 0 R /Im58 65 0 R /Im57 64 0 R /Im59 66 0 R /Im42 49 0 R /Im67 74 0 R /Im43 50 0 R /Im42 49 0 R /Im58 65 0 R /Im44 51 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im52 59 0 R /Im45 52 0 R /Im154 163 0 R /Im167 176 0 R /Im263 278 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im50 57 0 R /Im40 47 0 R /Im59 66 0 R /Im59 66 0 R /Im57 64 0 R /Im42 49 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im58 65 0 R /Im59 66 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im52 59 0 R /Im45 52 0 R /Im153 162 0 R /Im167 176 0 R /Im263 278 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im42 49 0 R /Im59 66 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im47 54 0 R /Im51 58 0 R /Im45 52 0 R /Im58 65 0 R /Im40 47 0 R /Im42 49 0 R /Im59 66 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im45 52 0 R /Im44 51 0 R /Im43 50 0 R /Im42 49 0 R /Im66 73 0 R /Im47 54 0 R /Im43 50 0 R /Im45 52 0 R /Im42 49 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im40 47 0 R /Im44 51 0 R /Im44 51 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im70 77 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im40 47 0 R /Im44 51 0 R /Im55 62 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im51 58 0 R /Im42 49 0 R /Im42 49 0 R /Im79 86 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im52 59 0 R /Im44 51 0 R /Im40 47 0 R /Im53 60 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im44 51 0 R /Im70 77 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im44 51 0 R /Im71 78 0 R /Im42 49 0 R /Im44 51 0 R /Im66 73 0 R /Im42 49 0 R /Im67 74 0 R /Im40 47 0 R /Im58 65 0 R /Im57 64 0 R /Im57 64 0 R /Im46 53 0 R /Im40 47 0 R /Im42 49 0 R /Im59 66 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im44 51 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im57 64 0 R /Im58 65 0 R /Im43 50 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im66 73 0 R /Im43 50 0 R /Im47 54 0 R /Im79 86 0 R /Im45 52 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im50 57 0 R /Im44 51 0 R /Im48 55 0 R /Im43 50 0 R /Im47 54 0 R /Im50 57 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im53 60 0 R /Im51 58 0 R /Im47 54 0 R /Im52 59 0 R /Im59 66 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im44 51 0 R /Im68 75 0 R /Im154 163 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 280 0 R +>> +endobj +280 0 obj +<< +/Length 693 0 R +/Filter /FlateDecode +>> +stream +xµ}]³æ6Þ}ÿ÷r&UýZü%íåÖî¤Tmí{k/â\ÌØíµ'Çä×G >Ôé¹pû¯@ �à×_ßýÛã¯ïÌãoïþúÎ?çaxÏ!ÿëÎãÆ§ þð¬|ûÓ»¯þÛOnyüÓ§wÿVÀ»gÀð~�ðÞ^áã×%|xN;¼àwÏ9üèjø1@ü#Â?ÎWxûç+~ë7xÔ?Öð~¸Â/a_v¸ü@ÓÂohþ@ñ_ <¾âßÞÿ õªø§â9ü:üàÃDÿ*wÌø¯£tÁ?í5f¿Âo-VÜÐÕ´Ãøñ9ÍY+®8¶hMðO3d¶Ækfı17 ÖYr�±Z�~¥ÿ PÝ÷4ÞC®Æ_í¿ü + àÿ|e@Uþ 4`Êønü5hì?m�íçß4Qã§;CNO vIþã ÔÎó&P ?ÚÝ7ý5núGÛ/7 ý¯åW¥µýÿåäÙÿ¿Eô´þ8÷¶ ØAûYÛouü<Ôß +~zÃ#ù+þ«ô¬ íÃmÿ´üüçVûÇÌ*þ :ÀÀÇöÃÍ®òoøÁü¥èÏç?^4þ#Çý÷ÂÏÛO?ÀùØOÞ@ý8æ¿Çþ?°ýôö¶ÞÂþÓòça�[û*<`ÑøaýóÍßÈÿTøíÏ¿ñmþáøWöKå_@üçõßO0PÉÚ2m&@Ö@ôuþcúsäÏÛ#ñà ?à~AôÿÏ¿FÆÿ_#þÿ ÷LHþÓ~ÿ*)Òü;Û"þõ þU03?$¿3ß·DM¿ðÊøËüÕÿ:#ðÿÿ>ÀñçãcPÿ+ÿKó߬AòÏûoÖrüSã?øWëo�5Ö�:ó¿@Ûã7h?FÂþ¦ñó)ÿJþHò'ø:¤ÿô·uüê?´üzþ¶ëüÃØÞ¾É~Yñ¿ãWË_h;-IþJøöìHþiñ??yÿÓ.hþâýO7 ù÷¶|üc ý ùãÿòël åOá þCGüÇ¿Wé÷´JüèüvÄßã]ÿKàüðùoý§üIxÿæ&Ntx®ÿjü>CþÓHnúÇço°ÿEÇ9pÓ_µòßõøÆ4ÿ<ô¿xùÏù¦ü+ñEòâO,ÿÞ!ûÖo°ÿî²µÿ®òßCúiÿÙ¯þÛ[üg?Bù¡ý/ã?> þõ¥ÿÐÿâ×<´_¼ýÉñòãzóFòß'ø:ØÿÏøÁü©m`pýjþb<¿Còßçþë× 'xÞ~äøÿL?°8þ1â¯rxgýÜÌ?½~lfÔ^ÌôçO¯?åüCC~tü¯òoAúÓ±ÿ`@úÃëÎ?4õ_dþëÿ?Z¤¿õúÚð_ÿ±ÊoeÔøsµ{üyÒ:þÔòWÖ£þ×ù+2ÿ5쯿Iýiä?îòÚO>þ´ì?/¿@üªì¡þðú;Cü´ÿó ýW×ÿÈ?zÿ3¾#þ7þøÙÿøÚ>þ·ÈþuÄÿn¢ôOÿ!ÿùøßsôëñ??;âÿáïÿáüÍ@þ_OüÏõ_ÿ'Èÿøöÿ±ÿÕÿCù£ã· ûÙÿCÿ§#þÞ&ÿÞ ûÁÞ?p3þòÚ¿¡åÞ¦?Þqú£ÆÏâç×ß=ì?ùùüüéaüXËo3Ðì¿2~ÐÿéÈÿLÐÿãHþ í£í\Z?>ÃÓùã ÀÏçò3~~ÿäÏÏðôúé¶ÿ`Nðõúéø/ø#G6þïûçmÿ±Å^ XvÚç2× T#¸ÊøUõÎO³o]«D}`½9â� Jêæ],Í:"&VZ +PáÁÎDñâyºù êÂʪ�»°ÈzW¨µ`Øz&¨Ç15` ëPHGkq`¯±p¢À¥¹ôÒ@eÌêq4m "æ6)<X½aõt1`~_ì¸bÕ]& ë#Èi`}ÜÎPúè«.¤qMýÀ0(<X¤à0ëizNãcZÝO¿êùO[y46W¼HÅ8Ïy1±b 8Ê?<þãñóNyü÷õ¿?¿ûÿë1<¾{·C®§qÒrlx\Á¾Þѯ,2Ã?²;~÷\L.¿ä²`Ë�môGKúyxίè×è#¬gô©üR#7 +XÑB¿·t Åú0Õ̽_²ì¹Ü@¾·s OÅ+òM6Æ£ïRÎÈíê3 Eßú½¥},^ѯë¼úÉ}*¿åpB+Zè÷ô±xE§/:/EÑL¶@+ZÈ¥Ý\Ú=#ßî¦ÀÊý²ú&¡ì{®h¡ß[:ÐÇâýdVÓgÖKù%ýsì¹Ü@ÛÉÈSñ| Ö-ãÅ¢èì\àÎ-äÒnB.í¯³ÆKù¥(GóS�Äú½¥},^ѯ~Öâì±øRCiëri7!v#r·M'S+=ÛÚ«©Ï ½¶~tãÕÚÊ̱µ|;©X}8WÎ5Rnâ·Ê\³7|¼mö<&Ø¥ à¨TØTäò;¬µ";ÈØj +ƼòiQÀîDDUF[±ÖÄ5Sk2ªMÆ\H.Èpnxú°dl5ÖTä +AyÀ4(`w"ÊÆZ12 »ôyÔd*¨Mè!e(ÓÆ )9b±üRãTB´æ¤èzIÓI.sÓg¹<f㻲"b,a4f¹¼$Lý¬(' + ç¶²L^Hù:6|(+"ʦEÄ iÉ+Q¼Ô¯r¢à�hpn*Ëã �®0<¦rÇ5XK³Gð¯ÌÕ²{ÎìQfƤdk£7EÌbu)Rsgpâ#e(÷×Tt¦ `p'J¤.Vëw ¤nnïî5e«»Q5gìYd=ùT"~±Ú2+5г¤k(NdÉܱãU~SmýU._ä÷¨`h9·Eykò0Þòáv¬ÞõÙ´5 Ó)1È´¦êÂñïrÅ,~nïé1åÏ'ß7OÞsò¯å²+!5M¯#·¦ûrr¦êÂéïrÅ´n¦Ç!mËd¿J0÷Z?_>ó¥Ã1 ËT+þFDyLõ+ä4Uò8²3/å\*É~õëãØ0Ny¹6®ÌXgDSÏû<ÏgzÊÈ¥*Ö0)8f÷E2¥gNßnÀdS¶à3þÃ#ØNÓ×^ê´c2öâ¤Â'Èø¨.Nÿ¨r2A§ÏJavu]®¨9c?| µBs¹ì¡#²K µoá¨ázoÖÖÖ"o!Vͽxã<^ú¨éèDAaSG$бÚ\¿+ú0C&×ttÂØáµ]³RvØa¿´ÃYCÜAÏ ÿamÏÙ(9ׯ²]¢ØeÊ¢|àÛ<=Ú6Ûzp)ɱ|r¯kx·7c1ZÛ@¼W9Õ²%ÌP¯ÙÅíMN0eHæéúY. ]RÓáöhY$·jãTS&1s¤REÓði3DU"aJf°üì$Ȧå»È'´ìm:ÆÈp=é¸6/¹0ùØf}ÿ_b{ÏaxüçcÿßýrWÄ7?÷¤Fjo[wæh0Sù{à·c¨¶yÎîhr»ÍÏ»£É\/W¾§~;è-UPÜvÛT].g×|<%Aô1TDoûL]1xníÁËåÔDþ&úíj¢·À¬<·¬f¿¼\&å{è7cøÑò0ºRËSQ´<ø¥Ôò\<ÈÿRí5M¶=uË¡á©5<¸´+ßKüö6D' ÎÇ%¤Ñ©ür5 +=4<Ñoo³EtÔØ`C\xJÊ/GÙÆ§ïSýæ6D'ÝvÇéÐðTÎLÒé{'éè··Ù":jìPjx*¿å³ç2$úÍm¦¯Ç-s\ß7îp[6êFÒïó¯ öE·}?j·ÄK¸±bÓúq¼¤ñ¶p0Éb²ÕïsZûaûö¥ñª,âÇ=µY0aj(Yú÷1&ÝØ~i¼z%Kh¢÷lÃ²Éø9iu©7ÑÛ¦;ø ñª<ÇÊ%²O3iÐ".-Qõ»ÄÖl¿4^½¸û¨è²ÓdÍ¿§7Yúwßg_¾4^ÍàãµÛÉDÅf-¥tÅpíI½Ã¬U¿³2þ]ÝÊàqK¿d3Áù÷%Ê»DaÕïcLßè}ûÒÈæÔrB,Zn6ÿÐJÄVýÞìàÆÄvP2ÕÉåI-çÎóïi©R¢»ê÷ä"½ÒÁ/ì`N~ûèò'Sñù÷9zÓ V¿û"èüÒØJ6ßI&i·h9»NQcõ»;Ï L ¿sÛé:¹lÈÆ%Iz´\G±ü¸×Ѽ£éY.þ/w/e<³G'åÓ÷ýä]<mÏ1¥%³ç¢UÉ[.ßßðoâéöe@<²£üe=AOÓó[{vfdÌ\<.#ðãû~Oï.¶g'E5V¡(ßßðänâéòܶqÜÙìÄjÂv®$;åÇmWí^«}¾Ù¸©,mDg˧ï _ìvË}¾×Ò%±!9�b#rù=ákÝn¹Ï·Úð\áñãuÉFåò{ºÝrï´mr=EcZ˧ï _évË}¾Ñ&ÙÜl²G¹üð n·Vbçx¾ÈÙ´»Aj2GÍËQ³ÝMºçãjã?~x÷ÕìÃ<>|ÿn;ƹ ÿÅ÷ÛÙÆÇÞÙUmx¬ +º¬\ÿðÝãw~ÿøðçw«»àæµ[Í«?U5/UÍǪæQÕüZÕüXÕü¿[-ó;¢éþñÍ_ªO·ºúø¦n¹îEëßïUÿüa¶1íþË»]ö4Jñ%·ìi<5ÊnùtR«´C¼ÞB¶ËØþ×*h»ëïïýs§¦*%Qù[UóSUó§ªæcUóKUó¨j>U5ßP?í|GPø+«þ¦nçDß¿j~ Z®{QSx(Y®ú`YÝsCk3 ¶¢ßQSCÕÃXÓ]ÈEV/a¶ócÞ._w¾oMIå)Ûå.û\ GMZË3ÉÿÅ÷û«jÏÅo©åudùDè¸í5Ã^ó>VmS´õ³öá:ûc¬6òáÚXc«+hÂQ&èø:k êïÎ,Áî>jPMZϬ5h¬i +Ý#ì²¶ëéçÙ©zoǧ³¥ §Ë2f*©éa2\õMßTùM$~ÚÐ;'¨×¾áª¯¯óî)mçV}Üi6z¿§ú\:6ÊÛ]ÿÓ÷¹ÖyßÞfô9·K÷Í«}ç½YâFõTórªÙK ×7ðGÐØÖFæ~§±2ØØ¶]Ú´¬~È*<ûþöíç1_²ü}*·÷Õ¼Ã×Éò±+Kfܼ +o®xÉF¶g9ï׿¼õýÏÍÒo+ùö±Fóµë?²«g+Qj>W5?T5ªßvÄ7TáÛâ&Û,+_ã]YTSÍË©&n-¡Ôª-"É{à $Dz^¤nÏ` +©åCêPËß§2´on3I²±ñ 2ä{ÅöW</#0GÍdyÛ°R¼ ð¿ËOÇ5UêTy¹æ3Qó¾ªù©ªùTÕü[ôÒ«lýî01DQN/§hPJÆñ®$ÐGëQ sãjJׯsÌvÅ~61*ù=-ü$±«w}Iö/Wß<Ãd÷{8¨ar,Oi[JN¼ï þôÂt|7Uüt´\ó¨j>5ï \ßV5ª_nQXz©rõGXBg2³ä´£¬ö¨QÏøUGJD+2¢¤¡<îÇËjHKDV3¹ò{ÚX"²Zý~ÙÐò÷Ç´ÂÎ{q»;11<i~ÇòD1ê"^/ÖIuU¾³^¬ÔÔôJÍo_¨åºæ=Ño«OÍ Æ]#áâ#¬q^¾d órò¥¬®s¤}Ñ4ΧÅ_Ñ8ßZÜÉõ)é.ï%äI~Ëïûç»xF¹e?õ?ºÌϤA.³3V8ÄOçÝÓ(»ËY£Vö^d1×|¬jUͪOUÍoUÍÏUÍw®ÏDÍ{¢_ß4ÿr媱þëÓ}iY£RÍË©&ÕJ½4M_bà ٹkç¢È¶Kw#.ÈF~Ñ £\~ÏÌcw[NéÕkÛÙµýX´ÊgÆ +cÉ5oгm?Á| Ëþ«ÏUÍUͪkj¨CBsU¨?*%t§í6M85>^Eé)®¢43ýBÀvCñxnya&nèßnÚC¾!~aR^H:ãïx!:½ðw¡¾aÞÝÐ\ßp½÷?Ý|©" ¾¢ùx"y»àøÚ�ñÆK¢ ݱá õFS|cÈ#xþôÆPúCo�k ÐoTXøèWÞh±üéÖ.HÁóÊ5?ÿƬôóo̦7>Z¨Ò/¤A¿*?ÐðoÙðóoÙôÆ[oÙ â§ß8³´`ôgÛ}ÊÌ ÊÏõ#jnÎ@òFÑ@ñ¯õÆQK~Ô7VNÔ7¤?üSÚ?þ3gfÀþ-yc¹e?õ7 ý£ß¨téOÇøyH?ýFö?Ýå#jöcÚ¿7¾_�=Hy#¹íA*ú3qú£½ñá ýâßø7[ü¯À$Kàiþ0õÃõèøÆÆÅ¬_¹W_iY=°èî®h~_ÂÔÏdÙý²!R`lRá)$TXY©)T}æÖ¢)=Óv!y&ÉüÊ3;Ðñ.¨.ÿL¡÷ÈÔ* ?¦@>ò �è5í#¨ü3[#èÏ$q!öÌ_È:«ÙQC¸ôÌ<××Â¥g®.ðÏ$Ï�¾ç¢àù \Æï.þà<Á?Gý¯CP5²´<°Ê3WäÿÌô<ý×YãO°fAýïxækãO»`Ûq·È¿XùÓR_¿#)øWçÔÔ +þñÕùS¦Ù^ÿ¬ý¯èWCÀuþòC?Ó&Ï_Ævár +¢Ñ=ô·ãìôLñ]ýßN½Eÿíø×BOÈ~tôòÃëÿø×¡ÿ´¿|6@þó!´?!Aó_Gfeþð÷B0ý>shþêÁç¿höÓyÎ~ªÏcûA§ðÜåNáßÙ²j +ûOt +oK0øUþMÐáYüñ)`7CûK?ëf¤¿|ü%ÏßõÝÂÊ¿?Èþu<skÿýRð3þoøßê3·òO»öS{&ů=å¯ãdÎPÆö&Çtüä±ÿÃ?sã?>ÿ0ÁñããWÿíx/~ñ?ÃóøÅ>Ãóñ³Ì'øøyLùÃ3<?|ü<Bþññ³ÈÏ%pçãg¿ýWóG3â_ϿƼ?ð¯#~ÿÛº{ñ³ò×± ö->~¶püùøYæ¯FÿÕøÑ!ýé±ýêØÂìWGü,óWCÿÕþ¤¿ý-7õßNþøÛjüUùö£?Uþ 5~ý(~ÖàáüÆO[çæ?Õÿ'í¶~çð/4Öï´üè½?@úß?@úß?ðüªùYÂoÌzþ³jüíGOþ`¤ôGÏ@ûÉç&Cê¯?óOGþ�Í¿=ùX?-ºyë'ù©·ªögöøÍÈWâ¯ú¿ô¨ÿ7ô__-~ýú?üüå¡ÿSÛ5þÅþÿÞCþóý¡ÿ@Û?íOËÖÖß¡ýãó'?øý+ÓHÎJü+ñ»qü?Êþ<o¿GøkýÕ7á~}ý>�øzÿ¾ áçäo_ì?42áiûcdþ8ÓOïÿÉ[øüSé_ÿøüY~~ýÉÿÕü£ÇÏPþ;âçùMü·Öø5øé¦üJüËé_sýü¶_9~nà×N!mëçûÂ|Ç)$;Îdp�èUîBÊ{øTß =Û ) +iÛ9 k¬x g"°Àv wá¡ é° áÐøS@ ÚçúOÐBß4¡y}jãÒ.fc^ aô]øÇ.|¨Á»ð¹)@ßEä· º0üætAxùàF/a¸Ù"Nbs3_þ[ò£ gÁõ%tÎ ÔCp4~| +"o¡oȾ_ð[)¬Bß´ßÞAûM§°¼s¡¦0²| +ËÓ.X#p3Ì)¦©-ású£Ê?áøSl{`ô)6/)Ä3<zò§Ø¶Àxý¾ ßðú-eäÚðú)&5!G0Îøiý5#¤¿ã¾Eðt +ʤùo[ +º2â7èWù')ÿê%lY÷@~&ZÍñÓú»máòCë¯YÐøóúð×pé[ø%?*~ðwÐràϧÐò|·üK +a ð«)ðó[mZB³Ë½SÖ£ñã�¤0öO?�õÏ�dù-t9ÐÔ_m ÿvFòÓqÃðw¤°7êßä§Æ¯.!ôñúéx(ÿüæÏ-vzýuÐþ0ñgÚBü»öÃynþRÇßÃùßB0róÿCþÑGP·-ü{þå_'ð´î¶¿'ðN𠫯¡£ °#2CìS�3�>´@È' ê8<@ p[b³Ì\#% ?ÐÄd@:pûÏïá¶0�¼�òÇãwPþù=äTþËEn ®ð#@ø=#ê?@¥3s Uþ 7êßÄ`U~&è�Òò'{ì¼ÜJ`Ê<=Ê3|Çr@Ïð|Súé¦\$¸%½À/øùH@ýçf ô<m?eCK~tü3 _å_ÚÜâ*?iþnÉ~�§?zé�±âGÄÿ cQÿùEã×±nÑøuìÁHD?ýÀü'üñs¼qw VAtÇ-Hh²¿ZÀÍ >S�áÕ GË{&0h ̨ú"H0èBp¨ßÉ/ ÒÂ8+¨Jñ8gᬸ~Ç?~hÅY(il³½Z"ÄóG4w$r,ôcøD»K¿ÀsvHóÈñãæ¹¡ÁJ"gy ÜKä8ñæ¡DiÁÔ<ÆÄùªüC?¨#²@??²·éïÂÅjý¨ü(éÐ~t,¤~ý.Gé~¡ÿôê]zõµ<´?yNæ~É# ñ3K%ÀÚa`¬áA;* 0%T +4!f¾°r<m&Ø®v.xÈïGdúôú}"j,rQøJõÍGs°vAøùóìÑßq=@þÑç¡ä>¿6ýJ,ã.ôóñi1îOÇ¢ÛyZþxB6´ø§z±?~;õúßs�ñÃmÚL|á_Çf â¿YÈ?> +²P~ù+åGö_Ìu?l&¸«?² ¥?ý' ZöS?�ímløùÍ�´`þQòé8Âv¯@y¡4u!60s LÕjX<¡°ÅÑÒÀOôÙ@qÐðGúA"ÄÀy?ÀeèýD�:&ëù·ñ;Öka(Â*aG&¸ã<ç\�5¡ +óWÂaÒq�Êq+}:ÏÆ Æ[ËÉnBý¯UùÃ.¿] 0~.@Ç|¤ÊÏä¯c9vøùýô¹üÃðýÔ·@ú;¶@ûɱ³zåNË|íùG»R³ßjFÒxÓ½+a=´?|Oó[!dk?ÿíNæ¯póJ5I£à{®ä÷?$^Ò(güGúg +k?ÿ¿å]¾~þ<AÚOÛæv%�ÿ+dþ +¯_ £_ À¿Â§ ¨3<eòO_+Wò·ø§/§#ùëÁ䨿|f!~~)×¥u¸m_çkK¹z×BùWC(õLùEï.äÙPG:ãh&Á! o¶Ó@©¾T #1#Ú¡B32¡üJ¤]¸)D_)þéëAÎß*6äø)!ü�§ þV1Ưãa:à;v4|ÓqBÝÓ)[òd@Jx³�Ê|�ÚñRóÈ¥ Íf¡uX¶õ_à¶sýÓ£¡ÑKAnBBÄ/ÉÕú!ä�4B=Ûú¡äã@èÇðq\ߦ_»óCõ8 `ǹjüu«¶\¡ëÞäÇzñK9ÞCùá·Ã8¬ãiÀêæ8¼1«ÇJBHN\ëjÊÆZxC~qøØº@YÊñ_¿WAÅ/qx¿¶~ðüÓ&Á]àéuÇáù<@ýïÈ üy�¿Æ×ïeÑó�¢¿¹ß?=�ñwä üÒ÷úÿò¯Qò×ñ:ýÀÉ¿Hy|ý^=À鿾-ÉGÀ!ùéÉÄÕ¶+öîå¼A Ô¨ç +^Í´.÷»°£baÏëzP:ÖCäoÇ +tÜMHÏíøþ&ÿÛñ ïØÑ< ùé¹ßÜ4¡iG³ì[K¾~µ_Ëê;Ú¡ íxïmS .20Gá ýUågø;bpÿîïNAyGùÍ)Hn§¿;Éíôw§ ·ÀÍÕs?mó½i +êïNA9 +¿9yhzV³¡ îXÍøûW³&¤±}ÓäÕì¦ h¬fß4á9¾iÂójöMî± é¾nsoÊrÿúáx}Cùà;¢ØÀ£,ÖëÄ]ðóQ¼,Eù×/GPù<Åýú àï¸ _¢hÿúå*ÿ'É"Å3ÛE:Á×Kõn²¨¿9d?u9ÀN¿h8ÃwìÆ|GdDôóÜmò·ËÏ àNHØ.Ê¿óÀIc´ûÿúíxzþÞnW¬ûÏ?p/'8?måÃVÿõ<ï¹Ü`Aøù ý²qIÆÆøé þó·{æ,NC~Õ, øé,¤µÿôåTÖAþó)t¹ÐþIÈ?¿.jéÂQÿ{R8È~w¤pÄÿjØ}+¡ú¯¿å×?h¿:.×¹ùGGò_pêøAûÇoåØRPüi[9 ýâCðñ¯ã8lÿ:^§àüõGâ_k^}àJ?MÂÊöºä?}¹V¾T¡©ÿJ +ÚÏöéUôí4I-¿jo³?Ú_îrò¾ÜÌAûÛ±ú[&? 5#þñ\9h?;^Y¸ùS?Âá×n'ßvÁøÏ ÿªÙoy ²í¿áäö@$Ðþuåßý¿×-ØùO¡ß!þw\Ê!ù3½?Ó_`ýß×/lÍÍü]·ý¿äïnÎÿ~âü·Öù[ÿ%2{#Jüâzã'#²Ïðüåá;.°?9â(ü*ÿ$Øàÿó�¾# KØþë§a&�ßs!âÇ óøßs!ÅúÏç¯Äþçíu=ÿyÒ¿z]óBôÛÊ}¹jÞ Ó°zþâïx`É/?øÑ"ùAú«ìbrH~øü¿õüêð3¯]*eeýî4~èR©Fþ§É?-ÿô¿ãu�í7d@óOÇë(´_üë(Ù~÷^GÁöeö»ãZJ8Óù[7pöCÏßpóg3ÿrÓÿØò/oñ? þÉú7ù΢ñïÈ9VµüÏ|sþL¯[ø´~x¶ÿôú¡¡ýîÏáùüCþ½~ï$ÿÜmÿ%ÿðwÜF2Áñ£/÷wÙ~½nÿôü ßÛ< þñùÇú_Tþ*æ?XÿI»Íã.ÿ%çOúu:yÜãßÿþ[Güý¯Ç´ÿû§ ÿé-¼ò¸G{þÕòüªù¯Î_üm2âçå/@ý¡OÊãwù'ù.·í9EtçO!¥Ç5.ðùÁóû'ÒúÁß¶àáùü¡I[ø·!_÷µ=Qÿù-¸ò8Fÿjÿ'4þuþWÜåöºæðÓ[ eÿÈ¥ÿô)>yÜâÈsMòâ¿Pÿ;·@øyÿu{Ýsó_Ïðµÿªî âIøMS@ÿøáÝW0óøðýjF7øÇ¶}:ýñá§6oµÕqZ¿ùîñ»ùôxùñÛ?ÿúñÿúOxüåOßýöíÇïú¿ýúó//o~÷í7¿üáùøúÇÿùñÏ÷>þË?|õÕßþö·çç~üõùóÇÏ_}c¦ðý/üùõ_7¸çzùýãÃßýóºÿâg +endstream +endobj +281 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 694 0 R +/Name /Im264 +/Width 5 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øH@ +@¬rµsy�vª +endstream +endobj +282 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 695 0 R +/Name /Im265 +/Width 21 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5» @Ñk(è´2± Á1(¬eáM\ QáÆ§sá¨yåîDí»~MÝMlå+ØB÷ÎøÄ, 49,¡%8¯Uý÷ãvº·L,ú +endstream +endobj +283 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 696 0 R +/Name /Im266 +/Width 25 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÊ1 +@á_¶ØÒZ.¹ ¸õ¹G,,+%ÏA!âaf²Tâm øelÝ&+½;dÿÓºùüD0¨T<6Ë©íKn¦ltÄQä?¨6éwÙDñ>¯Pà.¤ +endstream +endobj +284 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 420 0 R >> /XObject << /Im267 286 0 R /Im268 287 0 R /Im178 187 0 R /Im178 187 0 R /Im179 188 0 R /Im91 98 0 R /Im179 188 0 R /Im83 90 0 R /Im93 100 0 R /Im92 99 0 R /Im87 94 0 R /Im180 189 0 R /Im83 90 0 R /Im89 96 0 R /Im181 190 0 R /Im83 90 0 R /Im93 100 0 R /Im88 95 0 R /Im93 100 0 R /Im91 98 0 R /Im94 101 0 R /Im74 81 0 R /Im39 46 0 R /Im47 54 0 R /Im52 59 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im58 65 0 R /Im59 66 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im58 65 0 R /Im57 64 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im40 47 0 R /Im39 46 0 R /Im58 65 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im70 77 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im69 76 0 R /Im42 49 0 R /Im55 62 0 R /Im58 65 0 R /Im41 48 0 R /Im42 49 0 R /Im48 55 0 R /Im47 54 0 R /Im52 59 0 R /Im39 46 0 R /Im59 66 0 R /Im44 51 0 R /Im42 49 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im58 65 0 R /Im57 64 0 R /Im44 51 0 R /Im52 59 0 R /Im53 60 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im71 78 0 R /Im58 65 0 R /Im50 57 0 R /Im47 54 0 R /Im39 46 0 R /Im53 60 0 R /Im47 54 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im50 57 0 R /Im58 65 0 R /Im59 66 0 R /Im42 49 0 R /Im51 58 0 R /Im46 53 0 R /Im62 69 0 R /Im67 74 0 R /Im55 62 0 R /Im58 65 0 R /Im42 49 0 R /Im75 82 0 R /Im42 49 0 R /Im43 50 0 R /Im151 160 0 R /Im146 153 0 R /Im153 162 0 R /Im153 162 0 R /Im174 183 0 R /Im157 166 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im62 69 0 R /Im45 52 0 R /Im58 65 0 R /Im39 46 0 R /Im51 58 0 R /Im58 65 0 R /Im67 74 0 R /Im76 83 0 R /Im151 160 0 R /Im146 153 0 R /Im153 162 0 R /Im153 162 0 R /Im174 183 0 R /Im157 166 0 R /Im68 75 0 R /Im182 191 0 R /Im43 50 0 R /Im47 54 0 R /Im50 57 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im40 47 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im53 60 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im71 78 0 R /Im69 76 0 R /Im42 49 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im79 86 0 R /Im41 48 0 R /Im42 49 0 R /Im58 65 0 R /Im59 66 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im58 65 0 R /Im57 64 0 R /Im67 74 0 R /Im47 54 0 R /Im50 57 0 R /Im66 73 0 R /Im47 54 0 R /Im70 77 0 R /Im39 46 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im171 180 0 R /Im229 242 0 R /Im204 215 0 R /Im210 221 0 R /Im184 193 0 R /Im171 180 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im40 47 0 R /Im39 46 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im47 54 0 R /Im47 54 0 R /Im45 52 0 R /Im230 243 0 R /Im44 51 0 R /Im66 73 0 R /Im57 64 0 R /Im46 53 0 R /Im39 46 0 R /Im52 59 0 R /Im50 57 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im69 76 0 R /Im55 62 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im69 76 0 R /Im58 65 0 R /Im44 51 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im68 75 0 R /Im62 69 0 R /Im47 54 0 R /Im50 57 0 R /Im42 49 0 R /Im45 52 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im44 51 0 R /Im47 54 0 R /Im39 46 0 R /Im57 64 0 R /Im46 53 0 R /Im58 65 0 R /Im146 153 0 R /Im70 77 0 R /Im51 58 0 R /Im40 47 0 R /Im45 52 0 R /Im59 66 0 R /Im58 65 0 R /Im45 52 0 R /Im42 49 0 R /Im206 217 0 R /Im58 65 0 R /Im53 60 0 R /Im40 47 0 R /Im44 51 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im59 66 0 R /Im71 78 0 R /Im44 51 0 R /Im45 52 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im40 47 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im40 47 0 R /Im44 51 0 R /Im48 55 0 R /Im43 50 0 R /Im47 54 0 R /Im50 57 0 R /Im58 65 0 R /Im39 46 0 R /Im269 288 0 R /Im47 54 0 R /Im57 64 0 R /Im59 66 0 R /Im230 243 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im47 54 0 R /Im43 50 0 R /Im39 46 0 R /Im47 54 0 R /Im45 52 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im59 66 0 R /Im58 65 0 R /Im45 52 0 R /Im42 49 0 R /Im40 47 0 R /Im44 51 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im59 66 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im45 52 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im70 77 0 R /Im44 51 0 R /Im45 52 0 R /Im58 65 0 R /Im50 57 0 R /Im66 73 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im151 160 0 R /Im61 68 0 R /Im43 50 0 R /Im42 49 0 R /Im52 59 0 R /Im76 83 0 R /Im42 49 0 R /Im43 50 0 R /Im21 28 0 R /Im30 37 0 R /Im33 40 0 R /Im150 159 0 R /Im17 24 0 R /Im71 78 0 R /Im146 153 0 R /Im153 162 0 R /Im153 162 0 R /Im174 183 0 R /Im157 166 0 R /Im68 75 0 R /Im60 67 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im69 76 0 R /Im40 47 0 R /Im57 64 0 R /Im57 64 0 R /Im51 58 0 R /Im42 49 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im69 76 0 R /Im43 50 0 R /Im40 47 0 R /Im45 52 0 R /Im45 52 0 R /Im42 49 0 R /Im39 46 0 R /Im51 58 0 R /Im46 53 0 R /Im58 65 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im69 76 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im39 46 0 R /Im42 49 0 R /Im69 76 0 R /Im42 49 0 R /Im43 50 0 R /Im59 66 0 R /Im58 65 0 R /Im45 52 0 R /Im42 49 0 R /Im68 75 0 R /Im229 242 0 R /Im184 193 0 R /Im209 220 0 R /Im210 221 0 R /Im207 218 0 R /Im171 180 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im40 47 0 R /Im39 46 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im39 46 0 R /Im52 59 0 R /Im50 57 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im66 73 0 R /Im57 64 0 R /Im46 53 0 R /Im44 51 0 R /Im42 49 0 R /Im42 49 0 R /Im39 46 0 R /Im48 55 0 R /Im43 50 0 R /Im47 54 0 R /Im50 57 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im47 54 0 R /Im47 54 0 R /Im45 52 0 R /Im68 75 0 R /Im60 67 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im40 47 0 R /Im44 51 0 R /Im50 57 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im40 47 0 R /Im50 57 0 R /Im66 73 0 R /Im47 54 0 R /Im43 50 0 R /Im45 52 0 R /Im58 65 0 R /Im39 46 0 R /Im45 52 0 R /Im40 47 0 R /Im48 55 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im44 51 0 R /Im39 46 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im42 49 0 R /Im43 50 0 R /Im45 52 0 R /Im47 54 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im47 54 0 R /Im47 54 0 R /Im45 52 0 R /Im71 78 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im67 74 0 R /Im42 49 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im44 51 0 R /Im58 65 0 R /Im55 62 0 R /Im40 47 0 R /Im53 60 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im66 73 0 R /Im43 50 0 R /Im47 54 0 R /Im51 58 0 R /Im58 65 0 R /Im51 58 0 R /Im40 47 0 R /Im57 64 0 R /Im40 47 0 R /Im45 52 0 R /Im46 53 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im42 49 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im43 50 0 R /Im42 49 0 R /Im70 77 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im59 66 0 R /Im156 165 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im44 51 0 R /Im40 47 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im44 51 0 R /Im58 65 0 R /Im41 48 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im44 51 0 R /Im58 65 0 R /Im43 50 0 R /Im42 49 0 R /Im50 57 0 R /Im47 54 0 R /Im44 51 0 R /Im45 52 0 R /Im57 64 0 R /Im40 47 0 R /Im76 83 0 R /Im42 49 0 R /Im57 64 0 R /Im46 53 0 R /Im57 64 0 R /Im58 65 0 R /Im43 50 0 R /Im53 60 0 R /Im42 49 0 R /Im43 50 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im58 65 0 R /Im41 48 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im44 51 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im59 66 0 R /Im42 49 0 R /Im42 49 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im42 49 0 R /Im42 49 0 R /Im68 75 0 R /Im184 193 0 R /Im270 289 0 R /Im210 221 0 R /Im184 193 0 R /Im228 241 0 R /Im197 208 0 R /Im271 290 0 R /Im195 206 0 R /Im228 241 0 R /Im171 180 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im40 47 0 R /Im39 46 0 R /Im44 51 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im47 54 0 R /Im57 64 0 R /Im42 49 0 R /Im58 65 0 R /Im39 46 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im71 78 0 R /Im59 66 0 R /Im42 49 0 R /Im39 46 0 R /Im47 54 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im40 47 0 R /Im48 55 0 R /Im58 65 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im73 80 0 R /Im45 52 0 R /Im42 49 0 R /Im39 46 0 R /Im44 51 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im69 76 0 R /Im58 65 0 R /Im44 51 0 R /Im59 66 0 R /Im47 54 0 R /Im39 46 0 R /Im42 49 0 R /Im58 65 0 R /Im45 52 0 R /Im45 52 0 R /Im55 62 0 R /Im40 47 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im42 49 0 R /Im73 80 0 R /Im45 52 0 R /Im42 49 0 R /Im39 46 0 R /Im44 51 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im67 74 0 R /Im43 50 0 R /Im40 47 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im58 65 0 R /Im58 65 0 R /Im45 52 0 R /Im58 65 0 R /Im39 46 0 R /Im47 54 0 R /Im59 66 0 R /Im42 49 0 R /Im50 57 0 R /Im58 65 0 R /Im46 53 0 R /Im41 48 0 R /Im58 65 0 R /Im43 50 0 R /Im46 53 0 R /Im151 160 0 R /Im42 49 0 R /Im68 75 0 R /Im53 60 0 R /Im68 75 0 R /Im71 78 0 R /Im51 58 0 R /Im42 49 0 R /Im67 74 0 R /Im58 65 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im42 49 0 R /Im73 80 0 R /Im45 52 0 R /Im42 49 0 R /Im39 46 0 R /Im44 51 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im40 47 0 R /Im44 51 0 R /Im59 66 0 R /Im42 49 0 R /Im66 73 0 R /Im42 49 0 R /Im39 46 0 R /Im59 66 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im200 211 0 R /Im70 77 0 R /Im201 212 0 R /Im69 76 0 R /Im40 47 0 R /Im39 46 0 R /Im59 66 0 R /Im47 54 0 R /Im69 76 0 R /Im157 166 0 R /Im71 78 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im52 59 0 R /Im57 64 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im40 47 0 R /Im39 46 0 R /Im58 65 0 R /Im39 46 0 R /Im42 49 0 R /Im73 80 0 R /Im45 52 0 R /Im42 49 0 R /Im39 46 0 R /Im44 51 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im47 54 0 R /Im39 46 0 R /Im42 49 0 R /Im45 52 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im34 41 0 R /Im148 157 0 R /Im30 37 0 R /Im40 47 0 R /Im39 46 0 R /Im58 65 0 R /Im39 46 0 R /Im42 49 0 R /Im73 80 0 R /Im45 52 0 R /Im42 49 0 R /Im39 46 0 R /Im44 51 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im47 54 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im45 52 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im51 58 0 R /Im47 54 0 R /Im47 54 0 R /Im57 64 0 R /Im42 49 0 R /Im58 65 0 R /Im39 46 0 R /Im42 49 0 R /Im73 80 0 R /Im45 52 0 R /Im42 49 0 R /Im39 46 0 R /Im44 51 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im55 62 0 R /Im42 49 0 R /Im57 64 0 R /Im66 73 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im67 74 0 R /Im47 54 0 R /Im50 57 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im40 47 0 R /Im44 51 0 R /Im66 73 0 R /Im43 50 0 R /Im47 54 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im50 57 0 R /Im151 160 0 R /Im69 76 0 R /Im55 62 0 R /Im40 47 0 R /Im67 74 0 R /Im55 62 0 R /Im40 47 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im66 73 0 R /Im42 49 0 R /Im67 74 0 R /Im40 47 0 R /Im58 65 0 R /Im57 64 0 R /Im57 64 0 R /Im46 53 0 R /Im40 47 0 R /Im50 57 0 R /Im66 73 0 R /Im47 54 0 R /Im43 50 0 R /Im45 52 0 R /Im58 65 0 R /Im39 46 0 R /Im45 52 0 R /Im69 76 0 R /Im55 62 0 R /Im42 49 0 R /Im39 46 0 R /Im59 66 0 R /Im47 54 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im58 65 0 R /Im43 50 0 R /Im42 49 0 R /Im70 77 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im157 166 0 R /Im68 75 0 R /Im209 220 0 R /Im199 210 0 R /Im271 290 0 R /Im228 241 0 R /Im198 209 0 R /Im271 290 0 R /Im209 220 0 R /Im204 215 0 R /Im226 239 0 R /Im171 180 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im40 47 0 R /Im39 46 0 R /Im44 51 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im47 54 0 R /Im57 64 0 R /Im42 49 0 R /Im58 65 0 R /Im39 46 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im71 78 0 R /Im59 66 0 R /Im42 49 0 R /Im39 46 0 R /Im47 54 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im40 47 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im40 47 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im40 47 0 R /Im44 51 0 R /Im66 73 0 R /Im58 65 0 R /Im43 50 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im66 73 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im67 74 0 R /Im40 47 0 R /Im66 73 0 R /Im58 65 0 R /Im57 64 0 R /Im41 48 0 R /Im58 65 0 R /Im43 50 0 R /Im40 47 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im47 54 0 R /Im48 55 0 R /Im58 65 0 R /Im67 74 0 R /Im55 62 0 R /Im40 47 0 R /Im57 64 0 R /Im59 66 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im47 54 0 R /Im47 54 0 R /Im45 52 0 R /Im272 291 0 R /Im68 75 0 R /Im176 185 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im69 76 0 R /Im55 62 0 R /Im40 47 0 R /Im67 74 0 R /Im55 62 0 R /Im58 65 0 R /Im43 50 0 R /Im42 49 0 R /Im66 73 0 R /Im58 65 0 R /Im43 50 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im66 73 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im67 74 0 R /Im40 47 0 R /Im66 73 0 R /Im58 65 0 R /Im57 64 0 R /Im41 48 0 R /Im58 65 0 R /Im43 50 0 R /Im40 47 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im47 54 0 R /Im48 55 0 R /Im58 65 0 R /Im43 50 0 R /Im47 54 0 R /Im47 54 0 R /Im45 52 0 R /Im230 243 0 R /Im44 51 0 R /Im67 74 0 R /Im55 62 0 R /Im40 47 0 R /Im57 64 0 R /Im59 66 0 R /Im58 65 0 R /Im43 50 0 R /Im42 49 0 R /Im40 47 0 R /Im50 57 0 R /Im66 73 0 R /Im47 54 0 R /Im43 50 0 R /Im45 52 0 R /Im58 65 0 R /Im39 46 0 R /Im45 52 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im71 78 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im50 57 0 R /Im58 65 0 R /Im46 53 0 R /Im39 46 0 R /Im47 54 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im69 76 0 R /Im43 50 0 R /Im40 47 0 R /Im45 52 0 R /Im45 52 0 R /Im42 49 0 R /Im39 46 0 R /Im51 58 0 R /Im46 53 0 R /Im47 54 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im68 75 0 R /Im229 242 0 R /Im199 210 0 R /Im204 215 0 R /Im273 292 0 R /Im171 180 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im40 47 0 R /Im39 46 0 R /Im44 51 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im47 54 0 R /Im57 64 0 R /Im42 49 0 R /Im58 65 0 R /Im39 46 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im71 78 0 R /Im59 66 0 R /Im42 49 0 R /Im39 46 0 R /Im47 54 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im40 47 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im51 58 0 R /Im58 65 0 R /Im67 74 0 R /Im76 83 0 R /Im42 49 0 R /Im59 66 0 R /Im70 77 0 R /Im52 59 0 R /Im66 73 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im40 47 0 R /Im44 51 0 R /Im58 65 0 R /Im66 73 0 R /Im43 50 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im39 46 0 R /Im59 66 0 R /Im43 50 0 R /Im58 65 0 R /Im69 76 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im40 47 0 R /Im44 51 0 R /Im40 47 0 R /Im44 51 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im48 55 0 R /Im52 59 0 R /Im57 64 0 R /Im69 76 0 R /Im55 62 0 R /Im42 49 0 R /Im39 46 0 R /Im46 53 0 R /Im47 54 0 R /Im52 59 0 R /Im69 76 0 R /Im58 65 0 R /Im39 46 0 R /Im45 52 0 R /Im45 52 0 R /Im47 54 0 R /Im59 66 0 R /Im40 47 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im52 59 0 R /Im40 47 0 R /Im44 51 0 R /Im55 62 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im69 76 0 R /Im42 49 0 R /Im42 49 0 R /Im39 46 0 R /Im41 48 0 R /Im58 65 0 R /Im43 50 0 R /Im40 47 0 R /Im70 77 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im52 59 0 R /Im57 64 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im40 47 0 R /Im39 46 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im69 76 0 R /Im55 62 0 R /Im40 47 0 R /Im67 74 0 R /Im55 62 0 R /Im58 65 0 R /Im43 50 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im58 65 0 R /Im57 64 0 R /Im59 66 0 R /Im43 50 0 R /Im58 65 0 R /Im69 76 0 R /Im44 51 0 R /Im71 78 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im41 48 0 R /Im58 65 0 R /Im43 50 0 R /Im40 47 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im52 59 0 R /Im57 64 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im40 47 0 R /Im39 46 0 R /Im51 58 0 R /Im58 65 0 R /Im57 64 0 R /Im58 65 0 R /Im39 46 0 R /Im67 74 0 R /Im42 49 0 R /Im59 66 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im151 160 0 R /Im69 76 0 R /Im55 62 0 R /Im40 47 0 R /Im67 74 0 R /Im55 62 0 R /Im47 54 0 R /Im51 58 0 R /Im45 52 0 R /Im58 65 0 R /Im40 47 0 R /Im39 46 0 R /Im58 65 0 R /Im59 66 0 R /Im43 50 0 R /Im58 65 0 R /Im69 76 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im157 166 0 R /Im68 75 0 R /Im176 185 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im52 59 0 R /Im50 57 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im46 53 0 R /Im45 52 0 R /Im55 62 0 R /Im40 47 0 R /Im44 51 0 R /Im58 65 0 R /Im59 66 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im58 65 0 R /Im57 64 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im69 76 0 R /Im40 47 0 R /Im57 64 0 R /Im57 64 0 R /Im55 62 0 R /Im58 65 0 R /Im41 48 0 R /Im42 49 0 R /Im58 65 0 R /Im39 46 0 R /Im40 47 0 R /Im50 57 0 R /Im66 73 0 R /Im58 65 0 R /Im67 74 0 R /Im45 52 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im39 46 0 R /Im52 59 0 R /Im50 57 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im39 46 0 R /Im47 54 0 R /Im59 66 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im59 66 0 R /Im68 75 0 R /Im160 169 0 R /Im47 54 0 R /Im69 76 0 R /Im42 49 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im71 78 0 R /Im47 54 0 R /Im39 46 0 R /Im57 64 0 R /Im46 53 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im46 53 0 R /Im48 55 0 R /Im42 49 0 R /Im69 76 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im55 62 0 R /Im58 65 0 R /Im41 48 0 R /Im42 49 0 R /Im66 73 0 R /Im52 59 0 R /Im51 58 0 R /Im57 64 0 R /Im40 47 0 R /Im44 51 0 R /Im55 62 0 R /Im42 49 0 R /Im59 66 0 R /Im42 49 0 R /Im41 48 0 R /Im42 49 0 R /Im39 46 0 R /Im66 73 0 R /Im43 50 0 R /Im42 49 0 R /Im57 64 0 R /Im40 47 0 R /Im50 57 0 R /Im70 77 0 R /Im40 47 0 R /Im39 46 0 R /Im58 65 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im52 59 0 R /Im57 64 0 R /Im45 52 0 R /Im44 51 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im52 59 0 R /Im45 52 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im59 66 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im58 65 0 R /Im57 64 0 R /Im67 74 0 R /Im47 54 0 R /Im50 57 0 R /Im66 73 0 R /Im47 54 0 R /Im39 46 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im68 75 0 R /Im61 68 0 R /Im43 50 0 R /Im42 49 0 R /Im52 59 0 R /Im76 83 0 R /Im42 49 0 R /Im43 50 0 R /Im21 28 0 R /Im30 37 0 R /Im33 40 0 R /Im150 159 0 R /Im17 24 0 R /Im151 160 0 R /Im146 153 0 R /Im153 162 0 R /Im153 162 0 R /Im174 183 0 R /Im157 166 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im58 65 0 R /Im39 46 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im58 65 0 R /Im146 153 0 R /Im70 77 0 R /Im51 58 0 R /Im40 47 0 R /Im45 52 0 R /Im59 66 0 R /Im58 65 0 R /Im45 52 0 R /Im42 49 0 R /Im206 217 0 R /Im58 65 0 R /Im53 60 0 R /Im71 78 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im67 74 0 R /Im57 64 0 R /Im52 59 0 R /Im59 66 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im45 52 0 R /Im274 293 0 R /Im45 52 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im58 65 0 R /Im50 57 0 R /Im66 73 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im44 51 0 R /Im42 49 0 R /Im42 49 0 R /Im50 57 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im55 62 0 R /Im58 65 0 R /Im41 48 0 R /Im42 49 0 R /Im58 65 0 R /Im44 51 0 R /Im57 64 0 R /Im40 47 0 R /Im53 60 0 R /Im55 62 0 R /Im45 52 0 R /Im42 49 0 R /Im59 66 0 R /Im53 60 0 R /Im42 49 0 R /Im275 294 0 R /Im68 75 0 R /Im74 81 0 R /Im39 46 0 R /Im53 60 0 R /Im42 49 0 R /Im39 46 0 R /Im42 49 0 R /Im43 50 0 R /Im58 65 0 R /Im57 64 0 R /Im40 47 0 R /Im45 52 0 R /Im44 51 0 R /Im42 49 0 R /Im42 49 0 R /Im50 57 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im45 52 0 R /Im58 65 0 R /Im59 66 0 R /Im59 66 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im39 46 0 R /Im42 49 0 R /Im69 76 0 R /Im67 74 0 R /Im47 54 0 R /Im50 57 0 R /Im66 73 0 R /Im47 54 0 R /Im39 46 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im58 65 0 R /Im39 46 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im40 47 0 R /Im44 51 0 R /Im39 46 0 R /Im47 54 0 R /Im45 52 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im46 53 0 R /Im66 73 0 R /Im43 50 0 R /Im47 54 0 R /Im79 86 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im151 160 0 R /Im62 69 0 R /Im67 74 0 R /Im55 62 0 R /Im58 65 0 R /Im42 49 0 R /Im75 82 0 R /Im42 49 0 R /Im43 50 0 R /Im71 78 0 R /Im146 153 0 R /Im153 162 0 R /Im153 162 0 R /Im154 163 0 R /Im157 166 0 R /Im68 75 0 R /Im62 69 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im58 65 0 R /Im59 66 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im58 65 0 R /Im57 64 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im59 66 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im43 50 0 R /Im40 47 0 R /Im51 58 0 R /Im42 49 0 R /Im59 66 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im59 66 0 R /Im47 54 0 R /Im42 49 0 R /Im44 51 0 R /Im39 46 0 R /Im47 54 0 R /Im45 52 0 R /Im45 52 0 R /Im58 65 0 R /Im76 83 0 R /Im42 49 0 R /Im52 59 0 R /Im66 73 0 R /Im50 57 0 R /Im52 59 0 R /Im67 74 0 R /Im55 62 0 R /Im50 57 0 R /Im42 49 0 R /Im50 57 0 R /Im70 77 0 R /Im47 54 0 R /Im43 50 0 R /Im46 53 0 R /Im68 75 0 R /Im170 179 0 R /Im47 54 0 R /Im44 51 0 R /Im45 52 0 R /Im79 86 0 R /Im42 49 0 R /Im57 64 0 R /Im59 66 0 R /Im44 51 0 R /Im39 46 0 R /Im42 49 0 R /Im42 49 0 R /Im59 66 0 R /Im47 54 0 R /Im39 46 0 R /Im42 49 0 R /Im51 58 0 R /Im40 47 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im58 65 0 R /Im53 60 0 R /Im42 49 0 R /Im47 54 0 R /Im39 46 0 R /Im57 64 0 R /Im46 53 0 R /Im71 78 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im67 74 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im46 53 0 R /Im58 65 0 R /Im43 50 0 R /Im42 49 0 R /Im51 58 0 R /Im47 54 0 R /Im47 54 0 R /Im57 64 0 R /Im42 49 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im67 74 0 R /Im55 62 0 R /Im47 54 0 R /Im40 47 0 R /Im67 74 0 R /Im42 49 0 R /Im97 104 0 R /Im276 295 0 R /Im135 142 0 R /Im108 115 0 R /Im106 113 0 R /Im103 110 0 R /Im106 113 0 R /Im133 140 0 R /Im118 125 0 R /Im106 113 0 R /Im106 113 0 R /Im133 140 0 R /Im101 108 0 R /Im105 112 0 R /Im101 108 0 R /Im105 112 0 R /Im118 125 0 R /Im142 149 0 R /Im118 125 0 R /Im107 114 0 R /Im106 113 0 R /Im108 115 0 R /Im101 108 0 R /Im111 118 0 R /Im117 124 0 R /Im136 143 0 R /Im103 110 0 R /Im111 118 0 R /Im103 110 0 R /Im100 107 0 R /Im106 113 0 R /Im106 113 0 R /Im133 140 0 R /Im103 110 0 R /Im104 111 0 R /Im103 110 0 R /Im109 116 0 R /Im113 120 0 R /Im106 113 0 R /Im118 125 0 R /Im106 113 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im118 125 0 R /Im112 119 0 R /Im136 143 0 R /Im103 110 0 R /Im113 120 0 R /Im105 112 0 R /Im101 108 0 R /Im100 107 0 R /Im114 121 0 R /Im106 113 0 R /Im133 140 0 R /Im103 110 0 R /Im106 113 0 R /Im104 111 0 R /Im118 125 0 R /Im100 107 0 R /Im105 112 0 R /Im117 124 0 R /Im108 115 0 R /Im105 112 0 R /Im101 108 0 R /Im106 113 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im118 125 0 R /Im112 119 0 R /Im136 143 0 R /Im103 110 0 R /Im123 130 0 R /Im155 164 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 285 0 R +>> +endobj +285 0 obj +<< +/Length 697 0 R +/Filter /FlateDecode +>> +stream +x¥}É®%Éqå>¿â-¥ ^ 1iÙhÓ Zr#¥&»9³þ^wp|qεc~7 DÚusÇ?û·?KûöçoËç¾LÓç4Ù÷ÏrûTæÏyªË¾|N¹~üê÷ß~øßçeýø§?~û·/?ÒçTÏ¿°Ýþ&Í;ü íüëç²õ?nÜþ* üBZ¿°MÚ/ÏeºüBÉ÷_@_ÖýüõsÎhH÷ØËg^Î?°'ý»xëS.õ<Uð[ñ±ØàSþ\ëå�| |Fϸg Óã¶)îxRb.ûç¾]0xûe3ú+oÊÿÀP¸]ðúOnÌki(©~ÿÑ/Øò{4°O ,7ðeZ¥ó4K\xûWø|LÃõ?·üâôqþò~½À_ï_B l�¾�)tÿ×�¾"øza!zþ\�üx8áógxþåý(ü À_ðw! ~üåþ7I¹`ø¾èrÿu¿ÜCø¿jãëû=%BÚVtÿùzþváßü¾>àN÷¿|?£¿fèá/OtúÉ áïJ?ï-'¿zÁýþüxëû3¤ÿË÷çÏ +ßÿ®BÁû]4 ãÿ\ò üyÊ¿|ȯ -ýùù/WH¿þ0ýçݬ8ç_à)þoßàÒßéÿBü|õý ý®ºþÈ+¢òþ|¿ËûÓïß6ðýóåþ~¯ïñÏ®}?¿eô#Ëß2Aù!Ë üìGGô;üá÷/Úàý1ÿíÊMþ½Ã?Ú:ÿôç~èýë{ò¿@ù©óoYýÞÛoÀ~!ôí·+ýÒû¯~ýÓà¡ýøÜô+ø »½_ýLÓa?.2ýîÿÀî_'ÕþÂô['hÊú³NÐþù¿&M3üÕ¤É_F?ÚÿþöWÍK»ÿú¹UÇ_ÑøñO-ÿÄì¯ZÐûÍÿ¾_EúûªÿÿU¡ýyõ)üßøäýUþ÷íGÊ¿æ¿^ß¿¿ êEþ<£-Àÿ5ý9ׯþ/Ä®À+øoþoÝüÕ¦ñÝÑ?·÷ïï/D èøÿk³zxÙþL+<_?mèû¯ñ'¿�xd¿÷ß:_ÖßGü£ÿ~9~uákôKü§i{~øK?,þ²"xÝÿÏÿºÿgú¯×ã/~¿¿ÍÑ¢_?9äWrâ'~àéûÏü¤øÑ÷âoXþâÉ/=þ±@ú Ä?þtûÿ8øKÜóóùÛ;~׿ë ÿyüÉ+ÿ1ÿ?ïÿÏâÿþó¤ÊÌ?%òÅ?ýp½?_@ù쬿øc¿0þ/EÓ?Ô-PÿÈñûí·ýÓø¶ßôøÓ¬Ñ?Åÿé_¶_Ëñ'Û¯e úGàÿFñ_~i¿_éÿYPöV1Ïu;ìwÙ*;´ÿåüWÙß³ßë¤ÙïÔÿKP]¾ÿêÿXüé¯Uæßµó©ÿåj5µ´"�-¤+^oðÀõæ>8º¤+ 2¦VD Ù@ìfí©3ztàX¼QÏ+ôX|@èxArTcV(t?ê8rÉ£,¦réÑdqôâX©V�¯ãï#tð?Ôâýù²wÄû»qÉá«yÜAß¿^rÀ½â!GÊ>&GÒr¤»A@ÜK)®$#iÏÚ09,ßB@ä©Õ°xî¼øÏ¿É7{úñ=\èÕS=üÑÔYÿ îPæY6Èþ�êÐIOè×" +"R`}¾lä)q¨çéá/ßOß +¢@AÏx Yý2¼qÐP@Æ<}¿ ~¿Î?;ä= ³CþÑêÓ$ÑÀû ÙùGÈÔ +ZoÉ«K^�ë%_Wúá54$�ÿó«F¿¼ á_Oý(ý.ù=ú T~Wÿë÷Ïîìàþ¨D6x9¡phïOÎß!H(OÐ× /äÔ4KôCº ɯ@ACNoÑo ò'RÐ :BNAóþôû¢ÿ�×"ø¡üíÏ£ À¿¬ ¨.¿i¨ ¨BùÚ¤ e5ú//RxCD?erô7+�¼®RÕΧ/d¤¹"xÁþ0øùÑ_áÓÕ�?ç»m¾@Î26è`9ñcÒÉX°ÿ$õÓn6K˪õ?pE"§làºIæÅLcR8 *6/fz èXYÆ4&Åï¡<-F¾¯Ò÷»eýùº5¡ïD:?Hðüx¦Ga\ú%ðE£ÿèÿÿôYO2¬¥Õkkæ/^|.z¤Bëz³Å§×jqfÀ@J>¡onTw>Ê0¹Aò0á×0 ãP�IfÔ³¯ &¸Cã óõ¾°{]Å;´L~nxBï¨kH~u /®bÞ½0 qcÂ^WsÔU8ôËÃ0 a¨Ýÿâuï)°åG ´¢óô»"üèwC +,ðýT`R]ȳ/¤JúºØ� +ô À÷ô lüâaMþ¸aW~ü%H?0&ÿÖ¾ñ/Ã@ù#÷ÅWÑþáð»H?äý¡üÒûºëùO§ÿE3 ijÑä7¯Çò÷òþ,|ã\=àkÖs,Ï¢yÛ_ÖsP¸ÉÿùfGÑl.D¯ëOëp:_¯Giô ^?÷b;Ü þrúýºàû÷Mú~î@güâ�Nÿz]vª�^ï«ÍyøøOÍ·ÍñH]vß§óùks£zxP Ã⸹5ÖÍ{ +Æqû:ÓÈ}÷: h ÅÑ=¤÷_£<yÀ1ÞWMPtEø¿20Ë#Þà+þó¤Sð%° A·Êàù& _y`ÜÖLäB+$8}¿^Y ;ËJX¯,Ï¢B´Âà^¢úëÎïû©Wá÷Ë!ló G¸ÌH +ZÏ£_^HÞ/ÐcpÿÖ$ò²"tíL¥øßüxðÈxðPþE<øX*¯òó ó[ +¼B.âÁo"ÿ°BÈ¿Éݽ÷E¼£¿ª(?_uE(üÇ=xx¾Bª3ßB +¨¿ä$r 8úþл¾?KA}÷ ¿v&fÂa.tCàº994â.:xäsÁ{xëÒ4KD>[²%±OðúlÉ6[à�}¶äÏ×gK¶Rº^ï³Ù§ûë³ÍvÏØ¤ï§1ð§ÏVµ$´Ï@¯Ð'x&½õY rz¿ý ÞÂ5CrÐ_g#zïO]о¿ìXØ Ô]áýuËýûEùáÍ&<Áë5;¤?Ým9þ,¢¿ü x°P~ Þlâd¤�³¢ßÀlÆ¢ÉîCüéh ß/Ç ?z{Fúña6u^÷!Lÿâ_@@(X¡þÕkV?½ØfÎ7Cl¤©ìE¢* ý£G0êdü7#ÖLϯ{RçÏõxÜ =744¸;|ÐA°f$ÁÓé +ä`ÁþîÃ^á¯]Á¼r>Ý�K@¿s%²ùåEéà3Hb%e¡W`Á]=ú 7äÎàü(8aüß$Ð>]E�Oßxaá$´?¤×%Ü:¢öÝxÂHS÷ò¬fo5u¯öL +Ù¼Ó'ºmÙÍ|ÓgCMÝi«ÏWè�Gb½|Â×!y'xYdÄCjsëéÔæ6äiR{¯¦~(²Ñ!ïmHÔ<8¤öLVÎçÕØÉtSÎRV+¿F²è÷×UÄ?ß|`Hüð¯G¬zvÜrGº¢÷i¬'ÞÇîáõûoð|½ÄigH-¥¿]£?×\ÒaÅØ£ò£Lðýü`ððþz*+!ù(ÆMèýôá8ʯÀ³C~½R̹üÖzøúþ³bìQýW üÑõß}Èÿ[ôåW '{KÿÒo '_£_ZL¿!úÕõ_Ù5ýOñ¿Cý¯§Âw¨¿Cö ¼Jåw5ùE©3:_ÉQä_Ý-þ¡ÅÀñH·ùvÞûñblþø}h?_ðG½Øã¤ø?^Kô\¿Âh>]®`÷ !ÝàkKô\¿j<$=Õ¦BúO¸öT£PÖs@Ý~`PKG?ÓO8ôT¯èj³Bë°U{=| §zçë=Õ/ƬÐêiQâê|?/ ßÑ÷Wõùø#^XFLHgfx¾lg:ø£ðPZb+¤½¢{Fïñb' |2:?о"¬h Ì-z½lV`}íðtðδ$ìB©¬ âOOçNþôU;:ÈÖRìË/¥÷§øËHéô[¦¿xK1_údË#;(zbúC/GXÞÄÿªÚê}U�¶_är¢²-À�Ó³�Úz NÈ 4'U~/*Á÷×- +ïØOÔÊP&»Aý£4(?õæÞ?PÐÜà¼û{-ÁÞû¹Á®ýCð· ý ¿ÊO=¿BúËÉî¹ÔþËëU9´¥Ôê·jó²(\ÉCü, +W^¯ZáåÀ ÁËåTÉì·âja3±v?}Ä|éÐÃGüOt~ ÙVuzôCíçéO÷_v>õÛªáï7ùë~?[5Ϭۤ÷§þWEôX5WÑùz9»M&÷øO6_¥ûsÿñ=þÏ«F?®ÿéÈ/·Ù=´Bò3ÿØáùºý=Aüéö÷éW·¿'(ÿtû;ÁóûÛ&·�hy½ªûPÿèY¼¼KòúÏñ.ÿ³¿ÆoùH+È¿²ýs÷_ßÑË/Ýÿ]ýëY´£yPþYPWÿ°räQûÅj¡þгÀVNìÒ/.Ä;ü×âúcÁþtùyø¿òÓFZùòøßV æØßÞª°Qù]3zÅÿ´bbÄú$[5>J¿ÚOUåü¥ðV Ö/W±U(0(ÿ*¶¿ùeÉÿ§¬<ùÏ®ÿGWøýòûÛ9=FZå×#½¨ÿ¾6ý½tl&tçëíGþ5ymÿ½ ï´³"üëí@ioï_O¦çí¸:?°êá?²êá/àþÄN~íĦúûò¯ÿðü/<_hcí¼>©fa&²Ít¶ÉyÔÊc3 m×·OÀ¯w}{ð|W÷¨�3xtÿÀH1+#ìáeä�8Èw}#Ô ð#�à�éGÇà +èè5¨lWø¨*P K@ +à£yP�½úã `hÀèe´Þ_/C®^~µªÄÿ~éwCh@êÝåM²,»ôý´þ0 _ï çoið|+£~ÿ6ÿx�!òMô«�°)°mµÇ?ÔÆòO/ò/PÑùzb-ýÃNá+4Àå-ý{$ÐõoµAý{q»ö'qà(åyÛo>¿r�î Lcý�BK¤àöý=¼l¿'ÈØÃË$[JuÌÄNÒù¼�¼Høãà×åÏÀwðÏçqe�æÙ°�Ä¿\yxêÿZCÿ<�¾?²ÔjAðrg.ýó>:_/àÈò`µøè'°ZÒ¯<ÿðßûó¾ö~®ÿ>Jÿ«öýtÛÍÿ:x´Sµº§/ð°(ã +®Ößÿ@F!P¶qA?ßÌ(|¹ É~�Þ '�t¹W±Ý{¹N7Ø §¶Ùb HCÈ~̽BÚ/|@q°8 XÛs,ÍéV¬¦Éú´bµPzH1¡ó´yB§óeOÆ&[öðV¬6øt¾®I2"¡@+VFDíû¹&Bb�¥r_GÂ}ú!ð-îÁó +x¿@$yAïH-þuO:/þõ%Ýy ü+§âóö&ÿl,ô§[;äÁh¥`Ós½hÝö¥`´fBô¯{%Aú´R¡óõɺÉöùD3ä=\Ò[ò·MÿÐHb+E©7:ÚP5ýA[ÙZ)Ü ^¶Dm·Ç¿¼Y²VB(¿tùYVMþðR:(ÿôHðè_O¥ ÉÈn +a9Áï~Ö@$(¥ø×çZBû-INðüp+/X)Ä_ K³ùvIÄíÐln¤I«3z?4 àAôÀÿδYþ l&0ûsÝûDrM~wðú@2+EóàùjÝ?I>Ø,QÑýåíî6P³®ëX& eOçë@Ä¿^É3-þ\ÿÛ¥æ?gé|êÿ%H¿ºÿÿ Ý.$Ø=|`³ùß=ýë +ù_WÄHêî¯Û÷×÷×íÛLáÑ÷ß!ÿé£`Ö$ѯ$çëü+Ê?Ê?ÄÎ?-æ?ó¿<j%b`Pþz¾'ÿÊîÈ ïØÌéGÿþ¶×§âe(¿tÿ³ ïìf,ðû»!þ×ãoeF÷ÄOfH?ºÿå_ ~´@ýW"bûM§ éo ~l æì¯À@X(ôø§ífôîïífôø¶âòãõ÷ó͹0oùr3É -h}¤cÞ$Ö2ÓÀËË=¿h]Pö¿Ek ãFnÁÙHOOó¢Hj(õZÊYÀzòðÀüqºßjÚ°Ið^·àIðþ|ùý˧Ip³@;xÝ·f2^3woK Ïxàà/`ÁOºßjÁ¼ïçÃTÐû©dDÿZºî¨¥+z-yàË<VWGÏ7Z{?>À_«¾ÿÎT¬èû#Ã\ üxÀü ÷ß!ýëµ;|?Ý´÷»´6É¿»tA�Yî×vòÜC鯺yòþßíÒÇ4íÌyºXPt¨Fê_Q³ôö>¬ÃÁÔPüÍè|͹o¥xTòÝLÁàZ¬V q_éUÏ$ȳBгÀÀ·ÁX?fCP +2èjCó~®P0ê§ck) þaÞä ]å âCZâ�Gª8îYèwî_¢½ëðÁû÷ôc! ÈbB ¦ûµæ·|Z¡XKm½ +ÚP*¯W!,ó[>ÄÅ´êl= +zøÐm°Môü#ÝÁëô{r÷çë1�«"êáYìFÿ=¼>ÐuC߯ïgNf:ßÏ$t¾^Åj>¬ó~| IFçëòs=ðé| ñv×{ø¾Ü´Oh"*^/{wbÁô½eÈÛHá?�!1P�æ÷8[Ñ!`n õ=| ½Âóõ44 º½!±6x¾ÄjåK>ý'|øïÒ÷ó4.LÄ(V߸p Ð@vAüøþþýUSÀ| :_¨p¤qx·¸mÄUàÅÊXüÑ7øªô2¦Ãíï/qËî)ï'O«¼¿ÜÆT¡£·1ÙDPèOoc²¢£ ôÕÿ6QtTÿè þ?ÐAý8 úÿp@õÿáêÿÃÔÿ:¨ÿtPÿè q8 µÉÃíà#=ýÙ/ueØ7;~d"ðáÀö÷zh/'al£Æ >мðÛÃëñ&x¾>Ð"!úLô¬�^oã¶þèFÂÎ×íle.ÿ°EâêÿTÄ¿$ø¿_nCÈVF8ÈÿÿìÐ¥Ê}¢ì +ñ¯´l=ùIéoü¯oäòmä#)°¼·A7B~YGpâ�ÔÈÅÑfú[ +Äå�æ# h¤Ì÷vjrðáA;Ìwj@ +xÀïIbe(®a;5 Îáµ÷ç#1ô~|'@ò ²h¯èþ¼_d¤§Æ¿4!J@J;º¿ÞHWvÍá ØäÐ#5ÿ<hkéàõhÍ/÷§Äá_×?6sÔ«XþétEçëäQFÝß?Ð-X=d¸+ÿFf÷ûI ÅaÁMÎN§¹5'»äpxÐåu#6ÝI±¶ÜÍÚI±¡ï×íéÝï´Døàçv¬�>°Â<øòz·Ào.ü£-oÑ"´Ö +Z'Mÿ^)[År(ÓÞÕ1ÄYèdIÜÔ£:Ä3Øý�ÇfúMè®óìè'ÌíN $Òm¦Âüò +æ {¯ÀÂL vèF"x1 øPÀçz#C3¸Ad(à +à#CÑù¡ðüÀP@ô¡MôçëÕs¾·TTôý¡ÿC{øøP@~üî +¸÷ +ÆtñãߪIÐù¡þ"Cµûó¡»^ é70Ò_`(`˦O£Cþ#C!ÿjòW£ÀóC!ý·äo)HüÚP?çþ|( ü~}¨_ý¸ÿõ÷[ÕïwÚ9\ýGbQ èø7ÚýÖ+íHöC·ýþx;ÇöÿÝ×ÛhüǪi4ùAcP~ê-÷jwèï¥ Òß1ÔÏ¥¿×ëm<ýKïí·@,´Â÷«ªh¿Ñõ26ÔyPþU«æG,ÍîH°þîGÜ×T U´ï·á üý_W³àÃûm{øH;Ç +àõ\4ßߪaªÛ'pÝ~¶ý¸'øp5Ìéûuû¿UÃx÷÷öÛÒß}( ö~ÌÿGô£¥²õ6§óõj¼÷'þo³OðºÿTªÄÜ/ÒùL~ç6û¯¯GÑýý½iàɾÞÒ¿þþkÞëüϪq ýëï¿¡ï¼ÿå¯ÎÍ~õøûßHþDF* üEúiúú ~¿?3ÿÝ÷üw_þá}÷ßYék.òÆj*æ>ð91°y:ðõq>]¼RÎPéà9H÷�Ûn_°À{¬,ïi0K8ªÁ¬Æ· YÁ?ÆÛ ªWãíP<píýùXþ÷4`Å` IÀg£+²fjG=Z4{ð<?þ=°Îèyð£yð£@ ògÀß¼¡b¿½hãzðÛØ@Ã߯|?àÁïòàü»üöz ëÁo¯ò¸|ÿýqÞ¹¿ëÁÒßáÁ»ïçxð.þ~htxðîý~Èrxðÿ¹¼s¾ëÁ÷ðq~þxÿ@?¢ÿ@º¡ü»Ò_ú¬'ü?1rïgy:@_«1óu (#Ú^>Oó©HRf�;Èá(Y +P¹ã2@ÉH&ÚeÄzC«íåóðOÛ �´ì*pâÖMÌ×H¡ �ÞÎø/°×� +ÀÀ@�þßÞ{¿ Ò¯þ~TÀ<<T@ñ�À r� :!úìåÓôÊZp{=Ôh1Ê?6ÐÂ7ÀX;x&?+4àô½6Âÿ~²ÂþÑ^×[F XÛ +0jÕ:Щþíüõõ@o D¯Jç/;6â¯ßçË)dÔþ¢?Y�Ööòõð×�,og߯;°êØ«ß_ÞËh{ù<x>PB{?^ÂÞ/0ѱ 4óøÉÛ +pßüZþ0ñoÀ«Úûñzô~½~æ@ò_!ý�¤0û±Ã¿n¿´o¯Þ >¼Wo±üÓHMïxçSüíýòzD¿ÚÏì·Á=L'ù-epú·ÌÏnÌ× 9ÜL×ÿ�h¦£}`Béopí[/1ö3ºA¾%£}`KÃaÿ >°Ý ÐfFTëÜzb{xÝ µÕB§óe'úâwðQüþ|=ÒúP¼ïç« +ú~½,ißÏÇ2£ûúÀ2¼¿ 5'ÌçSx¿@Xô§÷ÕQü<â¿ÈTg=4#üúÀ ÿÞj¡¼ÞåÞ×¥ à:ÔfS©N÷×§boÿFüÎd ü +ÔYÊßÞrßQùk3±âßßÊÈZÞ=<ÔÖV«y÷§}`¹"øÀr]$"S¡+¢_½²ìôk ÿËòËfZyòÏ´Bô¯¬Öü>Óê +BäS¡UýCð·Bý#Ìh½Vã¿õåL^ÅÞÿ*¿yÑ_ª¢)»f?ñ©Ôÿºý\'¨3àûëUpÐþÓÚ*°ß_5Ãóõ*°õ¯^VFõoßGçÑ/¯Âï§ÓÏý7}*´Uñ9úWñAú×`êü-ÿàM¥öýWV 7=ï_«£ÿY`Ó_=¼ìÿÙjá^óÿS©ü©y¬q÷«xÿ¿× æÿ÷ð9:3×íï ¢ýÚ¿?°$§ +Ï¡Ä9ªð:økNäÊÏÕì'xy«Åá¿÷÷×WW¿ÈTéí-þ·ÕÀÿ{spÏ_ ÿÈk-óéGOb¬üãþ?à|R¹AùÇo6H?rÍÑ9ÁË]m+ÇnCÿnÝ ü, ¯Ä¿ÿv ¿ô$âQDçêrÿõïåûiRAøCïGüßî("«èþ"²âON,ä.c?óüAþ3³¾%m+/ÿ þ6ÿl¦´¦?øZ_Õþ!ñ7ó¿krfÒ²"6(¿dù[-þ8ø~6Ç&®?¿¯%Vä/ Ïðûeû÷ð¿ùMý¿í}&uAö7*z=SÚ×ÿ^³øV'þY¤½Ê¿@"ôõ"ª»ÿ¬ð?VPg'þøz&u)ÙÉ_ü³ñuðµÀm§À ^_ùû^Ï¿ýÛÁëùçÃïÏö7ß|`¦4<_/B´üsî¿#üìwÓ=¼^6AüéþgÛéâÓ+Dô¯ëïlúçfäÏrÛé2|ÿèG¿|ÝJuÏ£ ÁUÄ"¸òÀÿ%üQú³üÿ(ý-ù-ùM Ê¿¼ þ Ô߬PþËS$2ºÿ¡üÄvíý½9º§ûè üÔ ¦¿Ý9<úçêÛê<|~A߯×ÙVgßþ!þßMþ)úçïáùz*rüºÌÚ÷Óø´õ&ÛêìÉ:zm]ÀþÑ +´ÿñ á_Ï_St÷§÷ß!ÿèþÏôü¨&?xü@µ_^ïõ_üý þ®V¿4¨¿&¼Aý}4á êï£ oб9º£òûÈÿêZ¡þýcÏ ÿräÿý#ÿ?Jf¿ð&DDÿñX£þËÿÏÓÐýüØmñ^¯;¦øôðzýüÁ÷ëSpl+µw>¯¿$ü¹ùÿþjÿrøÀëõ{¹ÍQ?}¿î¿Zü8mcþk÷×ý×îð_ó&ñõ_zÿÿZªÈ¿ñOÀÿSüWx¾Û©v3 èÍÚj|DzÒ=`«í9 07I/È+Æà¬èûL(h¥ � +B{¹I¼Q~H÷@-:¨Am¯AY¾ÜAuD� ηR£÷xÀ¯{À½_À| {Ö40�ßÓ`G^ÁùG°À¾ <ú`OXÞjY¬©Ç <JÙqïä;<¥L0Mõ?Hµ Ò ^Oµ$ì ^v¢R+béá¯Nä àIÌ ÁË"È&à + Füú4ÂNðòbóÔH÷ö×ÍIvï§OrÙáûéIÜ6öt¾^D9Aú7ñ¾¿%ñNðIð|¹ÊFizøã£<ýGø,Ïx(F<Â_ ·%½÷çIÀ$ñ/_Eü±$öý´·NçúgID$#Hü¸ê/&ÿmɨü·eþû3>½Ç?;Ä` úþ@-Wú¡&lBðWº Iÿ^ð(ÿY°¯Y/zÿ@¶hôÇ!ýÉEÊ¿@ÛozÚozXYý¤ºÂ÷Ó'©®;°¿ôQèeöÞD í74 +MÒòW_eí¯ð$LÿýYÒo Ú_zkVù|AøWýÙ²$Úý?XÿCñ7CûSOâ-è|½ Ò&aúöiÂ^Uûø¿fÿ¶f(=fþûàõ¦Íáêáõ!*6ët~ ~ÎÁ¶$Ï&ÂóeýV½ÂÎ×ã7¦:x=nHO÷å!ûøcñx¾ÜÄzÜp§ï!Ø|áßGí´<p|Zt¼M±ñæpZüôú£ H¢U �x,0J³@Æøµ)Rµ< `Ý*.ò~á?ëì}èCô �mgÿý¨¼?`÷Ç,Ð ¬½?ý~`Î÷{Û4OçëÛPwÈÿrjÞ¡� ô¨Â +4°s}KéOw@¡üT1cù¨"Fï¨â.èý]àÉÀûaù¾ÿuÒ{úý3¢ÿ@�eAøP(ô�ʪñ?ÂüBVEøOö\Åø_O`}ô·ã¿@0¤½xøÓ�¢üä]Èð|½÷Mû¯¾iÿUÑþs®Ì¦ÿð)^~ô*äê?½ +xAöG*ñ �Aø�òºïÓX_uÓpið-M%Ó¼�L¦?;ø_ÑùºýÚÍ{-Þkû@&é|�©^à,ðûõ5#üËüsPôðr�ܦ¨îä?ëÂøÓ§ÈíðûõK�öðºÿ;¡óþïϧXXµÿïw9-"È�ìà¯khxBÔó/Ò?Nüdÿÿùµ"É_·�rÿþz ð¬ÉÙ%ùOéË?ÿ³,ÿÿðýuþò+ðýÂ_`Ïõ§Î¿;Äî¿bù¥Ç&D¿øCBô¨aNÿzMQóàù*ÒIâ>]ßüüE´ÿH rô«ÀT¿@ ûø/P?#ûWߢQ ý¨á^4ùÃ(à÷ +(6IÒûcûK(ÿô.¶²kúOq{OÕé=ýU'M±Ü=þñÈ¿ôô*à×ÿóðoòïëáAüÜ?CùûïE³ÝÇþe[*´ßô-µ¾g?Z´¿B¦¨ûvÏ ~x|ïb¾ÒÏu;ÛDvB~=¿�û7aü¯À§«�£pqàIà´&{ä¹¼n¼>¡5ìÏOè7é9°tÓ¼7$~¹ ö»öW)Þ>Á¼Ó26½òÞò¼ByÝÊC;ILöëdGæè\'díàÙÏð|½ckØà:£dtÝH PÉoÀè:°IÃ?ß è'°Jè~M aøóÖ¹°@Ä$Ýr ÷"Ê&ÑD¤·ø×vÊòo",àÏð|}§±òx^Èñæû¯ðýåqÊÖÌ=*¿ráË/HQåVa¶S6»ëÌX' ?ub¤ÿÀ8yH?qòHÿèë@Èè:©¬ê_Hô/WKd9ëx':_IDµqÞuÕ¬@ºl6î#ûÉ� WX&tpÒQ 2Ê@P�æ©ðûõ}$@¡�S«ä@øÏÞ˲# ,0,Aë!Á^KPV +z(ÿt¤^/å¥HÒ%(AÙÐùºzBûÓR@_([¦øB9¤ôPvmÐG-£dШʴ�ê¢ �?(�õRº > +@$ÀΡ¤'ÿ¦Ò")·wø¿�Ä6:¸#9õiÁr¡ýF�=`ÔݨÀj1 +×ñ×&úyøãÍ0 }ÿ (þV t£i@g£F1IïÏCÜ_ Ér¡ÎF>¾¾Ñ+AþÑ7'~©o.Ë?l"Þöýµ^ÁHG/»æõFzÿ¼ôÙÙBß˽Iôý7H¿úDÄ ÉÿÀ0må !X5¼Éj1ªD?|£¼¦?½tþû³Z$?ñwô¢¸ò ÐùHþa¦d;¿7`.¤ãÄJK¦:+9Ñ®_cüÕr!FWhð°�ÒcPP�ùv>aôØ�ÒI¶ô�³t�ãÓ$TÂVÊk +zÀÊÀ^`´>A¦7³@H7`jV ø×+ÝG [éîÓ/¹ ï§_¡)ãÕ*P¹ïðàWZÚHöQ¤BùÉîÉoê@í¤§Åìf@;+mø4ËÎ×èÎL°»R¤�|`¤ºå�óY3ò1ÍÂ]ɦA$/GPm$}vVZÐ�Âî þ]I6Aú4S ú¨A¤¿ÃwÎçÓ$á÷ëÅôæÀ»+Ùé_wà+¢ô~l$º ÅìçÑ÷_Þ?ÊÀû¯ÿï¿BúÕAØ0âMÃe|³ÝnäþPþVbî~ôiPeBôs¥_�üX)ßOo¦ÏpïÑ÷è³ýëè>¾<ͬXËy¶~ ¬¤ç9 ùh¦ò+P°¢ï4c¬ýÉÒo-�t#ĵÀW +X¤Í³ºyrß+qÙ.»jÁ±qðtnÒ({ð£°cÆAhçóv(õö g©!«"ºG�UDÝùZòZjÉïkáÞü|½¼Îí +'.×BÔ¶ÙçÄEB%̵·½âb7Ò|øÑ=¼<Õûð£{x}µÛÜ{x=kS%;ø@"ÖôÐÍ,ðûõ8Åa:ø@Äjiûóõ©æ÷ç úÓãhiGïØ0%~øjxHÿz-ò´ôKüÐùW#$þkhÎû»[)zx=Z´÷ã«éÑû¶"´Õ̧óõño`+B ü«oE°8d}+ÂùWß° ùYm¿¿Ç?+¢ß�ÿ¬*ÿ°ÕòP~êq(?½;_z!ÐèædC ýËúßÓÅùßàþÕ§qW:C\ýÇZ"üüàíy(Ð1TÁåÖË�ß?°Bµ_VÿäûM~ð:$?"uð|½ÃzIÃöoß4ýÅ[àûé HX~éq$(¿B8 +¾?Ð?Ò¯E ýÊCE(ÂM¾CÒ:,ô<tAôzÁØPd¿èQ¨Z¡ÿp¡úý3¢?½».èþ:â/>1e§øÿ-oÛùâþÿàõ¡-þpn÷*O·ÜôÇ=þÒ¿¬;öÿçgü¥O.õ=¶� ^¯äoü X" µi =ü5À éS·¯¯å²Jü¼<UÝ +<üóD>zÿH"2P Òl@ÙV +Ôk hýs½_�¯EøÓIyFü@Íèû 3r3snS Oðz%þ +é70�Ò¯þý«F¼�â_.äµµ'ú[amä=:RHwt~ ~ú#°VÉÀZ¿èOßb�qÂ*ùS3 Ö`ÍxHr'MeôäÅAï(/H~ �Ðë¾þg P~è½ü3ßz'Ë¢é_JfÀòF�h¿è[M°üÓ1¶ôþ´�§?©üÙ5ûÃkúo¥Ðä×H§� üë Vàó?+Cï¯O ̳ä¡2g¤}«t@[=ªæ¿ðèþ�Æí}-ëíÀVUÒ?<�òþ¨Øþûÿ ?ç'>þ·ÿÊ Ãórû¯ ;ÀÃ9ò´£ÿîÏ~¿G¾FçË Lm]=M(ñÙeh¥§\츬áüBQb»é²ÓÙvâ@,Ó¸6i|B¢PÔ>¡Õ~ éHlq÷øÀpÐ̺8HýÀ~`&µ6$îø@w+¾Aæ÷nÍ«ðnÀèàxtpþü )rs¼\àIH¹Ø ¦Ïù{mÚ$vûD!¹Ñ>¡brùJuÓèà©À æ~ Iæå³Ý C"Ú{Ü>a)e¡j®P¥8h%.è V¬XGû~@XýÔ^aÃ8 ªIÕ{¨XwÌLò" ØöÃ7xâà>tÝ@(Vh7HI¶¬ZBHX¨ÚèÇaõ^°T¾Þ´#^ã4&T'Té+¬Þen´Ùã¯PEÕvÊ 3¤Ä¢FX*6xlX*Û2ÒaXÈΰS,Ye éJôVÄ+!]éàM´9wåZêwÁÏFÈL¬Û$Ëa±n],Ã. ¢vºª®07V¬7b:¨ P`? ZëÌJ»¡$+ U)øÎäÊÜxß"º< +þY3Ýj¾¥¬gX3ÝqÞÒL¶¢uX3UCÑ5-iÖLë]3ÙdW"Maj{N §È@µXMísIHû¶ª/¼ð¿~üöÃ/ÒGúøñ¿¾Ý¬üǽ£©ýÏ¿¿iÍûíWçõöo~ýñwÿû¿ûí¯~úÃ_úÇý§_|üé/üõÿÿÕO¿þøÏÿþø×ÿù·¿ûÝÇ/ÿîW¿üû_|~üûoú??ýåçøøÍÏ?ÿéøáoûÛçÏ¿ùí_?ÿðÓÏ?ü2Ëýå?þðÿ~øÓ_ïp¿ùù÷¿ûûÿï·þñv»ÿé[ +endstream +endobj +286 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 698 0 R +/Name /Im267 +/Width 29 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuÌ¡ 0EÑ× *;%Á°DÖªâ3 s0 +#TâÊ ùHÄ1ï%WJ&¬0×¥ÁE$öâ*)\8MânÔLÙT4ôÞïÏÛÿcün\¶c~�Á1 +endstream +endobj +287 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 699 0 R +/Name /Im268 +/Width 46 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]ͱ Â0EÑg¹ø]¼�Rj4à�Ã6#R¬áÖeÈÿCnqÚÈÚnÎö¹ËÙ´6¹ï¦[ª9~¦ùj£.f�uÖ!ý¼ e3ª,ÿÞѯfPÎ2ä« Õô^%X¸®ñöJÜ +endstream +endobj +288 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 700 0 R +/Name /Im269 +/Width 6 +/Height 13 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã0HH8pàÀ?j,Øxëæð��MJ. +endstream +endobj +289 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 701 0 R +/Name /Im270 +/Width 22 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûüÏ0âoo`?ÏÀüþ00ü``øfÿg`¾ÏÀÞßÀÏ~àûª( �¨È +endstream +endobj +290 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 702 0 R +/Name /Im271 +/Width 11 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°Âz0)Ç�ÿÁPüÿ�¹åêçò�0A +endstream +endobj +291 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 703 0 R +/Name /Im272 +/Width 12 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKH¨P !óê<HH`(`(p(x�d&eåxë& �w» +endstream +endobj +292 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 704 0 R +/Name /Im273 +/Width 31 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßÿñß(gP�ÄøÛ<àïÿð¿ïãös?°ß©<Àþ§ú�óúæö ?ìÀø<Ã90ª¨�L&µ +endstream +endobj +293 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 705 0 R +/Name /Im274 +/Width 14 +/Height 13 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãà00H�`ðãÇ ¨©±°àã# +�ß{0 +endstream +endobj +294 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 706 0 R +/Name /Im275 +/Width 14 +/Height 13 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+(øñãÔÔð$$88ðñÖÏ�çSL +endstream +endobj +295 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 707 0 R +/Name /Im276 +/Width 11 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKh¨o¨g¨aH�Â|ú 8<xðàáú{nú~~�P +endstream +endobj +296 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 420 0 R >> /XObject << /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im44 51 0 R /Im50 57 0 R /Im58 65 0 R /Im57 64 0 R /Im57 64 0 R /Im58 65 0 R /Im59 66 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im58 65 0 R /Im57 64 0 R /Im67 74 0 R /Im47 54 0 R /Im50 57 0 R /Im66 73 0 R /Im47 54 0 R /Im39 46 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im40 47 0 R /Im44 51 0 R /Im50 57 0 R /Im58 65 0 R /Im59 66 0 R /Im42 49 0 R /Im47 54 0 R /Im39 46 0 R /Im66 73 0 R /Im52 59 0 R /Im43 50 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im42 49 0 R /Im71 78 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im67 74 0 R /Im42 49 0 R /Im58 65 0 R /Im57 64 0 R /Im58 65 0 R /Im43 50 0 R /Im53 60 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im52 59 0 R /Im57 64 0 R /Im45 52 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im58 65 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im69 76 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im69 76 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im40 47 0 R /Im42 49 0 R /Im44 51 0 R /Im151 160 0 R /Im58 65 0 R /Im44 51 0 R /Im44 51 0 R /Im52 59 0 R /Im50 57 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im58 65 0 R /Im50 57 0 R /Im47 54 0 R /Im52 59 0 R /Im39 46 0 R /Im45 52 0 R /Im47 54 0 R /Im50 57 0 R /Im42 49 0 R /Im50 57 0 R /Im70 77 0 R /Im47 54 0 R /Im43 50 0 R /Im46 53 0 R /Im40 47 0 R /Im44 51 0 R /Im58 65 0 R /Im41 48 0 R /Im58 65 0 R /Im40 47 0 R /Im57 64 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im157 166 0 R /Im68 75 0 R /Im160 169 0 R /Im47 54 0 R /Im69 76 0 R /Im42 49 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im71 78 0 R /Im61 68 0 R /Im43 50 0 R /Im42 49 0 R /Im52 59 0 R /Im76 83 0 R /Im42 49 0 R /Im43 50 0 R /Im21 28 0 R /Im30 37 0 R /Im33 40 0 R /Im150 159 0 R /Im17 24 0 R /Im151 160 0 R /Im146 153 0 R /Im153 162 0 R /Im153 162 0 R /Im174 183 0 R /Im157 166 0 R /Im44 51 0 R /Im55 62 0 R /Im47 54 0 R /Im69 76 0 R /Im42 49 0 R /Im59 66 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im45 52 0 R /Im43 50 0 R /Im47 54 0 R /Im50 57 0 R /Im58 65 0 R /Im67 74 0 R /Im42 49 0 R /Im43 50 0 R /Im45 52 0 R /Im58 65 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im70 77 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im44 51 0 R /Im40 47 0 R /Im77 84 0 R /Im42 49 0 R /Im39 46 0 R /Im47 54 0 R /Im45 52 0 R /Im50 57 0 R /Im52 59 0 R /Im67 74 0 R /Im55 62 0 R /Im40 47 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im51 58 0 R /Im42 49 0 R /Im53 60 0 R /Im58 65 0 R /Im40 47 0 R /Im39 46 0 R /Im42 49 0 R /Im59 66 0 R /Im43 50 0 R /Im47 54 0 R /Im50 57 0 R /Im59 66 0 R /Im47 54 0 R /Im52 59 0 R /Im51 58 0 R /Im57 64 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im39 46 0 R /Im52 59 0 R /Im50 57 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im47 54 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im40 47 0 R /Im42 49 0 R /Im44 51 0 R /Im68 75 0 R /Im170 179 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im71 78 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im58 65 0 R /Im41 48 0 R /Im58 65 0 R /Im40 47 0 R /Im57 64 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im50 57 0 R /Im42 49 0 R /Im50 57 0 R /Im47 54 0 R /Im43 50 0 R /Im46 53 0 R /Im40 47 0 R /Im44 51 0 R /Im57 64 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im50 57 0 R /Im42 49 0 R /Im50 57 0 R /Im47 54 0 R /Im43 50 0 R /Im46 53 0 R /Im39 46 0 R /Im42 49 0 R /Im42 49 0 R /Im59 66 0 R /Im42 49 0 R /Im59 66 0 R /Im47 54 0 R /Im43 50 0 R /Im59 66 0 R /Im47 54 0 R /Im52 59 0 R /Im51 58 0 R /Im57 64 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im39 46 0 R /Im52 59 0 R /Im50 57 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im47 54 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im40 47 0 R /Im42 49 0 R /Im44 51 0 R /Im71 78 0 R /Im40 47 0 R /Im45 52 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im57 64 0 R /Im57 64 0 R /Im67 74 0 R /Im58 65 0 R /Im39 46 0 R /Im51 58 0 R /Im42 49 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im59 66 0 R /Im47 54 0 R /Im43 50 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im50 57 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im40 47 0 R /Im39 46 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im40 47 0 R /Im39 46 0 R /Im58 65 0 R /Im39 46 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im40 47 0 R /Im59 66 0 R /Im42 49 0 R /Im43 50 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im57 64 0 R /Im42 49 0 R /Im58 65 0 R /Im59 66 0 R /Im45 52 0 R /Im47 54 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im72 79 0 R /Im52 59 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im55 62 0 R /Im47 54 0 R /Im69 76 0 R /Im45 52 0 R /Im47 54 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im59 66 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im58 65 0 R /Im57 64 0 R /Im79 86 0 R /Im42 49 0 R /Im57 64 0 R /Im59 66 0 R /Im44 51 0 R /Im71 78 0 R /Im45 52 0 R /Im58 65 0 R /Im76 83 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im52 59 0 R /Im66 73 0 R /Im50 57 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im50 57 0 R /Im42 49 0 R /Im50 57 0 R /Im47 54 0 R /Im43 50 0 R /Im46 53 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im39 46 0 R /Im47 54 0 R /Im39 46 0 R /Im57 64 0 R /Im46 53 0 R /Im47 54 0 R /Im39 46 0 R /Im42 49 0 R /Im51 58 0 R /Im40 47 0 R /Im45 52 0 R /Im68 75 0 R /Im74 81 0 R /Im39 46 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im58 65 0 R /Im59 66 0 R /Im47 54 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im151 160 0 R /Im69 76 0 R /Im55 62 0 R /Im40 47 0 R /Im67 74 0 R /Im55 62 0 R /Im67 74 0 R /Im58 65 0 R /Im39 46 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im42 49 0 R /Im39 46 0 R /Im58 65 0 R /Im44 51 0 R /Im58 65 0 R /Im146 153 0 R /Im70 77 0 R /Im66 73 0 R /Im57 64 0 R /Im46 53 0 R /Im66 73 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im67 74 0 R /Im40 47 0 R /Im66 73 0 R /Im58 65 0 R /Im57 64 0 R /Im41 48 0 R /Im58 65 0 R /Im43 50 0 R /Im40 47 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im157 166 0 R /Im40 47 0 R /Im39 46 0 R /Im58 65 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im70 77 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im71 78 0 R /Im40 47 0 R /Im45 52 0 R /Im50 57 0 R /Im58 65 0 R /Im46 53 0 R /Im51 58 0 R /Im42 49 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im47 54 0 R /Im40 47 0 R /Im39 46 0 R /Im41 48 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im53 60 0 R /Im58 65 0 R /Im45 52 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im42 49 0 R /Im75 82 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im58 65 0 R /Im59 66 0 R /Im42 49 0 R /Im42 49 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im147 156 0 R /Im20 27 0 R /Im29 36 0 R /Im34 41 0 R /Im277 298 0 R /Im29 36 0 R /Im147 156 0 R /Im33 40 0 R /Im150 159 0 R /Im36 43 0 R /Im33 40 0 R /Im20 27 0 R /Im29 36 0 R /Im33 40 0 R /Im30 37 0 R /Im29 36 0 R /Im148 157 0 R /Im34 41 0 R /Im40 47 0 R /Im39 46 0 R /Im58 65 0 R /Im39 46 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im40 47 0 R /Im44 51 0 R /Im66 73 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im67 74 0 R /Im40 47 0 R /Im66 73 0 R /Im58 65 0 R /Im57 64 0 R /Im41 48 0 R /Im58 65 0 R /Im43 50 0 R /Im40 47 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im151 160 0 R /Im278 299 0 R /Im279 300 0 R /Im157 166 0 R /Im67 74 0 R /Im58 65 0 R /Im39 46 0 R /Im51 58 0 R /Im42 49 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im59 66 0 R /Im45 52 0 R /Im47 54 0 R /Im53 60 0 R /Im52 59 0 R /Im40 47 0 R /Im59 66 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im68 75 0 R /Im74 81 0 R /Im58 65 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im40 47 0 R /Im44 51 0 R /Im39 46 0 R /Im47 54 0 R /Im45 52 0 R /Im66 73 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im71 78 0 R /Im58 65 0 R /Im53 60 0 R /Im47 54 0 R /Im47 54 0 R /Im59 66 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im50 57 0 R /Im58 65 0 R /Im46 53 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im57 64 0 R /Im57 64 0 R /Im51 58 0 R /Im42 49 0 R /Im58 65 0 R /Im41 48 0 R /Im58 65 0 R /Im40 47 0 R /Im57 64 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im43 50 0 R /Im47 54 0 R /Im50 57 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im211 222 0 R /Im70 77 0 R /Im66 73 0 R /Im57 64 0 R /Im46 53 0 R /Im278 299 0 R /Im279 300 0 R /Im40 47 0 R /Im39 46 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im47 54 0 R /Im58 65 0 R /Im39 46 0 R /Im58 65 0 R /Im39 46 0 R /Im67 74 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im68 75 0 R /Im74 81 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im39 46 0 R /Im42 49 0 R /Im73 80 0 R /Im45 52 0 R /Im44 51 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im66 73 0 R /Im43 50 0 R /Im42 49 0 R /Im57 64 0 R /Im40 47 0 R /Im50 57 0 R /Im40 47 0 R /Im39 46 0 R /Im58 65 0 R /Im43 50 0 R /Im46 53 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im58 65 0 R /Im43 50 0 R /Im42 49 0 R /Im53 60 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im39 46 0 R /Im40 47 0 R /Im39 46 0 R /Im41 48 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im53 60 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im42 49 0 R /Im75 82 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im58 65 0 R /Im39 46 0 R /Im211 222 0 R /Im70 77 0 R /Im66 73 0 R /Im57 64 0 R /Im46 53 0 R /Im278 299 0 R /Im279 300 0 R /Im40 47 0 R /Im39 46 0 R /Im58 65 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im70 77 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im68 75 0 R /Im280 301 0 R /Im232 245 0 R /Im233 246 0 R /Im181 190 0 R /Im88 95 0 R /Im85 92 0 R /Im179 188 0 R /Im89 96 0 R /Im88 95 0 R /Im93 100 0 R /Im91 98 0 R /Im94 101 0 R /Im82 89 0 R /Im179 188 0 R /Im91 98 0 R /Im234 247 0 R /Im90 97 0 R /Im91 98 0 R /Im83 90 0 R /Im85 92 0 R /Im179 188 0 R /Im93 100 0 R /Im281 302 0 R /Im91 98 0 R /Im234 247 0 R /Im88 95 0 R /Im84 91 0 R /Im282 303 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im47 54 0 R /Im43 50 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im58 65 0 R /Im43 50 0 R /Im42 49 0 R /Im42 49 0 R /Im72 79 0 R /Im52 59 0 R /Im58 65 0 R /Im57 64 0 R /Im45 52 0 R /Im47 54 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im42 49 0 R /Im59 66 0 R /Im40 47 0 R /Im39 46 0 R /Im62 69 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im162 171 0 R /Im68 75 0 R /Im60 67 0 R /Im44 51 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im58 65 0 R /Im44 51 0 R /Im52 59 0 R /Im43 50 0 R /Im42 49 0 R /Im47 54 0 R /Im43 50 0 R /Im72 79 0 R /Im52 59 0 R /Im58 65 0 R /Im39 46 0 R /Im45 52 0 R /Im40 47 0 R /Im46 53 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im75 82 0 R /Im47 54 0 R /Im43 50 0 R /Im45 52 0 R /Im69 76 0 R /Im42 49 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im39 46 0 R /Im52 59 0 R /Im50 57 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im47 54 0 R /Im33 40 0 R /Im150 159 0 R /Im150 159 0 R /Im39 46 0 R /Im47 54 0 R /Im59 66 0 R /Im42 49 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im41 48 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im53 60 0 R /Im58 65 0 R /Im45 52 0 R /Im42 49 0 R /Im59 66 0 R /Im71 78 0 R /Im40 47 0 R /Im68 75 0 R /Im42 49 0 R /Im68 75 0 R /Im71 78 0 R /Im44 51 0 R /Im52 59 0 R /Im50 57 0 R /Im50 57 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im52 59 0 R /Im66 73 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im47 54 0 R /Im43 50 0 R /Im39 46 0 R /Im47 54 0 R /Im59 66 0 R /Im42 49 0 R /Im44 51 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im57 64 0 R /Im42 49 0 R /Im58 65 0 R /Im39 46 0 R /Im47 54 0 R /Im59 66 0 R /Im42 49 0 R /Im44 51 0 R /Im68 75 0 R /Im60 67 0 R /Im53 60 0 R /Im58 65 0 R /Im40 47 0 R /Im39 46 0 R /Im71 78 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im39 46 0 R /Im52 59 0 R /Im50 57 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im47 54 0 R /Im39 46 0 R /Im47 54 0 R /Im59 66 0 R /Im42 49 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im182 191 0 R /Im40 47 0 R /Im53 60 0 R /Im52 59 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im162 171 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im174 183 0 R /Im58 65 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im67 74 0 R /Im52 59 0 R /Im50 57 0 R /Im52 59 0 R /Im57 64 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im52 59 0 R /Im57 64 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im58 65 0 R /Im57 64 0 R /Im57 64 0 R /Im146 153 0 R /Im169 178 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im173 182 0 R /Im146 153 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im71 78 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im66 73 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im57 64 0 R /Im46 53 0 R /Im68 75 0 R /Im95 102 0 R /Im42 49 0 R /Im55 62 0 R /Im58 65 0 R /Im41 48 0 R /Im42 49 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im59 66 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im52 59 0 R /Im57 64 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im58 65 0 R /Im39 46 0 R /Im211 222 0 R /Im70 77 0 R /Im66 73 0 R /Im57 64 0 R /Im46 53 0 R /Im278 299 0 R /Im279 300 0 R /Im151 160 0 R /Im211 222 0 R /Im283 304 0 R /Im173 182 0 R /Im68 75 0 R /Im68 75 0 R /Im175 184 0 R /Im157 166 0 R /Im40 47 0 R /Im39 46 0 R /Im58 65 0 R /Im39 46 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im52 59 0 R /Im44 51 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im47 54 0 R /Im39 46 0 R /Im57 64 0 R /Im46 53 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im151 160 0 R /Im58 65 0 R /Im146 153 0 R /Im70 77 0 R /Im66 73 0 R /Im57 64 0 R /Im46 53 0 R /Im278 299 0 R /Im279 300 0 R /Im157 166 0 R /Im68 75 0 R /Im284 305 0 R /Im245 260 0 R /Im246 261 0 R /Im247 262 0 R /Im248 263 0 R /Im249 264 0 R /Im249 264 0 R /Im250 265 0 R /Im251 266 0 R /Im252 267 0 R /Im253 268 0 R /Im254 269 0 R /Im255 270 0 R /Im251 266 0 R /Im256 271 0 R /Im257 272 0 R /Im258 273 0 R /Im251 266 0 R /Im259 274 0 R /Im248 263 0 R /Im255 270 0 R /Im251 266 0 R /Im260 275 0 R /Im261 276 0 R /Im262 277 0 R /Im74 81 0 R /Im39 46 0 R /Im182 191 0 R /Im40 47 0 R /Im53 60 0 R /Im52 59 0 R /Im43 50 0 R /Im42 49 0 R /Im162 171 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im52 59 0 R /Im57 64 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im278 299 0 R /Im279 300 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im39 46 0 R /Im50 57 0 R /Im40 47 0 R /Im59 66 0 R /Im59 66 0 R /Im57 64 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im58 65 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im42 49 0 R /Im66 73 0 R /Im40 47 0 R /Im67 74 0 R /Im45 52 0 R /Im42 49 0 R /Im59 66 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im39 46 0 R /Im52 59 0 R /Im50 57 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im47 54 0 R /Im39 46 0 R /Im47 54 0 R /Im59 66 0 R /Im42 49 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im41 48 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im53 60 0 R /Im58 65 0 R /Im45 52 0 R /Im42 49 0 R /Im59 66 0 R /Im58 65 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im55 62 0 R /Im47 54 0 R /Im69 76 0 R /Im39 46 0 R /Im58 65 0 R /Im44 51 0 R /Im58 65 0 R /Im52 59 0 R /Im39 46 0 R /Im67 74 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im47 54 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im70 77 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im44 51 0 R /Im40 47 0 R /Im77 84 0 R /Im42 49 0 R /Im68 75 0 R /Im78 85 0 R /Im52 59 0 R /Im43 50 0 R /Im79 86 0 R /Im43 50 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im43 50 0 R /Im41 48 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im40 47 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im45 52 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im211 222 0 R /Im70 77 0 R /Im66 73 0 R /Im57 64 0 R /Im46 53 0 R /Im41 48 0 R /Im58 65 0 R /Im43 50 0 R /Im40 47 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im44 51 0 R /Im42 49 0 R /Im42 49 0 R /Im50 57 0 R /Im44 51 0 R /Im55 62 0 R /Im58 65 0 R /Im43 50 0 R /Im59 66 0 R /Im57 64 0 R /Im46 53 0 R /Im69 76 0 R /Im47 54 0 R /Im43 50 0 R /Im45 52 0 R /Im55 62 0 R /Im69 76 0 R /Im55 62 0 R /Im40 47 0 R /Im57 64 0 R /Im42 49 0 R /Im171 180 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im42 49 0 R /Im75 82 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im44 51 0 R /Im58 65 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im50 57 0 R /Im58 65 0 R /Im57 64 0 R /Im57 64 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im44 51 0 R /Im42 49 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im57 64 0 R /Im46 53 0 R /Im59 66 0 R /Im42 49 0 R /Im66 73 0 R /Im42 49 0 R /Im39 46 0 R /Im59 66 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im40 47 0 R /Im77 84 0 R /Im42 49 0 R /Im47 54 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im285 306 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im57 64 0 R /Im58 65 0 R /Im39 46 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im47 54 0 R /Im43 50 0 R /Im45 52 0 R /Im55 62 0 R /Im40 47 0 R /Im44 51 0 R /Im40 47 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im57 64 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im39 46 0 R /Im167 176 0 R /Im68 75 0 R /Im146 153 0 R /Im263 278 0 R /Im47 54 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im39 46 0 R /Im47 54 0 R /Im59 66 0 R /Im42 49 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im41 48 0 R /Im42 49 0 R /Im44 51 0 R /Im70 77 0 R /Im45 52 0 R /Im40 47 0 R /Im53 60 0 R /Im58 65 0 R /Im45 52 0 R /Im42 49 0 R /Im59 66 0 R /Im58 65 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im58 65 0 R /Im66 73 0 R /Im66 73 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im51 58 0 R /Im42 49 0 R /Im58 65 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im71 78 0 R /Im69 76 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im58 65 0 R /Im44 51 0 R /Im58 65 0 R /Im278 299 0 R /Im279 300 0 R /Im43 50 0 R /Im47 54 0 R /Im50 57 0 R /Im58 65 0 R /Im39 46 0 R /Im58 65 0 R /Im39 46 0 R /Im67 74 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im57 64 0 R /Im57 64 0 R /Im40 47 0 R /Im44 51 0 R /Im58 65 0 R /Im41 48 0 R /Im58 65 0 R /Im40 47 0 R /Im57 64 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im68 75 0 R /Im54 61 0 R /Im47 54 0 R /Im53 60 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im58 65 0 R /Im45 52 0 R /Im57 64 0 R /Im42 49 0 R /Im58 65 0 R /Im44 51 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im50 57 0 R /Im42 49 0 R /Im72 79 0 R /Im52 59 0 R /Im58 65 0 R /Im39 46 0 R /Im45 52 0 R /Im40 47 0 R /Im79 86 0 R /Im67 74 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im71 78 0 R /Im40 47 0 R /Im45 52 0 R /Im67 74 0 R /Im58 65 0 R /Im39 46 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im45 52 0 R /Im69 76 0 R /Im40 47 0 R /Im45 52 0 R /Im55 62 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im57 64 0 R /Im58 65 0 R /Im43 50 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im151 160 0 R /Im173 182 0 R /Im175 184 0 R /Im154 163 0 R /Im161 170 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im40 47 0 R /Im42 49 0 R /Im44 51 0 R /Im157 166 0 R /Im71 78 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im58 65 0 R /Im97 104 0 R /Im286 307 0 R /Im135 142 0 R /Im108 115 0 R /Im106 113 0 R /Im103 110 0 R /Im106 113 0 R /Im133 140 0 R /Im103 110 0 R /Im105 112 0 R /Im111 118 0 R /Im118 125 0 R /Im136 143 0 R /Im136 143 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im106 113 0 R /Im101 108 0 R /Im121 128 0 R /Im118 125 0 R /Im136 143 0 R /Im105 112 0 R /Im121 128 0 R /Im118 125 0 R /Im136 143 0 R /Im103 110 0 R /Im123 130 0 R /Im169 178 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 297 0 R +>> +endobj +297 0 obj +<< +/Length 708 0 R +/Filter /FlateDecode +>> +stream +x¥}M³ì8nåþý»´¾%~H¼°; ;\ËÞØÝåééï®ÿ{§2 ½Kñä´¨ª/ +I@�þüíß>þü-|üíÛ¿¥Ï5OÓç4Ù¿Ïm>B?§?myþ÷W¿ÿöÿü>¯ÿôÇoÿö >¦ØÒ¿þ&¤õ3.}9Ó§ÏésBôI¦'DÏôåsY1=ZúýϤ_"¢ïø?óù¿Àÿ¹ã§ß$zúýe¾?®xýñÞtúE¢§ûßßîüâçºécÞé3Y_Ögú'(¿àüÎü3zt~ ðáüưHò>üýéÏöOøüôücúÜ?8¿^~wùyüSéógï_äïÏèüçí_þÿ3ä_×_´õþÅî¿Ó?fÿãÃþ)öÊoAòÛë/]¿hëSùÃöO¾"´_ºýúþÞþ2ùIÐþ ùÁòÒ]þS(¢ýÃúâ,ê/YÛnÿL~Rú×ù?ôûoÚ5ûI¿FûïåÊϬÉÏcýëÒ¼}|Þ ò÷cû#Ûý/tÿù)Hþuû +ÿþþ¤ô+<? ¿Øþ¤ÚÙHæÿÒõ±ýêÖgç'èÿý;ëÏòYôÿ<"¬åXÄ/ÿ9ÀøG¶9ÀøK_?ªöËoÿúýæÓýãøßY~êú9û;ûI×Çñ§Îÿî_?ÿ_ôüpüÚÏô7/(þAñ+9ÿù§üí÷ÿXó%û}ä?z=þ +vÿ6ôÈ~øÕä§ý~aF߯èÏ)ÿ1ø~Ê¿¥Hü£ß_ÐúüWþã¼ä? ®¯ç¿V´üZþc ¿<ÿ$ùáëQùÿùüÐø3húÃó'HñWDü;ÿƯqüwä_,~i÷ßÙÿå3üÉè9órK~cFë£ó#ü¡ýöçÏãõøÿ?ÿƺ~A÷îÄê¯ìÿDlÿôüÓäסÿ\_¾?¶_Ýþiü3eIþyþEãýþ�õ_¸Âã?ëþë+�iµ½£\Ô<º¨Ý <£qgÐ Ô{Ð,2Z¿Ï�R ÊÛ-6A<X§ÙøÞFÀLÓ-lÁ´È³ +:?aÈË h�h{ù¡(¶`r(C¤Pÿe2Ç{dÿzÚOD²ÿ=xàb&gäAö=?:äF½üÑõaìçrÚÿôÊàË�Ì[>2Ȳü³ÿHôRhü^Î` \ù_¦·,ÁÍéµÿv}ù,ØbK/Û¿`pC"(F¿¢õeÿ#$OùWV~ ÞQÁ±ªüc¢#нBù~¦ÿÁ<ðB²z q +óCð#ðÕí¾ CzýÍCxº°Í,_úÖ{@1̯hèâ'AÌFÄBGé.@L +Òõ3RAG¡u&="Æ9TÞ>">Ĥ3ÁOW �üyA¾' +;hl ó·" +´~(, ÉOB@ùüK¤¢|në>xv!j3`@Ðÿ »ðÓÖO +ÿ)d@zYÀ= B¢eNô',¨@"Ó¶â°»á/|Å/�B@~àáI?@á´8G.e´Wc@E^C^±4ºúXV,ÐËÙQ qñ"KÐ)°î PåÒ/2=}!ÄÃó_X~ðý43ò õj rÐ)KBGJ¯ÆË úÒòk@Î^¯æÉó=G*Ï#Eåg ¢üþAGHÅöj%£¹èé¹#°L^ÉOK¯¿Æ#ÝÐ;^ãó +è¯ñ3Zßñoò÷¸Ç.½Æ/p}=³ ý;^ã«Üèõ×x«fÈÏ01XW3T~,=;ªvä].W3húGõgCçïxÍÐù9^ó§ ã5ßréíþõ@ÊréåÿCHòG1»úâ¯fìÂÐþ*oaò'WÃÝù¥Ý3âÒÍrJD´ô@~X5â?êæ!úSàú²ý«*,ìVM Ùo*?Ðþ(öת Ð÷£(ÄO¢ý !°Ù¾{æµ�ðüõjò4÷{ËGþ£?ÁóÓãOì¿õIcþ^K1Cû%Ç_{7"¿ô-{÷§Ô÷Üò/ÛïtÓÿIÐ~(oÉÿ#ýÓý£bà?Ðøiº§?GþÁ}º)öÆÝzþ%CÿG¯%9j .úG7Äé^¡ÿ¢ë_ñ~ÿdl?ôüÿôüQþ^KaµCûKÞB-Pkº¼òsäzGþÂj Úõõü åZz¹2ØýÕÒ˵$aÖøÇó½ÿÇÞQöüÃó¤¡ï_Ëçí_(õ)»¡b+Çm7àhG_"b¡�ï·úàû|K¯¿DOp}=4 /Ñ¡¾$æòö%Ã1¬¢rö½ü°·#(À7ôúSåT2d$ÿz1ÒÀäÓ#ìã7éü)ý°^t$üc �Ä?GÍ.àÁ÷ó_Ù:íúòv$®®¿!û«Óíï#0°¬1ã_¹T̸'4û7h&8�<qOþÂÅû'eȽ"#ùÕ` Ú/Çøø¯?§ÝßúXZÿuúc¸ºÿõÞý ýÑíGöÇÓL ùO4� öÇÑ ÿ*Û¯#pÑ~å%ûÅxÄ?=a�ì+@ÐÎ&�2<?ýûçëcû!'P³Áñ üßaáªü-þ¢ÅÜ@HåRôhFhèÀ®/_08¡^/Fk;qK¯Ã)ÿÜî_°º^Op)_Jpí÷Ë÷O°ºòýsäÚõõÖ¦òѯüQÿÙî¯^NpùåøEâÀGëë Ð#~è?ͤôGoOHþø£<Ãõu8Âɯ�Ð~é Ð8küãJ´æ¯öë¿zÜCòWÊaWÏoÕöO×_¡þêV�5Ü?£GüÓ￸i÷'#@ò +@Hü6¡ósÄoÐþjp¯üòÊl¿ÁýÅÁ þëpÚ/GOÃ,ÝÃáýÅà ³d¿)}þ³?)p}½£¨÷73öO3YË-ÿ9m0 ++�øÏ<ÿ ú,ÿ�õGÿ°ÿçsò§ÃùÔÅó;ÀçGãïý=þÆöOçÖôPÀøCo µû7`@ùý½C;ÂÿE³?áÿ>s¬ï�îøÝòï ý8ÇÞÑaùÁú4þ68övÿzümïwõyþ®¯Øý×Òë`vÿÅô6ÿJ8Öø_õÀ¹±æo,ÿ65`$rf0ÿkºftàL×À|8Ñé=Ïßm¼üãøç¨ÿ0ùkéeÿýÈ øÇó_Ðëã,áþYþïhàÚàúz¶ôzþÌü¯V~t$Iÿ¤z^úý}äï¦÷`P¼gù?Èÿ]¿Ðùéòw \¿öï¨ÿ¸i?üßEûy4ðä8Ne ?ôüd¿ LÚ½þkEöÛQÿ í§¿x5ðØù} .8R$?zUöÏQÿ1!ùqäÂ=ûÂ=ûÂ=û¢fhþ*¡ý;�0vS�ý½þdþþýÐÿsðöOßE_�åWgR þÊöûÈ ì7§ëËño20¶þq�Í~.êÆöOÏ@ÿOßsÐâºÿ°IþÇÃJâüWDçWôúïo=ÿgï·ï§õ7Ðþ!ÿåß ÿ-¿?î LÏø½½¿Áû#ÉÍÚýÇów0þêÇ-ÿìw¤6Ìß¹ã¯Sþn¨?8ÿ~äï¦÷`Ð<ÿöâß¼èH_·é-;¡õõþ +ÀÕÒ{�H¢×ûoêýy¢ë_,ÿ1Ú?Ïä{ë¯þopÿ2ÿc}¿ñåmI+¨~#AüwÄOòOgÑùéùëXïÞ ½#ÿÑ÷ëï±Ö]ö/ä À#JçÏãïpoÿL´Þÿå_~ÿ·øýÄ?½þgÿõ?Ð~ôúC¡·Wþ¿¥ïóÿhýçûóί¤ñÓô_ÏYü~Ú¿#þö[ï?öÇEtÿ9â¯í�ÔûF$¿:�GöÏÑýGüïþ´øtòqª¤ÿ£þÿýSõ·¾?ÎëvmɪòÅÿÿþ ®¯÷O@ûå�p4ÿ׿ܳ_Yô8�(´?zþ"Aùß/-~>ÑëüÏ:þ>Ïôy® gÁÌÐõL*ÐÒ!À²hAø8du3¯jð?<©÷ëpó zhôzÝ @Oëë/ðA7ôó[z9lãõ=⣧ ósT Ù 28^%þqMþ|^Xü-=�g¢ûþÓ�¬ï1Dé`}ÂË{Zþêú ôÒBðf}¥ ´ÒÛ4øþÑüI�ôö¯»pQ4@¼)po@yN¾øý(ÿ9R@HmaõË¥�w@$?º²Ëò·¢ý£ó#ß¿!ùqðlè÷´�mâ÷Î\ø^ÂЪ¤Ð ñ b5ò~/"P9À�ô+tG½# [P}¦lW°¢Ñ :¨fETsÁMõllA`POb¨A:L!ÉïDäªI«zþÐ u j.,óà¬aäÁñ"MÿFSTüúcIèËIð|x°ïopÂxé ÞÀ:iDû÷LD öO¶GÅm?ëúÙ¥ -Bhéõ&è=sÇ~d;`¼ÿô&¦EMAþëÐWyY¯¥ ,ÖÐëE4Á[z½ ÉzGE íúz +jÑöÏS0ÿ"íÞúÁ´ôr9£®ÏßîßÁù³Gaçp Dfü×È'È=÷øÊ?ÖÄ÷¯¸D´¾Ä®¯P$È=M¸cþcù;8òÇAXÿxÖäg ÿýgMÈ~;x ýt4AÕ~3zÍþ¢&ȯSXZúâhâPíÿ{Õe�Ygå5aÀóñ/k$ûIjÆ^/BÚ÷Óø« \½?üËpÿEó?8ë=ÿ-AÿÑQË-ûyä_öO öÇ1 õýI\ûµ^@ª¶>QöKq|å/ +øþ ï g�Ú|@d?ϺÔ*@¯! OòìÀx¾¶ë÷sàè"ú�eã´`½w~úDï½£§½©<l8C ä,m®Ñúxäû6P;�<Ò}RüÓ¿ï}ÿ( $¤¢èàIe®î ÖAzJô$(?L´ûw#©Ö!©Öw#©èÝH*ó/"©TùkÖw ©lÿ$ ÉcdíÉ?ï$YÿåG°#ÑðßQÆaIÁùó2tKÿcDûwq$tþ2Kb¸¿ß(Hþeé£ÃÈ-½^Æ1CùÓË8deÐþ9äoAûwqdÿI¤îGÍÀÃï'IT+iéõN U»iÇyð4ª:éoXÀ4´óbÓl·W!Éüð¥Öï?à)E)õÒûRç¤Øgvb$dExIÏ6Ã[Ddz¡çÀZ ãA,Ð +êx¶z!:ǪyqÃR¡ ©$ëy(À~ì½(O`ºêE=:?Ç< yñ¼Ê¿c ,Ô?Ç@YMÿx)¼ÅôLLV£ R +ýÔ½<CýÑñpg¤?nY"X- +bý¤z1}?éh íò<ã"ûñp¾s¼TÊwà1ä÷x0| +ú~½oïFyò/_ÃÓ9²ùN¨x£õ)ÿ¬rÀ?Þ�½wÒ÷æÑÎãajßOù·iü£QÄ¥óçY éÏ´¾l? òDï(eÐί¿Iëð(ÇòËJ)àùëQ`^DýeÍ0hÿï!ÿ¥RlôR'9ú~ÞLï½eEúëÀCYµó£ß¿]µVʰݺ¶_úSüåO/¥éÖýkód¯êïc·îߣââýkóh¯êÿg1ÔÖJì¿£ #þë¥ðiFþ#3Cùíì+åÞçÉ<ý÷üOÏ£ ûæY éÿOå4ÿÓCû#ÇO6Ïå´ÿN~ù<HïÀTý_î?CÐî?GåG/ÅOêýEJñº?úW@ç÷¯ãyÌÐ~êh³æqzÿé; BÏÑ0ÿx,E³Ãø?ðØ+þèõW¨#0XÇïõþNïÑ@8}ôú+Üò¼b/y¸?|?¯XÑùøçBYÿu4Ê|ÿ{EKïñxxé=ÿá÷ëñ×å_¿\¿;¿ây¸í? £Ï{AÛ4tKï]y@º¨À�XÀúýÈA£õ¶ÔAwDÉçf +ÞGPá³d9¤d" tÛâ@Â-0Pa ¡#¡W¨< d<xÐë!ìùïÀ@û÷àIlüðnDïèPþeÆFBø¯p£Gòë@£ÈW]Ñ bÝ }ÿÆàµ+h4õD¯w£`Æ1R5Þ²?ÃÐ !Ý�n@úý´ú÷oÐþÊ)< 1vÁI8Aþ;FR@ÔBÐìo@òÛë}B¶^Vÿô'ä¾_$>ÐßOÏ/kçGC`lÿôÊ¿f1k÷Dß\ðóH£ßü¹ûHøOC0KÔT¸÷ ï�¤léu@E+akèõnΣ ]_k +§¥wÈh}ý ~FüÓJ�_%õþ×ð�öûu4ù¯£i¬ÿz +.X7òàüx +�}?Jõ·YV°çOâ £{Bë;FbÔü¡ò a ?Ì~ÚH̾·¼ úÃÑþþg¸§&4þ öS s4"öÏó$ÿ£#ûÏàý%âù«ú·Æ[ö7®pÿÿø òÈ_2@ax«hÿHü;¡ó×à<Ëòw 1åofyÑþ'hÿùï_ Ê¿cû§Çï¿ÿÊÚýOàa ÿMÛO}ÿËtOþä?8Ð,ÿsd?hýóÿúHU½¿ÙHèÿËh: ÚOM'OÚúùzüuP\¼sÐìÍßD-þ¢%ôÚo½ A9&ô?äüeñ³ÿ;J8.úYYþc$¥ùí÷Q1°ßïïgO°Gþej$ô'Ø`üÓvé ö¨ÁÞÃék0 èO°C³¾þ»÷`<¨-õ'Ø=ò|Ýaq®<ÁqÀ8°4ì `z5¬bh¿_¡ì +FH, Q¤ïçÿxž_¯ÂHõ'£¢]_·.Á÷±òË»(6I~x +#úCøg.üT~f¤?: y´*ÄvqøÇ±ÐùëUhGGK¯Oõ,Yº8 %<?rEW¨#µ"þ;RP´ºýÜ þË)Ørp²'ÈdxpÍú +Ïö*ÔNo³Ùêºv +ðúßÛXóë d¿O?:ê×7¤ôù* º ²Ö/xÒ¡Âah±#_°° µãáü9wnì~½©^¢ü@è½ý²[Ø[÷Ǹv?ÀX°C),`cëoB&{*V¬ô¾;ÂÞ¯ëgÄÁ»FwøjÌ +,|b`Çì$à) ô,èÀPa¦¨r+÷ò½{UÞÇ+íÀv§/|áºMÛÁëæéÏ`°°"¦{GÚ-=|ü£!S½ MQ>Ùßí ~nÓwkòñ>íe!JÜQ"lIö1Ã%a÷ÉÞVè&¥ þ@M +o4)«W¾Dõ¹Â,VH·«U5'z}ÆCÍê´ôªné°©¨À§õõªïSZÐúØôå5eîôý:0DÅ(>Ñ;fL$i}Þøçàÿø§ÔaëËÀ&»/ö¯WOPþõºfµOôò«U5ÎdÚ½1¤b¬_ÕéGô´*£¾Êµôªlë§kU3â£*cûwÀjúK«2xþzUF +íÄé#$^¡þ8d?xW²?zUMÙ?¯JPåÐcû£cäèOÑ«""Z¿#øÏg4 ûªYUjIU}积?CýÓ_µg¤WíE>£ùºÿg¯úWý´¢õÀÐ~èþ߬xÇÿK½ª£N ¾êÿYWÅUþÛË«þ_pýÎ~s`è¿Ë÷_öÇÑþxf\Þóÿs¾çÿgÑ~ñWyä?:º"`ü¨³Ú«þUýÍeù÷þUlÎü¥eöøÿñËòâè¨û¯0íîøÝο¡÷tUlh}GWEßÞÑU± õù�èõ®æ}<C~¡?@:¡Ôdz{�àMåGý��¨#+nPdÚÚZúÞ£ÌÐÀÔ¶º<¾#Âõå¶:{Ó?¯ ¿£,¼" IÀÔ¶½Éhÿ̬í&ìy8W ¸@ùÕå¯ ä¨i)h}O�oðýM]1àT~ÖUÒVd Èæüú7mÞ°áÿì£,Ú�qz[HÊ¿4ýç¼&¿|È$¼ÀõJB÷ìmN߯ÐY»hYwFòßuÓ�zëëmý3tàô²üÊ_÷ýýþ-�ÏÏ1dR_@@°c2 è?ÚFß?Eñ4YáªüüEþïvO³^;?@HÐ~é)ôud>Ñ~ð²|Mi@ h[DE6ßßïÎ_Y 2ù,Úð Uë¸zÝ8 ð ½jUkK¯ÏF µªõ´¾,GÞÒë³ì ¬¥×ù¿ õUñî_ÖàPàþuþðüåÆ PÉNôUä?ö`i½ÔXs�´òëèJç§?Or +2V` þ1lé=ñÌ�=~ç¶4Фóc¨hud }âÀEâ]?i}Ê¿¤ñ+húÇg3 ùÑ=8£õûûÓ¯=/AXnÙߣÔ}ÿU`m>¶¬*?Iü§ ZÕßÊZtSí'FDçïÀöàý£G°Ê¿h?å½áÚýcÍâä¿)DË@ ùs�[&¤?l}lÀ7Ïç/¿ ¤Ýß`KÙÿc³£Ä?*¿+º³)°ÿ¦gàVhÿÁýMQ7èëÍ¢ýâ%Pÿtlü�åÇ1òÿ±ýéÈ)°£æ±@f<ÑËþ{6ÿç¢ÿ~ýw0ݺ?ó¬Ù_æ?î³4ÿdà(¿znú«gàÊÕø¥Í_X)7gù^÷-q¢3p¬x¢×ã÷}¿#~_ÐúÙ5ÿp¢3p6[áD/ÛoC?ùþzÿ¾_;¿ÚàúúúÖwtÅ ñ_Zßñ¡ü¸[Nüw´Àõ Ù5þK¯Ú>ô=T#dÃñ�´ö±í×Ð)£c¬p,h},È�;zpÐë�×÷5P|º"d cºb¹xY×w¼á# [anF!øU ².Ñ4!*ö÷¯§0 ã¨bÏH�"£G¨»@ [6æql@äBèãÒ¢É/Çöò«WÁU¼X ]@sUå@D×ß É# LO[Uþ2t¡ô.](¶ ä[¿þ )Ï¦É Pz^¡áÆüß 0¢ïùo)íùº@88aà]ù8CÊî· TwA¬`õ0'ÖÒ¸ BaýüÂã8ý@°ràa¯a|ózßæ#èe¯¹'z½¿¦Nôú3|ï1Z§¢Ä?¨ t-½£ ëiÐ×/îH{®ý7lp}}>E-C8Ñ;Ò´ú9eIF#Çßÿ¾¢¥×;¬âªüïàü 2Bý}8CBñ#fðý ¿Î1ÌKóX8çýÛIÛÿòå +Ýô4¶¿zÍô¯y#Ò}DqöÏ!?ØþÉ1´!ô®o1ÄUûµÁýëøüC\ü~k¸*?G¥=½Âr ïç9(úþ#\ß1_òÏÑH¡é/]?CùcÈ#ÒòOÏaÔNÒýåHÿ6j¤ï@ûçoZàý©ç?]ÿWMÿéþWÈÇ|JxëeHº¿e\Ð~:ðé'³ùÚ3|@üwD°ÉOoóZz>ýY×KøôÅ0r i#¡�LwàlÀåÈcøô{DïÀ9ðéó\j`ñâÓW@Æ}Æäëgú=Ò¿¥S!(è�Bз½ìÊÇ(ó3Q Ç夼?ð6BòçW9rûJ9²Ñg>çÛ)ü5ÕwÒSs¿¾¢>*q©éôr ã¨h(#PÒ`éø^7eÁ®Áú<½£¢Æ*ëó¸¾cÎBAôQv~é%ã¡8:?G(Ñù9B{Nì©p¢×;â¿£ këóÈÙ³&Ì; +Ê{P!^�÷ï�U,·ìu4í×ûÝ�¿wåÿV¸}NŪÚÖÑÿ©,s ö§ þë¡øÎÏÍþSíúúsrúãH õ¡='øOË2²¨3ü~½a÷Îÿ®/¤"ØÜüè ÕÉ +²�JAPHZãë5¯õ +â`Ìø´wG_Æh¼1z0*,ËUì½ ¢ÁXuÒ®ï ÆBn¼+¢Ï)é±_mãZRúú&<þçϰÅ8ýS +ÛPÕ/È3üþQ¤è_ýþ¡NÊ8ÿ\ª,-vúÐqQ°>OvE_ K±Ø´@[xþ]Çíôö¸W¿?m/@ÚyÎB}ª-;Únø®½G¼uöìu{DD±w©»À-Dx +ý ª|èVø0S.&x=ûkµ2aÆÇ�Ú9¹R¿ÀRÔ§è¡Å×7íot¯/X>/? úV*<âAoê¬2,Ïg¶EÓg.XuAHuÓ ý1Øô¨åë¼ ×9õ§�ÇyäA_ò\̯sORÓ´*¦YÓÒ +èlµ¥ «67ô¦0צ«¨æ£^ìz棺Þy×b £\¦ õuÜȰV%xèÙÛ¦ZoeæÅ¶»#Éw±í.Tà¿1XîÞØ0ÓËëÛ{ÏUØø¯¿×Ƹ�Òßk 8utþ<Éù'¿×Æ:9àD/¿×îÃHÑaojÛëUùf.Êÿ¤È°vàÓ§K×Ð;"¬G,,°xÅ<A}vÍ®�}vÍQ13�á3PÀpÿàí +¤i¢�%P~6èÐÑþ9p²`àèÃ8*F¼Aô- Þµ-H¿z~ÐèÀC©Ñ bÀðw� þ{?ü{?ü£4#ÉÑmµâçá ¼ÏѶÅ:{dì z�2ôûÑ5tQÿs@ç¯Ï>ʦØ_Þõ£éí:Jð;r*þfì×°ëç"pSÎÐ~;f ûË1{fV=`Ö3åW®¸ËF0r¡ýÓ©,W*ðGtò![¿\z#8&º>9ðißï}R=è8ì:dÀ#á2ÿ¶å{ÇÑèüøè~Ú¿0ν¦0jÅûi}}vmx?Ñ;"p´ÇìÂZfÝ={F¿_~ðüdÿ'F$¿ú3³EÐ#þÊdNôzCòï ã°káv¨çÏÊ\ÐùëÀ7QÔ_>»S³¿ôü +Ôø¦ÎÙ_^¦²üg³;¡üèò¿¡õñóùïèAòç@=VÿÄÿÆ¿î )RÔÏÏÑ1sÕþ·¨##ý£ûþµ%Ãï×;vò=û°ÿ"ßß ú/¨cu¼ÀõÁk$üÔóOò¿nö_ôóß þëñÇý/¹Ò|ÝqçþÌØqþñÏîDöG÷ßsö[kǯßþZü¯É?å_Fçï�^½µd.ü3Güg^,~ÙOÿYü|±c0ÔüKt¬Ñ6Z&/v|bGt|qÄ ´¾xpÄÏWC¸¾² ý;CjÇetRù1ù»RQ¯FëSþÕÍÿxÍ"ÉË_ïC^ßÿ¾áW�hú7]ê×üί¿iü4màüô÷«�8íßÑ&3Ýÿ}p"}U ä§èûOP~G^õ-½ÿjg7ïqü÷èþÛßj¿*úó¨ý2ûÝÐ÷÷Gÿ~mùÓ?ièÑû9³AZÓÏ^|TÛtNôrüaNô:pñöòo1©HûçùOÈ]~6ÈÇà&ȹÉá°-ÿ´óçÀÍ È¿~ù[·üìoCïhÓª ó£ïU@]Õ?4Ö?rfxþ:âOFçïï¨ [nòoöGo³,ÿzeÑôÊùCýaù_d¿mýLoó¬ Bûç@¬Ø¸^(פ&û|I* àh + ¬¯÷y[ãÕ Et:hØél 9@Øà0G:\n]`6ùéêfI#¦ç·Àõå>÷´@X½\ üè°áØÔa¿W´T�Eö¿BHOàoèûõøH@_Ôß<AX* ý:ùé´¾ì@íGwìgd?Ùµë£@ÖP>;ê<û=CÎÀ l/3²Ê%¡þé�vpzä@é \´�°O}M4ôA}udÀç|I�xCï¨�2l× øÁУ +(Ãjz`CßC5ñ +0m}N¿zG]ó£»�[zùÓFWÎ_¾@ +²v}æ³ÊÖÃù×íVM¨DÀAãÏl@~u 0ÃlÑs (¨ÿzWBûwþ±°]_v` hitþ3Y³_3ÒGlX¤ÜÒ¿hØ`}X.Ê_ÍÀã_ÀD~VÄGߦ?ÁßÐ÷{:È®®oôhÿÑ»Ø~飴ÿú÷GÍ~ð +6¸¾^ þ:æN!ýu|?öt Þ_zßïO½ ÛùÓqNôòf*Èþé/iÕöOågû×1£7d?<Ó=ù9�åÇæ>ïòýñÿ{T î?@¹éÿdÑÿ&�þ;é ;â¯÷÷¯@ëë ÆzݼJúÏ+Ø þ9ý¡üñ£°Ü»?ø?ÇþøÏâÿ^¯À9âÿ^®À ¹Æ?-½l¿UP¶û÷W̵ãEß¼@i×R[¸p´p-ð�ô.»�[z=²ªdü$Ñ3P!ZzÂÁ>íä¼8¡õ´9àn²Bô )0qA +ìµþ9J8½@t³6tþ¨|Fçï(Ñùë/�qüÓK@hÀõó/tþ¼ÚGÜÍõWȽīüßüê/GÜEý?* ßO+Ẩ?GÛEý9ZØúCÐxÏI ®ï@û×_à¡çhÌÈð$ Ðþò;CÿE¾?ÆEû¿'0%Ä94(x2Æï^ 8(º¼&ï¶ô�(ºGá*Oß}Tí`>j â"wEC$]HV50<¯P=xrP]t « 34!z÷èb»hÂEæêkì;v! + Z_w¡34!úN^4ùá(4ðüÿÈØ.Ë¡ætÇ\èZÍì B =Ñë@¬BË¥.ø`ò׬¯»@Á®°ÁþyòÏ"3¡ï×5Y +a°Úh]ØPîR Õ´û×»�Wôý.À-IòÇ»Øü8Bàiº(ÿ§ÿ8 +Nô¢×å'Z(?~èy?ý ßÞ�û :¯»ÊÿaQý¦ò7Cýs è@þé5åæùH]¤«úýln3<½eçï¨@÷ã zºgÿ vlÿÈ÷Cûã©üÓCØøçxCOòèB3ô? Ô_EhFòëÁg¤?&MhùßýõtÕ±¹ÍWý½áÿ°ÿ¥ëïºÞò_þKþ®ÿY´_|n3ô¿åûã@áÜ4þÈt¡G(¿BúK¢s|MÚjõ§¯A§M�0~t4dxëùõO¿gèë(°³fÿyþA?úý¼?t+èõë³96¥ÌjkR#°O){f0Ã:#À&6×RxÄqtê ÞãÀÑØªPÂ{'V ¬¹¡×«ÐmDÚÞ1®9zǸè-Þ[Cü×qÈ⾿ÏászxþI.ðüõÎn0Âá"äãÐdIþ8W÷ü;20yBú/·Yæõ$¿z\¥ÑúGì|8 +CýeôPt¢Ïʽó/t~ÃÛþYñÏceÐÁ÷ó´?2Ó^Ð{�zÜÑÅÐ~¿>%@ùç_ yÐá=//"X%ùã0ðþÐÇ%cû){ 6.z¬,ï=5¬òf¸¾¾ÿùɯ£Ú?GÈ`öèϪéQ@üwÌþce�Â×9EÁþÂÑeè¿ë]ïÈDÈ?nìñÛçèôôú83òß)ÿ³¦¿Fê¯Î?Ñã]ðþÕ»¤ÿ½üÐÐb|y¢û/Úþ)ÿ´?ú¼e ¦rI~.é*oôzæ0½Ç1åèû8æ¿OïqHù(Ú ®ÏèÑùé/`Áî¿ÿiÀ +ùçdÏÏ«ÉÇaDò×?ËàùVtDC1®á0ÇåG/¢H~P;Ë?hü£ë[Á`}Aûáè·ûgzcÌQ ÿô +é?8ÖðãwñGQ¸gÿbAúëÈ_h?uù[¡ýÓq0W$úp´üíÅûï¨`Ø_>ÇGã?q´õ¯áاöïxÿúp·ìç¢0¿Aþb°>å_ú¯¿�[þââý}TPí7Ë\õÿ,ø¯çïvFÅ~QÜ÷Ç_º¾º ÀÃ�§ï]Èí_à^]µ ¡ùÐ÷qò>þÀòµ!y°6öú$âëÁ¶ maÑëÀ'ͦQܤØPu, �ÍA³"¼A"´®Z°A¼$ Õ¡¨ÆÑ)U5߯ÑC4~HÆ~¤üxäA.ÞÆ± ²<ððb ÈëxÖG%ÅÀVRð{$Ï9¾èùÇögþazFhá¬óò ¼';B^ÖÑ:"l¾Ë>®C4w_ðúPaAB- «æ ´`¸ +§'½×áZIÅù@UøYëÔâü0Ö/(ýôÒPX^U)g& +Ïêuµ1CØB/ϨqÅù@b`[ð¬h=@{+ר 2Ñ+ÎL�ì¢ölVrf¢p/ÕXe9µÀúüÂÍöe«rxv&FÈÄI¸Ùê"ÔÆ(5\¤úF!V¦°þUýåÀÁÕÙÁ¶#èÙÂ,òÔ©fª^/ gèqÂôró÷¦½¯ýÚ_îøÿõã·~>ÂÇÿõíq?è?ö^éúÿò§÷øÕùáýøë¿ûßüøÝoõÓþúÓ?~üë?ýâãOùã¯ÿÿ¯~úõÇþ÷Ç¿þûÏ¿ýÝï>~ùw¿úåßüâóãßûÓÿùé/?üÃÇo~þùOÿøÃûÛß>þÍoÿúù~þá¡,ÿõÿøÃÿûáOÝé>óóï÷÷?þßoÿüããëþfæ +endstream +endobj +298 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 709 0 R +/Name /Im277 +/Width 15 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÁüGNNÆÆB¢¡árÈTTØ?àoàª(�^ ú +endstream +endobj +299 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 710 0 R +/Name /Im278 +/Width 25 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ�Ãÿÿ?øjXåÐ0TN¢¤¨(üÿKÊÔÎ�&ié +endstream +endobj +300 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 711 0 R +/Name /Im279 +/Width 30 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿýÏ æg`|ÀÏÀp½±03ñv ,3|àà2lcÀr ,ÿÿ�³7 03PZ¶n¶�Ïg÷ +endstream +endobj +301 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 712 0 R +/Name /Im280 +/Width 27 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuÍ= +Â@áW,l[!«6¹D`/Ý9çØ£ä)-d&_°³xùý®ÉÉâòÌÒÈ?Jã¶íêÆ;3Å@Ý´JòXÙOSÝÔ·jÊ?8ý:)0ºþù~,¶Ä6C +endstream +endobj +302 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 713 0 R +/Name /Im281 +/Width 30 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xm1Â0¹Hé +KT<!â>fÙæyMøI:Ú+]XYtHè4ÅjF>=ðÝ#9Òkdk{6¹âÿÉA Ô"²#qà 3pparFÊsÕïM¸¶ÄúÀéàÛ¾mÜê¸ÜÊrý�ZÑFH +endstream +endobj +303 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 714 0 R +/Name /Im282 +/Width 48 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]Í!1Ð?©¨£ A¯#ÁàöJH\×íU8F3ôM?ÙÐÝ`}ªQõ S@P·.ÔãgB�bÂfsÎ8Ób^ +îÃ'*´¡�¾!Ónº.i¨²¢+ ®0ßfüìæÜvÙCù×ç]K6¯S|ݾ�oDõ +endstream +endobj +304 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 715 0 R +/Name /Im283 +/Width 27 +/Height 12 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿÿÀÿÿÿ0� 5õ@µÒ<uý +�¦K +endstream +endobj +305 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 716 0 R +/Name /Im284 +/Width 21 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x3`H°a|`ÿÿ�5Øÿg°ÿÃ`ÿÁ,"ÿìøX°?°`þÀ�E?¨ùÇ?úðùCûþòÿøÿ*ÔÎ�«Ã(V +endstream +endobj +306 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 717 0 R +/Name /Im285 +/Width 14 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc~ÀÿAÆÂ¢¡áÃóï?|°ø ó�d +$,ä°à®$�ʪ +endstream +endobj +307 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 718 0 R +/Name /Im286 +/Width 11 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xco?`y ð@Ã#÷ ÿ|x� +Ø7È3pÔ÷ó�£ +endstream +endobj +308 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F2 422 0 R /F1 420 0 R >> /XObject << /Im182 191 0 R /Im40 47 0 R /Im53 60 0 R /Im52 59 0 R /Im43 50 0 R /Im42 49 0 R /Im162 171 0 R /Im171 180 0 R /Im62 69 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im58 65 0 R /Im39 46 0 R /Im211 222 0 R /Im70 77 0 R /Im66 73 0 R /Im57 64 0 R /Im46 53 0 R /Im41 48 0 R /Im58 65 0 R /Im43 50 0 R /Im40 47 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im50 57 0 R /Im40 47 0 R /Im59 66 0 R /Im59 66 0 R /Im57 64 0 R /Im42 49 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im156 165 0 R /Im155 164 0 R /Im70 77 0 R /Im66 73 0 R /Im57 64 0 R /Im46 53 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im68 75 0 R /Im175 184 0 R /Im70 77 0 R /Im66 73 0 R /Im57 64 0 R /Im46 53 0 R /Im41 48 0 R /Im58 65 0 R /Im43 50 0 R /Im40 47 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im40 47 0 R /Im39 46 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im58 65 0 R /Im59 66 0 R /Im47 54 0 R /Im48 55 0 R /Im58 65 0 R /Im146 153 0 R /Im70 77 0 R /Im66 73 0 R /Im57 64 0 R /Im46 53 0 R /Im41 48 0 R /Im58 65 0 R /Im43 50 0 R /Im40 47 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im69 76 0 R /Im40 47 0 R /Im39 46 0 R /Im44 51 0 R /Im43 50 0 R /Im47 54 0 R /Im52 59 0 R /Im53 60 0 R /Im55 62 0 R /Im57 64 0 R /Im46 53 0 R /Im162 171 0 R /Im263 278 0 R /Im71 78 0 R /Im47 54 0 R /Im39 46 0 R /Im57 64 0 R /Im46 53 0 R /Im50 57 0 R /Im58 65 0 R /Im43 50 0 R /Im53 60 0 R /Im40 47 0 R /Im39 46 0 R /Im58 65 0 R /Im57 64 0 R /Im57 64 0 R /Im46 53 0 R /Im47 54 0 R /Im52 59 0 R /Im45 52 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im146 153 0 R /Im263 278 0 R /Im53 60 0 R /Im58 65 0 R /Im40 47 0 R /Im39 46 0 R /Im51 58 0 R /Im46 53 0 R /Im44 51 0 R /Im40 47 0 R /Im50 57 0 R /Im66 73 0 R /Im57 64 0 R /Im46 53 0 R /Im59 66 0 R /Im47 54 0 R /Im52 59 0 R /Im51 58 0 R /Im57 64 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im44 51 0 R /Im40 47 0 R /Im77 84 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im175 184 0 R /Im146 153 0 R /Im173 182 0 R /Im161 170 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im40 47 0 R /Im42 49 0 R /Im44 51 0 R /Im151 160 0 R /Im61 68 0 R /Im43 50 0 R /Im42 49 0 R /Im52 59 0 R /Im76 83 0 R /Im42 49 0 R /Im43 50 0 R /Im21 28 0 R /Im30 37 0 R /Im33 40 0 R /Im150 159 0 R /Im17 24 0 R /Im71 78 0 R /Im146 153 0 R /Im153 162 0 R /Im153 162 0 R /Im174 183 0 R /Im157 166 0 R /Im68 75 0 R /Im284 305 0 R /Im245 260 0 R /Im265 282 0 R /Im256 271 0 R /Im260 275 0 R /Im249 264 0 R /Im266 283 0 R /Im254 269 0 R /Im255 270 0 R /Im251 266 0 R /Im256 271 0 R /Im257 272 0 R /Im258 273 0 R /Im251 266 0 R /Im259 274 0 R /Im248 263 0 R /Im255 270 0 R /Im251 266 0 R /Im260 275 0 R /Im261 276 0 R /Im262 277 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im52 59 0 R /Im57 64 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im42 49 0 R /Im39 46 0 R /Im59 66 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im58 65 0 R /Im43 50 0 R /Im42 49 0 R /Im58 65 0 R /Im39 46 0 R /Im58 65 0 R /Im57 64 0 R /Im47 54 0 R /Im53 60 0 R /Im47 54 0 R /Im52 59 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im52 59 0 R /Im57 64 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im50 57 0 R /Im40 47 0 R /Im59 66 0 R /Im59 66 0 R /Im57 64 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im71 78 0 R /Im58 65 0 R /Im44 51 0 R /Im67 74 0 R /Im58 65 0 R /Im39 46 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im42 49 0 R /Im39 46 0 R /Im40 47 0 R /Im39 46 0 R /Im40 47 0 R /Im53 60 0 R /Im52 59 0 R /Im43 50 0 R /Im42 49 0 R /Im174 183 0 R /Im68 75 0 R /Im160 169 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im58 65 0 R /Im53 60 0 R /Im58 65 0 R /Im40 47 0 R /Im39 46 0 R /Im71 78 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im57 64 0 R /Im58 65 0 R /Im43 50 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im70 77 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im44 51 0 R /Im40 47 0 R /Im77 84 0 R /Im42 49 0 R /Im71 78 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im175 184 0 R /Im70 77 0 R /Im66 73 0 R /Im57 64 0 R /Im46 53 0 R /Im41 48 0 R /Im58 65 0 R /Im43 50 0 R /Im40 47 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im47 54 0 R /Im52 59 0 R /Im45 52 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im146 153 0 R /Im70 77 0 R /Im66 73 0 R /Im57 64 0 R /Im46 53 0 R /Im41 48 0 R /Im58 65 0 R /Im43 50 0 R /Im40 47 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im71 78 0 R /Im51 58 0 R /Im52 59 0 R /Im45 52 0 R /Im45 52 0 R /Im55 62 0 R /Im40 47 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im51 58 0 R /Im46 53 0 R /Im44 51 0 R /Im47 54 0 R /Im50 57 0 R /Im42 49 0 R /Im146 153 0 R /Im173 182 0 R /Im263 278 0 R /Im68 75 0 R /Im287 310 0 R /Im180 189 0 R /Im83 90 0 R /Im93 100 0 R /Im288 311 0 R /Im87 94 0 R /Im289 312 0 R /Im94 101 0 R /Im179 188 0 R /Im83 90 0 R /Im93 100 0 R /Im94 101 0 R /Im95 102 0 R /Im42 49 0 R /Im55 62 0 R /Im58 65 0 R /Im41 48 0 R /Im42 49 0 R /Im59 66 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im43 50 0 R /Im40 47 0 R /Im51 58 0 R /Im42 49 0 R /Im59 66 0 R /Im45 52 0 R /Im69 76 0 R /Im47 54 0 R /Im44 51 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im42 49 0 R /Im44 51 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im58 65 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im70 77 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im68 75 0 R /Im40 47 0 R /Im43 50 0 R /Im44 51 0 R /Im45 52 0 R /Im71 78 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im44 51 0 R /Im42 49 0 R /Im73 80 0 R /Im58 65 0 R /Im50 57 0 R /Im40 47 0 R /Im39 46 0 R /Im42 49 0 R /Im59 66 0 R /Im69 76 0 R /Im55 62 0 R /Im40 47 0 R /Im67 74 0 R /Im55 62 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im40 47 0 R /Im44 51 0 R /Im50 57 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im40 47 0 R /Im50 57 0 R /Im66 73 0 R /Im47 54 0 R /Im43 50 0 R /Im45 52 0 R /Im58 65 0 R /Im39 46 0 R /Im45 52 0 R /Im45 52 0 R /Im47 54 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im40 47 0 R /Im39 46 0 R /Im58 65 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im70 77 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im171 180 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im40 47 0 R /Im39 46 0 R /Im58 65 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im71 78 0 R /Im47 54 0 R /Im43 50 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im45 52 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im68 75 0 R /Im74 81 0 R /Im45 52 0 R /Im48 55 0 R /Im47 54 0 R /Im57 64 0 R /Im57 64 0 R /Im47 54 0 R /Im69 76 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im45 52 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im58 65 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im40 47 0 R /Im44 51 0 R /Im50 57 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im66 73 0 R /Im43 50 0 R /Im47 54 0 R /Im79 86 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im40 47 0 R /Im44 51 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im52 59 0 R /Im57 64 0 R /Im45 52 0 R /Im55 62 0 R /Im47 54 0 R /Im57 64 0 R /Im59 66 0 R /Im44 51 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im40 47 0 R /Im59 66 0 R /Im59 66 0 R /Im57 64 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im58 65 0 R /Im44 51 0 R /Im69 76 0 R /Im42 49 0 R /Im57 64 0 R /Im57 64 0 R /Im58 65 0 R /Im44 51 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im153 162 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 309 0 R +>> +endobj +309 0 obj +<< +/Length 719 0 R +/Filter /FlateDecode +>> +stream +xÅ]K³å¶qÞϯ8K)U:C< zé²JRå²KSåE -,9g$YGüú¯/<×ÉBWC6ºô ðooþpûÛmvw·ÜæÅÞ]nÖgãtixPsË}R:5DýùÛÛoß¿Q·_âÿÿûëÿÛtûú͹½¨õ:vì>Üg¥ªÔ} õsƾôÐGÐ¥ê9Üí¼w|D¿è{ÜñçGÝà§¥" 4ôØºÚ H'¼ö4ÿ 5<êß|Ô ©¡CÀÖÕN@~<à§ûäTE@nØ 3êØzl]í¤Ç3¹{*rãn°õÐsýÚQ >=ÐÏz>0`~~ÔÏÜ:è÷7ô¥ã#ú8'¤GÝp`À½¡GÀÖÕN@z<°+oW�{Ã÷IäG àâ8¥OzBW*à¬j1´BêV $ æ@ïø"òD#Ì*»øÝ=SǪ W>þªCEÀÚRQô( aéPÁsç;Úù»êYX[¦¹" +ÊÓ'¢ çÎw"õ÷9ÔD¬-.j¡ÒR¨> x'dX¸¤P±6L¦¦¢´Ô'"ÁîDÐóÂä +bÞBDáfB¹F +6;oYsËåªÜÜPdcVó]ͺbͽ¥#©¯3W@Ûrfnn_ËÏ>®¥ÒKÅ{KO8Jß/WH37|÷Ô.ÞD¸¨+÷pd¤ +½îʹrkÕµlPË.^¬ ¨4ôD##-\¹BêVYçæ]4Ê{E2r` +WhÞ+#¤_Z®î^+ìü¼óääòÔÒH¸©»^Æ]ÛÛ= ñÊäëe)ì9ù¼.õ{ºÒÞÞÍyaÐÒ"!ççAjz +ßÍz9½§+Eîut ¼ZZ$ôñïl;YZ¶M×Òk¥aÎ_*¦- jØwþttRZþÝUÍÀ¹¥æ`'lç`Í+¢#3ëZ·ì*v>¸?ù¹bfò¶vf~Áÿº-÷u 3ÂL_lgfòë÷lÍÌaÊ K#þIÃTKzaÌóô^xcG»Ü`J#þc'ÕbÎá sKÍξ�ÐsÄ_±s|gìLíìLíììCíÜ$ôñWÌìîhæ9Ùþgr +;ï¾³³ÐO}Õ¼yðæw^N¬_+êx¹]û±{K×_ ¾\îø©¹}x!Ìî-<öµsj¬$nkU5§æÊÖuÓÄäÂÒs×WH(wvÙ¦ñ`bJËMw¢®½dn \Ä�\¾Bz®üWÕø¯÷_9_°¿RaWV\Yute}|Ö,-#¡!ÌÀSHÍík׸õÍÿ)ò~Âÿïr^ÂËl¼õAJÐÜlrNeÏòhS^ÎßÞ¾ù§Ôß}n¹mÿûç×ë½!Vys÷säÄeÍÊðÛèòócvåÊûù¹Oðó¢uZC¡pÏô|Ëóc¶Ëûù¹Oôó¢Íú[4ÐV§\«Yû*ÏòlòRÒûôÜ'úy ÑÖ¸ûÉ¡³¦éù±?«d7Ëûù¹Oôó¢NY¼%¬©UbÃ})Ïý9jôßÏÏ}¢Çð HÊÃÂÞ¥<=)nÏ/l;ÿZýu%Bâ;èô¼K8 2å}{æì×ì³C4I,m}DÓÞ=»¼CïÓ3"úù>;DÄê¼cEó=«ìIÓûô~¾ÏÑ$±kxe* OÏ»OÓeÜ%ÑÏ÷Ù!ºH¬¥p*K´½çC~Îápy:×ìsWuL¢Ö%;'á8d(âß%©Tò +N¿fÕ}ÿ8ì°J4§)½:pµÔÛ8k#¼|l¯ ¹ÞëÝ5ƲìYõÈYÒçß¼|¯`Iè䯮ÚÄÎ{Ú¦üÓ&¤]ßuYé�_/;Àw)y MKÇå÷ÒEÏ¥|m¼ì�K"ɤtÓQ¦=±T~Ï»=¯süÝ$M:ÀׯË)|& år²7©µ9,BQkç_sÚ®²�ÿ8$Âa4ïQئÑ9·S©5Úé÷ÿÒØ^p%ë6§ZÒhçÞ§©#¶óï þ¥¾6&á�K^Ä'M²4Õþ WÇèîð{i¯I8Àhq´sÝ¡"Áü{¬ÑÚß»â÷Ú,#²~¤Ñ(T~i i´æ÷ñ|mL=¿3¨WÔ\éåaGó®g©L£¥ò.ZÑJõ®Z~ܼ§ë9zÓh¡P{lûsýþ¸§xO×3LZ¤Ò2YkRZgÔ¼§çùe-QiG Ykç£Vôô.ãézvóLÅYK£Gµ?µÆ¨'wOÞ ñÓp&+mmõÝ,{ÊpAÏ)ÛÿëwoÞ~®oêöî7ËÝO·i%|û³?~¹ÙÞÞ}x³6Û[Tmnï¾¾}òîÓÛ»¿¾¢Ö ·Ôò§¦åÏMË£iyß´Üïÿ¹Ôóºþ^ÐÑ¿ Þù±iùáÒP? +Þi{nGÑâúòÓé·ïÒæYÓt³_ò~«ùÑÓËå±e²µ>Ûlã¯í_É".Qå|f¢f]6z~)t+kn-oZ>4-nZÞ7-?5-·¦å¦åÔ÷~¾Pø³�WûNÛÏcÿªiùVÐs;Â"`{Ów)k;¢eî0Ñêù¨Å÷´´Pí2¶t·r© öAçÊApòóÝZ3µÅÄÞ2¦¿ý&ZQVuTßáâܬdÐykù,5í/~qÁ/ÚæE%}ÑH_tÒÁ´/2qÌ`T´ÐqZµnvȰµ¯eHîðf ë·è®wÚYÕÍ;¾yÇæw¼Î¸ +nZB2nbßqM¯Øö MèENk¢SúÍMaõóó}|Þ¼Êü~yO÷+5ÛB$¯RæÌF}«jñ´Z5¤zª +¤S`µÁªªóµúÖì}·[È~NæÓÜ·E;«-DKÏò¼Ûs~[ÈOcÈ5%É'yf8}³¢ÇÞàÈU%w8êTë¨.éJGímÿ\Í¿JÊßÖêÊÖ[læÊÿjZT^iýl9AKl˪%ÄW@©AT×ßêNÑú[}zk®mg Ö&=ïkesñqy¢ +" 7O÷yZÿ(W4y½sKÅêmTiy¢³4âMçôÊk:¨W·Ø´aO굦tÎè^ÄíûëйÎl]·ìåw¥-¯Só{.Я÷Ä-1¥ùμ[*nQ.W¨Òò·¨âÖH¸Å nl.ç+¼[ÄÙPï Hf³I&[ÕÊnÒ)MKGÝß}Ò>´tÍïºô~mL'&QSfb©LsjñÙ"¨½å & Kt¬I,`\̹áqhHì\Èëa3·ìx·4=âCÞÉ«æc4ªUªë÷UÈe<GnëNóIK¯h>sÃ=B ÏpÂ|"QRNpG8ÎÉßb4¥CBC}ìyº)·zë6ÛÞ§¸ª_}xóö_>¨ o¿ùáͪôÝNç¿và7Àcv:ÃG6Ñå®ý +U¢'øhýøpÂzTo¯ñ»~m!_�¼mðGñÏÁüÁÂù*/¹Ï¡,o:Pw q"m³»+0o]ªu½¡ % òwÃBÚ®ðp]jÑÁYºz-¬ ÇÁZi!cÔ +q Y¤ õ$�ç!~Æï~æ¿¥¿U!>-üz|®Y�)MÀ oàî¥fÁ$ÔÐw5öbp3`�×0`»�¿�~ÛàgÐCÌÀCÔ2�+@ó¤Äп:ú9¤I¤Xú{Ñeú£³'Q`�I£ßDôfLpóo4R�È�´ò»Ñ¯áú7ð 6Í_k£G1ȹfþØù·HHæ?Ã;Ŀ΢áè?vþ¡ÖÎ?g�ͬ2fÝnèvýâßvýÙñcý#ðà²üDý<¸Ú~DǺ©Àuí4!² ÎÛÉ=eí´<eBXnE³VC n¥`5t`¶1bn¡1Ö"à,¯ (ÖàÖA"â¬_+©ÅF®¡<&3. `´D�ÎbT6ðè_@Eh¦K¨ìñëK¨øå.°ò_ã»ÀÊ{�/ .#übXÍÌÜVdÂ:ô³18°#~±¼&dôcX á»Àj±�^î¯9ýL<!þiñ³!üÓ( 6QN´~Õ +οØ�imDüÇ8Âr ñ§µ òègÆïÐúIôGÎᬠ`á¯ZÈæ@¼{Ê�ÂE ¡ÈÌþ) ÀÈruO1üE`¦é)`&¤ÀåÀLÈÈ Qê)`Rà9¨ÀZì·j^�¯¼ÇÀFj�ú Rr²Ö²Kï �bhfýäùúA®Ýas�äÀÅuÛÊë7Cùóÿ<?¥ÿLDú3`&:P hwaæ&Y÷ +S:pÅhßÌ`%²Ñ Úb Ã$ÛH9s-Ô rÐj¤r Pí +rY¤/à@±°ö9fÌqh)Ù@vþ{JZ,ÚFcæÏË\X~DüÃÂÏOòß,ã?639Èr0Ù À· A-Ä/ÚHðY¨ð¢ËnÄ;_^@ GxCcr@> Gx0ëW,àËë×MatèçôÑüÉwAT°hübùW_¾®¬ÕÜÑ_L>Áùïbé Îß@äO¿9ôàAÊyZg"vô¢Á2/Z6³hä\[ÿj4�â@\@ôbXá-Ðò]Rp?HBq9Y4Ñ3?ä19DßÇGx A9Îü³1È4< fÔ@14Äb0n^ø¡4â¹eÌôüè[Ã_´ vÁ.Zã þ×A8_ìÁ/õàò/N"Ù>Çó"â?vþâ¹i(¿býk'âs7xþ´þ³xüvã=q!hÉ�t=`ì¯<90/îÂr.]¯ñ¸P)8v07*$½:¨ßÈ�¿.ó"ù(¼Ìz°Y}yÂË|vþæ«^8ÁCèµ/¤0~KÃÅpÂTµ< Ä×/fLÎ$N¡ÎbâHÊ#à +âðbTÄxäÅ´^\:°�øYGðÿ@Á#ühþ°W³OJè�¯ÕÔT + 2ÕðxQçb2ÃÀo*<ÿ𪠸bµ1ÝtÐ.½GHà_Ld³t<0�y.äÎr<q*iuÐ=RpB¹ÒH8ª!Á*¤ÀmIUtyNsÂKÒfVµPÓµè3˦Çô¶§ZSÄR`!¾é Ã&Û`SÓA[×·î µX«@¾¥¶°-ìZ:°`[uÎs°Tu=Æ t·Ö(a= æ ]Æ©ÑG©=Á1´aQ»¹g±µ¨Ü:RbL°çÍéLA>asî ¦vM±5QÁW¤)S`lZ«;pxaØ9³b3<&AÎ3Çf8yÔù¬^W[Û×1g¸Îe`æ Õ;wÐx'-+wb|cº8r1ºÊ½Nðâ ²ÀìÒx?à.ÏáÏÞá ^0ÆvÙ¸BÓã<Á³K7ÃùÇg*×9ôÇÏÂõÇøjAãoµHï°joüü.yÿõ$å?nhÁ·: +=¿6AÁæè5áù¤K¿AúC.ÚÀñËÏ*æBû¼|ÃÂõçè¬joüìÔòüÎuZWå_{d?äòO{T=ùgÇ?#ý10þ�ùG.ÿ¿ù_ þË¿àüùÇ@ý#ßã¤:ÏÓøå{,ìÇų~ú/ò³~Ù¯³~Fæ¿púözú¯ÓúC\%B{D=ùííéO~ úOò:Í\¥ÕÃÏÎßýùëøo Î7@ýô'Ãÿɯ¼JÐ,pþÅþ³Y¤üÏTéMHÿÉ/«° +Íß@ áç«Lÿ£fKÃùÀÓÕ"Ô~#ÅÏÌ¿ü'ß±2ÿÝ_ÂúO¾ÇãGqüd±ÿ#ö,ÿä'eg¸~òøâÿN0?Óúwñ»KÁËãg²süuU Ît«|øÑÁùÇÏÎ<~&þ¹xP®ä:åø¦J4~6Ðü äò]}þãâo<?OÌß@üLþwçÿCþÇÏ +ò<~Öäñs¾iÁtNIðù+?Ùÿ@üh!~yül¡üÊãgôß@üìõsãü@ü<ÃõÇÏâßõSâ÷ÿõÎyöø¯EôÜõ3!þ¸ëG!ù¨ShýP>çl4Í_ï3?Èò×='Èåüäüä¬ÙüS"ûÁçdú¡þÉxüðùh¿Îy"ÿo$�í¯<ÿ1?ò'¸é&õ¸ÞUµ5tOy2ò³@ý#?¥8Éü6þQÿÐMEøø¢ßýçOéè ¿¼¾Ó@ÿa þò/ý±ÿmqü4P*õß^>¥9n¿)þFü+¹,ußß6ð¾÷-ÛêÀTÛ=¤Åày:Lø�Øø üàÅ Ð1ËÓ´¥qlyâê+´ mmI&`Ú"vAù +´+°á +0ÇüòAË ÊR}¦r0_Éðó÷E{¡r÷E£ùoUgÂ×r´ÇÔP}+S]YèT.Õl*k%X~P×Bþ áAñ?Ë?ipÉ1E +áþ«¼LþYù#Ø?vþfgé§@÷W,� +!¸ë¦!ÿËS@ùVþ¹«¢&¡þäJ�ÐøB¨?%)üÂQ +³sÌ Á4Ä/a5\yõ§<5å!¬ÚfþykþA.8Êw®ëøR +?'?V~ZÿcªúòcªùZOÿ³)¤ÉÿÀ1Õê9ÿYÂS äÇTMÙ>¢EþËùðä`xÚOæl>]dzÇdÙÛÂ)Û`ö¶pÊá^¼ça¸æ@eü¤»÷<p7uAçÐ,t`rhâ¸©Ë + C¿Pò5Ð Íw¥^5¥ã¢,9 á{&N5Ç¢Ã7uÎ ÙÞM]'üÃ7uÃËñºÌÕ¶ì°}ù¦®üðM]½õëÝÔÕ£¿wS×iýæ@áPjôËk@HÿÀ +Äÿ7eMé³éðe/k¦MÔi¹vY3mBt/ÂÐ.:"|À?pY3e ¿¬2@Gúåñ°Ê"4ðÁ*PþÁ*ô3<x )À&¥Ð;'ôù"È?xÊ !þP È A"¿( +*ÀËóç~züÃF¹) ü¿F.úÙ"|ÑYßr@d]?¬ÿÄ¢ÿ^Öß½ËÂ{ëÇÈ vþ¡þåOì�¬ÀÝódè^ ÓýÀ cnësî`½;µ¬w %úòõí9ðeKËÐõ:×ãdB³K³Ë6)«¾Îá±ÀÝKÃÄ6$/xcAàüF°«¶¦ Â�ðë�¼óÐUMC#A¦`A#ÆåÜ*&°!9²- # mE¢Ä.âºùÌ"®Ç%ÈÎñ¢h¹xÿpתIÖ²â=¶\g`3¼»d TÖÄGøÖ³ßÊÕ'xñwoT¾níD¿¸#\.>Ñö¢¸Z%ÂÏ¿¼#áÛr4ÿùGþݱ%©ÿ¼¸BéÓü×j1®®?]zÝ[ÖÖpýùá>Cðiý¾[ñËk!,¿ÿ´Pÿô#\å?Sõø¯WKqþ +ìÍ ÏÂõcjif8~Aµ~ùq¤`�þãHÖß\;õ|ý8þÏnÉøD&ô<QÐ~ʯcPHþF>½ ñkQü/ ¿Z¤ÿÆo!ÿ\¹æoäÊmüòÍBó/¯¦53\±ý Z>ýÌúÙú³½þDòÇàüÉ·"±ÿ"¿®xé/þ8ä¿ëdúÿð5ÔßâZ.«eöÝ5ÅþèÑÏn%[ý`ùÇBþoeçZ¨¾ÿÎÌùüq +Äÿ#×}Ëäåÿúÿ@~RÙåùóÃ;qø_®c×rÑw»OðâZ&ºá/©eÊlÎàÑ-»ÌqòGøã(ùé§È÷¢É�êÞ}4Ü^úàå{Ùù>|ÃÀìeÓsÈ ;Åd/x»7ü}AD?@[?rà;óÏ' ýò�Hi@? +¸Ã ÿäçuÞJ:Áϯ Éüó÷ �î>¸~òT`mMÀ80~ä_¾Jã>ÿ3óçÑü¡ó¨ÜV6?9ý�¸Ê?@Ä?Ldü+?L´@ý+O aý#®¥2ùw»óaþà·ÂýSújûëÏp: ò�^#ý-?kÌsö§$:ö]èGëÏm Cÿeø> ¾ÿÃm Cþûoë7·$óÏÎßí§¸®$ôÅû0$ó¿ÀùF´ä?y�4!ý7�þàÌÿeá¡ÿ3pó?�ðòû±ÿ#§prú¡þË?ÝxUþÎÿ´ñÏÀ}0þÛÏÀ«÷ñÑúáÅñC àÕµûDè{GxyO9_ÀSd¿ÔµûJzù>>þGã'ðmÀ©ïóèÆÿþáñ~vþ¨¡3½¯f÷øK )òßÕË÷qñgdòÇÊÏÖ_~SOhýä ¼õ>Ævýä <ï#:_~¥ë/¿ÏPK×) 0¿ü0;Ö¿ýIø ÚJÌ6ÿ¶@lù·~%?ÍY*ºüòG¿O$?Ìâ!~yfH^Á3C8pÌ�õ>ÈÐþBG$�T Hs·1ÀùÏ?}P¡7ÿ|À ÀË;~ç_¤ÀӾʡZö«H à/: ÆOO9 ;PDr@è6«]Øãö4~²ï]HÈU @ùH�@ùH�@þ¸ �Êü6�±ÂU�@@~! Fëà\à¹õ£ôÖ¯w¡bßþr �¨?ä-§ +Ê#üÀaz(¿$ôø~Gÿ³ôCý!·ÿ%/fµÿ%?ÀËí àðò +zñË+�\®�8À·�hþç:�?À£/s´BôýÅÆÙ~áåñlýø ø�ð£Bpè~ùaè6ÅýÜj ë/N é ÉÏÿ® ýòø6àó'Ö?Z#üg±5ß�Ø?7´Õ?fN�tø?° øñ�Gxù´Cü'¹L%_æÏ® ,/ÝFÈÐ@:ÿ\üæäÿ@ü ùW^³h¤?Äún3¼ÊôAÿñDò'¯`VPÿÉ+i¾k¿¸@ý'³þYíÀ¥øÙÂù¯ ë/éþ6@¨ÿäñ³Cö ~öP~åñ³é?~ßèçOÈô[� ÿÊçoÊWç_ÿMÄä +þü±ô+8ÿòúiü¶tÞø§=Îo CüòøúOò kQü!ß�²_¾Dñõøÿ !ô¿âw4ÿñ;ÿ +Pfäl`çøâ°Qÿ6ðOðbÿâÿ¼|;Çÿ'xù îlÿNðbÿYeûwûÏ*Û¯õ«WügÊôç»@øæ´~ù Í|ÿn�èáïÝ�pÿÙü³ûg?¹ý¦ø¿'?|>¤_¾©!~qþlÿ×üÙ^rN? äQN* ×"þïÝe×Óü zÈ¿ ~äà¡üÉ¿àíeö¿ËÙùeu. =Á?(«±þç°þç´âüçZÀ/?KÿÆny9Ðç_&~Ï@'xqþÙ(_?cý'?À áúË?h?d5î<´òZZhÿåñ¯õ"þã?Èù_þAKg2þÞ]°Øÿ¢»ôzþ?òpþä´ô^Ä?ü PÿÊ?hH~^¾ßÿò3°ÿýyþjÙßÞ×zú_'#_&0¡õ8A®ÿ Ü@ ~`¿øë?ùeúÎÛ³Pÿ¡ý7&�ý¿~¡þëÝ@зßÜÇ� þÏ?öÿÄöÛz(bûMõWõÅúO|ýZ¸À_ó�Õ×8jðëwoÞ~®nêöî¨ÆWøÛzhþÇ»1¶\{us|çëÛ'¿ûáöøî«÷ßÿüþW·ßÿæóÛ?ýðõß¿zÿõíÏÿ}ûý¿{<n_~òÕÞ>¿ß¾øîý_ÞÿôñöÙíÛüÕÛ·¿üòËýã·ßý|ÿþýÇ·_ªÙóÓ¾ÿÏ·?þ¼ÂÝ¿ýøáñéíÝ_ßüö]¤îvt +endstream +endobj +310 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 720 0 R +/Name /Im287 +/Width 27 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]αÂ0DÑïq ð + ¸ÊPK4�ºj\Ç¢xX0/Û]Êõ Ëa±¾,J÷´¬éqªGÃh0É:ò®î FZá9áýWûSO£1ÅØ£ô'«}?%Ûc»~�}è@~ +endstream +endobj +311 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 721 0 R +/Name /Im288 +/Width 25 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°ÀÀøÿóÿüþ3ÈøÏ`ß�Áõ uõ6@ÌÀðÉ×7@°}sýæùìü?äæþÿ(qARºn�}â#ï +endstream +endobj +312 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 722 0 R +/Name /Im289 +/Width 32 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ þÃ(æÀNÌÅòØf²ÿÿþñÿñÿõìÿ¤kg©�©; +endstream +endobj +313 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F2 422 0 R /F1 420 0 R >> /XObject << /Im182 191 0 R /Im40 47 0 R /Im53 60 0 R /Im52 59 0 R /Im43 50 0 R /Im42 49 0 R /Im174 183 0 R /Im171 180 0 R /Im62 69 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im58 65 0 R /Im39 46 0 R /Im211 222 0 R /Im70 77 0 R /Im66 73 0 R /Im57 64 0 R /Im46 53 0 R /Im41 48 0 R /Im58 65 0 R /Im43 50 0 R /Im40 47 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im42 49 0 R /Im39 46 0 R /Im59 66 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im156 165 0 R /Im146 153 0 R /Im167 176 0 R /Im70 77 0 R /Im66 73 0 R /Im57 64 0 R /Im46 53 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im68 75 0 R /Im42 49 0 R /Im39 46 0 R /Im59 66 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im68 75 0 R /Im62 69 0 R /Im42 49 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im59 66 0 R /Im71 78 0 R /Im40 47 0 R /Im45 52 0 R /Im69 76 0 R /Im58 65 0 R /Im44 51 0 R /Im48 55 0 R /Im47 54 0 R /Im52 59 0 R /Im39 46 0 R /Im59 66 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im45 52 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im40 47 0 R /Im39 46 0 R /Im40 47 0 R /Im50 57 0 R /Im58 65 0 R /Im57 64 0 R /Im70 77 0 R /Im69 76 0 R /Im40 47 0 R /Im39 46 0 R /Im59 66 0 R /Im47 54 0 R /Im69 76 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im51 58 0 R /Im47 54 0 R /Im52 59 0 R /Im39 46 0 R /Im59 66 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im44 51 0 R /Im55 62 0 R /Im58 65 0 R /Im59 66 0 R /Im58 65 0 R /Im50 57 0 R /Im52 59 0 R /Im67 74 0 R /Im55 62 0 R /Im57 64 0 R /Im58 65 0 R /Im43 50 0 R /Im53 60 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im75 82 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im52 59 0 R /Im42 49 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im44 51 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im40 47 0 R /Im44 51 0 R /Im42 49 0 R /Im75 82 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im71 78 0 R /Im58 65 0 R /Im57 64 0 R /Im45 52 0 R /Im55 62 0 R /Im47 54 0 R /Im52 59 0 R /Im53 60 0 R /Im55 62 0 R /Im39 46 0 R /Im47 54 0 R /Im69 76 0 R /Im58 65 0 R /Im59 66 0 R /Im58 65 0 R /Im46 53 0 R /Im44 51 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im42 49 0 R /Im59 66 0 R /Im71 78 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im44 51 0 R /Im45 52 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im40 47 0 R /Im59 66 0 R /Im42 49 0 R /Im58 65 0 R /Im48 55 0 R /Im43 50 0 R /Im47 54 0 R /Im50 57 0 R /Im69 76 0 R /Im55 62 0 R /Im40 47 0 R /Im67 74 0 R /Im55 62 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im44 51 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im53 60 0 R /Im40 47 0 R /Im39 46 0 R /Im58 65 0 R /Im57 64 0 R /Im57 64 0 R /Im46 53 0 R /Im69 76 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im59 66 0 R /Im42 49 0 R /Im41 48 0 R /Im40 47 0 R /Im44 51 0 R /Im42 49 0 R /Im59 66 0 R /Im71 78 0 R /Im40 47 0 R /Im68 75 0 R /Im42 49 0 R /Im68 75 0 R /Im71 78 0 R /Im58 65 0 R /Im41 48 0 R /Im47 54 0 R /Im40 47 0 R /Im59 66 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im70 77 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im47 54 0 R /Im48 55 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im59 66 0 R /Im48 55 0 R /Im52 59 0 R /Im57 64 0 R /Im57 64 0 R /Im46 53 0 R /Im51 58 0 R /Im42 49 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im68 75 0 R /Im52 59 0 R /Im43 50 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im50 57 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im71 78 0 R /Im69 76 0 R /Im42 49 0 R /Im55 62 0 R /Im58 65 0 R /Im41 48 0 R /Im42 49 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im59 66 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im42 49 0 R /Im75 82 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im58 65 0 R /Im39 46 0 R /Im211 222 0 R /Im70 77 0 R /Im66 73 0 R /Im57 64 0 R /Im46 53 0 R /Im278 299 0 R /Im279 300 0 R /Im151 160 0 R /Im211 222 0 R /Im283 304 0 R /Im173 182 0 R /Im68 75 0 R /Im68 75 0 R /Im175 184 0 R /Im157 166 0 R /Im40 47 0 R /Im39 46 0 R /Im58 65 0 R /Im39 46 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im71 78 0 R /Im40 47 0 R /Im39 46 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im58 65 0 R /Im59 66 0 R /Im47 54 0 R /Im48 55 0 R /Im47 54 0 R /Im39 46 0 R /Im57 64 0 R /Im46 53 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im151 160 0 R /Im58 65 0 R /Im146 153 0 R /Im70 77 0 R /Im66 73 0 R /Im57 64 0 R /Im46 53 0 R /Im278 299 0 R /Im279 300 0 R /Im157 166 0 R /Im68 75 0 R /Im176 185 0 R /Im43 50 0 R /Im42 49 0 R /Im57 64 0 R /Im40 47 0 R /Im50 57 0 R /Im40 47 0 R /Im39 46 0 R /Im58 65 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im52 59 0 R /Im57 64 0 R /Im45 52 0 R /Im44 51 0 R /Im44 51 0 R /Im55 62 0 R /Im47 54 0 R /Im69 76 0 R /Im45 52 0 R /Im55 62 0 R /Im58 65 0 R /Im45 52 0 R /Im58 65 0 R /Im175 184 0 R /Im70 77 0 R /Im66 73 0 R /Im57 64 0 R /Im46 53 0 R /Im41 48 0 R /Im58 65 0 R /Im43 50 0 R /Im40 47 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im50 57 0 R /Im58 65 0 R /Im46 53 0 R /Im69 76 0 R /Im40 47 0 R /Im39 46 0 R /Im43 50 0 R /Im47 54 0 R /Im52 59 0 R /Im53 60 0 R /Im55 62 0 R /Im57 64 0 R /Im46 53 0 R /Im162 171 0 R /Im263 278 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im50 57 0 R /Im40 47 0 R /Im59 66 0 R /Im59 66 0 R /Im57 64 0 R /Im42 49 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im71 78 0 R /Im45 52 0 R /Im47 54 0 R /Im146 153 0 R /Im173 182 0 R /Im263 278 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im42 49 0 R /Im39 46 0 R /Im59 66 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im71 78 0 R /Im45 52 0 R /Im55 62 0 R /Im47 54 0 R /Im52 59 0 R /Im53 60 0 R /Im55 62 0 R /Im50 57 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im69 76 0 R /Im40 47 0 R /Im57 64 0 R /Im57 64 0 R /Im51 58 0 R /Im42 49 0 R /Im39 46 0 R /Im42 49 0 R /Im42 49 0 R /Im59 66 0 R /Im42 49 0 R /Im59 66 0 R /Im45 52 0 R /Im47 54 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im40 47 0 R /Im59 66 0 R /Im58 65 0 R /Im45 52 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im40 47 0 R /Im44 51 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im52 59 0 R /Im57 64 0 R /Im45 52 0 R /Im68 75 0 R /Im61 68 0 R /Im58 65 0 R /Im44 51 0 R /Im42 49 0 R /Im59 66 0 R /Im47 54 0 R /Im39 46 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im71 78 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im48 55 0 R /Im52 59 0 R /Im45 52 0 R /Im52 59 0 R /Im43 50 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im44 51 0 R /Im43 50 0 R /Im42 49 0 R /Im67 74 0 R /Im47 54 0 R /Im50 57 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im59 66 0 R /Im42 49 0 R /Im59 66 0 R /Im45 52 0 R /Im47 54 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im70 77 0 R /Im67 74 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im43 50 0 R /Im58 65 0 R /Im45 52 0 R /Im42 49 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im58 65 0 R /Im59 66 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im58 65 0 R /Im57 64 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im50 57 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im69 76 0 R /Im55 62 0 R /Im40 47 0 R /Im67 74 0 R /Im55 62 0 R /Im58 65 0 R /Im75 82 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im44 51 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im39 46 0 R /Im52 59 0 R /Im50 57 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im67 74 0 R /Im52 59 0 R /Im45 52 0 R /Im47 54 0 R /Im75 82 0 R /Im44 51 0 R /Im53 60 0 R /Im42 49 0 R /Im39 46 0 R /Im42 49 0 R /Im43 50 0 R /Im58 65 0 R /Im45 52 0 R /Im42 49 0 R /Im59 66 0 R /Im51 58 0 R /Im46 53 0 R /Im51 58 0 R /Im47 54 0 R /Im52 59 0 R /Im39 46 0 R /Im59 66 0 R /Im41 48 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im42 49 0 R /Im44 51 0 R /Im68 75 0 R /Im290 315 0 R /Im88 95 0 R /Im291 316 0 R /Im88 95 0 R /Im85 92 0 R /Im88 95 0 R /Im93 100 0 R /Im288 311 0 R /Im88 95 0 R /Im94 101 0 R /Im292 317 0 R /Im146 153 0 R /Im293 318 0 R /Im61 68 0 R /Im42 49 0 R /Im43 50 0 R /Im57 64 0 R /Im40 47 0 R /Im39 46 0 R /Im42 49 0 R /Im43 50 0 R /Im160 169 0 R /Im68 75 0 R /Im294 319 0 R /Im68 75 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im168 177 0 R /Im51 58 0 R /Im42 49 0 R /Im57 64 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im64 71 0 R /Im68 75 0 R /Im151 160 0 R /Im146 153 0 R /Im153 162 0 R /Im169 178 0 R /Im153 162 0 R /Im157 166 0 R /Im68 75 0 R /Im176 185 0 R /Im58 65 0 R /Im45 52 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im39 46 0 R /Im161 170 0 R /Im39 46 0 R /Im47 54 0 R /Im69 76 0 R /Im57 64 0 R /Im42 49 0 R /Im59 66 0 R /Im53 60 0 R /Im42 49 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im62 69 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im171 180 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im62 69 0 R /Im38 45 0 R /Im176 185 0 R /Im63 70 0 R /Im168 177 0 R /Im170 179 0 R /Im60 67 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im40 47 0 R /Im45 52 0 R /Im42 49 0 R /Im67 74 0 R /Im45 52 0 R /Im52 59 0 R /Im43 50 0 R /Im42 49 0 R /Im68 75 0 R /Im295 320 0 R /Im296 321 0 R /Im297 322 0 R /Im298 323 0 R /Im299 324 0 R /Im300 325 0 R /Im298 323 0 R /Im301 326 0 R /Im302 327 0 R /Im303 328 0 R /Im304 329 0 R /Im297 322 0 R /Im305 330 0 R /Im302 327 0 R /Im302 327 0 R /Im298 323 0 R /Im306 331 0 R /Im305 330 0 R /Im304 329 0 R /Im300 325 0 R /Im305 330 0 R /Im71 78 0 R /Im307 332 0 R /Im47 54 0 R /Im57 64 0 R /Im68 75 0 R /Im162 171 0 R /Im169 178 0 R /Im71 78 0 R /Im66 73 0 R /Im66 73 0 R /Im68 75 0 R /Im146 153 0 R /Im154 163 0 R /Im146 153 0 R /Im308 333 0 R /Im146 153 0 R /Im153 162 0 R /Im169 178 0 R /Im68 75 0 R /Im292 317 0 R /Im173 182 0 R /Im293 318 0 R /Im61 68 0 R /Im42 49 0 R /Im43 50 0 R /Im57 64 0 R /Im40 47 0 R /Im39 46 0 R /Im42 49 0 R /Im43 50 0 R /Im160 169 0 R /Im68 75 0 R /Im294 319 0 R /Im68 75 0 R /Im151 160 0 R /Im146 153 0 R /Im153 162 0 R /Im155 164 0 R /Im174 183 0 R /Im157 166 0 R /Im68 75 0 R /Im309 334 0 R /Im310 335 0 R /Im305 330 0 R /Im311 336 0 R /Im311 336 0 R /Im301 326 0 R /Im311 336 0 R /Im312 337 0 R /Im296 321 0 R /Im313 338 0 R /Im314 339 0 R /Im302 327 0 R /Im305 330 0 R /Im315 340 0 R /Im316 341 0 R /Im313 338 0 R /Im302 327 0 R /Im317 342 0 R /Im298 323 0 R /Im304 329 0 R /Im306 331 0 R /Im318 343 0 R /Im319 344 0 R /Im310 335 0 R /Im305 330 0 R /Im320 345 0 R /Im305 330 0 R /Im317 342 0 R /Im305 330 0 R /Im302 327 0 R /Im313 338 0 R /Im321 346 0 R /Im315 340 0 R /Im305 330 0 R /Im304 329 0 R /Im297 322 0 R /Im313 338 0 R /Im322 347 0 R /Im301 326 0 R /Im319 344 0 R /Im301 326 0 R /Im300 325 0 R /Im297 322 0 R /Im298 323 0 R /Im300 325 0 R /Im311 336 0 R /Im295 320 0 R /Im304 329 0 R /Im301 326 0 R /Im302 327 0 R /Im323 348 0 R /Im324 349 0 R /Im305 330 0 R /Im296 321 0 R /Im68 75 0 R /Im176 185 0 R /Im55 62 0 R /Im68 75 0 R /Im65 72 0 R /Im68 75 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im40 47 0 R /Im44 51 0 R /Im71 78 0 R /Im64 71 0 R /Im58 65 0 R /Im43 50 0 R /Im39 46 0 R /Im42 49 0 R /Im53 60 0 R /Im40 47 0 R /Im42 49 0 R /Im70 77 0 R /Im170 179 0 R /Im42 49 0 R /Im57 64 0 R /Im57 64 0 R /Im47 54 0 R /Im39 46 0 R /Im38 45 0 R /Im39 46 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im46 53 0 R /Im71 78 0 R /Im176 185 0 R /Im40 47 0 R /Im45 52 0 R /Im45 52 0 R /Im44 51 0 R /Im51 58 0 R /Im52 59 0 R /Im43 50 0 R /Im53 60 0 R /Im55 62 0 R /Im71 78 0 R /Im146 153 0 R /Im167 176 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 314 0 R +>> +endobj +314 0 obj +<< +/Length 723 0 R +/Filter /FlateDecode +>> +stream +xµ}KÓõ¶Þþûgi§JGÄä,§fJR55Sþªfea[òHÎ+ù¦+ùõ!n$>hð|^èB¼§Ñ Ñèþôo??æðëc^ýÓûõñcúvÁna}NÆæ âøþþñï>Çß¶þûöÏ>ýÏÿõß~Ú!÷ÚÀ=çÃöë~yÎÆT?2ÏuYøû£þ&ì@ýºV=/O?Ñ/Ó3Nk >ê7ÒÐ# ueòç 8m¿ÜðQ7ÌîÀ_¾;è÷æ>¯è{:»Tè©á£nÈóq@ìß=ô©#w ÏWôÞ?ãj*ôÔðQ7; ¹¡GÀÞÕA@þ¼ãs +5ÔpÃs9M@iè°wu?¯,óÓ×øó÷GýmæÿúÒsFÏÐÏÓößù@Oßõwp÷ ôGÏ;úÒñ½ÆVÜÏ v}.kM@ièº:>¯óôKÅÿÜðQ7dt@ìß=ô©£ýèó~¶Ïe±zjø¨bÍ~GC½«üy%àÿïÿG5õYàÎò?Øù½¶:�®ÇO 1v�%HÛù8O�BË3áýRüÝÅ¿IÒsîøØ&ÉMÒ¤¢ÒP> ìríü ÂøtS=©e+"¸¡ ,0}"*ØåÚùAóñ9/5©%lRø ¢´¤ªOF>Èàï3Þe.)T¤ÉÕTúDdØþ>Q¼PÁÌ[(ÜÌ(Ñ%¢]®·¬9Çé¼7¸¡ì¸Æ,Ö¤4töÆÞ9ø2®Ûl´|íõwöØÑÏϧ;7ô¶¡,\�+ ùkoÞU¤úwv9¶F´5î0¶+¤ÏHO&ÈJL{åV[ín©vÆ6ó««X¿{ÛP¹& £åÈô² VÒ(ÂxôH8£<øq=)+ ·%«4Äù»pã<mxkn, yÆ_Ö?NÉ8KRKË{s-µ¹¡bÌH+tp&·hÈ9ã?qß´B.å÷i[¤ïÉ]äæÑ¢¡æÜíÁ®['ËÚ°ëÞjjv¥]"Ùu·mCÍûÁ¹Ëi6\xN]x2>ÞwH`nÑPt¦ ¬!kWF^_V¼f>-buÍ}Uj@´¬Êpq·>chyoöËåwEÛØuò¹ECÎÅ¡ÉÍëËïLÅÊn!±À =gü+o¬®aåÜZq2ÿì`í,ÆÂýÜ ¡æ½°rêÄ® +ïÍKpKÅʳ§Õ)¬\Z4)8Xyë¤Z¯CGpìÀ`Á±3w=¤#¸ìÁ(traÌ.úw±Å¥O)-}-Ü(Ì6Ñ×vdaÁèÉgk lز*0¦ëÊ8#=xÕÌx½) 7¯¶JÖ&ÂYÔ©GÄi¥'L5Ç¡?^0´ÔrHÛ(oá®0e2õ¾-|æ_RC¥-XÚ§º`_ì\A_HÝε`ë{è6ný»å¤/ð¾9Ä,·éöyâCÌu f³ù]%fÃJgR1´¸aH_ر&×ÖÇÒ\©õløQK͸æbrðW<ljýåàaC +ÌÁÃÆÁÃK/²gXÔ2;/)¶÷ÁBÑ=½Û¢}ݵÓç:èÇüùýã÷ÿ%÷÷¦Ç<öÿü×/×{C¬ÙlÜÖ¥cÍÄ,¢V)ß!klå÷ôÝ'ø} Ñ6lbvtüFvÛÛsùþ8¾CÖ¤Êïé»Oôû¢]rloǵõÙßêüò´åûãø6Ùª+¿§ï>Ñïchö.<MÞæäjIÎEþþ8¾Ã+ú=}÷~CCt°Ù·uA:þÆjåûãø&¿ü>°ºÓ#ú}¿Víòc3y[ÏáM¿RÀDÂz%ÿKõ×!vì<í�eÓ÷Çñ³FV~Oßà÷ûì]ípr.>ó÷æ¼ÃÉÀk~¿ÏѼc§OGÞÑùûØáI·0ÕçoDôû}væ»,å½,-ß$;Ëïiý%ûìÍ;vc³ª¿¾)üS¨v8#¢ßïóuØ©ç9o·â1/ÚbapþëLT²ïïRVå.R Kì")º´a"é翼~l_¯8ÀÊUâYÏX×ÃçRÔs2Vĸü=Ãëø¥ñ,nòá'iâç«wfïxw§³t¹þÝQØA;À/W`1ì¥Jg _¨xiH\$ºþàõüÒxŷͬìú4ëáf*Orfe©ÕüݱèÆ+ |Á¥e)'$µìá*+l²¦tù«Íòº:þ~HÃ*iÊ(D#W]ù;Å D»þ}êíKcR°xàlvd°Dc7`ù;e÷°DkþNûEàÆ¤`ñîÙúóóáb,Ù/Áù»ÍÖ <À/I9À¡$hÅ}Y$ÅÀ%xùû²ôø¥1)XÅö3%Z¬Â±äYZNúßõïá|þý1õôΰRMd8ÝOüYÿxXѼ £§YÎù=IJÍ)8Å,ßõï5ÉÛxº£9âP4¸«ÆV¾ëßkwñt5Ã&[¤LJ)XÖCªTßõïÇ5Á»xúcWu" ºdJßõïohz7ñô5»)û+)kêø®C»""qJ~°6»d7s«á£Á̹!ø;{ûÿñó§¯eæñù÷6smzLðý_ÇçWüðÏ?~J¤ÍþRÁôøüíãùøüOÓ&uGnùMÓòÛ¦å£iù®iy4-mZ~hZþß¿ù ¢ëýÅoþÔ´üñÖPVü¦í¹Eë_îMÿü9\rÓt¡úü ϰ8òíºÓgËdk}u0ØÎ_ûÿmL¶ñ麯6 ! +Cbͽå?ß6-ß5-iZMËß+ ~Rôó¿*pµ¿iûùbì¿kZ¾WôÜ¢¥°l°£éŵñ2w(i>&jñ}(ZZ¨v[ºÛ¹l©höÐýb]ßf; 7iOßüâ³Ãq´Éï¸om¯ÚM|'=7ìd¹Ð¸·|6-Ææúæö^ûÃÿ04?´Iø¡0¨LûCa0í ÁÌÝÁ?³1±-½Ý4ϹþeJ +ôK# ÙTªòElóH=wøoÓAO^«§Yêù\1LWJï¶iYÊ IüMhZbµ_huͱÌt cSM²ÞDßéfR¦äßo y»OÊ<Y7ó§LÌH`üf1ÕSKN©¡:w`2pîm$mj3÷~öl3Àöbìx]v-¾?oºß{N¸ïÄ߯@Y2fZÊiZl;º,D-GK\Xî2TiiåîfÚïϯöÿM*ÝΦù±.7VOÜùSe7ÖÈw¿ÊBSËÇ©%þ* éúWâC<º]+Èß²ç²^a¥Ä{Z@¹Àå"ªå÷ô ÷ÏÛ}^x`"O"¯¸+H-~¥lëUZÞáMo}hyÀBpù:cÅ/8Ö-a[AÕ,Üɧ%.Ø;®¸ ¿rlsÓ.fóU´6ûMFä¿û)^«ëßùSÕ/÷Â1Þ)gþðeÊk [ÇPî|ëúÇ$[Ê«9ÆA1V_ØÃPð¹n ËLÍî/Ò;1 w®õuÓÔóÒéïâç¼t׿KÐþïéÂ$6ð,ó=àÀ³L îþnxA6UÏOjñA&¾4Wbâ[suKææj w¸e¢KtÌ-ÓtÍVm¢4OZµ4«Uª¾ëß»x.Ü0Å2¥|/=)¥ò+«u´¼Á˦û¨æpR·yùóf)Ú%£áÇÍv&ÄÍðÛ�üsÚVöw?~úú¿ýhûø§?~ú·ªmÓµu³L +ÕÚkû^àý&{ q#-ú}ÈðÛô7ðËîÑÌÁ×øCCÿ¶Ã�ïün[i¿"ø¿8þd34ðfö×ÌÓb6Ûή¦Ó§`Þ»4)£~gí`Z¸8`iXÈnm'8¡?·Ø Îà¬]Ak¼j%¶fQr0æ@kºUËv3éu; Dß¡ñEM¿CóßÒßO) |2LþÜÁ' xZ°9î`V,�1``ì&rG5lß2@h°]�Â#ÀïüâÎÁàѶ n åÍ ´h7@ÿ¦ðhèÐUH¢ß¥«·°ÜâRBIÐMèh7 H¿o 0gt@ÿͨP�íþÝéwhþB/ÁΡùk`ÞÃáÂüyÝüãP {$øÄE¿Ù�U°ÿÄùWªPDü¢þ*7Ͷ/�iSrÁÒ¨Pw6Wp³ZÊÄFHG KÞ8ýäÞ:ýD¸þôƨ@éòPùF XÈ[§ÜÂxxDþõPéïÐÖò$B¼[P-B½G¨ÚòáoׯݹÅo*`kÄD0ÿæH9{KÖOðzn<¯áç/Õ»!ÂMøÕ"ÜðrWpÑüiæ?Ëb §úx/ä¤Å üjÒ,Á7ü+zAVR!ÏðÍüI*Y¯VaMª"¥À/Îß +×OÂÚÉ«ölÃ#þÓËäØåÇ ¾ÄZpg^ú@$þ·|~tø_wü|(Xþé×Ï£ù×Ë?ëÑþiå_»~#l0´~õþo}X¢ tü/Pþµû/î`þ"ó'ðhÿðó¢Ú?kæO±Ø �ñëùÊ¿Ö+Ã#ü&_-ÿ&°±*þñ¸�¼`ÂY$?ô.gáùôGÁ�rî-þqâWßÎÃó¿ÑDÖ#ùÝê?¢&Dåù+¸Eü¤7÷ðãò«¿È³Nÿé_þÔÚ¢ý¼0ÿ¹ö³$¿ÔÿZù-Ò¿BþׯÿðëåàþWØd¿MPiæ_?å_;¢ýå×ý¯µÿûßAûgÀþøì´ÿGìx~ªÏ ÿ(blÿëøGâÿä7zçü÷áØ?XÿRëoÅÿ`§[!Ãú÷ ^/?ÿa?gxõü>ÿÎðjûÅÆ¯Â¿Ýÿ¢ÿ%zD¿Z*þÎüøg_Ï?Uáý7+äõùcX¾¹þÅþ?Áëå ~µÿÃr¬Ëÿýetë/Ú_¿ÿr�ßÌ/ý²ÿà½ýgÜzü¿Áßêì?XÀúÍjÿuJ!Ð_Güâ7ÿ�í_ä¿àÿéíÇâ?¸)ÿJ +Á°ü»¤àõ!d»êæOä_Ö»ûO +ÁCù©!OðüWëÅpSpßzûËÚ·ôgÑøæÏ¡ù×Ë/õ/µÿØ¥j¾ÙÿÍü!ù5×)çñ«õõ'ýùüíúµö§8ѨæO\¿Ïµüw3â?½üw3ß) PÿÒËÿâ?èÈ/Éÿí6ýmç?³¼ôûÊ?ýþOþÍþÆï¡þ§?¿¼RÿíOõ½ýitú¯¤¿yÖÿ:ú8~Ï_Åü±ÿ�í?M*Çÿáù£÷ÿ@ûQÿðPÓÛ_>ÀùÓãP~üBþëo§ý;ÿ2ëίnþåñHò/<'á)ÿè?«øw_³þ*Ô¾ßËþIE¿Æ¯ßùç_}þ¤BGúeÿÅàõñS3S +ÜiþÛó£{¡3rþ¿ÞÿÄñüÞ~(ùÝõüO+d?öûßÏë§÷Láù'ýdàþÑÛO|â.~Æ?`¿Z´õùkÖéäè?rø û/þvÿÊþ¸þjûÑBùøOÿ8~=ÿ²ÿ£»üϯF~HþO;Ãñ«ãvAô#ýEXÿÉÏÿåêUü'ò_zÿ«ÃòKí¿rJù#ç? ù3pÀÀó[}ÍY(ÿÕòÓaù£OÁwpüjÿshüúü»â¿èÈIÿ+W :úÿàù£ÏÿpþÕù¯uöÈ?Êo½ÿfç03¿zÿÝüþåÝþýºóK+ÿ6~Ýõáÿ ñû ò¯>~BóöäÿÐrþ N~óguçì?aþ /ý'"~Ûëoì?Aëü'ÿ�ëzÿÇï;ü'Ã#ýmàþNÑãKÿ èÿö3Êÿöúýõ¿üY·Eûü/IÝÑÿ9ÿã¯×ÿùþÉ^-ÿÿ%Á]àÕñÎÿ¸ÀëýW!*Ç/ùOjþEÿÉÆÉ.òÝÉ?OþÍüIñ§tÿ%ã¯áî?ÑùÝ??]¡ìáçoÑÍÈ¿ÿ½¬ÂÿÊðÔùk쿹À«åoòßhÖ_ÎYUü+ç¿øÙÿ3ü#5,xÿ»Îù-ø½ÿË_½ÿH)EÿûO?ÿ#ûU*¡1ÓúÏ/óeÿ ¿Z~[Ê¿»{~Ùæoäþ<ôó?#þÈ_[àù£¯³Âùú»à¿[áþWÙO»ýVä¿g¿Ohþìwù_o¿üýWHþØïVwþóg¡þ¦·ßâÿç'Øÿÿè=ýïßÜÊO½üpâWËåçÿ5¾w~q »ú³üFöpÿkñ7åçß ùoó/äû7à×ÛÏÊO½ýìÖÈOTJÊAû¯õ_ö+@Áëç±üTßßcÿÑ]ùï±üÓÛïö=û'ÝÓØ?bÅMÿL÷ÇÓ=¸Q/`Ð|ê` !ÏðÈ'%@L^rà_è×'Pé_?þðë/V@Ïôë(Ìpþ +P õ(C¹ÕüÉü7Àì^ð(Îøõ@¾@Ò£_TÀY�vøO¾�×_í°áor _À´ò߸|sÿñ¼>ÄÃñ\�ó¯çæO_�@ÜÀpW~Z,ô`òC¼À³äÂ3üÀU_GçÇ@7Pë¯`ÀAù£7àÓvþô 8ξ·ÿ?úñ;íø%ú�d*�æOߣõ×;@9"âoÕ`úÏ@ÔôE|ÝÆ?PÄ7qÌoU0tànU0tTö2øQtjðïìÉuÀ\ám«XòlBøª1�³ýgÉFX&Á>ÝQ ²µ"%&ðP�&hO,WRÍ õÃÔØVî³è#²£ÚDt¹ ZM ë\°/Òa«hÚP^Åh©ó*ês(è®(ôPès!J,rªFEY à/S¥¯�~ $Dz;øeSzAøõ¹èK{W%UÑh^J2ù.üH,|Igúõµf´~z_v1 ÏøÕªßEè¯À+\?}.ÒÃûcÉ¿¾¥Z¾úõ±(×__KÎÂùÓ׳hþôµ´,Õ2»Ìþ9"ÿ^ï?Ùö*þï" þ0%¡ü0¥#â½/ÛF´~®ò¯Þ1CùÑÌxaûOíJäçúü/=§¼zþK,¸3ÿ¢ã¦ éµÚ«Ðb=÷MNêçÔsKá ͪºeÌØcÆù·DP±¦;"H2fÒu¼5þc&Õ3ØØM¹gÌ$ÒsÓk5X,éÑPH'`&Íê;½SßÓãäw÷![Äè²EÝÑãÄP ÔÔ¤7îêêA9Ý<Gõ5 <GÕz¼7:=^©Âs` ¦ª³£äPQÜ)bx8ÿjþO5uü/Ô´ðpþÔvçÔ÷Æ/ÃC=H]SÆc=L_SëaúPC5U;õè`î ¤éNÜ~ & ëágxuMåâèÒ/½éUø%;, Ä÷lãÃ+ +kA©(â¾½¥v$mqGJIí¿y¹EG 'üúwÙÌp ©]Ç@rQ_ÿ.ÛäÀü ¼Ë6¡ 8ð.] +îm�9©Ý+é3Â?àH°�¾U DCÚÏó§,ÀÔEi#¡Ãÿâ¥øÆ¯/mê\?aþ£nþ»ÎþùgÄÿú¢R%&ï[E¥JRyç�Ä·ä/?ÊÐã?1&>Íè�k_eiÐô~rö#p¡`6ªÂQ§´î3è5°èë8Xê³ +}S ríÀ´dñLÈ�O ½ µ' U0ý³"3?ý³ó¬Ú²Àj ä8Ò@Òµ~§:Ádâý³d%º3~)æ ÂN ÂÒ@üzÌÂõSȾV¿dGè ^ù°åÞ#?Þ¹6/àdÄ¿%=ßL¾)}@,8 S`®,xWû·þeÇ!õØ +§ +ÃÑtVbOðã/+áÇ_VL7ÞyYñøeÅüð˽ùïUL!;"¬DãÏøõ^Îë:_-K4þ__Yp øÕG`1»ü#Eã½jü¢i ýz#*óõæO~Ù "ø ÿ¼×_]ÙÔzºv×W6µ|3ñ´ôMK4½;~aþ¿Þ ¿>c#ä_}e:VoåfvçüP᝹@þo¼ð¢eEó7ð²Ø¤[?Þø( W¶èÀËýÐüë³AÑíùe´~úlÂbß_åfõ0ýlCýAO¿Ðá]A«?.å§:ÆÍpýô¹(3¿ ÑþÂ{Õþ×Ê/}et·Âý«YtEò[MÉ/öøW~�ʽý åÚ*ÂkÖ¯W¯wþÈð:ýA~Pw~ËY�ºóSÌÀòo (÷ ãùB%ûëtþ4¤¹q¢nüÀË´~æõþ/Ï�~¤²AðúÊnlüìGÖ_MïüìG¶¿Oð·8ÌÜ?ü2àeüúlô®ß@6:ÿlô ÁTfÊõ.v#ü³ į·_¹2Z^´_-'øûÕ1þö«Cü?r1_o¿úÀ~õþû5Àý«·_#Ú¿ökûWo¿ÎPþ*^FË=Z®Li^ûÅÛ Eë§¿ ² ù3à¿ZáþWÇRe}ý¯_¼ð¾2=ê¡Üù_ÿ²ó¯Ïb6ïÉb¿ßÅïàú¿,xWÿ)!øç¯òs ²øõóü¨lÐú ¼lJþËùuú×áïÞèò�åßÀ-íþàWÄú¡ýßßÒù]²ø;ç·oÐù7B _¢ýjý1ð2½ ò[_YË/µýå¡þ§÷ÿy,ô)Pþ ó_ª,ä¿Küþ¦ýÈéûúNÂö,Ò¶};ñûi~9~~ðñNB=ÁØÏâ×ߦçøÛ~ þüÀ-�Öÿ»ôKñ´~.Ñüø?f4ÿ#·ñ_ÕÍ8þßýÀþçÿÈIøä¿?Ãë ¹²rgþÅ$bÎØè¸ÿRà;ü/¿ìè×§PZñÜæ_Tó/߯Tü'û/´ë/Ø¿Íß@z@ó§¿Yü]ù'å80~}üËò%¤»ûgÖ_´ÿ9÷Àå^þ,P~©òËù×_BYµëß)¬wsÿ0ÜÝýSü7÷¿LØã)ÿ£æ;ë_úrøgÀ~vQ5²ÿÍßýïÑúëoa:¨¿µü'¦tÉ}aÊÐÑ¿dx´ +SBù5ð2åå¾0äõGý¨ÿ \!YuóßÐ=ÿ$x¨¿¨¯°ü®üì¤T·pýâ÷:ýW´ÔÿÕÕ¤Ê-þÎù+? ùÓÈ/Gü¯÷ßÿÃMûÅGý&É?õ'$ÿ¤õ ~ÅËGþB·ë먽ñø »þ3ü@5Á Ã/ûþÿÃàGüáð?Ì7ç/ñD¿þþÇæ_SK�D]×UÄ¿¢õÉ_ü£·ß¦ðëãÏá×û9ÿ¡¿~ÿ�ѯϿ´äÿîó¿dÿgûû¯øÅO¥Âúpÿ äOÀý§ßçKqÏð ®i¯ûÌ hé"ÃÑ] &ï·ó +¤3)eµ,@®#öR`I" +@Yb°ª(@¥ÀvøGÐÈPÿìTø[àZÃüÚ!¨Û¿NhÑXuKÇIðÉ Ú¯¯@<rA?»Ó±â�Å.â[:¨µpV¦ W +5ó8c®l}¦ Íã_x%9bïéñîÑ\àÕ~lCyìgx½ÏPû¿¾*0ãöµ×«Ê{{þV¿?´ v?üäÀú¨~"8åÝ ÀÔå ,9²Ò ¾ª$#Ú«�ù$÷`õuÁ&Ðá�9�ñ'ðN'9ZA}(ģƥTè÷êñÜÝÂ)ñ-l#¢ E¡ôÄH¯LÉöÌÕ ì¼ÐÖ; ê7�=rÝÛ�bMÓTÙ7wà_Ʊ¤Ä©1¹¤Î¦À s\ê ÐC_ÒC7J +äʰIð7+Ã*XÖ$Úʰ¢O|j=I(õg ðìSéÀËw +$È©¤ ÞY*Æd:ËQLfÆ'(ÉQ*½¶ dì¨.ÉI Ö_*¦ÒÀ½@N*¨¿Tº"eV_ÔëõNùR¡NKÝÊF§ÌÊA_1ù$LI à$T;58©ðöü9¨ éK+c¤_(ôAMPÔjO *,à2 ¥ *5^U¨7^U¡>`,Ö°ñ/YSìUnáúOYm>¼>ÂÑÍY8�½;`uV Ée´=9Á�·¿zî µGåÂ0(Cã.øÕ{_L=ÃT·¤g^.ôëÃX 3÷+Xvp,{Õüõ^\íÑßK,»ÌÿpaÛüCåÍ{ó'Zs¬9óÚ1.îÍÿf¡õ-¡sfصÅ+%\Ú¬ÁKÚêG[¯�1z½ÊãðôÏ>³cùÔÁf¥jÀåqºCm1vM_(PÅ4ngáßçv×ôæ]Q¹v�r|0#¥5#I¬^E¨²HsÕM¢ÜAÐv 0å +öBãÈoæLÔAèà& oâ DÙ,F' +àù®¦�èÂ"RJÀ¤ÛÆ©`oʽgè±Pæj?½pÒ_Wá©4P®i¾©%¨N%ѽ¶"ÅÔÌ;@-pð5sé!ÜÞJ8áîß,áSÁ[Ì¢\©æ.:|´ÞMhâÊ(íURÐNá´;|eóÓWÛX?þÝ9xÊ»lLl'ôBÖ)îØ YãÒËP3§Ä øòëõáõñµ¹:G!kÓIë ¬M'õ§²¾àY»©²¾=+Â?²öÇCÖ¦{ÔY§¼·BÖ=äÔAçIu1bgW7%¡u¼IÌu`d{ÀFfæ 4Iè<i.'±9Õ:¶j!E~£¡U8« úÜò^¶²QkÆÉ[Ðî% Ëut1úìIﱬpz +V¯£@H9(03õ|ìÜp¹¼zQ zÔ1¿ QÝÇ©¤¹®~,:Õ'rPEëZK9ïÆôªL+ѯ_t« NbPN¢|+-ÀeT»Þ¥ÜR�ýVR)WÀØýt1Ĭ i"G»Ê«Ã𨿹 í< ݪÊèãÝÐÁɪ)ðfÒQ ¢½e +°XWûî¼V"CÀ©ÝÎ(·üýÚäw¶9XÄKzY@¤H¾;Å2Jen!+ë}¸J$àÃW!¾y´ñ{±×½ çAGRyÿØ`Ýç`q="\¶iÎèUd²¢Tñ|]É!Ät¥ö\;P_L[TCèUP;qùÊÔuúÐ$¹¯C�¥¢±NÇL´TõûÚ(ûEZ®çÌI¤)Ì>¯G4x Ü×!èão}]Fµ'6nÙSú<Më#ÌÓ¬¾8YæÃf«n�èîîL!îv�Q?êð)3ZA}Q±Y;ó'¬¿>Å`AøQíéTv±¾öc1x;øÅÚ»+¯éDæ<Z¬W ﯬ]°~úÚ£Éá<_Js¼ ýÛ'P<éÿô2Í´W{¥Ï?¯kÇöèj:ªÙ¯jJ9fN úÐþ�¤â¯ÀÇS"ÚÀèò¯ ~}ñ i2(Q§9:JS<oà6ÍQÄ¿@EH'®òã1pþôÅK &8P¼dD%ø÷TüE3òû±Ú?ðé7/±|ëT¤qyW'P)AÅ ÄT}SÆ{tê«/yO Åë7GÀê* +`}¦èÖTÿ!(ôõ * +PNL¯ôX +ߥÃn{/|Çoاgpê<êùÇϾþyÇçßo'q$þçóÛà¶}´õ6º?ûøÅ¿üñññÃï¾ûé¯ßýÃã_ÿéW?ýåßþçï¾ûöñÛÿûø×_ÿüÃÇÇã_üî_>~õ|üúïþ㻿üüøêñýÏ?ÿé¾þúoûÛóçïøëó§ï~þúm+þþ/¿ùéý§¿&¸ç÷?ÿøñËÇç?|úçÏuÿññõÑ +endstream +endobj +315 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 724 0 R +/Name /Im290 +/Width 47 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xα 0 ávÉBj+ÁÜLÇ1%#¤¼"äéÝ!iÂ×Ýû ¨*rö$,¬Ñ_^iW¶`k²l-º·K\µs3ð_{ÕkÝëgF;G1ÍÓv.7ß:h> +endstream +endobj +316 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 725 0 R +/Name /Im291 +/Width 25 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`þÃÀ ÿ¡þ?Ã?ûÆ?õ Ì?øC}û{fÀÿÿ?�ǸÔPëÿ7À±¤VÝJQ�¢}7l +endstream +endobj +317 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 726 0 R +/Name /Im292 +/Width 7 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû÷ï�1àß?vÍy<�<! +endstream +endobj +318 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 727 0 R +/Name /Im293 +/Width 7 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû÷ðï»fÃ<�y1 +endstream +endobj +319 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 728 0 R +/Name /Im294 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÿ/ÿ¡XPñ>>°?Àß [?[�uVø +endstream +endobj +320 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 729 0 R +/Name /Im295 +/Width 28 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`0```(â@ü+ kxl X 8AÿÿcÆ90ffb~6 Áúÿ?übÙú9ò�u¦Û +endstream +endobj +321 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 730 0 R +/Name /Im296 +/Width 16 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x¿#ÿý=û9ööäg@@yÿþ?ª(�� +endstream +endobj +322 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 731 0 R +/Name /Im297 +/Width 11 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcf`Bv äcc°cøÿàÿ9$XÁPq�+*쪸¥jf +��Ué· +endstream +endobj +323 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 732 0 R +/Name /Im298 +/Width 11 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc8ÀøùãÆH@þüöì ÈÏrÿü?À-Û0�Ò +endstream +endobj +324 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 733 0 R +/Name /Im299 +/Width 21 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`~À ÿÁÆ¡ áÃÆ@TÀøù�Ùÿÿ�DÌ?°7>@CüÌÐ{Ãÿþ@$*[?G�¸»%ü +endstream +endobj +325 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 734 0 R +/Name /Im300 +/Width 15 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÃü_NÎÎFΧ?aCüöüBu �ü6 +endstream +endobj +326 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 735 0 R +/Name /Im301 +/Width 19 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÁÀÿANÁAù?ü;9 +9 �Bv ?êÔß? /Ï ,T7Q�P +endstream +endobj +327 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 736 0 R +/Name /Im302 +/Width 12 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÀÿñ2@@öäg@@9ÿþàmà �Ìn? +endstream +endobj +328 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 737 0 R +/Name /Im303 +/Width 17 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãÿßÀÿ¿á2b| #ötÄßÀðÿ ÊÔÏæ�á4¢ +endstream +endobj +329 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 738 0 R +/Name /Im304 +/Width 20 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x?ß ÿ�ûÇìÁ¨ø !9öÿÇ?ü?ÿAD¨~¢8�+NG +endstream +endobj +330 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 739 0 R +/Name /Im305 +/Width 16 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÁþOßݽþýÿ +`XÀPÁfÁc#!ÿýPÝD!�&e ª +endstream +endobj +331 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 740 0 R +/Name /Im306 +/Width 22 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`°`¨«aüÿùðöæü̽ÿïÿÇ ÿ¿ÿÿùÿ,0>(`xðñ@17Øð°`i$ +�!,ñ +endstream +endobj +332 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 741 0 R +/Name /Im307 +/Width 28 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ@þà æg`oàg`f�aö6>ÀÇÀ|È00>�c\À6X¾ùAF¶~¶<�,s +endstream +endobj +333 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 742 0 R +/Name /Im308 +/Width 20 +/Height 2 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃÿÿDºE5 +endstream +endobj +334 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 743 0 R +/Name /Im309 +/Width 28 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmÃÁ �@Ñ/B^"[¡ciFèØAÈAÆQÁ£ :Æã¡òÄxmøaY¦FtÉB\jWû7mù-BA²]Ýc1hfTLÈ;ÂÆúÓ>_U¯ +endstream +endobj +335 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 744 0 R +/Name /Im310 +/Width 20 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÀÀÿñ:b>�Cçï`þøý 5"?ó4$ÇÞðÿøÿç?ÈÖÏ�øò#¦ +endstream +endobj +336 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 745 0 R +/Name /Im311 +/Width 15 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÆÿOOÇÇÁ¾Áþüþ?ldÐâCÁÿçðÕO��*G½ +endstream +endobj +337 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 746 0 R +/Name /Im312 +/Width 26 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãÿÿÿÿü Øù�3>`GÆ øAùóÿ@ü�Èfc n¬h2P9ÃÿR2u³e�»¡% +endstream +endobj +338 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 747 0 R +/Name /Im313 +/Width 19 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÃÀü½Aù ãÆ èó*`n(`o¨àg°cÿÁÀþAX¨n¢(�|¢ +endstream +endobj +339 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 748 0 R +/Name /Im314 +/Width 19 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³o`¨o`àg@GrpTà ÿA½Áù #= +æ0ÔPÁÞPÁÏðÇáùÃekæ�¨p +endstream +endobj +340 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 749 0 R +/Name /Im315 +/Width 32 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x?~àüýÇØ?ücðGýÀ9ö(ñ 6,Ç| âÿñÿÿÿù_A¨~¢2�kµ# + +endstream +endobj +341 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 750 0 R +/Name /Im316 +/Width 22 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°çaøñàf +v>c0c`�"þþìÿÿ70þ?À`ÿùãJ#Æ~07üãg8ÿ¡ù\Ýq�È7¿ +endstream +endobj +342 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 751 0 R +/Name /Im317 +/Width 19 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû?ÿÁÿùìØäØÀANA^ßß?0°Q1°PÍD1�ª +endstream +endobj +343 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 752 0 R +/Name /Im318 +/Width 8 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xããaBµy� 2 +endstream +endobj +344 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 753 0 R +/Name /Im319 +/Width 28 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÿÿÿ=Û°7~°`oH(�âægH8�Åüp,ÛàÀ5òÿ±LÍl9�õ|N +endstream +endobj +345 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 754 0 R +/Name /Im320 +/Width 30 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]ű À0DÑ*\j`2f +¼GÑ(áJÅ>oqÃ"*Ô +±êÒpüyõWÿ º0Uizª32y;¯ý"q.E +endstream +endobj +346 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 755 0 R +/Name /Im321 +/Width 23 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã~ÿÿæÌl@±7ØÀP}à?ü¿¾ßä`èÿj(�®O +endstream +endobj +347 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 756 0 R +/Name /Im322 +/Width 19 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`?À ÿ¡òÃç0><Àø@ý2ØÐ?:g`øÿ�eëçð�ýM +endstream +endobj +348 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 757 0 R +/Name /Im323 +/Width 23 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãÿùÿç?æÀè�ãÃ>Ã70úÃÀPÃÀPF`�B@è`Ãs:q©b�e« +endstream +endobj +349 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 758 0 R +/Name /Im324 +/Width 17 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãÿßÀÿ¿AFAÂA¢AâÄÆÌÇØÛøAÁF¡Âáÿª(�Ȯ +endstream +endobj +350 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 420 0 R >> /XObject << /Im176 185 0 R /Im42 49 0 R /Im39 46 0 R /Im39 46 0 R /Im44 51 0 R /Im46 53 0 R /Im57 64 0 R /Im41 48 0 R /Im58 65 0 R /Im39 46 0 R /Im40 47 0 R /Im58 65 0 R /Im68 75 0 R /Im292 317 0 R /Im162 171 0 R /Im293 318 0 R /Im61 68 0 R /Im43 50 0 R /Im42 49 0 R /Im52 59 0 R /Im76 83 0 R /Im42 49 0 R /Im43 50 0 R /Im65 72 0 R /Im68 75 0 R /Im170 179 0 R /Im68 75 0 R /Im71 78 0 R /Im38 45 0 R /Im40 47 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im69 76 0 R /Im40 47 0 R /Im202 213 0 R /Im76 83 0 R /Im294 319 0 R /Im68 75 0 R /Im95 102 0 R /Im68 75 0 R /Im160 169 0 R /Im68 75 0 R /Im170 179 0 R /Im68 75 0 R /Im71 78 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im160 169 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im76 83 0 R /Im160 169 0 R /Im68 75 0 R /Im294 319 0 R /Im68 75 0 R /Im41 48 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im42 49 0 R /Im39 46 0 R /Im151 160 0 R /Im146 153 0 R /Im153 162 0 R /Im153 162 0 R /Im174 183 0 R /Im157 166 0 R /Im68 75 0 R /Im63 70 0 R /Im42 49 0 R /Im70 77 0 R /Im66 73 0 R /Im57 64 0 R /Im58 65 0 R /Im67 74 0 R /Im42 49 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im62 69 0 R /Im67 74 0 R /Im55 62 0 R /Im42 49 0 R /Im50 57 0 R /Im42 49 0 R /Im44 51 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im54 61 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im54 61 0 R /Im58 65 0 R /Im51 58 0 R /Im57 64 0 R /Im42 49 0 R /Im44 51 0 R /Im68 75 0 R /Im303 328 0 R /Im309 334 0 R /Im309 334 0 R /Im295 320 0 R /Im325 352 0 R /Im313 338 0 R /Im326 353 0 R /Im296 321 0 R /Im304 329 0 R /Im301 326 0 R /Im302 327 0 R /Im71 78 0 R /Im307 332 0 R /Im47 54 0 R /Im57 64 0 R /Im68 75 0 R /Im146 153 0 R /Im155 164 0 R /Im71 78 0 R /Im56 63 0 R /Im47 54 0 R /Im68 75 0 R /Im174 183 0 R /Im71 78 0 R /Im66 73 0 R /Im66 73 0 R /Im68 75 0 R /Im146 153 0 R /Im169 178 0 R /Im162 171 0 R /Im308 333 0 R /Im146 153 0 R /Im153 162 0 R /Im162 171 0 R /Im68 75 0 R /Im292 317 0 R /Im174 183 0 R /Im293 318 0 R /Im61 68 0 R /Im43 50 0 R /Im52 59 0 R /Im59 66 0 R /Im39 46 0 R /Im47 54 0 R /Im60 67 0 R /Im68 75 0 R /Im49 56 0 R /Im68 75 0 R /Im151 160 0 R /Im146 153 0 R /Im153 162 0 R /Im154 163 0 R /Im162 171 0 R /Im157 166 0 R /Im68 75 0 R /Im61 68 0 R /Im47 54 0 R /Im52 59 0 R /Im39 46 0 R /Im59 66 0 R /Im44 51 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im307 332 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im60 67 0 R /Im51 58 0 R /Im43 50 0 R /Im40 47 0 R /Im59 66 0 R /Im53 60 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im62 69 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im47 54 0 R /Im48 55 0 R /Im168 177 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im50 57 0 R /Im58 65 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im68 75 0 R /Im312 337 0 R /Im296 321 0 R /Im313 338 0 R /Im314 339 0 R /Im302 327 0 R /Im305 330 0 R /Im315 340 0 R /Im311 336 0 R /Im313 338 0 R /Im322 347 0 R /Im309 334 0 R /Im323 348 0 R /Im314 339 0 R /Im305 330 0 R /Im296 321 0 R /Im304 329 0 R /Im305 330 0 R /Im297 322 0 R /Im298 323 0 R /Im300 325 0 R /Im311 336 0 R /Im71 78 0 R /Im307 332 0 R /Im47 54 0 R /Im57 64 0 R /Im68 75 0 R /Im146 153 0 R /Im167 176 0 R /Im71 78 0 R /Im66 73 0 R /Im66 73 0 R /Im68 75 0 R /Im173 182 0 R /Im173 182 0 R /Im175 184 0 R /Im308 333 0 R /Im173 182 0 R /Im174 183 0 R /Im146 153 0 R /Im68 75 0 R /Im54 61 0 R /Im43 50 0 R /Im58 65 0 R /Im39 46 0 R /Im44 51 0 R /Im57 64 0 R /Im58 65 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im47 54 0 R /Im48 55 0 R /Im63 70 0 R /Im52 59 0 R /Im44 51 0 R /Im44 51 0 R /Im40 47 0 R /Im58 65 0 R /Im39 46 0 R /Im47 54 0 R /Im43 50 0 R /Im40 47 0 R /Im53 60 0 R /Im40 47 0 R /Im39 46 0 R /Im58 65 0 R /Im57 64 0 R /Im40 47 0 R /Im39 46 0 R /Im312 337 0 R /Im296 321 0 R /Im313 338 0 R /Im314 339 0 R /Im302 327 0 R /Im305 330 0 R /Im315 340 0 R /Im323 348 0 R /Im327 354 0 R /Im298 323 0 R /Im314 339 0 R /Im305 330 0 R /Im296 321 0 R /Im304 329 0 R /Im305 330 0 R /Im297 322 0 R /Im298 323 0 R /Im328 355 0 R /Im298 323 0 R /Im71 78 0 R /Im307 332 0 R /Im47 54 0 R /Im57 64 0 R /Im68 75 0 R /Im146 153 0 R /Im167 176 0 R /Im71 78 0 R /Im170 179 0 R /Im58 65 0 R /Im46 53 0 R /Im146 153 0 R /Im153 162 0 R /Im154 163 0 R /Im162 171 0 R /Im71 78 0 R /Im66 73 0 R /Im66 73 0 R /Im68 75 0 R /Im146 153 0 R /Im174 183 0 R /Im146 153 0 R /Im70 77 0 R /Im146 153 0 R /Im175 184 0 R /Im167 176 0 R /Im68 75 0 R /Im292 317 0 R /Im175 184 0 R /Im293 318 0 R /Im168 177 0 R /Im51 58 0 R /Im42 49 0 R /Im57 64 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im64 71 0 R /Im68 75 0 R /Im151 160 0 R /Im146 153 0 R /Im153 162 0 R /Im169 178 0 R /Im154 163 0 R /Im157 166 0 R /Im68 75 0 R /Im295 320 0 R /Im302 327 0 R /Im302 327 0 R /Im297 322 0 R /Im310 335 0 R /Im305 330 0 R /Im329 356 0 R /Im298 323 0 R /Im306 331 0 R /Im310 335 0 R /Im297 322 0 R /Im330 357 0 R /Im313 338 0 R /Im317 342 0 R /Im305 330 0 R /Im311 336 0 R /Im318 343 0 R /Im295 320 0 R /Im331 358 0 R /Im332 359 0 R /Im316 341 0 R /Im303 328 0 R /Im295 320 0 R /Im296 321 0 R /Im300 325 0 R /Im310 335 0 R /Im298 323 0 R /Im297 322 0 R /Im305 330 0 R /Im300 325 0 R /Im297 322 0 R /Im326 353 0 R /Im296 321 0 R /Im305 330 0 R /Im322 347 0 R /Im313 338 0 R /Im296 321 0 R /Im309 334 0 R /Im310 335 0 R /Im305 330 0 R /Im311 336 0 R /Im311 336 0 R /Im68 75 0 R /Im55 62 0 R /Im68 75 0 R /Im65 72 0 R /Im68 75 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im40 47 0 R /Im44 51 0 R /Im71 78 0 R /Im64 71 0 R /Im58 65 0 R /Im43 50 0 R /Im39 46 0 R /Im42 49 0 R /Im53 60 0 R /Im40 47 0 R /Im42 49 0 R /Im70 77 0 R /Im170 179 0 R /Im42 49 0 R /Im57 64 0 R /Im57 64 0 R /Im47 54 0 R /Im39 46 0 R /Im38 45 0 R /Im39 46 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im46 53 0 R /Im71 78 0 R /Im40 47 0 R /Im45 52 0 R /Im45 52 0 R /Im44 51 0 R /Im51 58 0 R /Im52 59 0 R /Im43 50 0 R /Im53 60 0 R /Im55 62 0 R /Im71 78 0 R /Im42 49 0 R /Im39 46 0 R /Im39 46 0 R /Im44 51 0 R /Im46 53 0 R /Im57 64 0 R /Im41 48 0 R /Im58 65 0 R /Im39 46 0 R /Im40 47 0 R /Im58 65 0 R /Im68 75 0 R /Im292 317 0 R /Im154 163 0 R /Im293 318 0 R /Im152 161 0 R /Im40 47 0 R /Im57 64 0 R /Im57 64 0 R /Im47 54 0 R /Im53 60 0 R /Im57 64 0 R /Im46 53 0 R /Im294 319 0 R /Im68 75 0 R /Im294 319 0 R /Im68 75 0 R /Im151 160 0 R /Im146 153 0 R /Im153 162 0 R /Im155 164 0 R /Im169 178 0 R /Im157 166 0 R /Im68 75 0 R /Im312 337 0 R /Im305 330 0 R /Im296 321 0 R /Im322 347 0 R /Im313 338 0 R /Im296 321 0 R /Im315 340 0 R /Im301 326 0 R /Im304 329 0 R /Im300 325 0 R /Im305 330 0 R /Im295 320 0 R /Im304 329 0 R /Im301 326 0 R /Im302 327 0 R /Im323 348 0 R /Im311 336 0 R /Im298 323 0 R /Im311 336 0 R /Im313 338 0 R /Im322 347 0 R /Im297 322 0 R /Im310 335 0 R /Im305 330 0 R /Im319 344 0 R /Im305 330 0 R /Im300 325 0 R /Im310 335 0 R /Im304 329 0 R /Im313 338 0 R /Im302 327 0 R /Im313 338 0 R /Im306 331 0 R /Im323 348 0 R /Im309 334 0 R /Im310 335 0 R /Im305 330 0 R /Im311 336 0 R /Im311 336 0 R /Im312 337 0 R /Im296 321 0 R /Im313 338 0 R /Im333 360 0 R /Im306 331 0 R /Im296 321 0 R /Im301 326 0 R /Im315 340 0 R /Im68 75 0 R /Im55 62 0 R /Im68 75 0 R /Im65 72 0 R /Im68 75 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im40 47 0 R /Im44 51 0 R /Im71 78 0 R /Im64 71 0 R /Im58 65 0 R /Im43 50 0 R /Im39 46 0 R /Im42 49 0 R /Im53 60 0 R /Im40 47 0 R /Im42 49 0 R /Im70 77 0 R /Im170 179 0 R /Im42 49 0 R /Im57 64 0 R /Im57 64 0 R /Im47 54 0 R /Im39 46 0 R /Im38 45 0 R /Im39 46 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im46 53 0 R /Im71 78 0 R /Im40 47 0 R /Im45 52 0 R /Im45 52 0 R /Im44 51 0 R /Im51 58 0 R /Im52 59 0 R /Im43 50 0 R /Im53 60 0 R /Im55 62 0 R /Im71 78 0 R /Im42 49 0 R /Im39 46 0 R /Im39 46 0 R /Im44 51 0 R /Im46 53 0 R /Im57 64 0 R /Im41 48 0 R /Im58 65 0 R /Im70 77 0 R /Im39 46 0 R /Im40 47 0 R /Im58 65 0 R /Im68 75 0 R /Im292 317 0 R /Im155 164 0 R /Im293 318 0 R /Im152 161 0 R /Im43 50 0 R /Im42 49 0 R /Im42 49 0 R /Im39 46 0 R /Im51 58 0 R /Im57 64 0 R /Im58 65 0 R /Im45 52 0 R /Im45 52 0 R /Im63 70 0 R /Im68 75 0 R /Im65 72 0 R /Im68 75 0 R /Im71 78 0 R /Im168 177 0 R /Im58 65 0 R /Im44 51 0 R /Im45 52 0 R /Im57 64 0 R /Im58 65 0 R /Im76 83 0 R /Im42 49 0 R /Im65 72 0 R /Im68 75 0 R /Im168 177 0 R /Im68 75 0 R /Im71 78 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im64 71 0 R /Im43 50 0 R /Im47 54 0 R /Im67 74 0 R /Im76 83 0 R /Im42 49 0 R /Im43 50 0 R /Im62 69 0 R /Im68 75 0 R /Im65 72 0 R /Im68 75 0 R /Im151 160 0 R /Im146 153 0 R /Im153 162 0 R /Im154 163 0 R /Im155 164 0 R /Im157 166 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im152 161 0 R /Im43 50 0 R /Im42 49 0 R /Im42 49 0 R /Im39 46 0 R /Im70 77 0 R /Im51 58 0 R /Im57 64 0 R /Im58 65 0 R /Im45 52 0 R /Im45 52 0 R /Im64 71 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im43 50 0 R /Im47 54 0 R /Im53 60 0 R /Im43 50 0 R /Im58 65 0 R /Im50 57 0 R /Im68 75 0 R /Im312 337 0 R /Im296 321 0 R /Im313 338 0 R /Im300 325 0 R /Im305 330 0 R /Im305 330 0 R /Im334 361 0 R /Im298 323 0 R /Im304 329 0 R /Im306 331 0 R /Im311 336 0 R /Im313 338 0 R /Im322 347 0 R /Im297 322 0 R /Im310 335 0 R /Im305 330 0 R /Im295 320 0 R /Im335 362 0 R /Im303 328 0 R /Im312 337 0 R /Im316 341 0 R /Im335 362 0 R /Im301 326 0 R /Im302 327 0 R /Im302 327 0 R /Im325 352 0 R /Im313 338 0 R /Im298 323 0 R /Im304 329 0 R /Im297 322 0 R /Im309 334 0 R /Im313 338 0 R /Im315 340 0 R /Im321 346 0 R /Im326 353 0 R /Im297 322 0 R /Im305 330 0 R /Im296 321 0 R /Im309 334 0 R /Im313 338 0 R /Im304 329 0 R /Im322 347 0 R /Im305 330 0 R /Im296 321 0 R /Im305 330 0 R /Im304 329 0 R /Im300 325 0 R /Im305 330 0 R /Im336 363 0 R /Im337 364 0 R /Im71 78 0 R /Im66 73 0 R /Im66 73 0 R /Im68 75 0 R /Im169 178 0 R /Im167 176 0 R /Im146 153 0 R /Im308 333 0 R /Im169 178 0 R /Im146 153 0 R /Im167 176 0 R /Im68 75 0 R /Im63 70 0 R /Im42 49 0 R /Im66 73 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im42 49 0 R /Im59 66 0 R /Im151 160 0 R /Im146 153 0 R /Im153 162 0 R /Im169 178 0 R /Im169 178 0 R /Im157 166 0 R /Im40 47 0 R /Im39 46 0 R /Im309 334 0 R /Im313 338 0 R /Im315 340 0 R /Im321 346 0 R /Im326 353 0 R /Im297 322 0 R /Im305 330 0 R /Im296 321 0 R /Im309 334 0 R /Im310 335 0 R /Im305 330 0 R /Im311 336 0 R /Im311 336 0 R /Im309 334 0 R /Im313 338 0 R /Im315 340 0 R /Im333 360 0 R /Im321 346 0 R /Im305 330 0 R /Im304 329 0 R /Im334 361 0 R /Im298 323 0 R /Im326 353 0 R /Im315 340 0 R /Im151 160 0 R /Im42 49 0 R /Im59 66 0 R /Im68 75 0 R /Im65 72 0 R /Im68 75 0 R /Im56 63 0 R /Im68 75 0 R /Im49 56 0 R /Im68 75 0 R /Im49 56 0 R /Im42 49 0 R /Im41 48 0 R /Im46 53 0 R /Im157 166 0 R /Im71 78 0 R /Im66 73 0 R /Im66 73 0 R /Im68 75 0 R /Im175 184 0 R /Im154 163 0 R /Im70 77 0 R /Im154 163 0 R /Im154 163 0 R /Im68 75 0 R /Im61 68 0 R /Im68 75 0 R /Im54 61 0 R /Im68 75 0 R /Im61 68 0 R /Im58 65 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im47 54 0 R /Im43 50 0 R /Im59 66 0 R /Im49 56 0 R /Im45 52 0 R /Im59 66 0 R /Im71 78 0 R /Im49 56 0 R /Im47 54 0 R /Im39 46 0 R /Im59 66 0 R /Im47 54 0 R /Im39 46 0 R /Im68 75 0 R /Im292 317 0 R /Im169 178 0 R /Im293 318 0 R /Im160 169 0 R /Im46 53 0 R /Im58 65 0 R /Im45 52 0 R /Im45 52 0 R /Im63 70 0 R /Im68 75 0 R /Im170 179 0 R /Im68 75 0 R /Im71 78 0 R /Im152 161 0 R /Im47 54 0 R /Im69 76 0 R /Im42 49 0 R /Im43 50 0 R /Im60 67 0 R /Im68 75 0 R /Im168 177 0 R /Im68 75 0 R /Im71 78 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im56 63 0 R /Im42 49 0 R /Im57 64 0 R /Im44 51 0 R /Im47 54 0 R /Im39 46 0 R /Im160 169 0 R /Im68 75 0 R /Im49 56 0 R /Im68 75 0 R /Im151 160 0 R /Im146 153 0 R /Im153 162 0 R /Im153 162 0 R /Im167 176 0 R /Im157 166 0 R /Im68 75 0 R /Im64 71 0 R /Im43 50 0 R /Im58 65 0 R /Im46 53 0 R /Im61 68 0 R /Im57 64 0 R /Im40 47 0 R /Im45 52 0 R /Im77 84 0 R /Im68 75 0 R /Im309 334 0 R /Im313 338 0 R /Im315 340 0 R /Im333 360 0 R /Im321 346 0 R /Im326 353 0 R /Im297 322 0 R /Im305 330 0 R /Im296 321 0 R /Im311 336 0 R /Im338 365 0 R /Im309 334 0 R /Im310 335 0 R /Im305 330 0 R /Im311 336 0 R /Im311 336 0 R /Im338 365 0 R /Im301 326 0 R /Im304 329 0 R /Im334 361 0 R /Im309 334 0 R /Im313 338 0 R /Im306 331 0 R /Im304 329 0 R /Im298 323 0 R /Im297 322 0 R /Im298 323 0 R /Im313 338 0 R /Im304 329 0 R /Im151 160 0 R /Im42 49 0 R /Im59 66 0 R /Im44 51 0 R /Im68 75 0 R /Im54 61 0 R /Im68 75 0 R /Im60 67 0 R /Im68 75 0 R /Im170 179 0 R /Im58 65 0 R /Im43 50 0 R /Im44 51 0 R /Im57 64 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im294 319 0 R /Im68 75 0 R /Im62 69 0 R /Im67 74 0 R /Im55 62 0 R /Im58 65 0 R /Im42 49 0 R /Im75 82 0 R /Im42 49 0 R /Im43 50 0 R /Im157 166 0 R /Im71 78 0 R /Im66 73 0 R /Im66 73 0 R /Im68 75 0 R /Im146 153 0 R /Im146 153 0 R /Im146 153 0 R /Im308 333 0 R /Im146 153 0 R /Im162 171 0 R /Im167 176 0 R /Im68 75 0 R /Im62 69 0 R /Im66 73 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im42 49 0 R /Im43 50 0 R /Im70 77 0 R /Im307 332 0 R /Im42 49 0 R /Im43 50 0 R /Im57 64 0 R /Im58 65 0 R /Im53 60 0 R /Im71 78 0 R /Im56 63 0 R /Im42 49 0 R /Im69 76 0 R /Im339 366 0 R /Im47 54 0 R /Im43 50 0 R /Im76 83 0 R /Im68 75 0 R /Im292 317 0 R /Im153 162 0 R /Im293 318 0 R /Im161 170 0 R /Im39 46 0 R /Im52 59 0 R /Im45 52 0 R /Im55 62 0 R /Im65 72 0 R /Im68 75 0 R /Im168 177 0 R /Im68 75 0 R /Im151 160 0 R /Im146 153 0 R /Im153 162 0 R /Im155 164 0 R /Im162 171 0 R /Im157 166 0 R /Im68 75 0 R /Im319 344 0 R /Im310 335 0 R /Im305 330 0 R /Im295 320 0 R /Im296 321 0 R /Im297 322 0 R /Im313 338 0 R /Im322 347 0 R /Im309 334 0 R /Im313 338 0 R /Im315 340 0 R /Im321 346 0 R /Im326 353 0 R /Im297 322 0 R /Im305 330 0 R /Im296 321 0 R /Im312 337 0 R /Im296 321 0 R /Im313 338 0 R /Im306 331 0 R /Im296 321 0 R /Im301 326 0 R /Im315 340 0 R /Im315 340 0 R /Im298 323 0 R /Im304 329 0 R /Im306 331 0 R /Im340 367 0 R /Im331 358 0 R /Im313 338 0 R /Im302 327 0 R /Im326 353 0 R /Im315 340 0 R /Im305 330 0 R /Im336 363 0 R /Im318 343 0 R /Im316 341 0 R /Im313 338 0 R /Im296 321 0 R /Im297 322 0 R /Im298 323 0 R /Im304 329 0 R /Im306 331 0 R /Im301 326 0 R /Im304 329 0 R /Im334 361 0 R /Im316 341 0 R /Im305 330 0 R /Im301 326 0 R /Im296 321 0 R /Im300 325 0 R /Im310 335 0 R /Im298 323 0 R /Im304 329 0 R /Im306 331 0 R /Im68 75 0 R /Im60 67 0 R /Im59 66 0 R /Im59 66 0 R /Im40 47 0 R /Im44 51 0 R /Im47 54 0 R /Im39 46 0 R /Im70 77 0 R /Im95 102 0 R /Im42 49 0 R /Im44 51 0 R /Im57 64 0 R /Im42 49 0 R /Im46 53 0 R /Im52 59 0 R /Im51 58 0 R /Im57 64 0 R /Im40 47 0 R /Im44 51 0 R /Im55 62 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im64 71 0 R /Im47 54 0 R /Im50 57 0 R /Im66 73 0 R /Im58 65 0 R /Im39 46 0 R /Im46 53 0 R /Im71 78 0 R /Im63 70 0 R /Im42 49 0 R /Im58 65 0 R /Im59 66 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im71 78 0 R /Im170 179 0 R /Im58 65 0 R /Im44 51 0 R /Im44 51 0 R /Im58 65 0 R /Im67 74 0 R /Im55 62 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im45 52 0 R /Im45 52 0 R /Im44 51 0 R /Im68 75 0 R /Im292 317 0 R /Im146 153 0 R /Im167 176 0 R /Im293 318 0 R /Im170 179 0 R /Im58 65 0 R /Im43 50 0 R /Im44 51 0 R /Im57 64 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im54 61 0 R /Im68 75 0 R /Im60 67 0 R /Im68 75 0 R /Im151 160 0 R /Im146 153 0 R /Im153 162 0 R /Im169 178 0 R /Im154 163 0 R /Im157 166 0 R /Im68 75 0 R /Im60 67 0 R /Im63 70 0 R /Im42 49 0 R /Im41 48 0 R /Im40 47 0 R /Im42 49 0 R /Im69 76 0 R /Im47 54 0 R /Im48 55 0 R /Im152 161 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im70 77 0 R /Im54 61 0 R /Im43 50 0 R /Im42 49 0 R /Im42 49 0 R /Im43 50 0 R /Im52 59 0 R /Im39 46 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im68 75 0 R /Im303 328 0 R /Im309 334 0 R /Im309 334 0 R /Im295 320 0 R /Im325 352 0 R /Im313 338 0 R /Im326 353 0 R /Im296 321 0 R /Im304 329 0 R /Im301 326 0 R /Im302 327 0 R /Im71 78 0 R /Im307 332 0 R /Im47 54 0 R /Im57 64 0 R /Im68 75 0 R /Im153 162 0 R /Im71 78 0 R /Im56 63 0 R /Im47 54 0 R /Im68 75 0 R /Im146 153 0 R /Im71 78 0 R /Im66 73 0 R /Im66 73 0 R /Im68 75 0 R /Im162 171 0 R /Im308 333 0 R /Im146 153 0 R /Im153 162 0 R /Im68 75 0 R /Im292 317 0 R /Im146 153 0 R /Im146 153 0 R /Im293 318 0 R /Im62 69 0 R /Im67 74 0 R /Im55 62 0 R /Im58 65 0 R /Im42 49 0 R /Im75 82 0 R /Im42 49 0 R /Im43 50 0 R /Im294 319 0 R /Im68 75 0 R /Im151 160 0 R /Im146 153 0 R /Im153 162 0 R /Im169 178 0 R /Im153 162 0 R /Im157 166 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im160 169 0 R /Im40 47 0 R /Im44 51 0 R /Im45 52 0 R /Im47 54 0 R /Im43 50 0 R /Im46 53 0 R /Im160 169 0 R /Im42 49 0 R /Im52 59 0 R /Im43 50 0 R /Im40 47 0 R /Im44 51 0 R /Im45 52 0 R /Im40 47 0 R /Im67 74 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im60 67 0 R /Im57 64 0 R /Im66 73 0 R /Im55 62 0 R /Im58 65 0 R /Im70 77 0 R /Im61 68 0 R /Im42 49 0 R /Im45 52 0 R /Im58 65 0 R /Im62 69 0 R /Im42 49 0 R /Im58 65 0 R /Im43 50 0 R /Im67 74 0 R /Im55 62 0 R /Im168 177 0 R /Im39 46 0 R /Im70 77 0 R /Im55 62 0 R /Im58 65 0 R /Im39 46 0 R /Im67 74 0 R /Im42 49 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im43 50 0 R /Im58 65 0 R /Im67 74 0 R /Im45 52 0 R /Im40 47 0 R /Im67 74 0 R /Im42 49 0 R /Im68 75 0 R /Im303 328 0 R /Im341 368 0 R /Im341 368 0 R /Im341 368 0 R /Im319 344 0 R /Im296 321 0 R /Im301 326 0 R /Im304 329 0 R /Im311 336 0 R /Im301 326 0 R /Im300 325 0 R /Im297 322 0 R /Im298 323 0 R /Im313 338 0 R /Im304 329 0 R /Im311 336 0 R /Im313 338 0 R /Im304 329 0 R /Im312 337 0 R /Im301 326 0 R /Im297 322 0 R /Im297 322 0 R /Im305 330 0 R /Im296 321 0 R /Im304 329 0 R /Im295 320 0 R /Im304 329 0 R /Im301 326 0 R /Im302 327 0 R /Im323 348 0 R /Im311 336 0 R /Im298 323 0 R /Im311 336 0 R /Im301 326 0 R /Im304 329 0 R /Im334 361 0 R /Im330 357 0 R /Im301 326 0 R /Im300 325 0 R /Im310 335 0 R /Im298 323 0 R /Im304 329 0 R /Im305 330 0 R /Im303 328 0 R /Im304 329 0 R /Im297 322 0 R /Im305 330 0 R /Im302 327 0 R /Im302 327 0 R /Im298 323 0 R /Im306 331 0 R /Im305 330 0 R /Im304 329 0 R /Im300 325 0 R /Im305 330 0 R /Im71 78 0 R /Im307 332 0 R /Im47 54 0 R /Im57 64 0 R /Im68 75 0 R /Im146 153 0 R /Im146 153 0 R /Im71 78 0 R /Im56 63 0 R /Im47 54 0 R /Im68 75 0 R /Im146 153 0 R /Im146 153 0 R /Im71 78 0 R /Im66 73 0 R /Im66 73 0 R /Im68 75 0 R /Im146 153 0 R /Im173 182 0 R /Im167 176 0 R /Im162 171 0 R /Im308 333 0 R /Im146 153 0 R /Im173 182 0 R /Im146 153 0 R /Im173 182 0 R /Im68 75 0 R /Im292 317 0 R /Im146 153 0 R /Im173 182 0 R /Im293 318 0 R /Im62 69 0 R /Im67 74 0 R /Im55 62 0 R /Im58 65 0 R /Im42 49 0 R /Im75 82 0 R /Im42 49 0 R /Im43 50 0 R /Im294 319 0 R /Im68 75 0 R /Im151 160 0 R /Im146 153 0 R /Im153 162 0 R /Im153 162 0 R /Im174 183 0 R /Im157 166 0 R /Im68 75 0 R /Im312 337 0 R /Im305 330 0 R /Im296 321 0 R /Im311 336 0 R /Im313 338 0 R /Im304 329 0 R /Im301 326 0 R /Im302 327 0 R /Im300 325 0 R /Im313 338 0 R /Im315 340 0 R /Im315 340 0 R /Im326 353 0 R /Im304 329 0 R /Im298 323 0 R /Im300 325 0 R /Im301 326 0 R /Im297 322 0 R /Im298 323 0 R /Im313 338 0 R /Im304 329 0 R /Im68 75 0 R /Im292 317 0 R /Im146 153 0 R /Im162 171 0 R /Im293 318 0 R /Im62 69 0 R /Im67 74 0 R /Im55 62 0 R /Im58 65 0 R /Im42 49 0 R /Im75 82 0 R /Im42 49 0 R /Im43 50 0 R /Im294 319 0 R /Im68 75 0 R /Im151 160 0 R /Im146 153 0 R /Im153 162 0 R /Im153 162 0 R /Im154 163 0 R /Im157 166 0 R /Im68 75 0 R /Im312 337 0 R /Im305 330 0 R /Im296 321 0 R /Im311 336 0 R /Im313 338 0 R /Im304 329 0 R /Im301 326 0 R /Im302 327 0 R /Im300 325 0 R /Im313 338 0 R /Im315 340 0 R /Im315 340 0 R /Im326 353 0 R /Im304 329 0 R /Im298 323 0 R /Im300 325 0 R /Im301 326 0 R /Im297 322 0 R /Im298 323 0 R /Im313 338 0 R /Im304 329 0 R /Im68 75 0 R /Im292 317 0 R /Im146 153 0 R /Im174 183 0 R /Im293 318 0 R /Im62 69 0 R /Im57 64 0 R /Im58 65 0 R /Im45 52 0 R /Im42 49 0 R /Im294 319 0 R /Im68 75 0 R /Im65 72 0 R /Im68 75 0 R /Im58 65 0 R /Im39 46 0 R /Im59 66 0 R /Im60 67 0 R /Im45 52 0 R /Im76 83 0 R /Im40 47 0 R /Im39 46 0 R /Im49 56 0 R /Im68 75 0 R /Im63 70 0 R /Im68 75 0 R /Im151 160 0 R /Im146 153 0 R /Im153 162 0 R /Im155 164 0 R /Im155 164 0 R /Im157 166 0 R /Im68 75 0 R /Im64 71 0 R /Im160 169 0 R /Im168 177 0 R /Im62 69 0 R /Im62 69 0 R /Im174 183 0 R /Im68 75 0 R /Im175 184 0 R /Im171 180 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im56 63 0 R /Im47 54 0 R /Im43 50 0 R /Im45 52 0 R /Im55 62 0 R /Im69 76 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im39 46 0 R /Im38 45 0 R /Im39 46 0 R /Im40 47 0 R /Im70 77 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im46 53 0 R /Im64 71 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im43 50 0 R /Im47 54 0 R /Im53 60 0 R /Im43 50 0 R /Im58 65 0 R /Im50 57 0 R /Im68 75 0 R /Im309 334 0 R /Im310 335 0 R /Im305 330 0 R /Im311 336 0 R /Im311 336 0 R /Im316 341 0 R /Im328 355 0 R /Im298 323 0 R /Im302 327 0 R /Im302 327 0 R /Im298 323 0 R /Im304 329 0 R /Im330 357 0 R /Im301 326 0 R /Im304 329 0 R /Im301 326 0 R /Im304 329 0 R /Im334 361 0 R /Im330 357 0 R /Im301 326 0 R /Im300 325 0 R /Im310 335 0 R /Im298 323 0 R /Im304 329 0 R /Im305 330 0 R /Im151 160 0 R /Im42 49 0 R /Im59 66 0 R /Im68 75 0 R /Im68 75 0 R /Im95 102 0 R /Im68 75 0 R /Im182 191 0 R /Im43 50 0 R /Im42 49 0 R /Im46 53 0 R /Im157 166 0 R /Im71 78 0 R /Im66 73 0 R /Im66 73 0 R /Im68 75 0 R /Im169 178 0 R /Im173 182 0 R /Im308 333 0 R /Im146 153 0 R /Im146 153 0 R /Im169 178 0 R /Im68 75 0 R /Im62 69 0 R /Im66 73 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im53 60 0 R /Im42 49 0 R /Im43 50 0 R /Im70 77 0 R /Im307 332 0 R /Im42 49 0 R /Im43 50 0 R /Im57 64 0 R /Im58 65 0 R /Im53 60 0 R /Im71 78 0 R /Im56 63 0 R /Im42 49 0 R /Im69 76 0 R /Im339 366 0 R /Im47 54 0 R /Im43 50 0 R /Im76 83 0 R /Im68 75 0 R /Im62 69 0 R /Im42 49 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im59 66 0 R /Im168 177 0 R /Im59 66 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im71 78 0 R /Im146 153 0 R /Im153 162 0 R /Im169 178 0 R /Im162 171 0 R /Im68 75 0 R /Im292 317 0 R /Im146 153 0 R /Im175 184 0 R /Im293 318 0 R /Im62 69 0 R /Im45 52 0 R /Im58 65 0 R /Im39 46 0 R /Im51 58 0 R /Im58 65 0 R /Im67 74 0 R /Im76 83 0 R /Im294 319 0 R /Im68 75 0 R /Im62 69 0 R /Im68 75 0 R /Im151 160 0 R /Im146 153 0 R /Im153 162 0 R /Im153 162 0 R /Im174 183 0 R /Im157 166 0 R /Im68 75 0 R /Im312 337 0 R /Im305 330 0 R /Im296 321 0 R /Im311 336 0 R /Im313 338 0 R /Im304 329 0 R /Im301 326 0 R /Im302 327 0 R /Im300 325 0 R /Im313 338 0 R /Im315 340 0 R /Im315 340 0 R /Im326 353 0 R /Im304 329 0 R /Im298 323 0 R /Im300 325 0 R /Im301 326 0 R /Im297 322 0 R /Im298 323 0 R /Im313 338 0 R /Im304 329 0 R /Im68 75 0 R /Im146 153 0 R /Im146 153 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 351 0 R +>> +endobj +351 0 obj +<< +/Length 759 0 R +/Filter /FlateDecode +>> +stream +x¥]K59RÝ÷¯¨%,¨N?ÒÉÁHl^ÎfzyO£ÿëüÊö9×Çy7¥R©ìô#"Ïúîß>þôûøëwúný\ýò±|.ýLÛã/.¥ÏuéH¿øÝwßÿóïÜ>þñßýÛ ÂgZê âgÈlþÓ§vèÛññs'ã70>òø}¿>Çãw´þØMíúøØ÷ã§[®ñÝùùϸ´ãÇoÏïÖß_·ñ÷Ëúß©ãýÁøuWÏß/èûýù³ý{·ý?V]¿CôÓ¯ß}úæûç_¼÷[lÇ'0>íõøãsÏ÷¿.Çþ¿=8äïÂó߬áäÀmýÜöS7_Á~`³ÐNð¿#áJlÕt$DYèñáçTãc÷}.B64^!»ãW0¾gáç ì &ë§çw ï÷ç>ãîÏ/Ýß*³s'l¯Y`û<àâ]ßw[Çô~üy¤Þ§2þ«Þ:>%6AÁÝ÷©GáÀ×2ÌîÝæù8vÈÐÇõ-ôv�m<�Iί_ÿþ<QüçÚû÷,|R%�á~³øJ@þè´Êû"qÀÑQ@YÀÀ]<´åû"à@OK²¶�&²½'KoÉ àI1=&ø1Yþ�ã=ú¤ Y»ñBD �&Ä + ,Ä + `'Ä +«&Ä i½¡¸¹7YhÛ% +fB,\jÔM!v (`=Jg!¨Gé,ô} ¢CÏhÏB¢z ¬G¾¯b /{ÀdXøßLU°N!c¨¢áÞf4áØd©~óÈÀâÑmðS¼ºú;ñQ\7ñ1Þº-<Ï ¡3H²=7MûÏÔÜÁráVLú]wÄKIÚóÑÓ¥bÚØC¢~{JîRÙ:â=ÊVâz<¤Ì=ÀøÔ}7e®ßÿÖ9V½~ù%¾ìÑÁ÷¹Khã"æÐ¿ß)³=oÅ-öè¾Ð?Ð$9åÑúûûcï÷~tsÎ#úÑïßø}ùþ}ôÒ÷©9áýuZSë +ø7w¼½3GýGÀdý òî1ùY?Ø?ùþ×0âÝÑýM¸t÷Mâ_ºþÒp©cùïMþ³ûü¾|ÿÙTÖO- Þݤ¿N~ðïoÒ÷éùAù×7EW~ÿ\¦è¨�åBÿåü"ºÿ^æ¤ôn £ýÏXÂðýÐí¸TܱõûÎoÁ÷õ§°�Ú*°ÛeÉ>Íê 2Á¾Þ \!a¾w¨Q[pA:È3T"ËQ&¨ÑW ½³&c9j/Øb6"£pÖíQ$ÇÂ"3r¶GÁ,{IzpbèÃÌ«CqiTO,S,+Ôd)ÅqEºD/,kd·EwIPÀÃë©x0ynÀÜbÕ º^¦W¸©WýrWt´Hõr²6rEG«ñý ²pæÖ«Æ#inàûÀ¡ÁÐíÅ+´.Ï61çòUã:GÔÁÅIãilcIÒ2ö®8µêÔZÞ§Ö¿FøBM&ðN XäËSÇò¾¤¬ñ3~úwÏ À3Ð{>g@É j|4Lôx<J/=(#Z4qèѬ`>Ñ£ZÁDj<2L¹^Õx¨ª+׫?+¶ñÈÁODù÷ßr¦ \¬>=Ob)8¼&áõsÁQZçÀýÇnÿ<Qd¾O]ãW¢Ço¼ßN&·å/GpW N {·"\A/Èø)Ʋæe¯N¤#,G²M#ÔA¢ÄGÔAµ-7å_E9@¼;âcè#2K8«÷/ÛEÊ¡ ß¡ÊAâ YÐý¡\b];ãnd¦ _ìÂzü] qXÆøõa@é0:°ÿ aÔBz~Q#@îáDÁ!ÁýË +0ºþèEmþzE2ð¬][?¥¿�Óè¬ÿ@)$ÈoØãÝÓ5^^\ÒÍõsï®"ZÖ~,?¢GòEXwË?9¡üCfáá�:á½ÜrÃïÇdÔÞÆ?Ë/=CcEô£G¨cïa·¤!ùG²t,Cd ¬_¾O§±d« P33\`·/Å_^ +âÖßøyÕCãeäJì¦XH=^O10 tpÜ.l5~"ßÙm�z\¹rDª `p Ø�~+²Ì-.½fÌ¥×Ó0®Ð3maé¨&ºXÝC³WÄFÁéÕs naâb¤à»Cd¡N¿kÌùç¯B¨ôé^7Qäö/îõàõ-X°uDHø&"Þ(È[x,VÛB3Y,ºå�èèë'8mê�¸ña髼 Ðô~d:`&ZBáK HEz°5ò¨5¬ [CØÑ«"[³YÜßîy¦¼JÌ;Oz"ðµ<kÕ º^±¤W¼t ,ÖR¹j¼+¼ROãy Å!Þ@ÏØ¡bºIîåçP¦qBW¸ ¶Ý+̶ñIÄ~+Ä[ÈÆ±´nÝ"åÊhÒKЬïDõg°EÞ=4ô é Ù>VÔ{êH;Õýsq ê½AícEÒý¯H«ÒÍêæ]L«dÞQû:i½?hÞN:M+][öýUQ+Xr ø)B²ö¢ z#XïçùÚ¿Ì¿W x0~ +R×A1´þP×éÇ;tþøß©ÇËþÙê¡~¼e0?²;þañûäü¢tþäþMÜ?]¿)²õxYöñxoÿ«öOÝ3i)ò£?áIXÀ{ÆÒèVõVtfÝ=³#qÏìmaÂ=³#*îê¸ÄàöÚ5±}F¬MY^¯ÀÏ[Õ 5Í6Áª]#õ,xHHºsäªÆò�Y Y¾ �oaÂ9p3Î(ÏÀ5¢Ì©s¤$*YÁ4"°jY¯Å9RñÂs$J°ßt@8áÙ<plv�_ÇO8GöÑsd_R:ã9é +)ÆöõPa5«)A¢�© ëî8¨6NÙåû{W-º¾ x�4È#á�ÁDEÉ.óp]¦y5^÷]¡ëÁx^²¾Å1lH½C ñwhW0Ä7x°Ã+|¶�WjbÖ¢ÞL³+Êåú/}||&PDY)JÙOY½ ùdúõ!ÔßBM\·ÁéÛL'Ó¯[u¨0d³'M=JÂb0;`:XB('°½|ùø×<ËÆ¯ÇëIPædÉ7øÊHOç%rºx@Bi"àÔëÉwk ÞÌ/ïiCÙðrÑD6|yO &JB+Ðáv|ÉkOQÏ^ºGZÕQ^Ôz<¨¦z©Ñl¡·Ôù:6°|Z!fÄ'tÁ78¶¤)°ÏïìÒÃvU-4¿£C6¢Ç°»^oò(,jö\AIª"O"ðÚ5ÌFZvtA¶0(n/s6 -'lM#$ÆPrSÛ4ÖL³ 'Mõ P/<Óã}Ç¡ÛC ÅÚÒA'Pz^(�iCÜ褲ïCÞ!aîQ*SBÚ7¿%¤â2åïË3M}ÑD(Q(CbAJò7fttN~ÚÆ$ÒG× M� jÌ Q,�!õI¯ò $±N·Å3`iã¼ ô:ͦ¼¯ÐÚÐ5CU¼OÊ ¯@6ø"J]ñÝl«¤é ¬%½ÁnYùLÞjË£ÆÂ¨Çëy9ÎÄz¼þý 1ú>O_ÁþõºW +7GçÇÓî#úþDÚ=ú¾×àÝhÆ3Ëç'Cxg÷A¥_\~-ô_ºx\Þ£ûËV|©ûlö/çÅX£z<ÊëbÈðû2_íûþ^^ YÊCúaùþ´~æùÍÈç÷ÓKÏ/íA¨¾Rw4Þ�9Àìß Ø±#Fy$1h¬WþĬ³NÅ0pßéÆÂÄ�z·£ +@n_ÃóUËÑ¿û�X�âãß{@BÐÎΫ0Z @ý(Å%ô�QÃ<Ʊ)5 JKPÉ×y&ø# ²Êy(�%lÙÓ- w¹S�°YjMÆ/8~AÃ%@_¿ ܧ�÷/£éåw8ZÐeDÀÔZ´'¦F;Dz¿ACÅ«P$5KP¹ß`ô¢©é!/8s@+&#TAgJÐ÷õ8D¬»/°îÖÏó'4r9þÍÈy¯#nÃÈy³Þ÷r#4+Ð#×[,+=bl|ã'"ßÛ!§åÇ®Y¿0ÞÜE÷̨ܰP[?ëyZx ¾A4è»\ÀL»´R¾_o@ouäK Ùýna£¼@Â+ 4+¼WüÚÕ +¦ðÈ À´M°Â ä,¤)¡ ¾-ÁßýÒ=ÒBÕP½F3 M0Qûn +q5T©` `"8ÐÈÁëw1Ü/4@òp@½ÞlA;HJ$ùâà +äð: òxsºñ-ÎÇþv,&�ôïÈa'Áãêa'<yà¶À*ÐÓ<ã!%ê&D@bgZò²n@¡i,)§m"ÉJÚ-èÌ´R1Ó×bvB^Ü·ìñ]dÊcoxäîMyp%(¶p¢< +pâÓÆrÂrÅÙJ/sÂDÊD¢óPR8*%k&pND8ñ=R¶ ¡HãpyX?{@ÄIWóâ}-Íbÿx/|+Z8Wð5tõxðTRÎVûvÃKRfgàJ[´µ<²Ógà¶¢âT�ý£æ-`@OäñÿbwVL$Ph ¾´6«'Ð(ü²I í,«¯ßiH[C÷´¯'PxóÎÆ_Ka~ó}=" ïO$Pàæf¼@áùé ÑîÏÝK XË[ðxn%P$Hÿz iõþõ J=ÂÂGú¡ [î%PXÍÎ~ÈúwH¿z yC¼@QJ`[ªÔØñHü´ 6¨WA[À`<Âvuäu_ &Pl5O$PÄ� ßDzEDç7Ó~_O Xß{@ù~t~<~¯>À$Â`«d"bóÒD(¶CÓÀè zÅ^À¾@rÅeÕ×LöF(õ +¿à¤|ü ¯_P}÷¯·#ôë[K£!sì}í çxD }[ªàz ¹'cû©/8±äÔ@ô +¨"l¯×è#m+û[/¸aÖãõÜ×z¼á +Äk=~>#û¨ ^ I:èhú:£]Á|F³Ñî`q-f�]Pûw\ ñz ñz,w ïë ߱/ËÃwlÆën{ëóoIxñ´dÞ!ìñ=©© ×ßpcYp=^wcíûÔN7\<@ðK½ú>Ä!d ¢~1Þ?å*Ä ñcX!Æ]JhýÖ4ÎOWÂ.?Ð@QÞLðá%¦hìR4·E[�µUâ ^H¡1�÷£¼÷_àYñ¥À>8$Aeâ«aðS?T/0(g~ô}ÔÁ% ïëx%)5VèG9?H8ÐýÉݬ ñî¶÷^ÀìQ¾OS÷r£÷{ 9?áØ®EÐ Õ5Z°&h)WÍÀÅÀn0²è)ft<C{rd´Øtt#ÔrLw'¤NtåöI1">0 "$z+?,HôV ªòº;'!MówB +r'S¨hbq¯0IuSª¸ñ²&h¦l3^/é/83õxݲN~£ñLp¥aLÜ÷ADõ5¤@³ÿiHfýÓÍxYñ¥ôh<ó§z¿ó«áDPÛ²�¿¡È/]«ñr1Æ@¯{ð�ø}±Ëð&o^1ÍøNðfögJB=~" ?í�fRø7t�S½ð +ä7ĬÁfEGßÛá +f:ðym°¡þÁxHâôâÁ;�úYi?ºF®ÊäBÖÉ|Ë0Auà+HÝö&R·=zÌfR·Ã mÜÞº4IÝ.%ACJ¤u+zÐ ú(!9HÊ FN°ïz!öYÁ¹±i¾ïHûkø>º,PÐR>°HÓkAÈ PÕ +Lgrx^>ªØâÿ9t21÷Ád"Eßó¢<àéëk`¥¯³zsÌ ÖObDúÝDÞBÝÅu@8D@Ho!·@Ó×7¤$OèZYøÇøÌÎ;£®qLKb%fÙL ³^zDô+M ß7´ý¬ë{¼DiùëÃÐC,ÈÍM¼]Õ]u½½uÆ.Kì®×pì¤@7+rlq+Xoµ±$öz¼ÞBÄØGãyÑu,ë CIëÆ×"nί+@èOø¿\ ° n²ëúGÜù&»Vµ-Ù¶j[ +Øñ +ôÚûBM"0ÏWÝ¿A·¡,R<§¶®± !-ðûr.¿¥7ãåD®ËÜôß ¨%²ù¾^¡êÑ{¨e¬ÖýKtô`YwûoèÞã¡ÜVðÊmåÞ N¢»£þ<%}7¤Õ ¬ZZömÕ2`½L71,§»@71 +Ð{-fL%!dÂÄpfL'ª%£q/, üJé ê¦<W WJ±;ã´¯ï1S,8·)&¼!"WWJÇÁ7¨ÆÜhÒ1 ×ÜÈ+¥Ë¤AÅ<·UKL( ;ÞÒ tw|¶UÏ3à0[°? ©^A/h±wÁ¯h&@tÀÐ¥J±t&É~@4Ìd§±*ÍÔD[è5&[rlnÂå[l3~:Mvü}èû롹JßG\p¦ÙîàûQ?ÿUÛ?ý~}Ò_Bb�ÑL.h¼*KÍb^bh߸JÌÆÀÕRWy̪ñ®î*±4ÙQõÞbÞùD§ÐPp P> +N@æÓx¯-O°iÐ;Ú°\é�¥X»¶¨JQêi:]-EõýËRìJ±~ÿÔ¼Jpýrµk¤^1)¡Äú/@@"©Ö!6èÀ!Çw4~2_¯ °W,.Hì_1vqë1_"ÔÂ-ªTìÃyNöï´vÿÑü\7{f\fé4ây9¿´þüèú#Òb'Ö¿¢ï÷ëçÛI_ÃÏw·ãçvXð9FÜÆ´|Æ,8 E·åZdÐ�ñG_Ç{2üʯe�¿IãY¬á +|VW8Q°¸}?êï÷4Hqo,ìY_`¯FqàUZ�ïU`|-_È[jÚó§Ézt ¤Õl<¢�ä(g¯"ú¾çô¯0vpý:¤(�ø+]["WüùM[�¥À-IHÙ] ^ñûC÷ãõgÔðûòÒÙ9è!<»ÔIÌÃÅ«9h@ÕP�¤Ï5ØkÃS#Ò¯*3nôr;NÁLæª@Ö.;înÏé;'¸Ù³ 6óÍNÄK-ëaÔ³OÞñ v¸>ëânK¸Ù³ &¤£{¤¥ÃÇt¹â&Ç +Ã:#AªÕÞ¡Æ(é¢ì% ÒÞÁ;(9I:05ç'#Y¦.Ûç=¶ñ^2592©!Âò0D8ê1Á! +j"`ËX£hé{·m`ý"lÐõlÔÒÊ®]¬Ñ8ÓÈ8gÁ³zÊ6w«¬¾ Íf%G9D/eÀ,m¶ §³:¯ÞQâèANË»¸{æ3¼ÞUyg wo 'ÂåÖɨ Só8ÊÄ�}ZÞ©À`Ð8w§ !iµ"gJkÉglälgáÆUi|»¶ncB¨ø]>D2=ñ¸Ç{Iªi[ãÊøWZì4DyQ] ×ݸ¿ìÔzýú÷}¿Oê=Úÿ´ï3WcèE®FÞ@È¡±ÅÂx`"9¡i"9) #J(' ¥,^9 °j6î&1 Og}sýºÿõðûrJ³!×oéDsÇË£pÃvÎÞâªÉéâ l,QP¯; *3aÈÀ¸ÝptQÎ +KbÕ¾Ï!}ÐþÂCe²ú¢æ Ó¢aZ@¢YÚÕãõ´%ç´ios^Õ~íE&0óøþâ +X W6Dìè¬`Ï>ÊWÐVH± @¯ðZÃx�µÌiNÀíÐofß6;nUhySýkl/RêE3º&ÖUH ¶94PaãÇ>^C±nG+ÚÿD·£C<?Ò-&O©-Fc¦öTô¥Ò¬ùÛ`AÛ»dFyu>s©r +8Üx̶¸vÜkV�nÑzý:ÌîXÐD¾Áõãû¤Û¿Ål¸¿ p°M´ +ä`JÀÃQzF¹Wa¶?̽|r¯ÚHUîU,{'/Âi¨añ}æ ÏBß×ó/1á�â9dÅ+ïb]/E½umw±®³]Y�÷éù3NîbåæB§.y+×®3C6bP·W)Ïê® ÂôÊ ?Åx.¡=E]]tLøÒ׺aä¾)4YÖL G6$&ÀѼÅìª �8Ú+ @4·Ì5ý!B9âÞ²TÊæ'ÞDx=-8<ªçç^Ü-8äó¾Ç½øu.j¼ ǯEÌFt@/Í`À|M#e¹QG =Z%¤mÓb^îþÒn5 »x(ÐÁkB_îæ/Ðlêg(Áô+¡9¦Ï!©<]jêùð©ÃÏ#'ô®sÇàrïdbÐÛ¢Y~DÊï±$µ(ôõ²ìH£´"vÄ»Ì{M¤1l³¸Sß 6xh8P¶1ò¨YKa<Ê+M\`¦ÌÀNyFP 4³ªàÉ´ÈiÙàzrã]ØN«v w¡]iÓFPƼA¼ ÝÂLJ+èSr%fð©ªë<9gyMÃC¤+(þÛ!)sðW wwÈ\p½ÅBSrâñ/øÒ(è6/d®Ä¼òæLH©W0sW¬¾f¼~¥ö®òÈøÝ¡³fãÑöªu¢èõ .(YÐùëR¤R«åeãèð[Ëùóû_2¹YáÏö¯·ºòèþ'òiüîõtþ +Ùª±ßõ¤ex@!V´TúHbVDÀzëù>ºQBÔ]¶¨1³&x~r³Èà ¬'d!ªaÃnøºC/Ø @évh>`½�ä.¤?éúZ°S3 ÊFa8øHé iÑGñþHÁÑ%^ÍS`°êñJíô7�pÿz±èWP Rο¬Eæ®@XÇõ»ükÙPwù7ÑÿÒû/FñèþYFîe×0³zF®+åJõzFn¶hûñz. ÆÓõâxý¤Pè`¼PÛuïËp~ñhüt´ñù¿Æ!¤eÚ¹Ô Ò3ï!ýÈLÞ£ûÓK0¿¹=! %¹z @rùk0¬7¢-!çÆRñiÍ@Èh Öw Ðú¦ªÆëeZ_m4¹Û Vë×Mhýºcx¦õø üÅ¡ïüêàúu&,2õø 7Gß�@ñÚ÷yþ@(Yº Q£Ý¹U#:z ή`¢>m-YÍ)êYiyJñ÷¸;nG0ÑvË!µT=7ãeo@Æ¡é岿Y} :?=§2@9Ô ODãQJ$C4MhÿrÍ·¶, _àåÏ<<y>¤òóÉ.ú3£=û +X®ð!ü]M ûOäò¬Ë5Oý[Þ8FÔ¨?J ÅiãBqâ;VIñC$&ìùÅ NÚó%ÙaÙ¥õ÷¼üaõúQO âÌ4Yà.Ö»Xº[�yT43Í1Vs(¤k¬hc ]f[@9S_ +¢ÔQÐ&g 7I[�r^¸kk-¬ðºÅÕ4Y±Ñ^Uè0mÀIs'¥WÚ�µê +äC=^×F³Uú<j¼Ð«üWX�¬O`6®, Þ*±q¥ñvs�ItÕàf¡zĨrŨªÆ£ÃÏhH®`=~¦¢Æó&û[M*U¥¡¥h<$òJ×Ü&CºBnw¨GáÐAèÃB?<2½f£ Âfà=ÅźЯ·PEYªL8éÍ¿X×QrÁ6¯ +lF=^G=ÈþÁó¾×QÜ¡}4^÷-Y¢ºÿ Ø ïÍ¿fÂeRå)yðÍ2©¨r!9�qÐ &pÐq/ʤl á¦.îÒ=RG³ kFÓE¬èy$xפCddR´¼¼¦¢ÞÃÈæV &æ,\Z>Z®³»z¼EÞ$Üù×*!G�Ó$MøZ�âË| Zã¢v¼³-zJµoõ]õ½�¿¯wï`uÌ}u¤ëêú1RE`:VB8 à÷eï!5ûX°úû*÷¼«_ðó&Õ×EwUÁ\¥ÜóÇû3__yÈ)Bõ�êhÂü¡Óò¯îòO)îI+|¸iJ�ÙXþòZ2Í �b> {H�[Ñý÷ôOé/ø�êP ÒSæ³[Qa j[ÑÅ{¶ Ù¢õx=WcCßï÷ÏmIÆ÷0´E«ñ=ðÞ¹pÿòê +ìèû<a.HçG5Ø~_O8sèüõ\!oõ´õøià¯ÑþYñ2#«ñ!Fo°ÞÜãÁº%w[BºlXÑ÷u Ò7lpÜDç§3ðeÃ;4Ï!Í÷å¥ßÑúañ;¢ÀЧ©Ð J]ÿlê®%×]=½Aõ=\Å6(eùõ3Øî@[Ыh#}qX{ÕÞ¼J"XÃÊVÏ@ª =É�®q¢;÷ÏíeÁ*|*[ÐQáf3×ÅÑÌ5¦w·°[ N,Pz°nÔ-%RB:ÖûtNÊdM¶+ÑteS%CA!¼F8âÑRâÙH3IP%M i'åÎ_ç¾O°Ñ5v¦3+ÒOH£+ÀI(Urûi˹/0¸Afê" ÕÏ _M0U&ÐßFWàQÛ t;Ù2ë tx+hYM0Ub®ºfBwu`g� +Qu i¤@ïÙbÆæhÒÎ¥9Dù]È8ÕÒ0¬úk"O°ª¿kDa:JW¾Ü¾æY®Î ÐÙÌcRfF/^ï¸by @¥\¨Ò"4Gàî¤óyKÎÀïwÒù¼Iõjz:ß!OÄ®-±?¶{ÀÊy<~ß´ è^¼B½òTÏ8¸AÞ¾iyëåÞ½¼}ë¬ÔèhôË«ñzBaÆæTÆó>Åá½(È ô9,[1w{tÞ¤×ò+1ªeé) äÈl/r(ÞËÌöò{¸ê!ìï®à@¯X%ÄCÆ£¬Lÿ8·²2ý~ó¬l»�Áë¬ÌvÓY¹3á;Yõæ³2ëñóYÍøé¬Ìzü|Vf=~>+sôýQVf3~:+³¾ÿY Ldeº3IøfVf¸Ï f[ô<0´ XÅ;¸E·MMz©ö'²27é©^XåzüXu tç¥OHÌ Y¬v²Ó*w¨Eg » +JbU{²ó2c1¢C¾ X´ÈB.G+½^Ù@Ö?ôÎv°;èþp +^ï @é Ë¡Wa¢Wr0oGÃò»hq¹Û×_ÇåÚ-LÇågÀÓ4¡DË!®j¸Ëb$îú®n¾ÒPÃ]ßÕpÓnu74Üjü ·?¯á¦×æPÃÆßÐpßj¸õøy 7½«á¦×L8Öp×w5Ü»\xi¸é] ÷þx74Üõ] wpC 7ÕÏÁ¼[OpCÃMõ6¯á6[×pÓÍ'ñÒpÓàIj¸i¨W4Üfy 7ÝT. wtC 7 Ô¡;`¨áÖÜÐpGt0ÔpÓ@»j¸w¯ñÒpÇ8Ðp-Ìk¸£3j¸wÙùÒpG×8ÔpBy¨áw5Ü8x[ïÆbfÞw3Ôpûn|árÂJÕ&+Kî^3(H¤hi@ZGÙøLÃE74LÞýSCÌ*îãH³`LËPè`ºIß§C¨³Xôzüô¨ßë³vÚGõ¤ dfu|´jz|_MA³ +BJó}½¤�°Î¥ºG ¿ØçÕý½ê`ϲißç¶Å~æµd|ÏBÛÅWÚG¥C}3 tK^F;çv¶Á+jbÊ)¥,!ܴвZªÑÑÒ7èMHGz¹ß�Â~VyéÍrekNzÊùøíæxKHª2Ãô9']á(³¢¡ÂÞÝÔ/à[%B¿�üè@1ôÌf¼ÞiÚ/DÄzusi¾/£sDS©Ïæ×n0ãÇ7âôÑù3üá°ÃËáþegpÿ28FHÓµé\}ðÖú#â}6®èüzeÑÿY»p� &jÓýèèµqó27ªmÏþÎ×µíÄ+µí¹;äïëEï¨ÇË÷Å;êñz³ëñ}B1§Áùktç'çø²~¿Ð °c+ìu7/ÖÇ!õOÀ[ü¾yÿÞ¡ïëÍ.cr0Ö¶ûµh¡K¥�èµí%¿vDÀ4G=@rÜËÌ}h£¯à§ym>$àÚ|Ä:þ¼ÕÖ7ãõF©ÄÛªñ5¹]µíO[¬b �^Í¢¢UO4N³{@0ÐÃz@àÈBÜÁ´»ñÝYù\X/$ÙãÀ¹Í=¹R `¢h)£âdn×¶À£$è-îuV +àd3^x9è¥Äp<FáÞ\Á +I¯ ²³^ Ì¿uû6x( ¥:¾@® ;z'*ACi+sñyq»(©+.Å·ðxnÂ×Àk#ÝjhÛÖO«ì¨Í¶ò´2Ý*z$ nE¢´�Öë:äÈúYêÑè÷-dx�¸4Z:[}�»n¯P»ÕKûTNåf×u;°N8XH÷îvZ¯@/»ì[n¿]öí`< öY°¡<î³Ng ,¹ßÝ,ó3Z¸&¬�XñYnwúÅ~¹W|kêv½*Ö%¨ð¤>éI}[dv_ ê(Ö"JTÈÔ¢àWë×!|3ÜêñzÈ1$ð}½Ç7/£[F.« ßÐþu/ÅêÄóÃ^:¿/Ý^79#!O{*úð<o}ï�¶7 ¨TÒ×ãõ¤ËÈ®ÇhW'ßË3T1àL|�R¸³P|ç?Ñ&1ñ½�ܺý[ü +î/(l¶©GÐQÜ=ä` ÅÝ�ûñº*Bzë½ãz]·¼³zý2îoB>~9ÚoËÐX{é³Úè +q¨,£ÒJQìÈ@:ýÄ'À P&�k8"�j5=ÀLé¶-]¤V"õ¢h¡;ªüiΠê(fO¯¥Ïææáo¥ÏfàÖ%XX{ >^§Ï¶[NWÒgYúêùÕG £á[À´?&^°xëñº ¶gó}¹&ÄÒgGëÕãnf¢ý£x³%2~»[ v:µ LØòÎõ^úþÆX{`½Û¹Þ¿'|Øé\ïµ ¸Aº*`Xm ë͵5I÷HMd¢´j%NÑL0Q V*ê f +ԶɲµÝÃ3ÐÔvD3j\ÁDÚ±@·Hn*Þµá!òú²�¯Q/PóèM*P;D)PèU)P¸Æµøî5ÆM¥DR ¶"±>S ¶&íxð÷xCBiª@í2 I[Ê®wñm4Á?üðÝ÷?sîã_=8*ÿȺEùåß=6ýñu}XW?üòãoþå¿ýÍ/~üý_~üûýÇ}üñÏøåÿþâÇ_~üçÿ}üë¿ÿôßþöãçóÿíÇÏ>?þý7?þ×þéãï>~ýÓOüûï¿ÿë_ÿúùÓ¯óÏßÿøÓ÷?w[úÕÿã÷ÿóýÿÇ}þú§ßýöo?~øïïþéÇêþâm; +endstream +endobj +352 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 760 0 R +/Name /Im325 +/Width 20 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÿñÿ~$l0PT0ü�£<`xx¡¾AAD¶n¶(�¿g¾ +endstream +endobj +353 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 761 0 R +/Name /Im326 +/Width 17 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûgßðϾÁ¿Á UÈ!!;0ªc°ÿß oß (T3Q�ºZ§ +endstream +endobj +354 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 762 0 R +/Name /Im327 +/Width 31 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-Å¡ 0Ðß\¤A(0Eëeº�à °CQ®IÅ˳iý¬CLЩTÃÃæRwí:Ô# V1Ql,úÂÂÒë%×-Ûðb,% +endstream +endobj +355 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 763 0 R +/Name /Im328 +/Width 21 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÀÀÿñ:b>�CçÐñìíì}ì3Øw0°ÿ�!þ?ü6üvür`$Ï Çßðþ #�IZ +endstream +endobj +356 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 764 0 R +/Name /Im329 +/Width 29 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]Ë¡0Ðß«¨Åp]¡Õ=.{°LGÉUâO>² ²Pbhzh|IÄA*¢h8Ôí®¹ ëq/6k1ÍÐX×ãÌ7"!, +endstream +endobj +357 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 765 0 R +/Name /Im330 +/Width 38 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãÿÃÀÿD0üaoæ ÷ Dzã<| qF0ö30ö f~f~f9 Á#Ø{àÄ96ö6@b`~�'Ø0È1¨aøÿ¸ýÿÿÛÿ7¨ÉÔÍV�ÆÈ' +endstream +endobj +358 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 766 0 R +/Name /Im331 +/Width 29 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿAþÇ æg`oàg`f�Òü l@ó�±00�á(>�ÁAø1?âo øâYÙêÙò�¸Ö¿ +endstream +endobj +359 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 767 0 R +/Name /Im332 +/Width 23 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãÿÿÿÈñ:b>Øð°7@{{{C?ãÿÿ?�¸LÝl)�4}§ +endstream +endobj +360 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 768 0 R +/Name /Im333 +/Width 12 +/Height 3 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿPÿáÿæú.>�)÷ä +endstream +endobj +361 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 769 0 R +/Name /Im334 +/Width 21 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`þÁÀþá:b|�E?0ÿÀßþ@ù óæ0ô½ +À¨¿ÁƾAþÿöóDeëæ�ô#g +endstream +endobj +362 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 770 0 R +/Name /Im335 +/Width 26 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãÿÿÿ�?3|`bæpÌø�¡8ñÁÆÊÁø @`öÆöÌÄÿÿ�ñ)ºÙÒ�ú)é +endstream +endobj +363 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 771 0 R +/Name /Im336 +/Width 18 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨a`üÏÀÜÞÀÆÞÀÏ~¿ØA\~9ÆÌ@øÁH¡@á}cx`Çð ¡àýþ!ÙÚÙ¢�³z +endstream +endobj +364 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 772 0 R +/Name /Im337 +/Width 14 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcàa°`üÁÿC¦? ãd>ìþÿøÿO¦f¶(�ÀL +endstream +endobj +365 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 773 0 R +/Name /Im338 +/Width 5 +/Height 13 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x3¨øñ£BBÂÀ áÁVÞÚ�KÂ@ +endstream +endobj +366 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 774 0 R +/Name /Im339 +/Width 30 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÏ fo`>À~H230?`c`üÀÆÀðáC C\<ó`öâpý0i-�MY2 +endstream +endobj +367 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 775 0 R +/Name /Im340 +/Width 5 +/Height 5 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x3¨øQQÀÊZÛÂ� +endstream +endobj +368 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 776 0 R +/Name /Im341 +/Width 27 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÊA 0Ðßô°À´ %d>0Ó9éL�¡ü²px·#<&ñýÒªaÐF6Z«©ÊGñJ´ cCÄMÖrå/i/Þ +endstream +endobj +369 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 420 0 R >> /XObject << /Im292 317 0 R /Im146 153 0 R /Im154 163 0 R /Im293 318 0 R /Im166 175 0 R /Im47 54 0 R /Im51 58 0 R /Im43 50 0 R /Im40 47 0 R /Im44 51 0 R /Im45 52 0 R /Im60 67 0 R /Im68 75 0 R /Im49 56 0 R /Im68 75 0 R /Im151 160 0 R /Im146 153 0 R /Im153 162 0 R /Im155 164 0 R /Im167 176 0 R /Im157 166 0 R /Im68 75 0 R /Im295 320 0 R /Im342 371 0 R /Im305 330 0 R /Im343 372 0 R /Im344 373 0 R /Im301 326 0 R /Im311 336 0 R /Im310 335 0 R /Im298 323 0 R /Im304 329 0 R /Im306 331 0 R /Im330 357 0 R /Im305 330 0 R /Im297 322 0 R /Im310 335 0 R /Im313 338 0 R /Im334 361 0 R /Im343 372 0 R /Im298 323 0 R /Im297 322 0 R /Im310 335 0 R /Im295 320 0 R /Im321 346 0 R /Im321 346 0 R /Im302 327 0 R /Im298 323 0 R /Im300 325 0 R /Im301 326 0 R /Im297 322 0 R /Im298 323 0 R /Im313 338 0 R /Im304 329 0 R /Im322 347 0 R /Im313 338 0 R /Im296 321 0 R /Im345 374 0 R /Im301 326 0 R /Im315 340 0 R /Im305 330 0 R /Im312 337 0 R /Im302 327 0 R /Im301 326 0 R /Im323 348 0 R /Im298 323 0 R /Im304 329 0 R /Im306 331 0 R /Im68 75 0 R /Im54 61 0 R /Im42 49 0 R /Im67 74 0 R /Im55 62 0 R /Im39 46 0 R /Im40 47 0 R /Im67 74 0 R /Im58 65 0 R /Im57 64 0 R /Im63 70 0 R /Im42 49 0 R /Im66 73 0 R /Im47 54 0 R /Im43 50 0 R /Im45 52 0 R /Im346 375 0 R /Im169 178 0 R /Im169 178 0 R /Im71 78 0 R /Im64 71 0 R /Im47 54 0 R /Im50 57 0 R /Im66 73 0 R /Im52 59 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im62 69 0 R /Im67 74 0 R /Im40 47 0 R /Im42 49 0 R /Im39 46 0 R /Im67 74 0 R /Im42 49 0 R /Im65 72 0 R /Im42 49 0 R /Im66 73 0 R /Im58 65 0 R /Im43 50 0 R /Im45 52 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im71 78 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im38 45 0 R /Im39 46 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im46 53 0 R /Im47 54 0 R /Im48 55 0 R /Im95 102 0 R /Im40 47 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im71 78 0 R /Im170 179 0 R /Im58 65 0 R /Im59 66 0 R /Im40 47 0 R /Im44 51 0 R /Im47 54 0 R /Im39 46 0 R /Im71 78 0 R /Im95 102 0 R /Im40 47 0 R /Im44 51 0 R /Im67 74 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im68 75 0 R /Im63 70 0 R /Im42 49 0 R /Im66 73 0 R /Im43 50 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im42 49 0 R /Im59 66 0 R /Im151 160 0 R /Im146 153 0 R /Im153 162 0 R /Im153 162 0 R /Im167 176 0 R /Im157 166 0 R /Im40 47 0 R /Im39 46 0 R /Im303 328 0 R /Im309 334 0 R /Im309 334 0 R /Im295 320 0 R /Im325 352 0 R /Im313 338 0 R /Im326 353 0 R /Im296 321 0 R /Im304 329 0 R /Im301 326 0 R /Im302 327 0 R /Im71 78 0 R /Im307 332 0 R /Im47 54 0 R /Im57 64 0 R /Im68 75 0 R /Im146 153 0 R /Im162 171 0 R /Im71 78 0 R /Im56 63 0 R /Im47 54 0 R /Im68 75 0 R /Im173 182 0 R /Im71 78 0 R /Im66 73 0 R /Im66 73 0 R /Im68 75 0 R /Im154 163 0 R /Im153 162 0 R /Im70 77 0 R /Im155 164 0 R /Im162 171 0 R /Im68 75 0 R /Im268 287 0 R /Im181 190 0 R /Im181 190 0 R /Im88 95 0 R /Im93 100 0 R /Im178 187 0 R /Im179 188 0 R /Im233 246 0 R /Im347 376 0 R /Im81 88 0 R /Im234 247 0 R /Im88 95 0 R /Im81 88 0 R /Im88 95 0 R /Im94 101 0 R /Im91 98 0 R /Im84 91 0 R /Im83 90 0 R /Im94 101 0 R /Im179 188 0 R /Im91 98 0 R /Im179 188 0 R /Im83 90 0 R /Im93 100 0 R /Im94 101 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im50 57 0 R /Im40 47 0 R /Im59 66 0 R /Im59 66 0 R /Im57 64 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im146 153 0 R /Im169 178 0 R /Im235 248 0 R /Im236 249 0 R /Im237 250 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im48 55 0 R /Im43 50 0 R /Im47 54 0 R /Im50 57 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im146 153 0 R /Im175 184 0 R /Im47 54 0 R /Im39 46 0 R /Im69 76 0 R /Im58 65 0 R /Im43 50 0 R /Im59 66 0 R /Im44 51 0 R /Im47 54 0 R /Im48 55 0 R /Im171 180 0 R /Im348 377 0 R /Im204 215 0 R /Im197 208 0 R /Im209 220 0 R /Im204 215 0 R /Im199 210 0 R /Im195 206 0 R /Im196 207 0 R /Im349 378 0 R /Im350 379 0 R /Im207 218 0 R /Im195 206 0 R /Im199 210 0 R /Im210 221 0 R /Im351 380 0 R /Im352 381 0 R /Im194 205 0 R /Im197 208 0 R /Im210 221 0 R /Im184 193 0 R /Im199 210 0 R /Im229 242 0 R /Im204 215 0 R /Im194 205 0 R /Im353 382 0 R /Im199 210 0 R /Im195 206 0 R /Im225 238 0 R /Im228 241 0 R /Im229 242 0 R /Im354 383 0 R /Im355 384 0 R /Im356 385 0 R /Im357 386 0 R /Im357 386 0 R /Im358 387 0 R /Im146 153 0 R /Im68 75 0 R /Im42 49 0 R /Im174 183 0 R /Im42 49 0 R /Im154 163 0 R /Im173 182 0 R /Im68 75 0 R /Im59 66 0 R /Im174 183 0 R /Im59 66 0 R /Im175 184 0 R /Im162 171 0 R /Im68 75 0 R /Im359 388 0 R /Im67 74 0 R /Im162 171 0 R /Im359 388 0 R /Im48 55 0 R /Im154 163 0 R /Im174 183 0 R /Im68 75 0 R /Im42 49 0 R /Im175 184 0 R /Im359 388 0 R /Im48 55 0 R /Im59 66 0 R /Im155 164 0 R /Im175 184 0 R /Im68 75 0 R /Im48 55 0 R /Im174 183 0 R /Im67 74 0 R /Im175 184 0 R /Im154 163 0 R /Im68 75 0 R /Im359 388 0 R /Im48 55 0 R /Im162 171 0 R /Im359 388 0 R /Im67 74 0 R /Im154 163 0 R /Im155 164 0 R /Im68 75 0 R /Im360 389 0 R /Im42 49 0 R /Im162 171 0 R /Im67 74 0 R /Im73 80 0 R /Im59 66 0 R /Im174 183 0 R /Im169 178 0 R /Im68 75 0 R /Im359 388 0 R /Im73 80 0 R /Im59 66 0 R /Im174 183 0 R /Im360 389 0 R /Im67 74 0 R /Im175 184 0 R /Im153 162 0 R /Im68 75 0 R /Im361 390 0 R /Im59 66 0 R /Im173 182 0 R /Im167 176 0 R /Im308 333 0 R /Im167 176 0 R /Im146 153 0 R /Im167 176 0 R /Im68 75 0 R /Im167 176 0 R /Im308 333 0 R /Im167 176 0 R /Im308 333 0 R /Im167 176 0 R /Im58 65 0 R /Im154 163 0 R /Im146 153 0 R /Im146 153 0 R /Im68 75 0 R /Im55 62 0 R /Im174 183 0 R /Im359 388 0 R /Im73 80 0 R /Im59 66 0 R /Im174 183 0 R /Im146 153 0 R /Im173 182 0 R /Im68 75 0 R /Im360 389 0 R /Im73 80 0 R /Im59 66 0 R /Im174 183 0 R /Im51 58 0 R /Im175 184 0 R /Im146 153 0 R /Im162 171 0 R /Im68 75 0 R /Im362 391 0 R /Im55 62 0 R /Im162 171 0 R /Im51 58 0 R /Im174 183 0 R /Im146 153 0 R /Im174 183 0 R /Im68 75 0 R /Im359 388 0 R /Im58 65 0 R /Im174 183 0 R /Im360 389 0 R /Im73 80 0 R /Im59 66 0 R /Im174 183 0 R /Im146 153 0 R /Im175 184 0 R /Im68 75 0 R /Im361 390 0 R /Im73 80 0 R /Im59 66 0 R /Im174 183 0 R /Im48 55 0 R /Im154 163 0 R /Im146 153 0 R /Im154 163 0 R /Im68 75 0 R /Im361 390 0 R /Im73 80 0 R /Im51 58 0 R /Im174 183 0 R /Im48 55 0 R /Im73 80 0 R /Im42 49 0 R /Im175 184 0 R /Im146 153 0 R /Im155 164 0 R /Im68 75 0 R /Im361 390 0 R /Im59 66 0 R /Im154 163 0 R /Im361 390 0 R /Im48 55 0 R /Im154 163 0 R /Im146 153 0 R /Im169 178 0 R /Im68 75 0 R /Im48 55 0 R /Im175 184 0 R /Im361 390 0 R /Im55 62 0 R /Im154 163 0 R /Im363 392 0 R /Im146 153 0 R /Im153 162 0 R /Im68 75 0 R /Im364 393 0 R /Im51 58 0 R /Im146 153 0 R /Im362 391 0 R /Im73 80 0 R /Im48 55 0 R /Im175 184 0 R /Im173 182 0 R /Im167 176 0 R /Im68 75 0 R /Im362 391 0 R /Im48 55 0 R /Im162 171 0 R /Im362 391 0 R /Im73 80 0 R /Im48 55 0 R /Im162 171 0 R /Im173 182 0 R /Im146 153 0 R /Im68 75 0 R /Im53 60 0 R /Im73 80 0 R /Im48 55 0 R /Im162 171 0 R /Im361 390 0 R /Im48 55 0 R /Im154 163 0 R /Im173 182 0 R /Im173 182 0 R /Im68 75 0 R /Im360 389 0 R /Im55 62 0 R /Im162 171 0 R /Im364 393 0 R /Im48 55 0 R /Im155 164 0 R /Im173 182 0 R /Im162 171 0 R /Im68 75 0 R /Im67 74 0 R /Im174 183 0 R /Im59 66 0 R /Im73 80 0 R /Im67 74 0 R /Im174 183 0 R /Im173 182 0 R /Im174 183 0 R /Im68 75 0 R /Im359 388 0 R /Im67 74 0 R /Im162 171 0 R /Im361 390 0 R /Im42 49 0 R /Im155 164 0 R /Im173 182 0 R /Im175 184 0 R /Im68 75 0 R /Im361 390 0 R /Im67 74 0 R /Im154 163 0 R /Im362 391 0 R /Im51 58 0 R /Im169 178 0 R /Im173 182 0 R /Im154 163 0 R /Im68 75 0 R /Im359 388 0 R /Im42 49 0 R /Im174 183 0 R /Im359 388 0 R /Im51 58 0 R /Im154 163 0 R /Im173 182 0 R /Im155 164 0 R /Im68 75 0 R /Im359 388 0 R /Im53 60 0 R /Im175 184 0 R /Im363 392 0 R /Im364 393 0 R /Im53 60 0 R /Im169 178 0 R /Im173 182 0 R /Im169 178 0 R /Im68 75 0 R /Im361 390 0 R /Im42 49 0 R /Im174 183 0 R /Im53 60 0 R /Im154 163 0 R /Im173 182 0 R /Im153 162 0 R /Im68 75 0 R /Im361 390 0 R /Im73 80 0 R /Im42 49 0 R /Im175 184 0 R /Im362 391 0 R /Im51 58 0 R /Im155 164 0 R /Im162 171 0 R /Im167 176 0 R /Im68 75 0 R /Im362 391 0 R /Im59 66 0 R /Im154 163 0 R /Im67 74 0 R /Im162 171 0 R /Im162 171 0 R /Im146 153 0 R /Im68 75 0 R /Im360 389 0 R /Im73 80 0 R /Im42 49 0 R /Im154 163 0 R /Im363 392 0 R /Im360 389 0 R /Im73 80 0 R /Im42 49 0 R /Im154 163 0 R /Im162 171 0 R /Im173 182 0 R /Im68 75 0 R /Im362 391 0 R /Im73 80 0 R /Im42 49 0 R /Im154 163 0 R /Im146 153 0 R /Im308 333 0 R /Im167 176 0 R /Im97 104 0 R /Im97 104 0 R /Im365 394 0 R /Im366 395 0 R /Im367 396 0 R /Im368 397 0 R /Im369 398 0 R /Im370 399 0 R /Im371 400 0 R /Im366 395 0 R /Im366 395 0 R /Im369 398 0 R /Im366 395 0 R /Im372 401 0 R /Im366 395 0 R /Im373 402 0 R /Im374 403 0 R /Im373 402 0 R /Im373 402 0 R /Im366 395 0 R /Im369 398 0 R /Im366 395 0 R /Im373 402 0 R /Im366 395 0 R /Im369 398 0 R /Im366 395 0 R /Im366 395 0 R /Im369 398 0 R /Im366 395 0 R /Im373 402 0 R /Im375 404 0 R /Im369 398 0 R /Im366 395 0 R /Im369 398 0 R /Im376 405 0 R /Im374 403 0 R /Im369 398 0 R /Im377 406 0 R /Im369 398 0 R /Im375 404 0 R /Im369 398 0 R /Im375 404 0 R /Im366 395 0 R /Im369 398 0 R /Im366 395 0 R /Im369 398 0 R /Im366 395 0 R /Im369 398 0 R /Im366 395 0 R /Im378 407 0 R /Im379 408 0 R /Im375 404 0 R /Im379 408 0 R /Im380 409 0 R /Im369 398 0 R /Im366 395 0 R /Im379 408 0 R /Im366 395 0 R /Im366 395 0 R /Im369 398 0 R /Im381 410 0 R /Im378 407 0 R /Im366 395 0 R /Im382 411 0 R /Im366 395 0 R /Im369 398 0 R /Im97 104 0 R /Im97 104 0 R /Im176 185 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im58 65 0 R /Im48 55 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im146 153 0 R /Im174 183 0 R /Im68 75 0 R /Im68 75 0 R /Im61 68 0 R /Im73 80 0 R /Im59 66 0 R /Im174 183 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im42 49 0 R /Im39 46 0 R /Im59 66 0 R /Im53 60 0 R /Im58 65 0 R /Im50 57 0 R /Im42 49 0 R /Im42 49 0 R /Im73 80 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im40 47 0 R /Im50 57 0 R /Im42 49 0 R /Im39 46 0 R /Im45 52 0 R /Im44 51 0 R /Im52 59 0 R /Im44 51 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im173 182 0 R /Im146 153 0 R /Im235 248 0 R /Im236 249 0 R /Im237 250 0 R /Im66 73 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im44 51 0 R /Im48 55 0 R /Im43 50 0 R /Im47 54 0 R /Im50 57 0 R /Im50 57 0 R /Im47 54 0 R /Im41 48 0 R /Im42 49 0 R /Im162 171 0 R /Im174 183 0 R /Im47 54 0 R /Im39 46 0 R /Im69 76 0 R /Im58 65 0 R /Im43 50 0 R /Im59 66 0 R /Im44 51 0 R /Im47 54 0 R /Im48 55 0 R /Im171 180 0 R /Im383 412 0 R /Im204 215 0 R /Im227 240 0 R /Im271 290 0 R /Im228 241 0 R /Im195 206 0 R /Im196 207 0 R /Im271 290 0 R /Im198 209 0 R /Im207 218 0 R /Im349 378 0 R /Im383 412 0 R /Im195 206 0 R /Im194 205 0 R /Im204 215 0 R /Im228 241 0 R /Im195 206 0 R /Im196 207 0 R /Im197 208 0 R /Im183 192 0 R /Im185 194 0 R /Im351 380 0 R /Im384 413 0 R /Im184 193 0 R /Im228 241 0 R /Im271 290 0 R /Im228 241 0 R /Im205 216 0 R /Im199 210 0 R /Im204 215 0 R /Im229 242 0 R /Im198 209 0 R /Im207 218 0 R /Im204 215 0 R /Im194 205 0 R /Im209 220 0 R /Im271 290 0 R /Im195 206 0 R /Im228 241 0 R /Im197 208 0 R /Im207 218 0 R /Im271 290 0 R /Im209 220 0 R /Im356 385 0 R /Im357 386 0 R /Im385 414 0 R /Im358 387 0 R /Im146 153 0 R /Im68 75 0 R /Im67 74 0 R /Im174 183 0 R /Im359 388 0 R /Im48 55 0 R /Im154 163 0 R /Im173 182 0 R /Im68 75 0 R /Im359 388 0 R /Im67 74 0 R /Im162 171 0 R /Im67 74 0 R /Im154 163 0 R /Im162 171 0 R /Im68 75 0 R /Im59 66 0 R /Im174 183 0 R /Im59 66 0 R /Im175 184 0 R /Im174 183 0 R /Im68 75 0 R /Im359 388 0 R /Im48 55 0 R /Im162 171 0 R /Im359 388 0 R /Im42 49 0 R /Im174 183 0 R /Im175 184 0 R /Im68 75 0 R /Im42 49 0 R /Im162 171 0 R /Im42 49 0 R /Im154 163 0 R /Im154 163 0 R /Im68 75 0 R /Im360 389 0 R /Im59 66 0 R /Im162 171 0 R /Im48 55 0 R /Im175 184 0 R /Im155 164 0 R /Im68 75 0 R /Im361 390 0 R /Im67 74 0 R /Im173 182 0 R /Im359 388 0 R /Im59 66 0 R /Im155 164 0 R /Im169 178 0 R /Im68 75 0 R /Im51 58 0 R /Im162 171 0 R /Im360 389 0 R /Im51 58 0 R /Im174 183 0 R /Im153 162 0 R /Im68 75 0 R /Im360 389 0 R /Im51 58 0 R /Im173 182 0 R /Im361 390 0 R /Im58 65 0 R /Im175 184 0 R /Im146 153 0 R /Im167 176 0 R /Im68 75 0 R /Im362 391 0 R /Im67 74 0 R /Im146 153 0 R /Im167 176 0 R /Im308 333 0 R /Im167 176 0 R /Im146 153 0 R /Im146 153 0 R /Im68 75 0 R /Im167 176 0 R /Im308 333 0 R /Im167 176 0 R /Im360 389 0 R /Im59 66 0 R /Im154 163 0 R /Im146 153 0 R /Im173 182 0 R /Im68 75 0 R /Im359 388 0 R /Im42 49 0 R /Im173 182 0 R /Im361 390 0 R /Im59 66 0 R /Im169 178 0 R /Im146 153 0 R /Im162 171 0 R /Im68 75 0 R /Im359 388 0 R /Im42 49 0 R /Im175 184 0 R /Im361 390 0 R /Im55 62 0 R /Im174 183 0 R /Im146 153 0 R /Im174 183 0 R /Im68 75 0 R /Im48 55 0 R /Im162 171 0 R /Im359 388 0 R /Im42 49 0 R /Im67 74 0 R /Im175 184 0 R /Im146 153 0 R /Im175 184 0 R /Im68 75 0 R /Im53 60 0 R /Im162 171 0 R /Im361 390 0 R /Im55 62 0 R /Im154 163 0 R /Im146 153 0 R /Im154 163 0 R /Im68 75 0 R /Im359 388 0 R /Im48 55 0 R /Im174 183 0 R /Im359 388 0 R /Im73 80 0 R /Im59 66 0 R /Im162 171 0 R /Im146 153 0 R /Im155 164 0 R /Im68 75 0 R /Im359 388 0 R /Im42 49 0 R /Im73 80 0 R /Im59 66 0 R /Im162 171 0 R /Im53 60 0 R /Im175 184 0 R /Im146 153 0 R /Im169 178 0 R /Im68 75 0 R /Im359 388 0 R /Im53 60 0 R /Im173 182 0 R /Im359 388 0 R /Im48 55 0 R /Im154 163 0 R /Im146 153 0 R /Im153 162 0 R /Im68 75 0 R /Im362 391 0 R /Im67 74 0 R /Im42 49 0 R /Im146 153 0 R /Im53 60 0 R /Im174 183 0 R /Im173 182 0 R /Im167 176 0 R /Im68 75 0 R /Im48 55 0 R /Im73 80 0 R /Im53 60 0 R /Im174 183 0 R /Im359 388 0 R /Im73 80 0 R /Im53 60 0 R /Im174 183 0 R /Im173 182 0 R /Im146 153 0 R /Im68 75 0 R /Im359 388 0 R /Im53 60 0 R /Im48 55 0 R /Im174 183 0 R /Im359 388 0 R /Im48 55 0 R /Im154 163 0 R /Im173 182 0 R /Im173 182 0 R /Im68 75 0 R /Im362 391 0 R /Im42 49 0 R /Im173 182 0 R /Im362 391 0 R /Im48 55 0 R /Im155 164 0 R /Im173 182 0 R /Im162 171 0 R /Im68 75 0 R /Im51 58 0 R /Im174 183 0 R /Im359 388 0 R /Im42 49 0 R /Im174 183 0 R /Im173 182 0 R /Im174 183 0 R /Im68 75 0 R /Im359 388 0 R /Im67 74 0 R /Im175 184 0 R /Im362 391 0 R /Im51 58 0 R /Im169 178 0 R /Im173 182 0 R /Im175 184 0 R /Im68 75 0 R /Im58 65 0 R /Im162 171 0 R /Im51 58 0 R /Im154 163 0 R /Im173 182 0 R /Im154 163 0 R /Im68 75 0 R /Im359 388 0 R /Im73 80 0 R /Im42 49 0 R /Im174 183 0 R /Im48 55 0 R /Im73 80 0 R /Im42 49 0 R /Im174 183 0 R /Im173 182 0 R /Im155 164 0 R /Im68 75 0 R /Im362 391 0 R /Im42 49 0 R /Im48 55 0 R /Im173 182 0 R /Im360 389 0 R /Im59 66 0 R /Im155 164 0 R /Im173 182 0 R /Im169 178 0 R /Im68 75 0 R /Im67 74 0 R /Im175 184 0 R /Im360 389 0 R /Im73 80 0 R /Im48 55 0 R /Im174 183 0 R /Im173 182 0 R /Im153 162 0 R /Im68 75 0 R /Im362 391 0 R /Im73 80 0 R /Im48 55 0 R /Im174 183 0 R /Im362 391 0 R /Im73 80 0 R /Im48 55 0 R /Im174 183 0 R /Im162 171 0 R /Im167 176 0 R /Im68 75 0 R /Im362 391 0 R /Im73 80 0 R /Im48 55 0 R /Im174 183 0 R /Im51 58 0 R /Im175 184 0 R /Im162 171 0 R /Im146 153 0 R /Im68 75 0 R /Im361 390 0 R /Im48 55 0 R /Im173 182 0 R /Im360 389 0 R /Im42 49 0 R /Im169 178 0 R /Im162 171 0 R /Im173 182 0 R /Im68 75 0 R /Im362 391 0 R /Im48 55 0 R /Im154 163 0 R /Im360 389 0 R /Im53 60 0 R /Im154 163 0 R /Im162 171 0 R /Im162 171 0 R /Im68 75 0 R /Im361 390 0 R /Im48 55 0 R /Im174 183 0 R /Im361 390 0 R /Im73 80 0 R /Im48 55 0 R /Im174 183 0 R /Im162 171 0 R /Im174 183 0 R /Im68 75 0 R /Im362 391 0 R /Im73 80 0 R /Im48 55 0 R /Im174 183 0 R /Im55 62 0 R /Im175 184 0 R /Im162 171 0 R /Im175 184 0 R /Im68 75 0 R /Im55 62 0 R /Im162 171 0 R /Im364 393 0 R /Im53 60 0 R /Im155 164 0 R /Im162 171 0 R /Im154 163 0 R /Im68 75 0 R /Im360 389 0 R /Im67 74 0 R /Im162 171 0 R /Im360 389 0 R /Im48 55 0 R /Im175 184 0 R /Im162 171 0 R /Im155 164 0 R /Im68 75 0 R /Im53 60 0 R /Im174 183 0 R /Im55 62 0 R /Im73 80 0 R /Im53 60 0 R /Im174 183 0 R /Im162 171 0 R /Im169 178 0 R /Im68 75 0 R /Im55 62 0 R /Im73 80 0 R /Im53 60 0 R /Im174 183 0 R /Im360 389 0 R /Im53 60 0 R /Im154 163 0 R /Im162 171 0 R /Im153 162 0 R /Im68 75 0 R /Im364 393 0 R /Im53 60 0 R /Im173 182 0 R /Im364 393 0 R /Im55 62 0 R /Im154 163 0 R /Im174 183 0 R /Im167 176 0 R /Im68 75 0 R /Im362 391 0 R /Im48 55 0 R /Im154 163 0 R /Im362 391 0 R /Im42 49 0 R /Im169 178 0 R /Im174 183 0 R /Im146 153 0 R /Im68 75 0 R /Im360 389 0 R /Im42 49 0 R /Im146 153 0 R /Im364 393 0 R /Im53 60 0 R /Im155 164 0 R /Im174 183 0 R /Im173 182 0 R /Im68 75 0 R /Im362 391 0 R /Im48 55 0 R /Im146 153 0 R /Im362 391 0 R /Im58 65 0 R /Im169 178 0 R /Im174 183 0 R /Im162 171 0 R /Im68 75 0 R /Im364 393 0 R /Im55 62 0 R /Im162 171 0 R /Im58 65 0 R /Im154 163 0 R /Im174 183 0 R /Im174 183 0 R /Im68 75 0 R /Im360 389 0 R /Im53 60 0 R /Im162 171 0 R /Im362 391 0 R /Im55 62 0 R /Im169 178 0 R /Im174 183 0 R /Im175 184 0 R /Im68 75 0 R /Im360 389 0 R /Im55 62 0 R /Im174 183 0 R /Im362 391 0 R /Im48 55 0 R /Im169 178 0 R /Im174 183 0 R /Im154 163 0 R /Im68 75 0 R /Im362 391 0 R /Im73 80 0 R /Im48 55 0 R /Im169 178 0 R /Im364 393 0 R /Im73 80 0 R /Im48 55 0 R /Im169 178 0 R /Im174 183 0 R /Im155 164 0 R /Im68 75 0 R /Im360 389 0 R /Im53 60 0 R /Im162 171 0 R /Im42 49 0 R /Im175 184 0 R /Im174 183 0 R /Im169 178 0 R /Im68 75 0 R /Im360 389 0 R /Im73 80 0 R /Im42 49 0 R /Im175 184 0 R /Im364 393 0 R /Im48 55 0 R /Im155 164 0 R /Im174 183 0 R /Im153 162 0 R /Im68 75 0 R /Im364 393 0 R /Im55 62 0 R /Im174 183 0 R /Im364 393 0 R /Im42 49 0 R /Im154 163 0 R /Im175 184 0 R /Im167 176 0 R /Im68 75 0 R /Im364 393 0 R /Im53 60 0 R /Im175 184 0 R /Im360 389 0 R /Im42 49 0 R /Im169 178 0 R /Im175 184 0 R /Im146 153 0 R /Im68 75 0 R /Im364 393 0 R /Im55 62 0 R /Im154 163 0 R /Im360 389 0 R /Im48 55 0 R /Im155 164 0 R /Im175 184 0 R /Im173 182 0 R /Im68 75 0 R /Im364 393 0 R /Im53 60 0 R /Im155 164 0 R /Im360 389 0 R /Im42 49 0 R /Im169 178 0 R /Im175 184 0 R /Im162 171 0 R /Im68 75 0 R /Im53 60 0 R /Im175 184 0 R /Im364 393 0 R /Im48 55 0 R /Im175 184 0 R /Im175 184 0 R /Im174 183 0 R /Im68 75 0 R /Im364 393 0 R /Im48 55 0 R /Im169 178 0 R /Im146 153 0 R /Im308 333 0 R /Im167 176 0 R /Im146 153 0 R /Im173 182 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 370 0 R +>> +endobj +370 0 obj +<< +/Length 777 0 R +/Filter /FlateDecode +>> +stream +x¥]K¯4·qÝ¿â.í GÍG¿¼Ù6¬¥7$ÇJ$?ù÷NççÙ CVë]ÿòû¿q?¹ÿ{[¶écºMSþw¿mqúpq¾í[üXöp[|üøæÇ/_ýÛ~÷¿ùëß¿,nÎ,·Õ§6[`¹MÏ\\êÒïìË}9Üæ)-0ßÖí¹ÀÏÐ#ÌÛãÏGçâmàÅvPa©oáDã/nõ7¿«² Ö|?»6ì÷7øûü-âßߣ`ñý¤ÿþ~¿â ¿mÛù÷}âàsàûùüýÁ®zÿ~À÷Kµwó§óñÓz[cõývþ~¾M§y7»üûn~¿æßý§;I½÷¶@¸ ;$HÀ/×n±Þbp §J¸@%tî`©n!§bÌ[(©X@ù8O©Ïc¿W4Xo"D²xÜd¿´À®bÜðè95Ñ#l<B&ñ6/pwþ£#»°Lh�Ñ$¸jçap +üm¢@Vxì÷JêØzîûªÍW·q},ðù¦nËçìPÀ%1ÌÆJÓ£Â$Ñïò«|ZLCÜÑ\uлòØÁ!+6²Û ÝF*«(wÕèVTÃ6k z·jÇvo477=wà+<àlÚH?JGS�\SëqB +`#ÃÄ8ATä»~X� ° E HÞ« Jàám¬¯3CåèP¹Þ!lh_É=ÂSGj¡rXC©Þ ú6®)Î^µ´Pëúô<B-Hke.æ0 ¦-°B9@:*ÎÓÞÜb±p1¸Õð \ ÆFD·Îh5¤¹ÍÞ »åù +iòÃâî¨\¡CÅqÝ Ód'ÇÜ{iûîëm¿ØÒöÏó§ÕX ö{0LNVcý=ÒõÉ÷Þïk{½ÌÞÏhÿà&cúÎ*«y-ÅXòZó$AèüÄÐÈúay~ÁjÏëö_[ï¬Åã(]�ó/hÿµü þ'ðy +нfÉÖ¿_y© ¾½N>{ÍÊï±}¾ÿÛcE¿ÛKTb`ÏdßÝRÝ�¶@24¥j;¦Ý ìõkõ,/_¾¾æÁHBE ø(�{ËCÖ¨Ê+´R,Â!¨"LìlÒCþøýE¨"ÄU1C÷ù{ø�öÌ?ãÿ2#þËOPXµ'AhX¡?C�ö=ú £¿¿Òùé÷»Æ¦ÄÉ=på/NèþéOH² +µûǬJxÿYå?büèµûKmøWã¥D*.¿1¢ó#¿_½?ÉÔÞ"¿ÂZ f*l\ÿPÌÐ òî_m >¬ l ÞqðÅÖ ¬B~H vë~àgñ}ÔÜøý(»ÚSà|/¿_n¿T`öý¾KB¿ìÙkЪ Ü¿àÉßçýO/÷§Ö@© +îü h°¿ß½â6!íþò_»f¹ %úS"ë þS*ãoñ=2! ý#?Á·ïgôûHÿ ç¯É¿Uü û_¼´ö~$ôñ~ò_¿ëmÇaïî,~ß2�>mÈbZ¡>ìÅ*¿×} Ù5zvÀº7!Ô8LH�uHRE�� ìC æ¼Bÿ§;@! �×(`�ÔùµLÏüë�fw RuLþÀYþ +úË*º/@P7Àpqjòo¿/g%øÿví¤¬�êÞ_þ9²;ÿ³e~-ûXæWtùU>º3zDd~ñÐèY Àtd~Å|v¢¢ìÑ_ãÁZQöÜj4ø~ªhÈ㲫AaNÕèK]ÀH¸"[äiÐ,Ú¥w¥ôe^-»Õäèê�ÿy»Kå^¸K'{ºX�×yTtH)5 ÊÓ ±i¨ ©tϰê¼5|B,ØHPÁ¤e1¡Ö¨Nî:²HeïkçòÎ@ +»ry'p\íÖ§fYEâg*oIAÝw<7¨ x¤áN`ÿnÛµih6ciñ½×Êß/Ò÷&`6¢ÜZ p!?e:X={»íñÉð ãtö#+§ ÈéìaB¯t Í4qîhwÎ>µºëö×Ǩ^¡nܵ¨ôDßÑ=ixãärCk$)bàtM8}¿Z|¢ø¾®,ª¿7Å2UæÔp«xy_¡xO+Tz=C6qJ6p\ådNøÎîÏ�§Su¿w <ë[VÀ¡± x(˵ ð#ÄM:ÝÀ¿%Fu¶Úã{(É»é:2ô}.Q+¿²° 0ð[@ûرí}Ráñùï +¤t~zRªtC4(ÈwàÄ0¯Ñ!A^B3Ê ¨æÖ¦%QpÞ¶¡h3gãé{ÙYãÌÙX~_;kX´Þ³ðôû ÚG¢ Ëá¬?ý¾t|é'Hpö:é{-^ÀþkÃÒÝ%ú3Ìm~{C';&m3ßäÏ_T¢Èlc(6¿_%ù¡ÑÆ ñ¿#áסý×ß×åH Ç5ÿk«Z>ÿþÒp6³eD?=[Àx~ÙYåþ2þçãaþ[ñEëü<Zî¿î,Ïå©§ßøKè¿Lè{ÿó÷ðþèü_!ÿõhÿªÑ'~<XÏ/¿âṟå÷¥¯<ßò>_¹VÃs¼ÖîSÕAUÊgð¡:Ã@à±@àRÙÄó«¡ Ùb-FN3Âë*¡ ¹aÐCîKµ(B¿Þb=ä µ¨÷ +_1Ùµ6¨EÊ9¯açr¾Ëk~4gZ¬ü¦ZVå{¶ÿèøÿ>çøô½ósGQ8E;/¡pvPxï¡`"ß ¬¾A¬ª=B«_^B$¸#kÚa豬c$AµF ¿/'m=íðõ}»"Ú±)Nß×δÊ3íðëZ~ïPÚ^íÈÈÏsáöäØ,ðu4Tî°¼ÀvàêjtZ@} wYþÔ|.§GÈBÜ: Vçwðt}ù!<-�+ýIár´@ d5§Ãµ½©ó]%/r yDÀk> RýÌ·Vä»bSO"ý$²±e³JÚ¯l¸*6w1"¾r¨ShËïÑu® »R)³a(_çÇ-]gJDËßi&Ïè:»ÚÁNå`F;×¹F¤u¹ x/ã²1Ûç-6Ö¦ERÌ&þ¥`Påtîý&zÏR&T¹Ð±�äo#`ZrR0Z Ô~~ÆÆà7ÈFs c°.ÔæHF$ÁHÈlÚ¨õÓc RPÔOéa&ÄðÞL í-¢9:PG#ÚR|¼Ä[oµÍ§¬²»ÎYq`kT͵ë|î$Ç ¬QÌùB±`Ý%ÐOvߣaõål²z,'Ädé4iE,¨MU^ ¶ ô,Ô$EaAÝÏDx;ýÌFD$`]Jv@BT"ÎÚbô³WO@v°^ÞC=L½Ls£¦S!X·KPè³Ëmr§æ5 <´N#Ã<LÙ +i?À!óûoPôt:/" M§³ä¶ d§IXs«áç0Ìu 3Rã^ºÇ¼ØJ{Ù-HÅN×n9ÜF,à{¬cqÐïñû£Bç"ã³ßºÈL¢¥¶`«HFËMO$Ï$P7ç=7æK`zfHB@70#źæ!³Q#|µ4צ£ZeTcªg÷o +Åöµ½:6Á ËÖßß_Cê:µåt8kÝV~ß¡ØçDñ=`»EibÁw +Ý¢§iR²@AìÉ@e0MhÚWÄÌ¢)p䨿Þ'!Zä6ãÞkB@«T¼=&'!ë.S>ºB ððß{C9Wÿý¤QÜMi½ :j¥¬msTE#ºìdfõ�gÂvuÛÕìòH§ö ^%]± "WiïVUY¿}¯-@ë¬W5äZx9¨\PH*Èöͤ=IT7Î!ÙÑG9Ìû¥G9Ù7WåÔk_¢�½1f¬È£ù"P!ÊñÔ1µ"ì¦VPÝÖÝò0f?Å £CjMÇ45C��ÙEï{!zI/ºßÃK/b²Ë.×8kÚ9êD°?ì£ý¶lÏI½¦Ó2Jò$Ëx&è 6µPõ>cé©ÒHFÞòr¥±\ÞDmÔDÍ×S,Ða¢Y39u(~÷ðfâì¯Ë &Ö)°a¡Ûí=+v c¡u,Ìýí¥ÐÛȦR½0G¢ï 9}}D7¥Øxϼ¾·ñh>A\®ñpFRØÁÃÝ_ÏÙÚÅ=Á ±P׬½õd¢Íi;àÍkB£°£Bl|Ш%ëæÊsøðàÀÏx=dºË7Ï2kâÕìcPßc?øéá/ëÔ<*ÄϪó9`Q¬vé ¶¨G®AaØ×kP£KPBÝñ ¼UB2¹Õ\ó"2!Aj[D¨Té¶Eµ¶L?±hZ>O ôÌÎ=ׯJÑTÙËWõA=àøË3~4Í ØÑÀÔºiméÄ¼ÍÆ.¾$d&nJþ_Á äRî�z\¤bºë?¥¶ÕßëÑåPüºÃ7ye7¹$aÇ r�©Üî¸OÕü),v »)Râ¾ÄÃw¹mWxàÉ`z9߯Ia + ]ÂgühqÑ(@ChLÛRH¬ED>%)ä¹qöÝýw=1(×k@â·k@jâ%rëÊ,Ü»©uÓµkN §?sãF ðm;Ú$!¤nÿ¡t~ïêâ£Wô ë©isP¥«![*7O¼$EÔÀ[g(Eòúý>¨aOzGÃÂ=HRÄsÛ<¥~6õÄnܤP@¦NÚ²Êrtä2ºÅ\F×!º¨Xw ±£±°Aå{<`3«<hÆFß³;©êû÷Õíä^+PÝF¢\÷8DÎZ%èQív »ýÝr¼gåtg[¯ò`C<èÉ û¡Ú§ÅP½ùËèqloƧh³Q_¥È[Å@T5·¶¢K¬¦¸}Yð'ï;RrRåt*EV<,Eë¦ñJ¹RÄÐ0î4ÑJ¥ÄJQî¹%ðà}ô&îþ HõBßyË®O(x뱤ʹùûÎ`& ç8H±faÞ¯Y®½iî U{3ú$K§~sÛªQ0Ëm«`ÆØ/ A t,J¹i :ü¢éw¯¾h,z2iB@-$+¢+7Ða!ºm+ú"`ÙûÜ´a½*禵^DZµb)]%9x·fùï ÐïñpyÆí}ÕmS(û±7ÆgS+Ë è¡hg9-' + $`°ó`Ã,Ðy¸Á Hl?Êôt§°)A-!`.ÇGô%B0]£/åt(JjvÔ{xõ@pòx«VQFw6¼qózæ´î![`¿G9úr,0Ø!Ä[Q,Lá yãk× LK;R«lLÀCVy5$bÕKÁ²â6U/=íþ &îÄã2ºj_"û£°/îû(ZÝ<¦_ÝÅèñ4æ5îjJ\àTR«FL½±üñ,Nµµ;Ui×ö§44(Q!5 }ßV÷GÞªq5P%÷á¡æÌ q5lÞCÅÒ©örü%¥7<d"#s`£k¶ î¡v@3àw{£K^Ô]6ùRûolÐX2)Ã8)gqè¥{Töm3)ëÐßÃ*î¡ tº³¡i¯ì¬ +¾î¡6Ùü$î"Ø~üü¨@Yí}Úè@-â(ÖëtØ®Òa¿L'>´ö à»î:>´ö@Ù¹;Ý8;W¸Ú³@é°]§Ã~)è#í½Y µ©MÍ+ÐöTÆ©rM|®ãÃi +ÒÔ.ìaÃ{Ðj¿¼'>´öÐÆ°_İ_Æñ=,×÷°^ÝÃv}»¸òza/q«ïõ°ôÂðáQªþN&éæë{Xà¶J·oáCØ.ãÃiÞ~{ðaÝ/âÃ6]Ærh8(Kç·{±Mïï -:PÇZ7ó çCôØ8ûE^dýá/>ïÖ[ßù0z¼)åY´ù·e¥ÌdÇ<¹pT}èc ;}/yJÃ6¼(¿Ç<å4²Ó÷ò'g®ÖïSúYås~lH³ÊçòûzH í° ïõBiº8õ=¥¿%ö·èÏcLP~äa{i6ø^®pö¬.PG §Å~!å`:mç¥ïÑlGp`tôpèwô°^6' Ö{x`yÁ!\|ú¾{^pù½>oõ !ï)YÍtù= §F¿ßÑ%ÒJ®SþÔмÜþ¾>/wsè{½Çäè×Á¿]ã?íc°ø¾c^îp^®ulÌKuðüú¼\Î_?át^®MÊå¿Úùé¼Ù°J÷Î{ øÓ1/7BüÐçåÎ~:ÿ!þtÌË]ÐïwÌË]5úñìa?ú¼\?Zlú{Rå÷=Õ¡û1Ãå´�ÈXY%0:/×ÉVåzæåú�ÐçåEBAf|õy¹¡@ϼ\'¡ oqǼ\×Ûú}J?ú¼Üiq=órá-쨬ÜÑù;æåBùÑçånÅ;æåjZ^Áy¹þóráù;æå£ðÑóe»1²²Ht¥Ìñuõîy¹Ô[~ß?/·¥Ç·æå¶oÐûy¹-;¦5/·G1W}ï¯ÍË=}ß=/·üÎË=Oè,çåæVÙ·+wyÈórËÀhG6T0yóÀ¾¢¡¯ÜÓ«õ]Ð5 Ø\ĶA;Ðgg).èwëà&Ci`ã4 #Í·Þä:ò¾ à¸[2±w7eènÚ¾ØKEy_®ròªIl¤SJf#¸d~R/eïá]ÐE9U¦^e-Qæw#D Hç|N~�;@rP/ð0.³Z}·>ͻרLÆ[âr0öúw,Êà]"3mκ @"y:*ûMÜLäcð⣼_róÀݳ$êc t¼Áº*i ÇËíM/Âzê*Â:¡ÑÏ! § jMÄôâ6ú 8ë°(]&(Êl|>>¹yD¬ïÕ`å(¨9äqO""aã46ÒÑÏÖD誣-mþ¼<ú9×ùaÈ´èF?{k8ËÝùhå=£«pú^nDc÷§è'Ͳ÷©ÉãûÖ,ú~låzú[Û@+övÖuüL}v´uoñDÄ{nãZBÀ´múDo§á x7ÎÃc];ï %Ò�¹¾Ëï;"øð÷ÌÿzFGCÔɼ½å¤Xήßü5$J^A¢¤ KBÈÈk@,}:Þ¹ÃÂÐMòËE">ûÙ]zC@'è(rð5Ñ¡0Àµc3" +sÿæþ3-Уk~ý`Ñí Ý«<dýc®©$qB°´qð£Ý*b)iã³FáÇzåHÎFpD6M)£í%ãªa) ÌèEFß."[ÍûÏb¬X5½´5-=¬/[Âåö3)¹ãí=¤s¹¢!ÑÝÖBhZGVS~ß3?;'% ô>P)7ø ã§m2LBkÚ="GjIñà"³áͦW¦Ê;(¢¾[?¡èjµ9ñP)ãNs±2.>ùØÂ-)¢Õd³TÍ$4(°ü4xÐ1<z/ÐÚ¿4IØÝºè_ÝÜÜOQó* Ø«¶�Õ-;%F¼?%~d&¤¹KLÈþûæ¨rë/>I!À'IWn#£.<ó4:Ø4DçFÔL^3§A3yC/m¶ùÚlÎ ð¦åt +¤(Ú$ó=}>§/_ähM£Ê!ï¹^¢ækR;\HÑk˦^A´y»(EˤHvùÅUVáP)¢ +º_>-ÐQyf.Ëô'ÍÍæ3,¾ï^dwϲùsþÇôÖ1v<@/ݱÌ;:dzD]½NµGñþ³§I"ê:·ê#¿¬CýSõ(DÄÆ²ÄßéHâmIIÝ×áÃNÐ1{8HBwѸµ*³$þÂEf&E<3kXÊ0"ñ £vGPÔ¡[[>Aóñ^}ÏHõ ?K¡?±¾á£Rr uô9yÚ7çæöÄk2"úýE 1´%\ó`-«ßÃ`cØ¡0ä ô Ùé8*»$T1Æyp|o<8A¡}pË50V0ªWÆç=|PS�æÅq¤�8¦¾&9-s1M[³}? ¬Y¬á¢u8s««@úåX4µ*Ú=e¹Ì<2!×1Ïwj1ø¢böÝb÷p~_ÒØþ\~¯éËóÍY¸,¤öåY¸)u¹¹á(ÉmHð. ±Ï:Y[mâM+,è<]] !¦yvuµxȳÓ4)|g\)·þ¾eKñÓ¸jQ i\5NÀ¿õGãPz, b1$)dïñ#zd<zx »í³RÖ¢�=ÕÍ:Dñó0¬PôÑÃQ$7|õÑÃó"IµïrJFñ½Òñ9àÑ'ñAäѧMczÝ_{ÐbNÉh 7¯m<=Í]zТ :æA2êtÌP/íN%<= IÒÛÐE%Æå"<óÛZ4læ·5¡4MËæQ|þéèóÛR齫uÍÛÐô»ì«*7ÐQúÕ¢b]óWm<¿ÍüÅ:jg¶Ì8jjZl@ªäv$D:;uyf^úb|OÐ+Ô»DgíÏ éy#8Ø5!¦¾FzüÏÕ´¦×Åc4Xâ±ôºYãÁ»âE(rÍAtÀÝâXZ·ÖQ'(³µÖQKxºå¬^Ýëns[RØ,*¿u¢T<P¿ç<·nÑׯ/"±Ü:/]ªGôt@YÈîÎa!±÷çæ BYX½eú±ànâ{L)Fv\¡@ÖK.\¢@zF=|O;ê¯/ú<æõ¹wPc¼(Åq¾&ÅqF2ÐÁÃETª©¦I~Ý|ZïSñÄP.F²Î^÷0ÜÁzÂX ËNëЬ¡cÆ]äÐ_xXw¦F -Zí F%'56sÖ ±bØ4� Þ\b_U)båK^£!Ï \%)¢¶³(öC>çT¾4*EÇ÷"amâSÝ>¬5{#7}òÚ ¸y4Kѱf¼7Ât rû±a,ò6Ó¬%EÖZ÷|ÛLXó°æ ¨b:wW'èP,v½ZàµK"ÑXë°æxskX¢OñÆ_<\tð0çöµ(H£W+b'V(ºZÌ£KPzdK; B´/5KIø,}jQ v9ÙÏqb¡É±)ç~Þ3ÚY ÂhgyØa E(EºÛ?ÙG0"ZGÐaÍôWn@�fû¦EBª[³.|£G½Òë¹y¾YÖ΢OZ�½GX]n9U. ûÝsÐð} O®3óÄícÉu« oÔ¿Ñ�à¶jðà2Ð]& à3·À+ thÖ¡ì5|(É <d0da Qú\o1ÊBë7ßd!5ïæ ÝAVª'àÆ²ónGÈt'Á¦SI|î é§1$LÒÀEVª|³"àYøÔ>Ѭ½¥<5ÏkRÄ?î>sóü`0kPFͳù|ænØðõQ$¬øé±mRO@b 6Çðtë(jÏOóª¢É3øFcç%)¢ª¹TŵSyÀ*¢FjàE M¹yÍ7x97¯¥óðÏ2EGéÓð¼7Ei(øã&OÍâydn?E,|dõoÅ÷@è æU;Ak¬u¹¾±ÖN2ΦyS £û]ny55jiygm3óèzQasæÞUy<ÐûäF- +4× +Á³yÝÔ¨åöEÐ/°i4×5(ö Ý `Ð@1Lí9ÈZh0Åa5(aÙqbã°£PZÏ]0ÁÔávÎqØA) +.ªRÄ(ñGoô$& ýÚâ&>©Ú¡Q) +óÅéÙ» ÍÞØ )âéq¢RÀÓãÀM æá±¬â!U®¹ñ$ÓÔªÞ6H¾¹Bè/Jñ³ö¨ý¢²øb½p&hRLM¼¸\{QcÎW|QãyÐÑÚñ £w_îëÜzZru|¿nmÅG)ÃiÈñÓÛÊtt½}¿ek§â£ôÃå:*o°#¹lõ¨ÿ"±.¶Ìå=ñì´ P@/vÖ'çt]§H͹/Ia²ÐtÏ·U¶¤z¾-ßäA+~Sn 6è IBzÆRÄü¥{àgÌÃô¸¨]$¾À±LïonªÃR´<h¥·¥jÀ!q<訢ƼúÉqçÛaê×,½M"Ò÷,mVN7±£½¹¥·JQnÍ=EaF<èa-P'ÐSuòªRÄ"8Û¥-</â@c(Ý2Û¤}¿$Eñù¤bQ®ßia5/¼ÈÚ¯aQ´Q,Êç±(ÎúñÚÑÝ|ññÐvéAÊùmãʱÕï¤Àrl·õ×$¿æ·¹m´)ó°µ�dJÁÖ(Âjå·t?ÌJçÁ®ñ`$ÔÇ$ñ}¼é% QD2¶ÅF¹¥6vcc[¬'ðùòØä¹~a·1b4ÓXì¿|ýå«ßº÷ñõ¾¬·ôýGò8Ú|ýã]Âî |_u^ïÿÏ·¿ø÷¿~üðý7ßýåßýúãw¿ùíÇßþñ×oÿ÷ï¾ýøÏÿûøÝ~úþ>þøoþøËßÞ>þðýwÿõÝ?~úøÕÇúéo¿þê«þùöÓ¿ÿçí/ßýôÕݺüéÿñÿùêoÿLßÝþüÓ?üòãëÿþò¯_ßw÷ÿÀLæ +endstream +endobj +371 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 778 0 R +/Name /Im342 +/Width 31 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãÿÁÿþ0>`øÃp�ïA0c?c760¶CqóÁfæÃÌá3³1ÔA±Bÿxþàa©-�<" +endstream +endobj +372 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 779 0 R +/Name /Im343 +/Width 27 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûoþÁûþ6rì v|lrü@,ÏÁö`,nÀÀ¾ÿøn?�ÁÌ ì@ÌÆÌÀ -T3Q�7dî +endstream +endobj +373 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 780 0 R +/Name /Im344 +/Width 31 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãÿ?ÿÿû cÆì øÿÿæÿÿðc`ö9¬¿Ááÿçÿø¼LÝly�r%*¸ +endstream +endobj +374 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 781 0 R +/Name /Im345 +/Width 28 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`ÿ`À ÿ§¡/ñódo`|ÀÂ䨱 ×@0ÿ@Áÿ?@03T@± Ë1ÈI;ößÿb`¨g`«£�6 +"ï +endstream +endobj +375 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 782 0 R +/Name /Im346 +/Width 30 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`fl`a6fÌÃ%xêÿÿÿñÿÿÿ?(8Á�ÔÔ2H``l8E·ZNµn2�æÅ1 +endstream +endobj +376 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 783 0 R +/Name /Im347 +/Width 9 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xa¨Âÿ bÉ0`5ÒÕ³º=¯ +endstream +endobj +377 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 784 0 R +/Name /Im348 +/Width 32 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5̱ PÐË, jã·¨{¸ÌåÄÂÒ6rg@-¬H°rA`5õ Ö$ØhgüºNÁqs's +Iù¡üjküÚj»B:Y +endstream +endobj +378 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 785 0 R +/Name /Im349 +/Width 23 +/Height 2 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿßÿÿÿĺ%�5ò5 +endstream +endobj +379 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 786 0 R +/Name /Im350 +/Width 20 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-± 0Ð)ÓØ)d¬âÙÃe.røËÁ3çë&qó\ko¡C}N*Q¢!3þi/R¾ «a÷szµ^0ö +endstream +endobj +380 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 787 0 R +/Name /Im351 +/Width 8 +/Height 15 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³¨ù÷ÿ½53;m/�R7 +endstream +endobj +381 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 788 0 R +/Name /Im352 +/Width 31 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`n```?Àü Xþ[ÿàê? Püà3>øÏÀx ÿÿo�aöÿÿ°3È1?üÿþÿayºÙ*�\n.d +endstream +endobj +382 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 789 0 R +/Name /Im353 +/Width 12 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc0`H`<ÀÜÀÜÀÎÀÇ 6`X?°BDH;ÈÆ <µó´Z +endstream +endobj +383 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 790 0 R +/Name /Im354 +/Width 19 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5¡0ÐßCÄQá5P°¢G:Ód?ÕPï<ЫM½eöE¸ +{ÿj p�7s¨pLÔànáñó_í&ì +endstream +endobj +384 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 791 0 R +/Name /Im355 +/Width 12 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x;ÀÀ`Á |ìì ì Ì@ñ~À +Áru ì@½ ,f`àѬ'�¡@ý +endstream +endobj +385 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 792 0 R +/Name /Im356 +/Width 17 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc0``øÀÀÿá?}þÀÀLªÿß�AÒµ³$�WÛ L +endstream +endobj +386 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 793 0 R +/Name /Im357 +/Width 19 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÁÀÿAþ?C ;øEà¨øØð?ÿÿÿûö6ìê ¿¡ÁÆÁþüöÂÒu³$�%$É +endstream +endobj +387 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 794 0 R +/Name /Im358 +/Width 21 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`o`�"þùûz0úßÀx¿y~»|¿||| |C|Ãùÿÿ@H1ÿÿA¢Òõ³$�óÛ!Ù +endstream +endobj +388 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 795 0 R +/Name /Im359 +/Width 38 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xα 1@ѸW\" T)é.£dÌnz(R1GØé°eéYróMkÀ×xUå÷¬t×A8ã ìttûÃ7={ 'ÐF¥#©LªtRq¹ é¹7²²ÔÊ$¥?Q¶7! T¢1ÙÐÏFÃ3¯ëïx¸>N)! +endstream +endobj +389 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 796 0 R +/Name /Im360 +/Width 36 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xU1 +Â@D_Øb-DR¦° 6V¶"9Êv¶vVÂÃBñ*ëMrau6Äæñ?ÿÃ�T·Å<MÚÏ0Kae ¦à]àtÎÁëí!ºú \rk£ÝûQ-G+x%i43kw°ÙfãYoôéóü)Ò¢%u7Ûëc÷=0$î +endstream +endobj +390 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 797 0 R +/Name /Im361 +/Width 40 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`°a�4 .pâc`¸&ÍÀÐa#ÈPpCBïFtà é > Ác¡£b"£¡¢¢"¢$LLÒÒÒtÄ2°³Ó¡NM;Þnæ¸óßCªüð»þÌ8ð6öÿþ0Ø;0700`düßÐÀ8ágÃ~ bæÿö1Ô20>``o`ªÊÊÿÿÁ ¡^¿@�ü±5a +endstream +endobj +391 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 798 0 R +/Name /Im362 +/Width 28 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«³oà¤Ð¢àüà×ÿÿÿ !Áñ�3ûÿL,DcæÿؤW±Áþÿÿ +0üÿÿÿ bË(VÎÖ�ÍÙ +endstream +endobj +392 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 799 0 R +/Name /Im363 +/Width 27 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`c`` ÿÿÿÿª¥eê¦+��¦ à +endstream +endobj +393 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 800 0 R +/Name /Im364 +/Width 38 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÌ1Â0@ÑߤR:D +cS&Æ1G(°Ðkp°s¤¢âª [~-ÛP áºüýÀ]*»(p7åß)_©jËdh£nÈ£¬äQGl`K9§f²D²B!¬í¬oyr4ò7Cþêx£#æÛx¡nñ`rKU¯Ð¶& +endstream +endobj +394 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 801 0 R +/Name /Im365 +/Width 28 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³o?`ÄöÿÿÃ1ÈÿÿßÀÿÿ?óÿ?$aöÿÿ@úAæ(008À̱ÿÿÿÿe*k�ÝKC +endstream +endobj +395 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 802 0 R +/Name /Im366 +/Width 44 +/Height 44 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x;À�,N. +-J@¢@å¤È�dµ81p8)r´(�Y E å, E + å- å å åJCÆL0ÐÑi\¥�2± +endstream +endobj +396 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 803 0 R +/Name /Im367 +/Width 34 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`8ÀÀÀÀø�F¹�b1�ì?ü? aÿHÔïo``ø¿ÿ�`üÃÿñÿ~8ñhÌÿÿ D ?P±ñgÀ;Pÿ ãí[Éÿÿÿ øÿÿõÿíÿ7üo`¨?P�jP�:AI¥f©�îm8 +endstream +endobj +397 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 804 0 R +/Name /Im368 +/Width 44 +/Height 44 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x;À�,N. +-jþ J2ýÎ\ìÅÚ1pÔ)òQã&ÜyÀ£MYø@,»ò=±nç>êÂ"}nê\ ªrýîÂnúüíjlþòün +üýúò}âüçíåÔç÷ÇÛ3¸¯??ûüÿý{Ïßßoã üþþþçÿÿÿ×2°¿ÿÿ¿NÈþã "ÿ7ÈÿdpúQÿðKúÿ) +@ñö òlê?dp1þÿèÎøÿÿ[ö7ÈpP´¨x¡Áýÿ?Eûÿÿ)p¸ÿÿ×â Ðá¤ÈÑ (Ðâ$È�dµ(ýÏ £Ó¸J�ÚNev +endstream +endobj +398 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 805 0 R +/Name /Im369 +/Width 1 +/Height 1 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`dlhÐ�¹- +endstream +endobj +399 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 806 0 R +/Name /Im370 +/Width 44 +/Height 44 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÏ1JCAà¿Øb!ÍÀ.¼A\Æ@rÉIÜÀ)¢¥vK¯¨õËûý_eöÛùß1àã¸Ì±mÒ]Qg©ªsºÖÝbÓÛÍãW±ÅÓËwõ+ò úã-ùYRbµò~I62dîØÉñ$sÂ^æÌkv2w<Åb#ö©ú!ÓW´×´^áuWìeHúë¾6Ø`9ló&9=ëb$ª«þ"¨þå!LÅ©X2«9çGÏ·¯³fóe +endstream +endobj +400 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 807 0 R +/Name /Im371 +/Width 38 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``�ñ&*@D3*þÆ*öö«ä?Äÿ¬ª±ÿoÕÿ/ûÿmÿ·Ãÿÿ¿Äÿ?ÿÿ ÿÿëÿOè¹ÄÄn áÀýà ÞUA©ÿÿAf ãÿÿÿ0Ô10¶ÿoc`¬ÿÿËTÿÿ'Ãÿÿ@òÿ?À ¦Z·B�=P +endstream +endobj +401 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 808 0 R +/Name /Im372 +/Width 36 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMͱ Â@ a&hR± EÐÝl«XC,è ¤ "¸Qàâküô±»$ãæPsN¨;YÀAZ¸K«<¥Q&i"³tXpo§ÊÚH_²Õ`2«¢äSdÿç(FéáK£/^8záýçÑ÷ûãæ8cO +endstream +endobj +402 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 809 0 R +/Name /Im373 +/Width 26 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcc``°âúTcüÿùÿ0fÿÿÃÄAj`jAâüÿÿ0ÈÿÿÇ`ÿÿ?×ÿÿß�Âÿÿÿ?K)U,Õ�EH= +endstream +endobj +403 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 810 0 R +/Name /Im374 +/Width 44 +/Height 44 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xEÏ1N1Ð)\Dã½t(w°5Ycp5ÛÁ(sP¤HI¥ +ÒÂç; .F_ééÏ´ç¬Ó!híý¢/Lej¢¦|÷£n¾X¶Q\vtH/5ûi<h§N,bîÅp¦ùæ~h^ãæ fÜÒ|Äw3qú7q¦yæ3@sÐLÀ«¸{`tìrÇ÷ÒÀAΣ(çGð�>sdþ*vÙº¶ í¬ÖÓbëYõäÅûÅ/ëÛ?ÿ:i¿ +endstream +endobj +404 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 811 0 R +/Name /Im375 +/Width 44 +/Height 44 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÏ1n1ÐbA^ªíb;m±pÑE{ +.*dEQr-¸HrøÞ)F#}ÍÓLRF+»ó6GwNÁ%N°¯YaÕï³wY6Ví£KZÉ2ÀDY©çbÅ]>ÿl +®ßVàâ<¼£g3i.0¡É&S'LÅ<i¾¥æÍ¼Ð¬1¢ÙW¸{ûì¥ò@¢�4Ù#,ûÒ»XIàÜ&RóõxüûòV¹SC¹3k¹ÿÃ5Í÷mýæ1L +endstream +endobj +405 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 812 0 R +/Name /Im376 +/Width 38 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=ͱ aàç% EFH!V.p\ +q âVÖçÿ(7p¾¨Hà{!x¹:¹ã@¢rbÊÄ4²JE +LE|0ÂÁrLðX²ËÃF+<`÷ LØh_÷×]=Bûã?äË0ϯÝöüØ¿¯`_ +endstream +endobj +406 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 813 0 R +/Name /Im377 +/Width 44 +/Height 44 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xEÏ1KAà-\±ÈlKoÎ.ÒÚݲ9ëü!!'¬zBKÁÞ?aFìlµ2ÝçÛ4bbøxomÊTÁÙ®¶±ÁóRéy5c06Ìl¬%.õjoéË»ª¡¶]û½ËOÛ«àÇ Ø5¦§Í»ihm4g 4 4ï#d§È4Ï7W4/os}Aó¦ý ymÉùúvÈÙ4|yåþíçØ"£,«\¼«<yÇZ%gÅdã}#ÓéõËäz[® +endstream +endobj +407 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 814 0 R +/Name /Im378 +/Width 28 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«³oà¤Ð¢�ÂÎþ(800qýÿÿxÿÿa`b`! ³õp�õÌP``p°ÿÿÿ�áÿÿÿh``�a[F±r�}ª +endstream +endobj +408 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 815 0 R +/Name /Im379 +/Width 26 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°g``ph``hp@Å ±âÆ&0faà@Á0qFÀâ YXfjÄTüÿÿÿRJKµ� +endstream +endobj +409 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 816 0 R +/Name /Im380 +/Width 44 +/Height 44 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMJÃ@� _!ÈF DüTm-$KC©sÚä´-xPw® +^ Ð#¨x¬ÄUcâ[=xoñ}êH¾FJW3Í^·,ñ~ ÀVdæ*5V£ÎEfwö3ìv4ÐFScÒïÞgÆ2ì5ù©¾»ôåEr¨Ë!Ýk±d±Y?qGÍ8J¿ Dqº¢/Jsæx.Ëy°_lo±óÆmVL +k×dÜDYÈðÑjCoJ2àiôú#âÖ1?¬8ÏÐÈA¦@@Õ´,ÎyÇýêÿ ©^)Û©sß$ܬ´4T-±þý¡7¯?I- +endstream +endobj +410 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 817 0 R +/Name /Im381 +/Width 44 +/Height 44 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xOAJA¬%KÒ ÊöÜôäÌÃ"9ìdÆxñ°?0É|´8HðëÕW,~À?ø=*k¯ÝtÑÕEW©Êh(YÊÁÐÖ±x~É]ä-gG/%*9*VÛø¸Û¸¡?ØÚÛ9hfï +ËèZô¶4hzHã\Ða"ÔX¡9f:Úv©x¢z>¿ñ/X[ê:0ø{ToH;à�RfmùUÜ0HT~òK7ã÷ôgtê9 nÙÿço6OïWñ9h +endstream +endobj +411 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 818 0 R +/Name /Im382 +/Width 36 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÍ1 +Â@ áYȦ²¥å©,ÄÒÂb¼F."¬7ðÞ#GJ¹Å|J¢Ø|0ï130®ýãñXǦf Ù½DÈö ÚKÝ»ªììG8":¯ó¾¾é T?³Õû<¸Âç0Å+lì¤lìûÛsÿs9é +endstream +endobj +412 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 819 0 R +/Name /Im383 +/Width 33 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃÿÿ@Äþö @Bþ�à°`J@ÿÿjÀÿ�ÄzP7 �ÑÜðÿüa Áÿáÿ?æ2u³U�Î; +endstream +endobj +413 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 820 0 R +/Name /Im384 +/Width 24 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¿á?ñ?` ±Ã?Éñ?°ãðïÿ(©-�É>'ÿ +endstream +endobj +414 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 821 0 R +/Name /Im385 +/Width 19 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÁÀÿAþ?|C=ÿ8reäìÿ00ÿ``¢þüêøüG ÿäÔÈ7ØÿgÿÇÀþAXºn�2Ð V +endstream +endobj +415 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 420 0 R >> /XObject << /Im97 104 0 R /Im369 398 0 R /Im370 399 0 R /Im369 398 0 R /Im366 395 0 R /Im369 398 0 R /Im366 395 0 R /Im371 400 0 R /Im366 395 0 R /Im374 403 0 R /Im369 398 0 R /Im366 395 0 R /Im369 398 0 R /Im366 395 0 R /Im369 398 0 R /Im366 395 0 R /Im373 402 0 R /Im369 398 0 R /Im366 395 0 R /Im373 402 0 R /Im366 395 0 R /Im373 402 0 R /Im386 417 0 R /Im367 396 0 R /Im366 395 0 R /Im366 395 0 R /Im373 402 0 R /Im375 404 0 R /Im373 402 0 R /Im366 395 0 R /Im369 398 0 R /Im366 395 0 R /Im369 398 0 R /Im369 398 0 R /Im375 404 0 R /Im369 398 0 R /Im375 404 0 R /Im373 402 0 R /Im368 397 0 R /Im369 398 0 R /Im366 395 0 R /Im375 404 0 R /Im369 398 0 R /Im366 395 0 R /Im369 398 0 R /Im375 404 0 R /Im369 398 0 R /Im375 404 0 R /Im369 398 0 R /Im369 398 0 R /Im387 418 0 R /Im369 398 0 R /Im366 395 0 R /Im369 398 0 R /Im366 395 0 R /Im369 398 0 R /Im375 404 0 R /Im366 395 0 R /Im369 398 0 R /Im366 395 0 R /Im369 398 0 R /Im366 395 0 R /Im369 398 0 R /Im381 410 0 R /Im369 398 0 R /Im176 185 0 R /Im47 54 0 R /Im44 51 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im47 54 0 R /Im39 46 0 R /Im58 65 0 R /Im48 55 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im162 171 0 R /Im162 171 0 R /Im68 75 0 R /Im68 75 0 R /Im388 419 0 R /Im73 80 0 R /Im48 55 0 R /Im174 183 0 R /Im146 153 0 R /Im162 171 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 416 0 R +>> +endobj +416 0 obj +<< +/Length 822 0 R +/Filter /FlateDecode +>> +stream +x¥MSÛ0ïþ:Â>WÇe¦9riC´ édúï+[N[2Þa3ìëgWÚ×^«köZ9N³]Õ~ãçûÿgd¸ =2ôPj¶ØT³ooÙÅsuݨß5ñ÷ ëÁËc :¯Ñ(p=xG(<Ä¡ÓÍ5Æ+ô}ÁÁ`W¡½%´ëj Õ\[ ˳ÅÎà +<ÙUpà\ðþ¨¢AòBÒPí§..¥nKi§Òd>1Hg°TGgð 08Í|6¡#ÃñRö¤ûNLB6 I¢À&3X:Ë2¸!>±Ë:úw¡ö}ÙøÃX +üÁL-¥nKi¦Òd¬)f@:-¬Ã¨?º?Le¼aÔ4ÝôÈ`®XÈ0êî]tÅuðä:üAÓýAMÎýúAÑ׺~ 0XjÁþ0Æ0êÒýAêÎ{³|cèe°¿ 08*'3ü¡ËN¨S{sïîÎ`©Îà³.ÙqúãgRXö£3O¦«OBÞîÁÖ')²Ý}syJÍÕÐ zñ)±/ �lÿ÷ñ>ì»%hÞOÀ7>©âXtãcÙ6tãc_aîùIk>ßð¢çÖÏÈ¢úip<o3ñ*itC¹x,¿T2ÛüÌåÄÖߢú+À|þ6;dñüs*¬`ó÷¼m qd&3�C¦L µx'|Öïf. ãUQ<î`<ÀÛ8ÿt÷¯Î lm´n"*( /iF2×"=ûKçPP!°ÞþÔ½|$ Ê@ F]BaçÀy5»L°ù}e¡/óM^-}P56üæ|fëÕbùô¾<gWìåíùîÏbyÇ~þeW7ÛÕzÍnO·§ìØÍjù°|Û²3ö¸Ý¾Ïf»Ý¶«wxZng·áupÿöãé÷ìå½Çíf}Êæ¿ª¯ó@÷rEçö +endstream +endobj +417 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 823 0 R +/Name /Im386 +/Width 44 +/Height 44 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÏAjÂ@àÃàêON0ÉÂ8üéÒ#x!HéÆ<@]õ¥'©à¢ë®\¦/Îbxä1y_³ÊoïyL*ÉL½ÁÖç[ïýeÕÞ?VɺAá"ÐÏ{%çüT7X¢ëò@óGs Í%MV4 ®rÂÄG¢d5ͱ ~Ë6ÊÛ¤|UÁæy`õæ+@3�»Ô¬s¾bÃLs¦ñOîQ@wÇ/aE³hrMåâÇ~HÛ?ÿ9k=æ +endstream +endobj +418 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 824 0 R +/Name /Im387 +/Width 44 +/Height 44 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xEÏ11à?qÀ¸ÎbF·Pf2XÈb!ÖÂ0È{½Ã #c§WØÒSLaá1d+Ko /6þÕkþ÷ +Dp¹ôIId*u{I÷{Zô&é¢|äM&ÊùÁié×añØOqGÁäfÌ[0i sÊÌÎ`zbÁ$ó8ÌIº ¹ºV0÷ÔÐÇÛ,Î0wÍf>CÏfzçWÏÌGSÜ´²DC»¢Ô¶IôîÅÿzYcôt&XüÚOr6«OßOG´80 +endstream +endobj +419 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 825 0 R +/Name /Im388 +/Width 27 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°o``øÿùÁö~9 äg°càòØjØpó`U¸1H L½ {<a?¿Á=ö ?ü�Ù¥À`Ä@\ÀÀPÿÁþ�ËÃÏ Z7G�xÿ/ +endstream +endobj +420 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F1 +/BaseFont /Times-Roman +/Encoding 421 0 R +/FirstChar 0 +/LastChar 255 +>> +endobj +421 0 obj +<< +/Type /Encoding +/BaseEncoding /MacRomanEncoding +/Differences [ 128 /.notdef /.notdef /quotesinglbase /florin /quotedblbase /ellipsis /dagger /daggerdbl /circumflex /perthousand /Scaron /guilsinglleft /OE /.notdef /.notdef /.notdef /.notdef /quoteleft /quoteright /quotedblleft /quotedblright /bullet /endash /emdash /tilde /trademark /scaron /guilsinglright /oe /.notdef /.notdef /Ydieresis /space /exclamdown 164 /currency /yen /brokenbar /section /dieresis 170 /ordfeminine /guillemotleft /logicalnot /hyphen /registered /overscore /degree 178 /twosuperior /threesuperior /acute /mu1 /paragraph /periodcentered /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf /threequarters /questiondown /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis ] +>> +endobj +422 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F2 +/BaseFont /Courier +/Encoding 423 0 R +/FirstChar 0 +/LastChar 255 +>> +endobj +423 0 obj +<< +/Type /Encoding +/BaseEncoding /MacRomanEncoding +/Differences [ 0 /grave /acute /circumflex /tilde /macron /breve /dotaccent /dieresis /ring /cedilla /hungarumlaut /ogonek /caron /dotlessi 127 /bullet /bullet /bullet /quotesinglbase /florin /quotedblbase /ellipsis /dagger /daggerdbl /circumflex /perthousand /Scaron /guilsinglleft /OE /bullet /bullet /bullet /bullet /quoteleft /quoteright /quotedblleft /quotedblright /bullet /endash /emdash /tilde /trademark /scaron /guilsinglright /oe /bullet /bullet /Ydieresis /space /exclamdown 164 /currency /yen /brokenbar /section /dieresis 170 /ordfeminine /guillemotleft /logicalnot /hyphen /registered /macron /degree 178 /twosuperior /threesuperior /acute 182 /paragraph /periodcentered /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf /threequarters /questiondown /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis ] +>> +endobj +424 0 obj +<< +/CreationDate (Mon Dec 03 11:09:58 2001) +/Producer (PStill 1.55 UNREGISTERED by F.Siegert frank@this.net) +/Title (acc8_dvi) +>> +endobj +425 0 obj +9923 +endobj +426 0 obj +28 +endobj +427 0 obj +61 +endobj +428 0 obj +77 +endobj +429 0 obj +86 +endobj +430 0 obj +63 +endobj +431 0 obj +93 +endobj +432 0 obj +108 +endobj +433 0 obj +75 +endobj +434 0 obj +51 +endobj +435 0 obj +66 +endobj +436 0 obj +103 +endobj +437 0 obj +99 +endobj +438 0 obj +93 +endobj +439 0 obj +30 +endobj +440 0 obj +93 +endobj +441 0 obj +75 +endobj +442 0 obj +18 +endobj +443 0 obj +106 +endobj +444 0 obj +83 +endobj +445 0 obj +38 +endobj +446 0 obj +45 +endobj +447 0 obj +54 +endobj +448 0 obj +60 +endobj +449 0 obj +24 +endobj +450 0 obj +56 +endobj +451 0 obj +105 +endobj +452 0 obj +64 +endobj +453 0 obj +72 +endobj +454 0 obj +54 +endobj +455 0 obj +46 +endobj +456 0 obj +66 +endobj +457 0 obj +57 +endobj +458 0 obj +57 +endobj +459 0 obj +54 +endobj +460 0 obj +73 +endobj +461 0 obj +46 +endobj +462 0 obj +28 +endobj +463 0 obj +57 +endobj +464 0 obj +33 +endobj +465 0 obj +31 +endobj +466 0 obj +47 +endobj +467 0 obj +45 +endobj +468 0 obj +32 +endobj +469 0 obj +52 +endobj +470 0 obj +41 +endobj +471 0 obj +69 +endobj +472 0 obj +49 +endobj +473 0 obj +41 +endobj +474 0 obj +43 +endobj +475 0 obj +42 +endobj +476 0 obj +56 +endobj +477 0 obj +34 +endobj +478 0 obj +80 +endobj +479 0 obj +53 +endobj +480 0 obj +41 +endobj +481 0 obj +78 +endobj +482 0 obj +24 +endobj +483 0 obj +60 +endobj +484 0 obj +55 +endobj +485 0 obj +65 +endobj +486 0 obj +64 +endobj +487 0 obj +85 +endobj +488 0 obj +78 +endobj +489 0 obj +87 +endobj +490 0 obj +63 +endobj +491 0 obj +53 +endobj +492 0 obj +41 +endobj +493 0 obj +18 +endobj +494 0 obj +65 +endobj +495 0 obj +18 +endobj +496 0 obj +26 +endobj +497 0 obj +52 +endobj +498 0 obj +62 +endobj +499 0 obj +24 +endobj +500 0 obj +58 +endobj +501 0 obj +66 +endobj +502 0 obj +50 +endobj +503 0 obj +79 +endobj +504 0 obj +51 +endobj +505 0 obj +39 +endobj +506 0 obj +64 +endobj +507 0 obj +111 +endobj +508 0 obj +68 +endobj +509 0 obj +72 +endobj +510 0 obj +44 +endobj +511 0 obj +77 +endobj +512 0 obj +24 +endobj +513 0 obj +86 +endobj +514 0 obj +77 +endobj +515 0 obj +121 +endobj +516 0 obj +58 +endobj +517 0 obj +88 +endobj +518 0 obj +50 +endobj +519 0 obj +85 +endobj +520 0 obj +99 +endobj +521 0 obj +49 +endobj +522 0 obj +11 +endobj +523 0 obj +28 +endobj +524 0 obj +40 +endobj +525 0 obj +31 +endobj +526 0 obj +26 +endobj +527 0 obj +37 +endobj +528 0 obj +39 +endobj +529 0 obj +31 +endobj +530 0 obj +36 +endobj +531 0 obj +36 +endobj +532 0 obj +49 +endobj +533 0 obj +35 +endobj +534 0 obj +36 +endobj +535 0 obj +40 +endobj +536 0 obj +36 +endobj +537 0 obj +49 +endobj +538 0 obj +34 +endobj +539 0 obj +49 +endobj +540 0 obj +23 +endobj +541 0 obj +57 +endobj +542 0 obj +47 +endobj +543 0 obj +42 +endobj +544 0 obj +65 +endobj +545 0 obj +57 +endobj +546 0 obj +37 +endobj +547 0 obj +48 +endobj +548 0 obj +17 +endobj +549 0 obj +60 +endobj +550 0 obj +54 +endobj +551 0 obj +42 +endobj +552 0 obj +51 +endobj +553 0 obj +28 +endobj +554 0 obj +52 +endobj +555 0 obj +39 +endobj +556 0 obj +58 +endobj +557 0 obj +17 +endobj +558 0 obj +39 +endobj +559 0 obj +43 +endobj +560 0 obj +72 +endobj +561 0 obj +24 +endobj +562 0 obj +49 +endobj +563 0 obj +61 +endobj +564 0 obj +22 +endobj +565 0 obj +41 +endobj +566 0 obj +56 +endobj +567 0 obj +48 +endobj +568 0 obj +41 +endobj +569 0 obj +39 +endobj +570 0 obj +70 +endobj +571 0 obj +30 +endobj +572 0 obj +13570 +endobj +573 0 obj +65 +endobj +574 0 obj +61 +endobj +575 0 obj +55 +endobj +576 0 obj +40 +endobj +577 0 obj +50 +endobj +578 0 obj +88 +endobj +579 0 obj +60 +endobj +580 0 obj +62 +endobj +581 0 obj +55 +endobj +582 0 obj +34 +endobj +583 0 obj +50 +endobj +584 0 obj +75 +endobj +585 0 obj +65 +endobj +586 0 obj +37 +endobj +587 0 obj +89 +endobj +588 0 obj +67 +endobj +589 0 obj +64 +endobj +590 0 obj +67 +endobj +591 0 obj +48 +endobj +592 0 obj +87 +endobj +593 0 obj +41 +endobj +594 0 obj +66 +endobj +595 0 obj +63 +endobj +596 0 obj +72 +endobj +597 0 obj +23 +endobj +598 0 obj +52 +endobj +599 0 obj +67 +endobj +600 0 obj +74 +endobj +601 0 obj +60 +endobj +602 0 obj +51 +endobj +603 0 obj +111 +endobj +604 0 obj +77 +endobj +605 0 obj +40 +endobj +606 0 obj +115 +endobj +607 0 obj +78 +endobj +608 0 obj +58 +endobj +609 0 obj +62 +endobj +610 0 obj +60 +endobj +611 0 obj +73 +endobj +612 0 obj +51 +endobj +613 0 obj +41 +endobj +614 0 obj +53 +endobj +615 0 obj +52 +endobj +616 0 obj +49 +endobj +617 0 obj +54 +endobj +618 0 obj +24 +endobj +619 0 obj +23 +endobj +620 0 obj +13263 +endobj +621 0 obj +47 +endobj +622 0 obj +46 +endobj +623 0 obj +48 +endobj +624 0 obj +52 +endobj +625 0 obj +53 +endobj +626 0 obj +39 +endobj +627 0 obj +63 +endobj +628 0 obj +98 +endobj +629 0 obj +43 +endobj +630 0 obj +52 +endobj +631 0 obj +60 +endobj +632 0 obj +86 +endobj +633 0 obj +45 +endobj +634 0 obj +42 +endobj +635 0 obj +66 +endobj +636 0 obj +58 +endobj +637 0 obj +39 +endobj +638 0 obj +55 +endobj +639 0 obj +74 +endobj +640 0 obj +20 +endobj +641 0 obj +51 +endobj +642 0 obj +47 +endobj +643 0 obj +46 +endobj +644 0 obj +24 +endobj +645 0 obj +46 +endobj +646 0 obj +42 +endobj +647 0 obj +49 +endobj +648 0 obj +30 +endobj +649 0 obj +45 +endobj +650 0 obj +52 +endobj +651 0 obj +65 +endobj +652 0 obj +11989 +endobj +653 0 obj +34 +endobj +654 0 obj +24 +endobj +655 0 obj +52 +endobj +656 0 obj +35 +endobj +657 0 obj +54 +endobj +658 0 obj +26 +endobj +659 0 obj +112 +endobj +660 0 obj +94 +endobj +661 0 obj +95 +endobj +662 0 obj +57 +endobj +663 0 obj +109 +endobj +664 0 obj +53 +endobj +665 0 obj +78 +endobj +666 0 obj +87 +endobj +667 0 obj +56 +endobj +668 0 obj +65 +endobj +669 0 obj +24 +endobj +670 0 obj +59 +endobj +671 0 obj +31 +endobj +672 0 obj +11475 +endobj +673 0 obj +90 +endobj +674 0 obj +19 +endobj +675 0 obj +36 +endobj +676 0 obj +100 +endobj +677 0 obj +39 +endobj +678 0 obj +66 +endobj +679 0 obj +24 +endobj +680 0 obj +64 +endobj +681 0 obj +18 +endobj +682 0 obj +111 +endobj +683 0 obj +67 +endobj +684 0 obj +59 +endobj +685 0 obj +74 +endobj +686 0 obj +83 +endobj +687 0 obj +63 +endobj +688 0 obj +37 +endobj +689 0 obj +43 +endobj +690 0 obj +50 +endobj +691 0 obj +70 +endobj +692 0 obj +111 +endobj +693 0 obj +10218 +endobj +694 0 obj +25 +endobj +695 0 obj +92 +endobj +696 0 obj +105 +endobj +697 0 obj +13587 +endobj +698 0 obj +88 +endobj +699 0 obj +123 +endobj +700 0 obj +27 +endobj +701 0 obj +56 +endobj +702 0 obj +33 +endobj +703 0 obj +46 +endobj +704 0 obj +74 +endobj +705 0 obj +33 +endobj +706 0 obj +33 +endobj +707 0 obj +44 +endobj +708 0 obj +13083 +endobj +709 0 obj +41 +endobj +710 0 obj +53 +endobj +711 0 obj +78 +endobj +712 0 obj +107 +endobj +713 0 obj +118 +endobj +714 0 obj +128 +endobj +715 0 obj +29 +endobj +716 0 obj +81 +endobj +717 0 obj +49 +endobj +718 0 obj +42 +endobj +719 0 obj +8636 +endobj +720 0 obj +109 +endobj +721 0 obj +82 +endobj +722 0 obj +46 +endobj +723 0 obj +10174 +endobj +724 0 obj +105 +endobj +725 0 obj +62 +endobj +726 0 obj +20 +endobj +727 0 obj +20 +endobj +728 0 obj +34 +endobj +729 0 obj +76 +endobj +730 0 obj +37 +endobj +731 0 obj +48 +endobj +732 0 obj +46 +endobj +733 0 obj +65 +endobj +734 0 obj +43 +endobj +735 0 obj +63 +endobj +736 0 obj +38 +endobj +737 0 obj +42 +endobj +738 0 obj +43 +endobj +739 0 obj +46 +endobj +740 0 obj +85 +endobj +741 0 obj +71 +endobj +742 0 obj +19 +endobj +743 0 obj +91 +endobj +744 0 obj +56 +endobj +745 0 obj +49 +endobj +746 0 obj +73 +endobj +747 0 obj +59 +endobj +748 0 obj +64 +endobj +749 0 obj +58 +endobj +750 0 obj +87 +endobj +751 0 obj +53 +endobj +752 0 obj +25 +endobj +753 0 obj +57 +endobj +754 0 obj +82 +endobj +755 0 obj +59 +endobj +756 0 obj +60 +endobj +757 0 obj +72 +endobj +758 0 obj +64 +endobj +759 0 obj +11963 +endobj +760 0 obj +53 +endobj +761 0 obj +41 +endobj +762 0 obj +98 +endobj +763 0 obj +71 +endobj +764 0 obj +90 +endobj +765 0 obj +101 +endobj +766 0 obj +80 +endobj +767 0 obj +57 +endobj +768 0 obj +19 +endobj +769 0 obj +68 +endobj +770 0 obj +75 +endobj +771 0 obj +82 +endobj +772 0 obj +42 +endobj +773 0 obj +26 +endobj +774 0 obj +78 +endobj +775 0 obj +18 +endobj +776 0 obj +81 +endobj +777 0 obj +9355 +endobj +778 0 obj +79 +endobj +779 0 obj +66 +endobj +780 0 obj +61 +endobj +781 0 obj +90 +endobj +782 0 obj +66 +endobj +783 0 obj +29 +endobj +784 0 obj +91 +endobj +785 0 obj +19 +endobj +786 0 obj +86 +endobj +787 0 obj +28 +endobj +788 0 obj +76 +endobj +789 0 obj +55 +endobj +790 0 obj +82 +endobj +791 0 obj +56 +endobj +792 0 obj +35 +endobj +793 0 obj +75 +endobj +794 0 obj +72 +endobj +795 0 obj +144 +endobj +796 0 obj +142 +endobj +797 0 obj +194 +endobj +798 0 obj +90 +endobj +799 0 obj +30 +endobj +800 0 obj +151 +endobj +801 0 obj +69 +endobj +802 0 obj +86 +endobj +803 0 obj +121 +endobj +804 0 obj +272 +endobj +805 0 obj +14 +endobj +806 0 obj +217 +endobj +807 0 obj +148 +endobj +808 0 obj +137 +endobj +809 0 obj +73 +endobj +810 0 obj +214 +endobj +811 0 obj +213 +endobj +812 0 obj +131 +endobj +813 0 obj +220 +endobj +814 0 obj +84 +endobj +815 0 obj +78 +endobj +816 0 obj +268 +endobj +817 0 obj +231 +endobj +818 0 obj +127 +endobj +819 0 obj +79 +endobj +820 0 obj +40 +endobj +821 0 obj +77 +endobj +822 0 obj +837 +endobj +823 0 obj +215 +endobj +824 0 obj +225 +endobj +825 0 obj +112 +endobj +xref +0 826 +0000000000 65535 f +0000000015 00000 n +0000000112 00000 n +0000000158 00000 n +0000000340 00000 n +0000000379 00000 n +0000000401 00000 n +0000019926 00000 n +0000029925 00000 n +0000030142 00000 n +0000030392 00000 n +0000030659 00000 n +0000030935 00000 n +0000031188 00000 n +0000031471 00000 n +0000031769 00000 n +0000032034 00000 n +0000032275 00000 n +0000032532 00000 n +0000032826 00000 n +0000033116 00000 n +0000033400 00000 n +0000033621 00000 n +0000033905 00000 n +0000034171 00000 n +0000034378 00000 n +0000034675 00000 n +0000034949 00000 n +0000035178 00000 n +0000035414 00000 n +0000035659 00000 n +0000035910 00000 n +0000036124 00000 n +0000036371 00000 n +0000036667 00000 n +0000036922 00000 n +0000037185 00000 n +0000037430 00000 n +0000037667 00000 n +0000037924 00000 n +0000038172 00000 n +0000038420 00000 n +0000038665 00000 n +0000038929 00000 n +0000039166 00000 n +0000039385 00000 n +0000039633 00000 n +0000039857 00000 n +0000040079 00000 n +0000040317 00000 n +0000040553 00000 n +0000040776 00000 n +0000041019 00000 n +0000041251 00000 n +0000041511 00000 n +0000041751 00000 n +0000041983 00000 n +0000042217 00000 n +0000042450 00000 n +0000042697 00000 n +0000042922 00000 n +0000043193 00000 n +0000043437 00000 n +0000043669 00000 n +0000043938 00000 n +0000044153 00000 n +0000044404 00000 n +0000044650 00000 n +0000044906 00000 n +0000045161 00000 n +0000045437 00000 n +0000045706 00000 n +0000045984 00000 n +0000046238 00000 n +0000046482 00000 n +0000046714 00000 n +0000046921 00000 n +0000047177 00000 n +0000047385 00000 n +0000047601 00000 n +0000047844 00000 n +0000048097 00000 n +0000048312 00000 n +0000048561 00000 n +0000048818 00000 n +0000049059 00000 n +0000049329 00000 n +0000049571 00000 n +0000049801 00000 n +0000050056 00000 n +0000050358 00000 n +0000050617 00000 n +0000050880 00000 n +0000051115 00000 n +0000051383 00000 n +0000051598 00000 n +0000051875 00000 n +0000052143 00000 n +0000052455 00000 n +0000052704 00000 n +0000052983 00000 n +0000053225 00000 n +0000053502 00000 n +0000053793 00000 n +0000054034 00000 n +0000054221 00000 n +0000054440 00000 n +0000054672 00000 n +0000054896 00000 n +0000055114 00000 n +0000055344 00000 n +0000055576 00000 n +0000055800 00000 n +0000056029 00000 n +0000056258 00000 n +0000056500 00000 n +0000056728 00000 n +0000056957 00000 n +0000057190 00000 n +0000057419 00000 n +0000057661 00000 n +0000057888 00000 n +0000058130 00000 n +0000058345 00000 n +0000058595 00000 n +0000058835 00000 n +0000059070 00000 n +0000059328 00000 n +0000059578 00000 n +0000059808 00000 n +0000060049 00000 n +0000060257 00000 n +0000060510 00000 n +0000060757 00000 n +0000060992 00000 n +0000061236 00000 n +0000061457 00000 n +0000061702 00000 n +0000061934 00000 n +0000062185 00000 n +0000062393 00000 n +0000062625 00000 n +0000062861 00000 n +0000063126 00000 n +0000063342 00000 n +0000063584 00000 n +0000063838 00000 n +0000064052 00000 n +0000064286 00000 n +0000064535 00000 n +0000064776 00000 n +0000065010 00000 n +0000065242 00000 n +0000065505 00000 n +0000065728 00000 n +0000090887 00000 n +0000104535 00000 n +0000104793 00000 n +0000105047 00000 n +0000105295 00000 n +0000105527 00000 n +0000105770 00000 n +0000106051 00000 n +0000106304 00000 n +0000106559 00000 n +0000106807 00000 n +0000107033 00000 n +0000107276 00000 n +0000107544 00000 n +0000107802 00000 n +0000108032 00000 n +0000108314 00000 n +0000108574 00000 n +0000108831 00000 n +0000109091 00000 n +0000109332 00000 n +0000109612 00000 n +0000109846 00000 n +0000110105 00000 n +0000110361 00000 n +0000110626 00000 n +0000110841 00000 n +0000111086 00000 n +0000111346 00000 n +0000111613 00000 n +0000111866 00000 n +0000112110 00000 n +0000112414 00000 n +0000112684 00000 n +0000112917 00000 n +0000113225 00000 n +0000113496 00000 n +0000113747 00000 n +0000114002 00000 n +0000114255 00000 n +0000114521 00000 n +0000114765 00000 n +0000114999 00000 n +0000115244 00000 n +0000115489 00000 n +0000115731 00000 n +0000115977 00000 n +0000116193 00000 n +0000116408 00000 n +0000143811 00000 n +0000157152 00000 n +0000157392 00000 n +0000157631 00000 n +0000157872 00000 n +0000158117 00000 n +0000158363 00000 n +0000158595 00000 n +0000158851 00000 n +0000159142 00000 n +0000159378 00000 n +0000159623 00000 n +0000159876 00000 n +0000160155 00000 n +0000160393 00000 n +0000160628 00000 n +0000160887 00000 n +0000161138 00000 n +0000161370 00000 n +0000161618 00000 n +0000161885 00000 n +0000162097 00000 n +0000162341 00000 n +0000162581 00000 n +0000162820 00000 n +0000163037 00000 n +0000163276 00000 n +0000163511 00000 n +0000163753 00000 n +0000163975 00000 n +0000164213 00000 n +0000164458 00000 n +0000164716 00000 n +0000189223 00000 n +0000201290 00000 n +0000201517 00000 n +0000201734 00000 n +0000201979 00000 n +0000202207 00000 n +0000202454 00000 n +0000202672 00000 n +0000202977 00000 n +0000203264 00000 n +0000203552 00000 n +0000203802 00000 n +0000204104 00000 n +0000204350 00000 n +0000204621 00000 n +0000204901 00000 n +0000205150 00000 n +0000205408 00000 n +0000205625 00000 n +0000205877 00000 n +0000206101 00000 n +0000220148 00000 n +0000231701 00000 n +0000231984 00000 n +0000232194 00000 n +0000232423 00000 n +0000232716 00000 n +0000232948 00000 n +0000233207 00000 n +0000233424 00000 n +0000233681 00000 n +0000233891 00000 n +0000234195 00000 n +0000234455 00000 n +0000234707 00000 n +0000234974 00000 n +0000235250 00000 n +0000235506 00000 n +0000235736 00000 n +0000235972 00000 n +0000236215 00000 n +0000236478 00000 n +0000236782 00000 n +0000248673 00000 n +0000258969 00000 n +0000259186 00000 n +0000259471 00000 n +0000259769 00000 n +0000287049 00000 n +0000300714 00000 n +0000300995 00000 n +0000301311 00000 n +0000301530 00000 n +0000301779 00000 n +0000302005 00000 n +0000302244 00000 n +0000302511 00000 n +0000302737 00000 n +0000302963 00000 n +0000303200 00000 n +0000328806 00000 n +0000341967 00000 n +0000342201 00000 n +0000342447 00000 n +0000342718 00000 n +0000343018 00000 n +0000343329 00000 n +0000343650 00000 n +0000343872 00000 n +0000344146 00000 n +0000344388 00000 n +0000344623 00000 n +0000355462 00000 n +0000364176 00000 n +0000364478 00000 n +0000364753 00000 n +0000364992 00000 n +0000378287 00000 n +0000388539 00000 n +0000388837 00000 n +0000389092 00000 n +0000389304 00000 n +0000389516 00000 n +0000389743 00000 n +0000390012 00000 n +0000390242 00000 n +0000390483 00000 n +0000390722 00000 n +0000390980 00000 n +0000391216 00000 n +0000391472 00000 n +0000391703 00000 n +0000391938 00000 n +0000392174 00000 n +0000392413 00000 n +0000392691 00000 n +0000392955 00000 n +0000393166 00000 n +0000393450 00000 n +0000393699 00000 n +0000393941 00000 n +0000394207 00000 n +0000394459 00000 n +0000394716 00000 n +0000394967 00000 n +0000395247 00000 n +0000395493 00000 n +0000395710 00000 n +0000395960 00000 n +0000396235 00000 n +0000396487 00000 n +0000396740 00000 n +0000397005 00000 n +0000397262 00000 n +0000420172 00000 n +0000432213 00000 n +0000432459 00000 n +0000432693 00000 n +0000432984 00000 n +0000433248 00000 n +0000433531 00000 n +0000433825 00000 n +0000434098 00000 n +0000434348 00000 n +0000434559 00000 n +0000434820 00000 n +0000435088 00000 n +0000435363 00000 n +0000435598 00000 n +0000435816 00000 n +0000436087 00000 n +0000436296 00000 n +0000436570 00000 n +0000454994 00000 n +0000464427 00000 n +0000464699 00000 n +0000464958 00000 n +0000465212 00000 n +0000465495 00000 n +0000465754 00000 n +0000465975 00000 n +0000466259 00000 n +0000466470 00000 n +0000466749 00000 n +0000466969 00000 n +0000467238 00000 n +0000467486 00000 n +0000467761 00000 n +0000468010 00000 n +0000468238 00000 n +0000468506 00000 n +0000468771 00000 n +0000469108 00000 n +0000469443 00000 n +0000469830 00000 n +0000470113 00000 n +0000470336 00000 n +0000470680 00000 n +0000470942 00000 n +0000471221 00000 n +0000471535 00000 n +0000472000 00000 n +0000472205 00000 n +0000472615 00000 n +0000472956 00000 n +0000473286 00000 n +0000473552 00000 n +0000473959 00000 n +0000474365 00000 n +0000474689 00000 n +0000475102 00000 n +0000475379 00000 n +0000475650 00000 n +0000476111 00000 n +0000476535 00000 n +0000476855 00000 n +0000477127 00000 n +0000477360 00000 n +0000477630 00000 n +0000479067 00000 n +0000479982 00000 n +0000480390 00000 n +0000480808 00000 n +0000481113 00000 n +0000481242 00000 n +0000482569 00000 n +0000482694 00000 n +0000484142 00000 n +0000484289 00000 n +0000484311 00000 n +0000484331 00000 n +0000484351 00000 n +0000484371 00000 n +0000484391 00000 n +0000484411 00000 n +0000484431 00000 n +0000484452 00000 n +0000484472 00000 n +0000484492 00000 n +0000484512 00000 n +0000484533 00000 n +0000484553 00000 n +0000484573 00000 n +0000484593 00000 n +0000484613 00000 n +0000484633 00000 n +0000484653 00000 n +0000484674 00000 n +0000484694 00000 n +0000484714 00000 n +0000484734 00000 n +0000484754 00000 n +0000484774 00000 n +0000484794 00000 n +0000484814 00000 n +0000484835 00000 n +0000484855 00000 n +0000484875 00000 n +0000484895 00000 n +0000484915 00000 n +0000484935 00000 n +0000484955 00000 n +0000484975 00000 n +0000484995 00000 n +0000485015 00000 n +0000485035 00000 n +0000485055 00000 n +0000485075 00000 n +0000485095 00000 n +0000485115 00000 n +0000485135 00000 n +0000485155 00000 n +0000485175 00000 n +0000485195 00000 n +0000485215 00000 n +0000485235 00000 n +0000485255 00000 n +0000485275 00000 n +0000485295 00000 n +0000485315 00000 n +0000485335 00000 n +0000485355 00000 n +0000485375 00000 n +0000485395 00000 n +0000485415 00000 n +0000485435 00000 n +0000485455 00000 n +0000485475 00000 n +0000485495 00000 n +0000485515 00000 n +0000485535 00000 n +0000485555 00000 n +0000485575 00000 n +0000485595 00000 n +0000485615 00000 n +0000485635 00000 n +0000485655 00000 n +0000485675 00000 n +0000485695 00000 n +0000485715 00000 n +0000485735 00000 n +0000485755 00000 n +0000485775 00000 n +0000485795 00000 n +0000485815 00000 n +0000485835 00000 n +0000485855 00000 n +0000485875 00000 n +0000485895 00000 n +0000485915 00000 n +0000485935 00000 n +0000485956 00000 n +0000485976 00000 n +0000485996 00000 n +0000486016 00000 n +0000486036 00000 n +0000486056 00000 n +0000486076 00000 n +0000486096 00000 n +0000486117 00000 n +0000486137 00000 n +0000486157 00000 n +0000486177 00000 n +0000486197 00000 n +0000486217 00000 n +0000486237 00000 n +0000486257 00000 n +0000486277 00000 n +0000486297 00000 n +0000486317 00000 n +0000486337 00000 n +0000486357 00000 n +0000486377 00000 n +0000486397 00000 n +0000486417 00000 n +0000486437 00000 n +0000486457 00000 n +0000486477 00000 n +0000486497 00000 n +0000486517 00000 n +0000486537 00000 n +0000486557 00000 n +0000486577 00000 n +0000486597 00000 n +0000486617 00000 n +0000486637 00000 n +0000486657 00000 n +0000486677 00000 n +0000486697 00000 n +0000486717 00000 n +0000486737 00000 n +0000486757 00000 n +0000486777 00000 n +0000486797 00000 n +0000486817 00000 n +0000486837 00000 n +0000486857 00000 n +0000486877 00000 n +0000486897 00000 n +0000486917 00000 n +0000486937 00000 n +0000486957 00000 n +0000486977 00000 n +0000486997 00000 n +0000487017 00000 n +0000487037 00000 n +0000487057 00000 n +0000487077 00000 n +0000487097 00000 n +0000487117 00000 n +0000487137 00000 n +0000487157 00000 n +0000487177 00000 n +0000487197 00000 n +0000487217 00000 n +0000487237 00000 n +0000487260 00000 n +0000487280 00000 n +0000487300 00000 n +0000487320 00000 n +0000487340 00000 n +0000487360 00000 n +0000487380 00000 n +0000487400 00000 n +0000487420 00000 n +0000487440 00000 n +0000487460 00000 n +0000487480 00000 n +0000487500 00000 n +0000487520 00000 n +0000487540 00000 n +0000487560 00000 n +0000487580 00000 n +0000487600 00000 n +0000487620 00000 n +0000487640 00000 n +0000487660 00000 n +0000487680 00000 n +0000487700 00000 n +0000487720 00000 n +0000487740 00000 n +0000487760 00000 n +0000487780 00000 n +0000487800 00000 n +0000487820 00000 n +0000487840 00000 n +0000487860 00000 n +0000487881 00000 n +0000487901 00000 n +0000487921 00000 n +0000487942 00000 n +0000487962 00000 n +0000487982 00000 n +0000488002 00000 n +0000488022 00000 n +0000488042 00000 n +0000488062 00000 n +0000488082 00000 n +0000488102 00000 n +0000488122 00000 n +0000488142 00000 n +0000488162 00000 n +0000488182 00000 n +0000488202 00000 n +0000488225 00000 n +0000488245 00000 n +0000488265 00000 n +0000488285 00000 n +0000488305 00000 n +0000488325 00000 n +0000488345 00000 n +0000488365 00000 n +0000488385 00000 n +0000488405 00000 n +0000488425 00000 n +0000488445 00000 n +0000488465 00000 n +0000488485 00000 n +0000488505 00000 n +0000488525 00000 n +0000488545 00000 n +0000488565 00000 n +0000488585 00000 n +0000488605 00000 n +0000488625 00000 n +0000488645 00000 n +0000488665 00000 n +0000488685 00000 n +0000488705 00000 n +0000488725 00000 n +0000488745 00000 n +0000488765 00000 n +0000488785 00000 n +0000488805 00000 n +0000488825 00000 n +0000488845 00000 n +0000488868 00000 n +0000488888 00000 n +0000488908 00000 n +0000488928 00000 n +0000488948 00000 n +0000488968 00000 n +0000488988 00000 n +0000489009 00000 n +0000489029 00000 n +0000489049 00000 n +0000489069 00000 n +0000489090 00000 n +0000489110 00000 n +0000489130 00000 n +0000489150 00000 n +0000489170 00000 n +0000489190 00000 n +0000489210 00000 n +0000489230 00000 n +0000489250 00000 n +0000489273 00000 n +0000489293 00000 n +0000489313 00000 n +0000489333 00000 n +0000489354 00000 n +0000489374 00000 n +0000489394 00000 n +0000489414 00000 n +0000489434 00000 n +0000489454 00000 n +0000489475 00000 n +0000489495 00000 n +0000489515 00000 n +0000489535 00000 n +0000489555 00000 n +0000489575 00000 n +0000489595 00000 n +0000489615 00000 n +0000489635 00000 n +0000489655 00000 n +0000489676 00000 n +0000489699 00000 n +0000489719 00000 n +0000489739 00000 n +0000489760 00000 n +0000489783 00000 n +0000489803 00000 n +0000489824 00000 n +0000489844 00000 n +0000489864 00000 n +0000489884 00000 n +0000489904 00000 n +0000489924 00000 n +0000489944 00000 n +0000489964 00000 n +0000489984 00000 n +0000490007 00000 n +0000490027 00000 n +0000490047 00000 n +0000490067 00000 n +0000490088 00000 n +0000490109 00000 n +0000490130 00000 n +0000490150 00000 n +0000490170 00000 n +0000490190 00000 n +0000490210 00000 n +0000490232 00000 n +0000490253 00000 n +0000490273 00000 n +0000490293 00000 n +0000490316 00000 n +0000490337 00000 n +0000490357 00000 n +0000490377 00000 n +0000490397 00000 n +0000490417 00000 n +0000490437 00000 n +0000490457 00000 n +0000490477 00000 n +0000490497 00000 n +0000490517 00000 n +0000490537 00000 n +0000490557 00000 n +0000490577 00000 n +0000490597 00000 n +0000490617 00000 n +0000490637 00000 n +0000490657 00000 n +0000490677 00000 n +0000490697 00000 n +0000490717 00000 n +0000490737 00000 n +0000490757 00000 n +0000490777 00000 n +0000490797 00000 n +0000490817 00000 n +0000490837 00000 n +0000490857 00000 n +0000490877 00000 n +0000490897 00000 n +0000490917 00000 n +0000490937 00000 n +0000490957 00000 n +0000490977 00000 n +0000490997 00000 n +0000491017 00000 n +0000491040 00000 n +0000491060 00000 n +0000491080 00000 n +0000491100 00000 n +0000491120 00000 n +0000491140 00000 n +0000491161 00000 n +0000491181 00000 n +0000491201 00000 n +0000491221 00000 n +0000491241 00000 n +0000491261 00000 n +0000491281 00000 n +0000491301 00000 n +0000491321 00000 n +0000491341 00000 n +0000491361 00000 n +0000491381 00000 n +0000491403 00000 n +0000491423 00000 n +0000491443 00000 n +0000491463 00000 n +0000491483 00000 n +0000491503 00000 n +0000491523 00000 n +0000491543 00000 n +0000491563 00000 n +0000491583 00000 n +0000491603 00000 n +0000491623 00000 n +0000491643 00000 n +0000491663 00000 n +0000491683 00000 n +0000491703 00000 n +0000491723 00000 n +0000491743 00000 n +0000491764 00000 n +0000491785 00000 n +0000491806 00000 n +0000491826 00000 n +0000491846 00000 n +0000491867 00000 n +0000491887 00000 n +0000491907 00000 n +0000491928 00000 n +0000491949 00000 n +0000491969 00000 n +0000491990 00000 n +0000492011 00000 n +0000492032 00000 n +0000492052 00000 n +0000492073 00000 n +0000492094 00000 n +0000492115 00000 n +0000492136 00000 n +0000492156 00000 n +0000492176 00000 n +0000492197 00000 n +0000492218 00000 n +0000492239 00000 n +0000492259 00000 n +0000492279 00000 n +0000492299 00000 n +0000492320 00000 n +0000492341 00000 n +0000492362 00000 n +trailer +<< +/Size 826 +/Root 1 0 R +/Info 424 0 R +>> +startxref +492383 +%%EOF diff --git a/hash/Replacements schemes for trasposition tables.pdf b/hash/Replacements schemes for trasposition tables.pdf new file mode 100644 index 0000000..719abb8 --- /dev/null +++ b/hash/Replacements schemes for trasposition tables.pdf @@ -0,0 +1,11065 @@ +%PDF-1.2 +%ÐÓÔÌ +1 0 obj +<< +/Type /Catalog +/Pages 3 0 R +/Outlines 2 0 R +/Dests 5 0 R +/PageMode /UseNone +>> +endobj +2 0 obj +<< +/Type /Outlines +/Count 0 +>> +endobj +3 0 obj +<< +/Type /Pages +/MediaBox [ 0 0 595 842 ] +/Count 14 +/Kids [ 6 0 R 171 0 R 209 0 R 244 0 R 281 0 R 288 0 R 324 0 R 332 0 R 345 0 R 349 0 R 354 0 R 363 0 R 412 0 R 447 0 R ] +>> +endobj +4 0 obj +[ /PDF /Text /ImageC ] +endobj +5 0 obj +<< + +>> +endobj +6 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 480 0 R >> /XObject << /Im1 8 0 R /Im2 9 0 R /Im3 10 0 R /Im4 11 0 R /Im5 12 0 R /Im6 13 0 R /Im2 9 0 R /Im7 14 0 R /Im2 9 0 R /Im8 15 0 R /Im9 16 0 R /Im10 17 0 R /Im6 13 0 R /Im11 18 0 R /Im2 9 0 R /Im7 14 0 R /Im2 9 0 R /Im12 19 0 R /Im13 20 0 R /Im14 21 0 R /Im15 22 0 R /Im16 23 0 R /Im15 22 0 R /Im5 12 0 R /Im8 15 0 R /Im12 19 0 R /Im3 10 0 R /Im14 21 0 R /Im12 19 0 R /Im17 24 0 R /Im9 16 0 R /Im17 24 0 R /Im14 21 0 R /Im8 15 0 R /Im16 23 0 R /Im5 12 0 R /Im18 25 0 R /Im4 11 0 R /Im2 9 0 R /Im12 19 0 R /Im19 26 0 R /Im20 27 0 R /Im21 28 0 R /Im20 27 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im25 32 0 R /Im26 33 0 R /Im24 31 0 R /Im23 30 0 R /Im27 34 0 R /Im28 35 0 R /Im20 27 0 R /Im29 36 0 R /Im20 27 0 R /Im30 37 0 R /Im20 27 0 R /Im21 28 0 R /Im20 27 0 R /Im31 38 0 R /Im32 39 0 R /Im33 40 0 R /Im24 31 0 R /Im23 30 0 R /Im34 41 0 R /Im32 39 0 R /Im35 42 0 R /Im26 33 0 R /Im36 43 0 R /Im37 44 0 R /Im38 45 0 R /Im30 37 0 R /Im20 27 0 R /Im28 35 0 R /Im20 27 0 R /Im39 46 0 R /Im36 43 0 R /Im37 44 0 R /Im38 45 0 R /Im24 31 0 R /Im37 44 0 R /Im30 37 0 R /Im24 31 0 R /Im23 30 0 R /Im32 39 0 R /Im26 33 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im45 52 0 R /Im46 53 0 R /Im47 54 0 R /Im48 55 0 R /Im44 51 0 R /Im49 56 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im52 59 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im53 60 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im43 50 0 R /Im56 63 0 R /Im57 64 0 R /Im58 65 0 R /Im50 57 0 R /Im59 66 0 R /Im56 63 0 R /Im60 67 0 R /Im50 57 0 R /Im56 63 0 R /Im53 60 0 R /Im61 68 0 R /Im62 69 0 R /Im43 50 0 R /Im44 51 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im64 71 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im66 73 0 R /Im45 52 0 R /Im42 49 0 R /Im61 68 0 R /Im61 68 0 R /Im42 49 0 R /Im67 74 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im49 56 0 R /Im44 51 0 R /Im64 71 0 R /Im65 72 0 R /Im46 53 0 R /Im47 54 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im46 53 0 R /Im61 68 0 R /Im65 72 0 R /Im53 60 0 R /Im51 58 0 R /Im71 78 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im53 60 0 R /Im42 49 0 R /Im45 52 0 R /Im66 73 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im48 55 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im72 79 0 R /Im73 80 0 R /Im63 70 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im68 75 0 R /Im66 73 0 R /Im48 55 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im68 75 0 R /Im43 50 0 R /Im68 75 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im61 68 0 R /Im42 49 0 R /Im55 62 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im53 60 0 R /Im42 49 0 R /Im45 52 0 R /Im66 73 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im43 50 0 R /Im46 53 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im49 56 0 R /Im43 50 0 R /Im68 75 0 R /Im70 77 0 R /Im74 81 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im44 51 0 R /Im62 69 0 R /Im61 68 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im45 52 0 R /Im64 71 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im49 56 0 R /Im47 54 0 R /Im62 69 0 R /Im53 60 0 R /Im53 60 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im62 69 0 R /Im47 54 0 R /Im47 54 0 R /Im68 75 0 R /Im45 52 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im62 69 0 R /Im46 53 0 R /Im47 54 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im70 77 0 R /Im51 58 0 R /Im61 68 0 R /Im42 49 0 R /Im55 62 0 R /Im51 58 0 R /Im75 82 0 R /Im48 55 0 R /Im46 53 0 R /Im47 54 0 R /Im48 55 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im53 60 0 R /Im42 49 0 R /Im47 54 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im49 56 0 R /Im68 75 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im43 50 0 R /Im62 69 0 R /Im61 68 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im53 60 0 R /Im42 49 0 R /Im47 54 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im44 51 0 R /Im46 53 0 R /Im47 54 0 R /Im53 60 0 R /Im51 58 0 R /Im47 54 0 R /Im62 69 0 R /Im61 68 0 R /Im65 72 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im42 49 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im43 50 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im54 61 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im53 60 0 R /Im42 49 0 R /Im47 54 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im49 56 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im69 76 0 R /Im68 75 0 R /Im54 61 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im71 78 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im76 83 0 R /Im51 58 0 R /Im49 56 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im62 69 0 R /Im61 68 0 R /Im51 58 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im61 68 0 R /Im46 53 0 R /Im55 62 0 R /Im55 62 0 R /Im53 60 0 R /Im51 58 0 R /Im71 78 0 R /Im66 73 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im72 79 0 R /Im56 63 0 R /Im44 51 0 R /Im75 82 0 R /Im62 69 0 R /Im71 78 0 R /Im53 60 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im53 60 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im49 56 0 R /Im68 75 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im68 75 0 R /Im61 68 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im54 61 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im70 77 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im51 58 0 R /Im47 54 0 R /Im46 53 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im47 54 0 R /Im45 52 0 R /Im46 53 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im49 56 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im51 58 0 R /Im55 62 0 R /Im70 77 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im46 53 0 R /Im43 50 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im63 70 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im45 52 0 R /Im51 58 0 R /Im47 54 0 R /Im62 69 0 R /Im61 68 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im55 62 0 R /Im51 58 0 R /Im55 62 0 R /Im72 79 0 R /Im77 84 0 R /Im78 85 0 R /Im79 86 0 R /Im80 87 0 R /Im81 88 0 R /Im82 89 0 R /Im83 90 0 R /Im84 91 0 R /Im85 92 0 R /Im80 87 0 R /Im86 93 0 R /Im82 89 0 R /Im79 86 0 R /Im60 67 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im66 73 0 R /Im45 52 0 R /Im42 49 0 R /Im61 68 0 R /Im43 50 0 R /Im42 49 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im64 71 0 R /Im76 83 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im75 82 0 R /Im48 55 0 R /Im46 53 0 R /Im53 60 0 R /Im51 58 0 R /Im70 77 0 R /Im68 75 0 R /Im46 53 0 R /Im53 60 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im33 40 0 R /Im23 30 0 R /Im24 31 0 R /Im24 31 0 R /Im87 94 0 R /Im72 79 0 R /Im88 95 0 R /Im62 69 0 R /Im75 82 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im49 56 0 R /Im42 49 0 R /Im47 54 0 R /Im53 60 0 R /Im62 69 0 R /Im43 50 0 R /Im51 58 0 R /Im45 52 0 R /Im53 60 0 R /Im62 69 0 R /Im62 69 0 R /Im67 74 0 R /Im43 50 0 R /Im48 55 0 R /Im62 69 0 R /Im75 82 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im43 50 0 R /Im65 72 0 R /Im42 49 0 R /Im47 54 0 R /Im51 58 0 R /Im47 54 0 R /Im62 69 0 R /Im68 75 0 R /Im53 60 0 R /Im55 62 0 R /Im70 77 0 R /Im51 58 0 R /Im44 51 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im70 77 0 R /Im51 58 0 R /Im51 58 0 R /Im89 96 0 R /Im65 72 0 R /Im53 60 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im70 77 0 R /Im64 71 0 R /Im90 97 0 R /Im23 30 0 R /Im36 43 0 R /Im91 98 0 R /Im92 99 0 R /Im87 94 0 R /Im49 56 0 R /Im55 62 0 R /Im68 75 0 R /Im51 58 0 R /Im44 51 0 R /Im62 69 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im69 76 0 R /Im42 49 0 R /Im47 54 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im47 54 0 R /Im42 49 0 R /Im54 61 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im70 77 0 R /Im64 71 0 R /Im43 50 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im53 60 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im72 79 0 R /Im58 65 0 R /Im68 75 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im53 60 0 R /Im44 51 0 R /Im42 49 0 R /Im54 61 0 R /Im44 51 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im67 74 0 R /Im54 61 0 R /Im62 69 0 R /Im75 82 0 R /Im54 61 0 R /Im42 49 0 R /Im43 50 0 R /Im33 40 0 R /Im23 30 0 R /Im36 43 0 R /Im37 44 0 R /Im87 94 0 R /Im91 98 0 R /Im93 100 0 R /Im87 94 0 R /Im32 39 0 R /Im33 40 0 R /Im32 39 0 R /Im93 100 0 R /Im37 44 0 R /Im87 94 0 R /Im72 79 0 R /Im94 101 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im42 49 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im66 73 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im76 83 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im47 54 0 R /Im42 49 0 R /Im54 61 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im68 75 0 R /Im47 54 0 R /Im51 58 0 R /Im55 62 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im46 53 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im64 71 0 R /Im46 53 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im45 52 0 R /Im51 58 0 R /Im63 70 0 R /Im46 53 0 R /Im62 69 0 R /Im68 75 0 R /Im43 50 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im53 60 0 R /Im44 51 0 R /Im43 50 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im53 60 0 R /Im53 60 0 R /Im42 49 0 R /Im63 70 0 R /Im42 49 0 R /Im46 53 0 R /Im53 60 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im47 54 0 R /Im42 49 0 R /Im54 61 0 R /Im70 77 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im42 49 0 R /Im45 52 0 R /Im66 73 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im45 52 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im71 78 0 R /Im42 49 0 R /Im47 54 0 R /Im47 54 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im33 40 0 R /Im23 30 0 R /Im36 43 0 R /Im37 44 0 R /Im87 94 0 R /Im91 98 0 R /Im93 100 0 R /Im87 94 0 R /Im32 39 0 R /Im33 40 0 R /Im32 39 0 R /Im93 100 0 R /Im37 44 0 R /Im33 40 0 R /Im36 43 0 R /Im95 102 0 R /Im96 103 0 R /Im24 31 0 R /Im97 104 0 R /Im98 105 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im70 77 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im24 31 0 R /Im33 40 0 R /Im36 43 0 R /Im96 103 0 R /Im20 27 0 R /Im49 56 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im102 109 0 R /Im103 110 0 R /Im58 65 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im56 63 0 R /Im44 51 0 R /Im67 74 0 R /Im46 53 0 R /Im54 61 0 R /Im49 56 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im105 112 0 R /Im106 113 0 R /Im72 79 0 R /Im59 66 0 R /Im51 58 0 R /Im53 60 0 R /Im51 58 0 R /Im63 70 0 R /Im42 49 0 R /Im54 61 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im64 71 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im53 60 0 R /Im68 75 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im70 77 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im51 58 0 R /Im65 72 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im70 77 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im72 79 0 R /Im58 65 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im75 82 0 R /Im51 58 0 R /Im42 49 0 R /Im55 62 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im44 51 0 R /Im62 69 0 R /Im107 114 0 R /Im71 78 0 R /Im108 115 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im97 104 0 R /Im109 116 0 R /Im54 61 0 R /Im68 75 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im41 48 0 R /Im62 69 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im49 56 0 R /Im99 106 0 R /Im100 107 0 R /Im102 109 0 R /Im110 117 0 R /Im106 113 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im54 61 0 R /Im51 58 0 R /Im51 58 0 R /Im55 62 0 R /Im54 61 0 R /Im62 69 0 R /Im44 51 0 R /Im70 77 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im68 75 0 R /Im51 58 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im51 58 0 R /Im49 56 0 R /Im70 77 0 R /Im68 75 0 R /Im44 51 0 R /Im61 68 0 R /Im42 49 0 R /Im64 71 0 R /Im70 77 0 R /Im51 58 0 R /Im42 49 0 R /Im53 60 0 R /Im62 69 0 R /Im75 82 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im45 52 0 R /Im68 75 0 R /Im65 72 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im70 77 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im72 79 0 R /Im94 101 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im68 75 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im46 53 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im55 62 0 R /Im51 58 0 R /Im51 58 0 R /Im65 72 0 R /Im51 58 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im61 68 0 R /Im46 53 0 R /Im54 61 0 R /Im46 53 0 R /Im61 68 0 R /Im42 49 0 R /Im53 60 0 R /Im71 78 0 R /Im75 82 0 R /Im46 53 0 R /Im54 61 0 R /Im55 62 0 R /Im62 69 0 R /Im75 82 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im49 56 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im61 68 0 R /Im42 49 0 R /Im64 71 0 R /Im43 50 0 R /Im46 53 0 R /Im66 73 0 R /Im54 61 0 R /Im46 53 0 R /Im111 118 0 R /Im47 54 0 R /Im42 49 0 R /Im54 61 0 R /Im44 51 0 R /Im53 60 0 R /Im64 71 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im68 75 0 R /Im47 54 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im112 119 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im97 104 0 R /Im73 80 0 R /Im70 77 0 R /Im51 58 0 R /Im53 60 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im49 56 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im101 108 0 R /Im103 110 0 R /Im57 64 0 R /Im51 58 0 R /Im45 52 0 R /Im53 60 0 R /Im46 53 0 R /Im54 61 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im73 80 0 R /Im70 77 0 R /Im51 58 0 R /Im53 60 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im49 56 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im100 107 0 R /Im103 110 0 R /Im58 65 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im51 58 0 R /Im112 119 0 R /Im51 58 0 R /Im45 52 0 R /Im49 56 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im100 107 0 R /Im103 110 0 R /Im88 95 0 R /Im64 71 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im24 31 0 R /Im33 40 0 R /Im36 43 0 R /Im96 103 0 R /Im20 27 0 R /Im49 56 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im113 120 0 R /Im106 113 0 R /Im49 56 0 R /Im51 58 0 R /Im43 50 0 R /Im65 72 0 R /Im51 58 0 R /Im47 54 0 R /Im46 53 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im46 53 0 R /Im54 61 0 R /Im51 58 0 R /Im54 61 0 R /Im55 62 0 R /Im66 73 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im69 76 0 R /Im51 58 0 R /Im75 82 0 R /Im65 72 0 R /Im46 53 0 R /Im51 58 0 R /Im47 54 0 R /Im51 58 0 R /Im43 50 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im70 77 0 R /Im62 69 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im53 60 0 R /Im46 53 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im68 75 0 R /Im45 52 0 R /Im51 58 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im61 68 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im53 60 0 R /Im64 71 0 R /Im44 51 0 R /Im68 75 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im46 53 0 R /Im42 49 0 R /Im53 60 0 R /Im46 53 0 R /Im54 61 0 R /Im54 61 0 R /Im42 49 0 R /Im44 51 0 R /Im68 75 0 R /Im45 52 0 R /Im51 58 0 R /Im97 104 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im89 96 0 R /Im42 49 0 R /Im61 68 0 R /Im65 72 0 R /Im53 60 0 R /Im51 58 0 R /Im49 56 0 R /Im41 48 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im53 60 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im106 113 0 R /Im49 56 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im54 61 0 R /Im53 60 0 R /Im64 71 0 R /Im42 49 0 R /Im69 76 0 R /Im51 58 0 R /Im75 82 0 R /Im55 62 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im46 53 0 R /Im53 60 0 R /Im51 58 0 R /Im55 62 0 R /Im55 62 0 R /Im46 53 0 R /Im43 50 0 R /Im47 54 0 R /Im68 75 0 R /Im43 50 0 R /Im43 50 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im42 49 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im97 104 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im89 96 0 R /Im42 49 0 R /Im61 68 0 R /Im65 72 0 R /Im53 60 0 R /Im51 58 0 R /Im49 56 0 R /Im73 80 0 R /Im70 77 0 R /Im51 58 0 R /Im53 60 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im49 56 0 R /Im58 65 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im51 58 0 R /Im112 119 0 R /Im51 58 0 R /Im45 52 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im100 107 0 R /Im106 113 0 R /Im106 113 0 R /Im72 79 0 R /Im114 121 0 R /Im54 61 0 R /Im51 58 0 R /Im69 76 0 R /Im45 52 0 R /Im51 58 0 R /Im115 122 0 R /Im68 75 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im53 60 0 R /Im64 71 0 R /Im47 54 0 R /Im46 53 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im42 49 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im62 69 0 R /Im70 77 0 R /Im43 50 0 R /Im51 58 0 R /Im45 52 0 R /Im63 70 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im55 62 0 R /Im62 69 0 R /Im68 75 0 R /Im70 77 0 R /Im53 60 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im76 83 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im68 75 0 R /Im47 54 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im76 83 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im42 49 0 R /Im54 61 0 R /Im62 69 0 R /Im70 77 0 R /Im63 70 0 R /Im46 53 0 R /Im62 69 0 R /Im68 75 0 R /Im43 50 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im53 60 0 R /Im44 51 0 R /Im49 56 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im66 73 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im111 118 0 R /Im54 61 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im72 79 0 R /Im116 123 0 R /Im51 58 0 R /Im45 52 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im42 49 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im42 49 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im64 71 0 R /Im43 50 0 R /Im51 58 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im62 69 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im65 72 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im49 56 0 R /Im43 50 0 R /Im68 75 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im75 82 0 R /Im48 55 0 R /Im46 53 0 R /Im47 54 0 R /Im48 55 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im53 60 0 R /Im42 49 0 R /Im47 54 0 R /Im51 58 0 R /Im49 56 0 R /Im48 55 0 R /Im42 49 0 R /Im63 70 0 R /Im51 58 0 R /Im54 61 0 R /Im62 69 0 R /Im44 51 0 R /Im49 56 0 R /Im42 49 0 R /Im43 50 0 R /Im69 76 0 R /Im42 49 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im75 82 0 R /Im51 58 0 R /Im67 74 0 R /Im54 61 0 R /Im62 69 0 R /Im75 82 0 R /Im49 56 0 R /Im70 77 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im65 72 0 R /Im68 75 0 R /Im70 77 0 R /Im53 60 0 R /Im46 53 0 R /Im43 50 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im53 60 0 R /Im46 53 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im68 75 0 R /Im45 52 0 R /Im51 58 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im43 50 0 R /Im44 51 0 R /Im47 54 0 R /Im62 69 0 R /Im61 68 0 R /Im61 68 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im61 68 0 R /Im65 72 0 R /Im53 60 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im62 69 0 R /Im69 76 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im42 49 0 R /Im53 60 0 R /Im42 49 0 R /Im45 52 0 R /Im66 73 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im48 55 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im72 79 0 R /Im73 80 0 R /Im63 70 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im68 75 0 R /Im66 73 0 R /Im48 55 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im68 75 0 R /Im43 50 0 R /Im68 75 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im61 68 0 R /Im42 49 0 R /Im55 62 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im53 60 0 R /Im42 49 0 R /Im45 52 0 R /Im66 73 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im43 50 0 R /Im46 53 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im49 56 0 R /Im43 50 0 R /Im68 75 0 R /Im70 77 0 R /Im74 81 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im44 51 0 R /Im62 69 0 R /Im61 68 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im45 52 0 R /Im64 71 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im49 56 0 R /Im47 54 0 R /Im62 69 0 R /Im53 60 0 R /Im53 60 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im117 124 0 R /Im118 125 0 R /Im119 126 0 R /Im120 127 0 R /Im121 128 0 R /Im122 129 0 R /Im123 130 0 R /Im124 131 0 R /Im125 132 0 R /Im121 128 0 R /Im126 133 0 R /Im127 134 0 R /Im128 135 0 R /Im129 136 0 R /Im130 137 0 R /Im121 128 0 R /Im131 138 0 R /Im132 139 0 R /Im133 140 0 R /Im124 131 0 R /Im134 141 0 R /Im135 142 0 R /Im136 143 0 R /Im123 130 0 R /Im137 144 0 R /Im138 145 0 R /Im124 131 0 R /Im126 133 0 R /Im131 138 0 R /Im123 130 0 R /Im120 127 0 R /Im126 133 0 R /Im128 135 0 R /Im129 136 0 R /Im139 146 0 R /Im128 135 0 R /Im131 138 0 R /Im137 144 0 R /Im133 140 0 R /Im126 133 0 R /Im123 130 0 R /Im124 131 0 R /Im140 147 0 R /Im141 148 0 R /Im121 128 0 R /Im123 130 0 R /Im120 127 0 R /Im141 148 0 R /Im123 130 0 R /Im135 142 0 R /Im142 149 0 R /Im143 150 0 R /Im144 151 0 R /Im143 150 0 R /Im145 152 0 R /Im128 135 0 R /Im146 153 0 R /Im147 154 0 R /Im148 155 0 R /Im147 154 0 R /Im135 142 0 R /Im147 154 0 R /Im149 156 0 R /Im150 157 0 R /Im150 157 0 R /Im151 158 0 R /Im136 143 0 R /Im151 158 0 R /Im138 145 0 R /Im138 145 0 R /Im125 132 0 R /Im126 133 0 R /Im124 131 0 R /Im121 128 0 R /Im141 148 0 R /Im152 159 0 R /Im126 133 0 R /Im135 142 0 R /Im153 160 0 R /Im152 159 0 R /Im123 130 0 R /Im154 161 0 R /Im123 130 0 R /Im126 133 0 R /Im152 159 0 R /Im123 130 0 R /Im124 131 0 R /Im155 162 0 R /Im156 163 0 R /Im138 145 0 R /Im120 127 0 R /Im157 164 0 R /Im125 132 0 R /Im135 142 0 R /Im158 165 0 R /Im131 138 0 R /Im138 145 0 R /Im121 128 0 R /Im156 163 0 R /Im159 166 0 R /Im132 139 0 R /Im124 131 0 R /Im123 130 0 R /Im133 140 0 R /Im160 167 0 R /Im123 130 0 R /Im124 131 0 R /Im161 168 0 R /Im141 148 0 R /Im125 132 0 R /Im143 150 0 R /Im124 131 0 R /Im133 140 0 R /Im156 163 0 R /Im121 128 0 R /Im131 138 0 R /Im132 139 0 R /Im133 140 0 R /Im124 131 0 R /Im134 141 0 R /Im143 150 0 R /Im120 127 0 R /Im156 163 0 R /Im135 142 0 R /Im133 140 0 R /Im121 128 0 R /Im126 133 0 R /Im123 130 0 R /Im124 131 0 R /Im162 169 0 R /Im121 128 0 R /Im163 170 0 R /Im160 167 0 R /Im161 168 0 R /Im141 148 0 R /Im125 132 0 R /Im143 150 0 R /Im124 131 0 R /Im133 140 0 R /Im156 163 0 R /Im121 128 0 R /Im131 138 0 R /Im132 139 0 R /Im133 140 0 R /Im124 131 0 R /Im134 141 0 R /Im143 150 0 R /Im120 127 0 R /Im156 163 0 R /Im135 142 0 R /Im152 159 0 R /Im123 130 0 R /Im124 131 0 R /Im121 128 0 R /Im160 167 0 R /Im161 168 0 R /Im141 148 0 R /Im125 132 0 R /Im143 150 0 R /Im124 131 0 R /Im133 140 0 R /Im156 163 0 R /Im121 128 0 R /Im131 138 0 R /Im132 139 0 R /Im133 140 0 R /Im124 131 0 R /Im134 141 0 R /Im143 150 0 R /Im120 127 0 R /Im156 163 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 7 0 R +>> +endobj +7 0 obj +<< +/Length 485 0 R +/Filter /FlateDecode +>> +stream +x¥}˹qÝ~¾¢ÒBÍ»JKÌoRKnlrdÒæKä8þ{ßê¬é*S8@mf&:&/PD>òñ?üÛÇþà>þþÃëá3¯ËÇò¹,öOç>K~ýkñiÅ»ÏÅÇßüñ_ü·?ºùóÿöíJCÿþsû+ùör³ü_ÿòùMÿú>\éãgºÒû÷¿Z?^é×Ïáö#úúÔ~½_ yz11^ɳ̼¼(ÌséÓyL¿å¼üµ³Ëøã·V_¯äùáéèý?}¾Òoý£«ëÝú¹ä.êáy¸×^ûùUôüKôZz'_×G§ïZ_>}_²|{||õèëýo®ßR<ÍÕ_?#Ü@X¢o®~þ,}ÁAúæîWi»`zýfð ± º¨»Ú0å"â`CÎîoH÷·gøõºê&÷ªÿÅó'ûê«Ýü¾`ÿÚij¹TÆ¥( +oÀA4`L"T �ñ#Ô Íb &¤AÁh$ðbFô®ùê}IJ)ÞSÁ°¬ã$ .±aßþò}~ýÎ7úF�]c@ßq9z¥÷v/¢æû¿6ðâ»ßXPºû àký5¡õ?×}ýz�zà½^¿ßèËs¡oä'}zHïÖo.Àûÿ6|yËÿ ¾¹lÿþV(ûgüÛ=8 ®àðu¥½·ï_>×ÃøF¦/m¾?,uÿ¯ßYúVùóA»�Ûç +õîÓµëËпÂe}d�vúä7´ý3ð²~/IÚ@ëÁf}ÿ¹âý¿0°Q -ýÛ'ôº@AV ^T ì¬@õ[Öè ÍúÁA +øjß>Ip¯¶Q�AV¡z@}x¥¯ßÿòÀù5ô©ñ*}@(�¶À¡õÆ@HP~ef/òD¡¬ßÊOåü.89ÿuyvþÐ8ÿW?ÓqAò¼ÿï¿Ä¯Òó#û÷ñþ³¦§ÿþÙ/¤¿°þèéß@oÑô÷ú=þ�È5ªö+¯4¿<ùoôýcòïã;¿Ðßoô«D¬Ò§èóké«ý}àûù W×é¯îBߨöüÌÿ)¾9º~YÐ÷ýq½¿F´~£?(ÿ^úOáuà×zsøf¿c£öö¿øþìùþm¾é°$ðý @À8ßý@îYÿù+ë³ó>KçÇø^Ô#þ´>Ú?ÿÝÿÑî_«¿ Améð¿ýõµÿ Ý¿$��æ?¡ûïgú3ä,éO$¿oýQåÏÇïë<âøipZúFµöû÷|é7}øæ?&a3ýQí×y}� áïKÕçõýÅéW¾¡ß¿?ÿtZ?øðñÑ÷»ºÿ´åÛý³ûçÜîBßÈßFä÷õW@eÿÅù ì?Ëþoþéuÿô~«)âóýmüPéC߯I[éoWý§Ë÷7ú«ÝÿÑùB ¿Öÿî?dÙs%£óý'·"ùÓíßþ¯ñÈ_õÆåÏèá÷7ôýyóÂÿÿÀþÿÕAþ øÑGéþ¢øëKÿûåü3½îûôlÿaAüo¨$þ hýVÿQú¸>Ò¾>ÀõöÏüZØf¤?õûc9}ùÇþ_Ú¿?}Öçø¯¾ú¯Ë"Þ¿û/È~g?sÿýµø%Höƾ<º¿!@ý«ûÿßúÿÔªübýbô7ýþ¤é_ºÿ´IûgøIúá'D~2²¿üÐõºÿíúEã²MÊOýþUõ?Éþ7èÿÊú?lhÿ¥?XüdÿPüÎðo¿÷G_Åú�~¾?-~Åø=Ò¿Áþï+þ/»ÿ1,ÒýgòÒÿ:~¼ÿÀþcùQ?*?Þ ÿ' ¡ø¥¥§ç´ø ò?Cÿä°bý»'@)þ²òCø·Æg÷wÕâOß¼?-ïûwøOëW@Õ?²ÿ¼ã_û_Ã-ÿhüçªþ9Ñ£øëç=X_×ÿΣõðàÅýcýoÙûzÙÿØñ^?rÉ#zÿµþÞúÿÊ:?}}_ºßÏð$¿ÿk tvþËmüÌñYù·öð¿.ðüõ÷Ç@×úþäÐýxóèþéþ¯Õ7½ï§ñ{@û×ý7üéúO SäæÅüößÎû¸äýÀâ3½`ÿ ¿@û×ñ×ýýøýð¿LÚÿPäÊÿúðþnHþõøiÏö[X¿ÆKô}?]þ×ïþÃÀûÒú4þõpÿBümøfé÷Çåþ?Lê¿Ñ÷ëú/¤ôHÿ}åß ÷ã'Hþί@ÿGÆOô?tüÔj¦×_µõ»øÇ¤ÿ÷J¤óçôèþÄK>ô×]üIãGäW?>=º1 ùCñCîÇ´ý3ùI»?Pý'²ÿìÅë9~Å=bÑüúýëÃóÛ ÿdüýÀrÂß½Ö8rw5ÿýL?ð~\óGzôÌþ8óÎôÀbøôºýuèuûë,þ8ÓËø±³øãtþ +~|Á/:ü§øQÊàû[ûGù5þ·û×oìa¹~Ññ§$þsü£ þ5ø3ÅÏÿ8ÓëøÛ¶HôôþoÚý§ïÿæ?éeürÇ/þÓõ]×çø ¦ÿHþÔzþ7ÿᬿõüqó:òG¿?nÒ÷Óø×âóùÉïÏÞüaûQñÄûÃóßó£ü+Ð~ÿäïÕ~±ü$#øË:©ÿÒùÑüýZØ·_$ÿbëËòoù³=ù§ñ·CúO¿CöÑøÛiòCã_¯ÇoþÈ_È~ ä/È¿üÍÿáø¦?©ü&¨?ÿÀè7ò/GÉ£ëúÖ_XïÿÉÿñó°¢óÓëwÂ÷¯×lÈÐñó½~R_:éñ·ëàäGÇߣxÿyþò?FòGVÑ~ü jñå_Bç?À¿ãÈþ§ùGåYüòßþ'øÝä¯éùÁøI?ü%MÖ¸*i.ÿÍý>ÑëøåQ¿îó_Ú8¿±úâòþ^ëç.ß/¿9»?i.Ì¥ø¯×o¤MÚ?Åï,#ÍåÏ:»?é>ÿâ?ë¾_ÇßVx~rþì¿îóéúÖçøÆ?-Hþâ/·HßOãO§?«?²þð^?lý¦¿ßò¿:úÆß1HòCÏ?féüéþÓÃóËPÿ õ» ý?ÀÿÎo`ÿ+¼¿ºüYþfGþhýÙæ$ýKó,ÿã¼¾?.Pÿêñã%ûEãç$þuñÉûsäLêÏ`ù£ùåýÐýÿ"Z BBüÈ?ÁþõÇ@þIVåð¯ û§¿íý¾ðt_?Áó7Ð÷ä@û£ãg¢ÿB÷¿!ÿK±?5~^Lþzõ«,Có9~%ûAóG¬~¿±þOZüs<±_QÔ´~Âêï&íWLPÿêç ýÈÿpìW´ú»ÿ¨üxÿuùY5ýEñ??éöoÏQìÿ,ÿ<úþCâg«¿=Óëñ³½ßéõþV¿{¢Àoü +Ö¨¿ EZ6 ïþ gzÿvÿu^_Æ¿]Bß?¿ØûÁ^¶.Iþîð@¯×¯Xÿ3½?íøG{þøÅºü#ûß¼tÿhþÒîß@ýÕÿwäÆXÿèùÝÿüø¯×/zÓaÂï¼õÿ_5ùåõ/Q<?Öÿcíë¥ûCë?,~´GýKçûéù$?Ã/ܳûcõ/Ãçoø½ÿßüà?Ô`¿dô÷ý=ÿÀ!ûü7Ö?Þ¿±ø¥#?<ÿbÎöo1ü´#?¼ò_ôþ5GÿîýÅõsGýËyÿúúÙÝÿ?ò'få§h÷îUùGú¿¬ý£øÑîï�~ºAÿQ?-~éöÿ?¢÷g�¿ðä/zèÿéñg@ëëñçË~ý;&ãϣǤÿvÿyÿhõóÏþ§ü/rþæÞ¿ã+~=Ýÿ¥øÑªÆoúÙøÑâ?Ãì3û¢oí_·ÿ¿Ï¿ãôh}Ý~ýGý}þï?Zõ¿Ïÿ¡ñ¯ùþ>_Ì`}ýýþÈé𮽴>¬ÉåAß¯ç¿øÇ^Ï?Y¡üèüßÐúzþîÑÔßç¯ñþ£¶þ\ý_4ù£ñ³óÒþiþåwîÏ?ÙÝß#dòþz_Ýߣþ¦#?¬7ýÜmÿ&Ê¿îÿ@þDò«÷OIèûú§$h?ú8ðý#ýSgò_4ùãõ?Hþ>ÀnE篿_ïù+_þ¿¯áøKzt¡ÿ&ë'êÜÞùqüEÛ?Å<²ßºÿ|ÔtåÄßÖ°ã?ÑüåWÏ?Iêþþ¤óëö_íÐÓóÃþT½^ÿ½ç´ûoó§9}è9þüßü ùý-ÿ£cÿxþHÅ^úë¾ÿËÿú_Ïÿ°þ!÷ï¢ð÷?µóócD÷W÷þ!ösïòÄÜóGø{ýÊÿqÇOØ¿ÿ¬Û¿X4ÿ½ÿÇRû7ýió»þÞ=ÿÞðËzØùÑú«ß?Ñ·õ4~´þÅ'zTÿ õ³ú}Wnõ}ÿ¶þ!§õúwôýóS,äüýýC´>ý~Ëë|?Öè?aóÎôzýõo?ËÞ¿%?<ÿ¢?íßRªÿÿºG3ù«nE߯ç¯îù'ÿzý½ßéåüÕ#ÿäÌ?9Õ[ÿÄÿÆòW ÿpüòþ«}¿àUýÁðEâ§GûoåÏñ^îßì íÜ_Ê¿ôç@þDFûèÿaï/ûEó/,äL/ßÿc~Ìðý1zhtüÉú××ó_6Ä¿øuôWpðüõü{Îo ~Åæ/Lê`ï?ú'´þ�ÿFÿÐÿÐû ¤Ù^äo`þô?ò/²¦¿xýf?xýÊ"_7¤»ÿaÿC¯ÛÐýCù»®¯ç,ÐÿÑóôù{ý¦Iüì¡þÔñ¯ù<É¿®ÿbDöoÿQ»ÿNÚ¿ÿ9PTçïöäâ/òOÆOüÎ÷ÓõíýyÒþFÿÔ¿Ùüªnü@ÞÏ-d¹Ï?º«ùÚÿr¿Gã/«9Óëøá/Ë}þ¯¿I~ ¦Å/³ß¢ôý0ýs¢ÈèüZùãý[·¯ø?n÷ùS´Hí¿x¦×óÏéÙó3ü´s~4ÿ¥ ó×óÏÍ¿ëïߺIû§õc+¿ú±-Hü§ø×ôþ~å¤?âo§íç¿@ý©×~ÒÕ_$þµùË}þa?éÜÊ:çGó,ÿcXÿ~$þÓü©ÿôôÇ_´ûGϯ ùCúÌÏ)+¢×óOàý࿽wøO×ß´óïæLÚ¿#¤#ÿ4þ³þ%ûÇû§¢ïé¿$zÖ¿Ùæç\ä|~ð°ý4üæýÞû(þ+=¿ÖÈßHêóÇCÒè»õ;]ûÛ©ßÔÿ¡ þëñcXýÓý�õO»>íߺÕùµgÿèÔôïßýß}û»ùH§ço�¿´ä»@»å}|ú&üìùúƯô}÷YbC/¸o´ðéL¿òûëþëúu|Þ ¾9¾·²ôuüÕ ¤\¿ß-_µÏ�?Ðè?ÊÀ´�®üçogú /Øÿz�µÿGï�Â×´?à 4@'(@¥_$¯Ïlíµÿµ +ð+/GþCû?ÔöÑϵ¿ªÞÃ\÷þ]í~vY^S_zô4z®èKô÷Ýs8zÙ7ý�ÿÐë!F¯¬{ë¾ÿ)ôª¢'Óû¯Ù¯zÙú»Öo7^£?ÝöÒþ)úS³W/ò¯g¿¸}úoAò§{¯6}æ"ÿÕC+_={ÞÐþàÕ;^º¿4úY6éþqôB?^½äg zÇ{°ÿê,Oùç5þqôÝÿé1Q³,{Ѧß\äWî^íköjÏ|RþzÒá?ÞÉèüªwj÷ÅñûgÙ+Hÿ´è!Ï^IHÿëü«Ý[§ù·Aùü»¿¶ò§£waÑΣ/ðüåׯà¼ä?´ü³ìw÷²óúÈ_ Õ;¹z¯ßé½}°¾_¯BH=EOâö¿6á+cëkÙß_çÿ½êÓg³æ2ý¹Wï(úg¯dQÿî-µ{ÒeÿÙ+Úú<{êîµ[®çß½foÔî%=ÿOþÜ=.Bÿe {¨ç7}ô¯½Z¤û+ôôî«Ù¿þEtÿø±Ò×îI}ÿe¿ û îuý¢ùo4û§ÀøU³"ÿG×qEú·Õ¼{ ¼¿òëçº*þ?ã_þÎ¿ä´øîß!ùÕ§úwsÍÍû<ëàZ}ür÷O4x6컳> ¯§N8Ⱦ!𬯷®'zÇGù_[ßôøOÁÃÚú;.s?]ëëüOP~äÖe.iòÃS¸>ßV°þ@êUAçGÕÔÃË÷ËÁß^zÕ~¿zãjé÷^O½qµtb\ÿTð¨n÷´'§Gç§§ZêЬüÙèçþ¡Á»_ü÷µô³¯Yë]Í~´oFö¿Ê©:ÔÓ_½Ö1½ûCÁþdôúþÖÇEå?¿ò£ûo{{òGGÿ±Ü§ÐÔ¥>ýè7 ÿ¼Y*xsÚ?oøà*xs¢�üjßÎß©7È獵>xÎoÓKO^Ágûýü!Áÿ+øüúþe4õ×F!ÿ É+½Bþ[k?yëYÿ·µuCß~0ð +Ù/<¨ëdJï +Ò¥w+Ú¿b?Îc.ß/GaCúk¤u®ü?ZúS[çÍúÑ!ÿu tÈï»çÇÀ«$ò>iÑ+]Þ¥uz¿D?wYiéPñÞºÆkÖ§ü+ÿxé_äÇ}ôñø-nü³ý§::µ·fÿCôºÿ¾·yÔÊû°õ:§âå+tx&×ÑzxÕeå]uÿ \Ç^jÚ÷ ^ÛTuïëiì\Û^èõØÛ£ÃÓ}ok;´ÛÐûÄ=Aþ´ýYDþ¶CIß@Û¡¤7v[»<;ÒÄ·ýAë뱫µý¹ðo ì¬Hßϱ'/É?=¿¸5}~µì¤·Þ6~¿>vê¶A?ßß±ê=ñÐÚ.÷ä¶ñH~[ß¶í èüô±9]õöOË®"ÒÿºþÙ±+M~YÙ[Î%nìØÕ»_ì8¿+vòÎÚö/ßsǶ~KÛNrÛk{|áxû`c£ þí¿%nõì?û¤êÿû¶A³çomzçϯVÿ¼ìÞv/Tßõ²;ñÈ~½òHíÒþ騡hþÛ\ÛÕÿôØ5$È?½íTÒì_;ëñ®ü鱫µ-êëV6&åÇè·GöwOüz>Ñÿéµmâí¿ ¿-ñkÖ2zh¿õÄì·xmØ×Ãý(?Ãmû÷'ÎÆäÿ 'Îîc·ßþÃwzýíeÇÞÀúzÛÖrÛ;kéÛ·öö³·Mnõûöó²ò;CþÛ¦[´dÿ¿°Ã }âWû$ùáë¯Òú{âÂ?ý!þéò^þÂæ¿ïgÿ¾w§Ç©c5þ)ßË.7ùíÁÌG,»¬Ñ{¹O[¥3µìàB¯7}ªÓë×´áÞú}¨Më.ìÓ3jÙÒ~ ó¨-]èõ¡muhsÿûIÓ.Ë}Úd½ë_½+½´gþÔ´á½Þ4:£ë££?y¶{¡3C+\YüÉ/onÞ+[´²Éüò¡ipÿzÙ"Ôe&¿¼lݲE¨¿ÊߦË^^Ö¦½³òke½õ)ÿ#¼ÿ:z5ýOf¥wÙÔùþ´3Tþ²ä߯7}/hýôr ç7Ü´ªzXÀþ¦m^ú~½/È~ -¯ezY~ÔC®<à5ÿ¢'µkLO~xÙ$ÒßçWÎôô/»üÓ>'¸¾>´ û?Bå¡wIÞtúOeQ<?F¯ÅtÿµéÔ¬ÿ¾£oÿEÐÇ ÉyD¯gD1~¢èá£ÞtÚk÷~@÷GÏ<Ý~+ñúDùaM¿Õø=¢õÛïçM»Õý3ôí s¬hñ?/ÛÜùÖ´»ï?þzßá?=ÑÿàsýaçUÌ7Qÿ°×ÇäàùËm¡ÿçøUß,s®v?áávßÌ{=ëÞ[-¸¬®Cwm~ óÍåõGÎbß¼L¶,û×3<bß@æÙóééÇ*<;±Øù¼þ@Ã÷I^uZ~_ö/¿<ì-Ï_Z¥ó£û7ÛÕÙ¯eZ¼åúþ uàwïúóyNú~Úð¾v\ìi/ý!ý1y¸!þ£Ø©ÝMªÏ»ëèOýAý¥gîùE_R5éWIÿRìMÔ?½g½ýsìê»Úýá ëéoéoü `·ò_¯Zÿfõ÷Þríþöë*ÚrþPÿ¿ùÎó§s<?½á»½]tè)öà´ó§-«jÕZÏÿá{Úú4óËCùÓùïýàa]þ±ªW$?zì¢zþûÈþ¡¿¤å[ª'çý7ßÿ¾màü2:ÿ$7|ÐÿÒíoþnC)ìWX5ù¥Øß¾_É}°ª[-úäØ%²ºÿ¡þÒØåy}»^õêÙk5ë?ìOüü T]Ö®?ýëØ_ÜDýIö´ýSì-#úì»høÅWÍÿ¥ò·"ÿq êzEñóÀý úc�»ß´øc(~×[ÖØá¤þM0~Óýo¿ã\áßV½Ç¹î½lQZVÝn`u7®ØWv¿û ÷y{¬±CË:wuXÛ ^ÏûªÛ.߯+°ª.ÿÈ÷×½ïçã2:~¹ã h}dûâåüJ_cé¬Ó¢wü3Û1)¾6n¡ÿý®¯w¬«_úçǰK$¿ãFJ¤¯ç¿jçOÏo ò'ÇN®¶+>Óë±ÓQµÛÕ»°¼ÎùѼ¯¥f½Ç<÷UÛ÷øÏ±Ëô÷åÑúí÷³¬_;FéõªÞ³ÎôzÕZ ï/õõ¬ÿ;léõªo¾o«ñV5sZ_¯ñV5ÓÙ?«ÚرGÀ?¹jd¯Vä¯_¤õ)ÿV$¿zÕÈÞ1OúýµÝzÿþð¼CEþyÞaBß/ùOï¼Atþìÿíyíú^½÷V;ñ]6üÞ@þtñØ@s�mÙß»ìÝZæ ø½ì}ß`âôÂ[î¡�``ZdBß?�~fä�·YXË=ĽåÛ¸Øu ø´Líy'ky¦@6¤�ZÂ@\l�ãÞò·9ßÈsÀvðPsÀ®÷÷¢CÀÀÓ¶mÆøç,ø®?Ü"ô,5ô0Á�ü@XsK[9ØA\ °ðÙ+;ØuèüØî mÂgN@¤[ëISytcÖhº{ÀíQ,y�êø×(hæÏý¿_~ÀO0SZo@¶õ� â�bøÏtXrÛ#V®§T ð!Íi0K}¿ÐëCè¤|Ðêî äáèÙ93"'jC¯Þ(dEÁNÀ °Æ¢ûì_XP¸Ïí¢õi¥Ußèõù|¦zjÕ7a4{¼¢`ֻ뼾üèÌ ½ìq¥ýÓ¾:òýÂ=¯ ù鸡ï_eß××QäCÍ ýqö5yþ6ôµwþÅZÄ^ýäO=ñüx¨¿æ&xM~8 +XéÑùéÝ'<ÔznC[gõÏÿzõÏh}ÔûÌ}°ô0W}á×gúó¨åß%þQ~Cöw zvAëÌ-pý¢ ÓÎg�>³ßÁ2hÏïÁw^_Î >2øÎò;лOÕdÿqöÏ{÷!û9л/!ÿm¤w²#½û4þQùÉÈ~ô~,ý§û¯s·úòO@ÔéuúOÏ µÀnüA2àtuý½Ï{ÐÎ MÿúÐXèÿ êC²ýWÐ}�0~û¨ ÈÈ`³ +þ¡�ZÔî{ ÿ,ÛÏÐúß¡ÿ¨÷Þ+ÐþéÆÏzötùYÑú�&ôôî'iA÷O¯Ý«È_ñ.6·£ïÿcÿÃÏͽ±Þ7~nêMø{&×ËÀñs3o¿~næ3ð·³>ÅêÌÈ÷xçÀ�Ö×Á_g௻¹FùçÄ?:7ÅúÖéõêqÃþüýÌÑù ÌMH~2ðRÄcÄ}et°¯ø¯Ï=82�Ïô:vµÏÀÌgK`ös3¹ûGg^.¬:§°¾g÷ïÀÞ&ï÷Ïîÿºïé£vÿhõ²Ýÿñ£ü÷ÿÀÒå?Á-¸sÿ(öZÐùë¾÷àû×ò·jòG«ñý×3ð¬áÌ?9ö +:ÿÖþpì éÏì Ê@æýH óH~':÷uÎwî{f?Bëwîëð¿Û¹ïL?й/?ºÁO&õ°Ø·£ÿiõp©çû#Ï +kM_ò®<Īo!ÿôê[«¿êø|îò:¿Áø§=?:·Æ/íÜ +ÞùOÓß4ö÷ªÿÆ:÷-üQì(<»?1j÷WÏÂõuþ'd?ô·(Æôü{ïø/ùå¾ ýë�¾â²híC^tWBÖn`û:={u _a½þmÏ,XÜY°£÷Þ¤;zïMZ°äY°£~¶siþ寽<±ûþ6ûê+`u�?Z-=èQ�IÈ7@®t_3üm�¿±äÅ3½¿8ëÞr¦×ñ/ëÞÒeÁ¬sëä æû¿ð?«`=ï_Ç¢Gñ£/=ͪUçýëįW0îsc¿ü·Î$î¹_ïÛû}}=ûô¥òëù¹ôS·UòòúþvàÀó+Q`~A& vÊH»Ð)#T"GiWtÊH;BHA�¨ô¸½ÐËp5y}üÓA´ÖI [%%L×7«³>§ßÄý²DÉtÀºßOÎSÏ%eñþ1 +í_ÙË0µó# U1u� +ùUú~^E©AÄ[WÇ ãUA_ÒB/!ý7ÐBÏ?wøÏ«(=}xpFNÜ�ÿ +r¢t'doûØ?@ ä§½?¼Û3'~¯¢Tä·@CûiD''ðFg÷7Ý&ðò&tÿZpÕþïÚ÷Ó°¤Ýº~Bç?0|6#ý=�âe¤@¬¢!äûW-â LÿDð`¯<Õñö|°>£Ï=O ÒìpÐýCüÃ÷·& ù-u®ïmÒ\O¡ÙX]]Y3ù��±¼c½ü�âÜ» È yúàVW_ðöÐÉÁsÞÀxÏ úìÔ¤GÐöåüyO¨'°¹ù7P½äwdö§¿¿í¡G÷_´Þlç?0»µ°=ù¡Ø.°n|,èB?Pý·IßÏ«ÿ¢(?8xðTz³ +þôï/ ¾kð×SüÑÎÒ$DµÏ~f¯¯ò¬þ3ð§wÿùüÿHÿXÓ¬þ±Ù£=ýCÁÚ¾¢wÿèþ¶*¿µkO~Yðå7häê¿.?æôõÖgß²ßzðiÕ½óçýûáýö? oú»Ü> ³àkÚûß_ÿÐÿ8ÿìÇH.tÿþfàòÿôà5d¤?[þñþûP~ô²¢Úòý«¦¿øìP$¿d\_Ï ÛþlýÞBË?õø$?:ø¡þ� +àÚ'y¤ÿfOz-þ`þKöý=ÿ |ÐÂo^ýÅO1>?bÒâº~ÒüoÞ=/¢ÿÑï/Hdp(zþPðtEç¯WÇMóÿyþ¼ÿÍúÌÿIÐÿÒýËêóÍ.-ÿ}¾³ï7÷·ãèõÓk.äÂí©äoäÙõ6xè$_W×}_WÛÞî)vV^ÎôÎéàŲ!îËÎED?P~¸Iì^ÖúZë1¸¾<¸×ÈϽðþGtéSuxàeÿzùbí=y¡_.\ÍÜ8ÓëÇ]ò30À`¾/Eôé5{÷B¯×ëìþ <\%íÉxi} +,Eºÿ4óÈAþÉÁÇù¥È/_tÎϨ÷»|1C.çoúúq¹©_èL¯Mh}ÅûµäÃüN>Ü5è]ú4ßç3²�E_,wi`ýí߯ö$Y ËýêY Þ|¬Lºø°c)üZsÇzÍYÞ ¼gª'ðåÀ{Þ¿À,üÞ¹fxm~èõä²ÁðË0ÿ,°ógldðkʰl mgßñ"DE Q6¡ @¿C!!/p�ÍÈéù«AöbÿfE9c0½ÔApíáÒóB 2Bº 8 ¼Iæ ó^P~tËkA0 Û�˵±Aµ;÷ÄÄÙ½×#8¨³:!#LA(¹òp¹-dæ9p(Ô=ñý¹,BÒê°ÞÐYO>(FÞ@ªIð³F 9¨@"Ø}ÿÙKXË }+¤ªmü÷^¾OÚø_éGÛøw×gpâ¾ØÓýdu 6KôÌÀä(ª&A7ÐBQÊóõåû$dÅ¡ý룽cwè9V½à½G¹½>hå èåQD{'.pô){%¼o¾_Eär<RIé)�WÄÈK1ÃÓXÑ8Á³Q[¬<¬¤Üñ<å8À%¨dtRòc°wÍÈsä{;1mÿ¬BûgéxKF>ÓëÉdAS¢ ++XEÞy:ô´~LáÉQâ_oÀeÿ YÌù§'óJì¾¢ik8ø?̸nüñdBt~è1ù~@ÿ¤½½tõA2'h´Ö£¤ÿ(äÑýhe_Gõ º¾½'Lê¯ ìð¯Ø¹?ÿI³?4/¡óHÌÿèùeÍ ¦Épöq¦Þ£Î¤óý°júòCòÛò&-ÚýçüµûÇ<ÿÈÿöÙñ?èúño ÈÃõõJÐô÷@2YØ&￵âvb½?LÖ×ó)bFò§"Æ¢ñÒ¯PT²&Ä?¹3nh}½1n(o«ÙK=dÄS.PH_I«ôÆûTd&=µþ²º>Ñ*±â}&"Ï&[ÑöõJºÚöB¯#0Nû~dÌçõõJ:sÞâ}&#G éûi2T@ç7ÕïgXøÏ¬�èf $t}ùÆ>Çñ@~Ê*ÉýþÞ_Ùùu¦<ã}&0soq.ß/ÿzðd½è{û§àò/ë/ïüTÂ:MRþy¤?æ`Z%ÙäýñVIÑÕß,YO=ÿ¨$=ÑëøG%iÇþñ6dY´?D~³vÿ¨üdè>òkàÖ§àUBåOOæÜ´óç¤èüGRÑ4ûAÓj/üü0ð3Ô^Ôý©Ïá3ðiÒu[ß`m̶G÷ÿ¨$íêÖ Êÿ@%*úþð*Bû£Wòú§F6)ÿGYGþ)}AüÓÛ²=òÃüÏùáî?¤þsØÐýQæHÖç¿}úzþ{)»\fÞE<ÈÚáÏ^àèh($^t«þý¢CûØA¦5 ½LFïÓ<@¬�ôRĬà4ï}¡/ñ¾5³: z¼µ +Èï \Ê7¸¾üúzbvϲ^^hþz2 -z×k ï_Èþ£)déM¾wâ×3HÌ} n2 ,Cz9 ÌÕI×Ð [ +` Èá¿à¼ö| cE`ýý@Gö´§}éÓ!ê/pÎÚ è@L{Á÷Ex;º ¯$°p?h ¬¯A.#þ T´Ö^ÚçóH#¬½°/üÊ Úò¦ t¼|¿üé6/É/Ⱦ ¥wößèØ +X;µÎùQÀ#ùmï/,¢#¿¼"ÓIüã%³t~w Bßm§6¬ÿ~ÁÀùé³;ÓyüFÎ_oéRwÿ>Iôÿêÿ,¤?@àÊ¿ü`){ßOAÙo} èÑΣ¿yX¡|o8ø?PKW{_ø'¬_¿ú/zÒß ="vöOÛéEhõvdI³ÿJèþ 4Ìðþ뵬E³¿Ôu¢P/â)\ªD�:@´A¤@j Té@ ç%¤ C +`�ò£ P@ü�¬vÿ�Òbܸ"Z/Æ Ð@1nÖ�áü ãfÍ )tâw`+ÿÂmG�7ÖÛPìUS`´w`h=mfqt`@N²*i g/Æ|ÃÕ[ÈÊy seª×XwÆÊ@ú@® UøW+i¹°n4ÙòðV°ýRÞ½+²Èd]ÑÜ}&G}}r÷3Ii-_¨Wø´Z¾P¯°-ÅþÅÆMÛçaJCX¬Utö~ᮤóK ¸ñlØÍ¿±¸V¼¤S#Àݧss0n.7t[_ö Ó¹H¼2KûçåÌp§¢p§O4gôÌÉ*ä)iè�FRÒÐúzÆ£ò¼þ@=c FÜ}=# ä$CÈѼPOiLèé)Ù>k¢y߯ ¡ÿ¦¹Éz`Î2iIîfà + ~¿¥ÔvO©[Áþñ)à4º2hÓ\±nJ[W04nîEs þh®=BsIg«øß³¼2¢ï×@ý1fMþZýkôPþu4ºIþhJZAëÔÓBh %qEÄ@=-¤ôÓ;@òkR´üÑz> Ôó9tºByxdù92Úºû'`V@úKn#²õ6®ã?r0ù/Íõ3¿0MóøpIiéðïÀ4*?Ðÿ"z=ë¦úOl¸vÿÙù¥îð55ó`ÿE®ç>LÚÿ:Ö/÷ µÌ}´Ñ:Ë}>/;¼e4º¢pX} 7ùènº¿³}Id(K/ô¶÷|¿®»Á¤Ë\6îÑЬ˿Îlå>µ; ³~w6Àr Ú pþñÙ�çï °MÊï%m¹ÏæIÑùÌ(Ïîï¦Ê+çÒ÷óÁ¢pÿ²î?2áÎ÷WÖýG&\çûiìîþÒ¿úC×þ;öõD~ö,þ'òã#Z@~¬)nG~8vå_.ý òW ÿôÙ6ت£¿èùY9gçü¨ülz9ýQÎ9iÂî¯>X7þ{= ®&2õÜKäz^_n&¼æñ^^IÔ; +ÚýãåªþîôòêÞI¦ú¬ño¤Éß�öïoëRìlEþ[ÑóÛ þÒ±+ìÑý~{/èûõLà¸@ý-g2G÷LE¯é/Þ+Iûç]ùþhùÇÉ üëØèðD²úz½f5ì +éßÁIÓ;CñþvÆ/q:~±Á~{ñ§=Úþi"æãG}°åäW{KîYü}`OçW±'·Í¦«Ü.äz/3´º}lyY^¾|6Ùò²¾ððm9\ ×n]í%t¡ ÇUÀñòýòë#a.ë뽼¼¹¬?ÐHÒGÏ?¢ýëΫ=þsð ÉßÀdÖäg@~3úþ^hþÑíß»é?¹þ^õî?Ý?Ôào-ÆîÉ//ÃtàûzQ-e¼êñ9O;xµ;OûL©öÞ?ëE6+?6³÷ýìáÍ·öï¿xcs-áþõÄ£¤Ù? +>%M~éùeõþ0ðéÏÄ©í·>´&^LËß +í.+Z$q¬ óÁ»°¨û'Á÷²úNóhâO}|ë}?/Ãî%nõì?/ÃDþ*C%çõ¬Îë5¢G ^Gr|äÀ 9±gn) +gN=s`èð2HÕÌeytrÜ4ôòOn&kèÙÙÑÉFèèÍd÷Êþ)ú´�£_Èêu bÔ `+?´{gvq Áë'[èüÓG1ͦð[ +PNýåWõ°Vüϸ=CÒâ)°#(YïðÛ$9ͼIýúZ¾Ìe¾×Ô¯3¹þøTÇYöVgák N/«ëM j ¿+½²^Õ§ËöõÔ)gëÏ¥-ºÚÈ®¿>AjÙÔ^÷>]}º¹Ðëè£Îú}èQm�x¡×Ñ£¤AOº=üs®¼IòC;ñ×þËýÑS÷ÖåÿÖöêYêÚ&Éd�ù/ß?¿ ùH½Zü¤^9tÿRgjÙæ¬üîèÝãã=Z TÐÎý "Ê?ùþ:Éd\ÿ½vyÙf@ç7P¶Y$ùá´>O}ÓøÇÇ`.òsAÿ:ßO÷¿jú¢ÿæ;èÐÿZöÙó(ú¸¡ó×ý°Àû߬Ï^Âònâz¾zêEpêýgè#Ò?Ü=\_G_=:ÿô5@ÿU#µóãc,ýGMHÉ÷'íû»àaWÿ±²QÈ?ýü +ÔBÙZm"¸ýäÙÝß1²8|HÝþ^-H~À«E;~jü£àCöwüÔì?åÏìöå`?Å©ù¯zß<ìÜzTûIøTýËRï4ûÁSïÿ22HÁKö¦ÞxþzÙóDÿ §ïc<üê=7_èmgÒ¢Ý]¢øUÇOCû×S_{[ïü{Øc5ãîǹpz<¬÷D®Wµ}_ó»°³?ÓëØ{Æ<W[ô¸Ç TÙ9Ñ·¾/õ~ l3:t|rog/ßçõõÌößÞ=Ê¿:½Ç?:À"רçCßë^¿ZöuY_î?ê +Ú¿^ötdÞuÏõl[¥óãSDÞÝÚ~,P}È-'l +hÿ4vwP~¦nHÿè ø »ëènæÝ~<ónRøôßÀ�Z6ÖãÎ�{Êøþ̳äwÿ¯÷öÞ_]~W¤¿°ËÙ¯ÌC{;è|?ϼü×±cÙÿ CK3÷ýÇ3ïÔï'wN³?´lÖj?OúW.5ß5ÝåªÙÚðæL>P¶R 7Þ?úÓ²s>ã\Ò«ýj.ôÎç +¸7Ðs£õF¨×~{z8³ë(}?å@ÇßòÒG;¯«´^öäg ìÄÏx5F¿¿$éû©óWOì gWûm^¾_Oü¨=K¦ï¯9¯Ýóg ÑùôËuèüÖx83ç3Þ'mñ²m}ê|M~éþÒßüvøÏ7i}x`Àç^ïõ)AûH\(hÿÎWök`ú¦?iðµBû¥'.lþ£Göð2iÿ÷[eÿôáÈçÎýã#ìþèj¿÷?x¼ßp~¤ô_tý¿~ÁèþéàGHèüuûfùÃ1Ò¿=cjÏüSþMRþ*ÿØÃqõ7 þVä¿(ú×ëù ^Õ 9ÿmÖÿ©WºWnÖ1ú"ê²ý¹çV¬ÓGgõÇ^uòDÄäw _oúSøKHëàÃQurÞ¿>U'gz!ñÝ~¡ÿ§Ñðøõl¿¬çJOþ¨üoÈÿ¸¿æ?ó_è?ëÿ<¹KÑìûÓôW¯gË»·-þþÙYßZér!o{!×±'N;O±+yö½¤òpgÀé~ ߯_�ý�vaE#þ>éb?!<:>W'W÷ίûð{¢×ûµY¿àéõ¶>×}?Wéü)}A×o èªØý¹/º¢ØÔØ'¾ÿúýÛ6@f0ì-I÷bÊ¿^4Pû}öäϪRõþ4þSìÆ°ó3½;xKô÷³x¿àíÙù%$?ç5ûÅgUý,Z±¢óýÓ÷¿júO~_Dù%Øíì'z¸'ÒØÅÖÀ.,é¸#´hÂÕ¤M?Y4á5þsì +}¿8 þQfMmy_ÿå?åúýE~ø9¿³¦bBü¢ÿIé³FO±ü_ýí3Õ~þ¯h}ýí,¬È~Ì3쨫ÿHÒ6¼ÿʬ±´nowÿ÷öG~û^;ÿ^¿ßËùéEÞ~¿È~ëoG1jçGùµø÷ûUíë÷[&ù_ùgØÓ°þ1ì©HçÇh¿XÃh¿tùú§=ZîÀdüu`W]z"??fåÁøgdV&¿ÿ ú?Øå.Lêäàýýþý%Æ·ïÿuùZ>ã-kÊ_hLú6³Üuùz vÁ¶Öî{úsÕ6.zÿŬX}I5zaöù{}uùüàë¼7`׺KB»ü�°Ä²ÐÕÎÕ×®býïàsí"üDhÀ=&¶·ñeEý{úÚÛÔOx¹%áçéïø³W}\y1 w=ÆÊô.? d£ÔHpAe3©½Sx{pu~íuà.\ocÝA¢@F¹Î^¦ ß /àW½5õÑæ%HnùyB+·÷v`°ÄFCsò7Ò7,À4 j«PÚSx_¦}¸LA¨è|ïÀ/Xiõ¬Ò°B±qd] ÂîÂØ»ì¼U5Bý¢> <"NôOu¢Wuâ{ÃàêTë)nvýïpPä0«ë)E½LD +<F¤¬¢q¥¢¼bÿ@ÖÊGèq\åÀ^KÎ?ÜF>a¦-×`µ +=ãÊv°'>ÒÁúî�ëÄü ÛO`¶q¯vl#z5ø:±q0h½ÍËOüÚÁåO`ÖùhVsù¹Õët(íéÄ1Qõ¶àí7a9Ⱥ(x¿ +ÒÛÉ::Ö\~�W Ràå'"& +É~ k; ¢¼:MéVqôìêòm´rÐV±8ßô~à µ¢±Ø¢èì6F¬ÒZ_îÀcÈáØ?jèì°£)ûÊ1b�B¨!~«= Qòè¶LÀ[ÇÆ5¦Æ5&ø ickÄ¡oððÊÄ}¤L¡ì]pű@IDOºØOly@OaÅWÆ 2BEÉÔÐãÞG¢0vót&&úÊÎv"¡/¸WPx©ýxêÓØk'1ÿü 2XûÁmÛ÷þÚãL*ök¬q&o½dvZ= IÄáê +A·c³C· õîî@>`¾×èÞáq$9ÙA@2£ß$Ùkù_÷ÞnÝ ^x¨ëÄÿ�¥øeDâeýÅèå Ó@èËþeâª!>Óg9Fu5-¤·Ê¿ä·å_óûYí²Ùq¬9Ó#á×Û¤þxÿeïgÔʯVY×_Ñùµü£ò³¢ý#¬Üß×»¿¾Húê¿ î_ö#ýø§?ðÝçεóc!¯%¡/6¾~¼ÿâ}ä~¿úK~³øqýÿæè+öî?ªçGöUûG°Þõõ&d¿^¨ÿýkp;Òÿ( ð/k÷¥ l_%ýëWZæùüQI¹ÿñ¯µÌþøRÙêgíÇÞ³lüæÙèb<ô¿õûg0ÿ¬ý uüø¬ý Ð×íaü³öÇZÌÚàÑúºý1Öþ¾?kö´ì'ö'D-ö¥°r}·?uýÎOGìm`VÿíîÊÆ"ßÑþuýÊòHÿü]ÿùºþ «æñõ¡þõ¯ Ö¿òôïâ]ÿÆî_DZþõoÄø|~Ñi÷>é~3©ãË¢ÿ¬þÝÓòïåç¿üê_üÒ}¸_ýÇ/_ñEþ±;õ?~õÇ=ãÛo¯Måõÿüöãþû?þðûßüø§¿ýøÏÿú/¿üøË_ÿüÛÿûûñ?ÿßÇ¿þûO¿ÿÃ>~ý¿ùõ?~üòóãßÿãÿúñ¯?}üÓÇï~úé/ÿü_üýïÿüéw¿ÿÛç~üé¿v%ÿÇ_ÿÇþÏ/þò·îów?ýñÿøñ«ÿýÃýÕkwÿ´( +endstream +endobj +8 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 486 0 R +/Name /Im1 +/Width 57 +/Height 49 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÏ1à PW2rÎÐ1R¤Ü¬åH=#dd@8À·[%*ËCBØÿ«ªR; Íf55õ°ÊÞÜO³Y`pëNÿ}Ï÷}¶9Érÿ¥@Æ»<PPÈúзÏÔëÖóNyI#·[B'±ÆahÉ»¬eØ®Ï×g»�Pó©¥ +endstream +endobj +9 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 487 0 R +/Name /Im2 +/Width 32 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xM˱ À ÑoQPzB9X,6É* ()."qÒ+<¢TÅMn¾»ÎÆ%4`R·bÔUàT~ì/Ó¸#øÇ) ¨6$ø ó{ÄÑ< +endstream +endobj +10 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 488 0 R +/Name /Im3 +/Width 39 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcü#ÿáÿÿþxPß�¤å°ÿcÀþÿ`ÿ'þÀf0ñHâ^°Qü? Æ-úÏ`ýÿÿ ì g°ÄrP iк^Ý|]�¼¬a +endstream +endobj +11 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 489 0 R +/Name /Im4 +/Width 19 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃð ñÿa` ôÿÿ86ªÛ(�S?o +endstream +endobj +12 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 490 0 R +/Name /Im5 +/Width 36 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmË¡0áÍ "S�"f(#Eá/tB+)%(ì½}3g>óï¢0ð"¹!õÒ-H/·Mü(<5¹}ììã²êÿH^6>(}¥%´ÈFS®6O}ùålEd +endstream +endobj +13 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 491 0 R +/Name /Im6 +/Width 30 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x Í¡0ÐÏUDf@0w]«K7a"+¸V O?p$t°ôscã¶ Y'r©É¤¢òQ +Îi3vjðÔÉÆ¥ã¸aݯûxå5© +endstream +endobj +14 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 492 0 R +/Name /Im7 +/Width 63 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÍÅ¡ 0ÐOáØ¤0¤·#°JÙ¤ º²¦ +Ï3¯Ë}M`¶£²¶'·ílAµ§Ê¯æø`ø\!ù}¤MFraýÚ ó:Þ³ý +endstream +endobj +15 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 493 0 R +/Name /Im8 +/Width 40 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÁþáÿù@Âþ?øPßðÿçúü?ì°ÿf°ÀþøC+âÿÿÇÿÿ£ +µóuÏ=V¤ +endstream +endobj +16 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 494 0 R +/Name /Im9 +/Width 25 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcc``@ÇvH¸ÿ10013³±üÿÿ03T<ÌÞ3þcg`üÏÏÀð¡þý >0HêÕ¯�>3 +endstream +endobj +17 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 495 0 R +/Name /Im10 +/Width 36 +/Height 49 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMϱ Â0Ð¥péÜÐR0ÁÄ�ßHÁkxÓ¥òùHóô¥³ïÛ(ëä gÉ'G¦6Ñ ¨ù(AöýLrþq�ì¢îAÄJ \É êØ¡6b¶8ÓbÒ~wÒwÇ { N¬¢l4ÆKµÌ\]Ô×Ôöònh³/·Çrý�)ckÝ +endstream +endobj +18 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 496 0 R +/Name /Im11 +/Width 40 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃÀÀðÁ"Ø)"Ø� ù@Âþ?øPßÀþ÷@ýö¿ öØÿ3Ø?`ÿJü¡ñÿÿãÿÿÑ £Úº�JÝi +endstream +endobj +19 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 497 0 R +/Name /Im12 +/Width 25 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-̱ 0 á_¢ ¼dËJ7�(X ®IÅ<²>éI¶¾1z#H¢ñÕ,ÝL}5ÀqÈ +ÙOýT>úîÅmtS°ÉNBWê ½Ýê´ðWÇ)®{¼�ö6 +endstream +endobj +20 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 498 0 R +/Name /Im13 +/Width 29 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`øÏÀÀþÿ�üÿöÇ?0Ô÷ÿ`øÏÿÿñÿ`þÇþùóæÿ10àÂÿÿÿAÁøÔR×ÿÿeê6J�µJç +endstream +endobj +21 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 499 0 R +/Name /Im14 +/Width 35 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`ÿÃÀÀPÿÿ�ãÿÿÿ°ÿ``ÿÀøÿÃ?ùõö@¢LÔ7�9â?x@¦ aØx°E`+ÁvÈiÊ +uó5�¥yE? +endstream +endobj +22 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 500 0 R +/Name /Im15 +/Width 28 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüQÇðÿÇÿÿ?ÿøÿûüÿ¿å?ðÿÿÀþù°ÿa?ÀþýÅøÿÿ(XF¡n¾"�0¢8à +endstream +endobj +23 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 501 0 R +/Name /Im16 +/Width 49 +/Height 48 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿõX©üÿ Q¢ìj@<âgø¦P© DÀТ@áÓ24¨]o�¿¬cõ +endstream +endobj +24 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 502 0 R +/Name /Im17 +/Width 18 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc~ÀÀþÿü3?`Àÿ0üGBüØ)Fÿÿ#!ãºMb�Èá8 +endstream +endobj +25 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 503 0 R +/Name /Im18 +/Width 39 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃÀÀðÁ"Ø)"ä� aìÿÿÿêØÿ3È`ÿÇÀÿ�¨ýø#ÿ ÿ$Pµ!̶lå÷@Ëq�ä ÓÔê6ê�â×\~ +endstream +endobj +26 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 504 0 R +/Name /Im19 +/Width 31 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]ÃÁ 0ÐzÈÑ Rèâ\=TÈ$ÎQ2B6E<e*e:>ï/ùößÀ±&ÇXöb'y±b¬<oÊ*`ÈÙPëyµÞ&'' +endstream +endobj +27 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 505 0 R +/Name /Im20 +/Width 5 +/Height 5 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øñãÃVÖê>�#fH +endstream +endobj +28 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 506 0 R +/Name /Im21 +/Width 42 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÏÀðÿ�#dg`üÁ�'+Ì?H60É'Ó$00$7@HC8y¸!ù�< 0067¶7�ÉfvÙ${øàäÉxH²1~C$ã ùÿááÿþl:VK¾v&�À6c +endstream +endobj +29 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 507 0 R +/Name /Im22 +/Width 30 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]˱ 0DѳR¸Ì 0X +@Y<GpÎÅûÍé(B)ÂÑ0ÓHÖÛ£¼ +"ÎJVìÕòÁÊr«ÂÒÁräm&Cëû¹\ܸ1 +endstream +endobj +30 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 508 0 R +/Name /Im23 +/Width 18 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãçgßß`üñ@òÃÉAèxs{ñ3 ²a```©,�á +endstream +endobj +31 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 509 0 R +/Name /Im24 +/Width 17 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨a`üÏÀÞÌÀÏØ ÇØ`DÌ|õê0|`@ bb¨`g°cÿÁÀþAP¤f²(�³T +endstream +endobj +32 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 510 0 R +/Name /Im25 +/Width 22 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcoH?ðÁòàÃ>H>øàðáìÍPÄÏÞ�C=üü|ü@_ÞýûæÇÄDj'K��¼¾æ +endstream +endobj +33 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 511 0 R +/Name /Im26 +/Width 20 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÀÀDaù�±7Qãöæü|üüø>È9<o`�¡6?llÀHÎ Â&d|oHàgQ¨/ +�Ïx½ +endstream +endobj +34 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 512 0 R +/Name /Im27 +/Width 6 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x± l|µ-|�(þ¸ +endstream +endobj +35 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 513 0 R +/Name /Im28 +/Width 23 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°ÿÇ�D ù�±7 ?É!!(*°aøPB>0xÀx¡¾$/®P3O�N#A +endstream +endobj +36 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 514 0 R +/Name /Im29 +/Width 41 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=̱ 0á+ÑÖêbk!d�qla'ÄY2èN`¼4ÿW^ºÓB:U+A[>=ݲDzPk¤3»Z¡ßu±ASìÑ\ÑÃgOU«²B9µ¥í'/:ë>½h¥ × +endstream +endobj +37 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 515 0 R +/Name /Im30 +/Width 35 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÿùÿFÁ Ç`ÃDØ0T`0þÿ .ãæèóöt½øÿóÿÿF)Ë×ÎS�:Ï1Æ +endstream +endobj +38 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 516 0 R +/Name /Im31 +/Width 29 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿcÿ£Ù@ùØP° +¶a@Á(øC>�Ä @ÌÌÀ`ÁÆÀ`#ÃÀ ÿý¬Bù<%�wï +endstream +endobj +39 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 517 0 R +/Name /Im32 +/Width 12 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcH`ø�P�?|ñãÉ@x¼ùbr h`�lÈÅxäkçñ�S* +endstream +endobj +40 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 518 0 R +/Name /Im33 +/Width 12 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc8Àøù�²7°7üÿðÿ?ÊA¡ T$�áÊö r<25³ùK7º +endstream +endobj +41 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 519 0 R +/Name /Im34 +/Width 28 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcoHx àãË?>|ð!ñàd >|ø@{3ó³7@àÆ(fàçof`oc`ÿýñÃÚÉr� +ï$ +endstream +endobj +42 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 520 0 R +/Name /Im35 +/Width 19 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`8ÀÀø�0`võÇÛÙAä ª@B@ÈàCåÏê@F +k4Íã�ék +endstream +endobj +43 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 521 0 R +/Name /Im36 +/Width 20 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøØÀüû�;{ ñ3TÀÐ982ø`�D5 ØÏoàçg©,�¤Nk +endstream +endobj +44 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 522 0 R +/Name /Im37 +/Width 24 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãg? ?ÿñÉ +T�Ññì0ÄÏø�Ë1cncïccÃüCñHíd)�Ó`< +endstream +endobj +45 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 523 0 R +/Name /Im38 +/Width 21 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`¨``ÿÁÀþ óú|ù÷vþ>þö âg¨¡rpdðÁ& +j +þ°ßÀÏÏ ªP3_� +endstream +endobj +46 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 524 0 R +/Name /Im39 +/Width 19 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xco< øåá$x|àÁáØ ±@ xØ00>`©, +�¡} +endstream +endobj +47 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 525 0 R +/Name /Im40 +/Width 11 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcccøÇð'üÿàÿnáÚI�~Ìà +endstream +endobj +48 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 526 0 R +/Name /Im41 +/Width 39 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿßÿòÿØÄ0ÁöÁ¨`HG&l#ríP`oC!Ï ?PìøAÄÿþÿûÿ!áÿ?uùúyZ�ãy;G +endstream +endobj +49 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 527 0 R +/Name /Im42 +/Width 20 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãÀ`ÿ¡Æ¡F¡Áÿ3Èÿg°ãg¨àgøÁÏðß�ä *ì?Ø?Àß|@D¤n²8�&u +endstream +endobj +50 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 528 0 R +/Name /Im43 +/Width 13 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã`ÿ¡ à~`øÏPÀþüæ,X<°�ÜÐßÀ+R7Y�{8 +endstream +endobj +51 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 529 0 R +/Name /Im44 +/Width 13 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcc`C> c°cøÿãÿ9,Pù Ø0à©-�I ÷ +endstream +endobj +52 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 530 0 R +/Name /Im45 +/Width 16 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã¯ùÿïÿ}þù@ÈÇÏþÿðÿHÃd!�» +endstream +endobj +53 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 531 0 R +/Name /Im46 +/Width 11 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãcC>dÀÏPüxáÿÿpË7Ìã�þ{ +endstream +endobj +54 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 532 0 R +/Name /Im47 +/Width 16 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀÿGÎÎÆÎ®B¦á,`¨`°`¶açãÿÃüA@¤n²�fÅ +endstream +endobj +55 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 533 0 R +/Name /Im48 +/Width 24 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãg`øFüx|ýþø|àoøÀÏ@úÿù?I(4Ì�;!ä +endstream +endobj +56 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 534 0 R +/Name /Im49 +/Width 6 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øñçO A_M/�OÖZ +endstream +endobj +57 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 535 0 R +/Name /Im50 +/Width 28 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿÿA=×ð7>(àoxÀß�Âø +ð7 cþj`öÿÿÁXF¾n"�2$ +endstream +endobj +58 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 536 0 R +/Name /Im51 +/Width 17 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀÀÿANÁÁ¡¡¹ásÃÿÿ ô +*,døÙØÿ10þ`©,�¢ +endstream +endobj +59 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 537 0 R +/Name /Im52 +/Width 31 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-ÃÁ À @E¸{ZÂA +1IJRËb ÷ô4+806f³¡zô½òÅ m} Ü iuHäÐùãÊ O6λî 9DL_Ìî÷ø×/É +endstream +endobj +60 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 538 0 R +/Name /Im53 +/Width 12 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãgøüdÁÿþàQhÏ�âìÙ +endstream +endobj +61 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 539 0 R +/Name /Im54 +/Width 24 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãoø_àÿÃü>ð7|àg +ýÿü$D&K�»¼ +endstream +endobj +62 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 540 0 R +/Name /Im55 +/Width 22 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`>À`FÌ8óãü¿Èñ°a?PÁ| �>` 8Pû9y ?Ìÿ)ÔÍ� +ý'Á +endstream +endobj +63 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 541 0 R +/Name /Im56 +/Width 31 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`n``aöÌÿ�%? °ÁNøÄ5ü á3þÿÁ ò@cåøÁÿ�;Ðp ëÀÿõÿ@X^¡~¾�; % +endstream +endobj +64 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 542 0 R +/Name /Im57 +/Width 27 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃÿÿØÈ1?7°À + r uvì =ÿÿAõ±Cõ0ð,jDÿ ¾ÿÿ0HË×ÏS��ýð3± +endstream +endobj +65 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 543 0 R +/Name /Im58 +/Width 18 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÐÀÿ³AF¾Á¿¡½¡¹á1BÑ ªc`¨À`ÿÁþüöÿÿøØóHèP;{Ãv|çÿ04þ`R¬/ �0( +endstream +endobj +66 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 544 0 R +/Name /Im59 +/Width 31 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ�Ãÿÿ?ØÔ�±Ë1?7 a¨D-HÏÿ@6L¯ ÛáÃl,ÏöÿÏÿì??È+ÔÏS�c,õ +endstream +endobj +67 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 545 0 R +/Name /Im60 +/Width 26 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}Í= �Ñ&u7Â1LáX¹Wé?³ÃÛ¯ÌØO6Ó²£«,½,0LRà*í ?÷®|¨S½¨WÊ=L _ cÜxÿ%I +endstream +endobj +68 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 546 0 R +/Name /Im61 +/Width 38 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãç?PÇðßþáÿ¾³7�yÌøjCeÄÿÏÿçÿj" Õ¹é' +endstream +endobj +69 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 547 0 R +/Name /Im62 +/Width 20 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÁÀþA½Áùã@ôá +V0>�*�**jaüÁ "R?Y�Û +endstream +endobj +70 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 548 0 R +/Name /Im63 +/Width 21 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûüÇÿã?äð3àgl�"öfb>FïßÑ`T�E¢"õ%�Rø +endstream +endobj +71 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 549 0 R +/Name /Im64 +/Width 21 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûüÇÿã?äð3àgl�"öfb>FïßÑ`T�C PTpáÇ êlDeë'K��»h +endstream +endobj +72 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 550 0 R +/Name /Im65 +/Width 22 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãoø_àÿÃü ø*ÀȲÊ|À__úÿÄd&K�aí +endstream +endobj +73 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 551 0 R +/Name /Im66 +/Width 20 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`|Àüøÿÿ¾ +~ddÁÇ #Ã`ÿÁøCU00Øÿc°ÿß ÿÿýÿ0|�JBPà +Ævìøÿ30ÿa¯"�çK!g +endstream +endobj +74 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 552 0 R +/Name /Im67 +/Width 22 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãg`øFüxÿb?ÀÏÎÀÏÆÀÏÃÀ/ÁÀoÁÀ_ÁÀÿ¿¿<P51ÑÿÏÿ�BÃ| �g +endstream +endobj +75 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 553 0 R +/Name /Im68 +/Width 24 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãgøðø@ ÄÎþù߯ÿ%D&K�>³> +endstream +endobj +76 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 554 0 R +/Name /Im69 +/Width 17 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°c`øÏÀ|¾½øÙøÐÑÿ )At *4Ìç�Ç6 +endstream +endobj +77 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 555 0 R +/Name /Im70 +/Width 22 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãg`øFüx|ýþø +ø*ø,øl°!°lþøêðÈ3)4Ì�Õ ¤ +endstream +endobj +78 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 556 0 R +/Name /Im71 +/Width 10 +/Height 3 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûà?r1×wó�/Ðd +endstream +endobj +79 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 557 0 R +/Name /Im72 +/Width 5 +/Height 5 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øñãG+kM/�!�à +endstream +endobj +80 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 558 0 R +/Name /Im73 +/Width 28 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿà f?ÀÄÌ@ÌÃØ0@q3@ðöÿPbÃÅ ðfbö@ûÀXF¾~<�ÿÈ6Ô +endstream +endobj +81 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 559 0 R +/Name /Im74 +/Width 13 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc(`øÈ ý;H´XPñ£âÇêØ3ðj4Ïã�Á +endstream +endobj +82 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 560 0 R +/Name /Im75 +/Width 30 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû?ÿóÿ@,Ç|à?àg>p`oØÀÞÂÏ|f`¾QÄÕÌ?êÔ10~°c6dÀXN¤~²"�4#° +endstream +endobj +83 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 561 0 R +/Name /Im76 +/Width 16 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³ÿoÿßBÎÀ®À&¡"áGâÆÌذ7ó7Ë3˱۰հUÈýÿ÷ÿHýd�£<ú +endstream +endobj +84 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 562 0 R +/Name /Im77 +/Width 23 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`g`àg`¨g`ÿÏð~üg` ªÿÿÄÕ«)� -g +endstream +endobj +85 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 563 0 R +/Name /Im78 +/Width 23 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿß0büÏ@ôf£¸fý +I�Þ!6i +endstream +endobj +86 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 564 0 R +/Name /Im79 +/Width 32 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûàÃÿÃÿþÿÿÿþ;@|ýÿ(~@þÿÏþ?+H×ÎR�ÿ<| +endstream +endobj +87 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 565 0 R +/Name /Im80 +/Width 20 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc(``£ ÄFÌØ?0È`øÿÿ±E@ùÇÆÿþ70Ø3¨Õ/�CÓ.C +endstream +endobj +88 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 566 0 R +/Name /Im81 +/Width 23 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûüÁÿó?þßÿÃÿóÿGzðÿAÿâÑÿÿP$.]7K�÷(ù +endstream +endobj +89 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 567 0 R +/Name /Im82 +/Width 29 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°ÀÀøÿóÿüêäȰoà�Âõì`ø?û|¦¦dÈ<öÿÿÁæ3�í®¥�1 +endstream +endobj +90 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 568 0 R +/Name /Im83 +/Width 32 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`¨ÿÀ�Çì¤áúöÿ`ÿÿÿÿûòd;×3@ð"0L-D/?Ðùüêæ~ÿÏüÿùzöÿ +Zu+Ut²GY +endstream +endobj +91 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 569 0 R +/Name /Im84 +/Width 32 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ þÃ(æÀNÌÅòØf²ÿÿþñÿñÿõìÿ¤kg©�©; +endstream +endobj +92 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 570 0 R +/Name /Im85 +/Width 25 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°ÀÀøÿóÿüþ3ÈøÏ`ß�Áõ uõ6@ÌÀðÉ×7@°}sýæùìü?äæþÿ(qARºn�}â#ï +endstream +endobj +93 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 571 0 R +/Name /Im86 +/Width 15 +/Height 43 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcgà? ÿÀåð`g@ÿ ?Ñðÿ?ä×®[%�*'« +endstream +endobj +94 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 572 0 R +/Name /Im87 +/Width 16 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÃüOAþÿþ?ìÿ1ØÈ}ù ó@"¡Àþ|Hída�A< +endstream +endobj +95 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 573 0 R +/Name /Im88 +/Width 31 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ§þß f?@"üÿÉÿ¡vÊË×ÏS�Tð;Æ +endstream +endobj +96 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 574 0 R +/Name /Im89 +/Width 23 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«þ§þùöæìÍ Ì10¾c`øÃÀPF6uÿÏ30¶70·7°3àg~ðÿü? i,�<, +endstream +endobj +97 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 575 0 R +/Name /Im90 +/Width 21 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°3`ø_ÁøøsãöìøÈÁ óbo"þ>ûþÿÌçøÁHä*l>ü`¨ÿÀ`ßÀ *[7Y�i¦ +endstream +endobj +98 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 576 0 R +/Name /Im91 +/Width 23 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc|øùó¶: +9 ø Ç�Cl`¨ù�0?xÀüð�ûþöyì ÄÏ@rÿ¸lÃdq�Ð]} +endstream +endobj +99 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 577 0 R +/Name /Im92 +/Width 22 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÀÀDaù�±7Ñ|öÿ üð7àg|�DrÌàȽøy*ø%*ø$*ä*ø +>ð?H`oS¨/�í¿÷ +endstream +endobj +100 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 578 0 R +/Name /Im93 +/Width 19 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨a`üÏÀÜÜÀÏx@ñãÆ0ôù�±7|`g(àg(c°°`ÿÀÀ~AX¤f²8�ù~ +endstream +endobj +101 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 579 0 R +/Name /Im94 +/Width 44 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿãÿûÿÁ$23�ÉÌìØ°¡Ìøð $?È00I ùÃà4dMBM|P$íØ@%åäÐH cøFò1°I6 dÐQ¨§�]: +endstream +endobj +102 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 580 0 R +/Name /Im95 +/Width 17 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc>À`D ì0ÄÏ@rTÁ ÿÁ¾ÁÁ*Ð~(cø ÃP`ÃP`Á`ñÁþ BÍ|Q�î¬ø +endstream +endobj +103 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 581 0 R +/Name /Im96 +/Width 11 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc| ÿ@þ�3²7@ ?ÊA¡ V@à ø¡(ÆP;�qÁ¼ +endstream +endobj +104 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 582 0 R +/Name /Im97 +/Width 11 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcH`8ÀØÀÜÀÎÀÆÀÇ 6@XÁP� p@|X½ X/ÐvæÆ Üzµ �v` +endstream +endobj +105 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 583 0 R +/Name /Im98 +/Width 30 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcà? ÀPÿ#ñÌælØð30>c6@\Á @ü°ãÿ@¸¨mXùd>|�²h¯ÿ9ÅÚù*�-p +endstream +endobj +106 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 584 0 R +/Name /Im99 +/Width 16 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc8ÀxÿÀÿ0ëÿ×ÿ«+� w£ +endstream +endobj +107 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 585 0 R +/Name /Im100 +/Width 18 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀÀþANÁÁ¡�>@ÑdTÀBüdøÈÿ>Àþù�s±Ho UÈ0T0È`à?À $_7W�OÙ +endstream +endobj +108 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 586 0 R +/Name /Im101 +/Width 18 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨a`üÇÀÞÌÀÇÞÀÃß Ãß`ÁÎ`ÁÀPÁÀP�F0|ÿÇðá;Ãæ úÀ|�@Q3H¯;ûÆBòusžG +endstream +endobj +109 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 587 0 R +/Name /Im102 +/Width 18 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xK``¨ÿ�è3Ã60âa```0�£0z�B@t±cCÌ BòµsÅ 5Ó +endstream +endobj +110 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 588 0 R +/Name /Im103 +/Width 5 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øñãG�¹@``àÀ*[3�Ìv + +endstream +endobj +111 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 589 0 R +/Name /Im104 +/Width 18 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀÀÿANÁÁ¡¹*jØêØìûäÿ0ðÿ``ÿÃÀþAî?E}C|CûÌ`ÄEAæÈñÌdþÀ $_7W�£ w +endstream +endobj +112 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 590 0 R +/Name /Im105 +/Width 18 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀÀÿAFÁ¡¿¡ØA¤ ?É10Ø00ÿ``þÀÀ ÃÀÀdo�£ì*Øü¢ ü6ròØ?0É×Í�H%k +endstream +endobj +113 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 591 0 R +/Name /Im106 +/Width 11 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x;ÀÀ`À`Á ÃÀÃÀÇÀ Ì xàPyæ õì ½|@Sd¦�M=ÀÀW»P�øÇ6 +endstream +endobj +114 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 592 0 R +/Name /Im107 +/Width 25 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨c``üÏÀÀÞÜÌÀÏ|Añ1ã3 ®`üÆPÁð?0ü�bTXÀÄì,d +äÔ3°c©,�kY- +endstream +endobj +115 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 593 0 R +/Name /Im108 +/Width 25 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]Ã= áÅÀZÂîF÷#ttpÀ8p¯ÂQ<'0ÐO»>ÉwPL«£¿&eùG%'-êYQùvÒ|ÐXévøîÌEznráüx3µBhØÆÝÒ=^Óë´¯ +endstream +endobj +116 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 594 0 R +/Name /Im109 +/Width 31 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-̱ 0á¯ÒÚ¥p'ÐUD48KÄÂÒÌÚ Bâ/ÊñÁÇ¥hbú,ÀAÔç(P¢F/:;Ñ+}ÃDïCôD¸Ø¼zh`_ãõKH±/kÇ©z�x´2^ +endstream +endobj +117 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 595 0 R +/Name /Im110 +/Width 18 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³`f°ÿÏ`ÿÁþýtdøÁü ?{{ +ö? ¨á{C?C üöBòusÅ!ï +endstream +endobj +118 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 596 0 R +/Name /Im111 +/Width 24 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xco`øñÁæØ?ð3~àgxÀÏÀþÿÿ�Dü¤¡ÿÿBÃ|I�#I&C +endstream +endobj +119 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 597 0 R +/Name /Im112 +/Width 30 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcoþÀðÿýÆÿjþ¨aoüQÃÏøÁá6üÿÿÿÆ%O,þø?Ë)4Ì�\Ë0 +endstream +endobj +120 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 598 0 R +/Name /Im113 +/Width 18 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀÀÿANAÁ¡½¡>0 ÁÕõM�4 h&ó!ùº¹â�&$q +endstream +endobj +121 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 599 0 R +/Name /Im114 +/Width 28 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xco``øÿñAû;þy~ c`o°a`>�Â5Ì@¸¨êãB¤¦¤ßh2È<¹ óAöTìe�Ú/£X;_�É+,( +endstream +endobj +122 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 600 0 R +/Name /Im115 +/Width 22 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc~pÿç9Ù6ì*ù@ó(*�*?Àÿû�óãÌØý ,�o% +endstream +endobj +123 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 601 0 R +/Name /Im116 +/Width 26 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃÿÿØØ1?7°`al°"ÏQÒÔÏ~$üÿKÉ×Ï�»P)h +endstream +endobj +124 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 602 0 R +/Name /Im117 +/Width 1 +/Height 1 +/BitsPerComponent 1 +/ImageMask true +/Filter /FlateDecode +>> +stream +xc`�� +endstream +endobj +125 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 603 0 R +/Name /Im118 +/Width 9 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãa¨aøÃ0Aüßð¿S ®�vl +endstream +endobj +126 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 604 0 R +/Name /Im119 +/Width 26 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿÿ@ÌÏ ÇÀÏÀC1fg``o``n0``|ðáÿ{)©ú²�ã6î +endstream +endobj +127 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 605 0 R +/Name /Im120 +/Width 18 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûóáÿy99>¼èÿü@$$Pß/ +�4 þ +endstream +endobj +128 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 606 0 R +/Name /Im121 +/Width 9 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x`°a¨b ø28àÿÿ R 3¹�º®± +endstream +endobj +129 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 607 0 R +/Name /Im122 +/Width 17 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûoßðß¾AAø$ÀÈÝ�>00?�!ÆP$(Pß/�2ä: +endstream +endobj +130 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 608 0 R +/Name /Im123 +/Width 14 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc? ÿÁ¦¢Â¢Àæÿÿ>0@`ÿö|õý�N Ò +endstream +endobj +131 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 609 0 R +/Name /Im124 +/Width 12 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû{àÿ9 Ia@ÿü?À#PßÏ�ø +endstream +endobj +132 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 610 0 R +/Name /Im125 +/Width 12 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x%�Úÿ`àpàà`à`ð��?ÀàðÀpÀpàpðàÿÀx° +endstream +endobj +133 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 611 0 R +/Name /Im126 +/Width 11 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãaàC ´aøàÿ�üظÅë§ñ�Ûâ ï +endstream +endobj +134 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 612 0 R +/Name /Im127 +/Width 17 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûoßðß¾AAø$ÀÈÝ�>00?�!Æ0Ô�B 30üc`¨``¯ï�VÆT +endstream +endobj +135 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 613 0 R +/Name /Im128 +/Width 16 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc ÿÃÆ¦B®ï?ðUÈÙØÈÿ` Pß/�ÌP +endstream +endobj +136 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 614 0 R +/Name /Im129 +/Width 14 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÁøy» þ?ðÿ� +ëÔ?àjÉ�U +endstream +endobj +137 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 615 0 R +/Name /Im130 +/Width 20 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿ~âQ?Ã~æÿÿTýL �ñæ +endstream +endobj +138 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 616 0 R +/Name /Im131 +/Width 29 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûóÇáï¿úyþÃäØÈ°3 ÿÏþeêû�l +endstream +endobj +139 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 617 0 R +/Name /Im132 +/Width 18 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÃÀðAúÁ ÿAA½A` Pô?BRõ3EIå¦ +endstream +endobj +140 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 618 0 R +/Name /Im133 +/Width 18 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûSÇð§A/c±càÿýü!ú~Q�õ) Ö +endstream +endobj +141 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 619 0 R +/Name /Im134 +/Width 16 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcïÿoQ^öÌ +ì?Èÿ±ÿWÀÿø*ää°?¨ï�RìG +endstream +endobj +142 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 620 0 R +/Name /Im135 +/Width 5 +/Height 12 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øðãG A+Om7�G,N +endstream +endobj +143 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 621 0 R +/Name /Im136 +/Width 25 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¿áÿÿüø*Øå `(êQÄ?ÀfÿÚ!)U?S�oí +endstream +endobj +144 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 622 0 R +/Name /Im137 +/Width 18 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûóáÿ?y~öb>Àâ@òÿd~0È0 ÿ $$^ß/ +�p +endstream +endobj +145 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 623 0 R +/Name /Im138 +/Width 17 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x?ÀPÿ¡¢¡ÂÁÀÁÿýdÙ�D öÿäåêû ÆÆ9 +endstream +endobj +146 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 624 0 R +/Name /Im139 +/Width 23 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°gbüùA< _ [ý``@Cq 9y þæÿ0Ø3KÕÍ�?§Ë +endstream +endobj +147 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 625 0 R +/Name /Im140 +/Width 16 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã?$ÿÍ®@.ï~`øÁPß`ÿAþÿÆrüìÀ(Ç÷GæþöRu3E [ +endstream +endobj +148 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 626 0 R +/Name /Im141 +/Width 14 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÀÿÇÆÆÂ¦@âV0XðØIðÿ`À'Pß/� T +endstream +endobj +149 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 627 0 R +/Name /Im142 +/Width 22 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¿áÿÿüø~ð3Tð3Ô ¢ +8P¨æ?.ôÿIÕÏ�Jås +endstream +endobj +150 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 628 0 R +/Name /Im143 +/Width 5 +/Height 5 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øñãG+km7�!ß +endstream +endobj +151 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 629 0 R +/Name /Im144 +/Width 25 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨g``üýà~ +9; ´²jä"ü?øða:éé2d&Èl Ru3å�ßU +endstream +endobj +152 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 630 0 R +/Name /Im145 +/Width 23 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¿áÿÿüø~ð3Ô ¢ q ,TAXÐÙ@TþÿÿáÿÿâRõ3¥Ûy~ +endstream +endobj +153 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 631 0 R +/Name /Im146 +/Width 19 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«?P/O]yóÆ@ôñH(Î&ÃÀÇÇð_þ 4ô��ubz +endstream +endobj +154 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 632 0 R +/Name /Im147 +/Width 14 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc|ÀþÏB¦Â¢Â ¡áÃ÷ÿ?ü°øañÁ@Ð +ä°à¨.�n$ +endstream +endobj +155 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 633 0 R +/Name /Im148 +/Width 12 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcf`gøìDÀÿþà¨.�° +endstream +endobj +156 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 634 0 R +/Name /Im149 +/Width 14 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xão°PðáCÅ ´)°a¨a¨�Â0703°1ððÈðXðHÔÿø|uÓ eJG +endstream +endobj +157 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 635 0 R +/Name /Im150 +/Width 16 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc ÿÃÆÆB¦?ðcB üöõÓ );Ð +endstream +endobj +158 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 636 0 R +/Name /Im151 +/Width 32 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßÀøÿÿæÿü?0ï68æAlcÀr Ì�Ù>Èñÿãýÿÿæÿ¯ U?S�ÌR1² +endstream +endobj +159 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 637 0 R +/Name /Im152 +/Width 18 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÃÀðAúÁ ÿA^AA/ú?ÿ� IÕÏ�´ç * +endstream +endobj +160 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 638 0 R +/Name /Im153 +/Width 25 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿ¡+äøäÁøsÃ9F8fc` 3ÿÿ�ÆRõ3e�òM +endstream +endobj +161 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 639 0 R +/Name /Im154 +/Width 26 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏðÿÀÿÿøäøð0ð>`@ü+ØíXù¡½ù3¾aàaøÅ5PlÃ Ç 4y¤¤êgÊ�#L +endstream +endobj +162 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 640 0 R +/Name /Im155 +/Width 10 +/Height 3 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûà?r17tð�/Ë` +endstream +endobj +163 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 641 0 R +/Name /Im156 +/Width 9 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÃðAø¿á§TÃL.�Õº¥ +endstream +endobj +164 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 642 0 R +/Name /Im157 +/Width 18 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨c`�">ìýü?9 +>>(X!Ç`cÇ ÿÿ�ûùBRõ3Eù +endstream +endobj +165 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 643 0 R +/Name /Im158 +/Width 23 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÇÿÿ?ø*ø,ø$ødøxø!ÿ?ÌÄÆÏÀRE2`Tñl¸TýL)� ¢ +endstream +endobj +166 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 644 0 R +/Name /Im159 +/Width 5 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øñãG¬µýÜ�i&½ +endstream +endobj +167 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 645 0 R +/Name /Im160 +/Width 18 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÃÀðAªo�!²ä0È=`)`©`±`acøo�¤êg��@� +endstream +endobj +168 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 646 0 R +/Name /Im161 +/Width 25 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨g``ü½áZØñ1ügcH|ØÌÜðáqCqÃqB¬øqCaCrÃG ÚÏ@=v@½ f1�Íäo`üÿ¡þ¤TÝL9�Ä$ +endstream +endobj +169 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 647 0 R +/Name /Im162 +/Width 25 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûo?¿á?[Èñ1ÈØñ0ȱ9¹_2Ï``OÞÀÀ~?1sÃ8¨ï�ȯ +endstream +endobj +170 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 648 0 R +/Name /Im163 +/Width 11 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc<Àü�0Àûö`Â>¨o°càVlÉ�f'L +endstream +endobj +171 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 480 0 R >> /XObject << /Im97 104 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im75 82 0 R /Im48 55 0 R /Im46 53 0 R /Im47 54 0 R /Im48 55 0 R /Im43 50 0 R /Im51 58 0 R /Im51 58 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im105 112 0 R /Im106 113 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im70 77 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im44 51 0 R /Im62 69 0 R /Im62 69 0 R /Im47 54 0 R /Im47 54 0 R /Im68 75 0 R /Im45 52 0 R /Im72 79 0 R /Im94 101 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im42 49 0 R /Im47 54 0 R /Im62 69 0 R /Im53 60 0 R /Im53 60 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im62 69 0 R /Im47 54 0 R /Im47 54 0 R /Im68 75 0 R /Im45 52 0 R /Im43 50 0 R /Im49 56 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im62 69 0 R /Im46 53 0 R /Im47 54 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im70 77 0 R /Im51 58 0 R /Im61 68 0 R /Im42 49 0 R /Im55 62 0 R /Im51 58 0 R /Im75 82 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im53 60 0 R /Im42 49 0 R /Im47 54 0 R /Im51 58 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im62 69 0 R /Im46 53 0 R /Im47 54 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im66 73 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im54 61 0 R /Im51 58 0 R /Im55 62 0 R /Im70 77 0 R /Im64 71 0 R /Im42 49 0 R /Im23 30 0 R /Im24 31 0 R /Im91 98 0 R /Im96 103 0 R /Im36 43 0 R /Im164 173 0 R /Im24 31 0 R /Im165 174 0 R /Im24 31 0 R /Im37 44 0 R /Im33 40 0 R /Im87 94 0 R /Im164 173 0 R /Im92 99 0 R /Im24 31 0 R /Im165 174 0 R /Im24 31 0 R /Im72 79 0 R /Im166 175 0 R /Im45 52 0 R /Im62 69 0 R /Im61 68 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im53 60 0 R /Im46 53 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im68 75 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im69 76 0 R /Im45 52 0 R /Im62 69 0 R /Im61 68 0 R /Im55 62 0 R /Im46 53 0 R /Im43 50 0 R /Im47 54 0 R /Im68 75 0 R /Im43 50 0 R /Im43 50 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im47 54 0 R /Im62 69 0 R /Im61 68 0 R /Im65 72 0 R /Im68 75 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im71 78 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im65 72 0 R /Im45 52 0 R /Im42 49 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im51 58 0 R /Im45 52 0 R /Im43 50 0 R /Im49 56 0 R /Im46 53 0 R /Im44 51 0 R /Im42 49 0 R /Im65 72 0 R /Im65 72 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im43 50 0 R /Im44 51 0 R /Im47 54 0 R /Im62 69 0 R /Im61 68 0 R /Im61 68 0 R /Im62 69 0 R /Im54 61 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im62 69 0 R /Im69 76 0 R /Im47 54 0 R /Im62 69 0 R /Im53 60 0 R /Im53 60 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im62 69 0 R /Im53 60 0 R /Im68 75 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im65 72 0 R /Im45 52 0 R /Im51 58 0 R /Im69 76 0 R /Im51 58 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im53 60 0 R /Im44 51 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im55 62 0 R /Im51 58 0 R /Im51 58 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im43 50 0 R /Im48 55 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im62 69 0 R /Im75 82 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im54 61 0 R /Im51 58 0 R /Im43 50 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im68 75 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im42 49 0 R /Im65 72 0 R /Im65 72 0 R /Im51 58 0 R /Im42 49 0 R /Im53 60 0 R /Im49 56 0 R /Im70 77 0 R /Im68 75 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im54 61 0 R /Im62 69 0 R /Im44 51 0 R /Im70 77 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im43 50 0 R /Im68 75 0 R /Im65 72 0 R /Im65 72 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im51 58 0 R /Im89 96 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im44 51 0 R /Im46 53 0 R /Im47 54 0 R /Im53 60 0 R /Im51 58 0 R /Im47 54 0 R /Im62 69 0 R /Im61 68 0 R /Im65 72 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im42 49 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im43 50 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im62 69 0 R /Im53 60 0 R /Im53 60 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im71 78 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im62 69 0 R /Im53 60 0 R /Im68 75 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im62 69 0 R /Im54 61 0 R /Im51 58 0 R /Im46 53 0 R /Im66 73 0 R /Im48 55 0 R /Im44 51 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im61 68 0 R /Im46 53 0 R /Im55 62 0 R /Im55 62 0 R /Im53 60 0 R /Im51 58 0 R /Im71 78 0 R /Im66 73 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im72 79 0 R /Im116 123 0 R /Im51 58 0 R /Im45 52 0 R /Im48 55 0 R /Im42 49 0 R /Im65 72 0 R /Im43 50 0 R /Im43 50 0 R /Im68 75 0 R /Im45 52 0 R /Im65 72 0 R /Im45 52 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im53 60 0 R /Im64 71 0 R /Im49 56 0 R /Im75 82 0 R /Im51 58 0 R /Im111 118 0 R /Im54 61 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im55 62 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im46 53 0 R /Im61 68 0 R /Im65 72 0 R /Im53 60 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im62 69 0 R /Im54 61 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im64 71 0 R /Im106 113 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im45 52 0 R /Im51 58 0 R /Im69 76 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im45 52 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im53 60 0 R /Im44 51 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im55 62 0 R /Im51 58 0 R /Im51 58 0 R /Im65 72 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im43 50 0 R /Im48 55 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im62 69 0 R /Im75 82 0 R /Im62 69 0 R /Im54 61 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im54 61 0 R /Im62 69 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im70 77 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im72 79 0 R /Im94 101 0 R /Im51 58 0 R /Im42 49 0 R /Im55 62 0 R /Im62 69 0 R /Im65 72 0 R /Im44 51 0 R /Im42 49 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im111 118 0 R /Im45 52 0 R /Im43 50 0 R /Im44 51 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im70 77 0 R /Im64 71 0 R /Im73 80 0 R /Im70 77 0 R /Im51 58 0 R /Im53 60 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im167 176 0 R /Im42 49 0 R /Im44 51 0 R /Im75 82 0 R /Im62 69 0 R /Im71 78 0 R /Im53 60 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im53 60 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im72 79 0 R /Im94 101 0 R /Im51 58 0 R /Im51 58 0 R /Im89 96 0 R /Im42 49 0 R /Im61 68 0 R /Im46 53 0 R /Im54 61 0 R /Im51 58 0 R /Im55 62 0 R /Im70 77 0 R /Im62 69 0 R /Im44 51 0 R /Im48 55 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im51 58 0 R /Im65 72 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im70 77 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im68 75 0 R /Im61 68 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im54 61 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im53 60 0 R /Im42 49 0 R /Im47 54 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im47 54 0 R /Im45 52 0 R /Im46 53 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im72 79 0 R /Im168 177 0 R /Im54 61 0 R /Im66 73 0 R /Im51 58 0 R /Im54 61 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im53 60 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im51 58 0 R /Im55 62 0 R /Im70 77 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im44 51 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im72 79 0 R /Im169 178 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im46 53 0 R /Im53 60 0 R /Im43 50 0 R /Im45 52 0 R /Im51 58 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im62 69 0 R /Im46 53 0 R /Im61 68 0 R /Im65 72 0 R /Im53 60 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im45 52 0 R /Im46 53 0 R /Im70 77 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im170 179 0 R /Im72 79 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im105 112 0 R /Im46 53 0 R /Im55 62 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im46 53 0 R /Im111 118 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im61 68 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im45 52 0 R /Im46 53 0 R /Im43 50 0 R /Im51 58 0 R /Im75 82 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im68 75 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im72 79 0 R /Im59 66 0 R /Im51 58 0 R /Im53 60 0 R /Im51 58 0 R /Im63 70 0 R /Im42 49 0 R /Im54 61 0 R /Im44 51 0 R /Im55 62 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im46 53 0 R /Im53 60 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im46 53 0 R /Im61 68 0 R /Im65 72 0 R /Im53 60 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im66 73 0 R /Im45 52 0 R /Im42 49 0 R /Im61 68 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im62 69 0 R /Im68 75 0 R /Im45 52 0 R /Im51 58 0 R /Im89 96 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im66 73 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im171 180 0 R /Im72 79 0 R /Im168 177 0 R /Im54 61 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im110 117 0 R /Im62 69 0 R /Im68 75 0 R /Im45 52 0 R /Im43 50 0 R /Im51 58 0 R /Im44 51 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im55 62 0 R /Im46 53 0 R /Im43 50 0 R /Im47 54 0 R /Im68 75 0 R /Im43 50 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im66 73 0 R /Im54 61 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im89 96 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im46 53 0 R /Im43 50 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im45 52 0 R /Im46 53 0 R /Im70 77 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im101 108 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im53 60 0 R /Im44 51 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im62 69 0 R /Im68 75 0 R /Im45 52 0 R /Im51 58 0 R /Im89 96 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im47 54 0 R /Im62 69 0 R /Im61 68 0 R /Im65 72 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im53 60 0 R /Im44 51 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im53 60 0 R /Im46 53 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im68 75 0 R /Im45 52 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im102 109 0 R /Im72 79 0 R /Im166 175 0 R /Im46 53 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im49 56 0 R /Im46 53 0 R /Im54 61 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im104 111 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im47 54 0 R /Im53 60 0 R /Im68 75 0 R /Im43 50 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im42 49 0 R /Im53 60 0 R /Im43 50 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im69 76 0 R /Im68 75 0 R /Im44 51 0 R /Im68 75 0 R /Im45 52 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im66 73 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im54 61 0 R /Im72 79 0 R /Im172 181 0 R /Im78 85 0 R /Im173 182 0 R /Im174 183 0 R /Im175 184 0 R /Im176 185 0 R /Im173 182 0 R /Im176 185 0 R /Im79 86 0 R /Im80 87 0 R /Im86 93 0 R /Im79 86 0 R /Im177 186 0 R /Im80 87 0 R /Im81 88 0 R /Im178 187 0 R /Im79 86 0 R /Im179 188 0 R /Im174 183 0 R /Im82 89 0 R /Im179 188 0 R /Im86 93 0 R /Im80 87 0 R /Im86 93 0 R /Im82 89 0 R /Im79 86 0 R /Im80 87 0 R /Im178 187 0 R /Im180 189 0 R /Im175 184 0 R /Im176 185 0 R /Im179 188 0 R /Im168 177 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im46 53 0 R /Im55 62 0 R /Im51 58 0 R /Im42 49 0 R /Im53 60 0 R /Im47 54 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im62 69 0 R /Im54 61 0 R /Im51 58 0 R /Im75 82 0 R /Im62 69 0 R /Im68 75 0 R /Im53 60 0 R /Im55 62 0 R /Im65 72 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im45 52 0 R /Im63 70 0 R /Im51 58 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im64 71 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im47 54 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im49 56 0 R /Im44 51 0 R /Im62 69 0 R /Im66 73 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im46 53 0 R /Im44 51 0 R /Im43 50 0 R /Im45 52 0 R /Im51 58 0 R /Im53 60 0 R /Im51 58 0 R /Im63 70 0 R /Im42 49 0 R /Im54 61 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im72 79 0 R /Im181 190 0 R /Im54 61 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im68 75 0 R /Im54 61 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im53 60 0 R /Im64 71 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im45 52 0 R /Im64 71 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im45 52 0 R /Im51 58 0 R /Im115 122 0 R /Im68 75 0 R /Im46 53 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im51 58 0 R /Im89 96 0 R /Im47 54 0 R /Im51 58 0 R /Im51 58 0 R /Im55 62 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im42 49 0 R /Im63 70 0 R /Im42 49 0 R /Im46 53 0 R /Im53 60 0 R /Im71 78 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im47 54 0 R /Im42 49 0 R /Im65 72 0 R /Im42 49 0 R /Im47 54 0 R /Im46 53 0 R /Im44 51 0 R /Im64 71 0 R /Im62 69 0 R /Im69 76 0 R /Im61 68 0 R /Im62 69 0 R /Im43 50 0 R /Im44 51 0 R /Im65 72 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im71 78 0 R /Im55 62 0 R /Im42 49 0 R /Im64 71 0 R /Im47 54 0 R /Im62 69 0 R /Im61 68 0 R /Im65 72 0 R /Im68 75 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im43 50 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im49 56 0 R /Im46 53 0 R /Im54 61 0 R /Im65 72 0 R /Im45 52 0 R /Im42 49 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im47 54 0 R /Im51 58 0 R /Im49 56 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im68 75 0 R /Im43 50 0 R /Im68 75 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im46 53 0 R /Im61 68 0 R /Im65 72 0 R /Im53 60 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im92 99 0 R /Im36 43 0 R /Im87 94 0 R /Im92 99 0 R /Im33 40 0 R /Im36 43 0 R /Im95 102 0 R /Im96 103 0 R /Im24 31 0 R /Im109 116 0 R /Im54 61 0 R /Im68 75 0 R /Im44 51 0 R /Im48 55 0 R /Im49 56 0 R /Im99 106 0 R /Im100 107 0 R /Im102 109 0 R /Im105 112 0 R /Im106 113 0 R /Im72 79 0 R /Im56 63 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im62 69 0 R /Im42 49 0 R /Im37 44 0 R /Im25 32 0 R /Im165 174 0 R /Im95 102 0 R /Im24 31 0 R /Im23 30 0 R /Im62 69 0 R /Im69 76 0 R /Im65 72 0 R /Im62 69 0 R /Im44 51 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im46 53 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im43 50 0 R /Im68 75 0 R /Im182 191 0 R /Im47 54 0 R /Im46 53 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im53 60 0 R /Im64 71 0 R /Im53 60 0 R /Im42 49 0 R /Im45 52 0 R /Im66 73 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im76 83 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im92 99 0 R /Im36 43 0 R /Im87 94 0 R /Im92 99 0 R /Im39 46 0 R /Im36 43 0 R /Im96 103 0 R /Im25 32 0 R /Im24 31 0 R /Im106 113 0 R /Im70 77 0 R /Im64 71 0 R /Im68 75 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im43 50 0 R /Im62 69 0 R /Im61 68 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im48 55 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im61 68 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im55 62 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im43 50 0 R /Im44 51 0 R /Im65 72 0 R /Im62 69 0 R /Im65 72 0 R /Im68 75 0 R /Im53 60 0 R /Im42 49 0 R /Im45 52 0 R /Im61 68 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im55 62 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im70 77 0 R /Im64 71 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im66 73 0 R /Im45 52 0 R /Im42 49 0 R /Im61 68 0 R /Im61 68 0 R /Im51 58 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im45 52 0 R /Im46 53 0 R /Im70 77 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im183 192 0 R /Im62 69 0 R /Im70 77 0 R /Im45 52 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im99 106 0 R /Im100 107 0 R /Im102 109 0 R /Im113 120 0 R /Im106 113 0 R /Im72 79 0 R /Im168 177 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im170 179 0 R /Im184 193 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im46 53 0 R /Im51 58 0 R /Im43 50 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im185 194 0 R /Im53 60 0 R /Im62 69 0 R /Im75 82 0 R /Im71 78 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im70 77 0 R /Im46 53 0 R /Im44 51 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im48 55 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im92 99 0 R /Im36 43 0 R /Im87 94 0 R /Im92 99 0 R /Im32 39 0 R /Im37 44 0 R /Im38 45 0 R /Im24 31 0 R /Im186 195 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im61 68 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im70 77 0 R /Im46 53 0 R /Im44 51 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im26 33 0 R /Im24 31 0 R /Im187 196 0 R /Im106 113 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im62 69 0 R /Im55 62 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im68 75 0 R /Im46 53 0 R /Im43 50 0 R /Im48 55 0 R /Im42 49 0 R /Im61 68 0 R /Im62 69 0 R /Im54 61 0 R /Im66 73 0 R /Im55 62 0 R /Im46 53 0 R /Im112 119 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im70 77 0 R /Im62 69 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im61 68 0 R /Im42 49 0 R /Im65 72 0 R /Im65 72 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im62 69 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im48 55 0 R /Im46 53 0 R /Im54 61 0 R /Im55 62 0 R /Im51 58 0 R /Im89 96 0 R /Im46 53 0 R /Im72 79 0 R /Im51 58 0 R /Im72 79 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im64 71 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im106 113 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im62 69 0 R /Im44 51 0 R /Im42 49 0 R /Im53 60 0 R /Im54 61 0 R /Im68 75 0 R /Im61 68 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im70 77 0 R /Im46 53 0 R /Im44 51 0 R /Im43 50 0 R /Im43 50 0 R /Im48 55 0 R /Im62 69 0 R /Im68 75 0 R /Im53 60 0 R /Im55 62 0 R /Im70 77 0 R /Im51 58 0 R /Im47 54 0 R /Im48 55 0 R /Im62 69 0 R /Im43 50 0 R /Im51 58 0 R /Im54 61 0 R /Im43 50 0 R /Im68 75 0 R /Im182 191 0 R /Im47 54 0 R /Im46 53 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im53 60 0 R /Im64 71 0 R /Im53 60 0 R /Im42 49 0 R /Im45 52 0 R /Im66 73 0 R /Im51 58 0 R /Im72 79 0 R /Im50 57 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im68 75 0 R /Im43 50 0 R /Im68 75 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im46 53 0 R /Im61 68 0 R /Im65 72 0 R /Im53 60 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im62 69 0 R /Im54 61 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im111 118 0 R /Im89 96 0 R /Im51 58 0 R /Im55 62 0 R /Im54 61 0 R /Im68 75 0 R /Im61 68 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im55 62 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im62 69 0 R /Im54 61 0 R /Im51 58 0 R /Im106 113 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im64 71 0 R /Im58 65 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im56 63 0 R /Im44 51 0 R /Im67 74 0 R /Im46 53 0 R /Im54 61 0 R /Im49 56 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im105 112 0 R /Im106 113 0 R /Im72 79 0 R /Im58 65 0 R /Im62 69 0 R /Im61 68 0 R /Im51 58 0 R /Im44 51 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im54 61 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im188 197 0 R /Im62 69 0 R /Im75 82 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im46 53 0 R /Im43 50 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im53 60 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im42 49 0 R /Im53 60 0 R /Im46 53 0 R /Im61 68 0 R /Im46 53 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im54 61 0 R /Im68 75 0 R /Im61 68 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im47 54 0 R /Im62 69 0 R /Im53 60 0 R /Im53 60 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im72 79 0 R /Im56 63 0 R /Im54 61 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im64 71 0 R /Im46 53 0 R /Im54 61 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im48 55 0 R /Im62 69 0 R /Im68 75 0 R /Im53 60 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im53 60 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im69 76 0 R /Im62 69 0 R /Im53 60 0 R /Im53 60 0 R /Im62 69 0 R /Im75 82 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im46 53 0 R /Im54 61 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im41 48 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im53 60 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im49 56 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im101 108 0 R /Im103 110 0 R /Im88 95 0 R /Im64 71 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im24 31 0 R /Im33 40 0 R /Im36 43 0 R /Im96 103 0 R /Im20 27 0 R /Im49 56 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im113 120 0 R /Im106 113 0 R /Im167 176 0 R /Im189 198 0 R /Im190 199 0 R /Im191 200 0 R /Im192 201 0 R /Im167 176 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im70 77 0 R /Im46 53 0 R /Im44 51 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im48 55 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im66 73 0 R /Im54 61 0 R /Im46 53 0 R /Im111 118 0 R /Im47 54 0 R /Im42 49 0 R /Im54 61 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im43 50 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im48 55 0 R /Im46 53 0 R /Im54 61 0 R /Im55 62 0 R /Im51 58 0 R /Im89 96 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im67 74 0 R /Im51 58 0 R /Im64 71 0 R /Im46 53 0 R /Im43 50 0 R /Im54 61 0 R /Im51 58 0 R /Im51 58 0 R /Im55 62 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im62 69 0 R /Im55 62 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im68 75 0 R /Im46 53 0 R /Im43 50 0 R /Im48 55 0 R /Im42 49 0 R /Im61 68 0 R /Im62 69 0 R /Im54 61 0 R /Im66 73 0 R /Im55 62 0 R /Im46 53 0 R /Im112 119 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im70 77 0 R /Im62 69 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im48 55 0 R /Im42 49 0 R /Im63 70 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im48 55 0 R /Im46 53 0 R /Im54 61 0 R /Im55 62 0 R /Im51 58 0 R /Im89 96 0 R /Im72 79 0 R /Im117 124 0 R /Im193 202 0 R /Im151 158 0 R /Im138 145 0 R /Im124 131 0 R /Im125 132 0 R /Im156 163 0 R /Im138 145 0 R /Im120 127 0 R /Im157 164 0 R /Im194 203 0 R /Im148 155 0 R /Im195 204 0 R /Im196 205 0 R /Im147 154 0 R /Im197 206 0 R /Im133 140 0 R /Im125 132 0 R /Im123 130 0 R /Im125 132 0 R /Im126 133 0 R /Im152 159 0 R /Im123 130 0 R /Im126 133 0 R /Im123 130 0 R /Im124 131 0 R /Im131 138 0 R /Im198 207 0 R /Im156 163 0 R /Im128 135 0 R /Im141 148 0 R /Im160 167 0 R /Im199 208 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 172 0 R +>> +endobj +172 0 obj +<< +/Length 649 0 R +/Filter /FlateDecode +>> +stream +x¥}K³5¹mä¾Å·´¾]|ÕÃË [ÞLØa-µÚ#ÍèPÌ¿S÷õ]Ve¬MwÇÆaA �þòÃ|ûËáÛßøËñcÎÓ·écì!|L¯?ácÉùÛ¶ðú÷¯ÿðÃÿömùö/úá?¾Èçimåùõµ|Lñ%ãç¿ßâóv_§VüýuûóE<ÅÓÇøÁè¹ÅGSÃ/ùò±Ìhòa_ÃëøëYþºøËGλüäguú!NeºÈ_6~ëwùþôñ +?õÇäÑö Ëç,ʧxÿöúK(éüñuÖCþ2:~Ѿîߥý»®ÿü±ìß?£ñ_RõoIþ±ÓY:¾Wý«òkãË÷£ýûüþ-Öõûºaº`jý¶ó&y â4£--Xh ®&©`h®*X>"´ß1"¾LòüS|¤1!8_ ÏH ¯*Dç7°å²þìÆy ]¿°ëúQùE§ú·jWWpü&í?Cú{=?áâ¼ÿ¦éc[/úY¿ðZ&x¦` +ðÕm@ñ¢æC0â"�¼)©6+`zÀ'0(P2~Y¥?Vh�Ò ÈÅáò³(ïà4£|@ì¥%J>Ñ|Pºþ+2ú`áпMóAþå)<2;�²Ì0Ð `Æ1pUùçÑð©-_åÓGwùùm@_Ô:òrÓ3û±ýc WÑþï/ÚÌÎ_.êù'óáùx½?êú-Èþ9Öo ßöèïºJú˸¼¡ùë\yÙÍþa´Àóp¼%hû·õ[ëðÓöõóA§¿U÷±¿îý6ñ«÷Mð©Füåë)�¼�X=Ýyq¾�iòWå¥ßʳïÏAü~d8¾} R¤ùS�cFë§;aû¯ë¯Eoõ»×¥;ïòõòx9!ß/ßàØy +Zÿ«óJ×ÏoçøÓõÛ2/¯°mÒúqôÉ;¢çéohÿèA\}Úéï¾<±_1£ïwÌ¿DIÿóËæq¾(z1£Ûó¼Ðù/èþÑíw4çkÐ~ÇU»?ý[ìÝ?x~þàwöC~'mÿÙþ%è?è�| +pÿôà;hëGïì×Ué÷'íû9øì~~Ryæÿ¤í·¾AÿA·iѾîÿR¹ß;xsÿ5ø à×öùdýVíþ¦èíËøÚï¿Ìÿ½Ú ø\æO_|ÿËÀÇ2ø£fÿ(x`àKÇÿ¢óOÐ~êÁFþ<ÉÐÑÁì?èàIY$ý¥ß?/Ïöá·à¿×ñ ¼}Ýßó÷õï¼¢øÝ?^ÿ ųl?ò¦ÆÏxÿwðFñÙýU&?ûÍÀ-~æà0ù +þÌõÿëö½Ý¿õýóËüâýÉ·×öÛѯ×õõßÀ÷Û}+uöÉËyÛ/<pÊåòþ¾+òÞNÿ<Jàû7}Q÷V>yƾ @> ýc?>àºëGÆÈ,@@áãßLâþI)àÒÅü_Ýãß Lòõ»ÃG×ñWþX²¶ìüïøÑõnàxÙÿG°¡ðhÀ+T>9qB+ÈJ¿9O@ö@b íOFP ã>àz3ø?&4þÿçZ�QÐä@0 +?òÀpç¯?ßÇ�¾_Fâ¤õ£ó_´ùsþÎCý[gé§óßâ þ4#ýÏÓ¤ÎD°ÒNA[?à ï×ùo)"'Ly«òÁ9ÿåù®~¦)?³©hö®ßöïº~~çï ÿ¤?²*ÿï$/ÓWÒÅóG¾ãÏ÷&¯Í®ÿôWG`óìÀæ@÷Î/E�BæÏ^ÀsD÷Ïõ" ÞßòýS~ä?Õó8¤éþ3jòüÅþ¼Ð<þÆÛªK<¿uÿÖðÈÉ«vÒýÛ ÿô÷LþSêøËG8è»c|bÈjÒ#ÿ·Ôìþúaý+¢ýàòpþy¦¿@-ëú²å_«÷^Æë=loîãI\O?[¸¾cwG+¯§ïL3½l{éÎèø!IãS�ËçFÞ>d¾o#¯£¯¡²'Nò:{)ÁùËÔÛ þÈÔÛ?û/Ãs¥ÞÒý«¯'ÃúS4ý½c_)Dz*õ¾g<8{*Jò~Óô³§Ò#󳳯é_MëéÝ+õµ·ÿû©¯''yùõ0Õ|ï¯ÔÙÞ÷söVy6ÿ4ó'ØOBöS§þÆÖ_çþFó};öé_Äç_׿ö`_ÔÙ÷?°·Îüéú¯èþº®?ß4yÀóë`MÈûRî_KCþ^< ÅIÔ?}Dh.öbGðü:Ö¿²'{ßO×/#ûïÀÞÊüHÿÓ¬éO/uî¤?Ô;ä¿8Rït~<Ø\?}üÚGê¦?»ë'ÛÏ´iþý'ôýzìºcgÊúSì& ÿU×_K½ëéÅ^"´:öÑý¯Çov7¨v7¨9iú×c_cúÚ?=þÉ3òÔ±ýv7äî¿~~WôýJùz~6¨ÿàþgì/Õ~pìn,~zï´øb®¿ýÁøE¿mÿ¼m¿í~#®[o{øiGg-ýÔ_m'Í|& µÝ;K`öJìø¼¦Lcghõuß1D´ù׳GCqßïÈÜLhý¥Ò*ÉSì§Ö_6xûɨý»)HØMMûîëùþy×èßÐøÌÉE?þàøzé³¹p×3_·2hýBÍ|=ÿ;qM9ÿym'yY"´?Þù¾ú¡ýQ®ÃÞàå§c /Çñ°?÷÷Gú«gîFh¿®úÃxö×È_yTfõüý5ûÁ±;õü°ºUÐÐy{«f©þî%¾n¹Ûî9¦î9s*íüñÌI¸ÿ:vGÝOãÍÁñeûZ?½ìÉλ{r¤ï;2Þ\GÿyÙ+¸ÿzæèü'GæhͼìùïtüE?:Ø[ë÷¯È~92íí°»þØH5skÔ°²]£þg®ß}ý%ØI°õ¿÷ÿ¹ü,ÉSì"j÷?ötì2Áó«ý²ÜfþWîsFã£Ô3f¤¿ìú/Þá¾ßù:Ãø_/{µÀûCÇ!ø£ÝËû×ñxÙ-¤ÿhýIæ#Äoe³&ÕþÜgnöñ9 ÿ.ãGþVÁ»ýµîO+ªîbë·Uå)aÈxn$N±ÃÞگױ-{Z<½êT@ãë×V ¯gýî¼·ëæ{°·(N|ýÎ[»®ß*ØþöÖÝÿöÖùþ.öÖÙÊ«UNòßñù¾þêØçÄý#¼É~Ýw+ßÁû³±V^ö]ÂÖOÇNÂö½Ûâ´÷PKFô×tZÏñõØÛlj*>Ê¡·½ú§ûLû+Ñû$.ÞÆO÷å:¹í¼nû whå¶¿âé¾\(µ{vµüHhþBʺÝ+_¯Ø³ ¸ÎßÃû/sq¦yswp[yýÝÈlÜÆ|ÚòcX¨?îýý#ëg:çß³t~è»ÍϯãÝfæO+ÞMYÜönòìüDÜûoý>þè˵óÇß}àí#s.£å\tÎ/÷ÒùãýF ýÔ9ǹäG¬-zúCç?#ý×yÑ8ý¡ï¢ýàï&HÿÐù%ïëæ¯¿iö×+x¦?izvZÅÊÞþSÎmÐü*ývpvkÅÊQ÷3nÚÑ?^ñ鿳ÿèàìfd¿Ñ»ÎwMV¯%å¡|×½âæÿ#gþG*ªý ë?k÷WsÞÑ_þní§[§Ù/Ï»ÏCý]ê/ôßõ¦Iô?Y»íþ¥¸ÿìîîõý§õ¿ðw'Í ë`ü©sî3òñü_w?<;¡ýÎÉWûóÚ»üÝICoè»Ë¢átýÕÿdñgþSèî?e?ùë5ÿ£^Ãàù+A;Ýz ùN»9¬·æG¬Ò.¦N¾×Ën$Î9ã|½;êÝîßïv¼;½bø;ßÙ`ù¡Uû=ÞÂý5ÅÞ{ì(Çiýø»S}· +=ÎI`|=ßyÇÁúɱG¨ +{§·Á÷{Úk§®ß¢·ÚÐùÓs.j¯ÒÞú³w°Öb£¼£X¨å[7ò!È{£h@8xHnwtÙÊë¤éì·NÚ¹?À|JYR�*5ù.xØ�½Ù=\w÷¬_Q×®µñi±Ô`¼9 +6PkÓw?Èþ]ÀÑçÎLIÿò¾ôë¼l÷<\cÒ_´jËáôÇÒ.p=i YðÜu�iéofÉètT[M³äRô'£ôô»xÂÌú;зÎ÷sô+>ÿ¢^`¬_ ú~G¿Mû~^q~¿ìÁZ³cÿlè×"FP=Á^-4<ó`ìQ-uÐÍqô1ô z°:ë;£ùë¯/:0:ó- >àÕNíûï:ÿ9�z¿£oÊù§ó_Ðä@o×ÑÐäÑþéÌ¿¼¡ñ/¶g÷G´ñþIÓ_öýë{ðü@)YS;míMýûì1ÅM~_ÍÿÆUûÙëØ»Qo&o©Z+¹0yí4Ô§£V^¾üQoy½YÞQ®´¿F´{ø+Uã3ÝæÔ»IÒ +¿XÊát_*Ó®'°~r¥IÒ.í»3>§þ G§ï(wÚ9~¼Üé"î?köÖÏAý\áú9zýhöFïf¾x¹S4¾£Üd@ã#ôDïæüN÷íÖèå±÷ºÞ/³*ãwIµ dj»y¿[Ñ�Æ×Ãçh;;È¡è(Ø:£ñäS#tN0/xúìZ»èÞ÷Sò ko- \ðk/zðÄÅ écþµ]õ¨JFîZ þcF&¦ y´àhDßï)غ¿;û×m64¸ÿynÐMy�vÏ¥Hö·[t¡ãÁt.tô\Õ<8NCû¯ãïÉÈ+/ûy¿ó¢èü;àÇ ê¯?ößÙÿT×)àð:¿zÑ¿Ñüõ¢9iççàùuç²d?iÁMK~êØo +ÿ´zâñA~sß?&îÝÊýèùOdÿ¬aCwÿ|§}?Ï¢dÿ»OïÏ2Áñä9äÿy +>³?ùmðüÕ¼ç²õêõâÜúvµ§¾µâºñ¯2[qGÁÉém»NòrÁ,+ºp÷Ä[0¾4^ON˧'Wß·'ÏÉs¤<ìíÜ6´òèí¡wYT^Ö+{Bó×^¤ýÄÓ9HúÇÉsPÿdîI¨wüúoèÔ?GÑM(úYe¾ß~!ãçiöíÍüQì½`Pç×Q°1EIèú't~®ëONäé»sÿEvvê~Àô±ìãM¯x9#rd®.tP¨Ý:Nã;:]#Ô«õøUÖ^µ~Ö)[;À< ê'ªÀ¼Bë¯; `Gð,`Þí¯¿Ý§¬é?çn¡×îÚý<ñ�Ó lÁRmwÑ¿Að2ô§ÈüèèÆWÕ"ß_SzßOÇßÐúéï¯Fþêíoׯ×oàþèÙ;FÞêÝàìýÌÚåÖÿ¢¬ìR7ð"´º5ôEº²·ªVÖ¢_¥!Õ÷ïMÑ»yÔ¶ÔÉåØ¿{ö4yÿÌËòùþ¹ÿÀ{æj@ÞAY®ìvxþHXÖ¥¯TØ"ü°ìVøBþ^]Ã=ÿñºà ùê´?4Ì2©`?BÄYî)d,¯ªV\ÃÍ[î d,p[ë¸Ï�äo�½ÞÁf¯W_Ù)X`úúøA84DÛÒQÄWÅI^§ UÅIût +ZÏöß@¤ÎúÓºüN 9}¿RïÝ¡ÁîÎxù4õ�Ò©+RÀkéTÍÑÜ )¿'ôýªÊ8"@â@Bë§û {£r�)PËoôì?GÐô´ÞÐþÉå#öÆGãt9PÀÆwìÿÎþk|cpÕ|ñf°Öõ_Ñøõ7ª»þD7t:ZOÐþåã*0!ûí``gú¦¼üXAö[/ýU +·O@TìO@Ôô3°ÐøòaýçòÚýÍ1°$í_ö?T3 {÷?ÇÀViý©ü +Ç×AÜî¿5jµö00&Íÿ¢´?::WCïû{-£Gí§µÝ¿4ýçå¿4ÿÊÞ±<é¯Àh Z�ÇËoiúO@jþ¯~Ah+ò?ìßÖOE/Bÿ;éÿh¦Ñû§4¾Áô)>ßw^ ]gf$.Ã'5{ô$.êN+®þ6ðªwä/ÕäõÓøzþùñiþVe¿ù¾mJ¯ôÿi|Ád®ò°Òÿ³ùõã¥ÿ0Gù1c0u÷åï´þzÛó;Ç·ÈÒúsyxþô¶9+<?zþæÖßÑv©¶,>ÿÆ ÿuæOcïÚöꤿzöÝöïªAÞ-c[ù+x>æ Îÿ°__å +^É"Ú�Gù%{À}ÄûúüÉñò_ê÷3ðK3¼|2ɳæ=ÐòU3_ï9¹3ÀÞ +nËOQðlÑÏw+2àúë¥/^àÑ^ÝÞoÿÆå¤pë]0ªÿÖ3º§ÿÀmýÇúÖ¥ôì:À;·ZÁ. GúfFûïHßÌAxµüá¨gÕÇü¸ÕþGçG<²êc§TþúX_Èúðüë¾ ?Gõ-Ñ¢ÁÿHGõ¢ÖÏ~aû¡_qTÿ*-i o²¿a»zØh�²ý+Ð~êÕßjï¥Q<ÏÈ~9z_~ðüæåÙýWõþeé�пpïßÔ�÷Vì? öÓJ�u¥}????-Ýôò5{½×«z{#ó^>¸\» s$ß7ÞàÔ·È+Ô¯ïÔ5ðýrúC¨[Nò:zhGg÷ºè_gþýÒþQôÆ^~ºêÃÐ?¤ý¦ÙµúØI^oüjèß ú[õ¯V1?Yñý é?E?t~O ½K÷/©þHÿÔCs>;ûÏoèüëÁCÐþ;ÀöÏQ},hç¢QÓ¾!ýño¹îqæÙ$Í_Þ:ø7ÉþÑõ+ÚúÑüÑY»(óÌÏÎù¥ó_4ûÅk÷#ûë¨Ý¿júËsûÂÇG÷§½ß´õãC¡ÿâ�ßÔû?A»ÿ)øÐ÷ëÔõdÌÛÁû#EÍ~Sð$iç®_ÒìÏÊ#ÿqßøOÖx³ç?qð<[ÿ®~l¯¼üúy0ç:ëÏo"ýÕ[̹Îùé2çF÷ßsýçàf?9sNóPêÛöÉ|{?-¯8â{æHqw«¨¿yeì®þ±ÚcÏü¿\åFï¯Ñùu_ƼؿÏäËÝ?áz�ú²§~¢/íÔ5¢@=:ª@«ÀSZ!¢+ÐÆw(t@µó'äÀ;jçOÈ�j +ôYûßòFýlÁ̽Ô'l@×zÿÄ1æ`-}{ÃO{:÷¼I^{?áµÓ'4¾bý ½[<(~ÁÉwYZ?ÿm`ûtì:ØõÑY@º�ööÇ×!¡ñ=½3mÆZÇãñ8ôý:q×zg¶òÌY+Ö®_ÕÞ½õçðÝÆ¿ÂW¼÷åòLøÈ þä·®þ2òÛ¾_O£ãÇIÀOÆ]ëè? \?½ubíÛÞÛ +ûÙÑ_V6!f$ÀGáâ(½ößßÎÚÊ[G¢ýG?ÉþYâUgÿ8| ìþÝþ9à_{{÷/9|5Kç÷®tþû'ä¾éðoÚúñÄQhÿdø÷HíÜß¾Bë¯Ã¿{âèý=GÝöÏW·GlÂþý¤ìý¤ùøúøwþÿ®Ïü¯£xÚ ÿuÀ_þÚ´óGÑW�õ>´óÜ3÷Ù¸göý_û±OSæÏKç#ýwtNÿÀ*åöUbÜ7UYâ)Ò_÷P´?¼ôþú>عgcú_¿ÖâWºþô?eúC6ø½c©þBôF§ÿäµþ3ÿì¯#qvCöO/Q&tþôø~9J÷k翾 ûÎ1,|^3×É/µoK ÷}#òÙÞ5£{ª®UÛîÛPìÀ¨oÙsìlƧm|h|OÕµê{^Ûu3>?³¦¼ôû-ï¢Ý?éþÎúsêÚ$Ïl5®<É˶k§®)ëO±S»;Zy;]ÑøÄÑôO. ýp`øÞý~=õµ_¾;¢kyJ]ùåØ\?ú´óÇ©oÕ÷½¶cºV}¿Q×:öÝu{{2ì?öµhúCõÙÄû«mNò:v»¡õó`ohýtû&4öàþý#Øa_]ýeÔ-uÿpÑÍÐ÷_nRìÌò&;öS¯æG÷ÇÞ6RY?]Aû!;Ï©ÀóëÈ»\ù©¶½õÓÆ×Ûö%xþÔ¿Mõ?ÉþoÈw´mãve{;ëÜ_4vðûý#ØOþ§{ÒüývÞÑ?N½Òüÿnѳ®ý'Ì¥×ùÿd.½ìøsÉÞÎíW¶¢«ÿç-¢ñÌ¥E³»BöÃA}èövöoHõì;O<¬ 3Ð+·°£rËνz¢ÁÖxaØênL«ùnÄuõµÏVÜAªÖcºo»A£w«ÚÑÈ;Ð+4õÚv`ÞÝÁj6/¹fv0÷otæþµò²ûÌýk7@ïW¤?:ügeºêË2ú{2´þþY{àUü~ß®ß:ÕÙ?NBãë}¯þÙ·enMÈ�92·,ó§3þñï0NÝBçßùеõ£á»Q7;S·4ûAçG×ÿuƧðIAçÇÌÚþñÌÉY<¿~³²ûS¿xÿ0êvþ¸|ytÿÄ?|fðwgÿ÷Ì{mä¯Þ+ëÛ¶Ã_`|Ð7õXþ9O¦GëÚGæ]RÝßukÐþ¤×O°¿_½Ãÿýþ»(|TÐùsÀ§ýôÐÿI¢ÿÃkî£ûÇ¡¿+ßÑs@:|a�¤Ã·¹>÷ý'íüRø#¬Rü@á÷OosD÷¿ßæôßS³ÅOêßSöëÿ° {âÿìÔ«'ö{/ûõÄ~ïð×ÿ'¯ÿÃåQüíÐÿzâÝÞ5ó*ïè¹°iö Küß4ýío�Îðm¯Þö�|ËëXÇ +¾µânðí$îßNònð÷o§ÕÓÁ·¶ÔnhøJ;6Æwͺötç;¤ìî|úöqÚ�»cÎã ú 6ÀQ¶mF +à�jÍÙÓørðP¦ð²~4ïq +¨_|ë@¾!ýÑß^-o±w�óny'y¹fr¬5¯G @Hÿuð:Fôýºþƾ_wÞ÷¼Ãëøºón +wþõó3ÚOÍ|mý(xU ý÷X¹§ý×ËÖÍÚõËÁ«(]@¼æ>_?ÿ÷8zþ÷¼E ¯çíÖ¦£ç'MÚýC¹Gaôç=>üþ¨Þ÷ /ûûwÏýÕ_ã~êoÊhþY»ÿ)øWÁ÷¼·Y¼#oµæ=÷Ö×¼Ò÷óH5"ó_Q�p½)÷mCöOÏÉG�1wkùQûºÜ± Þ$øÈ~_÷Õ °¼¿Sü¡ÞßzÍù¤óO{Tð»¿Ðý÷¿cÿf´~ðhú'ÇyA´äìàÕÿÃòþzóçU³àùÓ¹ÐÿÐï/ËûÕ_Ëû¿h?Øþ×¼¿¼äÛí§ië§ß°«V\¾ükÉ×ÓÇëÐ×>^/4Õ«³×ÓÞ*o¤7{ +=ëÚÈ;xWA?«¯-?ÅþjÚPOy8ï,"Ýq×=mðx]Òð2Ò^ôþÈЫñÎzúC×Fgß½ôÖê½.HØë²ýÓå(öº¾.¶°×°ÏZù ÷ðkðÄÚ°©¿<Û$FædþÑíÁäIþ¸`fM ã&ixMîò¢aÚ âÌ5¸~²Ûkî?±`ÑÀûA¶ {bÁâÆw0gÍý ú?#ê�õüavo'¦7]Ø "GïV5ltÒÝG½jEßï§Utäè)Õ|¾ÅÐ7¸þ:u+¢ñU¯½Ý?Ñ�qêÚ$Í~¥î÷. N=Ó`¯èþI^ïX:{ß1½û¯£ºÿäûøm¬ãa£j]ú5ª?YÁ(ú1¡ÈQµ;PúÞv¼<üúiýõ'èW ë÷'tþ®ßÏ3?áüû{BCè=¡3´?ôpÌOÕ~ÜSßúã3ê[ÔGöKÉþN}Ó Fl¿wôQñ_(z]+OäåªÍûOòüú6ª?úèÞ¿¦ãæ~FßkË<Oðç½×ÿ¸önÌFÜQµËÿV¯½¨ÝN[y^äÓçoÁ¯ÑëTc«üy²}jS¨UÚX.º»Ö¼Dïû' ¿à²ï³rA°·ï?BþþÀ}=ç]ïÐéúN]}ÿBû p êjîØù.:ÈW!ÏÚ*ÐO¨ëºp]Fû|Á"8!ïGÝ×rEX/D¸©rØ®3Xõ ¬h ¯¸¾n´sØÞã§mú¾Bý^ÖYëQzOÀ +xä âïUÞÂÐ +\Î"[Á½²(ø'Ç�l>Ê1gí(¿ãð%¡%"¡Oùé Õâ8£5¸j1U¢%>;F{.åè®ÚR%Ú=×í ï-�;;4x +êu"4¥â¼íãBI m°æLHƯÈM%XìQC®E² ¯?¨W¯ª×ßÓk.ÿI\ÓÐð7ÍêPÆsiBm¢ußñ&¥ï§ozqãëJHhþP!o¢µçi|Ðõé}?¥Ã É;jägë?£ýs¼©ÖR½ÓG¿Ñ¾ÑÉ,¡¿?:ÿ ÏCÖG§CÅ Y?ô @rñ'¤: l/ª;-s¬ëì#AÛJ'ðü:Ú %q|2ÿôÿ: ÄÏþýyÏ?{%yúýµÜð÷ÏÚø¼:?ÊúWý_lüû}z~ïcìAú÷ìÕÿ Þú ´?6<:¿6<<?údxvY-Ñû˺÷Ï{ ö_ÐNpÿu:=¶?úúe´~ºónª£Þûþ ªèÝ¿ùýOÐÿq¤ã,ÿÌÓ1Ðþë¹èiEû§3Òî'èÿÊöÏDGï«2ê?ïµ@´ïg¢0~Ó"_ªÖ^üJÓa²Éù9«ç¬Ñì×]:f?ïÓ1FýWKÇèé/<c$æåý¨ÓîßÈÓ1Ðùq´ªüÞþ±½¼Åû{Ñ£û·iþ3OÇÐæOÓ1&héÏóÇâïú *µ ßôAµ¢g¸î}Úæ·â:v7£ÑåÇðP[äu쪦â´ò:9XìÞgùÓ£Õ»wb_vwµòì® ï×±Ë +|Z?9ÉJôÖ¿Jã³ØÛê·òzÅPëxöôc Í_o6oþPý]àùÕóyd}دîÿôO'Ó Í_÷]Âôïªÿ´\%Æ}ßýZÑ^8=ÚÿÐ÷{ê�£ËËÁÆHÿtBÍ^GøÓ÷j/O¹ l4ûõ:G_Øü×g|:P?�Veô�ÄÊF=� ¥»¥ ñu6ç>¶ß/±æB÷׬_}@>Ð�éàIÜÐÖ/Ð µï°¥c¥Êhkåõàç�ýO«åÒw@øÆ×ûZùþÀj¡h?ÃT¾RA¨n?Òæ¯?¤ÚÓ?^ø¡þ@ûá)¬_ +þýêõÁuàó.p½S¶�®Ù¿:Më]�¼æÁpô]@¬´ühèá. G%Ü. G%i]Ñqô}¿ý+Úúqyuþ÷{ëÏÑC8½Ë"XG1ÝåU )ú¸©0ÀËô,·t>Ä* ÃõùØ+ÐAR>}ÿôF?éoüGrícÆæ_k¥²t«MÇhůu i÷Äuø¦¦2ÄõjÆÜi'¯3Ïìå˽xµ¡/'j¹`{ãÓùÇY?Eìå¼×ÑËÚú$lvþöL·|¾uþ8spã;ºpÙËy+¹û(úcÎo+ï`nÒ÷Sôwú¯"^Ðø.\õ¸×¾!óá@7´ÿæÛ¥õ£Áû¤Ù/^È?G!ÙÆGè¾{ôîåCÝÝ=9þé 8cÒìe¥Y²wMäÜV¥w~y!ã"ÙÊtþºà[;¾Êm {úGÏ=}Þÿz/zJ+Ü;ÿ}Þòüj½'G.d<]¸Ðýã�/ ýp0·"ô 4>»¿ðsSðú/ð«b- Ð?_óZõ/ÕÂJÐþ8kµkïþâ¥XVÉ~ñR,Y\²ÿËúÈÿN«PðrÕü/ºò_uìËJ¹ôï¿x8¨¿Ù:úËÐorDߨ÷¥XFõ/Ëþ+ÅÆ×KAå¬ù¿¹¨ùÿ]æá`üs0;ßO±ãÆz!ìÝ_.l3¼?ä×÷½²~¼µf¿9sQõÿv¨_ÞÅly^ ÙO¾*büDZGíþeú_¦ÿ4í·ºo99Ýÿ*^×F\}ÓFgʳÁÑuæ í}#ï`Ö2d=y}MõîÏÓmìʳ70¾ÞD'Ô§åcÏ;l¿ÐVYÖñ"_yØÊËçÁÎ;óçYÃE2ç +Ú?ó¯ÇÞöØý~õnØc+¯cß+wd}¯d}èøÛ*ϳýÙÖ½a¹ÖÈ'Ùwß{{åV~Y+»Ò÷_ÏoÅ~ü~½ U¥ùSâ\@~hóoù¬ß&g=ļñ£`¿wÐ7¿»½?`úR>g»l ¢.¾)'p_×ýëX .õÎí>uM@ù+ÿ~ÑJâ¯èù½Sºv>ïL½Ð ½âJÒɨ3¯(ìk%iÐüÀ˼? ÞÓç?°À/QUâPâo¤B¨).àéÞdO�K¥w¶ +¡)nL?×½n×»Æ(TË©÷Ü@ +A·séøÐ8Ïmý8nм¥ZM´·BªÕOòòTþ; ^¾c½ÐNãëÉÃ]jº^2Ýz©ºÑÛ~Ñþ+ô³úý%ßÏ 8F(É£U~.¢Í ¨.Ñ$¸±F_Cp¼¬ßzy7y䥮aPEòC94I~äõ7ù@çÏt�uM8*'/`à â2tÿY_õë·f¿& îhfF÷®L+¯c�µiïó9Æwt +õð·ò:gÙ³íüu.fIbp±î_ô&Ôù§Í_oDÑü¯ÔJ³gg ®å?y;38@8£ b :dȣȼÏî"°Àñu4LGéø¡wÆç X0'ðmhÿëmÍÔò1ÿÒÑ@ôþP= t0Må¥ÿ +øþkáX^zoæÏA¨ô."½oÀE1¬] ñÚW¼£j@ +ZKH·òw®FÞâ.?iä(î}ÁÞºñ~¼Eiþ ÝV0þ eîÿ¾z¿ºÿeV^Gq®9@��£ÕÇ t}æ fB:W¯W$·LèÀÚ1¡¼zæ°+è�ð:WðષS¯s\+¯' ¯£.XÕ_èè½ãw]V½. úàÖNL»xþiz¤¿9 ^×ßl ìýeúsT¯ÔÀsÁ¬ØüÈØóOè_.h|¥å"â +à±=C¾WãËò¼"ûáÈÝ4ê!ôª1ý¦Í~ÓêuAÃ`zø×Ë<Á¿ªÑµ÷=º;£S +WÝ»vt¹rûÞ¹á*ï_zR#ï_Ív·òzõ'Ëhç¯sR�»§ÛÎ`í÷˶óÀZy½z_Fãë¶s¯¾vÝ?TyÁ?pýeß5XåÐvþ:mÑös¨fqþDÞòy=vVü±=þzþ=^¶ë'WÎú~GôoÅÜçÇäÑúëcWOæïÅM2¿¼s²zþA´Ú!óKá»\ý¹X/zhôï/Y²ÿ4ÿrFã_í7÷Þ9bAëïÉÔî/ª¿+¼?uøsú'ÇÎqÓÆ§ØÉ¤ÙOÿøÌ~ü©®ýàùýäòÐ~êë<:vþ]ïnñ³Áû3etþûøbwþ,ÿqAþ«ÔÊþMÞªèk#V<²÷«A,-È]7'@jP}5h@öû¯ì· OÊz ³±/^7àýû æî½® sH³E¯¡qH÷nôï(cÒl5hÚÂ%bkXC4§JÁiµ·ÝãÖR7´ÖP*@þÊ¡wÑ»+°ÄÝ#ÞÖ'ØÞçó<£ï×óHêîI^¯ÀÑøzm¨9¼§ñå`¯¡ôlyP'íÓóhò,}?¥Tþ$¯×ª/¸=ýáã/Òøtýftü<ÝÑùóPP4úýµp_ÿ¬CkÓüueË¢ýaDDó×køTõèþÇÊ¡µÛ/7Åþ¾SPñ)$!û£w°)KãÓýËÚùåydÈ~ 2Wÿç³Pmb~òPtþ÷ÄZD%nmk½RMáè Ç5ªÁm¨Q ®På ª@õo�V +y0qÓ4硽_�[ÀQB}BÔQ{Úy»ç¯¬ßüE²ÈxÝKêT`=NhWÂ8%hP'\/Õ&6;6R6äÂ;ÊXèþ�RaFW°×G.@ZÒ³ï_\ Ö�R3@½2P£W¨¡ £W¨q½Bóæ¯À9 ýuP@t +4@:*'ä;((µmÏ ïqê äû³!ÐÀ]h]ÿæ ÍÙÿC09 ÃÊ0¾_×Â9J¨¯ðüê 8Wxë-¶Qý7 +ÒýÞJ¸÷íkàìþP@ôR&µ{¬×÷ø®3OÏV¤Ñiü_k¨·ò:~Çÿ>½×F^gÀï9d;úÛÊëø½òýÈx¼;8n`ü¤ã?)"yðýgãiuV´~:~3 zÄ�!£ùUFßCA y¼N`µñÂé�è¸ÔÛ«_oB`�Z;¾^Äܼ¿Îø¼aã{Z&ÉÐðÛÂÇV^~D=�´vþîÃãW_o|J©I¤;rG¡)<µçéüÈÑGÌhýôèÃH<'yÀËÈ�+�æQéý +¾/àPZíÞ�e¡Íh,´¯¸VÇhøUn�ZEõÿÒÂëzóÜf°à"Ð qbÆ6ÈAÊÒR"HDgÐDUÛ8÷}@òýISANäYÐ,W!IµKïr+�yeFGÈAÂ&@ç¡,h|eAúç©ÂôìLë³;0êHƯWïüpæð$2äzÈÔ+ �Æ25CF÷sRÏß}!òQýÙ¬'>Ô^éÉùÏF"èèÏõÀ¨ È @¨A!ê(µ@'PÄ *h@x%q4¾EeUPañ(v�¸¼vÙþéO%¤ÉBÛk>ÈB3O?@aóeïó=Þúp~×HÓ¾ÞÁ@²4>GÐViõ(U³ØZyÍ´Îòó,8´þ.xµÒi|½£Àååò«$ÏhÚþóJàhýôËÓ(íß_D1ÈÂ3ý[´ï§çoMÒù£ß?l}êøµio|Å6¡ý×ñ ïÉbËÒù¥� 1Ð:çfAE¤ÿ,¨ö_~Ý`Úú3Ù"ͮѮ/úýðüë(vþ×û¤¿ZË»²ß:ýcçiû;[ðVþÚÁ¼_Í÷I4úÄ@¯=½·ò×»"FÊÒñCƧmèB}j.P-j%°ÅòÈ�§.@G`Ò(~eh@ô@y{dwþ2ÎßÒô¢?2àºä�èÔýjåIJpåpÀFZù¤í`�ä¾'mý8ÿJ½ øÐøBQsà(x ýv´ñeíæü/@émü, g0ú?ø_á¿Pÿþ× �k+¤Q� /Ï�í}5ýèùßÐýçiãWxkÃì§´þò?UTqÒÁºQW<0Æ¡1Zil2 Æøe?»Õë¯Ñ·¹Ïe¾,ÿ¡3>£/ M_ï"¾\îéÓ·>Dãë]xCmÁ³WcqßÅïe¾½3à¨ßÎÓôe ¢õsàOvýu÷uò{8þ<Óï¨ÂooGe>mEÐOòrÚP+Öï²ÿ�ìÒÉÒ2XÑù׫ÄéýAµ¿Sôf@F¸þB#°¡ïwØìñ¸¿À6IçØ2:?z°ZÅ®'Ïñ?8¿öÃÁ<£ó«WqÒd?~¸ ïE~û<ò?GÏïî/GúÙ¼/½ +^íýû*V=ý¥ðèpò¿þ¦ï?ùþJö~ÐÑÖ %Yy#ïè +?û¤c@9~§9Pt¡ñàwh|½KÂÜ %ÙDéµâ&ãoHùǼtýÞ %Ô4Ô %[ n�Bê7ÙûAkÀÝÑo§6[¾µj»M~#]ÿ64º¼aÌénù{B~êøý×1§Ëoï-Àï§äs^»xHðeÙ£-Ô¬öÀh5«=Ð-?ßB̯?uþyæÏ_¨Ðø~Gù¡¹ ùëå¬öÀ`©°$I9y/G ss~»Ö_ +Òü©þAû¥g>DÙ~àeBúr·Yð\¤õ§ÁOçOnacäiòÙ¯n¹Nðݱ_üàúàKýþ¬Ý?tý +²ÿúùßÉ7þóÐÈþ{J@?;;ùæý?È7P£·G°mÐyÓû¯OÐÐ_#n¶oªísGïï4ÿßÈÿÒÁïÐ÷;2·,slðþOýþ·ö_£çÿ¨ÔY?Zûi<ªýÄbw}èµ ýpp§ä?9À§UõÿXû0tÿ ³ÿà·í ^ïXðpG÷ÞÃ$ôýúëIhõ×£xû·âAÈÒÑWëÿÕ7`¼SÐ÷+Õüt©0[ æY³ tFßÄöÔ¯'8/È;rçVtìèA8Ø7T�}³i=Ð�)é}2=@J@ó×#4E %hmÃ2´üÿ6âºÿT; ÄuêÏVkW¼q¨òA°ë§3}J^±ÇãV^'oØî5òü§¶09Éëø%5òü§¶ 9m ÿÔj=àÉcõô¼`?-´ÿ²·£výuütFúãÀOíöëèÆ§ë·<3aÑì]ÿ5JëOõǸw]ýaø¦¿¼|:Ü=yÇW»çUçWÇ/Â&éDãëÜÿmþÙ¿YòQÁ ru?Qýñ-¾³ßÞòóþ+EgoddõÇËýÑP¹�èt:�¨P½øæÎ~Ñ.0Ài +ÌÙ/ÿê~/ö¦±_àÔÙSÐè·[ìHCØü ëúóäµùýøÜ`Ä~ÅvöËûü}_ïà´÷í~ïÿ<ÖÁiGðÐÄ~` ? Ð{6ɦ¹Ál½@© Õnwb)5£0àêEмQGÞ¼p(Gý(Eé¯@éðbç¿i^¯ß$/b�A»Ä8WÄ(µ(VàN0£ ÐøÎ@À®Å*g V½F1ÿHak ÂÍèuê7 ºáY4 ôûW-ç Ühi v»%ÈÛý÷ ïN r7pªßÔñiÂ:ýi, ièÔccíµÍîù´áÄõ.ôF!îé0 +ÉtO_åÈèÂhóÛ¡ÀM÷ô_ÞqæÏè£Gþ×Ô£ý³òý£ëWâ³õ+EZ?Tþ^¡õw@pËN¯A§ýu$ýçù_êùc4¤ÿúèuöFðÉ;òOÂ,?°ýpäÕ±þ4,Áõ"è:~èüë3Z¿ë÷s +j;´AûsÔrÿïX?}üY³w²þ]sþéü AëÌqéíù±FàjìªÆ�8úù¶~'qýsE£ëüÝ:éÞð½öϼ§ý3_ÇßíýrOBá¿|vßá<©ÛG +¾Æ×Çkåõáõ¯Æ¯·þüý²HßÏÛ'£ñïo5ð>¯¿¿ÕÚS'ýÑç¿ õw¼ßÖÞ_½ï§ú[ßõô¿$ý¡ãoE®´_Ëã¡ý5y¶7zùÕÀ½¯ÿÄy¬#Zyÿ°;o`þ:ÿ=ÁÛK/>ZkßõÏ+Þ í¿£x'ºúS·¼þ|Zù½õ§û?g°~:ÿ=.Ð~èϯ:zîm\Ñùwèߪù/tþÛèüM^Ó_Þ|9=ºS}y8ÉËÁ5_Õÿ¡þê¹ÛµöÞ¨ýL Î_Szæ¿¥¤ùo¼óv~(ÿ½ ûï¨]ZÔówë|sÒ9NòôàÛòzö£ûß·?äûaôæèý½"ÿÏÿ!úO¼ö'¿Þy¥æþïþïxK~Ô_ùûíåÔþÖÃâ]sÍêûï÷µC{ñO¿þþpÝÿúOö}þξ/èþp°ïg¤J÷HKÿXÞÝïöpÇ¿Û>ÙB`¤@ÙñòªÐT7MùË+r@Q�Jooð p©·F+þÙS�þòÐÕgü1+ÝÙ:l}Ó7í¨ªL«Í£÷Cì±Z½ä,/Ƕʵ_¬þÈ»ö}¿Òï^UÐ×w÷jÀ¼2G8X¨æôô«þÌ=æ+@¾_©^×VßìÉóê¡nÀWù(@Î@>é0jûè¼äXpôöÕ{C¼ÌÿrhõÔ¹�ÖÏÿ^}ó>²8ÈñXѽðþû^7ô;xU¢pe!¯Ä©ô§¾Ö_×,bFÀ«UTNòÛe ç/_P%aïùÜ�à| +ß}Ýw+ø9Jij�=<È +jÛ\W¶qh mÜí!¥wT®ÆÓø:ÁÈÔ+BNð¿_âk!¼þR°þBD3Z?G"bí"t×í!¥3ª?ÕÖ¯w¡Ú±´ñ i~p+¯¶ÿ·@¾óýÌî, ?zQ¥ùS :¡ï׫XÇTþê]Ü2¿£´:Ë&_ÊÂ3Ú=pFã;M)0ù|\Á#-¬£ÅáíüõB\Ø~ã[!%¤? +/c\Ð8^"&é�óD.t�=/è�êTHH~B£½¤®_Fر~%?¥ÁÏFã;ÊX/PÿôJP_´*£TZÑúéTÚçØ?h@]¼&Õg]Äध�EÍþP 4Bû';PY`(´�wÞB=¯(ÓS ýÐÛxææ ÁiibÚ�N®"I1Àæ9�ó³ÎؼAÜß$ iÒXZè8ÿc]¼ÿut Hõ2«*#K4¥ê+/çÀZÉ¢'Ï+éÔV^¯$RsHÇOE3YßQ(£õC/¬õ*}?OãÉ@tý=¬¼ÌD²J8½õ£ß_+áô¾WÒÙÄó°P»¨îç`$�³6P§ýïßÀÝ?cuö·úã¨dÐøz÷öÏ@Ô4¢þùc�¿®?Öª¯?ÿIÚÑ+ÈÒÐýÜ<ÎÚÄ ¤�hIâÂò´²Fó×+ÙÄZH²Gy|ª�@NÚæ�¶´4 J®ÚF§ÒÚàH*ÅÀtÖ÷B TP÷`TÐøèNY»èúÉj´ÿü] Û@ZàþËETÒàëF¯Î¨eEtF/À�ê\¼ ¼j?I�(Oxõþb�NôHШl/P]UÂFöà ä�;�´ZJ´ÿ°6îÏοµqï}?oÃì@ +À¬Z�L÷C@ÛÐüu�m>´Öÿùºÿ¯1¿cÿ¯Ó¯üÓô÷tèéc-ó'¡ä'ßMíÆ¦JóÅ ù{BôÔ¸Ñ +óü@RÂêÔZ@§¥Î~ Ã�¡HÑXGñóýêÄI[+'Ì~ À)¤²: ¿ �5:ëáÛ>[bõöõ2° oûrååµp5GéB·¨æ´ý �bäJ?�.töðPcQ²µ²Äi Ú´Uæª@.¯?°Dí$\À~�æ¨Á +õų9{Ûé°â/�g p/5ØðYÛ÷¢å8ö¦À¾ bªïÂ^bG2©ïHý�4© ðÔÏ4ß÷7EC×§ò¾\7p+`k®M¾÷u +Ö@0Hõ\ª51&xµÎWº.bNÕ¦¶øÅEùo¿üáÇ_oáÛ/ÿëuÃïòßvÿªþÇ/ÿ°ÿvÜ^¿Z×ÿóoÿðßÿôí÷¿ûõOüÛOÿüíßÿåßþü×?ýæÿþú§ß|ûÿïÛ¿ÿçÏ¿ûýï¿ýê~ý«üöoÿù»þ×OýùÛ?}ûíÏ?ÿùüñïÿûÇÏ¿ýÝß>þøÓÏ?þêe,þë¯ÿãÿçÇ?ÿmûøíÏøý?~ûåÿþá_ùúºÿã]¯ +endstream +endobj +173 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 650 0 R +/Name /Im164 +/Width 17 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨c`üÏÀÜÜÀÏÞ ÇÞ ÃÎ`ÃÄPÁ�EPQC; üö"5EÖo¿ +endstream +endobj +174 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 651 0 R +/Name /Im165 +/Width 35 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãg?ðA~þã?Æ?¾Ë1$?¨ácH>PÁ!7|c`G%øØ rÌ*�ñ±H7ذ7Ô3H03Ø0(ÔNV�ä# +endstream +endobj +175 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 652 0 R +/Name /Im166 +/Width 26 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿà f?ÀÄÌ@ÌÃØ0@q3@ðöÿPbÃÅa/þÿ¥äëçÉ�\ó.; +endstream +endobj +176 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 653 0 R +/Name /Im167 +/Width 5 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øñãG¸¬"5yxaÆ +endstream +endobj +177 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 654 0 R +/Name /Im168 +/Width 15 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿïÿ?öäÀÿ@üò ó�¯N +endstream +endobj +178 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 655 0 R +/Name /Im169 +/Width 30 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃÿÿÿØÈ1{ûæì�ñö ü+ ¸SûªÿÄ<¹ óåÁöýÚ+'_?O�ÿ?2Ð +endstream +endobj +179 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 656 0 R +/Name /Im170 +/Width 18 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x½ @PÑG¾Äm$7ÑP*V1RÅ·]ÞQ TH®NâM?0G¦èWð;èkZLðöoèaLc(Gª3É·äé_¶ë^=hq +endstream +endobj +180 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 657 0 R +/Name /Im171 +/Width 20 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xU˱ @@�@ÑÐJB!¥Ê,&aFÁç\'yí£LX½¸ ÙE%ÔÒÊ$£,2Ë&QRz²ïþ ³Þã^è +endstream +endobj +181 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 658 0 R +/Name /Im172 +/Width 27 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMʱ 1DÑo]àð + °DBv[Àn5ÔáR\Â èµ ÑKf9YE_j>y%aËËÛ422j6õÅ|pBúÀv@Ësº2x{©ÏlzúJhÁ$×Ëíù¾þ�²^Fù +endstream +endobj +182 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 659 0 R +/Name /Im173 +/Width 51 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû Aþ�ÃÿÿÔ`øüÿÃÿ?øÏó>üÿûwF uùÃ?þ̨Ì?èIýÿgÿ¿ÿÿTÊXºv�B^& +endstream +endobj +183 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 660 0 R +/Name /Im174 +/Width 32 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿà?Ãÿçÿüÿÿÿÿ?þü?Øð?`þÃÿñ3ü'áêÿð�êdñÌ}þ¿ÿá? :øÿ?VP¯¥ +�¡J +endstream +endobj +184 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 661 0 R +/Name /Im175 +/Width 15 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿà?òS þÿüZu+ �JÒ.£ +endstream +endobj +185 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 662 0 R +/Name /Im176 +/Width 26 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xEÌ» 0Ð((ÝCáQ¼ñLs£dJ(Æ E¯º(qaiJºÁ\½âÃW@?�S¹+TJ[|½%Gz Û~ú�;Ê,4 +endstream +endobj +186 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 663 0 R +/Name /Im177 +/Width 30 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xm1Â0¹Hé +KT<!â>fÙæyMøI:Ú+]XYtHè4ÅjF>=ðÝ#9Òkdk{6¹âÿÉA Ô"²#qà 3pparFÊsÕïM¸¶ÄúÀéàÛ¾mÜê¸ÜÊrý�ZÑFH +endstream +endobj +187 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 664 0 R +/Name /Im178 +/Width 30 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüßÀÀÿÿüÿ?öÿ1بbûùû~ûf*þÿ¿å?Ø7Ô�Uñ?\âÆû öÿçÿáÿÏÿùó9éºY�HÌ/÷ +endstream +endobj +188 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 665 0 R +/Name /Im179 +/Width 22 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x%± ÐO((íl(\Á XÉÂÀLÜ×yá«ñåù¹/ÔD-^3Ôpü'@A¨ì²QÍÑÜoýfÑ))7ûE¬±´ø�ë/M +endstream +endobj +189 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 666 0 R +/Name /Im180 +/Width 32 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿá?óÿ3ð?ÿÿÿÿüÿØ?ðÿ`þÁÿñÿÊÃð"0T-Pï dñÏËþ¿ñVÝJU�2H +endstream +endobj +190 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 667 0 R +/Name /Im181 +/Width 31 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿOþß f?Àøý�Ãjcæ Ìø�>°10ÔÈ00Èÿ```À ¯P?O �Z1È +endstream +endobj +191 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 668 0 R +/Name /Im182 +/Width 37 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc?ð¡þù?ÆõìÌþ±7°7üáoàgø"*ØVâ?4 :jÿÿ·ÿ&Tæ«�Ú2j +endstream +endobj +192 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 669 0 R +/Name /Im183 +/Width 22 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x± ÐO(hLè kXá*`IÂ$Îr£Ü&'øòô"ýV-©vj>³!¶D¶RÀøÏÀt¨±Aó2mõaÛá"¶U×p=þ£Ã%G +endstream +endobj +193 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 670 0 R +/Name /Im184 +/Width 18 +/Height 13 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x©a°ûÇßÇpáÉÈ�Ñ2 ò|B¼ =¢�é¥ +endstream +endobj +194 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 671 0 R +/Name /Im185 +/Width 25 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãcÀ`ßÿÁøGCòä6Él7T0°#a~Ìø°Añ1óa >Æ ÇxÁñC¤Hýdi�f¿ +endstream +endobj +195 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 672 0 R +/Name /Im186 +/Width 19 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc?ÜÀÿüDÍ tàãÄø� +$|>p�lx~¡æE °HídQ� à2 +endstream +endobj +196 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 673 0 R +/Name /Im187 +/Width 21 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xco0?Payàá>$øpøàöF(âg>@ì P$ßÀþñ=?C C CACÂûò¢²µÅ�¹Ã +endstream +endobj +197 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 674 0 R +/Name /Im188 +/Width 24 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcßÀðÿãÃÌ?°7~àgÀþÿ!¬RxÐÿçÿHB¡a¾$�§+¼ +endstream +endobj +198 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 675 0 R +/Name /Im189 +/Width 36 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xEÍ«0DÑÇDD¦b0t`REÔB))!("2yì +À·wU7úah"0'°+pZ2@¸2¸Ð +*)Ègñ¬8ö\bÌò"UTwM?þÀëF× +endstream +endobj +199 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 676 0 R +/Name /Im190 +/Width 21 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÇÀþ¿¿ý<ó{Æu ôããÿÿAèÕ= <ÿìÿ0üo©,�Ùb +endstream +endobj +200 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 677 0 R +/Name /Im191 +/Width 25 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÃ(æ?`Á�Âì + øÃæ>``üy�þ7 p=ÛA±[00T�ñ + .``xðá#׵ȥ%eë'Ë��ÄÀ( +endstream +endobj +201 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 678 0 R +/Name /Im192 +/Width 12 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xg°?øàÀ00|`xÀx±Ç@ÂÀ þÁ ä®$�N, +endstream +endobj +202 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 679 0 R +/Name /Im193 +/Width 11 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xg¨o8|à0�!ãæv>úÿ[ ¾�?Ò< +endstream +endobj +203 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 680 0 R +/Name /Im194 +/Width 10 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc8ÀØÀÌÀÆÀÇÀà Á`@�°@8HÞ�¬V¨¨±á�ZÝl~�Ë +endstream +endobj +204 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 681 0 R +/Name /Im195 +/Width 14 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xco`Q�@Ðj +jìÿÈïa°a°`°0¨¨(¨xPxÀ¾AO¢nº0�sÛ +endstream +endobj +205 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 682 0 R +/Name /Im196 +/Width 14 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xco`Q``Q�uöäð?ÿ`ù£ æÍ0(°°(ÀßÀ'Q7]�@Ez +endstream +endobj +206 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 683 0 R +/Name /Im197 +/Width 10 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x;ÀÀ`À Á ÃÀÃÀÆÀÌÌ Ì x�äÁjÙºdº ¦`àR«Í�XA +endstream +endobj +207 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 684 0 R +/Name /Im198 +/Width 6 +/Height 12 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã0HH8pàÇ?5l<u3¹Bni +endstream +endobj +208 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 685 0 R +/Name /Im199 +/Width 6 +/Height 12 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øñçO AOíLn�EW( +endstream +endobj +209 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 480 0 R >> /XObject << /Im200 211 0 R /Im201 212 0 R /Im202 213 0 R /Im190 199 0 R /Im167 176 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im70 77 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im75 82 0 R /Im48 55 0 R /Im46 53 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im47 54 0 R /Im42 49 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im42 49 0 R /Im47 54 0 R /Im68 75 0 R /Im44 51 0 R /Im62 69 0 R /Im112 119 0 R /Im49 56 0 R /Im62 69 0 R /Im45 52 0 R /Im62 69 0 R /Im70 77 0 R /Im44 51 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im48 55 0 R /Im46 53 0 R /Im66 73 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im72 79 0 R /Im203 214 0 R /Im204 215 0 R /Im201 212 0 R /Im205 216 0 R /Im190 199 0 R /Im167 176 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im70 77 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im72 79 0 R /Im58 65 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im75 82 0 R /Im51 58 0 R /Im42 49 0 R /Im55 62 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im44 51 0 R /Im62 69 0 R /Im107 114 0 R /Im71 78 0 R /Im108 115 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im47 54 0 R /Im42 49 0 R /Im54 61 0 R /Im70 77 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im68 75 0 R /Im51 58 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im51 58 0 R /Im49 56 0 R /Im42 49 0 R /Im54 61 0 R /Im68 75 0 R /Im65 72 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im70 77 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im62 69 0 R /Im45 52 0 R /Im42 49 0 R /Im53 60 0 R /Im62 69 0 R /Im75 82 0 R /Im51 58 0 R /Im45 52 0 R /Im70 77 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im72 79 0 R /Im206 217 0 R /Im207 218 0 R /Im208 219 0 R /Im209 220 0 R /Im167 176 0 R /Im56 63 0 R /Im111 118 0 R /Im51 58 0 R /Im53 60 0 R /Im55 62 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im46 53 0 R /Im54 61 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im45 52 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im49 56 0 R /Im46 53 0 R /Im54 61 0 R /Im55 62 0 R /Im46 53 0 R /Im47 54 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im75 82 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im68 75 0 R /Im51 58 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im51 58 0 R /Im49 56 0 R /Im42 49 0 R /Im54 61 0 R /Im68 75 0 R /Im65 72 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im70 77 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im62 69 0 R /Im45 52 0 R /Im42 49 0 R /Im53 60 0 R /Im62 69 0 R /Im75 82 0 R /Im51 58 0 R /Im45 52 0 R /Im70 77 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im72 79 0 R /Im210 221 0 R /Im190 199 0 R /Im211 222 0 R /Im212 223 0 R /Im213 224 0 R /Im167 176 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im55 62 0 R /Im51 58 0 R /Im65 72 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im70 77 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im72 79 0 R /Im94 101 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im55 62 0 R /Im62 69 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im42 49 0 R /Im54 61 0 R /Im185 194 0 R /Im71 78 0 R /Im65 72 0 R /Im53 60 0 R /Im64 71 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im43 50 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im65 72 0 R /Im53 60 0 R /Im64 71 0 R /Im214 225 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im51 58 0 R /Im65 72 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im185 194 0 R /Im215 226 0 R /Im214 225 0 R /Im72 79 0 R /Im216 227 0 R /Im217 228 0 R /Im81 88 0 R /Im81 88 0 R /Im82 89 0 R /Im81 88 0 R /Im179 188 0 R /Im218 229 0 R /Im81 88 0 R /Im82 89 0 R /Im173 182 0 R /Im80 87 0 R /Im81 88 0 R /Im178 187 0 R /Im79 86 0 R /Im179 188 0 R /Im174 183 0 R /Im82 89 0 R /Im179 188 0 R /Im86 93 0 R /Im80 87 0 R /Im86 93 0 R /Im82 89 0 R /Im79 86 0 R /Im80 87 0 R /Im178 187 0 R /Im180 189 0 R /Im175 184 0 R /Im176 185 0 R /Im179 188 0 R /Im168 177 0 R /Im61 68 0 R /Im65 72 0 R /Im53 60 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im48 55 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im62 69 0 R /Im55 62 0 R /Im68 75 0 R /Im47 54 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im75 82 0 R /Im62 69 0 R /Im44 51 0 R /Im64 71 0 R /Im65 72 0 R /Im51 58 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im51 58 0 R /Im45 52 0 R /Im45 52 0 R /Im62 69 0 R /Im45 52 0 R /Im49 56 0 R /Im46 53 0 R /Im55 62 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im46 53 0 R /Im111 118 0 R /Im51 58 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im53 60 0 R /Im64 71 0 R /Im42 49 0 R /Im43 50 0 R /Im99 106 0 R /Im100 107 0 R /Im102 109 0 R /Im113 120 0 R /Im70 77 0 R /Im64 71 0 R /Im183 192 0 R /Im62 69 0 R /Im70 77 0 R /Im45 52 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im111 118 0 R /Im45 52 0 R /Im43 50 0 R /Im44 51 0 R /Im44 51 0 R /Im64 71 0 R /Im65 72 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im51 58 0 R /Im45 52 0 R /Im45 52 0 R /Im62 69 0 R /Im45 52 0 R /Im97 104 0 R /Im47 54 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im51 58 0 R /Im55 62 0 R /Im33 40 0 R /Im187 196 0 R /Im91 98 0 R /Im24 31 0 R /Im219 230 0 R /Im70 77 0 R /Im64 71 0 R /Im183 192 0 R /Im62 69 0 R /Im70 77 0 R /Im45 52 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im102 109 0 R /Im113 120 0 R /Im106 113 0 R /Im106 113 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im46 53 0 R /Im61 68 0 R /Im65 72 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im42 49 0 R /Im54 61 0 R /Im44 51 0 R /Im72 79 0 R /Im58 65 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im68 75 0 R /Im61 68 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im42 49 0 R /Im63 70 0 R /Im42 49 0 R /Im46 53 0 R /Im53 60 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im48 55 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im61 68 0 R /Im68 75 0 R /Im47 54 0 R /Im48 55 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im62 69 0 R /Im44 51 0 R /Im42 49 0 R /Im53 60 0 R /Im54 61 0 R /Im68 75 0 R /Im61 68 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im49 56 0 R /Im46 53 0 R /Im44 51 0 R /Im61 68 0 R /Im68 75 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im65 72 0 R /Im65 72 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im75 82 0 R /Im62 69 0 R /Im55 62 0 R /Im46 53 0 R /Im112 119 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im64 71 0 R /Im46 53 0 R /Im51 58 0 R /Im53 60 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im48 55 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im51 58 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im62 69 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im45 52 0 R /Im45 52 0 R /Im62 69 0 R /Im45 52 0 R /Im49 56 0 R /Im70 77 0 R /Im51 58 0 R /Im47 54 0 R /Im42 49 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im75 82 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im42 49 0 R /Im44 51 0 R /Im64 71 0 R /Im65 72 0 R /Im51 58 0 R /Im71 78 0 R /Im99 106 0 R /Im51 58 0 R /Im45 52 0 R /Im45 52 0 R /Im62 69 0 R /Im45 52 0 R /Im62 69 0 R /Im47 54 0 R /Im47 54 0 R /Im68 75 0 R /Im45 52 0 R /Im43 50 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im64 71 0 R /Im75 82 0 R /Im46 53 0 R /Im53 60 0 R /Im53 60 0 R /Im70 77 0 R /Im51 58 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im75 82 0 R /Im45 52 0 R /Im62 69 0 R /Im54 61 0 R /Im66 73 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im49 56 0 R /Im46 53 0 R /Im69 76 0 R /Im43 50 0 R /Im62 69 0 R /Im49 56 0 R /Im75 82 0 R /Im46 53 0 R /Im53 60 0 R /Im53 60 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im62 69 0 R /Im55 62 0 R /Im68 75 0 R /Im47 54 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im45 52 0 R /Im62 69 0 R /Im45 52 0 R /Im43 50 0 R /Im72 79 0 R /Im114 121 0 R /Im69 76 0 R /Im44 51 0 R /Im51 58 0 R /Im54 61 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im43 50 0 R /Im46 53 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im44 51 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im44 51 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im51 58 0 R /Im45 52 0 R /Im45 52 0 R /Im62 69 0 R /Im45 52 0 R /Im70 77 0 R /Im64 71 0 R /Im44 51 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im69 76 0 R /Im45 52 0 R /Im62 69 0 R /Im61 68 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im53 60 0 R /Im51 58 0 R /Im66 73 0 R /Im42 49 0 R /Im53 60 0 R /Im46 53 0 R /Im44 51 0 R /Im64 71 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im49 56 0 R /Im51 58 0 R /Im112 119 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im53 60 0 R /Im64 71 0 R /Im53 60 0 R /Im62 69 0 R /Im75 82 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im45 52 0 R /Im45 52 0 R /Im62 69 0 R /Im45 52 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im72 79 0 R /Im168 177 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im53 60 0 R /Im53 60 0 R /Im51 58 0 R /Im66 73 0 R /Im42 49 0 R /Im53 60 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im64 71 0 R /Im61 68 0 R /Im68 75 0 R /Im43 50 0 R /Im44 51 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im45 52 0 R /Im54 61 0 R /Im42 49 0 R /Im54 61 0 R /Im62 69 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im62 69 0 R /Im54 61 0 R /Im51 58 0 R /Im70 77 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im46 53 0 R /Im54 61 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im66 73 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im72 79 0 R /Im52 59 0 R /Im62 69 0 R /Im44 51 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im32 39 0 R /Im87 94 0 R /Im53 60 0 R /Im51 58 0 R /Im66 73 0 R /Im42 49 0 R /Im53 60 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im53 60 0 R /Im53 60 0 R /Im61 68 0 R /Im42 49 0 R /Im64 71 0 R /Im55 62 0 R /Im46 53 0 R /Im112 119 0 R /Im51 58 0 R /Im45 52 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im70 77 0 R /Im42 49 0 R /Im70 77 0 R /Im46 53 0 R /Im53 60 0 R /Im46 53 0 R /Im44 51 0 R /Im64 71 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im62 69 0 R /Im47 54 0 R /Im47 54 0 R /Im68 75 0 R /Im45 52 0 R /Im45 52 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im64 71 0 R /Im65 72 0 R /Im51 58 0 R /Im71 78 0 R /Im99 106 0 R /Im51 58 0 R /Im45 52 0 R /Im45 52 0 R /Im62 69 0 R /Im45 52 0 R /Im43 50 0 R /Im47 54 0 R /Im42 49 0 R /Im54 61 0 R /Im70 77 0 R /Im51 58 0 R /Im53 60 0 R /Im62 69 0 R /Im75 82 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im70 77 0 R /Im64 71 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im68 75 0 R /Im61 68 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im70 77 0 R /Im46 53 0 R /Im44 51 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im48 55 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im51 58 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im55 62 0 R /Im44 51 0 R /Im64 71 0 R /Im65 72 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im51 58 0 R /Im45 52 0 R /Im45 52 0 R /Im62 69 0 R /Im45 52 0 R /Im97 104 0 R /Im47 54 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im51 58 0 R /Im55 62 0 R /Im33 40 0 R /Im187 196 0 R /Im91 98 0 R /Im24 31 0 R /Im220 231 0 R /Im49 56 0 R /Im62 69 0 R /Im45 52 0 R /Im164 173 0 R /Im96 103 0 R /Im36 43 0 R /Im87 94 0 R /Im92 99 0 R /Im70 77 0 R /Im64 71 0 R /Im183 192 0 R /Im62 69 0 R /Im70 77 0 R /Im45 52 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im102 109 0 R /Im113 120 0 R /Im106 113 0 R /Im106 113 0 R /Im49 56 0 R /Im62 69 0 R /Im47 54 0 R /Im47 54 0 R /Im68 75 0 R /Im45 52 0 R /Im43 50 0 R /Im75 82 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im75 82 0 R /Im62 69 0 R /Im55 62 0 R /Im46 53 0 R /Im112 119 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im70 77 0 R /Im62 69 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im61 68 0 R /Im42 49 0 R /Im65 72 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im62 69 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im64 71 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im49 56 0 R /Im46 53 0 R /Im72 79 0 R /Im51 58 0 R /Im72 79 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im48 55 0 R /Im46 53 0 R /Im54 61 0 R /Im55 62 0 R /Im51 58 0 R /Im89 96 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im61 68 0 R /Im61 68 0 R /Im62 69 0 R /Im54 61 0 R /Im53 60 0 R /Im64 71 0 R /Im67 74 0 R /Im54 61 0 R /Im62 69 0 R /Im75 82 0 R /Im54 61 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im164 173 0 R /Im93 100 0 R /Im96 103 0 R /Im96 103 0 R /Im32 39 0 R /Im87 94 0 R /Im32 39 0 R /Im93 100 0 R /Im37 44 0 R /Im97 104 0 R /Im109 116 0 R /Im54 61 0 R /Im68 75 0 R /Im44 51 0 R /Im48 55 0 R /Im49 56 0 R /Im99 106 0 R /Im100 107 0 R /Im102 109 0 R /Im105 112 0 R /Im106 113 0 R /Im72 79 0 R /Im94 101 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im42 49 0 R /Im47 54 0 R /Im62 69 0 R /Im53 60 0 R /Im53 60 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im62 69 0 R /Im47 54 0 R /Im47 54 0 R /Im68 75 0 R /Im45 52 0 R /Im43 50 0 R /Im49 56 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im62 69 0 R /Im46 53 0 R /Im47 54 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im70 77 0 R /Im51 58 0 R /Im61 68 0 R /Im42 49 0 R /Im55 62 0 R /Im51 58 0 R /Im75 82 0 R /Im48 55 0 R /Im46 53 0 R /Im47 54 0 R /Im48 55 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im75 82 0 R /Im62 69 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im63 70 0 R /Im62 69 0 R /Im53 60 0 R /Im63 70 0 R /Im51 58 0 R /Im55 62 0 R /Im43 50 0 R /Im48 55 0 R /Im62 69 0 R /Im68 75 0 R /Im53 60 0 R /Im55 62 0 R /Im70 77 0 R /Im51 58 0 R /Im65 72 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im45 52 0 R /Im63 70 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im72 79 0 R /Im58 65 0 R /Im68 75 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im62 69 0 R /Im46 53 0 R /Im47 54 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im70 77 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im23 30 0 R /Im24 31 0 R /Im91 98 0 R /Im96 103 0 R /Im36 43 0 R /Im164 173 0 R /Im24 31 0 R /Im165 174 0 R /Im24 31 0 R /Im37 44 0 R /Im33 40 0 R /Im87 94 0 R /Im164 173 0 R /Im92 99 0 R /Im24 31 0 R /Im165 174 0 R /Im24 31 0 R /Im72 79 0 R /Im58 65 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im53 60 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im53 60 0 R /Im42 49 0 R /Im47 54 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im43 50 0 R /Im47 54 0 R /Im68 75 0 R /Im43 50 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im58 65 0 R /Im68 75 0 R /Im70 77 0 R /Im43 50 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im101 108 0 R /Im72 79 0 R /Im99 106 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im70 77 0 R /Im42 49 0 R /Im70 77 0 R /Im46 53 0 R /Im53 60 0 R /Im46 53 0 R /Im44 51 0 R /Im64 71 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im62 69 0 R /Im47 54 0 R /Im47 54 0 R /Im68 75 0 R /Im45 52 0 R /Im45 52 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im47 54 0 R /Im62 69 0 R /Im53 60 0 R /Im53 60 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im47 54 0 R /Im42 49 0 R /Im54 61 0 R /Im70 77 0 R /Im51 58 0 R /Im53 60 0 R /Im62 69 0 R /Im75 82 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im70 77 0 R /Im64 71 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im68 75 0 R /Im61 68 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im70 77 0 R /Im46 53 0 R /Im44 51 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im48 55 0 R /Im46 53 0 R /Im54 61 0 R /Im55 62 0 R /Im51 58 0 R /Im89 96 0 R /Im97 104 0 R /Im46 53 0 R /Im72 79 0 R /Im51 58 0 R /Im72 79 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im68 75 0 R /Im61 68 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im46 53 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im106 113 0 R /Im72 79 0 R /Im221 232 0 R /Im222 233 0 R /Im223 234 0 R /Im176 185 0 R /Im179 188 0 R /Im80 87 0 R /Im81 88 0 R /Im84 91 0 R /Im85 92 0 R /Im80 87 0 R /Im84 91 0 R /Im81 88 0 R /Im176 185 0 R /Im82 89 0 R /Im218 229 0 R /Im80 87 0 R /Im223 234 0 R /Im176 185 0 R /Im86 93 0 R /Im173 182 0 R /Im174 183 0 R /Im175 184 0 R /Im176 185 0 R /Im173 182 0 R /Im176 185 0 R /Im79 86 0 R /Im80 87 0 R /Im178 187 0 R /Im80 87 0 R /Im86 93 0 R /Im82 89 0 R /Im79 86 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im66 73 0 R /Im45 52 0 R /Im42 49 0 R /Im61 68 0 R /Im224 235 0 R /Im225 236 0 R /Im226 237 0 R /Im227 238 0 R /Im228 239 0 R /Im229 240 0 R /Im228 239 0 R /Im46 53 0 R /Im43 50 0 R /Im42 49 0 R /Im43 50 0 R /Im46 53 0 R /Im61 68 0 R /Im65 72 0 R /Im53 60 0 R /Im51 58 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im66 73 0 R /Im45 52 0 R /Im42 49 0 R /Im61 68 0 R /Im49 56 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im66 73 0 R /Im54 61 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im62 69 0 R /Im70 77 0 R /Im51 58 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im46 53 0 R /Im53 60 0 R /Im64 71 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im55 62 0 R /Im68 75 0 R /Im47 54 0 R /Im46 53 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im70 77 0 R /Im64 71 0 R /Im62 69 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im43 50 0 R /Im230 241 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im55 62 0 R /Im68 75 0 R /Im47 54 0 R /Im46 53 0 R /Im70 77 0 R /Im46 53 0 R /Im53 60 0 R /Im46 53 0 R /Im44 51 0 R /Im64 71 0 R /Im43 50 0 R /Im51 58 0 R /Im45 52 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im61 68 0 R /Im62 69 0 R /Im44 51 0 R /Im51 58 0 R /Im42 49 0 R /Im68 75 0 R /Im54 61 0 R /Im46 53 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im65 72 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im42 49 0 R /Im74 81 0 R /Im62 69 0 R /Im45 52 0 R /Im47 54 0 R /Im62 69 0 R /Im61 68 0 R /Im65 72 0 R /Im62 69 0 R /Im54 61 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im224 235 0 R /Im225 236 0 R /Im226 237 0 R /Im227 238 0 R /Im228 239 0 R /Im229 240 0 R /Im228 239 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im44 51 0 R /Im68 75 0 R /Im44 51 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im61 68 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im49 56 0 R /Im63 70 0 R /Im46 53 0 R /Im76 83 0 R /Im72 79 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im66 73 0 R /Im46 53 0 R /Im54 61 0 R /Im51 58 0 R /Im97 104 0 R /Im171 180 0 R /Im72 79 0 R /Im99 106 0 R /Im106 113 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im71 78 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im48 55 0 R /Im51 58 0 R /Im68 75 0 R /Im45 52 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im47 54 0 R /Im43 50 0 R /Im97 104 0 R /Im171 180 0 R /Im72 79 0 R /Im170 179 0 R /Im106 113 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im69 76 0 R /Im68 75 0 R /Im54 61 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im97 104 0 R /Im171 180 0 R /Im72 79 0 R /Im105 112 0 R /Im106 113 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im46 53 0 R /Im61 68 0 R /Im65 72 0 R /Im53 60 0 R /Im51 58 0 R /Im71 78 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im97 104 0 R /Im171 180 0 R /Im72 79 0 R /Im171 180 0 R /Im106 113 0 R /Im72 79 0 R /Im117 124 0 R /Im231 242 0 R /Im232 243 0 R /Im129 136 0 R /Im133 140 0 R /Im156 163 0 R /Im156 163 0 R /Im157 164 0 R /Im123 130 0 R /Im125 132 0 R /Im141 148 0 R /Im124 131 0 R /Im121 128 0 R /Im137 144 0 R /Im126 133 0 R /Im121 128 0 R /Im128 135 0 R /Im120 127 0 R /Im128 135 0 R /Im129 136 0 R /Im126 133 0 R /Im152 159 0 R /Im123 130 0 R /Im137 144 0 R /Im124 131 0 R /Im128 135 0 R /Im134 141 0 R /Im124 131 0 R /Im138 145 0 R /Im131 138 0 R /Im162 169 0 R /Im121 128 0 R /Im156 163 0 R /Im156 163 0 R /Im132 139 0 R /Im123 130 0 R /Im134 141 0 R /Im121 128 0 R /Im122 129 0 R /Im123 130 0 R /Im120 127 0 R /Im121 128 0 R /Im120 127 0 R /Im126 133 0 R /Im152 159 0 R /Im123 130 0 R /Im129 136 0 R /Im128 135 0 R /Im124 131 0 R /Im126 133 0 R /Im152 159 0 R /Im141 148 0 R /Im128 135 0 R /Im131 138 0 R /Im121 128 0 R /Im120 127 0 R /Im134 141 0 R /Im142 149 0 R /Im152 159 0 R /Im143 150 0 R /Im136 143 0 R /Im143 150 0 R /Im126 133 0 R /Im152 159 0 R /Im123 130 0 R /Im125 132 0 R /Im121 128 0 R /Im125 132 0 R /Im128 135 0 R /Im129 136 0 R /Im128 135 0 R /Im120 127 0 R /Im123 130 0 R /Im128 135 0 R /Im129 136 0 R /Im133 140 0 R /Im125 132 0 R /Im194 203 0 R /Im136 143 0 R /Im143 150 0 R /Im151 158 0 R /Im143 150 0 R /Im145 152 0 R /Im143 150 0 R /Im197 206 0 R /Im135 142 0 R /Im162 169 0 R /Im152 159 0 R /Im128 135 0 R /Im141 148 0 R /Im138 145 0 R /Im120 127 0 R /Im138 145 0 R /Im156 163 0 R /Im125 132 0 R /Im128 135 0 R /Im132 139 0 R /Im123 130 0 R /Im141 148 0 R /Im128 135 0 R /Im120 127 0 R /Im126 133 0 R /Im138 145 0 R /Im141 148 0 R /Im126 133 0 R /Im123 130 0 R /Im157 164 0 R /Im129 136 0 R /Im128 135 0 R /Im124 131 0 R /Im138 145 0 R /Im129 136 0 R /Im124 131 0 R /Im123 130 0 R /Im123 130 0 R /Im141 148 0 R /Im128 135 0 R /Im137 144 0 R /Im127 134 0 R /Im128 135 0 R /Im129 136 0 R /Im126 133 0 R /Im152 159 0 R /Im123 130 0 R /Im129 136 0 R /Im133 140 0 R /Im156 163 0 R /Im156 163 0 R /Im139 146 0 R /Im125 132 0 R /Im128 135 0 R /Im133 140 0 R /Im124 131 0 R /Im141 148 0 R /Im123 130 0 R /Im141 148 0 R /Im128 135 0 R /Im157 164 0 R /Im123 130 0 R /Im135 142 0 R /Im162 169 0 R /Im152 159 0 R /Im121 128 0 R /Im141 148 0 R /Im152 159 0 R /Im121 128 0 R /Im125 132 0 R /Im138 145 0 R /Im122 129 0 R /Im138 145 0 R /Im121 128 0 R /Im156 163 0 R /Im138 145 0 R /Im132 139 0 R /Im156 163 0 R /Im123 130 0 R /Im129 136 0 R /Im128 135 0 R /Im124 131 0 R /Im137 144 0 R /Im133 140 0 R /Im132 139 0 R /Im156 163 0 R /Im121 128 0 R /Im141 148 0 R /Im157 164 0 R /Im121 128 0 R /Im125 132 0 R /Im126 133 0 R /Im124 131 0 R /Im121 128 0 R /Im132 139 0 R /Im133 140 0 R /Im126 133 0 R /Im121 128 0 R /Im128 135 0 R /Im120 127 0 R /Im143 150 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 210 0 R +>> +endobj +210 0 obj +<< +/Length 686 0 R +/Filter /FlateDecode +>> +stream +x¥}ɲ%»uÝü}E ¥.]6:dExâBjbETKÃï÷`g]$ÖºX9©¨x¯pÜØíÂnþý¿ÿñï¿þåõçò±/Ëåc¹þÜ>r^~ìá£,ùÇãÇóßüñ_ý·?Æ×ÿþýåï¿ü@ù(±]?ñHqí×ûúõËÊfý×Ç~ÿ%£õa)àÂÑ}@øð�!¬ÇÞýÀºõ_°EDÁW@Â(¸÷õëþZÒçºv}ÞïëóDzÃH¥»v¸>Àþ[w~ºA7Ðï>ä °.~9׿o$¬ìó}ýÁößý×îü¹ º~`ÿUçà}Cë»ï§ô"ØÓ?~¬ñïKØÿcþ}ï_د/ýÙýÅø§¿?&?1.ä'¾äwN~^ãu¢ê÷ãc_¯û+*ÿÄ$þaò3Ò?½üÐû/AºzE?¾ÿ.íOé·jô£ü»nÿöäý_âKôdëögö#îéý¼¿ÿ)ýôýÊý¿éM³ýÓ¢Ý?Ý?ÄGö#½ôÇýb~¤RBû÷úÙ¯þÓíWÊÈÐíWò¯Û¯´jß¿.;X¿uúÞß¶>´kö3}ì~{AüÛùôüÇ3ûþìû3´ÿºýȺ?]þrxæ?ç ùÏìþrûwüG×'¨¿ºûgòÓÖËö/gÄ¿kG?¦sÞ%ýKé_4ÿÅ/¹ ï/²ÿWx~àûÛàzA~ëúÆý«üì{ù¡ßã^ÿ÷ú·Òÿ@ö;øúéã¥üùt :ê `ìKÌ@ÁØr( ÀCu õ}�N`s`õ:óÉÀíúîüÌ�´óëä4ë{|´ë�úþ^PúÐ@eCôÓ í¾ì¿EizÿÛ.ÝÏuý^¸eýXÊÀ?õüûú~GèG¬cCò# '�£ð�Â"îõ_Pþe$$ºþé?¤ôo4O5oõ¯¤¿+¾½nklh6p +ÔûÛ¸¯úã[þ¾xÿPûê{¾ý þö>z0ø· +l×{0øPÀ¡B*wÛ_áP´^aÃðÛõº5 úÉ"V´O?zþ É@þ~38ÿÚ¹ ÔØÑù.@á§ùïX%ú1è¥mÀþúÐiðÿù ñ?{C8$ú3-Æ Ý¿Ì1!úë½ÜÖË1tÌDÁÄúPÅðoûëo@+:¿ã húGÚ4úÑ7 ºn}ÅòSo@Õë_¿ÕÉÇà¡ý1¼=�ý (-Hÿêo@)hôcüÆ¿Ì <ß�z¦w!óGêüã¤_2òuÂýÚ_Ç Ò_ºüÚÂX~ ýà7ôç �Ùþ ¿AhòOùoöKRMÃ¹í¯¿aìðþõ7(Cèx:àþ2ýóäWñ* +ý²¤?XÓùÐß_X:ùöËû}Àþ.° iTÇçä +ÅGÅÏZDo +:Pxè8^aV¸¿ü +WMkA{=Î_4 çßQàxE;E�ç+¸,ÚýÑGY�Ï#Bz¤KÐ,ÀJ¿ÍæF�BBëe*êÁ5ë{ðqëY©jðvAÈÚ÷óGöG .CpVðý=ÿPúÓ¬ï_9³Iô£àVÀzÁ²,ÊE¢üØ1ÿì~¥ÛÒoGüë ß¾ÐXÿ¿üÚ·þß©Gи¬ä7(Ê/YÑú~4¾äù6æYYZÏEº?ú(¿+IÔäþËäÏÎî¬ßþÑõÿÀôü«gqÄé/Ç#ÔøWO°,ÈYýu! ý5D@ßO#èèç £¦ÿhYfåçB@&å'eä?8¤¬Ùº¾ ùÓå'A`½ìÿÛþ4ô³ À(Ëå/£¤òÿËü¢õ þ" ýoëýïëßqÔð5o_râÒÙ_þYíws�ð¹u9Àø¢gAØf{�<àÁf{�ð@<°ÀÆÒpVÀ( {ÐýzGTëÚõº�´çß@Î4~GYÐv½Æµ#r¤qíEú~ºcÞÿÈÒþ, )ZD£ú4$úGçÊW=(À[þÕ#øÏƳ£ïïä¾ÁBæxÍÈéüõ:¿QÕèþ¹é¸"þÓßpâ¶<ÒÑÙóïÏ¿«úDÒÿðX%þ§à¢}?C ûëoÒºþLµs¤?yâO:¿§í¯#ØÉ^PÚýeû È_õÝ¿@ú9ÞPD?u\ô¾CÀ(ÿoùÓø¿áÉ¥çýþùOçòl?óøO·yþ|9 ÿA×_9 °×_AÉùzbNÈv¼ÀeÕ~ûËë#ý²_ó´¿£o ò#Ë_Þàùõ:Æ é?ÿïªüÔ]³?ôþHäÿ|U¾¿à¢øY÷J@ôÓ_p®Øÿñ,øª?*é~³Øf½ãÌâ¿f½ãÌ^pÚóë/`}¿nÿC-ÃXSz;ËÀúÑï·öüòX(h½þv½à6߯¿]øÓ`=½?Ó_û£ø[-»Ñ_Fð¯Üf½à[×þúýèü0Ë¡òy«e\·õúÈïçø â_ýì,£z¢¿bFúG;_`ïgþ[,~úØÿD~âÉO4ÿeR~®øIù»f?øz$ù±øg ?ôÌ20Zúuß¿ÎÿýúV«¹ëR�5hذºf=(¢ëS@ßúßJ^nÐOõû÷ô±ÂõÁü·Û'À_°,íöÓ7´Þ7ÐÀQÐxÊ�+6ëeXöÜî¯ÐÑþº 74غ¦Úõº»®þ$:{k×ëOHµëÀذ¿£èO] SaízÝ-H8Êj+Vô.$/ÃÒýÑ2®P$ù£O0Q½Äv þ×ËØ2¢¿ãû3½h÷OËÈj+ÎÛþrùÚ_ n.L³^ï·U¢?BBû;:òÏ×#ýã¸?p÷G!|è8Ê q¤ Ù?¾î¯·RÈþ9¢v<-Iúº°é�TïÂ&&À¥@Ò:ÄC[ã3®ÃßpÐþ7í¨�@îc(þ þu Öñbo8/CþÝÅr`½è"RÀýùi^AÔX^ Ãúmó ²Ò<(æ0Þ{°uÿKýå^BYô�è#ΪE@VhÁÍø �éeÜ_/Ü¡ +=Â< ²hÄ`YP§+À´Øõ¸ÛT# ` ¼%xbåÿf½ÞH!Ô^V·õò#b°Gäv½[Ý`þR$úñGìïH-h½þ¬xp|A\oÃýI¼ë!ò/{)~G ´¿Á°Gèv½.¿Zï@t~3dô}İ$ÞöûeûÃ;½íïhdø/cÒf!g¤�õNZÑ:/@( +¡¬h=æ0óó,\h@tB`A$i=cÝßY|-ë}â¡)P> áxtÿW'£I2@:¬~+F0R`47iüK¤É¡þpL¨ÝÈGE© ûdÿ +¶|äO¤¶Z^1æ ,×A¤MTáÚK=Á×@¥|ùÆBǧ×~¦¥lÍþݼÿu»þTjg;Ðó +î? Ôò½jÑþÀd¬QZÿ´þ@ëLö¯ùÇçïe8ï?{Q´ë_®ÙϤý®@(¬G¨8À4 WHÕxIAÏ aÞ"ßuzT{a°Ýû�qÑ(ЧØzD°uWðÖà¢@Ïb¹¨?À[²c2 +äþ�@ã0ĤÊùI{JÃKRMN Ão&²ñ¬Ú( W¶Mb"JZ5"�ÚÖiB +ª*K2A¼Ï_èBÙÕô÷G>ú�ËcFN~ÂÈWnѧSÛÄ̧¨¥¹íú¾´9µ²¶Ä9P;TG¤Ý¥P¢>KÞÖ˲.Pqðùtÿ>ÚY}[¯W×Ìêv½¼wè@죿* ZròÏÌ«u7¿ßÑK£ïné§Zæ ÎOé¿ÍòÏÏÌl°¿Ð¡òuBÑHþé÷×WÑüé |GççÿG:få/ÖÊÜÑþ[4úñÎüÒïHÿê öÙ@ã8DAÙî_·?gfº¢ÿé÷Oë/[¿JüO÷¯½MýúÇÒ² þ5#Ö?ú÷ïðüBZZ=ÿì~I"û¯óZÂ#þOPèü´zZ=Jøbzɯ#«%¢ï×õWJþæ½É þÖ³.ÿg¤¿Éýgä?(ÝÁ ÓDôGyg�À¿zw÷Uóß)¦»jþ½ÿ ñoÿ´7^í|?GVÒÿSÏhç§IAËrùßß=*Ò¤¦Kÿü?6aU³4))@ÿY¯lY¢?{ÓÌ Å¯¨³ùþ¤éOQøïHjÊÈÿÓõWΪÿÎz³kûÓÞèåÖÚòÞ$¯p¾±ÞîHÿèozyCü§ãyþ«lÿrMK_ò®ÅO4)î@þ£5a>P�¯?ÊZsøñ²¬¶øÈ-A3`ìûëÌR;ÌyãÚ«]®çTÖ¾4·å2úWÛbÝ/gÄÔ³;Äw¶bµ$aüñ{¨ïù·õBW§·7qÖ4~ðÍúØ~2Ð;¡°Ú¾åøPÖK~àåü~àöÒl¢÷ìè}Yçw={èÃÆÖZÄl>ç ßõWvGYãäÏ1à¹æô@ñÇZ4@ÖÙíïHªÜ7QXR^ôëíKh8§~Úÿ~ro⸠ÖËcPÏ)³÷þ¦ûG$@À~Ò¤2{�0`´ úxÆZ9b�¾ �Åi bë+´²ÒYRa~dÀãÈY[³ÜÖËÕ5ÎÏë*ÿXkM¨Àã5NEÛ¿WÀ§æøìY½ýL¥8: 6BÔ{ûÕ²DD¨z'¯Gà@ �Oa%²`¨7ãýüÉÈ%Ù=ë*íþ¿gÛ¥¸÷ 9:$öôíÆ¦3¹»Àl¤zPéN`Úó#'ðpøÈ ¼@´I'ðÑ&@ko9ëæöw´´$I Û#âÀSÓ¬}³ðÙ_óI$kñéHì¬í|åµHÓ°lé`¿`Áÿ¾Î[|Æ»æ*<g82e,)Ð}ɲ<ó lÐáØû¾ÍæèûÿÔT¸|lß²ÍË`¹#.Õåy.¦Ûözy_mÐsûz¹º#ÔLÛzM«©·õî)ízO&\ÎOø~Ih×ësºÏòÖSûåcÓmPØ{yyJ?Ö`¬ û_rÃøW¯³òÖÑýÑm_G¶];ÿhJäþ¼Ç(_=7.Hû)êëgÑ~½>eÕÊSÇ÷ÏzBííè1ªéO +$H}FNÌë?Ü`.fÄÿzh«gíÏgÔ þíõͤ«°·ûwd¢Aý£gnÛ&a³úÃ2Ñ ýõLºC£Í¤©h·õr&]Âþ(+Ãü þÐù?Ex~75ºIþÔ{¤§¤êOVݺH÷Ç«k5ù§û×t´?m]UûÅú{iô§8ê¶Jþå}�ÿðßÖ;pÐù¿þ© G÷GïÚ=øéÿwf=Ñ9ªöõ'ÛÅ/9=ósNâ÷³1hÇò,~Ì+º=2ñÝÓî¶gÛ ÿ/Û¼Cû#ÇI5?x4?ØÙø¡@ù×ã3êIüP©òþýg>ØíµË¥ì/e'ù<¦qÔ¾ízGíz½·]~»^/c4å?ØÒ/jôãeèúex)>£ÖèÏÁ£$G _vB÷§7+âÝù 5wD^F ¿7 ¶÷õVþõ4fKã¿Z0?ZFmàU+?²ónrnë 2,Éû³îôEú~Eþ%Á{ü'÷ÆI³tý¥?FöA®üÑû¯ýú³Þ߬·ãþVÄ¿2Æ Ýo §É]¿küKÕ2ìv½^ÆdecûÉË{ú9¤(ÂN+D÷ú74ú®ÒÇ ÐpLØMH�ÝÑÓ¬cYPª�Þt>M:ÀÖmÖN+`=à +Dp]óÈgà´!Nwr־ЯI8Õ<òýi¡_-ÿ8&£ó#úô¤vÇÉEÑO.¤È½å)XH9Ð'¬¿tô)©ú Y_þd�wüOÑèÀè}òPýõÈR§f³9þcèæóÔ)Íc¯Gù@ò§¿eC¿ßÏä·,èü:úWjªQ�ÄÑ3Mÿ°ìjöKë�Êu4u¡ Ê®ÛËe4ööÙ,×;ÃZôÙ.®j#ºÛr|©é»³ÛWÊþ<ójCë Vq¾XæE{ùúhïO¯aK{tð¯öði×{ì`¼¹1K~gé¿BþKp½¼ÖSú×®Æ#új GûSð6EÎë÷}ÉùhÆ�ö×_>Ï÷wö ü#W�Y;Úþà=Äâ#þAÓ¿|ªå#úQð#!ùéÁ +aý£×fÄÿðñ¿ÒÑ2¯IûaàÛÎï(Á¬Óå[ùs`Öú¡Ûz÷hÆýÙ`°<Ûâ·ÁXõI¬õGíþ¨úÍ%@öË=ÙËí¤þOé?G¬ðLÿ§øpÿø×±ö[¯àLÐÿÏ,ó+úõðÒì'ÏüÒüfSíá3²¿;CüãKý=sϰ³¡þ ØÝîÏÑoGòô?N]HV¹Òòùl=Èfå'/Èèùb/0þÒËrñyÿà衵øg®iúf%Äú`¶+ólm°åhyøÏ]®üó²Ågñ¿ ¶õó¦Å<óÙOO1´¿ÞCóÊ\È?íahúgà?2ÿ¿,È~ôþ?»+{Ý?Åä¹B (þÐßìúË:¾Úí7Ëuî«=ÀÚåðÄßf½<YVñø$øì¯¿\¨ïÈܪ}ãnûëe)ïwÝ¥_ÏÜÊh=x?3Ïúõ½ðrðÒßÑÀ¿ýàáöwP0åÿ¢Ãwx¿4yZx¾7ðß%ùå ô£$?¼?º?GË|ìOÁø×ÓÀÉüþúþµÿhÞÀÿô'*+xÛð¯9yöÿÒîÖî;·ûWßh¿xÌoÏ?~[èGÁÓ:Tt¤)ý-xÐmHþtç)õÄE¼/üPðcAôw4°hx·údþEÄÿöµ}ØØdà[Aò§7°¯ýGþ/ÛDúO÷_ôôþ©húÒoÕø¯ûëeÔß:x·#ÿÅcý¥ÿñÌÿ¼À·¡ÿÅÀ7m^ö å¿8ñ$¥ÚÆ~H'ÇgÙèþ~<yÙᯯdôóBßÜÜê6@u,óM8z ½Cëu:$@ôÓÐ7÷þi`q`sÐ ¾M@y×ÎÏ×o¨}:0$óô@°Þw£@¤×½EÆ¿%hüËîßÍ:@9ã·þÏ}kË_oÑ{³\W^f|»³eèãÑË)ëYö×ËfeMÖSðËïv½ÞóËÀ»v½9X'�ÜÖ;2÷ʳû3ÛÓî¯o~¿>ÕæßízGæXÑö§à¯ÍzÇøÞ_tüîåòï¦ñÿ°ç[{Øú"ñïþöw}üðkX¯¯±N>ïï;ðjêOX%ýÃ3çÐþzÃÑh=ZùÓ×gtÿÈv²iH¡¬òý%HßÏÁ?¤ÿQì@27gÚ¤þ+ÿ~ôþ6´¼ìôý´éÓü{ ýuï'üýAæÜäý¥�ý½ê.húO¾ ô7ÚuÿÖ~éßýUöx08?ïy&ý¯½ÿدTÿà¨Ú,ÿUùoðyEþcúíùO7¤?Óowä?8z®Ñϼ+ýààßñÈÿÍæÿÒªÕìN¿´øù_ÙÚöü/9ýW½çWBò«?]wú''Äé¯Vµ??èù-sxÒÿÎé_GæÙúÌ>3ÆøyCöKIªô·Ô«Iû¡þq`fÿ9vé'óoYÅë/YþmàÁ¬ý¼2ÿüË߯ªÛæþûÇ÷ÁðÏ\ß@û±®'úÓ,w4=1ðp°=ZÁ«f¹üCÛ;À}>R^8ø¼&4ëõà3ñ³g]~}zj°²¹¸?Ù¿NíOÁ;kxÜÒ¯ã>ù÷£E,óÝü4ãÕòùiàÁÿxeàc{~=sÐÀÇ×ýÏWø8? +ï=Ðþómà&¼ì_\hÆk°?XÿÈÎÚþ|`Çù#ÔÿzÙiÒô?ÌyÜ?Ë\/ýói¼[ýοBù»zÞµæWéùaè#º@=s!®yÓ<h@uônÓü^îôù@Ä>ÐéèÁ¢¹o¼éT@zÇþ:¿ü¶^GϰS7S,Á×#êªÑÐkbÃÀRôÆzV ýþ¼IßÏënkêUã�:ênR º[èÀ8R÷VMóÐÕÑÏýþL0þr|¿ôêGÇ|kÚ9à_޳ݿÞ^&åÿB'È«îvÿ.ôoÿrFçwÔ]fÍäèá.¼gÒßzÓè½k×Ë¥×Äý£ôßögôß¡üÈ}{l\èØa#þѾ+½eîiúO|öC.¸ênÝô ¾}~~íì}¼5íß,×w7åß,×Ç¥Ô±÷·ÃëÁ»Ýµëõà}Aû;ÀC^Ûýåçxâ\ÙcÜ&ÉoàWDÌ£÷Lú~¼1Û1¸>p"KûóÌ=~ü*èþeÏ+ÿ¯Hzõ~«a÷ï(Þ}ÿèïø~+[ÿí¯-]e»üsíµï`Úéàü´ì5"ùqL[µØu°?-»´ùåe¿Ç¤õªû[æÞKÿ~;ó²]¨ÿõó¤?QÙ2Á~ þpd®ªýc{I²ÃúÿÂÞÜúßÖgéþ9v·Hú~ÿô§ÙO]þ͵ëAÙ;ÏÌÁOì¦Õàñìývù<ýì*"ý§» ê/ý¦yæ^~dÿRFöW·ÿWϼIþMë3ÿ-ÿH3׬g^{ÿ:v¸¡ûó`gÏüýýíáÊÜk¿_ï9· þÓß²=þMÚ+ónè?ôØÛ;ó.¾ËnõIÏ<|é~ýÞa<óúÿú÷§YÿÓªfÃ#ûó&É?ýþâoû?«ßö#NaÿùaüåøeÞ¡ý=w¦¿æâÿ¼ÏÚ?ÃÞÅÿv7ÿçéOææóÌ;~»ü/W>ë9îö[ìo+|³ÓË\Þ£õ¼Y¾O{dÊÃZÞ,£¬e²|ÓYVðݬ×MçÕqoù>iæ½ÕÐýL÷µ·¼»öwtüKÚí±¬ÍÐõ9Ò6M_¾ÏZVí¶ Ç.gâݧíiÖë³fBYÑÈÃf +ϯcWÛ"ÑbÏ»»1 ^5½kô§´ïàüzÇ�õ®Èþ6ki(À;³YKýyË>¤-Ç¢¿^õíÝz°?Å."â?Ǽ %H±K¼ðÍ[³¡íz=oÍb÷á÷¼µöwä´¿»^5úñªá É<o ÚÛÃ`=ÅN7Ä¿z˵¸#ýáH<Ý¡üèó>DǼì�9ª5úsìq{Ä×¼IùMöv:)¿v8©¿Rí¸åwàlý*Ù_ÞòOã6/&ÙÛç§æÅUÃØI³¿c^Lyæÿ%ì?¹Zþ=ñ_ÒöL^UÃÃó³YµP~AðÇZBÿGÎûI +@]CÒ_4ooAôÓß.sÐì'ž,ïxàQì&jú]ÿÚïõGNÈÿÖåï·1iÿrÖì½ÿøµl%ëWäë]òªð;ÛPüà¨ZúC·ÿyò+ûoyGòë¸ÿ#=ò²µlè½-IÒ{ú[¾¿ã?=wÁ:þü7S8W«vSm~ã _ê¤äÛr9z9ÐîºójÕÛm½pz[¿õ}ð@Ñà +üÞÖëó:ê¼v½cXgMüÑ·ÌCçw7¼»}¿ì¼Ø§wÞ)ý +:¿¾XÕëíûõÄÅUx¹¾/nëõÄË-Içç{ÿ={ë#í$¿Ä=´¿>¨ÞÀ»ñþ<©èÿm½l|bö6ºz~¨?ôAõÑ×Vþôy ò¯üp|VþÕÇ +þô7ÏÐ÷;ªnË{ÞÇMÿxÕ§µéìTß.wßwäqÛ]ï·Y=§ÛöaW¸?˺h9r íïÈú®ßíü§»Ý¾ùÛ°¬_G®lÒü94a¹²Ió·õzË\îÞߥû£ÎGÍ:»«°iççê¡ø:^Þ´¿¼iüO÷?´ý{çåyò»gÅ òêOK~¤�Î`½n½jºÆôi?aÖó¹Ab@ö¿J +¨?¿õ¼¨Ö¯Yä?çÓÝÿOú¼»ÑiÀÏ0óßüÀ!×ÌÆúöß~@4¨åýoõ¾û±3àtÞÕëàï|?ï?ÞD8nW{úõî¹küú+ó° à^>P¿?â@9¿�:ô¡R:úB´áÖ5#ïYþ·bèD$Ä=èó En#dMwW´^o[¡ sïlbÖÈ£Fô̽3¢õýnEÞïaÎÜû7GÀ°Ø¬@øqä®(ªº$ (FÃK}¥aX0û #h¿@Ûå%°ö³ /äKÑõb0F1tÆå45g¦@Gøýñg8ôÏp4=£`ÒQ0èhÿQýüÍoGzÒoEÁzÆ$ü1ÝÙ૱/Lñ0#çÑÚà«!Öóhó¡1�ï¡Fß÷Ïe@Ë¡eÀT4äÛ¹ó©Ì¥Z,]¾ÅgËkëãv¹>÷òØÁájX»^yC·$özwy®st°»POäÓQ"¤þTëGoëõþæöçÏpý(iqtåúE¢?}Fõï·ó;ÀUÿwtÿú×î;~úÛäª(ñ=¿=£¹å¯[?Ú?Ãÿõgöwô/õE!Ìyð\Dþg8º½wÜõ6XÏûWÌêëýö×{Åí¯÷»`´<Ã7Í~PúAçÃA¿C£¿ÒO¯__4þá¯ýòÒýS+hòËǾ£ý=¯vIÿðògö+YϤÿuö¯xâYÿYÿ+ÍþñÉWÈþz&_iô£ü³"ÿÏÑûµN~µÿgúÿdý/ýòL¾BößÑ;ú?(oÛ|ËßO>¡Áÿ¾¿ç:v~y÷?¸ÑOýÄz˯ìOû7~<ÿRðÇo:xfàݤÿxwOüǵø ÷®Eþî?æÅ/z]^UúsðN?ØÔy-þ¤çß5ÿ÷¿ÐäÔûv¤ÿþ-"~ñ;ä¡û¿¿Ãv¾ïäé<5Ò?£4ºÔ´Îu§Ñ¥ï;Óþ-_kýÂm¹]Y +ûäöÁ`ûó,¼ ׳ðêÔçv½>58Ô©¯·õrï,ë];ZOÏ_§®ÎÏ{ǰ/ûtðUAçwÞ2ݾïΧÎ#éYå¿°!ñÑ;O_ØÛþtp×îOy¸3ì,?:ÿÄÖÊ# |äîåWö=OìëSw7ëA +Ðë3IóÖ�~àà»C}¼o×KÍ[ß9è¸79õzó¹W°^k>gý)ýKèOÁ«Ñ/ó³4ÐyÿÀúmëíé·åÀT1ø-J"Ì×ïH +£¾CàïÐþ½CÃßÅ8`4z¤Ä"«9óA§RjÿÇûè)Dàß~@Ïe>Ç÷LHÝô(ÁN l}i¾áÐèH: !GÎ1�i ÄÒo°>rdÓ¡9";ýÈä9Æ/Hê ` drm?Ú!=rÄsôÓPÅ]Úf°¥$ñ_I=¯6r[1ÖÑz^ßïh"»KVÞÕâNêÄrÓ¿PfÅéùwäE ýÃ@,Mþè÷ÿØÜöÃ@0Õ~aúË`ĬëHù¾Cõ ' h,×ó-m;Øp³^ï`¬¢=¾£ k5þ-õô.Ò_¯e¬Ó÷FßOQ:AàF9}øÊàj¿_Æ0Ï.°^þPýtåw5bgmûÓZPË�k×Ë/Xg-§"½|üx¿×øg!úééÛqAÚKOßöáV_5ÇÊâ\õh/ýyÙø_ïÂàýë]X¡þpLÐÉüSúe~¼Ãö×3hÎFè¿"ùwdpYÇàü´ÇäÇÑcC÷¯Ö_xE0ºz)ó¡ù´ù@÷¯ôR°¶,ñO ÿâÀcuòc]PoëýgÓËWñþIP<$úó2PD?Ýÿ´ J~þ©tÖHj`?(xý½«gnûý<Søî¿©û³.¦\ßTýÇ&(!ýçv9x¦ÙO +¾,Èþ;Êïº?GU÷§gPÅYþçOHÿ;¦W'ÿèå é/=8ÃøK÷_²UÐí T¤¿8øåOÏÀ² +Iÿ+oáÿ{Nú¿ø6éÿf¬¿tþÙ·gò ÿKGÊùOÆO5ÒØoæXÔÿA3Ø ÿ¤gÀ^híù¥Äã Þ}¾þ/¡×Û[}øÈôõzû¡Éß¡wC^å:ør ÝØË²£íõ>RÝMÿj¢:{~k¢ÚR_ÎmÒm;K«ôýû©ÓÿÚõúôåûUoBöc°¢ûsLðY!ÿèÕÃuÉèü¼âÝ÷¾FÙ»äûtÿD(ÿ6þ½î´´�Õ¬6hµT»ø¾¤XÕùi9¾í"ÆÐ8¿£UÊàü}+>}ý�ëa+Eè ¸w#D~w=Þ 2ÚÓíðúÀP +id·" +öìx5ÄÁ} +o£´¤ð×LHßÃoè�8pN WÀ'# ûo)GÏ_§xm�Á?,þmu¸$mÞF ú�z©Ul�Å¡Òûÿ>¬Ó|(Ö®3 éù~¿½?¾'¿G>x² +ªI4íÿñ æèþõ +¶T'ïáoYò8þäW¡dþ?ñ·'1TjÈ*(Ó£ûÏÿOÞ¿Më?¿©1�ÃÏ üèÉcö~8©¿òøÏ1EiCüçiäÇ<ºÃBçÿcÿmý*"0lÆ?|½öýÿµ_¿!R¿ÿÚÀÄ*¼Ï{Úå(ÅÞÛñvÿã+Aßjât»{÷¼{ZëQ[6Dèÿß§ãµûÑzzú¸ ýAâ1ÉhG÷³èïé~Áþü£Úîû<Þ*ý¶¦xDO�í^n$®_+ÿ]ß×ßÐý×(íOG ¯` Çô:Â÷Æ�ä·$ �mÿvö*s#Ðx~Gò[ Gûë�j )�}ÿÈ1="õïÑ÷;F §EÚ'ßeI~7á½¾Ì@¯%è#þ¡#ÐkòËm½>½ìâ÷úÅíïhÿ·¢ý#Ð7~|x (!®¬ç#Àáýé#Ð$¿Ê¼?øèï¨Èût@ý9øÇô +þÍʯÍPË/ÿ4þåàß&}¿®ÿ-yϯÿO÷¯àá¬jûÊY8mZøÅGÃ�Â1\?òýä_Çr-�à#ÈUÿ ×üW>ê?Çrä¿øGß¾ß1éÏògö'CÿÉ3É¿g9ò?ý#ÈGþãhù,zcÉs³ö×FÏúO6{aúþMþ¨üÔ^#ý3A>k?lùìýÑê¿¿A~òßä±¢Þð¡ ¿-÷ oûGßÖ»G·ëý#ÈoëÝ#ÈÛõþä#úFß®Ï=üöýîä·õîä#úFß¾ß=|$=£ä·õîä£óFäg4|V{ØòYõa³üú£A>ÞwÝ{ùèþG#ÈGçoüc³cýKÀËZùq[¯ç®Õ¶KãûǽScAßß÷Ný¦}Ú»ÿÚDö]û4^ú¥ 3Ð×wãªÔsÏêÓõtÿHûÓ¬Û^שæÕ±ö]U@Ѽ×IIô»¨ÄÖ£óëL +Ð�ë¥{ñ¯£t4iüGѸ#u.=r`lxÂÈ¡ß_òE¯<祧Ðè`7xrúõ9<Aã¥GXÂl@ÓäÇú¶ þu.ÐÖSÏÒ¿ÒSCï'ù/GäÀzJO5¢/iÖþi )=Ͷ+=-þã©{û#ùÉ+@õÒSQqôM_J¿M£GïývÈÿô^zj©{cþ'èéô£ôtúOO½[4�:ð¥¶ÏmxGëØ3yOñßòúuýñé×ú³XG©¿¿âºnÿ¥#Áñ±.ï8ôàa½ý@ýÍPkÀî¿ÐÝÂKÖ:<ïï$´þaf°Wc?PÛgÞ@èùölÍì�ÅïËÐ>PÐ5ì ܶ~$Ü;9\¿¬lÖ×þÛzA×ï¯%ø£ï§çßéü~û!ÑrÐ!rP/Fïâ áýª\PL+AÀÞW u_ v±ÃhÎÄéSqÜâ»= b¯#;B9À7 r¿Sá¨@uÈ_á>ÞEßðIÆS¡%JÆq #§ÂnP!Õôá<q}]¦ÚoÌÌw«X÷HM¦4i¢¬|Fö ++3 rFöB¡7PQío`0V).si½k5ËïrÕ.£¤�ò.`ai»½\jGJÿþö.�õôvÀÁUç§I͵ªý|_JjN]ã]ݵð£rÈ[FÊäüοvdº×çR´k¢©&ï®û[xõ1 +üöBpÿ�ݺëìHbôW½B³b·[ë ê`û*üýgf=:0Æ~�I!8}]©iol$çÏk¡Ïµ1íéþ q£±ªåf ¾F·çùÑÆÀu4ùH ÒÚC·[3 7'Yé¯gcX@¹°7nP ê¯K{|d¯Üv·´×-ÿéý[qߤLâ?ÇëNÍ;k÷MAk;}~ÃU&Í`Jhÿ^~élªünìÑÞ_ÿ:K_3²Aúó¾åÿÓ¢?Ó +Ý0¶õYâþº¼xÈ^Ç47GnÒØ¹¾.°ÜräèµyÖØµ]ïÈ ú妲×1-á¹á0Ñ_g°ÿ¡¿Î$Í ¹ñ Ù?}<j¶ôÂåûÜj¾úܨxcXó?çì_^ÿ:^7Wä@;ägCürë¯[íþúT«Ú?9»Ê¦*ø¿niúòÿõ·ãukÿ¬±ú~½¶á|ÛRäñ_Í-·)½úãrMM_Ár=·¡ßëØvw¤V׺ÌÛö:Tïn´7¦ÈâùöFpoûë1¢¶? ªíºí¯7¶MɧéàþzcÜ:ÑoýB>ñ_Q¿AhðûAì:Ý_Öw_÷ùð&uÊ7Æx§¶¶p4ÆØVðÆ;$ >Õë¬wö¥Ç@ÀQQðaAêWw~b0ýû}j=ïÆçgà[¬ÍM¯coß/;?Û_o ÖSË3ä_ÙùÑßÑX¤@¨7©þþ:øYIù³¾´It?HcÕ0^øõn#ô¾àçè¯O±©R7þwL¥*T§*õ'/dàE@ü£OÕ;àèÏ!ÿëàcÒÎÏÁG´¿>Uô|=¤Pý :´¿£±È +å×ÑÉêGÖïÈþ÷à!?÷]Ò´4Æ_¨4Hþ#½-¢]Qd?õǯvI~yc ´¿§±ò_ðЦB!ÿIÿÿ ßÎÐ~è÷5ûEï¿ þQºâZc èÿ9F¢#ÿÛñýÛ3�"ïüPðtf¿Oðîÿg�Ä Þ= +Ô:ýË¢ùÿt${Ð�ÑT¦Ùø»&° ýkþ;]îN`»íîÀöè |½¢|kRÿËx¤sý¶1},GÏ"ø~]yè ¿=+èûå®R6:?½¿¹2º?ÀW»µô×몬1Äèü´1úóë/¿¡Ö%ø7Ðöç!ÐþÆ5så¶^v~GWÎ% þé7K <S×ÎÂv½#ÐÊî? 'F¨ 1"v$ZgÖûè y'Ðko±á (R Êj,®æ³fÅÐ0$hd$Öéj#1¦Å ízÛ+Oa!/B,P÷jÄ!,Èéyô©æÁû¿¿ÆàÒ_¬Ðþöµ<{äFÐý2£É6 íïÁ #O§´ÉJ#þ§=â ä&pH:ðV¤@=Éá÷ëäøÏÑcn¼Ü^ÆØ¦åï@÷§¿!^[¥é6Û#×êèÏòÐÉl9 ûáh.Z'+ì/o/ñÌ~åÜ@G{�è9Údtÿ½ü³Þûá0%ðâ7K»_O ,0¨3£@%&Á0NíóûÛõ:º¡ûs´WÙà÷ëò³£ý=¦É/ãÌ4Aü_åÁÐ ÿ"ß=ÁV7Þ Ûl»\n {Tá]ó·ÙçLxë`vwGoI³]ÃÓ³ÐU"míj ôùýßõæCäûL@ +8@ØôÑBñݯýÇh¡¸×øº¾-Ä)P; +´ÍM°ý8àÞ_§Úó½6$tô Ü·õz]Aû;`àÚ¨]ï7¤�ýÇöצßÖëI{eè"-Ƴý_ºü¿^8èï¡kõíþåæîqy÷³¸}¿W'èÇsزt~^À +¿_ïÏÿêä,`UL-LÐèµ=㬽rØZþsàéÙý¨¿ôä:Üä¶^ÇïÖ"é_z~ßçg´ _ßlý&}?ïÏ»?óN�ñp""ð÷úP (igÙGNÀ B>qRxæ¤ðÌ HQs8©Q>^^5âHô OÐBUx¥ç/PõD¾Ñ_Wbi FHð´!'À3á©LBb"' I`èþÚß1aÆqÝFÀzÜ>3byÑ( +âÄê/%³jðÅ|bÄrBQé|³Fìóì!w]!½e$ÈÈ#F/±@OD¿DèÉ9ÆZ$2D"'è DNÑt£1V"½M>ÕzÊbëóT6®iQZÊ =/õ}$ÎèWL« +ä@I§«&°Y®Çavyír=¨Îhn×ë¥Ö"÷¶^ö@Î!ñÊþ´0 ïwY·gøööôl2K%Ðîo¥ ýcCÞoë0bèOaD{o×;`ÄUb>&*Kç§0Øèçh§gaøÿy6 Ú_OC +uÆàm¹T0¶Ìu¹¿²üKaó`ç§0Êäϵ ùwÀ84©bÐèÇaHd}tý2?ºþ?35þg¥°Hè}@¢¢´ß¯BZ/þá0XmO~ +Ðf!xs�fÅü-¥Nlï9SÀ8 ¶ÀÑèÿÅ£Oxmß¿qþíö+µ|ö~ýÊ^Öϱ°\ÇBY÷Û:Ôq©!}õ#c:ÿ娪¤V§Ûz ï}Þë=É7?ú¤Ü>|@°7öЦÀ¼©ö +xØf?°k?ÐBýÐ'�iÜXiÑ-¾Õ{¯Qê&yûO¤ý@æ^×Èð#0Jä¬?Áí@Lr¿ Ú Ö²»SøH?%: ¢T ø :#Èý'ô]%bÙà gJiÅ|�ú¤løÁѦ¥`ñ ti4hâ&J«4°G4RN<dNÄÂÌB`?�i T:¼¶hÝ^ðÅ.% Îä>�sÛ@YHÝ'ô+õ"d.m~ AµÞû¹LDky0ÒôjÃæiÓ±RÕMÛ9Q¦X' râ¥ÒHh°®ªa!¸b} Ó`¤(ûl@ÄAh°Ë4 'ر"¼;×Ú«:ºZ¿jgfÕzZdNĦíª6¦ôP+3¥æD!òßBªã"¼FÇ-$hÚzG{ª=]HØSíí¦ë}VVªöÖéRª´ÏOX!ôå¬{>`ásÚò;þ¾�ÌDº[çz¬ÀïèÒ ¨0?Q¦Çº0ÁèÝ7æE,äE4,üøþúªRej=ì¥Éj=GñLä$ëÌ9M;Yõ2æó]¥Ec0 +ù÷#éÙ ç~ÝÆÏäÖpHC?i°>ÔHYÕhÈØç °NìazË� ~ü<öû·)zCÖÊä ^c|÷'x³VYz6zqÜXè¡ ÷QlJ²ìçcgEß?` J5_:i,d²:ýv}»3m`ùíú^!²ýÍ.ö§H5Ëm�Þ] t³f#ïî? ÐPíÒ@Á?¹@ì( ñÓÀ~�QZCÆ4º,oAÄP ( `¡ÚÁk3;&¢^TN\!çÃFÝC³qÈCF¢â¼aÈhfP5"¥Á5ÂÕÉ'�¦Løàâ¬ë¸`qÖ ²@añ òCö£0qùÙ§}¬ø ý¾ý5ÌHÑz yºN$2ÖzØtOt$ïªÃÑ¡+<þh}Òcý�üþ§·sûY¡Äìâ\ò¬yäD=fÖÏ`V'¦Et ô¬NLÒÀ§b?Qw4S4г.LyD±s ?#¶V#¶SnO Gl)CÓÖ«´!¦|£ÎHªH?¡@qv|Â= +L«31'+mX½ö Ìæú;¼=ðL{QÈ~`Óìý{+±»¡ÚúÀ~Uù>¡Ëtäj¨6<ÆZY8®NYã{ª;ÈS%,Þ{ãÊøàjv5Ë9|@ ã¸QVª9ÃOÐjÆjoé'ìëï+GmB]e$½£¬8r+U9#¯Xõ[ vA0ïõ6(ÈÑ$DÜe"ì"PôÔÙÎØÙî±4ì×öE7aúBÄÿòë_~õ·áGøñëúåeÆ^ëßõ/¿þãÙॲ½þÍoüÅÿ×øýo~÷/ÿù»¿þñwó·?þí?þõ·ÿ÷7¿ûíÿùÿ~üÝ?üé÷øÃüßüã_þøÛÿðûßý¯ßýÇ~üÕþÓþí¯õ«?ÿùÏúçßÿçÇ¿üîO¿úǰÿôÿã_þϯþí?Ïuÿü§?þá/üúÿò_ý:Ýÿ;кy +endstream +endobj +211 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 687 0 R +/Name /Im200 +/Width 45 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿÿòãÿì JÖ10ïöH¾Nòì,ÐHæpñÇ8Éð÷�:Yß í`äÿöì wÊÁI]ùºyF�ó¯; +endstream +endobj +212 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 688 0 R +/Name /Im201 +/Width 23 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÏÀþÿ|ó{Æv?êþ�Ñ?h"T�TTÔÂøA\¤~²�UO ´ +endstream +endobj +213 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 689 0 R +/Name /Im202 +/Width 25 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÃ(æ?`Á�Âì + øÃæ>``üy�þ7 p=ÛA±¤Hýd�ÈV +endstream +endobj +214 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 690 0 R +/Name /Im203 +/Width 22 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5˱ áGÎØ·®EqfÁMèl)¯ Âä«þËù±F%v,H0E3Dh M=Ø=Þq¶Ü~}ñºN¶õ¦,zí%ê1W +endstream +endobj +215 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 691 0 R +/Name /Im204 +/Width 19 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÇÀþ¿A¾ÿ=ÿ;þu@ÄÌðÕ=Ã{Æò�µ0þa©,�øë` +endstream +endobj +216 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 692 0 R +/Name /Im205 +/Width 19 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû/ÏðßþÀÿôòÇa¨±A¾úÿEê'�7? +endstream +endobj +217 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 693 0 R +/Name /Im206 +/Width 28 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿPÌþ>@qûdÌÀþñû$âÄQ0Vüÿÿ8¯§�Ì< +endstream +endobj +218 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 694 0 R +/Name /Im207 +/Width 12 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßðåÉÿ? BÝ|~�¹5É +endstream +endobj +219 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 695 0 R +/Name /Im208 +/Width 23 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿà ÿ¿Áÿ=û{æ@ÄÃüþàÿÿAþðzæuÌþÀû:Þö?þ±?¨©, �åý +endstream +endobj +220 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 696 0 R +/Name /Im209 +/Width 23 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþSÃÿÿ<ÿ=;ö{uìoêØÀûyþùÿÖ, ÈþýÿòÿðÿÿcÿÿO ÿvpTÃPcÏzÀü¿A\®~²�¦x) +endstream +endobj +221 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 697 0 R +/Name /Im210 +/Width 34 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃÿÿÿìø� Æ?@á¨ö ¨ÄRT½CÿÁlÚvÔ-@W)É×ÍÓ��»~Db +endstream +endobj +222 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 698 0 R +/Name /Im211 +/Width 25 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßÿáÿÿÿ?üa?PÇ ßPÄö ÜCÕÕAô<�êýÿA~þ VcIÙúɲ�*$ +endstream +endobj +223 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 699 0 R +/Name /Im212 +/Width 15 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcn`Cv0äoo°ÿóå0`òÏaÿÁü_¶~�ÕJñ +endstream +endobj +224 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 700 0 R +/Name /Im213 +/Width 26 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßÀÀðåÁíäçÿ`ßñAþAü(n ÿÿøÿ�K)ÔÍ�¦â,+ +endstream +endobj +225 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 701 0 R +/Name /Im214 +/Width 38 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãcþ`Ï`ßÿ£¾ÁøíáÉì$?g||@ñÁñ6ÌØP~ +öGá¿@¯Àñÿ Ì j"õ5�[#- +endstream +endobj +226 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 702 0 R +/Name /Im215 +/Width 26 +/Height 2 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿ@,ÅTÓ�KÁ +endstream +endobj +227 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 703 0 R +/Name /Im216 +/Width 27 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xU± Ã@çqð¡ +øAºðW&þÜë¸RTBBç}ã@ +]nXb#ÇÁð>)êÚì²tÂã¼C¬Â ÷Hú£zç)[ýÃoÈZ½Y³þ¼vdí!q^>Ó6UD. +endstream +endobj +228 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 704 0 R +/Name /Im217 +/Width 39 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿÿáó?yÁþH0QL0¨�Èó(Á$þÿG!ÀbHJð¡2 Ña"*@Ä«@3ÿró¡®Y·B�çM^Ð +endstream +endobj +229 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 705 0 R +/Name /Im218 +/Width 25 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`þÃÀ ÿ¡þ?Ã?ûÆ?õ Ì?øC}û{fÀÿÿ?�ǸÔPëÿ7À±¤VÝJQ�¢}7l +endstream +endobj +230 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 706 0 R +/Name /Im219 +/Width 16 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`d`f`gàgcøÇ~]Á ++ ð2>@æøÿÇÿrÕsÅç¬ +endstream +endobj +231 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 707 0 R +/Name /Im220 +/Width 21 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xȱ 0�Ñ6ÁTb*]á)WÑ R¦ÄAÜåÜ@E¸æ®°*±¢ÑÔHhCh}²ò·%[Ó»3£4 &ðO=bÏ&Ô|j~tftak|w +endstream +endobj +232 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 708 0 R +/Name /Im221 +/Width 29 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuÌ¡ 0EÑ× *;%Á°DÖªâ3 s0 +#TâÊ ùHÄ1ï%WJ&¬0×¥ÁE$öâ*)\8MânÔLÙT4ôÞïÏÛÿcün\¶c~�Á1 +endstream +endobj +233 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 709 0 R +/Name /Im222 +/Width 42 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿ õÈdCýûúü @J�Iæ ò�|�$q@aI ZuËõWÒ +endstream +endobj +234 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 710 0 R +/Name /Im223 +/Width 32 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿá?óÿ1ð?þßÀÿüÿþwüøÿ�ñöü øeøÿ?ûÿ0¬ U»R�uÍK[ +endstream +endobj +235 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 711 0 R +/Name /Im224 +/Width 31 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`n``aöÌÿ�å?00HB±á(N¨AàvpÌØ ÏÀøÿ?óÿÿ Ìü`ÌÆÀ h0ó10?g`ðÿý?W¨¯ +�°$/ +endstream +endobj +236 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 712 0 R +/Name /Im225 +/Width 17 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿ9B±AAáÿ¯&�Ö è +endstream +endobj +237 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 713 0 R +/Name /Im226 +/Width 10 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûàÿ9bà J.ñúi|�¥ +{ +endstream +endobj +238 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 714 0 R +/Name /Im227 +/Width 29 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃÿÿÿØð7°�Aæì?`Á r (ßÀþÿ;X²þafÔñ�Ú×ðÿÿYùºyÊ�£;m +endstream +endobj +239 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 715 0 R +/Name /Im228 +/Width 24 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``°¡::Eí @ÄÜ~Øÿ?�"6Æ<HáÇæÿ@$!^?M�¾½ +endstream +endobj +240 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 716 0 R +/Name /Im229 +/Width 20 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿÿ9örÌ@ô� � +ÊÿgÊB¤? ûÿÿüÿÏ "^7M +�c2 +endstream +endobj +241 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 717 0 R +/Name /Im230 +/Width 14 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x?`ÿ BÁ¡¡áÿþ@ÚÁÆÁæÍúòøë' �U +endstream +endobj +242 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 718 0 R +/Name /Im231 +/Width 11 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xg°o(<Px@ñ�c?ã<xðð@}=·@}??�å¹ +endstream +endobj +243 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 719 0 R +/Name /Im232 +/Width 26 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcàa``CÂöH¸¼!cÆÆpÌÌðù?³1TÀ1 Ð8ÿÿ°TýLY�_r +endstream +endobj +244 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 480 0 R >> /XObject << /Im233 246 0 R /Im234 247 0 R /Im235 248 0 R /Im236 249 0 R /Im237 250 0 R /Im238 251 0 R /Im239 252 0 R /Im238 251 0 R /Im240 253 0 R /Im241 254 0 R /Im242 255 0 R /Im237 250 0 R /Im238 251 0 R /Im243 256 0 R /Im244 257 0 R /Im245 258 0 R /Im243 256 0 R /Im238 251 0 R /Im224 235 0 R /Im225 236 0 R /Im226 237 0 R /Im227 238 0 R /Im228 239 0 R /Im229 240 0 R /Im228 239 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im66 73 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im107 114 0 R /Im71 78 0 R /Im108 115 0 R /Im42 49 0 R /Im53 60 0 R /Im66 73 0 R /Im62 69 0 R /Im45 52 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im61 68 0 R /Im97 104 0 R /Im109 116 0 R /Im54 61 0 R /Im68 75 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im41 48 0 R /Im62 69 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im49 56 0 R /Im99 106 0 R /Im100 107 0 R /Im102 109 0 R /Im110 117 0 R /Im106 113 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im53 60 0 R /Im46 53 0 R /Im67 74 0 R /Im51 58 0 R /Im53 60 0 R /Im46 53 0 R /Im71 78 0 R /Im48 55 0 R /Im62 69 0 R /Im62 69 0 R /Im55 62 0 R /Im62 69 0 R /Im69 76 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im45 52 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im47 54 0 R /Im68 75 0 R /Im44 51 0 R /Im62 69 0 R /Im112 119 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im75 82 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im70 77 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im51 58 0 R /Im89 96 0 R /Im42 49 0 R /Im61 68 0 R /Im46 53 0 R /Im54 61 0 R /Im51 58 0 R /Im55 62 0 R /Im111 118 0 R /Im45 52 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im62 69 0 R /Im45 52 0 R /Im54 61 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im49 56 0 R /Im32 39 0 R /Im33 40 0 R /Im24 31 0 R /Im23 30 0 R /Im36 43 0 R /Im33 40 0 R /Im32 39 0 R /Im39 46 0 R /Im24 31 0 R /Im38 45 0 R /Im24 31 0 R /Im24 31 0 R /Im91 98 0 R /Im24 31 0 R /Im37 44 0 R /Im32 39 0 R /Im37 44 0 R /Im90 97 0 R /Im97 104 0 R /Im58 65 0 R /Im47 54 0 R /Im62 69 0 R /Im44 51 0 R /Im44 51 0 R /Im49 56 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im100 107 0 R /Im106 113 0 R /Im46 53 0 R /Im43 50 0 R /Im42 49 0 R /Im65 72 0 R /Im65 72 0 R /Im53 60 0 R /Im46 53 0 R /Im51 58 0 R /Im55 62 0 R /Im49 56 0 R /Im42 49 0 R /Im61 68 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im62 69 0 R /Im42 49 0 R /Im69 76 0 R /Im68 75 0 R /Im53 60 0 R /Im53 60 0 R /Im71 78 0 R /Im75 82 0 R /Im46 53 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im44 51 0 R /Im62 69 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im55 62 0 R /Im51 58 0 R /Im65 72 0 R /Im44 51 0 R /Im48 55 0 R /Im43 50 0 R /Im72 79 0 R /Im168 177 0 R /Im54 61 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im66 73 0 R /Im42 49 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im69 76 0 R /Im45 52 0 R /Im62 69 0 R /Im61 68 0 R /Im65 72 0 R /Im45 52 0 R /Im51 58 0 R /Im63 70 0 R /Im46 53 0 R /Im62 69 0 R /Im68 75 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im47 54 0 R /Im42 49 0 R /Im54 61 0 R /Im70 77 0 R /Im51 58 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im71 78 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im62 69 0 R /Im45 52 0 R /Im54 61 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im47 54 0 R /Im68 75 0 R /Im45 52 0 R /Im45 52 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im46 53 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im49 56 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im53 60 0 R /Im46 53 0 R /Im67 74 0 R /Im51 58 0 R /Im53 60 0 R /Im46 53 0 R /Im48 55 0 R /Im62 69 0 R /Im62 69 0 R /Im55 62 0 R /Im62 69 0 R /Im69 76 0 R /Im65 72 0 R /Im68 75 0 R /Im44 51 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im70 77 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im69 76 0 R /Im45 52 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im47 54 0 R /Im68 75 0 R /Im45 52 0 R /Im45 52 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im53 60 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im72 79 0 R /Im56 63 0 R /Im54 61 0 R /Im62 69 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im107 114 0 R /Im71 78 0 R /Im108 115 0 R /Im51 58 0 R /Im54 61 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im46 53 0 R /Im61 68 0 R /Im65 72 0 R /Im53 60 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im165 174 0 R /Im32 39 0 R /Im37 44 0 R /Im32 39 0 R /Im165 174 0 R /Im36 43 0 R /Im96 103 0 R /Im34 41 0 R /Im32 39 0 R /Im37 44 0 R /Im38 45 0 R /Im93 100 0 R /Im34 41 0 R /Im49 56 0 R /Im70 77 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im69 76 0 R /Im42 49 0 R /Im47 54 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im43 50 0 R /Im45 52 0 R /Im51 58 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im53 60 0 R /Im64 71 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im64 71 0 R /Im44 51 0 R /Im62 69 0 R /Im43 50 0 R /Im48 55 0 R /Im62 69 0 R /Im75 82 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im75 82 0 R /Im62 69 0 R /Im45 52 0 R /Im43 50 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im70 77 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im69 76 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im42 49 0 R /Im45 52 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im53 60 0 R /Im44 51 0 R /Im42 49 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im53 60 0 R /Im66 73 0 R /Im62 69 0 R /Im45 52 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im61 68 0 R /Im46 53 0 R /Im43 50 0 R /Im67 74 0 R /Im54 61 0 R /Im62 69 0 R /Im75 82 0 R /Im54 61 0 R /Im42 49 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im71 78 0 R /Im55 62 0 R /Im51 58 0 R /Im51 58 0 R /Im65 72 0 R /Im51 58 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im49 56 0 R /Im61 68 0 R /Im46 53 0 R /Im54 61 0 R /Im46 53 0 R /Im61 68 0 R /Im42 49 0 R /Im53 60 0 R /Im71 78 0 R /Im75 82 0 R /Im46 53 0 R /Im54 61 0 R /Im55 62 0 R /Im62 69 0 R /Im75 82 0 R /Im49 56 0 R /Im65 72 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im46 53 0 R /Im65 72 0 R /Im42 49 0 R /Im53 60 0 R /Im71 78 0 R /Im63 70 0 R /Im42 49 0 R /Im45 52 0 R /Im46 53 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im97 104 0 R /Im116 123 0 R /Im246 259 0 R /Im58 65 0 R /Im103 110 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im46 53 0 R /Im53 60 0 R /Im43 50 0 R /Im49 56 0 R /Im43 50 0 R /Im51 58 0 R /Im51 58 0 R /Im41 48 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im53 60 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im106 113 0 R /Im72 79 0 R /Im166 175 0 R /Im68 75 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im61 68 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im49 56 0 R /Im224 235 0 R /Im225 236 0 R /Im226 237 0 R /Im227 238 0 R /Im228 239 0 R /Im229 240 0 R /Im228 239 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im43 50 0 R /Im36 43 0 R /Im87 94 0 R /Im91 98 0 R /Im32 39 0 R /Im23 30 0 R /Im36 43 0 R /Im33 40 0 R /Im32 39 0 R /Im93 100 0 R /Im37 44 0 R /Im87 94 0 R /Im24 31 0 R /Im36 43 0 R /Im23 30 0 R /Im164 173 0 R /Im92 99 0 R /Im97 104 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im42 49 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im45 52 0 R /Im46 53 0 R /Im65 72 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im49 56 0 R /Im43 50 0 R /Im51 58 0 R /Im51 58 0 R /Im41 48 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im53 60 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im106 113 0 R /Im72 79 0 R /Im56 63 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im45 52 0 R /Im44 51 0 R /Im62 69 0 R /Im69 76 0 R /Im51 58 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im54 61 0 R /Im51 58 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im68 75 0 R /Im65 72 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im70 77 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im53 60 0 R /Im62 69 0 R /Im75 82 0 R /Im51 58 0 R /Im45 52 0 R /Im70 77 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im75 82 0 R /Im46 53 0 R /Im54 61 0 R /Im55 62 0 R /Im62 69 0 R /Im75 82 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im44 51 0 R /Im44 51 0 R /Im62 69 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im53 60 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im69 76 0 R /Im45 52 0 R /Im62 69 0 R /Im61 68 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im45 52 0 R /Im51 58 0 R /Im63 70 0 R /Im46 53 0 R /Im62 69 0 R /Im68 75 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im91 98 0 R /Im96 103 0 R /Im25 32 0 R /Im87 94 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im165 174 0 R /Im32 39 0 R /Im37 44 0 R /Im25 32 0 R /Im87 94 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im42 49 0 R /Im116 123 0 R /Im42 49 0 R /Im75 82 0 R /Im54 61 0 R /Im49 56 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im65 72 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im53 60 0 R /Im64 71 0 R /Im72 79 0 R /Im168 177 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im69 76 0 R /Im42 49 0 R /Im46 53 0 R /Im53 60 0 R /Im43 50 0 R /Im97 104 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im62 69 0 R /Im51 58 0 R /Im43 50 0 R /Im54 61 0 R /Im62 69 0 R /Im44 51 0 R /Im53 60 0 R /Im46 53 0 R /Im51 58 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im107 114 0 R /Im71 78 0 R /Im108 115 0 R /Im75 82 0 R /Im46 53 0 R /Im54 61 0 R /Im55 62 0 R /Im62 69 0 R /Im75 82 0 R /Im106 113 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im75 82 0 R /Im46 53 0 R /Im54 61 0 R /Im55 62 0 R /Im62 69 0 R /Im75 82 0 R /Im46 53 0 R /Im43 50 0 R /Im42 49 0 R /Im55 62 0 R /Im74 81 0 R /Im68 75 0 R /Im43 50 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im62 69 0 R /Im51 58 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im97 104 0 R /Im215 226 0 R /Im247 260 0 R /Im49 56 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im106 113 0 R /Im75 82 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im69 76 0 R /Im42 49 0 R /Im46 53 0 R /Im53 60 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im53 60 0 R /Im62 69 0 R /Im75 82 0 R /Im49 56 0 R /Im62 69 0 R /Im45 52 0 R /Im97 104 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im49 56 0 R /Im248 261 0 R /Im247 260 0 R /Im106 113 0 R /Im75 82 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im69 76 0 R /Im42 49 0 R /Im46 53 0 R /Im53 60 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im48 55 0 R /Im46 53 0 R /Im66 73 0 R /Im48 55 0 R /Im72 79 0 R /Im94 101 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im51 58 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im54 61 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im64 71 0 R /Im43 50 0 R /Im48 55 0 R /Im62 69 0 R /Im68 75 0 R /Im53 60 0 R /Im55 62 0 R /Im70 77 0 R /Im51 58 0 R /Im249 262 0 R /Im45 52 0 R /Im51 58 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im53 60 0 R /Im64 71 0 R /Im115 122 0 R /Im68 75 0 R /Im46 53 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im250 263 0 R /Im97 104 0 R /Im58 65 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im54 61 0 R /Im62 69 0 R /Im54 61 0 R /Im49 56 0 R /Im99 106 0 R /Im100 107 0 R /Im110 117 0 R /Im113 120 0 R /Im106 113 0 R /Im72 79 0 R /Im52 59 0 R /Im62 69 0 R /Im44 51 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im53 60 0 R /Im51 58 0 R /Im42 49 0 R /Im69 76 0 R /Im54 61 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im49 56 0 R /Im43 50 0 R /Im62 69 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im64 71 0 R /Im61 68 0 R /Im68 75 0 R /Im43 50 0 R /Im44 51 0 R /Im70 77 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im66 73 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im69 76 0 R /Im68 75 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im70 77 0 R /Im64 71 0 R /Im42 49 0 R /Im251 264 0 R /Im25 32 0 R /Im32 39 0 R /Im24 31 0 R /Im87 94 0 R /Im164 173 0 R /Im24 31 0 R /Im37 44 0 R /Im164 173 0 R /Im24 31 0 R /Im87 94 0 R /Im24 31 0 R /Im36 43 0 R /Im23 30 0 R /Im164 173 0 R /Im92 99 0 R /Im72 79 0 R /Im168 177 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im62 69 0 R /Im54 61 0 R /Im53 60 0 R /Im64 71 0 R /Im47 54 0 R /Im42 49 0 R /Im65 72 0 R /Im44 51 0 R /Im68 75 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im61 68 0 R /Im62 69 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im46 53 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im49 56 0 R /Im51 58 0 R /Im89 96 0 R /Im47 54 0 R /Im51 58 0 R /Im65 72 0 R /Im44 51 0 R /Im75 82 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im109 116 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im47 54 0 R /Im67 74 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im61 68 0 R /Im68 75 0 R /Im43 50 0 R /Im44 51 0 R /Im70 77 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im72 79 0 R /Im94 101 0 R /Im51 58 0 R /Im54 61 0 R /Im62 69 0 R /Im44 51 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im115 122 0 R /Im68 75 0 R /Im46 53 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im49 56 0 R /Im75 82 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im53 60 0 R /Im42 49 0 R /Im64 71 0 R /Im51 58 0 R /Im45 52 0 R /Im44 51 0 R /Im62 69 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im54 61 0 R /Im62 69 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im47 54 0 R /Im67 74 0 R /Im49 56 0 R /Im61 68 0 R /Im42 49 0 R /Im64 71 0 R /Im70 77 0 R /Im51 58 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im61 68 0 R /Im46 53 0 R /Im54 61 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im53 60 0 R /Im64 71 0 R /Im49 56 0 R /Im63 70 0 R /Im46 53 0 R /Im76 83 0 R /Im72 79 0 R /Im42 49 0 R /Im43 50 0 R /Im43 50 0 R /Im62 69 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im70 77 0 R /Im51 58 0 R /Im47 54 0 R /Im62 69 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im53 60 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im70 77 0 R /Im51 58 0 R /Im66 73 0 R /Im51 58 0 R /Im54 61 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im75 82 0 R /Im46 53 0 R /Im53 60 0 R /Im53 60 0 R /Im70 77 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im43 50 0 R /Im42 49 0 R /Im55 62 0 R /Im63 70 0 R /Im42 49 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im66 73 0 R /Im51 58 0 R /Im62 69 0 R /Im68 75 0 R /Im43 50 0 R /Im72 79 0 R /Im52 59 0 R /Im62 69 0 R /Im62 69 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im89 96 0 R /Im44 51 0 R /Im51 58 0 R /Im54 61 0 R /Im43 50 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im62 69 0 R /Im68 75 0 R /Im45 52 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im71 78 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im51 58 0 R /Im89 96 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im44 51 0 R /Im62 69 0 R /Im42 49 0 R /Im63 70 0 R /Im62 69 0 R /Im46 53 0 R /Im55 62 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im43 50 0 R /Im46 53 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im62 69 0 R /Im61 68 0 R /Im42 49 0 R /Im53 60 0 R /Im46 53 0 R /Im51 58 0 R /Im43 50 0 R /Im72 79 0 R /Im234 247 0 R /Im252 265 0 R /Im236 249 0 R /Im237 250 0 R /Im238 251 0 R /Im253 266 0 R /Im254 267 0 R /Im255 268 0 R /Im238 251 0 R /Im256 269 0 R /Im254 267 0 R /Im241 254 0 R /Im257 270 0 R /Im238 251 0 R /Im241 254 0 R /Im245 258 0 R /Im243 256 0 R /Im244 257 0 R /Im237 250 0 R /Im238 251 0 R /Im258 271 0 R /Im241 254 0 R /Im245 258 0 R /Im239 252 0 R /Im259 272 0 R /Im245 258 0 R /Im242 255 0 R /Im239 252 0 R /Im168 177 0 R /Im54 61 0 R /Im42 49 0 R /Im54 61 0 R /Im64 71 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im49 56 0 R /Im224 235 0 R /Im225 236 0 R /Im226 237 0 R /Im227 238 0 R /Im228 239 0 R /Im229 240 0 R /Im228 239 0 R /Im66 73 0 R /Im51 58 0 R /Im54 61 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im43 50 0 R /Im62 69 0 R /Im54 61 0 R /Im53 60 0 R /Im64 71 0 R /Im53 60 0 R /Im51 58 0 R /Im66 73 0 R /Im42 49 0 R /Im53 60 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im49 56 0 R /Im51 58 0 R /Im89 96 0 R /Im47 54 0 R /Im53 60 0 R /Im68 75 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im65 72 0 R /Im43 50 0 R /Im51 58 0 R /Im68 75 0 R /Im55 62 0 R /Im62 69 0 R /Im71 78 0 R /Im53 60 0 R /Im51 58 0 R /Im66 73 0 R /Im42 49 0 R /Im53 60 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im49 56 0 R /Im43 50 0 R /Im68 75 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im65 72 0 R /Im68 75 0 R /Im44 51 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im62 69 0 R /Im45 52 0 R /Im53 60 0 R /Im51 58 0 R /Im42 49 0 R /Im63 70 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im46 53 0 R /Im44 51 0 R /Im43 50 0 R /Im62 69 0 R /Im75 82 0 R /Im54 61 0 R /Im109 116 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im47 54 0 R /Im67 74 0 R /Im72 79 0 R /Im58 65 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im62 69 0 R /Im69 76 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im61 68 0 R /Im65 72 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im42 49 0 R /Im54 61 0 R /Im44 51 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im182 191 0 R /Im47 54 0 R /Im46 53 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im64 71 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im107 114 0 R /Im71 78 0 R /Im108 115 0 R /Im42 49 0 R /Im53 60 0 R /Im66 73 0 R /Im62 69 0 R /Im45 52 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im61 68 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im69 76 0 R /Im62 69 0 R /Im53 60 0 R /Im53 60 0 R /Im62 69 0 R /Im75 82 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im48 55 0 R /Im51 58 0 R /Im68 75 0 R /Im45 52 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im47 54 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im46 53 0 R /Im61 68 0 R /Im65 72 0 R /Im53 60 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im72 79 0 R /Im260 273 0 R /Im190 199 0 R /Im261 274 0 R /Im262 275 0 R /Im212 223 0 R /Im208 219 0 R /Im212 223 0 R /Im263 276 0 R /Im201 212 0 R /Im264 277 0 R /Im212 223 0 R /Im208 219 0 R /Im265 278 0 R /Im207 218 0 R /Im190 199 0 R /Im266 279 0 R /Im97 104 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im52 59 0 R /Im51 58 0 R /Im75 82 0 R /Im70 77 0 R /Im62 69 0 R /Im45 52 0 R /Im54 61 0 R /Im49 56 0 R /Im99 106 0 R /Im100 107 0 R /Im102 109 0 R /Im102 109 0 R /Im106 113 0 R /Im72 79 0 R /Im166 175 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im64 71 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im62 69 0 R /Im44 51 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im46 53 0 R /Im65 72 0 R /Im42 49 0 R /Im53 60 0 R /Im63 70 0 R /Im42 49 0 R /Im45 52 0 R /Im46 53 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im43 50 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im72 79 0 R /Im168 177 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im51 58 0 R /Im89 96 0 R /Im44 51 0 R /Im46 53 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im49 56 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im62 69 0 R /Im68 75 0 R /Im44 51 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im65 72 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im46 53 0 R /Im65 72 0 R /Im42 49 0 R /Im53 60 0 R /Im63 70 0 R /Im42 49 0 R /Im45 52 0 R /Im46 53 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im46 53 0 R /Im51 58 0 R /Im55 62 0 R /Im111 118 0 R /Im45 52 0 R /Im43 50 0 R /Im44 51 0 R /Im72 79 0 R /Im267 280 0 R /Im263 276 0 R /Im266 279 0 R /Im212 223 0 R /Im201 212 0 R /Im205 216 0 R /Im191 200 0 R /Im213 224 0 R /Im190 199 0 R /Im262 275 0 R /Im205 216 0 R /Im263 276 0 R /Im266 279 0 R /Im212 223 0 R /Im263 276 0 R /Im204 215 0 R /Im97 104 0 R /Im58 65 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im51 58 0 R /Im112 119 0 R /Im51 58 0 R /Im45 52 0 R /Im49 56 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im105 112 0 R /Im103 110 0 R /Im58 65 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im51 58 0 R /Im112 119 0 R /Im51 58 0 R /Im45 52 0 R /Im49 56 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im100 107 0 R /Im106 113 0 R /Im72 79 0 R /Im56 63 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im64 71 0 R /Im53 60 0 R /Im51 58 0 R /Im66 73 0 R /Im42 49 0 R /Im53 60 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im71 78 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im61 68 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im51 58 0 R /Im55 62 0 R /Im72 79 0 R /Im73 80 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im64 71 0 R /Im44 51 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im42 49 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im69 76 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im44 51 0 R /Im62 69 0 R /Im70 77 0 R /Im51 58 0 R /Im70 77 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im49 56 0 R /Im46 53 0 R /Im44 51 0 R /Im43 50 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im42 49 0 R /Im55 62 0 R /Im74 81 0 R /Im68 75 0 R /Im43 50 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im70 77 0 R /Im64 71 0 R /Im42 49 0 R /Im54 61 0 R /Im42 49 0 R /Im61 68 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im44 51 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im65 72 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im44 51 0 R /Im62 69 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im51 58 0 R /Im65 72 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im70 77 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im66 73 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im72 79 0 R /Im94 101 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im48 55 0 R /Im51 58 0 R /Im68 75 0 R /Im45 52 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im47 54 0 R /Im49 56 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im48 55 0 R /Im46 53 0 R /Im66 73 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im46 53 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im70 77 0 R /Im51 58 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im53 60 0 R /Im62 69 0 R /Im75 82 0 R /Im51 58 0 R /Im45 52 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im72 79 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 245 0 R +>> +endobj +245 0 obj +<< +/Length 720 0 R +/Filter /FlateDecode +>> +stream +x¥}˲,¹q便â.¥ÅÆ33¡åD³ÙI&.¹!["G|³Çhó÷Sy +Q÷ á^p 7¼´cùáß¾ýåÿíï?üåüûæ>³ÿÝ?¶Ã};üGvéÛÂéÛ¯ÿðÃÿã!Æoÿü§þíËxÿQ.ã9rôãÓu|úÈ¿x8>_Çþ2þùïüíúÛGH×Hçg¼ûõò»ü@þÇùü£ßwÀþ@W¶ü±oð2ÜÇdÃS´Øáøþ`ð|>ý§mb¿û ~B§JÛ¡¦ +§*ù>Âöø_>âñý:] +ÇqÝí±¦àÜó.+è}BpPúO`<V¦n÷9x£ýñÁ[_Ç`Nz]: \yâu|·áShÀøü¹×ñÀÎ_T +Ha¯çüÞípÀôôù>Á�cBV¶øá/á¹&Ñô2Ô¡GgSbãÑô$~ OùsÜe|'B|<_§ +øÐü;©óoè�ûý£ç·eñü®ûÿT¿:¿ûØ^ã·N èùít~ ÿ`ÿ6 ?dÿãÖöoûØÃiD=ß[q&?ÁiòÇÖ\õ÷éüåø«ü×ñaGç'ÛGð*Í>}f/¿í'¿týÉñ¸0¬?!mþPùËÈ~öòÇìOÈåý f¿û0¨ßÑù=ãØ»çf�óÅQ»°ò©á0ì>íû\¿ Ü[°>{@tPd]¼e£;À n²z0a þ4i@fÃ&i�ó@1ÉõßÿÏÀ:>.tÏ0Ø}<.wõJ§(þÜÀÐ;!¬_Ñô6ßà6¼à>`âw4?²aD i0ýþI0Ú¿-�´ ¹Ó ÇE^CC1rþ%y4¾·�|<AtfAJA|§@ñsGÓ#8a©Ö¤Núõ?®oçü ¿Çn|ú*÷y~Ébðð±ß�2ä²]¤Û�'È~`C+ðÝ +¨KÐ1ï:3î?·¬ù ç&n[=¯¸HhǰC%ê¾t¨FáX/,Ha9Mr ÅF(;hÄ;/ľ?Ã0BÿþìÑüú÷gÝx÷ý,Ì/#ö>dòsøçô{YòAGEẠ¶[ì`8;üR/áÍðÞÑK¼ýpõWÙ© íxÀàåª?^?Úý %0¿~ õqCÂB`BÅÆëç"Z¿,>'ÖÏ¿ïußçÆ£+9¿äÙ¿mCß/xb!å×`¿#ùë`z~ôoï|oÝÿcë÷DpD + qÐz +w@CÁÒ½ùÍùæ§(¬£ÐõÈÇC¢£ÑI +D1%BÏ/9éüèúSÖÏXÈhþÞô +TçÏÌ¿wã) +·!@áväÿÑ÷ùÝQ~ +y <B¨ú÷ÍиCúÓ;06ôÚþ3ù?10Eþ9¤ýçCLÖÿü£øóú\ǧÆËú³f¿(üëþ'nÐ~ëëßÐþ!ù½òzêøÐ@ ÈùíE²ßT~äÿ´îAë×ýo,È~¢WrywªýÄö#9íEÁäÏ{9}Ah� p +÷P¢"��¢ÎoÏhù)zã-L9Ýð¶D7õKäÞ`ôG´k7Xzþ»æ@èúMþéùÁ�DyƵñÂÑ7tÑì5Èô?{Àb(FoOôì½m(½ÄÔmÛÀÛ£âÍp=|4X;»Øn;½?¹$ÍOá3>¿Ï(|à_W>oÞkõû_¿9á»OáÛâÛ÷?=á·ú�ÛÌ ü +ßÄ£Îß×á«äÁø�ÏõõÆÆo`ýA`|æÐútN¾?oÒ÷Óýß´ÿ=Ùà»Æùg:t~ýþ÷·ª;<ÃwDñüÙxuý×ÛÃØêëI«?eC§ÎOÐÏP°ü8E~8z¤ùûóîß×îþxÑ÷sñ-=ß\òíòçÛðgƸß~¤ð_¢!ð1XÚùuø)£ùûñ̬9F�xÌ H'�½Þ~ó �}?�TüÀ+�¬Ëð±�Á¢ý @!½`t;/ðO+í ¡¢ \AØøCOy´Qü;ØaÙ £¬½!´ã»ïgJ_QÔ{%¦çoLþÁùS,£ýÀP7t@WHÆÂ·�!-Ì0@¤:ír`©üþYxõSm±ýKLìoqCNp íLÂ8!@åI!è%ù£¨ì²_d¼1ñã1(½ã-½¦´óëß�9©Ê?Á 3:ÿÞ~rR_ao39Ò®úoFÀCA þÍÿSòuzðñp~9ìEàÞÿà +£Û¯ìü÷öÉ¿èrX2ÿ�7Ãu¥¶³Ë]Ûá2V*úÝ.^O4ô¸^§ï¸Æëü56_?;ïwéðëö¡ªþ#{çº)ÍÈÚùu�3jçÇBÿ3¥ÿóûëúSþ=·û/îWj;^OÞ öȯgêgèÞï_>ÿÉ×cß³&?60~/è�'xÑþ°»Kpèûõ»KÀD|ó÷dèúíb°ÿ<õ¸eÀN�N1`[u�À!6E%Bù[Y3 ÀÜ ÓùÛª¯ß¿¯::F/½ý ß ùÓ à'ÿNj? +2À½ýàØ ËAEóëç¡þ£ó'üµ°¡ýÓ±7Ë!]´_1"û9%|ëYø1í·ÈWêàû)öíNyaoö'n÷ô/Bû¡Û︷üg< ýÖåïò¯Ë_Aò§`ßùüÑ»·Û¤ëÇÞ¼t~;óHþõâýÓùËg¬fÿÈúô_:öµ]Öôcg(~ÀÎvíÆéohýô·Eÿ-þ¡Ø©å>ÎávÊésûïÏÚ/áíͰ3d?fèwþÐõ{ͰøË°³x,]ßìöÙÙûeCÃuúPjÆOd_ñnÆë¿¯"jíxÙùzËnÇËÎ×ñnÇëè%o´û'?ÜÙ§Êú9} Ï}ÒJ°µóË'¯ìÓÁþqú[Ä®ßGë§ç·¡ï×¹Çgö©¦¾ýÜw ÿè§=¼¬êïqHúKÏß*'¬êOAò3üæ4ý§àhý:xíÏxàþËÙÏÁ.¯üM±Ïý¡ãÜ?ü±ÛÁþÑïÏèû'äDz×ýGöC¿<¿À¯EûÿJ>]¿]; +^Yù¦EÿýJ^]ÝÿÎ|¶ô¡ý&gïòGS®Ò·cÐçY7¨:qÇ#û?Ýàb¿øxéàaÔâWÞÁøU~½=Á»;þ3¦{þ3Âøkxe%,ò·B¼zwþ÷Þ-ú߸£ùõÊG/ð¯ß¡!^èüôÊO/âÜê÷ãøK¯|å4ûKKúO¹tÓ þ)öGñ¿§ÅøÌµû%ÂøM©Þô|üI¯û_§Yî-D?dâSÊhÿõì´¡óÈ=ã7úýÐ~éö÷>.ÚßïÄÁãýM¢ýV¾kÆëày÷¿Ü[¤¿zîý *û?C¾¶Ã§ÁÃvø<xØ¡ÎUä¿?þe0¿n<^¹¯ñºeÁk;^Ï=´áþæSÒ#3^à_»þÒuE?þd4ÿxº!ñ(Ýfµë§ûo_ûOÖhë§òwÀóÓå¯húËoPuðÊÁýÓÁ+ï$ùåãÑüàGò?^ xKþC@óëÎçÕaÑû¼ú',ºýÕýO°àq°ÿìòóïÚñzåBËúj÷_ÏÜÒ9ø83OógÔß³}Ã'øÔï©¿oZH}NïW=k î{Ï» ±O³ëyϯàŽ§ Pãk7×v¼n|=Ü=ÝørçÞ?[³æ>Ô×füDóoÐ{Ï;`Í?ÎîSçĹQóöö$@7¿'s_@ÎÜ' c~àtâ·»ç`ýTv$xEößêF öØ>ªÕàùöQ«ç_Ôýcohþâ¼GòÓÙOê¾=²@:ñ7Ô¤õVõ¤÷¡þèî;jçÇÃt~ºü¼Þåçõö¸*?öö8Nâú q~Ûþ÷Ø%ßÚ?=ü©}@/ãõðçÐöoXøvÑ¿ +ßöÿ訽֪Öðùø·ÐkïD_Ðx¹öO|ÄÊütl�½«ÅÚHeO>_?R( éµr^?;´BY{}C0qÏÛöh�.þu6êÇÐìß~HûG_ÏgîbëÁú×sÞü Y�>ù³²7R¯ÀtêµÓ,}½2ô{àèëU@\�ÏæQw<h÷<@J(xýHZL_ï2`äÔÕd¥¯òG¨ë0@ì F½×îÐüõÊÝ;?£Þ/ÞÀR^ùbú ;¸~ùõ/;ÁNÌoz=´rêO}ýÊÇZçã¹ûípþ+Ì®ôþ¬øÓÓv^/ËN-;q®×kÖÅe<�ß0öz÷ûù'ÞþjÅÕÍ7øj´û¬î£5OÏÇöõòªçÚÿÞç«Çoã¯4ú~^¶"JòG¿¿bïùÑ¿¿¶}?ßvh;tðm×ÖÏ*NùÉ_qîÑö~¯V¿ßº6/#Þ¯ÊOð»4?²oWÚ?ýí*ù[öÓÞÎÆö/µlÌÈþSð¥V,éíº´!çÛË?ÝÿÉ¿øj±ûQìÀÁ'h¿õó;ýPGU +:ÿ â¬CÑËDßeíïvÿÖ+V¤?óÃÇßÏãZüB¡ö¢k¨ÿx½$¿¼jÒß®U²?WEý§U?jÕ Uû$ÆøênÐÑe~½âmAû?8ÿèU·Û%ýAGñMTûË '-~ãÄi?èÐßuè¥rïFþ¶ìNϦ/û£·ìÎ(þhÙ½ÁõëÐÙìÿDÓ¤ú¿ªþSù=Ôûkzîï{úû3ÿ¨8ê´ø}¾?ñzuýµæ~ÞßSÙö×´v¸=µ¯ò¶óJÎïØßóîxÏ$V?ô_©Oñ2li-Ë/ãõ»¯ÉN;¾ÓJ<©?.û'ß½¬èÃü÷_°£ý=ï·üFç×'QâKÚôN`?Q?dtþJÇÞïØÑõïYR~^4ÁIçGåç@ò7¡?·=ÒNBöc"iÜAù×ïþ=Mï¿U,uÒ÷sâUöb?5ið"ÿ:vþè΢Ïñû[æ%%þDäüô¢#'o\Y?Ǿ4×^ö+¼%®qÞ¸¶ÿø ô··?7®Ê[µßFÜRøA[6íõîÑìO» ØíâÝÿrsÿ¶4éÛÞÞóSìÄ!ÿ5øíVðzboJôÊìÏÙíH±?ÌÿÇ ù^±íßDÑX¤óçØtÚÌÝÝÎÊþQÚÔÃþ(úK+ïN²¿´èÇÏO?»û¯ÿôw¢èÝýÛùoò}ÇõñúÉþÕÿìÊÁûl?NÚÙû;0_pü<¼ÿN`0~×±»pO~x䨣v~6WnÅÏF[^BökûÎèþ¯W,Nvã ßµû§íAû¡Ëßñ½ÛѮٯín¿Ð~'øyò~Oö®çêCL°�tñ¾@¹`úÒr3 Æ]_ϺÏ/Ho»¾öðýÓ[ÏöÖ{'Èà+÷òó¶5模ßÛ{âîMýìzÉßJnO½thõúÛûÜÞÓ&)~do_Û{Ú(oÙt íz~[Ý tø +öoÜ·ÖZ±ïUxó{Ú=Ç?µùGEoGçÏÇkòS>¿áíúuîà¦ÉÅï7(?òÛ«ßáür·Gkù4?úý¾wÚÐüòýÍ ÙÞoÙ=ónNxç¿hÏj÷LÜj0ѳº¶<ÈgþÏRÏjcß]~�@ò!À0Kßõv¥Õöµóúðhýø,¾ÙzCÇaHã×'HZßUâû'`ê#®XJ@ßÁêgê4½½oN8®�¼×>?ÂÝ×xm;t¯ñ÷o¢ï!¿ß?êÄkËî··N Ð>UýmæAx zxÿðdË�3| êÔüçëôÍý¸qÐ/? \ê +jõ¾ë,ÌúFC¸üÐøÙ~�i1XÁ¨Âرî |ÁÖxäC3À Dq~òBU¯ãûâwÜ{58åÎ +¾e½ÌÀW5,Ru/ìçïS{Gnoq©±¾)Kû×¯ß x4^E¯}?Na>ßòúùûfþÑürì°£õ÷òÃÀ£õ#+LÎïÒùQù9 Ðõ¿ ù}ÈD³ LhP¸×0ÒÊ0ø.§L`ùØÐìÅ@âq.b AæYP¹rh¼æÄ¾ àúå$Ô¡ÓKØç"í?} Ú` «¿ªñ zë³r ë·×¼Áú©üí(hÁ`lV~ô"EyÿCdf8DIþGE Fãe%Ð/ë×_3ã'^3Ä}Íp~ÍJƦl÷OMLÐ~L¼f!û=Ñ-fÍJÛ&9@f û@G³Ñ1ÏPvÍJ¯[Ô±f¥c? £Y©°3hV*è&ЬìP$WóÌÆªlåH/FáÒV×gñ(óíp*hv=©/³ËÙÞ|Ààã)å4¿FÖ׳ÙíìW×2?QÛíx``Úàøéúk åý¯=¼/ãåy_Ûp¤3êÑþ!F)Ù¿MÛ?°#õÓg5ðý:£þ@ò7Á¨¯=|ÇæUROþQù+ªþ³jIú~ÊÈ5FØ`ÿ) +áÑùëw``þ@~)£9TâñïÜ Ä¾ê¼ÎR¨w¼WüÑýKhÿP61aäg[´bã4BEú;ÓÙ?Ðv´z!Áp ÿ?!ÿGÏ1âQô4ÁvÈÿM0¢½ìרáòúí9{°~ʨÈÿêwÈý`CýGÕX·ßÒ¡ÿõç ¡-êOú?!Aý×õç Êß¡Éý~x}Ñãç£|?SF±xám�aü WðHôø3 {ñ§2Å?H&0 â¿B®éý91,Íþ0F´fÿy!S¤Õ v´þj;¿uتÉMÏo Tý(ÄZ´ø_A÷½2]µÙk÷_ÚFЫþ¶ñû<~¿X5£áàï¾Uðdîª;þ=¹Ðôw_³ý«óû(ÎÏ«A(G±ÀúõJ.> ï×+¹XËúõJ²Ö§/û.áúåläÛA1ýÙݳݽbÞEùcln´ÿ½úQ"âæïôüíýtpþ¼`Bß?ÑEPÓv÷1ÐÜû64¼\¿8´hý¬²?}6"¯FQ$ý{Ç`Säw!Dú;Á�I²ôû²:v?2^B;*Y?r~ú»ÝÒ-û6èuùÛ5ûGåoGöÝ}Ò²Aû¸ L°§Ûfþ¾ Lo¿;K`|Oc¦Øs`<b�»¿ÓäcgH~g°3æïï´PDß?Ó)ð]t�ÔE@4&üª�d$@½�P×ÀD)Ý ^�ôRº;_w ñDO½1P� +ÞäP+"?нå.ôýéä0( êáúõR¨öfsÃÈæ¦¤èUBT¯Gìõ}`AÙëãYõóõÑòiúu/Nµúê :Y>éðo�É"Á `XËu1K½ RA7zEÀÍÐèõè²õì3 /ômh@q/ì¿#�ïzPæShõDÐCû_k)XI]@ÞPÏÚñúãIyºÏv¸î¾+|w>¦ÏØçeþFBYSÇ_§^¸rôvRÏÀü:u+¦Åó³<L4^÷Þg§²>¬ðÛe¼^Ì"£ý(f$x{âogø}pßÓþvOý~S +\ �Ëg5YE8wõOtqÈüÎã£ý£ÜH{ µâèû9÷ËÝ:ÃïFçϹcÈ�èÕ ?k£öE_¤yþ02@?ò'¼_wíÎvbªÌÚñ:w!Àðe=ÐúçÛpì¯{Hë§×w¿NF»ºúýÑÃý×áæïågû2²ï@9KRÖÊA?6ò]9Ç~åÓ¤Çd°5µÐºàõPÑLÔì³e ÂDGP·{$î¡û·#¬ì¥P(¹K,óY ¡Ë=fF9«6Ür0W%8ÍóFÜÈÎðÏP1Ã?C1Ìÿ,¡KäÄþUÀ¼lùkãK0ã¿i0ºÿ»¶ÿýúË'&rV ? ¡PC¶nJã;È{n¤ÿT¡ýÐï�¹VTßËÔîL~2´ú¢¾À¤cÔ«O}mëdMº×°f×3?Ñì3ôµ¦×çÙÍèÓy³ÅpÝG:ñÿ¬bwr@ÓkÁëÐÎ㹯_ú<-%s]ÁûzòHϤËêDͼ×Ä¢yðìÉUõ{AX!ñüËV ¼,ÜÒAowÈÁð*fh~%µÞA¯¨¡vÓ½|¿¢ú2² ÃðÈM`J°ÞQ% õOt¤©Ý<O~Ç¥ß_9¬£ï§çÐãÏ4ý¡ù§9HôìÛM'vÀ'FAÈ*ìB-)¼êBM�_ÞÀZ}տ׫y$2EP;Øg§yÇ~ä'L +"8ð +CXñ{áPNÌ(W%Q®:±µèÄÎ$Ê;N,î÷Ø cÝqbq¿çĬЪ;yh£òWÓpk >ú~¶þäÒõ<4eý´¥µ·kD£¿ü¹â¸P £zð½SÑïU}j=¾é{duÁÍð¶6»×KÔ4ñüDd%|Úñ:Ó×îíY¾¦Ð^Ö¯§aEt|ÄCÖ_I£õS@Bû?$~zV%!åkÿy}®ßMj¿]b·Åùí +üɨßÑùM4©$Âþð¦ÀÉÆWvI~è3ª»g¾Sí&ñ0òóÄGo�E<Ú?úýa¿]þN¤±D¤¿zh0×Ðþ`ù§ã3Z?*ÁÁhªþ\IÖTö1þsþý#¾Âÿ ³ ÏJØ@�ô+Ø¡9Pz(þ +e»åbíê=v@$Ã!ÐYÈÑxXûoyLcÂ,ú]2`´s¨F3Þ÷8<oK«E0¼-®Aðû«¿åcÚDÈò /Â9ßÀã`´i +È,àYèùýÌ ~ÃÃx¦Ò"ø¾=îj +â47¨¾«!¿ÁB"ûàX é¥ahl<4ázM ¾~ï@z"Q¨7èÆ).´Vr®µÚù'*9¿îPa±sèüÄø:<åth¢sÊ¥BHIu??a8xË'B¸#3¤óiÓÜÀL- hÆõîÒ ü8¯Åa4Éióól*-á\ Ha0pF¤iWº#¤5:wDÕׯñ¥~|ÉÞ9Ò{½Ä;4½Îã:¹`üDîlþ Ö}?ïìúÌD=;t¯uvM÷ö/ôpÈű'v¼ÎcÈh~D9;Ã>Çooï ʳG°þ¾ï¬¾_çñùI;:Eñüáñ�1²^:.Ô:´õë< +³ÝãKkÕ:úóÓ»qÕTüUûjgçÕóÆ?¯%¤ý§<{Â}èßûZdýÇD.f¿8ôg"mÛÝo[û"rì`ð¡·Ä _ïc +ÿ\¦|ËD§ê«%í^Ù£õ÷öbhÁIþ�4оc?9¿Eê$f¨'-©E=ÚQ2+ÕhæoF×ϯ·´cä?pHÀ+iG´úîæ7O 8¢m ½~»�Æë =Oh^ÊØ£ù'z&|PßÐâ/-@¯bµ¸¯ OaG>×'d åFN'CiAì0j:´ñÚ%óÖ.Á@C8Qü@0½¢ÈÈæ+¤¢^b �åÐþé(öYÌ[^NíßL9¡M +Bh5îúרĵÝe¸�=W_jÃR7Wc´³Ëî×ÛJ3^À÷e~½GóO° ,kNoÉôñ=0µÝeÿôjFÐÒCX|Ð׫1ÕFýÓÔôë�àDía,´]:Î"`~ ES<ÐêKôçÐôîÈßæ×å÷ æ§pc±ì×0i`?èúÿbÚ$lÿU[ݬÿ²ýxãY´Á8ö#X5¯Eû6Íûrô?:Ì_ßÏ�¬t+øê?X#8$ÊÝÅ�(''¡!ÿü?kDwHöÞ¾=Ò �Î�üEùÙ?ÀAû~G+úGC¦Å}1÷ïø[¿L=ñ7M²éý¯�¤qÈÃ÷làÿx)$¿9p´:mÜÃýcµ´ã¢ý±Ft(þ)ü÷L#:4?*DÈ?0þð®S�^ ÓèV/PÉ^ð(ºþ@@Á¯Õý{�³ZÞpý:ø³#à3µ´µ�¢¿r \äìd§80ÞÎß2 0èÐüºÍ^»PôªúϰÖKÁ* ÷ÀÙpã³ÛSíbÚ�_jôËx|±³kÇOÂÞÁø ðÅR¨Ú÷ï^ ö§`4^g¥,³¿ +Ø?=ôªãÓ×ÙC/öÖêùø4ø~:ÿ®ÉÿÊÎ^<ÐþMR/p~½zAÖg&2HûÇÙg;X?º|áËüúô]üé ðÖ +îlgü.Ó¿4æ¥ ²ß¥ É�súZÿ}*£ùõ6¼'}J3@>d4LöoG8A?;èÔÿW +ã`~z{6ôÈÅ:,ÀD +G<BgÍ,=õR{@$YP?!:q}7øz`�èúü~}ýéæþg¸z«h@(ÿmìã"0ÝGÈ8ZöÀQøÑÈWþ}', +OÀ_îßDhMþx"þ2øhÑ¥ôwâû#_OÝ üûN`4÷ËàãÁR¬ÎÐaêI²^þ}'+ºY³¿£Npcý'ò³ß�^¹�Ý@Äô|*HÿôüýY¼Ág èù#Ù#ùÕÑÏì¡üÊE~_Y<ÓàQ ázønÜ føD%V?Á²JίçÉ{5xhçׯ¯ü××ϬP»~½u(âú |#X¿Ýðѧó8ÑwÎÂWötÐίÃyCß/ÿWçfý:ñÙï¬~2ã;<Y Ôþñ +Zåü¤½órçO¹CêßDòÞ=ëø>?z{ý¤èG@æ{þ¬_ç^«?3£GþRîMþC>Oî8·üBöÞ¢d?)÷kwÈ}ëEÄwdQð¸WÈ~ìrá`Çv¼\8#ü<6þ@ãå¼è üê}Ð=<?ùû£GþCçÅpÏþEh?ôý?û)ûGÁ¿ôWoc ½Ø_ÊÝÊHtÿÖ¾ãã÷OæÆÍ¯_þ^õñãÆ?ßÁ#MYæ?Sðß?ô¼'§ùozyöªý#྿èàC@ç7^ÙóõðþD¾?ªñËÛCñËx üè ÄøGç§³/Òæ�ovtÕÁã¼Iðþ£ÛWá«iÿoMÌþN4sý¥MÌàýE÷?¯&dÓö§v{ªÏÙò}í ÒÃl«Ã×S5ïî2\¾<Õ³ÍÎóæ~"ï§Æñzá¤Ê[½¨>¯î>Á>ëïï´Uô`~½¤Q.߯w±OèütÛëkì9Ï©KH|'°£z÷\>¿ É_~tÿw(ÿ2ðí÷ä_Ï;¬ýFúC¿ÿ@ó£¼AB,H~'º/Mÿ)víþðhycûÁ°¯ ùà÷[Î#Ô¼üÓõ¤?3Õã#Ø:y60Säb'é]ì\´Ô|÷Þ¼{ÉÐCEÛá:rQ[¯SçW+·ã'ªÖç2^¸ñhþà¡&]æ.^öðó¼ø_Æë¼ÓO"é}Cóë¼ÓÚ¸küýl<_¸«WÏsÒþ±¤9_/^íx4GäGç7üíY\?«:öOO:õ<?øó4nU+Göw/Eú«pYÔ_æ|ã-ýÚ?ýá§>\ÊÏùðÔÏ?ã<ïÙ?{¸¯µnAò«Ï¡Ç#ù¥û5ù£ò³iîÎ_ÿÏ7ÿ\óF{FñjÜÀQþÙÃ?ýáÅ¡ùgöIþ)m»²¦Oöé;ÖxÒ䳦Ó-ûôì×Dç¨é/8»§öð5ð.ó»ç÷g³éÿÒNvx³Óï¯ECÆúCÞ6dzð7. ñÎßQüâgöð¥úRtá@ò×ÇTÿªÿ¼äåûOª3Gö7NÝ%ý£¿þpi¬íÕøÇXÛóö¿><D4?òäûã=ûôzνh¿èÃSF÷½ù·åüäæ¼o(~×S Þß&ôgGû7ñp{Ü³ß Æ_:üäø±¾ÿÖÁ×ì´õsÖ7´_rÑ£3ç_f¿+ëûä¬oõólÏ +ÞÕËg^«kg?>"_ÆË{o¤ñv¼;xóù}±Ó!vß»Õí'oÒüûóh~û;:¿ ìίcæ{òZ±]+9ú~^ðÉïDÛåMÓ^Þq&ù'H÷vþTtþèáuý ôÊ¿a«úWI£#ý£7µÜûÅþ�ù¹Æþµ`KÝþà¾Ì_Âuþó/dzZýu¼Ð±¦V|yöK¸ï_ÿç_¬ãÖuÝ>ÌTºþ@r_�àúOàkɽëôI¯®¡úöxwÙ�À\±þ@ízýî¶WP¿_@x¿®?Pð¤ª÷rì+ù<>üÑw!dàÉìIÛ¾wHý¬ +©Se*IöqY.I~B¿ìrÐBoMOûjþâõ:9è÷ÀV�E¹·gÛ¡fJøòÿø7~þ2ÁN!uOÁzX OîAÔ·Ñ¥Çð&êÇhÚè{¯VWñ& +u@TÔ1$`o +ãO¸õvè>öâ°F"õZ*³ð9~¢ÈÁx=²+O1nOµühz YMÉù¸²ÒNÝ*ù_ÆëÈZÉ¿]¿~-5RÄeÿôÀ2¢ã×ÎVýú'²¡+£q4?Ý¿¤ý£òvI~h6p~2ÚóG¥@zFÒøì ÞÎÀjx¾¶¡¹þ�¯Ï"õvt!дtwË')`Âå´® r¢¯? ÜNëÔ¸ë ýìÊê +,)·¼Ìȱ¯Vdº¡Î-ðHt^¸uäÍOß#2Ão˹QGÎâܤ j,42ÃôûëÍfÕ ÚE{tþ4)xò£'פº¥óÃ(DÇáÕßCÕ_ÆÐä¾Íâ0FNj²rùÑ+zydõ¤¦Ãým9 ù'"+>;Ò?ÞP`Ü8¯èÂ(i(< Ô3ä<ÖPàrþàÁ¸ X¿Î-³7¥QÉûy®ÞbêüÛ0²à¤kO +Fû7ÑÐ!ý©í|þÔ;:ú¶êÉ~1nPª¡Ä·Ü 4ýU¤[õ_gõ;þ+Õ«þËú!¬ú¯þN$ånê5$ån0þnæ¹ê¿¼Céþ+=ìâ¿èüºEêÙ¬çHÿ)·£Àùå÷ÍìPü;ÑLÚ½¨U´ïß[nÃI1~gþ)WO-MÁwT´«Æ¯®«f£áÛÀêg +âe0~¢fípnþíôwÙ}Pñ]¾_.èäk5ãË÷OäE`ýÜTu§]ÿD3P4¿^ÐéànÉOFû?!?æ{ò3J*çEåEõ5nCç7Ï$e¤xh~jÈõîí¼t~,)4¼ôÿëøfV¡>½¬ +àÕ{G�C-¾*Á0øÕõ'$ÀzEÒ¡ +<ÑPã¥Àï ]H5^?I¬�U$%äǸÏà¯U ð;rÍçcö#|ø|Ø·/ý8ú`*?åE3ÀüpüPðÆ¡�F¯H½�Ñrî°nA[?ÿâv+ ®_&ÇXxY¿ïéoÄöC6øý:ø´Á�Nvw+À2E<P�¾É#´ÎâòõâòïQ�3qù·Ëã �ãÍ4¡üêÍ(kEíåù#º~N$&%?¡n¤C¶ñïoÏT~ò=ûwOý )¦àåÇô«þ%Ö �Zy|àaç_È÷ÃÄÄùÕÜ«ç¡ýhÆéïùÿã=1Ó¯º!6üxßL³îyûÖGOW>r`þ j¼Òçsøé�óÏ÷c}?e°ÙÓÇ# +yßÌ ÁWø~Ýû[? Ëx½¬Q7Úï×ËÕÔËx½¬MÖÄ¿§ÛøÎÏ; ÀøíÉùüûîí©_@ù)kÈÐ +ÀC,u�Ç! HnA@igT5ØÈX`K$Þß±ÑÔäºU¥[ÕP[4Å_Vç²�Òþ¡â�êͬçò÷[ü¹hΪr ,òö__BMìÉ/'oyIÿøx$¿z;2ë':Z?_ä±f¼^Õ +ëôâOò`øëMûæ9þ Ö?¿ÔÂ:ï×ñìïþíÏþà÷ëøKþKÇ_bÎâ éïþþM´CÅöK~¼ùæùmÐÉøEÜà B®h·"ùN>Sý?kgºK7�úýµ!úèû)þW´øwøDa´ÿz;Âo`3 qþMàOöþ×ÞÀôv ØþèøcÐö~Dò;Q(iöÆQoÐÊh~ü2ò¿zaÄT³Gþ½ß¥Ôø¹@r9ÿâ׺*aë{0ü»Ôx3ÞPýZã70>ôòÓg¢âà�tMa´$¾Àå èú+4]0£ p¾ÁZëÉõßYDèôSx@ ÉX> T´S@YÙÏ +ÇJ¢N¥ÚàôXå2mh@(¸ceȧKϯù¯ð8ú¥ûx ABH©¡Ú³ß³èÔ2ÃùõÛ¨Ýfñ=j«Ëür´3¯õ!t¤Ì1*ROд¨÷fô6nhH3ѱÈ÷×ñÀ04Ò 4oCçnÃ,n΢a{Íe]׿×þá©¿Íü I=çFÔÛDô_Ø<+ÿ@uíH|¢çÚP]6Ì;¹Éæ i|B+Ý +zgh&8ÐO`:uÜH9&à%+@ú\¿ÐQDµÀÉj1~µËu« }0û<¢ýH¨<ÐþO$TB/<±ÿEÛ~§FV|¢Ø©CQÀÄΣ@j¢Ë¢ÝÉÛñ2¦ þN+üRNCBh¢Ø(Ö_½KdFò«t%µb믬éõ§Eò¦ü¦t~:¦x«Uæ§ûwhû7LèZNN 85úÿâÔ,êÿS3ô¤.aþ}µÚw¬çø÷C)+Æ +øQÁXÂj `µÔúfùuVODó+oëþýì?åXR_,øi ýþ}ÁO +$äzkÆOtÚËpÿõ¤4»EÊßvHçG×o8Èpý,)jû7hoÊ«ë·$þ}ÁZÞl +é/*è +Æ"ùÓßÔ¬Fãe¼\ïúä´¬¯KÊE<:ÿ Ár2òÏ*¡ù'-E´ÿúB°&þ}Á]Vð,ÔÿDYÀhÕ5¦¤ àDRØ.àûnQ£ïç8?Ó%e4ãõn{¡ ùu P}wÚü<©+KûÇI50èn90ë6µºÿ1À�rÀBò?Ñ pú"Æzh¸þAhÀ&�é�ÁØÃ�ÈïX[0ýþéÏÄùÃ�J¯IñÀX´ó£Imé¿NkOß í`yÕþ±¤0-�ä�&¿@²Â´èWRÚâÆº=^ ÛÓêúàî\ èè´ÿÀË·.Ðɲ/Ð Û/Ùþ¥Ê¿TvÀý×å¯ ï��k̢Ϳ#{ñÇ«"Óâú³Ó.pLÿ²W¬AE§Eÿéàòü¼�Àv¼|}1ñzQ¨_�Í~ÖÏÀÆëi}Qû~JcIj5ºG°~ïå7<Ø@ZÖgC #0Öri$�8Ë}ðÍøiV£¯ÉÏáAãºÇï'i© XL«öó2~ WÈËô¾iÀÁ�]Rü_1´ýXXJaÕ°¡=ô: +^3ÃÚ�t:Nj,ðÁ5lbÚ´M¤ÄÎ|SõÚ² -$I¤°á�_H6±ö(¸n¢L©q/ SßY£sæçøð¶Ä=ÉÑDÿ½J¼St ¿×I kÇ+¤@#5:°~ßËop°Kàx|@ðp£úÄÃ[[6ÁÊ&@_ç`åES°ÈÊK þ��DØøÂBñÿ0DýzÌ�©3¶ù[JhuÖVÐê¬-+áÌØÈM(áqÜT¢Y#+ +áIë¼£Ñû[JývO cÍÒXVÂvmû2Dn÷z_7±ËY~@LPôl͵Xâ$+@á EtÌ\lEtfîæ×« XµµËúåj±k]þ~Êèmàkµ¶Ñ÷ªµ]Ö?QM{~¾1SmÒÁLÑ +¬\Ö?Ñj�Ý+gZ ×ú×Z õ0i5Îo¦Õf?80íïÉï®EÒtü¡ +÷_Ø(Ðíwvpÿt`¸¶*¹-,¾{ÊÞìo~[îâr®ßÖ¾V«lÇëöÏýÛÞ?lÐùCæ§À¬Jíø `®_gÆÖjùebÕ7´~½ÞÙ¦í?Å+3ó2¿ÞnÀâÁüYéÐüúÃÊ÷Ogf8ÿ¥óãÕÂÐþé3/(gQCö3>?6¾Hãyµý"é/e¦Ö<÷üÒjiµZO;^BÖä~?Ö½ÚUFû7AÌÜÐùO0s+1iùû+±rùûwdÿgÿ¤ÌÞÚjiä¿(³·T¥R[wAÜßd"&mÅ/ Tö5²_43´Ï²ïî_µø3+±h$¿Øü^'ftþݶ$é/ϬEú;YìÏLf-ò?3µÿãµP~õjí5³b>þ²VÈLTÛþ{"³0@ùï_/üc`¿iµ¦ö¯·¿ÔûÙ¿âo´¬Ú²¨¾¹ÿoý¥óïǽù¡þNS?ȼ«¿j¿³¨¿Cüaüãû¯ÞªÐiv¾¿ÿoÆOÜßüæhW÷¿¯ßß_¿¿ÕÄËøÎ~±G0_NØ»G0_ÔV«ùõvqµÊÖe¼Þ..GI~8/-ãYfªv~TþjµávüD»F»?äêO2ÒÙéÏßð$ê?£¢Àñ²ÿ +®ñÿ-§îª?»þpýSS¢í½?Mÿx}/ÍþòÌRdÿ±Oì_ïÿÙý+Ôjíùõ÷/dQþØýéîÃí|ÿ ²øQ-·9²_41Ë!ÿ¥ÇßÑ!ýÑñ#«>òºÿ·ò#ûÿüN$vBýSâ÷ºþxHë§óÿbÑE{?ÆOäü²v~ÿÈpÿõÄÔMóß¼ÛÒ?]ÿããùý:îèûû÷k¹þ¬¿ øc¢2Cãgaü:ØÎâþ¼äÿxb#ÚÿÄÆ Ú/²ÿ?®î÷' þëµ êÿDbí¦É?ýþ]»¿qþÚÿüÞ_�þþ¾2רù/È÷ñ¯Ì¥Ùæ2ôûSõTÙkùþeëOk}LÖGø%ɱõ7ãuüúÄOúñïÿ¤÷õ(þP»¥\Æëje¯Ñþ3þ7þÚãߥnc)£ï×+Se'}?ïW¥ó£üÚ¯î2^~<³>ñ«f|ÿþèià÷j@Ò×òÀE'ÀP�tLA8Ñð± ù'.*°^Êhí÷ëxÀK[iûÇSyviý�á÷ëY<~Hã%B�»µç?A )ü06d@tvdÀtvh@»ùiú9°vq9àvö�<0à4 ©À�B¯cÐÅùcmp0^àkEùý3�&HçO×þL´KÛ-ûoíÚ.ú£·KK÷ì_Ì«òk�PºÀEh&� ÊÞ.mCþ«�¢Yh»0ñ}ibN`Aú;C`Ñü?%°dÿf,È~L\`]¼e¿S-í¹j¿Ó²ý©�_fJË«ñ'P"_À4�GWÒâ'ÿ$»âºþíý~%à,ÆiöS.¬b¡ÆöUöW~ÀNÿñ$}?ÝÑ~P�¼þã � Ùß#Ðcéü^füDih³Íx½²_nà_©,÷@Óϯß?²Óe¼~~·ë×ç¯ívGós�Fû~:ÞÍxç7mÿïw´:ô�4À¾æ×Û¥¾j¹´ë×ïï õÜß]Aãõû{:Ör¯ îFöÞßÒû»á7ûCïïÐ~LÜß?½ÔýÙ*_ÎO'pmüÑóÛüõçÇñ#Í~RüPÔ*¿&¿t~#Ð-úÿP þêìÏD +§ÙZ@Ä?^ÎÿËúÿû/øñþÿöËÿxHÑ9üÛ)¼õÿüòçÕ<ÇæýñßüæÛ?üÏ?}ûýï~ýÓÿöÓ?}û×þÅ·?ÿõO¿ù¿¿þé7ßþ÷ÿûö¯ÿþóï~ÿûo¿ú_ÿê¿ýâãÛ¿ÿî§ÿüé¯?ûoß~ûóÏþ§üûßÿþñóo÷·?þôó¿zxÿøëÿúãýøç¿ã>~ûó~ÿß~ù~ø_>V÷ÿN' +endstream +endobj +246 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 721 0 R +/Name /Im233 +/Width 23 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`xÀÀøùû~0À`ÿ¡üÃsb<þ¹ý;û>0a`Áþ ýÁöÿÿÿ ^4#q ºù2�XÁ-\ +endstream +endobj +247 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 722 0 R +/Name /Im234 +/Width 8 +/Height 8 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³©ûu65í�6 +endstream +endobj +248 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 723 0 R +/Name /Im235 +/Width 19 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``¨``þÁðþþ``¤ªÿÿ�jæË��.°&R +endstream +endobj +249 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 724 0 R +/Name /Im236 +/Width 34 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿÿC=¨cþ!ßPÃü½¡D0ÿ`nø�$Ì?Ñ æ4!ÿÿÿD()Õ-T�L?Ú +endstream +endobj +250 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 725 0 R +/Name /Im237 +/Width 26 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßÀÀðåÅíäçÿ`ßñAþA ü:n ÿÿøÿ�K)×-�2g.ú +endstream +endobj +251 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 726 0 R +/Name /Im238 +/Width 21 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÇÀþ¿¿ý<ó{Æu ôãýÿBÿ ¨êì,ä +ø|`þá?¨XÝT)�¦ÊÀ +endstream +endobj +252 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 727 0 R +/Name /Im239 +/Width 17 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÌ ÿ¡B¡á;ý``øDêÿ0Øÿɲùö ø°7|�£ìäþÿa8þAP¬nª�¥¥} +endstream +endobj +253 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 728 0 R +/Name /Im240 +/Width 24 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿà ÿ¿Áÿ@=ûzf ú`ÇüAùýÿÀþÿüãöÍâÿPûzÙÿò?þ5IÕM�Óì#à +endstream +endobj +254 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 729 0 R +/Name /Im241 +/Width 19 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû/ÏðßþÀÿôòÇa¨ù|Aôÿ ÕM�µÃ +endstream +endobj +255 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 730 0 R +/Name /Im242 +/Width 20 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÏÀþÿ�ÿáòììÙ?Ôó:ÆÿÐPÕ30Ø3È7<àø�¨(!"V7U�ê` +endstream +endobj +256 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 731 0 R +/Name /Im243 +/Width 26 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßþáÿüÿwüaPà HÇÿ?þ?�ÃRbuSåÞ&Í +endstream +endobj +257 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 732 0 R +/Name /Im244 +/Width 25 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÊ1 +@á_¶ØÒZ.¹ ¸õ¹G,,+%ÏA!âaf²Tâm øelÝ&+½;dÿÓºùüD0¨T<6Ë©íKn¦ltÄQä?¨6éwÙDñ>¯Pà.¤ +endstream +endobj +258 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 733 0 R +/Name /Im245 +/Width 12 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãc°g°o¨Bû{>dð¿å Àÿ@G¥~1?�14² +endstream +endobj +259 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 734 0 R +/Name /Im246 +/Width 31 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿýß æ?Àøÿ�ÃöÀøãæ `ü¹ñ33ü`Cà¶`{ 7âüh037À±¼Bý<%�fo"è +endstream +endobj +260 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 735 0 R +/Name /Im247 +/Width 38 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀ ÏÀÿáÿùXÈ30(àog°H`?Ç ÀüAâ�ã?¨u âOã} :Æó Ìí,øÈØ1þ�6ù=Híd]�xù#ø +endstream +endobj +261 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 736 0 R +/Name /Im248 +/Width 28 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`c`` ÿÿÿÿ«ejg)�W + +endstream +endobj +262 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 737 0 R +/Name /Im249 +/Width 15 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã`à1(°H0H08�?jþÔý©«±³áç«/�¼²e +endstream +endobj +263 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 738 0 R +/Name /Im250 +/Width 15 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+°øQó§îO]JðHðXÈH$8(ðóÕÍ�À_ & +endstream +endobj +264 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 739 0 R +/Name /Im251 +/Width 19 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÀü÷{ÿ>örÌdذ7TÀÐ~c(�";öøm ¨ }`àÿB²5Ehq +endstream +endobj +265 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 740 0 R +/Name /Im252 +/Width 21 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5» @Ñk(è´2± Á1(¬eáM\ QáÆ§sá¨yåîDí»~MÝMlå+ØB÷ÎøÄ, 49,¡%8¯Uý÷ãvº·L,ú +endstream +endobj +266 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 741 0 R +/Name /Im253 +/Width 42 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßþÿÃÿùì0üßQWðAþÝùö u0²Ázäÿÿÿ?LjÕMÕ�5j +endstream +endobj +267 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 742 0 R +/Name /Im254 +/Width 23 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÇÀþÿ�óyÆv?êþ@Ð?"eÏø¨¨¨á¸XÝT�¢# +endstream +endobj +268 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 743 0 R +/Name /Im255 +/Width 27 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÁþÁ(æ?ÀÇÀÿ@ý3°à? +ÿ|``øó�ë °}Ë3@0´XýT9�-Ü +endstream +endobj +269 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 744 0 R +/Name /Im256 +/Width 14 +/Height 5 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿç?ò±Ö÷ +�k +endstream +endobj +270 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 745 0 R +/Name /Im257 +/Width 26 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`þÇÀ�ÃuDaÆuìÿÿ1ðüÇ ÏðÁ(ÿ`ééåoþýýÆ?õ¤ëÉ�À¬) +endstream +endobj +271 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 746 0 R +/Name /Im258 +/Width 26 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßüá?Ë7Ôÿ1óÿìÿë0þ©? %V7U�mÍ" +endstream +endobj +272 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 747 0 R +/Name /Im259 +/Width 17 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc<ÀÀCÌ0ÄFüìÿ3ü#þxÑáTÄÀþùÃA úùb�F6 · +endstream +endobj +273 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 748 0 R +/Name /Im260 +/Width 36 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃÿÿÿÁÄöòÿ Á&~à"@²ü Åò@m Øÿÿì@=oPBD¬,øÿ¿ýÇÿÿÿøÿ¿á|Ý<u�¹³G +endstream +endobj +274 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 749 0 R +/Name /Im261 +/Width 19 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°o`øùóöçØ?à¢Ãø0 £ÿ MªÿE +õó�?q&9 +endstream +endobj +275 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 750 0 R +/Name /Im262 +/Width 26 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßüá?Ë7Ôÿ1óÿìÿë0þ©? %R7Y�º E +endstream +endobj +276 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 751 0 R +/Name /Im263 +/Width 12 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãcg°o¨Bûy>øß�òxàÿ È£X·�Ãf- +endstream +endobj +277 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 752 0 R +/Name /Im264 +/Width 26 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏþá¿üÿäêä@qñøÿÇÿ`XJ¤n²,�Vâ" +endstream +endobj +278 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 753 0 R +/Name /Im265 +/Width 25 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßÀÀðåÁýäÿÿ`ÿðAþ@PÌð`¨;äê?0ÈÈ`T¨/�ª&\ +endstream +endobj +279 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 754 0 R +/Name /Im266 +/Width 16 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãfÿ¯Â®ïþcøÿ þýùüÿêÈ?àÿÀÿïÜÿ?Ç?ÔM�Q +endstream +endobj +280 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 755 0 R +/Name /Im267 +/Width 36 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿþÿÿáû¤ÿÿ£¤�'þ£ºEE¾n&�Ò¦Pè +endstream +endobj +281 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 480 0 R >> /XObject << /Im168 177 0 R /Im54 61 0 R /Im224 235 0 R /Im225 236 0 R /Im226 237 0 R /Im227 238 0 R /Im228 239 0 R /Im229 240 0 R /Im228 239 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im69 76 0 R /Im62 69 0 R /Im53 60 0 R /Im53 60 0 R /Im62 69 0 R /Im75 82 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im75 82 0 R /Im42 49 0 R /Im64 71 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im111 118 0 R /Im45 52 0 R /Im43 50 0 R /Im44 51 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im44 51 0 R /Im62 69 0 R /Im70 77 0 R /Im51 58 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im46 53 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im69 76 0 R /Im45 52 0 R /Im62 69 0 R /Im61 68 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im69 76 0 R /Im68 75 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im49 56 0 R /Im46 53 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im43 50 0 R /Im69 76 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im71 78 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im51 58 0 R /Im89 96 0 R /Im44 51 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im44 51 0 R /Im62 69 0 R /Im70 77 0 R /Im51 58 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im46 53 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im69 76 0 R /Im62 69 0 R /Im53 60 0 R /Im53 60 0 R /Im62 69 0 R /Im75 82 0 R /Im51 58 0 R /Im55 62 0 R /Im70 77 0 R /Im64 71 0 R /Im47 54 0 R /Im42 49 0 R /Im65 72 0 R /Im44 51 0 R /Im68 75 0 R /Im45 52 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im97 104 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im48 55 0 R /Im46 53 0 R /Im66 73 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im71 78 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im51 58 0 R /Im55 62 0 R /Im65 72 0 R /Im46 53 0 R /Im51 58 0 R /Im47 54 0 R /Im51 58 0 R /Im44 51 0 R /Im62 69 0 R /Im70 77 0 R /Im51 58 0 R /Im47 54 0 R /Im42 49 0 R /Im65 72 0 R /Im44 51 0 R /Im68 75 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im111 118 0 R /Im45 52 0 R /Im43 50 0 R /Im44 51 0 R /Im103 110 0 R /Im46 53 0 R /Im69 76 0 R /Im51 58 0 R /Im115 122 0 R /Im68 75 0 R /Im42 49 0 R /Im53 60 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im53 60 0 R /Im62 69 0 R /Im75 82 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im71 78 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im51 58 0 R /Im55 62 0 R /Im47 54 0 R /Im42 49 0 R /Im65 72 0 R /Im44 51 0 R /Im68 75 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im65 72 0 R /Im46 53 0 R /Im51 58 0 R /Im47 54 0 R /Im51 58 0 R /Im111 118 0 R /Im45 52 0 R /Im43 50 0 R /Im44 51 0 R /Im106 113 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im69 76 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im69 76 0 R /Im62 69 0 R /Im53 60 0 R /Im53 60 0 R /Im62 69 0 R /Im75 82 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im61 68 0 R /Im62 69 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im97 104 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im70 77 0 R /Im64 71 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im61 68 0 R /Im62 69 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im65 72 0 R /Im46 53 0 R /Im51 58 0 R /Im47 54 0 R /Im51 58 0 R /Im103 110 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im48 55 0 R /Im46 53 0 R /Im66 73 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im71 78 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im51 58 0 R /Im55 62 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im61 68 0 R /Im62 69 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im65 72 0 R /Im46 53 0 R /Im51 58 0 R /Im47 54 0 R /Im51 58 0 R /Im111 118 0 R /Im45 52 0 R /Im43 50 0 R /Im44 51 0 R /Im106 113 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im61 68 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im42 49 0 R /Im47 54 0 R /Im47 54 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im62 69 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im46 53 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im51 58 0 R /Im54 61 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im64 71 0 R /Im71 78 0 R /Im48 55 0 R /Im51 58 0 R /Im68 75 0 R /Im45 52 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im47 54 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im72 79 0 R /Im54 61 0 R /Im42 49 0 R /Im55 62 0 R /Im55 62 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im62 69 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im71 78 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im48 55 0 R /Im51 58 0 R /Im68 75 0 R /Im45 52 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im47 54 0 R /Im43 50 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im51 58 0 R /Im55 62 0 R /Im42 49 0 R /Im70 77 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im49 56 0 R /Im75 82 0 R /Im48 55 0 R /Im46 53 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im65 72 0 R /Im65 72 0 R /Im53 60 0 R /Im46 53 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im61 68 0 R /Im61 68 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im53 60 0 R /Im64 71 0 R /Im42 49 0 R /Im69 76 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im66 73 0 R /Im51 58 0 R /Im54 61 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im62 69 0 R /Im44 51 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im53 60 0 R /Im43 50 0 R /Im62 69 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im55 62 0 R /Im68 75 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im46 53 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im71 78 0 R /Im55 62 0 R /Im51 58 0 R /Im51 58 0 R /Im65 72 0 R /Im51 58 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im47 54 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im51 58 0 R /Im43 50 0 R /Im72 79 0 R /Im233 246 0 R /Im234 247 0 R /Im268 283 0 R /Im236 249 0 R /Im237 250 0 R /Im238 251 0 R /Im238 251 0 R /Im255 268 0 R /Im240 253 0 R /Im269 284 0 R /Im258 271 0 R /Im240 253 0 R /Im259 272 0 R /Im245 258 0 R /Im254 267 0 R /Im243 256 0 R /Im270 285 0 R /Im258 271 0 R /Im243 256 0 R /Im242 255 0 R /Im259 272 0 R /Im245 258 0 R /Im254 267 0 R /Im243 256 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im69 76 0 R /Im68 75 0 R /Im54 61 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im71 78 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im44 51 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im43 50 0 R /Im46 53 0 R /Im61 68 0 R /Im65 72 0 R /Im53 60 0 R /Im51 58 0 R /Im72 79 0 R /Im44 51 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im42 49 0 R /Im61 68 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im42 49 0 R /Im53 60 0 R /Im65 72 0 R /Im42 49 0 R /Im45 52 0 R /Im44 51 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im62 69 0 R /Im54 61 0 R /Im51 58 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im42 49 0 R /Im53 60 0 R /Im65 72 0 R /Im42 49 0 R /Im45 52 0 R /Im44 51 0 R /Im47 54 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im112 119 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im61 68 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im42 49 0 R /Im53 60 0 R /Im70 77 0 R /Im51 58 0 R /Im44 51 0 R /Im75 82 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im43 50 0 R /Im46 53 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im65 72 0 R /Im42 49 0 R /Im45 52 0 R /Im44 51 0 R /Im46 53 0 R /Im43 50 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im45 52 0 R /Im46 53 0 R /Im47 54 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im62 69 0 R /Im43 50 0 R /Im68 75 0 R /Im61 68 0 R /Im61 68 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im65 72 0 R /Im46 53 0 R /Im51 58 0 R /Im47 54 0 R /Im51 58 0 R /Im71 78 0 R /Im43 50 0 R /Im115 122 0 R /Im68 75 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im71 78 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im51 58 0 R /Im43 50 0 R /Im72 79 0 R /Im169 178 0 R /Im68 75 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im42 49 0 R /Im66 73 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im49 56 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im64 71 0 R /Im44 51 0 R /Im64 71 0 R /Im65 72 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im65 72 0 R /Im46 53 0 R /Im51 58 0 R /Im47 54 0 R /Im51 58 0 R /Im42 49 0 R /Im101 108 0 R /Im171 180 0 R /Im71 78 0 R /Im43 50 0 R /Im115 122 0 R /Im68 75 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im61 68 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im51 58 0 R /Im55 62 0 R /Im72 79 0 R /Im73 80 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im51 58 0 R /Im43 50 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im65 72 0 R /Im46 53 0 R /Im51 58 0 R /Im47 54 0 R /Im51 58 0 R /Im62 69 0 R /Im54 61 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im64 71 0 R /Im43 50 0 R /Im115 122 0 R /Im68 75 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im70 77 0 R /Im62 69 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im65 72 0 R /Im46 53 0 R /Im51 58 0 R /Im47 54 0 R /Im51 58 0 R /Im71 78 0 R /Im43 50 0 R /Im115 122 0 R /Im68 75 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im111 118 0 R /Im53 60 0 R /Im53 60 0 R /Im51 58 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im70 77 0 R /Im51 58 0 R /Im66 73 0 R /Im46 53 0 R /Im54 61 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im62 69 0 R /Im69 76 0 R /Im51 58 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im54 61 0 R /Im51 58 0 R /Im75 82 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im47 54 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im51 58 0 R /Im43 50 0 R /Im49 56 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im68 75 0 R /Im45 52 0 R /Im54 61 0 R /Im49 56 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im55 62 0 R /Im69 76 0 R /Im45 52 0 R /Im62 69 0 R /Im61 68 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im70 77 0 R /Im46 53 0 R /Im53 60 0 R /Im46 53 0 R /Im44 51 0 R /Im64 71 0 R /Im62 69 0 R /Im69 76 0 R /Im65 72 0 R /Im46 53 0 R /Im51 58 0 R /Im47 54 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im47 54 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im62 69 0 R /Im53 60 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im51 58 0 R /Im47 54 0 R /Im48 55 0 R /Im54 61 0 R /Im46 53 0 R /Im115 122 0 R /Im68 75 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im111 118 0 R /Im53 60 0 R /Im53 60 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im45 52 0 R /Im44 51 0 R /Im62 69 0 R /Im69 76 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im64 71 0 R /Im54 61 0 R /Im51 58 0 R /Im75 82 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im47 54 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im47 54 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im51 58 0 R /Im55 62 0 R /Im91 98 0 R /Im23 30 0 R /Im24 31 0 R /Im91 98 0 R /Im23 30 0 R /Im93 100 0 R /Im164 173 0 R /Im24 31 0 R /Im87 94 0 R /Im87 94 0 R /Im32 39 0 R /Im37 44 0 R /Im90 97 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im65 72 0 R /Im42 49 0 R /Im45 52 0 R /Im44 51 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im69 76 0 R /Im68 75 0 R /Im54 61 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im43 50 0 R /Im68 75 0 R /Im65 72 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im45 52 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im167 176 0 R /Im75 82 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im66 73 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im55 62 0 R /Im68 75 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im47 54 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im46 53 0 R /Im51 58 0 R /Im47 54 0 R /Im51 58 0 R /Im71 78 0 R /Im69 76 0 R /Im45 52 0 R /Im62 69 0 R /Im61 68 0 R /Im58 65 0 R /Im115 122 0 R /Im68 75 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im64 71 0 R /Im46 53 0 R /Im43 50 0 R /Im43 50 0 R /Im68 75 0 R /Im70 77 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im47 54 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im69 76 0 R /Im45 52 0 R /Im62 69 0 R /Im61 68 0 R /Im46 53 0 R /Im44 51 0 R /Im49 56 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im46 53 0 R /Im51 58 0 R /Im47 54 0 R /Im51 58 0 R /Im71 78 0 R /Im44 51 0 R /Im62 69 0 R /Im58 65 0 R /Im115 122 0 R /Im68 75 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im64 71 0 R /Im46 53 0 R /Im43 50 0 R /Im42 49 0 R /Im55 62 0 R /Im55 62 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im62 69 0 R /Im46 53 0 R /Im44 51 0 R /Im72 79 0 R /Im166 175 0 R /Im46 53 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im69 76 0 R /Im68 75 0 R /Im54 61 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im43 50 0 R /Im62 69 0 R /Im43 50 0 R /Im51 58 0 R /Im45 52 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im44 51 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im55 62 0 R /Im45 52 0 R /Im42 49 0 R /Im75 82 0 R /Im43 50 0 R /Im70 77 0 R /Im64 71 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im53 60 0 R /Im51 58 0 R /Im61 68 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im49 56 0 R /Im70 77 0 R /Im64 71 0 R /Im44 51 0 R /Im48 55 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im71 78 0 R /Im69 76 0 R /Im62 69 0 R /Im53 60 0 R /Im55 62 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im51 58 0 R /Im44 51 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im70 77 0 R /Im64 71 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im110 117 0 R /Im113 120 0 R /Im71 78 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im68 75 0 R /Im53 60 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im75 82 0 R /Im51 58 0 R /Im53 60 0 R /Im53 60 0 R /Im42 49 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im47 54 0 R /Im67 74 0 R /Im61 68 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im72 79 0 R /Im233 246 0 R /Im234 247 0 R /Im233 246 0 R /Im236 249 0 R /Im237 250 0 R /Im238 251 0 R /Im245 258 0 R /Im253 266 0 R /Im271 286 0 R /Im269 284 0 R /Im238 251 0 R /Im253 266 0 R /Im238 251 0 R /Im243 256 0 R /Im259 272 0 R /Im240 253 0 R /Im259 272 0 R /Im245 258 0 R /Im254 267 0 R /Im243 256 0 R /Im254 267 0 R /Im270 285 0 R /Im259 272 0 R /Im237 250 0 R /Im238 251 0 R /Im259 272 0 R /Im241 254 0 R /Im240 253 0 R /Im243 256 0 R /Im239 252 0 R /Im271 286 0 R /Im254 267 0 R /Im239 252 0 R /Im245 258 0 R /Im259 272 0 R /Im245 258 0 R /Im254 267 0 R /Im243 256 0 R /Im259 272 0 R /Im240 253 0 R /Im272 287 0 R /Im269 284 0 R /Im238 251 0 R /Im94 101 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im66 73 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im53 60 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im43 50 0 R /Im53 60 0 R /Im62 69 0 R /Im62 69 0 R /Im67 74 0 R /Im51 58 0 R /Im55 62 0 R /Im68 75 0 R /Im65 72 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im72 79 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im43 50 0 R /Im65 72 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im49 56 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im51 58 0 R /Im65 72 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im89 96 0 R /Im42 49 0 R /Im61 68 0 R /Im46 53 0 R /Im54 61 0 R /Im51 58 0 R /Im55 62 0 R /Im43 50 0 R /Im68 75 0 R /Im70 77 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im66 73 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im115 122 0 R /Im68 75 0 R /Im42 49 0 R /Im53 60 0 R /Im44 51 0 R /Im62 69 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im51 58 0 R /Im65 72 0 R /Im44 51 0 R /Im48 55 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im53 60 0 R /Im53 60 0 R /Im44 51 0 R /Im62 69 0 R /Im70 77 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im46 53 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im45 52 0 R /Im51 58 0 R /Im53 60 0 R /Im46 53 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im62 69 0 R /Im68 75 0 R /Im65 72 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im75 82 0 R /Im46 53 0 R /Im54 61 0 R /Im55 62 0 R /Im62 69 0 R /Im75 82 0 R /Im70 77 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im43 50 0 R /Im97 104 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im43 50 0 R /Im46 53 0 R /Im70 77 0 R /Im53 60 0 R /Im64 71 0 R /Im47 54 0 R /Im42 49 0 R /Im68 75 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im42 49 0 R /Im47 54 0 R /Im68 75 0 R /Im44 51 0 R /Im62 69 0 R /Im112 119 0 R /Im106 113 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im71 78 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im42 49 0 R /Im53 60 0 R /Im75 82 0 R /Im42 49 0 R /Im64 71 0 R /Im43 50 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im62 69 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im97 104 0 R /Im43 50 0 R /Im51 58 0 R /Im51 58 0 R /Im58 65 0 R /Im68 75 0 R /Im70 77 0 R /Im43 50 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im171 180 0 R /Im72 79 0 R /Im170 179 0 R /Im106 113 0 R /Im72 79 0 R /Im54 61 0 R /Im107 114 0 R /Im71 78 0 R /Im108 115 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im49 56 0 R /Im42 49 0 R /Im69 76 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im66 73 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im62 69 0 R /Im42 49 0 R /Im47 54 0 R /Im51 58 0 R /Im45 52 0 R /Im44 51 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im55 62 0 R /Im51 58 0 R /Im65 72 0 R /Im44 51 0 R /Im48 55 0 R /Im49 56 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im43 50 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im44 51 0 R /Im62 69 0 R /Im66 73 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im70 77 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im97 104 0 R /Im46 53 0 R /Im72 79 0 R /Im51 58 0 R /Im72 79 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im75 82 0 R /Im48 55 0 R /Im46 53 0 R /Im47 54 0 R /Im48 55 0 R /Im47 54 0 R /Im42 49 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im42 49 0 R /Im47 54 0 R /Im68 75 0 R /Im44 51 0 R /Im62 69 0 R /Im112 119 0 R /Im49 56 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im48 55 0 R /Im46 53 0 R /Im66 73 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im106 113 0 R /Im49 56 0 R /Im46 53 0 R /Im44 51 0 R /Im43 50 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im55 62 0 R /Im51 58 0 R /Im65 72 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im188 197 0 R /Im42 49 0 R /Im66 73 0 R /Im49 56 0 R /Im55 62 0 R /Im51 58 0 R /Im54 61 0 R /Im62 69 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im75 82 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im75 82 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im68 75 0 R /Im51 58 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im51 58 0 R /Im49 56 0 R /Im42 49 0 R /Im53 60 0 R /Im62 69 0 R /Im75 82 0 R /Im51 58 0 R /Im45 52 0 R /Im70 77 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im62 69 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im68 75 0 R /Im65 72 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im70 77 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im72 79 0 R /Im169 178 0 R /Im68 75 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im115 122 0 R /Im68 75 0 R /Im46 53 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im49 56 0 R /Im42 49 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im43 50 0 R /Im54 61 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im53 60 0 R /Im44 51 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im71 78 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im53 60 0 R /Im62 69 0 R /Im62 69 0 R /Im67 74 0 R /Im68 75 0 R /Im65 72 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im36 43 0 R /Im96 103 0 R /Im96 103 0 R /Im54 61 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im72 79 0 R /Im69 76 0 R /Im42 49 0 R /Im53 60 0 R /Im51 58 0 R /Im42 49 0 R /Im69 76 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im43 50 0 R /Im65 72 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im71 78 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im72 79 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im75 82 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im68 75 0 R /Im51 58 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im51 58 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im45 52 0 R /Im51 58 0 R /Im44 51 0 R /Im68 75 0 R /Im45 52 0 R /Im54 61 0 R /Im51 58 0 R /Im55 62 0 R /Im72 79 0 R /Im114 121 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im75 82 0 R /Im46 53 0 R /Im43 50 0 R /Im51 58 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im43 50 0 R /Im51 58 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im46 53 0 R /Im69 76 0 R /Im54 61 0 R /Im51 58 0 R /Im47 54 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im64 71 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im42 49 0 R /Im55 62 0 R /Im74 81 0 R /Im68 75 0 R /Im43 50 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im42 49 0 R /Im47 54 0 R /Im47 54 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im62 69 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im70 77 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im55 62 0 R /Im46 53 0 R /Im47 54 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im70 77 0 R /Im64 71 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im188 197 0 R /Im42 49 0 R /Im66 73 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im72 79 0 R /Im58 65 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im69 76 0 R /Im68 75 0 R /Im54 61 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im43 50 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im115 122 0 R /Im68 75 0 R /Im46 53 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im115 122 0 R /Im68 75 0 R /Im46 53 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im75 82 0 R /Im51 58 0 R /Im53 60 0 R /Im53 60 0 R /Im72 79 0 R /Im52 59 0 R /Im62 69 0 R /Im44 51 0 R /Im51 58 0 R /Im49 56 0 R /Im48 55 0 R /Im62 69 0 R /Im75 82 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im49 56 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im46 53 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im62 69 0 R /Im54 61 0 R /Im53 60 0 R /Im64 71 0 R /Im45 52 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im46 53 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im55 62 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im54 61 0 R /Im62 69 0 R /Im44 51 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im55 62 0 R /Im68 75 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im115 122 0 R /Im68 75 0 R /Im46 53 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im46 53 0 R /Im45 52 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im69 76 0 R /Im68 75 0 R /Im53 60 0 R /Im54 61 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im53 60 0 R /Im46 53 0 R /Im61 68 0 R /Im46 53 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im55 62 0 R /Im68 75 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im65 72 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im72 79 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 282 0 R +>> +endobj +282 0 obj +<< +/Length 756 0 R +/Filter /FlateDecode +>> +stream +x¥}I59rܽÅwªIl¹ð(£h¦4Îi8GáÚ²1ý{UV!^72Ý_x /Ýme «g,ÿöÓßþø·Ò?ÿôo?uY~,ËëÛGË=},¹þØrþú÷ïþôÓoþÛÒºÿø«ùéoµ¾}l븾~ìÿÜXßêuù÷fãöë¾ü8>·^ç|[_?}\ß>Z^~¤¥|´åþíúù£.ø¼Þ`½þÀúq¬)exͧ`?ANð·'ø&8ú àOPªvt{ÅòQ>2ÕåãØ? ûj?Po()ë×í<@ÝÀêîøæ¢Ô2à +(xå¢o¦¶ý[º®?nçïë×ì¿ÞÖß_°¯ßØÍ÷û/®ßE¾ÿ¾J÷¿¿__$ÀìOîhýíþåc÷ÏKEïSìþ*ûýÙùsBü{?zþù÷vþO.Ùÿg¨~ÿRÄ÷'ç/û3ú×,íOï_µûçõf Nßz³ÌævHV鿼"þÓõ_Þ ÿËúïª"ÿ_×÷ýwôþëMÿSù9 þºÉOþØñþÇèÓ?l}Yi=;YüÜÏÿ©%Èzd6KzÆ¿%iü{¿ß?wûõù;ë/÷¿íOïûý)ý+òÁîöãn?¿½ºbþÇ࿬·û§Ûù¿ÿR>ý/ÿg<ÿmÿoiô[¤¿UþË +õ¯,ÿeCôGúì¿#ûl@ +T wÂr@¸ 0SÀåÐPæ�Ö AºXz�ݬ ݬ9 øM¿ +;ýèýæ@1 V¤�·�Ñû·gP]¡|éýWä£ûc^7$bëwI~ªP DÞooØ +ÀûÐÊû·Es ØýÛ¢ÝÑ¿%¤îôgïßöþLþ-þ\)ÿÕ@¤q¹l¾´{ z7ïoXÞ-z×ëÑ»)ÿq½½çEº?óÞSÞÑýz 'OöÞRY%úÑ÷«hÿûûQô©!úGÐ'D¿�ú´¢ýuå¶"Òì¿mÏøÇ¿Ã?Ìx%(þw¾ÝùHGW¾ãzÞè}Ñö§èÃÕßMyÓèÙ¢GWÿô"U°�½ÈåýsÞ%úSô§ þ¿;=(º¿¬_è#?,z<Ñ«¯èq<¿=æøWó +õÈþ)Ñc_õ×ÿØ×¼~ëÛ¯TþöU?~!þAöÈÏìn +ô_ÑÿöW×ó9ÐÕÑô'BÏIðoè÷x9x)ØçÍàûCÿAÖÿê]ÿè"ôüMú~~9ïÇ䯬èü:ú\6ÿ(ý6týzþÓþÌþàÐÿ:z|hüGÁÉî?Ôô,z¬éYøX¡þ _Ù¿ûù)øPÿ¥ÇOµ¨þy¿:ëÿx¦É/³µÙþsö£®(þÕíÇ ¾=±uöW¶uÓüg¾?Òºý¨»F?Ê?Ð +ÈÿÑÅ'øö$~h0þÒã þãñ?`ÿ·%ÍÿuÀ»õhOÀ»Ëò(x7.×oêÈ«wz +ôÔËz¼Z¾ïe½,<)¡ýuå{`Yù¦lûç)å +¢¿®|OðO9?S~gêx?Yù¦Z$þáûïÒþ~ ñ¿®|Sw¾=þ¹ç?.ß÷_sßûHûKùéò׿\yôã©oeå6t]yxy¡_ u®Iú×Ú_ÿø,òþø ×Á¯äç~ +¾äYù5ð°Hú/åõËåùËU³<õÑ¥îý_´Ãô_Ñþ»~úÉ¥¾MËÏø7 ?ûþL~úÈÿ)Pþuýkà>$Äÿzæ þýIæPöCμ0ðnÖþèèþ[©Ïüå_ϼ( éO=ó¢´ãÙûªÿMö_üéeÓîOSÿúÇÿë©ûö×Sÿgö§.³ñ×øîPü ûO5!ÿ;y¡þÖ3ï +´úýÆ¿þUóèý[üo +^ÂøCß3sN¹?ÿëz ÷Áÿ3sNy?sJü@×÷<?þ`àf¿XêuÝþF©×,óÅÌ·,é_º>!ûw÷?XêwKæÿä·©ßÿ÷.>ý£îǾ¢å÷õ}ú£3Ï'¾oóho7î.Ä>}õØuXwö¶õÄ¥Áù±·ÅãùõÄ?þÆõzâ_ih½=T´ l¯6Ä}ïy"Þ'øõé<å»'ÿ¥j?pܸgÞÍ2`oÖ(yö×ë^à³?w$@ +xhë;}Òÿ]Ý =ÿ @¿¹2ËgæÂ<ó o1øÍùÜË[ðÿ~¹LÀví©¹fàýH�þð(o÷êF}ùa{èþñÿ6¹g®xö×}Qþx¦éZ7»ªÞ˼¿.?&?·C4äýwä�èàÑ<¤éÝ#f½·²lÜ·Ê#ÿ$DÝ+ñ¿îÀ|<rà^àÛ¤þ(²þ àIEü©[lHê4�zÝâðîèUgÀõ;õxdÀ´èðã6«A ~ïöYêè¹s$ úÄÈø½'¯Ìº�'þ¦¸�,y¤.à�=yäL¾{âÂWE÷4H +Ú?¼c°Àý+Ô úýRþiH ð§Åàü `ü º0ütò'kà +Tû~8ÔÒ_¿CsahòÄôÄïfCÖg]ÿS\ÿëfñ¿qyÿ[Û#üoÜ=ÿ ë'ð¿q9|;ñ?°^N\OöízX¯·=±Îm'ùßÃ/,÷îÞ¿ óëák²oOãýõÂSûöä2?Ã/µýyá-ºÀ}áR�um�²ñ8ßä�ìV¿ØÏüÀ¦åÆìóuútû¾Ü¿áúçëþù:û<R@G DÁ�³ÀýÃã¼ý9X%@kÓT°~³ÄôþHç8¨Âúÿ *÷§ô¯èþÎc@÷?ÿ¾Ò÷õôü½qw~æ~çø÷î~{ëâ.u®+ÏäÓä"ȽvÅ÷ ÿ*ÿ÷.Þû¢`LÖ?%iüÏHÍ ¤øQX¯}ÍU:? o +?9ý´`ý£Ó¿jïÏ¿å_þ\ê²Ú]èê˧¹{0÷OȦ�)»!ª·^-;"@ r×=?v ôýÕ'»íþt=áôüúR@ímþ->ÍÏ@¿ôæG³ Ög ZýѤ¨ ?P¼C0½xu}f�^ù üc0&cøºCHáëèé|§X,ÿOÛ}jKêh{ÿ1`[fA¬±zwÖmÐÒAËÿì_Ùöö -3>j¢Þ6Ñ;<¬xeXH`³äóq1ðx\¯OÚǯO%8Þ'û~?ì¯÷gñ.¸¿½¾�Èþ2xÌøç×ßß�Hçýiñ§ãz9(ÙçûOö1þÉßFúëÅÓf¼FúéWô~¹ÿdãvtþ@ñôÎ(>þOH{êÆÿ,UøæYþ{V|»úÍHHèùgYÛß-Ö�ü\¡õü\l_ßÃÐÃßÜ:ÿÉAS�~nÀNh¸îH êÍ·g.@ÞUÀà\ÌR5æ�âÀ�·&üýèO x£<È<$Âý{óaoæÀ¾R¾_E*8ð~À¹&xÈ +�x+Ú?à!ù×ëÏ> ùägò[vM~éù¡üëøa ò¯ãµw~÷\X^?B@üõ¾F0fõþ?{µj._÷×'?4ô~þkÚûQú¯èþzóȺj�\B(]ÿ×mô?ÏßCò\r þà§ +Áð%0Lú_-iòëMðÞñoKÈþëükùwõ}ú»þÞÁ»:=ÚÇËQø/¬h¹?e½Óóü½®;ÆõrãY}êçïí`ÿ@þ}<vÎÏó÷úëÉòɲ¡óëåæ{:÷çõ»tø³!þ ônk ¬×m×+ýnÜÈ>þöw¦ßÙû½ûöGáÛÍîïå^³òß*½?ßÞxuZ~õæH=ÿöÐèOù÷@ûø÷Øñoîc=þå7 üʶ+[ìîèo>¥ãùÈÿ»ö$YïIùÍò`ì,Ú?P>nð¿C?oðƸþ±Ùé¹!û×<iÀ,û @¯¿Ý�êÉyG»ký +Ä&g<T�æPð�:`ì3Ñs³ï& ø«ù«�ØäÍ õ·}rIÕ` +þ5d�àßx�ü[¡¥væ�Ç#R I¾C4|w úÀ³ê/<Y LÞ@L�<±þ%PÍ0 ï"þï"úép߯jïÇ÷mà*pôü ÙÝ>8Àgòrü¸!þCú%Ïågü·kòÇÁ?´àý-aúÛÆÖÎú/¯â]Wÿ8Å».ýâ]WÿãûxØÛ EÝg«£î5xws^åºó`Ûãr½yܶקŻ_ÁÓgú®q«<zåÎÔ{·$³=ããéàå¾ëeÝwæ¾æ¹é>"îA¶oþ9ÌKÏo¾ï¸^o¾hßÿ¼Ë}>ÿìýêÛÜ+º~kÒz>8ÑUþ±Ü·*ñ7þ¼?ÿb÷òxñª¼õ»ÙÔZo=Ï]ÓôÅ>úÔÚiúõý öS6Qþ vRÑý¿Uã?^ù%ùaà¶£üêØU®9ô£Ç+²Êkk<=KÿMÓ¿¼ úë®ÿ©üíðþzå;ö_tìú/ìÄ*÷ÃöËï¶ÿ½éþ½¿{ëÝ9®ù§MÿñÁ»è?ì¨BÿIÇ+â@å1Ô?ì·!ÿ5ý®Ð§^¿Z÷9þ7¥ß¦éÝnÿØíþÿÕuÿ÷£?ß@âÏì§>ø¨Êþ9¿UÎOêßv7©kAòhÜV¤?ôÆgUõöõ8ù0~ªÖ{È9?\±Hþ¥ÿý'þfÿéú]_^øª½M<Pü{hPèú¯-Pÿêûö6ÿ¼°7çþ^â^òJ÷°ù4äuX®#ÿGËuàÿ@»×ì»Ñxy=qͶ¥¹¤×ducãùõ¹?øÑþzÒi²ØÙ¡?½¿%8÷§ç·®QÎùyã<È?zÝhC£ûÎ/ìι?¥¿ù®.ÿºg«{¥WÇ®ëË?,ñÏö÷ê¶ÙÐÙ]R^»C÷W^Ùzíþû|©¿÷u«{°ïFîþ$ïiAò«eú4©_Øá¤þÍVôÖ¿=H~õ¡¡»»üðCÄ¿ºï«f>ùz¸¿üíä :öÖm[ÞÃÿ|nÇþH¿°¿Qÿéôú'P·½küCùwû˱C¶o³ühþ-z\ ýGËÒ¾±aý=qô>4yð}[¯þ^þ)Ô÷ý|ÝÿüËþýéõºøoxÿî÷÷t¿ï¿XáÇõ�7øùLõúuù®Ü@?�4ÀÕøéÔ¿¾\�¨�ò>p`ý¨;üú_\~@`ú4HÄ*®ïDì¥Ã×g¼A÷Wè'Xá ¿l?�x¿ûúGë nW@4Xë÷WXð(¿B¿ÂÞ n²Dxàgïg<!p { ;A^ ,Üþ@4P®Ð cèÓ2derDÔùÀ>§NóA®U#"ëÄaF¡þz½Þ£ë!yϽì®G$¶wÂZÀú@',cáñúNX _ VÄw9¿ÍÓÇØ{çç¢ ¢/}ôNL=àr½SÄu¡¿ÈØ(�tþ»)¤û÷À{?¾^;?E¶Þ_¤Ú3ñ§ßGüxÿ4ýþ¢?*E~(xïÇKñ üéIª¢þ#ÙD½ð²>Ðé¯@üÎ)úCï#_5þå@ydþ¬¾÷~^|ïü<¢ç +»d?¨üìh%ýl E~("sü$_óè?öÓÖCÿAüé_$JBö3ͶGú»d~<iøV¢Ü÷ßß"ò¼Qóx6æÑJ´ÚÀýï1ó?Ñó?i6MÓì$Öë_ÄÎ6bsû÷õ=À?Íü¤Éþ{~&ÿz?½ìlã?wËFÒÖóJDä¿êÙÜ5¡ûß³xþ$éÍþÓåçªð/CÏl¦/Hv¹@èü W +8ëX0/�yôÄÔ *@YkïC8-�û3®û¬�[2Õ$ûeï×-gH +D@,È3ÀLÙóõäLÿ°ínþå:üÒ¿G]ëù$æ½ëù$½ó²¿ÞÈg9Ðz=ú·ïAù(úÖ]î/GɼÏ|LEVËç??«Ü$úSô¦çùüó>È;?E_: \¯¥¹¬×éoè{~òþ½Äôû Ð_S¢|9¿l|¬Î?Þ«JüÃ÷&ÿ9!þÕNÿÑý3â?]ÿäîÂX¶g÷ïCüû³Z¼]²¼|ùö^õ&ò+ÿ@ùø/ÐD^³´íxæ=èÓ÷¡,Ïüù%=ó¬ü¬þ(ùÿ`MägýRùVË6ë?úÌ( Ù/=ø++ôô!+âß�z¸Aù¿¾Y-§?)ýz>O?iöî û¡ý¨ØÐû0-hÿ@÷´Kþ ¾3Ôÿ7ýqï%rAõQÿ 4+HÁ`�hDþù¹6è@éS�æð.ò~.òH�ô1¾6 qÖ¨j�X#(D?ݰb²Yþµb²YÀ(Î:�-i s�¥ïacë~ûzãtë_z°qùýñY'%ÆÃëÅ(<:§çëwi=ú´ËzÙø&sGòéxÌxëî!à¥nç×é_Ðû`ö &ÞýYðw&2#ÿÈÁ_2Û1_þ¬ìr~½pÕ¤7êÎGZçÀ#KAöGûúH?½ò@òHëM½ý)x²hôã©_H~àQBü�º¿|æüÿ2Ô?b®Þù²>ºµ<â\5ýKS¼¿ÞE¿ÁýõbÈï@1ÕªÉ?o$ ä'z¦½?}¿íß5¢ö[N}ÍÐû +4ÒîW uó@ïw·ÿükâù øüRß,xwø§~eðþwð6aÏHê�·¢þ¡÷oˤý±FTæÿNn^®ý ÷ßÐùõFÖHÊ×|Ü ÿÉØÃ¼sö§©{_r +¦ZêæÓ÷{é_¿_Jr+úç /íQa��¿æÀ³¬½^ü;øQ�(:`= ;Z+zÿ@î[Õ��Ú ¬!ª×nÕ¦ñ½ÿ +ÙÕuåÐo{æ�¾R×&ø3uM àzþúvó'½xÊÚÐ{ä裦@(ú¸h(mc �ɼ½Ø{ÎÀ*?{ã¶½=ß§v?´;s¿¬Õ¸^ïÃüªüÖúЧúÍý××Vfx~9q1õ>õzîåôÃýhåm¡t9¿Þ©÷öö÷úÐ{÷§C Í}Þ¿ýZ/ªËþàÛ+B¹Kû»ðã¸>ÐKJ_îÿRù±Ê-G~(üõÒïïÏs×VÄ?røãÿfût5î¯÷âIÚþ<÷mGÁ¹[ÅôýØ^ÞsZ¤FØßS¦»ÿÍü÷\M·©�ì�ÐØf/ç°¼B"`/ÐyBài*Ôk%ï�Cà¤Béýw 9WÀýõ�*Èïìë»C?·xÔQaÁ+�pNuáXúÞ!½½¿ÀÎý)gàH=ý«j.�OÿÛÝ¿!A 7éþ¼xɯèï÷¿#à´ÚÖÓGù¿@¹°@]{?Þ^sh+ýñïý¸×J~ÏâÍ'ú·&Ä�+#ý�°²j¿XöÔzícÑ\h½ä?0F°!,ðþ ò¯¬¿j!¬½gÍwÂ÷·õP~e°nBx!¡ßì¿þ®bÿG¯]=ýôjÍ¿þáûkïO³ÿ ÿC©Ù7ûÐå}4ÿA0Ý|Ù3Fñó?4.×OßÓÆå:z~4°\ÏÓ.È~ë[.·lt~þëØïe}�þË`ÿ@ého\pY¯·òïô/ëc(ûxékÏOà³Þøéü1Yã¸ËþúÆýãó/yÿî;_öᣴiûsøñO qÛä_=ÒÞ?�_¨<ü§íÏá¿E_:ư7»ð¯Þx«¾zúg~ûNãþð«@ª_½³¯@X/yÄð«" +à¯M3�<DôÓÿ@ s^w~}Àjo5ÄÁ;$@úí|hô§Áÿñ_éΧ¯�xÐþð$}7¿ÐOO2rõôý";|ªÈ�:ÕYÐÖkòOÓ·:ø6ë(ÿô»^{;kÀÎÚÛ'HÙ´ýyú�u.ý®7^5¥w®6å@I¿S=h^-PÒïf°£i½?ö`tô1#@¡´C(þU¡ +¤Ï=äö̪MU ¤x}Eï<I¼nÚòõÛ3!T z~GLïT¨ÅÇèîßëÛ@÷@-ýnÖhÑéßϤïзſãr}x¯>©[{½çL¢wL¢D×û®§í¯Or{Áo³çO«´?£~Êù)|Rxý@öTAôCð#˾«Ügë»÷3Ò_/û§£ËzùÓç~׿. õøikýXíý>�ß|ýôìË^ü?ûþ¹OB}˾»¬×'éõ¹³ü{ç*üeëÛÜ$Àôg oAü»PáûéÙUã{÷×'¶&çëoôc¿@çºìé\ù?9ôgðw> ýÑ;öâ3Oþiçµ%#ý«.H~õÏ%¡ûУïøW©sßü×ÞVPô'?óßJûâÙ?úìâ»zV¥÷£èSCçGè)K}CûßïOßoÕÞ¢ÇPÐã ú¿rð}Ïjú Ï;â½yM94ýÅSç ÿëã`ü¢O"¯òõÏ/ðlþ5!û§Ï}ªêÏÿRðÇÀ³Iÿ¥ôþwÿ 6^+hÿ{ê±7ö ®¿:ýæ?Ò÷_5ûCï¿!ýh<×ç¾yô=)àOýÒäboÔßÔ7Í~rìJµøó}{éööó=O=+ðK=óäÅ?}sÅW{§þ:W{utâËuãÑ+W/»ë©3º=K=«hÿÀÌÒÖë©7½ñÔåüz×þί7®I}fàåüÔ3tþ@ã·öTægücÎþÞÌQïýxåê.ÑÏEû*íËï,ýwU~ü@õ9ÚÑß×ÍÒ?/hÿ�v´ûóÆuðþ:öb'Ãú�öb'ãþ:öbn'õ®Æõ¿5¾ÓäÏÍä'÷¾)üPúAý£cïyÕìoßOn|7»ÿlÝî OyG�ßd@tçï¾ë ¾-¶þ�ë_Þ¨AøzÈAúÔÅ9XGϲfØ×Ãb_ÿÖ÷W\ôÍÕ }ªÐ L-EZª½?Zz<òÀË +=h½ðÓrßúySG}ÍxæA¹kO,`±äûIú×E£¿W¸:Ëÿ5A>йƯrtN-}tþø_7�Ö9Î3�¼ó: ó[E@�=}èÕ¶JïÇÐz·z½{ØØE´¬sA±ìº£÷Ó³ll ¯?Éù¡£;@my&¿6¶Â_²>Aý/{Ð-Aþ³}û$f}ë´¢ñ£}:ë©}æáe÷�úÁöô î/g${{g=± êËM[¥=»çg3Gáz=);Z¯ÏlÜ_÷ýSôëçèß!ñE?-sm\lG»Ùþï¾o ïtßµï¡gËÇV¯ûgýþÛwßÃËz`»Èù÷åÙù÷&¿ÂÑÿd¾¡û'ôé ý�:À¾«�;è[ÏÖïÒz$@_ðI*`} ]]Ñz`üHåj»sa [ðHáüúàC+X+4:úÓʤêô³Â/ÇúSôhE +Pï:7¤�Cûܸ´®qÈÌ Ù ÌÙ5úQù±ÏãûëàÍ@êf@iá[ªøïL}SÎOS2¢_`è©u¾pø¿hïOÑWK}×Ô6´é�øÓé/ëúæé/oî¯ÿ0xðJ]éèÚ`]~ö]V÷ÐûËuPzÙÖ¢ñOü#ëÏWêÛ¤þ¬ ê/Á³Ô7´>еÞRg÷ãëµóSðÊê>�¾o¼=ýþ ñoàý[}öþ+¢¿þùÐf¾ÎàUôèùw�#þ!]ç¼wì/Mݳô''åàæ¸e®ýeeÒøf©ûÎýiîZg2y¿W°\þ£;Oãîrðh¾gñÒvIâ]w}Ê\Öêùvß>2ó¡Hû»o.ñIæTÙp!ì:&k4®×±³GÇάjÔYÏB÷dßËû¬Õ{ènØÛúºû§õƾ´l²màþáÏE¤nË3ÜüÊNíû?éz¶#úvÚþ|>VQÿØ{Y%b +('´¿63¤ð]HÙ]Aôt³!ýùÌTH}fª}ëuìÇʶ'ç+õÌJK}¥ÿ¦ A Ïl5ìË1@ûB@ñÝûúã0Óö ïéÈ/yäG÷mfª¯?YÓ5ä~¡?d}NâzxÞ/P6iMýË'.hüÃË>ÑþÄ9KqøcgH°³:ÿìLÓß4qMÔ|æ)ÒzâEéÇ}ùeeHë6óÔhÙÞ¢½½®íC H l2£÷Ós/*@ääsâÁþeÖþ]°/g=+Û®¯�ä}Ù6/Eö#P6jØÕ¤þ¨+ò?õo6±Àã_ÊPÄ'ÌúëðÄYÿÉ&Äý§_×´øáýĸý4ì¬> ^e£a�¡_Ý}ËÕq¿ññéÀ°<>±`XX0>>±`Ü^o¹eßMÆýõa _Ö}gâÙ}ÿ@Ù¦ù®ãz~í¯ë¾T»îøôÁ§:þ×_ïøß´÷çe§ûõÄÉUÛ5ÜMf{òú¶á.å?k¹æò+;-þ²íJVtáȯêk\/$¾mGþnÙö7õ)G¿Ìl²ïî; ü)[3ôÝU`$x·à×Q¿¼gR@û}â©/@<É»¤Àèý-sÖ¹?íX_ ¬èýôÌ×\�èÙÀwW3ðÚ_½nzEçÔMohÿÀÈ ëù8�øù__÷ñÞ3ÏGõ¼ç¢òáÚÏpç +Þ$Í¡àAH q-?Ò%CúËÅz&¹ú?E_VõÀùõS¥AþWÕèìû5d?t ¬ÐÖÇõnÉ«>wÚ³îSÿ|þ +ô¬;4þçoèþzßj}sþãê£�¦&äÀÀÜDù#U_«%¾OÏUô?ø¸R¤õ�º6-�¤÷_þTÍ®õ�ºnèýüg7³ü·Ïêÿ¾�¹�ºAÿA _=Ó&è¶@þèý=n6ðÄ ÿúïã¢áËÞÀrÄý8|=ÒwôúIÄèÕ|ÏOp*xMÖ³d<¾>oréÎóH=½a½U=ëõ¦WöøÃz=xM¤,Ý=Zð:¬××Tý"eD?¾ÒzÞt-¡ó®¡óG®¡ýõàõÕtm@=xMV55î¯-Û¸¬q½ÞôðÐä/æ<ï'gn¼À/g=¯Tþ#û[æ³?OÊ3ë:?jçd ùǦÒùyÃÿòüúTf|þµý>p'oÈRß,uÔQ@ôwÄ@º÷¡Ðs³-8ë)úvI±è÷D¿¾`X¯ú¥9HSlàï¸>0±@S t}FçÝYÙä¨�ô²»Òñß>iüãLt KC ºØ4þáó>!ÿÈ©¯²MGSúÈÔËîÊä_/»+»�ðõÚùyêr èí¡0^vY½ÿ9îóÉû¿Rß&íÏk\ç¤ü¿&8òÏSÏ ý gýxêÚ*îÏÐ/¤#=Ïÿ ¶ño gÛªÙJ¿U 8úö,>Ë65ùaeÿõ�¢Bý¡/ô̽?CßT�õLò/ëÏäÑiçö68ÇOo{¦ËC=Óî»ß«{ëÓúÆåi=ø½l/´ü°Ô±n(øÐßî´¡ï|wÞólÎÏ'd@¿x¶JÏÇÁ/D¿øÕÀùu·}ZÖ¸^/{;§m*÷çàWéÏR×éþ,ö³g#ÿÝc?Êÿ;¢_ÿ÷6Éÿ~zÿ@êeO[¾¬Ëlâ¯ýøµHïÇ×#þÑ¿¼XæØéϤ.æ\üÈ_Îlô²^Ç^¦?xæY{dü,ólúý«&¿´åY3úW§lì¿jüÇ3Ï4ýE±¿Ê~nýâØã*íOùwCïhy¶#ýÀ.è¿èØÅô·yRdÿe Ý_·¥÷µ6o`Ö~õ¿]V´?Òÿ÷oÏße欿úøÒôZ?�ÐklAÊK¼· <wiPݳ¦i¾²¦iP £ö +?=ÂsÇ»£=ZyàùLФi0~ô¦^D;¾çM yá§ðÜ1¨å¯Gµ"½¡ôÓéߥwÝ®}âÈe½^¸ÜÑ÷Y |6-{"¿µûçgóB¡}[OçîÈ +Ì;=àùMËE°ù,þ|}¢gßì ¿@ÿ_»vèWï¿ò½<P8}äëþç_öïË×õB×ðW饴ÿþ.üÿýÔ'¶\àæÂÞ¿ßï_&=e|¡mõ7O[ï®ë&hÿrËSï{ù» <Ρt»DI¿î]_Úú«öùîÆ ;|Q±§Ð^N¾â*®M£"'ÂRI$è?°C*Þp§¢ýÀ~@ùcp̨Øo¡ß'ȤAþ04Ly'`Ì{.¬ËÌw Ял0^OpÓ(ìrÏ@mrYQJ¿ !W(÷°¾B¯v_)µÜ u¥WQè̯ð®pçÐO°aa3ûìðï²@ Û&Eíàð/j±rÁÖQIΰÀÆMÖ%C>P Bëµ=ÓH¥<ÔH¥<ÔHgÝ.Xд]8QIYøV(g*ðw?9ëÝA°WpÕ(/W÷ëþÚ/PÏ!c]Tä_ï¯ZG7¬Ãò@yÏò¹¬×¿-¸?ij_Zõ¡IÛ¦¹÷Úùõ&¥«Òq½Þä¡¢ý#_J!ýd.5D¿�ýW´¿Þ 4mþz|Y¯OGëYÆÞþ|6û"É¥¿}i¤¿Ív÷ùÔèÛ~ôK}i×ë_öþwþ·õÝçu®A¨yõüz=>¼ûÓ÷3/ÂÕ¼ÇÇýüzsùÜÍòÿ9^áþ¥Ý_ÿRtöèxb>Áî´üìtùÝ7iþ¥2üK¾´~zÌî/ãÌ6Ê{?Þ£C?º~æ~(ÿïTÊü¤&0É¿¥jö~'ë=6.öKþNfá.çíÏë;é¤ý±³úϪ|ÿÛ¯WüâØ/:m7û¹Î G;ýô,sk;ëUËûãp©Ù÷¯fÿøwVäÅKyüCÏ¡þÖE|?ç;«#¿~½êÀÖÃøEÏo0þÒCý£ûouEñ£Þ ½nHE;%Iðµ?Ðõg=4þ÷;ÍÚÿs¸Óûßæ¿9=6JWìø´J ¿þ¸\¯èÂ?.×vWÞΰ£¶&ËNeÊößxïÄ×m_Jt~>=¡×m_ê¶óðýi}iô£Øù¾aþé÷ïüûsìLe6}ç´(éÃe.÷`oèýõs¸ÔWÅx~Àÿ+ô]Oìí~þ¤4ز2$�Ñ<;ÀËÐ:Døî<�M3¨ÀrBÖ#0Yû¡ËX¶x +,g¤@iæX.H�tçÝzÄé÷KÃ_ +ì=ÿQð*°@Æxdºæ@pðOS ¼Ì`ydÀò®0ÞbÄxj°-xôÿ¬A¯wÿw zïûë=¬Eɬþ/XÀ?d níã¡sþ-ìO©ýá-F´è OáÞ"eEöCo°Y6$¿ºÿQ¶üõGÿ þ´èé-|þ¹f°ØzdwYÿX]OÿÐ$í0zdk°ëÙ_ +^dèÀËÿjõ;xÔÄõ§gj�Îì"ùÕ´ÛDl/âÓ±4ÿI<ó_ªè¿ð" ¤?õäºiü˧ceÑÂ/Î"ïóg:"¡ÿQÑ_¿þiHÆ!ïüúþ/kqãÙ~øØkÕ¢æËÀÇq¹l½- v\®Ø]/ñM>¬×'£áÁíõþ¼}²âåüút©Þ¢äLkpl5þ#ôÇyâ¼× ÷B�½ÇJC «È�¬ÇZ�ÌùtÅGûëÎCêÃí.ëu>2pàõà#ÛßIúç)%óÄÀ3ÈÿzæT�ðkEçýaICÿùã=BÔå7[ð:)¿gE~iæ\CúG)¦1ð +YÏxµHüãWÎþ~Vãèo +þaó¯;Ü_ÎËz¿@ð¼ þ7Kô'Òx7ê¿@àø�øuHôã£ÝwIñþºÈ ôh½ÇÒüt KúûÆ?¼ÃGBçtøúGï/ý@æ_ÎûÓóïÈþúïèýõ7/ðk_Býùt)ÍàÓ¥ ÿ¦Kiþ=yæ¿×üWýë} úCÿz_¡þtxú#�þ¬üðþ¶Eô_Y,Ùoú~}<î¬ü¾:|åÇÖCÿ#0ÚO!s×úó>¿l´»/l:ôýÆ¿ìþ-i÷§©oßæÏÆ<Dß;dËõþB½ìë²\fÎ;Ã˶¯³Îe¹¸ÔI>®$.õ¤iïö¼h3IħÐMoNåß@_=t¾ì/·¶ÙVõ2tzÑÆåü:tTÑùÐQCûG&ÃodϺºøïÏ&»£ûë®û ½Ý÷`¿=ézúþ;Ú?P´Ý×]Î/CWgÑ)]~{kxÿüïgcÍʵçõäçÍ¡óò¾2ÒzÒ}.µ¯tOéWþC®Î4ûAéõG èµCï¾þaE£h}�úÝõjçgÍ3t>îÍ)ô+ºgöÏ>gù¯ôooü1ú(ÿwúÑóCû _rþø?�=U¼-5ý~MÓ´è¯Aý!x¿gµM¯º<» +0UûCèîØ×ÖCR ûB¨zìí =ðõæØr�ôØÓºãÎ�}y�ë/] Õé/M°é¯cI Þ'~Í:`µ÷v}ÿZÐþì± V¯Z®5½Þo¦ëÆ}iKÜÒÞÞr׺©Ã¾¡@ënÞ?%a:j×À'úu×Ài¹=!+:ᯯÏW£ +óM7Ø!Ýr¯.,ZÔ¿/Üõá¬psÖí¹S6%qS¸yY-ܼ,nËã íà ç' ãþñÂMïü^áæe}¸pÓc¯pÓÛ§niôó +7=þaà ROÝÈÛöv¸ÇÏ6~<õòo ðs÷~D¿@áç +îÏÕ®]Þ_Ç_÷*òizÖó/ëøýÓY^ýuw½i§?8þT%þã©[Ä?ÈÐ g ç/ªüÑÚÅø7Oç;!kö5-CôÓÝwkì¿ÿûñPÿRü¯75¿¬×ñÓM³?ïRÇù§ë÷]´ß¬iÒ_¨ó.¡_Îàѧ!ýhúµ@û§þ$d©?ÙÏÀpì?èÃ} +Ú?Ò´L?}*¯èçS½Ã8�¸N(P¸·jÆS_¹[¹ß¿þªgqÓÈ 9záu-ó(ÞuÆ?:ýEO:Ðþòlá +H¼kÙl�PÅ�w-C +HþÀ¨Ò= èCéèÃÈ@ÀÝà{=²à ¹ð@© ¨RWé +¬ûu.»\AÿPÅCüö«õ+²¢i¹IëË yÞp|É¥?ndZtö¡9ë55LÄ«Ù:D)~_¯©1ÁÁ8êÞ:¤À·ttÈSý+ì+LÏfäci$½õ÷¸\¯þï3/»ËÁwåº ê/»ëÚ²K´£^/ÏJd +Â3l$¾áøö:g_@Æõ:Wvéõéþ}¾ ·?¥_ï}æÑBx½ôþÂ~úù{é|~aµgï·iïGïo¬sa!ñ @X¹âÏR¸ªD?>áýÿ¾ ´0ÿÚúοúcªoÒt?O!ÛiïÜ'${ïG!¼ó ¢¥¡ó Eú³Öaûî}ÿÏÓåPì'Ðþ Ð_ô]¨üAç%¶#ÿ!¶HüË!4D¿@ë*ûüëø¼zRonÀe½ìús¾\ßáüw×WOjïOï_5ïî_¡ÿ)ÛÿõAµÎ®·¹Ïä·l~êÏ ¾.?;Ú?P½¼#ÿKcóÑgõOñK¤úQã_^ýýÇ@õ£fÿyõ#Zh] ã9þªåã¿÷¿âïwÉ�säöïgãÏj%(ñgígã³õ×ýmóÕgõ÷;?Ï´'ñgÝ·gò/Æ/ìü¯ô³0þÑ¡¯Åz +HësÏ.÷ãÇýxúZ/bÏ +åJôÐËm÷æ:[ÁîúÝÓ¢]ßYúÚ¸^/¿Khÿ@ù]¯Ü¿ìÓ},ýã ½ ëõòÔ;ÿ\ö`gèý"åI¢?ïöðý¤¿þþf{÷§ég»ï'w.:±¯9ù1ìªëÎñþ:öÔÛö{ô§ék¢¿þðÂíŰ¿å70³3iú~{<Á£¯oúó]úÊ" 0ûtíëëÈÂËÓ@÷¯IÚöM¯µ¯oS^õ +$[þ褱¡ý�e¨@´£û*�ÚýiýàÎê ø ü¡$xÆ\î[Ò°>t³½ö (ZY¥ý)xRàùõúÉ0=³Xðé0¾ ¨�ø².`ÿ@ýìϯO;\/O`}hë¡éOz�ʧ¤ÿ@ù3 gþb@xþvþdtýëÅ}4`/ôiÒ½ê' 55`u lÀ¬ñû¬³Æï³¬Âð]àª}ýàª(À ¯Gp6õqvÿWñà$ÿ¾Ð×�Îé}ûÞ$ê?v6.¿½[âÒ§x?rÞÞÎ9<>ÍùÖ¢O+¾÷×£OÞÆõzñ£9_îþ½É§Ôëͽ÷×´ z=S¾¢×Oþs2g±õ=Ëÿ¾¬ïçÌ|;M9ëÈǶgdÕëa¶õ9p«Ï8p{È;¤ }ƬtÝáÞy~Þw÷×Ãÿöt5Ï}*Òþ>°îãþzîPÑø¯ûëÇ{çXïýxçùö×sgÎo +ýiû1+?ø?0ya=ñÿ-<y$ïÐêíÛÌûé'ç>ekç¾ _´^9¿ÁOÿ?µ¢|�ëé9gÿ,ŤÉO%I +ÏMDXEbøÆ@þ¹%/iâk zÿu¼ßßþ¡øíP�¿=´ø"0üC @ø¼<Á^åîùYû-êðÓKLÞß¾_ÍÞ¿ ýuªVè@ëÓ+tÀôöe é¯�|ØþÌ=Ô@ +_mÿôþu×ìoý °Ü¿ãì}5·¿ÁW~zòµn÷Þéïü5òOþrí'O ½Ì^íI>ê�P~ºE[·÷Ëç÷W^ï¬ñðø]>¼~:_¾Sz8N÷QïÕûÊ!¯*z|¹÷kêcÆõHw0øjèOÁþFúɽGùù}â ¥ùýháÛÞO¯OëÞ_ï¿Àzð,÷À¹?véýèþü9òCÏÊàûüþhïGË=Hï§ézûôè¬çàÑþHþlìà¬üåè¯Ë_®HzÇ7¤?tùË ño�¼X«$4÷j[¾íÏH?éÛûWîÙÞ?ÝËî9zJ>`Í£4âÍ×ÑþàyA-{1½¯ås] \ p�>d¼{Ô"jýS £·WöÒ¸^.]}¡OÎù9ú¤i�>xiÀùòÀô·¾1ýéþò�ôÏeÛ$γ§4¯ûëÙ{0 Û£¢.ÈÓ[èæA°ä)ÄÒù_/ÝÊÐÔg +âß@éþºúЯhôã¥UÒ?ôü `}pañ¿À×U;?OÞÒìMÛ`§'íªý#èß½½ _®ýdÉcÈîAø(Ð5úáÁþû¿|èyà4û««ÿ~¨ÿiÉÃr½ðÒÚV»Ëн Ð3´} ô/éø¼ônCç´½ê©?ãúÀäB´ s)h½s±ýë\Û¯èhûe_NóóÔ¯" OýZ%þám³4á¥ô[ÿGпãô¿R¿ûsôòÞyGú#ÐyÿÚ/Ðy~ôEOüí{秦ô´ 'å¡)=ñe\®kßÞ5÷²»÷aíuè¾ó÷g»POwMùëðÁ> ûß YÁýy§eîO · ú£ª2¶µ¢ûƶ6x~ù³kjèü㿪üË÷&÷,ü£¿ÿvüOÿnûOíé==þñÆÖzç§Æ÷êO6þ¹§íxüÃ{&®ÒþôÓCÏûõèÇ?5X¿fëyxÖïÏíÉÙ@ϼùWv,]a\¯;çØ]EÓO_øõìÝ¿W½ùûú5´ çãªòûôøËNóîøô¹môWÞ5ýÍ¿<åGþOîΧÇ?üËÿ@ÙtBÞg�¸OÿÈÇö"ûÈ»õM»-Ïô×9¶ätþÇõå¦ÿýøºÝ¿ +§Æõ¾¾%i=åüß@ÚsOÕeEïHûÞÔø MíÕüg>µwì?ïõ¿Þ3mAú;vìg$ííHNÈôLñW í5kú§#ÿQjÙþL©Hÿ!,«9Ðz�w6mT0sìËͬVWõÉù7 ÈpÝ@©/äËén÷s`ê¡9püËÏúH¶9Ðz�fyÓ³5m ÀìËÏl�Örõ/§ýËOÚæ>îßß½/Ëåð߬ÏêuÜ&K6tø�ø×çæ}õ|ß6À»=ÝßÞÞÙ Ü?¼g´dfð.1ù¿7÷ÎÏ>"ú¾6íý\ðÐ9?ÿ +â?ýËÇÞ/ðå£Ïü½Ü_çÿmèGëöü¬ï³xÓHþÄ¿þ9Ðþ:ÿXÓIïü<èyß¾þdàaù/í¯Ï6ðdÖúµ¢ù¡÷/ußÇf{ç§ào öO¦?éþ É�|ný(ÿØÇ(øÜA¦Àç ùÇÛ#ýw¤àóô�|>fí?$þç3¡ýÓ{F.Hÿn$ÄIÓÿ<ëú/úÀÞ4Å×<*hÿ�ø[Ó#ÿ¹Tdÿà¯}ü×ï÷KÏMp»x³üý7½fþ^Nú?'xùÄÿ9{~*ïÇ{& úéY³ú_zÑpÅúGÇúÌvOÿòÉHÿ#ì?Aù?^ÔèÈ:ãGzþìO ë¼g½{þ·ÜãÑþÆ-#ù§ÐÓÇÍÖõY�ýO'¥½Ï:'øùÄ8'Î<q ê®�dÿãaiïýXá{[Ðf´é'@ + ½kC÷׳úí´åËr9|îyårÍ£e Ë#M8½nü,mý²¿¹goçg."òéÆÏÒÖ§éWÐýàSùî×}6O,sÇá>^"þÑþ¦>íì²^¶Üàû:®âzÖqtAëGüD>,øó£üòÌÃòìýgô·£³÷Ï|;÷çÓü*òc०?èý3¤¿¬þ³9¿ãýõiÑéÀ´è^r~Y¯7m¨ë¿÷sPÙÁÑÞ|eµíc{o)É_ro¸?«@ó + Þ2wCûGÆE¯1ç-ïÈ}Ñö¿Ð¿Ir¢áèáúÈ�M/àÒþÏòO±è{^è_X{ÓlüÓ¦¾^Kr ëy¡9�|Ü3¤_`Ü42 ñqÓÞþ~ :ÐúÄ¡¦�Þq°�ú»=ß²©üKзýY�r¦>> @ +ßô�¤j�â Ñk úúÄR'µ�9zêôú¨Ü£wÈÓ»VUѢ襬?xôÞ´ªúg.j$¯VD?½ç�¶î/ uò§£ÿ»Æ¿.øçWýÙ37 üí¿ì?·þu|õ¬ã«÷þl}ïøêdÃØ,×9¿Ãò@ÃØî»×Æ`¹nzRàÞwtY¯'Zââ¸^oY`®óxÿ@ËÈX`§N2O2×y{lÝ,û$Krù%>¢û°«Þ²Â{VD?þtïÐ7ÝÀú»ëp?ÿñõ)ðL\,_ë=¬b±«´#õ¡'^ +ý¨üéqäcªî&Ø%^;ôw]ýǰ?¨ýo®_÷±ëÜÛUzú7¼Eüix»Hôçp9q<Wdÿô~§¹7¼>åï]¿S=VÿÉûýâüQèsúW>w´@~dÿõÉê�ô²hö®·Ä?× g}ZÚ¬üUÇOä§XáÅìù¡ÿ8?ô_ÃÊ+²¿ÄϦ٠+=¶gö¯¬Ïì_Y5ûG×oü±Ð³¼b¯4zÙ¯�ôõG ïHö?XÕ2¿À´´*: ÌÕ¼HgÞ=S UT »¬Z�I�;:´,18çcgPêØéªôý6´¿^ycÓ¼�Â:®ïÇEÒûàV;çw«Ã¬aoéVO( 8UÇòoö£ÌÎôY[årønUÇÃr½lƾû÷YÛ<qo×[6Ø´¦Ëñí(0ñâLüûJ¼ø"I¼hzâX:ÀýU¿}ÚËåþzË<«Z)^Ò®øçÐ'îeyyâÞè�ßÐþ:nV$|ÄѵõðÓ÷éåUÇ~ðsCü�ÏEíÃÁ3MùñÄ¿&É=¿U½÷Ië|ÚTä}÷Ì<ûëÃzzÿÀ´£ú'ú7PÿªnËþèýsEüx¨¿ô¼Ü þÓóÎÚè/Ë^ýÖÁóܧÍyûó¼ÁMÔ¿¼ê÷¾�|=ÿÀW¨t߯,È~ÿú¼;´$ï®|ʳîú¨a)zV4¢èÃZâ¡o�pôî÷J¼sÐé98i�Ê +ï¯E8@ûú8© +¾Ã®ú°\ß"ôà +HvuÀýåaWuAñ>ìª.½g^k;óJ¼TgâÝXû¸ÜÙ�èÕsÐ9?¿ +¿�øemÜð Ò>, +à�øeú'O+[ÿÀ¯ê_}XÙøÀ°²m}ä�W«¼të®ÑòÏ�ø °È°*hdøëNâ_-Á�P¶?¯Ä?Gÿx-StÞN»û¼qE$õ.ÝõèáØ¥Ý9xØuoz?,f.-Ø_^óJâsðoë-ÿ,ó%½DÁ7ë×?®×Á·ö×6>eh*xH ]@Ò@�<uO�^ö[ÐzýµèÛ}@zä?^ïðþúùgô?<Q@¯Îþ<õ.¡ýõÔ5CÿÆõrððJÝsèOS§¬ç«@Xê^ïÏz.ÒûѪѺ÷C-?Èû7íýiϹYï»óÀ×#ýw_OË×¼÷³æ¯ÁÍoèþúÀÉo õÏ9WÝjú¿ùèm/v~9z§`>$dïôcü_â_ÿKÖèG«3?}Ro±²Wÿ³Ió»¤?iÕu-Òûóª])ÿ@ÿ'À?+Ôzêßäÿ~~J¿m¤«¤ÿùÀÍÿ£àéõ¯þ:xzhüÏSÿTù%Áÿä'ü'tþ�x4ùåÈÕýÿ¡ýÓ«6æ¿Pð¦@ÿY¯º´ýèý¡ÿ÷ý§�ø´jñwùÀ¤êÔºú¥þ²{Pÿèôßgù¯Ëè?ñª]htù; üÊògêgýã7ÝÿxeNP6©Þ hê_ß¹ÄW+ë V77.×Á%KÛÓÔkù0¬×dÆg¤>í5£ûêmÚ°³?½¿¡îý øRÐóz¶U´�}Mä²¾ÕgügàßH?¹çYZ5úQðѦmëuôØÒÖÃòÓ÷·YËû² >¸£·KDo-wÆy�>îW# Gï ¨�zWÐzÙûÏ )@Ý{5ís£ðþúùËCúWMÓý+RÀô¶iæÒÏ>}; +®_áþ:zúqNüøÞ £yCü)ÜED¤pW;äG/ÜÌf@xá.2�qÃË#ùyåºòC&FXíÄx~9÷¹@ý ìéyÑþgEu`z©ñzv@mý&§èYCö;ÐsÏ&»û÷ú}=a=ÑûßÏPô½ÿªO¬ÁúKïù¸#ù^[ô?éÀèãþÕóoÒO:ð5AþÕѨ¿uÃy6�þebâÀóÔÅgö·VÕþ²ÔE(ÿzÏGK}vÏORíëëò¾îüþ~ÿ êo=uqÓâ"úÆeïýëç°þ×_ÿËoúÍ_§éÇoÿñ§OZ}.ÿq¯ÿÇoÿtºùøüѶ}þ?ÿðã?ý÷ùñÇ?üî÷ÿü¿ÿËóWýã_ÿý_þáÿþî÷ÿðãþ¿ów?ÿáüñ÷ÿéwÿ?þúãÇßýá÷ÿë÷ÿþóÿüã~þù_ÿò7¿ùóÿüñó?ýá?>þù÷?ÿæïÓ¶þã¿ÿþ?¿ù×ÿ8×}üÓÏúã_üøíÿþé¿þöótÿÑ;R +endstream +endobj +283 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 757 0 R +/Name /Im268 +/Width 23 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=Ì1 +0 á +fìè"ÔÞ,<WéQzJb¾åÞ½fï G8/ýÖ ¸#7Jr¼HAdùgI*qå={ɺ˽= , +endstream +endobj +284 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 758 0 R +/Name /Im269 +/Width 12 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßðåÉÿ? rý"~�O¤ +endstream +endobj +285 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 759 0 R +/Name /Im270 +/Width 20 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xco`øÿñóæçØà?Fð`@Fÿÿ@8ATÿDë �®* +endstream +endobj +286 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 760 0 R +/Name /Im271 +/Width 26 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßÿáÿÿÿ?üa?PÇ ß` òx�?©cÞ@3fÉ÷�ÁÿÿÀR +uSå®+/ +endstream +endobj +287 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 761 0 R +/Name /Im272 +/Width 26 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßÀÀðåÅýäÿÿ`ÿPà À(fÄpx�B{Þäê0Èð`R®[$�B*¸ +endstream +endobj +288 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 480 0 R >> /XObject << /Im168 177 0 R /Im54 61 0 R /Im224 235 0 R /Im225 236 0 R /Im226 237 0 R /Im227 238 0 R /Im228 239 0 R /Im229 240 0 R /Im228 239 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im61 68 0 R /Im65 72 0 R /Im53 60 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im53 60 0 R /Im46 53 0 R /Im54 61 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im42 49 0 R /Im45 52 0 R /Im45 52 0 R /Im42 49 0 R /Im64 71 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im54 61 0 R /Im51 58 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im75 82 0 R /Im62 69 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im64 71 0 R /Im72 79 0 R /Im52 59 0 R /Im62 69 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im188 197 0 R /Im62 69 0 R /Im75 82 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im46 53 0 R /Im43 50 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im72 79 0 R /Im41 48 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im46 53 0 R /Im53 60 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im46 53 0 R /Im61 68 0 R /Im65 72 0 R /Im53 60 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im62 69 0 R /Im69 76 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im65 72 0 R /Im53 60 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im107 114 0 R /Im71 78 0 R /Im108 115 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im66 73 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im41 48 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im53 60 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im72 79 0 R /Im273 290 0 R /Im222 233 0 R /Im223 234 0 R /Im176 185 0 R /Im80 87 0 R /Im176 185 0 R /Im179 188 0 R /Im80 87 0 R /Im179 188 0 R /Im176 185 0 R /Im80 87 0 R /Im166 175 0 R /Im62 69 0 R /Im45 52 0 R /Im63 70 0 R /Im42 49 0 R /Im45 52 0 R /Im46 53 0 R /Im62 69 0 R /Im68 75 0 R /Im43 50 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im49 56 0 R /Im42 49 0 R /Im63 70 0 R /Im42 49 0 R /Im46 53 0 R /Im53 60 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im44 51 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im97 104 0 R /Im59 66 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im69 76 0 R /Im51 58 0 R /Im53 60 0 R /Im55 62 0 R /Im49 56 0 R /Im99 106 0 R /Im100 107 0 R /Im110 117 0 R /Im104 111 0 R /Im103 110 0 R /Im109 116 0 R /Im62 69 0 R /Im65 72 0 R /Im51 58 0 R /Im47 54 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im57 64 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im62 69 0 R /Im49 56 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im170 179 0 R /Im103 110 0 R /Im52 59 0 R /Im46 53 0 R /Im51 58 0 R /Im53 60 0 R /Im43 50 0 R /Im51 58 0 R /Im54 61 0 R /Im49 56 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im99 106 0 R /Im103 110 0 R /Im274 291 0 R /Im42 49 0 R /Im54 61 0 R /Im66 73 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im58 65 0 R /Im61 68 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im49 56 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im105 112 0 R /Im106 113 0 R /Im75 82 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im68 75 0 R /Im54 61 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im43 50 0 R /Im69 76 0 R /Im42 49 0 R /Im47 54 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im64 71 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im62 69 0 R /Im68 75 0 R /Im45 52 0 R /Im65 72 0 R /Im68 75 0 R /Im45 52 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im51 58 0 R /Im72 79 0 R /Im54 61 0 R /Im43 50 0 R /Im44 51 0 R /Im51 58 0 R /Im42 49 0 R /Im55 62 0 R /Im49 56 0 R /Im75 82 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im63 70 0 R /Im51 58 0 R /Im62 69 0 R /Im65 72 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im62 69 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im115 122 0 R /Im68 75 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im55 62 0 R /Im69 76 0 R /Im45 52 0 R /Im62 69 0 R /Im61 68 0 R /Im42 49 0 R /Im54 61 0 R /Im42 49 0 R /Im47 54 0 R /Im44 51 0 R /Im68 75 0 R /Im42 49 0 R /Im53 60 0 R /Im66 73 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im49 56 0 R /Im43 50 0 R /Im62 69 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im44 51 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im55 62 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im64 71 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im51 58 0 R /Im47 54 0 R /Im48 55 0 R /Im54 61 0 R /Im46 53 0 R /Im115 122 0 R /Im68 75 0 R /Im51 58 0 R /Im43 50 0 R /Im72 79 0 R /Im114 121 0 R /Im54 61 0 R /Im51 58 0 R /Im42 49 0 R /Im55 62 0 R /Im63 70 0 R /Im42 49 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im66 73 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im47 54 0 R /Im48 55 0 R /Im62 69 0 R /Im43 50 0 R /Im51 58 0 R /Im54 61 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im75 82 0 R /Im46 53 0 R /Im53 60 0 R /Im53 60 0 R /Im54 61 0 R /Im62 69 0 R /Im44 51 0 R /Im70 77 0 R /Im51 58 0 R /Im70 77 0 R /Im46 53 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im62 69 0 R /Im75 82 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im47 54 0 R /Im42 49 0 R /Im53 60 0 R /Im70 77 0 R /Im68 75 0 R /Im44 51 0 R /Im75 82 0 R /Im46 53 0 R /Im53 60 0 R /Im53 60 0 R /Im42 49 0 R /Im68 75 0 R /Im44 51 0 R /Im62 69 0 R /Im61 68 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im47 54 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im62 69 0 R /Im45 52 0 R /Im65 72 0 R /Im62 69 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im42 49 0 R /Im43 50 0 R /Im65 72 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im43 50 0 R /Im72 79 0 R /Im41 48 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im62 69 0 R /Im46 53 0 R /Im47 54 0 R /Im51 58 0 R /Im42 49 0 R /Im53 60 0 R /Im43 50 0 R /Im62 69 0 R /Im61 68 0 R /Im51 58 0 R /Im51 58 0 R /Im44 51 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im115 122 0 R /Im68 75 0 R /Im46 53 0 R /Im45 52 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im43 50 0 R /Im68 75 0 R /Im47 54 0 R /Im47 54 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im43 50 0 R /Im48 55 0 R /Im62 69 0 R /Im68 75 0 R /Im53 60 0 R /Im55 62 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im49 56 0 R /Im75 82 0 R /Im48 55 0 R /Im46 53 0 R /Im47 54 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im46 53 0 R /Im42 49 0 R /Im53 60 0 R /Im75 82 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im66 73 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im112 119 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im47 54 0 R /Im53 60 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im70 77 0 R /Im51 58 0 R /Im44 51 0 R /Im75 82 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im72 79 0 R /Im58 65 0 R /Im65 72 0 R /Im51 58 0 R /Im47 54 0 R /Im46 53 0 R /Im111 118 0 R /Im47 54 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im49 56 0 R /Im75 82 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im63 70 0 R /Im51 58 0 R /Im47 54 0 R /Im48 55 0 R /Im62 69 0 R /Im43 50 0 R /Im51 58 0 R /Im54 61 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im66 73 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im109 116 0 R /Im42 49 0 R /Im43 50 0 R /Im65 72 0 R /Im42 49 0 R /Im45 52 0 R /Im62 69 0 R /Im63 70 0 R /Im71 78 0 R /Im58 65 0 R /Im48 55 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im69 76 0 R /Im45 52 0 R /Im62 69 0 R /Im61 68 0 R /Im45 52 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im170 179 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im73 80 0 R /Im68 75 0 R /Im75 82 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im45 52 0 R /Im46 53 0 R /Im42 49 0 R /Im53 60 0 R /Im246 259 0 R /Im58 65 0 R /Im57 64 0 R /Im44 51 0 R /Im62 69 0 R /Im68 75 0 R /Im45 52 0 R /Im54 61 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im171 180 0 R /Im42 49 0 R /Im43 50 0 R /Im62 69 0 R /Im68 75 0 R /Im45 52 0 R /Im44 51 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im43 50 0 R /Im51 58 0 R /Im44 51 0 R /Im97 104 0 R /Im43 50 0 R /Im51 58 0 R /Im51 58 0 R /Im56 63 0 R /Im65 72 0 R /Im65 72 0 R /Im51 58 0 R /Im54 61 0 R /Im55 62 0 R /Im46 53 0 R /Im89 96 0 R /Im56 63 0 R /Im106 113 0 R /Im275 292 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im62 69 0 R /Im65 72 0 R /Im51 58 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im65 72 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im62 69 0 R /Im61 68 0 R /Im46 53 0 R /Im44 51 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im62 69 0 R /Im70 77 0 R /Im63 70 0 R /Im46 53 0 R /Im62 69 0 R /Im68 75 0 R /Im43 50 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im72 79 0 R /Im94 101 0 R /Im51 58 0 R /Im43 50 0 R /Im48 55 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im62 69 0 R /Im54 61 0 R /Im53 60 0 R /Im64 71 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im46 53 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im69 76 0 R /Im45 52 0 R /Im62 69 0 R /Im61 68 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im99 106 0 R /Im110 117 0 R /Im62 69 0 R /Im54 61 0 R /Im75 82 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im43 50 0 R /Im72 79 0 R /Im56 63 0 R /Im53 60 0 R /Im43 50 0 R /Im62 69 0 R /Im49 56 0 R /Im75 82 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im63 70 0 R /Im51 58 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im46 53 0 R /Im55 62 0 R /Im55 62 0 R /Im53 60 0 R /Im51 58 0 R /Im66 73 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im44 51 0 R /Im62 69 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im89 96 0 R /Im47 54 0 R /Im53 60 0 R /Im68 75 0 R /Im43 50 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im55 62 0 R /Im66 73 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im111 118 0 R /Im54 61 0 R /Im51 58 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im75 82 0 R /Im48 55 0 R /Im46 53 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im53 60 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im54 61 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im55 62 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im69 76 0 R /Im51 58 0 R /Im75 82 0 R /Im51 58 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im99 106 0 R /Im104 111 0 R /Im65 72 0 R /Im62 69 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im61 68 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im42 49 0 R /Im53 60 0 R /Im276 293 0 R /Im72 79 0 R /Im94 101 0 R /Im51 58 0 R /Im54 61 0 R /Im62 69 0 R /Im44 51 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im44 51 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im61 68 0 R /Im46 53 0 R /Im54 61 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im43 50 0 R /Im75 82 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im66 73 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im53 60 0 R /Im53 60 0 R /Im42 49 0 R /Im61 68 0 R /Im46 53 0 R /Im55 62 0 R /Im55 62 0 R /Im53 60 0 R /Im51 58 0 R /Im66 73 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im42 49 0 R /Im47 54 0 R /Im47 54 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im62 69 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im55 62 0 R /Im51 58 0 R /Im111 118 0 R /Im54 61 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im72 79 0 R /Im114 121 0 R /Im68 75 0 R /Im45 52 0 R /Im111 118 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im45 52 0 R /Im46 53 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im62 69 0 R /Im54 61 0 R /Im53 60 0 R /Im64 71 0 R /Im109 116 0 R /Im42 49 0 R /Im43 50 0 R /Im65 72 0 R /Im42 49 0 R /Im45 52 0 R /Im62 69 0 R /Im63 70 0 R /Im277 294 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im66 73 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im278 295 0 R /Im49 56 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im53 60 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im46 53 0 R /Im54 61 0 R /Im99 106 0 R /Im104 111 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im43 50 0 R /Im51 58 0 R /Im44 51 0 R /Im72 79 0 R /Im279 296 0 R /Im222 233 0 R /Im223 234 0 R /Im176 185 0 R /Im83 90 0 R /Im176 185 0 R /Im179 188 0 R /Im86 93 0 R /Im177 186 0 R /Im79 86 0 R /Im82 89 0 R /Im218 229 0 R /Im80 87 0 R /Im223 234 0 R /Im176 185 0 R /Im176 185 0 R /Im280 297 0 R /Im174 183 0 R /Im176 185 0 R /Im81 88 0 R /Im86 93 0 R /Im173 182 0 R /Im176 185 0 R /Im79 86 0 R /Im80 87 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im49 56 0 R /Im75 82 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im62 69 0 R /Im69 76 0 R /Im43 50 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im54 61 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im53 60 0 R /Im42 49 0 R /Im47 54 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im46 53 0 R /Im61 68 0 R /Im65 72 0 R /Im42 49 0 R /Im47 54 0 R /Im44 51 0 R /Im62 69 0 R /Im69 76 0 R /Im47 54 0 R /Im53 60 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im70 77 0 R /Im51 58 0 R /Im44 51 0 R /Im75 82 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im112 119 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im62 69 0 R /Im69 76 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im66 73 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im76 83 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im72 79 0 R /Im94 101 0 R /Im51 58 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im68 75 0 R /Im61 68 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im54 61 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im66 73 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im55 62 0 R /Im68 75 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im68 75 0 R /Im45 52 0 R /Im51 58 0 R /Im49 56 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im53 60 0 R /Im68 75 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im36 43 0 R /Im96 103 0 R /Im96 103 0 R /Im54 61 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im49 56 0 R /Im46 53 0 R /Im72 79 0 R /Im51 58 0 R /Im72 79 0 R /Im49 56 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im62 69 0 R /Im45 52 0 R /Im54 61 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im53 60 0 R /Im51 58 0 R /Im42 49 0 R /Im69 76 0 R /Im54 61 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im72 79 0 R /Im281 298 0 R /Im234 247 0 R /Im235 248 0 R /Im282 299 0 R /Im238 251 0 R /Im271 286 0 R /Im269 284 0 R /Im240 253 0 R /Im242 255 0 R /Im238 251 0 R /Im253 266 0 R /Im238 251 0 R /Im243 256 0 R /Im259 272 0 R /Im239 252 0 R /Im242 255 0 R /Im237 250 0 R /Im238 251 0 R /Im253 266 0 R /Im238 251 0 R /Im239 252 0 R /Im94 101 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im47 54 0 R /Im62 69 0 R /Im53 60 0 R /Im53 60 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im43 50 0 R /Im55 62 0 R /Im51 58 0 R /Im44 51 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im49 56 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im62 69 0 R /Im46 53 0 R /Im47 54 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im70 77 0 R /Im51 58 0 R /Im61 68 0 R /Im42 49 0 R /Im55 62 0 R /Im51 58 0 R /Im75 82 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im53 60 0 R /Im42 49 0 R /Im47 54 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im89 96 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im72 79 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im75 82 0 R /Im51 58 0 R /Im51 58 0 R /Im89 96 0 R /Im42 49 0 R /Im61 68 0 R /Im46 53 0 R /Im54 61 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im54 61 0 R /Im55 62 0 R /Im46 53 0 R /Im112 119 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im23 30 0 R /Im24 31 0 R /Im91 98 0 R /Im96 103 0 R /Im36 43 0 R /Im164 173 0 R /Im24 31 0 R /Im165 174 0 R /Im24 31 0 R /Im37 44 0 R /Im33 40 0 R /Im87 94 0 R /Im164 173 0 R /Im92 99 0 R /Im24 31 0 R /Im165 174 0 R /Im24 31 0 R /Im87 94 0 R /Im49 56 0 R /Im63 70 0 R /Im46 53 0 R /Im76 83 0 R /Im72 79 0 R /Im283 300 0 R /Im284 301 0 R /Im284 301 0 R /Im285 302 0 R /Im49 56 0 R /Im286 303 0 R /Im284 301 0 R /Im287 304 0 R /Im49 56 0 R /Im288 305 0 R /Im225 236 0 R /Im289 306 0 R /Im49 56 0 R /Im227 238 0 R /Im226 237 0 R /Im290 307 0 R /Im291 308 0 R /Im49 56 0 R /Im227 238 0 R /Im226 237 0 R /Im290 307 0 R /Im224 235 0 R /Im225 236 0 R /Im225 236 0 R /Im49 56 0 R /Im292 309 0 R /Im287 304 0 R /Im293 310 0 R /Im283 300 0 R /Im284 301 0 R /Im284 301 0 R /Im285 302 0 R /Im49 56 0 R /Im292 309 0 R /Im287 304 0 R /Im293 310 0 R /Im227 238 0 R /Im226 237 0 R /Im290 307 0 R /Im291 308 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im64 71 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im70 77 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im62 69 0 R /Im54 61 0 R /Im111 118 0 R /Im63 70 0 R /Im51 58 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im65 72 0 R /Im44 51 0 R /Im43 50 0 R /Im49 56 0 R /Im42 49 0 R /Im43 50 0 R /Im54 61 0 R /Im68 75 0 R /Im61 68 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im70 77 0 R /Im51 58 0 R /Im53 60 0 R /Im62 69 0 R /Im75 82 0 R /Im72 79 0 R /Im117 124 0 R /Im294 311 0 R /Im295 312 0 R /Im123 130 0 R /Im138 145 0 R /Im124 131 0 R /Im123 130 0 R /Im133 140 0 R /Im125 132 0 R /Im121 128 0 R /Im120 127 0 R /Im134 141 0 R /Im128 135 0 R /Im120 127 0 R /Im156 163 0 R /Im127 134 0 R /Im128 135 0 R /Im120 127 0 R /Im123 130 0 R /Im134 141 0 R /Im138 145 0 R /Im131 138 0 R /Im123 130 0 R /Im121 128 0 R /Im120 127 0 R /Im128 135 0 R /Im124 131 0 R /Im157 164 0 R /Im123 130 0 R /Im124 131 0 R /Im126 133 0 R /Im128 135 0 R /Im123 130 0 R /Im125 132 0 R /Im126 133 0 R /Im138 145 0 R /Im132 139 0 R /Im156 163 0 R /Im121 128 0 R /Im125 132 0 R /Im152 159 0 R /Im162 169 0 R /Im152 159 0 R /Im121 128 0 R /Im141 148 0 R /Im152 159 0 R /Im128 135 0 R /Im129 136 0 R /Im128 135 0 R /Im133 140 0 R /Im124 131 0 R /Im123 130 0 R /Im146 153 0 R /Im137 144 0 R /Im123 130 0 R /Im124 131 0 R /Im121 128 0 R /Im131 138 0 R /Im123 130 0 R /Im120 127 0 R /Im126 133 0 R /Im125 132 0 R /Im141 148 0 R /Im128 135 0 R /Im133 140 0 R /Im156 163 0 R /Im157 164 0 R /Im132 139 0 R /Im123 130 0 R /Im133 140 0 R /Im125 132 0 R /Im123 130 0 R /Im129 136 0 R /Im133 140 0 R /Im156 163 0 R /Im156 163 0 R /Im127 134 0 R /Im124 131 0 R /Im133 140 0 R /Im120 127 0 R /Im128 135 0 R /Im120 127 0 R /Im138 145 0 R /Im156 163 0 R /Im138 145 0 R /Im124 131 0 R /Im134 141 0 R /Im123 130 0 R /Im124 131 0 R /Im126 133 0 R /Im123 130 0 R /Im125 132 0 R /Im126 133 0 R /Im125 132 0 R /Im123 130 0 R /Im126 133 0 R /Im194 203 0 R /Im123 130 0 R /Im143 150 0 R /Im134 141 0 R /Im143 150 0 R /Im135 142 0 R /Im138 145 0 R /Im156 163 0 R /Im156 163 0 R /Im296 313 0 R /Im138 145 0 R /Im125 132 0 R /Im137 144 0 R /Im138 145 0 R /Im124 131 0 R /Im128 135 0 R /Im122 129 0 R /Im134 141 0 R /Im138 145 0 R /Im131 138 0 R /Im123 130 0 R /Im125 132 0 R /Im128 135 0 R /Im129 136 0 R /Im126 133 0 R /Im152 159 0 R /Im123 130 0 R /Im158 165 0 R /Im133 140 0 R /Im162 169 0 R /Im123 130 0 R /Im131 138 0 R /Im123 130 0 R /Im131 138 0 R /Im128 135 0 R /Im124 131 0 R /Im121 128 0 R /Im138 145 0 R /Im156 163 0 R /Im297 314 0 R /Im140 147 0 R /Im145 152 0 R /Im126 133 0 R /Im128 135 0 R /Im133 140 0 R /Im124 131 0 R /Im120 127 0 R /Im138 145 0 R /Im131 138 0 R /Im123 130 0 R /Im120 127 0 R /Im126 133 0 R /Im148 155 0 R /Im195 204 0 R /Im195 204 0 R /Im298 315 0 R /Im197 206 0 R /Im143 150 0 R /Im153 160 0 R /Im152 159 0 R /Im128 135 0 R /Im125 132 0 R /Im123 130 0 R /Im124 131 0 R /Im123 130 0 R /Im125 132 0 R /Im133 140 0 R /Im156 163 0 R /Im126 133 0 R /Im125 132 0 R /Im162 169 0 R /Im121 128 0 R /Im156 163 0 R /Im156 163 0 R /Im132 139 0 R /Im123 130 0 R /Im121 128 0 R /Im120 127 0 R /Im141 148 0 R /Im128 135 0 R /Im124 131 0 R /Im137 144 0 R /Im128 135 0 R /Im124 131 0 R /Im138 145 0 R /Im126 133 0 R /Im123 130 0 R /Im157 164 0 R /Im121 128 0 R /Im120 127 0 R /Im126 133 0 R /Im152 159 0 R /Im123 130 0 R /Im129 136 0 R /Im128 135 0 R /Im124 131 0 R /Im126 133 0 R /Im152 159 0 R /Im141 148 0 R /Im128 135 0 R /Im131 138 0 R /Im121 128 0 R /Im120 127 0 R /Im134 141 0 R /Im142 149 0 R /Im152 159 0 R /Im143 150 0 R /Im136 143 0 R /Im143 150 0 R /Im126 133 0 R /Im152 159 0 R /Im123 130 0 R /Im125 132 0 R /Im121 128 0 R /Im125 132 0 R /Im128 135 0 R /Im129 136 0 R /Im126 133 0 R /Im152 159 0 R /Im123 130 0 R /Im299 316 0 R /Im124 131 0 R /Im125 132 0 R /Im126 133 0 R /Im138 145 0 R /Im133 140 0 R /Im126 133 0 R /Im152 159 0 R /Im128 135 0 R /Im124 131 0 R /Im143 150 0 R /Im300 317 0 R /Im142 149 0 R /Im138 145 0 R /Im162 169 0 R /Im120 127 0 R /Im301 318 0 R /Im148 155 0 R /Im135 142 0 R /Im296 313 0 R /Im120 127 0 R /Im121 128 0 R /Im134 141 0 R /Im152 159 0 R /Im126 133 0 R /Im301 318 0 R /Im302 319 0 R /Im143 150 0 R /Im149 156 0 R /Im303 320 0 R /Im135 142 0 R /Im145 152 0 R /Im121 128 0 R /Im125 132 0 R /Im152 159 0 R /Im128 135 0 R /Im137 144 0 R /Im301 318 0 R /Im302 319 0 R /Im143 150 0 R /Im149 156 0 R /Im303 320 0 R /Im135 142 0 R /Im304 321 0 R /Im128 135 0 R /Im128 135 0 R /Im160 167 0 R /Im301 318 0 R /Im303 320 0 R /Im135 142 0 R /Im305 322 0 R /Im133 140 0 R /Im123 130 0 R /Im123 130 0 R /Im120 127 0 R /Im301 318 0 R /Im195 204 0 R /Im143 150 0 R /Im296 313 0 R /Im121 128 0 R /Im120 127 0 R /Im134 141 0 R /Im125 132 0 R /Im157 164 0 R /Im128 135 0 R /Im120 127 0 R /Im128 135 0 R /Im126 133 0 R /Im141 148 0 R /Im128 135 0 R /Im120 127 0 R /Im126 133 0 R /Im124 131 0 R /Im121 128 0 R /Im132 139 0 R /Im133 140 0 R /Im126 133 0 R /Im123 130 0 R /Im143 150 0 R /Im306 323 0 R /Im153 160 0 R /Im152 159 0 R /Im121 128 0 R /Im125 132 0 R /Im141 148 0 R /Im128 135 0 R /Im133 140 0 R /Im156 163 0 R /Im157 164 0 R /Im132 139 0 R /Im123 130 0 R /Im121 128 0 R /Im120 127 0 R /Im126 133 0 R /Im123 130 0 R /Im124 131 0 R /Im137 144 0 R /Im124 131 0 R /Im123 130 0 R /Im126 133 0 R /Im123 130 0 R /Im157 164 0 R /Im138 145 0 R /Im125 132 0 R /Im138 145 0 R /Im132 139 0 R /Im121 128 0 R /Im138 145 0 R /Im125 132 0 R /Im121 128 0 R /Im120 127 0 R /Im126 133 0 R /Im152 159 0 R /Im123 130 0 R /Im126 133 0 R /Im123 130 0 R /Im125 132 0 R /Im126 133 0 R /Im137 144 0 R /Im128 135 0 R /Im125 132 0 R /Im121 128 0 R /Im126 133 0 R /Im121 128 0 R /Im128 135 0 R /Im120 127 0 R /Im125 132 0 R /Im143 150 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 289 0 R +>> +endobj +289 0 obj +<< +/Length 762 0 R +/Filter /FlateDecode +>> +stream +x¥}Ë-»qÝü~ÅJõ-<«JCÄMRCNlòʤÍ7¯á¿÷®ÞûtÖÚX@MúttD"ùøËÿñí/?oÿá/?¤º,ßåõsýÈyù¶ %æokÿþú?üøouûö/úá?¾/k=ÏÛãçVÀø¯Ã§¯Ûòm|7_ÇØÏËv_>J\¾ %¥ý@¹~ ~ä`ÿµý@½~ ~ì0W°ö)h+® 9'ÁÑ6¸]^AÊÚ +Bsé#=>røØ·ÇÂþ±Uÿ@n>B<¯ë±¼äÚ <¹(¸0 +^¹èIÓPÐü%È믫´þô±e8ÿnan¸å�_�ä¨^â�¥@{ÛýûøÍÚùãv¥ßq«Ânóø§êûßÑùÕfÿlýqAw¸]ü¨;nD\Vt~aüÃ"ñ? )ÜÎÏèF?Æ?1¦Iþ±ý§$í®?Aþë¿òßS~ÄÖ¿.-ý72~GûoøÉø_ü¡ç_Iþ³ù+Ò¢ü¿BùÛÌ¿³ùWÄ¿µÙ?qËü ç·#ú ßø·=?ºÿüRöÏæOÒ?íüìþ¦ÎO¿¿ ÊtÉú£Æÿìþ¦îõGJUìþ¤¥ûCç/4?ãßT4ùÃîoªÚý¥üS«Ä?ôüWíü)ýVõü°ý6¸víüèü;ÔßÍülüõ¹µþ½(¤?|½ÿüÍîDå/ð#? 'lòóoÿtû+'ÍþbþGNYô?ý3rÀtû+cûC¾¹[÷/Wmý+Z?âr~«¦(ÿmHþ´üG÷¿!þUü[?ô_tû·`ÿE¶ËìÝþ-ñ¿n? Ú/Øþs÷u©Sîãf³/û÷¸ñOÃuãy7ßñ<\]aYÀêußñ@Ðù©ï½lõ(ö�{xè ü{»È<;JìaGûÉ¢¿>Aç¯Ûþ¡ ó×mÿP5þ£û¯ÿý3Û#T½çókæìþ%¬ù]æ_þEöçýÙ*¢3cWÚûC±EßÒϱÆë¾oûù?Æ ?¶½b,`|Ødã+&H�À�Øx8À§v¼n<DwþΧXtË. ]¿Gõsð®_¯ÖMT�¼Ü60ûFçßáþÀ#¤@ÀÙ-øÁ`zSàþùÔÓß¼9ï_wÞ¯;)AJæÿ¼¹Eÿ%úÓùvþ|«IRÀþu½u¿ûKÁ«µ"¤¹?|[5îÓØöülý;2`ªüøxtðaü/?~æøG|Èð:øÿoÎô¿\¼7àÿåÝy}7úÑý;xÓÙ?o4ýMÁ£:ëÿV4¿.òªÙüÑæ§ü»iüËÁd�w;¼cà¦?üz?ùEçõÖùmOó»>ê?Z�Òe¸l}r.Þf�/¦×ÁÅçs!âëÐW«´~ +>ów¯_±HÌÃçߥù)ýF? +¾¤m<pjöO×_ ÿÉÀq(+X¿Ó=ý˺7Ô +ö¯Û.ø£?=¿í¿=?z·Uº¿~»J?>UéüyàS¼E¿¸hò³~y2XXàË6üsyFE×>ëGØ^Ü0P»ýS9út>À°èèA*¥èA^¤@Ñ(8>-þåãáüBô¬ÁJpý«Û½ýc ¢£oöt9~~v7×�;ú]ïÜà]½Á>ÞÖáã´ óo ti©¡èEö£ú4 ÎÑ3tþ#èÙ=þMiåéÝÇÃùÈBÿé,(?e,Ud*ÜÖ_Ü¢-ÿ ðy¥øëH8.pÈþ½í>$Ò¶Øø¯Øû"dÀÍMü±nß5XcÃÑì~�¡ì+ü`Å ¥aX[Ì0ðC;0ðÛpQýÈ.xÞëû99%P¬ ¥ûgbÎáÈ}Òàü ^¡êåöÍ*ZClÖð°ÔcW/Õ.!¬3ô¶gæS>°5Dà¦HoÈÎ> @¶¢í.`]´PX ãülyò^é`ÃM«Ùü9Ñ ¥9×ßrÜ9 Wb¾Ã)`zÝZüçùåå¤õSwÔóx°8Êù©;3_ + iAôO9~tèGá�{Ê;סNÑÎìßPgÿÑ®=?ã¾ì_#Ýê¬æ®é©F|ü.îßòzô§÷ߥßìýß´ùéýݵûËáÄÿº1NîÒäAÙSâyü@T@ò{ Æbz÷)1÷ÌïÎØðüç<¶Ëüòýó<¶Yùsä{ +é/ý);D?=(VM~ó<6~tý+²ÐS<ÉC[ :É?ý9&nÚùñP$xÿõ<>Q~QúíÚùS0fAúK·0èþLÐ~Óõg +ÿq0 >ë!ô`åRtpýâJ ¢¿§±TÊÒÈDG4Æc±öÿ>¯§�9HË °ô0àI«óß×ùGÀ$w�ÖI0ÉѨóÂ8uYþáÕ0,Ͳð¼ # ,²ÒH¨°ZE´=¢;GèE4Bî[AÙpÄ.aÎhýí%lÁ@c�hÑõ¬*zÁ, +záUÈ +Q¬ £ßC�!¬¿h1!÷pKæ¸#=oZYC8vPòBëÈ1!XÂ~O:¸^EdGz35º¼clhvY[FÞe¸|dä}Ryÿ$FQ¬%K˧(Ш×Ê?â<ýóð8uB´×eîEÊëYÕeòE*¤¤}î íÒØõ9^2Z +ë¢>wPÐýë@`×xp�IL±°ÏÊ;(ð.,#Û½õ[EÞúi`Ûî0JêhYp?<áÅ^eO,X$Vñ°ÓümPx¯"TOòT`@=)!Z&÷e¼\Qî@âîÈ #¬ê:ªnÉ ëÍø[ÂåzdA,fÇ,WqÙX`ÙÈb4=Ìc«"Ú´ùit¢ º\B¹6fÜÑ%(S(/ëè7�ç´=³3Yjÿ¸!åhRzfêÓe&Âó ¡¿£qúÓõgt~Y»,5?½¬ø65ÇfÍ_EôÀþWtÿÊBHÀÑ2ÂÐs<+kÝ(p~HJ/Gè}t:b{ëÏÐÑ×ý9²³~ +DÄEäÙXn9ÙÑüþ¢QmÉÝ÷Qm¬6tÎèüCç|Oæ¢)@dU¨Æ¨¥)`¤AòB(¶®Íëb!ªYbQ(åàþ"@,¤@Hn÷ºV³üc(Z±òÈ£Ûóöm{+þØí±Ã;Ï®_}Ãõ² +ÁßËxyõ! â ¤ÆY,Jø,îyæñ±tì�E´ºT=úóX¸æ ^å¯eó¸?Ùz9º+H7°&q,·pó#åI)·�<Ãõ[QÃi²`Þ¢ÁHf=^Æ®$',ø£Á8¢�àÁhÚ ÕŸ×!¼Îo ¨|Bô(*î Ðhϸ}þ'ô·gÜýi0d©ê³õîE¿*<9<ZSÞùÑ̾5£óÓ)WM~PúCù¥ÐߺgI~PúïHþxÿf½±'´@ý£gzÖSà}^$Yfsß`èÓ"é/ed�)O>ÿ.ê²ÿ¢íÆUt`p/ênÔCÿÍ<Á¥U3�)ÿBûe ©Áì~X¸ÿr8¿gý¯4%²ùwxdôÝãÀúö»cç é? +D¤¿ê:YQõqûɲkö¯Ë¥Ùß~¢ýÀÁ'Õfà:xTÿ*ÉþHþëöeµ|µòäÙw(ÿdû=cûA¶ßËîÒ_øõ¥XÑÅÿÑëU~ºbêO9ÄÁ¯u.ÄÏÃuî±øËìrYK¤¸ó#µ¯Wµn;®½8|ß~O"À�xÑéëÂ;ÄÎd2ªàéCz +¬0þÇ +r +Þ²ñi/w¥ô¯öjÌ_æpgïªy?PlÙÁøVõÐ<ÎÖ?Çqý»ù)öleá.óëØ³õ£êFße»=¥}Çò¨×{üSàùɪ#¸ës¯÷hýýD¤ñe|#½xY¹ _~àüõ²ÛÍùwm~Jÿ}¿EÿôÛ¡? ¡üÑ"?J¯C¯ÚýçÑ«¸½YrïþRè+ÃóײYßôù É +ýZôs9tæ¬þàyÄN¿¹À|¦ß¦Ñç#ù=G¥ûÃçGæÓH±F?^Ýß<â$ÑÅm¤øWï§¢F? +]&¤?Q?J6ÉFË [ÄÐ5´tè*$õºdý|/çbÇ t +í+¢?ªBøgÓî?¥ÿ¦ùº ö¿^ÊúíÿÃ[Bl·üoéÐã_ÞÍ?Ð1jþ îä!ðÓûqIú;ô{Ïþ=Z:ܱÿrQíß÷-!úöké ùOôüWH?ýüWhÈOÚ?#-!ýì=CÿCÏÞ5ùG[@ûG/CQ´ÿVþ3ý[ÒÿJìAßPþèý\:Îsí|; ׫¨|®?wsìΠϫױ/kr¯]$îrãõ° ¯ax¯cW<Ü£ÇþÐúZRXÐ}ûx?ÑÖ/Ëo ÑÛ?aWê-öÝ>$»X?Pýé}/rÝ¡ë;ÒÞß°MHýü¬QïþÐùÝw?Ï/'ÝKz¼Ð_Ç.Ü÷\¿×0ìÎ4ùɱÃU¬!ÚÿH B¤ü°Çøw�{Ìh~=nÛJLóOQùÕç¯c_É¿ìË*'ÌêoHÑÒoEü;¶»AóGÖÿG;Ö;úçö9i?¥EÓ<iê_¹¥× ìó?Á. üѱÿ!ÿëaQ~ Ò_~¹?°ÃÏû³ñ¯·³õ°ÑóüzØmA㫦9öæ×ßn¤gíþã·û´ÂýëØtÞøwòW/¡¸/Oþ9Ý?%lÔø×ø·s ö§üö¡ÿ¦¿ýæ Ý?}xØyG~ÐýCÿM;| vøÒÛ?:ö þÓ®^a«÷×s¦gõçQ½PѪÆ?<ìU´.ô¿Úénªüdãý6½î~ÂÃV!ÿÉØuYîɯ þýrÓ~ñ§§8×BÂO?¾;dÖ?<ÅɸIwãû°I÷ÑîuðÈÕg©wþ)ä£à]ÈhÿòåVº¶|,ðoóþe0¿8ô +Üë§kñ®<_IÛçñ:øéIÛÃû·ùkAóËÿGÙAåþPþ_áüréÞ°-Òxs8¸KôãYÏ û3sº þÈ9]ÿ O¶'8D¸þñõýcÚODùÅçG÷o�|²e=úññuR~;xnÝèÆï°ü2ðªBý«N®ÿQúªýAÀ· ÙúÃs´òÿñrà709òg�|X ÿwèþ ôÐ~ÑÁÏxOÿ¿À¿üàýG4úÓÀ«¤ñ²åÇ÷¥ãiàeFöoyÀî*H~éàO²²Í³öª~:xã§×¿ÁñzÅÐMß<ðo¹e¥]³_»9çëÏ&?xÅÆ{þOòk ð*ܳ²(¿(ø¡ý ^çüOýþçí7=ð/«ö/9ÿõ·~~UÃèüÐþA,çÝßóµÞºÿyÓì?¸ü¿ÀÅÙûã9ën©!/ðqÒ~(P~éû/P~éü÷/;üÇè÷/;ôëå¼¹¸áÍnOÞÑì:ò¼`Ag|+<=k-?!mÔÑCm¼}³Y?a.ìø´Þ9>´^Ðüzè§kÓø´[k¿|/WÌ +®¿¡ý[ÀüzûØPÐþGÒ7´~=tÎïóx½ýwEô =~zÓý ïÓÆ)ÿ{èá¤ø +;:]~¡Úý'è×RÄûËBwéüyèaø¢7Í?~ò¢§6&ÓV¢ÿ�zêi;õSô2Cý©£§yøÎ_ üÐÑÓø�ý«üèµOîí£ÿôöåZÿ@ûòm½¥â®@½Dò½Ì·ä_ò×ÛÎùQô+ ý«OÐ~Ò Ð£b¥F6 ýÑìV<Ìhü@ÅÎè?zW üÔѯªñ/E¯ª¦?hèf}v¼ð°_qÓ5+ºtôÿ|×sËÞþà ¼ÝÌ÷¹¸óÏÃíÌ"?ºã2^°Ýùª`üãҧ(mßÖ;ý2^Ï;²súëyGVî¶7æÅ§ò¿°Þuóá¼Ì¯?=¼�þÓ o0ã¥Ç¿ +b Ð +ùG~^óé<^~^®öþzÞVÿ)ý¶ô3èî²½_Ãïß@èEäö?P3ÇÍõÅ7ݸG¿¡�Ý@òk$t£õnôæï nôèÇC76éüyèFù¬¿jë§åæ]Èe¼7àåö{çGCGVD¿¼½ ͯg^s)½ôßÌÓAÄÐ@¹üè¯;Aÿ¬ã¹;/jÑ»¦E"�O*Ò g.�&hÊp~=ñ©ÄÀúü Àï©"ª5 âG¾Ì¿<½çZm|þ/÷c½#vBs_XìÅ="mªdWH�*õ¶=q +ͯÄ}/º¤ `ÖmzPzÑ£ zâJ@ó·®:0ë·~A³ +ܧ.ãE¢û¯·l?bZù£µlÿìiý~.ÁoU@ó [^pÖÈ´@õàMó QÍìgðAE¬ü_°Ð¬yÐ%Üó ýñ¿·&�½Îë>eÀø|®Ïn³ýÙûiØóe¼þvjÝÚÎãÞN-sè2^6?_ðÓyü�üÀü(r¬5oï~|ÛíѰùp<Þ§´æCýÈÍuÐ=øÁR.Ôë>YÍÝõÚ5^Ƥþ DuoØã;_¯{,tµÇ4uÎj~Ïoר¿@<\ÐüÊãûSuwüÿuüܯöþ<Û-þxº?aê}`S?ÐzÐ;HèäA0Fc!þ~¾£ñ:Rм?#®_á¸j:C0r%IWÝÞ$úó²ÙQ¼BB âù³÷ç2¹ó�2aóÛÌÏOP?úÌe Ãü^ �Q¡<ý A}ºÀÛþ¤â¨¾ øø*çÐÚþé>´tÒ[^ÆëuÓm\Ï- ¤¯D0~oäüw(@åRròÀ +x ¸VOÊ¥0nûêÅÖb1�9<Ëï· 5^zf ZÒµRÑêN°x )U3_Á×[W0Mñddh~Ï 5ýë¡ï¿¾}Æ ôß(BE^þÈ2ÐfmÀrÓ(¢ @38Â!ôÀï¿nÃZ'"¸þ_ßG±Ýïh¸þlm.Ãõê#Ö±¶7'l`¼ÿø +!:;~¿BÎÔ_àÅöBV}áB? "û½úKó£²í$¦,h~½úGÑØî¿¨ûgPAç/.w'�þÓKß7ÿºçϪ¿ û7¿âþãyþ $í ¡û?àÿ;tÞ¿bmßzëg¶gùi{ïO³þ£9*éÛfÆ_ýÚösפ1@/¢G�Þ· ^à¾mHÔîµòýË1Ñú&õÆó õ¯ÓõC¢Ç zß·# û]*Ðvx~roô¼Iú¥)ð¾i²Kͯ´Möò+eÒqüY#µáýÕñ¯s \)kÖ3=?ë]1}~`²ýJ`>ÿvË�JU£_ÿ½?«j� Ñ_Á9ú¾Ý1 Ó¦ 4pGó·î áYýõGôTùIÊ_@ù1Pþ""ý§È¡yÈOøð4^Ë/ûåÜ6]ÁÁÃ=öÑú/`-H=«Bv qòçhþÆyRº~ _Î�ð=cÌõ0i;ÿjù%àôSID~¹(+}}®§í&=Ë\�ë_}ÿ<^Ï røê4~ ȯ³} +xÂyýzKï2Àyd µôè\vqý,M£]¿gt×Ï"ÐüzùPÐüð_Õø®¿"þoýé£K?Z×ÎËx}ÿÛMþµ¸ËÙó÷Îc=úQôdQåAJ>Ä�æ×áO/>|Y¿öÐáËè¬ó§X^ÇëXE;xþz¢îë/> æOW(ôò/'307ÄÿÔ?zæôß@¦£_þ¡èÁ²HóSïwAúk}ÛoÉÏTýCÖUû oé_½üKJí_þJH ÏÈÐþ@¿4þ¡ç_TûE÷W× Ê/]&Ñ~¡èG_ïüxv¤Ðck¾Ð³¨ó¾,ÒxZüvAúSçÿ¼hî ½qùç2³(?(züèüèü5ýÁÁ/d)úÓæ¯ÈþÈ«H~ÎhþÎ[« +?àèËWèÖi|}IÁ7lÈå/ó®é +^BüD·ÿÆOdýS°ÿ#ßßWþݤýR_òýqð+½ïÁÜý:½kûv®_>+w®Î\ÐôµÝwí§¾{XÁúõÈíà²ÿ<^ð=,tÉÓ\áëàÅÒûÂ×4{ËJÇ]¸G§¿?|tèO«Og×Ücÿ3]O_Ù{ìû +Ýåßͯ7N ¢¿9òÊÞë?/»Kô£ãwtÿ°?ëZÛ£/}Ñùé{Â"Þ_ÕIùã[¬¿ãà&Àº¡_Ý ¦uR�:øÆäxB¯4?üOvn[OQÚ? ù0�>_Y~!2úÕ¹?ÝÐÎúéü) ýåßkÏÇt~òÇ·¤û÷êM]þ!¡7ò¯Þù)CþÕ«yõIúJìò?ÿ^ò£g�tÀ§®Mö¿n·äoÂ;6tÀÛñÿ@äͰ®?_Õº«¾ xY~çøGÿ²ìÀ°Ð-$ÿu('d¿äåYØÇï¢ý@'´~ûCèW5G~iòWüà_�kä Ù?àßù oQÿ¼ø&?XèâÑùé3tñ4^],^?èq¾Vÿë×zèìñ_]|ÇüVüÒÄC³>NÃuëÉóOÃ"o<òâ<½Þ8i1æ9×½wÜêP&ZãËøy(úýo9útÞ¿>xÜ~þ<r«ñoþry_/þU²Ä¾~eèGÑ£®·ô¬ªóïWáópI[øÇÍÕª&0¹æ3d&s-xä}xì&A¨û %þöåãgo@hþÖSqæçø¼zæ 1ÕI îÒ½ý{ìgwÿäü +Ò� +üfð5>í©oV¸~ÿ\gùÏÇC ¨ÇþmHÄ.n÷,Wé«IþKvÿzfé<q C{¥ÝÞ¸ýð¿&-�o½Ôã»üÝÉ÷àäew&õWrø|Rþ¦ôïÀùÕ{òãÝRøÂ§+º?ð©ÇnMÊÿtÓ~IÐh.z@Ôý^ÿ ÄÞ@ù1»õa2vK³ÀiìVBç?»5þ§ð_F ^¶({åaùÿ¾º£?Ø- ÿxÙ.mÿ4öiEç§W~x%>vÆSþóîM³üçðפþÉ»F?ñ;Z¼rBg<MôòÛ]úwj§OÊ7?Û?ùßÖþ}ôô=ñè4| xÇ[gÆÔýñàÎòyíõƲ©,qÎ?¸XÀþGên-þzðÉ>;Ó_¼sÅy~½o·×í:ϯ÷íöà¯÷óÄÇФt{ÏÌïÎkg~<æGçñòÛyðÀßÎùQø!qÊûgÿ¨óíÎkG~ðÄÅö?üÐÐ7b¨¿DDà.à@ðg^w.�¥_BØÒ.Kö¯ÍÝã3øëóñë¡H¾ÖÝn Ãg*·W(Ae÷ïý5ÍÁÞ<kX_¿:*¸×zü2¿\zð¾Õ! !^8£#B8~$Èñ7tôÜÛWøWgÿ<|ÿ@øTØEáoù{å>NJ° :¾ ÿêëÏ*ýYî$¤¿ÎEã?»ùO«hÂõ¯ÈßÚn?_zøÝ5 \ù0yîõÃ~WùuïÌrAºwæl¸ø',@ää{w/Ð+O¥{>ä«û_W±ù2Pú,CT 0Gå°§ U>Ò«óA\åÞ!¹@ÐÐM Ù¬HëìyÕ48E°°&Ûðy»gÃ¥ÇîhÀW÷ÂI ±cP¡?[ÿ}yç�àñîÅ¿%KbÅP¬räy8ÊÄâÃ'륿,øù2»l=ËÜ¿l^¶^<{ó2^¾;Á*ôO(~9*LeOZðäe~@IÚ?`Íï#X?*»æ¯°|½;qmÌG¾ã§ö:à}ú&AP3d�½r}A0pÊ&]�^ù?õ·øàÛøÐ/ ¥N_@f¥wè?z·"]`ºþßõÛ¸ÞúióÇå `Ç4~ë\ô¶ç/à@ú!@é)I" À�@`sÔ@¶ÿ¼Iôã�f¥¿îýéúë¬üÿwkþ Z zü§¥Îjà¸#f ~q×èÏñGÍ øS"ýIüQµ ?Ôî{A8ðǧñu<zA¸vÞ? í=Ê×çû¸6øèòÝ| ~ÀÏ7ØË"(ý\/°oPÑbsõ#6RÞÏÐíB Ï6ð M_%áwWÔÐç +Þ0ëOÝ,ÿ²@+#Ù9V_Áò±/ßWÐà(-mkÇØîà©wÁø à䥥Àç!Z&Ú å>ãC¢õÀ¼¬ ©CHÙè°FnqòaH|D?òìU°XFÑe +%SH%|íDº6nÁ5rÿ.]ËÙ*ºÉä*y=ÕÞU:g¼ u|Vvè1î»tÙUðg½ÞUhix ,¹ÚÖßúu*`¼ë°Îiø@\t½×ãR¬ ãe¼bIñÀ(i½¢#,àe>Oÿh«ýò^Éa3ù +âohýò£jHhþ¯Ü¢ý)¬åNÑiü@AóÎ °¢^ +=Îq¦Ç ç×sÚµS>ÿòÿ@?ED=©+¸ø8ÑOwêäó§ûß!ÿÉ9ýqAó$åD¿¤< +îÉ?êFíüxXâß§4åÉù}<_²SêI³ò+fM~qPé/UÅáÇýyµJ÷¥åÇJINUTýÉ"5ýÇ¥¢=I^֯Ͽ«óó·¢¢}óE-h¼.¿=©qV~éùMR"_zRI²¤¦ËþeùüY©cÿPú%MÿÒ¤ÊÑýóRAúg ©®höO¯&ظþ³ù×EßäüÖ, *óWIý6ä¿ÿäÿÀùïHÿÔäZ ýôüQì_îù^löürDúo )1!÷·Õÿ<©ÉïöüiHÛös¶¤èYùÔß²ÿèI}û¬EòG·_<¤ªo¿°ôEÚ?/Hí?½!hPúíÐ~ÖC¬|Ïþàí¡ý"ÛÏ% ûS·=¤ªg?3þµÞ´¼bâ˽ßópYzíhvÝyÔÔ[=u¸|Ýywðlyÿ"Ê+Úg0¿þ¢ìIùåxÒã5ë9ÿ\DBHèüô`©{ëï%U^ÆëIÖM²Ç?|þMÒ¯hô£üc-ÇùÇ+ò¯Òþéú× ò?ïÙ®_ïÆåIýëÝX eOþð¤L$?Úõó¤Ì{òïõØ9?Þ¾À»óú*ê#þÑ;ÄEú¿/¨ßãf¼¾"Î÷o %Ú¿àÝ$/ãuðÆ*úógQ¿tÿ+Ô?zD÷ó£ 6´~¥ù¹"جõwÄ?ηGMÞ´ûÓÞZ÷áè¶~øëÝzJdBó¤´eM3ïËKz]ÆËÞW² Þþ)úSvÉþ=gò{EüÞfÞKZ]ÍÅ{I¯ÆSXÿËy¿~^Òëû±3PÒkÖ�qôIs@xE|ä�é)Õ9"ÜÆ®Ðý'MRôá¦üȲü üS4òOÎ?Í?ÐÎrÕÖÏÑ3¨?d$CBw@vw Ô äí?ÑëóúõÎů:UÓ¹� ¾z:ð^Âø_nG¹=ñópýñÕ¤÷yø8üt~ ö+Ý4´hþ;ßd¼ÁG½Ó£%í<}Ýý¶çñºû¬nÿüYIz´þøÐb§.û×[ +TÄ?öàahýzA/ß[?=?ëGt vÑo £Ðjjõı~dñzìÌî_ðAPùÀBÞ£½BóÄ.%tÿõdï§x@OÅ¥í_O2ø¹·z~ÐÖÿ>)Úý£ã«:ðEúg "ØîþvW4ÿÀýÝÐý}Û¶{ü·CóGïg-qfͧåÏ@?»�ç×c¢¦ùøæ×Ñ,tô%/÷Î/Ãõë±gðþë%mµ´éÙo,öaÖüoðq~½V³òËZõíG; ì/½¡÷QPþðùó.ö¢7û0+?½LO~Rô'Àó×cW"ßòùgÑÿ¡èCBö^SØû1NÓúOºþÊ/ÿi² ©Æ_çOúûI¿úÌ(>߯i<¥ßMÿ)ßôòMÿ)ßô²è?Qù³o·äOþSËÿ=+Ëø¯EÏ8ø¥Ù?tþø w~%ì·èçàÛ¶L+§u>8iàÕyvÙù±bÙeìÆz)\f×˹[Ø`v<r¬å¤}Y-ÛÞú9t·HG×µõójX¦úÎóëÐ¥-ô@?ÖÊüB?½¨¥_ÆDnUþ~_ïÅñþÎãõÈ©U»~:Ü%úQèÓn/ü§C;º?üoµ°gù?ZÚÂ,ÿ{äÖ,ÿÇæGªTwÕsߪ®¶pÅ Ûõ·ì¡çðØNIæçù¿l¦¹Ïã8?üîõÐh<è%wÆ·}ú¿hBè×%BHóÐÖm°`¡3ùÝø+Èü¸í#ÐgæÊeʲ-8üyþ@ï/×Kdpüâò²QKDPRÈ¿°¡/(E¥íA9GûÀ wµ[DçX¶ö¶³¢PÁÃ?°jçØÒàÉÑ:\W�8| +ѺÍ3Bt,rbÔ.×Óé}Ì·\ãYèÝ[>3]%¯óärF< xvú<^¯Ïºìâüø1Íû»ÇëiÇcº2?/dùr1ìÇëEãõ]kQ´ ýëÝý<¢?xtuAô×éTH¿ùÑú<ÊuèϪtÿx,4~¤AÖ.Ñçbl`üH,tÿGr1ÐýénÉÐþõPêÑüë·P̾ü%2èÃB*&ýãÞaô15×[òó(d¢ÐæXo¾ú%ë¯þHþ²Çp¨þåPÜèvlW°B(H~ 4¨Û¡üÖé·«çÏÓ$¿xwv´ÿTl¿ÈDöLçÝ¡zçÇ óÓs±#ró£û/uýª¶ÞÝÿ@wóu»e¾§íþK¦ÿèúwdÿ¬¿gçE³¿y!UÇÀ Éïw©ÿð>b\[!>é_½RÎÐÿÓ»sßÔß¹@ù-ë¯l ÌfïO®hü@*Ǫê?²þU[?L."ÿ\aLFëßô`ýÿá½fõwY´ûß+$Ò[¯H?ÁÁÉqÜßwÁìþÛcòQ{¦Äö=Ø»,~¤»úÓù>×oËã½×ëHX"Èeü@o¥,ÍÏ_7z<$ù|ÿÆ´vUñEÜ3Z¿ÑüD¦;zë§Ø] ë×±CK¾ÀÉóû=)×á½'|ÂMéã/(³â'Ü?ñ¦ü7åO\4úñÞðüéaW½ýÓõ[Î>ÿ3ì +_O#=ÞpÁþõD%ùC_óó3ô²~Àÿ¸,jðÇ:+@¬·Ú¬ðL hX6>ã%ªðU|HÖ©ÂÍyî+0VÅ®_¯ã± ùZC2ÐÚ< <ÐÚÚ"É{üKÁ.°^)e¤� +Édíüóæ½;Îã[çw»$y& +º¿-xHùgÕ ¯ þx6¤Àôp®$ <Cü¯?{ýõ:ÐÐrÐî¤~qøbÊ éBL9!p�ýÌè¡èÑ,�ºæ¶ +Ôæ¯Õè×ñm7--ÀÛFRèéË�ùêÁì�{¦,`ým*EO¨]ó.¤ª,:À +chüH9d£dø[hCØZÀðÃ(äBòÖ]Ñ£MËðõcØçì§áàüݯoçñ»,¿ö +¦×O?,h÷§RQÀó1D~Ú)úüñmô^³|óüæm¬LþÆë¯ÿL|ßâbèQÊ¥¥ë¶Mè¾Wâmù/¶m5QkÏð1ôC°Xüðkô¦`#`Hb Ö&¦Þ#¸"\ DlÖJ°Kg=úÀ +¸(ê×è(« µÃ>ýè`Zèá÷£ã&ñø¬hH þÌm0Ê ÚÞ¨Þ +bì*mîK^> 8SöoÒ:BNïG(F#ÌbkMQV( WÌ: -{(õh¸6$ðp*¤Qc«ÙMH²ÀMà¨ÚØ)åIf ÁTÚ Z£³EqÖzöI°7Z©Å±HÕb*ø²ZL+fY-¦ +9YWiÕL+Êk½É²FØ`ÇôøÅò(/7ez^nÊô#:êLÏQé¤TfD.ê^¿Bë('t¥Ù�ÏÉÐÂÖãs,¿â2¿�ÑÂ`µæÏ×�9è!¨HÄWY~Ãe¼0QÜ?+±ùQ|+CH,Öãóé7P*yxúþ(¾ï¿X|òÅÃHb-ýb£¯ä¶Ïáë×ð¦dÚøOãuÚ +õdw9õ×^t!ð©hù>|z©¥`¥úëgm¾5úñNE&=êûèÒ^ïËúõ÷/º9êM|j:òÂ7Ö^t+Y¿5èòOÿðñ?P*ØèÎãõRÁVèû<~ T°E·Oßÿ M¹e×߯7Àùúèü:~4B&¢óÓ£Ã=;'?i§¤äWû@Ï#lÌ 9ÿ:ÿÃÍÈÏo¿]¾òOËG>àò±ú¬þ²}WÀ¿Â¼OÆ´f^}Æh�Ð]Ç?S÷Ë)E}bøZ6ã9ÿK>w6ûe9]>ÐfÙ·äØá +& [pMÖßÂõ©Ñ>¸!ÓÙ?Pà +ÀkõÕ!}bðp³Ë@¸Ùµ½¸~@ðæ +Â+¯eÂò=b+(À"[¨ðÚ-P"zÈÉùEx2u¼}Ñ åï+�AS+¾L: 6ùÉ]ØÄëLù`ÏPy�%-4òü@\ü�Ðì^©KÆHÑ:ÐO߯£ûäm´`Ô2HÇ$TÛ- <Æî9 Ù°ô¶ÐªVµÀIxBµHö( *ÞN3e4X12ÑW ^gÊHÔÎ ¤ÁÛ¸ÁÛØuúËcë^gz +;60¯@h°C©\�Ôù}è×$l¥¡Æ$xÞ°»FDoLØ%"»G;m°,U[A¬Ün]goM8qm Ó@h.h+Èø6ÊöAÊø6Êå(0ËØö¤zÁؾ¾ù "ï4°·uAVZ×E·°b½ q=zûè]&f#½°fm¤´ÚrâU°Ö±f:JÝKÂÑiQÊ^ +ØuöÓ×9cÏ]gÌH^b@py°PͲrkæÑ`;±UïôL9ñõ6+_ÊÓD<WàtaÅmXW±P`Cs6²^áҳηÞï:ßôë+¸<ö]ø°Dݾ²Ü´Ê=¶`Ð<Ìþ(hùÛlð\§ÝÇëh¢5pºGö Æ?¬åÈu`0,Üҿ̯C8ÜÛ�Ó«Áw.�^/¬ÂüBÖ"ÜÛ]Aħ £â¯@Þ¶-$ÈÇh× ç[°NTÖÿRü#´t®W{[ààlwþ�ª¿B IJhw® míq~౯®ðÈç´,&½iò~À9ô>ÐVrö »Q"¡Á]LàB/FzëñqLÊD}qÁ2Q~B°�K$ýxÞÆè½wé +ÜYéûX*�ûIi9cYú±ÀëÜZúÔÆªMöøb`4j§2+?W°BFBµÈóÊ +±5Ô±HCåe 6Ñ> wH$ÀYÄS Ò(£¯ + ½»@a´( +U +£YÔë"¾Y/xø¬vN àÁýS°d#»ØH +߯W¡Ëdk=a¢?³%ld âã� %$hd øÝiwAW®/DxZ ìøÆá ºð¸Û÷4qä/ÚÙ>àeR¢©üúl¥åN!î@"a¿1{¶âÅo $+#Íéjë¾ÈDìØÈÒúrÁ¬rlhêtÅEvÿs²ËÁkóÈR@ÊÖÌ]ð@Ù°¤?1©+34_pÏÐd4(¤]`6@¥ª.¾Î%`ü@6¶K/Ó{LÚÿ11'»·p/å9Çëï/øcg®/ãëÆ!e3NâÖ{q'q¾2»à!}ý-t¢Ï@~¾¬@Õ#>EY-¾@íóÚ§Zd\îÝ #ëÞ+ȸGDJù@/^QʽS`�Î+íæò9èR¾w*æDý hÅòL? s¢~ +îíÌJÄWsÌ] +;d¤Ö]¢ißî]¦W à¾V!®CÊ©üÐE|Ï0gȨå/±LlùæàÄlï3çȾÆ+èrr£RV@ñØQÇc3< <6c©¬£âk&9{%ZòR÷.ðà-踼*T).ïÏl=±Îoª6ï¶5ϨÚÚÈLRFª-î,NZ44)Gd¢E.ÐÌÓÃÝSI w÷ÀS@^/ÙB¼)P^qÒ}F"xlÄì'| +òÃÿOJeóxL¦Zêsü»TÕè9LaïiFân8?àÜ«bóÀ(ÿ óZó¢]ÁZ<ê~VÓi(uÿv"¶ YôF²úa}½ACüqå´úÀ²*á1¤$fËë¼|@0t=ÆtóW{æ1U´øA¼ø¿l<qFòV&=Fb zðÚm§¤E63׺p¢àôù +v°Ð ðâo-èLÛ¦ÝöÌ÷Êë¼lA7ò ±2¡Iô,ª]çÅ= ê²A¹çOÞSh vÄÐ[wÁ{ÚOß £1Ê»½Þì]y¹w [z!$Ò¶£ÌHjgän0ß=«²Â»Peõ¿Õ9N2qä·¬ãuVvó|ý@Z䪿r±Ò»àþ +(ÚyàÑÝñY3ïðWnñAH;'ojì;@,©6`æÑ(,ª6¯³å½ò:{f^7¯sV¹¦ + åû³(ìpèó/=VQ*S×{Ã+ßx¼ãòõº}Z/\púK'§GEÕwDñLÞFû�6óÚg¹D½@o2R¢^àQ<&T{Ê©wíC]©È¼#(ÖC×ÅþÚéÊåräDp6:@÷W³Ñåz??0ðÊåÁ`èåüyäü=çÕâr +úS¡Wƺ|@Î/Ò@ =â¥ÙºDO¡À»0ðl^1è±òÁ@Jס¹|@!ñ:4íðÖsæ+ÀǨçÃmzJߨ¨ËÄ]¾L,_¦<(ÌÊrB]på"Êå¼dBÿ:-xm®i"&¨ÚÞ[Ý_H1ãÈéõdÜ»<©jêg!n¡bV¯s$2q ¸¤ÁHq/,åR:ÑÃhzRâXD¤éwaiÀ{Éf{2Y¢KÑV@>"TÞñn×þ¬Ú0K¸º_îÂûå?þ"|ß~ù_?<$ðcü·È³_~ù£PwÜ_-ëãÿüæÛ?ü÷?}ûýï~ýÓÿöÓ?û÷ùÅ·?ÿõO¿ù¿¿þé7ßþçÿûöïÿùóï~ÿûo¿ú_ÿê¿ýâãÛþî§ÿõÓ_þöOß~ûóÏþçüûßÿþñóo÷·?þôó¿ +ký¯¿þ?þÿü·cÜÇoþÃïÿñÛ/ÿ÷ÿúËÇêþ?(U´ +endstream +endobj +290 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 763 0 R +/Name /Im273 +/Width 27 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuÍ= +Â@áW,l[!«6¹D`/Ý9çØ£ä)-d&_°³xùý®ÉÉâòÌÒÈ?Jã¶íêÆ;3Å@Ý´JòXÙOSÝÔ·jÊ?8ý:)0ºþù~,¶Ä6C +endstream +endobj +291 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 764 0 R +/Name /Im274 +/Width 24 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿöd f$ÄFlìøØÈ±¨ûÿÿIÈ×Ï�!, +endstream +endobj +292 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 765 0 R +/Name /Im275 +/Width 14 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcxÀÌØð=y ñÀàAÁþÿùÿá²ÿaÿÃ'\?I�î4. +endstream +endobj +293 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 766 0 R +/Name /Im276 +/Width 12 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKH¨P !óê<HH`(`(p(x�d&eåxë& �w» +endstream +endobj +294 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 767 0 R +/Name /Im277 +/Width 6 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øñçO A_Í|^�Pu +endstream +endobj +295 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 768 0 R +/Name /Im278 +/Width 14 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc~ÀÿAÆÂ¢¡áÃóï?|°ø ó�d +$,ä°à®$�ʪ +endstream +endobj +296 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 769 0 R +/Name /Im279 +/Width 27 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]αÂ0DÑïq ð + ¸ÊPK4�ºj\Ç¢xX0/Û]Êõ Ëa±¾,J÷´¬éqªGÃh0É:ò®î FZá9áýWûSO£1ÅØ£ô'«}?%Ûc»~�}è@~ +endstream +endobj +297 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 770 0 R +/Name /Im280 +/Width 32 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5ȱ @ÑO(®d�1q kÙÁNã(@iA8¯Ðâ%?_{ú&Å?ë7f;äÒcÄ +ÁµØ&v8l +g«éöw¬¾ª-éoòµ¾ü-¹ +endstream +endobj +298 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 771 0 R +/Name /Im281 +/Width 23 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=̱ Ðo(°£´1ÁIt%'85â*¸ #\y¹ +M^ýOXqÆ÷ðHL²¹ ÐzdµbÄP þè³¢6û~f¦ îù¸(5 +endstream +endobj +299 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 772 0 R +/Name /Im282 +/Width 39 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃÿÿÿìØ� Æ? â`�ÿqÿ`êÀ:ì £+�$ö�*ñLüÀBüA#ø@òýÿßø_æÿÿÿ?üu¥º Z�=<OM +endstream +endobj +300 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 773 0 R +/Name /Im283 +/Width 32 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃÿÿÿØð`?Àüý�à ®b(¶b9('aêì zk f}Ï�dß ½ +òuóÔ�L),5 +endstream +endobj +301 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 774 0 R +/Name /Im284 +/Width 20 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÀÿÿäÈ1@Ð9(²`ÿB@1�QCH%ãÿÿAHD¼n$�ÉßQ +endstream +endobj +302 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 775 0 R +/Name /Im285 +/Width 19 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿ9ö9ærÌPÑ ¸üù?rØÑÿ $,^7M�dE +endstream +endobj +303 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 776 0 R +/Name /Im286 +/Width 33 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=ı 0Ð/Wf`a âJ238£d+Sñ~_ñÚ--·bbTL½%ïeË1¹Y±Fµ^µð°E¶2ÏÜÅÔ6þ +lhú0ût./U}$ +endstream +endobj +304 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 777 0 R +/Name /Im287 +/Width 34 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßþÏþÀ!ÇðH°1È1þ`càgüÁ%mxØm$ Dó19(qNÞñ øÃÿáûdâ3(`nJâõÓÔ�lu! +endstream +endobj +305 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 778 0 R +/Name /Im288 +/Width 30 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÀÀPÿñó~öö~ KñPÔáC î``¨øÁÀPCÃÔ0H?Èy sAæìÙ²h¿bÍ|5�Oæ*+ +endstream +endobj +306 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 779 0 R +/Name /Im289 +/Width 22 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿÿ9örä>QÕ`C© e@õìzÿÿc¯&�ª=ê +endstream +endobj +307 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 780 0 R +/Name /Im290 +/Width 24 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨ã`þ?ýà~ +9 + Ä@üÿ¨¡¢¡Â¤²¨ýÀæÿ?ê9$Äë¦É�y^§ +endstream +endobj +308 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 781 0 R +/Name /Im291 +/Width 16 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc8ÀxÿÀÿ0ÿ\õ\I�¨s£ +endstream +endobj +309 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 782 0 R +/Name /Im292 +/Width 30 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿÿG=×°øQÀ~À"ý?`? sý�2f`?À@ ÌüÿËÉ×ÎS� +N) +endstream +endobj +310 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 783 0 R +/Name /Im293 +/Width 23 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÇÀü¿¿ù<ã;6556?ì0P(TT TÔÔËðA\¼n,� + +endstream +endobj +311 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 784 0 R +/Name /Im294 +/Width 11 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcn`BþùéãâÇ ÿüÀÜ�òäpÔ÷ó�ýá +endstream +endobj +312 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 785 0 R +/Name /Im295 +/Width 36 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûü¿üÿ Báó9 +Æ~ +f(ñ½áh&øÎãa`>Ì%óK00>çÁÀø}Ã7ö PâóæP¢FX0``0`8À "U?S�Ø' +endstream +endobj +313 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 786 0 R +/Name /Im296 +/Width 26 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¡þÀ æg°càg�b N�âü üÌül@ÌÄr@lÄù@|(×TÃR÷�?�õpÛ0Ìüÿáÿª)�C1ò +endstream +endobj +314 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 787 0 R +/Name /Im297 +/Width 26 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÀþÀ càcàgààö 0f>`�ÇàáÃþ Ä lÏÀrHAJª~¦,�àû +endstream +endobj +315 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 788 0 R +/Name /Im298 +/Width 16 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc(`(`øÀÌìl|< +þC²ÿgÿ/ Q?]�ú +endstream +endobj +316 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 789 0 R +/Name /Im299 +/Width 19 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨a`üÇÀÜÎÀÎÏÀDl|ôÿ?ñ±FõüHXªa¦(�Ä´ +endstream +endobj +317 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 790 0 R +/Name /Im300 +/Width 11 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKh¨o¨g¨aH�Â|ú 8<xðàáú{nú~~�P +endstream +endobj +318 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 791 0 R +/Name /Im301 +/Width 25 +/Height 10 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿà fÀþCå%¹êzå�j[A +endstream +endobj +319 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 792 0 R +/Name /Im302 +/Width 14 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xão`ð¡âGü`øÀðñÿþ555?j~T|¨(ø`ÿ¿O¢nº0�÷ +endstream +endobj +320 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 793 0 R +/Name /Im303 +/Width 14 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xK¨ÿQÿ¡þA}C¦¨PQ`Á`Á`Ã``ó-* +>Ø?àoà¨.�Q0C +endstream +endobj +321 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 794 0 R +/Name /Im304 +/Width 26 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿÿüÌø?0ð3ð4ü"RRûÈn�b á0|�¨÷Àÿõ ÿ?Ø3HIÕÏ�6{"¥ +endstream +endobj +322 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 795 0 R +/Name /Im305 +/Width 25 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}̱ áÚ`ÜÜ2.Aa5ÜGaJ;<À\¾äòòîÈ`FÅÞG"¨ÛÁªãÁ?³3»óF¼$âömýûM®£hjLh¨Dyí¼Âõ#^ +endstream +endobj +323 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 796 0 R +/Name /Im306 +/Width 11 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xco?`y ð@Ã#÷ ÿ|x� +Ø7È3pÔ÷ó�£ +endstream +endobj +324 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 480 0 R >> /XObject << /Im99 106 0 R /Im72 79 0 R /Im97 104 0 R /Im283 300 0 R /Im284 301 0 R /Im284 301 0 R /Im285 302 0 R /Im106 113 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im53 60 0 R /Im42 49 0 R /Im47 54 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im283 300 0 R /Im284 301 0 R /Im284 301 0 R /Im285 302 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im55 62 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im72 79 0 R /Im168 177 0 R /Im44 51 0 R /Im46 53 0 R /Im43 50 0 R /Im70 77 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im51 58 0 R /Im65 72 0 R /Im44 51 0 R /Im48 55 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im70 77 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im89 96 0 R /Im42 49 0 R /Im61 68 0 R /Im46 53 0 R /Im54 61 0 R /Im51 58 0 R /Im55 62 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im63 70 0 R /Im62 69 0 R /Im53 60 0 R /Im63 70 0 R /Im51 58 0 R /Im55 62 0 R /Im72 79 0 R /Im56 63 0 R /Im44 51 0 R /Im42 49 0 R /Im47 54 0 R /Im62 69 0 R /Im53 60 0 R /Im53 60 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im38 45 0 R /Im24 31 0 R /Im24 31 0 R /Im91 98 0 R /Im24 31 0 R /Im87 94 0 R /Im33 40 0 R /Im43 50 0 R /Im68 75 0 R /Im70 77 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im65 72 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im45 52 0 R /Im63 70 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im97 104 0 R /Im41 48 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im53 60 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im49 56 0 R /Im100 107 0 R /Im104 111 0 R /Im101 108 0 R /Im103 110 0 R /Im88 95 0 R /Im64 71 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im24 31 0 R /Im33 40 0 R /Im36 43 0 R /Im96 103 0 R /Im20 27 0 R /Im49 56 0 R /Im100 107 0 R /Im100 107 0 R /Im113 120 0 R /Im106 113 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im65 72 0 R /Im44 51 0 R /Im70 77 0 R /Im51 58 0 R /Im48 55 0 R /Im46 53 0 R /Im54 61 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im43 50 0 R /Im68 75 0 R /Im70 77 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im62 69 0 R /Im42 49 0 R /Im66 73 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im65 72 0 R /Im44 51 0 R /Im48 55 0 R /Im68 75 0 R /Im43 50 0 R /Im68 75 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im43 50 0 R /Im61 68 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im54 61 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im42 49 0 R /Im43 50 0 R /Im68 75 0 R /Im70 77 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im62 69 0 R /Im42 49 0 R /Im43 50 0 R /Im48 55 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im62 69 0 R /Im75 82 0 R /Im51 58 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im65 72 0 R /Im44 51 0 R /Im48 55 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im49 56 0 R /Im61 68 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im44 51 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im75 82 0 R /Im42 49 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im53 60 0 R /Im42 49 0 R /Im45 52 0 R /Im66 73 0 R /Im51 58 0 R /Im45 52 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im72 79 0 R /Im88 95 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im49 56 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im44 51 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im46 53 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im43 50 0 R /Im42 49 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im61 68 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im75 82 0 R /Im62 69 0 R /Im45 52 0 R /Im67 74 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im42 49 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im55 62 0 R /Im51 58 0 R /Im51 58 0 R /Im65 72 0 R /Im53 60 0 R /Im64 71 0 R /Im46 53 0 R /Im54 61 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im66 73 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im72 79 0 R /Im170 179 0 R /Im72 79 0 R /Im97 104 0 R /Im286 303 0 R /Im284 301 0 R /Im287 304 0 R /Im106 113 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im53 60 0 R /Im42 49 0 R /Im47 54 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im286 303 0 R /Im284 301 0 R /Im287 304 0 R /Im36 43 0 R /Im96 103 0 R /Im34 41 0 R /Im36 43 0 R /Im187 196 0 R /Im87 94 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im53 60 0 R /Im42 49 0 R /Im47 54 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im54 61 0 R /Im64 71 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im75 82 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im42 49 0 R /Im47 54 0 R /Im62 69 0 R /Im53 60 0 R /Im53 60 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im62 69 0 R /Im47 54 0 R /Im47 54 0 R /Im68 75 0 R /Im45 52 0 R /Im43 50 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im65 72 0 R /Im44 51 0 R /Im46 53 0 R /Im43 50 0 R /Im70 77 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im62 69 0 R /Im70 77 0 R /Im43 50 0 R /Im51 58 0 R /Im45 52 0 R /Im63 70 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im61 68 0 R /Im62 69 0 R /Im43 50 0 R /Im44 51 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im62 69 0 R /Im47 54 0 R /Im47 54 0 R /Im68 75 0 R /Im45 52 0 R /Im53 60 0 R /Im62 69 0 R /Im47 54 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im49 56 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im54 61 0 R /Im43 50 0 R /Im61 68 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im43 50 0 R /Im68 75 0 R /Im70 77 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im66 73 0 R /Im53 60 0 R /Im62 69 0 R /Im70 77 0 R /Im42 49 0 R /Im53 60 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im97 104 0 R /Im73 80 0 R /Im70 77 0 R /Im51 58 0 R /Im53 60 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im49 56 0 R /Im100 107 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im72 79 0 R /Im105 112 0 R /Im72 79 0 R /Im97 104 0 R /Im288 305 0 R /Im225 236 0 R /Im289 306 0 R /Im106 113 0 R /Im94 101 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im63 70 0 R /Im51 58 0 R /Im42 49 0 R /Im53 60 0 R /Im43 50 0 R /Im62 69 0 R /Im44 51 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im53 60 0 R /Im42 49 0 R /Im47 54 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im288 305 0 R /Im225 236 0 R /Im289 306 0 R /Im72 79 0 R /Im94 101 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im97 104 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im62 69 0 R /Im65 72 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im286 303 0 R /Im284 301 0 R /Im287 304 0 R /Im106 113 0 R /Im42 49 0 R /Im54 61 0 R /Im51 58 0 R /Im75 82 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im37 44 0 R /Im24 31 0 R /Im39 46 0 R /Im24 31 0 R /Im23 30 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im53 60 0 R /Im42 49 0 R /Im47 54 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im54 61 0 R /Im51 58 0 R /Im89 96 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im62 69 0 R /Im54 61 0 R /Im53 60 0 R /Im64 71 0 R /Im70 77 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im53 60 0 R /Im68 75 0 R /Im55 62 0 R /Im51 58 0 R /Im55 62 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im67 74 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im47 54 0 R /Im62 69 0 R /Im61 68 0 R /Im65 72 0 R /Im53 60 0 R /Im51 58 0 R /Im44 51 0 R /Im51 58 0 R /Im54 61 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im72 79 0 R /Im171 180 0 R /Im72 79 0 R /Im97 104 0 R /Im227 238 0 R /Im226 237 0 R /Im290 307 0 R /Im291 308 0 R /Im49 56 0 R /Im227 238 0 R /Im226 237 0 R /Im290 307 0 R /Im224 235 0 R /Im225 236 0 R /Im225 236 0 R /Im106 113 0 R /Im58 65 0 R /Im62 69 0 R /Im61 68 0 R /Im51 58 0 R /Im44 51 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im43 50 0 R /Im68 75 0 R /Im70 77 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im43 50 0 R /Im61 68 0 R /Im42 49 0 R /Im54 61 0 R /Im64 71 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im47 54 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im72 79 0 R /Im168 177 0 R /Im44 51 0 R /Im42 49 0 R /Im53 60 0 R /Im43 50 0 R /Im62 69 0 R /Im61 68 0 R /Im42 49 0 R /Im64 71 0 R /Im70 77 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im44 51 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im46 53 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im75 82 0 R /Im51 58 0 R /Im53 60 0 R /Im53 60 0 R /Im71 78 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im97 104 0 R /Im46 53 0 R /Im54 61 0 R /Im75 82 0 R /Im48 55 0 R /Im46 53 0 R /Im47 54 0 R /Im48 55 0 R /Im47 54 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im61 68 0 R /Im42 49 0 R /Im54 61 0 R /Im64 71 0 R /Im47 54 0 R /Im68 75 0 R /Im44 51 0 R /Im62 69 0 R /Im112 119 0 R /Im43 50 0 R /Im48 55 0 R /Im42 49 0 R /Im63 70 0 R /Im51 58 0 R /Im62 69 0 R /Im47 54 0 R /Im47 54 0 R /Im68 75 0 R /Im45 52 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im106 113 0 R /Im72 79 0 R /Im168 177 0 R /Im54 61 0 R /Im43 50 0 R /Im68 75 0 R /Im47 54 0 R /Im48 55 0 R /Im47 54 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im43 50 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im51 58 0 R /Im65 72 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im69 76 0 R /Im42 49 0 R /Im46 53 0 R /Im53 60 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im70 77 0 R /Im51 58 0 R /Im42 49 0 R /Im66 73 0 R /Im62 69 0 R /Im62 69 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im55 62 0 R /Im46 53 0 R /Im47 54 0 R /Im42 49 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im42 49 0 R /Im61 68 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im44 51 0 R /Im62 69 0 R /Im69 76 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im53 60 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im55 62 0 R /Im64 71 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im51 58 0 R /Im55 62 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im44 51 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im46 53 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im44 51 0 R /Im62 69 0 R /Im70 77 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im63 70 0 R /Im51 58 0 R /Im55 62 0 R /Im72 79 0 R /Im168 177 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im61 68 0 R /Im42 49 0 R /Im64 71 0 R /Im70 77 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im44 51 0 R /Im62 69 0 R /Im43 50 0 R /Im51 58 0 R /Im53 60 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im49 56 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im45 52 0 R /Im51 58 0 R /Im44 51 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im95 102 0 R /Im32 39 0 R /Im90 97 0 R /Im90 97 0 R /Im24 31 0 R /Im87 94 0 R /Im33 40 0 R /Im43 50 0 R /Im68 75 0 R /Im70 77 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im62 69 0 R /Im54 61 0 R /Im51 58 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im51 58 0 R /Im51 58 0 R /Im65 72 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im43 50 0 R /Im68 75 0 R /Im70 77 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im49 56 0 R /Im66 73 0 R /Im62 69 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im70 77 0 R /Im64 71 0 R /Im54 61 0 R /Im68 75 0 R /Im61 68 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im54 61 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im70 77 0 R /Im64 71 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im46 53 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im65 72 0 R /Im44 51 0 R /Im48 55 0 R /Im43 50 0 R /Im72 79 0 R /Im56 63 0 R /Im55 62 0 R /Im45 52 0 R /Im42 49 0 R /Im75 82 0 R /Im70 77 0 R /Im42 49 0 R /Im47 54 0 R /Im67 74 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im68 75 0 R /Im61 68 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im54 61 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im61 68 0 R /Im68 75 0 R /Im43 50 0 R /Im44 51 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im51 58 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im65 72 0 R /Im42 49 0 R /Im45 52 0 R /Im44 51 0 R /Im62 69 0 R /Im69 76 0 R /Im51 58 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im71 78 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im64 71 0 R /Im49 56 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im68 75 0 R /Im47 54 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im112 119 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im54 61 0 R /Im68 75 0 R /Im61 68 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im46 53 0 R /Im51 58 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im43 50 0 R /Im46 53 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im42 49 0 R /Im66 73 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im54 61 0 R /Im42 49 0 R /Im61 68 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im44 51 0 R /Im62 69 0 R /Im69 76 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im42 49 0 R /Im66 73 0 R /Im51 58 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im47 54 0 R /Im42 49 0 R /Im54 61 0 R /Im70 77 0 R /Im51 58 0 R /Im46 53 0 R /Im61 68 0 R /Im65 72 0 R /Im53 60 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im75 82 0 R /Im62 69 0 R /Im63 70 0 R /Im42 49 0 R /Im45 52 0 R /Im46 53 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im49 56 0 R /Im43 50 0 R /Im42 49 0 R /Im64 71 0 R /Im227 238 0 R /Im226 237 0 R /Im290 307 0 R /Im291 308 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im227 238 0 R /Im226 237 0 R /Im290 307 0 R /Im224 235 0 R /Im225 236 0 R /Im225 236 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im51 58 0 R /Im45 52 0 R /Im47 54 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im53 60 0 R /Im51 58 0 R /Im54 61 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im43 50 0 R /Im307 326 0 R /Im54 61 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im49 56 0 R /Im75 82 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im307 326 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im68 75 0 R /Im61 68 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im70 77 0 R /Im62 69 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im44 51 0 R /Im62 69 0 R /Im62 69 0 R /Im70 77 0 R /Im44 51 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im72 79 0 R /Im110 117 0 R /Im72 79 0 R /Im97 104 0 R /Im292 309 0 R /Im287 304 0 R /Im293 310 0 R /Im283 300 0 R /Im284 301 0 R /Im284 301 0 R /Im285 302 0 R /Im49 56 0 R /Im292 309 0 R /Im287 304 0 R /Im293 310 0 R /Im227 238 0 R /Im226 237 0 R /Im290 307 0 R /Im291 308 0 R /Im106 113 0 R /Im73 80 0 R /Im70 77 0 R /Im51 58 0 R /Im53 60 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im97 104 0 R /Im100 107 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im45 52 0 R /Im46 53 0 R /Im70 77 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im42 49 0 R /Im33 40 0 R /Im34 41 0 R /Im93 100 0 R /Im308 327 0 R /Im96 103 0 R /Im24 31 0 R /Im39 46 0 R /Im24 31 0 R /Im96 103 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im72 79 0 R /Im58 65 0 R /Im62 69 0 R /Im55 62 0 R /Im62 69 0 R /Im51 58 0 R /Im43 50 0 R /Im58 65 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im51 58 0 R /Im112 119 0 R /Im51 58 0 R /Im45 52 0 R /Im97 104 0 R /Im100 107 0 R /Im100 107 0 R /Im171 180 0 R /Im106 113 0 R /Im49 56 0 R /Im47 54 0 R /Im62 69 0 R /Im61 68 0 R /Im70 77 0 R /Im46 53 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im46 53 0 R /Im61 68 0 R /Im65 72 0 R /Im53 60 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im283 300 0 R /Im284 301 0 R /Im284 301 0 R /Im285 302 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im286 303 0 R /Im284 301 0 R /Im287 304 0 R /Im72 79 0 R /Im58 65 0 R /Im68 75 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im71 78 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im75 82 0 R /Im62 69 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im64 71 0 R /Im309 328 0 R /Im72 79 0 R /Im181 190 0 R /Im65 72 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im47 54 0 R /Im62 69 0 R /Im53 60 0 R /Im53 60 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im167 176 0 R /Im310 329 0 R /Im46 53 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im51 58 0 R /Im75 82 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im70 77 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im62 69 0 R /Im42 49 0 R /Im55 62 0 R /Im51 58 0 R /Im65 72 0 R /Im44 51 0 R /Im48 55 0 R /Im66 73 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im115 122 0 R /Im68 75 0 R /Im42 49 0 R /Im53 60 0 R /Im44 51 0 R /Im62 69 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im51 58 0 R /Im65 72 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im89 96 0 R /Im44 51 0 R /Im42 49 0 R /Im54 61 0 R /Im44 51 0 R /Im111 118 0 R /Im45 52 0 R /Im43 50 0 R /Im44 51 0 R /Im71 78 0 R /Im53 60 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im53 60 0 R /Im71 78 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im51 58 0 R /Im75 82 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im53 60 0 R /Im42 49 0 R /Im47 54 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im49 56 0 R /Im75 82 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im89 96 0 R /Im44 51 0 R /Im42 49 0 R /Im54 61 0 R /Im44 51 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im43 50 0 R /Im43 50 0 R /Im48 55 0 R /Im46 53 0 R /Im69 76 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im62 69 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im55 62 0 R /Im71 78 0 R /Im53 60 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im53 60 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im103 110 0 R /Im310 329 0 R /Im62 69 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im75 82 0 R /Im46 53 0 R /Im43 50 0 R /Im51 58 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im51 58 0 R /Im75 82 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im43 50 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im55 62 0 R /Im71 78 0 R /Im53 60 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im53 60 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im68 75 0 R /Im43 50 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im51 58 0 R /Im75 82 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im43 50 0 R /Im42 49 0 R /Im53 60 0 R /Im75 82 0 R /Im42 49 0 R /Im64 71 0 R /Im43 50 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im49 56 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im46 53 0 R /Im61 68 0 R /Im65 72 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im42 49 0 R /Im54 61 0 R /Im44 51 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im61 68 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im75 82 0 R /Im62 69 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im97 104 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im61 68 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im55 62 0 R /Im51 58 0 R /Im65 72 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im69 76 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im106 113 0 R /Im46 53 0 R /Im43 50 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im75 82 0 R /Im45 52 0 R /Im46 53 0 R /Im44 51 0 R /Im44 51 0 R /Im51 58 0 R /Im54 61 0 R /Im72 79 0 R /Im94 101 0 R /Im51 58 0 R /Im47 54 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im292 309 0 R /Im287 304 0 R /Im293 310 0 R /Im283 300 0 R /Im284 301 0 R /Im284 301 0 R /Im285 302 0 R /Im72 79 0 R /Im94 101 0 R /Im51 58 0 R /Im42 49 0 R /Im53 60 0 R /Im43 50 0 R /Im62 69 0 R /Im44 51 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im42 49 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im62 69 0 R /Im66 73 0 R /Im62 69 0 R /Im68 75 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im61 68 0 R /Im70 77 0 R /Im46 53 0 R /Im54 61 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im286 303 0 R /Im284 301 0 R /Im287 304 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im227 238 0 R /Im226 237 0 R /Im290 307 0 R /Im291 308 0 R /Im97 104 0 R /Im69 76 0 R /Im68 75 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im71 78 0 R /Im54 61 0 R /Im62 69 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im42 49 0 R /Im43 50 0 R /Im292 309 0 R /Im287 304 0 R /Im293 310 0 R /Im227 238 0 R /Im226 237 0 R /Im290 307 0 R /Im291 308 0 R /Im106 113 0 R /Im72 79 0 R /Im117 124 0 R /Im311 330 0 R /Im158 165 0 R /Im132 139 0 R /Im123 130 0 R /Im156 163 0 R /Im121 128 0 R /Im120 127 0 R /Im134 141 0 R /Im194 203 0 R /Im148 155 0 R /Im195 204 0 R /Im196 205 0 R /Im147 154 0 R /Im197 206 0 R /Im121 128 0 R /Im131 138 0 R /Im137 144 0 R /Im156 163 0 R /Im123 130 0 R /Im131 138 0 R /Im123 130 0 R /Im120 127 0 R /Im126 133 0 R /Im123 130 0 R /Im157 164 0 R /Im126 133 0 R /Im152 159 0 R /Im123 130 0 R /Im126 133 0 R /Im162 169 0 R /Im128 135 0 R /Im155 162 0 R /Im156 163 0 R /Im123 130 0 R /Im122 129 0 R /Im123 130 0 R /Im156 163 0 R /Im126 133 0 R /Im124 131 0 R /Im138 145 0 R /Im120 127 0 R /Im125 132 0 R /Im137 144 0 R /Im128 135 0 R /Im125 132 0 R /Im121 128 0 R /Im126 133 0 R /Im121 128 0 R /Im128 135 0 R /Im120 127 0 R /Im126 133 0 R /Im138 145 0 R /Im132 139 0 R /Im156 163 0 R /Im123 130 0 R /Im121 128 0 R /Im120 127 0 R /Im138 145 0 R /Im125 132 0 R /Im156 163 0 R /Im121 128 0 R /Im134 141 0 R /Im152 159 0 R /Im126 133 0 R /Im156 163 0 R /Im127 134 0 R /Im157 164 0 R /Im121 128 0 R /Im312 331 0 R /Im123 130 0 R /Im124 131 0 R /Im123 130 0 R /Im120 127 0 R /Im126 133 0 R /Im162 169 0 R /Im138 145 0 R /Im127 134 0 R /Im143 150 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 325 0 R +>> +endobj +325 0 obj +<< +/Length 797 0 R +/Filter /FlateDecode +>> +stream +x¥}˲-¹qݼ¿â¥N^õÐÐ!1Bâl´ùf;þ{ï:¹ïEa¨IÇ( ßÈ\ùþãã/?¿ÿðÒçåsYì¿Ûg|ü÷È[Î[KÌ¿þÃ?þÛãã_þôÃ|G¾þø{òçÿ ËòyìWú-^éãçzY>Ï%?°?7Ï_Ø®?°}®ûuÿù¤é³,× Ä=] î/(%>~àA~ ë?°«?PVø)Ã(ú!æbXÖë/¬[§¸ÔoXï¶P+}ùÜÖ+ýy/!¬_t-}Þû#X.·ø<ÕóâÚ®ô=WúÐúÝ ÒõSÖüÕ ~ý<Öç<×_?÷ÕèWp{ÇÅ_çÑùëþóî/wbHϯDßI!=¿rHç÷`Ïé×¾íèéú[ïïÊ¿F¿£óïD8uûJTØÑúY ¯ëwÿôþUº?&¿qò#Ëo\¶[÷Z_¿ÿ´>³"1"ùqXuX³úØÄ²À¬H=uA<ÐÙÆÃqM"cºC$CXâVDuèC³K:´·Uv¤C~þAáüëùâëÒúìüÒlø +ÎëàôÐ!¦ëÈÀÅ68ôý½ f®pzø0_®pCß»Âés]Ðù§Ök§¤n1@ʳX/�ª°^0J%õ·Î ¥PFNÙÿªí¡´îNdýþ 1p¯@è÷ïèþ¸ßsÒ¾¿ç?æäÝ¿îäåÞùç°çOÖèüõ "GSïvþYzþ ÝþL~²(ÿsÑHþuÿµËeÐó[5JÏoÕÎòÄÐóß5ÉÞáùuû§òs$IÓó?P©;o¿(¢þ ôAv%@û%ÛP÷¿e +BÃóþZú½Ï ª¥ïí/MÄÖï@æ¿y´¾÷_h m9 äüsÏËOÈ;8?ÅþTú²¢óÓïï�öûïõ/MB¬¿l¿ÂÁúºþ º?Gr½¿<º~|k¿éùxþ$�_"¿NÐ�pAüã@âG�4ù¥|ÐÎɬù÷üÓóH~ç´ó§ûO´ÿòõf�èsAç'ûogJ9G¨¿ú�î¿&¡Çû'IÄêÿÍêï¸"û×ëo@8Xg¡¥ïOnëïHGI_zÿÇ&Ùf?Ò²"zðÁ@áÿ¥ ñß(4¦'ù¨ùXné[ú×òO³ú7Õøs¤¿BÇÿé3ÏüÓS~¾·¿YÿÔ_ºÿ +´_²ÿ ÿ¥ûiµóó?Òôî¤@æ¿]³ÿôþvdÿùÏC?z~´2ÿçÉ_Ïÿ[g?Ù¿M~8ó_wÎ?Ç{òaü§äÚü×ôúPÿ8ò7Yõ®þ寰ÿI_¿l>Êñk^Ñú=}?¨ùËuúçó'yÓÖgþCÞÖ¯*Kþ¢ózû]ùgç/<`~Ë)úÊ?Ô?üâ_=ÿvæÏùáù7(?zþ-@ÿÕCú¿§§ù#Ûÿ¦ü¯ðð?¿î¿¥Þ¿jþÀüÇmäÿIþ%´½*VûÑÐëùK«c}?/ÂÚÅõÉ÷ç$}?Ïü[¿¾?¤ýÓü_}¿¼ÐËö;¬ÿò"¨�è=EPø~Gþnü«çï0É¿uÿâGü»$ÄÿzIÍû·ô½þ¦ùÎüGÐ䡯X ðC½«å=¾Âµc�¹¼H@+jæHÐ`ëË XÔd 8¤@â(J `ÆøW¬1(ǵìgìÿõûböü`t4î¡È¶ÝèÃ*PÈ þ�P!ìvøô9ÄX28°t<_Ap@2¸'ôjDëL´N^Å¡!$!j�:1J%®QeÑ$N~Vµô}Ã7@ß!¼*#úÎ @NÄWk]uô´ +î¡Cb§Cb'B4÷"ïè´ÝÓiÃ(ë´càøý@òhÕ§ÚÔÓÚaÐB/ñá õLÔ¿D°vlüÖÈí$Ù^'=ÁW&j2ÈRù%âj# ='<q²ÿ\Äý³Lv~´Í2áÃHUb©ÉÀHU²LT¿ðïCtþ¥Ø:¢r$wx& ñOïÈ 3I`~~FBz&Ç*±F<ÍÔvºµò!§'ZÊ~¡Ûyeò[zG;^Õ_ ½£+î`}G;WÚ¤õi&ĹöûõL^m§ßÉ$ìß Yx¬kCûèW%Ö`ÿt}{ t¯oôÚùÓLÖÿÉôh/q ½I?+©ó£Ö×3¹g%"?þèPû£ë'Ähÿ$Tþg (ÿ»DÒý*ÿäü¦?y"'ýëö?ÞÔqCò:}mÅÝOoiò¹~[ØVÉtO~Ó¢Ê/I,PêI¨?IK õ9¿¤ó£T)HüK÷/ú´ç¥?ÊTü2:?O%Ô_ÀþJ¬Ñ+F¯éºþ¦Ï+àúz%àüG%àüo¥µòUb¶ü#ûgþF±?4õ#ýý%1rË~ùíþIüm/éø~?ôJòl/éùañWþ¿Èù Ý?Í?ê+Z_óÈë!?ýþ ñâ?ÙïÙ¼köòÏü7=~-ËrËþX'ÞlüZ&¿ìþK@ñ¿~ÿ¯üMÍcºã×ÚI|¡×ã×Xýÿ^_Cí$néõø5XþºÝ¿lUR¶ôz%R`}=~ yèéýU8¤ÑýàÆûgù,òëÄ;¤ó§ô\_Ï?nðþxY:?Êÿ?jéõNÄd0â^ ø×¿Z%á¤þ}¿¢jüoñ×ðþÈþ#\_ïK¬¯ûßêG!MÒý±Jü3ÿÓÓ÷ø<£ñ?Í?MþyþgäîÓô7£uò>üÐø9îý¢ü¿#ûÙó?íä;Òóý¼½ùý<-Hþõ÷ó´Àû×;,þä¿[öÿ,³ÿõû#ú~½>%MÓï¿éÿ$Ñÿápµ¨¾Å© ý¯ÇgþèÖù7ÏOÔ?¼lôǰ¥ïòôü¡þÑßOÓìCddHþý"ñs·ü,ÆO<£?Ïß ó×;é3ôN³þçNübHL£ó£ù·¬ú¿¬~hÖþCrRüzÿÖ6{ÿ0~räï6?ÐïWã_";=w@ÿ_ó×ãÇRàFþÿY ýï¿QòGVdù0x?$ñ§!9åÉNCrÊsõÁÞÿóûú7 +gmú³¥×á¬SÍÿµû×ó¤ÒÒöËêªýøqïîçt~{öÏë4þáù£(ùþu¾ÒW(à=J°Õ"ò^CRùºË?5ô}ïDÒþyý½~È:ÑÚûë#Ô?züCÓ¨¿ÊÞúËÿGtü]D߯Ç/Ñèòà vD¯#AUºÿÐúËô=«´_E>²_Êê¹ÆÃüUz_ÿÎëÈdÿ»¶ývÿ4~^àý; Èü{ ÈI~èþ¢×å÷ 5Ôÿ¬ ÙOGýöôüaÖìßiÒy!1¹ý?£ò£óÏÖ×ãÇ´AÿWÖ?'ÓývÄ?$¨õþI¤9©Ò¡Ù¾¾fyýv~ JõÿXý¦õSCþ'ùôdÔüÑþ5CQü¬ÈO½¿öïÉ¿iñ;ÏÍ꯺ÿMÓß4·AýËß¶IüKùoGþþþüêßгúϳÏüï÷õ¬þkô/¿2$á¡üãüwñ£ÿ6$u¿ÿ`ôÚ÷Óþ5ËÖ<÷ý+Xý{K¯ç¯¬þ¢¡÷ 9m`}ýýçÌõôúûÏ }öûó!}?GRBç·vù?³÷Ëv}GÿÞö¯÷ïÕI0zÙxÕ_µ÷¯£Ûw´¾ÞÿxhçG¿ÿ@üçÈ¿ØûÁHè-½Yÿ:ò/Vó ÿÌòWYä¿H&?y.aùóáýü áøÞÖüÆ¿týå_¿¿U;?äT$þ£õs¤×û77dÿý£;ÔrÿýÈi@OëßÄþ1ÿßÏéþsôÙûå@~99â_Gÿ᯴ëëñwÔä##ý¯×o¤ý7}!OòÊ÷ìo*Èÿrä?¦õW¥_[ö+YýéÀ~Ñïßü9úW·Yù³þ¿EÒi¯ïÿ êÇ{©:Ôýkùå{ ÜÐç_FSÝÛê¾>±÷SÝX�û@i6wl({?бÀþðPv¡.?�Ф٤ ÁÄPörÌ¡hÙPöÞ?ý²¾c(ûÖweÏÒúO¹¢hý}e/`ÿ¡ìèþ<CÙ3¢weÊÀ÷{²'ñþÞG±z1Zß3= ówe/ÒýQùgå7.åÖý +ÍìýÇêÖgF Æ ÃµÐÈF f¤ \Eãl@Gã³¥ïÑ8{b`ôÉIJHûg@¬#Zú¤=ðÐ#â@R:TF2)õ%qÖ¥ÚI=kΡêwlPªü³6(ÕJرÁfZÁõõﯣïç$ôHÒ`Èåþ$F£×|^Élã%Õl $Wt~ü:S}dÃéúòaD5©$þUBöO×?Ð÷;^rd=3Ý·[>Lþå3©´^ }8½"¡û÷TB ósTBdÕ#`éïþ%Þò¯ßÿîÏSÉb`Ìûw5#ëï(ÓgZæCó8½Æ¼GÓ_ô%ççXú²þ/ñ®ÿÌÁøh¾ÖßæB¨ç×Ð÷üÇé#ÙTþk÷ä9¤í=Ôh&Õ ¾ã Mû3�jèõNþP@[zG¯ óÓ+áà +ÏOGB^t~IføWBÿ)ÿÿµ½G¢û¯/ãý¿ïº¬ï)_õÇ6$iH4ý;f²ßã4þ¡/±ÝBògðþôJ¥ýÓüA¤òßýþþÐ+1j%ý¬üØLö±üþ[ü::6ÈztÓÎåçGî¯Nbñ/å?Ë!Ïò_i7ú~dí<S1aÿEÏß`ýá@2FßïÈÔJÌþãù'Äèñü½òOòì l(,ÿôãþ*ùhÿIe þ§d³iòÏ;y ÿ¬Wr@ýãgv ýïè¤:àýëùÇ~¿£Ý#@ÿSî¤ÊÁ¾ÿ½ÿÅóGHþtþ9;iýÓNü'ÇLw{Ô6S}Vf¨¿Ty»Ç?Eó_éþWÍÿ¢ù£Þ¿¿3ÕïÄïyCò¯ÇïÆ_¨uÒ ÿIÿÊ0þrí¤_Ë¢ù/ìû_ù«Á÷Sú�ã_¹³ÿ÷Hô ¢£æOÊ[$Úbþãúæ?,ÿÖÐëúÏp.ôz'å¿Zz=cù¯Áþiþ£Vò·ôN\ãßv}½ÊôoCïè¤*+Z_C²¹|¿,?ÁÞ/ôôüLÿÎ×@¡õHà¦[ùÑÀ+ýÿy ZßQX;.ç¯× U$û=¿"ÝÍØûe{ #Æ$q¡t #ÿõIêý]ÏÏ:yjþh}¤ÆGª£ý{Fªk÷Gó?Ý#¹BþÓ´7íû)ÿ×Nê1ÿû¯Hþû7zMÿÓú/Qÿpz¸¾\ÃiH6#ùáù+¤¿ñ{þÞÉÿåèdH~I6Ë:=çy +à]' Ò +h RF>JØ lÆ@ +�º@ý>ýV$@z+kZ7IS(ë->õ=5Tþù~ÿyðVÀqVÒNs?øàÙøºp4½9æÁçô¼F¤~¤ój?RÉ¡ù¹ÊúJkÅÖö#tú®x§ +hØ~AT!¨ÆQÍÄ(@|ëG?°wü¦)3@\ð`XÌZ0þØË·S8䶺W0½c½ZXÙÞ«j2&Ñø1+$´½-4Ô¶ÐÑ÷ó`XÛ? fÍïA¼$¢õõ¨uEççK]�½ÞÖ*¬ÿèü9,F¾Óû·f¡üd%3[zG1É.í!òËÆR£õcq*Ýe}½¤ñ¿ÁjþzÿD9óEòK)+Fè>V( zV¸ ùw4¤/Úê=´iòOa,×ÒëÅ0ägë:Ö?, öCK~@ùÑaAÍþÑÇüÙ/ÇXQ0/0ÅçXÖÿqx)!tx)# ^ EȵµùÞ¦>`*ÈÐ:6¤-Û*ñ0/È@:̱¾5ôÖç ApÿrAf^IÆè¡ë 4«rPc�ÒP5V>®r-?Zó¹¶Ô>w¡,ÇEFÐÑÑUèèÎÙ<JA+z^Fü½FéíEm@O÷¿#pTa#®WPdl³¡g":´¢" Ö_ÔJNü¢öJ2%?6çBïÍÓÒ;XK$µëëVßÒë¨[~úû aðýÃÞjbAÌ`} +md/zaÚ¨g¾þmdi0 m´×¤z@ÑLÐPoKX¡W IÐø5XµÅL@¸;p +`³_ذ¹HJl$Ä:ÀfÖ(ØÒúüY_;?°$þãëÒÐ'=²ÕH´aÀÿ×(Î2 ^ÅØ³¾ºþõAÈ2hý(¡×³z{ÿÎ,É? åX4ùå�H~°.à|¤?ùfdC°.ñì%f è÷gèèm5Ð ÐíÇ«-eÈ? ´¥ ý¥<æ}{UÓ¿u}+K:,ô§åöÏaUÐù9ªv³?ñmU¢&íw^Ò-ûãýÎ8ÑÛBrm!ÙOG[HDúÛÑÿõüC"RöO°ÍõeX\àùÉYÄ\îé¼ÎêoI;AhÞ ýг-9æ]óhqGë;²òõJã'½¢Íþ´ÌÚÿWfe V¹¼eáD/·Õ >ïÑgIÖ׫CBççÐ[¼èéùç]<ÒS½£-Æâ·Áú|@rÍ_´ë +á ÝâA[HËÿ®¶~ÿúW[ÈðþY%J\¿¾D/èüú$.ÿ w ?èKºÁ¢´÷¯WÒ$J%héõJß÷ÇaQ ÿ;*Qÿé°zÑâ·öþ(QÔ¬-#HüCù×`éüKùÏüþ¡ûß4ûI+qvĽÿÂaqôû§WB4ö@òüvÿ4þ]þstûâGþ"Î~¿ÑkòÏó?PþeX¶dñWëÿ�ùëãÿ: ãËýªiú~±÷ïÒÛ(HÏÛ:hk9:ðýv1$_¾àÛþb\(ûvpÖRÜqú°1ö?�.·6°¾m ¡gá8ΰZù3¬ÝÍÃ3ܺ#°öäTÙ¨Ý ì11Â3<1ûMû7 |Lì»Kø,ù»´¢·T¼¾O&Ñå^èõ`ª:c-½nlNJK¯'ãBÅh¹ÐwçÏ_Ôýï/aòû¿½È±à:LX3¢ö ?Zs:?G0W�½£Çÿ@çïéñGë{zü5þç=þÿmÞîL´ÇcrŹì_/+Ot¼@ã^ôcZjmkð¿ÑüÑ`¦ ý§cÄ/оY1þo4Ý¡þÑ)ciÄÿ¼-Ú¹G?Õiå#ù¥uFÁ,ÿ¦øßñYÓÎû{÷IÛ"âzE~¬¿ÆgFöÃ3-ïFk[ÒHþi0YÁäÅ~þ]ñýI{?®rV۸ɱ'Õ(ÐÐûBS>ë¥Ú×8ë¯éwÀzÆ ++à\«G + Hê¯9�z5Óùý\²¡ DïëÍ)�=f ãïgCB ÿëCr6Í£¯ñt õj Ê>$d>$dGH ÍÇ"ɫƵüÈH©¯É#þá ñÖùÙ1ý5µ<[2^Èö^ >9zMÏ%äùÚC@ÂI�[«ZzÇkdºÐëjk5Ðhÿü5=Iëó×|íûy +-?ëñs~oÂÓ:�ý9½N ¸|,À¡µôú©3ö¯£lîôý|JHèè©å@£ýób G£¢Ô^èõvZx¡×Qâ&@4#¯=M£ï§|vñ?àk9Í)¿ï f÷'£<¿2 íùÉÌcïàþ¨U3@¨1ÿrä?-00ÇØ¡ lÌÇÙ ã=|Fp¡Üò Rszx~²�¤s2=¡Lz )£ó×=¥ðÊ +<Ä\ZëzëèI HÂP:DÏB§² ü +dÀÓ,XJg}¼@HGúó$¦ù¤¸¾>)5j"D×O aÕgçK��]$DíÙ`zÿª0½$¾ õuWäéA`># f¯0&tf{ =ÿÆ`²äCë%ù@.PÃéßo*fù¯´¾£ ÛØÄ¯þä9\6´¾©%ÁzÙ1\½×!¢õå"Ø+Rz+B÷oúkðý¼ +eïÑIúo¥\ýþõWXkIñÍlðþd¤}kI¸|¿cRÆ!É×\%þ¡çw þs ýÿÔÐë8qAûw¤ÿ4¸ö +-ÊÛWhº¾U± Îç`ü8ο¶\ÎOkKåÿy%#þãºÜÛÿ +õÃ+?GKAíÉ!m9¤Ù_G¥pö¥p6ÿ±þOÒ¿ºÿuBR(çG ôtpÏÖw¤"ô¿ä"ü9ª`²Æ?RbGëëùQÐû_ÿâ("±øi7Íáù¤ÿtÿûÌ¿Üâ¿®¯§0äÿ8R¦yþñ#~þ¦E�éOäÿüQþ§ÿÇ{þSNÈÐ[sBþwo¿iÄKÿ¼´HóÅÎoKÉò7HþõGôãåþ,ÿõ§ÿäMóß9¤?rHä?z ´øòßü?ÃçwârjüíW±*ØIÿ÷,Qö?Âå<ó¸3þár^èݸ-½§®ï(AßïÈ?Xþ¦¡wä¬8�Yþ&ÜûþÖ×ó¿Áü¯8WÌÿ~?áßíß1dCë; 9,ç Cn0Ú?¯ÁAëëEÁã\d82ú~}Rl ÑÓ{Âï ùp¤ñ³å¯üKóéGþKÔ_#HË÷»!)FüÃJ0"Ô?z ARøõMEßßÛOö�×ç³ËýÉð6i´¥wtA $ ùttL °Så@ä.H·>Ñ; æ¹ b"Æ()0Z9&mÖÉ +c%ôý4S4ÈéHO+:?=¬ zøýlýÑË)(ÿStZCõ£n×ø~ÿ¡Ý?O`!À) +(½:z Mv9P<¤9À<å_¬Ðúýý ýÙ�Ñ + äÏ@)þáôÐþ: +4Þßä×Ñ ¶!ýïèB³Ôd�o`¯.®É�,ïþ¡ß0Y~a2 ägXÀ4é?¾ +&ýÇWÓlc©öoy©Æªü&"ÁùÒá=¦M�FK/cRLýþ=08QZ'Àt~uë;¨òÖï¨xØvïü-68µ.Ü^/ Ûÿ:Ö7ÿq°>ÇDEë;°ÇsÒ}KH_÷÷¿Jðú$Ço±NlõGEÆéDÏÀðýQo ++ø~4Õèz~5ÑúI.`V@9м,�þÓa ^MhüË0P¯&´üÐóÏPèÓ-æ£GúßµBû£�YüÛÒ; + îé¯h0bú+îÈ~9ÎoëëÈf¿iÓäG/8ógÊýq $ÙoÿGÄÿï7 ÉûOI??CößS@ öïÉ£íùO ú/ºÿôô^(@³÷¿Ýóô_ëï÷ü§thþ-0°^ÏXÁ¤ýyå¿Üû7!5~cù/íüx´_r~Nªÿ@Ö·¸Iÿ)gÄÿºÿd3ufý§ýÝÊ+?ù¯õÿBýÓÓÓüåVaÔþEùË«ý°üSÕßú¬<²?|02²ßz@>Tû ¿¿,Ú÷óªEâ_¿!\F3iHþ¢æÒ1*�{?§¥ïåwÃ|¡×Qx* +PKï©óô/߯e´=þu¦êåûån+ºÐwò;©3º^@µIû§÷Wgb\Ö×ÈjÊøþÿU Ëýéµxïþ+�À ^?«þ¹Ðëñg)v¡×ãÏÖ÷À8oÒùÑïH~=3yþp`À¤"ÝQÖä!zÝ~Äâx¾cO°ë½óß þÔùoCë£÷kÒ·£ós4àíHÿê(zgýÑýMÿñÈ©îÿ}¨möþôø·Æõýj¤¿)M|¾ß_äXáY©ÆOóý?«_Ý?ßòï¨*þå_.ç'óZÿü7²ÿ Úo½þiü¸Èþ¡ü÷3ÍxýP¾'?:?�ÌÖwÔ?,È~ê3!m¬Yþ#þÛûúÙó?·îø?õÿrÖì/ÏÜã¿\nòßzÿ¶$ñ§Gü§Ç¯yG÷¯Ç¯V?3¿ò¬ÿ]È¿zZ@öO_GüjùªÝñkiéñ«ùíú°¬ï_klK¯Q é�çø÷ýLà½ì¿ùeÿ´~¤6À^èõ̵~¥¥wä¶(Þ!^Àúºñ¯cYÿÏ_$t:ÑøÏàR8ÆòÏ�|ÿ8xú~½7ÿ28?^¿²KòCgºÿògêk¼V²JüOóµc#ÔÀé?¡þÛòÄtÿ[¹wþ;¼?À"îHêï×±öOî¡úCMÑúï� ðþdùMæ?MÊoèüõúá$ú´þ"AþÑë/fÿéúuÝh}^?ü7Gýåoüæ¤ú~öõí@ü�&?$²!ýÙû_| +ò3Å+�ÙXÿ²úd3Ádÿý#fÿhý¢Ù_>EËìWxû~@ë³þ ¥Gý¬ÿÉhÖÿ3�éÿGó ¿ ~H+öæßjýï¬ÿmýcþø»®oïOûW?Áû¿4ÿæ¯Vè?èù« ï¨ßã76D#ï(þC48ö<@oÀ,fèé Ä% �^o ¶°YðJ`mï8ÛûºaNKï/ÀÙÞ0 p¶Qä �gà +p¶÷hÃ^�kôý¼§HüðXßཡõûóMñºÐ%ÀÈ?¬�èÙ@pY_ÀlúéO%P¬gÀ|¶J_'èiE8º?@Óô�bü¯#øD$ÿz`Lèûs¸3rÖä'Àº¼6ðüÿÎãØÈþéö;Býå@p²¢Iýû* è_zþ?A9ÿô }¿#Ð÷;�pÒ~¥ô¿#4ùcòDù§ ´åO~�Ky»÷ýÊ^@SÐýy�4þgú'Yò@ÿÐÎì/j dÛöL`´ö«Ûÿó¶ÿS|RæZ×µò_Cï¢Z�/ôrN¨�<z}HJ"=ñ?+à ^á÷ë�?´÷'OAµ)¾-½@ÌþÖçþû"6xÿ:ùÿíþõüÑ;âÏcÎú/Á}$?Ô~W�ÀÑýÓ\³eypÿñÇÖÎ~Påÿÿ<XàÿÐíýë@p¼ÿ÷h.ô 4Ä¿ôü6¤?ç·kçÇ + �á"ÿ 0 Ð#ÿ ñEûGñ÷¿ýIý¯�íÞ�ýý4âþÿîÏñ5þåþ?²ø§"ßûùßüÿ,ù?ìí`óå6ú_P3ÿ][ÇÚýS�Z{níWw~Ï¿÷¿!ÿ1Fðv}A8._ +HfmÌöÈ=R/ÂO¥NÔ±P<ô)(K¸åeèè>XèzÄîðUÄ?{¯*þÙ;<a<¥;d}@gÿcuÝàÔdÇc^²í ö?À"ÙüĤ±¤r$×{¬AiÎFbE0ò¤X&'ÐÕ¡Xg`IÞ½¤*yÒF"º'ý*å$K@Ð1ËÖ2!µ$ÝÚþz£½D´ôr&3ØKDCïx3%Ö~¿ìIkEnéeK,ÙÒë³P,ì®_Vi}^ÊÀùë/I¡BA]îO%½¡ûs@ÁZ+RZç `-ð?å{ð/åGüï"=vx&&JëóXíüh$ÿéÑ*1û§ë[&g°>ýþtOþc¢þ´´ôLÈ¿úý´¾É/¡üÐLÞºÞÿ¸iöîöW¯Ø5ùã õüü3A³òoö?-þãÈz)¶ùoö3U(ðYû*øÈ~òLôôV¼ÜòÎLÌõë,¨YùKÐÿÑíGZ5ÿ¾ÄZ%ÆC½¯!ü³Aý«óAA ý/òý;ôÿ£\TýAä¯Î¾¬ïÂDþ +°By·öGÅ_G)vü«Çÿ¢þ £läYþϨwü'åâÿ^µl0â_Ç(äG÷ßÎRþ;úóÂTôçÎZ! ÿ¡À@ÈÒH®@lð¬)A`Ù % è,pH +ÎÒ0ªbj³§Àa)MCï(©Xà-½gðÖ×±�RÖgÌjè�ða$}^KdPK¯AX3PKïfrÜc ï¨åßÑù9zA,jè½ �½$L+a"¿&¢ �+÷åûu0øÙ°a hÿ: ïÑïHþôZt,ÿ:bAë£fJA©lLíþieG +ÔAÕAÙ$ýÇ3(AZgP´óã` +H9j)¬Æm?,%zä821Ý¿õþ\_®¥M :0ú0 ¨¿ôZ¸õ^ÌnÀÿ<äÇAØýsÔâoÉÁ,t~LéÝ~' üËÀIÿñ:Õþú ê?VGä×1Ì"jþ/Ý&2Ò?L !ÿÏ&ü9À02Ò¿0KÈzªhúß +åW??ÓêRcØÿJùÇ2°úë¦9Æ ýo½îPýßÁ¤ÿUÍþ°ý?éþW ÿ`©5ÉÞøé eÐÒËèXßÿ[OK¯Çÿ ï�cL´^ÁSý×^¯ Éø~GMAçç¨ )4¦?c®Æ^ÐüKóWÛÎ_¯ Ùâ?½Æ^ÐüÃ+xi}z~v~< øÏQaó§ñs@ûwIÚØHþÄz1Ûõõaïè%J_ïÿ³ +âj/B«?þO°øxª¯s&éö²¡Ó?lýPÉ[%[¿çÿ³t«6ãUÜg"å¡Lë]�оèÁ@_ôÍâÑí`ÿ°Ý,ØåúyÈÏ??PñÈ®;èdàyãàj?íuÂ3hÝA^áRT Dõ +>ÄF¼þ�àcüÖçP |Qõ·p öå&ìðz6`-g1'ø½%#V_øúrKÛ\?An«¡|µÕ\@Ǫ:8+2{uîÞ5÷ÂÖôBI`û"y¡×ëdK¯DØä ^whÒèõö�ëË%IæP¥>p3ø?ðÎ 0<»ûôßÀ"jlCí®;a¿3à�òk?�ü@Ÿþ.Eç«h@¨ìö siÉÓU¤Æ£õ=3D/0¹µIÞâ]Ó +c)d]á2·xöü #|þįaù ^QWÓz}F]Fë; + +Ò¢úXkFçG÷¿jûçϪHþÏê:ÄÚÐ÷°àj £>=ÝÁ>_êêØ³è +@üY{ÖÌ`ýÞë÷¿ÔfĶÏã¥Ó"a=+áÓ1nLÿQ?ÐÊg>SY~Bë÷ß?©) ú.V1FW¦o�pz´¾ã]Þ²¢CVsçê:ÒzH +îÓ�ú®\;ûFòÏÜxFÆÂFÆ®¹G +Ür_¤ïçïºÐs¼Ë"LÏç¸Ïµ.mdigÜþÓòrG|¾Ë>õß÷1@q9Dûw¼5�`å³Ñ¯·X«L;`äü÷E:þ® +@¹®'C.¸¾|þeÑÒ$¿,Hÿ9@ò aÌ�ï¡üÜ51]¹<ypë÷yG"Tþæò1«?Чr¾¾ VÔ|Aè'Ýð3L!ÈCдpzö'?03«äo>ÁpQZú^q¨É*-½õ_[zdI6°B¤^¾_ÏÖYA-½Þ`oPÓëïÚú4iy¨ÿÌ@eÛóèìþ a´þ<ÿ9ò(ñ#Ñú¨Î¤ñªD÷ïê̾¼/O Pñ¯ª³6øÎ~-}?Ï#mÒú#¨ÉiþÝvy)"ýdìÚú¼<}¿§<¿HöcT?{þ©öÎêü9ÊË#Z_wãS-½¬/¿XyýÈþóòz$òú|KþS¾'ÿ© þwÿ +ÏO.mH5ôÒTû{®? 6¤yÒ³Bý +/ãP<P¬ßòÏÀ·¿Ã}Ü%hHÀ°ÚP j3h6¦"¶^Üh=Sj,ØR}6^á +Ý=°!)pd ïÈ&T¼ÕY3l8#3D¿ÿjXÁ²@5¦Wi"ÈÛô¡l69[©ñüvä,ÒµýçI»Úeó$Î]¬üßÃð[z½J·Vi^èõ06Ei}z~uâÞèüh\'îµô˲HßÏÓ Ý'íß¹¢ï׫Üí5*¿Ù ] +µËïòý²þö>8?>1ïäã<jüOÿ+âþåþ÷öIýaimÿt}+gäßÑý;&æYQÝ$ÿ(ÿ²4H¹¥ÿmâÆ¬þÃLêÿX»|gõ\ýr¤Öýþ·y³ú?BýãèÒÀúGÇɴר!ÿþ úÇÑ¥¼Àû×»¤YýoÕ4ÈÿðLÌÓì/Gþ<2>ÙKN{`ýD&nTûßà?NU À½ã´ +´�õo#÷N¸ïÞ²vY¦rO¦õ§U`ºþ5¨S`\K/?¥qpÿýiòÐ<8Nô¤Ï{Ñ<xZO°Àós¬ö¯[lÏáü²`=ÿõü¦à°JÕ©¶Y}¥Pâ³0®ª¾ÓlU_ ét¶âÞÑé\±¶/ëëÎkûB¯w:´¾gjùÖW +~Ö§Pæ5ô*ä0v»ÿ<Õ¿õ=XýÕjïÏÕ¿KüK}Ø«ñ¿«_;?Õ%þ£OÙk,?,<Ðýé1ù@û§1d`ÿÎ_µc1Ø=ý+Öìèþ8Vÿ&øßÓ±÷OZvt:ÒWÜáúrÿMÚxhú"UÕgz)êõ=Ð_Ôµô@ÿPúõ·´ï§1hÚ&Ï¿F0Y³|j9ÒRý/AÿV¾éü¶F0+Ò?À¦é¿aæ¶!ÿ3¤7M~9Òª¿Èþ{üóÀ&íw®H#cùeæÐõcýGò¡ÿ§ÏH³úû©?r nõGVwÝ�`úGlz21¸@ÚÒQÐö)�ú½"âhiYgºþC°âÖ8k¬%¡Ü20:W�3g� ªmöüKPxö\ @x?¬'0*ÿ÷Ã2y#õ= ´¾'Ö×°¢óCüsh1ú ì×ϯBÎÞÿV ^/°Hûýz%@fïßZ +út¬x{Å £i¥k¬ t`-Ò°*hH(o«pè+p@äx6¤ª¡�\_~E +Èñ +Ï_ÁWéûéù[ààüù´Ä{³*Àk °£ ÜäY2¬ÿúI¬ÿ"@þ$ùçXÿHy°þ5Ê ´>=¿Ê¯£�é_ôñÒ²=ßû×§¥ ÉoF@ÜÓÖwT$íü Áúì%e$¿úM ßT[òVÍ~óiÇ-ù}e&åצ%ÎʯMK_¨¿È2@Yò¿(ÿHÿ92Æ4° ûwL¬ÓZGöfp´ÿ aJhöÖ D¸¾�I÷ÀPG iÐrÜúGOà¬ÈÿuL\ÿã¹"ýá¹iòO§ndÿýÊ;º}X {æ?QQHþÓeÑì?ãß"ë/Ö ²ßÒ¯VmJu'ꬢ½@²ø¡w$¬y@OHæÐÐ;H«v~4´Ö¨^O DûýzÉØÃûg<OÿåìFªà9Ðýy*x6t~zü¸ óóTðdéüøú´>â?O_äÕEá>?Ë?-Òýqú]¢§ö?Ð_ôû->¼?ÊYÿé�±hüÇ+Qü#·ôòNÜþwäï þrt!Ùü¤ý³Y³öïÕE18>«±HüÏ1Eq}tÿôøÏ?×YC#ý5¬�ð/Ë_¿ò?Kz?HÖÚ®¯ßè?±÷WQ{þúúPÿèñßR¾cÞó?^ù£Iÿ#m÷ü´ßó?Ò~ÏÿHû=ÿãDÒ¸%¿æô=ßòOgüÚÞX$4ï{BE%zþ�èa�ØS®× jÜÒ{ðtzGÖ×-@¨èËú�ô ¬ßgh ¾iv}Ù ëÓ¼Ðë}èÕ CÜ/0çÔ³P5À4ÿìû=þ9Ðúôñþkèh}ÚÐýé/0±z íý9^Pë¼_ý&ñ/`¤üؼÆ|ýCZ_Ñôï¨bļÑ;"à4º?N¯é/¡óóÀù"ÿ +¢Ú/G:Zßßq¡×§M~F}è#þã}èH9^àã=ý¦ÿ©ã-û²vÿ4-èþlÑø4í~tÿW¤ÿìËyCE#¸ êOýþê¾±üv/èüõõm}ÞÅüO=µYÿ!/È×ýõ¬}ÖÈù?ºÿëíYÿ!Gä?:ºð¦¿9ásÚêÅÿìÖ7ñëþÖ&îâWêÿ×ø¾×ÿôªNÛméõ±Z!¢ý÷üÇáäãóüÊû)££iáõñwÎÇßh}ù¯-½ IëÓø½¶Ð´ôGÅÏEZã¨-ÿðøïx5ÿµÌ¾¢ósÄK¾4ÖðB¯Çµgt~t}¬/ H~ñ_ÅaÉÃòïx]¥ûãìðþå¼WüÝ~?&ù¿òOö¿Bù÷q°bÀºÈaPá¬ýúãOêÇMo¢þ`ñ7ä_7ÜØ~±ø;"ÿE®`KË.Ùþ©Éß¡üèñ[,Ò÷ó©ªýbpøhÿ8|Í~ó@ÄøÑâïIÿá¿ïÈZ5ýÍ+Ð5ûAÇ lÈ~êãT¬}Ö±ÀYýc/#ýç¢õ=S áý90$ÿtÿéOÇþëTÃÑù³ +¤\Ë_èåøÉ0fõOÎh}Oº*ÿ¤º¢HÎÚ¿\´øÉ¯ÍÉ/½ÿ-þÉlPÿËùë¼£ø_÷ó®ÅtýC¿þüêúæ¿<ôß{A°höùÏeAü£ûÏêe*h;GàÌcÜ#`XÞøÕæ´ôþ9z÷½{Àh}^?R¤óÍhéu7§è?Yò³æÁ@ïjÒ¬%`£ä è<%ðAb�ÀZ½£fGØ :Ò¸ôÚ% ¨9`¦%ÐËöß9 ´9°ÃÆ F÷7,�(P�HÿÑä +Áp¡×A43â_ÇýÕöÑýñA»Èï!F÷ÇPZ_O X�7_N××A$whªÀO^¾r =[(-È#JÔ`"úýHÞ \B Ó»|¢"² Ê\íÂHç0èüõ&Ü5±¨¤�:?ý øLA}¥0Ûûëø7,Ý<C«©1Dþ~²ýáÀ¡\î1ðU¸cATðhÀeÿò$W Æç pä@4!rZ³h9¤()`J´æ`tAõYX9rH(säp +ráõ®¯Ò`ýÞ�Ôû¸0Oþ=}<:¢Ó8a¦qö}ÔõväÇC*Ä©²Åê8/? O=[ùÅÀSeK@ZLev ã¦R²ÁÞÒÓA¨h&-½®Çî²¾¬½¥§÷htÿyßïèå)ÞJ¨Ýt£ó§ß_éû9Aº·ÿ:~´:Sr`ÿú[h°ZöÁþy/Ì +øÏÓÖw¢¦ÃòÃ{i6$?z-i°Iù54ÌüÒõ-3?Ë=üw¹|º~B÷ç¨%JèûõZÈW-ÏP~I*¡ ùÑýðXüößÏü |¡×Ñ*IKÐ4I"bCü¯§£¥bgågöGG#úÃF õÙe¹u~6d,ÿ8yÎdü§£YFÄÿZÄ¿^Í~ò^Íÿá½0¤?ø<tÿï_þ×ã°´"þ×ã°dµÈ³ç¿ÃóAÐkù_yþ¡UÔ&È1 ä@#MÒçüDH/§Ë0é]ÈçÛ C¼3¯ýTõ-yùÁÙ '>ì¥øÈ§ï0 $¼ä}å~Ô»']ZS´iz2AE5ûQ$í¸£¦lGvÈ3ÖùTC5$ßoùÐÁ÷3!z¥BBDQÒ"¨&÷${PIïQáiIÕ´¹É¼¯ð~2+¯)Y�½#h}G]ç"^èõSíþõcÂûɺ,yÎEýÒ? ½#Ìh@Ïg Èg2;êh±ËèväÕtùÙ]¢Ã³³¾"9óÏ{\ß¿,³è9ä+#Úl¡É>Î9?ãü×åWþiù|Ø9ØËúPÇ÷ÆP¢ôP{Z¾Wg©ÒsÓã¿X[¼fÎræ AòPA&[úÄñ:êýyµ¡¶ô<]¥©®_§.ûõ~ô¸å×ï¯ûèü¢ÀÈOÙ"ááåÛù CbF¨ qyøU +}Z½OÕõfìvÿ½;ÐßÑ?QK�wÐWu|¡Ïß ôüJBçè ÿÔÒÖÿôº¸òOºÈÀUnñOú¦Å¾ÿHòCå·\ä~ÿ¤ï§ëïþ ò{$I~{õ[ÏêÏÞ²ý[ ¢ÿÏûËô·`>û?+ýÓõ¡þ+²þ¿Pâ[÷iÿkãÈ·~BöKiªô®Ê#È©\ÓRËÃX¿ (pÂl(¿³ü�¡ÀÌèÑFÊ= ®ª@h ëú«ûß �ñÑ#NVé¡E +ìGëGaM ò ²ÿÞ,?iAüÓpÆ?iÑ(_ÿÖgç¼R÷/Àáý (ãuýÂÿõü2 }�BÏ?ÝÓ �Y%¨¿õ�$aý 0bÉùíüüï·äoEü¯p'Jòü<´e)�£ü·!ýÓ;@T~vM~è÷ït~ýýÛ³ + ú\ý~@,êß>dô OAö?2ÖB}®ÑCý +ÄÙú÷hYç8ÙÎ }¿ò.^é3� ÷{*ÿR³þ ïÎÿ¿ýò>ÂÇ/ÿë¬=È?Î4dýÇ/ÿpÂÄãñ£e{üÍo>þá¿ÿéã÷¿ûõOüÛOÿüñïÿò?ÿõO¿ù¿¿þé7ÿóÿ}üûþü»ßÿþãWÿðë_ýãÇ/>?þów?ý¯þúóÇ?}üöçÿüÏ?þø÷¿ÿýóçßþîoüéç¶õ¿þú?þø~üóßNºÏßþüßÿãÇ/ÿ÷ÿúËÇîþ?\Ts# +endstream +endobj +326 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 798 0 R +/Name /Im307 +/Width 36 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøßPÿLð7ð30ð`Òx$ $> ( 8`�#ä cÜ ÁL03°7 ü @¢þ3á"_7O�Á×&ï +endstream +endobj +327 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 799 0 R +/Name /Im308 +/Width 12 +/Height 4 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿPÿáÿú<,µÝ�<.E +endstream +endobj +328 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 800 0 R +/Name /Im309 +/Width 14 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xK`¨ÿ?H8Àp± ùà O¤n² �dD +endstream +endobj +329 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 801 0 R +/Name /Im310 +/Width 16 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc>ÀÿAþýúõÿþ#ßþüþÌj'�cÙZ +endstream +endobj +330 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 802 0 R +/Name /Im311 +/Width 11 +/Height 17 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xK`¨�6l`f`càcàB8ä`à¬À�ðÛÜ +endstream +endobj +331 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 803 0 R +/Name /Im312 +/Width 24 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨±aü÷¹ÿ<;??;2úÿÿ¡ bEõüHBªa¦�ò} +endstream +endobj +332 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 480 0 R >> /XObject << /Im94 101 0 R /Im51 58 0 R /Im54 61 0 R /Im62 69 0 R /Im44 51 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im53 60 0 R /Im42 49 0 R /Im47 54 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im62 69 0 R /Im68 75 0 R /Im45 52 0 R /Im51 58 0 R /Im89 96 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im51 58 0 R /Im47 54 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im62 69 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im75 82 0 R /Im45 52 0 R /Im46 53 0 R /Im44 51 0 R /Im51 58 0 R /Im42 49 0 R /Im54 61 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im64 71 0 R /Im55 62 0 R /Im62 69 0 R /Im51 58 0 R /Im43 50 0 R /Im54 61 0 R /Im62 69 0 R /Im44 51 0 R /Im55 62 0 R /Im51 58 0 R /Im65 72 0 R /Im51 58 0 R /Im54 61 0 R /Im55 62 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im64 71 0 R /Im65 72 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im97 104 0 R /Im44 51 0 R /Im45 52 0 R /Im68 75 0 R /Im51 58 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im51 58 0 R /Im49 56 0 R /Im53 60 0 R /Im62 69 0 R /Im75 82 0 R /Im51 58 0 R /Im45 52 0 R /Im70 77 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im62 69 0 R /Im45 52 0 R /Im68 75 0 R /Im65 72 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im70 77 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im106 113 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im63 70 0 R /Im62 69 0 R /Im53 60 0 R /Im63 70 0 R /Im51 58 0 R /Im55 62 0 R /Im72 79 0 R /Im281 298 0 R /Im234 247 0 R /Im252 265 0 R /Im236 249 0 R /Im245 258 0 R /Im253 266 0 R /Im238 251 0 R /Im239 252 0 R /Im259 272 0 R /Im240 253 0 R /Im253 266 0 R /Im271 286 0 R /Im245 258 0 R /Im243 256 0 R /Im244 257 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im65 72 0 R /Im53 60 0 R /Im42 49 0 R /Im64 71 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im42 49 0 R /Im66 73 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im49 56 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im62 69 0 R /Im46 53 0 R /Im47 54 0 R /Im51 58 0 R /Im61 68 0 R /Im68 75 0 R /Im43 50 0 R /Im44 51 0 R /Im70 77 0 R /Im51 58 0 R /Im61 68 0 R /Im42 49 0 R /Im55 62 0 R /Im51 58 0 R /Im75 82 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im62 69 0 R /Im55 62 0 R /Im62 69 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im55 62 0 R /Im68 75 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im69 76 0 R /Im45 52 0 R /Im62 69 0 R /Im61 68 0 R /Im42 49 0 R /Im65 72 0 R /Im45 52 0 R /Im51 58 0 R /Im63 70 0 R /Im46 53 0 R /Im62 69 0 R /Im68 75 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im66 73 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im72 79 0 R /Im58 65 0 R /Im68 75 0 R /Im47 54 0 R /Im47 54 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im71 78 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im66 73 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im62 69 0 R /Im62 69 0 R /Im54 61 0 R /Im51 58 0 R /Im42 49 0 R /Im54 61 0 R /Im62 69 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im49 56 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im46 53 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im61 68 0 R /Im42 49 0 R /Im64 71 0 R /Im43 50 0 R /Im51 58 0 R /Im51 58 0 R /Im61 68 0 R /Im70 77 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im36 43 0 R /Im96 103 0 R /Im96 103 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im72 79 0 R /Im88 95 0 R /Im62 69 0 R /Im75 82 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im70 77 0 R /Im74 81 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im44 51 0 R /Im62 69 0 R /Im42 49 0 R /Im66 73 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im49 56 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im75 82 0 R /Im46 53 0 R /Im53 60 0 R /Im53 60 0 R /Im70 77 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im53 60 0 R /Im46 53 0 R /Im44 51 0 R /Im44 51 0 R /Im53 60 0 R /Im51 58 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im69 76 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im69 76 0 R /Im51 58 0 R /Im75 82 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im66 73 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im72 79 0 R /Im60 67 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im51 58 0 R /Im115 122 0 R /Im68 75 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im53 60 0 R /Im64 71 0 R /Im49 56 0 R /Im47 54 0 R /Im53 60 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im70 77 0 R /Im51 58 0 R /Im44 51 0 R /Im75 82 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im61 68 0 R /Im42 49 0 R /Im64 71 0 R /Im42 49 0 R /Im53 60 0 R /Im43 50 0 R /Im62 69 0 R /Im43 50 0 R /Im51 58 0 R /Im51 58 0 R /Im61 68 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im49 56 0 R /Im51 58 0 R /Im72 79 0 R /Im66 73 0 R /Im72 79 0 R /Im49 56 0 R /Im75 82 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im69 76 0 R /Im68 75 0 R /Im54 61 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im70 77 0 R /Im51 58 0 R /Im44 51 0 R /Im75 82 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im66 73 0 R /Im51 58 0 R /Im55 62 0 R /Im72 79 0 R /Im168 177 0 R /Im54 61 0 R /Im43 50 0 R /Im44 51 0 R /Im51 58 0 R /Im42 49 0 R /Im55 62 0 R /Im62 69 0 R /Im69 76 0 R /Im65 72 0 R /Im48 55 0 R /Im64 71 0 R /Im43 50 0 R /Im46 53 0 R /Im47 54 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im47 54 0 R /Im53 60 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im46 53 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im49 56 0 R /Im46 53 0 R /Im44 51 0 R /Im61 68 0 R /Im42 49 0 R /Im64 71 0 R /Im70 77 0 R /Im51 58 0 R /Im65 72 0 R /Im45 52 0 R /Im51 58 0 R /Im69 76 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im44 51 0 R /Im62 69 0 R /Im44 51 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im61 68 0 R /Im65 72 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im42 49 0 R /Im69 76 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im47 54 0 R /Im62 69 0 R /Im61 68 0 R /Im65 72 0 R /Im53 60 0 R /Im51 58 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im62 69 0 R /Im69 76 0 R /Im51 58 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im72 79 0 R /Im56 63 0 R /Im44 51 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im71 78 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im61 68 0 R /Im65 72 0 R /Im51 58 0 R /Im55 62 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im45 52 0 R /Im51 58 0 R /Im61 68 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im43 50 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im68 75 0 R /Im54 61 0 R /Im44 51 0 R /Im46 53 0 R /Im53 60 0 R /Im42 49 0 R /Im47 54 0 R /Im62 69 0 R /Im53 60 0 R /Im53 60 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im62 69 0 R /Im47 54 0 R /Im47 54 0 R /Im68 75 0 R /Im45 52 0 R /Im43 50 0 R /Im49 56 0 R /Im75 82 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im43 50 0 R /Im68 75 0 R /Im54 61 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im55 62 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im75 82 0 R /Im45 52 0 R /Im46 53 0 R /Im44 51 0 R /Im44 51 0 R /Im51 58 0 R /Im54 61 0 R /Im72 79 0 R /Im48 55 0 R /Im46 53 0 R /Im53 60 0 R /Im51 58 0 R /Im44 51 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im61 68 0 R /Im65 72 0 R /Im51 58 0 R /Im55 62 0 R /Im70 77 0 R /Im68 75 0 R /Im44 51 0 R /Im54 61 0 R /Im62 69 0 R /Im44 51 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im75 82 0 R /Im45 52 0 R /Im46 53 0 R /Im44 51 0 R /Im44 51 0 R /Im51 58 0 R /Im54 61 0 R /Im49 56 0 R /Im46 53 0 R /Im44 51 0 R /Im75 82 0 R /Im46 53 0 R /Im53 60 0 R /Im53 60 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im53 60 0 R /Im53 60 0 R /Im70 77 0 R /Im51 58 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im45 52 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im46 53 0 R /Im51 58 0 R /Im63 70 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im46 53 0 R /Im54 61 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im72 79 0 R /Im56 63 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im54 61 0 R /Im62 69 0 R /Im44 51 0 R /Im44 51 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im61 68 0 R /Im65 72 0 R /Im51 58 0 R /Im55 62 0 R /Im48 55 0 R /Im62 69 0 R /Im53 60 0 R /Im55 62 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im61 68 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im47 54 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im42 49 0 R /Im54 61 0 R /Im64 71 0 R /Im65 72 0 R /Im45 52 0 R /Im51 58 0 R /Im63 70 0 R /Im46 53 0 R /Im62 69 0 R /Im68 75 0 R /Im43 50 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im72 79 0 R /Im281 298 0 R /Im234 247 0 R /Im268 283 0 R /Im236 249 0 R /Im240 253 0 R /Im272 287 0 R /Im269 284 0 R /Im238 251 0 R /Im239 252 0 R /Im245 258 0 R /Im313 334 0 R /Im238 251 0 R /Im239 252 0 R /Im181 190 0 R /Im54 61 0 R /Im55 62 0 R /Im62 69 0 R /Im68 75 0 R /Im70 77 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im53 60 0 R /Im64 71 0 R /Im49 56 0 R /Im61 68 0 R /Im42 49 0 R /Im54 61 0 R /Im64 71 0 R /Im51 58 0 R /Im89 96 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im48 55 0 R /Im42 49 0 R /Im63 70 0 R /Im51 58 0 R /Im70 77 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im55 62 0 R /Im68 75 0 R /Im47 54 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im62 69 0 R /Im44 51 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im112 119 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im71 78 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im76 83 0 R /Im51 58 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im68 75 0 R /Im61 68 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im54 61 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im66 73 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im72 79 0 R /Im168 177 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im46 53 0 R /Im44 51 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im69 76 0 R /Im51 58 0 R /Im75 82 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im53 60 0 R /Im46 53 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im68 75 0 R /Im45 52 0 R /Im51 58 0 R /Im72 79 0 R /Im73 80 0 R /Im70 77 0 R /Im51 58 0 R /Im53 60 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im43 50 0 R /Im167 176 0 R /Im249 262 0 R /Im51 58 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im55 62 0 R /Im62 69 0 R /Im68 75 0 R /Im70 77 0 R /Im53 60 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im48 55 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im76 83 0 R /Im51 58 0 R /Im64 71 0 R /Im46 53 0 R /Im51 58 0 R /Im53 60 0 R /Im55 62 0 R /Im43 50 0 R /Im62 69 0 R /Im54 61 0 R /Im53 60 0 R /Im64 71 0 R /Im42 49 0 R /Im102 109 0 R /Im314 335 0 R /Im55 62 0 R /Im51 58 0 R /Im47 54 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im43 50 0 R /Im46 53 0 R /Im76 83 0 R /Im51 58 0 R /Im72 79 0 R /Im250 263 0 R /Im58 65 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im51 58 0 R /Im112 119 0 R /Im51 58 0 R /Im45 52 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im171 180 0 R /Im106 113 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im42 49 0 R /Im110 117 0 R /Im314 335 0 R /Im55 62 0 R /Im51 58 0 R /Im47 54 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im68 75 0 R /Im61 68 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im54 61 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im75 82 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im55 62 0 R /Im62 69 0 R /Im68 75 0 R /Im70 77 0 R /Im53 60 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im68 75 0 R /Im61 68 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im46 53 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im72 79 0 R /Im168 177 0 R /Im44 51 0 R /Im46 53 0 R /Im43 50 0 R /Im45 52 0 R /Im51 58 0 R /Im61 68 0 R /Im42 49 0 R /Im45 52 0 R /Im67 74 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im70 77 0 R /Im62 69 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im68 75 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im45 52 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im45 52 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im112 119 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im61 68 0 R /Im42 49 0 R /Im66 73 0 R /Im54 61 0 R /Im46 53 0 R /Im44 51 0 R /Im68 75 0 R /Im55 62 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im46 53 0 R /Im44 51 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im51 58 0 R /Im61 68 0 R /Im65 72 0 R /Im53 60 0 R /Im62 69 0 R /Im64 71 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im55 62 0 R /Im46 53 0 R /Im112 119 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im71 78 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im51 58 0 R /Im47 54 0 R /Im48 55 0 R /Im54 61 0 R /Im46 53 0 R /Im115 122 0 R /Im68 75 0 R /Im51 58 0 R /Im43 50 0 R /Im72 79 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im63 70 0 R /Im51 58 0 R /Im44 51 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im112 119 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im62 69 0 R /Im69 76 0 R /Im55 62 0 R /Im62 69 0 R /Im68 75 0 R /Im70 77 0 R /Im53 60 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im68 75 0 R /Im61 68 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im70 77 0 R /Im64 71 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im55 62 0 R /Im68 75 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im89 96 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im46 53 0 R /Im66 73 0 R /Im48 55 0 R /Im44 51 0 R /Im55 62 0 R /Im46 53 0 R /Im112 119 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im76 83 0 R /Im51 58 0 R /Im43 50 0 R /Im49 56 0 R /Im63 70 0 R /Im46 53 0 R /Im76 83 0 R /Im72 79 0 R /Im69 76 0 R /Im45 52 0 R /Im62 69 0 R /Im61 68 0 R /Im104 111 0 R /Im109 116 0 R /Im44 51 0 R /Im62 69 0 R /Im99 106 0 R /Im113 120 0 R /Im170 179 0 R /Im171 180 0 R /Im109 116 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im315 336 0 R /Im72 79 0 R /Im281 298 0 R /Im234 247 0 R /Im233 246 0 R /Im316 337 0 R /Im317 338 0 R /Im271 286 0 R /Im238 251 0 R /Im241 254 0 R /Im245 258 0 R /Im253 266 0 R /Im238 251 0 R /Im243 256 0 R /Im259 272 0 R /Im240 253 0 R /Im269 284 0 R /Im50 57 0 R /Im62 69 0 R /Im44 51 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im46 53 0 R /Im55 62 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im51 58 0 R /Im55 62 0 R /Im49 56 0 R /Im42 49 0 R /Im54 61 0 R /Im51 58 0 R /Im89 96 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im70 77 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im55 62 0 R /Im68 75 0 R /Im47 54 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im62 69 0 R /Im70 77 0 R /Im43 50 0 R /Im51 58 0 R /Im45 52 0 R /Im63 70 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im42 49 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im64 71 0 R /Im47 54 0 R /Im62 69 0 R /Im61 68 0 R /Im70 77 0 R /Im46 53 0 R /Im54 61 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im54 61 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im53 60 0 R /Im42 49 0 R /Im47 54 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im97 104 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im68 75 0 R /Im44 51 0 R /Im44 51 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im61 68 0 R /Im65 72 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im106 113 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im46 53 0 R /Im66 73 0 R /Im48 55 0 R /Im44 51 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im76 83 0 R /Im51 58 0 R /Im43 50 0 R /Im72 79 0 R /Im56 63 0 R /Im43 50 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im110 117 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im43 50 0 R /Im48 55 0 R /Im42 49 0 R /Im63 70 0 R /Im51 58 0 R /Im70 77 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im55 62 0 R /Im68 75 0 R /Im47 54 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im62 69 0 R /Im54 61 0 R /Im99 106 0 R /Im104 111 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im49 56 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im51 58 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im105 112 0 R /Im44 51 0 R /Im62 69 0 R /Im102 109 0 R /Im65 72 0 R /Im53 60 0 R /Im64 71 0 R /Im103 110 0 R /Im104 111 0 R /Im71 78 0 R /Im65 72 0 R /Im53 60 0 R /Im64 71 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im48 55 0 R /Im42 49 0 R /Im63 70 0 R /Im51 58 0 R /Im70 77 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im51 58 0 R /Im55 62 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im76 83 0 R /Im51 58 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im99 106 0 R /Im101 108 0 R /Im109 116 0 R /Im49 56 0 R /Im101 108 0 R /Im171 180 0 R /Im109 116 0 R /Im49 56 0 R /Im170 179 0 R /Im110 117 0 R /Im101 108 0 R /Im109 116 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im99 106 0 R /Im113 120 0 R /Im170 179 0 R /Im171 180 0 R /Im109 116 0 R /Im49 56 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im62 69 0 R /Im44 51 0 R /Im42 49 0 R /Im53 60 0 R /Im62 69 0 R /Im69 76 0 R /Im99 106 0 R /Im99 106 0 R /Im49 56 0 R /Im113 120 0 R /Im104 111 0 R /Im104 111 0 R /Im62 69 0 R /Im70 77 0 R /Im43 50 0 R /Im51 58 0 R /Im45 52 0 R /Im63 70 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im72 79 0 R /Im114 121 0 R /Im54 61 0 R /Im62 69 0 R /Im54 61 0 R /Im51 58 0 R /Im318 339 0 R /Im319 340 0 R /Im320 341 0 R /Im321 342 0 R /Im47 54 0 R /Im62 69 0 R /Im61 68 0 R /Im65 72 0 R /Im68 75 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im62 69 0 R /Im67 74 0 R /Im42 49 0 R /Im54 61 0 R /Im42 49 0 R /Im66 73 0 R /Im66 73 0 R /Im45 52 0 R /Im51 58 0 R /Im66 73 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im45 52 0 R /Im62 69 0 R /Im68 75 0 R /Im66 73 0 R /Im48 55 0 R /Im53 60 0 R /Im64 71 0 R /Im99 106 0 R /Im105 112 0 R /Im113 120 0 R /Im113 120 0 R /Im48 55 0 R /Im62 69 0 R /Im68 75 0 R /Im45 52 0 R /Im43 50 0 R /Im72 79 0 R /Im117 124 0 R /Im322 343 0 R /Im296 313 0 R /Im137 144 0 R /Im128 135 0 R /Im125 132 0 R /Im121 128 0 R /Im126 133 0 R /Im121 128 0 R /Im128 135 0 R /Im120 127 0 R /Im125 132 0 R /Im121 128 0 R /Im125 132 0 R /Im123 130 0 R /Im323 344 0 R /Im133 140 0 R /Im138 145 0 R /Im156 163 0 R /Im126 133 0 R /Im128 135 0 R /Im148 155 0 R /Im150 157 0 R /Im149 156 0 R /Im298 315 0 R /Im137 144 0 R /Im128 135 0 R /Im125 132 0 R /Im121 128 0 R /Im126 133 0 R /Im121 128 0 R /Im128 135 0 R /Im120 127 0 R /Im125 132 0 R /Im143 150 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 333 0 R +>> +endobj +333 0 obj +<< +/Length 804 0 R +/Filter /FlateDecode +>> +stream +x¥}É®,Irݾ¾â-Éo O1p)P h#`-{#uÕ-õÄîú{eÜ4Ëw#âôcÂEYº¹M~Üÿüáß¾ýçéÛßxü;}´yú6}Lÿ»|ÌëômMy®ß>µ~ûÍøñ¿ýq«ßþåÏ?üÛúú1Gòú±>þÝ<LÙÉ[:·eäÛ'Ù¬¾N<M ,?ç3}ùHùH?,¿¤¶_å¯O ý|º~.ÒúWö=/åð¯®2ÿJùhÓ ^ç_Y¥ýç¹÷_IuFûUñIõ¦ü´Uúþü±®ÿsAë}ÿ¾|¬îÉMßeÕ7¯çóß'Öãsý´}¬óKÿ.ëÓï_ü^¿ß6òKø·Í~Qù'Íümýqú¾¾ÐÓõEûÃô'çIÒ¦ÿ9£õ¯ú¥·õKFüå?E:?f?sM¢ý$ü¯Ë½óoHç?kòGù?CùöÛï¼ û§Ûï¼@û'Ûï¼jþ®¿¡ó/çOåoþW¶¿eª¢þ6x~eBþoÝTû]Rì7ÝVåó¯dèÿÿÀòW +²_WùcúW +_]ÿJÍ·ìo©ÐÿÉö·4-~dú_´Àþõg$¿züZf$¿ºý-êÿÎòoë¯(þmºü¯Û=ùß`ü}ñ_Tþ·Uvþõ¿Ü±ÿuÒâwf¿ëø§Ûïê-ý©âýî?#ÿÝ?¥/(þFß?Aù©ÙßÄÏX~kÕâ&¿µÁøé¢?.áïohýåBO×÷/ÝÔyTL~{øAíh¿®÷ª?+ú~ýoZüËÖouým?0ùiI»?_õï?µdò{ÿÃþg5ókaw?øøWãþYÝ@®_¶lþê;(vã¾ã¸¼Ý¤,}=ÇþV@b|v)Ïâáì¥ ý°b±ã#±{ªÚñsìmÎò¯Õ[Âæ&?Ýÿ2Iû§òãÈyW~v»6°¾û¦ ¯cÏ,îÛ¾ìw×£ü çoôiº%¿Ùmoçû)v5ù¹®oØQIàüæËÝò¿¨öaWåüäºÝ2ÿÙ±óý§ØÉ=À^ÉùÍ÷£ë;v~\_¿åß5öLéS¥òúúTT_OoPÚ4æàUÀÁ³ )~y"/?%U$�òãAym@�åÇÿ®üÉÈøWÐ÷_ù>¯:_éËGÙÁ¿ÚÖ³®F¿¿Â�Nç?4@WfÇÒÐ÷_/³Qðf^Dý!àÓeù=�*+ÚÿUþ(ý� é�¾À£APÀdû·Gÿp�T³ÛÏ÷¥/M¢çàÏ=ù¯Pÿuù¯íüW¨¿ðê¯.ÿu¹'ÿuÑäõq¸{µÌÁ zP9®8Cà6¡J[B!¸·¤ pL-ûaÞrGßÂ7óÖ�ƾÙÅçH®c÷öty"¡Ïd×ǽú3Ui}úµJÜ£×ÿTÀúÊõßé·[ì÷ÔÞ÷ÓýÛÓgoÿ,zNöôpâzcO=þÓÔ¾EÏdÿ Éþôú~ýé0Í8ÿ«õNèõù=õk¾ôßóÓÿ:Ûò <¯ úßòyýý/ë3ø?ÑA~ëoéÓ÷èÛeÿëG:Éïó/;|> \à*@ë§J%Ë=8ýÀ5þØq¦Ó/<5å¶ È ý@á7È~ .ð.yàÔ2bB g3b;hpõ q.ÎUãâCß $¥Å¡~Ìß`H +2á* ר'¬ð¯Æ|þBê°+S²§ýÊúý.ÚÔKÃóü6 EBÛËó×СÍ|é<ð0°¼ ÛS=ã?N,ÔÒOëë¾,[(udðoûÏοú +§±@©èø±À"ñÿúý]^ûÿ®³µ,ñ®o7¹áõçUZ¥¥É¯Ö"éCâö4èOg|+G¿kÒ÷S$xª^O£µûSßü(ßÒOü±$IC úî2äû±þëiàY³4 êïUþ(oH̤±ò4dðýr`nø~ý)=Ï ì!Aì)&Ýã¿_ä»úOä×Êúþ|¿!öH#ÎÒ÷S$=!þ]tÆÖ[ú¿¿¤hö¤¡I?NôWO,ÙE$¼!û£#á¥mÒúôügôý×ó§i¨²?:T´ÿ@ñ +ã'ÁþÙú¯¿©òOø ¯ãÕ±¬NüÌÓXþèHdÍ0þÐÓ3ô4ÌìEVèiÌUã}I¨ÈÿéXä;æ¿ý%ú/Ùÿ×YÓþìOà%oú¯¿-êý¼ä¬ý¦ò·¡û~ÿ«ßH¿½µþÓã?Û¿'#p÷ÅÇñNä²õôàïH.+ÿV¼CX ÇiyaìeòõÓïð4ÜãúºïHiöÏßQ:=ýËÒ�{ÂÃ×ߤõ)ÿÆ?ý¬òcßo%¬½ïçØ?9öM¹é¯w¿^ þéûõw yßxZ*øþ«í§ç·N`ÿz ê]+ÖÊï¦éÝ¿eöäa¼ÛwØOcÞ$ù¥ØUBû¤ÑzìܽäU²týR¤õ)vQ ýÕ±Ãôï*®¯cVB??Çü£Æ|/zÈ3ß«ý§ØÕÖ`W«vþ4ßcÏNü@³('M~8ö üW$ú_9þxa_þßKèGý¿Ð÷ý+Ï·âÇR'éü9vü¯?¦í_þSÇ®æèú3ô?ºüÌHþò³ ûyõßtÿ+´¿rüPàí+ÐaÓâwÝÁø=Ý¡õÿkw«bèÅ?;ñ<´ýfþcÇî4ÿA¾¿TéûYT-Ûóíóÿ·ãrÉÚS/ê#~øLDJåKæDÓ³xò?zü]ä?¨âa%ìèþ ¿=¾°³ÁøsÏbVì'§×âW}Éö´@XþZ lÈÿ°÷ýó ÚÝÿíØÛþ·ãWWOûØarù?ÒKÿ®É[=ìnܧ{#¹l=׬®;O¿ûÈ#ØAÇÝëØ×´J_Ïs ´7÷¯·ßË¢ï~¯¼©#½^Bíï6ÇïmgªU:?N¿_È[³ó·æö¸åMeéühÞÔä/7e%´=þÓý¯íüm½ Ç]ùayWåÖúy񿂡ÓlíONôrÞä·¥ñµÔ?ÇÞ4þÓ¼ì×»å%ü¸Â?Ïé¸JïÙßîk/á×ì?k?Yoéï^¯Èo©îa_hÿz¼jçO±K?ÚßMªÿbØ\Ô° +òéywÛýÏHÞjíǾ´ø æ]åEÒÞ~râ/w¦É¥¯Èþ°ø¿¦ù^AüO�ûõ·»®ýÁØYÐ÷_±*¿j?È÷ûÛßè÷Cû¥ç½ ñ_;¨j¿qÝDµøåh?®u{H³?»Öì'§×â½tþ(ïäU?êyÓµ"ûÀÚèýÇòƺ~ëö¯Býä-èü#ygÛ-ý+ÿô¼§ +áÀ÷oþò¼µ{øCîá-MOìø@JH¯ûæ=;0é·�ý&Ñwú´¿Ñ? cY»Ö?àHîp"÷8ÑûôÖ§Øõèq¯×?àHï0Ê~ïÐûþ^ÿøþ=oL;?ÝYÎó^ÇîZëFïØ»moÿ;¡üÚW®èüí+Ñúù['IþøèzËx¥ ÉO oÔj¦Fõ'OHþuûµcwwì×Ýݱ_{ûÌ;ökoyGÿs¥ï§û/Pþô¹ö¯çæÑ÷ëywµIö½{çö]Nû5[gìÅä§!ÿµê5·3:?½flÇî®ôz÷½¼ û«çm9vwÚ¿~~Ðþ°ûM³ÿ;Û»g>Ï¿¾ÅÎ(ö3iúÇk6¡ýÓ±Ö×ï;v§Øoº~Öôæ{þ«Àø'·Vïù¯Òîù/3꿽ú¯2£ø-·6ú¯ïyoüýãø)ý¡ý°?Ù~1ìO»Ð¼© Ýî]YÏÿ¾îû÷õSû(ÓY}tEÒüÅ~¬fýÄ?¹{ó^óªÝ?XÍ+ºý°üw`tMö[îùâ£_öó{»ÀG· ø-P39£û§^·â£_zûgþ¿.äÿ)ÿWßF¿ ýt/µ3'zyôç½õâG·ìÊ[ÃñÃ÷ytëý)ôoF¿|[ë¡(tïØß\yßf@®7~MÚýõáíYâÚiû:øÐúðÑ®Oô:øåΣCÏéû)øÑù¶yð{<?¹hdÿ>ÿøýúþ+â ñ˦Ö×å·!ùÓ{òÞù÷N{ßÏç>Cù×Á7k==Ì?3z=þñĹ$}?s Ú¯«óàsáþõÄ¥¤ÙO +^d$?ð"kæ¿7w¹§¿¼´¢¯ýå Ë ýÓÁǦé/Eç(úË ýò¹É.ÿÓPâî>7YÑ_Þð,òÏÀ3M)ø¹=ô÷²Ô2vËÏĵýáµ=.ñß~f}tFú§ ÉO�|ÈÐÀ/Mÿ9øåú?}¹|¤$w-(:P=�>8y»e@|vÌh�·W}*Ë|*¯�bzùD3/g»=èzLЧ + <L¾Ñx¹¦¾i^Ö(>xy¾å�½ê´'¿}ðÛsÇPôH¼�1Z:ÿ@ÕlÖô¿×ñ#è]Þ1¯&IþxÇ·{¤âüz__Ð4Ö1@3¼èU£ + #Q�è¸j0Gïü:®÷ü_µïý,ɼ´8C¿ô×û¡ûï8 èÝ<ÝBïäºõÛ2 ¿»=ûåù¸y½êͺövÏéW¾yw¤¿|>ZÌ^¿ü{Ƕ½|ùO~`rUÅ¥Çé-óì(>õ)ÿlnÛ0ÿ¬ãÁi}}ÚuLjí}Õ�¿à÷ë<óíȽê×:.õøÏ3ç$<sn×gU§÷ôß;¶õè)xõ?�ÞÙàöÞùóªOÄýñ ds{|;ÒëǪ¦tý6!z}nqkÒ÷SðÑïÞGz¹cH¡ýÖåÖüÍüZòóîÞzU,sN]oky®ôÿòËý>·Úíïûoþei}9×$þÑn÷ÒßÀ´ Ê_ sÉ�ûÊHÿØWFö79Xý |Ñì?ǵèvükªþì©AÿÏ aüªÏ ÷Ì·ãþõiù6èÿÊøÈôÇýæØÒ�x¿iúC«7¤ÿ×ÇÏnæ\çü8=Zé?{}Ç{ÕìèùïØßó¯Þtì¤ ùd>UD©ºÕü7¯E÷?ýú_â~ÿ÷i£ö»Îýçs·áýKÇN=snðþãU·ýï'ò»©öè¯UÝöâFß&¸¾Üu«yòÄ ÿß3÷îà{Ç9åühË8Ãîlhvg·§#9¸ýcîûáÉeæû»Ó\öýiËëUÛè&ýÝ©NâK|3ßs\_ïÖÑé¦6«Ú:Ð_ï.å3GË^þÚl1é¾ßÚéuÓ·Ù«Õ\ï×`íÎNärÖÛ¶ò@ÒM©<-¯OH ×§¬½dï@HÍèðPÜH*n=nÉï;òn+Xÿj;(îê9Çõõãø¨xoí_ò飮Oô Ó.ó$|R â¿qþJúìÐÓó[ÔócFÄ?kßßMµ^1Þ9?Þñ_ÏÉÒÿ@Ò¤ßû:Æâv;å^§qtZ%þÓýgxþÜÀÍâ_àü<iµs~¼b|øÇ§ôjÞ»ÊW\ßô7´kSF{þòÍü·ýoÈÿäoú¯¿Ûø»]7þ!¸´?¤Õ¤ÉM:M¾þà¤ä'Pq¡ÿ×+®´ÿnýâëÃøMÇM+ÿ�nê9kú_²)Ë3?}ÊòìsäRFã² ëþn¸WÞ=ús}÷â¸;:¿üöwDòé6 õWï6é¸S'þ¥¸oFçÀ}ó*ÆO$gÓsV;öâ8~Ñq_wëÆßøþ[â^4V¦?|ÒÊtËÿú¤Qû³w¼c*tûS áÝ&ÑùǺMùoR¬Å´b\¼1ûõÊYíÚ/{kúOgsÖ¸' +Þù«é\>=r|"+Î<ö=+n}J±a?ÓÒ±}¬`»H_O±3/ø:ÒëÝ +3Z_ÏyK~wîðbU;>]Vx~zÁ´uîKëö¨ñcèÍ|kÚCågÞîÉÏÖ|ÿÑùëØ§ÛþãùëblÂý¨þç)KúO»ýMèüÝþRùO°/ïÈÅn<çëH¯Cûèü&mM~ýyaoûñ7dJ¼Þªc?yÎì&éž¼ÛlÇ~ð)Áùÿxag]ùaÝáùº5¢õ#çV/{ ׺m>s>+Z_¿;'Íð)ÃÐȱkÉýå9ÿÙÀòÒÿèØ_äà·Ô{Ño©PeÿWÒ_ÝÿùàÿãØÓ$ÅξÿúvN÷¿qÿ,çÙï�ö»¡ý°ßMÓ?zwþr&'xÿL FçÈL(þäfè¿tìɱ³ÁûS-ªý#ü«0~Ö'eTxÿлڤ¦>ÿY½ø2h?ûñ>éeFçÔ¢Å|RÔÀ¤ÍÿQìÏûUtì'´ô/ ?¼ÿÈo7mBñ~ÿm Éo$g¯ß¿¬ÝHÝæ!ñ³9£'rùµf#GrøµI+Gò@ÞMZ9ÑëõÖvw>Òë9ÉjõOëëÍ3Ú`RLFëëB}ÒJÿ;)EÝï9ÑëØåÎOÏ[³wÞ÷sú&Ò³¼?$zÂv²wã½¾¾½÷ÖçyÄÿÞ¤þpì®HësìpäOYò/`N¯Ù·õ_À~¿çÝ)òCëUÓ³Þ¶>ø0R¯½^5CûÈ*H~yßU~yÞÜ¿>©§Ýóù¦ýÉ¢ýáyw÷üoíÕt0ê²½<Ú¿lõ½ýÓIA÷{¢×{½MÈÿòf&ôýì} ï+iö7»ÔôçíU)þ¡yW¿x½zöj,?¡~3=öùÏêÕýÒ±óÒÐú)ÍPþäNÿeFë_ýïU õO×ßåÿØóîýåôU¼|²^ÈÿúElPþA¯QüvRlRÕéü®ý:n74ð`1¾wëÝÂÍ&{L¯à|ôXå vçÍ.×[ÄÖ{ßOÁÓ.púãQ á8�>.·Ð}ÔâÀ(ÿtÔêêôeèñÇïúzY¤�7{DßÅ¿èèäWVaàeÒôÝ|·F{õ¹Ißmzhöx$× ÷ þu§Ý +mÎà^G-sæÄ==sÉæô¾_>^èá^><ó®·>E¬j÷D¯ª)ÿQ5} óΪ~{çGÑëÔÞÓìèágô±¾ïtÎÑ»ü÷èµÃ?*Ò_}ÎU²NýýóªÛø¯£·+Ò¿@·KGÿûwÚùÌYÖÎg¶[üóÌÃ=E/üõä(?rÕIÎýíeþì¿<**&?ÏÜCöK^¼Ûå^|Tâ?Ê<d«èþ ú6#ýÕ»ýäE/úËw^ýd¾®ÿáè#â j{Eò¨ÚñW`N5´_×ø©>vöÏ«~¡ý»ø¨ÝÿÌéônÃûÏèüÝú +Z_×ßâ¯úëU»=ù¥é¿¹´w»öWïöíW�½ã/ºÐkhÿèÍi=ù_=sx ñ39¹¹þNêý +LêVÉSð)Ý¿kÒâo¾¾jÿ ÿ²Æ?yïèõu«\n¡µªöðß*'FïÞmrøüf¿èàåã7¼\´û/ï6 í¯^®Úý¿nöì?åßâ¼l¯ûSÏ~±Ì?õþBÀÇ4Kñ?{|pðÏ +øØÛCü;ë¹W[«ëGù>Ë/Þ-òôñzæu¬:Ñ˱Oz9í_ýRBëë±_rÛß9=.èûåØï ×Tý&t~²íOIo ó²AåÑ3çlJcÿT~üåº#?ÿ3ÿ6©aX~üîÛÝ®hý�öî¶pýìoëïØ_yĪvµõ)öeU/=ù¡ØcoýáôèüÓ +²ºóÚ;æ)öyFò¨nõÞú é/½qæOö»ç<;ýâò3uìÉ8øÐõÏ3ïºòϰ+¤?:våïFí¶Á£ö¿LHþtìºXÇà^üÃéWfþÀø#0%×:Þõý?î ýÐ3· +\_®z/Å?WûE±º>±ý»yxÖ·;Õÿ=ÉJy]Ëçõ÷¿¬¶ü¾�û×ßàúWù]?ÒÏ¿¤Ñ!�´ýñü@½¼>]µ¯àÉf~àz×ý5M<ó�tÍ>Û0ûÁôwûxþð}ý¹~bOL <ÛACPÁj?`Õã<°q½]0Ôëï¦ô%0]5¦à#·ÇîÈÉ=ØâÈ#¹Þù}òíç!?¬zûD2øYçúè¯oÀ¼ûÕöȱî1'þ¦.¬ÿiB©èøõÎçÖ}bÏd}ÇÑúXw¤¿æ Ð{dEâ¸G6Ä¿ÀÔÉ{[¼{Õ*ÊÏÙú=íÕ''ù8í_¿GÛàÞþù=vûtGò¯càÛ}b«U_÷ÏådIþø=¯Ü£ýþX~Fú¸GWäε~ þGÏ¡±ÎË£öÛ»OõüÏ!AûL^Ôýù[þ*àü åx~z´{lºþëÜó¿¼Ù_½wï^¥ðO,·âUÿCøçüþñîSYÜ?¹ÇWdÿô7Üõ?À¿yýÁAfhÿôî]³¿ö&öè)±"ÿx»jòGé7Íþ]s½�Ùö¢�|ä(tÀúÈQÁ³fiërO";ÒËíok¹'¯ +®Aô£qö$ÍôZ¯÷`z~ØèI8�ð +.-d\x!ß¿:�OâÐ`Þ~ +] ô$®6!iÝ®]ÿ´_z�Ö`�ZXàöíÀÔ`ûËCûªbÔ¢æÏÚWÈ£í«äáöUGòxûª½|$kßrúz=Å +0NôúØAó]'öFféû)xT}�¼,ðüh«$¼´uºµ:ÑëÓZ?PÀfíWzßßkßtâ¿ÜºÙÀNô:øêàWG}{àW_ÿÞ_§óÓÇM$¿´ê/z@z^õÎî?#ùCúGÀRýR +|ºg?¼µ^@Õ³<CÕ?Íñ_Ïf$þ-èüôËo^4ûÉ ýb'§wýo±¡üJRôÁÇ.ÎbðC.Ï +àÏ4KúG=í¯<2Ü[·é3ÃKuàűJL+Xª`ëÌî D@ÿ¦FÏïû'`^Á4êÀ¼©çÀ8ú XýB¨·ß)0�Ñû综öäÎM|§¶·¯·¼w;:¿�x3Áï×Át/�«Y ÀXïõzKþ+`ô,´Z ÿsÕý³¹ Hþ#sÑPAoüB8½I �ÿ ýÌ|Ù÷öÊÏØ@ïwËBí}?ÕÿM³Ì~íàÕ�ÚÁ§Ñ�ºYѼOËû±´Ê¸$ßVGgHêß>ô¦¶¯·±öI=îñöIôý}ì×Sß,ôD¯ÙËK\z|ý ì_zNEý~ÖþHã?þ÷öIÁÇþý?¹äÏèå +@/:ÑëèÏä7 ¼ê;¯þqômAëËí/¼yúÇÚ_ì/ê³ÿÑR?ðûMèþöþGOú¯°è£@ÊS1._So' ìVø äR ?�dðpï~åáôÊB¤HÇ`æ)bMFh®êúDV8a5èÀ´°oÈ +¦hÁ±ú;÷©ÆëGyI@¾^â8·J '¸ñY¦Ñë WÈ)äyCû×Sà½ëäÃ¥X=?NQ¸¤ù1ÚÜàA?äGýPñWA?ä)lq?dôùÁÀþ+ôãz +VCqT�j÷®eÖîtý¿ìãÀSÈd9§ñߦÅñôû·Mú~ÚxBû×õ¿&-å \½åA÷6BÊùñæþr é PA°oC´Û¯w%$¼¹f9oÝcvO*¿3 ôV,{ ¹"?D[üÚXyBÇþSþÿ¥ò³nüpÆ_à_bö²çäxúÀ,ÙQ<ÿG0d?PÄï`No)eÈeÉß`äú0k$r"×QÃíì¢Xþ{\_ö¾{s@hÞ¤ý÷FÖ×Q÷Çõõ®¤'ÃåÑã^Ï᪪ôókðüõó³aù³üå¾üÓò{úÃ髤¾ôüM:?Ê!Øã?aÓÿw®ç§G?Y´?Î=A×r@þðÖ}?âmÏ7OçóÐãïÞ«É(újðYYÄÇKïkÏWWö'ÏÃ+Ñ÷WBZÁöÕ3Éï ð7 ñOH q:[ðòâ0èââóu:í=8âÀ }®ðWøäù³#H×|ÎÃV�!MNqZ Ç@FÔ"Zï>¤=Ã'+Â=®if¥ï§1ÈÖ¼¤úKrf¬È>ÇèõÈëå¨é¢ìóôrC7/£ïs EJÈ$¯ErCò@;5Ç:û§Ð4GÆÉÂïd2/Òþi&±µ³;¯gr/ÿ6+@;Ä Z }ò¦É/Y¤ïçeøhÿz%r=ÑëÐÑë¹¥ÜJÑâ AW$ÿDÜù/Wö¤#�½¤ØÃQûíeôýóë¼atìOnÙ¿²iò×}ÃèÚoÁûh7bôëkXõDÂAûWu4ª¹JòGaºÈ]ay½zeÄüSÚ½ÏA@ëüWà `Aò«¿á¿Þ:þ£ûpü~ý m þC_*ô7üúÞWRñ*z$züÓÒ=ùoéü[7ãÛPø³.\~B<ë×?+ý?Ò)';üã×@ ´ÿX"ïu}=øIFw¢°§Ðu¾¡Ïôð2t´¾ÞÂ$U´~`l½ÞÀ»òÃ@,x8®¯Cð3:ÿÀÑÃOó£O+ä¿þµ¢õõ:ÉÏQùÛÿ"eô¿ÞK=?£wøª#´¾_^s/³"tìï!9ÝÒl=l{úÃSÿW俽ø«Æ?^ƯyúýMû~ºÿYÖÉ¿¼æ¿ýòݱ?ô rµ2ôãþå2ô½æuÿ ×ñkBÕ(E&Í�ñ&p}=Ièû¯ÈÑ»M +`)z7I8ú ¸}³&H®%�½»§À¥"þ2È=yP4`z�ñBÿ Ws7�êd0wåìÕpz~«f9zô/ÐDÕ+ ùÿBÿùï=4G¸ þÉöûÕ`ôû3`õï/êùô´jöfàVÍÐý7@êûoÚ´×sô[å îÃôBç§gà/ÚòUùÿ~k?�%û·Aò½ýÓ&¾Â¿iH{;T`�!7ñÝ3 µ0é£4 ûÞÚ9ø|$»Èl¬®[O¿ý§ÁZ?û4@ëÎ'õh úD/O!N^>wä¾ÜAûÕ³óýtÿe£ <ïd®üÓn÷°ê?K^¤ýSþ¹ñT¾Wöuhvåìß;òË~^M4§õíÓGߨ?*¿adt~:úämHÂæë;úø¯/gÄÿ@êY%ùï¢wþÑï/È~ÐÓ +í§úÓóCþFzð½pÊÏo Á¬Ù/þ-ÈýÈzDÇþÐý¯üÑ NÒåõÒz0:xÖ=~L(úAà¹|Oÿdå/ðì¸<ôxúûjÂÙÑ_fÿwðM³ÿ<Sìï¡©Ù/vùØSç®ôËGij�JÐGltôuF »9#ú@t5ý]5ÀÑ/äÀtzdÀ·÷ 9�äñ ê}ÔÈwèí_4@|ͽ�¾¦{¼O°Õ`ÓÛ?En@UhîTålÐ0Þ4Ísô-¡�NÏÝFýXîº@ëºh ojßpà)É3èêðõÁá7Íð:È+-°i½¿è¯ï¯ûÈyÜGói@÷"ïå?,À¿%OÓg,<Òëè½Wàèeÿ³Wà_÷¯ûÂÒûþ^ËÓþõê3ë¿_ßé+âÜÁάáý[ÿ¾ü0�kû×G(úÞþ©üÎY_V}Ö×Gø¥E?Zlñß>R¼jÀóÏ +@ýOv<mF 01ï*iÌóϪ´ !@Ð,öHÈ_ªHôäûløéüuÍ7OëËdnÎÿy(ô12£ÈóÇF P^üDf ÃóÓÜí_O¿ßÓ¿�}`Kä�r�"¡ýmÛ¨ýòâ˸ý2¸þÍCù³¥Â�Lo`hv/¡VCö;2éO ý°Aýóg½å¨ýw�ª§¿ÿôß:ÿa�@PW¤?�mÓΦ¿m÷ìo4ûËGkþPèü#ts/`äþïÉ_-üQ�¡,·ìW À]{Õ"3j¿µ_uÖôòo¾¿VK?ÕB3zاÐhòÏWÑþÅ« háýIÚ4ª^<î×ïg/xû¿ß½àÑdf¾÷Ég4ùËV_Þ'2éµç×#¹^¹mÌNä2öéChN»× Xæ^yôîn¯¯'zÙö$K=>ÑÚWjì§Ù7ÙÀ%ÝýöÚSåû{í/Oôáö§ï×Á'ËþêÑ·FjG7°ÿU¾{xíèÎÿ÷¾gIÚ?o9#þëµ»=Ö_}Vþêçgoýó#ú³!ýÔÞMþÓì%k\r¢¿øÖø#'$¿×Æ{ÊÈ~²ò=ýawú¼ï?ÇÞüF�WÍ~Òïoÿzé ÿ]þ³ÚÍYò¿¼ñYøÇÀ{§;ÒÀû¼Þ3yÕ ï|6Ý2@yC\þ'ôýrzM(xcéï'z½ö@ÚÃ8P{µ�nçÓgP�¡÷oÞGH 7Ï(b�E¿¿Áó×G·gÿçc�t^E³¯fôý××oÊÿYÀ)ÿa�vå?¾ø÷¿/>§à7 @ñ Ù¿%ôíËCß½>Òì½ @Üûµ¾.põý¾kïWûx{ÜeøE(üRQòïNu½7¯=Òë-¨½zóÄÁLèõ>7`å'*õÇþ 5=à !8C +¡¾Â±*/®{B]ë-/RWÕ±AÎÈ Ô FQ:ºiü£' +(£¢rY¿}Bx~ û +kÍKä®8ÄaN¶§'ù#6¾®¿åóúSÖçòGúîxý ®_À=v>)àúæïUÇ(é"AóG=ýÀS§½Ûù.HÞÃÔ\DøÙÅÍnâ¥~¹É嫺F"¶2C»ì9Ñ~ "ä*LâZ?õò~à* Ó%°-4xÊ0*û~à ×cðX!Þë!bBzÛ°.UáJ²~¦è§Ã5&c}ÓWz4Ñ�úv£;ëÝ<¬áHH&@Hç´a�§õõtNÏféì#úÚ÷SDÛê©Nô:¢ÑúXVpZ_®§ò$§õcá´íé°ÇýëÉZä"Ò3:¿�"=#ù Ò:¿@7Èé_àEjÕä[¿ùá|¾¿¨ü'¨5CëÉ?4özðÏPêñ;ï� ýÓ³aýEp9«üÃ/bÚýE,W׿:ô"«f?) Üÿô±lÍÐzúC³A=nÐþø8÷Qû³×ß±?û(;þ3¯r9MÞPô%³ÍÿèfãèÙ¸IzÍGÏß)öÏ�úo½aAñC ´ ýÑRJÕì?eã9#¥4(rFÊ+v0~/³f?ù(Iâ/×âw>Îé_ £ äÛã8ø>ÿ 6eQþÙ8øE²?LZüÌG¡ ø/Plý¬zþ6Ó÷§@9~AürïOüÐrhhÙÜmTÿ J]ÿÆâ·*Þ¨üÀûò oü[ÿCýlX6¦¿tÿ+ÒßëþYüè£Xúñ#Þ´øCñhÿzüаýñÃûQ,£øå$+ÊbÇ×é x"»!Y:Û)6~Û6¯OÚò<v_¯ØnËLÙÖOCÐÉ*9Në˱§co½Ã§ØQIèô¥à GÉ0»©HúÙÄÖütþrì²gÓþ˱Sò°+˦í}?Ý¿Ý{çßÃîù·æ[Æ'ïèYÞ$ÿ)ö½Aý׳9'´¾þvíñ´¾>I"!ý×Íï½Ý±¿Ú�víî{3´?dȪÇþÜþ¤¡^|½Ö{ñeÕ·_sýÃî6;4ì®çx2~¼¯ïËÖ׳é÷^þSìeþKnEµWÒß±ÅÒHFÏß{9¿÷bµ¿¥@ùÒö$õYJ¿ç²í Uÿír�¬¢TÄ@½¢4¤@RzdÀ#HWó&0 +^.Ð& �\cë½Ï zܤ | @L´Û'dÀÀ$Qlô_ ° �Z<óRøQX«Qð´i²£H�<a�,_`ëôGo¦\ç/cy¬ýåÑ82ø;�ñ®:°½ýêÀÒ$_AÛ%Hß +t¾£+I°ÃgV5 öø{"¨ ¨¶Üµ=Å&¸}¹Ð'!ï-ñFª ubê±ç¾mÒéñVDOñbæëH/¿}%7ÿz½lÏ]»ÒëÅdÉÝGG~xîZC߯O"¶jôüñY&ì_/&K3:ÿÀ÷/ðüåN²É©Nû¿Èª#yâg í_¤é {ûçÕàiÞ«ÑÑþ$¢§|º>ÿ4ûËg¡T°ÿ@5sö30ËÙ~\+©ö*½ü3zX¶/¥XMÇOmz_ÿXîÛÎ_Î=ñN½ó§üÿ$?N¢Ö cäü>÷¿Zðt8¿.&>Oö�Þ%r�m½~)ß¿¼<î�?Ij�Á�,-�¤�VoàR��Ì¢�ôü`�À¬[?�#ÕØÖJò¤z5þ|Ïx5w/�¤ë/hÿäËÐäË9 @òå` ùrCûàO¶> zòeMÈëÉ{òÙXåÐûä³Qù¯Ù/½whÿóoÈ(òkàÈg�t Ô²[õàÉ_»t¬¯(ÃL/ß £¬Á51ÁµIãÏ>C7àH!¸æY�çuÜñ�î}ö¹ü<|ë÷×y,÷ÍFyV¿ À\Ã&¸¼üúÜùÌï3_y/Æ ÑëÙS éÅhÁÏ\ߢ¼rt½uúÉúÿ>HåÖùyðÚ9?ÚKÑoü±Ý;zvån»÷ì3EyyöÚ&ÉE_öÈ[ þ*?'TüïêvþÉßy>8ùí"»óé0ÂR@¾GàGôúý>@À¿-*7IhþçO@èþ`ëú²`ïòw¯øí÷ÚÏOïy OÔÈÛ1"�:)ææ:´½¦È§ Ï÷NÀ1 Àܤ ôRo ^ý9êòzÏyîÑ$op}ÙeO@éø0 U<nÎH ú�@òtçü(c�T �HYÀ�TUùgÃ�Hm|( ã|7b�ÆÞNê\½UVd?õêbÝðû1 àüèÕ[Þ¡ LvìpGz½z.!û¨ËHþÕsYÀøHÀªÚò¿¢80K£i¯þ¼ç^ hw :#û¥g0ÔÝAôºhúÃñ;xþrBµî9ý+Ñ¿ Ý¡v°Íâì +ò^`gÐp¹góØÃ@+Ï.wð`¨ÿþGàøí gç ;#^ïeêGzýûwíóûÛþþÏÉ®P§�!¹{Ö×Gpþ«v ɳ{<äHX<Ð0}ªÉ^KJÂÄZ z]½ãùåÀ»öBµ(-ðu5J~Ö£%ÖôÔbº%>l@Ò eOå8ʰ>×#Áð\° ì?�¦A%ÖÛXæ °¾£áïçXÚl^èµïgòHOþ Éml¥÷§Ü=M ×a?öL¹fÃ?0C7ÈVý�¯ê�MôËä^o´gÐÁ °È`aäFõV@¯rÊ#ÿdÜË)ïÀÑ÷ë¤ÂÁºE3¡¼Ú& 1|°1£ätî=íiò{Ù?꣼å'ö4AG Oö.ÞO¢Ã�z�@ý�V$�z/Ï/# +oÜÀW$<É>ÛVhAJºú¬è²0\Ó2Ò Ðí@O©«¢òFGJòªÓOo]ÒUÑúzIéX %nFqP ØèOâú¸(qýþUû~ZR¼"þëY-uÓE´6Ë)ÑÍKªãð6i6Ò'´¾Dµ¨Y¯ka¨µVB ^Ðz ×=5³íNS¬å^X÷>%Ñ/=M)J|¾Þ&y=Á}|"I£ßï)YÄ>^·ý1Ñïw «ú@C*8ÒËÓÉ5Ãî?Ù¿4vöO¼u~T~¼ #?4%ÎQ¾RÐê)UÇóÓIÍÙ÷kÈg0ÃÖ×Èl£Ù÷Ô·)]ü6ô UíhFH&Lïgî=yEøUÓØánO° +Ò"¿éåK`öKàþp \æúüý¿N¿òOÓçĨG¶¶ùqÓÇ6}?Æ¿QOÆxgªüµ-BÉà.zkôüæå¯_7àIÎrø¼½Z¤õ£|o,Q@iÊùÙ]éu)¶Ä�}BÊ ·-Í>«þüB{ãA®p =ÛÁ¢í2ÑëûzL¼£ÿ�þáß`»y +UäÝAwpg?àM²N? Ød¿Rt¡(?`;ð,Éã®ãê®qýÀåà:æw +=þÀµÕ�Õ K¢ZÛ'¬X{ðt5i3ÿø¨ÛÈyþP®Î®ôüW»ÓðÒ�ÉAÞu~Bv£:j31ª²U~=Ú½çè-«ü +PFr.ùUΪ³n31ª²U~=ÖõNG9+T¦/é¿üôÿJßÒ·þã ÐÛcLûþ¸#Xy{üj[ÿÏo¿ýÃÿó·?üþ7?ÿéo?ÿó·ý_}ûË_ÿüÛÿûûíþ¿oÿúï¿üþøöëøÍ¯ÿñÛ¯>¾ýûïþ_?ÿõoÿôíw¿üòþñÇ¿ÿýï¿üî÷ûøÓÏ¿üøëG`õýú??þåo;ÝÇï~ùãþñÛOÿûÿúÓcwÿ/B* +endstream +endobj +334 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 805 0 R +/Name /Im313 +/Width 20 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿ¡þÿöü +ä|ox`Ïð áÁ??00(`ÿPÀÿ $ÿÁ¨ñAûÿÿAHD¬nª$�"<$b +endstream +endobj +335 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 806 0 R +/Name /Im314 +/Width 31 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-ñ Â0@ÑoY²)NIë*© >ºt¬â\¦�É«°ÉâÜS<éÍ kE·FÞ³rVnïÚ¯/ºú1rLUJVöÙÌX«1» +÷Ó(È$¤ï% c>Ú\ý÷L~£1%|?A[ÏçåóJ æ +endstream +endobj +336 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 807 0 R +/Name /Im315 +/Width 14 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã? ÿÀ¢ Àm +ìðù +*Ø<Á +ûüøë' �Z +endstream +endobj +337 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 808 0 R +/Name /Im316 +/Width 32 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿPÌþjØeXeøP± ûöÿÄ˰#a ZÅ`Äu »þ#Ù T·P�¡>K +endstream +endobj +338 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 809 0 R +/Name /Im317 +/Width 27 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿÿPÌþ ýÃæ>``ø¡¾ìXȶå¾``|Ä00üÃÀÞðáÿA 9P,-V?U�«-Ù +endstream +endobj +339 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 810 0 R +/Name /Im318 +/Width 20 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5» ÐK((i,-ì\ ,-LÀI\ Î5 Äxr´L6»ÁrÑÜ7PZ÷M@ü[°¶]#<a%-$þ ¾E1©XL¸+În>®þÛ. +endstream +endobj +340 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 811 0 R +/Name /Im319 +/Width 22 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûøÏÿÃä>È1$øð3`on`üÏÀPà &^7M�@àm +endstream +endobj +341 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 812 0 R +/Name /Im320 +/Width 22 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÇüç?óyò Ò@HòAä ª�# 90âO`�BÌ`ÄøÀáÁJ¯&�K +endstream +endobj +342 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 813 0 R +/Name /Im321 +/Width 21 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUË¡ 0EÑÛTÔ"+ q¬ÒI`&`¦®ÀغÏGrì!Lv¸¡ +ñ $ZÑ^,bY\¬º÷þ«®·sx�JB +endstream +endobj +343 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 814 0 R +/Name /Im322 +/Width 11 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xg°o(<�ìäì?B[ ¾�Z,â +endstream +endobj +344 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 815 0 R +/Name /Im323 +/Width 18 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc?Æ ÿÁÆ¡B¡á +¥ +äß1°c`àCEõHH¼¾_�¯Ôô +endstream +endobj +345 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F2 482 0 R /F1 480 0 R >> /XObject << /Im324 347 0 R /Im325 348 0 R /Im176 185 0 R /Im179 188 0 R /Im84 91 0 R /Im175 184 0 R /Im80 87 0 R /Im179 188 0 R /Im58 65 0 R /Im62 69 0 R /Im61 68 0 R /Im51 58 0 R /Im44 51 0 R /Im64 71 0 R /Im65 72 0 R /Im46 53 0 R /Im47 54 0 R /Im42 49 0 R /Im53 60 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im53 60 0 R /Im44 51 0 R /Im43 50 0 R /Im75 82 0 R /Im46 53 0 R /Im53 60 0 R /Im53 60 0 R /Im70 77 0 R /Im51 58 0 R /Im66 73 0 R /Im45 52 0 R /Im42 49 0 R /Im65 72 0 R /Im48 55 0 R /Im46 53 0 R /Im47 54 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im46 53 0 R /Im53 60 0 R /Im53 60 0 R /Im68 75 0 R /Im43 50 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im58 65 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im72 79 0 R /Im94 101 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im62 69 0 R /Im61 68 0 R /Im65 72 0 R /Im42 49 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im53 60 0 R /Im42 49 0 R /Im47 54 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im97 104 0 R /Im43 50 0 R /Im51 58 0 R /Im51 58 0 R /Im166 175 0 R /Im46 53 0 R /Im66 73 0 R /Im68 75 0 R /Im45 52 0 R /Im51 58 0 R /Im99 106 0 R /Im106 113 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im76 83 0 R /Im51 58 0 R /Im43 50 0 R /Im48 55 0 R /Im42 49 0 R /Im63 70 0 R /Im51 58 0 R /Im70 77 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im67 74 0 R /Im51 58 0 R /Im65 72 0 R /Im44 51 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im54 61 0 R /Im44 51 0 R /Im103 110 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im61 68 0 R /Im65 72 0 R /Im53 60 0 R /Im46 53 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im57 64 0 R /Im46 53 0 R /Im66 73 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im97 104 0 R /Im227 238 0 R /Im226 237 0 R /Im290 307 0 R /Im291 308 0 R /Im49 56 0 R /Im227 238 0 R /Im226 237 0 R /Im290 307 0 R /Im224 235 0 R /Im225 236 0 R /Im225 236 0 R /Im49 56 0 R /Im292 309 0 R /Im287 304 0 R /Im293 310 0 R /Im227 238 0 R /Im226 237 0 R /Im290 307 0 R /Im291 308 0 R /Im106 113 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im43 50 0 R /Im53 60 0 R /Im46 53 0 R /Im66 73 0 R /Im48 55 0 R /Im44 51 0 R /Im53 60 0 R /Im64 71 0 R /Im61 68 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im45 52 0 R /Im64 71 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im75 82 0 R /Im62 69 0 R /Im71 78 0 R /Im53 60 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im53 60 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im97 104 0 R /Im292 309 0 R /Im287 304 0 R /Im293 310 0 R /Im227 238 0 R /Im226 237 0 R /Im290 307 0 R /Im291 308 0 R /Im49 56 0 R /Im292 309 0 R /Im287 304 0 R /Im293 310 0 R /Im283 300 0 R /Im284 301 0 R /Im284 301 0 R /Im285 302 0 R /Im106 113 0 R /Im48 55 0 R /Im42 49 0 R /Im63 70 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im53 60 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im68 75 0 R /Im61 68 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im46 53 0 R /Im51 58 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im62 69 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im111 118 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im72 79 0 R /Im168 177 0 R /Im44 51 0 R /Im46 53 0 R /Im43 50 0 R /Im47 54 0 R /Im53 60 0 R /Im42 49 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im61 68 0 R /Im46 53 0 R /Im54 61 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im46 53 0 R /Im112 119 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im43 50 0 R /Im75 82 0 R /Im46 53 0 R /Im53 60 0 R /Im53 60 0 R /Im54 61 0 R /Im62 69 0 R /Im44 51 0 R /Im42 49 0 R /Im112 119 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im65 72 0 R /Im45 52 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im53 60 0 R /Im44 51 0 R /Im43 50 0 R /Im72 79 0 R /Im166 175 0 R /Im46 53 0 R /Im66 73 0 R /Im68 75 0 R /Im45 52 0 R /Im51 58 0 R /Im99 106 0 R /Im167 176 0 R /Im73 80 0 R /Im112 119 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im76 83 0 R /Im51 58 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im68 75 0 R /Im44 51 0 R /Im44 51 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im61 68 0 R /Im65 72 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im49 56 0 R /Im102 109 0 R /Im71 78 0 R /Im65 72 0 R /Im53 60 0 R /Im64 71 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im69 76 0 R /Im62 69 0 R /Im53 60 0 R /Im53 60 0 R /Im62 69 0 R /Im75 82 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im54 61 0 R /Im55 62 0 R /Im43 50 0 R /Im43 50 0 R /Im51 58 0 R /Im51 58 0 R /Im61 68 0 R /Im44 51 0 R /Im62 69 0 R /Im70 77 0 R /Im51 58 0 R /Im51 58 0 R /Im63 70 0 R /Im46 53 0 R /Im55 62 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im166 175 0 R /Im46 53 0 R /Im66 73 0 R /Im68 75 0 R /Im45 52 0 R /Im51 58 0 R /Im99 106 0 R /Im72 79 0 R /Im56 63 0 R /Im54 61 0 R /Im64 71 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im47 54 0 R /Im53 60 0 R /Im68 75 0 R /Im43 50 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im61 68 0 R /Im68 75 0 R /Im43 50 0 R /Im44 51 0 R /Im70 77 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im67 74 0 R /Im51 58 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im51 58 0 R /Im89 96 0 R /Im44 51 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im61 68 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im44 51 0 R /Im97 104 0 R /Im99 106 0 R /Im104 111 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im106 113 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im47 54 0 R /Im42 49 0 R /Im53 60 0 R /Im63 70 0 R /Im42 49 0 R /Im45 52 0 R /Im46 53 0 R /Im42 49 0 R /Im70 77 0 R /Im46 53 0 R /Im53 60 0 R /Im46 53 0 R /Im44 51 0 R /Im64 71 0 R /Im72 79 0 R /Im310 329 0 R /Im56 63 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im76 83 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im43 50 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im68 75 0 R /Im61 68 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im54 61 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im51 58 0 R /Im54 61 0 R /Im55 62 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im54 61 0 R /Im47 54 0 R /Im64 71 0 R /Im72 79 0 R /Im168 177 0 R /Im54 61 0 R /Im62 69 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im75 82 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im43 50 0 R /Im49 56 0 R /Im42 49 0 R /Im44 51 0 R /Im43 50 0 R /Im62 69 0 R /Im61 68 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im49 56 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im43 50 0 R /Im46 53 0 R /Im70 77 0 R /Im53 60 0 R /Im64 71 0 R /Im70 77 0 R /Im51 58 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im99 106 0 R /Im113 120 0 R /Im170 179 0 R /Im171 180 0 R /Im109 116 0 R /Im46 53 0 R /Im54 61 0 R /Im62 69 0 R /Im68 75 0 R /Im45 52 0 R /Im47 54 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im49 56 0 R /Im54 61 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im66 73 0 R /Im54 61 0 R /Im46 53 0 R /Im111 118 0 R /Im47 54 0 R /Im42 49 0 R /Im54 61 0 R /Im44 51 0 R /Im66 73 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im43 50 0 R /Im61 68 0 R /Im42 49 0 R /Im64 71 0 R /Im70 77 0 R /Im51 58 0 R /Im48 55 0 R /Im62 69 0 R /Im65 72 0 R /Im51 58 0 R /Im55 62 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im70 77 0 R /Im64 71 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im76 83 0 R /Im51 58 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im47 54 0 R /Im42 49 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im70 77 0 R /Im64 71 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im53 60 0 R /Im42 49 0 R /Im45 52 0 R /Im66 73 0 R /Im51 58 0 R /Im45 52 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im47 54 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im66 73 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im47 54 0 R /Im42 49 0 R /Im54 61 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im46 53 0 R /Im54 61 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im167 176 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im70 77 0 R /Im42 49 0 R /Im70 77 0 R /Im46 53 0 R /Im53 60 0 R /Im46 53 0 R /Im44 51 0 R /Im64 71 0 R /Im62 69 0 R /Im69 76 0 R /Im48 55 0 R /Im42 49 0 R /Im45 52 0 R /Im61 68 0 R /Im69 76 0 R /Im68 75 0 R /Im53 60 0 R /Im47 54 0 R /Im62 69 0 R /Im53 60 0 R /Im53 60 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im97 104 0 R /Im46 53 0 R /Im72 79 0 R /Im51 58 0 R /Im72 79 0 R /Im49 56 0 R /Im47 54 0 R /Im62 69 0 R /Im53 60 0 R /Im53 60 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im47 54 0 R /Im62 69 0 R /Im43 50 0 R /Im44 51 0 R /Im61 68 0 R /Im42 49 0 R /Im54 61 0 R /Im64 71 0 R /Im54 61 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im106 113 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im66 73 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im53 60 0 R /Im64 71 0 R /Im55 62 0 R /Im51 58 0 R /Im47 54 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im43 50 0 R /Im72 79 0 R /Im310 329 0 R /Im56 63 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im76 83 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im43 50 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im65 72 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im55 62 0 R /Im70 77 0 R /Im51 58 0 R /Im44 51 0 R /Im75 82 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im53 60 0 R /Im42 49 0 R /Im47 54 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im48 55 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im67 74 0 R /Im43 50 0 R /Im72 79 0 R /Im166 175 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im76 83 0 R /Im51 58 0 R /Im43 50 0 R /Im69 76 0 R /Im45 52 0 R /Im62 69 0 R /Im61 68 0 R /Im110 117 0 R /Im99 106 0 R /Im170 179 0 R /Im109 116 0 R /Im68 75 0 R /Im65 72 0 R /Im75 82 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im43 50 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im65 72 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im55 62 0 R /Im46 53 0 R /Im43 50 0 R /Im62 69 0 R /Im54 61 0 R /Im53 60 0 R /Im64 71 0 R /Im42 49 0 R /Im45 52 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im105 112 0 R /Im314 335 0 R /Im49 56 0 R /Im75 82 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im61 68 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im65 72 0 R /Im45 52 0 R /Im42 49 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im47 54 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im76 83 0 R /Im51 58 0 R /Im49 56 0 R /Im104 111 0 R /Im109 116 0 R /Im49 56 0 R /Im43 50 0 R /Im68 75 0 R /Im66 73 0 R /Im66 73 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im43 50 0 R /Im42 49 0 R /Im43 50 0 R /Im65 72 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im55 62 0 R /Im62 69 0 R /Im69 76 0 R /Im54 61 0 R /Im62 69 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im170 179 0 R /Im105 112 0 R /Im314 335 0 R /Im70 77 0 R /Im51 58 0 R /Im44 51 0 R /Im75 82 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im70 77 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im97 104 0 R /Im292 309 0 R /Im287 304 0 R /Im293 310 0 R /Im227 238 0 R /Im226 237 0 R /Im290 307 0 R /Im291 308 0 R /Im106 113 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im75 82 0 R /Im62 69 0 R /Im45 52 0 R /Im43 50 0 R /Im44 51 0 R /Im97 104 0 R /Im286 303 0 R /Im284 301 0 R /Im287 304 0 R /Im106 113 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im42 49 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im51 58 0 R /Im115 122 0 R /Im68 75 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im66 73 0 R /Im68 75 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im72 79 0 R /Im310 329 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im75 82 0 R /Im62 69 0 R /Im71 78 0 R /Im53 60 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im53 60 0 R /Im71 78 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im62 69 0 R /Im68 75 0 R /Im44 51 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im43 50 0 R /Im51 58 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im54 61 0 R /Im51 58 0 R /Im53 60 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im53 60 0 R /Im62 69 0 R /Im54 61 0 R /Im53 60 0 R /Im64 71 0 R /Im72 79 0 R /Im310 329 0 R /Im114 121 0 R /Im68 75 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im111 118 0 R /Im45 52 0 R /Im61 68 0 R /Im43 50 0 R /Im73 80 0 R /Im70 77 0 R /Im51 58 0 R /Im53 60 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im277 294 0 R /Im43 50 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im49 56 0 R /Im70 77 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im62 69 0 R /Im54 61 0 R /Im99 106 0 R /Im113 120 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im292 309 0 R /Im287 304 0 R /Im293 310 0 R /Im283 300 0 R /Im284 301 0 R /Im284 301 0 R /Im285 302 0 R /Im249 262 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im68 75 0 R /Im47 54 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im44 51 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im70 77 0 R /Im64 71 0 R /Im110 117 0 R /Im44 51 0 R /Im62 69 0 R /Im99 106 0 R /Im113 120 0 R /Im314 335 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im46 53 0 R /Im55 62 0 R /Im55 62 0 R /Im53 60 0 R /Im51 58 0 R /Im66 73 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im250 263 0 R /Im75 82 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im62 69 0 R /Im61 68 0 R /Im65 72 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im283 300 0 R /Im284 301 0 R /Im284 301 0 R /Im285 302 0 R /Im72 79 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 346 0 R +>> +endobj +346 0 obj +<< +/Length 816 0 R +/Filter /FlateDecode +>> +stream +xÅ}M³î¶Þþþ³´Så#â]\3N%ÉLIUYÄYÄlkæÈòظæß »Axúe¼Ò,,_â¼ 4þF£ñoþùíß>·¿}ú·Oñ=Ùémz&þïüýôÍûý[²ö}²þíëï?}ñß¿wË¿þþOÿ|7æÝfÔÂ{ú¹øn}ÛA|÷KÆ$ÐIñÜAè0 ,ÂÀ¤ùÜAz¸gÞ?w»5pïqjáÍò¥?Aº5ðïy:/¢±¥ÿncÁ¤^èÀ¿»¤÷Ù®dPV æü2Ã|ÿÖÓ~ÌóaøhÏàÛd{ðyÃúnúѧÀÍdÁð¡wÝðWà}·ÿá}ê(x>||ϱâàûÝ[á¡ù7ðõØ÷èÏçÚÖÏwäVë·Ð¡|Òî¾qÁwÛoßs>ãWö1�ÿàÔøûÍp@?ÁݤÏhþþá=E!ýwÜ'®_ÌÊõè?ýóOQ5ÿEH`úÉßKOþg§¢qýæ¨Z?Ñ_ßóÿo'Ä¿©þýZ££ß·õ³ÖUùwúSËkµüåuN%?$ùiݬ=ÿÑúûðüéÏ$¿ôò×ÿHþÚ0?¿ËÞ?¢ý"úÇúÓ¦I¥?ÅõϺõñÏçµóÇòßÎJþKò×Î:ù+É7iå?¦_7AþQó¿tô+âoþèñä§3³J~Jò{q�þA¿ë L?ÎAý¯Ðß´~ÍÙ¿X~º�õ¯Z~º�õþÝb?iè_r~\²JïG ö£À?ê¿Nþûݯ~ÿÄõþW¿þ"ÿÎÿz÷O¢_?!ù×Ó¯éìÇÅOq bì§nüÅ[}�GÕà@Ï�yHX@ì@©¸ÔÏü �Þþµ(â °~ +@µðÐÐ+�?ëö_r�ü�@aÒ Aãë0Û)ܰûÚkÌzÙú[øuô[ì¼¶£åi&Û«»ô9ü{¢CÝͪÅD1L vh½róØÍhùÕ¶qhüØ·hýbgQµë�yGͺUÇÝýgÕqwÿ9öu1þeìëbý{Ñ_d^ ^-ºc5>ö7¾Ú +ãgI ¸�³U-¯ÛÀþø÷ IOÓ+Ñû74Ö+Ã3ö¥ò½w8�yïRô,=Ò>Öi)ø<þ-ѳ�ðswt$Rp õl&µù`"A½ù`\Aµ²ÑÝ?!(þ ÄïÔ¡ø'ÇöñãËøÕ¥ !¬ß<=¡vÎ7e(ù¯N¼_õø÷ÐrüèÙüKüJ31þbþÿÝêlÀ>~Ëñ'dÃD5ý8§³ÅøG6þüÄ (Ãkñâwí_oCóO>ªmpî®ÿæÀ8_x0bü +ÊøóM }øbBúg$~u× xã6<^?oò#ýã-ô!ôóèyôoÿ£ðË[ü¯¡?3éÐë01þ>�îrbõð{¢@}ªñåøÿHü.«dÀøÖà]Äß.]!~ûÐ�ò³Î�ãoÏè0¡ÞF'@DüLÏdG{kú¨¿W»3} ûlao&úb¯-¼>{ýçùË84@ðóoÙo3ï´¿=ä¿:~P?×ñ+p,x¾g¯ÌÓ¯àqöH?ÁËÈßD¯Ú?97ñG"xù&ÿq�Í©Ö_àÍt|¼À«Þ¦ë�qúFµýµQâÚk!,î #æÎcH%¶ÛC;w`Ö;pï.nA´Õ[Öp·�|ÖÐZ85ä#ØÛkH9àkº%à,´´Ñ Ea0)$9u®qcRíbJ»<Z¹3$ò»ÁÚÅa°°ÙÂ]ì¤H3æèø,õ.!:wQÏÌk:EX¢z"ÂrFE:AW2¢42]xûH§¸ö�éìиÁüõMͨºiÓ*M#F$#´©ûG¡øe4 ëM£ÏHuìQ4¬ÏHlÇgú6Q lÚ>"%&¤`@mÓû ÚÔj®D¤ØtÞ"!80>êõ÷ÿÖßCúéþ|ÐÑ?Ôä½å:"]²úñûX1 õø@@.ëä¸~3ô Ô ?#DÐиPuÓ§« U7c,>).*¡/]âª\s2÷ÌÛ[`Ó<ï]ÞMMMÀúnñid3¼þ4ÕLhöè4Æ>l§¯ßèÆço'ÕüEÜR0»%}<o3¶ðúx�ÿxëõã!¬;ÚýÓÇCBT/®ë7PâÃËxäDQ ^ Éh¼@3£%ð g4´tÐ&#̧0ÒIxê` ¤c·`ÀB·v~FÖågdP"2*2èðÅ@:Èä\È8ØÂäfmç«Ôç&:Pä¶sz×hÄ*ÀéI³R éU3Â@zˬôÈËôrfMx4g¡@W_u)$ACð|;¦]¿NÁ�TÖ¤¸~|;æ¦Bw?ÞA))=}0LFðéü A!§¡ýH¯Êȹð¸^:#þëý~=4è{ú½¦Ü¤ÏW.èGtF-rôéUÞ¢ñn7Y¸úì +§3¨Åì +UBÑ�ýgò¯Þ®»)ÿ<·#²£4å%øvÂÓ¤`Úÿ`Ð3ÎÏZúøgFò/²sxcÔ`ÐôLÝdÀLö»wE)®öç9ï®rìRîujèÍO?àÍs4çb|Ñ7põºÅîV3o^\ßßîk£íÙ9ýüæ(/È9°�úËíµ¸»[YJ³=¡ÞR\JC¾b8ÓsÜëÜFIúÖp{'®å]¬È� ñßHzϬb�Éz5íþ(ÂÌ^Eb8qFû7à½NþÔÚÓB¢?°ysþJÞ¿%³ç�¬Å¥.øW¾^§_¢ëÿôô/*þ¯'$5µør\�ó× Ëq�`ýÛÒ¬â_¹8TP +CnÑ'Ä¿Æ(Ì?!¢7í6Pï&Ýøbøa +H;Ç@¦¿dt +@Ìű:.F:hè«:¥"ß¼W�2<@úêd.ÀñÕÄE¤ôîÈ×ßnrI§@%à22`Ë:B¾Þ-8}y(èÂè-�Èÿ ÈÿmtL?!¨®c! \o³Jâ_éýd¦{<[ W×;åêROZþÖ?G¤Ü{bû¤_¤ß¤³`äø²`®·æg +ÀCh ~ + }ü´&SÝ_5ê¦üªá³üËÕ¨ÎÈ(ûp2U®7fÊ#hGW[³È¶æÒ-öúÒÖ³(¯Ä7c.¦/Ï( ¢?ÏÖlÙ¼¥R Ž}¿~ÇåÔðQÊ%Ó,µ, {Ãßþ×ÛVLÌÛÿXþ÷/þ÷ÿyÞ¾ù´ÁnõáæÚùÞ÷ +iq=þ,¾»å_Ôðqh¨8T°9ô^»ÓÞyD(o*,ä¹cÁ-;aÝhì-Whl½íhÐwF¹UXl MÃdk±·\"Q{'$¸ó>/à¸#ÜòÑ´XchÔK4JoG4¶ï¸(¢fG¶¦Á¤f-jË%µwB;?!Qj6ÔÉ-MKÍZÔK4JoG4¶ï3q ++¡íhpËGÓÒÚp ÄÚ× úî°a%´Ôr@¢ÜÁiàK$Ö¾HlßÞ-æa³ÔòÑ´lBì�´6\"QúJ$¶ïèV2; A-$â"$¸áµ¯ÛwD¶+ ¦ÅØ£ÈÚ[.ÑX{; ±}ÑHyw6Ðথµá +µ/·#Aßv±Üq-¸å£i±¹Á¢¶\¢±öv@cûîÐØÕ)¹«Ó½Áç|D¢¶\"Q{'$Z}#ݨ]{Ô§g¾Ã+õºX$g}ÊF¯*ÇôU PK©_¢°üðÐ÷Öõ®?ì"qr:âPZ¢8Ô³]"±º þ>!QâÇó¥Á ã:ÔÁ\£°BP ï Rk³Ò2¥ +ÜÀ#VK]×ò¼Ù\TéÌn©8Ì5 ++äúnQðE/ìµãPZR8 À <b¹Dá�Ùu}@aÎï³?nDiI渵¥"Á@×H¬ $è»EbçtF¢20ãÀ <b¹Dá�ÙuÝ3fò»â"¯Ãïkk)Ihf¨½åJ>¤69I¬Y ÂØlk5ñÀ-»xSÚ$,Ãð÷t !+kÀÁ|¶6Ç£xà]<EínX1ÔÞr%!hØÊ2¥3{Rkÿ+þ.»¹j(¨ WòaïzcÎyPYÌiÔ¼Ëú»ÚàãSá+ùPû&æå`ÂtÌYWßèð³* ÖoF \!ÐX³öÜ2f(·ÓA8PÃ.¶j{o¹uzĵó¬9³çQY³¶�4Ö·ßJÞ·Kóä6CY¦TïèÖÚp)µ¸t1Æv |Úñw]:sϲk³9²,µ|QÜ[T5T¾,Øù̽kk>ÿ,Ô{(géÕZ¿5¸´cï¼ôáçKsÎGN¦#+ÍbÜY9Î@O3þ]ÃÑ/Ø4srüÝêÔOîüÃ-|ÚñL¾°`òµÙ¹ZlÎË5ɿǨÁ`çø¥tãS©´jÌã÷×÷Þw ]ºëçµµ1à¹åÀûáÈ|áØ0YÉ.îf×Kù øw»àÀ.z YÉÍÝ1`U¥ÛÂZç_UY`ܪ0°²ç÷«¶ÿ\pGwp$ìw±@¿Û5>Ìv£àEíf &;ç&²V¹=pïø»éàòÎ_# ¸a¯]R,½¹ÞÁÙíO][ +t³àpLbÍ÷½á&É GAÚÊÈßZM#':K>MËb¿5Ø´£ï²¡@6½lXíQ8PËA:ÈlÈPµE QÁÎí&¹eÂÖÚÿeÂÒÙ&#H$ð·¶Ï],}ÄÞ_}cPËA,)¶BmQaÔ`°óõ*èzþ¨¹þ.,!|Úñw¾_Çéù~ǹ|G¨JDFÌ.-¸E QÁßSãwUv¯ÜUÙ½¶,ÖáTf Úpå)§ìßÍ© +¤ë=åùhvsË©l$¹ëQ6N¢awY z8ikíUµ+³r!ÿ¶£MÇÿÎÎvfá¯#ûAy`àn;ìZmÎôüº»ûï¨á£e6{â$ÚAwFI+ t²#Ál±cQY'la»ÂE�§tçpÌÁd¹3åáÖ,kË7Rn)té$ö²~m5ç,ÀhبêÁ«,æ`·Ñ+ÁNæ>°CÍ;½ÖßÕ)°+Ì4²:íø"K'±§ÜÙwöi:Åy¸aÀ¤Ñ$lÂNÂ, Y +»7hÚhlmñ·ñ¾ 9zï#ÔÛì<ÙÍ&j*}¸NÚ®«ó~üÙªå +=E±ù{Àr¡±wJ^ú8~Wª,ÍÃ-0ÎsãÃÔË 0h,b¥¹ÂÔpÂ$ívYüÉvKÞ$aµIx¬slÄ1µí¨i·[¦>h·-ª]íéèÙ~cCÍëe2g?%Ñ©S®k{éSûhé¥TÇÛ2Ìjëlßû7eOÔßÓ÷ß~ÿ_>-8½ýámý¿ÿöºü²¦U»Ê¾ûDqÕjï!ð÷Gýöäóïù{Årí³ÅôsÐ#ã8A¥[âïú=QÏß +¤Ð!í)çÖ!³s]Îüý±OãQOß×H?¡Gº<V[pÂFq¥fèøûcÿ&)XoDüéÇ#tHCÌÎl ïý»Fé÷5°| ôóz¤ç Jk#LSqxèûcÿ¦Èuý=}+~<BtÙ:áKù®çqüíɽçßó÷5ÒÏGøIļ.IÜ<N\7¾?öo³Jý=}¯2m½OÐÐå:]JJÞ¾w=cUOßû&~Î>¯&k)LÂÙRئ +ìÌ<èÍsôã>/&»º,aÐôý±û-¨QOßéç}^!Mw!«5@ÆyûÞt©¿!Òû¼@º +ÜjC9½÷HßtÞQï8Ù#ý¼Ï+¤YàR@ÈP¿)3´þ¾f¤÷yt¸v3:ª@¦øÛåø÷ü~ÞçOeÛã"µlÎ,ùcÕÌH²ùüwÕÀâÿ¼ì\¯kl¥§y?joôþïvK:õúO<®<A:ñyK1*Â|Y©ÓIìòMñ îç¿{öê ~æqÅ Ö#V³Ù ®<ãº#Ýæ_Áùï0ÒNðs+O£Î|²=²R§³ácþJUíßieÕüÌã¬G¾TPÊlö£èú÷ÌÉméþN¼¡àçW Ó¹AQ>e¥øL»æ¢P¼Ñùï.Uq©àgW` 1Ùíè·(ªu¥èh¼þ=¶«û»Ý®µüÜãþ<> LÝÁÑ)ºÎÕ{\ô÷..®ëþª�;{Rw�É2TVGÙ üw_b¤âNwtÔy°~â´äôi÷ãú÷°±«¸îïz1ÁÏ<r³0 +¬m*îÍÌ#6×ýÝ·ç§I;ANàˤâ8-ÿOA¸óß¹B/&øGRN°NPUgy@¦£ïÖý8GàçI;A>ì[À U§Ô£=ºÆ*îü÷ þå?óHÊ V(zÉ*²Pêßg;ÿ=lÂ\àçégöE9Mµ[ôÛk³ýûøû¾çÝ¿<©ßÂ[WoaõõµÑþ}ü=@ðiW¾b8oS3©Ô2»Z9|?ìÞçÒ´3§òmjoW³ÚØ¿¿÷ýîsíëQiõ¹HjV«~÷»9Î¥/ß"5@N`ûõûøûqßíî8¾Z"æb1X¬ïßÇßûfwǹôÅ8!ÅøâgsÛû÷ñ÷ã¾×Ýqþ3}-3: !á¾48Ê%ؤû±¡ý«G~e|κL2>§Ü¸0ïãïO;ì$§V§ØÊðýûø{àÃÇ|4+Å¢»°;îýûø{ s»ç1eO%ßDw4|uÝïãï>ÊíÇ|S¢»äè>|¯ðAn÷<ès$×Õ"Ã,ÿÌÔ÷ßk|»=úËôc8nûÕs¥ú}ü½Æ¸ÛóÏå3,zf7â5Xåõùsýù×\´ñ}ú¤£¶Þ+YIi¶mzÚlVõ\´Á"»N_Ûo¿Þ¿]1¦jOíýÌýçºôÉPkieÕ2Óýöëý{M=µ_ô[4émèÞÑQRyCÚS&Y׫¨§Râôµþöëý;³ +Ù~Ño_d7ý§a$/Ê<½¯u3ìv¯¿ÝÒÆ*¯ýÚ~ûõþ½FkOíýv`Q~6^xqmuÇy~t½c±å«oÕ~¿ýº~§ÕóbÈö«_#Ù±¢c�0n7h[U3ÝØ=~¿ýzÿ^�²ý¢ßêåçÃè ·Iy_£§µ¤JQ÷;m¿ýzÿ^sÛǶߡEùÙ0¢9¼ÀéÖYyÞõÐò±·x¾jÀ@¾¹jðë¯>}ñûfÞ¾úý§ÄÙMqÿ9|ÿªtß¾úþmhn_niøæíÿøË·¯þåS©»À-ÿÞµ|ßµü®kù¶kùK×òÖµüеü^õgE?íZ¾ëZ~Tü¦ïùOÂXÿðÕº¿å$S®£÷m»Ì×{ÜðÁ aÎ\`ö»û»h¾#²¨ÿÜn¯Ëçí-ßw-¿ëZ¾íZþÒµ¼u-?t-¿W@õ-Rôüçm£~µðò¿*õ7&øí/è§~Qmw{Ëw]ËÿSü¦ïç[ÅoÞºßu-ÿ¡2]Ë´¶h©4ÆÅ +ó"ÜݸïîØòÛ_¹!¬Qá?îã\>¸Á;¾øÅ0{Ë07,ÿ^¸a1çkw9Ç$á$R×2©[~e×,ã$tÚîçÏÒýbÉfÿ 3ö}÷æ§íÞ>è^C_oD_¸IZÂ~Ï>ëì¢ûðÓvZòý¬¼ÝwÿYyÛ[`ó[*åØÒgñùFzâ¢kíb·æeóí§][üâ{õV0þL*µ ¡lâ×ýÆÊPsGõ7^rïóÎÚù<VmÉ]÷L¡B×å~ü$BIªhlÑÙäÅ%Y!6Cz×mg"pÝôjïZþõ`0¼¸õ5ÖK¼[¨xA±d)¾Ñ¶}GCé$ôûú o}<î/sɦZf&rUZfæÐÂõ4v¨².+°£ÞÖÛàs CÐ÷ñtÒ¼F´ï¾$þþ¨ß>n¹Èü{þV\|<ï]Ú.c{®×?7|Ô.ÌÍüÝ[E9(|ÿüÕúÏÅ4\vxöö-Ï«Ð)TøÓåâmtù·®å®å×]Ëw]˺s4+X~ ¢U<-[ À#¦f`KGnÁ1Ùܤ¤_í¹¨Øí±£RümùÀ~Ïß÷Itä7¤Z$L6µÀ5~^AÌ,úzJ*OÎÅb'JÚ[~èZþ¾kùVÑògHIn«t3qé¶cËV9î%×{Qçh³³¦.³¯Ê[ðæP$ªìôú8Af ²ýÝP'ïüùïÓ)áû26üÇ%ú³ÛñÛ¦JmÓEßq©v ì O¨Ï/fph$]P¢¶ü¡k)æ\e2ü£¦ ë¨íPÕG6êY;6;õзþ}Û# ¶mOk7ü÷ëm{Úý=ÇöNÐO?SO\¼åf7²ez©l©!O$ð+LmyBAv¡×RPÝ[þеü×®åCh9SY¬Õ£¦b-uháþ;ÔÅ©=V¬e£6Ò¹I·¯OðÇVíßÍïÑíqtÒöMâb]D(.7ðwäwY*Dl_j¹G8Këlªßô¢ª°z´R�_ì<6J;ÀtõMt0©ÏHµ{Èuy¹,ïaýn~¯4w{fêp«?3Åäø)nðµÃø¶Ô-úHi}¼¯ì4Fäö¿Aj°¹JE®N«XÜ[¸ è5PPèaíø@67É^h\ÉÞ¬ÉÝõ{= å]:}¿ýº~»5k!Û/þíÀá÷ÏÑá#¯ZHÊÕºðÔPߨ0§WîÑØ2ÌÒG¡ÿÉÎÖB·Ú[¾ioåÍÇBè½Vã¶Ë½JFGðâ7~ðÕлm_ >LÀB°û£êM`üþÑNéÁR Â_ýb©, æÁÔí o³h±äÏðs÷`lÿh'_è9÷ؽ¸½½1 +6 '0¤xr^=¥WSOè·¹¹×gOO;¨~rÜ ¯rÙàõO[Pÿd°uhýðwxrùüä6áï¥Iûl®õ À÷ÏæôÐþé ¶!£ùwãKÐF«"ýB ætóïá +HçÑþ¡ùô;ëøOzòÚB¼Æôï&4¾þÉq7! 4¿3V5íþÉvåO¿³À?΢ýýIô»ÞyÀ¿Î{ÿëçüÖËOJ~ë·ÈÍúõò7¾ÏEºÈðå³Â«ù×%Ýþô üV¬Ê4ë¯ðîÝùçLÐqþ¾Ów 7²ÀÜ{ÊÕº ´[¤çÐÁ´¯$¾ÚARo ¼r±õåUp ]eÇ7ûÆW¿;ïU1 $�¼Õ �K%ìT`Ýúðß óØ +LX¿^ú� ènÿzdkñÕ» ©[ÉÉ´|~>¢ßÙÒòå ¬×¯ÞLÖW;ºB{ûÃÌÛÀ÷Ö»D¼fJ`üÞúßBúÝø=óËðQ/âÏÖÇþõië£×[ÆY´ýúøhþjíe<y_%LùB{IÖG´øá+Ä/¢¿øE@û×Ó¿¸~Ò°Þ±÷Xn~îÂ/×X½ +^\¿oÊ +^²ÍüQ~ýÉÑ$?÷$D,â¿>z z¿á¯_ëÿ!ú?Oç¯I)¿õcïãäèÉ3þ·ÉÿEúK:ù'®_Bô¯ÿ徨)ngDtX@wNÉá:î ¢W@Î H@w¥p?Ãkè[ËZ"w0g÷sc@~ý=Ú¤@±÷æ¯ûÿÚ{ö/BØy/bø#ê@9| þ¥àÉ�vÀ{ðÏP+Â?ë1|s[~÷7ÙGûç¡üÐ(�7Hõó o�Gá3°~ÿ¼7 ÐMz¯3À$À{äÿê (t°DÞô1£õSÊþüSzf�ù¬_ÿú:pjýáç»ü·í_ýñK0ÿôñp[ÿoð="?~T}e=6àzé7ÓäpýâÏ xGpÙök´°óÈGW |V=>ººÄ_ÙIµúbðÇ^¿Óá/ѾáÈq¯¦}ãjÿÄàEįÖ5y¦]?uä½$¿ñõÁË4!öÑ/SÁÁ'¶[xà»óÏQ5þfÄ¿ü3ëÖ_L}¼~äÔù&ýrðÉ«æßë΢tólíæü-l|uþ@îv-; ½ó(Z>zr¾9;TXo÷VÂOÛgbøÍëôübU ¯HþÂ?~º_\¿4°^ÿÛdo�o®?s@9µî8`QìêDö·°3¢�ýj�Né37u¸3Õ:ÜY4þ@úë¯O_qáqn~¤ÃJúÍf»\púNø$AðÈѧÿÕøÛMÆE(AÔ6X¿]ÚPø�¤ÄßU øþõ.XãgÈÖkÓÉO!~1¡õGé³BüÀèèOÎÒÙÐòøÏ,�ot½dÙ²/ãßbö¥ô±výUôç6~Õ¿ÓÆÜÀéöO:?0 OîåùèòAx½ü3}ÕÂë}Ö_-¼þ#úiàõéãÆ[�¯O7|ÛÂøà^µþbKþzýa¢øëÓÇ [ÀóñOhÿpòöO�!ý+\@ö¡Ñø 4³~d~VñìÃý]úð7é¿øðñ¥ôÝr}f¿¥¶ûô]Ñ´~®8ö_mÿ[§ãÑâë/ô/Â$ÿúó+)h9ý¼ Wd/ÓúE?À¼þë3 ÊO}%#ý;p}kvhý:úó/ þÒûoÐ~Ð'`9>mÇÈßx&?Êõ{öû¯:xùú ´¿ÔòÛy´~þGü£Ï>¯×O.ôÿHþÄ?¢SÊ?þؽ ?ÑOþôghõúÉMù]ó?.å·0ÿѯ>¶Ü>ybÿ{¨ÿÎï ß(-ÜÀü¯xðÈ_q^i +ëï®?ô?ÖßëìGqþ|xÓþ.·?tòGðßùúkcÿ øïåáÜÙþâtæ¿5~þ5½%' H¯ÀýHÍ'p 6À1=S�Áè¨D@Áè x Kþ×D�¯`ÐZø1�b7¶ ¸á,×;`%�S¨Üã~}RX?º{_îg°þûÏIªùËIVµÿbEL`ÿõ÷MJ`|µ PCò§Ý?ý²uó@3ÿ@þ4øâß~ä�Ĥ¢ñä×Ýõ·tîZþ<`¯è_ü«OpY¹ÿ¯ëä÷pýý¨¯?Û°%áöOmÀÛ¨Ã_DÿJA8ÑZ~Ûé?¾As¥ÿÄùg4¾þH©ÿQN`Zx}#ÊæùÃcé;XoP¶EÀ +8ï�u@wðÎ.ýÒ:hÂòcÚCP;?áÎ!byººDs×_b¢[´W4,âClàÚ0jàSÚ@BDiÈ58¬RJADô3keDA,¬×%¢á$¶CtWuÐK|Þ ú¸`!ý+Ƨ$t°1j'Ð;HÀú(Ë*УС^éIJ�ÄùG¸~j#ÞÇg +ÀC#d àþéo±téIAä#úÁFd|æ®É·h®Há&ÃDNóå D!'¦×Bk'ß]8QMY,íøúSCÜ'xÅø 2õ(ãuë'¡(ò´ú µð=ýIô_(íþ©Py¡à¯Ï"¡,ÆÓþ dL`ÿ²HèñÕúËY$~å GødÀùë�Zÿ ¢?}ËÔBwÊðXkÁúAá îÅúAv .øO8$¿¨Ò-ä+úéN¡nÓOp*úÉÿ"ªQ7éÊF +¢·ã«k , ÔEÐlFôÓëo¹+Ôÿê,ÔRåÑþÏÏÆ/UP4ãüéWïÀSÍ5ÿ°Aú{ ªùË·XæGögá\ÙO"¼Gü¯·?û_ö|$«ä¿E¡üȢѿ|êÏ[Pÿë³ÔöÖß®Ú?¯õ·¸~�ºÔ_Bü¡íg®áÊëÏñÐÀß@ù©¯aj¡üÒWÑ ,Ükù!eá ý5q:þ³h¬þÅøÏè×÷Èþ÷Ù¯ú,VüÐWRð ѯ¾¥O:ú×/£ùëË�úü~g$ÿôì?ìI<÷âmÏ]û¿ÄtöÂI<ñ^Á=ÁįÈþ¯³èä[T^ ¿?àøw¼i8þ}¿?ñhýʸòZ¯_8õÓë?®$r¿>þÐþé+YÊB¾Úqÿ2Ü} µðúøÙlUû/ǯÿêý;¡ù÷òKô1ÿëãOtõjþW·îÊ/¾ t-¿^ßBºK¿%æü*I4:þâgTþ®üªI8Ãû·'áñ(ã×qºÿ$aù¡¿püçäG|~äøOP/®?#ø ý¥çgtú_iõ·?±:ý+ÆÒúø±sN%¤gìÊ-¬5~ÚÀgì®^ñ¹+]@ +p î*@~Å'©IPªS + �3_·g�=b�(@ÊhLPéËh`2ATãËe4=PF£ +°××pÄ�tP�i®Ñ2<T`jÐó-KPzàÿ ,ñæp ¼:ÏGd�÷"ý'è@¨`< o:À¥¯þDügá¡çÿ¿þ�ÌÏP~ªÇP~é 0.#|×�FçÊ(h@ééÔFîãËR¢ÎèEgé¹\C[- wDîáÛ:Êâø�×/^#[<à >^Ôñ¸Ý|Àð ÀÝ´8ôîCZ| å^ª4©èG¾×o`|¿^�ÔÞÍw+ ïdUó¿àݬn2¢4Õá<ÁÔ*üåg´ñtü'×Òѯ\KßÏ_¬CµÄOø«Oàøí«ýë�!þ׿ÃíÅ;0r!4ý VÍ ºûGàî>dJÿ]Uⵯ¨Ä{õö] Äa_K !1¡ñ*¡Lw)o± JÁ¯s8 E4ðEt {&Á¹ïÕþË1¼YeÈ9TV)AL@x T@\X/á]h0Z@zü}F?)Þ¤¡é, ¹R|$Aç^/¾Ä¶X0ä¢k9{TÕÒe6ÿp%Ö~¤«ã¼¦ÑøXI4ð#X'�?RÕ¡õ¨Ä:©Ö_öÀ k@ô3RU7ù ZÿwhÚñÇïдãÜ¡AãäpäYµ~²æTü#Òà.èO®Äúþ¦_.B¸9t««Aë?`¿Zö_auû/BIªõßr¡#¤fýôGxµÉMú/`ÐÍÁ¸©?,Û_íøê;�5âBÿÈ`º¹ÿD¿_O¿R!2ËöS¿~ÿf¤ÿ²¡ý2à¿!þxCø7é_¾Æ_8B·:þý'øoà úOÂAþSçà;¾Ãw±~R¬¼ ÜÏ__ÈÌÑK¢·é/BûQÿéɹä×À²õ¾oFòo ~uü#îÿøW¿ÿüð]ýë§»þÁS%úký-¤ðõUÉV#ÿä",p|} èGÃí,Nö³Úÿ÷N[ý îÐZ¼~Pþ"*H2hÑ%¬K47�µÊMÎCL�¨97�%â� | øf� LÏ�ôz çîüÎpó:HtàÙ�4¯s DËØ×9$b%V6�ÍU®høoDZ`Ç�R)B³X`k²A@Wp' ØÀJR!@Ã.`ÛA_P> h A1l¡ûpæu«XÌ9!(æ=XA½ ί]°CÑøúbεyÆ$Æp&Êâ17_Ó1b8|¦ á ñGb8Vµ~bÇEýÊ1ê° úáý1.¦}A¿ò{¼ Í__G$éè_?gñ\¨1"#ù +) +uxf¤sÈÜKÃvÓ3ùçNþãsùÍõ¯gøúGGògà5(?жPLë´&ÄàYç¤Ê=Ͱïîp©.g^ÞóÑh�I;zãJQ¾rS8ÈÁY�ìÄÜÀÞ»+"]r É* (¿çipoÓï7hü(Eh ¨Ó:íuTt=@ú|ä^®$òÌòÐ ¿¨µ J:|}Óó Z j V/¢ÜÔ >#ëÇ7i/ÖO¾H,}Ãcù£ÎNþÉLPB +É=ÿòËð)<U BÕ{$-¼> ( ü@�¼¾¼±[WyæõsBRf³ J6ÅÑǰBK!4�1q^79ɪ(@Á( ·¥<Z®Å[ð«%ÎðY /ÕRq* +orè8HÌ£ãsü^$'ÕørGðµx~]%néw %>aÄ0,ä}Ã"úA>0> /s¨ WÇ`9ÿõ¿þ&]à/Æ0¢GãëóØ¢nÿå¹ÉÿÉür-^}Ì*åH?³~¤÷ÿÀ÷ ÄU¸>bæ5R:xÃ8,> 'a®F¢SAbÆ#Ò§÷t"XUðr*!úThBTsIZ@ºõ« 0@ó]úãT qDºXñ2\ÉÅÙ88½¼Mß3�?´I;wB0¿÷`§½ mÛAÙXÁÂÒ"vîÖp3ºÀ<ÚkAE?A"Ö*¸�§ >Ï.EElGÆvV\I`:и)ç´ 9<ì&HÎ@oLJ¼ÔõÐIr)$>')LÈÐä$q8#jIdër +¯%Éã t¯ÉeA ÀJV ê $¢sÒ"¼.5P]-&ªµ(èS[ =ïqW§¶ªntWëcCöH¯Om5d´ð#o4{Õøbq´·káõÏ +*ÆW?bf4ÿçA{Oðúcý 1á@yJ:º=¾ÑÑÿUHâ¯#×!2P\ÃE@i ß@yTë÷újÒÿ!ÀãW0Fq*Í1 >/c¢ÆOH�êïÖ¼I,ëp*cbô¾Ï ^VjKôã8dÝU@\âîúú¬O?Ð|׿¯âxÿ_¿O!?ðÆïùG¾[)`hÜå¿Ð¸'�ùnþÄýOPêË&Ä?#åUÑú!rÎKãÄàõµ%fÿwCDc@]Ô(vàËÚ¢F1Q6$ 0Êmá`Ê=¯À�¯HªMÓÂäeSmIc!Ó?w.UâL )'õûXÊ;ÖO_" ù#ùù«ãæ¯?êÆçOY5Wó×?9ÕúËÕõþDúÉðß@møo ¶Éü~(4οì@y4µo¡üÒ;ðÖ ùäõ¬¿\ÏñõöuHþ׸ZÑ~ö8z_ã¯xÎ4ÿD,òøæÖûv|&|½þÿéOý>7¿KuZ?õûÜ˪¨öOÄî\á/Ò?½ïsEÿ²ÿìÿIk¿ö§Aãë«òû×ü'ÕöÓÙOâ,´zûG +`Uÿ©Å_]oï¸Ðþ¸×üÒ¿/åòC~Íà}ºp×þ«þ×MûÏeÝøâü9�|9ánÒÉ?ñÊý½*íý½*ÏñV[5ÿiÉÿlùØÿ¤ËCþg9ת§`~j®&«ËûCI á °~àb,GÀx}Ra¬__Ð^ïxíøRqÀàõåí©6ÅiÿÊ«£ýGçàB�#¡ý7fà ÆYE@â^Fh, öÀ,Ú�Î#@%`Y¹üÂaøT7£§ Tk�kÐúëß'(G``ÿô/,R}õ+"Ø-0_F°Åñn{_£d÷»znº¼M)Ю! ¹@8]í,3xÉ eãC4V";ºêë +²¡[2©ó:ËÛ*¨UféÖÁ;ÐçÙäÁdBجrrp|¤Gìô ^ÙY;þë"ïWbD<Èä°!v1¾èH`1¦?ȱhü~ýÄëÕÁ �_]3£R ô«w¤}VÑ¿|gû'GvÞ¬àM;È%¤Æ4ñ ár½@£¾Ýãf2äÔ¿4ë'dë#1~oªAÎì ÄÀC:(WÙTãëg6à Û»à©HÕÕúKÌ»Y%ÀÄõ÷ºõëp$» ×?Ô^òýô+üÅÌô40Ρ¤¶ÌôD8ÈLßLaF$d³"´aø4êÔ +¢²¥a.b0ȶä5Ç ±YÄ]Ũ=ºïÕÑ=sCU;õ'O'b ¼^̺-¼:#ΰjàB,Úù«3ÒÔÌÿ2¥¹_}Kм Û?9 öo ³þäx_Ò_}"i2Z?½¯'ò-|§ÇÅxÕÉ8Ñ¿þD3oÒ¯exAb<É ýï ±ÒÛ1CôºÒàË;ætU,Sðd=ZÀOÚÏ�^s$ËáºdÚÀS"^� ñ-WËÄÒÁË[®â¡vF*häP;Ý\Á=)X#äXQ± x¨j< +I +¾¨A*@ÿ`E)V§�ÿCI8@£øP:W0V(c P ªëõ:Má[Êã&¹ÒU [®´ã[Aü#=ئS"ýCþH*ü¯WÁnÖñ¸~3Ò�#Êâ½+M\Øð¬Â[¢Ï +/Zdëk-òW6X+Î!Öc½C¬¿Õâd�õ¡(Wü¿" ±V`DÔ «ZuwO�jÍATû 3nú ~Ö)@þKÁ~ ýËûýé`଴(ñ_0H÷ü'bêsÌ*ĬÔ:S£×à@L # º=¯Æ:ª¶f¤Ì_õéß7óöÕï,àoeé_}_Bv^: iùÍ7o¿øÇÞ>¾ûúÛ?ýõÛ¿{û§¿ÿÍÛÿòÃ7ÿþõ·ß¼ýî?ÞþéË¿ûøxûí/¾þí/ß~óþöåwßþáÛ¿üøö«·?þøãÿî/þö·¿½ÿøÇïþúþ§oüâ·&Åßÿåÿþé_¿øó_Üûüþão_ý˧øjÁîÿ½Ý¦Á +endstream +endobj +347 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 817 0 R +/Name /Im324 +/Width 28 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³```°bûÿÿ? áõÿÿ�â f¨ÿÿ¡eØá|�@¹ùAh<ÛCqþñ`?@\ÁÀ £Y³B �ç¼1@ +endstream +endobj +348 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 818 0 R +/Name /Im325 +/Width 47 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xα 0 ávÉBj+ÁÜLÇ1%#¤¼"äéÝ!iÂ×Ýû ¨*rö$,¬Ñ_^iW¶`k²l-º·K\µs3ð_{ÕkÝëgF;G1ÍÓv.7ß:h> +endstream +endobj +349 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F2 482 0 R /F1 480 0 R >> /XObject << /Im166 175 0 R /Im46 53 0 R /Im66 73 0 R /Im68 75 0 R /Im45 52 0 R /Im51 58 0 R /Im170 179 0 R /Im167 176 0 R /Im73 80 0 R /Im112 119 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im76 83 0 R /Im51 58 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im44 51 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im61 68 0 R /Im65 72 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im49 56 0 R /Im102 109 0 R /Im71 78 0 R /Im65 72 0 R /Im53 60 0 R /Im64 71 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im72 79 0 R /Im46 53 0 R /Im66 73 0 R /Im68 75 0 R /Im45 52 0 R /Im51 58 0 R /Im170 179 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im70 77 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im53 60 0 R /Im68 75 0 R /Im55 62 0 R /Im51 58 0 R /Im55 62 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im49 56 0 R /Im47 54 0 R /Im48 55 0 R /Im46 53 0 R /Im51 58 0 R /Im188 197 0 R /Im64 71 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im47 54 0 R /Im62 69 0 R /Im61 68 0 R /Im65 72 0 R /Im42 49 0 R /Im45 52 0 R /Im46 53 0 R /Im43 50 0 R /Im62 69 0 R /Im54 61 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im66 73 0 R /Im68 75 0 R /Im45 52 0 R /Im51 58 0 R /Im99 106 0 R /Im72 79 0 R /Im52 59 0 R /Im62 69 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im112 119 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im70 77 0 R /Im51 58 0 R /Im44 51 0 R /Im75 82 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im54 61 0 R /Im53 60 0 R /Im64 71 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im66 73 0 R /Im68 75 0 R /Im45 52 0 R /Im51 58 0 R /Im170 179 0 R /Im43 50 0 R /Im48 55 0 R /Im62 69 0 R /Im75 82 0 R /Im43 50 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im53 60 0 R /Im44 51 0 R /Im43 50 0 R /Im34 41 0 R /Im32 39 0 R /Im33 40 0 R /Im92 99 0 R /Im44 51 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im61 68 0 R /Im65 72 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im62 69 0 R /Im65 72 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im62 69 0 R /Im46 53 0 R /Im66 73 0 R /Im68 75 0 R /Im45 52 0 R /Im51 58 0 R /Im99 106 0 R /Im75 82 0 R /Im48 55 0 R /Im46 53 0 R /Im47 54 0 R /Im48 55 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im47 54 0 R /Im53 60 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im46 53 0 R /Im51 58 0 R /Im43 50 0 R /Im70 77 0 R /Im51 58 0 R /Im44 51 0 R /Im75 82 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im69 76 0 R /Im62 69 0 R /Im53 60 0 R /Im53 60 0 R /Im62 69 0 R /Im75 82 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im54 61 0 R /Im55 62 0 R /Im43 50 0 R /Im43 50 0 R /Im51 58 0 R /Im51 58 0 R /Im61 68 0 R /Im44 51 0 R /Im62 69 0 R /Im70 77 0 R /Im51 58 0 R /Im51 58 0 R /Im63 70 0 R /Im46 53 0 R /Im55 62 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im72 79 0 R /Im310 329 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im48 55 0 R /Im42 49 0 R /Im65 72 0 R /Im51 58 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im66 73 0 R /Im45 52 0 R /Im42 49 0 R /Im65 72 0 R /Im48 55 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im48 55 0 R /Im46 53 0 R /Im66 73 0 R /Im48 55 0 R /Im53 60 0 R /Im64 71 0 R /Im43 50 0 R /Im46 53 0 R /Im61 68 0 R /Im46 53 0 R /Im53 60 0 R /Im42 49 0 R /Im45 52 0 R /Im70 77 0 R /Im51 58 0 R /Im44 51 0 R /Im75 82 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im46 53 0 R /Im66 73 0 R /Im68 75 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im99 106 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im170 179 0 R /Im72 79 0 R /Im310 329 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im61 68 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im44 51 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im53 60 0 R /Im42 49 0 R /Im47 54 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im51 58 0 R /Im51 58 0 R /Im61 68 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im70 77 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im63 70 0 R /Im42 49 0 R /Im45 52 0 R /Im46 53 0 R /Im42 49 0 R /Im54 61 0 R /Im44 51 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im61 68 0 R /Im65 72 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im103 110 0 R /Im75 82 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im54 61 0 R /Im51 58 0 R /Im44 51 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im61 68 0 R /Im65 72 0 R /Im43 50 0 R /Im62 69 0 R /Im45 52 0 R /Im47 54 0 R /Im53 60 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im70 77 0 R /Im51 58 0 R /Im44 51 0 R /Im75 82 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im49 56 0 R /Im292 309 0 R /Im287 304 0 R /Im293 310 0 R /Im227 238 0 R /Im226 237 0 R /Im290 307 0 R /Im291 308 0 R /Im42 49 0 R /Im65 72 0 R /Im65 72 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im48 55 0 R /Im42 49 0 R /Im63 70 0 R /Im51 58 0 R /Im42 49 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im66 73 0 R /Im51 58 0 R /Im72 79 0 R /Im56 63 0 R /Im44 51 0 R /Im111 118 0 R /Im45 52 0 R /Im43 50 0 R /Im44 51 0 R /Im43 50 0 R /Im46 53 0 R /Im66 73 0 R /Im48 55 0 R /Im44 51 0 R /Im44 51 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im61 68 0 R /Im65 72 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im43 50 0 R /Im51 58 0 R /Im51 58 0 R /Im61 68 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im48 55 0 R /Im42 49 0 R /Im63 70 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im53 60 0 R /Im46 53 0 R /Im66 73 0 R /Im48 55 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im66 73 0 R /Im51 58 0 R /Im72 79 0 R /Im68 75 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im54 61 0 R /Im51 58 0 R /Im51 58 0 R /Im55 62 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im61 68 0 R /Im46 53 0 R /Im54 61 0 R /Im51 58 0 R /Im75 82 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im61 68 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im46 53 0 R /Im43 50 0 R /Im43 50 0 R /Im46 53 0 R /Im66 73 0 R /Im54 61 0 R /Im46 53 0 R /Im111 118 0 R /Im47 54 0 R /Im42 49 0 R /Im54 61 0 R /Im44 51 0 R /Im72 79 0 R /Im168 177 0 R /Im69 76 0 R /Im43 50 0 R /Im62 69 0 R /Im49 56 0 R /Im46 53 0 R /Im44 51 0 R /Im47 54 0 R /Im42 49 0 R /Im54 61 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im47 54 0 R /Im62 69 0 R /Im61 68 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im55 62 0 R /Im51 58 0 R /Im55 62 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im46 53 0 R /Im44 51 0 R /Im62 69 0 R /Im54 61 0 R /Im53 60 0 R /Im64 71 0 R /Im45 52 0 R /Im51 58 0 R /Im115 122 0 R /Im68 75 0 R /Im46 53 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im62 69 0 R /Im54 61 0 R /Im51 58 0 R /Im42 49 0 R /Im55 62 0 R /Im55 62 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im70 77 0 R /Im46 53 0 R /Im44 51 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im45 52 0 R /Im51 58 0 R /Im115 122 0 R /Im68 75 0 R /Im46 53 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im53 60 0 R /Im46 53 0 R /Im44 51 0 R /Im44 51 0 R /Im53 60 0 R /Im51 58 0 R /Im42 49 0 R /Im55 62 0 R /Im55 62 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im47 54 0 R /Im62 69 0 R /Im61 68 0 R /Im65 72 0 R /Im68 75 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im72 79 0 R /Im94 101 0 R /Im48 55 0 R /Im51 58 0 R /Im54 61 0 R /Im53 60 0 R /Im46 53 0 R /Im61 68 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im62 69 0 R /Im68 75 0 R /Im45 52 0 R /Im43 50 0 R /Im51 58 0 R /Im53 60 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im42 49 0 R /Im105 112 0 R /Im71 78 0 R /Im65 72 0 R /Im53 60 0 R /Im64 71 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im44 51 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im61 68 0 R /Im65 72 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im46 53 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im55 62 0 R /Im68 75 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im44 51 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im53 60 0 R /Im62 69 0 R /Im54 61 0 R /Im66 73 0 R /Im43 50 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im70 77 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im47 54 0 R /Im42 49 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im42 49 0 R /Im54 61 0 R /Im68 75 0 R /Im54 61 0 R /Im69 76 0 R /Im42 49 0 R /Im63 70 0 R /Im62 69 0 R /Im68 75 0 R /Im45 52 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im49 56 0 R /Im47 54 0 R /Im42 49 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im70 77 0 R /Im64 71 0 R /Im42 49 0 R /Im65 72 0 R /Im62 69 0 R /Im62 69 0 R /Im45 52 0 R /Im70 77 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im71 78 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im66 73 0 R /Im66 73 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im69 76 0 R /Im45 52 0 R /Im62 69 0 R /Im61 68 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im72 79 0 R /Im88 95 0 R /Im62 69 0 R /Im75 82 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im49 56 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im43 50 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im43 50 0 R /Im68 75 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im55 62 0 R /Im51 58 0 R /Im111 118 0 R /Im54 61 0 R /Im46 53 0 R /Im44 51 0 R /Im51 58 0 R /Im53 60 0 R /Im64 71 0 R /Im42 49 0 R /Im55 62 0 R /Im63 70 0 R /Im42 49 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im66 73 0 R /Im51 58 0 R /Im62 69 0 R /Im68 75 0 R /Im43 50 0 R /Im42 49 0 R /Im44 51 0 R /Im61 68 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im42 49 0 R /Im53 60 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im47 54 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im55 62 0 R /Im51 58 0 R /Im65 72 0 R /Im44 51 0 R /Im48 55 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im105 112 0 R /Im65 72 0 R /Im53 60 0 R /Im64 71 0 R /Im72 79 0 R /Im56 63 0 R /Im54 61 0 R /Im51 58 0 R /Im89 96 0 R /Im42 49 0 R /Im61 68 0 R /Im65 72 0 R /Im53 60 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im55 62 0 R /Im46 53 0 R /Im43 50 0 R /Im65 72 0 R /Im53 60 0 R /Im42 49 0 R /Im64 71 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im46 53 0 R /Im66 73 0 R /Im68 75 0 R /Im45 52 0 R /Im51 58 0 R /Im105 112 0 R /Im72 79 0 R /Im326 351 0 R /Im327 352 0 R /Im82 89 0 R /Im79 86 0 R /Im85 92 0 R /Im175 184 0 R /Im84 91 0 R /Im179 188 0 R /Im86 93 0 R /Im82 89 0 R /Im79 86 0 R /Im179 188 0 R /Im178 187 0 R /Im79 86 0 R /Im83 90 0 R /Im218 229 0 R /Im84 91 0 R /Im80 87 0 R /Im84 91 0 R /Im81 88 0 R /Im176 185 0 R /Im81 88 0 R /Im176 185 0 R /Im179 188 0 R /Im176 185 0 R /Im178 187 0 R /Im81 88 0 R /Im85 92 0 R /Im223 234 0 R /Im114 121 0 R /Im54 61 0 R /Im53 60 0 R /Im62 69 0 R /Im66 73 0 R /Im46 53 0 R /Im47 54 0 R /Im42 49 0 R /Im53 60 0 R /Im66 73 0 R /Im45 52 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im43 50 0 R /Im49 56 0 R /Im62 69 0 R /Im54 61 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im51 58 0 R /Im61 68 0 R /Im65 72 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im62 69 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im47 54 0 R /Im53 60 0 R /Im68 75 0 R /Im55 62 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im37 44 0 R /Im25 32 0 R /Im165 174 0 R /Im95 102 0 R /Im24 31 0 R /Im23 30 0 R /Im93 100 0 R /Im328 353 0 R /Im37 44 0 R /Im93 100 0 R /Im38 45 0 R /Im24 31 0 R /Im87 94 0 R /Im62 69 0 R /Im69 76 0 R /Im42 49 0 R /Im43 50 0 R /Im68 75 0 R /Im70 77 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im46 53 0 R /Im43 50 0 R /Im42 49 0 R /Im70 77 0 R /Im51 58 0 R /Im44 51 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im61 68 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im75 82 0 R /Im62 69 0 R /Im45 52 0 R /Im67 74 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im51 58 0 R /Im55 62 0 R /Im97 104 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im44 51 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im46 53 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im44 51 0 R /Im62 69 0 R /Im70 77 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im63 70 0 R /Im51 58 0 R /Im55 62 0 R /Im106 113 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im38 45 0 R /Im24 31 0 R /Im91 98 0 R /Im33 40 0 R /Im92 99 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im43 50 0 R /Im68 75 0 R /Im70 77 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im89 96 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im43 50 0 R /Im68 75 0 R /Im65 72 0 R /Im65 72 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im53 60 0 R /Im62 69 0 R /Im66 73 0 R /Im46 53 0 R /Im47 54 0 R /Im72 79 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 350 0 R +>> +endobj +350 0 obj +<< +/Length 819 0 R +/Filter /FlateDecode +>> +stream +xÅ}ËÒå6Þ¾â,»¡#âJrvîèi½Ï*ÂËw©ÔR÷/©/+æíM Ad| K5]ÿ$�òDâoïþíñ·ós6ÑÍÏÑ=~X¿ãh¹á-7øyxNÁR˲7|÷ø_ßÇ/Ë?ÿcùçÏïþ÷ÿyoÞm°Ë/Íssç{ß_m(î=þ,>ÝòÔðvhÈ8d�Øz_@í¸w^"Ìð9`Á-;aÓCå[o;ô]¡aç§ G,¶·¢a0ǵØ[HäÞ îüÞw[ÞkÌÜÒD#õvDcû®ÐãÓ;²5¼ f,Ö"·4ȽÜù )>cAÜòV´¸±XÜÒD#õvDcû>£°Ú·¼-a<`ZH¬} ï + VB; A-$¬ÜÐDbíëÄö]!áÝsÅJPË[Ѳ ±ÐÚÐD"õ5ؾ+$¢[Éìµö9HpCµ¯Ûw ÄdW"; A-oE±Gµ·4ÑX{; ±}Ñótv: Á-oEK!8sCµ/·#Aßvxw\ny+ZìT`[h¬½Ðؾ+4vuJcîêtoðÓtD"·4Ƚ¥> ÁÆ.Ô®=êÓ³Nßaºzõ®Ò§l$ø¬BxLUµL#«¶ ¿(,?<ô½u½ë»Hi<âZ¢8ä35XAÝçg8, .×!·d¦Â +y@¾Kód=1©e(pA( «®(LófseÁ# +Üq 6 ++äú.QðI/ìµãZÆp@xÄÒDá�Yu}@a³?nDjÍqrKFÚH¬ $è»DbçtF"30ãÀ <bi¢p¬º®s4áätl »h# É -Ùû&¶L}A,¶¶®:·ì¢!,ä´´7´d 3,ÒÕ1·fsܲ09²°2TniÉ63g´sRký+þ$ätØ»ÞX3A´&óÙÖlâ[vñÛlÙÄ -ù@fæLãùlmæÓï|n80ëÃ-- AfæLq®sk6 Á-»ÆÐþg¨ÜÒ4lfÐiõ»eIêwËZ2>27H<æg2=Ö?Jn]¶([SsomGEÎ-;·Æe7Y<7 øãgÆË2fAjÞù6ÿ.7l}fÜáSy3u2g¦ÖúWÌqØf`þF0)ûÜY9£O¹rm¶GV¦+§µÞH¡rQÁίK'³«ùzk®ÆßÆdÜ`Sv»3ø¢ÁÍüJ§#ûuÞQÁ×Ó@×xݹÒJÎ ¯ñ1Ï8 \?%¦sêÍÏ×§Ö騣¹åÈõÓë'h¥Îøù>óÿ|æÿñ¤¶÷NÌ +L<> +ºZë_e]N2:«rHfq*{?¨÷BzïêÅ÷®ÞY|çå·S)rK'n.;Û{ÿ4tHÍv>ýÎZâ»Ò§>¼J<À4`m,Í~*å('â&æw1ÕPÛ+Ì +Lòb<Æßºä ¤ë2TnpÓäD´[l¹ÓÆ£öc9±µÄÿ,K ?%ÇR"7 Ø£ï²ÁOÇ~æóµùhÔsK)66<5°_ðú,Ø#3ßágñàü1z,rM9ú.Nì\ËÔ<²Z²%å.^ÉNMl8»» !vþYæÿÃ]�pMÙíïçÍ}9ñ=¢ø>«ìÇߥEF;¿¯UÜÙ=³Wf÷Ì_óp ðplhyÊã6#:¹¬Â"ÌB3nsKäáÝrØIbÞe^d.~f¼4ÃZöØÐòiÈ&ô3+L<ÄÌ.Ï;ý¿óÏÐ8)=09êÌ!°v¢ßQÃÎ5 Ìf-Ê!wFI] +rGÙbÇ!³Nå){ØSÞ=pGé)ãÜ¢ôEioèðL§è7 +%½RÚÚ["µìölÔn5ß0Øaé¤ý®Ç17dIGlUÏ ¹¡Ç?ÝFÏìOüJö¡æ{òïrh3LnéðNó@DÖ©XsÒÚ|:qÃÛµJû:¼S½ÉT[`àÀS)82Ù:øqlÞâQδ+Órf.nɼ¡^rbKÍC(¼«3wm¹3Wñ³ücL˹¡ÃÚ9hiC}¢±5U·TÁ4 +ÜȤ+EÍ"vy¿tojm6çß#5s`w'gÛáãèÙ=8íf²ïäkwµ´©¶TvñÂvQm)(k£³ö)ÆgHG ãsڲ̪¶ï·ýÔù÷ôýÝãÛÿ²õùÇëþÛ§¡BÚZûô19n³xs¿ßò÷â¶ùMõm¿çï6Ò÷G¨Ç§I,Å`'³Zd3e1ðwâM;o¿ço�éÛ#TH;gÒQxÂä\xÎ3¿íßtªOßm¤ïP#=ÅÅÉ_hG·XÓsàï·ýT`þ=}Hß¡BÚû Bî' +)æ@ßoû·yü¤ßÓwéû#ÔHÏ+Î6¸dÒ÷[þ¶¹í÷ü }{ +é66XÌJqIý§ÓÉíû-óFaü{þn#}Öñdy$áôè1Æ5R¾ÂÍ)K5·æhIèÙpÖÝ&·ï]BO#o¿rhYaë} Þowù$ Gc·ð% dúÎz((Æ¿çï}?e-¤7í_c/$éûmÿ¦³¬ü{ú¾Ýgi¸q°-N¾w=OG²æo éû}¶&ÝøÀyû>è|H@Ï|$ }»ÏÒ,píø$lÈÛ÷. Û ù÷ô-!}¿ÏÒ$p ÅY NÚáoÊÍ¿w:Mßï³4Ü pÐÛ÷. °³@§o éû}þ*B_ÍLBÎd]²ãSP>5Y¾É''Ù\ÿ,°e)NýØ5¸´uÞDæýü6ÿb]ý}L6¿ò¸úù°5nr2 óe¥NÇ»Ûa8cûéï|Ç?ñ¸êóiMw,ά«Îã0³7@ãüwÊn@'ø©ÇÕ'ÈÇ¿ãf¹ÅJ>Mçä²1J£øûß1ÁO<®:ÁC<{IUóùvþ;¿±©þn¶Ñ ~êqõ òñT \ÒEù¤âòÃñÕdʨú{Øà'W`>_÷äb-r9·òuÌIq÷qNðSûy|&EƯmºnKØuYäkH¤ëª¿Ûa àI}Ú4ËHQqé?æ â\ô÷ið¬âª¿û ½ô+N³ÂdÇYY QäUÜùïüË ~âÀ TÔ¦v71ÓQ9Öª¿óÝ;}z$tWAL¬â8Ó#ÿns²«þNáÅ?ñHà³ +»ï6:#ÄUÜùï'ãè× àéµÅÉXÅQ. +ÿ}mtGwú;gÀ½à' `>~»Oø²òA aг;ÿ}5ÁO=ÒgöEGí6gÄÚlÿ>þþ ïyµÃ¯Nê7祫7S|µÑþ}ü½àݾâl7CÕ̲ [ôÔÊþ}ü}¿oxu¦/,£O¦dYmìßÇß÷û~WÇiúzIúè« ýûøû~ßîê8m_ÎñMM 8 +»æ¡ü}üýßíâ8M_½^óYb±¾ßï]§éùÃÉQØR<ù ¶÷ïãïû}¯«ãügúZóÍ.ÛçÉofÉöÃ÷ñ÷ºou¹Ã¯dÙ>EÊý"Ù>Å|´ÊöÃ÷ñ÷w;ìó ¶MÛEúè²²ôÃ÷ñ÷ïs¹çN_'ÐFfNEzþ>þñm®öÜçËdDzLpÜEúáûø{Àw¹Üs¯ g8m"=äH?|ø&{îôEîª_MY "=:¾f·ô0ñM¤ïßÇß#¾ÅÕ?/n¹1!p¹n°9I×ëÏ?Va´C>éçß ÎÇçÆ öVVR2ç¹!eT¯úb^õçúó{CX£âúôÉ?à³cP-Áï3hó·]Çc:£?¿×ÀT,¿>÷Ï6ôyÒ/u·¤súvcêIGåî¯í·öï5!÷T~Ño I¾¡u¿kÀLIÁ³ñÖoUVp§¯õ·öïT§m,¿è·/¿þÓ0záË UOÓ®6×ïU¯³uúZû!oA,¿ø·ø¢|>t÷GÛîôäïÈ"^o_ëo?ìßk»Y~ÑoñEù|½ð9·ÄO¾øÛÂ')÷<(¿¶ß~Ø¿WU{*¿è·òÙ0¢û¸À=|\-ÂEËÛÞâ©6PâÍ0ùÝûw_þÁ>Ìãý·ïÒE»Éèõ_ï/RwññþwnX]ºY<»¥áÇoþå·÷^$|HpkË¿W-?T-¬Z>V-¯ZUËOUË·�Ô_~þQµ|_µüü¦îùGe¬~¿î¯±óÓ¤{eÉYÛb~q½nÁ oܰe®e fo¹º¿Ï8§ÃE½Oåöºé¼½¹åªåUËǪåïUË£jù©jùª[~zþÀyÛ¨/^^8óTôjc¯C?õ2,»Û[¾¯ZþðºÀoUË«ÿ� LÕ2¬-1¥Æ¤û¼ww�®»;¶|ýÛ#75沸]#w2oµp7¼qO©ÿ[ü`önnXþáEhÆ0,îÜÚ]BÎ1Ix&±jà/ìÚñeî§_·ûùtïÆµÙßèÀ¾îÞüºÝÛÝ#ôõ úZÄ ÚÖ{öIçxgÏîïÛ}üuÉ÷òvÝý'åmßAvncª¿7~B1ïï¹ÀHÏaq¾°ÝJ2Íl?ýemñ+qÖ[Áø3©ä²#·¸ê7V+"Ì¿ñ +{Îs8c¸øÆ§±rËTµp?£*T¨Z¢ÞT( CÆ9iqIEÅÞUäâ\5½Üâ«¿w?â¬ÃHÎkØrBÎÐÜnÅ:¦ßçoñîÇí>)Ü<P9ëX˶ù¸Ý±æ·¢ .ì@"·+èÖ×»ÀöU¶-L.-ªZ¥Ú´Éó®Ëß\WË6¯JÞVÎO¡q\§87¾]!âßówm.Öäp îýóõ³pqÜ<?RÅ Høirñ½6ü¥jù©jù]Õò}Õò§ªÅæ1Ó [=¢L%/86Pá£^ø¨*?A4Ä1 ñ8W´v¤}¢ýµt2;Þú=}Üw»O¦¡*5Zª ©ÆR9n0üBF1å×().ÊÓÇx¢¤½å§ªå÷UËG å¯"%¥ÄÖÈ&Sµ¼-[µ #ÔÖÒY>¨j _¦ª¡<ÐDÚ´EÜ®2¸ÂÿNgõ¼÷Õß© þÄã&VLYåLpüà5įHn¸CédK´wIä?U-¢Liª[A,¢ny+ZÖu8ÁÅüzÖn2¾ñÓômOâÄe¦·=ÍÝä¿S íiýw×<]ÿÄ#õ¸´fÍZ¤úwL,ËßQÃ8²`Ür~"]~ªèÞò§ªå¿V-oJËÆbÌ"(*Æ,³¹ ûÙ¡Bëå)&È)ÊDZñrüjã´!â-À¶¥û÷ñ÷Ýèò8L:[>Êh©D`&.SÏ É" \/Í8?Çq,Ø=¦@¨Àââs°% IxVi;·tCkÇî@Ûw·àñÛ¤=äwx÷ïãïAsµgVK´÷s`¸!]5X½É wècéc(O¦ö_Dj°1ËDÚ{³PäVK;Tè¨ÆÔ°v| íû¥¬HFäúCÏNP¤ºgsÞ£ÓWÜRòwz¿n,¿â!¤ÈÏ S[£Gq±´éu¦(ËïEPá²ÃÆjx§±ðÈûìj-{Y*¡½å"Ô°¬ßßÞ%BØ:ç/d»´tß(ú Sp¡?¼ûò¿ÿ`b|üþ§wÿvèÀ.³ØAð+`Ù¯àý² +2<#°Øæ¾1¸b ¿õhRJ\5þBú'øe×½?KøÿaáÓC]Õ.ª½wö<àSúîPmÀ8;0ëÏÿ8Õ;8;ϱÂ`Ý93XÌÛüX!°p˲&v°Â +E@KhZBmñÂúj<-À¶$ÖLÂøÞ·IÆO"´Àüi´`GñwÒúuàÂUõúUø/d"ãï'ÿísáE*Té'Hû'ÑÏyý~1 ùWãk"Ð$UúEÈ(Peþ#6ÿ ~tÀX@uþ3¦Tú1þ«UÀF?N@^PòøÎXh|mþÎDhþ³BÎH*( +*DÞÿÅ3¾EÿéBÿêú¥ÂÙ7ä[¼Dþ¨ë$þ«×¯_q±øÈðw3<Lÿ.bû¯0N4A°~4þ ʬ¿>»§Kó² ó÷þLuüTbÐ'øå¿S6�jí(9t0l4¦r¹ßÀ9(+ / +Z-V¸Æ÷þñ« ÔÐˬ�½Á(½Å�MyÙÐ*¼Ç¯8Mx' µP×Ïû[tq¡ý«MøÅ'ðcµþ7mò7ù |¸i¶Ç]¸÷<¸yFïpà'a;pÃ(¬^g6íuZýÚüըפWÐë Ô+s¯qF@@â^z ©ÿ¼ ýdóßx/à_Ï_ÝT¥Ú� >@ðzað¯Õ¯%x\ý§2¾Ê�ã,í_%=5í·h\i|aÿü'UúÀxÁýWÜ×ÁCãkük(`íc ¿ê>ZiÿphÉ}h¯ÖmÚ+ÉÿW棺;Яºþªû®·@êO?øòÃú5À@²ùi£Ï +øù©ÆFêø?% ZÇ¿T0 ®ÂÏ¢¬HÅH¿êuøé¾¨þ³8¼þÎZhýUÿ×FÔøàþ(ówÖû§úßn°?s^ xüÌ «ëGñ(Pñ³(*Jþhî£øåeÿ# î8 nò·<µ@Ç ÄÍ¢5°-zü$ýâ7¦�L ?W\õ? kð++ ô?IúÂùÌ¿Ó,KêC&Þ8½iïKpÜz§ØÑiòpðÎ$<¼}I»ÚìÐôuïsæ{O ïqÂ_îÍß;pþ÷á%ꎤõ«½ÕûýÕô«ÞøÓ[3J»/f¥ àî,}p÷«øÏVb�ÁúÔÜ×ñ%÷µÆ¿X3û§còW=}4ÕÖî¾bë§Â§ëPúQÖÏcë§»¿¢ÃÃA¿¿æýXê>|°¢üÀw+Ê)|§dLÀì³å}ë§ç�ƽ§tz.Èüôv¸Gn@éOó^Ã-ÂYI~Õø«Þ(?z¼' àïŨz/¢Óá½È÷^°|Ü×�5~1P)xDM@ GÌQãì¾64 :Ù$æ¾Þ#�?` W÷¿%¸f�õøßLÐ$·¸0||.ºPÕøu'ÛÍý/à¤�ònà ô3<ÍßSø ½æ?ÃÀðh]0<Ë£ÒÏxÏH)ñÈú©é#Óipuýflý´øyÈ!{)Ó.®1·B@ë# ÆÏèøÃNÀ£Gßg2pÉ|7/ÇÏìôrótø WãWÆCø«ÙfOqÿ4~GüÈNÂøuüHùAg~ã±õS/ °ð.à{. °ô-'_@À². F¿#ý×ÿþøW´Ã3MûðõῬ0~m½êé4üø²¯[û¯ßO?°Â_ÝÇûÏ·?úÅ/8}«!@Uü¸8þjü#ÜÀ6:pýøSùwÄÿFiþ¸÷`GIàÞDx8}ÌÎüí¸½3K +�O^vÃ�?÷;ò?½å¾1üèÈþçøyC©ñ3�jôD_püÙ~þàÂ=ÆÑfñíþo¿ñí«ün`ü£À¨þÐ'¤ýÇå_*ÀÉ?-z éOgI~ãé^´z¢_ÿ¥FODû?ÿóö*þý¡ýÓìÇØ*þ�pþSôêý{UÿsôHÔ_øåÙOjô&ö~ùgÄøO¿gû ³¿Õõ0ù§îß,êáò>Þ&Z£§ ý-¥OËüÿ´õËÑ«ë£WÝü·?Ñðæõåw5øEÔ_±ëmôyF¯¯ +î ðV쬼&:Í`x<ñÔðѹvqÕðÁ¹vqÕPáo^_\UcW¬zÌëÇjèÅI´×zqÒþu¤yúÖÕn^éPÂÃéѬ98 øh xuý8ôÖX?=õlàµÃª«ä?Øô1Fjìî=·ø_Oýè·#õkðïH2ØþÕ©3º%í_ÄoðŦüRÖ/4øG½¡óWBG ÿë©cü©éOËûN¡»Õô(é2ýR.ǼÝûwtþG羦¢?µòü»©È{ÇoÎëSÂwäîës6ýøæíi|8ñĸ�⯽ããgo~¤ñ}ãìL»yëî_ö?z41 +ãã øèæÛfñO¾y{Z?Øúä·-xÕþyÿ^ßÑSg~á³W;¸[ôk¢_ýè ã?5ôn1þWço1úiµ×_Ó_Ä¿zê±D=7oÝÚ!úUñÿKø+Gã?5uì×ýâG?Ó�Ѻþ¢üÁ¬(jûYO}éG8úWBçÃpQþñÑ&ô££ â?õè@´_pûÝ]¶_8uzàñУÐí <s?úÑfèÓÒþu] ÿ·öýùëw¥ýﺸ õìr/ +ð=óY@w1ne>_5½è�!g÷tñw1`ØÛáëÜ5öo=h)gNÀp�ËS顼°þòÕOOÏåÊ[fõO¬Ûþ¦LWð/{Àü¸¿¼IÔÓøÔ�¯z@A9Áã$¾=áß^¦Û¿'x¼v[À%¼ �åa¸¯#hzÛݤñaÊ"ýÂa¸Ä¿#yRZ¿úQú×"Àýt0~ÁP-x:Á9Áãàò#¸õS=Yþ३tLUÞKóïØ?ö û§â0üõÚSó-ýa#&¿õÒ×þþàÒ×ñÕÒÄò×\ªk'iýpýcéê^[ÿh¥¯F .>àõÒW"ýâÁä¯ê�Xÿ;<8öü£ÎÒúãW/ÝíêAzp2Hú»cÿ¨ðýüê(]ÅõO°À«øÓå¶ý¤Ácô¯®¿h 'ØìJöSÇÕÁA¿Wô§ê@ZÉ~éI~Äôzu*O·íw-y_ýï=jÿ+ëÌ-ýã$ÿqûÍGÌ~Ó=¿ºþ£è?ÂúÃÒúKô/Û~ä7~é'Iáþ_½mí|(É?Üÿ ¢ÿ@ðÕÝ«ú'ÿÕlßÖåzÉ¿ð:ySõÍ(_½6,?xü굡§R$ýÊÕkÃò³ÄÏ@dù^'_«'àôüYÂÿõÓçø!Í?Ø-~XÌßÀãYÀÀoO>ײwùù²Óâ)pì5XŰÿI¿'ã¤ñ;R¬0~GõªAÚ?µ¼{û8ýÓSðDúÃù¡!ô:nzQÂÜlýTú¡òW¸÷¸å¨�×obë§Î +ÿ¼ªýð¯?KøÃ·_U_<Ñî@R +n~Õc!úQFä_¼öÇÇ«ÏÑíÓ«úo^Õ|ûôªüt^?·Ã=ýãhâµÏ£4>~{-`û¯Ö¾§Úk-ù£Îö/ßâ¦�á¯ßôWGíös�ôñ1ý«:¶~ªM·çûéh#Éÿ�@ú×HAÀ¿½Í·Þ®ÊÏPíï®ò×^°�Z¸?×nÃä§z{8JüÓq{xÄä¿/ÑoÇíáI5ÿèµÓPûYáYZÿå�dDû ¦ÿ`®ê_Çä·vû6YpàëÛ·RùtNàY3Ü1ÈÖŧ§9À¸Ý"8ëLÂP°bT=òP>r®L¨-㤬`ï$èý×s@;ðâ +°J «ä Ùº< n2tܤá0Ì"Î/U±c3¨¯qfa:òx&ip7Âð9¸{H©ÆQg;ÜðA"Á7|<bnãÃ7¹òM&ýi7)Eüñ"LTÿ*ýðnWùØ_¥.bßÂ_ P«ôk£È?øM(ò^~´÷øgè9Çâ0Î�¿$þé¸ ;£ü¯!Ãä§zcö_ÊCÏ!Aîu"¼GÑ¿è¯fP½�EE<Öáɤáa/J°àx³øpcðC�âããÚk '¬ï?lÌ_Þïn¯Âq¿ÇK¨ropîázBå4>p³°%òëxC*`ðzwÖO= ã ïìbsÿ*ýìßqM%¨Oðø)64ÖO¿GÌðîÒ)v>Äk쿪ý¨äiÿàSlËY þÓï1ëßa=ýµêh´àÕC0/¬Ï;ôo¦¿Të9Jò¿ÃûEý {|¢Áª÷1Iû×á}Ì¢ùÐQÖ@ø«�Fë0ä{¼%þø!oéß|ø¢þu²þõ¯sý¢ÂYhÿUëÛKú«Ãúæ:&õÓ³¨%þï°¾ïqµ¾øÚúnÞã- àp$@ñ{´HÀpa>»è�äS°¦�lÜãmPJå p50 ¯§1c¤¿@ú)Ö=ï7¸²~ÞÞ[/× BáZ +@¯! ýÓÓ %ÏBóÓ=Ю�Ò)¦�ñçxkü ø#,ÁHü\µm@ÊøÓB!{ÐOàð0UA,Áqëö®=ºüÙ¿ÓðÕäUçRØKx¼NzH¿£ë$Àã¼ËµÖOÍ`vÒöud0»YÇÜáõº×"?ÿ íþÑÜ£ß(?�EàçOïµæ¯Ò?Ù-úWW<:ÁãÁÏã?=ø$Í¿'ø ~¸öþ]áoí¿êüI~â A~Çi=\G¹ÇøO/â!ùÛÊ oñ^DOxð/Ztøùÿq𪠿ü~K5¤ì$Ñô~¸VDOÒ¿þæ÷$û£ãôk�j�hÑ3�ðâ3@Tçß` +Hí "8Q$ g%jêèvÓY"´Ó`êzÉ©%¸ç ¶-àð2N _Qá9ÐA²à:rèe 3@gQ²`ð*hN@e éÜUÒÍë©wÏõC¸µÞ`ô¯æÐiþµ¡Â¤ãýgy`z>IþtTáóÒúwDOjA)ãIþáÏXpôëªâ#fAéÑ3ÌÐ_@@ú×¢gí(b!Z ¸üN/ a%z5,à y`'ß#Êo¸sÈÔÐ(ã,ï?½dÇùø¥Øi À¢ÐiÊ�<Ü`7@ü&ßjìkãIÈJ³ÇkÐsøíâê¥Ü-dùô÷¿=ßüRø¨¹/ì>ë?çnðÇÃtvÛ¿¿·Òüáгñ�_>Hë_ÃëÏ ý)á³(_GîXö¿ÀÇ8/ÓÏ(ñ/{Äá7lÿ[oXÆ/°q^ºÀ§ ÿæ[ûolÿÕðaú×2ßéè§-¿´ +¢ü ÃÇûÕ¿~t¢üÄßÀòÿâ8sø®AzøÓêþÜÿ×¹c-þoïúKßIü×Á?tóàªü´&¿õÜ7lýôð¡$?pùÉ(Úô¯Eß<4¾þÅ�éO5x`ÅõÇßàãÇüãì|Ï~uN2 qÖyÑ| X.áyyýtËMÉo�ÐÞ/æßüÅùãÑÃ()@<ùß@Êüe +¯�3b +D^Òë{W¨%7ÀÓwp/ +°èà Ñ?®@¼ÁP=ú(ùß4D+OÉûW pï¤ù×ô«F¯´ÿÑ[)`5úê%¿{º|Ó2ÀÔýå;«½g@§Ü=dÿÕñ'l|&Uü'I~wðè�Öü£>3o ND}z¶ØIâ.]~JÜÆágüò"±_¸öÔLÒ/\»xk'ÇNù ð<}CçOÓdzoèêD ß}g'h|5üã°þáÍ_Ý?'áßS�Ìïкx¬èêÄiýñðSðÇo¾åúáWw#i¯@gæßñÑ(îpöÀá7þ:�¢ô-üõÂZ?DùÕS¸£?=ûMÄ_¯_ Ûêû\H3æï¹xÎ@XÉ|ËxüO¾ô(:Þ0uS Þ0¥»[WÐ:*ðás�ôÊ!¢þÆÓ7£8>|õÄRûý ÆßØük0 :þ$ +`ü¡Y¿#ýrFö¿EnÀ0Õ}çø}SiÉgýá/äøYþµ»þÉ[ã=ù ã_5üG ãZ>Ãä¿ÌòãµüÖ×$úë(::5|'0á;Ñé(:a´>ÃÖOVPE¦ÃýDúà Éì(*:`P9ÿ¡!?Õ vàëëGú>ã-úõþþLÉwwô7`½Ê?^tÀp_ði9àzUÌ~SÿFÌÓÃ_7ùoÂøO/à*êoØþ¦?ôx°ýWï¦?µ�DÈöÏë�?'Ïùk·_¨îå ~SÙÊ8ûiîþZâcÞðìÐág×]>|+ñS >Yï¸úh½´ùxÕUþùkWïÃÆWgì;7÷_˨W:ºÓoD?êüÙwn¿;g úÑsçÄüjð,ëßüóý6¯¾6ñWöo÷ø¯Î7Ö_õýQøâu§Øv-áaßÓRÙ«ôcíUåÁ'IûßûÇG¯ååàÿEùïW·ä;'ßñúqø¿#÷sçô¯Ù9wο¾:ªçÎM õÐÈ}»Ê²ñÇÞ&Éþèx<kåGìlÆW}w¾8ÖÚãGâúá¹oF½ÙHöW½zÕÞ°]ðRݰQ<¼à׫Oë_ùþúëÓ¢þêx| ³ÿÔØY¸g¿åÔ³òÓÉöz5JãK?µØÕ�Ñ¿~ñT²ðØ¿>ÝÿÊþÏÿÐsqTôÞðÔ£Aßxêö?{àÇ®ÊO/Ú=¯Wcö§þøh¿á¯O{L~«ë/ú/R%Ñ/î?ûÚÊëÏ£´þ¯?¢þ K·øI´¿ðýíÔ-òözõ=û7bø9vvQ~Q~àò3ÇÎü¯ÅÙ|¤7Xõн"ë©Ïw¾¹ê@ßqqnè«ÁÞ¼ >qæ)üâ*ÿÆüõàÙá¯g®9 ¾#smà{2×Èy³cãén¹êIºxºÏü«ª'zðËûéåoþFþpã#]Æï~þTú¤ñ;.þrÝ¥¾¾ZâáªÅþ×K¯2ϰýÓ.~ô-Çï¨Û6BòK ·îü³ üP/nÒ£ýÓ/^ZPþ5Ïô߬ÛVÂÁG%ñ/°þ³/ÿÔºwAZ\{§wÔ·%ýÓQ÷oÌý°ýÓÇDë^SðïúGw¦¿g×/]»CÿN?;¸Ö°ôÄ5Iÿt$î\ÛþPïȰýßòSO|Ãä¿&?rÕ¶üÐï]JüßQ³?Jú»#x(ÊÛ'L~ëoHú«cÿ8sþ¢ý«¶5èW ÞpÙǦüTîÍqÕ¥ö7¨ý¡Umü§ª_ó_ÔÄ!+ù¯W¢üé¸7ç°õkVë¦N|Ãä¿éO\ÿظ¥ýïH\Òþ㾤ķÕÿ,ñ\\égì· >|ÏÁ»ý¨³$?ñ×ÃÙúËã÷ìO~yüjü$ðÍÅüo½<Þ?´ßLï!ôä&yýâ6ú|utýQàß¼~¯D/úf¥á;¾Eaö±C¾5fZïÕh·V#8íÁOq|Ø÷1\±´ïHürâöwÄ¥ñ/Üz5÷j´Ø!Sïüf¸G3bæËîTtîýqâÝ᯿!ñOÇü¹hSsþ[« þUé/m4é_=Äjìc·ä5ýáÆ¬ø©XËK«MúiÄò[¿Ãè_ý8i|Üw²Ó_çîÓ>^ýiý{¾aúC®ß*ýpâÌEë#k¯®(¿z¾Iú¯ç¹ú¿ÿìAú׫äoGâ¿YSο#ñOÒ?=±Kqþø¥E{Ï|MEë®ñ?Ç%þÃÏ~ó¥ÛnýÇ{ý,¼9¢<féOFH +¸çÉi:^Z@½èÆ�Úá£ã¢O¥ã[oWÀ$°tø*;ßN`xæ@<x5ÜÀ^t�;W ¨9 KÆ7æÙd^^T¹hÜE:kÐ +þ²=ãýWomÑÆ×_4ðÃw/@ø#¦@Ôñ'Ñ�ÄÇ0@]?Ð�R3ïD/[Ì�Õè?W@ü`,f@ªøÔ×"ÿ7ÿ6x~pv¸øÌO^¯ó5êá'/×iê¥_ÒýÃë¬S=x)ß1\0µ²µÄC/ßx8@«¯ßº%ÚZ·6%÷ÊùãÁ'>6ÖO ¾zxàßz^gMkÁüàìp-kܰíÛ_¿5;Jðý%óô£ò?8Ûà?dÈvìëm*sô°AÀêµIV>Ãë´oµäg ¯ßÒNí@¯ÅøØÉã=Òâ/nZIáOÖX~/)ýâè_?Á£ ý¡gîIûßñb0gþ]¥¿( '/¢$ÀðkGVf`üÚí$*P8ú^lE ÿ,*`~°µ +°ó{qÿÝ ?~m;?Ñ 5øÁeCòK2B2�ðÌsÇÓ/î¿ Xþ9>½lÈ¿EÊÊãó¼Ákæ8ÑÀ\N÷ny¯<¹ïÝ>~v\ó²i4RþlA8~óªeA¨·'Lǧ?M`^sG÷i\^%˲®5ÐùÉãy]Òôh^ÿÜAål[²°_}ML +¶Â/>@=±RÁñ�YÀÓ«Q§ñâ¼�é¹i7âËL¾¤ÎÀK3 Ú+|f`ê%§à¨z°¨{HϦ^ÞÃÅGöP]â¢æ +ÔhÔÁ,/a%G´¬üÌ '*âêѧ%¬4iMÆÜöÀ| +nȰåulá$ +OðÕI :¾ mqÙ`ªDq ^d3 +ºHA`¼�£�2°5Úd *4>rÌBDI^C6Ûk(KsGép-i®ò¡³(²V`ĺÊlw ÔҮР\I3¶uª¼@<R¢@ ÜäGx'}¥¿âáü;ñes¾'«ó·VÇ!¥Gtû×ÏgDÖO¿ö¿£ å3¶ö¿Uð¢5$¥ýÃ_çW<NëWíz|´=lÝË\luýé.ãåõ§ã´Öú©!ÕÙãwDdDùÓÑ B<õoò;ÁãAH¶æ¯Fä(è´xDÎ1üë|>ýÝñÞü=¶ÿú#ºñ"ÿÅâ.s%¢1þQóI©ÁUýaÇpùÚÿªøOÒú×ø«ÝY¢_éDA»-éoIþëùýèùÿêw1úSóá¬(ÿà||(¶ìý ;Þ0õÿtÌßö~7Hããùøn±Û7ûûï#ñ3ýq@1 +𶢿©ªÅÀA#ÀävΧÈ8v0ã0Þ +ôÜóñØó?KøG[@1½büY:R3¢�mÞ 8IÐmPëxs@zÙ@ýU/Ìê~Eµí*¥è¼äÁv¢W% 'Äð°ó#êÁ(·GÉ©3âõg$0VO¨ÆïH¨=�ÓÀzBäÁô$ÄaFÁ`ô§í?]èàçLµíWÒÈ~/Àqû ®Rà¸úç½k·*éµ±×Ú°x·qé6[ÿê1<ÑN9>þ¥Å_Cvæ¿aK7ÈKx<ظY?~Ô{ôC mýSñ÷t$ÄÑj'xø6#ßmÍ_M(¤dì<~uÄÖO«Ä`Dé#UbPÖö¿Ãû$áÙQ N°þ¹y/ÃܸM©DO(¡õªü³öªü£ùÓmØýªÑ'ÉÏý£|þjôÌKô?ÆôZë¯Ò=ÁxòyR F¿½ÁºßðÑ� `5üÂÆg98|nù$½±�úuTÉ�èxbðï¨ù@8>î}Ì�R½#ßñ«�ÎÀj/Ïßb +HMH¤R¾m¬ÌߣLa +\_a¨¾(~Ké]5@¹^Ë�U×4üRJGÉ�nS)ð>oÀ« ¥ôãþðõåº~¢¿âE÷>=(¿ôRz¢ßƤëðmý§¼C ÊüFwÿà¨Âs2`a@/&(J WdèâÅਠÐUÆGÉí¸=N÷æ?I. nøI)FGãÏãþ-àñðqzŵ¯ÃÇRÖö +¬¤g ß'uþð~+àg¸9=D2Ï/å§fQì´ÝÿÙÕcãGOÐx!/J(ÁñÈ ÕQià®ÎFaô*rFXwü* Í +p<ân´oz ;iãð%U/Àñp»¡â© píþ ¸(~÷ÍÄ¡ÞwüÙ7AýjêÕ¥ ×.ÿ¥`Y |}÷O¿û¹ ¸Åâ»j2³À°&ºúÝ Z=ÍKÚ88NÍ/Vüy(ÌÖÜ8íÖh¨Gï(¹åJKO%6D¥^0ÎÝ´éK/:h[÷M4¯%wED¹ë¹]ÕIÕ^¿±Ú½ï>ݲìÊÖMÓö.6¨N¿'*q~MÊFSíèTp¡º+)éü¶jsé´®ë/³¯ôïÞ¿ûòæaï¿}·ðöýHÓÿ¼ÿ!¥*Ûyé3Ëo¾yüæ_~z¼}ÿáãÿøøOýýýûOßüûß<þøýêçïßÞ_ÿæÃ׿}üáùøêûúø÷_<¾ûùç¿þÓ_þòË/Ï¿ûþÏ?þüå×fßþýÿþø/ÿú÷üîçÞ~ûxÿçwÿü~ÁîÿÝàéC +endstream +endobj +351 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 820 0 R +/Name /Im326 +/Width 27 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5ͱ Ã0ÀX¨Ô�B M¶sm.spR áÏp+âÿ¿0n(¹¢"pKíí!Ó{s UÙ©ü.ÔÍîoö(ÌfÌbL¸ýéoZ-Ç<µ¦NS^ëãù¹ÿ�¢ª=÷ +endstream +endobj +352 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 821 0 R +/Name /Im327 +/Width 40 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xα ág(èdZ-íMXËÂäÇ1ÜDF`�âÉ3Dk¯»{? ÉÀh±ðªÝ v ¦�b3\ÅûÔpáhXyzúùàð»=¶,¬ZÙk©=ØkýÅã´íó ¼}=Ï +endstream +endobj +353 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 822 0 R +/Name /Im328 +/Width 22 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`øÁÀøy;I0ð3 <1ÿÿ�D ¶ *ª@EPã$tù�qCuÃg:°n1ͦù|�à5 +endstream +endobj +354 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F2 482 0 R /F1 480 0 R >> /XObject << /Im166 175 0 R /Im46 53 0 R /Im66 73 0 R /Im68 75 0 R /Im45 52 0 R /Im51 58 0 R /Im105 112 0 R /Im167 176 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im112 119 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im62 69 0 R /Im69 76 0 R /Im68 75 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im42 49 0 R /Im99 106 0 R /Im113 120 0 R /Im170 179 0 R /Im171 180 0 R /Im109 116 0 R /Im71 78 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im97 104 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im44 51 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im61 68 0 R /Im65 72 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im46 53 0 R /Im54 61 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im292 309 0 R /Im287 304 0 R /Im293 310 0 R /Im227 238 0 R /Im226 237 0 R /Im290 307 0 R /Im291 308 0 R /Im106 113 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im43 50 0 R /Im46 53 0 R /Im76 83 0 R /Im51 58 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im68 75 0 R /Im44 51 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im99 106 0 R /Im72 79 0 R /Im50 57 0 R /Im42 49 0 R /Im67 74 0 R /Im51 58 0 R /Im54 61 0 R /Im42 49 0 R /Im44 51 0 R /Im69 76 0 R /Im42 49 0 R /Im47 54 0 R /Im51 58 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im68 75 0 R /Im51 58 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im53 60 0 R /Im44 51 0 R /Im43 50 0 R /Im69 76 0 R /Im42 49 0 R /Im63 70 0 R /Im62 69 0 R /Im68 75 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im75 82 0 R /Im62 69 0 R /Im71 78 0 R /Im53 60 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im53 60 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im64 71 0 R /Im62 69 0 R /Im54 61 0 R /Im51 58 0 R /Im71 78 0 R /Im53 60 0 R /Im51 58 0 R /Im63 70 0 R /Im51 58 0 R /Im53 60 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im72 79 0 R /Im168 177 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im45 52 0 R /Im68 75 0 R /Im51 58 0 R /Im49 56 0 R /Im46 53 0 R /Im44 51 0 R /Im75 82 0 R /Im62 69 0 R /Im68 75 0 R /Im53 60 0 R /Im55 62 0 R /Im69 76 0 R /Im62 69 0 R /Im53 60 0 R /Im53 60 0 R /Im62 69 0 R /Im75 82 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im283 300 0 R /Im284 301 0 R /Im284 301 0 R /Im285 302 0 R /Im49 56 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im43 50 0 R /Im44 51 0 R /Im75 82 0 R /Im46 53 0 R /Im55 62 0 R /Im51 58 0 R /Im53 60 0 R /Im64 71 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im43 50 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im49 56 0 R /Im46 53 0 R /Im43 50 0 R /Im54 61 0 R /Im62 69 0 R /Im44 51 0 R /Im70 77 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im72 79 0 R /Im168 177 0 R /Im44 51 0 R /Im61 68 0 R /Im68 75 0 R /Im43 50 0 R /Im44 51 0 R /Im70 77 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im53 60 0 R /Im44 51 0 R /Im43 50 0 R /Im48 55 0 R /Im42 49 0 R /Im63 70 0 R /Im51 58 0 R /Im63 70 0 R /Im42 49 0 R /Im53 60 0 R /Im46 53 0 R /Im55 62 0 R /Im46 53 0 R /Im44 51 0 R /Im64 71 0 R /Im62 69 0 R /Im54 61 0 R /Im53 60 0 R /Im64 71 0 R /Im42 49 0 R /Im43 50 0 R /Im42 49 0 R /Im54 61 0 R /Im51 58 0 R /Im89 96 0 R /Im65 72 0 R /Im53 60 0 R /Im62 69 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im62 69 0 R /Im69 76 0 R /Im61 68 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im55 62 0 R /Im43 50 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im62 69 0 R /Im54 61 0 R /Im75 82 0 R /Im48 55 0 R /Im46 53 0 R /Im47 54 0 R /Im48 55 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im64 71 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im70 77 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im97 104 0 R /Im99 106 0 R /Im104 111 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im51 58 0 R /Im47 54 0 R /Im68 75 0 R /Im44 51 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im69 76 0 R /Im45 52 0 R /Im62 69 0 R /Im61 68 0 R /Im42 49 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im53 60 0 R /Im51 58 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im61 68 0 R /Im65 72 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im277 294 0 R /Im43 50 0 R /Im66 73 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im106 113 0 R /Im61 68 0 R /Im42 49 0 R /Im64 71 0 R /Im54 61 0 R /Im62 69 0 R /Im44 51 0 R /Im70 77 0 R /Im51 58 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im47 54 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im53 60 0 R /Im42 49 0 R /Im45 52 0 R /Im66 73 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im62 69 0 R /Im68 75 0 R /Im66 73 0 R /Im48 55 0 R /Im43 50 0 R /Im42 49 0 R /Im61 68 0 R /Im65 72 0 R /Im53 60 0 R /Im51 58 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im111 118 0 R /Im45 52 0 R /Im43 50 0 R /Im44 51 0 R /Im43 50 0 R /Im68 75 0 R /Im66 73 0 R /Im66 73 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im69 76 0 R /Im68 75 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im61 68 0 R /Im68 75 0 R /Im43 50 0 R /Im44 51 0 R /Im70 77 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im51 58 0 R /Im44 51 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im51 58 0 R /Im89 96 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im61 68 0 R /Im68 75 0 R /Im47 54 0 R /Im48 55 0 R /Im53 60 0 R /Im42 49 0 R /Im45 52 0 R /Im66 73 0 R /Im51 58 0 R /Im45 52 0 R /Im43 50 0 R /Im51 58 0 R /Im44 51 0 R /Im62 69 0 R /Im69 76 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im42 49 0 R /Im72 79 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im65 72 0 R /Im68 75 0 R /Im45 52 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im51 58 0 R /Im49 56 0 R /Im42 49 0 R /Im68 75 0 R /Im54 61 0 R /Im46 53 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im65 72 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im65 72 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im46 53 0 R /Im43 50 0 R /Im54 61 0 R /Im62 69 0 R /Im75 82 0 R /Im42 49 0 R /Im63 70 0 R /Im42 49 0 R /Im46 53 0 R /Im53 60 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im49 56 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im62 69 0 R /Im69 76 0 R /Im224 235 0 R /Im225 236 0 R /Im226 237 0 R /Im227 238 0 R /Im228 239 0 R /Im229 240 0 R /Im228 239 0 R /Im72 79 0 R /Im329 356 0 R /Im330 357 0 R /Im85 92 0 R /Im331 358 0 R /Im79 86 0 R /Im82 89 0 R /Im332 359 0 R /Im175 184 0 R /Im176 185 0 R /Im83 90 0 R /Im177 186 0 R /Im176 185 0 R /Im173 182 0 R /Im176 185 0 R /Im79 86 0 R /Im80 87 0 R /Im179 188 0 R /Im50 57 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im65 72 0 R /Im42 49 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im66 73 0 R /Im62 69 0 R /Im54 61 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im45 52 0 R /Im62 69 0 R /Im68 75 0 R /Im66 73 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im68 75 0 R /Im61 68 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im63 70 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im72 79 0 R /Im94 101 0 R /Im51 58 0 R /Im48 55 0 R /Im42 49 0 R /Im63 70 0 R /Im51 58 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im111 118 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im69 76 0 R /Im45 52 0 R /Im62 69 0 R /Im61 68 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im42 49 0 R /Im54 61 0 R /Im64 71 0 R /Im55 62 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im46 53 0 R /Im53 60 0 R /Im51 58 0 R /Im55 62 0 R /Im47 54 0 R /Im45 52 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im47 54 0 R /Im46 53 0 R /Im43 50 0 R /Im61 68 0 R /Im43 50 0 R /Im49 56 0 R /Im43 50 0 R /Im68 75 0 R /Im66 73 0 R /Im66 73 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im48 55 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im70 77 0 R /Im64 71 0 R /Im116 123 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im62 69 0 R /Im45 52 0 R /Im333 360 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im58 65 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im51 58 0 R /Im112 119 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im181 190 0 R /Im54 61 0 R /Im46 53 0 R /Im71 78 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im64 71 0 R /Im62 69 0 R /Im69 76 0 R /Im56 63 0 R /Im53 60 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im44 51 0 R /Im42 49 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im75 82 0 R /Im51 58 0 R /Im66 73 0 R /Im53 60 0 R /Im42 49 0 R /Im55 62 0 R /Im53 60 0 R /Im64 71 0 R /Im42 49 0 R /Im47 54 0 R /Im67 74 0 R /Im54 61 0 R /Im62 69 0 R /Im75 82 0 R /Im53 60 0 R /Im51 58 0 R /Im55 62 0 R /Im66 73 0 R /Im51 58 0 R /Im62 69 0 R /Im68 75 0 R /Im45 52 0 R /Im55 62 0 R /Im51 58 0 R /Im70 77 0 R /Im44 51 0 R /Im44 51 0 R /Im62 69 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im43 50 0 R /Im51 58 0 R /Im89 96 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im44 51 0 R /Im46 53 0 R /Im43 50 0 R /Im51 58 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im65 72 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im75 82 0 R /Im62 69 0 R /Im45 52 0 R /Im67 74 0 R /Im46 53 0 R /Im43 50 0 R /Im43 50 0 R /Im68 75 0 R /Im65 72 0 R /Im65 72 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im49 56 0 R /Im46 53 0 R /Im54 61 0 R /Im65 72 0 R /Im42 49 0 R /Im45 52 0 R /Im44 51 0 R /Im49 56 0 R /Im70 77 0 R /Im64 71 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im60 67 0 R /Im62 69 0 R /Im61 68 0 R /Im65 72 0 R /Im68 75 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im58 65 0 R /Im47 54 0 R /Im46 53 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im59 66 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im52 59 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im53 60 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im43 50 0 R /Im97 104 0 R /Im58 65 0 R /Im168 177 0 R /Im114 121 0 R /Im52 59 0 R /Im106 113 0 R /Im49 56 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im111 118 0 R /Im54 61 0 R /Im42 49 0 R /Im54 61 0 R /Im47 54 0 R /Im46 53 0 R /Im42 49 0 R /Im53 60 0 R /Im43 50 0 R /Im68 75 0 R /Im65 72 0 R /Im65 72 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im69 76 0 R /Im45 52 0 R /Im62 69 0 R /Im61 68 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im52 59 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im53 60 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im43 50 0 R /Im114 121 0 R /Im45 52 0 R /Im66 73 0 R /Im42 49 0 R /Im54 61 0 R /Im46 53 0 R /Im76 83 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im58 65 0 R /Im47 54 0 R /Im46 53 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im46 53 0 R /Im111 118 0 R /Im47 54 0 R /Im59 66 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im97 104 0 R /Im52 59 0 R /Im94 101 0 R /Im114 121 0 R /Im106 113 0 R /Im97 104 0 R /Im55 62 0 R /Im62 69 0 R /Im43 50 0 R /Im43 50 0 R /Im46 53 0 R /Im51 58 0 R /Im45 52 0 R /Im47 54 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im101 108 0 R /Im99 106 0 R /Im170 179 0 R /Im71 78 0 R /Im170 179 0 R /Im170 179 0 R /Im71 78 0 R /Im105 112 0 R /Im113 120 0 R /Im101 108 0 R /Im106 113 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im48 55 0 R /Im42 49 0 R /Im43 50 0 R /Im70 77 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im69 76 0 R /Im45 52 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im75 82 0 R /Im62 69 0 R /Im45 52 0 R /Im67 74 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im58 65 0 R /Im334 361 0 R /Im59 66 0 R /Im168 177 0 R /Im52 59 0 R /Im335 362 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im74 81 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im97 104 0 R /Im58 65 0 R /Im334 361 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im59 66 0 R /Im51 58 0 R /Im53 60 0 R /Im46 53 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im168 177 0 R /Im54 61 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im68 75 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im67 74 0 R /Im52 59 0 R /Im62 69 0 R /Im75 82 0 R /Im53 60 0 R /Im51 58 0 R /Im55 62 0 R /Im66 73 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im51 58 0 R /Im335 362 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im44 51 0 R /Im43 50 0 R /Im106 113 0 R /Im49 56 0 R /Im65 72 0 R /Im42 49 0 R /Im45 52 0 R /Im44 51 0 R /Im62 69 0 R /Im69 76 0 R /Im42 49 0 R /Im74 81 0 R /Im62 69 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im51 58 0 R /Im112 119 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im62 69 0 R /Im69 76 0 R /Im168 177 0 R /Im57 64 0 R /Im41 48 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im181 190 0 R /Im54 61 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im64 71 0 R /Im62 69 0 R /Im69 76 0 R /Im274 291 0 R /Im46 53 0 R /Im61 68 0 R /Im70 77 0 R /Im68 75 0 R /Im45 52 0 R /Im66 73 0 R /Im97 104 0 R /Im65 72 0 R /Im45 52 0 R /Im62 69 0 R /Im74 81 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im47 54 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im110 117 0 R /Im101 108 0 R /Im99 106 0 R /Im110 117 0 R /Im110 117 0 R /Im105 112 0 R /Im106 113 0 R /Im72 79 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 355 0 R +>> +endobj +355 0 obj +<< +/Length 823 0 R +/Filter /FlateDecode +>> +stream +x]K¯,·qÞß_1�v�o¶ Y6|,â,=,9G²,ßÀp~}º§Y=ÃæW»µ°¤¡O5¬«UÅ¿~øÝí¯7òÝÍæÜ|OîöÝcÀø,oû§{¶¬0Ïonÿqûþ¹ý}ùß¿-ÿûóÿü¯ÛtûòÃ8,iîÓ,_Ïÿ~C"ûóëù{ʳ¼½ìHì0ðüòõ4 çÇk$µ÷),däíeÄÜóØ%#=4¶¯=Ñ(¿4»ÛðÅ6ðV Læu/#]$ö¯$äã$²¿[SíEyA#»û«½ØGºh<¾öÆöûF4áî_±(oÕI¯{ñé!ñüúÄþñ>Þ]ª°(#oÕ±¯{ñé¢ñøÚÛïî!½b± ¼UÎæW$ö.û×òñ4å{p¯{!#oÕͯ{ñ顱}íFùÝ ñTZeΧÒzøüºÏ.û×µÒ +!Þ§tPm>¿ê¬£âÜAõfá]£²vEìïÞ×Hl#/Xä$ê£�É@åýò~|û©+lHEëH +/8È̸tQxl>ýDÁ-£nÙÐ' +ëæösê"ñ�5O$äw_Ì+1Ö_ØGdΨÄ4=ß5; Ʊ¯±ÈÓEAPPØòC2ù+É'SÆ8U #=¶||Í<yb ´sÃá<þ.¿°e\>ÒGì=¶,Sîͼ¿ GlÃö -eäÉ!å"@û@-ˤ;G¬s:rÄc4¾r¥<¹2,_z|#¿{LY¦Ü9b;G<�wÚ û¼¨V;;¼ªÖi©ü~ÛxßLò÷òûÛ×ÿ¼}ó>M·?Ýÿúvi»üIXíÊç+#-ËKòûmÿ½*Öôø½ý½üî#}}i·bó¢]jÒõ6qòûmÿmÒv¢ÈßËï>Ò×ghöË,FDXÖmÜW׳J~¿í¿MúÜþ^~÷¾>Côj;/Äyx�æ!i³ë¿ßöß˺-/¿ûH_¡èÄÙn¶@Ülã fë'ìsäí9âüÉÀ¦ ~õñÃgÛ¹}üúóò6x?þñòûËxûøÝgÁåè^m«eàËÛÏ~ÿóÛÇ?Xþ¿À=F¾jFþØüØ|Ñ|ÓÜ/ÙhF>)sýæãfÌ¿WÑQùå(oûÀÙ. 2pvýµ¨õpóÕöúå«õ#lF~lF¾hF¾iFnÍÈßoÿ#0l¿ÜbØ®â1û_^ Gg¥BJÓ²Ï&?ExïÄÓçÈ0éÿ^Hg5ïW#ðñ¹7W°Þl§fä#¿0/¿uatÚÃùYãùYÓùYóyÐy4/COü¡ñGÐwF+x´c>ÿOÂÍË~±¨Tñ Ãt7ãïÑ.îO¼kQÛ§ù¡ykFþñY¬÷$Ûæ¿ù©¾~ê//öÈTñïOsúI¿¼©«qð×ñnýFbùçâ-#ÆÚ»þ¦Åj±þöÅw>û×ïL·_ÿåÃï^>`fÇõ|ï½á &øvþ qc ¿}Ѹæùïaðð-þSÆðlàâ6ðÎÂõ/~QVøÅË;¦E+MÅsKÁtüÀbL`ckà ZÁÔ§@ºÇ¼Â# +øê®\jøOÍüg¿Y,0»°.ÆÖ øînÜHj ßû¾ù-ÚÀH¬Û@UÀbÿ"li>®¿À/"öϱ*ÌzÈÀ´ +²Á�ø@ìñɨÒ/f´þ~-ÿm"aNþ?7ôÓTØb-!f <È3XÀ¢||`F`в&ô©ÙÅü>`0=dÐMóöE;-ù(ÃóÂUn1ì7 +÷w�ÇægÐ1Ôʰ&CÎ^!g9Òt[#F©ó/¾ò93¤¬ßÍÔþi:ÀA3¢Õêþx4û¯î_@ø·û§A.²f²¤R÷/¹kû +i÷O¿ì¯ÉßÈüÍñü-ZéüùÉ]?¿èþ+òç ·ÿxäá²~.ÙPk`ãÿ#ÿm6whÿÚÐÞ3÷P~ÀmX¿8÷ ÛÒß,ÆÏÊ�!#"ÜJÆmð@DT0^;|â Íò)P^6ÿê ó¯W¤gФ î�߬VI ÀGÞË à eþ¢�øÓ µª½ÆÔÛùÖöouâýÓ kÞ¼{�©NýU'¦8qúñNeÿÍ»Nî kø'®¿êDä?ÅÁ7úOÓ6"üù(M?¢?/ÿ6gj~ yÐÞÐÞÎ�æ»9là"¸,l~À `ç6E>E° Y0pH-Ýg"ù�bB;7f +pÞÞmÃvæí�çS¡£y±ÌÔ¬¡gn#.G<³F!5| 3]t`øp¦Kæ ºtí tËAÊ("uþ1 +§j<hR1ä&ö¯9Ètx8?H½áè§í¿R<౺~;ú%àI)¼ãÕ÷~Àþ¼!eÈ©ôè Cò«xrÍ?àBýÁD³ÅAúEr:D6§"A»#QÃÓS"1xzÿLFóó'4? 2eß}ʧ"A»#RÍÏG¬è¿þª!-H OË5â}þLͯßFqû§;2é$ÿõ»H_ÅßCþ£#AÖG? ²¢ëõÓöý[ÃÓöü©üýþG¿wV÷·aýºÞ=ì×~´ý·@âòï¯ûåÀyî·0b ÞæhÌ3Û¥FAÝ?y0=(ðÆS«WÏNðG²oÂèzûÀMª¿Hü³ÛEOÏø¤ß¤$Ó ý@÷(ëý4Ý÷ÈØoùý +ÿEÈþ|*Käøß4×Ðîîâf{=tK/¶oøGåßèÇÛÎ&°þTñ=;ëWùwÑüt2-·Xýù5ÛjOl¹ÅïñzvíÔá_Õv)Ù|=ú«ë·P¶CÁß!ýÍë?ëyzaýc=Z?¯lIæ;Àó¶gàôD,ÿk@Üþ©ü"Å?ZìÀBýÓÆTü3·ÿZ-©~á÷²pTùÑùÍÛÎFtöüt%°Ï¿ÊüÓ¿Úú×ø9ý#YDÒj +Ö?tìo _9¿KÔþi(køÈ?}²Æ¾ùÕØmö?×, Kü8þWé ýÁgádGJRç/°ûW²DÿTö[ä³H ý2{Ðùü'%vlþAúë_o§Kú×Cÿi Å]Ó¿Þ]Ó¿ôô,kúw½_Ñ¿>\Ó¿>^Ó¿>^Ó¿{ìý¤þ]c6ÿc?>ÇÍ«í`Å鸻~1Z� Ö�×À øÈ�PË�Zð/@þÃ9pÚü%f'wx£ÓDø8í¾ÍÅ{©Áé9"äÃS¾¡Å?¦Ð~rñoÝ»Á5Nçaâà\<t¶_s~\ÜVð¼ócÚ?þð7b|vè§Ï<Ú?<ácàþ@o$xùñÚÙ?uýi¢Ö¯Ã; +^¿8þ*ÿeÄ¿-ÿ©üOª5x(gO O_¼¯Á; =ùàÅIù ý¶Ëæ· à}em Ìÿò$~ Àü¯=~vø�(&Å:ØzGé`aºÄC6x�pDódAÆé Ú_/V°-=vòBºQ˰&¤Q/>CÜd9C$�tØH�é0t*�q+ùi�j�¡3/ uíß@ò çäG¥G*°¥^Çò¿@,î FÈ¿|�1"p þ fdñ6ø�»b»9\r Ü)úë0äñ êFä=lxtþ)e`í*Ö`þSH¤þP×ï9J ,úcã¿jýt�Eü÷é5wÄO4üs9þ*ø}M|%|S£ Í·ÖþF®¯kôiêáþÎòUPj*x{`þ2)8»~©õë½dýGzɤkëðïðú>Rðzú¡ðWù'0?c=Hê3'¾z'Ñö`×ô°|úÙöo õ{æøWõ¾&È¿¼÷U`ôùWk.ÉÏ:|R~öôÿëlþHÿ)M,øóÞXïÃü#é/þÔ½wt~ D<¿øôèÀúù뻵Ó_Êü éïô£õ7Á´É`*©×3â_Þ{_ÓoýG¸ùÕ&(¢?Ò÷.79u}ï²_ÈXd¾¶Þ½°ýÕõËõùÙõ»ùäù'Ñx~Òòã#õ²ÿ!Sû¯{ÿ¬þ8V ÷ôgÔ&6IðïõPøGJ¯:ü£§ß@ýG§¯;è? ¤ÿÌéýåIýÑkÓÓ_zôßãMpúü«ÌoýÌ7ôØþiøWMßphÿÒ7üYÿQJO9û[/=Eû?RzüoD%zÿóÑW þ¤åßKíÒIý»¦Ï0ü«®Föï?hÙ/×ègÿ©ø6~¡D¿6öwÅ]~)9ÓÞãfL[íÔO¿(WOôjÇ,µ{êü_ /Ê»H)¹ÓýãÓ_<¢_{u¨_üL±þ ûÑ}Lq>ðôÕÑÚÁ_^qü£¯Ò%ñ3Ùòi�¶gS·¾ü)Á£¼:ÀÔ¥KúÇãëÀÿtá®-µãúGàáþñÁøo`ýé/Æù/ÖÂ÷µðze ÷:ª Ûõö¯hc\¢ß.ÏU'v:üoKøº§Aôäé_«· ®'@ä9(GÔýÍI ,ðhýüå8 ¬¯Ðü(|¦UÍþÕ_È`$XW6³ñ Áy÷Ûqü«'¯@ùá{P¤ï¾ ÐߣpþÀ|êpMþ]¸&ÿ.éöhÕ_ì ®ì_B'x»jòMFóóÉÒ9íì î§kü/Õ_}ý£ Ðúù ¾tÏXõÇû-@µê/æç«¯,gÁ©ÕOШ~ÂúÿxÔðY@ßVª·zú_oÁ|Mÿùö'í-ùÍçí%µÓí¨MÄC,¿âX ÙQ¤nà]X¿ùª°°Z�4ÕVPò¿\ñ G5xiW3÷Ï�ÍÅþMþTò¯û±~¤ûQ±_ëÕD°2IÿJ�ÿô/çÀü|õû~ÅOOòOÜþ©øý5?róë-ä- ¼»¦_]Ú¿Ò=ä4þåú²¿,wð´ÿnf~jÙä/@³%}¢¯©/[{úKï^ä¨ùÕøDÀ»ü¯Ä,ä_Âx¶Ðõ¿üv"h]ý¥ÀK½¯·À¿v~¬é[Ìù¡w?Êèô%ì_éüè©ý×[èÏþü;råú²§¿ôô-¨ÿø'$f$¿¼ýîvù÷çÒ?°ý1Ðýh¦øWíün¶îwûïünÑþt~wHtâÖ¯Îïÿ÷Ï+°Ô@Ðþå!Ûøý\ÄptþÀU@N®Àº?_:@¤}Pôê©ùý$ÿ鬿't�ä?¡p<ÿ©�*ùKÐá;xÇáÿ^�3`ü=þ!Vß¾ÐÖ? è@þU¼¦À}为þþéñ§¯°}Fà@õv`ø�ì.9ðkþÕ LH~ùýt�8@ýçHþUaãQöü«|8ÿªç_._ëÙùÚ·Ò:³7½Ú=fB«èSºàùÖÛÆ_[¿Aóóã{ðƯ=u¯=à[½~>øSjû̯uBô>ÜÛ>ÿ)üZ?Ï?º>Ë?¥t¹¿þìIqàýËõw$ÕÇûï7öè¯Ö.AùxöÊÿȳ'ÿ½à£ôgOÿÚ>÷ßbýÁwòjWÅv=yúɳ'ãü+É_¥ÿôÚCòüä/GÊ?®=²¥v¨çk¬ßOê;sç¿<å?uüCß<ºÒ»¡wþêÉ[Üù£Æ>²¿øgEóÄnJítÿµä1$ÉO|qRÿ¹Àß*ý#·¿öä©®ý¥%OÁýç;e4?J¿WÇ3Üþ3´j¡üÒ?{ìk¡ãØà÷IýåIÿ¡÷låÙóÇÛkööù-³ÏÚ{ì«c¨µcñ_>äKç±>ÿ*ûÏÿýÜüjç¥òôÐÁ/Ç~3Âß$/q +èµ¾>kJëë¾}¿õõ¸#Á«L)�ÍÿÓ¿ü§_¥õÄÃ|æø*ß58ê]Ìòzð§(ÿ{>sh*ÂW£Ï7N2hþÖÙ[Û¾zýmÛ>uýrsZã?P;è)êë«'�_(?ùPãOÞÚÃ~ÿË?zí!ÃþjðOjëùWé9ú©Á»Áüí᫯â%ù·´ükµýô7w-àÍYHú)µ{ñÏÀ³àÍY1;úO >þèÐ_ÅêÌ5õ?ߺ<xþJð êw÷"â¿þèôçõMþR7?og(?|ã7 >uôêüNÿùÖÿkæVÏ?=áÄvìê¥rÑBýÉ;ÿ_¼öGK5xáÿ/Êßgõ¯ú׿. ùÈÜà÷Iûs 0ö§J¿ÈÙojð,"ûm øYÚö÷ô¯<î9(cýW+/gè}ñK¤þQ}ï ÒÖÿkã«+ö«ÇúYÎþO ÿKã«Òº ·8À·û_:o?�,ãË{åR;|ø@#BÁÔàÿ:| ±X}"ÊÐ!`-¾V>èÏ·m/PÔ0ùçÌ¥Åôڼܵ(ÕnõVÉ2R\Á5A|E¶âdĨ>оÿÒ«>j¸<Ä Åö³`R³-xoÐ +Ú8f»ò¢K+ zÈËDiÍ©6ZP&5ÂØn¢ Ðõ.4zKÇù±*#¥½ÏÓFÕ%H)do «çª|!FXÆ¢` &±òL±b«¶sÊJ=yMPOÐz¥ù"¢A² +mª®$èz¼j58.>Íö©J-òG˹6Å9Ò5ÍOäeþò`~í-Í¥?¾4Ro§æ2E}uÿEÒÛ?½v¢è¯ÝÇJ1íºÿgjáå5Àzþvxí?ßXÞ"èÓ_+Eø´#¥_å?,þ¼üÍó¥ý·¥Á/&,½t{ü£æ|³ò#o ôõö� ÔµbPKíóH0ÅL�ÏÇ^þgõçÚËÿ +ÿJ/ÿÿª!Ù÷ϧ+ù4½óGÏü˧_ÒmHP sÉüXIóGòßÌ«äÓÕÒË¿þhùtý£DáùG4h¤è¯$Í%ùfh=þïÕÂæÈÏ*ýb¾Æ?®Ç?z-îL_-æÎ[>ÑAÿ·~üÔ¼e+1M1ìK;Î6ÀüÄàj1¡A8ÐÍËÀ ¤¨/@Þ!Îß©ú];$!ïìäýYRúÐü°^ËÈC¹<ÎP3Ò@ü{ê>O`øv>#|Ó`ê¥À°µ@õ>dÁ $ôa¾Ô ÍÏWô<[ËGïDJ�¯çý1+pä~(ÝÀK/ÝÕ x¿TùÊ)Ëæ×ð¼û-æ[½}|//qÿ:Û¯f´9ö¿Ñ6. úñå)ÌÞþ©ô+å =úéq¾-gÐáÚ?ºH2êzû¯÷bÿèóÏäüÊú¥öOï÷ï¡úiøOÍhÌå/á'OͯfÔÎ[Fm¿Ú5£¨Üäõæ×Ã_þ#ᯰëß3lä)Í>¼ög<©Ìþ©uîüIFaÿõ@æJøsþªû8þ/#ðù°ßºö>L¬oÅxñ§/¿öð[þzF ;I¿Â¿>ïð¯ê¾Oðü$®ß÷mõÙoÕ§$ÅþêØZ9³È~3>�%%°g�èñ3d�ññ_çÑü(%Kù³¬Ä¿ �Óo»� X>%R¼çÎþ©ôÈAôSÂG©OÂëk.Î <f9]ÒàZ0ÜtN¹ 4ÓMéÒ ²Çߺû×>ç3Û-'pÍþ¨ ðÍÌìLYÐêþ9ÿÀþ98?¡ñ7F´)D?C' 1<5DÈ|ü)¢#t )4Aîh²>'pI�3Ô|7»Í�'µÉ� j2ÝÒ @¯êØ~ä;UÏa®¶¬ÙèçÜK;6) À×°jð~j û+pþþª¼Es�§¯¯Lé%|ç㥢î�??,§×âGzMÐ Ýç ߸<¾¦oêÄï]¿jñ7D¿vhþ÷p}å- @ñþ5!þç_S-ízðjúXizØ¿Xëÿª¯±n +ú´sËýÕøÑwù=ó5FÞ$ý´XnÿõØHʯòî?Îé?ë2µ~5}HÒ?kx`ý*û'ñ«Zòo9N~ôøâ¾¢ÒF¤ZùQé/é]þÕÚ¹qúWÝÉïð¯*¿9Qò«·sCç?ßNS*b{ôS½ï í´¢Ó¤,»ÿJøGâ_'éïÒíù¯FJÞùkç·¼ Ù£¿:@ö×@Egô§ãÇR:n?Kú¥ìw½¢íßr^Uð|;Hiw8¿xþ9þ×+Rý>Ð~Búwà)sÖzF¿®ÐßÎ~SK!íöâAÐo±ÈñSô,Ó.UàÌò©gç{!KíÁ¢ÄϤ¾!~þ@ò§ðW/¿%õ°Oþ°ÜüªóSÚÁàéÃcm'ÕÎß +êüÈåkÏ·Ã0røTð#í"EÕùZãYOÞü7ð£øGOþ°¼ÞN +íj'¦µ²üêðW ñï@;Rèí¤8ùQw9<õ§8¿ZãWK¾YßÇáSí?ßNDz÷ø_O¾@ûÏoó.W'gùGî^küÚ1Ùkü#Å?*ýÒDÑOOþ@ç|`³èónðDO¾àäGM>þí` þhåOM0èüèÅêÊKî=¦/R+ðâ½à³£Ôõ{x�òÞ§G +÷\pÓ½g$ÀôÜþ«É/ Áóý\Bü@ò>t 5w`íÇôÈXsöÃnO´Ü nÿÕÒ )pþ%P/Ñó®¤å^ y¨xÏ) ÒË úCzܨæxè?;âþᳯ}øóÍèë�+ôrà´Ô hÀ´ürÀøÔ/ѯ~tòè÷I\Ò;ëËCz½ù5ý³¦n\1 å!½¾ùþCz=ú÷ÒëPüHéTñ£FíÉ®Àùð DêÙië±<dq�§G3¡é9Ùy§Ó¾èþÎüzåU¾´}{åÔÙýshþÌïÐüôÍáúà>úæ{o¼SÏÏg.HðªÃýzðÊùQåÖË<#üÌ¥Òn-]zÞ3^>0Ãþkôjï%ûÇÊl i'; 0#ñO,ÂVzwtDXݵy» fj»¿i�S®¦÷˧ÔëwV®ßE4x °4$?«öî=%¤¿fàAñº?´à@þDR8PÿáJ+A-F[ÐVw; ®?qëWó?2:Z-®ÖoIöGêõGøº<gW0BwåE¼ò@�"�ZQtÔY4?ßß9D¾ùà +d pPñÍ\D +|$ÿéjG mïù'`Y+R«ÞAVôÀþÍÈ(X+^Ë¿0m{Ï/Ú +öÿyòüò¹¼ìmºd{ißÕÑÿ é=iCªÐæßSÔ4Z.!$x�ò£àt#éúSiF~°`ùõgÎÓ«"¥@ÔõK×IÊCÆ_Aø)þ +b/>êÀj<ÉtÖ� SZzɯmXÏD Ë6ò0Ö¨ù\(àtü¹DÀjðü¡R|tçó&4ÿ@óægâÒ¼ÈxØzLK )òéÕG¹l@8ÿ6.RTc8¥ÿ>ÍsÔæNà:Àó ÎOÇ¿M±~ðDü{ ¢>Ü»105fD�¾{£)7(5¶ÝõXúØ/ïİØÃÒ¿`¸MìÕ6O²H +ùWI¥NO +uø@Á÷zè=E¤N_i5LùKVOUú=ú©üÑ!Î׬5HmMÈù+lq]E_Á1Ô"ð/oÂÎQô.®�.:«6y¯\C`QèÈ×V ©\gV°¥%HCÊÝñ@&0à,×>9.RõðK£4¹ÚØmÍÜj*ðÅÎCA¤«\iEÛ;ÎÕ`T$½°TÄ|1Nâ̱^/鳿 +oa5×t®+æàÚúÊAâf¤ZÉLÈào<ôGÆ[Y÷÷O fYÎPiáÏ73Xdä ã?5Qïù³j:_ù=WLç#ëÎi±,sRÔtÿ<%ôF§ÌüªéѵbÖÒ¹2É?ÿÃì Ô@k¤åÎt¬³ñÒHÇäs¸K)ê/D³óo«t¬¿È3å"õ=_VÚ¨àé<cÐü<ïJ#ìÞö©µxâÄVðµx¥ð?Ê'´³ÿz#övM@û7Ш<íÞç?5Ú¿tºæH§Kh~Î }ÍÆzüû@øö×îl¬z~ç¨dªÇÌÂÀöÝXª&Õt0=+£Lx$Ð9:C©ÖD§¢rhârh8ØöêGrÓÿÄCzH�>UZ±ÖzÙ+Éh!Q"¬2°ÉÐt*#ÒÆùJ2VWÕl¦x �_ÐWÞW?«¥óY%¸Ç¡º¤usöøÇ¨&¨ÄS3Ôüz6'Áj6 0ÝÏ·z:\ @@ ÔÒO}LÍCþåéW²±zôÓ³ÁfÊTë)`ÅTÖ_ê {ë×`¡Á.!#Áúkj�Zá|Ad¬`iÇÓ;ÕtÀ1�ÿÇ +Ïf1ÓÉ#PÚñ@Ïf1èÈf±Ü¦Â;$@LA¦ÀC/V@kA$³zí?.ÙdBÿÞk¾J1@/¾·Üz6¸Árÿh^´Oè�âÛJ/é³ +ØCjà-»É?ß0Lý5üÃéÇT~j6á¢HþA+]åô fßXxrÿã©ø³êuÐ×chåô©à O3LÅ·ð%i¦\/xªÊvl5*¥£I +jQ¸v` +g®QPÂ:Ô£pÀÂÕð´ý¶>Çía¬¹!~(¡Ì/çGgýjF¤8à5þôù/½Ïè,oô%X ÁHFiÿT¾täék0í9¸Ò zG.n~5fò%ùBü¾üjðp~úÜ:È|�Æ#þáC±¥(»¡(-áÄ=©@mDóó +Ô&dð +Ô&´èC¢gݨÚ7l@048?Î[�?Ãh ¡5Ô�|K&l X¥!õ/t +Ò´áø(ÞÞBpbæs¯Ù8hðERÑØ?Bñk4.&$|-q*PO"CÌ?Hã2bÀ64!ø~9'@}Ñp2zÁOhÿ£8 àC +̶6¤²Ðo fÑX¤¦fu ÔbPÈäð2à@Eä´3ÐûO¢(^äÄj½H¦AÒÈÄzß Ô»zq6cm ìi`¤±89#V bÏh~ÞY`ÌüjkB¯G®^=B Âtñõr:JÆ/Q0�Ï3¶<RVĪfxÔT¦kèÉ<ÿ7È#ÜãX% ÌÄ_a8Vµ¯ø¿úøá³ÏÍÍÜ>~½Ør+ømÅ¿üÇÇïÖ´üÍ·ýû_noß~ñÕ÷ûê·ßþúóÛ?þåËÿýâ«/oÿýÛoÿéÛ··Û~öÅ~~ûü~ûý·_ýé«?Ý~qûæÓ§~ùÙgÿûßï¾ùöo÷ï¿úôÙL_ÿøÇïÿç³þ¶ÂÝ¿ùôÝÛÏoÿüá7ìþXã<Ç +endstream +endobj +356 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 824 0 R +/Name /Im329 +/Width 27 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]Î1 +� á¿8tô� ºxs²ÜÄçhOÒÁÑALcA²¼9¸æLâêÕµKä}gþU*Ô-äó6ÇhRµTns/ºuºî°úgô,ôÍdÔÚ´Â{¾?¢?J +endstream +endobj +357 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 825 0 R +/Name /Im330 +/Width 46 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]ͱ Â0EÑg¹ø]¼�Rj4à�Ã6#R¬áÖeÈÿCnqÚÈÚnÎö¹ËÙ´6¹ï¦[ª9~¦ùj£.f�uÖ!ý¼ e3ª,ÿÞѯfPÎ2ä« Õô^%X¸®ñöJÜ +endstream +endobj +358 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 826 0 R +/Name /Im331 +/Width 30 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿá?óí 0;ÏÄ6@\Äø>`à|ÿyÿ{ ´¿åÿ`à?øüâz(¶oà? �ÿÿ©ÿÃrZu+ØDù +endstream +endobj +359 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 827 0 R +/Name /Im332 +/Width 46 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUű à �À·\|ÀHé(,±ËT92 £ü/È#á(nîemL 3ÊÅsÌ0)ÇeeÝ�êªk·Í;@p§3ßÁôÙ? 3�Ë%%Jw1b>ðy}ÔÃ=É +endstream +endobj +360 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 828 0 R +/Name /Im333 +/Width 19 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãÿÿÿÿ;JP ÃúaÃPPÃPðAþÿa úyâ�â$ +endstream +endobj +361 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 829 0 R +/Name /Im334 +/Width 33 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÄÁ 0Ðz¡è"®â$Ú1<³tÐc øNà;<ïêÙ£±Â ;´1i(d +;l`[¦èfó[Tþëô¯%åg}¬z%Ì +endstream +endobj +362 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 830 0 R +/Name /Im335 +/Width 31 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x%ű 0@Ño¹ !¸Mª2%UX Aw0G¹\º°¡¯§¯M«vEe"ÔêÚûÇ«ä[²®ð[*ðè^óÛþ¼²X°dÑR¾úý^Dô|ÿ>Á)Ö +endstream +endobj +363 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 480 0 R >> /XObject << /Im325 348 0 R /Im176 185 0 R /Im218 229 0 R /Im176 185 0 R /Im81 88 0 R /Im176 185 0 R /Im79 86 0 R /Im85 92 0 R /Im176 185 0 R /Im179 188 0 R /Im336 365 0 R /Im99 106 0 R /Im337 366 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im58 65 0 R /Im72 79 0 R /Im98 105 0 R /Im72 79 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im52 59 0 R /Im51 58 0 R /Im75 82 0 R /Im70 77 0 R /Im62 69 0 R /Im45 52 0 R /Im54 61 0 R /Im41 48 0 R /Im72 79 0 R /Im41 48 0 R /Im72 79 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im102 109 0 R /Im102 109 0 R /Im106 113 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im116 123 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im47 54 0 R /Im46 53 0 R /Im65 72 0 R /Im42 49 0 R /Im53 60 0 R /Im60 67 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im46 53 0 R /Im54 61 0 R /Im68 75 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im109 116 0 R /Im46 53 0 R /Im53 60 0 R /Im53 60 0 R /Im51 58 0 R /Im45 52 0 R /Im88 95 0 R /Im51 58 0 R /Im68 75 0 R /Im45 52 0 R /Im46 53 0 R /Im43 50 0 R /Im71 78 0 R /Im44 51 0 R /Im46 53 0 R /Im47 54 0 R /Im72 79 0 R /Im338 367 0 R /Im339 368 0 R /Im340 369 0 R /Im340 369 0 R /Im341 370 0 R /Im342 371 0 R /Im343 372 0 R /Im341 370 0 R /Im344 373 0 R /Im344 373 0 R /Im345 374 0 R /Im346 375 0 R /Im347 376 0 R /Im342 371 0 R /Im348 377 0 R /Im344 373 0 R /Im349 378 0 R /Im350 379 0 R /Im351 380 0 R /Im350 379 0 R /Im344 373 0 R /Im352 381 0 R /Im350 379 0 R /Im353 382 0 R /Im351 380 0 R /Im348 377 0 R /Im352 381 0 R /Im350 379 0 R /Im350 379 0 R /Im354 383 0 R /Im355 384 0 R /Im344 373 0 R /Im356 385 0 R /Im357 386 0 R /Im49 56 0 R /Im65 72 0 R /Im65 72 0 R /Im72 79 0 R /Im171 180 0 R /Im101 108 0 R /Im101 108 0 R /Im358 387 0 R /Im171 180 0 R /Im102 109 0 R /Im105 112 0 R /Im72 79 0 R /Im56 63 0 R /Im60 67 0 R /Im41 48 0 R /Im49 56 0 R /Im58 65 0 R /Im51 58 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im53 60 0 R /Im51 58 0 R /Im72 79 0 R /Im336 365 0 R /Im170 179 0 R /Im337 366 0 R /Im57 64 0 R /Im51 58 0 R /Im45 52 0 R /Im53 60 0 R /Im46 53 0 R /Im54 61 0 R /Im51 58 0 R /Im45 52 0 R /Im88 95 0 R /Im72 79 0 R /Im333 360 0 R /Im72 79 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im73 80 0 R /Im70 77 0 R /Im51 58 0 R /Im53 60 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im60 67 0 R /Im72 79 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im100 107 0 R /Im106 113 0 R /Im72 79 0 R /Im116 123 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im54 61 0 R /Im109 116 0 R /Im54 61 0 R /Im62 69 0 R /Im75 82 0 R /Im53 60 0 R /Im51 58 0 R /Im55 62 0 R /Im66 73 0 R /Im51 58 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im58 65 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im167 176 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im58 65 0 R /Im181 190 0 R /Im116 123 0 R /Im59 66 0 R /Im73 80 0 R /Im41 48 0 R /Im56 63 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im46 53 0 R /Im44 51 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im68 75 0 R /Im45 52 0 R /Im51 58 0 R /Im72 79 0 R /Im341 370 0 R /Im351 380 0 R /Im359 388 0 R /Im355 384 0 R /Im360 389 0 R /Im352 381 0 R /Im355 384 0 R /Im346 375 0 R /Im347 376 0 R /Im361 390 0 R /Im344 373 0 R /Im359 388 0 R /Im350 379 0 R /Im347 376 0 R /Im347 376 0 R /Im355 384 0 R /Im356 385 0 R /Im350 379 0 R /Im344 373 0 R /Im352 381 0 R /Im350 379 0 R /Im49 56 0 R /Im246 259 0 R /Im62 69 0 R /Im53 60 0 R /Im72 79 0 R /Im105 112 0 R /Im104 111 0 R /Im49 56 0 R /Im65 72 0 R /Im65 72 0 R /Im72 79 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im358 387 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im72 79 0 R /Im336 365 0 R /Im105 112 0 R /Im337 366 0 R /Im73 80 0 R /Im70 77 0 R /Im51 58 0 R /Im53 60 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im60 67 0 R /Im72 79 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im72 79 0 R /Im341 370 0 R /Im347 376 0 R /Im347 376 0 R /Im359 388 0 R /Im362 391 0 R /Im350 379 0 R /Im363 392 0 R /Im355 384 0 R /Im356 385 0 R /Im362 391 0 R /Im359 388 0 R /Im343 372 0 R /Im348 377 0 R /Im364 393 0 R /Im350 379 0 R /Im357 386 0 R /Im365 394 0 R /Im341 370 0 R /Im366 395 0 R /Im367 396 0 R /Im368 397 0 R /Im361 390 0 R /Im341 370 0 R /Im351 380 0 R /Im352 381 0 R /Im362 391 0 R /Im355 384 0 R /Im359 388 0 R /Im350 379 0 R /Im352 381 0 R /Im359 388 0 R /Im345 374 0 R /Im351 380 0 R /Im350 379 0 R /Im349 378 0 R /Im348 377 0 R /Im351 380 0 R /Im342 371 0 R /Im362 391 0 R /Im350 379 0 R /Im357 386 0 R /Im357 386 0 R /Im72 79 0 R /Im116 123 0 R /Im48 55 0 R /Im72 79 0 R /Im169 178 0 R /Im72 79 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im49 56 0 R /Im60 67 0 R /Im42 49 0 R /Im45 52 0 R /Im54 61 0 R /Im51 58 0 R /Im66 73 0 R /Im46 53 0 R /Im51 58 0 R /Im71 78 0 R /Im41 48 0 R /Im51 58 0 R /Im53 60 0 R /Im53 60 0 R /Im62 69 0 R /Im54 61 0 R /Im181 190 0 R /Im54 61 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im64 71 0 R /Im49 56 0 R /Im116 123 0 R /Im46 53 0 R /Im44 51 0 R /Im44 51 0 R /Im43 50 0 R /Im70 77 0 R /Im68 75 0 R /Im45 52 0 R /Im66 73 0 R /Im48 55 0 R /Im72 79 0 R /Im336 365 0 R /Im171 180 0 R /Im337 366 0 R /Im98 105 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im70 77 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im59 66 0 R /Im72 79 0 R /Im169 178 0 R /Im72 79 0 R /Im49 56 0 R /Im73 80 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im53 60 0 R /Im42 49 0 R /Im67 74 0 R /Im51 58 0 R /Im169 178 0 R /Im72 79 0 R /Im73 80 0 R /Im72 79 0 R /Im49 56 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im60 67 0 R /Im45 52 0 R /Im62 69 0 R /Im47 54 0 R /Im67 74 0 R /Im51 58 0 R /Im45 52 0 R /Im58 65 0 R /Im72 79 0 R /Im169 178 0 R /Im72 79 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im102 109 0 R /Im106 113 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im98 105 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im70 77 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im60 67 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im116 123 0 R /Im45 52 0 R /Im62 69 0 R /Im66 73 0 R /Im45 52 0 R /Im42 49 0 R /Im61 68 0 R /Im72 79 0 R /Im353 382 0 R /Im351 380 0 R /Im348 377 0 R /Im352 381 0 R /Im369 398 0 R /Im341 370 0 R /Im370 399 0 R /Im361 390 0 R /Im353 382 0 R /Im368 397 0 R /Im370 399 0 R /Im346 375 0 R /Im347 376 0 R /Im347 376 0 R /Im371 400 0 R /Im348 377 0 R /Im355 384 0 R /Im344 373 0 R /Im359 388 0 R /Im342 371 0 R /Im348 377 0 R /Im372 401 0 R /Im373 402 0 R /Im345 374 0 R /Im359 388 0 R /Im350 379 0 R /Im351 380 0 R /Im342 371 0 R /Im348 377 0 R /Im344 373 0 R /Im349 378 0 R /Im350 379 0 R /Im351 380 0 R /Im350 379 0 R /Im344 373 0 R /Im352 381 0 R /Im350 379 0 R /Im374 403 0 R /Im338 367 0 R /Im49 56 0 R /Im65 72 0 R /Im65 72 0 R /Im72 79 0 R /Im104 111 0 R /Im113 120 0 R /Im99 106 0 R /Im358 387 0 R /Im104 111 0 R /Im99 106 0 R /Im113 120 0 R /Im72 79 0 R /Im336 365 0 R /Im110 117 0 R /Im337 366 0 R /Im88 95 0 R /Im64 71 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im59 66 0 R /Im72 79 0 R /Im41 48 0 R /Im72 79 0 R /Im49 56 0 R /Im98 105 0 R /Im62 69 0 R /Im75 82 0 R /Im51 58 0 R /Im45 52 0 R /Im56 63 0 R /Im72 79 0 R /Im73 80 0 R /Im72 79 0 R /Im49 56 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im52 59 0 R /Im51 58 0 R /Im53 60 0 R /Im43 50 0 R /Im62 69 0 R /Im54 61 0 R /Im88 95 0 R /Im72 79 0 R /Im274 291 0 R /Im72 79 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im113 120 0 R /Im106 113 0 R /Im72 79 0 R /Im60 67 0 R /Im45 52 0 R /Im42 49 0 R /Im64 71 0 R /Im57 64 0 R /Im53 60 0 R /Im46 53 0 R /Im44 51 0 R /Im76 83 0 R /Im72 79 0 R /Im342 371 0 R /Im348 377 0 R /Im372 401 0 R /Im373 402 0 R /Im345 374 0 R /Im359 388 0 R /Im350 379 0 R /Im351 380 0 R /Im357 386 0 R /Im375 404 0 R /Im342 371 0 R /Im362 391 0 R /Im350 379 0 R /Im357 386 0 R /Im357 386 0 R /Im375 404 0 R /Im346 375 0 R /Im344 373 0 R /Im354 383 0 R /Im342 371 0 R /Im348 377 0 R /Im356 385 0 R /Im344 373 0 R /Im355 384 0 R /Im359 388 0 R /Im355 384 0 R /Im348 377 0 R /Im344 373 0 R /Im97 104 0 R /Im51 58 0 R /Im55 62 0 R /Im43 50 0 R /Im72 79 0 R /Im50 57 0 R /Im72 79 0 R /Im56 63 0 R /Im72 79 0 R /Im41 48 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im53 60 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im333 360 0 R /Im72 79 0 R /Im58 65 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im51 58 0 R /Im112 119 0 R /Im51 58 0 R /Im45 52 0 R /Im106 113 0 R /Im49 56 0 R /Im65 72 0 R /Im65 72 0 R /Im72 79 0 R /Im99 106 0 R /Im99 106 0 R /Im99 106 0 R /Im358 387 0 R /Im99 106 0 R /Im105 112 0 R /Im170 179 0 R /Im72 79 0 R /Im58 65 0 R /Im65 72 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im51 58 0 R /Im45 52 0 R /Im71 78 0 R /Im246 259 0 R /Im51 58 0 R /Im45 52 0 R /Im53 60 0 R /Im42 49 0 R /Im66 73 0 R /Im49 56 0 R /Im52 59 0 R /Im51 58 0 R /Im75 82 0 R /Im334 361 0 R /Im62 69 0 R /Im45 52 0 R /Im67 74 0 R /Im72 79 0 R /Im336 365 0 R /Im101 108 0 R /Im337 366 0 R /Im109 116 0 R /Im54 61 0 R /Im68 75 0 R /Im44 51 0 R /Im48 55 0 R /Im169 178 0 R /Im72 79 0 R /Im73 80 0 R /Im72 79 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im41 48 0 R /Im62 69 0 R /Im62 69 0 R /Im45 52 0 R /Im51 58 0 R /Im59 66 0 R /Im72 79 0 R /Im94 101 0 R /Im72 79 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im102 109 0 R /Im110 117 0 R /Im106 113 0 R /Im72 79 0 R /Im56 63 0 R /Im54 61 0 R /Im56 63 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im64 71 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im62 69 0 R /Im69 76 0 R /Im56 63 0 R /Im53 60 0 R /Im65 72 0 R /Im48 55 0 R /Im42 49 0 R /Im71 78 0 R /Im57 64 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im116 123 0 R /Im45 52 0 R /Im68 75 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im72 79 0 R /Im341 370 0 R /Im351 380 0 R /Im359 388 0 R /Im355 384 0 R /Im360 389 0 R /Im352 381 0 R /Im355 384 0 R /Im346 375 0 R /Im347 376 0 R /Im361 390 0 R /Im344 373 0 R /Im359 388 0 R /Im350 379 0 R /Im347 376 0 R /Im347 376 0 R /Im355 384 0 R /Im356 385 0 R /Im350 379 0 R /Im344 373 0 R /Im352 381 0 R /Im350 379 0 R /Im49 56 0 R /Im246 259 0 R /Im62 69 0 R /Im53 60 0 R /Im72 79 0 R /Im101 108 0 R /Im49 56 0 R /Im65 72 0 R /Im65 72 0 R /Im72 79 0 R /Im170 179 0 R /Im100 107 0 R /Im105 112 0 R /Im358 387 0 R /Im105 112 0 R /Im170 179 0 R /Im101 108 0 R /Im72 79 0 R /Im336 365 0 R /Im102 109 0 R /Im337 366 0 R /Im109 116 0 R /Im54 61 0 R /Im68 75 0 R /Im44 51 0 R /Im48 55 0 R /Im169 178 0 R /Im72 79 0 R /Im73 80 0 R /Im72 79 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im102 109 0 R /Im105 112 0 R /Im106 113 0 R /Im72 79 0 R /Im376 405 0 R /Im362 391 0 R /Im350 379 0 R /Im341 370 0 R /Im351 380 0 R /Im359 388 0 R /Im348 377 0 R /Im349 378 0 R /Im342 371 0 R /Im348 377 0 R /Im372 401 0 R /Im373 402 0 R /Im345 374 0 R /Im359 388 0 R /Im350 379 0 R /Im351 380 0 R /Im353 382 0 R /Im351 380 0 R /Im348 377 0 R /Im356 385 0 R /Im351 380 0 R /Im346 375 0 R /Im372 401 0 R /Im372 401 0 R /Im355 384 0 R /Im344 373 0 R /Im356 385 0 R /Im369 398 0 R /Im366 395 0 R /Im348 377 0 R /Im347 376 0 R /Im345 374 0 R /Im372 401 0 R /Im350 379 0 R /Im374 403 0 R /Im365 394 0 R /Im368 397 0 R /Im348 377 0 R /Im351 380 0 R /Im359 388 0 R /Im355 384 0 R /Im344 373 0 R /Im356 385 0 R /Im346 375 0 R /Im344 373 0 R /Im354 383 0 R /Im368 397 0 R /Im350 379 0 R /Im346 375 0 R /Im351 380 0 R /Im352 381 0 R /Im362 391 0 R /Im355 384 0 R /Im344 373 0 R /Im356 385 0 R /Im72 79 0 R /Im56 63 0 R /Im55 62 0 R /Im55 62 0 R /Im46 53 0 R /Im43 50 0 R /Im62 69 0 R /Im54 61 0 R /Im71 78 0 R /Im94 101 0 R /Im51 58 0 R /Im43 50 0 R /Im53 60 0 R /Im51 58 0 R /Im64 71 0 R /Im116 123 0 R /Im68 75 0 R /Im70 77 0 R /Im53 60 0 R /Im46 53 0 R /Im43 50 0 R /Im48 55 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im60 67 0 R /Im62 69 0 R /Im61 68 0 R /Im65 72 0 R /Im42 49 0 R /Im54 61 0 R /Im64 71 0 R /Im49 56 0 R /Im59 66 0 R /Im51 58 0 R /Im42 49 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im49 56 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im43 50 0 R /Im42 49 0 R /Im47 54 0 R /Im48 55 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im44 51 0 R /Im44 51 0 R /Im43 50 0 R /Im72 79 0 R /Im336 365 0 R /Im104 111 0 R /Im337 366 0 R /Im109 116 0 R /Im62 69 0 R /Im65 72 0 R /Im51 58 0 R /Im47 54 0 R /Im169 178 0 R /Im72 79 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im57 64 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im62 69 0 R /Im168 177 0 R /Im72 79 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im170 179 0 R /Im106 113 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im57 64 0 R /Im45 52 0 R /Im42 49 0 R /Im44 51 0 R /Im67 74 0 R /Im62 69 0 R /Im71 78 0 R /Im109 116 0 R /Im62 69 0 R /Im65 72 0 R /Im51 58 0 R /Im47 54 0 R /Im73 80 0 R /Im89 96 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im167 176 0 R /Im42 49 0 R /Im60 67 0 R /Im62 69 0 R /Im61 68 0 R /Im65 72 0 R /Im42 49 0 R /Im45 52 0 R /Im46 53 0 R /Im43 50 0 R /Im62 69 0 R /Im54 61 0 R /Im62 69 0 R /Im69 76 0 R /Im88 95 0 R /Im68 75 0 R /Im61 68 0 R /Im42 49 0 R /Im54 61 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im60 67 0 R /Im62 69 0 R /Im61 68 0 R /Im65 72 0 R /Im68 75 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im116 123 0 R /Im51 58 0 R /Im45 52 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im42 49 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im60 67 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im72 79 0 R /Im341 370 0 R /Im354 383 0 R /Im364 393 0 R /Im346 375 0 R /Im344 373 0 R /Im352 381 0 R /Im350 379 0 R /Im357 386 0 R /Im355 384 0 R /Im344 373 0 R /Im342 371 0 R /Im348 377 0 R /Im372 401 0 R /Im373 402 0 R /Im345 374 0 R /Im359 388 0 R /Im350 379 0 R /Im351 380 0 R /Im342 371 0 R /Im362 391 0 R /Im350 379 0 R /Im357 386 0 R /Im357 386 0 R /Im374 403 0 R /Im97 104 0 R /Im51 58 0 R /Im55 62 0 R /Im72 79 0 R /Im41 48 0 R /Im72 79 0 R /Im59 66 0 R /Im72 79 0 R /Im57 64 0 R /Im72 79 0 R /Im60 67 0 R /Im53 60 0 R /Im42 49 0 R /Im45 52 0 R /Im67 74 0 R /Im51 58 0 R /Im106 113 0 R /Im49 56 0 R /Im65 72 0 R /Im65 72 0 R /Im72 79 0 R /Im110 117 0 R /Im102 109 0 R /Im358 387 0 R /Im102 109 0 R /Im170 179 0 R /Im72 79 0 R /Im116 123 0 R /Im51 58 0 R /Im45 52 0 R /Im66 73 0 R /Im42 49 0 R /Im61 68 0 R /Im62 69 0 R /Im54 61 0 R /Im116 123 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im49 56 0 R /Im114 121 0 R /Im89 96 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im55 62 0 R /Im72 79 0 R /Im336 365 0 R /Im100 107 0 R /Im337 366 0 R /Im274 291 0 R /Im42 49 0 R /Im54 61 0 R /Im66 73 0 R /Im109 116 0 R /Im72 79 0 R /Im333 360 0 R /Im72 79 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im58 65 0 R /Im61 68 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im94 101 0 R /Im72 79 0 R /Im169 178 0 R /Im72 79 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im105 112 0 R /Im106 113 0 R /Im72 79 0 R /Im56 63 0 R /Im50 57 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im58 65 0 R /Im68 75 0 R /Im46 53 0 R /Im44 51 0 R /Im51 58 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im60 67 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im116 123 0 R /Im45 52 0 R /Im62 69 0 R /Im66 73 0 R /Im45 52 0 R /Im42 49 0 R /Im61 68 0 R /Im43 50 0 R /Im72 79 0 R /Im361 390 0 R /Im342 371 0 R /Im342 371 0 R /Im341 370 0 R /Im371 400 0 R /Im348 377 0 R /Im345 374 0 R /Im351 380 0 R /Im344 373 0 R /Im346 375 0 R /Im347 376 0 R /Im49 56 0 R /Im246 259 0 R /Im62 69 0 R /Im53 60 0 R /Im72 79 0 R /Im99 106 0 R /Im101 108 0 R /Im49 56 0 R /Im52 59 0 R /Im62 69 0 R /Im72 79 0 R /Im105 112 0 R /Im49 56 0 R /Im65 72 0 R /Im65 72 0 R /Im72 79 0 R /Im99 106 0 R /Im110 117 0 R /Im170 179 0 R /Im358 387 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im72 79 0 R /Im336 365 0 R /Im99 106 0 R /Im113 120 0 R /Im337 366 0 R /Im41 48 0 R /Im42 49 0 R /Im45 52 0 R /Im43 50 0 R /Im53 60 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im50 57 0 R /Im72 79 0 R /Im56 63 0 R /Im72 79 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im101 108 0 R /Im106 113 0 R /Im72 79 0 R /Im56 63 0 R /Im59 66 0 R /Im51 58 0 R /Im63 70 0 R /Im46 53 0 R /Im51 58 0 R /Im75 82 0 R /Im62 69 0 R /Im69 76 0 R /Im98 105 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im71 78 0 R /Im50 57 0 R /Im45 52 0 R /Im51 58 0 R /Im51 58 0 R /Im116 123 0 R /Im45 52 0 R /Im68 75 0 R /Im54 61 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im72 79 0 R /Im361 390 0 R /Im342 371 0 R /Im342 371 0 R /Im341 370 0 R /Im371 400 0 R /Im348 377 0 R /Im345 374 0 R /Im351 380 0 R /Im344 373 0 R /Im346 375 0 R /Im347 376 0 R /Im49 56 0 R /Im246 259 0 R /Im62 69 0 R /Im53 60 0 R /Im72 79 0 R /Im100 107 0 R /Im49 56 0 R /Im52 59 0 R /Im62 69 0 R /Im72 79 0 R /Im99 106 0 R /Im49 56 0 R /Im65 72 0 R /Im65 72 0 R /Im72 79 0 R /Im105 112 0 R /Im358 387 0 R /Im99 106 0 R /Im100 107 0 R /Im72 79 0 R /Im336 365 0 R /Im99 106 0 R /Im99 106 0 R /Im337 366 0 R /Im52 59 0 R /Im46 53 0 R /Im51 58 0 R /Im53 60 0 R /Im43 50 0 R /Im51 58 0 R /Im54 61 0 R /Im333 360 0 R /Im72 79 0 R /Im57 64 0 R /Im72 79 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im99 106 0 R /Im106 113 0 R /Im72 79 0 R /Im56 63 0 R /Im60 67 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im71 78 0 R /Im47 54 0 R /Im62 69 0 R /Im61 68 0 R /Im65 72 0 R /Im68 75 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im50 57 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im58 65 0 R /Im51 58 0 R /Im44 51 0 R /Im72 79 0 R /Im361 390 0 R /Im342 371 0 R /Im342 371 0 R /Im341 370 0 R /Im371 400 0 R /Im348 377 0 R /Im345 374 0 R /Im351 380 0 R /Im344 373 0 R /Im346 375 0 R /Im347 376 0 R /Im49 56 0 R /Im246 259 0 R /Im62 69 0 R /Im53 60 0 R /Im72 79 0 R /Im99 106 0 R /Im171 180 0 R /Im49 56 0 R /Im52 59 0 R /Im62 69 0 R /Im72 79 0 R /Im99 106 0 R /Im49 56 0 R /Im65 72 0 R /Im65 72 0 R /Im72 79 0 R /Im105 112 0 R /Im105 112 0 R /Im358 387 0 R /Im105 112 0 R /Im102 109 0 R /Im72 79 0 R /Im336 365 0 R /Im99 106 0 R /Im170 179 0 R /Im337 366 0 R /Im59 66 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im69 76 0 R /Im51 58 0 R /Im53 60 0 R /Im55 62 0 R /Im166 175 0 R /Im72 79 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im110 117 0 R /Im104 111 0 R /Im106 113 0 R /Im72 79 0 R /Im377 406 0 R /Im355 384 0 R /Im344 373 0 R /Im346 375 0 R /Im359 388 0 R /Im342 371 0 R /Im362 391 0 R /Im350 379 0 R /Im357 386 0 R /Im357 386 0 R /Im72 79 0 R /Im169 178 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im116 123 0 R /Im68 75 0 R /Im70 77 0 R /Im53 60 0 R /Im46 53 0 R /Im47 54 0 R /Im42 49 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im49 56 0 R /Im168 177 0 R /Im54 61 0 R /Im47 54 0 R /Im72 79 0 R /Im49 56 0 R /Im52 59 0 R /Im51 58 0 R /Im75 82 0 R /Im334 361 0 R /Im62 69 0 R /Im45 52 0 R /Im67 74 0 R /Im72 79 0 R /Im114 121 0 R /Im45 52 0 R /Im46 53 0 R /Im66 73 0 R /Im46 53 0 R /Im54 61 0 R /Im42 49 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im65 72 0 R /Im68 75 0 R /Im70 77 0 R /Im53 60 0 R /Im46 53 0 R /Im43 50 0 R /Im48 55 0 R /Im51 58 0 R /Im55 62 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im171 180 0 R /Im110 117 0 R /Im106 113 0 R /Im42 49 0 R /Im43 50 0 R /Im342 371 0 R /Im362 391 0 R /Im350 379 0 R /Im357 386 0 R /Im357 386 0 R /Im378 407 0 R /Im345 374 0 R /Im355 384 0 R /Im379 408 0 R /Im70 77 0 R /Im64 71 0 R /Im169 178 0 R /Im42 49 0 R /Im63 70 0 R /Im46 53 0 R /Im55 62 0 R /Im41 48 0 R /Im47 54 0 R /Im109 116 0 R /Im42 49 0 R /Im64 71 0 R /Im60 67 0 R /Im62 69 0 R /Im61 68 0 R /Im65 72 0 R /Im42 49 0 R /Im54 61 0 R /Im64 71 0 R /Im49 56 0 R /Im52 59 0 R /Im51 58 0 R /Im75 82 0 R /Im334 361 0 R /Im62 69 0 R /Im45 52 0 R /Im67 74 0 R /Im72 79 0 R /Im336 365 0 R /Im99 106 0 R /Im105 112 0 R /Im337 366 0 R /Im58 65 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im51 58 0 R /Im112 119 0 R /Im51 58 0 R /Im45 52 0 R /Im333 360 0 R /Im72 79 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im105 112 0 R /Im106 113 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im88 95 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im64 71 0 R /Im88 95 0 R /Im51 58 0 R /Im68 75 0 R /Im45 52 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im47 54 0 R /Im72 79 0 R /Im361 390 0 R /Im342 371 0 R /Im342 371 0 R /Im341 370 0 R /Im371 400 0 R /Im348 377 0 R /Im345 374 0 R /Im351 380 0 R /Im344 373 0 R /Im346 375 0 R /Im347 376 0 R /Im49 56 0 R /Im246 259 0 R /Im62 69 0 R /Im53 60 0 R /Im72 79 0 R /Im101 108 0 R /Im49 56 0 R /Im52 59 0 R /Im62 69 0 R /Im72 79 0 R /Im105 112 0 R /Im49 56 0 R /Im65 72 0 R /Im65 72 0 R /Im72 79 0 R /Im99 106 0 R /Im101 108 0 R /Im358 387 0 R /Im99 106 0 R /Im100 107 0 R /Im72 79 0 R /Im336 365 0 R /Im99 106 0 R /Im171 180 0 R /Im337 366 0 R /Im58 65 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im51 58 0 R /Im112 119 0 R /Im51 58 0 R /Im45 52 0 R /Im333 360 0 R /Im72 79 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im100 107 0 R /Im106 113 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im88 95 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im62 69 0 R /Im45 52 0 R /Im64 71 0 R /Im88 95 0 R /Im51 58 0 R /Im68 75 0 R /Im45 52 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im47 54 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im65 72 0 R /Im48 55 0 R /Im42 49 0 R /Im71 78 0 R /Im57 64 0 R /Im51 58 0 R /Im44 51 0 R /Im42 49 0 R /Im58 65 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im47 54 0 R /Im48 55 0 R /Im73 80 0 R /Im54 61 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im116 123 0 R /Im45 52 0 R /Im42 49 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im47 54 0 R /Im51 58 0 R /Im72 79 0 R /Im361 390 0 R /Im380 409 0 R /Im380 409 0 R /Im380 409 0 R /Im376 405 0 R /Im351 380 0 R /Im346 375 0 R /Im344 373 0 R /Im357 386 0 R /Im346 375 0 R /Im352 381 0 R /Im359 388 0 R /Im355 384 0 R /Im348 377 0 R /Im344 373 0 R /Im357 386 0 R /Im348 377 0 R /Im344 373 0 R /Im353 382 0 R /Im346 375 0 R /Im359 388 0 R /Im359 388 0 R /Im350 379 0 R /Im351 380 0 R /Im344 373 0 R /Im341 370 0 R /Im344 373 0 R /Im346 375 0 R /Im347 376 0 R /Im381 410 0 R /Im357 386 0 R /Im355 384 0 R /Im357 386 0 R /Im346 375 0 R /Im344 373 0 R /Im354 383 0 R /Im343 372 0 R /Im346 375 0 R /Im352 381 0 R /Im362 391 0 R /Im355 384 0 R /Im344 373 0 R /Im350 379 0 R /Im361 390 0 R /Im344 373 0 R /Im359 388 0 R /Im350 379 0 R /Im347 376 0 R /Im347 376 0 R /Im355 384 0 R /Im356 385 0 R /Im350 379 0 R /Im344 373 0 R /Im352 381 0 R /Im350 379 0 R /Im49 56 0 R /Im246 259 0 R /Im62 69 0 R /Im53 60 0 R /Im72 79 0 R /Im99 106 0 R /Im99 106 0 R /Im49 56 0 R /Im52 59 0 R /Im62 69 0 R /Im72 79 0 R /Im99 106 0 R /Im99 106 0 R /Im49 56 0 R /Im65 72 0 R /Im65 72 0 R /Im72 79 0 R /Im99 106 0 R /Im170 179 0 R /Im113 120 0 R /Im105 112 0 R /Im358 387 0 R /Im99 106 0 R /Im170 179 0 R /Im99 106 0 R /Im170 179 0 R /Im72 79 0 R /Im336 365 0 R /Im99 106 0 R /Im110 117 0 R /Im337 366 0 R /Im58 65 0 R /Im47 54 0 R /Im48 55 0 R /Im42 49 0 R /Im51 58 0 R /Im112 119 0 R /Im51 58 0 R /Im45 52 0 R /Im333 360 0 R /Im72 79 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im171 180 0 R /Im106 113 0 R /Im72 79 0 R /Im353 382 0 R /Im350 379 0 R /Im351 380 0 R /Im357 386 0 R /Im348 377 0 R /Im344 373 0 R /Im346 375 0 R /Im347 376 0 R /Im352 381 0 R /Im348 377 0 R /Im372 401 0 R /Im372 401 0 R /Im345 374 0 R /Im344 373 0 R /Im355 384 0 R /Im352 381 0 R /Im346 375 0 R /Im359 388 0 R /Im355 384 0 R /Im348 377 0 R /Im344 373 0 R /Im72 79 0 R /Im336 365 0 R /Im99 106 0 R /Im101 108 0 R /Im337 366 0 R /Im58 65 0 R /Im47 54 0 R /Im62 69 0 R /Im44 51 0 R /Im44 51 0 R /Im333 360 0 R /Im72 79 0 R /Im333 360 0 R /Im72 79 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im100 107 0 R /Im106 113 0 R /Im72 79 0 R /Im56 63 0 R /Im60 67 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im71 78 0 R /Im116 123 0 R /Im53 60 0 R /Im42 49 0 R /Im64 71 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im116 123 0 R /Im45 52 0 R /Im62 69 0 R /Im66 73 0 R /Im45 52 0 R /Im42 49 0 R /Im61 68 0 R /Im72 79 0 R /Im343 372 0 R /Im346 375 0 R /Im352 381 0 R /Im362 391 0 R /Im355 384 0 R /Im344 373 0 R /Im350 379 0 R /Im361 390 0 R /Im344 373 0 R /Im359 388 0 R /Im350 379 0 R /Im347 376 0 R /Im347 376 0 R /Im355 384 0 R /Im356 385 0 R /Im350 379 0 R /Im344 373 0 R /Im352 381 0 R /Im350 379 0 R /Im382 411 0 R /Im97 104 0 R /Im51 58 0 R /Im55 62 0 R /Im43 50 0 R /Im72 79 0 R /Im57 64 0 R /Im72 79 0 R /Im41 48 0 R /Im51 58 0 R /Im53 60 0 R /Im44 51 0 R /Im76 83 0 R /Im51 58 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im169 178 0 R /Im72 79 0 R /Im41 48 0 R /Im46 53 0 R /Im47 54 0 R /Im48 55 0 R /Im46 53 0 R /Im51 58 0 R /Im106 113 0 R /Im49 56 0 R /Im65 72 0 R /Im65 72 0 R /Im72 79 0 R /Im170 179 0 R /Im110 117 0 R /Im110 117 0 R /Im358 387 0 R /Im170 179 0 R /Im101 108 0 R /Im110 117 0 R /Im72 79 0 R /Im73 80 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im70 77 0 R /Im68 75 0 R /Im45 52 0 R /Im66 73 0 R /Im48 55 0 R /Im181 190 0 R /Im54 61 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im64 71 0 R /Im116 123 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im72 79 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 364 0 R +>> +endobj +364 0 obj +<< +/Length 831 0 R +/Filter /FlateDecode +>> +stream +x¥}Kt9nݾE-¥ «ù¼-òDxãB½=ÓÒ=/Í´cÂÿÞÉL0«H<¼¹©ú¢â/ �ÿùÿ~üçþãï?Ü~úÏp¸÷é\ýy~É}þ3»ô±ðéBúøÍøñ¿ÿ1üñÏþá_¿ °}ÔÒoé6â½ß·þòñÓß~å#¨3ð.kS¸ý·�ðh 'àOmûçvÀÂþ¹§~ýóÐèã ï¡Oâ&æAlöÐ+ðnRpa<>Ï#}l§ûÇSã0xÚïìá>¿³p»Éã×N}ÞÝÚÆìã&¦aÛ] +² ð}Yà¡Ñ]K¿ ß¡?}=}ú¡§?C¢dûy8þÎïHζðû÷÷0ò¯§·ï'ôýSÿ~Ò÷Ó}»¿Ó?þâóqá> ôùsß ýö/'yÿ·|?É_ùß$`ýîó?6D?hÁqÿþô~æO×"ùݺÁ¡ó· ë5Ñûhø~óÇûnç_Ùÿó3nhÿÂíüóOÿüÛùUä~?îï}?íÒ÷ÃçÖñÿf¸2Û~(�÷ySU +]!oÒà[°ø]ÝÌ}h0ïÀ$ìQóð¦Fz7ÜBt(íâÕx Ò¢yàáxZ : Ã-À´XtAÒb£)ô¼iÞ{Á± ø]R#ãÚÌêèÕÐÍtÔôèf(çVèë5p³Ë¶§øÇ®²t33*ft f bÆÄ§ú~7ù[®1ºÿ4Áþûá1TtÜÑ5zºÿ;úþüHþÅèdFBø&I~ÿC +Dç_rIârè×å'yÍ¥ßî-3:¤?t3:Å Ñtÿ2cÇýcXJHÿêXÊèûÈÇÏÑ3À»Á¢¸Ál@¦@Ó®)PN¼c wíÃ.Àtxé§p 8t8µù³ÿ¨�Ùú³{ÏÉòPý´ï{¨ü¤N¹ûξò?úç¼ýÇ +àéÇ9Ü%^¼÷õ·ô²é)°~0À¨$Ø;¬¡-øø¹¹~þwú}@3|H>A7K`ÿæI16Àíå°¡È�å%©|Q_{ÇÇðÃfÀâÌ aÁ°·çYCUcÝs@×pkÝâÕ¡sÀ«\RpÔ%s·¥»äÇ@ð@¾ÌBðp Ãid(t /a8t^°Æ´ÃÀyÆ7ZÈ-at +~:�<ãHg°AABn ÂÄ ] +Ô»¸{¤Uu÷lØ¡K@úàá§Q ØÎ îåSeêpá=&F'2àEQf)Þ4Z0/FTýChrqú`|á<<<fàí·%}°pz£ºvt3e`âô&v¼;¯oYû7Ѩ¨)ϼò1Qú$zf¢ÝÖ hãAÚéC?Ú¸ÌÑw³1[É» m î1½ò½}Éà§1ç<8-ÞØ-AöÖ'.ôÈb²´QÄGG7ûx«2Ý^*#FW%¥1ÂÇ8Å]:Æ,bÚA$BÌÕâÿäû,å^jº«pCßG6£G7:z©OË^ª+tü£ò¿k/Õ)hä¦_F�UÐÈ}óÞèáÌQ#ÝÀû Áëüémh¦0^ 4j_£Æ-½ìí*Þ»4ôÈÛCP'1�zäí#ÞÑ÷åpú>pWþ¥ôÿÒ)ñ¢6ò¾?z©·g³;¤¡G¦Äèfxx:ì_ÂVßxØ@:= °ÁØÍxvc�Æ`çHÀÛ¡¸ücßÂNZzùER\�¿òp¼sCHoàÔ<ÚØJzjà¯×È&A!æ¢9�£DÙKòÿöbÛ.Á^6Í4X½)ß0`ö²G8�ØB6À©ÍóðHK°SÚE ÕWÚZ#l Ä<S4l_q+-½övÈHÏ#ç[÷hÄjDFßEQ°{8F¸cØN mõÑç�&0Æíü2f´~Iq/¿ü(¸E�Ø=wíf÷@Á(÷�ÿ qù1øÄ\´câÉÜT ä1]C%^xL$¿é° +íáCdT ~¸9îÙQ£o{¼ìû>Û* ÿO½À ¢ÀM3D©�îY@ê ;<xÉx%§7w8Á¹dÆÙ¡·èø`þ¸ìÑýqÓ^ú¹/Á|º ½~/â~[zù>}-ý AÜq z¹bÈimé|ÿº/²°fü£óÏèû©ß?ÿtäQñe(òCù·;SWFC¯e0Ýåïÿ�qÁ"¬²1.�DXé¬ *EK`;¡âïÛÆ÷4 ».Apßb>jKFºm\�@ú4RDq¡;!âÈÏÁñ.èÇ@9ebEÌHÈð0iÜw!Äå¶òØFÿ:PÎa+"9leSåÁVv9le×Àá¨3ð/̨ Õª+~¾§Qt@}8Ç9}XW<n{+ÉöèNGvçöæ`o�ÂÔ|0 km)Ü¢f67ôpcÐÓ¨pÉ0mg@÷ÐÆá¡M Ò(Xc3ç\Ú^5èv÷ö9 û¨ãa"Ç&ÉÀ4VíõXõÝ2«±êàfhY¬ºUã÷éó}h!£ÕP¯©-½ê*Æïë¡.#øþJ¬zô±êäÐ÷åPOÛs¯º|¶(I#Bz¨Ëo¦ÇÛýÓC]%Ø|ÀmWB]¾æG7ÐÕ¯¨µîÉjÄ ºüqÂ3ðp!ÔUxÊ.²Wnpæ(mèÁ+æ>c¼bÙû]¾nB,�¯Ñ®®/¼Í`4 +©Y\t3�hî^×çùAfw$¤L^7¦Ím^7Yd"ÝÆ-iÛHl +*IzÇÁáÑ>¢ìâRí ²Ó° ò%Ibhìpîè<#4öåÎÃ%�Ö(ÑFao¼x#Là0H7ãTE¸GÓæõ3¸Z£vn3¨á£nBùãAȱÆ:9ÐCøÕÞ �B X!Ä Ù@!ÐÜ|õäï¸ Fkýùi$L<ðÕ¤AC½Û°FX¡ 7<¤&=[+9dæ-$Ù¤ +é�¶£=¼Q0ó y|»Ê ¤©h¤0('À)Eñ0Ñ]HðjÓ/T+±Ì.:@gÍo&0Ïè8먮´!}"Â<¦~¢£î-1ñ«¶ú};:~eÉ y\_Ps[è >¹ePB®èÜË#pÈ8BÅX1äòX)ÎÐø}æzÍþ|º^¹^©ËÀ]sãÃjFp¿;¾Ï_Fõø kéeXàÓåÓÐ/¤DÓã-½jª.{ëºüÒeC]N5½ ]¿AòU8?+¦ñLO¸Ý¨¯i0H¯´¿l +øÑ/¸üöö_.FãwÄdÙ ÿz5¦gvÃD~)¤§Bó@Qï åj(¡V0/eXjðÚ¦ÐK( ¦À§(@=½*0TÊG(xX¦·ká©À¾ÅÎäØ_HfÁ4ôÚôð2!�L0ÊÀo:ÁHMÛ�*@»æA 8]¨8ÐÖA]j0¥KͬðÒ :-(Ú~_6Á5'Zþ-þòí&þp¢{ üä#?ã< üõS�¥ÍIin³sI³yQ[q%Ú.aØgî¹^w(+P¡%vôza~<Ô +1+°û¾n ä0±ã¿üóñ_×ÞtèZ1{¥O/Õ4äu8;ùåfÏh ùYxFÚèÊØ-êÏôT"¯oÑ×IªÝ÷õ0wèR èïó#2ÒPµâfë§pD +`/ðpá))0Zû)¡¼ À!ï�SÜÐH¿¿iß§fèî¤DÀRTçÀ¬¨üÖ R¬ ñû(KT¥vÜà:*;Zúü'Ùqöëì* )>÷"þë0F$¿±±¾¯ÄTlÿ²Àôæ,1kS ¥âÕ[ +$vh6{©Âr¯`â^9ø}Ä£J`º +AÜà�«<îñܰCÉibÄ®dµ}»c$wH ìÑBªö`¡·B%ÉóP-~õ!TsD¯>J@ìk,YùÕP©8õG|õ!TsL¯>%ÏèiŶ]ã5ÎÎO ½s~²ÓìPÎßÚáRsïæ¼7}êôî.ÂÜ ÛAÞJæµô((OâIØ·ó¥7οz2®Î?'¡¥M¦ðú¾?¢x7{4ô/y+×Ò/Á}º"ºä:ÞêøvèEp½%Dõ3�o!æ ÙÐ�£-Ç+G ¯G£Õ¥Ù ôz«@D´Ü#, ·Qr«æxl£ ø£3¨/uT�$=M5Á]XÀa'¤MÁ�l¯Ú¨+áAÞµÃDQйr-ÞÏ@Yað~À·G*Ìß&!L\¨0L<&~A(gs=î zîr+·Úw&¢Ì"Ytx :ðÓGmxý«Í@¯qçôbarPÊr¿%1Â%èb«Þi f¨õN%Sò½]¨ùõÎÊ`m²R¶K!-É>a&,û±¡»qKÀ-h +,alAC3O3 ¢g×&l-½qª»tBOý,hzÎw +\¬yj©<Ú<x©aw[²§vzÊqÕÂK³úðd>²® ;ityÓXH `CÁäAÚÞK9Î%ýÛ +ÖËc÷Sª7v?Ë#3øR-]&ð +¾Äßë÷i¾¿9·ê´½9·²3z9·áv"ç o¿¯7®øÑnþú{¿Æý&ß§ó÷köU!ÈúZoø7:|9þɯ^Õ³VêÖ¯#gN$?ðÇê0l÷O*o^«[ïëuyý!í?;[ÿ®^;íû4î$üHúÆÚ¿ ¸sBúo|3ýòö_ÏÞþX¨n^-½ìp5`Ðò_ìhý:þûìåÿî½½@E?ÎäörHÿ ñ)@'ൠðg}ßNॸq°'e3 ¸qµ¤[#ÊéqãÞàfA¯<¬èqãÛ^T㯪·KX¯X£Ù5F]#ª±ZÞäʺÄDK#éÔì©§Ô mê~B3@ÑÇsÍ`7wÐZÀ-dQþH6n©)zù[ð¥.h&°àc-å±G,øXïòÁYð±Ö|à~ Õ-¿àcMÎ@÷î=áÝ�À&ÉÖ¸�d$÷/bky¶}iÒï»�|DKüQD-¼ð#k»@x r%/üLoîÂyh»Às©ÔÎPû¦B[pçê!ìx�®Ò¡ºô *T*\Qi¾Fq °mXs{s«*ÁÛnr/UoÉmÝ�z½Øqß n�½Þ²U¹Î§v8u«N3Vu3ã춯,ìYÙîvzç_ßh-½¢Y;µô(Çá)2ÝGáÏæ¯w rNú>õÑÔäöû>/}ùgü>Ê$g´ô2¶¼Ôb{è¡^OñðûrùÓGÓò_÷1¤MZ?õ1d¾¯ûò.?:ÿ Ñ/ÌüÓç_s;¦óÇ-k éî&Õ[(Ý59@49À]ÜL@©Îû � ÷ÝV䤣äÑk¬²4T÷#9ä�ó÷^ÕZMni ®`è aÕÍÏ}àRî¶Ü¥ÝX>¡çé%»t¦Ù! ýèå£ô2ÃVè7Vè>+ÿºkjÈd¼z5brã¥2.¤`/f@¶¸®E.¥°I"<k`¶®lâèåêÔOÄÅäe¨TÑ ÍsNoÀ÷Ìm¹¨DSëüÃ¥j7ör^:¢Ý¿¶Ì�ØhµS{@kt-$×Q¼Æ�$@ìKO3êõÆbeÙAþËVÀ39fÙ©>!dÆN©}¨Ãû ¹ï_hQs`24èIºONCµ|Õí÷årÞµôë©Rtð-ÀT:Ï×)SÀT? uÀs߯Q½mmâ×^Sþô¨^C<¡è#}Dß#4C¨b[.ÔúÈ& Í�î +×Ñëî¨Mû>OP2wZËÀ u^ ¢||SÈ¼ëæ¯»¢WRôÞúÏÍè©;ÊHeÈWí>×ñO¶cBô¦ÎKÁR«D?Xÿá`§)}Û ðnòÛã%PðÈHéKpI4ÐßRµä[È`¨Å~�?xÈ_ÎCK*jy¸� µdÒd©['ËîÈÏ¡âSÔíIàYø~X2ù>Ïæñ§×/ÀÌ£c±µ"�¯ /Ì««W»¿YÉ©Q¹òrmº6û>¡k\ ³×fÿ(IÈß$ù£ûqÿGÏÝþËdGù"3É?qÔ¨/ݲ 1b¨7ÀÃý[×3;# üëµó#2J-¤êØAÔeúfJ^ùøé( ^kEû>u§XáÙr�_»SXïõÆQT&5ô iþ v #PÓ»dtFO nØÙ¡ÇäB7ìì6¸¹%Îh4[ :ydÌ.ÈP-tî~Òâ;ånØÞfÐ ° n�¹X"wk¸@¯�kP§~ 2¸ô®¼<Àw¬T¿¹_\-[Üĺa*¸9Ô)ªr@ùr »½½§K ùl[Áº»b¥,)XBâ¡Þ Û8Ìz7ìZI·¥×3£KBÜýe{ädt¹$í�³¥·ôz¤¼ÒUèyF[¸ÌÀýiÄi©oÁòYúÐH °ð,/©'Ár:«[3e¢A¦®3qª³º$ÓXÉí{9VrW [|í£ÇJº),ÇJÒö½§÷ XI;Àz¬¤¥_´ôë±~!VâWb%v5¬ÄJÀB¬ÄÒÃgßçØg«RdðRGë#ý÷ ,t´>ì:ëNÞÑúÚ1äp:x-X2EËÃW±S¥hL x$?rjZú8¦ñvÐ'Ã¥vÐlMr[µn�ý±ªmÜÍ@~l× +ñý�zªû¶#(¿r½ÁPVIÊA¼C[¯¤ÐV*© ûÔËYºXIíKX¨¤U9`h^§^I 2Qï#@.ºàxHÞ½aúLÛ¬Úþæ60Ì Xý³³@ØÅh;éWÅ!£y0{HÚ#ï:iÛÈk½T£;îÕ;`$à&Êh½_ú@zI\QSi<÷^ïèÍLb9ÞzE½`¥z~ÀÖ`Fr aóîèè-£( î¿ÐÐp�>Îá pÀ»ú ½«ªfËS<K\ð:q¹g¢ûÞ.¥s&Ìoh¾ ÓXØÐ�ÈJWU7êí£1±@®ðôæ·h~Ü7KÏBñæô³à-娸t7z«¯ØÎ@G å¸ðayËæléu¸´áígô´·ôaÞ^GÈÔ¼å^ïJx"Z¨å? +ÐcGpuÿ^#<8PÑÛ1N¯3¤f·�¹F´4ñ8zÄ@½·r}'MæO{[W»r_WE"½:�bÂ37À�!Ã@½MqÂ+@{ïhõö$ í»£ù#ÓÌÿHÒüyu¼]Ò�̬g| +à+̬«^«�FtO|F·ð¨Y7è¡ü +3Ì[¾®ÐW±ÄÆ´Û?YÇæLA1 áYÏæ³lèõhzí×îÿ«kCvà^�r[ÒÛö-"âó¯cxÉç7»t~yø í?K5'²aõTäNiÿþN>KúÓÃïëY zåà÷åÂÉÚêÎîYÊóìþ§üKÿyÊ3Òÿ° vtʯÑ/Î eý¼Âý.½À¦ ÞLØ,/úWMæ n +ë °¿!poD g6 Û +^ÄÑ|ÎÓÐJ`°Ù1p=a³`!a²ÞÂíôI«QÝ1POÜð}Ôg*x«_Ôѯwü8½¸nxÂ×ü£g·ù#GyÅUD^{|rMØDßG c·ü�ñÏ×ϸt�sFOÜTÀ¥Çdï f éjXÃY²ÖTs@Þ d�ò^$&ÀÃK öNv¶:8Õ{+ÌmìVb&÷�qí ½¬¢÷o©¡ò~G Ek5qU =ãÕPèûȣݡå1þ ?ëßÜ÷/Á{X7dbuç]4dÊküC&nhUܶ,2ì�ÇRºÃÐÈ8ônOp¢ ü;Oé�Ó;ëUÓÑ +yÓe|wò§7WvÀBsõØhÒ×\Ðì ñª¯a. ¯k R!^Ñ ´»¹ÕwooqÝú|ÎN j`ÙvUùÃ|Árh8=@'2õpB:#¿îN:wñÀ(C LÈ^{I³ýéäG.@ötøïÐÔìnÐÐïÚ½zZz½µ¹Bné±ÝÒëûWo}ß2®gß§ñêhéÁC뿸ë?/é¿Úl®Û?Yÿù_×¾^àÞ/|¨,É/uÔx|»ÿz<¾^àíþéÍòêÞ~_Úÿ#àßñlsI[�SÏĺvõ°P:+#2ÎâxGí=vMÒõW¢ý¾\s¤Äãù¡ñüò_ç»´~×(/dîyº�¦çÄóº@ôx^pÿåxL©c~4ôzÉZ³©¥YH¼|àP¾²94À à!uCvK²Ñºô,ôoß ôjôGKÐ4bä`µvs¸82DV'¬mí¼a{¤rù©\ÉïP¶´m¾á5µÒ°zõ»%,4lçQoØàV¶E(HÀ©Lä`Ðvi2IVÚ¥íP¡¬´KCJ}¥]ÚE`�³)Yãµ +²Ohpävà_§I3&fôÞ"ª¼ì»ËË^¹iMÚú²Ô¤¥!êZèb1ÌR»|?^¬éúÌ7Ö4&!æôã߯@½é÷ÉË:?RÀÚõ!ZcíIÒ¤"ÐvRLØw¾¿PY½>,ÚZxz¶Ã¡ýµN5ór°¤ðÑñ8ñ| Õã¾i§å(IÙç%z^£@`áö ³¼t�K«³À´jNOºp±jNôÚh>nà-´)8 «j¤I8Õ´¤ìîMõPNkÀûìx ¥Zz¢Ç¨eÏHéño!eèDüÓºÇÖªÒó $o»êâ\® +Û&U¹ +�ð0ÄuHG1ò»ëäeAræâ¼=/é.Î'Èá¢%+ÐiÒ]7ZÓ,Ñd·ÞìÆ,y Bvû)H°óïÖ|MxÆ÷ì[ÃñRò@ßC´ôzÞ·ÚÌ ¯®¨´¼öû�êÃ!·Þ¤àx)E¬å¦7à{+-7ká±ù^c~/ï a~g;8ÃüvôRÂûÈÚ3´m9*`þãEN#Ñ+PóÛÑËï*æ·£!·<÷÷¸Ð¤$j'¡ÞkîmwuÔ{µ gàW+Ç[È%Ðp}7X� çC»x Íôæ�f ÷,¾3ç`ËÃÐð®é1Ú%åØ5(èØªÿuô Ä çxÅuHöìWµ2EÐÖË!Jzwy93¨KÄî=ã!®ì´P+1§3ÒÃætFjpÅFü× ÷ýßÐ=ºqÞáþéçÿw~hÇèïÁS;ìA]}Ý5¶Ð%ÄAêKKÁ <ÈkS§Àú÷æ²dRÌkDß 9« �Mµãº!^»¬ ùæ4B·{°{J Ô21&m�Ú(e÷ 5AbV¨ÁºÁÇ'0Ťҫ¹à�Â{¤øÐ1^ZÌ¡� 8ø×Á%,ô9A¦¨SÈ|c5ÈXTÉ¥ÞU5%úVz;d!¶åÈõÞÖÿ·¥_èíPßD:δv´Ëøj1ídç¨+e-÷ðÉ[Mõ]½µÏl�Bþ0¯D6WD;¥ ´Ö±=wEù¼Ä@å³@-½å{º5&ô¼;Æ@ú&vÛ[|@ E ïð» Ð@ÇVn¯£áxÖ^dzéâ)M;V²$ÜCnÛ<^zÈÙN¡®iÁê`O¾! ÆgönÃM8Ë´KÐëêøj·ô:Ü¢Åéu#{Z1ÂïË ùj_~n´~s ïëÞéÀ÷Q"kë½ç÷Öº°¥_KYïÔîûzeÑ#Hß1%xKmEÎð°.YpºkÔE8äX{pÂtÈQ°Âã-W|«Õ¿(E0£HoÄnj´a¾-ø¾�Æo³qZúM¯Niz;-´�9¤ùïê +~×ëÒ@- §lqý(tô<ÚÔüûþrÅõ£Ü´º¤óóáK+eÿhA +_ù&I=H·õ (¿:V'hë§ôÞB`ýÄ·Z}ó ý +X)!3DïÀ\Z¨Ò#Aræ¸i +~ÓÌ æ¬-ØË t¥s´³~¿¾úßh©ywm6hÅ7ê6�õºáߨGÌo´Føºè¾QëýÛ ûFSD÷øo4E¤|£¥Î%ZìMÖ(°@öÖþ%å(]ñ&«íÓÁo´ªTÊéBÝ7,+p®°= YôtýòÔ$"pɾÍìÐm¦û6³ðgdOªÚ}ö¤z÷'ü£®IËM.VÉ%×f 4Nèy +ñ/ÌuäIYýraaŧS$ºkE_µX³ Gqvpº["o§ÁÛãú-Ï Û^22ÐZöÎèçÁnËÅrÛJ¶<©Þé^z+±Õ}<icÏï·�w,Ú!jç/öî3?w"þ!ávíIîò¸]÷ºm5MD´ÁÝôDDk<ûþÁ£¼k µ3ÈAÝìÀRÃà À}´ý#`áR¿àCÚDêóPÈmC!® :h,XÛNèZ<zß¡´KZÒç ÑÓÆM¹òÿxéâeNô}½àsÍ¢kèõ:[Á²y;z¹ÎVý>èãµ:[GFß×ël¬¡ÎÖ oq½P¨CüC Mâthÿ@Ëøü/ùqÏO4ø·�ZèÈËçÅõÛü:?J¡Ró%MS¿XÞü¬øÅ6óµfî» R v¤übñ8Á5¾à+5~Æk|Å/æ@÷9tWüb鱿ßát¿X@7ñ_Ì +´WÁ_,`¯øÅ¬ê÷ì.¤Hè.ZðºY£)#1Föô¨K-lyÐEíà¶]ÞÁ»_mGÊT÷«Ç ²tª_ðêTèðÔ©@üjÎIücÆTvõ2SÞG~VZh~÷õ�+FÙK¿À¬é�Ô1gýKJ¼ùRaÃK0ào?|Mñ¾ á|íyæÂ¶¿å«/W}õÌÝ9ØÐÃÊ(×\¿É5÷}^Ú\A«Ô6VíôÚ£|ÞÒëÁÞêë¾/<jªkoô(¬ß.ÒùúkÑ.ÒT$=ëÁÓÑËŽßïDPv{»Û\kgMáK®µý¸|®µæ=+®5³É»ôOÞ?ýôB}ÁòK¾µ$íâÄúü=r{ï(áQè*A\(>¬X^7þ,¨ò~�½ºABL 7Ùû²Â.ïËzÙË`fm7½ìe°ÄØ~ rÙË`½iûä²aß´¨(üf&Ê´DÃxJ4p�R©¨Ú)ìÐIÜÏ¥]I¼#ºôzø¥X` Þß=Â;]ïïá®÷w.ÝÉÀfõôg6Í+�ßxtGw4G¯·DÛ�ø´~:íÌ«Ò3³ ©£wG6ÕBµ´#>¯Þ¶¬³d´rw½Ò'Ú�½!Aññ)H.kÖs®X¤oÆ@ê\1O·~½ø3Ô`:=töÇæqùl!½¾FÊðËåêRF¯º±p-ï0£¬Þ`ñ®=ìáI½AÞ]=¹t)*ð«§W}׿ ó`ÚDÚYO ù³Áþ²tñ¬|¤ÑÌè¡ðW÷à_å{PH¥ka¥ZÖXo ýù¨léu¨éuÈÖ¡¥×{ÒÔà]~òëX+ÃZÔd½+ÝÉ»õËëk*eG¯óÖ¸Ð%¯Èf^<°�uSÀ°ÔÚãí@ »U2ÁèVá<<=à!ðÐ\˧ì¤H0¤í%è 2KÄàë+þ�+wØN`Å2£õ6êÐýñ02ñ¼¢116 YäwÈñ�ĵw´¨ìgï\«^tâ.D˪_è®vÖÊî:®CêS9R+> Dº'Ú=)6:t"{¸$Ü&ݬ´BÅ.uß×}:}|ÑÑ.ájó .áøB6к\'MiÅ¿\ïÓ×àMîðHô¬Ü d:x°´SJ:ÿC=@Ä¥`]Æ;:¼ÙüOmÿ¨OÅ +·ô.êTm篻¬ÉðÌ ¤.�ú@@|Å%¡Ô]@Õ î¨NÑöûºK [¬¾eàz¬ÿ¦ÉÞõÛËhÙ ®±þfE¶f±þnÀ/Lª{3æ)(X_ÒÇâËK>Ê*⤥+#<'-½|}= ½rë£2ù{¯O ºå& `ù;ò«Öãûáb϶Û!/á<Øá·ýWOa öw§p=Øß WÈyûgz`ìoxx%Ø?ÙEZ=Ü#=0¾ yÿSÔüQªclÔ"ü-ý!WïPèÎRáè19 TçTK¯2ZÿJ¿n¸À ¯É-=/²×¯I²{ö÷ËöüðDt¡D¿Ê\'¼Guù;Ï·ä/:$?ñawóg�Í¡(~ôMD Ì%¥@Âp/$¢ÄM·ü +(9kl%esà&_HD)¥JÑ�r"J b¼RÞä`�]G9ZR^åhr"J<ýóUt%¥6hÅ`%Å¡»|!¥ +[]®'¢xÍ¢Z*¿3çôD°]Þû"â D D¤*SÂÀÔw1«1tHdµdåÆ:kDÎ$)}�z^"H{SÑL#¾õ$JäE#¸&$©¢b¾Vá%;tè+x f:Ìã¥-únÍ[¾%ï' ±VgmC³Ùf¾¥në¾¥ÒáßR³¾¥~Ý·ÔÒ¯ûú¾¥v/ø&úZ,øìjào©ÀoÉB<¥¾Ä%ßÒ)Bæ2ÏNÃ¥-°à[ÊÚ^ø<àáo)K»È}K ÃßR@çhÅ·¤#î[Bz`Å·Ñü|KÒc¾¥æ¿â[Bë_ð-mâ¾¥¯ìoIÛ?î[ÊüÌZwü[ð-Á{Pö-Õ"-Wå/Zù«òâÿoÉÃó¿à[ÊBôé¯ 8{ó¶ò#÷pÍÐ}ò«{$*r¼¥òY '`E^ºó+�gíûXÈv`ÜNiÿhõóòqRýWº+¹'ÿ@þXgIMÿÐóWçõ<áùÜÒÓIzGp?ªÞNÜ!øüë0 +Üè_N¯é&ÿ)Bý=ðÙ_OwPk¿ ÀëêNÚEýEæ!òùMY;¿tþ²¿R§víKåw×Î/mz@ûAî^àù×í§3hÊ?¬jGÉþaöGvðþµ.ÌÌ~`ë/í$õÓzVÃ{ã o v�½3mÉ)ìèpD^áX�ª#¥£ @o¹s½Î¿¤ùs?Ì æ? ^*÷héõà¤7¨¥ÁIÕöÚxOp:@×°ÚVÓPx´blÂÈD¥ph0êÐÍâ)fL7�Ò#¤ 3@äMø È1È K^[}Zd«¬±l?�¨9L/"R¦0ñð HM¶1Á³°°V½þú6æw°K ÉXè}Ã!K"¤K"ÈÈç¥s¥^ÕÎK@Åk XAÕH¬àÞØÆûËÚ£QT×TëoËEYwNDÌKæ\/wïU)Ì·\²<¯ñq YGà83v¬¦ÒèÞU((ùjªB}¼µ®§qL&AÕª-¶ðí*«¤â&yër§x9ÒYX!hÈGF̦IÃë¥Ï3óÕÈJÛºÉxS[.Á¢=Âõ/µ¾p1$la<àx£¦Óø�P´.#(HFO �Uº}@îï°JBQC"x5Q·ÏvhÇû}¢¶ +ÚëÒµÒGµ·H¾ñpÉwà0ëH¾ì¶Ð)Ì!!ÒÛ,ÕNc3úY§±+Øxï ìu `äÚÒë@@lþ ½ÎÿÒ}ýο~¡ÍUò=ã¿7 ciÕs©Óy®[ú NoU1£çøüÿ÷ ñ3¶Þ-=(f<ËÍ*¿¿ü�Fà@,Ä6絿½¯õª;Ï·xÉ8å!À=löΪ×h6ÿ ^ÂÒç÷ %ÕqßÓtýæ^WB)û,C)Û)¬C)[¬C);úe(eG¿¥léס-ý(ål3(eÇå4ÝV�.@)Û \HÓ-2üNîåSX¯í*Ò@íÂ�Rmõ*:!Ó4ÝÒtg»Hý®Þ%@¿+qZúìâÓ2T²@v4æ¨JV¼ß1 %,x¿#Ò+UÅS3¡>¯»ÃX#�#ø6%K°T½)a u -ae:¡"¦ÐúOÞ½º¼á"¦r@cQ'ärÜòöyomct¢$RlÇ3ãq% ñ.Á:w]>Îk¤ &võ;QÊSû6nïÙ·ÖVû²}[ü¯ógöm·uû¶Âû¶aÑÝ [zQgèuqaBOÍÃSnø·b&áfbÂÚA7'`)³ L«£V^«z¾w¬:jìS§ÃYuÔé¦ÕQ[.ا%ÛHÙEÚÙEpú1C=²ÐÙºÊwçp!UèDó×û1ÇôÞ9=íÇlý¤ãô5TCCBz@©eÑ,àBò ×5ês;¯r h®Õtì¾/cEkqònýÂÓ¢k¶çü_§XC>³ äÉFðéðªsnbÆøÔ ¯ÀMêãùd#E�iQP¾?¯¹1ºKã "DÊà"]ÁAd°( hÀtDìÚÏ@~>ñ,dDÁ³�&ê844ÊÑ"VÄíl ôix nÏ ñb» .YÁAT@ÍdϬà \½O¶8/2·ÖÆLÔq!jÇ·Þ9Ô%à°{9Ëqzê´×FA¤÷HÙ ÈQDR6'Ù ¼ùf׳ÆÖ¯Wúݵç)«ø¾^HBôzK×DQÌZ îý ËHðú³ï29ü¡U³d)>äYÏzçYÝÐë)ÔÞjåwô ¤¯TÿNCpÿ~ôà³�M¡2ßfG¯§Pm m ¶n½\CÃïY?ÿZv'�zèÏ[I®7q,ÒaýmKX¤ +dièu,RpN¢ç¡ËM`C @°DÁo$¤k=sHaB¨B¼¿ÆQDtVxZîc,T²Ä²b2½Ü=lè&QºpU¦¹'½u Ýd¨mÏëBÅ-ýz¡ânýÂMÞÅ<ojäópÿÃüi1hxLסÕX<ºÆ ¤ÕhvÑ·ÝD kÂÓä&£Þobù)RËwôwÑ!núkéõ®59=xµëPíLAÝñ'¹²(�dkj²ò[4çäù¯?ýðã¯üÿøéßoz îÛ?~úc±±Ây4ï·ÿóÛøþøÃïóóþöó?}üË?ÿêã/ýóoÿïo~þíÇÿúÿòo¿üþøøõ?üæ×ÿøñ«ÏûýÏÿñó_ùø/¿ûå¿üÓ?þýïÿüåw¿ÿÛç~þåÇ_û}û÷¿þÏ?ýÿò·B÷ù»_þøüøéÿðß~ºÍîÿOÉÞÈ +endstream +endobj +365 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 832 0 R +/Name /Im336 +/Width 7 +/Height 45 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû÷ï�±àß?vÝ ¼�Ð$ +endstream +endobj +366 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 833 0 R +/Name /Im337 +/Width 7 +/Height 45 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû÷Xðï»nýB^�ÝP +endstream +endobj +367 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 834 0 R +/Name /Im338 +/Width 15 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcàa°aøÃÿC®? ãd>ìþÿûÿ_®f®8�ÿ«X +endstream +endobj +368 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 835 0 R +/Name /Im339 +/Width 19 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨c`üÏÀÜÜÀÎxñãÆ6`TAÈý�Éðÿ}ÿq;10ð1ð1üaøaÁð¡áÁúöÂò5sÅ^ f +endstream +endobj +369 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 836 0 R +/Name /Im340 +/Width 19 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x3``°ÿÿ ÔÿoH`f8ÀÆpá00$00``¢æv b`à!y9;$TCÂòsÅ+Þ +endstream +endobj +370 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 837 0 R +/Name /Im341 +/Width 30 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc````°â + ®â?ÌÅÌ@1æ:6;æb ¶g`0à(þÿø@Ù XÿÀÿÿÿ°BÝ|%�& +endstream +endobj +371 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 838 0 R +/Name /Im342 +/Width 29 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xeñ 0@ÁÆBHk£â¢«8BÊÙÄU2#X¦R¿VN9ö,MWI$9LijàY˦^.ÀwúþÂ"{4ÏLØPbvº"¬PµóÖÞwÍð +endstream +endobj +372 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 839 0 R +/Name /Im343 +/Width 44 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÇÀPÿHþÿÀ`ÏÀ�dØ30îc`Èg`ü"k`dzÉ$7ðü�@òðiD&ü``l>øDÀäÃFùF23>c~ÀÀÌð LþA"�Iv0ÉßPÀþ�èÒú@&üÿÇ #_?O�ÆDý +endstream +endobj +373 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 840 0 R +/Name /Im344 +/Width 23 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc>þ@þþûì*T°Q +âgøä?üþÄEê'K�TD +endstream +endobj +374 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 841 0 R +/Name /Im345 +/Width 21 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãgøPÏþá?ÿyÆüä !æÄ~Àÿüùï?øÿ©, �&·Ð +endstream +endobj +375 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 842 0 R +/Name /Im346 +/Width 20 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÁÀÿAA½A½½ÿ7ðÿo� +Úð3Tð3|à7�!yúQPÿþ�PJD¤v²8�V +endstream +endobj +376 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 843 0 R +/Name /Im347 +/Width 12 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÀþÿãù�²7 ?Ê3üðÿBý|^�X +endstream +endobj +377 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 844 0 R +/Name /Im348 +/Width 20 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÃÀü¹Añ Ã> ¡ÀèÀf j(`g°cÿÃÀþAD¤v²8�Ëï +endstream +endobj +378 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 845 0 R +/Name /Im349 +/Width 21 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`~ÀÀÿÁæCÅñ2b>À`ÿbo@GüèHáÿU¨Ï�: +endstream +endobj +379 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 846 0 R +/Name /Im350 +/Width 17 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÁÀþAÁ½¡>07üÿBÀý¡ÁA¨ë Híd�Åç +endstream +endobj +380 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 847 0 R +/Name /Im351 +/Width 18 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc>Ï ÿ¿Áþûöç7°f`o@AüèHáÿ©,�gmm +endstream +endobj +381 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 848 0 R +/Name /Im352 +/Width 16 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃþ_^FÞF®§á>�B0ÇFBþÿÉ"�o© +endstream +endobj +382 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 849 0 R +/Name /Im353 +/Width 30 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÿ¿ýÿÿvì~0Ô0T�1&ü~0>`øÁ~áÿÆÿ:10óìëÿ10üb9ùúyò�»]*× +endstream +endobj +383 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 850 0 R +/Name /Im354 +/Width 21 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`¨``þÁÀþ*> #ưÿ}ÀÏþ@ùã +æÌ> ¡ì pô¿¡@¾¡Â¾Áþýþþ¢ +5ó%Lç(Ø +endstream +endobj +384 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 851 0 R +/Name /Im355 +/Width 12 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcxÀø0`@äý�óöäg@@yÿþà¯Ç�4Zã +endstream +endobj +385 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 852 0 R +/Name /Im356 +/Width 24 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`àc°³gøÿñàyæÆgìØðÃ;óöööÿ<d Hþ?àÿÿ@þÿ@ô¡� +\Æ6ìj0HÈ7L�r|" +endstream +endobj +386 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 853 0 R +/Name /Im357 +/Width 15 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÄþOmxlìÈàÿÁþñMXü(øÿàü~ºÉB�M¸v +endstream +endobj +387 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 854 0 R +/Name /Im358 +/Width 22 +/Height 2 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÏÿÿÄzÄ5Ð0 +endstream +endobj +388 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 855 0 R +/Name /Im359 +/Width 13 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcl`f�Av äg°cøÿãÿ9´A Px â}¯LÍl!�¿ +endstream +endobj +389 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 856 0 R +/Name /Im360 +/Width 24 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`üÁÀÿA¡BáÙ1>c|À�GÌìÿÿ"æ5Ìl½¡ ñ3|@Còþÿ÷¿ýBý|I�Ø¥%¹ +endstream +endobj +390 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 857 0 R +/Name /Im361 +/Width 20 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÿýÿ;ªÁ@?ÐãtÄü�±?`øÿDäæ ��v[ +endstream +endobj +391 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 858 0 R +/Name /Im362 +/Width 23 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÀÀþÿã ù�1``>þùþæÌ*T°Q +âgøä?üþÄêçK� ~&Ð +endstream +endobj +392 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 859 0 R +/Name /Im363 +/Width 32 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]˱ ÐÏåÎl ¸y8³8JF LÁCacñÊÇ6Áf %tXô§CÃ"Pz ±Ál ôÝ%ö!Iø¡ %muÆË&øÈ¹ÞÇE 0 +endstream +endobj +393 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 860 0 R +/Name /Im364 +/Width 21 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûüÇÿã?äÈ16È36ð33?ûöìÀè3�£©,�ä +endstream +endobj +394 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 861 0 R +/Name /Im365 +/Width 8 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xããa"5y!7 +endstream +endobj +395 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 862 0 R +/Name /Im366 +/Width 31 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿýß æo`üÀßÀp�Ø03ûv fb>ö<ÌdX øC#à `ÌðÿAñ(®âW¨§�§&Ù +endstream +endobj +396 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 863 0 R +/Name /Im367 +/Width 26 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÿì ¸þ3~@Á ±ù30óv æg``ÏPÿÿà ¯'�ÊÎ#Ø +endstream +endobj +397 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 864 0 R +/Name /Im368 +/Width 22 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°ga¨?Ãøàóæöv ~bào`à?ÀÀÿÿ?ûÿæÿÿ?`ÀÀüñ%0>¡Ì@Ôð½á?Ãñ??ÄkçK�>e"^ +endstream +endobj +398 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 865 0 R +/Name /Im369 +/Width 5 +/Height 5 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x3¨øQQÀÊZÓÂ� +endstream +endobj +399 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 866 0 R +/Name /Im370 +/Width 30 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÿÿ;3Ø1Ô�± ÁÄl?x@mZ@ñK aæØ1;×ÿjb9ùúyr�h$ +endstream +endobj +400 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 867 0 R +/Name /Im371 +/Width 23 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÿáÿöÌØ #þt$Ïì*ìþ@ Ã? +?0Ø?`o`W¨'�j¾ +endstream +endobj +401 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 868 0 R +/Name /Im372 +/Width 37 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc>üA¾Aþüúö?l>``ÏøD°° 6Ø ~ +æ8 yìþ?ÿoÿL¨ÔOV�±?)ø +endstream +endobj +402 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 869 0 R +/Name /Im373 +/Width 25 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøøýûþr?ø>ð30>`oÀð3 °Û00?°``ÿð}ÿöþö8ÿ?`IÙÆÉ�¿ +endstream +endobj +403 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 870 0 R +/Name /Im374 +/Width 20 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°g`øùðvÆì ø¨0�óö~?øØ@"@q0²`?PÃ~àý�ifHc¨°aÿÁÀÿAD¾v®8�:r +endstream +endobj +404 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 871 0 R +/Name /Im375 +/Width 7 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x±««³ccãá°0xàÀÎWÛÂ�+| +endstream +endobj +405 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 872 0 R +/Name /Im376 +/Width 29 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÿÿÿ<Ë1?øaÁüÀÂý °H` 68Àß`ÀÀßÀå°c;¸(ýÿ=ËÊWÏS�jÙ +endstream +endobj +406 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 873 0 R +/Name /Im377 +/Width 44 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÄ» 0ÐÚ¶vq�A;KW±s«{8Ëë\#"XY¤L!Ä?Aï¼ë¬¿WZéü"üÎxõLr +§ÔR¨/DaïӪ!7¹á{{ü' +^¸wÇÛw7Â�0CUs}JÄD¾ +endstream +endobj +407 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 874 0 R +/Name /Im378 +/Width 29 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]ɱ Â0EÑk¹pé pTìð¬-"!O¡ø£8¸tðTPéê=|a ìW¯®ôÙÕhk´³üi¸úËù¤3A²Ü#2¤éCÔFØ*þл¡t6st^F¸\ïñλ8( +endstream +endobj +408 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 875 0 R +/Name /Im379 +/Width 19 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÿð±7ðð3ðÈ3HÈ1HØ00T00|``|ÀÀ|°øälØ*øþÿ!aúÉ"�VÊ +endstream +endobj +409 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 876 0 R +/Name /Im380 +/Width 30 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÿÿ;3Ø1Ô�± ÁÄl?x@mZ@ñKÀ0K0~``~�ÆP\�Ä0>`Âúÿÿüb9ùúyò�ù+Í +endstream +endobj +410 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 877 0 R +/Name /Im381 +/Width 25 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãÿSßÀÄìH00~``ø`�Å @üáÇJn``¨fà: ¶b(¶b(jHh=Ôöë¡J%e&K��Á* +endstream +endobj +411 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 878 0 R +/Name /Im382 +/Width 21 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`xÀÀFÌØ0ð`?À }Áø�CzÃóÆã í Ìì lì |ü2üüü üõÿüÿÿAÙ10ÿ�D¢rusÅÒ¢Ü +endstream +endobj +412 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 480 0 R >> /XObject << /Im336 365 0 R /Im99 106 0 R /Im102 109 0 R /Im337 366 0 R /Im58 65 0 R /Im48 55 0 R /Im42 49 0 R /Im54 61 0 R /Im54 61 0 R /Im62 69 0 R /Im54 61 0 R /Im60 67 0 R /Im72 79 0 R /Im73 80 0 R /Im72 79 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im110 117 0 R /Im113 120 0 R /Im106 113 0 R /Im72 79 0 R /Im116 123 0 R /Im45 52 0 R /Im62 69 0 R /Im66 73 0 R /Im45 52 0 R /Im42 49 0 R /Im61 68 0 R /Im61 68 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im42 49 0 R /Im60 67 0 R /Im62 69 0 R /Im61 68 0 R /Im65 72 0 R /Im68 75 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im116 123 0 R /Im53 60 0 R /Im42 49 0 R /Im64 71 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im60 67 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im72 79 0 R /Im353 382 0 R /Im362 391 0 R /Im355 384 0 R /Im347 376 0 R /Im348 377 0 R /Im357 386 0 R /Im348 377 0 R /Im373 402 0 R /Im362 391 0 R /Im355 384 0 R /Im352 381 0 R /Im346 375 0 R /Im347 376 0 R /Im343 372 0 R /Im346 375 0 R /Im356 385 0 R /Im346 375 0 R /Im379 408 0 R /Im355 384 0 R /Im344 373 0 R /Im350 379 0 R /Im49 56 0 R /Im246 259 0 R /Im62 69 0 R /Im53 60 0 R /Im72 79 0 R /Im171 180 0 R /Im99 106 0 R /Im49 56 0 R /Im52 59 0 R /Im62 69 0 R /Im72 79 0 R /Im102 109 0 R /Im49 56 0 R /Im65 72 0 R /Im65 72 0 R /Im72 79 0 R /Im170 179 0 R /Im110 117 0 R /Im101 108 0 R /Im358 387 0 R /Im170 179 0 R /Im102 109 0 R /Im110 117 0 R /Im72 79 0 R /Im59 66 0 R /Im51 58 0 R /Im65 72 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im104 111 0 R /Im106 113 0 R /Im46 53 0 R /Im54 61 0 R /Im342 371 0 R /Im348 377 0 R /Im372 401 0 R /Im373 402 0 R /Im345 374 0 R /Im359 388 0 R /Im350 379 0 R /Im351 380 0 R /Im383 414 0 R /Im346 375 0 R /Im372 401 0 R /Im350 379 0 R /Im357 386 0 R /Im361 390 0 R /Im97 104 0 R /Im51 58 0 R /Im55 62 0 R /Im72 79 0 R /Im169 178 0 R /Im72 79 0 R /Im52 59 0 R /Im72 79 0 R /Im274 291 0 R /Im72 79 0 R /Im274 291 0 R /Im51 58 0 R /Im63 70 0 R /Im64 71 0 R /Im106 113 0 R /Im49 56 0 R /Im65 72 0 R /Im65 72 0 R /Im72 79 0 R /Im104 111 0 R /Im99 106 0 R /Im71 78 0 R /Im104 111 0 R /Im104 111 0 R /Im72 79 0 R /Im58 65 0 R /Im65 72 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im51 58 0 R /Im45 52 0 R /Im246 259 0 R /Im51 58 0 R /Im45 52 0 R /Im53 60 0 R /Im42 49 0 R /Im66 73 0 R /Im49 56 0 R /Im52 59 0 R /Im51 58 0 R /Im75 82 0 R /Im334 361 0 R /Im62 69 0 R /Im45 52 0 R /Im67 74 0 R /Im72 79 0 R /Im99 106 0 R /Im104 111 0 R /Im337 366 0 R /Im58 65 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im333 360 0 R /Im72 79 0 R /Im169 178 0 R /Im72 79 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im56 63 0 R /Im44 51 0 R /Im67 74 0 R /Im46 53 0 R /Im54 61 0 R /Im274 291 0 R /Im72 79 0 R /Im59 66 0 R /Im72 79 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im104 111 0 R /Im105 112 0 R /Im106 113 0 R /Im72 79 0 R /Im60 67 0 R /Im88 95 0 R /Im73 80 0 R /Im58 65 0 R /Im58 65 0 R /Im171 180 0 R /Im72 79 0 R /Im110 117 0 R /Im167 176 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im52 59 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im75 82 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im54 61 0 R /Im181 190 0 R /Im54 61 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im64 71 0 R /Im60 67 0 R /Im48 55 0 R /Im51 58 0 R /Im43 50 0 R /Im43 50 0 R /Im116 123 0 R /Im45 52 0 R /Im62 69 0 R /Im66 73 0 R /Im45 52 0 R /Im42 49 0 R /Im61 68 0 R /Im72 79 0 R /Im342 371 0 R /Im362 391 0 R /Im350 379 0 R /Im357 386 0 R /Im357 386 0 R /Im368 397 0 R /Im384 415 0 R /Im355 384 0 R /Im347 376 0 R /Im347 376 0 R /Im355 384 0 R /Im344 373 0 R /Im343 372 0 R /Im346 375 0 R /Im344 373 0 R /Im346 375 0 R /Im344 373 0 R /Im354 383 0 R /Im343 372 0 R /Im346 375 0 R /Im352 381 0 R /Im362 391 0 R /Im355 384 0 R /Im344 373 0 R /Im350 379 0 R /Im97 104 0 R /Im51 58 0 R /Im55 62 0 R /Im72 79 0 R /Im116 123 0 R /Im72 79 0 R /Im94 101 0 R /Im72 79 0 R /Im166 175 0 R /Im45 52 0 R /Im51 58 0 R /Im64 71 0 R /Im106 113 0 R /Im49 56 0 R /Im65 72 0 R /Im65 72 0 R /Im72 79 0 R /Im104 111 0 R /Im170 179 0 R /Im358 387 0 R /Im99 106 0 R /Im99 106 0 R /Im104 111 0 R /Im72 79 0 R /Im58 65 0 R /Im65 72 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im51 58 0 R /Im45 52 0 R /Im71 78 0 R /Im246 259 0 R /Im51 58 0 R /Im45 52 0 R /Im53 60 0 R /Im42 49 0 R /Im66 73 0 R /Im49 56 0 R /Im52 59 0 R /Im51 58 0 R /Im75 82 0 R /Im334 361 0 R /Im62 69 0 R /Im45 52 0 R /Im67 74 0 R /Im72 79 0 R /Im99 106 0 R /Im100 107 0 R /Im337 366 0 R /Im183 192 0 R /Im62 69 0 R /Im70 77 0 R /Im45 52 0 R /Im46 53 0 R /Im43 50 0 R /Im44 51 0 R /Im56 63 0 R /Im72 79 0 R /Im274 291 0 R /Im72 79 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im102 109 0 R /Im113 120 0 R /Im106 113 0 R /Im72 79 0 R /Im341 370 0 R /Im385 416 0 R /Im350 379 0 R /Im386 417 0 R /Im387 418 0 R /Im346 375 0 R /Im357 386 0 R /Im362 391 0 R /Im355 384 0 R /Im344 373 0 R /Im356 385 0 R /Im343 372 0 R /Im350 379 0 R /Im359 388 0 R /Im362 391 0 R /Im348 377 0 R /Im354 383 0 R /Im386 417 0 R /Im355 384 0 R /Im359 388 0 R /Im362 391 0 R /Im341 370 0 R /Im373 402 0 R /Im373 402 0 R /Im347 376 0 R /Im355 384 0 R /Im352 381 0 R /Im346 375 0 R /Im359 388 0 R /Im355 384 0 R /Im348 377 0 R /Im344 373 0 R /Im349 378 0 R /Im348 377 0 R /Im351 380 0 R /Im383 414 0 R /Im346 375 0 R /Im372 401 0 R /Im350 379 0 R /Im353 382 0 R /Im347 376 0 R /Im346 375 0 R /Im381 410 0 R /Im355 384 0 R /Im344 373 0 R /Im356 385 0 R /Im72 79 0 R /Im50 57 0 R /Im51 58 0 R /Im47 54 0 R /Im48 55 0 R /Im54 61 0 R /Im46 53 0 R /Im47 54 0 R /Im42 49 0 R /Im53 60 0 R /Im59 66 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im388 419 0 R /Im104 111 0 R /Im104 111 0 R /Im49 56 0 R /Im60 67 0 R /Im62 69 0 R /Im61 68 0 R /Im65 72 0 R /Im68 75 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im58 65 0 R /Im47 54 0 R /Im46 53 0 R /Im51 58 0 R /Im54 61 0 R /Im47 54 0 R /Im51 58 0 R /Im169 178 0 R /Im51 58 0 R /Im65 72 0 R /Im42 49 0 R /Im45 52 0 R /Im44 51 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im49 56 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im181 190 0 R /Im54 61 0 R /Im46 53 0 R /Im63 70 0 R /Im51 58 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im64 71 0 R /Im62 69 0 R /Im69 76 0 R /Im94 101 0 R /Im46 53 0 R /Im43 50 0 R /Im47 54 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im46 53 0 R /Im54 61 0 R /Im49 56 0 R /Im41 48 0 R /Im42 49 0 R /Im55 62 0 R /Im46 53 0 R /Im43 50 0 R /Im62 69 0 R /Im54 61 0 R /Im72 79 0 R /Im59 66 0 R /Im51 58 0 R /Im65 72 0 R /Im45 52 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im113 120 0 R /Im106 113 0 R /Im46 53 0 R /Im54 61 0 R /Im361 390 0 R /Im342 371 0 R /Im342 371 0 R /Im341 370 0 R /Im371 400 0 R /Im348 377 0 R /Im345 374 0 R /Im351 380 0 R /Im344 373 0 R /Im346 375 0 R /Im347 376 0 R /Im49 56 0 R /Im246 259 0 R /Im62 69 0 R /Im53 60 0 R /Im72 79 0 R /Im99 106 0 R /Im105 112 0 R /Im49 56 0 R /Im52 59 0 R /Im62 69 0 R /Im72 79 0 R /Im170 179 0 R /Im49 56 0 R /Im65 72 0 R /Im65 72 0 R /Im72 79 0 R /Im101 108 0 R /Im100 107 0 R /Im71 78 0 R /Im102 109 0 R /Im105 112 0 R /Im72 79 0 R /Im330 357 0 R /Im222 233 0 R /Im223 234 0 R /Im176 185 0 R /Im80 87 0 R /Im176 185 0 R /Im179 188 0 R /Im80 87 0 R /Im174 183 0 R /Im82 89 0 R /Im179 188 0 R /Im86 93 0 R /Im80 87 0 R /Im86 93 0 R /Im82 89 0 R /Im79 86 0 R /Im179 188 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im55 62 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im51 58 0 R /Im89 96 0 R /Im65 72 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im94 101 0 R /Im50 57 0 R /Im41 48 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im43 50 0 R /Im69 76 0 R /Im45 52 0 R /Im62 69 0 R /Im61 68 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im99 106 0 R /Im110 117 0 R /Im62 69 0 R /Im54 61 0 R /Im75 82 0 R /Im42 49 0 R /Im45 52 0 R /Im55 62 0 R /Im43 50 0 R /Im72 79 0 R /Im189 198 0 R /Im208 219 0 R /Im266 279 0 R /Im211 222 0 R /Im208 219 0 R /Im205 216 0 R /Im201 212 0 R /Im202 213 0 R /Im389 420 0 R /Im203 214 0 R /Im213 224 0 R /Im201 212 0 R /Im205 216 0 R /Im212 223 0 R /Im73 80 0 R /Im68 75 0 R /Im75 82 0 R /Im51 58 0 R /Im41 48 0 R /Im51 58 0 R /Im61 68 0 R /Im62 69 0 R /Im45 52 0 R /Im46 53 0 R /Im42 49 0 R /Im53 60 0 R /Im246 259 0 R /Im58 65 0 R /Im57 64 0 R /Im44 51 0 R /Im62 69 0 R /Im68 75 0 R /Im45 52 0 R /Im54 61 0 R /Im42 49 0 R /Im61 68 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im49 56 0 R /Im59 66 0 R /Im62 69 0 R /Im68 75 0 R /Im54 61 0 R /Im55 62 0 R /Im170 179 0 R /Im49 56 0 R /Im56 63 0 R /Im61 68 0 R /Im43 50 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im55 62 0 R /Im42 49 0 R /Im61 68 0 R /Im49 56 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im171 180 0 R /Im99 106 0 R /Im72 79 0 R /Im51 58 0 R /Im170 179 0 R /Im358 387 0 R /Im51 58 0 R /Im171 180 0 R /Im51 58 0 R /Im102 109 0 R /Im358 387 0 R /Im51 58 0 R /Im101 108 0 R /Im170 179 0 R /Im72 79 0 R /Im55 62 0 R /Im170 179 0 R /Im358 387 0 R /Im55 62 0 R /Im171 180 0 R /Im55 62 0 R /Im102 109 0 R /Im358 387 0 R /Im55 62 0 R /Im110 117 0 R /Im105 112 0 R /Im72 79 0 R /Im390 421 0 R /Im70 77 0 R /Im99 106 0 R /Im358 387 0 R /Im47 54 0 R /Im105 112 0 R /Im390 421 0 R /Im66 73 0 R /Im104 111 0 R /Im358 387 0 R /Im69 76 0 R /Im101 108 0 R /Im171 180 0 R /Im72 79 0 R /Im51 58 0 R /Im171 180 0 R /Im358 387 0 R /Im51 58 0 R /Im110 117 0 R /Im390 421 0 R /Im69 76 0 R /Im101 108 0 R /Im358 387 0 R /Im55 62 0 R /Im102 109 0 R /Im110 117 0 R /Im72 79 0 R /Im69 76 0 R /Im170 179 0 R /Im358 387 0 R /Im69 76 0 R /Im171 180 0 R /Im47 54 0 R /Im102 109 0 R /Im358 387 0 R /Im47 54 0 R /Im110 117 0 R /Im101 108 0 R /Im72 79 0 R /Im390 421 0 R /Im66 73 0 R /Im99 106 0 R /Im358 387 0 R /Im69 76 0 R /Im105 112 0 R /Im390 421 0 R /Im70 77 0 R /Im104 111 0 R /Im358 387 0 R /Im47 54 0 R /Im101 108 0 R /Im102 109 0 R /Im72 79 0 R /Im391 422 0 R /Im47 54 0 R /Im99 106 0 R /Im358 387 0 R /Im51 58 0 R /Im105 112 0 R /Im47 54 0 R /Im110 117 0 R /Im89 96 0 R /Im55 62 0 R /Im171 180 0 R /Im104 111 0 R /Im72 79 0 R /Im390 421 0 R /Im69 76 0 R /Im105 112 0 R /Im89 96 0 R /Im55 62 0 R /Im171 180 0 R /Im391 422 0 R /Im69 76 0 R /Im104 111 0 R /Im358 387 0 R /Im47 54 0 R /Im110 117 0 R /Im100 107 0 R /Im72 79 0 R /Im392 423 0 R /Im55 62 0 R /Im99 106 0 R /Im358 387 0 R /Im55 62 0 R /Im170 179 0 R /Im113 120 0 R /Im358 387 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im72 79 0 R /Im113 120 0 R /Im358 387 0 R /Im113 120 0 R /Im358 387 0 R /Im113 120 0 R /Im42 49 0 R /Im102 109 0 R /Im358 387 0 R /Im42 49 0 R /Im101 108 0 R /Im99 106 0 R /Im99 106 0 R /Im72 79 0 R /Im48 55 0 R /Im170 179 0 R /Im358 387 0 R /Im48 55 0 R /Im171 180 0 R /Im390 421 0 R /Im47 54 0 R /Im101 108 0 R /Im89 96 0 R /Im55 62 0 R /Im171 180 0 R /Im99 106 0 R /Im170 179 0 R /Im72 79 0 R /Im391 422 0 R /Im51 58 0 R /Im105 112 0 R /Im89 96 0 R /Im55 62 0 R /Im171 180 0 R /Im70 77 0 R /Im102 109 0 R /Im358 387 0 R /Im70 77 0 R /Im110 117 0 R /Im99 106 0 R /Im105 112 0 R /Im72 79 0 R /Im393 424 0 R /Im48 55 0 R /Im99 106 0 R /Im358 387 0 R /Im48 55 0 R /Im105 112 0 R /Im70 77 0 R /Im110 117 0 R /Im358 387 0 R /Im70 77 0 R /Im171 180 0 R /Im99 106 0 R /Im171 180 0 R /Im72 79 0 R /Im390 421 0 R /Im47 54 0 R /Im105 112 0 R /Im358 387 0 R /Im42 49 0 R /Im171 180 0 R /Im391 422 0 R /Im47 54 0 R /Im110 117 0 R /Im89 96 0 R /Im55 62 0 R /Im171 180 0 R /Im99 106 0 R /Im110 117 0 R /Im72 79 0 R /Im392 423 0 R /Im55 62 0 R /Im170 179 0 R /Im89 96 0 R /Im55 62 0 R /Im171 180 0 R /Im69 76 0 R /Im102 109 0 R /Im358 387 0 R /Im69 76 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im72 79 0 R /Im392 423 0 R /Im55 62 0 R /Im171 180 0 R /Im89 96 0 R /Im70 77 0 R /Im171 180 0 R /Im69 76 0 R /Im101 108 0 R /Im89 96 0 R /Im51 58 0 R /Im110 117 0 R /Im99 106 0 R /Im102 109 0 R /Im72 79 0 R /Im392 423 0 R /Im70 77 0 R /Im171 180 0 R /Im358 387 0 R /Im55 62 0 R /Im101 108 0 R /Im392 423 0 R /Im55 62 0 R /Im104 111 0 R /Im358 387 0 R /Im69 76 0 R /Im101 108 0 R /Im99 106 0 R /Im104 111 0 R /Im72 79 0 R /Im69 76 0 R /Im171 180 0 R /Im358 387 0 R /Im69 76 0 R /Im110 117 0 R /Im392 423 0 R /Im69 76 0 R /Im101 108 0 R /Im358 387 0 R /Im48 55 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im72 79 0 R /Im394 425 0 R /Im47 54 0 R /Im99 106 0 R /Im358 387 0 R /Im70 77 0 R /Im99 106 0 R /Im393 424 0 R /Im69 76 0 R /Im104 111 0 R /Im89 96 0 R /Im69 76 0 R /Im110 117 0 R /Im170 179 0 R /Im113 120 0 R /Im72 79 0 R /Im393 424 0 R /Im48 55 0 R /Im105 112 0 R /Im358 387 0 R /Im69 76 0 R /Im105 112 0 R /Im393 424 0 R /Im69 76 0 R /Im110 117 0 R /Im89 96 0 R /Im69 76 0 R /Im105 112 0 R /Im170 179 0 R /Im99 106 0 R /Im72 79 0 R /Im66 73 0 R /Im170 179 0 R /Im89 96 0 R /Im69 76 0 R /Im105 112 0 R /Im392 423 0 R /Im48 55 0 R /Im101 108 0 R /Im358 387 0 R /Im69 76 0 R /Im101 108 0 R /Im170 179 0 R /Im170 179 0 R /Im72 79 0 R /Im391 422 0 R /Im69 76 0 R /Im99 106 0 R /Im358 387 0 R /Im48 55 0 R /Im105 112 0 R /Im394 425 0 R /Im66 73 0 R /Im104 111 0 R /Im358 387 0 R /Im69 76 0 R /Im102 109 0 R /Im170 179 0 R /Im105 112 0 R /Im72 79 0 R /Im47 54 0 R /Im170 179 0 R /Im358 387 0 R /Im47 54 0 R /Im171 180 0 R /Im55 62 0 R /Im110 117 0 R /Im89 96 0 R /Im47 54 0 R /Im171 180 0 R /Im170 179 0 R /Im171 180 0 R /Im72 79 0 R /Im390 421 0 R /Im42 49 0 R /Im171 180 0 R /Im358 387 0 R /Im47 54 0 R /Im105 112 0 R /Im392 423 0 R /Im69 76 0 R /Im101 108 0 R /Im358 387 0 R /Im51 58 0 R /Im102 109 0 R /Im170 179 0 R /Im110 117 0 R /Im72 79 0 R /Im392 423 0 R /Im55 62 0 R /Im101 108 0 R /Im358 387 0 R /Im47 54 0 R /Im101 108 0 R /Im393 424 0 R /Im42 49 0 R /Im104 111 0 R /Im358 387 0 R /Im70 77 0 R /Im104 111 0 R /Im170 179 0 R /Im101 108 0 R /Im72 79 0 R /Im390 421 0 R /Im47 54 0 R /Im105 112 0 R /Im358 387 0 R /Im51 58 0 R /Im171 180 0 R /Im390 421 0 R /Im55 62 0 R /Im102 109 0 R /Im358 387 0 R /Im70 77 0 R /Im101 108 0 R /Im170 179 0 R /Im102 109 0 R /Im72 79 0 R /Im390 421 0 R /Im51 58 0 R /Im171 180 0 R /Im358 387 0 R /Im66 73 0 R /Im110 117 0 R /Im394 425 0 R /Im69 76 0 R /Im102 109 0 R /Im358 387 0 R /Im66 73 0 R /Im104 111 0 R /Im170 179 0 R /Im104 111 0 R /Im72 79 0 R /Im392 423 0 R /Im47 54 0 R /Im101 108 0 R /Im358 387 0 R /Im51 58 0 R /Im171 180 0 R /Im66 73 0 R /Im102 109 0 R /Im358 387 0 R /Im66 73 0 R /Im101 108 0 R /Im170 179 0 R /Im100 107 0 R /Im72 79 0 R /Im392 423 0 R /Im51 58 0 R /Im171 180 0 R /Im89 96 0 R /Im51 58 0 R /Im110 117 0 R /Im393 424 0 R /Im70 77 0 R /Im104 111 0 R /Im358 387 0 R /Im70 77 0 R /Im102 109 0 R /Im105 112 0 R /Im113 120 0 R /Im72 79 0 R /Im393 424 0 R /Im55 62 0 R /Im99 106 0 R /Im358 387 0 R /Im55 62 0 R /Im101 108 0 R /Im47 54 0 R /Im171 180 0 R /Im358 387 0 R /Im47 54 0 R /Im105 112 0 R /Im105 112 0 R /Im99 106 0 R /Im72 79 0 R /Im391 422 0 R /Im48 55 0 R /Im105 112 0 R /Im89 96 0 R /Im51 58 0 R /Im101 108 0 R /Im391 422 0 R /Im47 54 0 R /Im104 111 0 R /Im89 96 0 R /Im51 58 0 R /Im101 108 0 R /Im105 112 0 R /Im170 179 0 R /Im72 79 0 R /Im393 424 0 R /Im55 62 0 R /Im101 108 0 R /Im89 96 0 R /Im51 58 0 R /Im101 108 0 R /Im99 106 0 R /Im358 387 0 R /Im113 120 0 R /Im395 426 0 R /Im396 427 0 R /Im82 89 0 R /Im173 182 0 R /Im176 185 0 R /Im81 88 0 R /Im176 185 0 R /Im179 188 0 R /Im84 91 0 R /Im175 184 0 R /Im80 87 0 R /Im179 188 0 R /Im56 63 0 R /Im69 76 0 R /Im68 75 0 R /Im53 60 0 R /Im53 60 0 R /Im43 50 0 R /Im51 58 0 R /Im44 51 0 R /Im62 69 0 R /Im69 76 0 R /Im62 69 0 R /Im68 75 0 R /Im45 52 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im53 60 0 R /Im44 51 0 R /Im43 50 0 R /Im46 53 0 R /Im43 50 0 R /Im42 49 0 R /Im63 70 0 R /Im42 49 0 R /Im46 53 0 R /Im53 60 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im68 75 0 R /Im65 72 0 R /Im62 69 0 R /Im54 61 0 R /Im45 52 0 R /Im51 58 0 R /Im115 122 0 R /Im68 75 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im69 76 0 R /Im45 52 0 R /Im62 69 0 R /Im61 68 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im111 118 0 R /Im45 52 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im68 75 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im45 52 0 R /Im72 79 0 R /Im57 64 0 R /Im51 58 0 R /Im53 60 0 R /Im62 69 0 R /Im75 82 0 R /Im49 56 0 R /Im75 82 0 R /Im51 58 0 R /Im65 72 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im53 60 0 R /Im51 58 0 R /Im47 54 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im62 69 0 R /Im69 76 0 R /Im51 58 0 R /Im89 96 0 R /Im44 51 0 R /Im45 52 0 R /Im51 58 0 R /Im61 68 0 R /Im51 58 0 R /Im47 54 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im43 50 0 R /Im49 56 0 R /Im63 70 0 R /Im46 53 0 R /Im76 83 0 R /Im72 79 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im43 50 0 R /Im51 58 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im68 75 0 R /Im44 51 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im68 75 0 R /Im43 50 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im43 50 0 R /Im51 58 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im62 69 0 R /Im69 76 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im61 68 0 R /Im42 49 0 R /Im89 96 0 R /Im46 53 0 R /Im61 68 0 R /Im42 49 0 R /Im53 60 0 R /Im43 50 0 R /Im46 53 0 R /Im76 83 0 R /Im51 58 0 R /Im46 53 0 R /Im54 61 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im46 53 0 R /Im66 73 0 R /Im42 49 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im49 56 0 R /Im99 106 0 R /Im113 120 0 R /Im170 179 0 R /Im171 180 0 R /Im109 116 0 R /Im72 79 0 R /Im50 57 0 R /Im48 55 0 R /Im51 58 0 R /Im53 60 0 R /Im42 49 0 R /Im44 51 0 R /Im44 51 0 R /Im51 58 0 R /Im45 52 0 R /Im46 53 0 R /Im43 50 0 R /Im65 72 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im51 58 0 R /Im54 61 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im68 75 0 R /Im44 51 0 R /Im44 51 0 R /Im46 53 0 R /Im61 68 0 R /Im51 58 0 R /Im43 50 0 R /Im44 51 0 R /Im42 49 0 R /Im61 68 0 R /Im65 72 0 R /Im46 53 0 R /Im54 61 0 R /Im66 73 0 R /Im42 49 0 R /Im43 50 0 R /Im75 82 0 R /Im51 58 0 R /Im53 60 0 R /Im53 60 0 R /Im42 49 0 R /Im43 50 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im46 53 0 R /Im44 51 0 R /Im72 79 0 R /Im168 177 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im69 76 0 R /Im62 69 0 R /Im45 52 0 R /Im61 68 0 R /Im51 58 0 R /Im45 52 0 R /Im47 54 0 R /Im42 49 0 R /Im43 50 0 R /Im51 58 0 R /Im44 51 0 R /Im48 55 0 R /Im51 58 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im43 50 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im47 54 0 R /Im53 60 0 R /Im51 58 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im55 62 0 R /Im70 77 0 R /Im51 58 0 R /Im44 51 0 R /Im75 82 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im51 58 0 R /Im43 50 0 R /Im72 79 0 R /Im56 63 0 R /Im53 60 0 R /Im53 60 0 R /Im111 118 0 R /Im66 73 0 R /Im68 75 0 R /Im45 52 0 R /Im51 58 0 R /Im43 50 0 R /Im45 52 0 R /Im51 58 0 R /Im65 72 0 R /Im62 69 0 R /Im45 52 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im42 49 0 R /Im45 52 0 R /Im51 58 0 R /Im54 61 0 R /Im68 75 0 R /Im61 68 0 R /Im70 77 0 R /Im51 58 0 R /Im45 52 0 R /Im62 69 0 R /Im69 76 0 R /Im54 61 0 R /Im62 69 0 R /Im55 62 0 R /Im51 58 0 R /Im43 50 0 R /Im63 70 0 R /Im46 53 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im51 58 0 R /Im55 62 0 R /Im46 53 0 R /Im54 61 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im68 75 0 R /Im43 50 0 R /Im42 49 0 R /Im54 61 0 R /Im55 62 0 R /Im43 50 0 R /Im72 79 0 R /Im117 124 0 R /Im117 124 0 R /Im397 428 0 R /Im398 429 0 R /Im399 430 0 R /Im400 431 0 R /Im401 432 0 R /Im398 429 0 R /Im399 430 0 R /Im400 431 0 R /Im402 433 0 R /Im398 429 0 R /Im399 430 0 R /Im400 431 0 R /Im403 434 0 R /Im398 429 0 R /Im399 430 0 R /Im400 431 0 R /Im404 435 0 R /Im398 429 0 R /Im399 430 0 R /Im400 431 0 R /Im405 436 0 R /Im398 429 0 R /Im399 430 0 R /Im400 431 0 R /Im117 124 0 R /Im117 124 0 R /Im117 124 0 R /Im406 437 0 R /Im405 436 0 R /Im402 433 0 R /Im406 437 0 R /Im407 438 0 R /Im408 439 0 R /Im405 436 0 R /Im397 428 0 R /Im397 428 0 R /Im407 438 0 R /Im405 436 0 R /Im401 432 0 R /Im404 435 0 R /Im409 440 0 R /Im397 428 0 R /Im407 438 0 R /Im402 433 0 R /Im404 435 0 R /Im397 428 0 R /Im410 441 0 R /Im403 434 0 R /Im407 438 0 R /Im410 441 0 R /Im403 434 0 R /Im410 441 0 R /Im403 434 0 R /Im406 437 0 R /Im408 439 0 R /Im407 438 0 R /Im403 434 0 R /Im410 441 0 R /Im403 434 0 R /Im117 124 0 R /Im117 124 0 R /Im411 442 0 R /Im412 443 0 R /Im413 444 0 R /Im399 430 0 R /Im414 445 0 R /Im406 437 0 R /Im415 446 0 R /Im59 66 0 R /Im51 58 0 R /Im43 50 0 R /Im68 75 0 R /Im53 60 0 R /Im44 51 0 R /Im43 50 0 R /Im75 82 0 R /Im46 53 0 R /Im44 51 0 R /Im48 55 0 R /Im62 69 0 R /Im68 75 0 R /Im44 51 0 R /Im42 49 0 R /Im44 51 0 R /Im45 52 0 R /Im42 49 0 R /Im54 61 0 R /Im43 50 0 R /Im65 72 0 R /Im62 69 0 R /Im43 50 0 R /Im46 53 0 R /Im44 51 0 R /Im46 53 0 R /Im62 69 0 R /Im54 61 0 R /Im44 51 0 R /Im42 49 0 R /Im70 77 0 R /Im53 60 0 R /Im51 58 0 R /Im72 79 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 413 0 R +>> +endobj +413 0 obj +<< +/Length 879 0 R +/Filter /FlateDecode +>> +stream +x¥]Ë-¹U÷WÔ®N=3!`B@ÐCOÀnc_ØM8ø{Nn[ZëhI9¹u£¢¤¶ö[koýÏwÿúñ?ß¹¿~÷ø÷3oËÇò¹,õ_·|n»ÿÜ·ø±ºý3<~þò÷ß}ÿO¿!üÿû×/Ï-'X?}?×øïýçâëø}¿Á_ÇXVálüãçëûnñ× èÜòXHnw°*KØ¿q.%¤í:þñWù:¾¬É=ÆIññ¹Ü¯ãß8¿~¦¥ßP ý¾|?E}ü&§ëñ8Óø¬¯?-Ò÷ó§o8ðy~±ÐãS ùËú߸¼"púþÚ¬ÿÁè Wö¿ùûÛ"}ßæËþÝñʶõ ÀCQe°�&Âî¡nÉð^ø,ÃÍ ° üÐn` NÐ¥¡wÐÐ-d§èÝ&rQËÅÏ-øps">ÄÈÔPRÅø±,IÛñ¶_z8¯¯?!56°þ%5ú8_Çg¤Æ³Ç¯Úø~R±¡S£~j¼~ÎÒß%ú35]RãìûÁÿ²óñ_{~éÓ_ü¹?ª~Ðo˯ñ ÿ²óÐçÆÍúà àü ~?n`|jöÏä7$ÄH~¯ß?ܨåX!rþ9IçO׿BùkÖÏxXEî?7LÜØ0J}ýÈ%BÞÓK|aàôexKE·H +) èI±8 z$À(À`$XÅ�pÃ?t|ÒxæÅ¸JÐÚ·óKHB+�é35^àó�rF´*�IàsЩÑLãtP Å2× ¸â¡e¢ðñ[¾M\Aþ2ô«{xÏY6bÇäcZ ´ÇÈLAZPDàÛ5¸Q¶ÉAYhé¡óR£A3V|ìåë²9qÞÒ" }n+fÇ¿PQö(]ÈÚ +bCðkãS0Nr5¦9OÐrRËËßrèd¯Ì%H²ñÂËá3äݰìÂã¾clH°6ã-»Í~Øß¬¢G@Nq4?Pã¢ÓøÖ*ðôJ0ìoÍr+ì:B· +q�a^a'è~Õì ÖäH»]y =@ñ^<�Üñ8¦ CÈ";ýK½ìØøMO â4ãÕÓ'¸p°^Ëà;À@~îáX !¸^>ãV&0:÷¿9mÒ`7i°\H'Ø£FDÆaY$6`¼$XZM@M5ÁrÖ#zÄ;IhîW`Ú�ŧ¯Íy¼¨1å<Aã�ýF4È£Sèoç (¸!9ò.5ÈS÷!GÉ2 *¤EdðM�L°9mNÃ-{ÊÅ{¼ÇÅ;"tÛ¶7^ý3KR´¿ ´i&`:W4ª|kBÀ#9 +èª D¨Å¡hü¡^3e5Ó Ê°*¹DA×Å%×" -'Û ±Õ&([óä2�|°ÉñeÌÝQ>àJÄO '[6 Q¥d%ö1(F¦Ot2£AÂÁlTC~UkTSSS5Í÷ôÕ¯k¯ hxèðð<æU=à3X@]Ñï[pÒû>ϲlàû~m:]@÷`¤»�â@;@,µ±ËÏ6?ÌËõû~ðÞ£â/ÖCËì�ÉѬ +PÝvìü²9@u»ÆSÚW 8|ãò÷yëV1ÏÒÛÝñygé?ãeËÓûY?ÝkmnÀmÚxC¤�O²ìÓGP̹7æ¼�{#é±EXä¼~=¸«èËx=?Èî¥DÞ£'°ôfí)AJ¿î¿¡KôÉñýØKó l77°k`ibo®Ôåû²;Zá+ïËð§°$ nl�óCjv¦çÐìGÔìÈÆ¯wZGÎ/Zñ+7@Ǥ(1 O¯ Û;ÞËÖCrçu¹ äÎkÊÎ$÷S¨cÂ:HîëÜç%´F^5YòL]¸jÅOã[ÂÒ®ÊÐy¼îIä²~àÆ´wÆÏýÇ`ã¿Ò/ý®-rZÀ@4<ØÀH4g·½Ð´Þ R,»»�Àâc%âÖ|¿ §ém8/ã ¸¯²õûÅý·JºqË +ƸqU¢Ñ³ÞrçñÑ´÷«(Ä{©�ÿö~?lÒ÷9>V3°L%ù}Zn +ã¾ËJÑõn;¯è%Åoi8RL°j\Ä ~ËÀ¶PF +Ø!Ù�Äéñ6ÁÎyqCÎÇ£ý£ñójRïlÚ�uæí¹h + ñ rY\½aàZMLÐn/TFþÜá³&ѰÅV|=rÕ×'6hÉä+¢°£ï#KLèoaDþ,+hn ¿fvÐÐÌvÅæ¶[¾tôH éùèµó§hø�cfýÌÑGÂm N4W¤,ºrä5!jÓúô�EB0ï\¯'ÄÀ~+T ²+¡C +_Ä-½¢ñw×"´bGÁ¸^NJé$ÝT@õfs\Õñ4Õ½n6Ó ±¦:Ã'Ð*K]z»�½ ´Ô¥ãóTAhK^<@ñrA èûíÝ<ÍE$sâÓû«m´)uéþùýÒR¸5 4´Y&nËà�@N°;mxFBEg"¶e~DÜÄ5Þy4^Tä¡"�µ |m~#+i AÔâöë +Ú´ ++g©Õé×ôûH¸ÝCÂÇ _Pøo®`uÚ +Zn°"ZÃYiàmÓ@ãª%Â=ÈZ1,pzyYpñ4¼®êúÄîê¦95Ôæ`c! -`¡mÖacå²O³¤X;!+~[ç¥@I:ÊÝë +¾¦]N4(ËØ;Ý=4ÔuÏíH*°/Oåå^NÁ¶âÀ¶b½²OsuE%EqPp®®(ú(§ÛaX%)c°'MÀéñ�´�(ÊaeA1Z;eAì¶"¦4i{[AÇgäUè·1'ôW7}Ï(}ݬã¾J½¹Â4˲/¡Yæ<×Nì(ÈÓq_¹Ý,EGÒRuEúaäcª±ÁCÞ!é s Nâ$nÌÕ<kùgs¸±Z¥~ù¾ù§s¸1W8sÑðãq7ö\Ä9ÜXA\(çÇî\N`¼+Iöüpc®:Bq7V +RÈÇÀx7ævÃÜĸ17æoâÆ|ç¿óÜ:jm·àôZ¦óï/)T%vßúA<UÀxݾR~ô®¡¦JëÎ]Ö9+m½/»\`|{â°±*ï¯ëi LFë)ÂYµ¼éj¨í-xKùXWùUÏ@=2Ò´~¶SÂÎ)"øã3?ç=£cº1ø\@|69(÷1�6�%fÎ}MÌ\V�ª:Éj!Åe¹Ï;ÚRføÎá!¶èй2°N ô£ßà1äÛköBiUæEÞön¢â° 3ŬÝÒHðò h¬´ô:ÈÏL±Ú9RǬ¢k°µ8ô²`,kâHÝвÂ^jäê-èô)` ÐÓªaµ*ëP:{®æ!¿í@'xȳ4m º#ÿràïlí#ËöB½®ãéâ-Ë�eÅvwtP[ðÎ(ÒâÕraÂÀ^x¹Iní\ÑÝí¡4ô(åâþê¦ôH¢}§}#2Ti}#VÑ2ÑN§æDYÄÂ@Ñn¡%"ïò¹¿/* ò&7}Ú¹bÚÇy¥N»>N§wEÏݧG8Kþ{g©:íôîx:m¿ß2}ø¤¦NÏã SjÖbãui)Wß×f1Kû§YäÐx½³eûo´�oÍil²¡[}¸¤Ç?´mDM½vºñÌk�ßɼnèüe×ÔíhÿJÖi®ÈÛÛEçý¶L·°¤Él?²ÒS¶Æôv}ØiI¼] ?ÚPÚN(,@ÝHé6øä$æm#ë6øD@G½ÚFLWÛѶ!5í¸¼¿>¦ßß4LëEwhô®µÐ«ÉùW7¨Û¡ÙLIÔëãÎú'êõï¹-*zuAÑ4䯦hHS,ú0zö!ôôFDûo¾:�¶ +ɹ[\`hýC�{YÛ5)n^ò¡yÜ"ù°ÅV¦øäjt¶àeZ1ð@Cl L!eZi 20+Àu<T zô@ÒZY 2X-À{$O§ ú+5"õÑDбacEµ/ï°ô�6èÂÈw×¥ÎMa�ÊÛ~+ÐÑÏ,Ï¥Ìið:º`²�$¾¯#ð¨Àyea:dþu»þ`KÖ@ÌÆÌ°ÿ\ÆëØàÀx¥-wÅn!ÈåûØ_Ǿ;þõ²:â<^ï¸â,K{Ì¢8°ÿñ,JÚÃÖþ»Î?[øáßzçdz0Pþô¦Wû>IÿZà'åïòtl9À©9n³ñ_0Ð1Ç× ¤É9~¿9AHhèM\� Úâ×þ¡³\\A=.f0Þúzìy<èäͪ}}ù+ Aµ/ 4<Q& è£ pONq/»lPÝ÷Å×x p!uΧ\&@ÚÕö4^%ZP+hú3¢éSôtÉýf5L½BuàŰ`϶õ< +J¨ôÃÇ-yô´ÞRè!¨Aa9Á<õ`Rz'!!Ð_Û&�«++hVº2ZÙ·8´*j©>ù{Wi< +³hÏÚgÈrCôT\ +VÀ8=LÂLGö9d0ÍÁcÄ$ÐÏ yéÌú:Áq½ho ¥p.lixi<ãý muËfðx ²b±¸O*^fØägféhÛ.áòôUÉ1¯Ox'Ø"ÐDD°�$Ï ¬åure;ÈÚÚCØíqsïÃéu¶¶ umöôÝeBÂÆW·®GPý`£ðñ6´ ü¢.ÀCIhÀHèFÂöm<£ì<#ù¤ê{¢}ô¤ø§áú%IðÏ_:qY` `ü@Àbãß·ñõôÏß׫¬ßGoý4CäS/µÊS8àÀ÷Îìß®Hzûç8-ØGoJ]3úñïoÒ÷ßá¼úñç +¾¯gè]Öø7%GôW@*u¼vþ¼¢¡«]Ä.ã ¢¦ZaÑþeÐô+ÃØrY"â?cP;õõÖÞ%vG}{¾ ã¡þÑs*$Ö®x¿ÙúÅ©ö¿a<zçÏß6Bú£Õ_$ÄÿúùeÄÿ ©ñ¿~CPß&êñ?Ó_~¢þbiIÆëò¿Cû£wJZ4ùã pý(FÆAý¥cd<ú~»~Þ+ËW\ÞB(H¨^qvÜ_vE @qrËþ2ú¾îÀ Us èëæ@QîÀ{ßpÖF?þfò¬«µoÿªÄý[BTtÀ +ßP�§£´£h#?t¼a¼ú¬?¢�?Á¸AùÀ¸%À(Dí2vôá=é2Vøåt?+Ãô£u Ñê }`C4za¬Ò-^Çõ¾¼ ï+EÔ# ò7ájGù ~ÍþYSKÅõG8öà\ñ<Þ/rÀ¾ïû¶I«VtæA>þf½Cg÷ÂÝ´O«ÕRÈåΨëB{ à �Àà:Áb¹üC¾4[Tâ°T;®¶¯+ZâïÓeÄ-Î1ôæ É×Tt}l:¢ \4j®TiùEå\Ì·© ¦ «zùºÉ¼äð4¾5«¹ñ«É*fÑxô} «Ø3ùt¬h@ô¨xøþ�Ö/F4^ÏFSÄçñ¯| âµ_îv$/æq W;®]�íU©Ë�Ö¤²³Ï Í +wh*xGRÁ,©1 M-H7G¨Ç4f©Ð¾�³ThÝ@ôH ô}½Üªà,#X"l·r·üÈ©ôúÂ,ÿÖTfùxtþúû¬Þz ]ÆKõ²O¬ïÆ ¼A£¦Zð¶çW´^{DSQ@¿K-/;j +ô}.²'À´^z�¯ÛM~H*+ä[ +°>³Þ;? +-LáØÈløë÷G°âV=äU Ez/ �¼ ÊH°Xh·B,ßróp½yÑn«? GwyXç<| c¿³»Ð{Û±»¸||Î^o¹î` §àÓ ´¥Ö[d"%a¸K ì Fc7=J¶ÆE¼æk" +rÐ͸«nÀ´¬«vH¨ØÚïñ�Þ¶iG»ÞxOêSïÓ$ôÖ~kzÞ!1@YuV6'Ð!Æ%PÄ uÞx>V&z8%ß +vv5?/@è[^ß%[Hy ª÷¿Y� âmrkÒÁµ# gÕ¡{çâ-ÜgjH?n*¼`LàYdN6GÄ£}äµw¯#þZ¾åÓ{CdBÛÆ|Ï¥u)BÊ.er^½+G×|×]ãBz¨Ëhh¹#]¦Û³`yt-2½f^ 2l-¹I92=¨6sÏï¿,ú¤[Wê¦néÂR7¥í�khµ]M@¡"/ß~Î 3tËI4'üÝö{&½>É6íÖÅU´GT¶å[Wз|¸¯OÁܺdeسn]Z¶{bT{ÊÌ*óä 9Òݺ +(ÙºÇÚÚF{ùÕlý/Ö9ÎÕ,ïñÂRrs¬`ÂZrsÝÁ@ÅXð2\ì¬ +þrdæà�gÖøôîÌìÐ!!}Ñ'Yñ4^ÂRø(ñ�Î.ûOH3UîrzgU£ ]ÀK×÷ÂM¶±É_*//Ô<ûN�æ:YfÓ )JRDÃcï5EÊ,¯Õiº%¨mºLHW*dc<T:ø¤ð�SdÞÀ§]EF`½y+Ö²5ó»gÍjâYERºK'iàY %rx P¬úæýUå{°&U=6¦÷a¹eÍB±ÞrHzTèÔEuHЩCàGBëÔ)tvu +A»zöØtïéj²´·�ÞXfÄg8ÄÐèÖ\NAtÐ ¬À/7Wà¡:nW@ÁøjÓÎ,Nsíù«ñ«J²ü²$ìV hDǯAÏ_×äUF{óøB@ßßwMòCRÍÞAízÛßvËRÅ1õܲ^áç¾uiIE¦\ÝdØÇ^¶TOvúþ@h´¬`ý¡õé;@ñ(øSü8é9> Á@ÔËßÓ h úõµ"Ä÷ò^SÁ³<TQ³<´nñø~Ð]BWol.Ô1/)\'1Öènvµ±ÒemdD7Äðï »¢zgÛÖ"¦È7ÿM ÁHàZKD)DAÁXU"¨ùÎx~`Sõaâbè±1DyB¡ð÷Ä0ÈbH�waÅ,ÀZÄt@#;Q)~ ¦Ùfý©aÒ¡ +º5dá}ÖBË¡9DQ F¯Ú2¤DçGÂ)ÞoÁ+¼ï2yà·÷É+ºôH +áNwÌi»FAYÆ(Ê1NTÖVW9¥.@;VDaϯ§<´"{>ÀC +,xhÅbXv$ï¿çÕ¾à}MØÌîÀÑq¯DÄÍõû¨×n ìGçâóçutÁK×Õtö.êy#Á½E¦§ñ00cÍ,.:M0Yú×ý±ÒjAÚ�myhÏ'Ð9ø>è±ï´à% +òäÂ(0\ðhz`éjtR]½ë¸PP lñÖ¦+³RøJL2qÉ RÈ*<*Ù +MÔ#ï_ÖéJ;_û=LA cÎî -púÝyEõÎÞþgÄE·ÿY<ßXÓ-A®ÏâtIH3Dµb³#ÈåPÇ{btZ_³<\ºÅåMISø5ìÊ!ÝAØïí Bs4P`=¬]Hx&äèY¶àèrò~KC-µº,@ÇÀTXu× ^SDÇoJÉçLô5S«?ö½#s¤#:㢹$| óKODÉ# ð´+Á¹òË è4+oRc-ìSÜG¤G·Ø6Ð l "z¦72âáS\! uÏ{ÐcÊDÛª1/ä[´ä7ÉÞ¤Êq7¿1ÉE¯üFoì6ÿ<Rq6%ÇVö9Dé~¸aÅu[¬ó÷u)vK¾µþú°Óe-ý)øÀ6A?ÃÑ):O juÅy<òq Gz ¼ô6Zõüü~x~ã&Øí4$hz ¯FÁ.¢«ÁÚÂâ¼] Ö×È.±«½,á +¿÷Î`_µÐn`V0ÛåB:µÃëNÀë3²$´8À{Ó³ÅVÑ;Ý$)"ߨý°zLDÑéòôaIAÆaÏòû°v°Ìgté×úëê3ü=AöRE9¦}1&ê ©îû¼ Ð%ÑaH%G£2MREÚÕù�YTJµ±^ èÒ hM:\^!|þi¹çTQëP +æÌ")¢WFW`/uWÀsDI# +#Ú¿)ãÁÒû g pâ²Îr±%¨ùc#Û´&9êKdH Ái-ÏÝ/cÄÊ\?.&b-PIôÛÓÒCãA¬i¢iW1Fï¥úL¸hKj|D¥;²¨º9H/M0ÉEɲӿ%É5MÔÝA/MôøÙIaeZ±uVâºômKyÍþV°åÉ&ë=o` >ÀÐõÝÐ4]0 Æõýïë +dìä3 dìb%ÃõÖ^¥&ÒHXÆýJ9Ûë¬Çaxãòó¼¹kãJÕÊ£Òð:Î`¤×è§»Á@L¾'ÉÞ2í³ìk¶'G4BõÛ=I.P¼Pf¿%É>®Ñ·R6+ÞúÙtåWÊlª$³LM°¸ÉL͸Hé²h¹¦mA'×İ, ]OKrXnAí1{Ë2mÃˤNJrI[ £% qb5Hþ½kÍkmö[69ä¨iS^k³ß³ÉÌrGn£.¢l¼/÷ØØJO§1.î ¾2;5º5©Ï;=v õ7Ä[£×çIÔÙ8¦U5©O=°':Ì<fÕ'xféZTFIZËÓñg¡ÉQnm¥1í×VÓ;p¢*¢å2&(�ÅQ4ÅrËxÑdå6a]¦�Mòd¡/O±ÐNrZÞ«¼mú<ÓøNÖ¨ ÎåI¬%Qo<Ká!ôêt`úÍæÆ¥Ù§DBæ@$HsäBä¬n²;/ØÉòz'!í§²?EßB!( ÆÒ¬#Ðõ¹GAÚª²*âÓtcêâbÝzY@oUéwíh£Ç4á@£Ç@ÆûtóÒÍ#Èâð öy=PËuÚ#4ÌÖoS_aaÖ¨ä8¤3 8)^)I&z¥8ÆÍil·`/w!OÀ´.ÝÞìàøMu)ýWuØô1¾¸dO&¾L�^¼ß/ÆäxºØÕ[øÓ[õÍ[ë67sêÏ@á±v .`+Ýgc "ãÎ[�·d �.àÊF65 ¿N�[ÍxÕn `èK¼}ë@~]P $lÝfó +ÛÁÎ� 6¢\bÏÕûít 4èçámº=÷»¯hx£èsåK�ãÛçÊùø,gåÖûÛóøö±\zóç6D}á±^{Ü{0~àµòN¿}í´<?ùµéòW¾O_K7o¬Ç?ïªv|ûX0û·ã{7¿ãç_PÿQúÛ=ùÛÐþù1þµV6=þ¥û7�Ioÿ¾GjDø'wtÈkõ*ÿÿkyÀe<àÿCÑ/ëß7(_ïû~ÉK?Æ?¥¹£Â?týò¿Þ½ÁªÆÏãÛP®?&qý$þgòëf?÷PÜR«ýL_Ïòcçê/]ûÒO.Ø.ë¾£½]²õéOè·WþûJ?ç@F @Ô |ˬd,£Ôw@ÜÀkþ#½hÆ +HfàÕ2p·¨ã¡�Ê\))PèÇF@Ðù'C÷_NÖÀy¼szGÈUõÀÈXóiÞª{Ða¬Ã,ò`ñú㢠_Ð÷6ùµ�}¿ Zà¡&U%s±à tôÃDëO ¡Lî§#R �1¢>u1ëE¨@Zú¯ ýêxd@Úü kÒá@(<<þ_-`éòý) ?!ô_µYð¸Õè½Dù&@t$î³�+#üý´ B÷@U#õ=8¬¿Ìèú×òo~}_AÀÈ·Ãá2õvSë{p +O?ò;×ÓGK¾ß{ô²}Ðïï}¿=<>.íþÛð¦ü¾?>²× /ôHeéû¼ ¨ßGé3rþÓì?ïÁ÷Q=*9ÿèÒ7ôÙyü@úlöϼ÷ÒBÐ_`e»)¼ïÉå?+Õ~~ß×ÓâÝx½Ò_ï3ç£àÎÇÃxç|ÐôGçצÏxúkôG3xðýöþWl¬¶ÿ÷ðR&¿¥bC_þ²CûÐ÷Qð@ø'{üÑ÷[þeÎki¬Î¯Ñ_6¨ÿô³ßôßÀùíÈþß¾¯Ûß°@ý+¿aAöO¹>¨Ù«{ô^¥É¾xÍ~Qúä?)ô³ññü¨&ODù§ÙÃùG¾~i·5ytÏÿ Xþõì¥U{õÖÏOèûJðfÁëé'�±,ø6dúÙ~ë×¥=âûôdû=´²þ.ÏOÜJ}Êø©6âÕßê=ø¢ÿÁ_ZôOK3Z¿~ý¡þÑã÷5ÿîß ³òúK9?þ T@οç¦åÿùJ~MêäîÙÏäîù»Ove÷s³èå4\×^»_×Ïô^ËgWß½mw}¦·|»×óxÙvçiõÓÜU@ß×m·³G¾/ßm·³L¥hÆv»ªûOß×e¯O{맹Ǫû'¹ÿûêðý~Í}u¾Oé5úqèWä +Ý +Òþéú7M~yË´~Ýv»i¿èÎÔn»½CÊ[}JcØvý9ArÕ÷Tß¾ú]ýMèÐ÷õÜèüQîåȬí¿ÍÓÜ(ÿtÿé¯ý¯Pÿè¾YOØüÐÜ=Ö1«¿=ÿÜëì{åÈ+$¿è¾ÙÓ[?ݦ¿Yî»Ô�ý£ç~ þ@ù]:{ ý¡ôP ö·>dçÿÐï»[ÜMÔä#Ç4÷_Bü¯�'jîÍõ·±»» Ùî.Nþc{wCKÐÖ£ÝÕùû#¯Uþë<sBÛülÈé »#Ô£ÒÚâL°ÈÕå9åçu TùµCË @ñáJï¢ê5¦ùDåÏ e¸¼V¤Å lüvKD¨Côûëc(93¢¿^~QØÎưÑ^ÈèŰtÿôAtð×b8ÝÆ]9øLµüUóo1ä+ÿ6É¿ ÆPº «ýo{6¬3çlþí4|<ÿv>;È¿¡Ïä¬þ2^¾ûuVßÛ>/Òx¿©Ó£Ø£¿;ï_Ç ¬ t0ÿs^¿^º4úQþI+ú¾\yáêÝK~4¹Züã[ÝOÏEü«Ço¥r¼¯`ëëL¦;ë?êÛH=úwK;üC±3NS¼Æÿ4Q+ÎãåÒqå¤t1Ý£¿uo¦DôÀ.%MÿÑücÍO¯Wþ¬c¿èúkéáìú×MZ?ïs4»ÐÿµõÄ%ÿuïPí'©½Ü!ëà©E#�OÕÊ®Âà ï£<+= +HéO/ðÖyÿ³b5î@¼J»ëñHjßËxü2t`dZß2ê)PJ?¨�ôÞa»)?ûMùÙï?òÏ!ë�eéü)øÅ£ï߬9phò!hè»ä¦Èú£Æÿ4y5òOBús�ü`�«ßrÀoÐ�¿YñÙ�*®þãà-¤¿Ào;`O(I~iò÷ü¥ÙöørÀôäßü5ikåcx_;Äo3é9 ×Oo3á ïkøµoÆyñ2í+vã<\¯«uÕó~ÌX~7¤ãÝÖnÈúëÝkgý<÷ N¯U=,vtÑOÝ]½;írÅóë´ ;oöÏsOh¼½xµý:Û>¹j:ÎãõºáZ·0Ì?u|Bâ+÷SwÛÑ<óÂ? iîYè*nø¼~½íT;è(?>Éo;æ.ú>èÂÞWzÿ´ý=Òþzß¼ú(ø¬. wÐGhü@ò¬?Þ3 >i +öªà±0Wøâ3T�²ýôµmOgÿ<ù ¾¯_ÜùUshß¶ ù¨3¡_íÚ3éøHþBòÀ_lü*É?Í=ù @ +úCwBÐøæ"Zÿ@á]BÌ@ábôÛæ{vήE�r@ÈùUðhWþÈùmþþú>ʽðãô·^økãó÷uàÊõÏÀ÷2{qCé]G{H¢Ç?¼ðê_ÙÿPÿ."þèºÿ5Ðu-¡ïä®â½p<f¿ëÀ¹èÜíªé?ûÒøî_Ô?x¹/�èy½!xþ÷<ÍÏìU¡´®ù¬Ï'1j Ñd¦ýÝϱS¤pLáý)Z[j@ +ë¡U^ÇY¿¼Q'\äJÂÌ%ªsË· ÀUnl&xzÓËAÅZÒS'�Wy©yÁ?Û@¯`åcÍW,ð¹æ¼^eÁ4ðQ§ÁÙçi`9. x{óó̽òFhÑ)ÐÀJÚæi`ý\æi`yÍ+ Åx¬ ªnõiiºQ®¾ HÁ9µÄ»4°ú< HÆaÅ4[Á¤qÛ]ì" ¸i)^fxoZÆÌ\yfþê9·e#oÌÉïÇësÎ.N*=³j'¡$OßòU.èí¾|Զк-Çõù¶B̯<!û +ÞÞq¼nAH<Ö ÖDhÀ[é¹Þ9Þ$bi@½Õì ûjhñ +ì ÚÉË +ê¯jhoBXnBX0 Mà°,HD<&@+`å¥>¯ }O°Á-qB7O!B¥:° ªpP'¸»ZÛ=ËTÞe´2=F{Yuþ÷»§«~ +×f}wç1èîDú*mSûo¾ÊSÁçSzÝ/^¿Ãf8Ã^'b¹ÃW pád1½Å1§ ÿÚâ£-Ôúë +ä_)0xÕyÅ[²x31ò2|ÍíCÝÂ×wÓþÖ¬Ý0rËjV:¿ÏrÑ[æÎP]Ì[{êËúeÅXÛË^Ö/#<½¸÷öOK,2¢ÿ@ §^¾?ÐvöOa +¼hDpàu(+Qìñ¯PðÒþé-[Ðùë-:ÿö vËz¯ßRB¹·~Þ^}_GH×Gzûú£$ê-myº~%ñJãtø®?%iý´ÅÁÄfå·´·Uø_Ó½[âYùo;óOH÷äwü§ßrïHÿ ¤<¾g¿è-ë%ûÍÛ{ æë-ÓßÿðÝ÷?wîã_?¬XþQoÿùá÷¥{ߦõñ7¿úøþãÇï~ûËÿðÿîã_þáçúóõ¿¿üñWÿñÿòo?ýöw¿ûøÅßüòûñóÏûíÿùãúøÙÇo~úéO÷ý÷ýë_?úÍoÿòùúþnÍ¿þó¿ÿá¿¿ÿÓ_ʸÏßüôûßýíÇÿõÝ?þðXÝÿj» +endstream +endobj +414 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 880 0 R +/Name /Im383 +/Width 30 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÃÁ 0á_Ð<z(u&o=¼AWÉ(Ác4¶Rüà£J567L²áI$x x£Æ®tåó +Ü¿ÿsúè¿MXËçÕ¶*qÖ*GeR\¿ìtF&X +endstream +endobj +415 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 881 0 R +/Name /Im384 +/Width 23 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]Ä¡ 0ÐON|yeSªP@Â"6:ÂITájI^4¨a0À¯ ¥uÙ$')¸xÓ ê¢Ò¥ÀúÞõ>!é +endstream +endobj +416 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 882 0 R +/Name /Im385 +/Width 36 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xEΫ 0ÐÛ jµ¸&@²�I; 30ÂcP. sôÑΤO¸PS(1ÉIdK5ÙüÌ*ôÝ»±L$ú£xÐP&(O{#h_7é+¹ +endstream +endobj +417 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 883 0 R +/Name /Im386 +/Width 30 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû?ÿóÿ@,ÇÞðA¹áûrìÈólàç?ÜÀ/}_ò8¿á1 ~ÇÀÿð ûÃ?ì0°�âÌðåDj&+�kÏ!µ +endstream +endobj +418 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 884 0 R +/Name /Im387 +/Width 36 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÿøÿvÁ`¢q?øÿJ0~`ü`~Àü�7ÁþýCý¿úÿÿ� ùúyJ�Üð;× +endstream +endobj +419 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 885 0 R +/Name /Im388 +/Width 31 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`f8ÀÙ003`c¨ÿÿÿÏÿÿÿÿ1ð0 à RRËpÀ±!£;ÝòµóÕ�ùy$ +endstream +endobj +420 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 886 0 R +/Name /Im389 +/Width 25 +/Height 2 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿà djè�G< +endstream +endobj +421 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 887 0 R +/Name /Im390 +/Width 38 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xα 1@ѸW\" T)é.£dÌnz(R1GØé°eéYróMkÀ×xUå÷¬t×A8ã ìttûÃ7={ 'ÐF¥#©LªtRq¹ é¹7²²ÔÊ$¥?Q¶7! T¢1ÙÐÏFÃ3¯ëïx¸>N)! +endstream +endobj +422 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 888 0 R +/Name /Im391 +/Width 36 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xU1 +Â@D_Øb-DR¦° 6V¶"9Êv¶vVÂÃBñ*ëMrau6Äæñ?ÿÃ�T·Å<MÚÏ0Kae ¦à]àtÎÁëí!ºú \rk£ÝûQ-G+x%i43kw°ÙfãYoôéóü)Ò¢%u7Ûëc÷=0$î +endstream +endobj +423 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 889 0 R +/Name /Im392 +/Width 40 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`°a�4 .pâc`¸&ÍÀÐa#ÈPpCBïFtà é > Ác¡£b"£¡¢¢"¢$LLÒÒÒtÄ2°³Ó¡NM;Þnæ¸óßCªüð»þÌ8ð6öÿþ0Ø;0700`düßÐÀ8ágÃ~ bæÿö1Ô20>``o`ªÊÊÿÿÁ ¡^¿@�ü±5a +endstream +endobj +424 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 890 0 R +/Name /Im393 +/Width 28 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«³oà¤Ð¢àüà×ÿÿÿ !Áñ�3ûÿL,DcæÿؤW±Áþÿÿ +0üÿÿÿ bË(VÎÖ�ÍÙ +endstream +endobj +425 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 891 0 R +/Name /Im394 +/Width 38 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÌ1Â0@ÑߤR:D +cS&Æ1G(°Ðkp°s¤¢âª [~-ÛP áºüýÀ]*»(p7åß)_©jËdh£nÈ£¬äQGl`K9§f²D²B!¬í¬oyr4ò7Cþêx£#æÛx¡nñ`rKU¯Ð¶& +endstream +endobj +426 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 892 0 R +/Name /Im395 +/Width 41 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿ@Ð�&00ÿaÿ�"ùHö? þ!HF$Y±ÿ@c4hþ0É�&`Ød&Ãd²¬÷?Âv0Éÿì¯`ò�üÇÀ ©Y·Â��ÿçjl +endstream +endobj +427 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 893 0 R +/Name /Im396 +/Width 28 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=ÍÁ Ã0À5zè©zù&¬Æ¾rRÆrî@!Â1y,DzÂw/üx5zCóÅWäË@ºM~Þh�;°)l +CNT ´LúD$hjÉ=.é¯#ÅÏCÿ´`joííÚõÚñx®¯ù_P¤ +endstream +endobj +428 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 894 0 R +/Name /Im397 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc? ÿÁ¢ÂÀ¦Â®Fíìl, +ذ`(�²íääää ܹ +ùìdëf�JÈ +endstream +endobj +429 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 895 0 R +/Name /Im398 +/Width 20 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûWÇðÿ?|{ó9Æ ÄðAÄ�Éÿg«ac@GÿTýDq�¦ +endstream +endobj +430 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 896 0 R +/Name /Im399 +/Width 10 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÇðAdøÿÀÿ\² s¸ÿª · +endstream +endobj +431 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 897 0 R +/Name /Im400 +/Width 19 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßÿàÿ9ö9f~6(bï£;Ì7Àèãbx�C@¨à�ÃÏ Çêl¥ê'�ü\ +endstream +endobj +432 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 898 0 R +/Name /Im401 +/Width 18 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xca`�"0úÃÀD{÷0°Û0°Ù0ðÙ0ðØ0HØ0XØ0Ø0$Ø0<°aøÿÿ�t¡"æÿHH¦~¶(�bª +endstream +endobj +433 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 899 0 R +/Name /Im402 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x3à±ÿcÿÃþý4~`þÁÆÂBÆ@Îøá¾¹ +ùìdëf�Yòõ +endstream +endobj +434 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 900 0 R +/Name /Im403 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÀüONÆÎÂÎB¦¡�?øþã̹|ø>ðÃ`òYðYÈÈXð`~ [7[�ó¬Q +endstream +endobj +435 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 901 0 R +/Name /Im404 +/Width 17 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xK``¨ÿß�F@Ã6<`$ÁÀ`�F @3bÇeëf�2Øî +endstream +endobj +436 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 902 0 R +/Name /Im405 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc~ÀÿAÆÂBƯ�+ø*dìdìwÈ?`ÿÀÿCæE]\ÿþìTÃcc#ÿýlÝlQ�ºÔ +endstream +endobj +437 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 903 0 R +/Name /Im406 +/Width 13 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcl`n°oøßp¼høÿÇÿ¼25³Ei à +endstream +endobj +438 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 904 0 R +/Name /Im407 +/Width 5 +/Height 13 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øðãG AA+om�Mâ +endstream +endobj +439 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 905 0 R +/Name /Im408 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc>ÀÿAÆÂBÆB¦?ðãyJþìdëf�ëôã +endstream +endobj +440 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 906 0 R +/Name /Im409 +/Width 16 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc? ÿÁ¢"Á&AîÜùü?øøääÐÁ¡áÃÆf6f>ff vûõÿþ¡LÝlQ�Z²T +endstream +endobj +441 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 907 0 R +/Name /Im410 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc>ÀÿAÆÂB¦B¦ïòÃ`| ¼ ½ü{þó| h!S#ScQa`ðÁþ�lÝlQ�ÀV÷ +endstream +endobj +442 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 908 0 R +/Name /Im411 +/Width 27 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿÿ@=Wð3(àg<ÀÏpà?Ãü ÈÌüÿKËÔÏ�ø1 +endstream +endobj +443 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 909 0 R +/Name /Im412 +/Width 19 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÀ`ÿ¡Æ¡F,ääØÿ1Èÿc°c¨cø�B dPQÿÀþÿþþa¡ú¢�þt^ +endstream +endobj +444 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 910 0 R +/Name /Im413 +/Width 20 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÇÀðAªcÿÏ ßÞ Çx@ñ}À@@RÊdÿ3HÔ0ÈÖÏ�>a0 +endstream +endobj +445 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 911 0 R +/Name /Im414 +/Width 15 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc~ÀÿAÆÂB¦B®ïÿ¿ÿÿ>0@`C ÿæüBõ �gòà +endstream +endobj +446 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 912 0 R +/Name /Im415 +/Width 5 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øñãG8¬Bµy�pÅ +endstream +endobj +447 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 480 0 R >> /XObject << /Im117 124 0 R /Im416 449 0 R /Im417 450 0 R /Im418 451 0 R /Im414 445 0 R /Im419 452 0 R /Im414 445 0 R /Im397 428 0 R /Im398 429 0 R /Im399 430 0 R /Im400 431 0 R /Im401 432 0 R /Im398 429 0 R /Im399 430 0 R /Im400 431 0 R /Im402 433 0 R /Im398 429 0 R /Im399 430 0 R /Im400 431 0 R /Im403 434 0 R /Im398 429 0 R /Im399 430 0 R /Im400 431 0 R /Im404 435 0 R /Im398 429 0 R /Im399 430 0 R /Im400 431 0 R /Im405 436 0 R /Im398 429 0 R /Im399 430 0 R /Im400 431 0 R /Im420 453 0 R /Im421 454 0 R /Im422 455 0 R /Im423 456 0 R /Im424 457 0 R /Im425 458 0 R /Im426 459 0 R /Im406 437 0 R /Im410 441 0 R /Im401 432 0 R /Im405 436 0 R /Im410 441 0 R /Im404 435 0 R /Im409 440 0 R /Im407 438 0 R /Im404 435 0 R /Im410 441 0 R /Im406 437 0 R /Im406 437 0 R /Im409 440 0 R /Im407 438 0 R /Im402 433 0 R /Im410 441 0 R /Im406 437 0 R /Im401 432 0 R /Im408 439 0 R /Im407 438 0 R /Im406 437 0 R /Im403 434 0 R /Im406 437 0 R /Im406 437 0 R /Im410 441 0 R /Im406 437 0 R /Im407 438 0 R /Im403 434 0 R /Im405 436 0 R /Im404 435 0 R /Im420 453 0 R /Im421 454 0 R /Im422 455 0 R /Im427 460 0 R /Im428 461 0 R /Im428 461 0 R /Im429 462 0 R /Im406 437 0 R /Im410 441 0 R /Im401 432 0 R /Im405 436 0 R /Im410 441 0 R /Im404 435 0 R /Im409 440 0 R /Im407 438 0 R /Im404 435 0 R /Im410 441 0 R /Im406 437 0 R /Im406 437 0 R /Im409 440 0 R /Im407 438 0 R /Im402 433 0 R /Im408 439 0 R /Im404 435 0 R /Im397 428 0 R /Im410 441 0 R /Im407 438 0 R /Im402 433 0 R /Im410 441 0 R /Im403 434 0 R /Im406 437 0 R /Im405 436 0 R /Im402 433 0 R /Im407 438 0 R /Im397 428 0 R /Im402 433 0 R /Im401 432 0 R /Im423 456 0 R /Im424 457 0 R /Im425 458 0 R /Im426 459 0 R /Im406 437 0 R /Im410 441 0 R /Im401 432 0 R /Im410 441 0 R /Im408 439 0 R /Im404 435 0 R /Im409 440 0 R /Im407 438 0 R /Im404 435 0 R /Im405 436 0 R /Im405 436 0 R /Im406 437 0 R /Im409 440 0 R /Im407 438 0 R /Im402 433 0 R /Im403 434 0 R /Im405 436 0 R /Im401 432 0 R /Im408 439 0 R /Im407 438 0 R /Im397 428 0 R /Im409 440 0 R /Im401 432 0 R /Im406 437 0 R /Im410 441 0 R /Im404 435 0 R /Im407 438 0 R /Im402 433 0 R /Im408 439 0 R /Im409 440 0 R /Im423 456 0 R /Im424 457 0 R /Im425 458 0 R /Im430 463 0 R /Im431 464 0 R /Im431 464 0 R /Im406 437 0 R /Im410 441 0 R /Im401 432 0 R /Im410 441 0 R /Im408 439 0 R /Im404 435 0 R /Im409 440 0 R /Im407 438 0 R /Im404 435 0 R /Im405 436 0 R /Im405 436 0 R /Im406 437 0 R /Im409 440 0 R /Im407 438 0 R /Im402 433 0 R /Im401 432 0 R /Im409 440 0 R /Im401 432 0 R /Im408 439 0 R /Im407 438 0 R /Im401 432 0 R /Im404 435 0 R /Im405 436 0 R /Im406 437 0 R /Im410 441 0 R /Im404 435 0 R /Im407 438 0 R /Im397 428 0 R /Im404 435 0 R /Im404 435 0 R /Im427 460 0 R /Im428 461 0 R /Im428 461 0 R /Im429 462 0 R /Im406 437 0 R /Im410 441 0 R /Im401 432 0 R /Im405 436 0 R /Im410 441 0 R /Im410 441 0 R /Im409 440 0 R /Im407 438 0 R /Im405 436 0 R /Im406 437 0 R /Im403 434 0 R /Im406 437 0 R /Im397 428 0 R /Im407 438 0 R /Im409 440 0 R /Im408 439 0 R /Im403 434 0 R /Im401 432 0 R /Im408 439 0 R /Im407 438 0 R /Im410 441 0 R /Im406 437 0 R /Im403 434 0 R /Im406 437 0 R /Im410 441 0 R /Im403 434 0 R /Im407 438 0 R /Im405 436 0 R /Im409 440 0 R /Im403 434 0 R /Im432 465 0 R /Im428 461 0 R /Im421 454 0 R /Im406 437 0 R /Im410 441 0 R /Im401 432 0 R /Im405 436 0 R /Im410 441 0 R /Im410 441 0 R /Im409 440 0 R /Im407 438 0 R /Im405 436 0 R /Im406 437 0 R /Im403 434 0 R /Im406 437 0 R /Im409 440 0 R /Im407 438 0 R /Im404 435 0 R /Im408 439 0 R /Im409 440 0 R /Im397 428 0 R /Im410 441 0 R /Im407 438 0 R /Im403 434 0 R /Im397 428 0 R /Im401 432 0 R /Im409 440 0 R /Im406 437 0 R /Im401 432 0 R /Im407 438 0 R /Im403 434 0 R /Im410 441 0 R /Im397 428 0 R /Im433 466 0 R /Im431 464 0 R /Im434 467 0 R /Im406 437 0 R /Im410 441 0 R /Im401 432 0 R /Im410 441 0 R /Im397 428 0 R /Im406 437 0 R /Im409 440 0 R /Im407 438 0 R /Im404 435 0 R /Im410 441 0 R /Im405 436 0 R /Im406 437 0 R /Im409 440 0 R /Im407 438 0 R /Im405 436 0 R /Im410 441 0 R /Im404 435 0 R /Im401 432 0 R /Im408 439 0 R /Im407 438 0 R /Im406 437 0 R /Im406 437 0 R /Im403 434 0 R /Im409 440 0 R /Im408 439 0 R /Im409 440 0 R /Im407 438 0 R /Im410 441 0 R /Im405 436 0 R /Im403 434 0 R /Im411 442 0 R /Im412 443 0 R /Im413 444 0 R /Im399 430 0 R /Im414 445 0 R /Im409 440 0 R /Im415 446 0 R /Im435 468 0 R /Im414 445 0 R /Im416 449 0 R /Im436 469 0 R /Im399 430 0 R /Im437 470 0 R /Im416 449 0 R /Im438 471 0 R /Im439 472 0 R /Im437 470 0 R /Im418 451 0 R /Im412 443 0 R /Im406 437 0 R /Im408 439 0 R /Im409 440 0 R /Im401 432 0 R /Im440 473 0 R /Im441 474 0 R /Im398 429 0 R /Im442 475 0 R /Im416 449 0 R /Im439 472 0 R /Im437 470 0 R /Im439 472 0 R /Im442 475 0 R /Im443 476 0 R /Im416 449 0 R /Im437 470 0 R /Im444 477 0 R /Im412 443 0 R /Im443 476 0 R /Im416 449 0 R /Im398 429 0 R /Im442 475 0 R /Im416 449 0 R /Im439 472 0 R /Im437 470 0 R /Im439 472 0 R /Im442 475 0 R /Im443 476 0 R /Im437 470 0 R /Im412 443 0 R /Im413 444 0 R /Im399 430 0 R /Im414 445 0 R /Im438 471 0 R /Im439 472 0 R /Im437 470 0 R /Im418 451 0 R /Im442 475 0 R /Im436 469 0 R /Im437 470 0 R /Im437 470 0 R /Im439 472 0 R /Im419 452 0 R /Im414 445 0 R /Im416 449 0 R /Im437 470 0 R /Im412 443 0 R /Im419 452 0 R /Im398 429 0 R /Im439 472 0 R /Im443 476 0 R /Im445 478 0 R /Im446 479 0 R /Im416 449 0 R /Im417 450 0 R /Im418 451 0 R /Im414 445 0 R /Im419 452 0 R /Im414 445 0 R /Im397 428 0 R /Im398 429 0 R /Im399 430 0 R /Im400 431 0 R /Im401 432 0 R /Im398 429 0 R /Im399 430 0 R /Im400 431 0 R /Im402 433 0 R /Im398 429 0 R /Im399 430 0 R /Im400 431 0 R /Im403 434 0 R /Im398 429 0 R /Im399 430 0 R /Im400 431 0 R /Im404 435 0 R /Im398 429 0 R /Im399 430 0 R /Im400 431 0 R /Im405 436 0 R /Im398 429 0 R /Im399 430 0 R /Im400 431 0 R /Im420 453 0 R /Im421 454 0 R /Im422 455 0 R /Im423 456 0 R /Im424 457 0 R /Im425 458 0 R /Im426 459 0 R /Im406 437 0 R /Im410 441 0 R /Im406 437 0 R /Im410 441 0 R /Im406 437 0 R /Im402 433 0 R /Im409 440 0 R /Im407 438 0 R /Im404 435 0 R /Im397 428 0 R /Im405 436 0 R /Im406 437 0 R /Im409 440 0 R /Im407 438 0 R /Im409 440 0 R /Im410 441 0 R /Im403 434 0 R /Im397 428 0 R /Im405 436 0 R /Im407 438 0 R /Im408 439 0 R /Im403 434 0 R /Im409 440 0 R /Im406 437 0 R /Im405 436 0 R /Im408 439 0 R /Im407 438 0 R /Im406 437 0 R /Im405 436 0 R /Im404 435 0 R /Im420 453 0 R /Im421 454 0 R /Im422 455 0 R /Im427 460 0 R /Im428 461 0 R /Im428 461 0 R /Im429 462 0 R /Im406 437 0 R /Im410 441 0 R /Im406 437 0 R /Im410 441 0 R /Im406 437 0 R /Im402 433 0 R /Im409 440 0 R /Im407 438 0 R /Im404 435 0 R /Im397 428 0 R /Im405 436 0 R /Im406 437 0 R /Im406 437 0 R /Im407 438 0 R /Im410 441 0 R /Im405 436 0 R /Im410 441 0 R /Im397 428 0 R /Im405 436 0 R /Im407 438 0 R /Im402 433 0 R /Im406 437 0 R /Im401 432 0 R /Im406 437 0 R /Im410 441 0 R /Im406 437 0 R /Im407 438 0 R /Im404 435 0 R /Im401 432 0 R /Im404 435 0 R /Im423 456 0 R /Im424 457 0 R /Im425 458 0 R /Im426 459 0 R /Im406 437 0 R /Im410 441 0 R /Im406 437 0 R /Im410 441 0 R /Im406 437 0 R /Im401 432 0 R /Im409 440 0 R /Im407 438 0 R /Im404 435 0 R /Im403 434 0 R /Im401 432 0 R /Im406 437 0 R /Im409 440 0 R /Im407 438 0 R /Im397 428 0 R /Im409 440 0 R /Im404 435 0 R /Im397 428 0 R /Im405 436 0 R /Im407 438 0 R /Im397 428 0 R /Im402 433 0 R /Im404 435 0 R /Im406 437 0 R /Im410 441 0 R /Im404 435 0 R /Im407 438 0 R /Im410 441 0 R /Im404 435 0 R /Im405 436 0 R /Im423 456 0 R /Im424 457 0 R /Im425 458 0 R /Im430 463 0 R /Im431 464 0 R /Im431 464 0 R /Im406 437 0 R /Im410 441 0 R /Im406 437 0 R /Im410 441 0 R /Im406 437 0 R /Im401 432 0 R /Im409 440 0 R /Im407 438 0 R /Im404 435 0 R /Im410 441 0 R /Im409 440 0 R /Im406 437 0 R /Im406 437 0 R /Im407 438 0 R /Im405 436 0 R /Im409 440 0 R /Im409 440 0 R /Im397 428 0 R /Im410 441 0 R /Im407 438 0 R /Im410 441 0 R /Im405 436 0 R /Im402 433 0 R /Im406 437 0 R /Im410 441 0 R /Im404 435 0 R /Im407 438 0 R /Im402 433 0 R /Im404 435 0 R /Im397 428 0 R /Im427 460 0 R /Im428 461 0 R /Im428 461 0 R /Im429 462 0 R /Im406 437 0 R /Im410 441 0 R /Im406 437 0 R /Im410 441 0 R /Im408 439 0 R /Im404 435 0 R /Im409 440 0 R /Im407 438 0 R /Im404 435 0 R /Im402 433 0 R /Im397 428 0 R /Im406 437 0 R /Im406 437 0 R /Im407 438 0 R /Im405 436 0 R /Im405 436 0 R /Im404 435 0 R /Im397 428 0 R /Im410 441 0 R /Im407 438 0 R /Im403 434 0 R /Im409 440 0 R /Im409 440 0 R /Im406 437 0 R /Im410 441 0 R /Im402 433 0 R /Im407 438 0 R /Im408 439 0 R /Im408 439 0 R /Im405 436 0 R /Im432 465 0 R /Im428 461 0 R /Im421 454 0 R /Im406 437 0 R /Im410 441 0 R /Im406 437 0 R /Im410 441 0 R /Im408 439 0 R /Im404 435 0 R /Im409 440 0 R /Im407 438 0 R /Im404 435 0 R /Im402 433 0 R /Im397 428 0 R /Im406 437 0 R /Im409 440 0 R /Im407 438 0 R /Im406 437 0 R /Im406 437 0 R /Im409 440 0 R /Im401 432 0 R /Im408 439 0 R /Im407 438 0 R /Im403 434 0 R /Im402 433 0 R /Im403 434 0 R /Im409 440 0 R /Im408 439 0 R /Im409 440 0 R /Im407 438 0 R /Im409 440 0 R /Im408 439 0 R /Im410 441 0 R /Im433 466 0 R /Im431 464 0 R /Im434 467 0 R /Im406 437 0 R /Im410 441 0 R /Im406 437 0 R /Im410 441 0 R /Im397 428 0 R /Im401 432 0 R /Im409 440 0 R /Im407 438 0 R /Im404 435 0 R /Im404 435 0 R /Im404 435 0 R /Im406 437 0 R /Im406 437 0 R /Im407 438 0 R /Im410 441 0 R /Im409 440 0 R /Im403 434 0 R /Im397 428 0 R /Im410 441 0 R /Im407 438 0 R /Im402 433 0 R /Im405 436 0 R /Im408 439 0 R /Im409 440 0 R /Im408 439 0 R /Im402 433 0 R /Im407 438 0 R /Im409 440 0 R /Im408 439 0 R /Im408 439 0 R /Im411 442 0 R /Im412 443 0 R /Im413 444 0 R /Im399 430 0 R /Im414 445 0 R /Im397 428 0 R /Im415 446 0 R /Im435 468 0 R /Im414 445 0 R /Im416 449 0 R /Im436 469 0 R /Im399 430 0 R /Im437 470 0 R /Im416 449 0 R /Im438 471 0 R /Im439 472 0 R /Im437 470 0 R /Im418 451 0 R /Im412 443 0 R /Im406 437 0 R /Im408 439 0 R /Im409 440 0 R /Im401 432 0 R /Im440 473 0 R /Im441 474 0 R /Im398 429 0 R /Im442 475 0 R /Im416 449 0 R /Im439 472 0 R /Im437 470 0 R /Im439 472 0 R /Im442 475 0 R /Im443 476 0 R /Im416 449 0 R /Im437 470 0 R /Im444 477 0 R /Im412 443 0 R /Im443 476 0 R /Im416 449 0 R /Im398 429 0 R /Im442 475 0 R /Im416 449 0 R /Im439 472 0 R /Im437 470 0 R /Im439 472 0 R /Im442 475 0 R /Im443 476 0 R /Im437 470 0 R /Im412 443 0 R /Im413 444 0 R /Im399 430 0 R /Im414 445 0 R /Im438 471 0 R /Im439 472 0 R /Im437 470 0 R /Im418 451 0 R /Im437 470 0 R /Im439 472 0 R /Im419 452 0 R /Im414 445 0 R /Im416 449 0 R /Im437 470 0 R /Im412 443 0 R /Im419 452 0 R /Im398 429 0 R /Im439 472 0 R /Im443 476 0 R /Im445 478 0 R /Im446 479 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 448 0 R +>> +endobj +448 0 obj +<< +/Length 913 0 R +/Filter /FlateDecode +>> +stream +x¥Ëå¶÷ýgi/¬H¢¼Ù6<Koñ8d.¾t0ÈÛGê#Ò¥¢þªâÆ6ÓåbÝø¢þùíéûÛoO.Í·ÏOù?ÇÛ8cþçWãÒxæyk¼E%ÛO¯þöaÛ7¾14½Ø¸ÿñÊÂä^þ½póÝ&ü0¹ÚDüö)º_~û©ËÂÏâÈY'Â8¬q7°²Ø ÷ PËo÷`{Ìv"ÝÙFç¦a7Ü:,)ð«(.ì(¸4LãNypC`é|xY}¿Â¸4²ø ñ`ÿxG ,ÛOܸ<8ÑwÆ ¦Î,,Í:Øjñ\atâ¬\1ð£ëç¾xçÙxi¼ç² ÁVÊ}1ð\7²½0&ÖÈÇà41`+Q%vÆ`Æ U[Õ³1¥1ÓØm#íÁ¶ÉbÐÞZB8]n-J^qñzð2Â'÷¿óÊÎJqZG¼;Åc©yÃn=â0°8 Ø{%¤À.á4ÎEux°:v §Ö¾ÿqÎÀÌ.áÔgà96ÚqÖt6p¢Fð J8ëác}rmS<¢§Ã$ǼKN¥Ôô`ãÆó|jX¥KàwÍ}ÖS)q¼Ä ±Ý0Ü*RJ÷ĺÕÝ0WáÖÆV6²%Üye±U~ÒJlØxÅ\ÊwYð^ f= ÓTl½YÂ,´ÚÙgø·¶³ÁYXÄYhÄ`Wbc ͤÎ^Øk [¸ú +)LBZiÛ/v5Ó3Ò,´Ì²¥5Tç=PhìD¼§ð -nO}´Hèi`hqa«±Ð"1Àìô Ð"1pJmIjÖ»7zÖÀiwÐ"ªHµZC'-ô´X{` E¼@Ä=-èiq+©>Z´,¡¢EDH¸-ZJ¹¢Ek +-¢,@Z$YÐÓ"1À̤ÆñXè|¾V`ÎÛ!-¢B´hÎÂÒ $î Þ1nZ´õBÖ¡ºÓ¢(i,´hÄBh m§EÑÖ& E´ÁhñxÿpA¹ç5T"?;hÌ-÷b¢Äsû«Ì½¨ËÁ +#B-âµæ}³ïA-êµ µùþQP£µæíù¡µLKxD-j@<wÔ¸F-S)?¢9µ`jѨQFdÔY@sævΨ»¡=á}?Wd ÔbÒ ^£y¬gÔõÆ¡Ôäd¡9µÌÍQVb«òÁ¬j¡ £Ö¼¨\'jzÔ"NSi9ÓqomY9^PÎiáà³ÅãdÀ° a¯öÁ�{Ûë=âööjØ#ô°Gb ½4vÂe ìzØÃ�ìYJ¹=k +ì¡,@Ø#1?Éï°gn¦üV{Öv.°ºÂî Æ([Bóp2ñ½ o¦ÔÙö¬c½Àë�öP ìY©À^å{£º±{h è-,4anðØ[½Æ+Ì{ËX¡üær?_¤ä¯0OøWSXW0µj¨×NÔ"èQ+¹µÐ"ëÌ@ Z$zÔÉ6 +já ¶Þ@vRAî×CÔ2{Q+¯] jY²ð²Z¨à¹ ¢è( :WCY¨emçZh µ¬½PÎÕp;·î«õöBêì ZV +jYgbA-´ZÖ4Ô²ì/ĄeíÆZ(ÔB¼�µbìD9UGBÌ @ÚÀ7æ2jC)HJµRNR"èI©öÀ@Jh ,*R"1ÐÒ;I µ +)ô¤dñ :²f¡ÊBó4Ãó1fdR"Ä/M +)¡ Ë^µË^° )Y{¡®ÄëË^0ð ¤e&fR¦± Z¬&'[$%k)YÓXHɺ/RBu %´ÁHi¬tî/ô +) ÇÏgoß2) X¡Ö©Úo gÖA5FRíê0Hx '%ä$¥Ê�;ÜAÜHÉÄ=) Ðùú®¢áõ5 ú×wÖ,R²f¡Ê|}c�H wãõµxXðLÉÚÎ ú3% ë( άCµ)6ùP)Ã3% ¦ÐHJÖf*¤dH ¬ÝXH ¥Q@Jí ^§Ý1wÝÑüÒèëªgóR,"Y¾5 &z¹påk@pg,X_~±6À±4u¾ñ=i>*©¯li|é +âÁ©&¹Â»ÚÚÑ®ºè_d½7>LsFæ!ÖA6°püÉ@³ÕÒ©ÜËÛàÈz WÝK|OK8wãa`å=\ÇÀ´ÚÙÚJ4ú÷¸)ÉJûág¾ïÓ¤å?yÀ;ãm^çgÙ<h>=6gÜj½0põ vI7D²ñÐÜË ´3üi@®¹7çBr×[çuÙ©u °åÜÍfZ¦Îfâgâ¹Ú,2ALl!ØÊ;{p'Ýuf¡ÄßÄSyåÀ<üð)ç0ÀÏDyýÄ{ Ø\ͽiíëFïø:w£÷ü¾ îFè»qïêF¿Må®nôÁ÷u£ìÞx.¤ffñöÞè ȧQû>ò¥,Æ}ÏNeîï' "ÔmQçªÒ|õfWÞ1¥ù§uù<XYÔrù½Q¼/~¨ríÜ2Ð9ö£Q[ +ÕÁñ(.åàùÍUüÔ<Ûò,ðÏÎò ó@iqæcÀLåì,Üugé¾Ðè (ëÍe¤MC8=þ î? Kâ ÂCè¤ü´å«ïànbºÒÏGâ÷~\¯ßSjñ{j@-~O ¨Å冀ø=ô�¿Æ$òZüÞ©OüÞKø}ø}íAüäA/~oÁ!~oÁ!9cÄïë:0ßcÅïÍ1ÈÏædñ{µø½=ø½=ëFø=ZüÞCüÞE$~Oc ¿7Ç ßcÅïað´EÉ+[^îQ^Ùh¢éÜqgi¿ñx·Z-gJ ¨åL©µø=5 ¿§Ôâ÷ÔZü0hlÁJ@÷¶ú{[n oÇø^{[væµÓÈz Ssy¼·E=PßÛrkç½-ºõ½ÚæfóÈ{ ¾·eJãã½-sò½-ô- ô�ÝÛôÂõ·4òÛÝ1Ùë &Y {[¦,<Þp§È?¨Llä×®ò½-A\hiùÞ ¯¿AD÷¶ilÄÀ1p³,HvUv¢ Ó¢Ûg/L@ZL¡=-jñ{j@-~O ¨Åï®Åï©r¬HµZLPТÙLf2-=¬Z$èi1u*²Ò%èi1d,+ZL@Ò"NcË@´²nùJÐ"" E³Íui-Ò¢9_âÛù?,$ô=$5 Vd5´BÖ¡ÿª$s3Z´´|Ë´æÑã¾Ì¤Eä¦E¸Áh1¯YÝÒ©ÈJ ¨Y©µø=5`8a¨µ ó +j-P ÙZff6òɸ£SJò/ÅjzÔZ:õPI ¨EÈÕú Ô²Ru0gÍBA-Zpl+GL²% *íuQ˲ +µ +QË ¥#ÕÁÜem[ªâ,�Ô²ÕZh¨"=T¸ZÖ4Ô2/!ÌY{¡ *ej¡ ^Z[cõ¡V;QУ1 ¿'ôâ÷ÔZüÀJ$½ÚìÍFùÂ{f2ì=Ȱ<°GèaÐÃÞä!ìÕA4ÀÎBSò¹=\Hà\ °²�ao6HØÃA¼Ö3¨`o²¶öP!AØ3ga4�{4V°GOö +ìYj={h @س¦±À +"=ëL,°zA�{hÀÞì]+²ºP롪Å冀ø½ÀÀµø=5`y ÂQ+tJºº�uï�j=Ȩ =¸*#ôÏ5 þ{hô¨b¢µ,K¨Pÿ}#çB.® .$ZÈ�D-ZÁ¨N\Pçjæ:Ȩ ÓPµ3D-s>ûj¬á 7l� u¨Ô²ÕZh@Ô²¦± ëðÂÙç=°«¡ ^Z!t¢¯UÕâ÷Ä^ü°J¡(@Rò½øÞOÌdRÂ�Ròà+$%o¸W_ïý4À÷~`YBEJÞðyDEJÞ)¤d)¤ê ¤5 PKðQºÐÑLÕ¡t¥Ô®°!)á,�RòÖÏ#Ro/¤%]a!)¡, IWs3R²¤1ÐLJT¤v&)¡ ^@JÛtºüõîô£ZüÞPµø½#J&jñ{jÀ £�IɬÿIÉõ^7{I {�HɼðõR ¤¤×Ä%¤äz¯Å;x´qIÉn@è$%\HàL ¤²�Ï,¥\½¾C ¯Å,è?¢DÍI Å�9èð½ }gÕ-¤dBJª3%DHJ4V¤dA&%s2)!Rjoð:í}üԿ?îÒªÙ¹/åâ÷Þ±â÷k@.~î¿XPßϬâói>¦ãÖÓ±-~×£(ÄïgÆøý!'AKüO£\ü>¿ hÄÚâ÷+ë\uoå(¿ßªõ@!~hôº'Þ ø}`c ¿w|åâ÷ùÑ£6 ¿\3)Äï3¯â÷ìTVßÏó (Äï×£Qü>mOFñûÄÅ@!~ßi +ñû¥³°îAÚâ÷l!)ÄïWv*kÄï ûBSèydFü/$¹øýdFlBü¾1åâ÷óÝèyÌÓßë %=?õu£ÂBj{ Ü\AÙy ¿YRUßGaÚâ÷l3)ÄïSY!~¿2YÐßó ©¿ç9Q.¡¹r¤ª¿j+aä³À,¡¥ÏÎ rü$ASô|bc PwüDR(ÇóÏråxÏ6F9^¸35ø(ã K[9^8ÖÛÊñìHS(Ççoζ/£r|àÞãÿòúéÕ·Ómº½þyËÅþû·ýÕñ¯?l¶÷[Çã0/ÛùéöÅß?ÝÞ¿{óöão¿¾}÷Í··_ÿôÓß¼ýéöÏÿݾûáùÝû÷·¿xóã·oÛïÞþëíïÏ·¯n¿<?ÿúõ«W?y÷Çðñíó«§%þüû?>þçÕ¯ì¿7üòüáý·×ÿ~úëëÍ»ÿ^èsý +endstream +endobj +449 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 914 0 R +/Name /Im416 +/Width 13 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x)�Öÿ°?ðppà0à0ð�þ�Ààðø�xÀ8À8à8ðpÿà ºþ¦ +endstream +endobj +450 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 915 0 R +/Name /Im417 +/Width 15 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀÿC®Æ¢¦¢¦ÀâV0T°Ù°Éñðÿ`~À/T?Q�Z +endstream +endobj +451 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 916 0 R +/Name /Im418 +/Width 20 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÇÀðAªcûÏ ßÏ ÏÞ GúþÈÖÏ�·¹³ +endstream +endobj +452 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 917 0 R +/Name /Im419 +/Width 32 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûgÇ~àßÿùäÛ7|g~PÂrÌÆÿÏÿü +Bõ2G" +endstream +endobj +453 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 918 0 R +/Name /Im420 +/Width 27 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿÿ@=Wð3(àg<ÀÏpà?Ãü ÈÌüÿKËÔÎV�ø. +endstream +endobj +454 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 919 0 R +/Name /Im421 +/Width 31 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû?ÿÇ¿ÿ@lÇ|ÀBùË3?(àgÿÀÏÄm°÷ý8ÀÞSqýLåæ;µ Ì7lØ70þ°g`ü Æäð±¼hýe�Q$d +endstream +endobj +455 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 920 0 R +/Name /Im422 +/Width 20 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÁÀþA¹Áñ@ã>`" Ù0�ªço�êbüÁ "Z7E +�ÅLÏ +endstream +endobj +456 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 921 0 R +/Name /Im423 +/Width 26 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ�Ãÿÿ?øjØåX ËAåj@jÁêë rü Ì~�ÄåÁzÿÿÿĤdjg+��Õ +endstream +endobj +457 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 922 0 R +/Name /Im424 +/Width 10 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûàÿ9Bð?Phý^�òÅ +: +endstream +endobj +458 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 923 0 R +/Name /Im425 +/Width 21 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcø£Àþ/¿ùã @ô Hþ1>¨�#FJ zöÿþ(ÖM�¾W +endstream +endobj +459 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 924 0 R +/Name /Im426 +/Width 15 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc8Àx@þÀÿ0 ëÿÕÿã©-�8Å +endstream +endobj +460 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 925 0 R +/Name /Im427 +/Width 28 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ�Ãÿÿ?øjXùøØù�3>â0Tó> ³@fÖíøÿÿLíl%�@Mÿ +endstream +endobj +461 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 926 0 R +/Name /Im428 +/Width 19 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¿áÿÿ9æ9F : 'Cò?@ÈH"r@ùÀÿÿ $,Z?E�Z^ +endstream +endobj +462 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 927 0 R +/Name /Im429 +/Width 18 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿ9ö9f :òÿäÿ0È1`Aÿhýq�¹Èä +endstream +endobj +463 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 928 0 R +/Name /Im430 +/Width 30 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`f```o@`þ,ù� >@pÁ +~PÃÀpÀÿÿà9f~8f +Âüìþ°ÿÂr²us�hÉ +endstream +endobj +464 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 929 0 R +/Name /Im431 +/Width 17 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿ9¼±ÁAáÿ" +�¨c ¦ +endstream +endobj +465 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 930 0 R +/Name /Im432 +/Width 28 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-ÃÑ ÐïÃã- +͸VÐ-#´HÐBØ:pbm9V-&k7WíN<³çÀÊæàVxxø E¿òÎÃ_áaÐJ/pn;§0`ä +endstream +endobj +466 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 931 0 R +/Name /Im433 +/Width 29 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc?ÀÀðÿãöòüì ò@óÆ5`Æ~00üÀAj`êíÌ�ÅßÀß�2ùCØ. ²rµs<+R +endstream +endobj +467 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 932 0 R +/Name /Im434 +/Width 21 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿ9öräèCC6T�}�RÉ~�¨ëÿQÑú)R� ` +endstream +endobj +468 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 933 0 R +/Name /Im435 +/Width 28 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿÿüø*Øí°`<HHýÿ~æ@>Í�ÂðdlÀÏPcðÿCMÂÿöøÈÈÖÍ�ï² L +endstream +endobj +469 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 934 0 R +/Name /Im436 +/Width 20 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûgßðϾAÄßÀ'ßÀÿýóó"Bõŧ® +endstream +endobj +470 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 935 0 R +/Name /Im437 +/Width 12 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcc`C> c°cøÿàÿ94h�| üðHÕÏ��÷ +3 +endstream +endobj +471 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 936 0 R +/Name /Im438 +/Width 27 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûoþÁ ãgoãgf�a~þ6nc`}7a`þøü``|ð00H`ª(�ügH +endstream +endobj +472 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 937 0 R +/Name /Im439 +/Width 10 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xa°CdðåðÀÿþàmà �Ì _ +endstream +endobj +473 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 938 0 R +/Name /Im440 +/Width 28 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¡þÁ æg°càg�b N�âü@ÌÜÀÀÏÎÀÀÏÄr@,Äö@?ÄÍ u áÿ�â + ¶b9 g�Úñedêf+��/õ +endstream +endobj +474 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 939 0 R +/Name /Im441 +/Width 11 +/Height 3 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿà?r37tñ�2ÕÄ +endstream +endobj +475 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 940 0 R +/Name /Im442 +/Width 18 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀÀÿANÁ¡½¡¹áó4J�3`ª( +�oóR +endstream +endobj +476 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 941 0 R +/Name /Im443 +/Width 20 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûWÇðï?|?<{èÿù@$"T?Q�TS +endstream +endobj +477 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 942 0 R +/Name /Im444 +/Width 13 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû÷àÿù +¹ +99lðÿÿx ê' +�� +endstream +endobj +478 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 943 0 R +/Name /Im445 +/Width 18 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`n`~ÿïÛ² rpd!Ã`cÃ`ÿÁüCÙÿ`°ÿÇ ÿÁþCûTÀÜ`ÃÏ ÿýLý$Q�< +endstream +endobj +479 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 944 0 R +/Name /Im446 +/Width 5 +/Height 5 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øñãG+km�!à +endstream +endobj +480 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F1 +/BaseFont /Times-Roman +/Encoding 481 0 R +/FirstChar 0 +/LastChar 255 +>> +endobj +481 0 obj +<< +/Type /Encoding +/BaseEncoding /MacRomanEncoding +/Differences [ 128 /.notdef /.notdef /quotesinglbase /florin /quotedblbase /ellipsis /dagger /daggerdbl /circumflex /perthousand /Scaron /guilsinglleft /OE /.notdef /.notdef /.notdef /.notdef /quoteleft /quoteright /quotedblleft /quotedblright /bullet /endash /emdash /tilde /trademark /scaron /guilsinglright /oe /.notdef /.notdef /Ydieresis /space /exclamdown 164 /currency /yen /brokenbar /section /dieresis 170 /ordfeminine /guillemotleft /logicalnot /hyphen /registered /overscore /degree 178 /twosuperior /threesuperior /acute /mu1 /paragraph /periodcentered /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf /threequarters /questiondown /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis ] +>> +endobj +482 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F2 +/BaseFont /Courier +/Encoding 483 0 R +/FirstChar 0 +/LastChar 255 +>> +endobj +483 0 obj +<< +/Type /Encoding +/BaseEncoding /MacRomanEncoding +/Differences [ 0 /grave /acute /circumflex /tilde /macron /breve /dotaccent /dieresis /ring /cedilla /hungarumlaut /ogonek /caron /dotlessi 127 /bullet /bullet /bullet /quotesinglbase /florin /quotedblbase /ellipsis /dagger /daggerdbl /circumflex /perthousand /Scaron /guilsinglleft /OE /bullet /bullet /bullet /bullet /quoteleft /quoteright /quotedblleft /quotedblright /bullet /endash /emdash /tilde /trademark /scaron /guilsinglright /oe /bullet /bullet /Ydieresis /space /exclamdown 164 /currency /yen /brokenbar /section /dieresis 170 /ordfeminine /guillemotleft /logicalnot /hyphen /registered /macron /degree 178 /twosuperior /threesuperior /acute 182 /paragraph /periodcentered /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf /threequarters /questiondown /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis ] +>> +endobj +484 0 obj +<< +/CreationDate (Fri Sep 21 13:01:33 2001) +/Producer (PStill 1.55 UNREGISTERED by F.Siegert frank@this.net) +/Title (schemes_dvi) +>> +endobj +485 0 obj +16261 +endobj +486 0 obj +132 +endobj +487 0 obj +93 +endobj +488 0 obj +99 +endobj +489 0 obj +30 +endobj +490 0 obj +108 +endobj +491 0 obj +92 +endobj +492 0 obj +93 +endobj +493 0 obj +61 +endobj +494 0 obj +75 +endobj +495 0 obj +150 +endobj +496 0 obj +71 +endobj +497 0 obj +103 +endobj +498 0 obj +77 +endobj +499 0 obj +86 +endobj +500 0 obj +63 +endobj +501 0 obj +66 +endobj +502 0 obj +51 +endobj +503 0 obj +93 +endobj +504 0 obj +81 +endobj +505 0 obj +18 +endobj +506 0 obj +121 +endobj +507 0 obj +87 +endobj +508 0 obj +49 +endobj +509 0 obj +62 +endobj +510 0 obj +62 +endobj +511 0 obj +79 +endobj +512 0 obj +25 +endobj +513 0 obj +58 +endobj +514 0 obj +111 +endobj +515 0 obj +76 +endobj +516 0 obj +77 +endobj +517 0 obj +54 +endobj +518 0 obj +49 +endobj +519 0 obj +71 +endobj +520 0 obj +69 +endobj +521 0 obj +57 +endobj +522 0 obj +61 +endobj +523 0 obj +76 +endobj +524 0 obj +58 +endobj +525 0 obj +28 +endobj +526 0 obj +83 +endobj +527 0 obj +65 +endobj +528 0 obj +51 +endobj +529 0 obj +41 +endobj +530 0 obj +32 +endobj +531 0 obj +33 +endobj +532 0 obj +44 +endobj +533 0 obj +45 +endobj +534 0 obj +27 +endobj +535 0 obj +54 +endobj +536 0 obj +67 +endobj +537 0 obj +85 +endobj +538 0 obj +25 +endobj +539 0 obj +38 +endobj +540 0 obj +59 +endobj +541 0 obj +79 +endobj +542 0 obj +68 +endobj +543 0 obj +93 +endobj +544 0 obj +72 +endobj +545 0 obj +91 +endobj +546 0 obj +48 +endobj +547 0 obj +54 +endobj +548 0 obj +52 +endobj +549 0 obj +74 +endobj +550 0 obj +54 +endobj +551 0 obj +90 +endobj +552 0 obj +71 +endobj +553 0 obj +36 +endobj +554 0 obj +42 +endobj +555 0 obj +60 +endobj +556 0 obj +18 +endobj +557 0 obj +18 +endobj +558 0 obj +69 +endobj +559 0 obj +44 +endobj +560 0 obj +79 +endobj +561 0 obj +54 +endobj +562 0 obj +39 +endobj +563 0 obj +27 +endobj +564 0 obj +50 +endobj +565 0 obj +58 +endobj +566 0 obj +44 +endobj +567 0 obj +68 +endobj +568 0 obj +77 +endobj +569 0 obj +46 +endobj +570 0 obj +82 +endobj +571 0 obj +40 +endobj +572 0 obj +54 +endobj +573 0 obj +33 +endobj +574 0 obj +70 +endobj +575 0 obj +79 +endobj +576 0 obj +72 +endobj +577 0 obj +76 +endobj +578 0 obj +62 +endobj +579 0 obj +109 +endobj +580 0 obj +71 +endobj +581 0 obj +46 +endobj +582 0 obj +62 +endobj +583 0 obj +88 +endobj +584 0 obj +31 +endobj +585 0 obj +79 +endobj +586 0 obj +84 +endobj +587 0 obj +56 +endobj +588 0 obj +32 +endobj +589 0 obj +89 +endobj +590 0 obj +88 +endobj +591 0 obj +61 +endobj +592 0 obj +74 +endobj +593 0 obj +107 +endobj +594 0 obj +100 +endobj +595 0 obj +80 +endobj +596 0 obj +53 +endobj +597 0 obj +59 +endobj +598 0 obj +55 +endobj +599 0 obj +85 +endobj +600 0 obj +61 +endobj +601 0 obj +55 +endobj +602 0 obj +11 +endobj +603 0 obj +28 +endobj +604 0 obj +53 +endobj +605 0 obj +33 +endobj +606 0 obj +32 +endobj +607 0 obj +44 +endobj +608 0 obj +41 +endobj +609 0 obj +30 +endobj +610 0 obj +48 +endobj +611 0 obj +37 +endobj +612 0 obj +62 +endobj +613 0 obj +37 +endobj +614 0 obj +39 +endobj +615 0 obj +39 +endobj +616 0 obj +40 +endobj +617 0 obj +50 +endobj +618 0 obj +34 +endobj +619 0 obj +52 +endobj +620 0 obj +25 +endobj +621 0 obj +55 +endobj +622 0 obj +48 +endobj +623 0 obj +55 +endobj +624 0 obj +70 +endobj +625 0 obj +59 +endobj +626 0 obj +37 +endobj +627 0 obj +51 +endobj +628 0 obj +18 +endobj +629 0 obj +70 +endobj +630 0 obj +52 +endobj +631 0 obj +56 +endobj +632 0 obj +54 +endobj +633 0 obj +27 +endobj +634 0 obj +57 +endobj +635 0 obj +38 +endobj +636 0 obj +63 +endobj +637 0 obj +41 +endobj +638 0 obj +47 +endobj +639 0 obj +81 +endobj +640 0 obj +18 +endobj +641 0 obj +24 +endobj +642 0 obj +53 +endobj +643 0 obj +64 +endobj +644 0 obj +23 +endobj +645 0 obj +66 +endobj +646 0 obj +91 +endobj +647 0 obj +59 +endobj +648 0 obj +41 +endobj +649 0 obj +17064 +endobj +650 0 obj +55 +endobj +651 0 obj +81 +endobj +652 0 obj +58 +endobj +653 0 obj +23 +endobj +654 0 obj +24 +endobj +655 0 obj +71 +endobj +656 0 obj +90 +endobj +657 0 obj +74 +endobj +658 0 obj +111 +endobj +659 0 obj +77 +endobj +660 0 obj +78 +endobj +661 0 obj +24 +endobj +662 0 obj +86 +endobj +663 0 obj +118 +endobj +664 0 obj +88 +endobj +665 0 obj +85 +endobj +666 0 obj +77 +endobj +667 0 obj +58 +endobj +668 0 obj +68 +endobj +669 0 obj +93 +endobj +670 0 obj +47 +endobj +671 0 obj +75 +endobj +672 0 obj +61 +endobj +673 0 obj +82 +endobj +674 0 obj +45 +endobj +675 0 obj +104 +endobj +676 0 obj +62 +endobj +677 0 obj +85 +endobj +678 0 obj +51 +endobj +679 0 obj +41 +endobj +680 0 obj +58 +endobj +681 0 obj +53 +endobj +682 0 obj +55 +endobj +683 0 obj +59 +endobj +684 0 obj +25 +endobj +685 0 obj +25 +endobj +686 0 obj +16054 +endobj +687 0 obj +86 +endobj +688 0 obj +51 +endobj +689 0 obj +60 +endobj +690 0 obj +89 +endobj +691 0 obj +54 +endobj +692 0 obj +37 +endobj +693 0 obj +61 +endobj +694 0 obj +24 +endobj +695 0 obj +65 +endobj +696 0 obj +84 +endobj +697 0 obj +66 +endobj +698 0 obj +62 +endobj +699 0 obj +41 +endobj +700 0 obj +51 +endobj +701 0 obj +86 +endobj +702 0 obj +20 +endobj +703 0 obj +112 +endobj +704 0 obj +94 +endobj +705 0 obj +62 +endobj +706 0 obj +49 +endobj +707 0 obj +98 +endobj +708 0 obj +88 +endobj +709 0 obj +64 +endobj +710 0 obj +57 +endobj +711 0 obj +87 +endobj +712 0 obj +40 +endobj +713 0 obj +24 +endobj +714 0 obj +72 +endobj +715 0 obj +56 +endobj +716 0 obj +54 +endobj +717 0 obj +51 +endobj +718 0 obj +46 +endobj +719 0 obj +63 +endobj +720 0 obj +15693 +endobj +721 0 obj +77 +endobj +722 0 obj +19 +endobj +723 0 obj +36 +endobj +724 0 obj +64 +endobj +725 0 obj +52 +endobj +726 0 obj +64 +endobj +727 0 obj +70 +endobj +728 0 obj +67 +endobj +729 0 obj +37 +endobj +730 0 obj +60 +endobj +731 0 obj +43 +endobj +732 0 obj +105 +endobj +733 0 obj +39 +endobj +734 0 obj +83 +endobj +735 0 obj +102 +endobj +736 0 obj +30 +endobj +737 0 obj +39 +endobj +738 0 obj +39 +endobj +739 0 obj +68 +endobj +740 0 obj +92 +endobj +741 0 obj +59 +endobj +742 0 obj +52 +endobj +743 0 obj +67 +endobj +744 0 obj +18 +endobj +745 0 obj +66 +endobj +746 0 obj +40 +endobj +747 0 obj +50 +endobj +748 0 obj +94 +endobj +749 0 obj +49 +endobj +750 0 obj +40 +endobj +751 0 obj +39 +endobj +752 0 obj +42 +endobj +753 0 obj +61 +endobj +754 0 obj +54 +endobj +755 0 obj +40 +endobj +756 0 obj +18622 +endobj +757 0 obj +90 +endobj +758 0 obj +24 +endobj +759 0 obj +51 +endobj +760 0 obj +63 +endobj +761 0 obj +62 +endobj +762 0 obj +15120 +endobj +763 0 obj +107 +endobj +764 0 obj +44 +endobj +765 0 obj +47 +endobj +766 0 obj +46 +endobj +767 0 obj +27 +endobj +768 0 obj +49 +endobj +769 0 obj +109 +endobj +770 0 obj +95 +endobj +771 0 obj +88 +endobj +772 0 obj +94 +endobj +773 0 obj +67 +endobj +774 0 obj +58 +endobj +775 0 obj +47 +endobj +776 0 obj +99 +endobj +777 0 obj +88 +endobj +778 0 obj +86 +endobj +779 0 obj +50 +endobj +780 0 obj +68 +endobj +781 0 obj +29 +endobj +782 0 obj +56 +endobj +783 0 obj +59 +endobj +784 0 obj +42 +endobj +785 0 obj +107 +endobj +786 0 obj +86 +endobj +787 0 obj +65 +endobj +788 0 obj +52 +endobj +789 0 obj +45 +endobj +790 0 obj +44 +endobj +791 0 obj +25 +endobj +792 0 obj +61 +endobj +793 0 obj +55 +endobj +794 0 obj +72 +endobj +795 0 obj +96 +endobj +796 0 obj +42 +endobj +797 0 obj +16471 +endobj +798 0 obj +89 +endobj +799 0 obj +21 +endobj +800 0 obj +43 +endobj +801 0 obj +39 +endobj +802 0 obj +37 +endobj +803 0 obj +46 +endobj +804 0 obj +14284 +endobj +805 0 obj +76 +endobj +806 0 obj +119 +endobj +807 0 obj +46 +endobj +808 0 obj +74 +endobj +809 0 obj +83 +endobj +810 0 obj +94 +endobj +811 0 obj +43 +endobj +812 0 obj +64 +endobj +813 0 obj +81 +endobj +814 0 obj +36 +endobj +815 0 obj +50 +endobj +816 0 obj +14705 +endobj +817 0 obj +91 +endobj +818 0 obj +105 +endobj +819 0 obj +14190 +endobj +820 0 obj +118 +endobj +821 0 obj +115 +endobj +822 0 obj +72 +endobj +823 0 obj +9945 +endobj +824 0 obj +111 +endobj +825 0 obj +123 +endobj +826 0 obj +89 +endobj +827 0 obj +111 +endobj +828 0 obj +45 +endobj +829 0 obj +89 +endobj +830 0 obj +107 +endobj +831 0 obj +13565 +endobj +832 0 obj +20 +endobj +833 0 obj +20 +endobj +834 0 obj +42 +endobj +835 0 obj +85 +endobj +836 0 obj +77 +endobj +837 0 obj +81 +endobj +838 0 obj +99 +endobj +839 0 obj +128 +endobj +840 0 obj +47 +endobj +841 0 obj +53 +endobj +842 0 obj +63 +endobj +843 0 obj +44 +endobj +844 0 obj +60 +endobj +845 0 obj +59 +endobj +846 0 obj +60 +endobj +847 0 obj +46 +endobj +848 0 obj +43 +endobj +849 0 obj +74 +endobj +850 0 obj +78 +endobj +851 0 obj +47 +endobj +852 0 obj +90 +endobj +853 0 obj +50 +endobj +854 0 obj +19 +endobj +855 0 obj +48 +endobj +856 0 obj +72 +endobj +857 0 obj +44 +endobj +858 0 obj +68 +endobj +859 0 obj +90 +endobj +860 0 obj +61 +endobj +861 0 obj +25 +endobj +862 0 obj +87 +endobj +863 0 obj +63 +endobj +864 0 obj +94 +endobj +865 0 obj +18 +endobj +866 0 obj +67 +endobj +867 0 obj +63 +endobj +868 0 obj +65 +endobj +869 0 obj +78 +endobj +870 0 obj +89 +endobj +871 0 obj +27 +endobj +872 0 obj +70 +endobj +873 0 obj +116 +endobj +874 0 obj +118 +endobj +875 0 obj +68 +endobj +876 0 obj +84 +endobj +877 0 obj +83 +endobj +878 0 obj +88 +endobj +879 0 obj +11625 +endobj +880 0 obj +105 +endobj +881 0 obj +84 +endobj +882 0 obj +107 +endobj +883 0 obj +86 +endobj +884 0 obj +65 +endobj +885 0 obj +67 +endobj +886 0 obj +20 +endobj +887 0 obj +144 +endobj +888 0 obj +142 +endobj +889 0 obj +194 +endobj +890 0 obj +90 +endobj +891 0 obj +151 +endobj +892 0 obj +100 +endobj +893 0 obj +121 +endobj +894 0 obj +67 +endobj +895 0 obj +53 +endobj +896 0 obj +24 +endobj +897 0 obj +69 +endobj +898 0 obj +74 +endobj +899 0 obj +60 +endobj +900 0 obj +62 +endobj +901 0 obj +55 +endobj +902 0 obj +63 +endobj +903 0 obj +30 +endobj +904 0 obj +26 +endobj +905 0 obj +41 +endobj +906 0 obj +67 +endobj +907 0 obj +60 +endobj +908 0 obj +53 +endobj +909 0 obj +60 +endobj +910 0 obj +56 +endobj +911 0 obj +45 +endobj +912 0 obj +23 +endobj +913 0 obj +4464 +endobj +914 0 obj +52 +endobj +915 0 obj +41 +endobj +916 0 obj +41 +endobj +917 0 obj +42 +endobj +918 0 obj +53 +endobj +919 0 obj +87 +endobj +920 0 obj +56 +endobj +921 0 obj +65 +endobj +922 0 obj +24 +endobj +923 0 obj +59 +endobj +924 0 obj +31 +endobj +925 0 obj +65 +endobj +926 0 obj +55 +endobj +927 0 obj +45 +endobj +928 0 obj +74 +endobj +929 0 obj +38 +endobj +930 0 obj +89 +endobj +931 0 obj +86 +endobj +932 0 obj +51 +endobj +933 0 obj +78 +endobj +934 0 obj +34 +endobj +935 0 obj +41 +endobj +936 0 obj +65 +endobj +937 0 obj +31 +endobj +938 0 obj +89 +endobj +939 0 obj +18 +endobj +940 0 obj +49 +endobj +941 0 obj +33 +endobj +942 0 obj +32 +endobj +943 0 obj +80 +endobj +944 0 obj +18 +endobj +xref +0 945 +0000000000 65535 f +0000000015 00000 n +0000000112 00000 n +0000000158 00000 n +0000000348 00000 n +0000000387 00000 n +0000000409 00000 n +0000032501 00000 n +0000048838 00000 n +0000049159 00000 n +0000049441 00000 n +0000049730 00000 n +0000049950 00000 n +0000050248 00000 n +0000050530 00000 n +0000050813 00000 n +0000051064 00000 n +0000051329 00000 n +0000051670 00000 n +0000051932 00000 n +0000052226 00000 n +0000052494 00000 n +0000052771 00000 n +0000053025 00000 n +0000053282 00000 n +0000053524 00000 n +0000053808 00000 n +0000054080 00000 n +0000054287 00000 n +0000054599 00000 n +0000054877 00000 n +0000055117 00000 n +0000055370 00000 n +0000055623 00000 n +0000055893 00000 n +0000056108 00000 n +0000056357 00000 n +0000056659 00000 n +0000056926 00000 n +0000057194 00000 n +0000057439 00000 n +0000057679 00000 n +0000057941 00000 n +0000058201 00000 n +0000058449 00000 n +0000058701 00000 n +0000058968 00000 n +0000059217 00000 n +0000059436 00000 n +0000059710 00000 n +0000059966 00000 n +0000060208 00000 n +0000060440 00000 n +0000060663 00000 n +0000060887 00000 n +0000061122 00000 n +0000061358 00000 n +0000061575 00000 n +0000061820 00000 n +0000062078 00000 n +0000062354 00000 n +0000062570 00000 n +0000062799 00000 n +0000063049 00000 n +0000063319 00000 n +0000063578 00000 n +0000063862 00000 n +0000064125 00000 n +0000064407 00000 n +0000064646 00000 n +0000064891 00000 n +0000065134 00000 n +0000065399 00000 n +0000065644 00000 n +0000065925 00000 n +0000066187 00000 n +0000066414 00000 n +0000066647 00000 n +0000066898 00000 n +0000067106 00000 n +0000067313 00000 n +0000067573 00000 n +0000067808 00000 n +0000068078 00000 n +0000068323 00000 n +0000068553 00000 n +0000068771 00000 n +0000069012 00000 n +0000069261 00000 n +0000069496 00000 n +0000069755 00000 n +0000070023 00000 n +0000070260 00000 n +0000070533 00000 n +0000070764 00000 n +0000071009 00000 n +0000071233 00000 n +0000071494 00000 n +0000071764 00000 n +0000072027 00000 n +0000072294 00000 n +0000072548 00000 n +0000072849 00000 n +0000073112 00000 n +0000073350 00000 n +0000073604 00000 n +0000073884 00000 n +0000074107 00000 n +0000074379 00000 n +0000074656 00000 n +0000074905 00000 n +0000075129 00000 n +0000075411 00000 n +0000075692 00000 n +0000075946 00000 n +0000076213 00000 n +0000076513 00000 n +0000076806 00000 n +0000077079 00000 n +0000077325 00000 n +0000077577 00000 n +0000077825 00000 n +0000078103 00000 n +0000078357 00000 n +0000078605 00000 n +0000078793 00000 n +0000079013 00000 n +0000079259 00000 n +0000079485 00000 n +0000079709 00000 n +0000079946 00000 n +0000080180 00000 n +0000080403 00000 n +0000080644 00000 n +0000080874 00000 n +0000081129 00000 n +0000081359 00000 n +0000081591 00000 n +0000081823 00000 n +0000082056 00000 n +0000082299 00000 n +0000082526 00000 n +0000082771 00000 n +0000082988 00000 n +0000083236 00000 n +0000083477 00000 n +0000083725 00000 n +0000083988 00000 n +0000084240 00000 n +0000084470 00000 n +0000084714 00000 n +0000084923 00000 n +0000085186 00000 n +0000085431 00000 n +0000085680 00000 n +0000085927 00000 n +0000086147 00000 n +0000086397 00000 n +0000086628 00000 n +0000086884 00000 n +0000087118 00000 n +0000087358 00000 n +0000087632 00000 n +0000087842 00000 n +0000088058 00000 n +0000088304 00000 n +0000088561 00000 n +0000088776 00000 n +0000089035 00000 n +0000089319 00000 n +0000089571 00000 n +0000089805 00000 n +0000123661 00000 n +0000140803 00000 n +0000141051 00000 n +0000141325 00000 n +0000141576 00000 n +0000141791 00000 n +0000142008 00000 n +0000142272 00000 n +0000142555 00000 n +0000142822 00000 n +0000143126 00000 n +0000143396 00000 n +0000143667 00000 n +0000143884 00000 n +0000144163 00000 n +0000144474 00000 n +0000144755 00000 n +0000145033 00000 n +0000145303 00000 n +0000145554 00000 n +0000145815 00000 n +0000146101 00000 n +0000146341 00000 n +0000146609 00000 n +0000146863 00000 n +0000147138 00000 n +0000147376 00000 n +0000147673 00000 n +0000147928 00000 n +0000148206 00000 n +0000148450 00000 n +0000148684 00000 n +0000148935 00000 n +0000149181 00000 n +0000149429 00000 n +0000149681 00000 n +0000149898 00000 n +0000150115 00000 n +0000181871 00000 n +0000198003 00000 n +0000198282 00000 n +0000198526 00000 n +0000198779 00000 n +0000199061 00000 n +0000199308 00000 n +0000199538 00000 n +0000199792 00000 n +0000200009 00000 n +0000200267 00000 n +0000200544 00000 n +0000200803 00000 n +0000201058 00000 n +0000201292 00000 n +0000201536 00000 n +0000201815 00000 n +0000202027 00000 n +0000202332 00000 n +0000202619 00000 n +0000202874 00000 n +0000203116 00000 n +0000203407 00000 n +0000203688 00000 n +0000203945 00000 n +0000204195 00000 n +0000204475 00000 n +0000204708 00000 n +0000204925 00000 n +0000205190 00000 n +0000205439 00000 n +0000205686 00000 n +0000205930 00000 n +0000206169 00000 n +0000206425 00000 n +0000237005 00000 n +0000252776 00000 n +0000253046 00000 n +0000253256 00000 n +0000253485 00000 n +0000253742 00000 n +0000253987 00000 n +0000254244 00000 n +0000254507 00000 n +0000254767 00000 n +0000254997 00000 n +0000255250 00000 n +0000255486 00000 n +0000255784 00000 n +0000256016 00000 n +0000256292 00000 n +0000256587 00000 n +0000256810 00000 n +0000257042 00000 n +0000257274 00000 n +0000257535 00000 n +0000257820 00000 n +0000258072 00000 n +0000258317 00000 n +0000258577 00000 n +0000258787 00000 n +0000259046 00000 n +0000259279 00000 n +0000259522 00000 n +0000259809 00000 n +0000260051 00000 n +0000260284 00000 n +0000260516 00000 n +0000260751 00000 n +0000261005 00000 n +0000261252 00000 n +0000261485 00000 n +0000299896 00000 n +0000318596 00000 n +0000318879 00000 n +0000319096 00000 n +0000319340 00000 n +0000319596 00000 n +0000319851 00000 n +0000349831 00000 n +0000365029 00000 n +0000365329 00000 n +0000365566 00000 n +0000365806 00000 n +0000366045 00000 n +0000366264 00000 n +0000366506 00000 n +0000366808 00000 n +0000367096 00000 n +0000367377 00000 n +0000367664 00000 n +0000367924 00000 n +0000368175 00000 n +0000368415 00000 n +0000368707 00000 n +0000368988 00000 n +0000369267 00000 n +0000369510 00000 n +0000369771 00000 n +0000369993 00000 n +0000370242 00000 n +0000370494 00000 n +0000370729 00000 n +0000371029 00000 n +0000371308 00000 n +0000371566 00000 n +0000371811 00000 n +0000372049 00000 n +0000372286 00000 n +0000372504 00000 n +0000372758 00000 n +0000373006 00000 n +0000373271 00000 n +0000373560 00000 n +0000373795 00000 n +0000406524 00000 n +0000423073 00000 n +0000423355 00000 n +0000423568 00000 n +0000423804 00000 n +0000424036 00000 n +0000424266 00000 n +0000424505 00000 n +0000452714 00000 n +0000467076 00000 n +0000467345 00000 n +0000467657 00000 n +0000467896 00000 n +0000468163 00000 n +0000468439 00000 n +0000468726 00000 n +0000468962 00000 n +0000469219 00000 n +0000469493 00000 n +0000469722 00000 n +0000469965 00000 n +0000488467 00000 n +0000503250 00000 n +0000503534 00000 n +0000503832 00000 n +0000521670 00000 n +0000535938 00000 n +0000536249 00000 n +0000536557 00000 n +0000536822 00000 n +0000553490 00000 n +0000563513 00000 n +0000563817 00000 n +0000564133 00000 n +0000564415 00000 n +0000564719 00000 n +0000564957 00000 n +0000565239 00000 n +0000565539 00000 n +0000591077 00000 n +0000604720 00000 n +0000604932 00000 n +0000605144 00000 n +0000605379 00000 n +0000605657 00000 n +0000605927 00000 n +0000606201 00000 n +0000606493 00000 n +0000606814 00000 n +0000607054 00000 n +0000607300 00000 n +0000607556 00000 n +0000607793 00000 n +0000608046 00000 n +0000608298 00000 n +0000608551 00000 n +0000608790 00000 n +0000609026 00000 n +0000609293 00000 n +0000609564 00000 n +0000609804 00000 n +0000610087 00000 n +0000610330 00000 n +0000610541 00000 n +0000610782 00000 n +0000611047 00000 n +0000611284 00000 n +0000611545 00000 n +0000611828 00000 n +0000612082 00000 n +0000612299 00000 n +0000612579 00000 n +0000612835 00000 n +0000613122 00000 n +0000613331 00000 n +0000613591 00000 n +0000613847 00000 n +0000614105 00000 n +0000614376 00000 n +0000614658 00000 n +0000614877 00000 n +0000615140 00000 n +0000615449 00000 n +0000615760 00000 n +0000616021 00000 n +0000616298 00000 n +0000616574 00000 n +0000616855 00000 n +0000639172 00000 n +0000650875 00000 n +0000651173 00000 n +0000651450 00000 n +0000651750 00000 n +0000652029 00000 n +0000652287 00000 n +0000652547 00000 n +0000652759 00000 n +0000653096 00000 n +0000653431 00000 n +0000653818 00000 n +0000654101 00000 n +0000654445 00000 n +0000654738 00000 n +0000655052 00000 n +0000655312 00000 n +0000655558 00000 n +0000655775 00000 n +0000656037 00000 n +0000656304 00000 n +0000656557 00000 n +0000656812 00000 n +0000657060 00000 n +0000657316 00000 n +0000657539 00000 n +0000657757 00000 n +0000657991 00000 n +0000658251 00000 n +0000658504 00000 n +0000658750 00000 n +0000659003 00000 n +0000659252 00000 n +0000659490 00000 n +0000659705 00000 n +0000670205 00000 n +0000674747 00000 n +0000674992 00000 n +0000675226 00000 n +0000675460 00000 n +0000675695 00000 n +0000675941 00000 n +0000676221 00000 n +0000676470 00000 n +0000676728 00000 n +0000676945 00000 n +0000677197 00000 n +0000677421 00000 n +0000677679 00000 n +0000677927 00000 n +0000678165 00000 n +0000678432 00000 n +0000678663 00000 n +0000678945 00000 n +0000679224 00000 n +0000679468 00000 n +0000679739 00000 n +0000679966 00000 n +0000680200 00000 n +0000680458 00000 n +0000680682 00000 n +0000680964 00000 n +0000681174 00000 n +0000681416 00000 n +0000681642 00000 n +0000681867 00000 n +0000682140 00000 n +0000682349 00000 n +0000682478 00000 n +0000683805 00000 n +0000683930 00000 n +0000685378 00000 n +0000685528 00000 n +0000685551 00000 n +0000685572 00000 n +0000685592 00000 n +0000685612 00000 n +0000685632 00000 n +0000685653 00000 n +0000685673 00000 n +0000685693 00000 n +0000685713 00000 n +0000685733 00000 n +0000685754 00000 n +0000685774 00000 n +0000685795 00000 n +0000685815 00000 n +0000685835 00000 n +0000685855 00000 n +0000685875 00000 n +0000685895 00000 n +0000685915 00000 n +0000685935 00000 n +0000685955 00000 n +0000685976 00000 n +0000685996 00000 n +0000686016 00000 n +0000686036 00000 n +0000686056 00000 n +0000686076 00000 n +0000686096 00000 n +0000686116 00000 n +0000686137 00000 n +0000686157 00000 n +0000686177 00000 n +0000686197 00000 n +0000686217 00000 n +0000686237 00000 n +0000686257 00000 n +0000686277 00000 n +0000686297 00000 n +0000686317 00000 n +0000686337 00000 n +0000686357 00000 n +0000686377 00000 n +0000686397 00000 n +0000686417 00000 n +0000686437 00000 n +0000686457 00000 n +0000686477 00000 n +0000686497 00000 n +0000686517 00000 n +0000686537 00000 n +0000686557 00000 n +0000686577 00000 n +0000686597 00000 n +0000686617 00000 n +0000686637 00000 n +0000686657 00000 n +0000686677 00000 n +0000686697 00000 n +0000686717 00000 n +0000686737 00000 n +0000686757 00000 n +0000686777 00000 n +0000686797 00000 n +0000686817 00000 n +0000686837 00000 n +0000686857 00000 n +0000686877 00000 n +0000686897 00000 n +0000686917 00000 n +0000686937 00000 n +0000686957 00000 n +0000686977 00000 n +0000686997 00000 n +0000687017 00000 n +0000687037 00000 n +0000687057 00000 n +0000687077 00000 n +0000687097 00000 n +0000687117 00000 n +0000687137 00000 n +0000687157 00000 n +0000687177 00000 n +0000687197 00000 n +0000687217 00000 n +0000687237 00000 n +0000687257 00000 n +0000687277 00000 n +0000687297 00000 n +0000687317 00000 n +0000687337 00000 n +0000687357 00000 n +0000687377 00000 n +0000687397 00000 n +0000687417 00000 n +0000687438 00000 n +0000687458 00000 n +0000687478 00000 n +0000687498 00000 n +0000687518 00000 n +0000687538 00000 n +0000687558 00000 n +0000687578 00000 n +0000687598 00000 n +0000687618 00000 n +0000687638 00000 n +0000687658 00000 n +0000687678 00000 n +0000687698 00000 n +0000687719 00000 n +0000687740 00000 n +0000687760 00000 n +0000687780 00000 n +0000687800 00000 n +0000687820 00000 n +0000687840 00000 n +0000687860 00000 n +0000687880 00000 n +0000687900 00000 n +0000687920 00000 n +0000687940 00000 n +0000687960 00000 n +0000687980 00000 n +0000688000 00000 n +0000688020 00000 n +0000688040 00000 n +0000688060 00000 n +0000688080 00000 n +0000688100 00000 n +0000688120 00000 n +0000688140 00000 n +0000688160 00000 n +0000688180 00000 n +0000688200 00000 n +0000688220 00000 n +0000688240 00000 n +0000688260 00000 n +0000688280 00000 n +0000688300 00000 n +0000688320 00000 n +0000688340 00000 n +0000688360 00000 n +0000688380 00000 n +0000688400 00000 n +0000688420 00000 n +0000688440 00000 n +0000688460 00000 n +0000688480 00000 n +0000688500 00000 n +0000688520 00000 n +0000688540 00000 n +0000688560 00000 n +0000688580 00000 n +0000688600 00000 n +0000688620 00000 n +0000688640 00000 n +0000688660 00000 n +0000688680 00000 n +0000688700 00000 n +0000688720 00000 n +0000688740 00000 n +0000688760 00000 n +0000688780 00000 n +0000688800 00000 n +0000688820 00000 n +0000688843 00000 n +0000688863 00000 n +0000688883 00000 n +0000688903 00000 n +0000688923 00000 n +0000688943 00000 n +0000688963 00000 n +0000688983 00000 n +0000689003 00000 n +0000689024 00000 n +0000689044 00000 n +0000689064 00000 n +0000689084 00000 n +0000689104 00000 n +0000689125 00000 n +0000689145 00000 n +0000689165 00000 n +0000689185 00000 n +0000689205 00000 n +0000689225 00000 n +0000689245 00000 n +0000689265 00000 n +0000689285 00000 n +0000689305 00000 n +0000689325 00000 n +0000689345 00000 n +0000689366 00000 n +0000689386 00000 n +0000689406 00000 n +0000689426 00000 n +0000689446 00000 n +0000689466 00000 n +0000689486 00000 n +0000689506 00000 n +0000689526 00000 n +0000689546 00000 n +0000689566 00000 n +0000689589 00000 n +0000689609 00000 n +0000689629 00000 n +0000689649 00000 n +0000689669 00000 n +0000689689 00000 n +0000689709 00000 n +0000689729 00000 n +0000689749 00000 n +0000689769 00000 n +0000689789 00000 n +0000689809 00000 n +0000689829 00000 n +0000689849 00000 n +0000689869 00000 n +0000689889 00000 n +0000689909 00000 n +0000689930 00000 n +0000689950 00000 n +0000689970 00000 n +0000689990 00000 n +0000690010 00000 n +0000690030 00000 n +0000690050 00000 n +0000690070 00000 n +0000690090 00000 n +0000690110 00000 n +0000690130 00000 n +0000690150 00000 n +0000690170 00000 n +0000690190 00000 n +0000690210 00000 n +0000690230 00000 n +0000690250 00000 n +0000690273 00000 n +0000690293 00000 n +0000690313 00000 n +0000690333 00000 n +0000690353 00000 n +0000690373 00000 n +0000690393 00000 n +0000690413 00000 n +0000690433 00000 n +0000690453 00000 n +0000690473 00000 n +0000690493 00000 n +0000690514 00000 n +0000690534 00000 n +0000690554 00000 n +0000690575 00000 n +0000690595 00000 n +0000690615 00000 n +0000690635 00000 n +0000690655 00000 n +0000690675 00000 n +0000690695 00000 n +0000690715 00000 n +0000690735 00000 n +0000690755 00000 n +0000690775 00000 n +0000690795 00000 n +0000690815 00000 n +0000690835 00000 n +0000690855 00000 n +0000690875 00000 n +0000690895 00000 n +0000690915 00000 n +0000690935 00000 n +0000690955 00000 n +0000690975 00000 n +0000690998 00000 n +0000691018 00000 n +0000691038 00000 n +0000691058 00000 n +0000691078 00000 n +0000691098 00000 n +0000691121 00000 n +0000691142 00000 n +0000691162 00000 n +0000691182 00000 n +0000691202 00000 n +0000691222 00000 n +0000691242 00000 n +0000691263 00000 n +0000691283 00000 n +0000691303 00000 n +0000691323 00000 n +0000691343 00000 n +0000691363 00000 n +0000691383 00000 n +0000691403 00000 n +0000691423 00000 n +0000691443 00000 n +0000691463 00000 n +0000691483 00000 n +0000691503 00000 n +0000691523 00000 n +0000691543 00000 n +0000691563 00000 n +0000691584 00000 n +0000691604 00000 n +0000691624 00000 n +0000691644 00000 n +0000691664 00000 n +0000691684 00000 n +0000691704 00000 n +0000691724 00000 n +0000691744 00000 n +0000691764 00000 n +0000691784 00000 n +0000691804 00000 n +0000691827 00000 n +0000691847 00000 n +0000691867 00000 n +0000691887 00000 n +0000691907 00000 n +0000691927 00000 n +0000691947 00000 n +0000691970 00000 n +0000691990 00000 n +0000692011 00000 n +0000692031 00000 n +0000692051 00000 n +0000692071 00000 n +0000692091 00000 n +0000692111 00000 n +0000692131 00000 n +0000692151 00000 n +0000692171 00000 n +0000692191 00000 n +0000692214 00000 n +0000692234 00000 n +0000692255 00000 n +0000692278 00000 n +0000692299 00000 n +0000692320 00000 n +0000692340 00000 n +0000692362 00000 n +0000692383 00000 n +0000692404 00000 n +0000692424 00000 n +0000692445 00000 n +0000692465 00000 n +0000692485 00000 n +0000692506 00000 n +0000692529 00000 n +0000692549 00000 n +0000692569 00000 n +0000692589 00000 n +0000692609 00000 n +0000692629 00000 n +0000692649 00000 n +0000692669 00000 n +0000692690 00000 n +0000692710 00000 n +0000692730 00000 n +0000692750 00000 n +0000692770 00000 n +0000692790 00000 n +0000692810 00000 n +0000692830 00000 n +0000692850 00000 n +0000692870 00000 n +0000692890 00000 n +0000692910 00000 n +0000692930 00000 n +0000692950 00000 n +0000692970 00000 n +0000692990 00000 n +0000693010 00000 n +0000693030 00000 n +0000693050 00000 n +0000693070 00000 n +0000693090 00000 n +0000693110 00000 n +0000693130 00000 n +0000693150 00000 n +0000693170 00000 n +0000693190 00000 n +0000693210 00000 n +0000693230 00000 n +0000693250 00000 n +0000693270 00000 n +0000693290 00000 n +0000693310 00000 n +0000693330 00000 n +0000693350 00000 n +0000693371 00000 n +0000693392 00000 n +0000693412 00000 n +0000693432 00000 n +0000693452 00000 n +0000693472 00000 n +0000693495 00000 n +0000693516 00000 n +0000693536 00000 n +0000693557 00000 n +0000693577 00000 n +0000693597 00000 n +0000693617 00000 n +0000693637 00000 n +0000693658 00000 n +0000693679 00000 n +0000693700 00000 n +0000693720 00000 n +0000693741 00000 n +0000693762 00000 n +0000693783 00000 n +0000693803 00000 n +0000693823 00000 n +0000693843 00000 n +0000693863 00000 n +0000693883 00000 n +0000693903 00000 n +0000693923 00000 n +0000693943 00000 n +0000693963 00000 n +0000693983 00000 n +0000694003 00000 n +0000694023 00000 n +0000694043 00000 n +0000694063 00000 n +0000694083 00000 n +0000694103 00000 n +0000694123 00000 n +0000694143 00000 n +0000694163 00000 n +0000694185 00000 n +0000694205 00000 n +0000694225 00000 n +0000694245 00000 n +0000694265 00000 n +0000694285 00000 n +0000694305 00000 n +0000694325 00000 n +0000694345 00000 n +0000694365 00000 n +0000694385 00000 n +0000694405 00000 n +0000694425 00000 n +0000694445 00000 n +0000694465 00000 n +0000694485 00000 n +0000694505 00000 n +0000694525 00000 n +0000694545 00000 n +0000694565 00000 n +0000694585 00000 n +0000694605 00000 n +0000694625 00000 n +0000694645 00000 n +0000694665 00000 n +0000694685 00000 n +0000694705 00000 n +0000694725 00000 n +0000694745 00000 n +0000694765 00000 n +0000694785 00000 n +trailer +<< +/Size 945 +/Root 1 0 R +/Info 484 0 R +>> +startxref +694805 +%%EOF diff --git a/misc/Are there pratical alternatives to alpha beta search.pdf b/misc/Are there pratical alternatives to alpha beta search.pdf new file mode 100644 index 0000000..50c1de1 --- /dev/null +++ b/misc/Are there pratical alternatives to alpha beta search.pdf @@ -0,0 +1,14426 @@ +%PDF-1.2 +%ÐÓÔÌ +1 0 obj +<< +/Type /Catalog +/Pages 3 0 R +/Outlines 2 0 R +/Dests 5 0 R +/PageMode /UseNone +>> +endobj +2 0 obj +<< +/Type /Outlines +/Count 0 +>> +endobj +3 0 obj +<< +/Type /Pages +/MediaBox [ 0 0 612 792 ] +/Count 18 +/Kids [ 6 0 R 207 0 R 281 0 R 329 0 R 370 0 R 398 0 R 430 0 R 438 0 R 444 0 R 458 0 R 466 0 R 473 0 R 495 0 R 498 0 R 509 0 R 532 0 R 542 0 R 590 0 R ] +>> +endobj +4 0 obj +[ /PDF /Text /ImageC ] +endobj +5 0 obj +<< + +>> +endobj +6 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 593 0 R >> /XObject << /Im1 8 0 R /Im2 9 0 R /Im3 10 0 R /Im4 11 0 R /Im5 12 0 R /Im3 10 0 R /Im2 9 0 R /Im3 10 0 R /Im6 13 0 R /Im2 9 0 R /Im7 14 0 R /Im8 15 0 R /Im9 16 0 R /Im10 17 0 R /Im8 15 0 R /Im7 14 0 R /Im11 18 0 R /Im11 18 0 R /Im9 16 0 R /Im3 10 0 R /Im2 9 0 R /Im12 19 0 R /Im7 14 0 R /Im9 16 0 R /Im10 17 0 R /Im13 20 0 R /Im3 10 0 R /Im14 21 0 R /Im4 11 0 R /Im15 22 0 R /Im11 18 0 R /Im16 23 0 R /Im5 12 0 R /Im7 14 0 R /Im17 24 0 R /Im18 25 0 R /Im3 10 0 R /Im9 16 0 R /Im7 14 0 R /Im10 17 0 R /Im12 19 0 R /Im19 26 0 R /Im15 22 0 R /Im20 27 0 R /Im16 23 0 R /Im21 28 0 R /Im9 16 0 R /Im3 10 0 R /Im2 9 0 R /Im19 26 0 R /Im5 12 0 R /Im3 10 0 R /Im14 21 0 R /Im14 21 0 R /Im22 29 0 R /Im23 30 0 R /Im24 31 0 R /Im25 32 0 R /Im26 33 0 R /Im27 34 0 R /Im28 35 0 R /Im29 36 0 R /Im30 37 0 R /Im31 38 0 R /Im24 31 0 R /Im32 39 0 R /Im33 40 0 R /Im28 35 0 R /Im24 31 0 R /Im24 31 0 R /Im29 36 0 R /Im34 41 0 R /Im30 37 0 R /Im28 35 0 R /Im24 31 0 R /Im31 38 0 R /Im28 35 0 R /Im26 33 0 R /Im35 42 0 R /Im36 43 0 R /Im37 44 0 R /Im38 45 0 R /Im39 46 0 R /Im37 44 0 R /Im37 44 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im43 50 0 R /Im44 51 0 R /Im45 52 0 R /Im46 53 0 R /Im47 54 0 R /Im44 51 0 R /Im48 55 0 R /Im49 56 0 R /Im50 57 0 R /Im51 58 0 R /Im52 59 0 R /Im53 60 0 R /Im53 60 0 R /Im50 57 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im55 62 0 R /Im56 63 0 R /Im49 56 0 R /Im50 57 0 R /Im57 64 0 R /Im58 65 0 R /Im59 66 0 R /Im49 56 0 R /Im57 64 0 R /Im60 67 0 R /Im61 68 0 R /Im50 57 0 R /Im56 63 0 R /Im57 64 0 R /Im57 64 0 R /Im58 65 0 R /Im62 69 0 R /Im54 61 0 R /Im63 70 0 R /Im64 71 0 R /Im56 63 0 R /Im49 56 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im62 69 0 R /Im57 64 0 R /Im65 72 0 R /Im50 57 0 R /Im60 67 0 R /Im59 66 0 R /Im58 65 0 R /Im57 64 0 R /Im67 74 0 R /Im64 71 0 R /Im66 73 0 R /Im62 69 0 R /Im49 56 0 R /Im57 64 0 R /Im51 58 0 R /Im51 58 0 R /Im49 56 0 R /Im54 61 0 R /Im68 75 0 R /Im66 73 0 R /Im64 71 0 R /Im56 63 0 R /Im51 58 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im55 62 0 R /Im54 61 0 R /Im63 70 0 R /Im59 66 0 R /Im63 70 0 R /Im54 61 0 R /Im61 68 0 R /Im58 65 0 R /Im50 57 0 R /Im65 72 0 R /Im51 58 0 R /Im54 61 0 R /Im58 65 0 R /Im69 76 0 R /Im64 71 0 R /Im66 73 0 R /Im62 69 0 R /Im64 71 0 R /Im66 73 0 R /Im57 64 0 R /Im63 70 0 R /Im56 63 0 R /Im64 71 0 R /Im70 77 0 R /Im53 60 0 R /Im64 71 0 R /Im57 64 0 R /Im58 65 0 R /Im64 71 0 R /Im66 73 0 R /Im56 63 0 R /Im50 57 0 R /Im58 65 0 R /Im58 65 0 R /Im64 71 0 R /Im62 69 0 R /Im50 57 0 R /Im66 73 0 R /Im53 60 0 R /Im50 57 0 R /Im71 78 0 R /Im50 57 0 R /Im51 58 0 R /Im59 66 0 R /Im50 57 0 R /Im53 60 0 R /Im64 71 0 R /Im57 64 0 R /Im58 65 0 R /Im58 65 0 R /Im67 74 0 R /Im64 71 0 R /Im66 73 0 R /Im56 63 0 R /Im49 56 0 R /Im50 57 0 R /Im72 79 0 R /Im54 61 0 R /Im65 72 0 R /Im57 64 0 R /Im64 71 0 R /Im66 73 0 R /Im54 61 0 R /Im55 62 0 R /Im56 63 0 R /Im68 75 0 R /Im54 61 0 R /Im60 67 0 R /Im59 66 0 R /Im50 57 0 R /Im63 70 0 R /Im51 58 0 R /Im54 61 0 R /Im66 73 0 R /Im73 80 0 R /Im50 57 0 R /Im63 70 0 R /Im54 61 0 R /Im60 67 0 R /Im51 58 0 R /Im52 59 0 R /Im65 72 0 R /Im62 69 0 R /Im57 64 0 R /Im65 72 0 R /Im50 57 0 R /Im51 58 0 R /Im68 75 0 R /Im64 71 0 R /Im56 63 0 R /Im49 56 0 R /Im59 66 0 R /Im50 57 0 R /Im63 70 0 R /Im55 62 0 R /Im50 57 0 R /Im53 60 0 R /Im56 63 0 R /Im60 67 0 R /Im64 71 0 R /Im66 73 0 R /Im55 62 0 R /Im54 61 0 R /Im63 70 0 R /Im65 72 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im74 81 0 R /Im75 82 0 R /Im54 61 0 R /Im68 75 0 R /Im50 57 0 R /Im69 76 0 R /Im50 57 0 R /Im63 70 0 R /Im71 78 0 R /Im56 63 0 R /Im49 56 0 R /Im50 57 0 R /Im63 70 0 R /Im50 57 0 R /Im50 57 0 R /Im76 83 0 R /Im64 71 0 R /Im51 58 0 R /Im56 63 0 R /Im72 79 0 R /Im64 71 0 R /Im77 84 0 R /Im50 57 0 R /Im63 70 0 R /Im50 57 0 R /Im66 73 0 R /Im56 63 0 R /Im57 64 0 R /Im58 65 0 R /Im62 69 0 R /Im54 61 0 R /Im63 70 0 R /Im64 71 0 R /Im56 63 0 R /Im49 56 0 R /Im65 72 0 R /Im51 58 0 R /Im55 62 0 R /Im54 61 0 R /Im63 70 0 R /Im62 69 0 R /Im57 64 0 R /Im65 72 0 R /Im50 57 0 R /Im60 67 0 R /Im56 63 0 R /Im63 70 0 R /Im50 57 0 R /Im50 57 0 R /Im51 58 0 R /Im50 57 0 R /Im57 64 0 R /Im63 70 0 R /Im53 60 0 R /Im49 56 0 R /Im74 81 0 R /Im48 55 0 R /Im49 56 0 R /Im64 71 0 R /Im51 58 0 R /Im59 66 0 R /Im57 64 0 R /Im59 66 0 R /Im50 57 0 R /Im63 70 0 R /Im72 79 0 R /Im50 57 0 R /Im51 58 0 R /Im53 60 0 R /Im63 70 0 R /Im64 71 0 R /Im61 68 0 R /Im50 57 0 R /Im51 58 0 R /Im57 64 0 R /Im66 73 0 R /Im72 79 0 R /Im57 64 0 R /Im51 58 0 R /Im51 58 0 R /Im50 57 0 R /Im51 58 0 R /Im51 58 0 R /Im50 57 0 R /Im51 58 0 R /Im56 63 0 R /Im49 56 0 R /Im54 61 0 R /Im51 58 0 R /Im50 57 0 R /Im59 66 0 R /Im63 70 0 R /Im54 61 0 R /Im59 66 0 R /Im54 61 0 R /Im51 58 0 R /Im50 57 0 R /Im72 79 0 R /Im57 64 0 R /Im58 65 0 R /Im56 63 0 R /Im50 57 0 R /Im63 70 0 R /Im66 73 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im69 76 0 R /Im50 57 0 R /Im51 58 0 R /Im57 64 0 R /Im53 60 0 R /Im53 60 0 R /Im54 61 0 R /Im63 70 0 R /Im72 79 0 R /Im64 71 0 R /Im66 73 0 R /Im62 69 0 R /Im56 63 0 R /Im54 61 0 R /Im49 56 0 R /Im54 61 0 R /Im68 75 0 R /Im56 63 0 R /Im49 56 0 R /Im50 57 0 R /Im67 74 0 R /Im56 63 0 R /Im63 70 0 R /Im67 74 0 R /Im56 63 0 R /Im54 61 0 R /Im54 61 0 R /Im69 76 0 R /Im50 57 0 R /Im63 70 0 R /Im53 60 0 R /Im54 61 0 R /Im65 72 0 R /Im50 57 0 R /Im56 63 0 R /Im49 56 0 R /Im50 57 0 R /Im58 65 0 R /Im64 71 0 R /Im65 72 0 R /Im64 71 0 R /Im56 63 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im51 58 0 R /Im54 61 0 R /Im55 62 0 R /Im57 64 0 R /Im58 65 0 R /Im59 66 0 R /Im49 56 0 R /Im57 64 0 R /Im60 67 0 R /Im61 68 0 R /Im50 57 0 R /Im56 63 0 R /Im57 64 0 R /Im74 81 0 R /Im78 85 0 R /Im50 57 0 R /Im53 60 0 R /Im54 61 0 R /Im66 73 0 R /Im53 60 0 R /Im58 65 0 R /Im52 59 0 R /Im72 79 0 R /Im50 57 0 R /Im56 63 0 R /Im49 56 0 R /Im57 64 0 R /Im56 63 0 R /Im55 62 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im54 61 0 R /Im65 72 0 R /Im59 66 0 R /Im52 59 0 R /Im56 63 0 R /Im50 57 0 R /Im63 70 0 R /Im53 60 0 R /Im49 56 0 R /Im50 57 0 R /Im51 58 0 R /Im51 58 0 R /Im66 73 0 R /Im54 61 0 R /Im59 66 0 R /Im63 70 0 R /Im57 64 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im53 60 0 R /Im57 64 0 R /Im58 65 0 R /Im57 64 0 R /Im58 65 0 R /Im56 63 0 R /Im50 57 0 R /Im63 70 0 R /Im66 73 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im69 76 0 R /Im50 57 0 R /Im50 57 0 R /Im76 83 0 R /Im64 71 0 R /Im51 58 0 R /Im56 63 0 R /Im51 58 0 R /Im71 78 0 R /Im61 68 0 R /Im52 59 0 R /Im56 63 0 R /Im65 72 0 R /Im57 64 0 R /Im66 73 0 R /Im67 74 0 R /Im59 66 0 R /Im63 70 0 R /Im54 61 0 R /Im65 72 0 R /Im64 71 0 R /Im51 58 0 R /Im64 71 0 R /Im66 73 0 R /Im62 69 0 R /Im64 71 0 R /Im72 79 0 R /Im50 57 0 R /Im57 64 0 R /Im51 58 0 R /Im49 56 0 R /Im57 64 0 R /Im69 76 0 R /Im50 57 0 R /Im62 69 0 R /Im54 61 0 R /Im54 61 0 R /Im72 79 0 R /Im59 66 0 R /Im54 61 0 R /Im56 63 0 R /Im50 57 0 R /Im66 73 0 R /Im56 63 0 R /Im64 71 0 R /Im57 64 0 R /Im58 65 0 R /Im56 63 0 R /Im54 61 0 R /Im53 60 0 R /Im49 56 0 R /Im57 64 0 R /Im66 73 0 R /Im62 69 0 R /Im50 57 0 R /Im56 63 0 R /Im49 56 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im66 73 0 R /Im56 63 0 R /Im49 56 0 R /Im50 57 0 R /Im55 62 0 R /Im52 59 0 R /Im56 63 0 R /Im52 59 0 R /Im63 70 0 R /Im50 57 0 R /Im74 81 0 R /Im79 86 0 R /Im80 87 0 R /Im81 88 0 R /Im82 89 0 R /Im83 90 0 R /Im84 91 0 R /Im85 92 0 R /Im86 93 0 R /Im87 94 0 R /Im82 89 0 R /Im88 95 0 R /Im84 91 0 R /Im81 88 0 R /Im89 96 0 R /Im81 88 0 R /Im85 92 0 R /Im90 97 0 R /Im84 91 0 R /Im82 89 0 R /Im88 95 0 R /Im91 98 0 R /Im89 96 0 R /Im82 89 0 R /Im88 95 0 R /Im84 91 0 R /Im81 88 0 R /Im92 99 0 R /Im93 100 0 R /Im94 101 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im101 108 0 R /Im107 114 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im109 116 0 R /Im110 117 0 R /Im93 100 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im107 114 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im97 104 0 R /Im98 105 0 R /Im116 123 0 R /Im103 110 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im96 103 0 R /Im100 107 0 R /Im100 107 0 R /Im98 105 0 R /Im117 124 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im118 125 0 R /Im109 116 0 R /Im119 126 0 R /Im120 127 0 R /Im97 104 0 R /Im96 103 0 R /Im103 110 0 R /Im104 111 0 R /Im94 101 0 R /Im98 105 0 R /Im121 128 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im123 130 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im98 105 0 R /Im103 110 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im98 105 0 R /Im103 110 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im103 110 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im101 108 0 R /Im96 103 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im124 131 0 R /Im94 101 0 R /Im93 100 0 R /Im114 121 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im117 124 0 R /Im96 103 0 R /Im74 81 0 R /Im125 132 0 R /Im96 103 0 R /Im101 108 0 R /Im103 110 0 R /Im102 109 0 R /Im98 105 0 R /Im113 120 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im97 104 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im123 130 0 R /Im99 106 0 R /Im115 122 0 R /Im96 103 0 R /Im114 121 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im103 110 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im107 114 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im112 119 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im124 131 0 R /Im94 101 0 R /Im93 100 0 R /Im114 121 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im117 124 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im115 122 0 R /Im96 103 0 R /Im114 121 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im99 106 0 R /Im117 124 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im103 110 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im117 124 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im74 81 0 R /Im109 116 0 R /Im106 113 0 R /Im106 113 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im112 119 0 R /Im116 123 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im94 101 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im115 122 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im100 107 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im123 130 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im112 119 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im123 130 0 R /Im74 81 0 R /Im127 134 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im101 108 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im118 125 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im103 110 0 R /Im96 103 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im106 113 0 R /Im120 127 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im101 108 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im112 119 0 R /Im113 120 0 R /Im93 100 0 R /Im93 100 0 R /Im124 131 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im103 110 0 R /Im102 109 0 R /Im98 105 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im118 125 0 R /Im101 108 0 R /Im96 103 0 R /Im96 103 0 R /Im128 135 0 R /Im129 136 0 R /Im130 137 0 R /Im131 138 0 R /Im132 139 0 R /Im133 140 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im120 127 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im101 108 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im100 107 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im101 108 0 R /Im111 118 0 R /Im99 106 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im134 141 0 R /Im93 100 0 R /Im103 110 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im114 121 0 R /Im93 100 0 R /Im112 119 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im106 113 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im107 114 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im100 107 0 R /Im123 130 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im111 118 0 R /Im99 106 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im108 115 0 R /Im102 109 0 R /Im95 102 0 R /Im96 103 0 R /Im123 130 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im105 112 0 R /Im99 106 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im108 115 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im135 142 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im98 105 0 R /Im101 108 0 R /Im111 118 0 R /Im99 106 0 R /Im98 105 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im102 109 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im99 106 0 R /Im103 110 0 R /Im97 104 0 R /Im93 100 0 R /Im94 101 0 R /Im104 111 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im112 119 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im117 124 0 R /Im102 109 0 R /Im99 106 0 R /Im105 112 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im111 118 0 R /Im99 106 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im105 112 0 R /Im99 106 0 R /Im106 113 0 R /Im96 103 0 R /Im107 114 0 R /Im94 101 0 R /Im96 103 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im105 112 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im107 114 0 R /Im94 101 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im74 81 0 R /Im119 126 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im108 115 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im93 100 0 R /Im111 118 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im107 114 0 R /Im94 101 0 R /Im96 103 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im115 122 0 R /Im108 115 0 R /Im100 107 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im74 81 0 R /Im136 143 0 R /Im105 112 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im114 121 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im94 101 0 R /Im96 103 0 R /Im96 103 0 R /Im106 113 0 R /Im115 122 0 R /Im108 115 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im97 104 0 R /Im108 115 0 R /Im94 101 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im93 100 0 R /Im100 107 0 R /Im95 102 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im102 109 0 R /Im97 104 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im99 106 0 R /Im101 108 0 R /Im124 131 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im101 108 0 R /Im114 121 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im113 120 0 R /Im96 103 0 R /Im106 113 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im116 123 0 R /Im103 110 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im108 115 0 R /Im117 124 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im102 109 0 R /Im97 104 0 R /Im98 105 0 R /Im116 123 0 R /Im103 110 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im101 108 0 R /Im114 121 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im106 113 0 R /Im108 115 0 R /Im103 110 0 R /Im96 103 0 R /Im96 103 0 R /Im121 128 0 R /Im108 115 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im99 106 0 R /Im102 109 0 R /Im97 104 0 R /Im98 105 0 R /Im116 123 0 R /Im103 110 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im97 104 0 R /Im100 107 0 R /Im96 103 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im112 119 0 R /Im114 121 0 R /Im93 100 0 R /Im102 109 0 R /Im100 107 0 R /Im106 113 0 R /Im106 113 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im107 114 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im100 107 0 R /Im123 130 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im101 108 0 R /Im111 118 0 R /Im99 106 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im126 133 0 R /Im104 111 0 R /Im98 105 0 R /Im113 120 0 R /Im98 105 0 R /Im97 104 0 R /Im101 108 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im123 130 0 R /Im101 108 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im109 116 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im103 110 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im117 124 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im117 124 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im126 133 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im101 108 0 R /Im74 81 0 R /Im127 134 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im123 130 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im97 104 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im98 105 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im100 107 0 R /Im123 130 0 R /Im98 105 0 R /Im117 124 0 R /Im94 101 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im105 112 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im124 131 0 R /Im96 103 0 R /Im123 130 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im111 118 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im74 81 0 R /Im137 144 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im100 107 0 R /Im96 103 0 R /Im115 122 0 R /Im97 104 0 R /Im138 145 0 R /Im109 116 0 R /Im103 110 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im102 109 0 R /Im96 103 0 R /Im95 102 0 R /Im98 105 0 R /Im96 103 0 R /Im114 121 0 R /Im93 100 0 R /Im115 122 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im123 130 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im123 130 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im74 81 0 R /Im109 116 0 R /Im94 101 0 R /Im96 103 0 R /Im126 133 0 R /Im99 106 0 R /Im103 110 0 R /Im97 104 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im103 110 0 R /Im102 109 0 R /Im98 105 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im113 120 0 R /Im96 103 0 R /Im123 130 0 R /Im93 100 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im103 110 0 R /Im93 100 0 R /Im111 118 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im99 106 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im102 109 0 R /Im96 103 0 R /Im115 122 0 R /Im96 103 0 R /Im102 109 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im117 124 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im99 106 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im118 125 0 R /Im101 108 0 R /Im120 127 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im108 115 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im102 109 0 R /Im104 111 0 R /Im93 100 0 R /Im111 118 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im102 109 0 R /Im95 102 0 R /Im96 103 0 R /Im123 130 0 R /Im114 121 0 R /Im98 105 0 R /Im100 107 0 R /Im100 107 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im111 118 0 R /Im97 104 0 R /Im93 100 0 R /Im101 108 0 R /Im108 115 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im107 114 0 R /Im105 112 0 R /Im99 106 0 R /Im123 130 0 R /Im113 120 0 R /Im96 103 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im102 109 0 R /Im96 103 0 R /Im95 102 0 R /Im98 105 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im139 146 0 R /Im96 103 0 R /Im107 114 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im107 114 0 R /Im106 113 0 R /Im108 115 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im102 109 0 R /Im98 105 0 R /Im105 112 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im108 115 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im107 114 0 R /Im106 113 0 R /Im98 105 0 R /Im140 147 0 R /Im103 110 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im112 119 0 R /Im105 112 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im100 107 0 R /Im98 105 0 R /Im139 146 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im107 114 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im123 130 0 R /Im112 119 0 R /Im115 122 0 R /Im93 100 0 R /Im100 107 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im116 123 0 R /Im94 101 0 R /Im96 103 0 R /Im112 119 0 R /Im97 104 0 R /Im108 115 0 R /Im94 101 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im74 81 0 R /Im141 148 0 R /Im142 149 0 R /Im141 148 0 R /Im143 150 0 R /Im144 151 0 R /Im145 152 0 R /Im146 153 0 R /Im147 154 0 R /Im148 155 0 R /Im149 156 0 R /Im150 157 0 R /Im145 152 0 R /Im151 158 0 R /Im152 159 0 R /Im147 154 0 R /Im153 160 0 R /Im154 161 0 R /Im155 162 0 R /Im156 163 0 R /Im157 164 0 R /Im148 155 0 R /Im158 165 0 R /Im155 162 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im98 105 0 R /Im103 110 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im117 124 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im111 118 0 R /Im102 109 0 R /Im98 105 0 R /Im103 110 0 R /Im96 103 0 R /Im159 166 0 R /Im103 110 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im98 105 0 R /Im116 123 0 R /Im103 110 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im105 112 0 R /Im99 106 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im105 112 0 R /Im99 106 0 R /Im123 130 0 R /Im103 110 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im106 113 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im117 124 0 R /Im96 103 0 R /Im93 100 0 R /Im108 115 0 R /Im101 108 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im136 143 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im123 130 0 R /Im97 104 0 R /Im114 121 0 R /Im93 100 0 R /Im112 119 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im139 146 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im112 119 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im112 119 0 R /Im98 105 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im112 119 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im98 105 0 R /Im115 122 0 R /Im113 120 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im100 107 0 R /Im123 130 0 R /Im74 81 0 R /Im160 167 0 R /Im123 130 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im102 109 0 R /Im96 103 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im161 168 0 R /Im162 169 0 R /Im163 170 0 R /Im164 171 0 R /Im165 172 0 R /Im166 173 0 R /Im167 174 0 R /Im168 175 0 R /Im164 171 0 R /Im169 176 0 R /Im170 177 0 R /Im171 178 0 R /Im172 179 0 R /Im173 180 0 R /Im174 181 0 R /Im175 182 0 R /Im166 173 0 R /Im167 174 0 R /Im169 176 0 R /Im176 183 0 R /Im177 184 0 R /Im178 185 0 R /Im166 173 0 R /Im179 186 0 R /Im176 183 0 R /Im167 174 0 R /Im169 176 0 R /Im180 187 0 R /Im166 173 0 R /Im163 170 0 R /Im169 176 0 R /Im171 178 0 R /Im172 179 0 R /Im181 188 0 R /Im171 178 0 R /Im180 187 0 R /Im179 186 0 R /Im182 189 0 R /Im169 176 0 R /Im164 171 0 R /Im163 170 0 R /Im183 190 0 R /Im184 191 0 R /Im185 192 0 R /Im164 171 0 R /Im166 173 0 R /Im163 170 0 R /Im185 192 0 R /Im166 173 0 R /Im177 184 0 R /Im186 193 0 R /Im187 194 0 R /Im188 195 0 R /Im189 196 0 R /Im184 191 0 R /Im190 197 0 R /Im177 184 0 R /Im191 198 0 R /Im192 199 0 R /Im180 187 0 R /Im171 178 0 R /Im163 170 0 R /Im169 176 0 R /Im171 178 0 R /Im163 170 0 R /Im177 184 0 R /Im173 180 0 R /Im190 197 0 R /Im177 184 0 R /Im181 188 0 R /Im173 180 0 R /Im193 200 0 R /Im173 180 0 R /Im178 185 0 R /Im173 180 0 R /Im194 201 0 R /Im186 193 0 R /Im189 196 0 R /Im195 202 0 R /Im196 203 0 R /Im187 194 0 R /Im177 184 0 R /Im191 198 0 R /Im180 187 0 R /Im176 183 0 R /Im164 171 0 R /Im174 181 0 R /Im197 204 0 R /Im176 183 0 R /Im163 170 0 R /Im192 199 0 R /Im167 174 0 R /Im166 173 0 R /Im176 183 0 R /Im168 175 0 R /Im198 205 0 R /Im185 192 0 R /Im168 175 0 R /Im74 81 0 R /Im182 189 0 R /Im176 183 0 R /Im174 181 0 R /Im175 182 0 R /Im166 173 0 R /Im167 174 0 R /Im169 176 0 R /Im176 183 0 R /Im74 81 0 R /Im185 192 0 R /Im176 183 0 R /Im199 206 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 7 0 R +>> +endobj +7 0 obj +<< +/Length 596 0 R +/Filter /FlateDecode +>> +stream +x¥}M³í¸Ü¾Å[Î,|ø"ÁY:ÆðÆ1ÓËÙØRk$[_#µCáïÃCî#y�7ݯC PU(þóýö?¸oÿáõO÷±ÄåÛò±,öOçßÿÚÃGZâ·uÝ>ömýöë?þðãÿ£ûöÏþá_¿>|¾ß>âëÝÀp¾~7ð2ü5¯vx¸wËGZo³wÛz,M?Þàõ?z¸z"äùGôùfþTziy$½´*_ß?Ü}ñExkþØâ}ü*Ï~ÛÙoÏ>'ðõM^<TÜ|?òmxQ¦×¤>üz¿ßÇ$¼äñHønQçïÚûfþLzÞmôÂG¸Î©øÞ#Ãuásàðþ>¸I3à;¼²tR~b»¯/kÚG2|CÛïdëñ/ãö/oÏÔûFýéú÷¾ïñ³ÝÐüäÝ/%Óo÷<Á£ýo~`ýØW8èx\ãy¸ýl?²ý ໵?à;·V ÕT ~¬®þ@ã?¨ó ÚFÌBv ,7X>6ßO ÜÜGuúÍø½`Ñ=~ì¹`áL £¦ÂÔ£ 3ñE'!E Ét îë}ý/Ü?~à=ü·Ï �`\Qð LÐD"q bA1ÏZPÀ¶Àë.4iAÓàôC>DW�ý©�1}©�ü^@øõÑX>à0¼õA|ü*Oý§ü¾?AÖÛòG<ÄgùÇk"ߨnÞNí¡ÞÚw/, |sèûÍþ á÷· }¿1¿ØÄ�e|öh|¡©qá6~CóoHëÂËxÁ®ãýoçÊ/,òû´ÐàÛ¿° ù@ñNÝÿ»üN¾ ×ëw>=xhô·ý~Y¿_ÑüþâýÊ¿Ù?ºþÅõñ/»UÆ3ý Ú¿Ìþ_8â«û +Í÷þùõt_é¥Ç_ë±5×ñ3ò÷Û©·ñ²ü_°Æ#ýÿÚþ{ó§øµ4@àÜñÓr°éÁçüül÷¯ØßæüÌîÐâÿoûßà§{ÏöªGH^ìá¿nóò»k¿ïù¨¿ aãó³ñÉ/øó¬%~:ñ/ÅK ++èo_Â§Ûø[ü9s²P¢ÏÛø[ü9-2,ðϾÑüý/ãGßúÏ@müÆ)XY¿ßÄ=~=÷ï`ßßã_züÝxCµñÛÇâñÀÜå"³ù_ƧFýGÎp|XÐx!ý±ñÌ? úkã3ú>Ð_2>ã·gòKhÿ[ùññQßú¯2~ ûì÷®ÿEÿÖí_c¿þcmüçáÝ¿ìèÿ¾? ÿʿٿ?l<Ô¿?üÛ[ùïPÿý·ùÏ[~{*ã_ëØëxà?±ü#E~lý~IâúãíûËÑ9`ÎïÇ5Õó/ ÿûúËüß*P°eþî°_¬¿ã§àÊ÷KþÓ ýËúçÃ.êßýû§ÿóÑìÇ},ûðãpýBüPÆ'¤¿k{|ÝðOeý/üãïÓýOpþ2~ùU³¿@-ë_ý-ÊÖñ³]?óßÇ/èÑ_ëÕÿÚ8Â&òÛÿnåÇô¯Æ¿]üÀøwÄ¿søwêßÿ*øÏì?ÀøQ±ÿ²~·OâW¿uÿ?ç¿üëoðùþ�ñCÖßVQ±ýðG÷¿!jògñcãG:~ÿËúWmýÌ®_È¿Êø Åÿ«ñYÓª¿â§ìÂã׿ûtÿv¿ýÃú¿«¬¿Çìø%ó~áý0~ÔóÏ(Æ,^ËþG¯é??Ì¿ÛøùÉÿÐïÇ$}®ãÀù'- úÿiõ®ÕòO¿D1þcö7h23Ä_D~á¿Äã·FÿþÇ÷Oâ¸ÃüAâ¾KñZPü¦Ï?Õü{tþçx½û¾)ý²ñ_Æ·æOé#£®ßݯ[vô}A|ôm;~ðOÖïV49}}9qþ¾²ð»³¾òø~k¾tþ!NÊßèßáÑ£/:úÃé߯ôÈ/"ýkåGÇ'¤ò7÷7¬?'|9£?=üþ!ò³ô¡#?ºÿ+Ô}ÿ6ø}þß´ý_÷}j¤ÛÎòÿC~áÓ&ÓG¿¦äø `ÞÆðÑÏßËTøçJ roþþ³ôc?OðÓ/pþ:ýêýéöï]Æ3ú¥ÒßýÓéñ>ôÐÿÊøí¿N¿FúñQ¥¯»øE/ÂM§Ï´_¡Þècôý6} ú¿AûÓõgSí¯C?wñÈ/Cý?ýâWýøÓïpÿùSú +â_K_QúãHß}]ñ+LÒ×ë#ÿ<ßdÿ<ÂOúÌkþÊ?Àø{¾ø+Ç?â×&Ç?!iñã7þ é¡þ®^Ò_NÃøK.9èkàú)Æï�ãO¿ËñE¿ßéñÃ÷_>~;îï(ó§ôÿäý«ôsgÿþFç/ç_QÌßÿ8ãJ?wâJÿô¿úø ~Ĩâ¡ßcü7ý~zæbø!ó_Ç ~ÆøEü£ú»>ßâäüÙ¿ æOúñÉí_?>ÉÐ~ÁZBßçgñwܵøêÏ×/ó§iëòÃòO¿uúzÑâ9ÿ&9_øKüò'ÑúþvË÷ÃeõsV=r¯^;ß/ãQøÏè羯W?ZõÇõûÕÇAú>_¶ÿúýÆü(ýÎëËiÙ¿¤ß(}ÐþT¯Úééeü@õjÔöOèûÈ}²ñ÷ÏN?»úÛOçx´þM?þÙàúAøEèS£?®ó×õÇÜOW0}ä2KÑõç,¿½½dÕËH~~ü·ÃõпÏô×/þRúiø£Óê^=ñw~öÌ úתcÔêß�í_¯þµô£³ÿ~´êç®ýýpþô3ÿ@õ¯Ñ/×ùËÕ>¡øÑWþ\Ñüõðû¸=úhÿ-üïì?¯>^$ý¥öaü¦Wg?Éé§ñW~úýEªqüªÓ?uúÑiñ¯ÅOþÕü?§µý£ô[@ö¯ß?ùxh¿Bÿ«~öþ±ôíè¿ô߯ñ|û2$´ÿúí˰:iþ´ú×èÉø³V?wô¿ØñÛ%ÿA·ÇþehÂíéòý¤ïSýÛÚÿ®é?]ý£ã[F_ÃüQ§¯1þÉø1þÉöô¯zEìÑDþî¾~ºüôzõ|þCh!hã!~Èùc¥¯;úKç¿jþÊoÕäÇÇ«ñ+Ù¿ëûów}þß~ÖòWúýñGæ/â®ÅôøiGü~û'áü]ö ã¯,ÿ$ÆÌÿígø{aªz®TOEä3§ç®~^Ç+' +}UÇûó'ß/î§÷}J¿æS·ñzõ¤h¼\½å|ãuøtÊ_¯¾ØT=Ȫúþ@õ3ÿ0ýÜÓ_Zý[ªGnãeúÌÓÓ¾üüV¨?:ý¼nhþzõþôàøeÓôÓßHÿõðÇeMÿ9}í_?¾ØáúuüÜáúuúj ¢þêQß:ýïËí¾þúÛÍÚ_¡ßÙ_þ~ãÍ76¿ýõG¾ýsT·ë×ÃñW>þõ¿=þåÍ+4ùõWô×Oô þ_ ¿Êü+þå/«×éú7UÈü3´~~?§gó/ÕÓú¿kñ¯ÖôÒGÂOÝYó·ÙøÃªûñ3£oUÿCäãO¹zߪoó×àøS§ÿÅøÓ¿(þÑñ#$mÿió´Kñ3§o5ÿI÷Æzó£y¿ò}º8þãçã?¿BÖð7Ïö«ãWÖâ7Z½½Ãøm ù?ÓêÅEËiõäõ_¯>Äù»Þ¼Ãkù+>ö^âxõ³?týê¯Üü.ÚíÅM5¿0ÿ ¿£Qú/ÂüYÆ ÿhäÇÿb:ÿnùO£ÿ¹¿U/£õozó Î_¯þÎÏâ«Å¯ýë·¢?SûßQþ¤7ï±êãÛxÀ¿aûI?õã»ö}b?¥z8¾ÜÐLøä~\ÆëðUéßë÷uúËß?í[zÏÝÆëÕÓ~_¦_\©~»¨~-Õk·ïëôQHÒüYøèÂÆ£Ë¾·ðû8rFz´2}ã¦ÿ½êáÛøêãôlÿ7mÿyïbôýÞÅPÿ?D4^ï=másg<ÕÚL_¸é¿~|eÕ»=ýç½þ+ô×ð~ã|yÌ{¸ÿrúåKïÍÛúªwµù÷z÷ý××½oãåÞc>BüÖ¿µïsúÖ?ÂOàüõêûæ¯ßù5HöOå¿Bü 5ùõWôô7Ï@ó×éO_ª?¦÷o×ü»}ãwd.¿ê^ý¸Àý«WÂõ_§oèï³Ûg¡\>¼úööK_ø«7ðÈþôø-xh y ¡?aü«_~ôsÇþéú#Ê?´ãË÷ú+þn_ßÐêW;>?¿úã§N_oHþôuFùëýcükßϦßû¯Ó¿âÞ;¼âç6Õû3.0þÔ«gßÕËÿäÛÖ<£ï¿YõólþqåO"_å·;"_uÿaþ¯¿{ÏZùVGÿ(ýTþ ×øª¿+ú>*¿#ÇkñÌú«7oñ¿ÇãùöjÌ0~o¯Æòrüqþ/ÇÏó§rþ ªç_V=Üß?R½ùS9¶åo§ÛuúÉ?A_¿/_µzø2^wµzøHÃfzÏ}r¿ÌÞ;å¯Ó÷á¡ü&ÿ^ïãÞüiõª Ï×ýÓ{7'mÿ9}É¿ô>êÉÓÇpÿå§êÛöûèôÈoCò ßÍ}Ëï³zWù>¯¾Eú?@¿[øÜ?;=>ªwßé÷e|{zÜ6¿Øß3:²cú1~?\8=ÙOô>n¾ÏàáØûÃïë»và¸ûñýu¼üîo}´Goã »Ë÷Ëé·ñBç«2Þ´þFúíú·qü@yù÷öùPF(´^-ã_ð¾/¸¿² +Ïýåä�Âûö`¾Ð(Owï@ÿò»¢§ßãw(ÀÆè÷Í~»ß'äËÛÙ= r¡ù ½À Ü Ç[Îø�' xÐS êĬ +ùòú|O ØØë7È*à± +KúÀ¦Àw@¶!!É6tPð· tt+?±¾>¾øÎàS®Ã¿Û>!8Ûùñu¸¿Ãíøá:Ü7¯Oh¸¾ápíùhÙ\¼|¾£«}¿xëªÿÜ;{y¦¿yäûÞUÕûn¼ôðä{ý}ß-Bø\&`Å·�ÕXjþÔU "¨I. b èU~ !rÄ�¼÷ !~iv_÷0Öýlõ¦³Ô +7¸BV$±u3È ô- è¡®L`ÇZ$Bæ|öÐÛóñß¿@æPgPo!öfÀ È;,PµÈ;´ P/"ΪÁQ +ó|À!Þ+ÈÜ"°e±DÓGGðJ;'T°|¦c T+Æs9ñëþÈ#ù £¡À§[=IàbIN:zÏ cèj55l)¡¥£¥"À¿¦øHÏ¿WÑÈ-À¦\k:&B``p$A¦GG9 MéĸQ qUXO¹ñ¸ºì@Ȫ DYf)f<EÖÎs"¤etVìÏ-8Èž¯@ mGeX6D²78®>Rã"`· dèäüÌZËõò³ô±D<ï!Ð"¢ 0AA [AĪaF£Ç&ýit¢ñPSdlÑÃ-Sü¡´U!¶QDRºþ $ü0è?á +:ãÔhz~ùÈîÓtB,×I`8!» /iþ�j($uÜ,=[>Bø! (qfIXì¸5÷&fZ8l ¯$ùD˼pSÅ*E u5a)òèxüqÑðQ ÃÈ+r92Â2lÉ ¦È +Z£:/'ùÉc.'ùÉCÂVÊbÓ·b^hzZâ÷? ßãÒÓ,¤ºô +t^ά¿oU ЪËx¥¸Ú®´*VéÎÀáÄ^Âëçu¶ÔzÍܯ³¥VÕ]?#ÜWi´ÜÄ¢«�5vàüUûNx# Wv$@)ÿ-@GìµõÛäÐE¨½rZ°=wüu8CÙÞJ@§Gìw¶óíxd+>÷9+0¾ÜÁ �7@p £=9öÙѬ`G8xNÜû¥$7íøìÚ& +aeËg÷)Ñê¡'UÀ{d#LqÐ. b%ØH¼YHÈ +¢ªD !)¤W"@0%^*ñ ]ÖÞ·�fÈàèVYbºàþ#YÁBªvTUõDH©b»Ùh(Içð&ÊÅñ~ùM@&éjÁI; +.@¸hã·ga}±RÕKQLÀ^0¿ï㦧[¸JHg°Â=#íZÔõXrL2ìõ3'ëDÒÏ÷øL0(IâÄ0dôÇòqG%뻩¿;(£EòÉwôÏ¢òk¢r¦Ä² Ôf|(}R ëmÌY%Âp$8;ÖË¢ÃNú¢¸©ü�Y@ÆÄ±½`Ç¡LÇÂ,ÁY6ýì=Agï]zÖV¢z¼'à± +vxævɲÓ^nGW´p ËS_uá©#:Ó~¯rMg ®ãu¾·Ïë8ZBûx9*&x/gÆ%)º-_:hyßÑç[×#ù p¤ &¿×9ÒQ ¾TZÒëÑôz´ôÑä=¦(@w)ÃW`G% N@'\ z:ÄÓE¤(MOt6b¹óhÍxþÀ6WÊé +kJÀJ9ëíÚe+å´ëµ]5¦×¢9Jb$Ó9Ò%K¤ãÝ3%ôÈFXb4(å<7ÜaFXâ¼Ù�KùE_@)Î÷P?¬Y*ñª*1Î(üÐÚZñ°\çæî:#*y3Yð8 3°`o*wéǶIÕE1 åÄ¥ÏßÉå>ÀªÕZpD¤ïÄ?j g©¡CÐKÊID¥+ÜB{¨CLlôÐ*ÂÇq ¬$ÙÚÒ«!ǸÜà~5$.ZHHÉ!T§·ö¦:EéÕÕ3?«¨~Ðì0·Óqh 90·ÓSë7¿+DÒÆYD7<phÌHÞýAiàVAÖï£Ä,Âf�ÈhôÓ¶´¬( Ñ"¹ª?A Ò,yÒéôPôÀH¿têÿ.%.8×¹crNr¯2'¿Ì_g¯G¥qÈm|ëhãôý~pÒ×O¬uÈqj>uÂP9ÚÎ +xïÆë5åá»+Ç·ÀÆk +L¿ñP¼p;Dâ-®Ä«8.EÛÑ!º ²âþ5åNÒm¼TÛã5wÒ[ìÚ0ôFkÎV´ð¾+Ôy+C:iöþw×);qD®©iWA]ÎmEä 6~ÄÂÈ�]?3¤;°â È)¡ÕOG¤S0`]Cà óFLPÚ3âásåâ¤MdM°|`6 ôx x¤ô×¾Oé½P>h ETuÌ0 ¨°2Üi$ n^¢èÏáPï²",(Êt-ÄinYsÇÔ+uÌ÷ÜxÙ Üö_`^#W^ïq¿ÞËxTyE®ê;JwLß?à±êô ¹µÖG(Á33½9j©)e#¿^Ç#ª:fÆèú é9IìôGÉ îEì$®{±¢ôõ9 Õ¡ zc¤ÏØë8gÃcx1÷«ÀÉðF´èb!(¼ÉaHfÙÛKr¿fÙYÿ¦äqv¬÷ P*ߪI09 e|¸³ ì¨Æ-^¾/Ôä\ÆëÇfD×á2Gme#áäÝÐp½-ë>?p!¨¼× ÈöÎØëø©Òµ'JÐÉ{×ßgñ60w;Ô8äÊȨrRTiâðÐ^À=hxQÑ +æ¹-)ºN` aÚbnbvl±ÀmúQEFJ8Ðn¢´tí¡(ïv`¤oDÂæÊ +åÓNëÝS"Êr:²¼X,cçîç43~Q?`/ê×:ÜS7>CÒZ;köRÉ,X¿î¾*äU$@©þ "©|è]ëxûΰÄÙ!hó::ÑU¿C3Ò, ²rI <@8Fëpò:\Ót«0 µxÖ¨¹Þm»]pD&S!ao¬W±âLoµP#²nTN¶�GdúlÉnV a@/ Þ-³¢À¹¥ÎO©ç¹5gH 6PéYñÔH«¯!1¯ +Ôpn.vj8ͼ<âFjñpbw£¿_4 ¹9ýc{?@·p{æã¦9c^F±N´gÄuÈ*?sûX ²NnO·puRâ,-ÐÊ/`WyV áÄ�G,f¦âõ0«ÛÕBä^PÏM¬çaÍeÚçñ7vd¼^2{ùNÝɹ×KM ¯× +±7Ðo߾ɺ ñ$m¾Ï+qÑ÷²Ãºå}ïÿ:ùzxµÀáÙX ÞìDíû$&0pRPq½M@oKÌb>F¾ óFݦÐy3¨KóÎnÂe ³¤«±ÞÙ9C$Óë©32N3Ø¡ÇË»fØaoÔ_Êðv=rí¼2AYNúZÈfèN{%:Õî tòiáH5lÐÔRÕ«ÜÏ'Ñкz:IæWhÉaL¡7½Ø°ôó B> d¤Áx.Yï³käD/ÊôBÊZQ{ôÍ_1ÔvñÁÿ×ÉwkAuH(Éæ¡;qDªi?b¨ÊGczEÄ^-5àÉxÕËõî$º3Þº39,jXȹf$ÃG�7^ÉÕ¤a@&úÕ×ñ+*1ÑQQ-Eæ¼±1u-)ö�U±´ï>Ö +ìùÍU»*ôHï§½y2Á¼É¯Ú¦ü÷ ?{å½,5Õ Þö¹ìAµ1¬ðC¦B¥ûËUAo¯üJrÏè¾hÊkèe,³îÆÓ¡y\Ñ.ðÅ+Nóåì¤6Îè!=6`6Ò^9«D95É볨$Âw %a-¬,#3L¥Ëû¸<OÖÓ°ã`ÂP6äñ3ÖϲDøB9¹HA¥LñxcÒäZÆ4¥¹FùV z ¾1Íc|ûu¸Ìòìhñzb´ÃµËi-ª¾Ã9gN×ñr8Wk²'÷®öÝènù¾+Ò×ýíyßu·AÆÎÔìÛè,aú'p¨îh�ïÍ4`¤-o*8и�L+ S½büÑ«âW¤ÄÛ ôÖ!ÞldFCd½¦ ¼¦I`è BDCo*@@IÒ^ p¤(Üa5Ö9B±X/èõxòõ,ï±%ËäDÊîb9,ÀXª÷çH tg^\ _ð±GÈ©>>aw$GÃé@Yú¶`Äbiê¾N` I{Ö*qf(_ò8¢©zCJe5ª¿·´¦z*ÐQк;w°¶6 ü¨HT¨³¬ÉP²Ú¼¤c ¼¨[KxïÈÜÐ!ú¹-¼1õYY88`«P±À8¨³Ä"ò'q<2ð¡Ù°ç:&#²@BJ½ý)GÚÏìØÊÍÄ"FBtE0ÖªPÒ^ìèn+¹n]ù¤G¤@´M(åxhË1_ºßþ:þV.èq|Æ$Ók¤,:a-O¼âÓ;®P ôÂ^ؽYX=ù¸xÄX¨oN¯e/âì¸?ÉìÄé,a$¬ùÈrä/e>踦ÏfFÉ=ÌZNF¥µCv?*e4½æy÷Ë1ñüaòBãùC¯E8Þ\. ¯»ÜÓW½NØI[è¾ÖA1p¼\~SdÉw +ê;aîçðäë£I¶²¬ +¤÷þðhõÞ°µ{JÏ�èÕPÞ; Ý÷NHU¸T¡ûÙËË&È%,ùzN}1|ݧsõH b\1è'V+ÆPÌÊÚ|cê=x¶íÙflÇzìp qBÌ÷¿º¥õ³`\kë{hÌé~ÍñÂx<Êz¬È2ÇQ¢Ò£E{°*»SßÅö#Ö"9=¯ÍÆgáØpÜ=/èMª±=~4«Æ«èèl¢ð.0Øt-ÈHëÄ\e=0¸ÊPæ*=,ëzv`�@§»ý]Nwc0ÔX,xzd©%ÀÛ£è~ Ñ\}CfýÒ±O`ì!È7ÇëÁ,ÖêþÎxm>ÀÀZÉkû12ÎAo,C$´3´£º~Ö]^ì娳·£³sù?B(!KI`'G×cN:aéd©~ÎÛ¼a94d½OÀv¤7óp2G{ÚvÊbÒÌæc3rÄY²¾$ÉÕï¨@$¸ã²Élcì!Y|dqW%@t`uö!YÊE§Ë´__^h9[É¿¿"#·È¬ õ³ÉI}rRLPácXäÌ�ruôÁØ?(IPeªh+ß÷½§0Øë)×á²#°ÂüÎpJ¸'4\öäU]ËGnf¾Ýµ53>PWe§³ÆtWO(> ¯¿géÐú¨g¶ë;ï-P EÔ}Ö*]�=® X ýõQ$M 8S h QyÐ;IÐônùvÞØS¡.Q~[ÞÈJ ::Èin´ ¯9ÖªúIs;Ôù´¥¾ÈÙ[�%HM¼¨Jp ýV(öxk'vÞâÙ#ôNñ +PvÑb ?ùbeÙ;8Deçëð÷-ïWÖªüI «ÖgÌ' È8É'0ÀòÃh@®ð[¶ÂKû¾3'?ÅhSÜØõ>T8ÔÀî'MºÚ@§¤cÇñÈ�Ç%0À±Ë!!!'}ÔB£È(Ï'YdE]¥È'(@ Ù¤m!e¸qH¨·NYq<3Ð>G�'È1ÊF°ÃÂÙ´$< ÃÓ0!!%Ö`H7P +»Àp@¶Âè°Ê©mí>ßøqßyÓ¿(*1ïµJDÔyÉÜ57íºSư?óaïíÄ SôÐôî9«P0(+vèú +¶ðÈÆ F¥Ozâü^¿Ø!èÇ4ûà °¾ :&)Aá %µ[{Jè +`L6²%%bZ<V¹9i-jïE Ývë@íÖïW#®íÖÝõMF¹å®óòïÀ²`ZÍß& 3ÖpÝM¾dvpÅors/gÔë½ PÌêÂÝܵáºë¾9À¸âül#\W¹b7÷øKà¡�ªº$@^ ¿¯·QÚàúå£*·Aùë/ÃÚQYwÿ×QL?®½Î`D±8JÒ-ÐõÖÂè@÷¤A#m#<rµ´FQ¨ ühDeY¯ãåpÖÛûKõw;Ü4Pè&ycYo? ÙïYj+`MÆ5âïYB Ðç¿ÁÔßãÌÐd'äwÍ Ñ=9áÍõWè¸2f!#+ÎÏyèFä3ë�1l¤|FR=#¼ +NÏÅõ +×"æIG^³ìí@·Ax?f}CÐ +F +É7èHôBòü0 â ^H¾c èØµ20%($jNHÉ©ÛNN9Ír!áHù¥Î¬ÏnÇÅNZ᪠ÊUÝ2EôZÔâIªD8ë"F2åNFª¸W8c9åȪ8î0)8lªïYöê�D2ÜÒï2ì*1B*xÅò±{ZAqiå@ùN!ÝÀ]éä (ïQ¦}ô'd Ókzï�µPöÇ f¶=ìÐw SHfiÕeø�·sý¼Þö}^Þ¾>vÈÒ=-£Þ%Ùsv< ñz»o ;þëô2bä7� µº÷´Ù% ¯ pêAÛ£û ´',H6ÿ]Ûë +TUzýº:»kìø$�ÔJêY¨-Î'!ÀQRÂnÏÛä`°6(à' Pd¤C: +Ö#}d Î $ µãHg´²"k)tJ)½çàèÝ:ì¯û}"@]NOz Eh¿Ë¯ ÇQ>B3ô]WÌrm(?ÅQ¢àHõ +'0PG' §3~& ·Ù#i8cuÐ=à;ÔV!8(ÄÆ@,ÃX#BNÒC%Ðo´pàµtå@ù¾8¢·gIFhnÄ®t ¹·ti}NÕ2æIOXû|Ìnà¦9VvVúWHÒ);Ã'mEÿ>i»ÙÀlES½^ ñ\côdzGÜc×§eµz6-«ÏxvÒ²ô±58ëQfëÎozìNu~3ÞsÜZHË˱êü&Î,ez"Âl¤ÍEÒ°wæÆY1^61 TA?@À[{co&ç5G§m¬78d-îª7b»RRzyÑÂä S#½Íýlf~ãÇgY×AûËõ !÷»ÊLËMÛpù¬6ï˵ ¿K÷yæ6^fv´úÀ¥ìèþ:E\BîP¸rÙá±åÔ�q©�Qöp:C[^ÕA£¨»JH Îx6u¾M@§xfÂãÆ:¤W¯ÈJ ·åÙ6³{¶TpÇ60Ð{vÖKOlAI °[¨7Â-ge}?ÂZbïpX" §¼GV4Àq(AãPòFQw@!ë5¼)hÎÔHHê«À�I ' +ñ&ê @ê ~!' © ìX¦u'1auàG_ì©×<È +@¼zé'-©^îD%¦-ARùZgñØH m©õÆV >NX¯éxÈzmôͽ X'É!éñXXÕÕãr #èN"£q@(dE6¨BÀ ìPt(¢7r.Uà]¥ÌÒC'¶:àt~Wçz¯O +!ë u@ï¶²á]Y@J¨³Iø@ÓÛ¡'--£V´>µ"Øê*°iªÀ}9�â:)r¨C^®9îã¤êF/é/ E¤:Nê¤è^t8·«p +|zI:$±\'¹=VC�X %ï)A¯¼+vÐ`$ù˦ÎÌ/ãõܾß>¯o¥e·ñò!ïÝLüþýÊ»üt~˲ª«�õ ½Ô_aËAQoéå è>ýÍRys^´Ù°hâ:^@3!ôªI¶ y²UÌ +·påÆ:$g%æîlAúX"_²é+°ÃºÞ +èu|¾+qý½á5µ¾M@ï¸äv¼·0d!Ù�Éé6¸:Éé¡Éíj¬WÉ8Úx´4sÀ;¨?ú±38zKk¶mc,?`çm½àM¡5oÖk +Ý!U"eJ´ÂxF?nÚp@##ÏÈ4ÏPe^ê¾?'ìÄçÎ(G¶lR@À{2c%ÒnBÀNF"¯a1/f8P ?ÂDÿ~rÏ4 áT&ªù"^ cJ9 :< +Îëô.l Ð-ÜöGQ} ¡|àjj8ì©ÖòÞnç¦òaõ+éù"ÎtC¹ 3Ã^:ãáv'³ÑDØÉäH86RO5gÌy^¼ p $"Óob8À©^Ìé&dærÅe ì"NÑó«ìÙE,eJË3 PÄ_MH ¼ÎÔ:¬ÇzA·üQX4Ò3%`CÒ{¦HéowýºMUvô}>SÙÉ÷õórHeFx.GTùl£x½PYVt[½OíHz#O'.Òæñjj$¾îkΡí*Q}]ÞÏÚà6½´Ç[¨´{<ù°ÇtL·ôƨ75H:Çç"¶"¹zÄYýP_ìVÉzï?öQ_¡zc¯¦Uª½cFª×÷dôýzÈ}æ:óïHº¦ìØeGæM(CgüVËyÏ#úIÑS=_Æv8½-:Ò Æh1o¡l>bmÀ[Z׳Þõo¡#~ "¯IW½'^Ð X?ÙôöYÖ×{ZË×~@F¾Ê¾è»æéü! +P¼^Ië°½?Iz)¡ü( +ê=FùbNCê�ãÁÆäû£¤"Ñ~ó-Ärf¼î_¿ùF^$¨E:Agɧ`E®pèñGdǽyÿùÈ2@$¨ +YsÇô^FÆÐ-y×*ÞÆ3z5.L®u,*ÒZÔ£lnâ¶SýâxQ;Ô]º3½¯6LGÞípúYÄBcMWD·6Ç©~ÖL'\`5éËõjÈP4wÏñsìOu+ÂA|?,P?'H6RR' »ÓDr[e·CÏ+¢®ì @ezYMººøÜ»¼2´©ç7r ¥ÑÀ¼_ÁøÎà è¾O)ìà6{9¦6vê6^QKënãõjâE?å×}ùÒ;ÀþM!ùÒIDEèhpíÒUá¯[{ß&àõ¢þ(j¯G3ÐûÖöëô~¢µóJgg_Ðxý¨dÅîÏPæ·¼·7�¬z íàºâ@ëÈzÍÁçÈÎ<{HÄKÚ5;äãE$êuï!Ù\ {#8vÑð¢vzñMmÞrÞ!Þn÷L+Q|fÖ`¼+Þ¼%JPÖåú;JØ¥úg°âJ~Ìü`÷ÞìÄåÐÝhÏzlÆ:סõö9;Éô·N@gØ`P8ÒûKPg1Ê'~ÁAÐë©!ê6Pêûa=Ù¿>Bò@pTï¯cÊDMxs¬Cú½ô019:?I +ÕÞGrVRý^È>D í2Ôý)ßk±®ûl4`L;vÆz=ôu@¯^pH&`yi½aU +½Öª½æÔ0=Ö3¡là OdG~_?m!@¦uÀäXÉ +Ô°£ªÇ:(?ÄõYHqr¬o`ÏáÞ}&C;G´nÁ!õ@ëÍ)I\Q¬£è;(Sd§ôDµsËdR<§ä¼ö(ç¦QH¦,?¿îÏÂA;+ÏdØí¼8ùJƦ? >ËÈbï Bñ5uý~Kñò|8 uh +-#ë|³ü�9IõW?¦°.v¦µì¡tÈ¿N@?nv`àùÈUxàN¨p£¶8÷ÊHmÓ³Aæ uã'è +6d ¥àRâÐe¨ºgh ºÙqeOh9¿ôp²ØÁe;ÙÁËhìà»gfäõJ^DÐ*«A¬}cn@¢³*Þ¡>B$ÔK±£ö}Þ_+acEôÒ +t!å]_ ú£c+зp¶°,À¢Øy7*qÓ=$@"3ĵ}ÒÕ®1îüxStçbÆ: _MV÷0é*ÇÝèÈxw@çØ=ÿEeöÆzwðw`à M'¥WÌ©ÐÔ¢ ÞÝùÀ¶Ý'4ÁQD7CÖ%µèܽ¬ÿ�^F¼àZ;q(¢3ìv£Î.ãhL¯¡õðûzwö�¿¯·ê*uØíîü;Í'½@mmÞOêȰVÞeøë*zÝùúY%c§µ- &(Rkôpkzß%UÊå:íød«É'Q,aÏ å> ÓcrR¼$Ìé0R»ÕtæßíKÞ Þ·zh»Æë bžûZy¾sÓåo´L{À-hùCmÉW4¹àǹ0ûé iì} Û÷!x¹&AZ¿kÀ+«ò£."Ô«Uêã¡ó´�ÿ$=FëÎóÝÆæ³Z¼A%à§74^ç§3ÿ éÜñÞïÄ3Ð,!s#^í è +*î75ucù~sí·2©FõÏÛ +¤æôozÒ¢+ GlÉzy,üæUò¥$Á^`UÜð*nUÜX:C¼j¤X±e~ÔoÐ!ê]w6lÈz×¼iZÌ{® éºÑt!]°è)Ã÷´9¬ 0¬Ój°´¨«Ä#V¨sä0*è üôÞ�å§wÝ(,8 ±¼zvùö´v'¾ÐLðå·P¿ä¼`ÿÿeZ@#²W4ñV ×kK"B3 ÷uOm^vÑx=(wX�29&0ÒÐÊÝh+áÏÄê ]'0Pw ÒE@*ðúÛöÀßGª ;7ê7¤þ=/°+]®Ó»[ºÓQC~=÷¡lhÕgÖb9rö<AXálF,µÛµ-äUì^pPª?\ó²É-ôTÁfþ´ìÆZÜpDvõ½©ëô¯|Ò´®@ï{å¦ÄüÁ)¤ÂYÝÍ5îv$g}07ôy¥÷¬gEÐé¯%A à©}Z(õ½¨ÙÀgò»@¦ÔÈuÞi¡1ùt@ïu vDe'.IfÌQbxnj}6@>-«iM' [1èuLÖ+Åî!!¿÷P¿¡½já�¯=B[ s[í{YÕ§Ãú[íQW�äûYû>]ÿ® |<JKFXbG ÷ +©Wc{Î 8záÛDàv²Ñû3"óîëv²tºýØ4B$x²+À X¿Ø(FÞ9ºX¾éËx½UG½ÛKùWZ4A7`U¼Sûs]�jÝÅ4_Êjw°õ»©2±»©Øÿ@g®_ÍñÜ@û¶´<¤WN-GºPj,.KÌhù1±S'Lò ¼¶ÍX¯ßÂìI¬zhkE»¶äK§-m" ?¯·À,npk¼£¯´°\áø=JóçWcw8ý^¡=²tZ Òýuõ§s¹ulc[Iöåë&²µ;iË\+äúRUOè½Â&0ÀÔ ðâ#' G³µå ôÊËȺ(@ +À,Y:9Ç¡ -Ú Èݤ]F�ÕbK©fµØª({ZÌ9j8Ú#¥zóB&0Rõa×üuÀH.H Ú/z8ÙzD,}}9-üÐõ»¥Qt§TI&ɾk[Øêøs:U�¿]«é5à ú)A^'%`u?ÈéHêIH¦[BÂuÁî\'XæùåTÄúÅ@¿¯.¿«1§Ø±èüp|æÊjåPÏQ âNà|kPmSô (z(ýhÓ8|yè©/²�Ð èPÆÐpÂn çcz½¼ì³:SËÕSÇþ¨÷{'÷°ÞïíK=5%æÆü0ÌõÛg$=Á�I#JáMÏÒ¢ÚrÖW~Èê ÝIz¥ô³8q@©_1®HÚ!è0ê 43 ~Ò¶»G]$©|ØXXÎ&%Éÿ$)IN�ï©"9ë@9ͺ׿òñé<¬{iaø,¦v²;¬,}?¦cS\¦à=`GÌs ßO8Þ«�OK,×qMíûã:ùÄ·d·ñ:z×ñ:î§ønÃå¼²´Ýg¯ÓÄ%-¼}à1~TPÒÂÛt¢Ýá ÈûoDûü +J4Ñ[}$'Ø&ß7±6=¤"XrbçÒC%JO¨ðS=+âÅìôÆ[öÔÓ´�J hW�¼N@?+ÉõÞ%¯êþ�%È,½vÁZ,<ueÚo2Ô(:ÕZj·#hO{zm(ohëái!pдÇZ¤_JÞfðQDNµCw$³@þ^׺hÞVlPõf¨sýªyFA¡DGº?3²}VÇ%]ͱzv$:Õ ²67dÝXªþÉo:Øvc¥·=sý=w¿a1©ÆQÃRÊb(ÓÏþCÔ¼'»5 bÞ,$dEº7³Nýï³NÐô{Ê0¤áÚab7 ÀqPï&Cªf°ÅFªÑ×G Ñó0àQ~@ÐiLÌ `0]Ò`¿Ó·Pçø<ĽdÐB^ËwP?)bnN'ð0³µVÓíýÄõÒXתðÀ3Ip¼~P�Á0³éL` ~*bkgbMl'ßÏMõw êTÃá°ìÉætr!y1#à(a/¨¦`J8ù`qÔy´§uÀðS{³ÁÜk0SoÃ廡;úú�Å{}TC?T̾Iëç0áîëðXúÊåÞÞh�õGN%\@ú«Ça..g;ðw6ÍhtÂ:¤w+IPõ:h˦º:DT`[(8K¦fuØH¡Sf8ý±µM` ßÑxË: m&¬Ãz¯½È@Êø½Õ!«Ç:¤óáÈFÍóBr@_w[¹aËjõYFR«$ï")ï! E Ïïê·Û¢ÞqÃ,ßñåznW y»<@¬5ÂX¨«QÅÂîû¬\h?½Î(Ó;-8(A9¥ +ù@#ÒàègþbÙ@¯ý¡^ C*½wWHpõ³ÊÊOObqÀ@¤ßX1ê÷ ¶gyMÈb^Ãk¹5¢ !^aD¶Â¨DtNËl9¿£ê~!P!Öíd/Î0}ÝíJ0`Ò%3xk*BO ÓiöûÆï®óBfMùSGXõSÙé§,ªÛS>è +ádr®2ĹóØ=æÙEzZÑþÒ¢áå7*B&�w±K-éP°^ ¡RÄvÊG \$qÄÛ\_vKk¶¯ÛÓ×Ð×8ÆÒ°äöy½.^e"Þ:/#ð·f oó' ?ÄîÖGòsÞ=ÚþZÝ[@úX"üp¶Â½ýÓ)Ö¨AC� 0²ð5u ·ÞÃcÆJ,;Rë62-AËhf`Cß1ì%#àEÐØ +åÚKë6r°åSý+K<£~q¢°ûòvW)Ág¡ÄÍõÇéÚ!cÑÊW}ÏÐY q<k%æ8Õºª²Ì×è¼ ªÀ�M é4yP®Ô+^ܺÊZß FÙ¶£úR\~ ½ÓÖäÛÇß±à{øõéÌØà{ÿ¿¿þͶÃñÂUóû9hßßïç·NØ+÷�yù}/ÝÍç9úF¯ÄÉãØà4[xªÜu q9_IA? å^B£ÆmHUüÆ^}GòOáá$¸©3º +@)® âºÍ QÅÜIQÅ-Ã%�4#ûá´ûØjÒin7¼|ûw3�÷z*î;\0 Z/7¥ï?�*8î$QÁ3»¤ù +²Ýç%ßÔCn\Âù7cáxÀP2VÏ]¨§Ç·4?@ ð.�Dùú¢²xQÙwJ1{ý\-í§¯ñYhì¿®ác>yÇ«OÜjî»÷ªØ»]Î@fjÓ$@ó3E ?ìÑ +FZÂÈçÎÎ +@|÷RICët$"`IìvámdÏýêÙ ´kÑt°×´7Ø«_*ÍõÕ-¬¦·pC[0@rdlÅ:Uh$ð°ÞÍrYÎ躧-èì�ÍîìVMOé ×Ҫģ=!ç(²Ûme PXD0À²DÃ,E¬`d×E�6O@oºùi E\fü5^NÓd¨Cúó}$"ÔB]¸¡¹¦¸0Éð|`bá@;D'ï!{MîáÀkÊ;æMY¡;Öoª(@%e0`=M»0À�r·kjzÿ91 + Ï@¯E4¶³±J6VëÏ÷mZbD�ÇúÚ)ÁÀUu¤#¯ïíZHFKhÕÈ-ÏmÀ@cÜèD3¢EDNÃZãqP*A½*=KØ»]Óô@½,Ý;?JñPb ¿ÚEoøU1æLØek_àµt(;Öq$âäX/f\ÕÜ55Ź©^ÅQ )ùek(Fy%¢Jºø(/IrÙèôÄÌzö:²�ÈÑ $V)<3â4#f*`±¬¥Ìeú®WJ9J³�ש¤hN_ÆP;êéNÐcþ¾~ÏÑàöz3J£É¯+Ы̻N%g¹74] ô$ÀYê8¹VJ·@î\ä"Rö¾6]@|¨ ~_¾ãÀÀeç5óïÜ®SQNm`Smä×íÊèû#(ÑħÓÎJºáè�»µ`Ðì±zÃ24zQWÀ +áVI ¨<Æ!ò¡N×v¢] e5Ú´@ iV(ePh«°Ú«ÄC8xÔ?@\YîS ®H$¸b +u`×w»ºáoF +uÔζí5Q +ÉнrÔ³)®s³ â]ŰhβSk©$÷l@TYîIw ¢¼_qTz#ÁÚMtvv§²3®ÅÇmmIé +3[LL(Í ±pæ®å¬!b,xû +§¶ò%¹Kqÿ õ®ÖzOÚÇzã]sôÂóâ5=æ=I!éU¸�¡üÄxî m!¥øpT©÷S$éµ~eÜãB_÷ÞÞ kíí¾ +ùGm¨ +%ë÷+v²SNs'i¨l"SxÓ`WeѼ}å% P#Úñ®Ò¶é@²ó¶YHN£xhOQ[è@ +ZTKo1¢a0bÑÀ2wÇȬÎ#ZíÐçõèóºØÑ×Îy¬±3{ÚÑsdO^˯ïñÛÞxóÛI7û:`uåJÉ2yÑÕ£ïK%eK@aÐô¶ôëIÍÕ¬_·V'qh Tx¤!¥eD PÕÊvfmÐÁô ¬Xä®öí)Uã ïܯòä]% v!ɵØÇ}ñ·º. æévãºC$yîhÑ"¾ô6Þgï*Û½°ÒºÁ@âE ã×½¡ + +@úùâ¤BüÅ+hÆm)9ÝqD§xí¡Iö+F¤êµI}õ%zéWqpÓü9¥Ùº®@¯:¨,÷¤/¨¥Ü}gÄ~`ÚÜZÎnb}ójvûÉ&cfzHEP£º(=ça\=@Sã°R'(-)ëï*ªUG·z=oú,5©¯võµhQµz<ùYÝzb½üôèaEp~¬V]=Ó[ݳ+P}ÁxvEúi˾L"AÎ-ÏRúðÖ,G¥åÜ0¦Ðiv%¨s¤åİRÙ«a(ö§r\qX9PËÆõ¬/+ÄAýÝ©¿?þnV7¬&LJ½y}ÅíYbttU}Åü01#Ô9¾¸k&ÄÍCRÂ0©-¯äÖP7e T/ÂKå6k 'ÍúÚ6ÿíõ<8þøúÇ_ÿõ²¤¥þÇo/ë·y§¯øañhIê??»6bC=¿)§K×>®+îfÎúR~ÞD?më®óëÅlnÃãÈ}ݺÉÛx`öw¥³ñ ÌÞÆïh¼pÂ_ÆÈá6¾íyEÄgMVzòkuç´ç üÁÑà]þe|9_?ZY~6JÚeý¥úüúýM¸YÖÎzµÛøF{ò[ÛxY}EÊm<À¶ãXúV¿×õ7Áý×õ7©úKô§Ü!×òýÍV޽¶快þ>[dÿ7¸Ó*óÏ~´û_äW¬ÛüuùíHþüèþcü÷ßcümæß¼ß·g®ã3À,ëÎ2.÷$ïdýÙ/ÒÞ#ï«ãßѾUÁ¿6æ±ñgaÄMþWæüÚùÓýÚýgöcl|Ï~èþ¯H2(« ûñ«Ýæ?üõGðeþ�~Çó^µßªüügYIø2ÿ¼"ýî�ùïhý¹ñT~8üø>~eüÜ?¡2ÅÆ#ûi×ÏÇCÿ-ûÏàä?Ñþ/ñ³Vý6¡®ÉÆÇóû×ñBÚlã!~.Øÿ¥ê`¼ße|Lþ£>çx´{tÿRãò}¿íàǯaEñÃÞà'Ãÿ°¡ï#ÿýOÈZþ@íÇo²ÿ·óYÿpü¦ÏãôBæ±¢£ÂüIü!þ´ùÓ¿ã/]ÿúneþ,þ?dòÄÚ ô×OÆG´Õ|<õñ êVÝÿ¾ø7¸~áààÔ({«çèüË}üÇþ'îoϾè÷aþ¥Ôß?(þÙOZò#ÿ ÿÔúÿÖÿ£ÿ8ÿ5ζÿ²øÑê²{ñ#ùf|+ÿ2ÿÁþ¡c¼þþï/|µ|æ>JY÷uxë=÷/UÝ×áógäC_b¿2|GÃÁ]ñ¼=Ñ1æ¶8ÞÛ×pbàsååìtâiAßoN<£½kçÏê.;ç2^á=íópúà´ð^^S|ÊÛz¤{¼m91¿×yÛ´o· PýtÞ¶TÝÆë¼cé¹Ò?Uõá´7>JÉô6ýöû¥jh9¼yeoß[ïwâû¯?ýðã¯Ü7÷í§ßþ°}ÿO3?üôÇf¾bÏצW°ÿÓo¾ýÃÿøó·?üþ×?ÿéo?ÿÓ·ùç_}ûË_ÿüÿûëóíý¿oÿòo¿üþøöïÿðëÿÇo¿úøöo¿ÿù?~þë/ßþË·ßýòË_þéÇÿþ÷¿üò»ßÿíãO?ÿòã¿¿òÛ¿þÏ?ýÿò·cÜÇï~ùãþñÛOÿûÿöÓkvÿê¼ +endstream +endobj +8 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 597 0 R +/Name /Im1 +/Width 46 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]ÏA@0Ð_$µ³°`Wâê`"=£8¥ ¤fZFÅ[ýürð¥j÷Zí§ã¯E %8lÐ*÷µ^[h6ÞòUâ_©d¾UäBã ù(n:h(c+F/©.÷ +endstream +endobj +9 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 598 0 R +/Name /Im2 +/Width 22 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xco~ð¿EâG ÿö@dÁ~ÈDüþÿ!�ñ3I +endstream +endobj +10 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 599 0 R +/Name /Im3 +/Width 25 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmÌ¡ 0á¿EÔº�)+ $¬UQñFë(+@ËËã0hÁ6;éÉLÔÉDË»>½w5üÉRdY §¯«#+,iã· +endstream +endobj +11 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 600 0 R +/Name /Im4 +/Width 44 +/Height 49 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿêÁdû + Éø �H2<H� RB�²D +à'@$ÃP#åÿÿ7@I�%O4 +endstream +endobj +12 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 601 0 R +/Name /Im5 +/Width 33 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xco```ø'øA;5@¢Èfïa>ÀÀ>ñû0Áðý�h =ÁñÃÿ?òÿÀ�×Þ>5 +endstream +endobj +13 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 602 0 R +/Name /Im6 +/Width 38 +/Height 49 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x½Í¡ À0DÑ»Q»V@AFë(Á0 ÒÕ¶ÚÀÀNÿH*HÞ¨¢Øº#S40cÒsIcûÊhæw9â ¿PÍ!ûËôE] +endstream +endobj +14 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 603 0 R +/Name /Im7 +/Width 30 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÇÀÀÌ|á�C[0Ø�¡Ë13 c~ ¦?rÌäøää¡êl¸0ȱ °W�q CC??3ûæ?Ì�yÿ +endstream +endobj +15 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 604 0 R +/Name /Im8 +/Width 25 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc?ÀÀðÁñ�{?cg°â +D`º ¶à9 æc`È6dÈ> ½�é% +endstream +endobj +16 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 605 0 R +/Name /Im9 +/Width 20 +/Height 44 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcp``@F 0°`à?À ÿÿÁÿÿÁ"¤ ¬ñã@£�¶á#Y +endstream +endobj +17 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 606 0 R +/Name /Im10 +/Width 13 +/Height 48 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãgo@~콡ùØIüþÿøÿ�) +endstream +endobj +18 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 607 0 R +/Name /Im11 +/Width 14 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcoøü ì4üþÿùÿ�ðy +endstream +endobj +19 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 608 0 R +/Name /Im12 +/Width 33 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcoøÇÀð¿½áóþ Ø ìàDí þ?þÿÿß�&�~40 +endstream +endobj +20 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 609 0 R +/Name /Im13 +/Width 33 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÃÁ¡½ÁD00`P Ä Áð¡JT02@aÃ#äX`<àçìàÄ Áü�F0@!@¦�}Õ +endstream +endobj +21 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 610 0 R +/Name /Im14 +/Width 22 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcü#ÀÇl ÁðÁ¡ Áà @Ðuöäÿ3ðÿ?ÀüÿÃþÑÀ`F2ÀèI|`°øÀ`p!á0ã�^,0 +endstream +endobj +22 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 611 0 R +/Name /Im15 +/Width 29 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc?ÀÀð¡ñ;ò3°7È10ylpXÿ``øÔÔ00~é sÙøÁöMÚ�>& +endstream +endobj +23 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 612 0 R +/Name /Im16 +/Width 33 +/Height 45 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcoüÃÀð¿½áãþ Ø00°`¨`� +Û;!"äá?h L jgµlÛ½30°·ñ30°7þ`�)!à?�$þÿ�½+S +endstream +endobj +24 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 613 0 R +/Name /Im17 +/Width 17 +/Height 3 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¿á?�&è{ +endstream +endobj +25 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 614 0 R +/Name /Im18 +/Width 39 +/Height 49 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x ϱ ág((ÁMp- +Fsò +ãó¸Ú| ùá< A0#îFcrªG?©ý²ãOytiù@*ú1ñÐßyþÉOôõÛ¶[y¶©×mVÕ +endstream +endobj +26 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 615 0 R +/Name /Im19 +/Width 40 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x±Â0÷ +,: Æ.Áí8p ¶\Jpèó'd£ÿ»=«aÇ[È%Dx2ÃÄw«Ã +)GrÄ#;B/ÂÃaË/<öÿÐ~/>yCm¦^Á)5¸ÕE~gvrîdUÌMVm+¾ÒïíxùÓXyºi%\ +endstream +endobj +27 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 616 0 R +/Name /Im20 +/Width 52 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcoøÇ á3{CÂÿ=Ì*ø'0>b°a`_ÀøL1|ac`?Àðj`ø0X(þ?ìþÿÿßüÿ�lý>¿ +endstream +endobj +28 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 617 0 R +/Name /Im21 +/Width 33 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xco`øÀð¿AJð70~``Ñ`D&Ä8~00üo`?ð¿�¨1» +endstream +endobj +29 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 618 0 R +/Name /Im22 +/Width 23 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}̱ +@P�@Ñ£WF£ÑË'ß`ði>é ²p;óu¨ÂZËÔGÃ(fq{L"3¬X E ¢¤¹Õt´¿¾ºÆûKrxi +endstream +endobj +30 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 619 0 R +/Name /Im23 +/Width 32 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`l``aæÌú�9?00p@±@+Ø °g`hàcÆÿÿØÁ h ³00>a2@lÇÀøãÿ�´;: +endstream +endobj +31 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 620 0 R +/Name /Im24 +/Width 24 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãoøp@®á?Cñþ?ÿ�ì +endstream +endobj +32 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 621 0 R +/Name /Im25 +/Width 23 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`xÀÀÿñÄøã;˦2,T0<(`xð*�ËÕH0Ô³ó|`üð�®Õ* +endstream +endobj +33 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 622 0 R +/Name /Im26 +/Width 16 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã³ùç&×ÏÏÏÏÆÏÀò3üÿ��pN2 +endstream +endobj +34 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 623 0 R +/Name /Im27 +/Width 19 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃÀÎÎÀÃÜ ÃxÀñ@ãüÿ$QCC;3Ã�ÉÈ +endstream +endobj +35 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 624 0 R +/Name /Im28 +/Width 21 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÀ``ÁPÁÃPÁÇ`ÀÎÀ�GÿØ3ȱ3ذ3T°3°3|`ç"~ +qå ü��SR # +endstream +endobj +36 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 625 0 R +/Name /Im29 +/Width 14 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãï0¨H8 qã�Çõöø?0þ`°iiàià9À¸`Ð��NÕY +endstream +endobj +37 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 626 0 R +/Name /Im30 +/Width 19 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÿA:¨áñ1|cpaP°`(``?À��à + +endstream +endobj +38 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 627 0 R +/Name /Im31 +/Width 24 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãc(øÇþAáCq¨òcsSÃz�ÈvÓ +endstream +endobj +39 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 628 0 R +/Name /Im32 +/Width 21 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`(`þ8ONBOÂ*Øà""ÃÇ 'Ã`üA,ìÿ1Èÿ?ÀÿÿÃpäÃ>ææ�25 +endstream +endobj +40 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 629 0 R +/Name /Im33 +/Width 24 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãc`øÇÀ ÇÀÀGÉ7ð%àkxÀÏP�D|¤ ÿÏÿ�W¾S +endstream +endobj +41 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 630 0 R +/Name /Im34 +/Width 13 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcb`ÂC*¬ð7ð7X=øTqH , +�r¶ç +endstream +endobj +42 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 631 0 R +/Name /Im35 +/Width 23 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßðO¡BÁAØ@¨á�sC1d�"G0TF0$�F +0äÀð>60830Ø00��Å£ +endstream +endobj +43 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 632 0 R +/Name /Im36 +/Width 19 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-± @Ñg 17È(l"£Ý(@iøò¤³GNúžUZö¸¿Jc¶ÙW<!@«8XÐÝÐ@IäkØ=l{Aÿ +endstream +endobj +44 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 633 0 R +/Name /Im37 +/Width 19 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xM± ÐO.Í%ZbçEIy£1ÊwFM|yaB ¦È U¼=g_þ·UX 9Ò"õ \Doñµ÷®h3c/Øn<!* +endstream +endobj +45 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 634 0 R +/Name /Im38 +/Width 6 +/Height 15 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øñçO pp(8��3u +endstream +endobj +46 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 635 0 R +/Name /Im39 +/Width 15 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xch`nàoø$Éìþÿ�k® +endstream +endobj +47 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 636 0 R +/Name /Im40 +/Width 19 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÁÀÆÇÀÁÌ ÀØ ÀØÀp� +À¨±ÁÁAþÿæØê8ìøØ$0?8�B pÀà�4Á¡Aù�pÉä +endstream +endobj +48 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 637 0 R +/Name /Im41 +/Width 30 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`f```o`þ,ý�?00BqÂ~ðá@ 36Ø10þÿÇÀüÿ?3<;|?ó0°øß`ÿõqÝ +endstream +endobj +49 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 638 0 R +/Name /Im42 +/Width 21 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÃÀðÁ+úÇ`ßÞ`ÇxÀñ Ã0úÀj¬Ùþ1��øÎù +endstream +endobj +50 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 639 0 R +/Name /Im43 +/Width 14 +/Height 17 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x¿¡Pá q�?0üo¨`ÿýÍ<xpü08ÿ��9 +endstream +endobj +51 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 640 0 R +/Name /Im44 +/Width 13 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcc`C> c°ÿðÿA~æ�x +endstream +endobj +52 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 641 0 R +/Name /Im45 +/Width 14 +/Height 17 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûñá§ UUM :üßð¿�Ð +Ì +endstream +endobj +53 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 642 0 R +/Name /Im46 +/Width 19 +/Height 17 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÿÀ`aÃP#ÇPÃBü@ôÿ<Xä3Ô¨??ü��$Ü ¨ +endstream +endobj +54 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 643 0 R +/Name /Im47 +/Width 17 +/Height 17 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÃÀÏÇ #Ï`#ÏPD|?PPÙ06È03ð³10ÿa��Ø + +endstream +endobj +55 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 644 0 R +/Name /Im48 +/Width 25 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿ¡@ÁAÈ064È0À1¥ùÿ�FÅ: +endstream +endobj +56 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 645 0 R +/Name /Im49 +/Width 20 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÃÀ Õ0ȶ3È17�!ôþ�}è Ú +endstream +endobj +57 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 646 0 R +/Name /Im50 +/Width 14 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc? c` Q ÀóçÿÀPÀbÁ!#Áþ��ºb +æ +endstream +endobj +58 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 647 0 R +/Name /Im51 +/Width 12 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xWHxà p�?0Ô3ØÀð¡¡ ÁàPÄ¡¿�Ñh ¬ +endstream +endobj +59 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 648 0 R +/Name /Im52 +/Width 20 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû#ß ÃL±7ð°7ðq70þ��0& +endstream +endobj +60 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 649 0 R +/Name /Im53 +/Width 14 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿ!#c!SÀQÀð� 0°XpÈH°?��© ó +endstream +endobj +61 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 650 0 R +/Name /Im54 +/Width 16 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc caÀSÀÀöØ +ø,dd,Ø��ª& +9 +endstream +endobj +62 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 651 0 R +/Name /Im55 +/Width 13 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÀ.Ág!# Ãÿ óÐáÿ�¸,ñ +endstream +endobj +63 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 652 0 R +/Name /Im56 +/Width 11 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã`à�C ´`øÀ *@ {�Ü +endstream +endobj +64 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 653 0 R +/Name /Im57 +/Width 17 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x?À`QÀ`aÁ ÃÀ�FÌäd,d +dPÙ4Ä7È÷3��é& +endstream +endobj +65 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 654 0 R +/Name /Im58 +/Width 9 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûà C"üß��| +endstream +endobj +66 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 655 0 R +/Name /Im59 +/Width 19 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûóAA¹Añ�1<@G ñ9fY62èè�UY +endstream +endobj +67 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 656 0 R +/Name /Im60 +/Width 10 +/Height 2 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûàÿ�þ +endstream +endobj +68 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 657 0 R +/Name /Im61 +/Width 19 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÃÀ ýaegcna< Ã�DÐP±AAAà�½Þ9 +endstream +endobj +69 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 658 0 R +/Name /Im62 +/Width 17 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã?Ï QØ``ÀP`@@®Dþ*``°ÿÀ`ÿAþC?ÃfJ`c°a`À��`¨ +endstream +endobj +70 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 659 0 R +/Name /Im63 +/Width 14 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûS!;GNFCüß��` A +endstream +endobj +71 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 660 0 R +/Name /Im64 +/Width 8 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x°±`�?2(à?�-ñ, +endstream +endobj +72 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 661 0 R +/Name /Im65 +/Width 29 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûS#Ï ÛÜ ÇÞx�eØÆÿç?ÿ�R; +endstream +endobj +73 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 662 0 R +/Name /Im66 +/Width 20 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûSà ÛÎ ÇÜ�D2Ðÿù�þ +endstream +endobj +74 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 663 0 R +/Name /Im67 +/Width 17 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏß`ÃÎ ÃÆ ÃB| Ä.�EÌ@ñ�14#=d`xÄÀð¡�F +O +endstream +endobj +75 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 664 0 R +/Name /Im68 +/Width 25 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûW/ß`!ÃÎ`#ÃÆ ÃàÃÇÂÀ'ÆÁÀ'ÁìÊ@<}ñæøcÃ8�Sç¯ +endstream +endobj +76 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 665 0 R +/Name /Im69 +/Width 17 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏß`ÃÎ ÃÆ ÃB| Ä.�EÌ@ñ�140��ç® +endstream +endobj +77 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 666 0 R +/Name /Im70 +/Width 20 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÇÀÜÈÀÆØÀÇÜ ÃÈ Ãþÿoa&ýïÿ��.èò +endstream +endobj +78 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 667 0 R +/Name /Im71 +/Width 4 +/Height 11 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKøð¡@@@@AÁÁ�;¡ +endstream +endobj +79 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 668 0 R +/Name /Im72 +/Width 19 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°g``Ç3ð3Hð3°3°3<À@ `q~söã�# +ñ +endstream +endobj +80 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 669 0 R +/Name /Im73 +/Width 14 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿãAÁ07°3°3ð±È�¡GGÅÿ�ùN +endstream +endobj +81 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 670 0 R +/Name /Im74 +/Width 4 +/Height 4 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKøð!�¡ +endstream +endobj +82 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 671 0 R +/Name /Im75 +/Width 26 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿðÿ>b1ÿÿ?D« áÿ@;�²ý +endstream +endobj +83 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 672 0 R +/Name /Im76 +/Width 18 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûgß`#Ç ÃÁÀ'ÀÀoÀÀÀÀ|00?``*``±`à°`a°cøc��ç. » +endstream +endobj +84 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 673 0 R +/Name /Im77 +/Width 23 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøWÃÜxùssúÿÿ¦ .ô¿ÿ�d +endstream +endobj +85 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 674 0 R +/Name /Im78 +/Width 36 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßøý Cã +ÁÇ0A°3ò1!ÌÍü,ÌMìñsÁðñ2QÀð�0`8ÀÀ ÀàÀ��Þ +endstream +endobj +86 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 675 0 R +/Name /Im79 +/Width 23 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcàc`c`¨c`ÿÇð~üc` úÿÿ�4T-Z +endstream +endobj +87 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 676 0 R +/Name /Im80 +/Width 20 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃ0bþÃ@ôf#�µP4r +endstream +endobj +88 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 677 0 R +/Name /Im81 +/Width 32 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû áÿÁÿ ÿóà?Âÿÿûþìø/@ñÊðÿöÿa�½Ð9) +endstream +endobj +89 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 678 0 R +/Name /Im82 +/Width 20 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcxÀÀ�C0ÄFìø0ÈÿðøÁ\"P&bÿðùÃÆÿ õ�û,¿ +endstream +endobj +90 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 679 0 R +/Name /Im83 +/Width 24 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûðÃÿãþ³ã?SÏ£ÿ}°ãÀ@úÿ�½# +endstream +endobj +91 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 680 0 R +/Name /Im84 +/Width 29 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°ÀÀøÿó:þò ò üìØpXÿ10ÿÀaê`zAæÌcÿP6h�õä*k +endstream +endobj +92 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 681 0 R +/Name /Im85 +/Width 32 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`¨ÿÀ�Çì¤aûöÿ¿`ÿ`ÿÿ�ÿù ëð?¦¦W¾hüöõÿÿ?ÿÏPßþ�Ë3@ +endstream +endobj +93 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 682 0 R +/Name /Im86 +/Width 32 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ þÃ(æÀN%ÌÆìÄ?0HÿÏøÿøúöÿ�a9 +endstream +endobj +94 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 683 0 R +/Name /Im87 +/Width 25 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°ÿÀÀøÿó;þõò õö\Ï`ÇPÇÀ�Æÿð`z ¶g`n°o`no`gàÀÇÀüÃhþ Ä�Âõ@ +endstream +endobj +95 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 684 0 R +/Name /Im88 +/Width 15 +/Height 43 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcgào?`ÿ�åð7°3 ÿ@høÿ�-Ý%w +endstream +endobj +96 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 685 0 R +/Name /Im89 +/Width 30 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþßÀÀÿÿ<ãû@\Äö Ü $бýÿÆ?ö üò u@üÇÅï7Ø7Ïÿ#ÿÿ3�«\'Ö +endstream +endobj +97 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 686 0 R +/Name /Im90 +/Width 57 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuб @@ñ¿\¡c5t· <Q(`L`è\!÷ ¹â˯ÿØÐLüÊÎI=.øØ<ûÑìÙýÔîSÏÆ ñOd!É¢V( ù4 +Óñ ÊJ£S +së>Åϯ×òöÿÀy' +endstream +endobj +98 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 687 0 R +/Name /Im91 +/Width 32 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=̱ À0À·(è2G2£0¥dl+ŵNÛi06(w(õ"§V7"ÝÇöõI\}ÉäǺLÞC%´ +endstream +endobj +99 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 688 0 R +/Name /Im92 +/Width 25 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}̱ áCL= +X²PZþ£9 +#8bmñu£HôSAY)µOAÕ]05÷�Ú×Õù!±`¬~Û Pn^I¢Ô +endstream +endobj +100 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 689 0 R +/Name /Im93 +/Width 18 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀÀ'à ÁÆ`ÀÌPÀÜÀØðñ� +¥ +Ê?0��ÁJK +endstream +endobj +101 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 690 0 R +/Name /Im94 +/Width 20 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûSà ÓÎ ËÌ ÇÜ Cú?ÿ�J ~ +endstream +endobj +102 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 691 0 R +/Name /Im95 +/Width 19 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏþÀ¹Aø@;Àèãbx�C�ø| +endstream +endobj +103 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 692 0 R +/Name /Im96 +/Width 15 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÀc !aÀSÀÀöíÿ¿ÀPÀdÀ$ÁÂ#Áü��ÔÈ +þ +endstream +endobj +104 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 693 0 R +/Name /Im97 +/Width 12 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xca`C a°aøÿ@ +À �ó�|E +endstream +endobj +105 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 694 0 R +/Name /Im98 +/Width 9 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x`°B TðA�üß��kä +endstream +endobj +106 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 695 0 R +/Name /Im99 +/Width 18 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x?À`PÀPaÁP!Ã` ÃÀ�Føe,d +ddÈ8@P_|;�$3� +endstream +endobj +107 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 696 0 R +/Name /Im100 +/Width 9 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûà Cüß��hp +endstream +endobj +108 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 697 0 R +/Name /Im101 +/Width 13 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x Pà`p@àÀõ öø?0üh°h8�.$ô�� y¼ +endstream +endobj +109 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 698 0 R +/Name /Im102 +/Width 13 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûó@ÖB®B®BÆ@;ü��8¹ +endstream +endobj +110 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 699 0 R +/Name /Im103 +/Width 15 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÁÃ#!g WÀÀð� &000I°ðH0?��¼Ê Û +endstream +endobj +111 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 700 0 R +/Name /Im104 +/Width 20 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÃÀ Õ0È´3È23È17ÈþÏÿ��½¿² +endstream +endobj +112 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 701 0 R +/Name /Im105 +/Width 33 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûSÇþA¦¹ÃAqãÆÿûüo��Á¤L +endstream +endobj +113 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 702 0 R +/Name /Im106 +/Width 20 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xco``Æ?7ðq7H°70707$07<À@ `) 2>éæÇ�åî +endstream +endobj +114 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 703 0 R +/Name /Im107 +/Width 4 +/Height 12 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKøð¡@��¬ñ +endstream +endobj +115 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 704 0 R +/Name /Im108 +/Width 20 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû#ß ÃLboàaoàn`~ü�c d +endstream +endobj +116 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 705 0 R +/Name /Im109 +/Width 28 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`c``a~$,Þ�Áæ¡Øù#7|cF +þÿÁYäÀAù,yÿÿ?��À?9 +endstream +endobj +117 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 706 0 R +/Name /Im110 +/Width 14 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcf`ÃÃ<e-ä°7°7È?(¶x,s*�F +endstream +endobj +118 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 707 0 R +/Name /Im111 +/Width 20 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûSà ÛÎ ÇØ Ãx@á` °8ã 2Yv?2XÐÿ�×ÏÌ +endstream +endobj +119 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 708 0 R +/Name /Im112 +/Width 11 +/Height 2 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿàÿ� ~¿ +endstream +endobj +120 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 709 0 R +/Name /Im113 +/Width 20 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÃÀ Õ0ȶ3È16È0ax à ÃPÀRÊ$Ùþ0��Ü « +endstream +endobj +121 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 710 0 R +/Name /Im114 +/Width 27 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûoü ;óvÆ fáfdàãn`Á&vÁ#¬pyÁ>ÁÀx ��|ÄJ +endstream +endobj +122 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 711 0 R +/Name /Im115 +/Width 15 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÁØÃ.Ç&ÇÇÃÇÿ ó°Áú�̾[ +endstream +endobj +123 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 712 0 R +/Name /Im116 +/Width 21 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨c`<ØÀÌØÀÎ|øÑÿÿ@AÒP}û�Yta +endstream +endobj +124 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 713 0 R +/Name /Im117 +/Width 18 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`n`?r@¦â EC¹2ê@ÈÁþü jP`nH`<pdøØ0��qøÚ +endstream +endobj +125 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 714 0 R +/Name /Im118 +/Width 9 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xch`d`b`càB 4�Ã(|Âä!ªAú@úÙ&1204��ºC +endstream +endobj +126 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 715 0 R +/Name /Im119 +/Width 12 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿtøÿ�¬e +endstream +endobj +127 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 716 0 R +/Name /Im120 +/Width 9 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xk`p`P`0`�B dCflÀ¡òÕ } ý@� +endstream +endobj +128 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 717 0 R +/Name /Im121 +/Width 20 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc~ÐÀ'Ù ÁÚ`ÁÞPÀB0D¨@½Oºùq36$ÿ�ýì +endstream +endobj +129 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 718 0 R +/Name /Im122 +/Width 27 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿÿ@?ã~ü |A¡ 3ð30Påÿÿa�� c +endstream +endobj +130 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 719 0 R +/Name /Im123 +/Width 19 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏþÀ¹Aø@;Àèãbx�C`Ô�B>20|f`Hc`°``��"À +endstream +endobj +131 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 720 0 R +/Name /Im124 +/Width 19 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÃÀ ñ?aoacáa`Q`q`yÀ ûA®A¦AÆAÆAFA¨þÏ��ÙN +endstream +endobj +132 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 721 0 R +/Name /Im125 +/Width 27 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ�?à ¶b> fbæ >ÀÏÀÃ`¨:^ö9 3e¸á?Ð.�Ü¢ +endstream +endobj +133 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 722 0 R +/Name /Im126 +/Width 20 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏÿ@A yóÆ@ô,dXdxø$ØlØþÉ��ð +¿ +endstream +endobj +134 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 723 0 R +/Name /Im127 +/Width 28 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿ~áÿÿ¤ê�Ãÿ@»�Ô{¸ +endstream +endobj +135 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 724 0 R +/Name /Im128 +/Width 7 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû÷ï�1àß?�_¹ +endstream +endobj +136 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 725 0 R +/Name /Im129 +/Width 28 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-̱ @�CÑ(rÚÅÎNí\BTp)Ës³åF¸ ô#^@2e«VÕ C¢\I®`tÎ$ß*¸~+6øÂ¿ÓSöòlN +endstream +endobj +137 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 726 0 R +/Name /Im130 +/Width 33 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßÀð¿¿áà>ÀXDp>`XP +ÂF� S@!ø`{ +ÁÌPÁ "þ7³ÿo��'G!n +endstream +endobj +138 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 727 0 R +/Name /Im131 +/Width 17 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xs``¨ÿßPÿH28014°�)00$00800�!F j�!f$Ä�<äi +endstream +endobj +139 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 728 0 R +/Name /Im132 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x3à±ÿaÿÁþ*?Ð100QàcàcàÁþ`ØÀç ç £`!QÀ~��~6 +endstream +endobj +140 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 729 0 R +/Name /Im133 +/Width 7 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû÷ðï�e·× +endstream +endobj +141 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 730 0 R +/Name /Im134 +/Width 22 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ?C??ñð3°#1@3ÿ0ɰ£ÿ?�¢:9 +endstream +endobj +142 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 731 0 R +/Name /Im135 +/Width 18 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5± 0EѤ¬Á²«8.ö°p`ÊB'dÍb¯èµ9åï vHÆZXB *Fo8ÓßÚì¹:Σð4 +endstream +endobj +143 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 732 0 R +/Name /Im136 +/Width 24 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=ÌQ +� PW±¯Àíþ§X<üQJ"M¬âÄxìB *cFX//÷$¤<± @ +endstream +endobj +144 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 733 0 R +/Name /Im137 +/Width 40 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿðÿÿòv6r6ür½AAA0Pop@4 *>A: ÚS%lAÁJH�!��wX$m +endstream +endobj +145 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 734 0 R +/Name /Im138 +/Width 15 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã``á óï2ð0È00$0`h`l`d@@`f`o`o`f��ym / +endstream +endobj +146 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 735 0 R +/Name /Im139 +/Width 14 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿS``áPàðÁáãæÌ ìü,|,2,6<ÿ��ðJî +endstream +endobj +147 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 736 0 R +/Name /Im140 +/Width 33 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°gÀÀx`sà vÆ6|à ÁøÿÿÿKDýñ?ÿ�®$ +endstream +endobj +148 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 737 0 R +/Name /Im141 +/Width 19 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``¨``üÁð©êÿ?�"�6" +endstream +endobj +149 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 738 0 R +/Name /Im142 +/Width 7 +/Height 7 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³¨ù÷ï_�c +endstream +endobj +150 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 739 0 R +/Name /Im143 +/Width 32 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ?Ãÿÿÿ°�AÆ?ì@¸ë±`Üz é#ÿÿß�Æ�±6 +endstream +endobj +151 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 740 0 R +/Name /Im144 +/Width 19 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû'ÏðÏþ\ú¹ãäÚAH¾ù<1èÿ�~" +endstream +endobj +152 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 741 0 R +/Name /Im145 +/Width 23 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÇÀþÿ�ó9v?jj èC&HÉ3~�jjdøÇ��¦ê% +endstream +endobj +153 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 742 0 R +/Name /Im146 +/Width 26 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏÀÀðåIÁüäí0È?¨ao° jääAä;9 2@³$ø0��, +endstream +endobj +154 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 743 0 R +/Name /Im147 +/Width 11 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏðA"øÿÁÿ�i ~ +endstream +endobj +155 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 744 0 R +/Name /Im148 +/Width 21 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÇÀþ¿¿ýã;Æ5@ôãýÿB ¨êì$äø0ÿ?Àð�ýÜÌ +endstream +endobj +156 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 745 0 R +/Name /Im149 +/Width 43 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏþýÃù?òä ììäìdÂHÀÿ�sôC +endstream +endobj +157 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 746 0 R +/Name /Im150 +/Width 17 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãÿÌ`ÿ¡B!á3}`føÃÀPÿ¡þý?þÿÿø°7`nx�FØþð1¼ÿÃpü�ð +endstream +endobj +158 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 747 0 R +/Name /Im151 +/Width 20 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc?ÀPÿáãÆÇ`?üýàöhèÿ?Â'Ùÿ!�Sº$D +endstream +endobj +159 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 748 0 R +/Name /Im152 +/Width 37 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xU̱ À Dѳ D²AVÉl�£1 +#¤¤@8ÁW¼æ¤DÈ&mºbÆMʲp+g(+TÁÑ¿Àãâ$ÍÜ@Ìia@CÀH?\·É}+C +endstream +endobj +160 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 749 0 R +/Name /Im153 +/Width 26 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏÿá¿ýù5ò vòØ�Áüðc¨º{ù@½þ0ÈÌâ?�4/þÿ��| +endstream +endobj +161 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 750 0 R +/Name /Im154 +/Width 26 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏÀÀðåIÁìäå0ÈÔ0È;Ø0È7ØA0yøÿÃÿ@�#� +endstream +endobj +162 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 751 0 R +/Name /Im155 +/Width 24 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãÿÃ`ÿ¿¡ý@ó:F ú`Ãøì?0ÿý ð=ã ø$TÇô¡çüzöö�ý· = +endstream +endobj +163 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 752 0 R +/Name /Im156 +/Width 14 +/Height 4 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿç?�#´í +endstream +endobj +164 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 753 0 R +/Name /Im157 +/Width 34 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃÿÿÿ?0°`ü$þ:8Q�Ëþé`ê5 +a=h�ò`â�>¬Lì`ürÚq�D8 +endstream +endobj +165 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 754 0 R +/Name /Im158 +/Width 17 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcl``!f0b#þûÿÿA¿jl@AÍìÿ10ü`��>- +endstream +endobj +166 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 755 0 R +/Name /Im159 +/Width 4 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKøð!>|(��` + +endstream +endobj +167 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 756 0 R +/Name /Im160 +/Width 25 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ�?CÛ�±ó1:äÊÔü`àÿÿI=²p&A9°ÿÿ?`��1úU +endstream +endobj +168 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 757 0 R +/Name /Im161 +/Width 10 +/Height 11 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãaàa8sàíúú·Îà��d& +endstream +endobj +169 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 758 0 R +/Name /Im162 +/Width 23 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßðOÁBA$ÄÇ ÀÆ ÀÌàÀØØÀPÇ��7}© +endstream +endobj +170 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 759 0 R +/Name /Im163 +/Width 17 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûñÁZÁÁ/úgß�� Ï +endstream +endobj +171 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 760 0 R +/Name /Im164 +/Width 7 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x3¨¨0`�Hà�>ç +endstream +endobj +172 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 761 0 R +/Name /Im165 +/Width 16 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû'oÁgÃ#Ã!ÃÁ'À'À®�0`l`l��M«í +endstream +endobj +173 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 762 0 R +/Name /Im166 +/Width 13 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã? ``P`ñ@âÿ ÀPÀa aÀ~��ì + +endstream +endobj +174 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 763 0 R +/Name /Im167 +/Width 12 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûùÀªÀ¦ÀBÁþg��t +endstream +endobj +175 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 764 0 R +/Name /Im168 +/Width 11 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xwH8pÀáÃÿõ ò4$4$Hxp`>�¸ = +endstream +endobj +176 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 765 0 R +/Name /Im169 +/Width 10 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã`à�B ´`øÀ:@ L?�q*S +endstream +endobj +177 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 766 0 R +/Name /Im170 +/Width 16 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû'oÁgÃ#Ã!ÃÁ'À'À®�0`l�BFG@¸¡�¤¹Ï +endstream +endobj +178 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 767 0 R +/Name /Im171 +/Width 15 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc? a` ÀÀód$$Ø��|ð¹ +endstream +endobj +179 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 768 0 R +/Name /Im172 +/Width 12 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc~ÀVÀW £ Ã�ÿlTXß��ªn +endstream +endobj +180 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 769 0 R +/Name /Im173 +/Width 23 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``°¡ê"Fvbbn öÿXAáI0|°`øðù�F#e +endstream +endobj +181 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 770 0 R +/Name /Im174 +/Width 7 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûa ü�N} +endstream +endobj +182 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 771 0 R +/Name /Im175 +/Width 17 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÁÀ`Y~`°ãa°`c°`g°`¢$dc0aPüÀ��AM ë +endstream +endobj +183 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 772 0 R +/Name /Im176 +/Width 16 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³?PP` `Á`ÁüCÎÂÀ¢Àâ%Vü�L + +endstream +endobj +184 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 773 0 R +/Name /Im177 +/Width 4 +/Height 10 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKøð¡@@@AÁÁ� +endstream +endobj +185 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 774 0 R +/Name /Im178 +/Width 23 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿAñà >l,+V T�Ôûÿ?� +Á +endstream +endobj +186 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 775 0 R +/Name /Im179 +/Width 17 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûùÁNÁÁÁX¤Àò +úÇÀ��bò +A +endstream +endobj +187 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 776 0 R +/Name /Im180 +/Width 27 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûñÃÁZæ8 ?sqø}ÿ�k¡ +endstream +endobj +188 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 777 0 R +/Name /Im181 +/Width 20 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcø#ÀÜlÀǰA¡ÀÁÀÁ A Aà1 "8PÖAÁAAÁ¡¹á�'õ +endstream +endobj +189 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 778 0 R +/Name /Im182 +/Width 17 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûaÇ`ÁÉ1Èè1°o��~é +endstream +endobj +190 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 779 0 R +/Name /Im183 +/Width 16 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã'ñØ ¡�$è7(0$0Ø?°ÿaÿ'ï�&ðXXð?��Rh +endstream +endobj +191 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 780 0 R +/Name /Im184 +/Width 15 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã?b ãÀs00Ô3Ø?àÿÁøA27Ú��Nó +endstream +endobj +192 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 781 0 R +/Name /Im185 +/Width 13 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿ aa`Q Àð� + +88$Ø��}/ +endstream +endobj +193 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 782 0 R +/Name /Im186 +/Width 15 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÀÆÁÁ#!c SÀÀðáñ7$>ð<àÁ 4à10`?��i ` +endstream +endobj +194 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 783 0 R +/Name /Im187 +/Width 11 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xccàcøÄàÿ�>à +endstream +endobj +195 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 784 0 R +/Name /Im188 +/Width 13 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xK0¨PÀ Á +ý +800X0X8X<� ò�×Ù +endstream +endobj +196 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 785 0 R +/Name /Im189 +/Width 23 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨ã`nÁÆÁÃ`!Á aÀ QÀÀD@ÿ=`°(�#J z6æõ�áz +endstream +endobj +197 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 786 0 R +/Name /Im190 +/Width 21 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿA¹AáCCz Ãx@þüÿ`Y ªùÿ�¦Ê! +endstream +endobj +198 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 787 0 R +/Name /Im191 +/Width 21 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ%È0(È0@ñ0Èÿ`.1�L¥Ãÿÿ?��¯fH +endstream +endobj +199 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 788 0 R +/Name /Im192 +/Width 17 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°c`àÃØÏ1ÈØ1ð1ð1$ð1<@B `A9 =öó �ãÜ +endstream +endobj +200 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 789 0 R +/Name /Im193 +/Width 23 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÃðOÁBA@A@¸A@ð� <(°�#>~væ @á�C�Á?�ï¨ § +endstream +endobj +201 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 790 0 R +/Name /Im194 +/Width 22 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿ#ÁBÂÁ,X ÁxÄü¿�ß*% +endstream +endobj +202 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 791 0 R +/Name /Im195 +/Width 13 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xão0xàPÐ`pÀâ C&0`l`f`càáàà°ÿPÿáÿ� # +endstream +endobj +203 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 792 0 R +/Name /Im196 +/Width 23 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßüO¡�ÿÿ¿ÿÍÿ�n¾ÿ +endstream +endobj +204 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 793 0 R +/Name /Im197 +/Width 4 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKøð!,�'nA +endstream +endobj +205 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 794 0 R +/Name /Im198 +/Width 22 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÃÀÌÌÀÃp@AA¡B@±EÀÃñDã>Tqg<âÌ|D±åBE�P3Ãÿ�¥§£ +endstream +endobj +206 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 795 0 R +/Name /Im199 +/Width 13 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcd`g°g8$Iÿ��Hä§ +endstream +endobj +207 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 593 0 R >> /XObject << /Im200 209 0 R /Im201 210 0 R /Im202 211 0 R /Im203 212 0 R /Im204 213 0 R /Im205 214 0 R /Im206 215 0 R /Im207 216 0 R /Im208 217 0 R /Im203 212 0 R /Im201 210 0 R /Im205 214 0 R /Im202 211 0 R /Im209 218 0 R /Im202 211 0 R /Im206 215 0 R /Im210 219 0 R /Im205 214 0 R /Im203 212 0 R /Im201 210 0 R /Im211 220 0 R /Im209 218 0 R /Im203 212 0 R /Im201 210 0 R /Im205 214 0 R /Im202 211 0 R /Im212 221 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im101 108 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im118 125 0 R /Im114 121 0 R /Im98 105 0 R /Im94 101 0 R /Im107 114 0 R /Im100 107 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im123 130 0 R /Im106 113 0 R /Im102 109 0 R /Im99 106 0 R /Im114 121 0 R /Im120 127 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im112 119 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im113 120 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im106 113 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im102 109 0 R /Im96 103 0 R /Im213 222 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im214 223 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im99 106 0 R /Im117 124 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im108 115 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im74 81 0 R /Im160 167 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im115 122 0 R /Im99 106 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im100 107 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im97 104 0 R /Im114 121 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im111 118 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im96 103 0 R /Im107 114 0 R /Im95 102 0 R /Im93 100 0 R /Im98 105 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im124 131 0 R /Im96 103 0 R /Im123 130 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im112 119 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im99 106 0 R /Im117 124 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im115 122 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im102 109 0 R /Im99 106 0 R /Im98 105 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im100 107 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im107 114 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im214 223 0 R /Im215 224 0 R /Im216 225 0 R /Im217 226 0 R /Im218 227 0 R /Im219 228 0 R /Im220 229 0 R /Im221 230 0 R /Im219 228 0 R /Im222 231 0 R /Im223 232 0 R /Im218 227 0 R /Im218 227 0 R /Im224 233 0 R /Im218 227 0 R /Im225 234 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im117 124 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im99 106 0 R /Im114 121 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im96 103 0 R /Im102 109 0 R /Im102 109 0 R /Im93 100 0 R /Im102 109 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im119 126 0 R /Im97 104 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im107 114 0 R /Im113 120 0 R /Im108 115 0 R /Im97 104 0 R /Im98 105 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im123 130 0 R /Im114 121 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im107 114 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im114 121 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im113 120 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im123 130 0 R /Im74 81 0 R /Im226 235 0 R /Im222 231 0 R /Im227 236 0 R /Im228 237 0 R /Im227 236 0 R /Im218 227 0 R /Im229 238 0 R /Im227 236 0 R /Im228 237 0 R /Im217 226 0 R /Im216 225 0 R /Im225 234 0 R /Im109 116 0 R /Im100 107 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im112 119 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im124 131 0 R /Im94 101 0 R /Im93 100 0 R /Im114 121 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im117 124 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im96 103 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im98 105 0 R /Im100 107 0 R /Im123 130 0 R /Im100 107 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im111 118 0 R /Im93 100 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im115 122 0 R /Im108 115 0 R /Im100 107 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im74 81 0 R /Im223 232 0 R /Im230 239 0 R /Im231 240 0 R /Im227 236 0 R /Im232 241 0 R /Im233 242 0 R /Im234 243 0 R /Im216 225 0 R /Im230 239 0 R /Im221 230 0 R /Im225 234 0 R /Im109 116 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im112 119 0 R /Im116 123 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im94 101 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im123 130 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im117 124 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im112 119 0 R /Im116 123 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im94 101 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im115 122 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im100 107 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im107 114 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im108 115 0 R /Im117 124 0 R /Im104 111 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im98 105 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im111 118 0 R /Im99 106 0 R /Im103 110 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im121 128 0 R /Im108 115 0 R /Im98 105 0 R /Im102 109 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im107 114 0 R /Im100 107 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im97 104 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im104 111 0 R /Im93 100 0 R /Im98 105 0 R /Im103 110 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im114 121 0 R /Im104 111 0 R /Im98 105 0 R /Im103 110 0 R /Im104 111 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im94 101 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im235 244 0 R /Im74 81 0 R /Im236 245 0 R /Im227 236 0 R /Im233 242 0 R /Im237 246 0 R /Im219 228 0 R /Im232 241 0 R /Im216 225 0 R /Im220 229 0 R /Im225 234 0 R /Im109 116 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im107 114 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im97 104 0 R /Im101 108 0 R /Im96 103 0 R /Im238 247 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im97 104 0 R /Im93 100 0 R /Im239 248 0 R /Im240 249 0 R /Im241 250 0 R /Im242 251 0 R /Im243 252 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im107 114 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im99 106 0 R /Im97 104 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im101 108 0 R /Im93 100 0 R /Im100 107 0 R /Im108 115 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im128 135 0 R /Im129 136 0 R /Im130 137 0 R /Im131 138 0 R /Im132 139 0 R /Im133 140 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im116 123 0 R /Im126 133 0 R /Im96 103 0 R /Im106 113 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im113 120 0 R /Im123 130 0 R /Im111 118 0 R /Im108 115 0 R /Im102 109 0 R /Im101 108 0 R /Im108 115 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im114 121 0 R /Im96 103 0 R /Im100 107 0 R /Im100 107 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im102 109 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im74 81 0 R /Im244 253 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im100 107 0 R /Im98 105 0 R /Im124 131 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im102 109 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im98 105 0 R /Im102 109 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im102 109 0 R /Im245 254 0 R /Im113 120 0 R /Im99 106 0 R /Im106 113 0 R /Im246 255 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im238 247 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im102 109 0 R /Im246 255 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im246 255 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im106 113 0 R /Im96 103 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im74 81 0 R /Im247 256 0 R /Im232 241 0 R /Im220 229 0 R /Im217 226 0 R /Im218 227 0 R /Im227 236 0 R /Im232 241 0 R /Im222 231 0 R /Im216 225 0 R /Im225 234 0 R /Im160 167 0 R /Im123 130 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im95 102 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im107 114 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im102 109 0 R /Im108 115 0 R /Im94 101 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im124 131 0 R /Im93 100 0 R /Im115 122 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im94 101 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im95 102 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im74 81 0 R /Im136 143 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im123 130 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im112 119 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im108 115 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im106 113 0 R /Im93 100 0 R /Im96 103 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im74 81 0 R /Im135 142 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im101 108 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im98 105 0 R /Im113 120 0 R /Im108 115 0 R /Im97 104 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im102 109 0 R /Im96 103 0 R /Im238 247 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im99 106 0 R /Im105 112 0 R /Im93 100 0 R /Im94 101 0 R /Im117 124 0 R /Im106 113 0 R /Im98 105 0 R /Im238 247 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im97 104 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im107 114 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im238 247 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im245 254 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im246 255 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im134 141 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im248 257 0 R /Im108 115 0 R /Im106 113 0 R /Im117 124 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im245 254 0 R /Im98 105 0 R /Im102 109 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im246 255 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im115 122 0 R /Im102 109 0 R /Im93 100 0 R /Im105 112 0 R /Im103 110 0 R /Im93 100 0 R /Im102 109 0 R /Im102 109 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im100 107 0 R /Im123 130 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im249 258 0 R /Im74 81 0 R /Im119 126 0 R /Im97 104 0 R /Im101 108 0 R /Im96 103 0 R /Im96 103 0 R /Im105 112 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im108 115 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im74 81 0 R /Im229 238 0 R /Im227 236 0 R /Im228 237 0 R /Im217 226 0 R /Im216 225 0 R /Im236 245 0 R /Im227 236 0 R /Im222 231 0 R /Im250 259 0 R /Im217 226 0 R /Im231 240 0 R /Im225 234 0 R /Im92 99 0 R /Im93 100 0 R /Im94 101 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im108 115 0 R /Im111 118 0 R /Im102 109 0 R /Im108 115 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im118 125 0 R /Im99 106 0 R /Im101 108 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im120 127 0 R /Im97 104 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im98 105 0 R /Im105 112 0 R /Im108 115 0 R /Im105 112 0 R /Im118 125 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im112 119 0 R /Im98 105 0 R /Im105 112 0 R /Im108 115 0 R /Im105 112 0 R /Im120 127 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im103 110 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im97 104 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im103 110 0 R /Im93 100 0 R /Im102 109 0 R /Im102 109 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im115 122 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im112 119 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im99 106 0 R /Im117 124 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im74 81 0 R /Im127 134 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im105 112 0 R /Im99 106 0 R /Im123 130 0 R /Im113 120 0 R /Im96 103 0 R /Im96 103 0 R /Im102 109 0 R /Im102 109 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im93 100 0 R /Im108 115 0 R /Im101 108 0 R /Im118 125 0 R /Im101 108 0 R /Im96 103 0 R /Im96 103 0 R /Im127 134 0 R /Im96 103 0 R /Im108 115 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im136 143 0 R /Im102 109 0 R /Im102 109 0 R /Im93 100 0 R /Im102 109 0 R /Im120 127 0 R /Im107 114 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im93 100 0 R /Im106 113 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im115 122 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im104 111 0 R /Im99 106 0 R /Im95 102 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im123 130 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im74 81 0 R /Im135 142 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im123 130 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im103 110 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im106 113 0 R /Im93 100 0 R /Im96 103 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im213 222 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im74 81 0 R /Im226 235 0 R /Im221 230 0 R /Im224 233 0 R /Im231 240 0 R /Im231 240 0 R /Im219 228 0 R /Im232 241 0 R /Im251 260 0 R /Im225 234 0 R /Im119 126 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im101 108 0 R /Im124 131 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im101 108 0 R /Im108 115 0 R /Im117 124 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im123 130 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im107 114 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im140 147 0 R /Im103 110 0 R /Im98 105 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im97 104 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im74 81 0 R /Im136 143 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im96 103 0 R /Im94 101 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im245 254 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im246 255 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im123 130 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im119 126 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im116 123 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im103 110 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im113 120 0 R /Im96 103 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im114 121 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im74 81 0 R /Im134 141 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im99 106 0 R /Im102 109 0 R /Im106 113 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im121 128 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im123 130 0 R /Im104 111 0 R /Im93 100 0 R /Im114 121 0 R /Im106 113 0 R /Im96 103 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im74 81 0 R /Im252 261 0 R /Im231 240 0 R /Im231 240 0 R /Im224 233 0 R /Im232 241 0 R /Im216 225 0 R /Im232 241 0 R /Im221 230 0 R /Im225 234 0 R /Im130 137 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im112 119 0 R /Im100 107 0 R /Im98 105 0 R /Im124 131 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im113 120 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im101 108 0 R /Im74 81 0 R /Im135 142 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im117 124 0 R /Im102 109 0 R /Im99 106 0 R /Im105 112 0 R /Im253 262 0 R /Im101 108 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im105 112 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im113 120 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im114 121 0 R /Im104 111 0 R /Im98 105 0 R /Im103 110 0 R /Im104 111 0 R /Im103 110 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im114 121 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im93 100 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im114 121 0 R /Im104 111 0 R /Im98 105 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im100 107 0 R /Im93 100 0 R /Im98 105 0 R /Im97 104 0 R /Im97 104 0 R /Im93 100 0 R /Im114 121 0 R /Im98 105 0 R /Im94 101 0 R /Im74 81 0 R /Im119 126 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im103 110 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im118 125 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im115 122 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im93 100 0 R /Im102 109 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im101 108 0 R /Im120 127 0 R /Im107 114 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im100 107 0 R /Im123 130 0 R /Im114 121 0 R /Im98 105 0 R /Im100 107 0 R /Im100 107 0 R /Im103 110 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im108 115 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im111 118 0 R /Im101 108 0 R /Im74 81 0 R /Im254 263 0 R /Im255 264 0 R /Im256 265 0 R /Im257 266 0 R /Im240 249 0 R /Im258 267 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im105 112 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im113 120 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im106 113 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im117 124 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im74 81 0 R /Im119 126 0 R /Im97 104 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im93 100 0 R /Im93 100 0 R /Im102 109 0 R /Im121 128 0 R /Im108 115 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im93 100 0 R /Im108 115 0 R /Im102 109 0 R /Im124 131 0 R /Im94 101 0 R /Im93 100 0 R /Im114 121 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im117 124 0 R /Im96 103 0 R /Im115 122 0 R /Im99 106 0 R /Im95 102 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im101 108 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im117 124 0 R /Im93 100 0 R /Im93 100 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im108 115 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im74 81 0 R /Im244 253 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im107 114 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im93 100 0 R /Im94 101 0 R /Im104 111 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im121 128 0 R /Im108 115 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im124 131 0 R /Im94 101 0 R /Im93 100 0 R /Im114 121 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im117 124 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im117 124 0 R /Im108 115 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im105 112 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im116 123 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im124 131 0 R /Im94 101 0 R /Im93 100 0 R /Im114 121 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im117 124 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im102 109 0 R /Im98 105 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im111 118 0 R /Im93 100 0 R /Im93 100 0 R /Im102 109 0 R /Im118 125 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im112 119 0 R /Im117 124 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im139 146 0 R /Im96 103 0 R /Im106 113 0 R /Im107 114 0 R /Im96 103 0 R /Im102 109 0 R /Im102 109 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im93 100 0 R /Im108 115 0 R /Im101 108 0 R /Im107 114 0 R /Im243 252 0 R /Im260 269 0 R /Im259 268 0 R /Im261 270 0 R /Im120 127 0 R /Im74 81 0 R /Im262 271 0 R /Im173 180 0 R /Im183 190 0 R /Im176 183 0 R /Im164 171 0 R /Im163 170 0 R /Im177 184 0 R /Im169 176 0 R /Im263 272 0 R /Im164 171 0 R /Im168 175 0 R /Im168 175 0 R /Im169 176 0 R /Im176 183 0 R /Im169 176 0 R /Im166 173 0 R /Im180 187 0 R /Im166 173 0 R /Im163 170 0 R /Im169 176 0 R /Im167 174 0 R /Im166 173 0 R /Im172 179 0 R /Im166 173 0 R /Im167 174 0 R /Im168 175 0 R /Im169 176 0 R /Im171 178 0 R /Im176 183 0 R /Im174 181 0 R /Im179 186 0 R /Im263 272 0 R /Im176 183 0 R /Im264 273 0 R /Im175 182 0 R /Im166 173 0 R /Im169 176 0 R /Im176 183 0 R /Im164 171 0 R /Im163 170 0 R /Im164 171 0 R /Im169 176 0 R /Im168 175 0 R /Im169 176 0 R /Im166 173 0 R /Im265 274 0 R /Im169 176 0 R /Im264 273 0 R /Im175 182 0 R /Im171 178 0 R /Im171 178 0 R /Im266 275 0 R /Im172 179 0 R /Im171 178 0 R /Im167 174 0 R /Im180 187 0 R /Im182 189 0 R /Im174 181 0 R /Im176 183 0 R /Im169 176 0 R /Im164 171 0 R /Im171 178 0 R /Im163 170 0 R /Im177 184 0 R /Im164 171 0 R /Im183 190 0 R /Im163 170 0 R /Im171 178 0 R /Im167 174 0 R /Im164 171 0 R /Im163 170 0 R /Im183 190 0 R /Im166 173 0 R /Im163 170 0 R /Im263 272 0 R /Im176 183 0 R /Im163 170 0 R /Im185 192 0 R /Im166 173 0 R /Im180 187 0 R /Im166 173 0 R /Im163 170 0 R /Im169 176 0 R /Im168 175 0 R /Im168 175 0 R /Im182 189 0 R /Im185 192 0 R /Im263 272 0 R /Im176 183 0 R /Im168 175 0 R /Im180 187 0 R /Im171 178 0 R /Im165 172 0 R /Im166 173 0 R /Im171 178 0 R /Im167 174 0 R /Im192 199 0 R /Im166 173 0 R /Im167 174 0 R /Im164 171 0 R /Im163 170 0 R /Im183 190 0 R /Im74 81 0 R /Im267 276 0 R /Im163 170 0 R /Im169 176 0 R /Im263 272 0 R /Im166 173 0 R /Im171 178 0 R /Im169 176 0 R /Im263 272 0 R /Im166 173 0 R /Im167 174 0 R /Im263 272 0 R /Im176 183 0 R /Im163 170 0 R /Im192 199 0 R /Im177 184 0 R /Im169 176 0 R /Im167 174 0 R /Im176 183 0 R /Im192 199 0 R /Im164 171 0 R /Im169 176 0 R /Im164 171 0 R /Im171 178 0 R /Im163 170 0 R /Im176 183 0 R /Im174 181 0 R /Im175 182 0 R /Im166 173 0 R /Im168 175 0 R /Im169 176 0 R /Im264 273 0 R /Im268 277 0 R /Im167 174 0 R /Im168 175 0 R /Im169 176 0 R /Im168 175 0 R /Im166 173 0 R /Im176 183 0 R /Im167 174 0 R /Im185 192 0 R /Im263 272 0 R /Im166 173 0 R /Im168 175 0 R /Im185 192 0 R /Im176 183 0 R /Im163 170 0 R /Im179 186 0 R /Im164 171 0 R /Im185 192 0 R /Im266 275 0 R /Im163 170 0 R /Im171 178 0 R /Im192 199 0 R /Im166 173 0 R /Im168 175 0 R /Im176 183 0 R /Im163 170 0 R /Im170 177 0 R /Im269 278 0 R /Im263 272 0 R /Im166 173 0 R /Im167 174 0 R /Im166 173 0 R /Im164 171 0 R /Im163 170 0 R /Im169 176 0 R /Im263 272 0 R /Im166 173 0 R /Im169 176 0 R /Im167 174 0 R /Im166 173 0 R /Im166 173 0 R /Im169 176 0 R /Im171 178 0 R /Im166 173 0 R /Im265 274 0 R /Im179 186 0 R /Im176 183 0 R /Im163 170 0 R /Im192 199 0 R /Im163 170 0 R /Im166 173 0 R /Im265 274 0 R /Im169 176 0 R /Im74 81 0 R /Im270 279 0 R /Im271 280 0 R /Im171 178 0 R /Im167 174 0 R /Im166 173 0 R /Im265 274 0 R /Im176 183 0 R /Im180 187 0 R /Im179 186 0 R /Im174 181 0 R /Im166 173 0 R /Im177 184 0 R /Im164 171 0 R /Im172 179 0 R /Im176 183 0 R /Im175 182 0 R /Im174 181 0 R /Im182 189 0 R /Im163 170 0 R /Im192 199 0 R /Im166 173 0 R /Im167 174 0 R /Im169 176 0 R /Im182 189 0 R /Im167 174 0 R /Im163 170 0 R /Im168 175 0 R /Im171 178 0 R /Im182 189 0 R /Im169 176 0 R /Im169 176 0 R /Im171 178 0 R /Im175 182 0 R /Im166 173 0 R /Im176 183 0 R /Im168 175 0 R /Im176 183 0 R /Im185 192 0 R /Im167 174 0 R /Im164 171 0 R /Im268 277 0 R /Im185 192 0 R /Im166 173 0 R /Im74 81 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 208 0 R +>> +endobj +208 0 obj +<< +/Length 796 0 R +/Filter /FlateDecode +>> +stream +x¥}ɲ%Éqݾ¿¢âBS\Ê(i##Xr# àØ2þ^7ßMzyÎóãêî"o'|ø·_þöÇ¿ý~üùû¥|¤<ý>¦Éþ?×ß,ùc[륦müîO¿üæ¿ý)¿þç¿ú_þö´~hýº|äù¾>]×/üýmëóuýûÿ Ö¯pÿå¾~¯ë÷¿ISûhÓûKùùêoàuò×)ý¤à×´;òN𺾯G|!ou¾ï`P<ª^Bªn·À¸(5Ì76¢GhE½ÌiNãøy/IBØä,¶ÊHë¬1ÒFtAz ø@º)v/Ón1RNõ#åo0Ö9Ï9ßN<>P0#ÝøÒ *Ò ¶gÂëöLrÃVáÆÊì4È·ÔrÙÁûo^Âø¹~Ú¾¬ßnw?äåØÿiyº[Åú±ÞD1¿N´êlZ?¦Ö×ßßmð÷oFKâñçù§º¾ÏÓ.)}¬ÛÏíêãíoÚ~<Ohû»Q¾`»)²ü±®üiBØnïµU~t}ÖØïN?[øo×éJüs# Ý@Ÿyw·Ò>%è&LSK· д*ðz æ-kúÉÃ7¢<8¯";\ðÜN@ *±»Q +¼Ü T +D-t·"¶~¸!F/Q1ñËÞÀ �3F6Ð È&EL +^&ÇLsªün d¨îb@IP0�`.̵¶ j¶®od=g̲ȳÆÌC�" VDÇúUÓ#÷ß?°îÌŹé*E[´%¶;ÄX Lè÷9g7P°?$ë¡ðk^ÿxÉEÉéR¼I)?ï�@u [ÈÐ%N·K`l\°"R OzûýéX¾5C©ÓASLpGièKÌ¥!MrgCÊ G%7.àÀÆDÖåeùÕeN¥ìW +~õÛîS¹!¡ÀO ß!ñ©ä;¬è06®Ø)äÐÖÃ;¸tD9j·ìXSCe}^W&ëãZð%ÈðH-SÄ´q-È¢IÚø0µ(B¾ÝÓ§µÉú;fõ¡cVUÇ2â-cWaJêôáÕåaWEÏExu}áÕMðÐU·MCºµIoµ S@öî[Av®QeÒ2úý@Ü c§c} F¨(>ÃRØ +tîý�X«9éPõ¾~Þ¯¿t/"xY.#Ý+úu é~ÿüT_×Ëä;Þ/Û##²ºþ< >Á¨¦,Â7rY¯#µø]Ê3dÉ#}CÅè±e*X}ÙÐz�߯Eä TcÏ®¦<êënL¡îÊuÏ:P<# +XhA¿XèîÊMÇÞ/ç, ãêrPæ.úòûY®ªh}�i?b¢ótüRo%t^/ëðtD4×ÈÏ]uì½2^KBþb¶$ÀÜþâµ;ró,»; +"A@V´ÀeÝ$ +ÒõM½¦Å²Êä½i6Á÷¦¡ìʦ²ÀÝP< ÇÂ+"aàÉp5)ä/nøA<F^k&¬ô³ éò»µé8òõ¿Â¡·øº>ëb¶ºhB�O÷¢.1ð`B½ØA +èVPF¬ªvô¹¥5IQ +ÎH0Ò×bíôÁiÍ=ªb,Â×Á]9å"èéayÞ 9N1{sCw ¼¹Ùz¨Ëe¦L«hð£åþävWdðÑl iþ�}3Ìè�ÐÚÜ< +0.Px¸TÑ«¥/n k2ùå»4ȲOhf¾- ¿}2=¨tjÐ%+¦)¬XË�qY!õØYã +CÃCdÏe£þHÅzH&@ÅþN,¾1ä*Æ5^кã«E½�öVõ(à�òrùÍØÚF#»ªªÁ;¾sl ½³ú¯N¹~2á,z#ôgM +è,ø1>h¸Ì9§'À±¥®VìÊqI]! e[T7o�[å¸aMö^ðH +ZÂL~)i óìÒ¶¤Â쥱@à¥,CS ï¿hø% ètÜdøxäËòàÓr ÁükE?/Õ&~ç×£ê þ¼Ù¹ü¾ì§ã¥ÛÛ�E÷Ò»Lò²^Î}Ýv¼(òO�âF7¨g¦o ðR·I7À_ÊðdG$µ,]!¯éXÄ Ñ Âô=0k \ñôª +%¢Eä:mvy,¦ÎOõH>jÃ<.¦ÐXB0ð\±ksÓÆ¬Àtr @¡µúL;¾{Þ@³h¤ÂeBÐb9R«©Ñå'Xvºeï�#;{MÅ{iÙÉ«¶oø0¢�><j ßEz,'¸>¯ÏÜÑÕì¼À¿Tø ©ìuÒ)Å¡?£G¤¥Áõ:Bo/î®xh19"-3º@ò^Y ëuEÞwRVèMÜ{é¬Û`Tq¬aýy�ê¡§öðzHÁµ®\ CÊH¡? ¶FF»BNǸ+fcä¯jdFÖ7-¸g xµ x§õ(oºÝàg!ÁmÁ,;õV0LÛYÔµ=òië7 s@&`Íê¦ñÇG59$ͬG«$õ[B ÇE¨!¢·JQ&6|rNc<l2tZ¯{´%Øò=.»È^ÖÁ&>#º£õÕåçõìGÎëõî ^�Hê`BÌ£/%L¿@0"@(xØ$vxô¼û##OàÐäp ÕÖËêÃzày¿O¯°¡ß"À**yóô}E%½Â¹>"s#.'ÐóØ» +óØÄ.^HǾaý\óØ7hEyìRäº3'MQ`æhÈéQvûHõ `úÞ¡HËàßí8ÿ�´z× Li¤eNÑ!Ï�F¼Tåy({z2ñ¬21kÚ) ü¶Ç ïû�4§ú+t#Ï$+Ræz1Dì~Ìè ¼?À»îwH±!ìÉMøJÒ|Bº>ccÒRGAXtäÊÂR°C g-ªI%aÓ"l¥"¢W0?kʼ=²feÁ^¥7V°"ÒÛPtzÅÍqÁL�ׯO[UÝjÁ:ÁÀ@vhê(p¬xÃøûzÇCCYkÒL ç G¦÷í�uÛÆzÖo@GÈÔò +7 ͝ðþJÁj¨¤ 2ÏBz.!X¨Y0öôÆY«hL)¯Xd®BEHþ©öV5êV7éïcÓ@-Ôdz*DÉôGÿA²�Æ×g±õUõ_©n¯ï!êú}³!ÆÁT§]c`{¤©N÷=ÆÚ~ wÍä§µ:ê sý¾ÕOÁ]¤ßgv0Yê\ím5u¬_X²'x +,¤` IÃ$Þ�K¡Å_{·ç�dF Àü�³H�1¯Q~ sТ^ìs�û�VBzö6I¤(½=µyZ¶û9f6? ·ûéÀç èý~¬¯ûõ:: "ëë>|9kRÀs@KÆ0fÌy\º® Òi¤!g"²7YItCôæEAä(7Ôez«âêÅ�d=*SýÕ¼'!; dÃÖL'hNu|sB7é ô$Ü$JýÀSUX2ÔÅz"µu;o H]4)¢ wÏcÖ\æÖ[_÷a·~G¹¸õeÆL¤wyXêmwúÚ`àÎÄ©Óy�k29û¯ÀÐV×u¡y¼ÏÅ``R'hJdh©Ô®KGö°1±E=*µh¡EHË,FV¬õvè² òWÈ:ÊÿT Ö²lö&,QÅjPf±mäaÕà09�Ï¢£ +B=¦öY?w÷¢N¢b.nÝ!äâ= [-Y7c¤ì]"xèÝÏûär§5åY?öò}Cq¯{9÷R÷c¿¬÷c/cÝ´7üó7ögå ½lÑ·oå37ÂÛ�Oä^ôDn¨Ê`3n.4лy[]çeú +º=í©·©ðYØÙ/ÐûøVx&6º@-DjHtgÖú`á±]=ûÓ9 Ðlja©ªñÓÊ¡¹2 x3g¸ý7hä·î´A1ߺÓyH®ê(½'!NY²¤|z+Ö¤:B<¬ImýCE¡& ä_æyP¶¹b)Ôdb½�+B=~Öloi¦½I½Í eL8Z7Æ<¨WC¬ª?ë¤q; 7¸Aè \¡C@æ&¬EYàÈÐÙ® Ú :géyfìÍèè,tèWXÑ®¸cú6¿ÃÇ5-ÆÀÑï,YÞÀ¢ }¦ÂÎX 00c`gLoÕ²GQ}ïò1Öw|}4®¯PÐ᤹ÜLrD@6têa9w³b-¦}%Qi ÉÍдõ%ïð¶«: ÷@§1utúBJîܱuÑX£ÓXÉÀDÅ1þD²A% ?Ø´SסàîC-Ô°µPËv .º=ÈÄÝeâÞy0¢±x$»³mHøÖë¸ùûÖ´ÉH»!«ÈNt:)°Àõz ?>;!òGò¹?¾¾JëiîçË øøOëõÜÏ!ôÜÏî_!Áå +â¡�8\e dÀL¬§P·" !G×gÓ3ÔÈ]&fÀÔñy¬úFÞXVM S|~;u7 {ãikJóy@ïo0!d>öIÎ håøÞ_'kÃËÐÈÎ\¶KÙîÄÞj÷$ò·.¯cµµfêR=}¶7*f"ºêªRCM¦££Xë�ÿNÁÉq bÁb¬·ò^0éiø+&¬ôIÖ¨#äÞ Øx¥½öݧã:U6Õ`*§õÀ`tÍÊ2/ëÁÐÖ¯áz`N'¨Í+¿¬ õr¯{ýiQñe=J +®)"`Õ4×XXÐÐ2pHð º[ïp!pSÅÜ1Ç4�¡Ù½z·H?`¯¥Þî³í+¼`Qɪ¸ôQñ^æd©÷Ü$ÞBC¬ ftgº Nøæ<A 8Ú(0gÈLßw¦ØÐïGBô _>(hC|À<¡;$>k|^¯{¦¹19Ã)Ü-Ó÷Ý-ÎxÞ Æ¼<Ý`À«ªu§¨Â È%¹!ÂCæÃß×óFæ& 1 î ÍãÈ, xPt¯tTdèT¨C§JGÚ÷ù*à zYÝÔ`$qã¡ìa-hVLgüôÊF÷ +Xû>ÌCzmfA<H¦îa=|)¼03¨ÇB¼5MÎ×CE¦OHe=àäx \:dK#É+Df¼hrD@n;ÃgÃß×ëÊ`xß<AS ¿OPõw÷5¹RõöÐûbEª @ bwNÏ|Àj0ÒþOÓBt ˰¾Y ÊÈ ÌxúxEÊ(-ãZ>P/p^aL£'ØÊ¹Ø}ÂËÎ�ðóúø�ðA5Ú Æ62�Ücbý²'p²Põ(Ù?Ö£ñàQéaÛË4{òÆÒ×KEMóÚÒXys:BËOÿI#/ÌhºC2Ú@døÁCÈã %¾n@NâKG+Ýëôä#ãr½â¾qY/kKßð~ß+ông_ÌiÑ+"Ù߻θç!,_ æ+ë<Lñð 55Þ rJa h¯âÂ@/b«Äà[ ÉqàÕ5!)Tvet@ï°7 CP:è¤"Õ Y#Ý¡Ë ªr½45Q²þye.ÏØë©3TÅ:/¢"àåÏlÁÔ£þDÞàèÓª2Ôdv²+t]2ÖÁïÙÕ¥ãÀÍ+¥'ÈGÅ×cJ5á é y6بÑiBM[y²GM)ÎÝ 1_5&¢¡1Ò¯`ÆqþZ³#+q±Ù= =Ú+ -üùÕ 8u|"`r¸Ïäbd d}²èR¤ý�XFsëá7~$<Ö« +M16®Ø+Ô_¾_Ü%8Ö7|¹-rm"Ä@iHüÂ�Z NB¬Ëdj}üFq%ª,�õjÄ«SôÈË5cà)ºbH? B ërëâ7á7èÔºïìXñUØHx Jl[ÉAf0QÛ+$IÁ½çb¶åëòãlÐå°%õ7°tÔõ°eõÀ'¼65>: np½kî÷û4+{Eëïɰwèégëën,HóyÓC +&"8±Ý¢_i þ³¤èënLH3K\2Û-¼{á¡#¤)P-¨ôJ ï@s`ÝðÎTëÍxzNôD!ÐÑbË9ÍHõ¹[iÅÞa�ª;Ê/ëõÞ ©ÁÄçéݽ¤-ul,{NôØiÞpµ±À ÐÕñêðnFÐFé~ͧ` < BèÃF CjÏàÌ30ÃÕÈ º(zÅì~?R1»ÀKUÄ6/f@ Ñ,ÓXa``´ úHð,Id$xBdsf(Ʋ-+Ð¥ +,eQ5)¡!q©ôØÌq�)lõÜ<ÌØ%ÓÃLzDú`øQ ¼"¯Xx+0:D(Y¿AcÈÖ!ÇáïË,\ÌÂßÏkÖC5O\ÚñäÞ;V¬l°`U. 4ôBÖ;úÕöjdÉ¡f¬EôئùÄ¢Ú[ê}BT§õz7¤ +=²@¹oG½ÐgC9ÖÓ¢¡G¾iª5KÄ¡bôû¨xÒxCŲGæ`Íþ0¨XÓ*ÆPÎÍoÐ¥»3!]O4!P$«6&p°j:XüpèæiÌ${º=}@Ï³× èU÷W7 ' >âm'C +èó"2Ú¢G~MùDÎtÔ2&½Âyè&Eä;ƯÐOp4Cº \SOVÈþgDÀÄÃWâ]å´ós?QÖúìW¨#O õÆú}É8 :{rz §C%ÛÖùÂc!&$Ä~`²p`d ²³@-¬7î(PdÎe95C÷iKX±!]2YõQbcÅE¦Î@5É!ÉÍ)÷æ¢)%$X°3¡OV'T� ©®Ï¼¼B[¦'÷oúDcìQÚo IFæQ¨J#¥¬KPÝ$]Ä»o ÀÄP {^´wߨîO|ãôß8¶úu9è)÷Ò78ç`¡óúrã×EÝkv!°<¸òUçrc!/ æ²ÿ±ü/û)D÷ý¿+V+"`%¸3äB>�\JÀRÐPoH| ɽ;¤½M +.p»DBónÊwý@ ]c( AÌh}GV`dè×:)0ÕÑ<¶Z#!Ç'`¤åݰº½´¡Cs>ÓÚshê÷æGh¢Ñ-IäMý&iÿn +Í(WÝï3!®DÜ@ +è(Çì«èåz_§ ¨' ¬èr½ çà4¸À<F¼æ¹D²jýVäÒ(<l(è÷#7�}HÁdÖ¤ª$NiÂ, çòõIÏܽºcÇ¡«)ÑCCY.GкeÄźßR=¿_M¢© õzM³f4ÿ�+9®@E¢?özÅAEVÌÅz|c=º²n¢GǺâ!"P¤4=ÔuB ® k5!OAÝ%¨¶PV¦B-x9®Pjad àjA £µÕÔPqÑZB�Í#ä]åàú@© MùjXB¸A=(¥ 5(Lôj$ Z¶8�áÙ4×Ägóõu¥¹´/}6V%Kª¾|@Îë¥jèàBÂ;| Dò/6ôôù@ðn1ÿád§:|ú ¬ÀÄ=I!©G +ÉyktÞìTwï¼>�ò!& +t\ªÔæêyRÀ V<A`ö½¾Ä¬ÙK¥Õä ^a`ô}rÔC¨!¹Cf¶¬jxRC¨ %J�!öf·cov§èov6Òî²='¹c|è<4?$áS5e5Drsª_¼8±õ¶jrS@¯ÝSör Ç06ëµ{± :Àbnù¨;Ð+Ý<w ²¡±U¦cl%?rz¡ë°®hPê[EW)s=BRjþíª6WÍ¡ãMÍ*Ôq¯R»èbíïÌÕD¤ÎnÅNµÙ^VõXW4¬Êäâ]²Àô¨åahµÇKG!ìéOÂTx "Ó_Î{O3×¥b0%@W¶¢:¥lüF»Kv4Ö{)·K¶x . HÖªèÔ2£r:k^1oÉÕH ¥ä¡�Î7 d&blé#s¤£\@løºlÏb³µzT útº"heÓÍ0Ê&ã¨R¹> eMx¥ôIecÖ+íYGzGão=¢G:Ò{ZiådÖø¼�ÎZáäd,ôbÅ¡,ªdýÎ'óÈzBæå:Tm¯£$¬øu¢;ÐÃó>Àã|÷R³6Ìr}B²¥çè RfI8kb@k |rd,ý!|ôBÐkõVøû²)êH±§O¸#Å>á ï>!o©w :aUHxn Ac 7]ïù w³¨ËÝj¹AkÖ«åFY]UÌÖ¶'bE4 y@.¼ÏPê]¯uµ6iÚWd�F�^©v�çÜ1*ÚÕ jBØ0ÍHzèÔéwØKÕF¹¸cÍ>k2=/CJ?�ñéô ¢OÇç_À+ÔÛaU$Ò«í§£BV{zuëØ8n=!d).Ð!4Í/+"aàµ`õêm½x ãÍëmí3¡uy×¥íËú\n½Üî ©oðëÐËí½NíKµå}ý}PªG¿-Ùe=ªvÄÕëT{^«%ßûßðzá^ÚwÚcûpHÛ}ñurG5ësÝÐÃ×bGûÀhoN=-v|Y ¯ÐâH±ãQt|ý^ìxØ}ÞðX±cE×)vlHÅí]¡R_*i¬Øq(v ÅÚ@ Øq©ix} í×+ÔûYè¶éÙaÙ×2É6ø=4ÚP*þsÅßïæè""!jõÒ$zuÕ{z¿Ïñt|¡àèRxcâ÷vj=ôÐÙéíxÜÞŤRÀ{®C2Öú|L¬KsOzÏç4KÐN(Y¡=ßÃû·®°k§¸ì-ÓÑt&Üü¬Év|�}@/ 5Y¤Í¢iBÞón@FËKÆ>¬ôn×S]Z&÷û¼ÜT$�Ç6Éóø¾¢ ø{öVozÙ~7ze xÕ@ +è52zTe <¤'ãm³ÈÓM³%^Áê°©PEz¦ã+ó!+v¨-ÓÑs E&ñèPF[B!ÖsÀRO$kPëdmÖ\rºYÛ� ) ã¤u± â¤uYY +#Ë@Ñõá ]71*`hò,,(EzRÂzPâÓp\([`}7¨Æ"ylYµ$ä�¥=:ÀDµ×nqeQ? ?ºvô²Ù±nã×È¡¹¥a]N w*6Kx^¯·Îy·rDÁ@úYBçü¼V?ÑôJÏxø¾>Ýnò^*ûi ÷~L_ÑíÙcµÔ»Pà>7!>àÞØðϽZÖ>°�ù°lð·K¤D<ºÜ^x±ù%UÄVLï^@¾Ñ0ÐfwÊàî©í=íÐõ²HCäuüö7µPÞmçSû¥8Á»c¶m VKVdMiXGòÀ:RÞ¤ü|3RSç¼äÛS=löT/Û^ðtpÕì ¥À +ÕùýÅömß2âB¥o»¡IccЯ*<ÛQ¸ö¼ý©@btÚ,�tfè×Éõ ¥+Ãìõ_`³!å;`E³Ð3Ô#6|rtV 6DHRèXERͤóÎð÷õÉÔDrha%·îðÀÐe` 2HÄÒ<^±=â:°Lb|ÌRb+.AJ,¯ÕHÈgK6ÿ�¶ÇúpÊ¢À@§0Ðè·â�QLHô lkÃ~±^n¡Î36%²&¯Ø«5y ^e`>è�wª Ne¤7â3¨BE n@o=�>]·I3å¼àWT¤(a:ôBw.Pn©pgÄḪa.Ú±öÜÞOtF{Ò:?I¼a뼯aÐãºtL_7 là´Úiñª ÐKíÑÒñËÒÊw¨õ)>Òª®ûú0c®ruµ%¬#~÷Ù#Ê2wÎF\(*u´ÿ(±º^¡^/¼¡ 9Õï`E";#(@µ)¢² w|æÔBE ôè´ºrL j¬ôBâíÏÁà´¦ y6i)¨*B=#]ÈCé%8Ê +5±ó®è÷#ÓÛC!Ú _®ÒÓ½A +¬qdª!"@ OsIØÆ">ã±)[JÁ$ÐU [t鬨tØ¥ëë K׳Q=n�{Túf|zÁòR$UÎAVÕ)fɤMú}Q¢ÀôÐ#;2%xkÂB¤Ã[ÐÀ[IÓ#ÐÀ[YUÞÊð +ux+oÜZàïëðV¶Po*X¡C)÷ôdÖ8Ù¬sú¨øÚ1WaN´!¤PУ/C(§Á+<6�ý9)ô ÁjîÄúøõ!b=&ûÔmÂTVMIG;"øûé+Ã.mËÐ#S²+õlØa5d'vFä4há<&[¾Àd4{S°HͽYÂóú�B ?ܰzsÊy.ë6 'õ\ÒÁIïÉÞ +G'½÷dT,´HëYëp~&ñÖÊ\SÐG×4t2Wëçç³�ë'®0 ü}=y:@o`fpôVÌÂz»McA{T¥×ËñHÐDòç&¤"í tñÊ ª¡@µ?äa9u˺ùÕ0¥nõrýá;(:¼X"¢Iër16¥ÖÐ3¥à-¸�ï ê�ï êÕþj¨Ã»>áp gÁÎíûp²Ð +)¨á¦9cßÕ|ÞÊï3f�e¸Ä£HX§Îº=w:<<¨{n\ ¿IRºë©Qþ¨FuVè é Ø ÌÍA¿/ö(·¹7è:Bi`½jÈÂoðrí\Vmô +CzÓC,icïvð´qúÀ=iãÞHîÜð45WÐË·Â;Æe\ÖßKËX#»µ ßÏ7d¿oåçõhÚn{c°ÖeýMY/D{g¼ì_¦_àP+A|}¢,¢` !¼Â{io%Þ/;�§~VHfDÄ]çºG°Ô©ãþtnÖJ°¡ =À"û Ao¹a£ª;ÜbC4¼»ä¿¯#3DÝHG[ÚZw7êOh:ºeÕ£ÃÓ7 Jª$Ò&ß\ÒÁ+ì½;bÞ ìß§sH�9µ�U+- ó¼½ùSÌ!¤¨³t�z ý~ ßB¯p½|@oÕÞ嫽Ëýr4: P(nµòθO +Úè=¢à¦ñ1"c¬H]ö±Ð³^Tzmfz @5a Ë>ÔÄzý¥0Ðe@ïÿUòIõÑSeÆÞÞæ{3zX6cjzqèè ,Ï,AÁÞP 6P�ãª2�½!=²¯Wy=ïò¯Ê¦M©Ü,¢¦£YÄùa ¹=â¡ +µP A{5λJC¨Ç"Ó@kI´×ºîDkÐ^±C¥7h¯ Ú2}XÅ6Hþ5&-Ø(hÀ< GÂÀNOü©¹ÙEÝàÊLÜ D¤¿6õÌ'ß±F~Z`Ç7¯P×ô´¥è^ÓCI#;=¬heÑ +ÛZîÓe¬Ïس½;àS x#yyöRÖ>À;éi' �1ÑàDÚdésþ\fÐ*wfkÓÄJþavË÷ 'EÈ*Üºà ¦¦,ÐàãôfxúRyFÁÉ@dà̪ñ I5pëKGÕÑ%°ô%xqtð�9aÕ`ï[ùÝ¡äÃN#ÉC*r¹Êº§O]N ã̪}\K}&ÅêÑH\C¶4�Ô7ÈCô'(Å.O õ¨. DÊÞLÏò?À +d5!à(í$)rz ±@$qCîT¥ÅzDG©CD 3=ù#C*PÞ9T¥Mþ(GÿÓîÉlb1xä¼û$HÞêb¹¦¢`MÀiÑïCt;Õ(öjºEÔ$|Þ +Öeú¼s¯XèØ "{©ußÄè¢\´Èzã-¢±ôN±B] a%n¡l+VzbI,b-Xô:eèV,bõnXÊ=°z'BÏ¢º`±kÐ8X¬ýýåcZ¬ôXá3[ÄðRpk0±Ùz@#odo^]/ôêzì¨W×{ù 2a¯õ£#üè´Xsrs¬øâó|ò@¡íÖË&*¾L]¢d<tù3]> gcÚÓé¬wIèTÊ^ Ïu®pú\gÃ8÷.V|9@`´ö,Ý[)ëüþ¼¿OpABnnqAn¾b1ÍH2ÝÜ1z7#D(ðx'Ä V~XêuiT#ö")3[XF,4:HË! [*;j +2Öc2ç©îöÁÖÐæoP°át¨tF7JÙ;µ¶4Oî²�Øb%VgEª¿æ n@Ë7|úTå n@Oæ 1×K5»CWÇÞMKÖ¤fCfH�}0xQÔBChWÓ#o¦{=@ÃzXÇÚf(ÖnÈçÍðNp:Ó±öe}cí§Ü±ö;¼»c÷N¯õ_ðéXù¦ºôDl8¦Ð[B=¦gµwÕjxJ®&d ZKÈ +½)ùûXmWXB¯±^ Ã^Þ 'ôz¼:Î^!àì8®sªèº§CYg´ðª!Yñô«&ô«Tðy/¸á¢¼Ã\=J9 ¨Ï{ñcÚB¹Ê&vIÈF{CLÌìQÆ-V³>h9ÕÄ%» ¦ïÎÐ^zSz;§õ^zÜÞÊÍ8hrÆnñv3Úæ£uÅôýÔ*ZïmØÊå�r©jO(v(HAê(H§µ.`3Äè$Í �Ìö&L<W)Ìnýk)¢Ll¶Ôcb¾ÄDú°;<à&»BDPnJ&w.A¦IBÞP±=S#}^CQ\àt +d(zÉü+ª¸¨m¡(t|¬`5 O+©:Ì_^aÃW¨'c6ÍÓõXÞÖ³RÓdþÄ6&g.9±\1Þ3zmY^!oÐ \{ÛAEÜzqoÛ0ÈÃEÕâVIó¦ Hý¡@?ChÊýgÍâM/ {ä{ÓGyog8è¨F#M °èòà�BâËÑr)ï9Óöý +LC½ñV:F¼bS¬cÄ+4¥zBùY@ +¿iZÖjOð÷õY+ôÇ妦µGµÛXSÓ +ÕXh"8¤^n¡%×S0±7©§`oòæO³ÏïõúTTo,ð ×°`*zÓ¦ôÖ"@D´H$|ÎL`¢9¶$rCÈÚýÑâ½ù_sÖ·.ÛG®È5ÐuÇ:Æ5©ûsð¡ÌCÂQj¨Ëõ;Ó3|©cÌ>¾iï[ñDZÆè¬K[~æöTäA]Ú .Ôa=°t0Ày½{ô¶ûÈúùgðo:QÁõêGPq=<=Ï2 °±ä @HwëdÎæ{ i¼¬×Qî#uÆcBrÃß×ÎnP÷èR³t&·ñ©æÞ ¤YcoèGAñ®FAg*Ú®0"DGêÌ0oPåÄ<©¿OÀ¡ ª1½àBJ@f}½õáÍèü7à óKôýPuÿY²¦Åè AÌø +ô¹O ñ tÉ\>ñ©Ëîï<Y¤¡ÞH@¹¤Åu2«rC½ð¶21³Q ;0Tez"ê¸$ä83´fPMm0ûÅ¢a,z}¤K®Ù0 ô©)U³iƨ b.Û8¹Hô(ô×ÙÁ4?k.ϧÆL¤/ZÐD&çLÈó¡!Ê)pUÇ)hP56ò{Í(zcÕЧ ¤SCc¤ïçòoM ¯øk¶¸èk +]®7R¤¸¼g/7pGѼөalô¬òÉìØë@oÐK¦x64Fôlèã3z.1VczBø7 ¿¬ZtO°=ó%µ ¹ìPJLTcnM )NA\ GÇS@N~iåHipë/máÏë)t{.òç¬cMÎa »¼! +È<¶× `fxz©±Ðíq~ä¾²ÿ:= +Ò\ä¯0а}@OÃÜÂ#«Óbü³ÄļcºÂPÇÃ[Ç=¤IA¨cEIÀ:VØ{°ñð×KÔû¶lP:V :V¹Ä9.ñiýÝ%¾;t}éçöOÓLs¾ý>Çy]×5rå÷¯ëÁ8P2tCëÑ5~iØàïßgq¾©ôèôîèyùÀ½£'# Õ¸äóHW´û<Ò¨Þð~±;hòHX+¬q/íà=Nô¸ ÓTà\nNDï¨WQßÅâ©n?Å·À4Ñ P4£;Pznü|rëe <A=pGxþ@YKBëõ>ùPèÐHZîÏìPx8ûO3tâÀ JCù½Ñêô©eB4Ò7'A +ê=Ö3ä�½Åy¨CÍ"¨%/HÚîTÄBp*{0D¶)´&WÅÀ ×6<v(ÏÑØ!BÃï@Jütçd©Ö<éºyüVVAª(2ob¤?Lø4}:9{ÿ¤O§¶ågëûxúbwÌh÷9!!Dg| 2ÄR Oyò+£ýÜéºýd¨È»é³æ'\Ð4ÌË[DIâMfMxM®;Ðû`-H ïùg>èýÕÐãÞ úúh^¬Íô:G½seV§ÃªYIÍäÁ i¾1öÓÌ:³ÊVáâZeÞ©:çNõPéïG²kY±gô�©¨PèϬ¢@¤O;T wCâÉÞu]´�`×2ÐD Åz|Ñý| +°w;Ñ·åê±EB¼Cíõ_F·Ue6¥E +<4 ÙCKêÚCïå~?vö°1&¨Î¸Þk~ Ðw`I$Þ(íxã§(¿´â·%!ðòSÚûÏG¼üT;7 UqA Î)5̲OaA/'Ð_ï,®þHæWoê<-P?¯×¯p]á~_ .£'üåªHä£Añàê}pRÒÄWI Dª$ò3&ÎJQ JQp [û0Y»öëô6,D>ìIMdc^å¹@¬ÊôëR¹F C]»Â;бûÊ^.µ¡+<¢oÚ PÄBtÇðÁ §J?V rl ß]EÂ?°=bkÆã±�Ìùî~^ϸI¶ÉPÜ_ÑyÇw¬Ëõ¡Ð¥Òò¬Î°è`ãèT5Ä{Ù &"Ч +4T.U¤Z*¢ÈLDßEZ¾ö×(@9Ô(h.s +w°q06;rü»O6¶L×; +ôìè]ë«1b/2ø$áëFá ~u%.YmtCr ó3=PY,ê²éÐèR£SE + -Å� ðvgh'$·)= +ÏMáyz0Y5èÒéqMKxrXÒ¬ÚÊujYÃsÉBÐ`t«°1¨´8lÜn8ÅéØN1"c¢Ó§Úvºt\áyàÑÛÂÙYǤ¬mÂ]>µ ÷²9¯sl*çF½ÓñãÅãôVô`+R8o�e÷0Sèðà=®±õ+Ú@ÒZ+2p¯µZ¯g¦®Úïó^6�w-Àz5ïS5ß,м^ÍhEÀ3äÁzL9V¤:Æ41¦øPFRz1èS-dBâ+"p², ¹AE¬'·Ó}CÀ¦j&H�ÙË3ºÒ½ SÀ¡WHW,EúlIôÈ\N«u)Î\N +qMÐr¹zl=´%zfjFRÁw\u)KArÀi±C¤7©PȵÍÅÞÃz@Ú@(¹ø½°;Åß&±p [ç\´Kàë¢ÆõØ)-«èòLÕ9XF¹ B(2n$l@öéXR'$aguÀr2qdtä{ÑᬰFé^øÈûC.Ôq%N¬+vªÃ1ÅÐç·k>ë¢|sXpRÛ¬'¼ó7$½}ý-Þ·{6]ÇÅøc½O%y ¨£å6zCMõÍÙhIèÈ,Ô./u§ÄÚû1M=s}8&öêô¾éPêÈÌiòØdAþ~ý}ßçí`*$ôZ }k\ßÛÁdw~Ajò`ëýO ÷¬®äذwýÎáé Ça½ ;#& +`Õ2±E>;5ø9:þÁÒ$Þ�«á¿¯×ðoPÈÓâ{Bì¨Ú]`ðêi.O¶Ä2¨÷¬6|ŵ¤zÚpÖìå8©¨ÈݶáîäzÔ;7zf; µ£LTÑDznÃ<&â]�C½øõúóê½õû¯@Î]È+ÔC¦ãY`Yw�Àþ Óõ +~W|gXG)'Mñò}ìéu×;zÝuÖ¼:¯@wL®+ØÔo°ÀÐÛew58èϽ±�Ьgã"!t·LÙF)°@S¦S`EîH@WÍÒì-½¡©Óú{êÄýüï\½ÛökýÏ\©È2Ð1^Gh"'J¥ZKÃx7Íâ£!ESJϳÈ|8$v)e.Þ;> ë*ô§ÞDiý²a·^nÈS±G nÐp~UìPéñòÌèé´Æ¤·üö d¨Êeç=uÛ3kÔ&h ¥ÿ"\ÕõgÈú\£[¯ú#â%¥ÜÀÂ\êäô½§àÊt0µï¹¤ç èý+éû¶ñ¼î{HË% SàgÕ>Ú0Z2èyz«à +)¨| ý~ Ú·í§ïÛÎSØ[C�®h½¹àÔ¦/ï7pïµkEûÇD´Óúè½jpköÓø^ÔCÁº@&åµÞ¦Ój5Ä1N¬u1£ D Æ¥@§Jô ÇHÑïG`æLXf¬u0Úaúû ò°ìNö6¥ÉåE{®[Ùi(²½ÑÑs}oV½7êü¢ |ÕîðuýhÏö×ßöÏÚuJp¯Úÿ¶[7[䡺ëóG½ÐïhÖ}<´\pãDO } éwCò9· ÙÒÊMoXþRc¤Þ'ïÒt0Ê6Az©±Ý^? w_IK}þ@ PAli!Táä¬ 4í½X¿»F\ÖëCl=t%�Pä¸1£ùs vÉä¤@#eyÈC+ÜÎCÇó8mp&Jv|R5ºÃ7qÌeÂBoÆø +ô9ÇA ó;R$² =È�ÌPÚ×TUY$Y0 +*e2æáRµ ØCé¹Ç|²ª}?#A÷`èLp<×3Á +î¯�zß@etÊt[²÷|l ¨ +Ñd2@U©*å-&Tf¸X$ÓC9^õþ�rÌõæöj;ªªøÆDk¶>ücLÏ~±ï×ÈïUå¡"+Þ>º`Å(Xyëðò"¼À´È·q¡ÌÇ*Ã�FS'¨KôÒ}½¸&áK¼V¦¤í$¹(£@e +põqá» úïãøV/+È!0olOß®$£áïëlrÕßg,²:PÊÜDmê=]{6O«¿/ãõêÒÀììÊÁYÝ0Ë/ » ziͤ¹Õ¼¶ÙH&¬o>½'ZÞC +ZÞC +UCoÐ8hMcÏQt^xÌ7 ÷:I/<8ðfM_) »ÎÚÐ&HåÉw^ï`¥Âéw9À½TVvX\r>^ÙaqIl}EëÍî3¼A½:k7¨§\ÐÐØË=úý@\fó=/ã2ëuÝþò¾> o@NÊ·ê¢8è <¬¿z|y$CÙ9 Å@ 0MÍ&îõCÓÔ2Ô¡6PY$îÌé1y-cÓÔìé~ØÙÛ½'ålPu&²73æ LÖäV[äK¹�¨H#,täóÀa^U³â$, :m£7p.Nr59ëhh]¨®2 v$xX( z#²G[ ?éý9ý�½ýOAi�^+õ.ZUÕÃ�Us9Ê (W* (û³åA+nö¦ÊÍ@`=!¹Ð¸¬â¹.F=hG +v'uÞàïëõyØÔK*,íÀó]Ù(2µ¨>hQÌ!ãë+µP4_Ì8$ �Ìârë 4<RÞÞ<iÖ¢; g&¬¿&3V©Hð]\ ݽDÖz,¨ +C ° .øø áfÖðLB£ ¡q¼j;Ê<êUÛ´Ð\JCdä!"& {¥ò§5Ñr½JXX`2ocqE2.:}@wËÓ6@ÊÍ$@Ê-FÍ�:L{ùy¿O1º~Æ8§§$Ï«7§ûûÁ®Ã,Ðà è=¨,°¥ >P}Dfç è=¤fMè,B"£Ý ðîÓ§µ¾ZNëïO-´,ÀÐÓ/à¨tUB*Á@6mñf¼=6#êUevXö/èóì¯ÆÉêÃhOoh!=£{FRIjÇj(ÜÊãÚlÇ5ò]=¨ 3£¿8æ 9td¬GÀ1.ÕÝÓtzS+i¶B4 òÞ'c&Ö³ ±"{áí=¤$&¤0mþN\Eâ¼ 2±Ô7$Æ6`GçQw¨g»þ KÆ<U ñÅ9WèéÐ+)t)^P:u0êVê©MUÄ6ÖSC|P¼�½½yÂÆ\GèÖ1£2TqT)ÇTøc¡Xnús¡T¢r+bÙWì@ÎYx/öôlîõ¡&+Tå: ¡CiRÞ¤Ã[2Tß ?I%D7Mu¨ÜL\W³&Tè"(Zdç!mùá乸} 0N~ú@ 3¡ èÆ¬§Ò׿¡õ²Gk=¬®ÔSyÍ¥=@ ÐGÚZII½áÔAî£Íÿ8Kí° O Å2 Û0Ðr ë±×ëm'V¨]¸6|ú¬ KæéHH?}�%¤gæi$LEÇø°Ò+öã@y^ÎC= &Ö9K¸âCXé¡ÑµéY*÷ +½Fûã'²d" ÙVjìJUTæë"$doÊØ¶Ál¬Ê#Q'D=!»gÃÊq±ç,ö=·NûÃö¼@MH%´Gã3ß»©yò¯'Ðëå+¼B=¶â ȶ §£:wÈÓa!ÈWoºvJm=$ ]:½Ò»¤¾KH>°>%Y¡O)7÷í.[ÝëåǬY?6§z«û F&útë°K�*¡*¿mEçûtzxÞ;xïEMÄÖ?ÓŨ.+Ö$z¹ü¬ Ç|("`%\T +¬Ï¼Ú:ödÐÑà°gu[¥àp¾?wg-_çzî¨y¬;ª çþzÜÝÕ +UÏûGÝ]YsÔ }àÞOÑîO÷tÈèí5ÈM_h ·gÍ îíYQçwÉû!§¼þVµè+ß[t*?¯×Y-Ñù}:. !.h ```Âä�LÀ±a·wlXØç"¢+a³~ù>þ°ÐÍ´ªÜfºn�±ºV&UÚ`Ñû) }¼À,¿åXÎ(Î òÏæ¦3f((µgEWêw¯q!ɹP9P1 XÈÚ¸cþ%8 &àÝQØ«²RXEUD°B{¬`CN� +9PÇ4ÁT#§Þ�¬º¤B%[ +WÑ¥` Z:>M¯¾;RÄ>¬äg£R!꺴7huí!É)mæTÅ@îß±¾Q6E{Æ3"!èj <F]bos¬3lê4A øDz.VÂ.E ö\CRÄ(Ypp$3a-P +ôßúЧªõVâÑèL82¡e$GêT=À2JÁ¥@-ê +¥@ßÀ= PU Cï¦õ&ÅÐK'12`Xe&ɧè3[ú)C3{Nä ÌÔ°&4¯ÀITåùò-G4yïNzZ?Òô¼ùÉ$Y|ÿ +³N8¬»èO üZ>ØØ$«Ã#{±âP+^ö=|ëOz>lÌzRåe7)LBûõo¶L/køVÓWÌ¿éy¥tÙÓ;ó±ÙÓ0[V$ÞlzRÜ¥çèX1ꩱ+$¡^û¾!êæ°£è\hI�>2´uÑfåñ;Ìj3Ö £Hë O.è +5sö¹¾k2×°ÚsÄ1L «Rá-«òh±zþ@ rzW ç@ä«ýgHB¡[÷û{ÒOcr¾C4xA:Ô¹â;ô(}ÈDÛ0Ù W(/Щôü/ êy[ÏÊô|*)ú§Ë1£,X[¡9×û@MÙ�ôɽMÓ)ERèò:kBÀ³"qh¤wy] ô´Pè0lª%`S¤D¥}â´z;à@)t)u úSÂá?ÍHZ¨gkZzª>³}Ó¨5ì=2Ý; PmX.ùë9OÈ?°© 'XTÈvhôX5MÎ*2½ÌôÀ°MÐè ßdTâÄæ>Cé"ÄrbsÓ½sBÐb²ZÁ¨d44¹S Æ5hNTKÜivNéwú~c¢ÓyÞÀxwÉ&m£å<@ îÖ^ÿݯ¡v1yÃäÈú²Ü/Íè÷½v{¾BÙ§ïµ×il_/½¥ !t9B·JBÀRR³59o@OIÍP è¡yZ çy(0mkr½r»BLoÏ®«Àb5À1Ë£i÷öYrFÓ2[Ô!:ÏñtFlMe¦r¹AlM#ä°1ôh�ÑÄ È5Á èïj |ÈäNkghêÈ fMxå3ââ�À2ìÐ\²ßwÛC:,È>¬ôÞYs)yá34\FUÂeð^cCYØ¢y,Ì»+"äoóºeèÓêSÊ'äDã°J¯xMÐ -ÃЧ&ôö)¸R ÑËEËQ.zZ¯w\ïÝ/ ¸VH�jP è�åEHÇæg´OÀqEÍQEøB|Þ »á ÈÈ@#¾lvï ¶Ñ + C «!¡Ïðë§õ ¾Å8}IVÄ=q:D8ÊE=qPÌ¢#¢múÌ¡^mÈMöØä OpA§ïgâq°¢õz +[Ö~÷vç8ÐðÁÖGRè*b¡ÆÛÐ"ãg¶7CêUóÖ2ÌB¦wöÑù�zöQG(G)hoæ3gAª$B¼B +r1ËÙzÉ÷å:<5=S½ä{T{sÉÑ;Ì }LøbH°¬IåË5©nÌDzÙ~VD?²wØ=ªqÿâä[`JAÊzgsHãkè#£Úá%êdÜ8¯×yg,GzÙ½¥{ ¼ ])»_1êɨ¼C½ì*ÃÈIY]eÊ@VÍpÔn`Ыíí%G½ÚR # +¤`�d =�²j¿ÏAVx~½¹äE@oÎ]B±4æ=k\d!Þ^«£\6IÒ¾pO µìCtÝêÒ:<t'ÀÎ|¨±ÝÓß(«(Ån"ä _^¡Ô5ÔOö(²¨YÓ|=6ÇqçÏAÃãKÝ41 Xw $`Ý0¾El=¾¹£X¯÷>À±^8ØE]æò®ê*z î AÚ³9GOÐùg F¨I@XÊYH-n1Mç,Ï|¶È°s¢d&:ÀÚ´º3ž¯;¿~@®4LG©åùö\Ö&àh-¢@�);ûë£x +ÚËWôçt<<^ ëråãQ§A²|TôûlÊ]a yÃ1,Ü"Ö FùTèËáïãco6[U?ÀòA c'ÄÄºÉ þ¾Ö&í÷9Ò ?tB% GVV0>¼ÿÏ´J%³Âó˽?rÃvP.2ÜQGØ»Z{Ò$â¢Ã°^Zlϸ'°õ6i{®×å³ÕuÏýÎeOb{Ï⺮éµY÷±~¿Dx !Ó7�xèJ�ûÀ>P!eØàôG³TU2gÓ�íüíÑ@¯,0oh>7r}z«n9@/yïîÐìöUü¾<æzýý¾5tÀhCHB½â<ié èîÈò.×c Ðs~ëõóG]©2?~wÇrÌJ"s&Þ[»nÉryÄörë³�óG [Òàþm¬ f! Cxø µê¾l@/°j˳áïëp$s_À¢^�Vãöæêªq^Ù$%HïÅW-¬ßào@׺Hß?£\o>(iÝk5Êz#-@·öÒxöGÙñ}2Áà\ÈÝ¡@÷¢ÙrúìZ)ÒR5=Ä¢r´4<¯×ÓêqôÁ3Òä,ñÒi\ÞhÚxÿMR +lx÷ìPËÝêkwÇF'UXû¬#³¨X£qÍó7WUX£rQó0& +L|èÛD@Ïóõð�¢P +,+¢>ÖÊ[®;ѽ¼å?aå-®?Á?�¥@/íINh8,D£EÙ)ÔCòÔÖg>©·øR@:�ì^\q\%|àÈåÜ1/ëïMØ ´óz½1«!íûT,sä(¿ì^O9R.ëïDÑïúLúJçlnoö\/@êö×âO ºÜ>0¿çG]6 äàÙú @ÿý£íǼûúý3fMί¸Ù!ξzùr7HÂÀs1ä¡�>tH$ç*1í¹÷kû!Wyrñi.)FYÂHg8¡ zOXÊ©¨Vãj2C.ÖË*²¦( "Y¬<þd]¡MSÄb¦8P ÕðôGçy y²&LÊÜÀèõz¼WÖ£ÝW=ô{³w2þ{«ìÚ8F|"\(¬ÁR¨u$í8Bªy´^ïaìRê(OëÍRø3:Hm©'ZÀ*cüBD<,+QÜ+cÞRìL }òC#»e aC&ÀÅ$0Ó ޡlÍ+ÔC°&l ++tt*¢ÆºJbÄ1R-,à³1åî-#uÀcÛ½0ÆÞ¬Ó#¤PôÝPé¬Bw$ÐN±®ð�ròQÇXý¨õ ý +÷ÀªÁÄÖ$Üõ)Æ8m¢¢�LÜ4@Pë0q×dbÔ OË¢\߬Õéìê¬õûNfÈZÇZÑÈZ;Ñ-¯N+Ad^ÿ&d½ü~d}¤g «s +°�Õ±^ÖÉc�J��4±@ºë@Ä +)(`#¶~ÖxÀëÀ4| ±ºWèä°ÖÁ.h6GÒ;�o)¨÷°Z!jz>Í`k¥×kzê`3ÀE[Ýf¬RãàiÛ ßÞc=!U¬»cÖ$~@H*²1¯l|Û@ûnEoµ½MùÅé M²±Þ¡\ÕD¼ý¼Cý + &´H¡5ÑQÞð¨I£ü:º;±*Ò§®ð +dʺ {ThÙ¥*ªÌ}:Ù§*Ð?êS¬Êäà¾@Mh½áïë eI9£YøQG»ÜNë}½ õ|jìSé=¨HÞÂm а̣öÔ6°JL@aÖ2±.D8°Ô hÅ2ë t¹BÚèNÙè¬ :æ:D7i±ÏÅÝRÚqoôùZPÍè Æ@ië¡èf( ºHB\°·ª; Í«J 0¥AÕ£Ö¬B¯0Ðû«ÒÀ,Lí÷é¨#ÝZtÇ0a1Òsa!F¼Z\m]±SZäJá*ÇÇßwÛw]2öê¸Cåo=âLo¢'Ø1QNi ®A]àÂ6ÁèROçÅ@Þª>©P'ÙL¬ïFסtdßË#Äv¨ý.GyTùÚ@ +ÔÛßmÁÛ¡X´~#+KÀ9¯¿7Hù6g[´dð÷õÉÁÃýßcm'N¸f-ùÇî¤ýé&|þûþû˨¾þóuÓÏÿúÇÓÙ¯øÖ»ÄZÞ+væËÙoâÛ>Úeýûo,iá<)b¾ØµßÄ.²z½×O7`Ö¿=T\~ÿ&¾éc^ÑþûKÅù3*¯-;ÞH_>p;¿:½;n¼¯ ´Ü³Â¨zcÿ]§${l¼ì�ĵ×#4Hù~JÄ,ñ®"fLDðXA>`EþHDÆý½ÅãDº( íÇ*&¢0Ø>°¡¬@Këí +¥yÂD8cáý±ï@H¡±`FÀæCãåûÂHKvì`ÅGv`ÀG�H#¶ +i4Á «Kpì`¸� +sàtÃb£3®Ë½ÿÊÅ.Èj½¿<yjÒ CFB*íê½ü=¿ÿÍÊí£¦;hp!c÷àXrÁJUÖʹ`&Û ^b0ÌHDËJ®uóÞ¿|óNØðÇææ½?×Lì´ @»gðL°@FBD$Ò¸æÒ¸B>@Òµróµ2û�´LZ?°!"fÝ:ïÅ¢uÆG(Ä.IÊÇViÂÄoû�Tiw7)þwùÀL¡ôÏ62a*E¶LXêîÓ#`wÿ.Lª(ô*>x* ï@¸Æwðß_½èÒ@è-àx! 3ÖÊ:ìêÊæ½,"�Aoa´[`¶Ñ&_}Û ûeêµ+£®n¯]ñ +;Bôo±?J^ªìêöA£áï4þ×,¾ØÝ×ÃÿJÜ}ÙѬå!Õ%½P`µ~7®ô2ç±0õaaÂZYgBÄ3Ò±·XÛÍ2ô*ËtqV*=ÂeA7mc(wÓÆ©a¥ºÉ¬ÜR¬mÝ:7âlËÖ¹p^¶ÎÍj=ëÌöR·÷uw_û¥ø0 òQuQ$ :UÖê&ðâ¡÷ sNë¡>ÃlhþÑå÷eI44ô¼ ">¿ößæÑó[ÌìâÉ¥^> +4¡,R"»\þ0aOd#ÈjÊw]H ó1ÛàE̱gÂ"½FB½käOd[8XE"ÒʯQF2{ã't r¢ô76Oð76¬Nta>¼¹/ÊÓ}�³ì\ÙhyA¥±.¬Òô®æ¦WÌü DN³æ^"n|QªB±½±A»¦?öX£Dì3|"$,ÎBò}�óþ,°s ×1åë¡8ëñb¯õ/ú QiÌs¢~ذ ð \cÅZYv0z#¯¸qyc»ø²eÊ3¾¡=ÒDgfìæéD\°Ráà>p!n\/OdB¸ÁèíCY o+¶Î:K´²à`3ÝÝ?³ò ½¹¬ö X9ëSÚ0ªÒJÆ4ÕzJ5 ÖKÁ +EöÒ +QªúÃDŬ,Çý½Úm4ð-P©F®±AqÖÓGÊü0è*X©ø�*Uè¡øE§q¶åd®²Â 0=PÉ4 :qà +Eðt_Ù±Îü +Ó ð@ IF0zw5Ï´Ñ@¥y"Ã~ý}É»F÷}ÉceÆîïKoçëÐ(»u?Òõ÷ßßN ïñ^lrÊÖßNÇ×Óo ÍC¦Ë÷mPYªþ6xûi¿. _O¯>ò1Ïë´28²ì·A?epû0éÐÿHºñèOÌò~Ø�îÿH¹Ù&V¿üð¸¸æäþ+âß�zÙ +Zã?j÷ç%×_øOÖßûmÄFznýð2ë=þã©ýt�} ¿/x£ç¬xþoúO~Kv®òK\#ý�® ¬óéGÐB¨+NÖg¤ÿu7ÖºÝÇÏ`Ú@.<´¿:TY¡þÒ¦òù}¬?å@Ʋÿ�ç ³&`ü'ö{ûÍ~¼§°£ýë f®ÅíÿÏFùö¹¾ÿå·¿üæ¯Óôã·ÿøË먯u?ö&ùÇ¿üöO/ÊÖ¼½¾Ö^BóÛøñþû¿üøã~÷ûþßÿå¿ù«¿þñ¯ÿþ/ÿð÷ûøñ?ÿß¿ù»_ÿðÇ?þøûÿô»¿ÿýñãïþðûÿõûÿõÇþñO¿þú¯ùßüùÏþøõþðÿüû_ó÷/>úÇÿÿü~ó¯ÿ±¯ûø§_ÿôÇ¿øñÛÿýËýíkwÿìÿè¢ +endstream +endobj +209 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 797 0 R +/Name /Im200 +/Width 13 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`0`þÀSÀ�ñ�27 ;{Ãÿ�åße +endstream +endobj +210 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 798 0 R +/Name /Im201 +/Width 16 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÏðá2>@@æÈÞüü ÿ?��> +endstream +endobj +211 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 799 0 R +/Name /Im202 +/Width 33 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=Ρ 0@Ñ_JRCR$ª0Hc!»À"FadÜRóôs'p0(=lÊ®¬ñi¸S°`{þY*±Ð0*¾â +9/ð| +endstream +endobj +212 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 800 0 R +/Name /Im203 +/Width 28 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÿÿÿ ûì +ì + @ì�Ãü + @ÌÀÏÀåp`¸käÿ?`�� ôì +endstream +endobj +213 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 801 0 R +/Name /Im204 +/Width 29 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmʱ À0ÀGN B$¥d4Âî,¥LqÝéÀ #y iÇÇ)(¤Üààñ³X¢hn uuë+åBÍØÀ!j +endstream +endobj +214 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 802 0 R +/Name /Im205 +/Width 28 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUɱ À DÑ\Ðs¸`¨²£x&b +èô¤;yVðBX¶W#ù~zÐ0`+¾?ÇM¶ÀàBitjD)8ò¼ð®3 H +endstream +endobj +215 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 803 0 R +/Name /Im206 +/Width 30 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãÿÿá{ÃÆ�qW0>`°@Ã6 ù�W á þ�4å3`o`n`C>~ .`øÿÿ��V # +endstream +endobj +216 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 804 0 R +/Name /Im207 +/Width 28 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿAþ<{3 +¶a`Á+8°â`\�Æ +`lÁà�Ä 2||�ÔÀ +endstream +endobj +217 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 805 0 R +/Name /Im208 +/Width 28 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmñ @Ñi±´ pK +GaJ;o4FaFðL´ó%ßgbØ(6SMsBóÐ&ÈÏÇ®>oÿ/Cy'¬:°0²â¤Â7OiF +endstream +endobj +218 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 806 0 R +/Name /Im209 +/Width 28 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-ñ @Ñ¡°0Á NFp�cÒNF¦´ï<HÀ¦³®½³ø«ãdwXÆ4h/ÁaW<ñô¬ XZ¹ëtº, +endstream +endobj +219 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 807 0 R +/Name /Im210 +/Width 38 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÁÀþáÿ=ü @BN¨CF9Ñ#ùù?`ì bû ±�N�Ì`¢Á¹¡A¡á3ûÿ�8ºT +endstream +endobj +220 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 808 0 R +/Name /Im211 +/Width 29 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-ÃÁ 0@Ñ+Ô è(Å!£uÞ4´yð¾ëäQK«±íl'b^ íî¡$¤hÜÀc__ýéþ¨¾ +endstream +endobj +221 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 809 0 R +/Name /Im212 +/Width 16 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc? a ãÀãÀ÷ÿÿöììü|@( Øy%ìÿÕÿûÿ�l¨ +endstream +endobj +222 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 810 0 R +/Name /Im213 +/Width 21 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨?Àxð�3óvæ|XÐÿÿØÅñ úó?�¹ëï +endstream +endobj +223 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 811 0 R +/Name /Im214 +/Width 4 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKøð!<�1òA +endstream +endobj +224 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 812 0 R +/Name /Im215 +/Width 32 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÇþÿ æ?Àü(üÿ?«ÿCí�§æ9 +endstream +endobj +225 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 813 0 R +/Name /Im216 +/Width 19 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÃÀÏÎ ÃÜ`Ãx ü�£ÿÿü`` +J°aHc8ÀÏÜÀø� +endstream +endobj +226 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 814 0 R +/Name /Im217 +/Width 24 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏþã?ûy"ã~Æìmÿü�nµ +endstream +endobj +227 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 815 0 R +/Name /Im218 +/Width 17 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûgÇðÏA®¿äÙäð¡ÿ@�MN# +endstream +endobj +228 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 816 0 R +/Name /Im219 +/Width 10 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°B9dPòxàÿÿ��.g +endstream +endobj +229 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 817 0 R +/Name /Im220 +/Width 14 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x¿aP ñ�?0üo¨PÿAþû2dÈ<øapþ��BÅ> +endstream +endobj +230 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 818 0 R +/Name /Im221 +/Width 14 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcf`Cv äBû?ÿÿÈ3`@äç`Áü�ÎÛ +endstream +endobj +231 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 819 0 R +/Name /Im222 +/Width 17 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÃÀÇÇ #Ï`#ÏPD|?ÐQ16Ø06È03ÿ`��I +endstream +endobj +232 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 820 0 R +/Name /Im223 +/Width 27 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xEÍÁ � CÑÁÕ¥£U\ÄMbj>¹Ô;5ªÁÒü¦.Â_#É&O婤Æë�¨¼2 +endstream +endobj +233 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 821 0 R +/Name /Im224 +/Width 21 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃÀÏÞ ÃxÀñAà úÁð AÄ +ä�3þa��Ñ_ +endstream +endobj +234 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 822 0 R +/Name /Im225 +/Width 6 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ø`Pf�\² Á +endstream +endobj +235 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 823 0 R +/Name /Im226 +/Width 20 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿ¡ ÿï û +Æ>Pý``øÇÀðÿCý?ûÿ@ÔÀÿÿ�;ÿùã èÁ .ƼÿÏÐü�)+ +endstream +endobj +236 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 824 0 R +/Name /Im227 +/Width 21 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãÿÁ #Ç`Çß`ÇDdØ0�QýöçäÙØ°¨a?ð*¸Ø ÿàø�çùM +endstream +endobj +237 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 825 0 R +/Name /Im228 +/Width 11 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏðAdøÿÁÿ�ÖÄ +endstream +endobj +238 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 826 0 R +/Name /Im229 +/Width 33 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=Ì¡ 0@Ñß\Be-8Va&�¡:²# +åZÌ/Ý&m)ã<-.0`=öbF.&$*&â?¸ÍVxDYX26]é;¢¢kABÅøÂ;! +endstream +endobj +239 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 827 0 R +/Name /Im230 +/Width 22 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûüÏÿãäð77°g`~ÇÀøñÕ00üc`¼ÏÀ<¿¿ý�óÿì�åv +endstream +endobj +240 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 828 0 R +/Name /Im231 +/Width 23 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûoßðÿáùòò5ò6òvÈ,URvð¼=<:úÿ��V�{ +endstream +endobj +241 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 829 0 R +/Name /Im232 +/Width 24 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏà¿áyò ?@�úÿü?�¨D# +endstream +endobj +242 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 830 0 R +/Name /Im233 +/Width 23 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcàÿÀ�D8ãÏüìd?Ø0~¨�£"T�TÆÏÿùç?�É & +endstream +endobj +243 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 831 0 R +/Name /Im234 +/Width 32 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÃA À @Ñ\º u¥)Ø&iÝÏ^ò¼Gwæ!§Ø±ÄtóbeyØLs7MÃ42L.SÙ¼YY^ÌÄÈ@ù{öõ?"H +endstream +endobj +244 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 832 0 R +/Name /Im235 +/Width 10 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãaaxÃÀþ?��4 +endstream +endobj +245 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 833 0 R +/Name /Im236 +/Width 28 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃÿÿÿøÈ7ð�Av~djìøÿÿc°AbÌ ø&é?�²ãÿÿ?�,d3e +endstream +endobj +246 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 834 0 R +/Name /Im237 +/Width 24 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿ?þ$!fb#6þ|üäøÔýÿÿ�" +endstream +endobj +247 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 835 0 R +/Name /Im238 +/Width 26 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨g`<¸±ùñvæÃø6ð1`ÀÿÿÿU\ßþ�0_ß +endstream +endobj +248 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 836 0 R +/Name /Im239 +/Width 21 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcno`9ÀrÁåç ²`#æJ`gxÀÎp±½¯¯dÃ�gD +endstream +endobj +249 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 837 0 R +/Name /Im240 +/Width 16 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x±QsrkwgïcëcàB(´Â�n + +endstream +endobj +250 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 838 0 R +/Name /Im241 +/Width 17 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÁÀÌÃÀÇÆ ÃÌ ÁÌ`ÀÌPÀÜ�DØ d$0ð70��C£ +endstream +endobj +251 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 839 0 R +/Name /Im242 +/Width 15 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xaÓãócócëcêcB0ä0�A þ�_JF +endstream +endobj +252 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 840 0 R +/Name /Im243 +/Width 15 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÁÎÂÃ"ÁdÁbÀRÀQÿá&°$p$ð7��¯0 + +endstream +endobj +253 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 841 0 R +/Name /Im244 +/Width 27 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°o``xð¹ÁAe,v sCó.``<ðñ>RSÒ2dÈLÙ ;@v1�í� +endstream +endobj +254 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 842 0 R +/Name /Im245 +/Width 13 +/Height 12 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãàPPp�0ذáÇ +�Tð +endstream +endobj +255 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 843 0 R +/Name /Im246 +/Width 13 +/Height 12 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKHøðáÇ0��wP +endstream +endobj +256 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 844 0 R +/Name /Im247 +/Width 14 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿçÿþ¤Áÿ@=�ùU +endstream +endobj +257 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 845 0 R +/Name /Im248 +/Width 11 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc8ÀøñÃÀþHðàÃì�D×j +endstream +endobj +258 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 846 0 R +/Name /Im249 +/Width 12 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xgH8ð¡àAC&0`<ÀØÀÄÀÂÀ! Pÿàÿ�ìÈ +endstream +endobj +259 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 847 0 R +/Name /Im250 +/Width 23 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏÀðAbþBääùäeä-ä+äÿ0Èïcgç¢yv òþ?ÿD�Bl +endstream +endobj +260 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 848 0 R +/Name /Im251 +/Width 21 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþðOÞÂßÂÝ ½,Øløäd?00@ý : ÿÿüÿ?>0T@PCAÃ9æìÿ�É_Î +endstream +endobj +261 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 849 0 R +/Name /Im252 +/Width 29 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°ÀÀø¡ù<;Å|ÀùA3Pÿ00þÀAj@êA¤×ýÈ, ³A¦0�í� ò'n +endstream +endobj +262 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 850 0 R +/Name /Im253 +/Width 5 +/Height 12 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKøð#C@@Á¡�ÌÉ +endstream +endobj +263 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 851 0 R +/Name /Im254 +/Width 16 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÏPÁP� ñ�27@ ;òA¡Ãÿ�ÉJ ü +endstream +endobj +264 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 852 0 R +/Name /Im255 +/Width 18 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³°cð9ÌàËÜàÇÜ0¹asY°3@CÉ�QÃv�d¨Ï +endstream +endobj +265 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 853 0 R +/Name /Im256 +/Width 14 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÀÆÁÃÁ##!!Ã Ï ÿû +È3��Â Û +endstream +endobj +266 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 854 0 R +/Name /Im257 +/Width 17 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xalÐcnð£>v #>2i _þ6�× Ë +endstream +endobj +267 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 855 0 R +/Name /Im258 +/Width 16 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc|Ì.ÎÃ/ÁoÁgÀW�d Ð* gÉñ��¹¤Î +endstream +endobj +268 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 856 0 R +/Name /Im259 +/Width 15 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÁÌÂÇ"Ã'!cÀP�%#AÀ ¿�Î » +endstream +endobj +269 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 857 0 R +/Name /Im260 +/Width 11 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcf`C>(üÿ@- °� +4<hxÈð! (�¹ê +D +endstream +endobj +270 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 858 0 R +/Name /Im261 +/Width 5 +/Height 4 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x3¨ø��lù +endstream +endobj +271 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 859 0 R +/Name /Im262 +/Width 8 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x¨!þ�WH +endstream +endobj +272 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 860 0 R +/Name /Im263 +/Width 17 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÁÀ`ý`°a°ác°ÀþÙ7��%q +endstream +endobj +273 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 861 0 R +/Name /Im264 +/Width 9 +/Height 2 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßð¿�þÿ +endstream +endobj +274 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 862 0 R +/Name /Im265 +/Width 16 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûgo###À§ÀîÀ~¹ñ�Ó6êrÏ +endstream +endobj +275 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 863 0 R +/Name /Im266 +/Width 16 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÁ`í,,,,,,ìX>°x`ñÁ¢ÂÂÆÂæ_=�ós ] +endstream +endobj +276 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 864 0 R +/Name /Im267 +/Width 22 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÃÀÌÌÀÇx@áCAEÄL" J z . ^?�SÓÿ +endstream +endobj +277 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 865 0 R +/Name /Im268 +/Width 18 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÃÀÞÄÀÇÎ DL2ôÿ?Xª?�� wL +endstream +endobj +278 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 866 0 R +/Name /Im269 +/Width 22 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû÷¯Æ,ldld|äüøÎ9ðµ;°·7°333#� +V + +endstream +endobj +279 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 867 0 R +/Name /Im270 +/Width 11 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xgHlp8Ðp 0603°1ð0(((Ôø�� +endstream +endobj +280 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 868 0 R +/Name /Im271 +/Width 20 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ%È0(È0@ñ0Èÿtôÿ��£è © +endstream +endobj +281 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 593 0 R >> /XObject << /Im200 209 0 R /Im201 210 0 R /Im202 211 0 R /Im203 212 0 R /Im204 213 0 R /Im205 214 0 R /Im206 215 0 R /Im207 216 0 R /Im208 217 0 R /Im203 212 0 R /Im201 210 0 R /Im205 214 0 R /Im202 211 0 R /Im209 218 0 R /Im202 211 0 R /Im206 215 0 R /Im210 219 0 R /Im205 214 0 R /Im203 212 0 R /Im201 210 0 R /Im211 220 0 R /Im209 218 0 R /Im203 212 0 R /Im201 210 0 R /Im205 214 0 R /Im202 211 0 R /Im272 283 0 R /Im141 148 0 R /Im142 149 0 R /Im273 284 0 R /Im274 285 0 R /Im275 286 0 R /Im154 161 0 R /Im155 162 0 R /Im275 286 0 R /Im276 287 0 R /Im148 155 0 R /Im149 156 0 R /Im148 155 0 R /Im275 286 0 R /Im158 165 0 R /Im150 157 0 R /Im145 152 0 R /Im151 158 0 R /Im152 159 0 R /Im147 154 0 R /Im153 160 0 R /Im154 161 0 R /Im155 162 0 R /Im156 163 0 R /Im157 164 0 R /Im148 155 0 R /Im158 165 0 R /Im155 162 0 R /Im109 116 0 R /Im115 122 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im113 120 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im107 114 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im102 109 0 R /Im111 118 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im104 111 0 R /Im93 100 0 R /Im114 121 0 R /Im114 121 0 R /Im96 103 0 R /Im100 107 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im107 114 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im124 131 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im244 253 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im100 107 0 R /Im93 100 0 R /Im74 81 0 R /Im127 134 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im96 103 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im99 106 0 R /Im117 124 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im113 120 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im106 113 0 R /Im96 103 0 R /Im116 123 0 R /Im103 110 0 R /Im98 105 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im98 105 0 R /Im97 104 0 R /Im101 108 0 R /Im113 120 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im103 110 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im101 108 0 R /Im117 124 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im128 135 0 R /Im129 136 0 R /Im130 137 0 R /Im131 138 0 R /Im132 139 0 R /Im133 140 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im100 107 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im94 101 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im117 124 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im97 104 0 R /Im100 107 0 R /Im123 130 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im140 147 0 R /Im103 110 0 R /Im98 105 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im111 118 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im123 130 0 R /Im106 113 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im74 81 0 R /Im277 288 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im101 108 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im126 133 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im123 130 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im105 112 0 R /Im99 106 0 R /Im101 108 0 R /Im124 131 0 R /Im96 103 0 R /Im106 113 0 R /Im74 81 0 R /Im247 256 0 R /Im221 230 0 R /Im216 225 0 R /Im218 227 0 R /Im227 236 0 R /Im221 230 0 R /Im219 228 0 R /Im278 289 0 R /Im216 225 0 R /Im279 290 0 R /Im216 225 0 R /Im216 225 0 R /Im231 240 0 R /Im216 225 0 R /Im232 241 0 R /Im219 228 0 R /Im232 241 0 R /Im251 260 0 R /Im225 234 0 R /Im119 126 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im93 100 0 R /Im115 122 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im108 115 0 R /Im100 107 0 R /Im100 107 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im102 109 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im99 106 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im107 114 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im113 120 0 R /Im123 130 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im99 106 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im103 110 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im108 115 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im115 122 0 R /Im108 115 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im102 109 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im100 107 0 R /Im98 105 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im96 103 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im96 103 0 R /Im140 147 0 R /Im103 110 0 R /Im98 105 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im123 130 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im111 118 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im102 109 0 R /Im93 100 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im96 103 0 R /Im101 108 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im99 106 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im107 114 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im96 103 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im99 106 0 R /Im116 123 0 R /Im126 133 0 R /Im96 103 0 R /Im106 113 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im95 102 0 R /Im99 106 0 R /Im102 109 0 R /Im123 130 0 R /Im101 108 0 R /Im98 105 0 R /Im117 124 0 R /Im94 101 0 R /Im98 105 0 R /Im116 123 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im100 107 0 R /Im123 130 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im98 105 0 R /Im238 247 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im114 121 0 R /Im111 118 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im99 106 0 R /Im106 113 0 R /Im106 113 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im280 291 0 R /Im260 269 0 R /Im241 250 0 R /Im239 248 0 R /Im239 248 0 R /Im281 292 0 R /Im255 264 0 R /Im282 293 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im113 120 0 R /Im123 130 0 R /Im94 101 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im93 100 0 R /Im100 107 0 R /Im108 115 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im107 114 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im98 105 0 R /Im97 104 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im123 130 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im111 118 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im102 109 0 R /Im93 100 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im96 103 0 R /Im100 107 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im96 103 0 R /Im126 133 0 R /Im103 110 0 R /Im96 103 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im74 81 0 R /Im283 294 0 R /Im224 233 0 R /Im278 289 0 R /Im216 225 0 R /Im252 261 0 R /Im218 227 0 R /Im233 242 0 R /Im216 225 0 R /Im218 227 0 R /Im219 228 0 R /Im232 241 0 R /Im251 260 0 R /Im225 234 0 R /Im109 116 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im101 108 0 R /Im105 112 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im140 147 0 R /Im103 110 0 R /Im98 105 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im93 100 0 R /Im115 122 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im116 123 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im74 81 0 R /Im119 126 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im115 122 0 R /Im102 109 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im95 102 0 R /Im98 105 0 R /Im93 100 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im111 118 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im100 107 0 R /Im123 130 0 R /Im93 100 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im100 107 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im74 81 0 R /Im109 116 0 R /Im117 124 0 R /Im93 100 0 R /Im93 100 0 R /Im106 113 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im106 113 0 R /Im106 113 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im121 128 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im97 104 0 R /Im114 121 0 R /Im104 111 0 R /Im98 105 0 R /Im103 110 0 R /Im104 111 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im284 295 0 R /Im285 296 0 R /Im239 248 0 R /Im258 267 0 R /Im255 264 0 R /Im286 297 0 R /Im287 298 0 R /Im243 252 0 R /Im285 296 0 R /Im260 269 0 R /Im288 299 0 R /Im74 81 0 R /Im289 300 0 R /Im218 227 0 R /Im227 236 0 R /Im232 241 0 R /Im220 229 0 R /Im231 240 0 R /Im224 233 0 R /Im220 229 0 R /Im219 228 0 R /Im221 230 0 R /Im219 228 0 R /Im224 233 0 R /Im232 241 0 R /Im289 300 0 R /Im227 236 0 R /Im290 301 0 R /Im228 237 0 R /Im216 225 0 R /Im220 229 0 R /Im225 234 0 R /Im122 129 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im98 105 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im113 120 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im99 106 0 R /Im101 108 0 R /Im124 131 0 R /Im93 100 0 R /Im115 122 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im113 120 0 R /Im123 130 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im98 105 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im102 109 0 R /Im93 100 0 R /Im105 112 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im134 141 0 R /Im108 115 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im123 130 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im118 125 0 R /Im99 106 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im106 113 0 R /Im98 105 0 R /Im238 247 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im121 128 0 R /Im108 115 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im120 127 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im108 115 0 R /Im111 118 0 R /Im100 107 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im238 247 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im74 81 0 R /Im291 302 0 R /Im99 106 0 R /Im102 109 0 R /Im97 104 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im135 142 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im128 135 0 R /Im292 303 0 R /Im98 105 0 R /Im94 101 0 R /Im293 304 0 R /Im294 305 0 R /Im133 140 0 R /Im117 124 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im139 146 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im119 126 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im93 100 0 R /Im115 122 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im98 105 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im95 102 0 R /Im98 105 0 R /Im106 113 0 R /Im108 115 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im107 114 0 R /Im98 105 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im107 114 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im115 122 0 R /Im108 115 0 R /Im100 107 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im93 100 0 R /Im112 119 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im292 303 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im117 124 0 R /Im103 110 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im114 121 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im291 302 0 R /Im99 106 0 R /Im102 109 0 R /Im97 104 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im135 142 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im113 120 0 R /Im102 109 0 R /Im98 105 0 R /Im106 113 0 R /Im117 124 0 R /Im96 103 0 R /Im107 114 0 R /Im113 120 0 R /Im108 115 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im115 122 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im96 103 0 R /Im105 112 0 R /Im111 118 0 R /Im97 104 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im100 107 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im97 104 0 R /Im93 100 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im113 120 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im74 81 0 R /Im295 306 0 R /Im224 233 0 R /Im218 227 0 R /Im296 307 0 R /Im227 236 0 R /Im218 227 0 R /Im233 242 0 R /Im297 308 0 R /Im218 227 0 R /Im217 226 0 R /Im232 241 0 R /Im219 228 0 R /Im232 241 0 R /Im251 260 0 R /Im225 234 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im108 115 0 R /Im100 107 0 R /Im100 107 0 R /Im112 119 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im98 105 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im112 119 0 R /Im101 108 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im116 123 0 R /Im103 110 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im114 121 0 R /Im99 106 0 R /Im102 109 0 R /Im106 113 0 R /Im112 119 0 R /Im111 118 0 R /Im102 109 0 R /Im108 115 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im106 113 0 R /Im115 122 0 R /Im102 109 0 R /Im93 100 0 R /Im105 112 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im113 120 0 R /Im101 108 0 R /Im96 103 0 R /Im102 109 0 R /Im95 102 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im105 112 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im101 108 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im99 106 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im111 118 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im115 122 0 R /Im97 104 0 R /Im114 121 0 R /Im93 100 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im102 109 0 R /Im93 100 0 R /Im114 121 0 R /Im113 120 0 R /Im123 130 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im96 103 0 R /Im102 109 0 R /Im106 113 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im111 118 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im114 121 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im93 100 0 R /Im114 121 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im111 118 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im108 115 0 R /Im100 107 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im107 114 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im102 109 0 R /Im96 103 0 R /Im103 110 0 R /Im108 115 0 R /Im102 109 0 R /Im101 108 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im102 109 0 R /Im93 100 0 R /Im108 115 0 R /Im117 124 0 R /Im104 111 0 R /Im93 100 0 R /Im108 115 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im107 114 0 R /Im96 103 0 R /Im238 247 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im245 254 0 R /Im113 120 0 R /Im99 106 0 R /Im106 113 0 R /Im246 255 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im108 115 0 R /Im101 108 0 R /Im99 106 0 R /Im106 113 0 R /Im106 113 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im298 309 0 R /Im258 267 0 R /Im286 297 0 R /Im299 310 0 R /Im281 292 0 R /Im255 264 0 R /Im243 252 0 R /Im101 108 0 R /Im74 81 0 R /Im244 253 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im106 113 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im115 122 0 R /Im99 106 0 R /Im95 102 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im98 105 0 R /Im238 247 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im101 108 0 R /Im107 114 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im291 302 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im92 99 0 R /Im108 115 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im244 253 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im100 107 0 R /Im93 100 0 R /Im128 135 0 R /Im160 167 0 R /Im108 115 0 R /Im102 109 0 R /Im293 304 0 R /Im132 139 0 R /Im133 140 0 R /Im74 81 0 R /Im226 235 0 R /Im216 225 0 R /Im227 236 0 R /Im218 227 0 R /Im222 231 0 R /Im300 311 0 R /Im223 232 0 R /Im230 239 0 R /Im221 230 0 R /Im216 225 0 R /Im232 241 0 R /Im220 229 0 R /Im219 228 0 R /Im224 233 0 R /Im232 241 0 R /Im220 229 0 R /Im225 234 0 R /Im125 132 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im112 119 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im118 125 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im124 131 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im120 127 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im106 113 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im112 119 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im118 125 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im126 133 0 R /Im112 119 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im120 127 0 R /Im124 131 0 R /Im94 101 0 R /Im93 100 0 R /Im114 121 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im117 124 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im113 120 0 R /Im96 103 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im103 110 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im74 81 0 R /Im135 142 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im93 100 0 R /Im99 106 0 R /Im106 113 0 R /Im106 113 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im298 309 0 R /Im258 267 0 R /Im286 297 0 R /Im299 310 0 R /Im281 292 0 R /Im255 264 0 R /Im243 252 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im74 81 0 R /Im234 243 0 R /Im217 226 0 R /Im228 237 0 R /Im228 237 0 R /Im301 312 0 R /Im302 313 0 R /Im219 228 0 R /Im232 241 0 R /Im233 242 0 R /Im224 233 0 R /Im296 307 0 R /Im226 235 0 R /Im216 225 0 R /Im227 236 0 R /Im218 227 0 R /Im222 231 0 R /Im300 311 0 R /Im216 225 0 R /Im220 229 0 R /Im225 234 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im99 106 0 R /Im102 109 0 R /Im102 109 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im114 121 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im93 100 0 R /Im114 121 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im140 147 0 R /Im103 110 0 R /Im98 105 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im101 108 0 R /Im74 81 0 R /Im277 288 0 R /Im108 115 0 R /Im100 107 0 R /Im100 107 0 R /Im112 119 0 R /Im114 121 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im93 100 0 R /Im114 121 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im118 125 0 R /Im303 314 0 R /Im304 315 0 R /Im199 206 0 R /Im305 316 0 R /Im306 317 0 R /Im120 127 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im113 120 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im106 113 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im117 124 0 R /Im93 100 0 R /Im93 100 0 R /Im106 113 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im140 147 0 R /Im103 110 0 R /Im98 105 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im107 114 0 R /Im96 103 0 R /Im238 247 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im111 118 0 R /Im102 109 0 R /Im108 115 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im100 107 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im105 112 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im238 247 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im101 108 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im245 254 0 R /Im113 120 0 R /Im99 106 0 R /Im106 113 0 R /Im246 255 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im108 115 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im298 309 0 R /Im258 267 0 R /Im286 297 0 R /Im299 310 0 R /Im281 292 0 R /Im255 264 0 R /Im243 252 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im74 81 0 R /Im141 148 0 R /Im142 149 0 R /Im307 318 0 R /Im308 319 0 R /Im145 152 0 R /Im275 286 0 R /Im276 287 0 R /Im147 154 0 R /Im309 320 0 R /Im150 157 0 R /Im310 321 0 R /Im145 152 0 R /Im275 286 0 R /Im150 157 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im113 120 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im108 115 0 R /Im103 110 0 R /Im96 103 0 R /Im107 114 0 R /Im97 104 0 R /Im93 100 0 R /Im101 108 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im74 81 0 R /Im127 134 0 R /Im93 100 0 R /Im114 121 0 R /Im112 119 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im102 109 0 R /Im93 100 0 R /Im114 121 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im100 107 0 R /Im123 130 0 R /Im100 107 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im97 104 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im114 121 0 R /Im106 113 0 R /Im96 103 0 R /Im96 103 0 R /Im111 118 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im107 114 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im99 106 0 R /Im113 120 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im74 81 0 R /Im136 143 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im105 112 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im111 118 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im123 130 0 R /Im101 108 0 R /Im93 100 0 R /Im108 115 0 R /Im102 109 0 R /Im103 110 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im74 81 0 R /Im137 144 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im106 113 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im101 108 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im108 115 0 R /Im102 109 0 R /Im94 101 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im99 106 0 R /Im106 113 0 R /Im106 113 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im104 111 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im139 146 0 R /Im93 100 0 R /Im94 101 0 R /Im128 135 0 R /Im311 322 0 R /Im135 142 0 R /Im160 167 0 R /Im312 323 0 R /Im293 304 0 R /Im131 138 0 R /Im133 140 0 R /Im107 114 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im99 106 0 R /Im106 113 0 R /Im106 113 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im124 131 0 R /Im94 101 0 R /Im93 100 0 R /Im114 121 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im117 124 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im99 106 0 R /Im101 108 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im101 108 0 R /Im74 81 0 R /Im313 324 0 R /Im314 325 0 R /Im174 181 0 R /Im176 183 0 R /Im176 183 0 R /Im169 176 0 R /Im168 175 0 R /Im263 272 0 R /Im171 178 0 R /Im269 278 0 R /Im168 175 0 R /Im315 326 0 R /Im314 325 0 R /Im184 191 0 R /Im314 325 0 R /Im192 199 0 R /Im190 197 0 R /Im316 327 0 R /Im186 193 0 R /Im317 328 0 R /Im169 176 0 R /Im263 272 0 R /Im176 183 0 R /Im169 176 0 R /Im172 179 0 R /Im171 178 0 R /Im167 174 0 R /Im268 277 0 R /Im265 274 0 R /Im166 173 0 R /Im192 199 0 R /Im264 273 0 R /Im192 199 0 R /Im166 173 0 R /Im179 186 0 R /Im169 176 0 R /Im263 272 0 R /Im168 175 0 R /Im166 173 0 R /Im176 183 0 R /Im167 174 0 R /Im185 192 0 R /Im263 272 0 R /Im166 173 0 R /Im168 175 0 R /Im177 184 0 R /Im171 178 0 R /Im163 170 0 R /Im166 173 0 R /Im185 192 0 R /Im176 183 0 R /Im163 170 0 R /Im164 171 0 R /Im180 187 0 R /Im179 186 0 R /Im174 181 0 R /Im166 173 0 R /Im180 187 0 R /Im166 173 0 R /Im163 170 0 R /Im169 176 0 R /Im176 183 0 R /Im175 182 0 R /Im166 173 0 R /Im168 175 0 R /Im169 176 0 R /Im264 273 0 R /Im268 277 0 R /Im167 174 0 R /Im168 175 0 R /Im169 176 0 R /Im180 187 0 R /Im164 171 0 R /Im163 170 0 R /Im164 171 0 R /Im180 187 0 R /Im176 183 0 R /Im265 274 0 R /Im176 183 0 R /Im174 181 0 R /Im183 190 0 R /Im171 178 0 R /Im167 174 0 R /Im164 171 0 R /Im169 176 0 R /Im263 272 0 R /Im180 187 0 R /Im182 189 0 R /Im168 175 0 R /Im164 171 0 R /Im163 170 0 R /Im183 190 0 R /Im176 183 0 R /Im174 181 0 R /Im179 186 0 R /Im263 272 0 R /Im176 183 0 R /Im264 273 0 R /Im175 182 0 R /Im166 173 0 R /Im169 176 0 R /Im176 183 0 R /Im269 278 0 R /Im164 171 0 R /Im169 176 0 R /Im263 272 0 R /Im163 170 0 R /Im182 189 0 R /Im174 181 0 R /Im174 181 0 R /Im264 273 0 R /Im269 278 0 R /Im164 171 0 R /Im163 170 0 R /Im192 199 0 R /Im171 178 0 R /Im269 278 0 R /Im168 175 0 R /Im166 173 0 R /Im176 183 0 R /Im167 174 0 R /Im185 192 0 R /Im263 272 0 R /Im166 173 0 R /Im168 175 0 R /Im176 183 0 R /Im163 170 0 R /Im192 199 0 R /Im169 176 0 R /Im167 174 0 R /Im176 183 0 R /Im163 170 0 R /Im168 175 0 R /Im179 186 0 R /Im171 178 0 R /Im168 175 0 R /Im164 171 0 R /Im169 176 0 R /Im164 171 0 R /Im171 178 0 R /Im163 170 0 R /Im169 176 0 R /Im176 183 0 R /Im175 182 0 R /Im174 181 0 R /Im166 173 0 R /Im168 175 0 R /Im74 81 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 282 0 R +>> +endobj +282 0 obj +<< +/Length 869 0 R +/Filter /FlateDecode +>> +stream +x¥KíJç÷W!ÈR¼ô`A1ÁÀ¨aO »n¨êgamü{¶rË)éóåÒäÚ¹ç^Åðp_á±ÂÿôÛûõO¿¥_ÿúÛ?ýV>R~ Ã`ÿ?¦×ßLùc믩¦eýÕ~ûÝþS~ýçÿø¿ý·Ã÷s¥ïçé#×ïÓùûécÁß_ü>¿ÿßðýó/×ïñüýú7ihmx0¯j¯¿þҿЮÈàµ/û¾/aTDð¹¼|Ôñ:I^Bi¸YÝTY.»àiQj¬5rк¬iL÷ñs^D,ò¦E«Hó¨)Òâ`Az.`àíÂKç´]ð)§úLræ]�Eb<ÈyüÈù²$hâ6@aEºè+"B+ÚS®Ë3cÊO *ÓV!¶¨<]¨m</a¿µaù6T/"Hÿ÷÷ïß3-øýå÷ÛÇPé÷çò1Õó÷yºìátùýù#}Kå-Ó�p,åÓ^?¿%�Lñ<ÀüQ?ϵHí2ö18<â�¶ +Ëà2Àu¶ê\�Ñ�P/c>JÆ!Õ¸S«6Wá"Åú1̤ÊiÚù´\Øf0£ÚåXyÙ<q!]N0¨ËËò1äë.p0ÌhëÁFK¸àAþÑrÂ*øhçm|ïBÎià5з£ËöóC{ÎE´çòQNï±·"½ )¯.æø9ìBå]¸Ñ3¦õ\ɳ <Í\!³ +ì^l^æ¸|?YÓÕ»(ãÅIüüþm §ïÓå÷óÅÞ5øýå²×¯ùrQáó\o«ïÏ«3<kÐ{õ/¾¿ ÷}hËeû½ù§¡â.@ä? ´«üÝ$Òë®Hº- ÑÔËyøuÙýü~^>æô¥\Ø&ßtÀEÿ]Rà +RaÀÙÂ[�8oÁ6ʸìg¯cK2BwÆAÚwc£¤ËQæN`hðýùr`ßÓ8ÈÎøûº*4£ë(âÀàEüp®¸0à�),Eõ #â +Xr)ñê=Râ'QyraOà²åx¥ qndE�¤´Øqìõ·ík-¶° §Ù&írÖÁùV0|ÔOoм±ò1/_+�ÃY»W-típB((shV3G³fà ®{Ï(¯ß͸rßîgfX|vè�ï{2¬¦�2%C¥<À÷�ìÒCãYÀJU7O³ÒxåóøuáVÏcg#Ï@B¢Ê¸h`ìÎ�²ÀÝ®LË#¯ª ¡WåhÁn¥®ob`�@à<«ìÇTgþ'µv@0¼=¨ìUÉ®y-ìZË×ÃZø¯Pe·®V¡ñ¹înY×-@0ÓÁ°"ÉãQ\õåIk#Â9Î +&>à%÷ü~f0à ÕBòL.Ïx¢7LâÊCÉ$EK[ãmAK,AYZ.®G-k$· SV¡×Ã�É`Wiùù{of§ïeaNø½àؾ7ÀLèô½|.ÛÝððýuÿ]ª{ÑÄçTËO^2ê ÀA" êÁÎ÷Eà Pµ¼ÛeÊïxñuKþñvéÀ®&·7¡Ì7¡Òôûeªº3Ùº ¡æ�]MP£�ü o�Fk\CÃ(pÙÖö@?LÓÌPg·|®[Ò¾oá8õ2÷Íc!5Öß<òÀ+hç;Jä' »õÁY°Æ\ìðeÛë{.}ÿ¼°4Dã¬3mµX¾\æ[ ß ×°6E¼g£ÜJåg£n¾ d|Ð2,ÅãÌUbôéô»iÐ#ÐL§x²ãÓÉ>i^pº +.h:Û;N?À³Ã´8N¡Nó%Ñ'sùê4?ò«KO¦Ó(¦£åËxVPf® +âLOÇ¥P +ºtäÑÝlÃchHî³Ý¬º¢Ý=´Û¡G³Ý/×ðVMµ ¸lû[ ÓEDRætr§ºï^ïW®[ ³�B:ï³f®�²Èo¸<oÁ È]-»Àm £²?(Õþ`ýA£áÑFìNÕ½ù ©¢?èJpR=zG f>ôÅ`�w¢Cxh6<¿ß:NF O "¿ãòÔ a@¦iã °ö=êcÍ! udÕ 8êõ²/bºõvø£;éDOo <|xmÛ²CN?/;"Kyüù+zïKùÓ[AdË¿/û/·W\?ǽ®ïü{1d;ÏÚ@ùN@!Ûyþã÷ð*IÐý¾h;àòÃFlT@¾Î¤$úß³ èÕM� n$ý1ôûçê4¢ + +·û~Á è[`Lw L<9ú)+À6%¨'vì8Ú~¾ºXHnq@I<0ëÑÄ 8nÌÖMÊT `E{Hzg\v³àI¢°;ÿÐȳÔù®za#ûÃi�!UÕ ø0Ãi÷W¾CäÈpEÄ#ùñ4<2 9óPõÄDO +Xgf¼° +þüÆ îHxË áGô(ub¤$í0u¹ÅG pÎúEtqðúû×âËg=²U�Y7ð[®wëñt(SkѺ§ rNÞDؾβ¯Taç + +EO\Øâ8ogÉAE~0/ÓZr=ß«¢G¯<˳=¼wµtíhA=Z'xï$}]r` èç ³Î +fzD<Þ!hÁ]:u@Üü̯¯E<LügcÌw¿»�ï=2ý¡§©ô³¦F®�G6©x¹½îÎ¥þÐÁ®âÝÔ}fX] ë}ÌHögkqKÏHÖ²¬-?¤YâXÀÈòy<k+yV£Ù[»G³;qø^gYgúydµ<Ýãçr¼Â²=²´Ò;E~? +/@±EÏÒÏÒú];áïê¶(�0@ZJv'zf¨%gv):®@'íRtü^/,ÛI&¢éë3ª¹h¤C[¨?Ô'ÒÅË~Z®¶~áAÁ2}|ÇT¨ìL`! a¢4 ¸äØ@VMx +jé$ìâsé¹Jà¨ÒòŲ%W gÊgcwz@æ³äM"/TÍM¿túBº,A]FÍò9nNÒOÓ³ Fï9ÕÓb÷¹la% +ðìê°C¿ÆÒ¿ yºçÐN£HÙ.|ï±ô7}ú=þ¦ÁÅ=b¡död(-yÑSBw]*ù@/E s+ÅRý¤¡C ¿x1¹2"ë:h¹7/VeBVë õׯ5^q'\ùϸrèLq<JáR`yRýä×$à²kx·wùIçn¬¯ kþËOW[ϧÏRòi;¡ð' è±øX®Q«i ä +^(û3v¢N*;á Âfè½6ÖãÀq�==wçÈß¿ÜDy<d «ªÍ0";CmP"`vn¦úJÐzqä¢KîG²ãJ$wÜ1ùbÚHPy Ê+Çþ6ÚKPf%0ý wtÀJÎ>¨ùÇ7`æù=»Qu~Þß ´æ{¼Äαæ/óÉâT¬¡íϲÓ&¸²w¶À;Gðir᯽àL_:,yo�¿¼ylÐÝsEßËñ{½ÞúÐ"J0ÞµCû'õúâÆ³wD裣t�ôªnÝ¥yxG(ÒÏPx©@(¼T,dÈJf4·=X' G¡&Ì}¦Á\¬C¡@¤[)D TôFôCýùÍwFï)»E ÇãO~W's`¹úØL~ÂRýÁj¾ïT½v>M.¸uÃÂï\/×®K{×ÏÈV|ׯSôý§K½)áñû,ìÀÑ'>~MP¾FâÓ÷Ðqé!½9ÅøûײUÞúqýù³ËÖ÷ï·Úi�:ÀeÀÞ3è8À$ãï ½->*wgÝZg�3Kî+3¹µ½®-ä6ÀÀüå Aa¾Æ£»3°Ì þο,øwáÐî*EoôÉÁ(Î |¦É¾7oÊ×6zé¢H_åÚólLR÷±w[ZBºÊÀOs$E +dª]» ½J8½¢èBZ !å!-úÞª9'³@üEÚz¦T@¾"ïeo]�Ñ,°[_ÓÞtÓÓâéi�hÙ=ÓÓ�rVCnt(êt}n¨DrVC6(L6tnËf¨ÃP�ºL³fÝ,ÇÓêy¦3I RuA,§ëA¨¦H3Ð ÓbéI§Ã¼�LSÄR¤)¼b¬zÓLH <oIröæÐ3D¿ù(¿#è�Gtͽ±~!d¹ØÚöOt§¥ß8jñ%ðغbeeèeeËDZ¨~Ø[Ýô©öLÍøÈ§<|YÛBW� +Pß�¼ä¾ 6 S¬aCaK(�ýûüì$©V¬wøYw'`ßkU·kÑMn`¹éÐí,}ÎY@SM åÙ½XzI|éaT#ßLå[ÁæyóZS' ÄüEìè6Ta ñãêå,ùn® U AÁËy $ñA&oAKÏØ5Mô5tGFÐGWã¦ú£n=ÁMÃÍ¢É2|xMÔwyÀ|ïR³Ga÷ +ï©C·2³3<C·0°+iJ0t*¼»,v§z Òb({5MSÅß×3íJ1ü\ÙOTUÀùýqyöûQ ÅKººa<3í_àí:-{+Küy%;|¯×®ÙÛ³ ×®É$a>@åeÒ#0 +*Q Á;O@'I+N@fFv·cEÝ4Á»[ØÇurj_èè+Àñ¡�G ÜßHvÒÈ/åçH _O7Àé¸4ãüõ 7P©Yféò âB$ù`Ñè¶ÛéÙKM%´¡@{ù"Ðåæ2ý~À!/ Ò@éZLOsF¼CÆqù¡¤ 7H. ½ ¹Yix'¡Îk^»ÖBý¡dBCd¢C·LB ,`Vg¥úVB½åÒ¢^)~là{Þl$[Ðåx»î(·DÉÈO®;É{÷8¯Y¿9½æø,1½ÔXâªÐá+N"FrMÛQ ѱ=ºÚVô u¬2ÊùÎ]J=M¯Öº +ͦB>Ë+ª+Ò@gù¯Æ²WÛ $kÒØd%èg:>ôa¤åF¯t[îÜÀFò¶å^¯´®¾×7zçô½Þb˵=~ÉôKï¨ôÓåôP:Á·£ìm;ÿÔ ÞMOßëa¨ ~?¥ÐÚ-:.�K²+´@Ó¡$ÙüQKën_Ìn¼¹#© à¥È¯%(¢Wt\HzÌ@H#E°úEò:¤8@p"EN!ßËú)v";BH%»²<ÓÔ ÎJa WICêo 1D>Gò(Oqk&ä +`B3öó¬ä^4*@ =ÖÛÉäz0?ûòm +æ2K|¤÷=Ú \Ôue¨×åizQ×((êZ +Z±|)E[¬¢ê}FE]Ëî ÷.Ê$%ö«ài8ê>28Î ìÇ|~Y;ÈÜ,¬Ã^37ëwjA'v@ÒÊ*zð¿"Ð+peôÇõ>Y6CgzÛcÒût0é}:ªèO»hÚô»JìJ�ý1Ý+âXÀ¥{ß=zZó] ΨräÅ� §" ? Ñ£v;¥MÅ1Ö¶Ðo¨® n!>æÖKåW?uðÇÍnøV*»ä ݱ�,o~½Í?ײt£·(îã÷7¦´}& ¸cöýBßëÑ_g¶ì;åLý^!4?~' «´ +\v ÒÛ<êÎ\j¸�àÞBçNß_@Ä�ö:ÈÖ�Ö6w*Aúô, "Á u(ÐP{$à÷*iú ë<[R_W½^#}ðèÝQÂQ^%0·Àf3Ö#H3íAD$ÕÝ© íE~© í(ð{ÜVB~·ì9 h)ÞÐto$ D8î)If@U{ÞéÐ{þÌè\ëQöÂpïúVèAð<Ð9ÊíP'Y·þw¡lç8ïBz¸ eVè¡e~®¼Ëx_>)2{²»ÍBát1}¥D0¡¬liU·µp¡Ìáy§¶àÊóúq¸¬ zý2½^Ébne§¥Ë4£WH´Pröý¤~$É4·Î£Õ®.Eѱ×)ªÂn¥\µ¢ZFù4µGÂhɲñy¦?0^Ìà-qúÌ ùÍNÚåÆoBZ)×À÷Ë@SmÔ@Smü}é4|gþ^Ó¾áËuôTFB½Ý@s¼º@ÇÍ%rC³|½ó¨Röä¶7Öñã8¨lÁÓ±¼³D{$ìÔ)ôî·`�Óg1dS·Ö¾7åÙìfÐ_n&H°ÛY+ÓÓ¬ÚÂiTAÍ)yalët·óÉ©|ÝÞ¦'ÈYid-;²¦ßiz@õDZ¤°Xgçî\ N$A¿äO@o2kvè¾ú,lz_a èi±;j"ð _Þò!ñèl#bY »u¦ã$ð_ð÷õhÈ2Jì ³¦GV+áX µ¢üá¬(?=µáYæ,`Ô"mßÙiç£Hg§öƬ]E×ý¾ÎEC¿áïA ¯sEÀ}ób{ÐîöuF$ôuð0 ôu~#%i0â~µð¹böeÂç{¸<ae3Ðùò@Dî� cv\J="]J=$v"wD¿Øìdóí-oßNlõi�=°}ÂÀ³Ó: CÕ³kïwϵ0ïÚðc`*;Í6W}s©mo~à0<ÂyÆíjZhzÙD"Ì4ï[ùÐ9Fz}°h!|Ö¶}Ýa ³ìÕT#Y4Á+ù +Ì}%Ì8u»WNóÔ7çÙkïò<Ö`ú.YÝÛ<ÏNßãÊ]e4ÓËjÖͺ= ½Óg²g¹ÖvàÐ¥K®N¯Ü ßOdÕ±sB{ÞåûÕ{÷~e±c´ùEÆnò£UÂlMô½Äø¿Ëlëµq3N P· Ñ÷:ÉdñdcúY}®VÛA?0v9&/2vÂd´þÀ=ð#kGm®c~@¯þ1¢èJ4b§»Vdß±Á/¿üÓ8Za 6xf+Ðß\Ä¡@å*IÀ'Z\ÌPX}ßÓôÖ´IKT&M ](ãïëDc& ®°>8yá8ê°âUK;¸[uÞÛ*Ðx:ÓØ&í0í/è±WÞE/^ÐÑB¿x�/@/1=#êf° ëïþ¾ÄÅÁ1½:-ãy?ðY,'lȼn<½:qµ]ÌköÌèúD) 0]I²½¡Ë ËøÌ¥/ìÍÉ.}Ù!/¥ ݱ@éñ,ôÀ èÙ «°¬9Än(ÜðL¬6nï÷ýÒ¸£2Q]æ¹cÖB?$7@®CUÚP ûjáRoL¯Ý ¢û=£ÞA¯1èNÀ1¹åÉÚ¾ì}+ü>Àb^àc¥§Rýþy/;x¥ùß0<~/¿}*Ù¾éûIî`WÊã÷׸þñ"¿µúPÞO5ÇøbüÒb}Î3ÔvyexG2N´EÏ[ϸéæ,!ã&\?êIÞï]©ðà±hâ%XæúI] צõí$Y ò½bn³ }TÔã5ô _NÓ·ÚÀ6AV¬s#©ràf¹×ö¬¥Ò:*GBZ§TYaIóVìµ·bXÒ¨¯ºt·:-4ÀÝúu5Ô$è3!EúG ¨òÙôP0ãú+и?ì0P´ÒôÂ|yëpZ^o'<I@¯.ÙT%ò&°HðPáPáïëñ ª °~û~¦¼Æ¸@¯J§WòLaIÉ6 Fb qô@4Ç|KÛwYEÙУ¨2YAàrVЫ @~e$Le«|ɯ¦¥!ëÛÔ8ÂôèÈ¡lÅ>{PäÓdCä.`%Æý}«ÚSBfÞ!MÊ¢ tªzÁÓH^Àú~ZÎQÚqìòtèÒEx:"½D)ºX ï¥Jì,�0õì ¡®Dê2Ñ©0m<Ë�nÝbªàÐ Eìo7�¢^)wÂóðâS¸\ß?¹¾Ã÷W®~ÿ3ɶt¥iüHDT½Õ":Æ~(#k¡Ü9~¥¾¤R$^QÍ/õ{Hiw;wþx½ÖßÞ[AÇ^Å´Ì÷|³#e2 Ê?7s).»ä{øöÄùÜé¡å2T-{mÐ̪/& 7Lys)óÍVt©"ð£1Qr@ó9»Ý¦Õ®ùfâ,¾#É´Ày3QòÛqI`Ê,m¡LÉ8 ×0¥$6R øL1M ÐÌ0Pb0R qØrvóÏýý`H ÎÒ1êYÛ ¦DÖ³¶3±r\è(°|UnÞüiz,¤EµßÅÑÜd+ö¨bM ]%bÕCíý½cDî:8¨ÔΤűkî¡O5?;ÉöNRÌÿ}<Éô.B®_ÏN#«¨AQÍ + wãÛK¤öQÀ)iìÌmÊ]$·©Y!÷± !ê +ØÈ·Ò5ë];˽hN>Ë.:à®`zºôçôæ aLçÉgf\A½6%ÞK#µ)Û÷B£yµ©Oód ªìÉéI;ÍÜAòëZºyÔÓÏEr]~¯lÝ tqAÚI$(T@9å÷VàjqÃÃT/+»S^8%ßìåZ\;E{*ãCq$ÐÈI»ú«¶>ÃÊ; ãÐm~âH Uæ È8´S¬7q¨e4"võ®[ºzêuvKWOÓÏÎ?@ÓðIÚÖ4<NàZZÓ¯.:à +ó#@�Ú9ÖÓô><' ·Ñ±ÔüfT¸2¥%-ö)Ú h f{Â{o]%hofFî÷ó(m+ %¨¿u,¼¡Lï¥4<3£$í7h~/&A ,ÂRÒ½J¶×tì²,GâeÊñ°´%hO÷°¡!ëTû: Sí#NµO(@½¶¦å%Ü¢=÷ä2ÖgXDtª%xÑ�Ï#ÚYÎGäg|ó +d¹ Kèq# ø0Ñ Ù¥Ò +¡¾ÊH¬·¢jzÎù¨)áO,¥æÖ_ùÏ.F¹yÖ;Q!ä +CrQÄb N³"ÓÔÊ<¿)¢ãÅk4+ �Ç·¬q`ò[>I¦®yÖÓS¥TcI¶nyÎ3!E§\fÐ>©J£i·mô©Â3ШÂoi¿u9J�NDNÝú¾§¤W'm¸Ò÷ù¢^Âè¿Í¥ ø¤8FZ¾l %í¾ÃÈmGCê«E1¡À-椷bw nÒnÂ\£A¯38Võ;Ï�ÜRgáÞ+Äj@Ùç^Þ1êáU<;ZiÉÜ%4"X>¾ X¤ZÃo¡àäüµi5m#ø*o^»ªì&oOãgòöy�HÞæB» ñ +íú]£ Ó¸"j.d +h¤lQFz÷aY�1ûÜÇ¢=$þ&@ ¢/g2@u¿LvéZM:¸e¿~ÉܲTz*ä·a¡%KÕ·tDÂ@cº<G:¨Â:Ñ3ÒD¹Lä×Dú¨§«#Qr^R¸=Æ'`D Á®ÃVY¯¯Ã^â3ï` XËϨ ¨®Rpõ@(¢âTü}9À +ëwP@CÕ +G\®Â"`´I5AG&íw×wË@@å ×.À»%b³¶~(]ÎÙ¦xµÄS)ð¼^«Üdôdô,¯áJAèbnOá\ã)¨:ÅTÑô0D¡@8aCÕà "áx)NèÒ}ùB£2éá³ãn0Þl0Òza<Î,òQÎÙm{ºÒQÇv'*ñX~¸l|'¡ÔbÁîAÃ+áX°»JÔáÇuÈ[ÀAQ; çýÖ%}/g¯¡`'Á©Ù¸Þ¹ÃòN·s?_·Â÷ñfí5wW°u¿9@γKvv:Ö»Ñx¦B]pæ_´pUhj¾B-k*ÔksÝU?m$àªÐÈ:¨gënµ®{[èáô\Õ·P&ÙìjzfC +P§öujo@êÔ£ Ní!E éÌ\Ñäç×tDùé5®_'ö*?l]Û#¶´Û +Ü +ÜPºÛ}¤£ÀÞ{ùʬ®ïåÇï¯ïå×2Õo?jͳ½Ê?9ø'# +XYW ü®% ¸Ü.b`ÚpõrO@vŬ(ämWÌÚÜu&¦cw~â¸P-þe©sý¹ß7Eóü46]ª&7Ù¸ÙêÍdã1Hì¥Ê²/£÷ Xåì2iÎ:Ñ`vSr^]ê,Ùö¶â6¥m{׬$ãm3¨x- ãËl:='"+ÁY=2`eLoÞR5péÅH*{TVñ®GUÙ#Ó9~ı�Ç?×r¿¢z)õ:C³ È>ù꫽j}bÃYÀ8¬ììüîñ,ÔCvÚ êÇ!;-=#6;tjbz5ÅóTSÄ{u¸³õ xùÒkhðÊK¯å>JùR!6f&ÜÛÛq·<vW×u8mk§;z/Õ·ÞípìRÐépï§ +Oô}ßMÒïûünèò»Æwº³û½µqýúE£ tWo¤Á®4ÿH¦ô¨gJOíÙf¶�=Sz&dJϤBLéuPçFÚ@礼%ÅôöÀ'h³´�à´°¿Ã[nâ¸}¯¡_Hï8+ÂX IU@OoxÉfeê¯ÞµÂ=zµg~1C< åKmxú�³¨DnsãXÞÞß¼8@¢·¥´Óð=_ø~õëòùû\ô<[ö§t×ñ§é]-:q¬]Ä£HH.Pì ² +èìX%,Dà6` �_×�»ëíé ùÜA;Y±Þ»Éñt#Õ³ÀëY£ù´~5CúýHcßAÛ?#ýbºÖ3|iiò4·Ø/'¨Þ+<Í @±¢é$uaP~óÜ`ûfàh^Í"z룱X~¬©èTé]«s9CêDZbÌux®.6uÆß×ß ÍwË"I>¥q¤lÆRNÕ£LtQub$e¸1ɧYËt9 \.×(Ú'JÔʳÛñNÞ<Íì¹q¼Ù¿ÌÖÔnydݲñ^ÿ2kZs^@¸iÍy�á±@îñfÿ²%íл¥²=W¾{OâtÙòÚz{àr\[ùÓäêÄ+OúIõ?w£BSÞ«®è¾ pÑú¡À�%¶ÈÃ÷ÇvN´ÛcÕñ{è7îîïÛcUç÷Ý È8ÿ�Ñè{ÁØÊ eWéË£/òÅÔj& Ãh]i`£ßÀhc%MãIÏTiÚ@`{ò5ÀµXȵ`ʶSMÌQfÔ"ý¹gF%ä\ë«ï-�Ü á�ú,[øÔqàNmÁ¬½ôàǤ ÿµ` É!ûºÎïgí÷ýÖK¢!ú¯³~<;AqÀ%ÏE;K¼;Võ4*D×y.¹»öj{@ ¦)êþdç`©®£vø¯d'·éÙyIuÌôûÐZ?ÅaÄ^[ÇÚ;=N@/H9º³§íRq W)±gÍna±äÄú5QUt8+uÐtÈmѬÐ]AcébïÆ7¯0P/}Ê@½ç¨F¬¿×MÚúÝùÏù¦ X4<zÙª=¾çLt_{nåaTØf:íVñ}@có6hl.;¤Ð!´G4@sg<ôz!åïáø'è¨ +¸áämÐRÿI<IÜ-9ýÉ@Été#OT~È{*Â0PðĬ¸s-u0#A¦/�T¯4°äK:è¾sè o±Ë /öصàv1v^j£ä#êù80&«Ð2½5¨Ô{´×[9xe0jè8Dvü8³øø½5±ã ?ùï,wwN5d;~¯×ê((�¹çþÎÔ_o v¬=|Ãã +ôþq¢{ÜV|§ÉK¹2âèVdGñizNÈD"l!3<M´ÀSÑ( ?ͤĺ?V!áFòi²¼¦£ +Q¢¼Wñåfbý ɯ+Ñ£$3ÇËq÷NÏÙËqÐWPC^Ñ< t¨xë5S*ÎïV<tzÝ©PCÑUaßKbïÁÏÑ£Ê!qTæg÷ª1½¸[°¨þ £KSuÀáWíJs÷,Þ«¾ÜT¢i_M¨:¿Ðu~5«'GÑãüu~µ +Å)úÛ)½u:¨|§{hZß3aÅ®¹cî>Ò¢©Ã¨ÃzMí%¨.ægþXï^«åW=Rcg ÄkÖÜÝÃ:Ða -´ãN¹üdâ¹=RÞKÚºüäĹÇOz ¤6c½jPA©ZY "ú è AãÐqÓ9±ô=ø!|/Ø £Ùñ8Ô`Ұܯ#ï¡7è¸H·ûÀ[ñô=%pYêHvëÛ@[»XsB,viêf¤×A4RzhgYo^ö\»Þ eíZ1¦}ü¯ ÈwK;_¸GñÙq| @ñ¿×)>ÓÁÎï»çÇïuÏ®UÇïõY[¿;á<~/¿xïeo + mìuoN$m¤¤WÕ®´°5þÓ)? 4¡ÝbÁÛ¸oÁ½Xðu@lÉ4ó: Áà¡0{OüÒ9ùÌ8å$Ú:gÁ{±ä{éÓô0Ø6áFmôÓd.'Öé½ê=�oB ]´dwe ×/*hrMÙ=ýdæ4@$7QnxÊ}çòÈJ g7í\õM(عêøÍ#Ñõ"ýE² Ëqz8÷°].OJ|ÙB/E²X°Ã�ɪäÔød¹¬ÓQd7nN¶g ÜßG¯.@¶M \}:9G²XâÁ¥ +äHîTuE~¢ªi ºtw¨ê¾?Ñáªã'QÍ"¸2µÃÔ¡ró¾@n©NjEP å(¨ê8u[H¹íÁM¿¶"êÖ +íïËUúùÅïÄ.^!}:t½éH+8ÑÍa0<±Í7íhè»Õ'²¸'AWF¶d½×Ä3 ¹µ]¶¸'Ã.[ÜÀc{½°p¾èÿ»("köôÖ9Tý2ç!vÛpv=s§~Nzv7ÚéæÞÝÈ¥-Íð¦z¦hc¿N ±Å¯¸EVÚyzü^æHÖ*é +tü^¯²n +ð§C×;XXvo�?,»Ð¸4ë}Áµ4«ßGSÝCë³Óð´@¡ó& ?¾&£HNÐâ¯íhO×K8¸v¾¼»NKdg# ØmÇéi:cmÇig]%t%Ù.Jèö"]Xå·ÓÌP¦·h +I³}xõ2×¶0ÂGr\Aíå È.U.l:]\Itº¸V Iüê!2yt/y¤\¼e½w7ÑûO½Îf$?]åíX/W?wÌxë�yÁ èÑåëÎuhDzW¼W¹!Áw`2±@1Û�[Ëa�z¿.Xãé3¾þÎVÝ=TÀv¾Ï">mxúþÚ{hú¨øûMvÿE~Þü7§þ<8ÊxþiËê.ÞÞ1íÀµØõÙms¨@§±³Í-0qºäyà2(`Æõ¤Å[ÂfsÁå0rgPÅ\õè½/ðXæïnmn(L"¯ S½jâÅ]=i )˱EBÔgÈõóÐNß˵ÊÓB¶ y¢A¤¤Û@pHÛ±]k¨ù!mîôZȸKzç «ëwú^G4 +4)¬ºk_èHxuUÔÂ^Y½ó�ú#þVê´}åP]?¡u9õbåy$ÂÆ°Î +Ø +uÇxÆ êâèF° +èW£nQä×Á1=Y'¡èl¸ ½8Áø,Xã0¤³À¯È@¢Ö3ÇnîÜïÜM@Ç. F61`È7Ø3drëÞßÏÛ9}*= iÌ8=Á00±OsQC¿×<'׸@?"Á '~e(E�9ä)o)Ø]Sv-q°,ñçfL7d`Ð"õ@±` +<Òä§xHÌèTR'¸ááà ú÷ðH«Ô?v©ÇzHPÓàØ�+a À*^Á4Â_0+züÓ¡,ÐjÀØ]ÀJ¬ïÀ¬BVïSôî&Å[(»q×3µHÛVØ åòh¯èò¿!_èçUø,3· +} ~r©ü +{Ûè¹øwàê¹/¸Ã_p-ã4ý :Ó"\aÁ è}\¥éHÐä(´�=<6U@¤!ØÙØßfTЩr8âèu*ÇwDÛé{ù$H¦~ý:M7UÈèjÜÀ@ÃúôÌ·ß]ôÃ0Ghaw7ÐÞ÷6Ðýýôð÷³öû½½.¸P¸^Æ ËsûZPù Ó_*DüÆçHjî³�Ä<¦%xÙ7krâH·âY³b·ß½=Á¿àðÇ J?E ò,Ä@âè¥~rdðÎ5w¾÷¹j²�WÍî` å|@q3öæd¶Ñu'°Õ+¾cï,h ×8çEÒsîDr%È0 {3ò»¯Wëy½âj·mxÁH'FC"ÄÈ ªàÏýK½wct£úÞªþtèÁkª"@¬¢;æÀ(¤÷Àiï|¿ã�Ç!<ÖªþBòCÅN/ö¸×?ä®K¼ÓwoÅuÖr×fÄa¹÷%Ýey©!ù j5$;SqHOôJ¬:=ñ$UÀÅî©åÝ=IÌ;müNñÐÍÓÀЩ-sgOZÅ7i.36:~¯7i6vò´�ÛÒ3ú[àL ЮµVì4@¢í@mÃ3 låïoÁXéÐ8=Ó¡·P7; +{fèçyÑàQä<$jÇN~½7»îãM3Èk¡ìYÓ÷Þ/ñó©é8½Lif$ºHÀ/Ê j +J@¾Ú[ó:PÐqHñ8ÕGüý@M.>Må´i+êÕÓA? kÀ!iôÅçzaºÂ(@6àÄe\aaÕú7ðʱú&¿êNo¡?¡;¿Ö? ¼Éärý5RÑbw-½¦· ®Ñ¡¼?¡G1Îìë嬮.x6Í\q @&¾Xé|YSɬrW=«'uÛ!«#:ÉXÑ«}b+ÕEb?÷Pañf¦¡¨Äzª=8Ý»^áC+@w"b³v¹öº·²F�*'>7ܶÂEw@"mùëÐÛ³BïVÓò¬ÝjÜ &Æc¦ínsP{ìiw[ìÎð}¤s ¾´ûà¸ü´íçîþïÓ±S9Itc§ì$k½>>^åþF@¹³�{lj?wßð÷ãÝág«ätàúâì·ØU·Ð+[¨¯¸ z';È:*äâúehýÔ^¼ÛÏMx\,URA?[5H÷¿�£½Æ0¨S©"pÒåÓvµN¿h>áp¤PF-Ô»<ôøµ28æ%ÓAi¯ZYAnùÙý~¤â`¤ØÈGðìo!î5Nðªö#Bô&äÓØªö% +ÁB"0|tÝ2JûÒq�=r£ ?Ü(èP^* +{TzÕÌ{HÕÓÄáC(Ô�ÀáC3Ð:ôÈ$(¹Þ§ÈeEr2±Ê}pvò®WµÇ!vϯÉ+O@7]!²Êû·-q/Ï©ù~á~u^Z%_Ñx«¶8ºÖéìçzãyÈtÎlHz©ãX1~RÑ4Òk¸¢ÈÁµñè½#8òä*;W{æÙã1»CuòY~»®úUúÃÌ+vïáGKÖ+vïéâ7où=K<:ùâ=%òéfô*d3°Âÿ]3ð^v¶¸uz^»ùÖÊ×üƾ©.Â{ Ó¥{Hg÷Dü±ôÿê¡Þ¢Lj¸ñÍ#M@ƳëI 7à°fi>_¼ÝòëÏÝ/üNÚH4^á-Уñqîí¡ÒI{ ·ÆÛÎoÀÞN»Jä}¯)¡çÕó§WW;ÝüP4ÃËÞò-¶ëÕáû\dÇvÏ¿+Áv Pýe¯ÚÑ!2è{ÙIqü^öG¬QlO~}U ìì¥G¤@,¯s�#©^4Þ"JoêuèêP¯õÀmÙ)ëgÁNYß<re(PÖåÎJ[JZæOìõ]ÂÕÞÀôÐÈÓ3bi}¤CóS#Xú;åÝÛC¿B* ¦Lxè1;ÞlȵÕÞ4Yuμàq&¿ì÷ñ{ánùÉU[?¿ÿ2û'YDzÄÚ*V±#w#m¡DSm"Øè(Ù%(É5Û;uºÌ¨ÅÂûÙiTЧ²·-XæwSïoÚñzB#Íu¦P½»q9=²£=²·gG>_̱Î'bE·,Ðe´²ôôý&_ôÙqPù¬öZ¦Ríô+öC{¨ÕÁÒ@h¯æRø|³Å® +¨Xè ×hV"/i"=¶7¡ê±½iÞ ½P5¸ø + 6qÆN8kyÐ÷yt ,ŶÒhB]{2KX¶Ôárì¨$Eæ}¶â¶õ8ÀOi¦-)Ó�5P`òÒ)ëEÔ¬F¯3P"j¶Nùk¦òµo5¶ܫ,Õ¥t*%û!Â& ö' 7tj¼úL+ÐËÔa{^btj`Y;J¯Ò±Wâ³Ð÷òãayåÆçiÙÐø8i¬MGnöôJ¬go$@ÈD¿0lu=#ð«]uÈ{uÈy-¼:d2¬sLçº*ZA #ÁiÂÐÉÝ#¡@ "QQõ ï ¨ó½ãh F¨ä~ï¬_#$ )Ö¡îD^z^q.Ï3ð&Èv\mB¤'ãét²vº2,lHzu)3zÖzS-ô©"µ$*i²n {!ÓQÊÃi·_»2¸úµÜg'L{jè²u¦>_`àKñ÷åÁÊw>ºìñµ7Ñx¯½{1¨$Äò®S%ÓØ+!t¬(}§-X>/ý+ÝùFó|M Su¶"kÆ>Í(ç`ïÍúhîÑìWWu¦9¶M¨ô\cgF®=Ý]h[W²ã.\[OûõNgéO´5ÿly|è]þò·ÕË="¿¿6çó[ÚÓé÷åÎÙv»;ý>@!o §ß¦Óç®Õo Xè÷ËÕÝÑø(ÀëÂÃÍ#9P.3(ãqå_f�^d}ðzã®Vt] ÀB4î4/?-³§2¸¦»2hOeÐD¸ÝÏÇP w?Ì ]ð©&2¦�× `áº+¤@-òø=¸U^ëòªJ7z\5$k´½\¥ æ 7ÛÝî a°ïQõ<ÜÂ:¨K°¢@éÁßî&¯Ö3v¬ûôHù£|ùD×#Ù%*FA&È#ïN÷M<¬x¶¨HHÔ ®ëÉЮ#; +×1èA9fÉþ÷<¹<LIäD gÈ£ÍäÚ¥«sî^³Ñ± +4Å)4ÀËä·½äeOýÞãær¥^Y ÜbC@À*¨`Cã«ú#_ÝBWÝôf + :=ÆvfòÊÂ2Ôkn"éné^3ó®[Zvø\¶ÝÏÜÒjÜR¿è¦jÆÓf¬w$)|êØx¿ÔÝâjù]·x«»ä{×ï»tLà* /`Bèè +¸ÅunÏÜâTW$¶0`EzrlåÆý@0 ÚâòÐÒK«´D8 Ý×<î'nyC$ Ä4äÚn4æé»åL*ÿÇ{}-ûô½,´Ý*NßëáD~?Tv´Òô² (û `Ë]¼! Wºw5¢üÂKêÔí,8 ëÅÌAÅ=oçØÛ¯LVjôûjsV8ô¼ @ú{yÜ(Ù©N#kàTYl>üDpÜ@"ø+ÐË×nà§ È#ëìÓWB«-¨DzÝÌA K³%` y7AQ¤Ê4]óLÓÕb¿t(A thE0bN`d£z8ÐôØÒU P:TUg&Íý4l6@¶f ® +ÎCåó´lº,Úô¢oKТïªÀÚ:ü +e.·@ËèOÙïN¶3êì;v:»TwUØ*d Ìà+ {½c½û÷H{ éÇ%ÓÕp"$ж¶È.³µP¾[=¦WC^ÙѻDZ1Í½ãØ¯JëE%>ó'jBÖÃ2Ó3 ªY<K\ª=k7;j©* +xLï ¡³ X,³x¯qêM¶B+¸F´õB ÆóÞÁ\kÉP[À÷ Ì@ÉN´Ù¡¨S}äPTÄÑH�Hõ_¤øj¾Üê<å.þôÝçé öðrÜd$tbDÂ�ÏØçyÆQ¡hDº�x±ò°eçù^1kü)6¯AUÃè@;à3Å\/³tp{¬èà÷p/8@ ä(Í ÿ´=ôÀM¡o´ ú-ý<= ~Ä @ÅO/*x�-Ô¢X+~~ºÇôZkÉO@¯E±3½§%èÅ(\^b &èé³C£®Å(üÀ\3ÅNÛR?Ð,6 ´öpuÀ/wÉVäG\ȯ¦ä÷qp-ð<ëµjæU®õtÉVÚ >íàÐ229Éaëtú+ß;`^éñûkÊ÷ý¿ýþªÃoù-Ûån?ÆÝÊÌSº¤lUmf@!ÃÉS±ûùI§â¤¶ò®Xh5eH _Éɱ7Ó&:y*[0×i�küDãúNt9Ï@ÎyÛO» '½¥ÖPrÖ[Yä´·46ÚF=ïÍZGUYxÄ·cõà*D7áiN¸=áé ¤zÂÓV©ì8@ ãX"o/ 1òK+Ð!2¢Aàõ,!ÚÃXºNw�w �QåÈ Î¤@Ç3Ë×éma¯vW~ÂêP 6!A¨6)A¤6maè ö0R (¬C;ªÍ[HÖA$Óûgî¸=3pNAaàé@Ab3Ò_3Ú±Þ:Lé¹Õ.ï«9Ý«!\ɱ +<¡VVã@óG|?*`É?<Á:HxÕ¨WÈ:.AK¶Y¶ÎaU¾âCj¯â=a¢jðëXòØ£ k¦;v ×'óÈÉ«ñöcèñeاʵ¬&'ݨû5ýV|eJ¬¬x¿ÓcºjC%Ôh,ÏhÒcÿÝ ¹rímó>Ë~&ªÞ÷°ëͬ"¾ü<Fr9Õ¤"ÕÅhÎÝp25ªç´A¼Úøé6h²OײO×2o¢^È;kþ+A¼\âå ÉNÓ»-p÷ln\ï r£ßë=¯¼ÛwÏw°Ýxª-÷õ<þþi'ÄÌäËl¯G/÷øÇÌA·D¨)«]¢«} 0¤¯=Þ·'¸£®tÁÖ¸Ð^'ëR¾fpqí¯¼õüÀîØ.¸E©AlÛ°ØòÏiK>YÇÆ ?è[ç¼Üéáê¾9Ö(÷:ÊlL'46&=_! òìíàfKðý¯×Ü¥+"º~¦æ¦I°×÷.ßlæl}ïºxê*ñD`DQ)çïßPí±ßJÙcëhõ°k;×ÿÞãÚDri½æHxO7%è-HKÆßש¶6 Ó4[5ö®Wâ3]EÛBW4)ßxrEÂ0 Ó#ª\ çß³b¿2êÐe®MìÉÚ{®ÁÁ¡Ä ΢HmÝ+_ô0é_g9ô"ÐÍXR]{çûBV¨³kYÏúq:ÛjýÚº¥ßn ÍXg[âeeîúsVVFp©dcüVLͨª q$02Ò=m¬.?åU¬C:alIK= tiïø²KÙÒ ÀaÊRÛö`¼G7õ^äuÑÈÍv@A'äèHÐ{{l;EQzAX�Ftu:îy ~Vësíæô?iÐ&àóT ¾G$vâ¼-¸Ó7ÒMW0¼Û8Ó+âé{½Û]ÖèοÐï#1[¯¹|l¡KHÎ8¶ éõÒî5;/Aî+ì4í5®ô èù£{UÝWÙ\ï÷½[A²÷ó^÷U¯ÉõáÎö¶Ð¯�N<û$FBù^VÂ!»ÓÖȹ7`B$ÔÌ*ßÕÁ£¼©9:è×Ñàs$H<]Å èálõÝIàôýÅpiæÆ6 7, õÔÃ< +pt(ìâ¨×lu0@Q¢ È5ðêÁ¥ÂïG(ªÉòL=<vtЯÉBîP$+±:űª£É>ñZü[ò}' ӬݽGųPï7è�t3ýÑ}ÐÙCv¨ôêd: _gYÙ +4ÃßÞ·Ö;U?¿ÿ^K"WùÅÒÍPçw*ß©ý1ê`(<@oUÙõ¢0¯¦òáÚħY5#r£Ñ +o^¦7uÀXN´"½xvãÓXgÚG\p'0ñi*\û´â×<9¾ÎÏ\²jÑ]Ä+Â{(w#ièQAÑ[? ï¶D´ã@8RLzýðÝ£ºy3kd²ì%Mîºt ¯vz-+irjÝ«Rxf4íq@) a¡¥ÒKÐK)d\^Ja%*I:ÓY2 RHÆ»Í<¢qÓã»=ûÝìÀ¼ç/÷:0ûD#M T¿ºÐ +ä½~u¯½¡¾¦/_µ-é]\aÚh(§ßk)K)÷ßL~/äñ¿ë/vü¾\l®?÷ôur½§O@Pêyï0Õ2Ì ]]ûëýÖX`<AHè9 8Ðaþ¬Ï°²?-á"Dw fPð,ÏiüÛ�µÒ$0þMª$Ä.¸ÛØH"Û8Ú6º2'MÞ©º5c_»~w¬ä×ßZßé{Ý+ØÈ¾ã÷:U¶9¦§Ïåêæf¯_Óù{ú}9 +)mï §ïõã8áïë/·ÛÃi_ü^? Ü>ùr +ý~ úÁ@$®�_ÙÊ\nÞÈyrðCj8ý,o´p÷aÜVUXféìÙóô½Ìs¦ m8P¥n&DÒtf^)pAVJ Ú³'M Òòu`ºih"ðBhrz{iîÐø¯8ýÑ)ÓètvL/rWÐõô±^$¯j[èwÃPOrïÝ%¨½µJ*} ñ*±` ¿öæïÚÐüÔÇÍ4ÇÍ4TôiðY(cZ×äÛî%Ü þXäÕ0#èM3¦²Gl]ïâX)<9ÇÚ&& ¿Ú1êÉÍv Üá?ܲÊGIÉ'Õ(Êô'=ß`¼WÚÃ@-|âHôÀtMFH¿®½,kûâã8dz#vÈôÜÄ[ ?'Mþ»+K@Ìßìfd~E$r)³(¯KÙìðfd~åËi¤y Úa Ë Þî½ïÕðJÁK'µÙJ±L£v¸+@(ÔHé2DrD¬Õ¹{T¦è®Vè9m`3;Ú +ß~õ÷ôr<VÈå|±ÑóSdÓ±dt((íþç¶Ç] òpÄHæ©Æ,©Ññsùfk&ÔùuÏfúu° ï^¶¼«×§)Ý»-¸z½ÂVxã<â´[UW~º»û»eös\�U¬v³M Èè¿Ï´½ëtA è;`ÜÎ] Ví÷]¶âïëéY í_ïúÝÞñЧïõn6#|'»QMà¤&-LhzÓíE@g£3Ya�^:q,0¼ó\ÏoµÛsWÛss~ve±H©è¢ãÇ=JvìWûÈç¸yôò5°~"<Jd ±Ñ÷E0¢;¡Óü¡½³ÜݳÀaÙÙÓÇ# HjÍzÙE·w°0êiìÏéi _O«Øbú ÓËîvÝd9¸°C¨×ß)d÷@¾öuº²ë/-&yiièêçGÔ«Cä®`b5ÖË`MWïÜ4@×q{î»{-*[Dö]·Üª@àP¼;uWàQzèÖ¤y4.Å·§2Ý£xÊoQÏsß+xè§ä]ЫÅH¤?Tlå]{ðóС«×#Ù+¯£Ê8Ê#¯¼¢GjØÌ8hØÌÜ=dÍo8:?Á ál :ÅiÕÊïúÔSbbF TK=*7» =ªHvæòI°h^©¦;g¡½ï{£wúß³üÌÓÅ·ðÏ˪^§í¹¼ó½KÚkùñ{=9ÑïGÂíµ¼£>~6 + À0óêaÌEÛ7¹ÐDÂ+YP@,»#A¿UµfA.C<òèöÖV¡Míû8@.ÝgÐs!fT!]fü}!yKj[ÊÛ 8|}祦 µìdF!=7Ñ©Ä+` -O¸×`Øç§Q ż(nQ½êS}ròØBÏÝ âÆ¬|Õí-lÃz²-µ5µùç67Þb z»ó n£3Aäqß=\áòÌfü(6~wSâÖIw)²H7J´"½ma ÓÙ ;ïüpßðü?ôhK£è1¥±É=ȬH÷Jä`äMÐZôþÒV¥¿'BäÑõ0l¾ÕéÜb¯u.·È×:=vªH|¼×¨µ ÁÃܽ8{áÃP~jÛÙÝ#_Ú\rÐÁ@ù)Í|zX/¾ÔXtzsäMÐ)úQ3#àE-TéÞ'» ìülï@÷éU´#½´VýIïAcH¶£æ@Ùentzè¯ïÊêOÝõ*w÷®µ¢FE» ðHwÞü-ïðy å±#JºIv«8ý¾hqüÇåËìÝ)ëäÎ?¯óö@Ò¿Å<JðÚ¾×ùÅLúà3ï¿Üx bþ¤Ç\é±ÅÐ=ùõýôÕA²¢«d]¶#A i¥:ưò�z W ÇXä°£=¸3¿P j^�M�® +®Åy C ÂÍÿI ˯í06ÞdÏCH¿î$oØOïi²åJt:ɵXÉPp§¿Ú~z³Çto6Å:Ï>>tFò´ ' ?våE¨÷ÂIô8hö§ôN# zîP¬×ÇgLç÷6¤~2o áôJu0êåñE t%Pª$^#ØÛH^*Þ%¢2ë1¸ÐchGíZá>U6ÎÌ/·J£E0ÂÓÏ#º/Câs¼Ï°Ç�÷ÐtqCÞ¸òµÀ#ñf§S¬ ' §øíbU> +^í+{TE/ÓPqtWt¨®åÏZákïûj;~´¯d8ÏUXGÁ~ÝmòbùݺñË¿_¡ìpÑÂw¡ TQxízæQ½Ë!}-Nsyuci vÑâ¼ ªÐÛ6.uskÛX.3ðçM¦^°ÇÒ%|Æ^ìUî,oß«q&äµ%v*äGKk{ׯݻ~hÄ.�]xÛÀ2Þã)-=òð½~»¶àãçòil$óiöòYhu·?¯æ·KÍé÷墽ÖÅi�= +s+ì~ZÈk¡+Çïu1³þÈ·ÞÞ\UtÕ 8Tq.IXQ(Rí8Píç¯WIúÍÚJÊ÷4Àg©y¥ ÷�3 pmöãJÀ_îJ�a,Plc¡ßdÃäP<pï;ÇÏsã(0b<³ öxf/fXAFÒ¬moþ÷r<}®CzEèÊgOÎ@&»2+Í,MÀgy5 ¸4óÄÐß*&={yyAÔ],âaì*pü!yKB(Ö"#DHJtôU)¨z9á¢Æ.AXõÎèNB+«¾ìNé@ +4?´>¶wý¹Âþ®#Þ©ôÒ; +vR×§YB!wмt, +¸;° õj'zÔ2cpzübâ è1¨·½)ã¨Õ; G3j)G'ieÕw°2 +éA¼UÛï$Þãïzs½± +tz&ü}[3h:(ÅÐ,õѽº.L®Éårö"¥Ý+ÓÆVÜfÅn!â}2ü/k¾U.g¯Sq÷VزäÝ:7p¥5äïÉ÷Ê[Ü©&î²Ó~^Î6^æø¹úë<xü\gWË÷zB¤D{pÃR"ñ½rG{ÜøÓLÄÀ'{iÎ>7L+´Þ5R¥£C]r9ÿ\ßo¨é°ONóÈaÉÜã\3Â|zX/U2i;à³Zþs¬`$;öijÔ;Ýl*Í]^m`%ÒEØ}&ßk*ZA 3/@n*3M�½q¯Òæ^:ÆJ/Æ*äºRLy}Qüõ§_yPùüó¿þü²×¿¾\áëßþæG7ìüa|@úHU¨RÌ5Ödm¤lY¯ñû÷B¼Îû{{^9|®©(×Pw±¢§ïá:ÎßïÏ̽òg§ìãî¯"ÙëUGxAÂBÄÒ[{SÃ�yaÁ2¸(ð;¼0Já4]gpAú¨§Þf½jk÷4ß²¢äµnB,¢"_ ¸ P·ûÐq ³À«Ø�â\=hhKËÊ©ü{�Ü Eð¨ÞCîýOKÚl�Á|ÀÕóU!vÌy¢]�svwÁ¢vúÖè Ò,B» ¬ñ|$oKxê[ÇWÃm (׼ؽӷè½<,°|ov·ä4àØ�ipEeEʪ`ÎWÏìͰ伵zzÉ¢¦¯%Ȳ7BîÍÀÐÅeðVå½òËÛWéªÌ¶°'xÝ5ç¨æìmQ4ÑbcD]ýí¾(5¼ßk0¬ÃéììÂÄpÍÙfàÀ:ÈÀÙFuØF +H^u3Ï_ÊwUèÁ¢êUÛ�ìkȰNÈö¯zà©òiÖSeO%!¨^eàÝWJæÃU(¯¼Ía}Ê1qbèa¢»»@w.gÑW=pePÑ®2pgPo®Û�MÔï`) ½´ëÁâªò3PTyÛÆñ@öPö®w1q/jÖÃDW¨ +üÛÛÅYûf.ûe4?Ñ;ËÂGÌ`¸ \ èYãv׳FPªª£¹Í�í�*×Ä2Q¹fØkfk½´ZÅÏÆZE&ËbÏ óÞ·÷=wïu2å¯'ÝY&¢jcOU¾7Ö&zª®¹*gmýÂQCW×Ue>c`âàâÉVgñÊãî²Ê@a_Y!a6U¶÷å¾*³5¶A¼ty2hÊWkôüÄ=£ç'zØÖLÖÞ-»ñäã½YK¥»Æx×Gjëä#14õ¸ºë Ñ#ç·«óÒ¡æ==Ü|¼å&nÍLh¸, ôp`¹_:(à~>ÂçWôDúù«ûßé{Ï|ÒÖ&wéXû¬3ÀÞTÇZ©ôtÇ¿%PÆ·oûýLò'úÒ¡±3íàY¬òG^Å6ösé£xYúåÒÁ.÷%¢âúeÞÐdN¿/Ó s²?5´ìËz¸¿?jòs÷o$ùéo ;@vYÁÛö3köã>DÍxvïPöòýqä·EçÜßö§Sÿâð°¿=^lÜÒqà\Æ8¡þÀmÊ?ã¯ìÆçö/ûöÖÓÿ÷Qÿ 'ýmýô7@¸¿Ì1fÆÙu´Ç¯¸þß¾Nß_ð×Cýyæøx³i?ÂͰ×V\lßþøýo¿ûô+ýúýßü6}¬ßýZ¶?üþOkB^^£µÒüþ¯ýÿò¿þøwõ¿ÿ?üû_ÿõ?þůüçøëÿûWøë_ÿóÿýú¯ÿýÏ÷Ç?þúËóWùoýÅǯÿþwø_øç?ÿúw¿þöÏþÇÿ»ßýë¿þëÇÿöïþåãïÿðçßýåkÿæÿÇßÿßý㿬ß}üíÿôÇûë÷ÿû·ÿôû×ìþ?OnE +endstream +endobj +283 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 870 0 R +/Name /Im272 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc a £ S!WÁW!g!Ç ì$ÇÇÀÏÀ_Àÿ?ð9�UK°��E5$ +endstream +endobj +284 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 871 0 R +/Name /Im273 +/Width 21 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x± @ÑO(®5(®Ä�$2£0ÂÆS|yþ&{êEF}üw®nV7³¬ºÊ@:¡àFt=ú ¸i2=M/Sû¿Y'í +endstream +endobj +285 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 872 0 R +/Name /Im274 +/Width 32 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÍÑ À ÐÐû @DÜ ¤SK?»¸ûrIÔHé~]0ýX£!ð"ï5IÍþçlv°²ÅJ3! +endstream +endobj +286 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 873 0 R +/Name /Im275 +/Width 26 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏþá¿üyyù;f ÿøÿ��!q +endstream +endobj +287 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 874 0 R +/Name /Im276 +/Width 21 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøßÀþÿóyævÌê?Ô0>¨a`øu`dÇ !Ï`À ýÿÿ�JÙn +endstream +endobj +288 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 875 0 R +/Name /Im277 +/Width 28 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-ÃÁ 0À=òÈk@L#j]æ!i'ÚA¬ n Syp»#@K¿óÂÏlí n¨¼üAÑf>xåÔG¸ºà¢ +endstream +endobj +289 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 876 0 R +/Name /Im278 +/Width 22 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûðÏÿääø�ûÁ b~Ì�Bß¿10þc`øF`dÀ��¢Àù +endstream +endobj +290 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 877 0 R +/Name /Im279 +/Width 31 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃÿÿÿøÈà?Àþÿ�ã þÁÿ�q ×À5HªdÈLù ;þí�,/ö +endstream +endobj +291 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 878 0 R +/Name /Im280 +/Width 22 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcàoa0ðap°ah`d`#60b`#æÌÿ30Ô70°``#R�£ÆbfH`bøÀÂpF¡ù�{Ïß +endstream +endobj +292 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 879 0 R +/Name /Im281 +/Width 9 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcl`n`d@2jî@Ø|@Z�a!¡ �7 +endstream +endobj +293 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 880 0 R +/Name /Im282 +/Width 18 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨8Àxô�3ó6æ|Ì <Ì 2`dÁÎ@|P$!ÇÀSÃÀ>A,@èÃê�hà +endstream +endobj +294 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 881 0 R +/Name /Im283 +/Width 40 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûùÿÿìÿùÄÞ¼HÏI(QÃ`%ì¡<ÃAd¿±J°fÌÏ`ãáø @þ?��l9 +endstream +endobj +295 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 882 0 R +/Name /Im284 +/Width 28 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÿÿ à Vãæ�aPlÀÀ�ÔÂx@3784070@1#;31³1ð-ùÿÿ�gX +endstream +endobj +296 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 883 0 R +/Name /Im285 +/Width 19 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcnoà9áÀQð@ à +Àñ�172$72<nb8ÚÄÐÚÂPQÁ��Fh +endstream +endobj +297 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 884 0 R +/Name /Im286 +/Width 19 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`ÀÀ�F¹3°3ðð3Hð3Xð1ð1Ñ$d E ³äx�Do +endstream +endobj +298 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 885 0 R +/Name /Im287 +/Width 33 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃð¿Aô$@�Pî +Î`¢F4p@&8002<h�È% +!ËÀÀ "ø ²n��ôh +endstream +endobj +299 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 886 0 R +/Name /Im288 +/Width 14 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã?`PP`ø0�Y2 2d>H<°H(?��Ó² +endstream +endobj +300 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 887 0 R +/Name /Im289 +/Width 28 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿÿA=WÈ7>(ox ßð@¾¡à|2fo` ³ÿÿÆ�+A"$ +endstream +endobj +301 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 888 0 R +/Name /Im290 +/Width 23 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏÀðA²oø@¾¡@¡BÁì0D¼¨Lîà{�DÔ +endstream +endobj +302 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 889 0 R +/Name /Im291 +/Width 23 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¿á?C? ??*WÔT2Dÿ?0��Ebi +endstream +endobj +303 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 890 0 R +/Name /Im292 +/Width 28 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmͱ 0á!D, @ÖÈ8º¥åÕ²>ÔÒâë*qnJZ2Ê#©ÙÝ:ðïêÉM¸}5+lÁèÇì×*ª¸öX +endstream +endobj +304 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 891 0 R +/Name /Im293 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc>Àc !aÀSÀÀ÷ Ùa0½ß_BGý8òðTðTHH(ào��Íö +endstream +endobj +305 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 892 0 R +/Name /Im294 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÀÌÃÂÂÃ'!g gÀSÀPÀÀðøÁx>ð=`{À @XÀfÀgÀ#!ÁcÀü��ôi +endstream +endobj +306 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 893 0 R +/Name /Im295 +/Width 25 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmȱ � @ %#¸ª£AØË÷ ×�©MÔ¯y1Q§ ¨³|a§éK) +endstream +endobj +307 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 894 0 R +/Name /Im296 +/Width 31 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßÿãß g~`�ÃüíøÛøØìg*0óÚæ¶@lßÀøA>È10<àc�4¥ +endstream +endobj +308 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 895 0 R +/Name /Im297 +/Width 27 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃÿÿÿøØ7ðàbö@ü�>�Á 5öüÿÿ�õ0ÊÁ�y' +endstream +endobj +309 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 896 0 R +/Name /Im298 +/Width 27 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUʱ À0�Á.ÔÙx*#x4¢2@@!R|ñ³,ÿ\¼áùxïb5é±²þRSO3ë&ÂØ +endstream +endobj +310 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 897 0 R +/Name /Im299 +/Width 23 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÁÁ ¡Äx�` xØ$Ø,ø>üÿÿ�¦º +endstream +endobj +311 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 898 0 R +/Name /Im300 +/Width 24 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏÀðAâ? oø@Þá|Ãb þ?ÿD�Bx +endstream +endobj +312 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 899 0 R +/Name /Im301 +/Width 13 +/Height 4 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿã?�#tÝ +endstream +endobj +313 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 900 0 R +/Name /Im302 +/Width 46 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5ͱ Ã0@Ñ3¹FDm +VðZÅ#dGcd Q4Â*O¿úgÍ8αZM}¡±X³n]z*êÆ ×ãqÜE0àqny9ù{¼§¶äX#&FÈâ2«(&Zþ~Ü7A +endstream +endobj +314 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 901 0 R +/Name /Im303 +/Width 22 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÁÀÌÃÀÇÆ"ÃÎbÁÌaÀÜQÀ<0/�£ (½!»Ã pÃ� Ì +endstream +endobj +315 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 902 0 R +/Name /Im304 +/Width 27 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`c`` ÿÿÿÿªØ%W +endstream +endobj +316 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 903 0 R +/Name /Im305 +/Width 27 +/Height 12 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿÿÀÿÿÿ0� 5õ@µ�[Ó5 +endstream +endobj +317 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 904 0 R +/Name /Im306 +/Width 23 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`üÀÀ&ÁÀÁà Àà ÀÇàÀÇÐ�D2@$ÁÈ`ÁÄÿIà�ÿ&(²�"z DDDù~0(0j�#�PY +endstream +endobj +318 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 905 0 R +/Name /Im307 +/Width 23 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xE˱ À0Ñ/\¨ôö"¬Ê$y R ""ðkYyµ"gzôÓKl<ÑorP`7 HK|Àãgì"m,5f./G(¬ +endstream +endobj +319 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 906 0 R +/Name /Im308 +/Width 33 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xα 0CÑD$FÈtÙ,Í(©QsÅ«N¶±Hm- +Y¶7&M"*=d°ÎAå£â÷òz@~±'Þ¼ÊñÊ;ñ34N|Úæ_qÔ&@ +endstream +endobj +320 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 907 0 R +/Name /Im309 +/Width 26 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏøá?Ë3ØQëøã>öÿöÿØ�� ¤y +endstream +endobj +321 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 908 0 R +/Name /Im310 +/Width 11 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xa°c¨C;Tðåÿü��"? + +endstream +endobj +322 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 909 0 R +/Name /Im311 +/Width 17 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿßÀPÃÀ`C&*°aøAø�ýî ò +endstream +endobj +323 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 910 0 R +/Name /Im312 +/Width 20 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcH``Àþÿÿ�Dx��¿ù ] +endstream +endobj +324 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 911 0 R +/Name /Im313 +/Width 11 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xgPlH8pá�C#<CH ¡Á!¡A�~ +endstream +endobj +325 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 912 0 R +/Name /Im314 +/Width 20 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿA¹AáCCJ� 27È0àCÿ��Ð +endstream +endobj +326 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 913 0 R +/Name /Im315 +/Width 6 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûóç�>ðç�´à± +endstream +endobj +327 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 914 0 R +/Name /Im316 +/Width 15 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc? a` ñù@0AÎ@N"¿A¦@¢@"Á@á|�Ö +endstream +endobj +328 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 915 0 R +/Name /Im317 +/Width 6 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûóøó�Z-M +endstream +endobj +329 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 593 0 R >> /XObject << /Im318 331 0 R /Im209 218 0 R /Im319 332 0 R /Im203 212 0 R /Im320 333 0 R /Im204 213 0 R /Im202 211 0 R /Im209 218 0 R /Im203 212 0 R /Im201 210 0 R /Im211 220 0 R /Im320 333 0 R /Im209 218 0 R /Im321 334 0 R /Im321 334 0 R /Im204 213 0 R /Im205 214 0 R /Im209 218 0 R /Im208 217 0 R /Im322 335 0 R /Im320 333 0 R /Im323 336 0 R /Im324 337 0 R /Im325 338 0 R /Im326 339 0 R /Im327 340 0 R /Im82 89 0 R /Im328 341 0 R /Im83 90 0 R /Im81 88 0 R /Im89 96 0 R /Im82 89 0 R /Im88 95 0 R /Im91 98 0 R /Im328 341 0 R /Im326 339 0 R /Im329 342 0 R /Im329 342 0 R /Im83 90 0 R /Im84 91 0 R /Im89 96 0 R /Im87 94 0 R /Im330 343 0 R /Im328 341 0 R /Im331 344 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im95 102 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im117 124 0 R /Im96 103 0 R /Im113 120 0 R /Im93 100 0 R /Im106 113 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im112 119 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im111 118 0 R /Im99 106 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im101 108 0 R /Im108 115 0 R /Im117 124 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im106 113 0 R /Im98 105 0 R /Im238 247 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im114 121 0 R /Im93 100 0 R /Im112 119 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im139 146 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im112 119 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im112 119 0 R /Im98 105 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im127 134 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im107 114 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im98 105 0 R /Im97 104 0 R /Im101 108 0 R /Im117 124 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im107 114 0 R /Im104 111 0 R /Im93 100 0 R /Im114 121 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im108 115 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im117 124 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im97 104 0 R /Im93 100 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im93 100 0 R /Im102 109 0 R /Im111 118 0 R /Im93 100 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im114 121 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im332 345 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im106 113 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im113 120 0 R /Im101 108 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im106 113 0 R /Im98 105 0 R /Im95 102 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im116 123 0 R /Im95 102 0 R /Im96 103 0 R /Im117 124 0 R /Im102 109 0 R /Im93 100 0 R /Im108 115 0 R /Im111 118 0 R /Im101 108 0 R /Im99 106 0 R /Im103 110 0 R /Im103 110 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im93 100 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im115 122 0 R /Im96 103 0 R /Im99 106 0 R /Im97 104 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im214 223 0 R /Im298 309 0 R /Im258 267 0 R /Im259 268 0 R /Im333 346 0 R /Im257 266 0 R /Im239 248 0 R /Im334 347 0 R /Im257 266 0 R /Im335 348 0 R /Im243 252 0 R /Im107 114 0 R /Im287 298 0 R /Im241 250 0 R /Im286 297 0 R /Im243 252 0 R /Im336 349 0 R /Im258 267 0 R /Im335 348 0 R /Im257 266 0 R /Im243 252 0 R /Im334 347 0 R /Im243 252 0 R /Im239 248 0 R /Im240 249 0 R /Im243 252 0 R /Im256 265 0 R /Im243 252 0 R /Im255 264 0 R /Im260 269 0 R /Im258 267 0 R /Im260 269 0 R /Im281 292 0 R /Im241 250 0 R /Im255 264 0 R /Im107 114 0 R /Im284 295 0 R /Im285 296 0 R /Im239 248 0 R /Im258 267 0 R /Im255 264 0 R /Im286 297 0 R /Im337 350 0 R /Im243 252 0 R /Im260 269 0 R /Im338 351 0 R /Im241 250 0 R /Im286 297 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im339 352 0 R /Im239 248 0 R /Im239 248 0 R /Im241 250 0 R /Im255 264 0 R /Im243 252 0 R /Im255 264 0 R /Im260 269 0 R /Im337 350 0 R /Im241 250 0 R /Im286 297 0 R /Im243 252 0 R /Im335 348 0 R /Im281 292 0 R /Im255 264 0 R /Im282 293 0 R /Im74 81 0 R /Im277 288 0 R /Im93 100 0 R /Im97 104 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im117 124 0 R /Im102 109 0 R /Im93 100 0 R /Im108 115 0 R /Im111 118 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im113 120 0 R /Im248 257 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im107 114 0 R /Im113 120 0 R /Im108 115 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im101 108 0 R /Im99 106 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im108 115 0 R /Im103 110 0 R /Im97 104 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im111 118 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im103 110 0 R /Im104 111 0 R /Im102 109 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im100 107 0 R /Im93 100 0 R /Im117 124 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im114 121 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im74 81 0 R /Im137 144 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im101 108 0 R /Im108 115 0 R /Im113 120 0 R /Im101 108 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im103 110 0 R /Im102 109 0 R /Im98 105 0 R /Im113 120 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im104 111 0 R /Im102 109 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im100 107 0 R /Im93 100 0 R /Im117 124 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im103 110 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im93 100 0 R /Im111 118 0 R /Im108 115 0 R /Im113 120 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im106 113 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im100 107 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im101 108 0 R /Im74 81 0 R /Im273 284 0 R /Im142 149 0 R /Im141 148 0 R /Im157 164 0 R /Im155 162 0 R /Im276 287 0 R /Im340 353 0 R /Im309 320 0 R /Im153 160 0 R /Im341 354 0 R /Im309 320 0 R /Im147 154 0 R /Im148 155 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im113 120 0 R /Im101 108 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im103 110 0 R /Im108 115 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im108 115 0 R /Im111 118 0 R /Im102 109 0 R /Im108 115 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im130 137 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im101 108 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im106 113 0 R /Im98 105 0 R /Im238 247 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im108 115 0 R /Im111 118 0 R /Im102 109 0 R /Im108 115 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im123 130 0 R /Im114 121 0 R /Im93 100 0 R /Im102 109 0 R /Im124 131 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im94 101 0 R /Im93 100 0 R /Im94 101 0 R /Im112 119 0 R /Im101 108 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im103 110 0 R /Im102 109 0 R /Im98 105 0 R /Im113 120 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im212 221 0 R /Im74 81 0 R /Im212 221 0 R /Im74 81 0 R /Im342 355 0 R /Im343 356 0 R /Im344 357 0 R /Im343 356 0 R /Im344 357 0 R /Im283 294 0 R /Im345 358 0 R /Im234 243 0 R /Im301 312 0 R /Im236 245 0 R /Im227 236 0 R /Im222 231 0 R /Im250 259 0 R /Im217 226 0 R /Im231 240 0 R /Im297 308 0 R /Im218 227 0 R /Im224 233 0 R /Im222 231 0 R /Im216 225 0 R /Im233 242 0 R /Im217 226 0 R /Im218 227 0 R /Im216 225 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im113 120 0 R /Im123 130 0 R /Im135 142 0 R /Im100 107 0 R /Im99 106 0 R /Im117 124 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im125 132 0 R /Im98 105 0 R /Im126 133 0 R /Im93 100 0 R /Im94 101 0 R /Im128 135 0 R /Im135 142 0 R /Im125 132 0 R /Im294 305 0 R /Im293 304 0 R /Im133 140 0 R /Im114 121 0 R /Im99 106 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im336 349 0 R /Im258 267 0 R /Im335 348 0 R /Im257 266 0 R /Im243 252 0 R /Im298 309 0 R /Im258 267 0 R /Im259 268 0 R /Im333 346 0 R /Im257 266 0 R /Im239 248 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im123 130 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im108 115 0 R /Im111 118 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im346 359 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im287 298 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im74 81 0 R /Im119 126 0 R /Im94 101 0 R /Im97 104 0 R /Im108 115 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im107 114 0 R /Im135 142 0 R /Im100 107 0 R /Im99 106 0 R /Im117 124 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im125 132 0 R /Im98 105 0 R /Im126 133 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im102 109 0 R /Im98 105 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im116 123 0 R /Im94 101 0 R /Im106 113 0 R /Im99 106 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im104 111 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im117 124 0 R /Im93 100 0 R /Im93 100 0 R /Im106 113 0 R /Im103 110 0 R /Im104 111 0 R /Im93 100 0 R /Im98 105 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im108 115 0 R /Im111 118 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im113 120 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im123 130 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im108 115 0 R /Im98 105 0 R /Im97 104 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im74 81 0 R /Im277 288 0 R /Im93 100 0 R /Im97 104 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im98 105 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im103 110 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im74 81 0 R /Im127 134 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im124 131 0 R /Im93 100 0 R /Im115 122 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im108 115 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im114 121 0 R /Im96 103 0 R /Im100 107 0 R /Im100 107 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im106 113 0 R /Im106 113 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im336 349 0 R /Im258 267 0 R /Im335 348 0 R /Im257 266 0 R /Im243 252 0 R /Im298 309 0 R /Im258 267 0 R /Im259 268 0 R /Im333 346 0 R /Im257 266 0 R /Im239 248 0 R /Im74 81 0 R /Im347 360 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im108 115 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im107 114 0 R /Im96 103 0 R /Im94 101 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im103 110 0 R /Im108 115 0 R /Im97 104 0 R /Im93 100 0 R /Im238 247 0 R /Im101 108 0 R /Im105 112 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im113 120 0 R /Im96 103 0 R /Im108 115 0 R /Im101 108 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im107 114 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im94 101 0 R /Im96 103 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im108 115 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im248 257 0 R /Im108 115 0 R /Im101 108 0 R /Im97 104 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im74 81 0 R /Im342 355 0 R /Im343 356 0 R /Im344 357 0 R /Im343 356 0 R /Im342 355 0 R /Im297 308 0 R /Im218 227 0 R /Im224 233 0 R /Im233 242 0 R /Im217 226 0 R /Im222 231 0 R /Im221 230 0 R /Im301 312 0 R /Im297 308 0 R /Im218 227 0 R /Im224 233 0 R /Im231 240 0 R /Im227 236 0 R /Im251 260 0 R /Im227 236 0 R /Im221 230 0 R /Im219 228 0 R /Im224 233 0 R /Im232 241 0 R /Im297 308 0 R /Im218 227 0 R /Im224 233 0 R /Im222 231 0 R /Im216 225 0 R /Im233 242 0 R /Im217 226 0 R /Im218 227 0 R /Im216 225 0 R /Im109 116 0 R /Im94 101 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im106 113 0 R /Im93 100 0 R /Im96 103 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im94 101 0 R /Im96 103 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im98 105 0 R /Im100 107 0 R /Im123 130 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im108 115 0 R /Im102 109 0 R /Im94 101 0 R /Im99 106 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im112 119 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im113 120 0 R /Im101 108 0 R /Im93 100 0 R /Im100 107 0 R /Im108 115 0 R /Im97 104 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im117 124 0 R /Im93 100 0 R /Im93 100 0 R /Im106 113 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im119 126 0 R /Im97 104 0 R /Im103 110 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im108 115 0 R /Im102 109 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im96 103 0 R /Im99 106 0 R /Im118 125 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im120 127 0 R /Im114 121 0 R /Im98 105 0 R /Im94 101 0 R /Im74 81 0 R /Im347 360 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im100 107 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im108 115 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im123 130 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im117 124 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im291 302 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im100 107 0 R /Im128 135 0 R /Im291 302 0 R /Im96 103 0 R /Im99 106 0 R /Im348 361 0 R /Im199 206 0 R /Im133 140 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im108 115 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im123 130 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im99 106 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im108 115 0 R /Im111 118 0 R /Im102 109 0 R /Im108 115 0 R /Im100 107 0 R /Im96 103 0 R /Im107 114 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im239 248 0 R /Im240 249 0 R /Im241 250 0 R /Im286 297 0 R /Im257 266 0 R /Im259 268 0 R /Im260 269 0 R /Im349 362 0 R /Im239 248 0 R /Im240 249 0 R /Im241 250 0 R /Im239 248 0 R /Im258 267 0 R /Im282 293 0 R /Im258 267 0 R /Im260 269 0 R /Im281 292 0 R /Im241 250 0 R /Im255 264 0 R /Im240 249 0 R /Im257 266 0 R /Im335 348 0 R /Im243 252 0 R /Im107 114 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im100 107 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im74 81 0 R /Im134 141 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im113 120 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im114 121 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im101 108 0 R /Im199 206 0 R /Im350 363 0 R /Im351 364 0 R /Im352 365 0 R /Im118 125 0 R /Im199 206 0 R /Im350 363 0 R /Im353 366 0 R /Im352 365 0 R /Im120 127 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im113 120 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im114 121 0 R /Im98 105 0 R /Im94 101 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im98 105 0 R /Im101 108 0 R /Im351 364 0 R /Im352 365 0 R /Im118 125 0 R /Im353 366 0 R /Im352 365 0 R /Im120 127 0 R /Im107 114 0 R /Im114 121 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im353 366 0 R /Im352 365 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im96 103 0 R /Im99 106 0 R /Im114 121 0 R /Im98 105 0 R /Im94 101 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im74 81 0 R /Im119 126 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im108 115 0 R /Im97 104 0 R /Im111 118 0 R /Im108 115 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im94 101 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im108 115 0 R /Im102 109 0 R /Im94 101 0 R /Im101 108 0 R /Im118 125 0 R /Im111 118 0 R /Im101 108 0 R /Im96 103 0 R /Im108 115 0 R /Im106 113 0 R /Im93 100 0 R /Im120 127 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im112 119 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im114 121 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im354 367 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im199 206 0 R /Im74 81 0 R /Im127 134 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im117 124 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im101 108 0 R /Im113 120 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im108 115 0 R /Im94 101 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im74 81 0 R /Im347 360 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im108 115 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im108 115 0 R /Im111 118 0 R /Im102 109 0 R /Im108 115 0 R /Im100 107 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im115 122 0 R /Im108 115 0 R /Im100 107 0 R /Im98 105 0 R /Im115 122 0 R /Im101 108 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im118 125 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im106 113 0 R /Im93 100 0 R /Im96 103 0 R /Im101 108 0 R /Im120 127 0 R /Im74 81 0 R /Im342 355 0 R /Im343 356 0 R /Im344 357 0 R /Im343 356 0 R /Im355 368 0 R /Im356 369 0 R /Im278 289 0 R /Im216 225 0 R /Im218 227 0 R /Im227 236 0 R /Im251 260 0 R /Im216 225 0 R /Im297 308 0 R /Im218 227 0 R /Im224 233 0 R /Im231 240 0 R /Im227 236 0 R /Im251 260 0 R /Im227 236 0 R /Im221 230 0 R /Im219 228 0 R /Im224 233 0 R /Im232 241 0 R /Im277 288 0 R /Im99 106 0 R /Im108 115 0 R /Im107 114 0 R /Im291 302 0 R /Im108 115 0 R /Im102 109 0 R /Im106 113 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im122 129 0 R /Im139 146 0 R /Im96 103 0 R /Im94 101 0 R /Im117 124 0 R /Im128 135 0 R /Im277 288 0 R /Im291 302 0 R /Im127 134 0 R /Im348 361 0 R /Im294 305 0 R /Im133 140 0 R /Im99 106 0 R /Im102 109 0 R /Im117 124 0 R /Im108 115 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im113 120 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im99 106 0 R /Im117 124 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im106 113 0 R /Im108 115 0 R /Im103 110 0 R /Im97 104 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im99 106 0 R /Im117 124 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im104 111 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im102 109 0 R /Im248 257 0 R /Im108 115 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im116 123 0 R /Im103 110 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im103 110 0 R /Im97 104 0 R /Im108 115 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im101 108 0 R /Im107 114 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im117 124 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im113 120 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im99 106 0 R /Im117 124 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im103 110 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im113 120 0 R /Im96 103 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im115 122 0 R /Im108 115 0 R /Im100 107 0 R /Im74 81 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 330 0 R +>> +endobj +330 0 obj +<< +/Length 916 0 R +/Filter /FlateDecode +>> +stream +x¥}I5»qÝþýo)-Ü,L5héáC +q©MR"mÒs0üï}벺«pNã$jA>©ùPÈ 9üõ§þñ׿ýô×òG§ÓÇ4ÙÏK~,ñ£LùÇÃǶÌ?~ýÇ~ñßÿÂúãÿüÓ?YüÛ×õÛëëòçûú8m÷õå#®è÷·¿Y~ÿK¦mm7Úd¸0-h¯ÿ¥ùÀÖPpÿKGXÒçòýËǤaTyâ¦11écÍð9Áù%G±!b� l,P ç¬1b,î�}`U?@¸M[¼¨ÿúï°ÅS¾~ ÈDÜ%ñØAf¸Æ1e±1E LXbÄll©µhõq\H±Q¦üàÊKÑ�ïGØ>Òü¶éK~¶Ëú!|Lùþ]Á·ù8Áískæéº>¼þ±îÿXáëtßAØu!TrùÀ +¸ØêÒN6¸FÊÇÒèÒûqFh¸|̽ק°6º|ÈX#8ÀÚ(%`$B¦÷¬@ f´M²Çz,Bͨ5hbÜáУ`ÎÉËE¶Ï4L`xÝ Ú¾.@I +Ñp¬GD\k¥0F(ÀOx}Êh}cZVCw#ÚÚ²®u,Fñ¥¢!hÔãú@=5ÞY8¿<åÏõ¡½ZM>¸ºlh}{©·|\0kë·F âGNÅ·?5 ëáÏ7äkC½£Û7Ä&´ýöôém4Ñúpï~×Cþnh4?H?á"µßÇâÓ0R f²°aÿ7Qàeeʹ64 'ÈÓCfD 8t÷ÛÖ#l?ÆThmb$@ðçêæôLf¼ KµPp £Xµ P +¬X ¬Ááf,(køÔÝbK*©áööe!zùé* ÍékÙ@À¦ ºvCcDD Ìê "ÔcÜYPOðò¦Ø°1L"±dÀb!Ø +äõÄã2ÄéR4cKиSñc¾9Óá¾lÙÁÄW±}2Ð`¯#JEc"3qAÀac ¬F}¸"MÖº¸! +:LÙ]Ù%ISÒ\FÁ4izD7Ä 0&èê7zÒ½BöÑ%`BÔÁ1> %¬! <Ì餬6^Èȩ¡A*bhÀ|4Í'¡8Má S-¸¥4$Áµ. +ôu)¦"fÌ_#|äX¿$&bäI»òõP¾sÐB|¦úp°äýÚFZ|¨þ>C QNE¼L°_O¯²ãSfÑQÐ"Ç�Æ·¿:Ã�W÷«ó¢yTô�SѬØÉ~u^±C «j´AèjT&hÊ +°À L«0§®ò SW& LJÄX¯ìÔ(»$bÍlyÁN!ÀÊD꫹_öb^Öë0êúó:Pi:xýyY_¾È[e,²5ê¶}Ù!ݸ^xû¿ý·4ø + lEØCø¢Ë#¦@= `Ó +tððò1$DCt¶©�¸HèG$lî&Ä;X/I1Å-.»n@@Û+ +<ð^ghý¬±bÕ×uÌ�GëBHõpFzÈàþãÍõvýÑl Bd=@;.ÆöC¯±�-i+B,®§!LÞÀ¼"lÆ�&1B|] º!Ä6|j2'¿ìXÿvýÀ"¤ÒU$¨mêÑ fȵC!l6ÐRðPËXÖJÁËe:é5 +P!7I»8{ï*£8óí l@»hH9R®9¤Þ êðÖÕPY¼Le¤7 ãkúÔrúÄsûbùeì QY3$²fä8Ð$Z"t#è_5wîÖ´ +ñM¹þ~�½Ýc0P[°SwÔ²�ÆúcILB&û<O&ÄÃÔqúr`ÆLÇé#¾dp"§(:õXrÂTÎDÌØÉiT9ã ȱq.ZlÍaîY¢ óÈò5RvúSt©Úë¼¼JZ£Ìº@)@0.] 7Ë2PÄÈ"¤$2-qÁvH¦à 2ÊPopyPnqÉ¡ÌsÃI e¾ßí fÃØ³½¡#½õL¶�ö¯ßD>¾üÚ¸ßè[¿Jë):ÿLOÐ©é§æ \×Ë&,$D?$¸ LÜüÒfåªóëBÊß:3ºGOP<)éµ*å¶!¡êÙÄ3RBX¸ÓÕ!Ò¾`Ð x 2(ã'DëVB[ìLoç�âE "Y¤rP¶B1@+*»VfÛÛ?ýý¨ÿ¾¥ÿÒ/£óKY¸a.Ã׸¼Pe#v¦R÷%ÁuPvE£eݸàèøì6àxèëöL7í*çø,¾Ê+²½~�eÝ0PGc|t�í 7xâ³B3#ßd)à ÈAª3ü2XPðºG¡ËJægJM¨@_Döbmÿø"HöJ4%ìËè�ÿuÄ÷ö1G¥þÎxýóü@JrtDob8&y2ôo9 +q=�êZ#bYs5#¶þ¾ìe¨ÅzqVýIò@`T£Ztut\ ."7æWL÷N\ºù ΰp vHgWlà¬S^{eêá +Z$vLÆ +ôÇ´÷òÝ-Ú 8:Á)"ºG !:¥?¶NAC)P;êÍ%|kGØMd!Åe¹#,´§Þ¼E öÒ{ݾÌ?{_¹m_ - ¹þ¼Þ.QÏ+ß¶/Gg¿ÛôÔǰHâÃ3£Æ�ÂN ¤} )õ(q·Ë© %çôµÝ£] Ðu½´øòOÇn@~Ý9nСÅ�IØf{pJÚº2Ô¥!{apz¹å× è Àæ^×ë ÀñÐ�Ñ {_À2$eÝ01t||"�(HzæÌzÏÙ>¿@%rôÌY9^H6ÄÇUöÔFÑRpB=yÚ1gù Ïò)º õüátÊ ëµ<³G +Õ|Ú!=¨?Û½tYH8�ÍXËÒ´´ZNu»JeT%.ð"Òu`Õ>6*ADhÃ¾Æ ²P¾ +ÓôÀ:rØmë`uÝ!þDQáÍ+ äBÝ)àÑ@CäÈØ8tHIý)1cãýÈ1ô<þ,ô§%ë("OBþʰhå@×¹ãkÅz¬¿spzü&Þ¦ ¨¥ sò]JÙ§=eøL!w˰=dÉÑßPu[!a·î�osù6>ßÜ·±ß$ò>)( ;åh{6JéÙñn£Q +bJ£xùSð7 +Õ#e äØ%w¼QhØ +³BeÂq¡¬ºCzXVpXçH )È(F=R{!À7�ÚÅr@¤Ä6iæâo3ׯëÑkõý½½>QÔÚæëú"÷üZ3\/½¾m`ÿ)L0ëè ßoD uµ©øÛ¼á3"mDÿã`9ðeÄG"°ÏNÀsÀ§w_ü; õ>1¢ä¬(Ä*Ä"b":ö(%$Åíp�JÄ<Á#¸¬j<:}ôUÇø +Þ¨gÂÝ÷ö!am ì�kráZUæ8©(H¤V)U%"ÑÆuÖ´·ÆuÙ°-AalܹÑW_ÖÎÚXç«Ä¢ç£(í(Pð\³{çÃ{áf@D %)ÙAS»¤G×ÈÆvlÓÆ¨ÛDÂl[.ð¶v/ÐÎ)e÷¸\ æ:ã¥9Sç³Å÷°:(¿îåØÕW¸öjÛ{P¹°è£éI¥x72eÚ{HÊļ̳ÉöíXvà÷4(-8rtÁÚlé×õzv¾ÕÜ_ÖÃú»sJyùÈs{7 XX÷Þ.òÎ>YÂÄ_+²¯¼¾Ç.~µ&ñµºÈÌIRÍ ãB&æDÖŽOõ#gï�"4ßfÍÕfÞÁÞ©Zô®Ö¤½®k«é«2µcYvXNhz[µ ÒëºÔ!Ø,¢üíéºÞåÐz=Ë3´èZtGIºè´½Þ*Û;Ò(,I¼G�ªÆÜ¡or+¢bïP/ç`èM¿LøVwdC!ÔÛ4ÌùMÿįAFû¦ÏxbÀ&òFÓèXZb4M¼ÊÀ~%¡)áe¹£ É~ÞäjJx[/§çmð÷Û×Ö¡Yßve[>ÒnÄBùze?ůô×à 3@Ïpµ~d× è�²½âtægÄA=±élbÒ! «/tá £ÕÙèº'B4G×:¼ödwº,ÐûÈêS_×ëCVB¹¡ÚÙhº÷zZ1¹Ø9WòÆC=OÚ²ûv`Õx@ëE¬^æ¶½^dCRèhâ0!!ô´ }xÑÑ YBÞ*ßeBn}@¼Ì( ±)Ò/3Q¸kIÈ 2BÙ@¢¨ô+XåÒÍhM®÷%glcáu +Ò¡c8èª]ÉTV¤Édï þ¾ì½eñ>dÍ®è.U¦T/JÔb=S:@úé},°K¦gxF¬z+4Iäh·&4S<6' ?´£çLÇQ# K¦·5K3vKG:E[òh\g¤cï2äݲ±!ÂíI+d®ÈR$=O7mÚïSkÂ,ûõûÂ{ Ýæå1t$¸}¨eÄ,¿¸@ù`lÞÎì:f:¢ËÀQ±qí=#åð:Öû¡PnEp6déÞç$ÛzÖîcªgtÛÑÞ-2ÇdQóéìLîC$k¯#n¹ÁÞÒåÀ¾~ }°ÚHÂyùÓ}>öá#ÕP ô~Ý0¼õ¤[c +Êï%F·¨]óêèLÆúóûûï·Q Ö¥f`\˵{S];¼óEnëegÆ\Ûz}&ã +×ëuô]?àhFa +Ô;EÚª7_¢ÇBóF$¨>"p4£f P+ÏfóS2p©¯,M2@.9qîÛôǧ[öC +.¢ùæ¡Ïm´½«Î(àê·U´ã'ÇÔwï!pÌC=AÛ®ìT5ÄÚ!XÆNv� §át</³'ï_f¡£BPàô2øXà] 7ô¡!ÐÊ,ø�Xe(.Øë -VxÊ×éÙ£CÂï`nå÷©l�2´pväè�ǵgC×wÐàdt'SªçÓZ³ÞÎeÒ*9Ìm¹£¦Þ#a[.ßF'Ö>x¥7 ´¥< +ìÒ,Z2þ§R8#Ev1¥º,¢P=À¦ToÊÝJGSÓ«ìZ":A=Ô³at¬·ë=ò×w^¬2 nõ¡Qï)ÄG¼B}¬c.!Û�>Q©A²h.¢P +�Yoë1kÆ'kzHß )t´%ãcÞd>nZ¤·%ñ±§-ÉC¥`§Pö +ùs1Czßc-GcËgµcEù(1Ì'{T'Nß³ô¥!A3d§W«ìÕøËe¦?ÝËǯ|]î +Zúûz¹"¡æÜ¶/¼$nxzí~ÞÏÕ¹½ý3Â1{â¶ÝHÛ±FÌbMp¡³ÆÞtJ g$C¼ 8PòÊÎÂ:ÎÂRPGÉ,C:J¾" +� Íûkïõíkw[l½|ÌëÛï®eþzÄ¥¡@xÿÛ_ש©®ëCéý +9~Mp}sþµ1ÂÇ_ö×Êݸ}�uZnx±n=÷£½'ìø@\ûõ#OÇtßö©m%Ó~ î ¡#¤ tÇjkþçõ0$Çâi^¡4RÐW.ÔÂû6Ò#ÌðíPyØóØ cu¶ÀìooMÎãúrßÖë1©¹3õzP]1îûÏËÙô5é®§þ>¾#mß¶`M,í #8Ò0 i mÀ¶°H"Ä"DAOÚa¹÷IÈP#0 +<¬C¡ xD¨ HmæÐMèf¼Ùï@§Á¢ªÛ�V£fÔ-^1 t·ÚBÇ ¡>cBôÁ¦Ð1#È3D[Ì' ëÌAÂosÏ$ê\7 ã£1k¶VÇSÃ<XWð ®¿ºÏãBtÔ÷ítÐ9 +mÑ¥ééÙ^ÞAï>¤¿¿ie£Ç úQáPQÅ>{¶/ñ9Ø ~pÒ(àúî?ä×~V>¬È6m\Pdr,ºæôѸàûHî [äH=±5Q½Fî S\>Т,¬sò^"×ÊñË_)°jªL+EWÄCG¥è=[G ´e²KaïîÃ.ED·°÷ð>ìZg9r~¥þê¡è¯Î§)J¯Î}è» ±îÝû»ùûÑá²>¶ F{#¿G-Q&È1C-¨`§Hè"O37(ºK·éK`ÍÜ]*Ý%($<Ó{©nÕ KPÒ$» 2Ù%(Ð9\4ÏÛù0^9mçVRú^éã÷ +Öë`á +^OE¬øo?/7n¨?î?/ß özgÆ[7·ùzÍØnëõÇZ¢v?^á4þ³® 'ÖûÒo»6ÐN\ ²P/5¶nj·èx{Æ$ î BÔbJ8z$à#ÑôJ_¹<, 5®+ .ÆVÈQe% ¿¿B5¸¿úMoî#ßþÜË3]·OÊ9@ÖmØÅé¡!Þç(låʲ´ÞñPÒc{¡È õb +Ï( @$8]ÂÐÛÉe¨F©Ñx:TZ4!äÔ°êµ³F^dÕP¯µý1Bâ9Àb, :\½áË@¯µÜ ôZKìÔé.±µc+Së +/SH¯n¦POÊLñámB=ªHÄê33ôËõBAl õ|Ð't4ò*÷9BèÑ][¤4_>Ð"Í|Ûà ,YÚ�òÊózNº,ÓedF>òí�Ç_^vøx[/L<~ p}³öûëòì÷·Iû}Ô~è=d±Nª¼~ ®`hõ=#ÓBÓr ñ§ÐÞ;ph:ßÝÕÔtÔÆì8Õ|Ʀ©5clfÈxÛAcÇÚd>-«!½~ ê*KB;h³ùÊGip¤ÁÆ©lóR-'£´`;ÚÁѤúÓuàNh´NÙ· ðÑ¢»ÛkNÙh¯N7.èS[7(H()Ä&æD,{* e0©ËA4¤'tÀ`Dl¹Àã3(Ê- :±y½L_vgÆÞÖ»3c¯ëݱ÷â÷ìbûùu5ì¾9'T!¾@ÎÄ1°´{º�9 C S@ß@M±¿m@¼±Ê] -µõöôìEðÞ<!´xoKc®_ÈÛI¯m ¥YfǤÈ3;¢,Øó³ÍØ{Tu!±ÜÖî xj*C½ä5,*\,©#A2ÙïcÛ(QĦHïf4AF1@ê½Ú@˶^j{Gl±NÁÙ øK©M"ÜCcõñðåÈk<D!æÑS+D-H>>°ÀEg5ãFÄÖ©¢*þøkû&óÜRñFcå³ûì×è¨ù +m7B¯ +x%,Í>®øN' ª¸as®ç%V¼qøFKõí¦ïV´¬¾ÝÜÖë´¦:`0ô´Â¡ÜMǦ÷1[ÖãÐÆàÆÛz}Îo¿¯'¦,éX-©40-¶é]-îMèg¶":2[W|�9ÃZR(á×TÃñaDKLSê&UHN4C®Rø6ó50)ÎÐ)¦ûèPðRHÁ§£ 8ò2iÈòýãá ÌXe=ÌbpFs_QXï^ijAçÖxyDÛzßÀËÕe ¾\?�ÆÓë{°½«Ö¶¢´¯,¸(ò#Û0KÀGÐ*½4ô f°¶PíR\0.ì%.´°·µe²ðf½ ÷Íèvf¶Ø¾bGíu½®ÊZ\Öë¹X,s*#íÖ{�ÛÏï�lWD�°Ù©ÝpÀVÛ�l¤ßkrWXrjµC×õÒf¹¥ zÂÞJ@Ù�ïtÀQ¦`#îJ¬çÎXå2k®$èiö²#o;xcx©ÿö(z÷õ@oé±Á Èw¬yò·õr>M¦ÌNH +F±!Òëø#�諤Ç|Ð/�ÿ ß®÷ýbK.íbÞH�Û½ÃxèRǨD XJÏ>À ¡õG:'×ÙzMyb%f¡_׬´Úëõú¸:&ÕB)vä&(D:RD5âHõ¡çÖ>¿»^j£`I:Xcï2ãýó¹>à`â©ÞKam [gõvöCxoÐÉÏFiÅûMªÅ2 [dbônìè%Üá¡äY ·³ê $dõëÄ&Íö¯òû:µ:ÞL,cP-ÔBa½aO90CÔgý;$?¾ZûûûôlZ|KehNȱWÑ?Ù@#:eùÍ¡DÎ¥)Ø¥qiõSàXo(áìí&R¯h¹>f5å°Âo ÿ¼ÐQèp·4_Z8L²;hSZï_eR XîB¤¬â7w»X0pOÀÖxG¿Õ m@ÏGLH±/g äoëõ>±=½ýgL@à˱¤Ö@ÔÓîç%U5ú¾/âàRD(=#Ó@Òä�4âüØÈoa½ Á +eH×ÉC°wôj :¨ëĄ̀C¬ÙkWxí&ãP'Fu¨ÅV£ñá]㳻̺½vï2þl u5A; ׿gd;ÄüåÖ«yɵ À¾¡úë! hAIç|îàû }øÃ´§-î´·£'X0ä4¦¸hrL)°ª` g¡Ê1QܰÈõiBpÔØ ÙþuÂ*ø!õ°4a§T/@N©îP$ìSê0sÂ÷ÜE"a§RG¡%sä4gtzrTB=§Ú±VPöÏÑ ¾zß|RùBOÐ9^{Vèë³!÷f³bÉ ûTzuFfÙAìqÏ'£ÉáqGx>ì¨;ñ?ò st$5Fo +íæ/}Â\Ptîx1Ì8¶tdÔbKèȨÕb#*E86ÔÕx ø® td.CwFOÉÛ(Äi5¤¿ììÉT`%ÉÓD(�2°õæ£þ¾!äåûfFÌXeLétb/+úyÇ=ï{)u&ÝÞPOè÷eOðD¸Ë`O¸3¶³ã È ßmÄé¨� :½¢Ë&Á²ß®ÐÓh¢ £2ÈÌÞO ìgHB½Q°e¿ïQ +(CúÑíß5âtYH�VlÄtuAJàR»b+([±á4cÖ"vØYؾ#¸T0;zc, õ*[Æ5*Ã1bêÍ9¶cúÑÓ3ÚrE 4ÍÞ!¶à»\%(è6v@ä3OÙY»JhðÕXWu¼Êl=!=±îªÃJ´! r(Q Ðq1ì é)¼ÄÒGYaÞ ÏfRd3aVâ ÐÓW3ô¦é«YtHisÐ×ô~%º|@/,L +±^Yxf�÷·P/c²À1Òn-óvØë#í !ò´#H.;8V¶§à¾!òä°Llc4:´±C¢c[ ʱmAcæÀ¶°-±*0®r4>ÉEÈfÈ�ù%CCä¨hÉb`ÅÑUÍñ^H¢tvFV@I|©èÞôÐ +é´Ø% ¸V `3¤¤Ø%ñµvzÃ|Ó¡zA Iaáz9{Î8.ëu|¹NϹ-CµFT×å28g¸Èõð:6gnÀx:47!îéU{[Ú·þß #Cn@G̸Q�äJ°bU�8h^Ämz}zÐ!öPïÓ õöc¡à è2P6ô÷E&DO8:¯ëÒè:®áºEd¤Õ>4aqÑîÉ þH Ò{ ¸¦¸#:xv8èé Gg³(¬E æ�´gÄVLOÜLzOß%HÆeNl¶óû�{z+ÕR/â¶zÝ@mÃSg!õ2pwÑ�W¡Ð;4`#¤£Û¹)Ù[uÆöV²cÎP] ¡PeÎjZDq°<ºHSÄ7¹®FlÍdt:½1] 7¥Gôg7Ú®?êT²æPÓ'ÆCúÁnǤ³Áà !Lô3w¶wPX!õWÑ¢,îÃÉÜ^Ü?a-*Y¦Ö<büFa-¿âà´×ã`Ó3í)öú |ª°Àu½Ñ¨;ÍxY¾B°´ÁØÓÁ³¢£ûàO ×0Y E&DBG\ ¶2DÃb»Ib§qwØK@ï¡iWAï<0ߤP.OI¸B)Ö+sWlHôy;ë,ø) Ã[d²1A5¡ sÖË Æí`C&ç¾Eh\¡ù*É ï>àÍpæE$�ÍµËæð2t̪óPGoã³$tô6>ç¼ÞÆç ÁÛØæR߯zTúm|÷f AÌq±}OiÚ¹´è oð*AãPYh¬yd´¢/A +´}<4WÐüùt]¯e^%A/¢KÊêóÓ<UX½õùu3¤^ý!¢;;v)ÈcLAÞÙ4æiOxúx mÀ1Dòl}xû-a|æLôG2ì´#ë º´(÷ Ø!Ò{7æÚ9ðfõ̵£s92Ë9åÀêL|å!ìDêã2ËöXÑsh¨¬0º×µfº¬ZhJYH3 CLR籡lÌÏæW±~Ò]·å-i^9ãÀ7Õã�ÝͧpÇ%×ÊÒ08b©aQø¾y&mÐÏë9ȱ^×ë)È<¾l wèÎGa±gí<u@¯Ì4l"ô:ȲæAca·{âuzêa¡Ó?fÎ$´ÇMxöxÀkK³D²"5rä(ÒP¸=uÇ Öëzæ^°ÑJ¸½@Ø1 "ÅB¬÷0Ý4¢,ÜTCNÀ ý¾«¸rGifÀZèÐ$Px)"-ò l Ê Â4=äÝx¶n#Âá] í@FØbÁwÀwXy+¶¨é".øÍèHó»*Ír°Ñ#þQLºÈ¾1²Ëü/ÿÓµéûåê´Ë¡þ eÓ÷íjxOð7àûWMéÔëÆZzWN®_ôæö>Àþ!~µ!ÝS¯g[?K$ìö+¹@ob¶¸' ôÍ: ÇÃ;bɱ·àènÝi¨;öÒd_i~iO»iÿä`Ã$×oÿÓXï±óí¿'ÆÜ1 Я³,#§:b5ptÅÆ×\Üvú¥·èMG¦Ô'Êè>ÒÁò={à _Ðål¤÷Þôä=Ò{*c#½÷ÔÛzßc¤wçc¤÷åÞ{Sj´¹>&ZÐõúHï=7¿½#½÷�ô[Gzï/øí#½÷¾ÔØHï==ÿå<6Ò;D-àH¯ÿ¼T¿¨B'M¯Ê,Øcë²jÊLßo¡gäÑèHgKºç:6èzsò¯4½Î¬yv�F�îtýJ>Sngm¤Ê¼ ±vÇ6±î-PôÞÞôJô®$Dt¤÷¯ÑA] è}?GklMéä<aÊ©DgçAÈj¡Ü8Ã�QóÃà&LAÙ±Í3Nô 3Þ^¤B"LGkk i¡4ñg©îÞ¬76)éݺä´DXѨw§È±E$o>Ýôv÷î-G³|¬Ûç d¼°D(Ez m^,V0Ø%?\Y`WÍbØkÖjX×Ïp½Þý¾£ÿ +úy£Ó-¼Åçº<&aØðéåZÅPßþîÐ+\ê]~#P2l b¥®ï6¶eýO&x}ü^,ÔÇï%(A:ÖZë3z"Ä»SCè,º²Ûô$Ë þæQsºZ@Y°·Àí:ܽ zZ¯z%läÑo;Ö»5{l26¶%]P¬fF÷ A:¡%s´°éÝÜÖörº2Ä?)�>@R�Ryd,¡kÊ)2Ü>³<3å±h¦`F¦ÜÓ$ZB½D&Boª-¡XÊ04cRDqM`î3+änò]DÐ ²@¯± PMdFos±?¦w¯fÈ1{/AHVBëÀ2ìYYcÖÌ(¯3Ã"(Ĥc3¤Ïo¡Ô+õ¡ôÐ¥§f(=5CÖ {Ô%Ý1wt £ îRC3äH ÏjÎ%x�Gsn-¬l¥õýÅü2Ciº{ä1ë5VYDF8F(à^(2>¼P´ÄØé ÊÑòÀ»L×ê,7|ËÓvø¿öÛv´¶>Ø+¿¼ºçæ. +ù¦Ç_^õ;q_/¼Ú¿ÿº Ðúfÿì÷×Eý}|þmÒÎÏ2/öví"R"¶pl×FÛ´K§ÐÚBòQ`ÚÁ°#´åcîÀ°Ý Ó mhmVoúHðÑØª|îÞ»jÞ|¼ìçÓ'%µ»ÊAAä²Ñ!3$MÞD¬fûü¯ù/ èjû¤¬R¹'A|ͱè;¨=F»; ´?òíFx}úDwgcã±#Ø$:XÚç®Î²Iá¡I³Yrâ|"]=ÐÔG¯®A¡@KÆÚØ\į̀î Õë5ª±@"¶\ 4¡.´4`ùlöt¯ØrbÎYëf²Âår[KenËõÁ¼GÎm¹ÞáqB?ïqüùþ¹Y°ôO@Þ½Ú>÷äôkr¯ÙÜà¿Ïo"¶ ÀÝXɨ0oÐ>Ü.ª°.3²@¨9H=òwG¬zéð8àè °Â¸KLîÑòÓêR<XØ«a�|r 9y b#æè. %P0XôWÏ%H/IH =%2 qÀSµtÑ d$Êëy¨×$ÃèXL×Þ6V9¥Hï °À»Xà²hUÃóP¯ôZ1ä7^1lȶEbu>;æÁ¡ItçhLh =]ó#4å@p*çþîøö§öëߥrÒw»õXï10 25[LYáe¤W×N6 Z2ÏË©vÓw¿ºôwOñ6åÏ´< +Óú0*<_Nûôûâ¾?xÔÚ\âQÈUróTCÎÞ=!]ïc¿*|Ku +fëèO×¢£e ÄÉJC&ç¤gÑñÚhFdhÊJ[FÍP^æGf(ðÔÃâéÕA"¸ÇKc``¬O C,#1 EÚ(2KÀßî÷Ê'ð`Áð{,ò0ÊAì30lqkèxëÇeÐÒe¹Ã5¾þ¼àÖ>LUÿÒ`?5{g»þ¼ÞÂÇô¯» s¦7òéEn@ÇVâè÷=ík"â§(#A;øøuÑÐ]7 wÂ2?"u;Ì .Ó¥�«AtÍOB¤ÏÀ²tô ¢¿oáPç÷)¤ |~Õf~ECïä©Ëú6y +Ñïô±¡óö±w`¤7°ËvôÄÇ9pÕÜ6 £mÀ1páDØûÀªáóðMjÃ:ù¨%ª¡äxàáõXfz ºRÈòU£�¨áe(¹Fìé¥Y+ögôªMõñezÖÕô.S +NS&3iB<tÔlÌõá5 ø#Ge¤^¥zVætݲzt +Å ýÎÜ×Ò;(C®}(£,,ZXÁ§3ͧíMgµ6¹kzÓ{,ìMg.32¥ýôé½òâ¼ ´¯<mµ`Ӵϰwìg;ª2ÄÐOÀR½²è:¦['(�zaNЫ=Òó Gºw0ÜkJªqMùHéó:hûÃØ<Ϫ!%ÄÉ.i¡§må:Û¼ !^ãâjøÆ ±¹Y»ù³¸èÆE}¶D~|0>/³äòÅ¥j¨iÝzàÝ£pl¨á ÊI×ıÑRÇNÿ¯J{}ø°Zk]Qëàf uì¢gêÓ[Ïs¸õA\ËÛG-ðBò-;v:ÀñîM,ðÖ;²À£u+ßwrä 5T %¯ýµoDÅ÷¬úü~U�lR�aÙIØ]@DØË{"Ì' nÀPj¨:W¬Ä:7(ú6H�Gë&,z34cÖM½É}T%$ð^Jäè¼4=»GÏ4î.Y=´"z㡼J71Ï¡F¿ïi<ͧñЬ¹"Ýì¾3@H¸@èB¼¬ws¨{'àÝ£à],´=1êÛ dÔ¦Wu¥`{t&h õ¤tÂäíÆiµzp »s:È ¡ã.;1êA5<¸G 8aK¨£{Y» +èïþOíhí±çOQ¡é�íò0,³ã2°B! YZÑmìyéÙ°? ÷#M"ùÅ6OZX×Å»v¬¯}Á{þbQ 1ù@µbki£*,°3(@Bähÿ±ês" +ÜÞ<©àÀH~µÏЧsd¯d:ô0c[¨@µ Tpp*{ûÉ«¤´A1Ö2AÙäÄ2Ù§)dÓJÃÆì¹Å ð\jÕ§aëúÕCÝ©*Ø+ÎdîQ[j0yë¤g0yHcÔ8ôúyý¼îmèסbêÛ{ycY{¯·þï{aò¼+<KmøRï<|ÐÇ4LºcÈaê} ÑÀÐ0 ôÌ::ȧú.¢±9 X 3uáÐ=õèLï)jZõ%Ec¤í3CÖòL-.ê"úZbO~·47YøoR¸½GkÆé¤ù.·ÿü@½Ï0"4fÄhàË ÜG~ftÛú¯îBQ)kKÓ+ÚPX§+ÚÞktHýËhwàR^Aò¸ÔßÖûÔ_?àRßclÑ? 7_O ã!¢8îGÛcµd n@/PKPôѳùרdÄO}XQÛcF}BÐ꽺IÙ@oÂüÒ}|;t³Â˯]J¸ªV¦ù2C0×ùôÛû�}4ðäè<NHõh1`[æø�ÜìÖÙù®&óñØéÕ-ÐÚãA÷õ¸KöúÀQemÊ(îtàºÀßëªzçQch¿ðFsHÎ\ÃB¸":ú_È#p4ò>cêÌ]x4ê Mxÿ-|Ë@k¢)çÕ=ØëNI³¤üé*>Ø;CÒûoMøÓ-6äÀçÿZ'¹§!5!ô§×k_åA¯·"¤×G-ø�£j¸bCÚ¨!- ì¸|@-3íÁepdáïy¨WF`È16ÆVÚòLü!Ù±ÏÐr8öZ2cöÐõË3qô·Óï#ÇÛ©èõ&Ä÷äÍTÝ»h8õfª²!¬Iº ¯Ï.0ß%!ÿ�6:6sè¶`Ã'�sÚ!ÇúZq{abL\i¯°Çû§#à9{'-ôcck²wÒXÉbB(² wP Þ{³Úû)ÜÁñ>6eªÝ´æcÓ¾ÎßÉÂØóv=ÅtH^ª¼`S¤` p½0¹¦¹íÐïéñý{\©·ß_D?Lâí¹Àµ¶l©¯¸à+ÐC6+j<¤cBT�êMçgR¸¿â¢èåV/Ïf×ÃëRÒû¹Ðd£ÎsªX¿¿9ð]¤µ×�ßõ÷ºÞó]àô·Z1ußÞ[®v³¹m@ȱþ[q£î䢤*Øt§ì×XÉT÷ôõ!¹wVzmïÈwêå@¯4°Î`·õr¥½"ǵÓÞ¾¡dÏÛ8÷Iá)d1ÖéBÁ¤#jÞ«Â]wj®DرûÜES·è q':è;#Sè�}g¤ú#¨uÕºSP²¨<á ÈwÁÞ£wAܰ:úzÁ ÈÕ³Vqt»}½&¡Þ׫¾¿ +,ÝM±ÜÇeP ¯mµºàÀ;T#½¯1Dz_¯¤Ð_óÔ×Ö×kCBèéë¥Þ¤¯×TõåBjèè)ê^O9ð®yÅ|pôGôÊÅÓ#_sF¨ßk!m"O3�/C}ÖxÐ<2^0¤)!E|#RB)˹zdËtíÌ_>X0Ý(pLðÙoÓwpùRðXÚäÊÐ$Gîxïë¬z ó××ÔNÀ)ÛùkBËð%À-ÂVmË´7ª<È{͵0£tL¡htd`Ó^æ°¼wP.Tl¬£bªÙâ; ©redþ¾¹³upý2âWèþ¶\Χ¨Y×åcZ3<Ãq¤nÕ>}-¸m_ï<^ïûck,tÿÞ&Àèmij:P¶þûüÎzùdùHõo@J <ê.M¼ïw¿(B³*BØ¥±î÷;P0äÒúü׳adZ¬»4Ý9JÁÍ®Ö}~T ûü¨Zóùa%´I÷}&ð@Jìè¬ÈÐém¿IÀ`õnÄVÄ\ é20#rÀ{jæ'rMÍìn·ÕZ¨` ÎÞg w© YWHv®d©[½KãÚÍ¢w^ïúî]ú]`S¥hZG*FûCì``S_Þ^ÿÿ· +¦ù+^Ç++aôáȳ¾¡ +Øócz] [sðüÈ.å +Yïwû·w2-ßÐzG)xëu·pÅ?/ +TUìý<};x[¯¿Nèø·ÓúîÕ;�Ó=`×}4Ñhìè1LKr;^C0 euðT´xX +b¡G +ÜÞqtþdáSds¹º,àðP õètA,ôÔÞÕÞå=!ä=OÅ ô +¹o"î,Т Ý) å4«ëý>ï¹dÐñt ÜÌ®Ù]ôçóE@O�¢òèî!³aCó3gÀº<äX]W¡;å¨Þñô,Ð#Ñi¸àëTG¨7]µË'A@[ò 3Q΢HØ:ÿ4KÀGa§^½ KÄSt² dm¢�µ@>Î2R %rô-ºÌØê}k¡K§«LgáܶÞ×ë£JëóûîY~�yRi ¯ëuo¤öè»-w4$ hû]æÍÌYH¡6½@ô I0ô &" ðôçÂp ÞPYã@¯¡IWh{Ro¹ ÄÇ-GQê×m½þûµ¡Iï÷)LA]Ö(±÷C2tµCpÄ$a;2ãïfTÏß è¾ØXèIJ0£,´·CÁ'p²pÌ{ØÑ$Áè=4D77h¦>aÐO0#è쩺ZÀFY<Tøjw ïYèÈÊÖ.c6%AHDz¿ÔhÞ väq,)`+ Ïõzýç?"¼Kõ1r}ÿÐÒõRñK t² +±{ÔzHX 7"ëPÑ=�>kYs¨ÌZPCE@´*äÕzE*à@÷Ò*�BøvÊds, e9`R&rXÙ1v<*Ä{S²+æ +ЬôµXô¡ëL S$ þ~Á çåoÌ1Ål¬J×ðIÅËQë¹jü6s¶³1»çÒÒ3¨¶öèäRɼQïÅ@k + ¢ëÊÅ2mÕ-½|ÌEC1ÌÅgGW¢>Ê\èÙùÞÅâ(Í(é׺]·ÏÈ'¨e ¡|?úfUÎèzvØSQù~à7]^ÐÏ·a]¿?O@êë 5Ú½þb¾ÁÍë�kø¿OOÈ·Ô¥óyîÓ,7ÝFhéOóÙ *yõb ×T$(ú \¸Ë÷ãâYëü½uiÿÖùE¯J)ë ù0ê¿cØ3ÒøLkãvùíI\?нíGíP{Åo`ZulkJ w9ÞQ%AS:ê[¹Pª²´|4W(KáÝóv{:y;;ÖÍÛ¹À·£b*%Kfçý ;æÉYvÄ84CG¦u§é;ÇoS¹]r\Mç^»dVÕ I5 /YUDÏQ`FO¹=ÂÑÒïnåÓàm¬~¦(_¬_6ä Þ»Å^ºz"ÌfnÀÖ«"D(X°Ñ) ã�¢?ÔÍú¹ÀÑöCå�QÂʰ®ë¢*!Ù7äÎ8vC+äéV=iäÝ®!ew*îcîrÞ6ý¾ã©Îw¯bz¤y#bJ¬CÜØéûÇÞ|æbý`Ö" +:¢w.ó!Ã"2A9°@ +êØèEPµòS`*¯ÐÑÿ`gNî5`}²÷¦^xeÐ,KdAÇU^ ²ìÉï<FRÿ!¦ ¹ÓnQаáì-õ?[<¿ïÕ@ëRµ_ï̾.w¼l5>_¤ß¨xÿ}½#¹!½ÐìS«çÊ"w Ö¹}°æ qPFUÎÂÖÎzºÿ:õ£·îFÈ})ðõíÔÞ²ª> ØÊ¹r§] HBÖ{ Ð(fxÇÅ¢ªá6àè´ +8zÕÎÖ]#N7°a)ÖO°AC,gDbÈôaR#Ï|âðÈøö¨)Øêã#f¡,F(Ä:²Õ°lÑòùÊÇë´G`ÿÁ¯#¦e-eÔ±5{òfÇôäY ×XîbOy +74d:v([Òº~Õî2Ïkà)Ü�úM7Ññ®G&B¶º©LoÐßÉl&¦_ ÇW^úÐ'Õw!þ?ÃÓÀ5§? +8Ú!ôQv'Æï7U,<¶K3æ¢@f¬zuèz&£.È;º{ãà\W_'z*8Ï Ðê¥yÖXÏâD)¦i)ÈßT ¼1ª. Ãùqt©tL1lÅ/µõFI ·Ú8É;b̲rÁR$'ßdhõà*Ϫ_JXð2d¨"¯HÄéï +¤Tf_;Li!P£`;O¬ü0@Õ±zè×9ò +Ä\"´Ær|VH,÷Ì)é¡)²DòôµC¿õÙcÁe¹å1äúóòk)ag9{t·Ô§ër½»þ*Ñ®õß'?¹Xÿíòu0¬{õ£ èÁñ Þåëv!ÐTòYàhá äRkÏߣ Çú±ê©ØÊ£ £¹×ÈiaÆ'p`íp:aê }îX±ë qa;ÆïoOÂ8Â-?2ãg¿Þ(Ì6-la-¬0ù/vv»0´i²£D7ÚÃc¸&,¦ÚÈòÞtjÂXh õW³>¦ £ 8ú}díB¥À¶Lø¢-ëvìº3¬#r<do#y0z×7¥VE\¶Ð¾¹ pbó'÷áUçò!ù¦Ç_^ÆxYu_®ûhëã÷_%Zßìýþº¨¿Ï_ûóßÖ·³½æ÷m<ù?�:ßâOWàò¸»;Åg¹ëÐ"2]Ü¢Û·ëÚâ*Ô]}gMMÚäÏçóØNI 40·¬GÖ±¬l,H"² Í9LD{ú»LV¾Ï°6p¶åËúº¥ä,Pl´¬ôéìñ®·ôp6Õå o7Âëì»QÙàÚìqÚØ¸à:½ r!5:V÷ú22.ò¥¾µª³©+L·vº%°·Ë5Þ/³ë<Øöå©À~ô:KôzôMè¬T»·{^ê½¢õ²Cü}=¬¾5¸'*Û=�~Þ3:/<KÃëþ:¬D;~L`}ÀØÝòX }Hzãöï(QEêüµêÈö¦øùF½í]óªúZ_¾P¯ÑZ½jF)~XÕÏËÃù@u8«ðß«»ëïM\ßÚõ±å£ÿ>aE¯ôOú°³ Y}ú;Å]G×|þitTaÁ¾áfo¢|<Fʧ×CÓã�2JQÇSÆÀÏë¾,î¦HÒ#ߣcç8ï#±ÉÓñ¸¡[Ë1¤pn|é n|=ÑkBV³\ö,nÝBoëõJðï(/èÐ_OàÒÃ'íð4µ&Ç'îVÊHm£^^|®=Á²:ÂëòéöuIè&mþü"Ù\vá¥Ñ¿ðÈϯL~Ú$O%C´×¤"gËQw£3çôDorÍcPìeµ³ªíQµËØêÈjqõrQ«Ùöÿ5êèY"VﺧiL9r÷<?3ùJî-Hxe£iI\£F3kVM+¶5y{d4-kÐhZÏA£Y¦GØNAÐn¶ +6[zyÈâ<÷tµäìÉ¡%9¼«ê2Öé¤öHXûÔ«åûêxÚxü¸>^³µn[µH÷òõ�s__ytùÚ¥(¶ÙÄ/ö$Íh½\g`ní4Ñ( ÆI3·å sÝ}ûÕËÔº^Ï uݾhè8Wññ8Ä^ÇÁ3b#Å]O*ÈÜè(ü<)ã0täÏÂÏsÃ�ã= õõª+¶u+´ ©Àèf1»Ý\¾OëlA +vÛ¾Þâ<96±®¥ÛYÕ/C%PßPè¤P^Vúº}4l_5ZÃFFK~Áf´E/fIsxå5ÐÝ¿´ºéëõD¬ +B÷.ûÞ4à®äâ-³ftÙ$^ðëÖØlÉQ¹ÕL÷|TÚuÔwº¯¯S«úÂæøí;4#üyP$ʪ5GÖ{Ç£·öÒiL©D³É&V¡KC¯ÍêÐi)®|ã¥$O6;b÷÷;[:<AgÍÝè'Z½cSGÒ 8R'ç ²§FY-iò ,Íë@Þ?_ßÎzÎ ±³¥CÈj9 D;Ûç8ô#ͱޣ£ÞÒ>êAx ¾£óiyghôô÷Y +{c©F]µCDYíóî+ýô«¡ò£Ð×êfyR³Ã×#O[¯9±£îñC¢zùjé)ÈYÓ»1ì8öØe?ãYzJÒ� +V-²Ï±zû_×-ù¯¿úé¿?Â_ýÛËÝß×ýØS£ëÿñ«?îuq{},¯ç7?þîüùÇ~ÿëßþé?û?þéùã/ÿñçßüß_ÿö7?þ×ÿûñOÿòóïÿðÿúw¿þ׿ÿñËÿòûßþûoÿãçÿåÇï~þù/ÿð_üíoûøùw¿ÿÏ?ýöç_ükXæûÿù§ÿó¿üç¾îãw?ÿñÿãWÿû§ÿö«×îþ?-êà% +endstream +endobj +331 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 917 0 R +/Name /Im318 +/Width 19 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÈÁ @@ÑïGpZ +hÃM+*aM)[É®±É;=nôZ'Èaiö&QpzûM`.pØ,VqVB-|;e +endstream +endobj +332 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 918 0 R +/Name /Im319 +/Width 22 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿáÃÄø�1@C,ì pÄFüüþÿÿ��=ÀÝ +endstream +endobj +333 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 919 0 R +/Name /Im320 +/Width 27 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÿÿÃÆ@ØEX 800ÿ?ÀÀ|�q{32@03³1ð3ð±Ãÿÿ�}" +endstream +endobj +334 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 920 0 R +/Name /Im321 +/Width 26 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xm̱ À0�ÁGtöBÑ< +#P¦D¨¬Drqúî¸'¤z[¤lúåÄ@× Vtù1?ë;³[ // +endstream +endobj +335 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 921 0 R +/Name /Im322 +/Width 33 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuı � À'¬ük9#PÚ½¹äBKÄm¨6eÇÎ?6|û\0ø/I¨Tx6.¶ +endstream +endobj +336 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 922 0 R +/Name /Im323 +/Width 22 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xE± @Ñ9£XZát8£¸Ø À7%ÆÂøò(Ö¤f%ÏláXì+±³tTFqÔ÷ñ·SÌ¥ÞJ\tAj +endstream +endobj +337 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 923 0 R +/Name /Im324 +/Width 18 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xeË;0�Á PP¤-"AbNH¼÷¦*<ýsÂ"³L²HUlÒåÌx×Oɸen +u +endstream +endobj +338 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 924 0 R +/Name /Im325 +/Width 27 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5ÊÁ @CÑ¿Z)·h#¤m)DdJR(#q¢Ñ;ØÚh:ëÉÅ'=Åôµö³ØìÌ-o=Xì°ÊÕ/§æj´ùJ¬QòAÉ&ådÝ>&)þ.bË<· +endstream +endobj +339 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 925 0 R +/Name /Im326 +/Width 46 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]ͱ á#tº£°%¸�çS(W|Ýå¯8»ÑÕwuÝc÷JgW¹)z´]c«3Ç&èæò&(üÝ b5@qÌC&6C8ªd ù¾ÞfE +endstream +endobj +340 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 926 0 R +/Name /Im327 +/Width 15 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿà?òS þÿ�dý-1 +endstream +endobj +341 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 927 0 R +/Name /Im328 +/Width 26 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5ÉÁ DÑO8p¤éD3¸¥m)@uAÍä&ªëÄë ËNÂ\õ×^: ÒbfË�~ísºJÐâ²DI}»=\<d{!ñ +endstream +endobj +342 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 928 0 R +/Name /Im329 +/Width 32 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿðÃÿ÷ÿþÿãÀÿùÿÆüÿð?`�áP\O�×!©ýÖ2çû~ h>ÿÃ?@9øÿ?�gàB +endstream +endobj +343 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 929 0 R +/Name /Im330 +/Width 32 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿá?óëøþoàÌÿ ÿþìø°àÿ�Å(ÃÿÿÙÿa�_¿H* +endstream +endobj +344 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 930 0 R +/Name /Im331 +/Width 22 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x¡ 0EÑK**VªD°ZÙä;ìMåä¾Îò=øgÜÉc%wqk,lGUÆØ ±ù?UR#k²Wåt)¸ +endstream +endobj +345 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 931 0 R +/Name /Im332 +/Width 16 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`d`f`C0�C0L�Â ÈØ�ÌÌPÅØB�2 G +endstream +endobj +346 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 932 0 R +/Name /Im333 +/Width 18 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã?ÀÀFÌ ÄÎ@|ì | |øÈ86È40È20È10Ø`°xÀ`Q�B 0TÄðÀ!A�µö¡ +endstream +endobj +347 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 933 0 R +/Name /Im334 +/Width 27 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUñ 0�Á·R¸LK!F LáÁ£eOB $8é¤`êTicPyîòP=¶ÓXîÉÿ».ïm=fÌ 4Ò +endstream +endobj +348 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 934 0 R +/Name /Im335 +/Width 9 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xo`BväB(´Â(|ORb�ÍB 0 +endstream +endobj +349 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 935 0 R +/Name /Im336 +/Width 26 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-ÃÁ ÀÕ\\&RJ»ÒèL7ÜN2_<ëEÁ ÓÊ®C'ÇÞäM«: s|éVÊ +endstream +endobj +350 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 936 0 R +/Name /Im337 +/Width 39 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=Å¡ 0нB l] Å1² ¢HF`Â$À]÷è]A'p*cF Né#&%II rÔ +F±/Æ7eWËGòKÃ1À3Ü«»ñ�I( +endstream +endobj +351 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 937 0 R +/Name /Im338 +/Width 18 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã?ÀÀFÌ ÄÎ@|v|øøäd`Èø +ø@Hð4$°3��kìb +endstream +endobj +352 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 938 0 R +/Name /Im339 +/Width 26 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMͱ À �ÁG.Ü9 æ `(JJÆ(@2)ÑëêG7äÝ`)iß)âÌrh¯ñ³Qÿ<,ÐèÔÐ,jdq,6r·;Ó +endstream +endobj +353 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 939 0 R +/Name /Im340 +/Width 26 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏÀÀðåIÂÿ ØÈN`g<À ÏÜÀ Ïãb ®b Áòç$Ró�¨?�õý�â ¶aøÿàÿ�Ç +endstream +endobj +354 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 940 0 R +/Name /Im341 +/Width 39 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃÿÿÿ0°`ÿ�$� ? ¢DÔã%ê`ÁÚ@úÿ¿Èå�3$ËøX ¨éøÏ4Éþàÿ��âEã +endstream +endobj +355 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 941 0 R +/Name /Im342 +/Width 19 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x± @ÑoHÄ d :VaK:o´åư àËù¥TéIGmµ#κ&!à .06i¶Ó,»V×ÛÕÿ»f +endstream +endobj +356 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 942 0 R +/Name /Im343 +/Width 6 +/Height 6 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ø�á +endstream +endobj +357 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 943 0 R +/Name /Im344 +/Width 17 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcH``|ÀÀÿáÿÏ)@õÿ�?± +endstream +endobj +358 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 944 0 R +/Name /Im345 +/Width 32 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°a``xÌÀÀxù`sc;ùìøâ@ùÿ0ãÆåcO3[س1TÈ÷0üà¿ÁðýÃæl5?ØêøëdìÿÙ Ø?�� +×#â +endstream +endobj +359 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 945 0 R +/Name /Im346 +/Width 40 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÇÀðÁáã Á'X0ø1pîP¢A¹H8ÃæFvFvÁÜ%[øDÀÇÀ¼@J0aà2 6ÿÿ7��÷é +endstream +endobj +360 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 946 0 R +/Name /Im347 +/Width 28 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿAþ?s?#51;{ÐdÆ,$ +ø�!C +endstream +endobj +361 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 947 0 R +/Name /Im348 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc~Àc À¡À£À�@XÃc'a¿Aþûöêäø°`À¦ö�ËQ +endstream +endobj +362 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 948 0 R +/Name /Im349 +/Width 10 +/Height 3 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûà?�º> +endstream +endobj +363 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 949 0 R +/Name /Im350 +/Width 25 +/Height 2 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿà � êû +endstream +endobj +364 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 950 0 R +/Name /Im351 +/Width 48 +/Height 58 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿðÿ``ÿÀ"0ÈQÉüÁþ�ÿÿþÿÿÀ +? �ôDvK +endstream +endobj +365 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 951 0 R +/Name /Im352 +/Width 8 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xccgc�FF))�oÌ +endstream +endobj +366 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 952 0 R +/Name /Im353 +/Width 21 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcooà<ÀqÁãà ²`#æJ`gxÀÎp±½¯¯d Ã�pG¹ +endstream +endobj +367 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 953 0 R +/Name /Im354 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc>Àc !aÀcÀSÀÀÀöÉðTJHð°?�� +endstream +endobj +368 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 954 0 R +/Name /Im355 +/Width 19 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÁ ÿÁFÁ¿¡ý@û iÁ~¿äl0@.P°?¨`ðTð7TÈÌaÿÁ��·Î[ +endstream +endobj +369 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 955 0 R +/Name /Im356 +/Width 31 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xEñ 0@Ѧ2Ef°¶È*N"7Ú,-$§I<¼@ôËNXÞÛëw¿ÇRAÞIÆáÍÄ$t"ö3¡´&¹¶Sæ!» +endstream +endobj +370 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 593 0 R >> /XObject << /Im318 331 0 R /Im209 218 0 R /Im319 332 0 R /Im203 212 0 R /Im320 333 0 R /Im204 213 0 R /Im202 211 0 R /Im209 218 0 R /Im203 212 0 R /Im201 210 0 R /Im211 220 0 R /Im320 333 0 R /Im209 218 0 R /Im321 334 0 R /Im321 334 0 R /Im204 213 0 R /Im205 214 0 R /Im209 218 0 R /Im208 217 0 R /Im322 335 0 R /Im320 333 0 R /Im323 336 0 R /Im132 139 0 R /Im109 116 0 R /Im117 124 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im108 115 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im248 257 0 R /Im108 115 0 R /Im101 108 0 R /Im97 104 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im99 106 0 R /Im117 124 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im117 124 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im108 115 0 R /Im111 118 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im106 113 0 R /Im108 115 0 R /Im103 110 0 R /Im97 104 0 R /Im112 119 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im99 106 0 R /Im117 124 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im74 81 0 R /Im277 288 0 R /Im99 106 0 R /Im108 115 0 R /Im107 114 0 R /Im291 302 0 R /Im108 115 0 R /Im102 109 0 R /Im106 113 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im122 129 0 R /Im139 146 0 R /Im96 103 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im102 109 0 R /Im117 124 0 R /Im108 115 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im108 115 0 R /Im103 110 0 R /Im97 104 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im114 121 0 R /Im104 111 0 R /Im98 105 0 R /Im103 110 0 R /Im104 111 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im108 115 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im114 121 0 R /Im93 100 0 R /Im102 109 0 R /Im124 131 0 R /Im101 108 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im74 81 0 R /Im342 355 0 R /Im343 356 0 R /Im344 357 0 R /Im343 356 0 R /Im357 372 0 R /Im283 294 0 R /Im219 228 0 R /Im232 241 0 R /Im358 373 0 R /Im283 294 0 R /Im227 236 0 R /Im230 239 0 R /Im301 312 0 R /Im227 236 0 R /Im231 240 0 R /Im231 240 0 R /Im218 227 0 R /Im224 233 0 R /Im230 239 0 R /Im219 228 0 R /Im359 374 0 R /Im227 236 0 R /Im221 230 0 R /Im219 228 0 R /Im224 233 0 R /Im232 241 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im103 110 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im113 120 0 R /Im96 103 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im360 375 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im253 262 0 R /Im101 108 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im128 135 0 R /Im360 375 0 R /Im98 105 0 R /Im95 102 0 R /Im348 361 0 R /Im131 138 0 R /Im133 140 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im139 146 0 R /Im96 103 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im123 130 0 R /Im98 105 0 R /Im101 108 0 R /Im104 111 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im245 254 0 R /Im113 120 0 R /Im99 106 0 R /Im106 113 0 R /Im246 255 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im245 254 0 R /Im117 124 0 R /Im93 100 0 R /Im93 100 0 R /Im106 113 0 R /Im246 255 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im116 123 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im103 110 0 R /Im108 115 0 R /Im105 112 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im123 130 0 R /Im99 106 0 R /Im100 107 0 R /Im93 100 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im99 106 0 R /Im97 104 0 R /Im104 111 0 R /Im115 122 0 R /Im102 109 0 R /Im93 100 0 R /Im105 112 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im107 114 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im105 112 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im95 102 0 R /Im98 105 0 R /Im100 107 0 R /Im123 130 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im122 129 0 R /Im93 100 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im108 115 0 R /Im97 104 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im97 104 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im95 102 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im106 113 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im95 102 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im126 133 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im107 114 0 R /Im117 124 0 R /Im93 100 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im106 113 0 R /Im93 100 0 R /Im114 121 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im113 120 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im114 121 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im103 110 0 R /Im108 115 0 R /Im105 112 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im123 130 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im98 105 0 R /Im101 108 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im117 124 0 R /Im93 100 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im108 115 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im107 114 0 R /Im94 101 0 R /Im96 103 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im123 130 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im108 115 0 R /Im111 118 0 R /Im106 113 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im100 107 0 R /Im123 130 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im114 121 0 R /Im96 103 0 R /Im100 107 0 R /Im100 107 0 R /Im107 114 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im160 167 0 R /Im110 117 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im238 247 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im116 123 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im94 101 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im74 81 0 R /Im127 134 0 R /Im93 100 0 R /Im114 121 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im106 113 0 R /Im138 145 0 R /Im292 303 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im139 146 0 R /Im96 103 0 R /Im106 113 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im118 125 0 R /Im111 118 0 R /Im112 119 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im120 127 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im126 133 0 R /Im112 119 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im100 107 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im361 376 0 R /Im214 223 0 R /Im346 359 0 R /Im362 377 0 R /Im118 125 0 R /Im363 378 0 R /Im235 244 0 R /Im107 114 0 R /Im363 378 0 R /Im249 258 0 R /Im107 114 0 R /Im74 81 0 R /Im74 81 0 R /Im74 81 0 R /Im107 114 0 R /Im363 378 0 R /Im364 379 0 R /Im120 127 0 R /Im305 316 0 R /Im118 125 0 R /Im199 206 0 R /Im365 380 0 R /Im364 379 0 R /Im366 381 0 R /Im352 365 0 R /Im367 382 0 R /Im235 244 0 R /Im118 125 0 R /Im363 378 0 R /Im362 377 0 R /Im352 365 0 R /Im120 127 0 R /Im120 127 0 R /Im235 244 0 R /Im368 383 0 R /Im362 377 0 R /Im137 144 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im353 366 0 R /Im369 384 0 R /Im370 385 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im126 133 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im353 366 0 R /Im369 384 0 R /Im350 363 0 R /Im370 385 0 R /Im98 105 0 R /Im97 104 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im126 133 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im117 124 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im117 124 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im139 146 0 R /Im96 103 0 R /Im106 113 0 R /Im111 118 0 R /Im112 119 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im248 257 0 R /Im108 115 0 R /Im101 108 0 R /Im97 104 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im118 125 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im120 127 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im105 112 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im118 125 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im120 127 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im347 360 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im117 124 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im139 146 0 R /Im96 103 0 R /Im106 113 0 R /Im111 118 0 R /Im112 119 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im94 101 0 R /Im96 103 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im98 105 0 R /Im100 107 0 R /Im123 130 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im113 120 0 R /Im108 115 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im123 130 0 R /Im117 124 0 R /Im93 100 0 R /Im93 100 0 R /Im106 113 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im118 125 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im248 257 0 R /Im108 115 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im105 112 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im113 120 0 R /Im96 103 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im112 119 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im120 127 0 R /Im74 81 0 R /Im135 142 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im213 222 0 R /Im108 115 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im98 105 0 R /Im97 104 0 R /Im101 108 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im98 105 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im113 120 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im98 105 0 R /Im101 108 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im107 114 0 R /Im99 106 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im123 130 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im103 110 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im74 81 0 R /Im119 126 0 R /Im97 104 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im114 121 0 R /Im105 112 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im74 81 0 R /Im109 116 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im123 130 0 R /Im98 105 0 R /Im101 108 0 R /Im117 124 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im159 166 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im117 124 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im123 130 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im114 121 0 R /Im98 105 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im105 112 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im123 130 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im105 112 0 R /Im96 103 0 R /Im106 113 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im99 106 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im101 108 0 R /Im115 122 0 R /Im102 109 0 R /Im93 100 0 R /Im105 112 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im98 105 0 R /Im105 112 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im336 349 0 R /Im258 267 0 R /Im335 348 0 R /Im257 266 0 R /Im243 252 0 R /Im298 309 0 R /Im258 267 0 R /Im259 268 0 R /Im333 346 0 R /Im257 266 0 R /Im239 248 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im112 119 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im126 133 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im113 120 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im74 81 0 R /Im347 360 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im108 115 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im107 114 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im139 146 0 R /Im96 103 0 R /Im106 113 0 R /Im114 121 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im104 111 0 R /Im93 100 0 R /Im102 109 0 R /Im102 109 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im121 128 0 R /Im108 115 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im113 120 0 R /Im100 107 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im111 118 0 R /Im112 119 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im107 114 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im258 267 0 R /Im335 348 0 R /Im335 348 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im213 222 0 R /Im108 115 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im93 100 0 R /Im115 122 0 R /Im114 121 0 R /Im104 111 0 R /Im98 105 0 R /Im103 110 0 R /Im104 111 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im284 295 0 R /Im285 296 0 R /Im239 248 0 R /Im258 267 0 R /Im255 264 0 R /Im286 297 0 R /Im287 298 0 R /Im243 252 0 R /Im285 296 0 R /Im260 269 0 R /Im107 114 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im114 121 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im114 121 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im114 121 0 R /Im104 111 0 R /Im98 105 0 R /Im100 107 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im238 247 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im117 124 0 R /Im123 130 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im98 105 0 R /Im101 108 0 R /Im96 103 0 R /Im121 128 0 R /Im108 115 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im100 107 0 R /Im98 105 0 R /Im124 131 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im102 109 0 R /Im93 100 0 R /Im108 115 0 R /Im117 124 0 R /Im104 111 0 R /Im93 100 0 R /Im108 115 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im107 114 0 R /Im114 121 0 R /Im104 111 0 R /Im98 105 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im93 100 0 R /Im113 120 0 R /Im95 102 0 R /Im98 105 0 R /Im93 100 0 R /Im108 115 0 R /Im101 108 0 R /Im100 107 0 R /Im123 130 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im97 104 0 R /Im102 109 0 R /Im108 115 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im114 121 0 R /Im98 105 0 R /Im100 107 0 R /Im100 107 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im94 101 0 R /Im96 103 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im98 105 0 R /Im100 107 0 R /Im123 130 0 R /Im105 112 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im98 105 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im114 121 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im123 130 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im92 99 0 R /Im93 100 0 R /Im94 101 0 R /Im94 101 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im112 119 0 R /Im324 337 0 R /Im74 81 0 R /Im277 288 0 R /Im93 100 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im95 102 0 R /Im99 106 0 R /Im98 105 0 R /Im100 107 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im74 81 0 R /Im273 284 0 R /Im142 149 0 R /Im273 284 0 R /Im371 386 0 R /Im145 152 0 R /Im372 387 0 R /Im148 155 0 R /Im373 388 0 R /Im155 162 0 R /Im147 154 0 R /Im309 320 0 R /Im148 155 0 R /Im341 354 0 R /Im148 155 0 R /Im153 160 0 R /Im144 151 0 R /Im148 155 0 R /Im150 157 0 R /Im148 155 0 R /Im275 286 0 R /Im158 165 0 R /Im155 162 0 R /Im158 165 0 R /Im310 321 0 R /Im145 152 0 R /Im275 286 0 R /Im342 355 0 R /Im343 356 0 R /Im342 355 0 R /Im343 356 0 R /Im344 357 0 R /Im236 245 0 R /Im374 389 0 R /Im160 167 0 R /Im110 117 0 R /Im114 121 0 R /Im99 106 0 R /Im101 108 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im160 167 0 R /Im96 103 0 R /Im102 109 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im102 109 0 R /Im128 135 0 R /Im160 167 0 R /Im96 103 0 R /Im102 109 0 R /Im131 138 0 R /Im293 304 0 R /Im133 140 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im113 120 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im102 109 0 R /Im96 103 0 R /Im95 102 0 R /Im98 105 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im128 135 0 R /Im160 167 0 R /Im130 137 0 R /Im293 304 0 R /Im132 139 0 R /Im133 140 0 R /Im97 104 0 R /Im93 100 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im117 124 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im93 100 0 R /Im160 167 0 R /Im110 117 0 R /Im114 121 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im94 101 0 R /Im96 103 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im104 111 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im99 106 0 R /Im103 110 0 R /Im97 104 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im97 104 0 R /Im93 100 0 R /Im116 123 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im74 81 0 R /Im119 126 0 R /Im115 122 0 R /Im114 121 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im95 102 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im102 109 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im117 124 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im121 128 0 R /Im108 115 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im111 118 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im140 147 0 R /Im103 110 0 R /Im98 105 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im97 104 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im375 390 0 R /Im74 81 0 R /Im376 391 0 R /Im377 392 0 R /Im163 170 0 R /Im171 178 0 R /Im182 189 0 R /Im167 174 0 R /Im185 192 0 R /Im176 183 0 R /Im168 175 0 R /Im166 173 0 R /Im169 176 0 R /Im263 272 0 R /Im166 173 0 R /Im378 393 0 R /Im379 394 0 R /Im176 183 0 R /Im167 174 0 R /Im166 173 0 R /Im169 176 0 R /Im263 272 0 R /Im166 173 0 R /Im165 172 0 R /Im176 183 0 R /Im174 181 0 R /Im182 189 0 R /Im166 173 0 R /Im168 175 0 R /Im171 178 0 R /Im172 179 0 R /Im169 176 0 R /Im263 272 0 R /Im166 173 0 R /Im168 175 0 R /Im182 189 0 R /Im185 192 0 R /Im185 192 0 R /Im166 173 0 R /Im168 175 0 R /Im168 175 0 R /Im171 178 0 R /Im167 174 0 R /Im168 175 0 R /Im171 178 0 R /Im172 179 0 R /Im176 183 0 R /Im163 170 0 R /Im171 178 0 R /Im192 199 0 R /Im166 173 0 R /Im74 81 0 R /Im380 395 0 R /Im196 203 0 R /Im171 178 0 R /Im269 278 0 R /Im166 173 0 R /Im165 172 0 R /Im166 173 0 R /Im167 174 0 R /Im185 192 0 R /Im174 181 0 R /Im166 173 0 R /Im165 172 0 R /Im166 173 0 R /Im167 174 0 R /Im169 176 0 R /Im263 272 0 R /Im176 183 0 R /Im169 176 0 R /Im180 187 0 R /Im164 171 0 R /Im183 190 0 R /Im263 272 0 R /Im169 176 0 R /Im168 175 0 R /Im166 173 0 R /Im166 173 0 R /Im180 187 0 R /Im177 184 0 R /Im176 183 0 R /Im174 181 0 R /Im179 186 0 R /Im263 272 0 R /Im176 183 0 R /Im264 273 0 R /Im175 182 0 R /Im166 173 0 R /Im169 176 0 R /Im176 183 0 R /Im164 171 0 R /Im168 175 0 R /Im163 170 0 R /Im171 178 0 R /Im169 176 0 R /Im185 192 0 R /Im171 178 0 R /Im180 187 0 R /Im179 186 0 R /Im182 189 0 R /Im169 176 0 R /Im164 171 0 R /Im163 170 0 R /Im183 190 0 R /Im169 176 0 R /Im263 272 0 R /Im166 173 0 R /Im180 187 0 R /Im164 171 0 R /Im163 170 0 R /Im164 171 0 R /Im180 187 0 R /Im176 183 0 R /Im265 274 0 R /Im165 172 0 R /Im176 183 0 R /Im174 181 0 R /Im182 189 0 R /Im166 173 0 R /Im168 175 0 R /Im166 173 0 R /Im164 171 0 R /Im169 176 0 R /Im263 272 0 R /Im166 173 0 R /Im167 174 0 R /Im177 184 0 R /Im175 182 0 R /Im182 189 0 R /Im169 176 0 R /Im183 190 0 R /Im166 173 0 R /Im163 170 0 R /Im166 173 0 R /Im167 174 0 R /Im176 183 0 R /Im169 176 0 R /Im166 173 0 R /Im168 175 0 R /Im182 189 0 R /Im179 186 0 R /Im179 186 0 R /Im166 173 0 R /Im167 174 0 R /Im175 182 0 R /Im171 178 0 R /Im182 189 0 R /Im163 170 0 R /Im192 199 0 R /Im168 175 0 R /Im172 179 0 R /Im171 178 0 R /Im167 174 0 R /Im176 183 0 R /Im174 181 0 R /Im174 181 0 R /Im169 176 0 R /Im263 272 0 R /Im166 173 0 R /Im180 187 0 R /Im171 178 0 R /Im165 172 0 R /Im166 173 0 R /Im168 175 0 R /Im175 182 0 R /Im182 189 0 R /Im169 176 0 R /Im169 176 0 R /Im263 272 0 R /Im166 173 0 R /Im268 277 0 R /Im167 174 0 R /Im168 175 0 R /Im169 176 0 R /Im177 184 0 R /Im166 173 0 R /Im381 396 0 R /Im166 173 0 R /Im185 192 0 R /Im169 176 0 R /Im164 171 0 R /Im165 172 0 R /Im166 173 0 R /Im174 181 0 R /Im170 177 0 R /Im185 192 0 R /Im176 183 0 R /Im168 175 0 R /Im263 272 0 R /Im164 171 0 R /Im163 170 0 R /Im183 190 0 R /Im164 171 0 R /Im163 170 0 R /Im171 178 0 R /Im163 170 0 R /Im180 187 0 R /Im171 178 0 R /Im168 175 0 R /Im169 176 0 R /Im171 178 0 R /Im172 179 0 R /Im169 176 0 R /Im263 272 0 R /Im166 173 0 R /Im179 186 0 R /Im171 178 0 R /Im168 175 0 R /Im168 175 0 R /Im164 171 0 R /Im175 182 0 R /Im174 181 0 R /Im166 173 0 R /Im169 176 0 R /Im167 174 0 R /Im166 173 0 R /Im166 173 0 R /Im168 175 0 R /Im164 171 0 R /Im382 397 0 R /Im166 173 0 R /Im167 174 0 R /Im166 173 0 R /Im192 199 0 R /Im182 189 0 R /Im185 192 0 R /Im169 176 0 R /Im164 171 0 R /Im171 178 0 R /Im163 170 0 R /Im74 81 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 371 0 R +>> +endobj +371 0 obj +<< +/Length 956 0 R +/Filter /FlateDecode +>> +stream +x¥}É®-ËqÝü}ÅJf[,ÀC8ÔĦH6©á¿÷®]uOUµsE<Üwù²vfd´+£ù÷_þîÇ¿ÿüùÿ¥|Õ)ü_!Ø?§¯9 súª¡üKüZçéÇoþøË¯þûs\~üõ¿þòwßÖïÿõyýúúâ2¥éº> õº¾~¥ýþZàïßÖ£ßßþ&ðµ.÷ äû +Ü@3ÚÁëÿ¹}`½QpûaÎ?wP®¿V|! z1Ú%P"æª1-~ d¸(±¼ø(ÝÁÈ5VÈHè §¢1aÌî�}`Q?@¸Tï4xQÿõϸ¦¾ ÊD\9qßA +ÜÁM1aJ]cN@0#¥¯ñÆHwÖp9I´±ft1ËúÀtrX¿ Þ/¡|eHõð¥x¬sýþ7/&xïÿôûëíçÓWÄl +ØÿzcòµôóFëoRnb¾eSèyçÁ°| ú~·óïÿùù�hǸ¢ �ú]`ú<ü M n`7!Å3%I,@P0 ÜÝ÷ jDH7R&ªx6&RûÀî~`?¿"¾á¦Gè-.+PdäI»Eún@çãµÂ Ø7ðÒç°;Øìt)¢ÜIÀi¤L餻g¾¦5[Þê1¥ù++§"«óÓÃ;ÀÚëóT Jú|_¿ªª�b2ç¶«N *²)&dÈæQMÒ¸x¾Bº¤cJ7°h2!ô©î>ýýu~äå àæ2.úÌ©ËX+Ä<#ÖÅ DMÆx8CM¦{e9áq~£@ƪôÆÄwÇtÿ׿~ÿÀÂ;ÚdìUÝc#J<sc'Í1M§åOgìZË>QNÕ]è Ù-$X èr¸b +èx¨ÊªÊø¹4%Ê. Ö$Eï0ït*ùadPG$KAÁ~2=R£hϱ9,uzfˤ9&¨Gn¿Ï4iÕ¸üþ H¶eÁR,õ0äÖIä+B°¯¯²ðͳýWÙÝ÷Ïd°BÊ!5jAzh±P +$ÓÉ7Xa`§õ¥Å¤ 9d `^í£?ÆQGÎëur)hùM误ү³Ã¯âá)8Âý.¿/GT±$ $Ü}ÀRÆU:GYÑz@Ê´@è e$pÙhêÙa¬EcAG¸kQz5Iw@ß +L{¥� [DÒ%!åiBµ`|E$äh7 ð=b.=¸"&t¼v¬ø +eO"¤Êô Ò Ö®Px-BU¦ò¡.Üé7<F4sçR2&ÁícE;¸sÑfo´#òv¦uýZÖ(aûæ\P±EÕ¹ BM"Uiª2'fQa2UªÒ¬m2Ñ5`"òX²À�æ¡Ì£rl(±æ2kTŲ5ÎA¥?h±ÈÖ8M*ë!y{¶B¬iÏ:¯G+ΤjÏÓR¿ç¿ÌzêÄÓ×ëÎ@K¿9/䣩¡ÿå|L}¨_ÿ¥mÀÒ*¼zS¾hG ¯Þ \»~@¹cBw)ñè2Ú®bF$Ðß¶ä'LÍu°¤¹|æR?p§È_G%sAÈzh7Ã+ý©¸¨$Ä4.öûyÌÆõxç-DU/`á}ÿÄWÞW,sqNõy½×¤5þf³tô�XÈil©Ôg(Øé] !VËZ¸n@Oüôd3æaÁÙ "sÁw Çe˨ØÚó´ö`EæHhrL ÃÔùå½#Óóî05M\ð�ĬËõWû¤iR{Ë3k¶%>(f^,FòcO®Ð¥Óyh +\²<AM(»dyÆ, Ãõ¡ñðà ²d½¬phmYõrh]æÑ¤oPKM ÏZÐx¾8'Í HôýgxrXfI=dv ¼Ü)ÉÐ ÑÒThËõ'û:Ù(æLP G«³�ôÇ,0?Sà hAYÀ±o�Ü ¹U½LJâJù5hzü-XÖºÂå;¬ ©`É +Qú¡@]zz,Úböùç<öðÞêÏëõw÷%£×Ý £=¯×_ÝWx|ýÑÝ<Ç +, é}B¤@/2hå|z]E$½+ä¨h·�7 |mÀSL9¬ÓtHÀa¬P"$L0!êÈqÂ$\HÒgÌè 2/C$©Ð,w^â]ò +9¤tË +äº'àÉPn{/Û +¾ßF§õ÷÷2t_¶öÓ˵ý¹<įryößÿæeJær_lA¸ûý×¢õ·ý³ßÝôû/×ÿVë½ý¾ùsçõõFÿß»W?àÐËZÉ¿½·?poÀQ¿füÖbºüü{µúý +Öwü·Óð!£ÁMRNÞ£Áý.ªôü^=¯%ÿ¦KÑ5¦|ÎïrÜĨîõmÓëCÓaÒó]é&¸tûÃí^®ÜA¿if°òó +{¸óÁåÍíÂ7> 40ÇðB0Ók\àî×H i t¦å¦M£ä +¤Ó YxÔãûÓ©%Ãa"i"ÜR(äX¡ kÄ)\ÝÓHìýÙ89 ÉÍ+Z¯cKëuçÖLÎ?¯gkÏÒçºêøûÈ'aý?ft~=#×^/AëßÑÛ�Ï p2Èq¤ t9e Dé +é +¤ ïmõ]£,|Ôñ¼p¸½L]Ðz=ÆÎÐNJs9®ð[¡I®<b.HfÿN ×GÅ +#´Õm Ý,a|ïë÷/n)0ïÐ&Ï KUpSÀ< çãÆq1Þm¹ Á`dXgï¼{ºONt\,Û²'ÑäU¹_1,~M0<Ú`Þlø"eýæÈS]i4ADÖ$iºhÜ-Y Ìù�¨Ì=Èß?(ï¡ ½WdñÏÎwe"aeèH.©®s@U/YÏP9ÚDY÷ûHlsBæDOªÍIóij|ÆæLÂ5åÄæ£='6HA=£"väÐÔgª<OUyzÐÓ�fÆ^±À+^¾l½ªYƼsê÷w¬ @TÀwÀýëM"vgô¤É�oÜyXV£%C +ê],o(üìu$ÁJqj,2±\ÑI0©k¢I1{óÙZìéXª²@)Òñµ#eXWÌ©ayæÍT¬do¦boHöfjʼ#¥ïÍ`!ª8®øþn¸¯¯èîMÙ ã+=["X?ëaÆÂfÈc§æ6ÿX¤í³l{6ÝB]1OÚö)8 ùup(à :ôgÓþwDwþÞP2+?úò2EDxëZ©æKÊ[Ò©¯ªNj90=M<{åâeÆ(pA#A5%r&ÁíÌ!?^M/;йÀLq(ÈjAü\°ÍëáïërDôdhæ�"9kCäfB[¤@ÏêÞz<R$Ö yT¤¯PV$IW$ؽ?úÖ 1t¼P8Ú§TÄÄE¬âyTë¨"JXÈ(aE"+¢£LpP%èÐ�EÄÔF?àè 8zã|½Â)j$äe4!>ÞbÚjGõÀqªÂ\°ë-¦¼½ÅtN¡^%G0V´ØÒ�;4ú `\åCç_`dî ï¼ô²çúVx�½F(`{®c]¡«½ñ3.Þ +ñ@IPè03l*´¿é©b^*8«Ne§Ò¯Ëä�UkÆQBP®n(ÐÕ È²)(Ë3EZV!"Xä T±ÈR\# e)®DÈR\adäèOfQIçm¡¬+öäÍf»P°àz¹Åð_ÖbVÑû}ÆA+Þ¿àжßoo]a¬àÝæØ]ÖËÕÎÑ"Ыµ%àRDôsKV*>ÚÒ:E¿PÆ^IlÑz½Â-«@.° p¼Ø¼±W#ö|÷Wog9Dð¨ñcûqeÉj,Øi]C¯pQ¯¤RPjYáôîÈö¤¸Å:¨F,ÖA +¦Íñ¾ÔÐÛ?àîót ]Y°7) ðbÁL$éj¦#¬H=à&(Ç:¾H|!ý + 3äÀ¨t÷õ¼&týªÞ Ùÿª)búLæ(êAÞP~ñÏ9#²¦ñ̯v59W«¤i#»4=H7`i; ÐZEBìèVñ è)¬Ó¨-5p2±6óä-EóüÌç6sø +°;£_ÁM¡¬È3ÔC1,AÓØ 0(:&ì_,mºøå +ï-¶»ðêEåâ¼^íÚRbJ¶ [ê&,«b}`ÁaF[´È2ôèàÝÞÄL§ày@ÃY7è ?åyåX49î´£.mÁBÊb|HÇG£&Æt~[ã*bE¦CÜDéwV2е ¤®§æ;²?Õ¦¥\ËàÌ~ÝÑQ´µ)¸®ëô¼{Ù¾Ì~M|.Ëå¶Ì[û.Û×¹/6Gà²Ùi9àWúéÈNÐÿø\7 ·Ëðut1#ÒcJkSлþÙàÕ+Óë=-Ð"Ü~9A +ê<5gDBG§ôtïR�o@áW¨å'&ë&(QÑj,õ z,Ų;"bBÏø¼ @æ±?þ ØzÈrLj= +2|ë"oE}EJ(P )ºQ&O¶çõzòd AÉ�<®ÎÓ#W(©¾ÿ�ºAÇCWZ "½Q%¼$¨Èí<sPæAx{<ÈÓ_;¤Ô9iÎ�OÕd£³Øy8C-¢?òäyX*zS°FMs|"=ê=á%OÐè<4Ctd¿bCàr ãÃGLÕ½B«¦Hyò)¶¥ Á«GËá]é#Úkõ¨%)ËU¼ÅXgÓ³°ÐædWÈÒo¡ÊyKïÂ"[í + boJgÁªÅôü·U¦gÀMÙEV¶þKÞUÃey¬6<,BëCd¥gÈJÅZTFVîß�fá¡)Y·!O´p :ÐmVm9ÀÍ ,1z]â6Gä´Ü.Eüy¬Ö¦Î?¯×/ü\¶¯·ï´`æ¼GL?pzîo˽½¬Ý>¯×ó&[înÚ ç×Ñù¼hıá"]�oNèAF+¤ ü6'HAGkIaÊ-WåJ�Y Zo®ó²A¤ Ã;x°vy§Þ®BÔ¶ó°-C-æéΩì#5`©·£jàvGÕ@* ÀbÅQPgÂÖ>vÔØ2wù6DyÔ¥R]|ú˼Gîò õFhí)Ö²Ãû/ ú1å'ï"8p±®ÀÕA3|2tä}ê1G@·PV¤R0LØkÛs()3´e²C±Ú\àþõç ¨GýëüÈÊÐzÂû6æòSw5àÉËt +.!áÔ¥£ýb7P;¥qT ²À=}"s9<³ÅºSÄ*bag1ëÀÝA=v»zì�w»dÝg1´"#CeV9¥Ho»Àp³ØÒ7°ª5~¤³Äß;v¤ã¿Xäd4EÔkíÐBþÍ%æCñ:>�j~ù¹íåõ¼-˼{E7CQ Ñi½.þyùÏbóÏËo\öÀr^.[Òµé órÙ^íÀåóÎROÊ|¹s{Þ-ÃØ[34ùÖÁÔm�s÷4õÕrÝáÎ3ÕëîÐnöñ ®ìc xò0ºÇ %wu�C¨¡ +s÷v¸¬wj@ï9¹%/¿qÓô´Içërâ@¹å¤ù!çõ.Ü|À¡ BèÎëõ'Kù»@î8isèëK:NÚ¤ÆË ]¼'xÙ%ç Ȱµ¸¹¬×¹2äA½ãd´¬ÃËôº¸XælRc÷ +¸Jó:DBOoDAGÏ,ò oxÐQ k£"O°à+tt!G$p¼ò@Eèyå p2>â3!°&â° Ùz�äË©A=2"9lrFYØZk¡ThKYH@ÙKPz<Bê ħ4£ßwbYõZçÏ=}ekc.@°7¬ vÔ9 +;ޥ᪠!}©]!ÉÍÖrÈ*X ìè-r Õ«plÊäe¨ +<r`Pîúz<Óu-!{fþ¤Þæ©B;âèõ¨þRõÞ_f!þL£2yzüñÎvá!ýÍP,pº3×gÎD^¡G7Þ$ VÄSý +ëýëÇ ìg2ìé)øPy(X´¿ÓØÝ�ÔD* +Í¡£oµÓ>XèÊÄ7·@ÆÐÑ*"Oôg¶ÀZ°wynàaXhc"ø(Ãdâ:]ÞÙý +ñ1ÀC¼û3Eh=Ô¡£c004!zÅw_:;=Ô¯ë½=Ô¯ë½=Ô»¿ßé¡~]ïí¡~^ïï¡~Yïî¡~Yïî¡~Yïî¡~Yïî¡^K}ÖCÝ¿{&Ëh½»z:¯l=ìõPïqP¯úåôI³6d²Ç¼IºÏ28jॠPõGY½Â>þÒ¸Ìϴд°nD"Ô¢zºËO_ ìÞ¸¿±©Ó ^ s<Uøòå²3¦ÈyLBY¹§ºs ºW&i!F{@q>�ª¥é@Ä£W0zcÄÏlY¡&ÕÛ/'ËèYczVWÛ¹CzR@ouµbkªC3Pé,CÎ Ð>£ µq¥àÑ&È�i(£S2á d$CÊQ*å7¸O�²¢G$uo34kbÌûA{®£Ü6F>ACA�õ"^±1ÔñÉ�=*½ÉMÐÀ»°æUoöÂÛиÊßå§Lð.îê °6AÃRD"¬E3|HÂ7{s/4¤~`hçèt4-뢻OK¥`q^ã_`hçàÂo@ïC¿Â+ÐphçÓ "ÇNÌÄ1BŰCʦ¤&äN8LIÍ*}nâ>Y§_7¢ 9-wßèüórLdÅåçe_ÊRFröì�mp$!Oýy§H@Û1ùq_%Aã±ãíÊ> c;Â{ÞíÄ(èÀv¢%ÏI¨#¤P8+BDXh'¬-äb½Å ÞËôFêâ"G#õñgR¨êá¸B1p¤ò¯øõÄCfoI¡e!/2çiÄt.¢8n{Ê£´èÆ(àh6Sàz}Ì#TeAõLöªÝ yE1¢hÏY"0²Ç¢¢ä}±ÒX.V rQQZ°ËèèßÕÅlV(tit&\±=¸gø°NÌ zì¤q!o¹ð¶I½2=ó&äè¹Gj2ÇH'î}at¹6îlï½} +=øu2¼q4¤¿|@îp¤#÷D2ò¼>cäEt ¦S`òSf¨6¹í ClëÛ3íËWXJì yê úÜM,Fx]¬·ÏEØ+ÒÎdéMg¬IË#BìÀݶ=ÞѶgÔ)UCÖÔˡܰäèê>]T)b`P-f9F-Ä/ìX/´HúäÜ éÙ¬AûÈ¢40°hÙù,:ÐÞQ°èh¬> ½!¦%ô¾"͡ӢÓú»"Ù î¾|k®ËS= +IÎ?/s ¥_N/£ÍönÜùy¼¢åèçG:pgÿ¼cÅ,Ý>ïé¯ã|IÛ�OçEÐxÌéÈç¦@Ñ ªÀðÀ1óóuáÞvÊÞ²cÂWàÙ9*Äí�öäâ`NúXÏI_w䤯-ø¼^¶!rNz²Gß.0¤xE7|9Qa=æèËóôeOP}Ùñè8'TdwdÎèÑðá²9wãèËÞ¹Úp¡B[êh¸ iô¢ßwTf@mP p#`ý +ÐÛ`VÄÃz:±½¹mé&í»¢¬-;bG»øL2V#:ư3 çÔgìéÙÄ9IéÁmf§¤y2ÊCä�EÞoß>AwJçáIåao"vmÅZDV>z& ^Spt[èySkxâ2a4$h¨ +tf¤^¼¯BKäH¥ÕX·U¯Ö'ÈC7f ÌÖUý ÊÖ#Pf!¹ÓñÜÉT!êãç>ì©ÊÌØùçõÉÓ14h4~îcJCÊöï�5aiç È÷t©Ò.A +:":KaìFtÖÄ1t»ù <(Oh½ÎB6¤¨ÃB¼F7ÃЫ'xþV@ëõYi3:§$Ô!Jæåoݺh½1ÔbV¬+b!zl`Z[Wu¦µ]àÖÖS#4¦µnè1-Td6CK¤Ç´Y½BBÁ¤Ø3êë1½hÕÔê¡qõ¢)¥,4a&Ö¡"r$ð-:.´ÒUÀ¶\ÑÌ?àþBt÷_{ò}`ÎÇÓª·ozÄEÈÄ:ª´ßç¹WXõam9<ò&2tÇ<©SºSÀ )3*ò,Û¢\IÁKô¤f�VQt3¯ù+(<ÀÛ@jBÀLá+tL!Ýÿ¢UaPè( <8^> gj Ñ¥½àµ",;0ñË_Y>4é+ZTãªbøh/®J_Ó£ï`{«Þ½êÇð-÷M¶Ç èBYZ²Ô3)8S µEvÖXû|IO´1+ðD°W×ÊO£ÊØ·pp«'¿ÍXËðÀÑ rÐ {æw$²cCù½uKüVdE@ÔD¼L3ìTu¾]b.>:A^PNÀXV{«ééRùµo`ß÷É)cª¸=w;ëÖ:èòórkK.ËåÈr ý9+ó>½Íê"-û²ôNC6â³ 4K|Y/?³ÄnÀáR[n÷ +x,ºCOæä!!.4vo`v9þØjWW +è' 92¯°Ëã¬Iq¯J· ¤ L¬l[:F¶µ âJ@½_@,àÚÞî#EH@=ï)"ðä=%ÄJ·K¼Êª8k,Do¨1\±Ýîè vö^*<ÞÝjtxÒ¤ðNV!;tæ´P +`=¨?§%Æ$Pz¬3ì!lõ{møþd'¡ÃǦ7¶p>Aº`ø¾Üüùûã\¤·÷Jø·¼ZÍ? øÃ-´Þam_èà#óAYÑ& +>CïÚÀrÀòMÑ¡MuÝðú@§9ÂTÔ#\-B;Âd48¡ÜxÏÊÚhsà6¸ê|{ú ]¿ÍÐ~´¾®oXæw¸BQºßaþZ.¡åÖì|yÒQªÚ΢tG©î*µK[|ôR×Ò¬x÷¶ ¸hÒ|wÎZ¥o²{<iõ«VÎ/-[æúã¯ëûO°?½Îöþüó_~§@Í)7âÕùÈï/·úÖ²Ï÷·-¼þjM?3I·2ËL§: <ÛeÿÛÜo{¨BeÝ®_wÖv¿Ê·à�+Ó\Ò®L§2å,Tæg!7°VDlÔòfÞ<X?5z í~;ÂÇkàDhº¢üáEý¹Éîf±önòYÛÆÍ[©ÐúÒãÍ{³ÝCù|Ƚy×I6|9ë?±c#ÝõçúO.2;Ðz=¥ÏâÌÒ)sEÕ {[º¼°|/×Îõ& Ëí/ßzÙð¦ÆD' +æéæWÜ?`I ëño0ë9qÑÀAÃîÐÓW®eõõweàô¤¸yO»|ÀXµëtÄj$Ð+K§í�7 #V¢ ó¬<(ÈjU" ýýXé/?)Ùþlî¨ÚøäY@ïè! õ+(è +áËC|àäT°:jý& (j8¡+ð¤Bèi3¼O¢ ölÈ]SÀÓú ÑË=Wl +ô|0ª,©NZª×g¶ÈfÛ¢ èyûTú`ܬq!ïh¸P·Eë!Yæ +m^,hÉ(b5¢ÏN!jDìhtä</ä° ¯"¦XaAyÅÂòÍùÜû¹µ´öØòëǨ·°Å[311®øÜËkôWÿI2йtÖkØ¥+syæÒÙdßa®à°Bï%åÐáÒVè½ÄÚó*Ús:6ÚsÝ¥«×z+²}Z}°nBt®ÈØ8iN-ÍÇjZ$wx04[tZ¯?¶üîËr9fmÏðy°ññÿåô:°àñ¼f¸Xp:°Ðæ6ôï¤Â�eoçËËùØö\{Eãlì¼�ÏØÄÁªesgs¯nÜ@+ú½¬ìð ÌÝÆd8´¥7 ç4Îeð�¶þ¾±!¹Ðß?Î#9°ÁÜi¥ÆKv¡:Jvt´ÁQÓÂ<@ÇE6b±ºHøÇê^7 t/±4å¤õ¨ÞÅ©@ +8&h¿O)X±!ÔáÕ)JRHY`®PÕ \°'¦W+¦±£f¹R`RÐéáÃj6xqW$e¬ÎËzu½Y>Ø÷*ÝØ2k%6êoE¿â0ux3CÒ=°aØ#>àÅA8È:¼Y¡Gî7¡ëàTdº-ËP9Ë3ÖC:ºý9}ÞÅZ:àÍþ¯õÖP9 ôûq X êØâè´ÈQ)(JÔ(8*ÕÏ ÈmKôM75¢È&v'õ߯ÈÑ=ú #ª¶rã¾²ÄÏÚ"µ|&1ÖÂúLâÇDÄ+DÐ7 wt¬#rXºaÓ¢/D6 :sì+tæ!EMØsϪ¬:èô¨Vì ÊLd1QêÜ3)0W$ukþ?¾®ûª.ø÷åõQ¥Ï袮_Tòh, ûst³3x<uÊíySL|ú bKÿLÞo£+ðÔ;#p´æ t7@Pàô +Y¸WL`9ßMäíâ÷ ©8ª1ýù¯=â]1áè£2f$ ã +±Ò3ÒHVH@=ó¨½Ö5IðÂUÓc¶çW`3c=¤ã³I4ãÏÐ!áQf¹ÏÁÜHð±ªç¯b6t䯦G¶à(X>o@I÷0XÎMìât¤°ä£dyÔ ÛTà.Ñ[\°,ë·Ø:KönÂ[Û½aÀ$ÐÇ=d!#>,Ë9Be¢ËrNñ,Û`á.ðÞðÚdG©kIª(ÖE=»grPÑï{Z#N8¸sFúÔ!jtÉO6¤ûÍÆ§hö<ÜLø-µèP÷*÷·ªD!ê=4öüúkh5êPqøØè×8Æv@E¢ÃlЯò$±ZÁô (Øz"30ås|Ùþp^*ô¾#ùáÜZ[c\OÔçÃu¦Ñ©³è÷z[öiH¸pѸ!ÔúÃù6ï<@8¯SPV¥5h@ O Æ\(ù5ª0C«_«?`u'6á1¡Ë¯¦6RY@Kñ ;>÷ëaÕÁÛªAÍͽ^PXYXν¨äd+:¼#¨±'óñ8Ràïë ]@p\4Át1Âû×)ì âéò/s8 £ß÷®)åÑ1± +y¤ì\¬#µS Ï=õ8T ¥ØÁ3âbÇdð3¡¬V])`²Æ<\Ó´¿,Td|* 8¦HA}zP¿¯#ÅQäA>¹<ÒÄ ê1 Åôrº¡ë#}ËôH5GiÂjLO& é0ij÷Yå áô·YTbiÅ(§ ¤ÞTV½)þ¬õq®mTÀ¨Øô¦®Pd»c G<áQhó¶.éö¤Ê>C.º»ô¼ÓÊÆä +fcý¡hî¨aD¦£XÊî`Y²à)2Vú .XôLèå%É+RDzL7æHå¦HǵpX)'1{ãR!¾¹sÙ#zÈ O ÑËÜ"òûYSÄ�Ðs8ä[1dÅàe(D¨g$[c©JiydTCÙO3)d[X GçÉ']: -ÚBÖÞyÝô~k<»¨½3Éå ïî�¨ñ%ÈUGú 9®ØfMqh]¡G¥Ö«2o¯íÑvH-{ìy½®ÈZ2óe¹0Ëq¿þ&Iîø³ø©·Yâm$£ó©Ø âö/O/a×3¸ÂësÌ^ÊÒýQp®#× èlsDÐdDÄÑ À·nÜÊú,Ln MjèßÀç^À=òÙSèõº¸8Á¥B_`K?¼^ >tË ÞÌà¦ÃH $ÐY 9=-À©wäïË;þ¬Fùð)`+¢7»7jjÂqT·õ J¡cxü}½ÑBÔÕѧ7Xµäë¡Ó!þ ó°a^)ò4Ã_Ò¡§EµØJ7Öõ¦È¬È8ÞJ3ÔCp,@oÆoF¨ôáìItÇy2bG§1NËmìÅù1m7ëz@®²6·çÐW6(eÔ#6·ës»Ôz·IõéĬiRC)m5ûè5<¾%.]<ºt» ½LÍ%ü¾ {öý +æ÷£e÷¶dìï3Vd16néµÃ&-(+Zîè ÁzÇ[apòPñáùS<N( +¡#,>¯×û¶¼§Ëz=,Ïè÷JÈF_? RXÞS4¬«xzuëþvÙüJ§ýä²½ÕÃ8õèg$$xK>ÀòÂ31lµ(ãbØfä3ÑõÜëÁfÜAÐvñ@àɽªDr0ËT%ziƪD/0ÍøõhÏôn¨e~¦¬Ì¸§xöÔØ:2Îm5Æ×ÐÓfÍñØ8?òÈl,rh:ÅGÀIiK+2ÊÈ�yXO»xhÕ#6Æ6¥§Ç4¬ÂjL/ÌÌX"qÐ#ã94ºÈ¸ wÀÃÃU³ ¼&ß·õEÓã<4pÍ]Ù_0°ÑÙ.uÐYq1¤É K¨§ÂëÏ]«AyØØVüÈ(X ÊÞT¡1ð¦hòTÂÞ\Y2fb9¶èÑ1Kßz¦ KR$£´EYþì °ü1Ñ©çùcÐì«àöüÔ-l};ÉO QÚòǰ5}Úa>½Dܲ_î°+{$Â|½òä~TA·"Ö$2-ûkø� úVbpÏòj.è +ï P½ô¯y°¹½e>̽¸${¬yóçn¨´d»Õ`k"w]/kA Ëz½º´´ôÈG1Êí½#Ý6àÀ(#¢£84>¥9Ó*rKÃ, gà/1wÛÙZâÄ(HyÙ´¨I£OáÂ;p|@ã^£ÙPÆ(ãÑóÚ0£[tÒ±.H&ºfI(®Htc~¤]tèU¦3ck"SpËS(È'Fá+Ýæ2³`M GVÐÝ;GÊ5g¡KtÌs¯Ð êyx!, - ìaÉé÷ÌDwÖuqt¤¡A +è]B#[�Jz#£òÜE{V,z +SLè(ÆN£Ts¡^¢{ÚbJw°@ÈéÝ ÓèØ1¼D§©|@U±.u Ýôjï ï@ÏÇ5mÜ «ûÎ5«!Ⱥ$Û³]Op¸9=pó£½Ì1<SÇ6÷©çÖñ±MÏX DL�%K[HQ²4«æl nÀÖÃÐBv¬mî@AõÑP¤´BÒgÚOt`h¢ó AÉôJßn@}"Çä¨5<L¤¹ïÖ³V d[VE¤Q b5¤~UCÚ8Ôü)I J;Pó¨3P R&]&DÓ³¹K×õÞ¹K×õÞ¹KÃë-,Æ2VÝ#_gî@~tþ¹K× Ü<oÝ0ßñézgôÐÄ =ØJk§¥2 tOàHÊ>w£¥WØÀ]ÖëÉP\ë3,Zåó ä¼}nÓyHÊ~àĵÓ[`b¨k+q^¯kjÃÄd_ÎZYöY�P )¡ÌÈèv|Cä(5º??PæËd;n( ùZòT°-Ó/±â8> irJà kR£0è)éºEÏÔ&ìæÜpæÖuá¬Ë«TcM¦W/ô}¬ÊôlRèQ¹6A +8pfQ9̱æÅr £;GRµÛ5ï©Ow$UÚÃ,ût%:¡.t B8ZBÈ}KV*åúwÉ¢Eg 1±ÒÖ7¸>»Á#CÙ¥-P 9²a£,xF|údf5,"ød~hɸËA¡¬ÏÓBÜ)°7£O¶¡£æ<X2q«V>ÀQ°hj7£ñ%ü0*¨`ú"U é´ PÉþØ<ª kB·¨G5cP +våX3 +îYùLÊ\ÆúÈ\{ºÈ\¼]qwxÈø^N]gòàg¸6Å5!voÿ'FüV"ås3ÔÞÀ¤ÞíñyGùy:sÕèÇÛaf´_LÿôSn@oÙÑ ÀBP§@ÁW ;FlQúª +A8'H¥·>r]!bm?xPz¨(½%ÝÎ úÒ³´ÈÓÐKÏ5w«ì+R1 =] ¡ô@C)bJã#8Pê0CtôÃìY"sC +èø¢ÁÔ£ª8aM(ë¹Ðôõ h?G¢ o.=Ka<@êóî)¼C=|ÂÆDî`t´ýè}·ý@4ô$#à 8 ¤îY#*GºÓѼï¤/¨KQ3>ïEDBGhÄ>£qÒ$¾"sR@ïÐfÇõXvÈë \ô5îÑä +Ýr=¹bk¦cÜØ%»§Éà4Fº&ÍØ¥Ò{ÇÌu!Z°O¨£ô본úÀG¥¸@=ä°?qSÄ|è&¡°¥g>]!±¡lMq©dEV²&FôHp)G·úTîëgÍS +TèTê¹ÜÐ%Ó5i±Ö¾£<4áÀF ¶±¡mêÆ&Ó[,Xôá_PEÀ>PK¥çC]¦)VâR9¡"(UèRy=SDÆv0¸ü2ç±>óæ ÌçCsIÖ~þyÊQïèÑ#_·½ôè¢xâKéM~:àí¡<>R=à èÖ@«C�zߣ½4b©BÖr¡[Puþ�*a=+ð�HÉpbD»¦Såg¤EଠÖú¡-Õà1÷¨Ã |êRD+8`ÞÎðõ«´O=¿¯ÏÌIÐ8@ÞúlÿirÆ +Õ§/pz[à9H(«¶zu)í,=eMñ~Þéú[>K§húS½x§NCSj +M¤±VGYTê¶bdoæ-ñ&ùÛîÎQ ÓÅ~À²NzàÖ@·dL¤Ï-IézH;$äÞú}O0S#=.¤'¨Q:¯Ì$.¦¾@Åpx3&üÑ ²nâ6àà¡RPiº¨ózG]¢_¦'Ý'ë¾0gF»úÞ±É$<MtHȽ!x�7Mîd¸ðLð2Åe_ÿsìÔ6�ë¶¥À ¼¢¢u¹nàåcèþÐü5ëò}ðUyÏéB;XáôöSÖ?ëü"4þ±Z ¨â<BÄA/o[àîQ(yÃ*îGÈ2¹ 5k·ÆUì=¸Ý<ù)ëUÖ&}Ô)9:X:%G«®Aè67pïgÈßÑ<ïÎØÒQfläØ ¤NôØà÷0dèyr&tN¢_ÅQ|¤ÏÉtK@xDÆy¾Ü¢]§Ïã<)TW¤Ìô4ÂCÞÜbx K* ÐÊÓ�M"ëÂ!éRXÜïLТtúfG4G wS é5rFOÇnÆw&d3dA}nKY´àïÆXô§àéÉ©#äãÙx0<9¦5ãVôÕ7Be°&äë I ñ£J°B5è)QËPȦÈãX³¹Mfìç³ÅÏ-ȳ×8ØKs¥ï"µq°f´$5r<ªâXÃãÙ9öÚ25KìC÷oò3º{é~÷Â7 Ou¶>q¬ ã²*Ì»WH�}ªóà1CÒÝg¼ýµdW Ou~YñG:p)üäSÀL¬×D xmP@$Ôc"ä¹F5Exi¦Þ +*2OªHàéñôè +èÏÙÏ%TÄETÝ¢£@̬úæµÐÂx;únµê§è )â¤×úop}¢Å {ø'~¤Ó +=ýWÌ ræ1iÁíR4p(S_¥1±æ ÖÀ1b( â(¬ÈKÂ\ç¨@)ÞiòN<Yn@sÉSCyäýbY +r½ +½ºªRÊPêàTàþåÀ$ÏZ`E/à©WÅÈ·�mk¦ùåbP + 1cã"ÆÆ¤æSG½ê)p)3n¡ Þ_Lyq¤ >P7c[,IB3P$IwP1@£×V-¾ï5Ãc¨1vGt1¡&wTWá ÈNuY°? ·m8ª«º¶pÅ\(?»WèR:ÝQ& åaP:Þª*ö ÕYP9F]@&tTgñ=o"¶h.aoTEx8ª"¶²³ú®ÐiDÇÀ@²ËzYXWëxäTûégb»Ië¹Ï¿>×0ªÑ8^+?6×mÀñV`îÀy½lK¬ýL�] }¼.Ô±æPcE\ä AÅR¨ßáHàJ7 ÓcÚD_XmIÑa¬c\°9iá8J¼ :D l|7qQE÷ÈePm5^o-¤±ª±$ê(5è¨s ï@OÉMª.e'&ÌH͸Ü!KydSAð$ç×QsÒ®°å1v¹R`öÈ1.Bt©ø°2A²£×ùr`qí£õ7ÑSE|ÞrïL@ÅàåÖbÀz$à+ =Òû8U(ge:LÆ=s¹\0C¿Î39kLÀª¶f`ïØè´ÞQâ±Í5~x>�J<øí/íY%Q¬<a¿H¨N=úÔ1úEU§²~èæÝ¢ãÕdm*/Q (ê=ûCË¿¨S=)9æGÚ¬$ÈD:ÚT¦8úFhÇàÁè èÙÊ!j~ݨLjG¼+ಢ;G5Y1ªãݨJ +Ç(¬vëä¢Ï½2Çìó°NUãaÖx:Zlå-Ýèàå[=«:>´Æ^Ý¥ ¡�TCÙÐy~¦Ç[Åé ¨ñ_ËZ¼F\ËJ|E¿îÐáë~^jZ¯ø°O>¯wôo <ý;zÅGt�ÄÕ¬päËAbÞ¬ÂȽâc³Âiìoí3z,ÈgF,ðúØ +¯@N ±ÄðËz=³½B&Ô{Å[føõBç¶iOVÕãB5ã èX÷Zµ¨!Å àFÄÑ~"B)ÐyAEäi¡ÑaÚõ I ç 7 ¿¥ôþb´Á¼lá¼Ã$¬zNsÅÆH.2<â®&c8q}äËØÄá+$zL0ÂÞÎâ!ÅkíGõ1M+ÙÍaïwÕòØøpý>rBõ¨xR2Ô¤:¼0é½?2$²¦¡ÌPèiåPy&.à8¦ +CH2iÆ`Ætº×fÌ ½ë±p«ay^PP±:yÎ[èP¤E@ú) × ~�8÷ÜþàLè +·ßBÈ©|QDWâvpïE'Û¦¬]ãýùßw,hÓ-ºb¯v[^ïþyìÕ®@¯ÈáØ¬Ltgzïú )Ä+Ò'LCmäiÕc<0T§ñÀA3ê& (&-"Iád¿®ÈÄroÓ G£+Ëê j£+ó®"LD å"!ë¾Ñw¬ Î!3#Tú8òa0>ß?I)ÀrÇõ- ä;ÿ<PzËÄ3é=/wE¿îk-¤¹¬wôXNõxèn@HÛÛ9o@o[÷JÝËtým={ìKñÁÃw¥rg¸YüxPþ¬÷Àl,pe×@Yh*¢`½?Ð :Ò©g,Äú bäoÐKYHO¢Æ¹9!F'pL#eT`C¨Ak°ÜU<XÓB|}; wd"c+®'¡(:ºµø/)vÜÀXØÓeÜ�æ.¡+£³ TÕdø°Ý`ùÓ©Ð+¼MÄÓêHB=w1à èÕòQS_<¤÷[H/C?C; '!glÊojBüªÄCjÄÑ2C(xË(z*<ÑcBÞÔÐ8^I?æI¬Sº~½*˳ cN#X!è¸hÀÞkF¨GôìÏ ¨cjI4ÆüjLõ¢8¨ÂEeJQ6ÐXSC¼ã 2`q ØÖl9%à´H¤ð´ìþã·,¢%àȶvlêËÖñâ ¥,¿óÕ�7 ãJô l+Ö7)`9 Û<ã÷Ùi½Z¡?æÈµÆÐÃ<Pa`©KNO½¾ÒûUà d °ý|w·.1xXáéåö_ÏLÝÆì¿/Ë_´xhëͤ0ßz]`àrFбÙùÏ1@ÐR ;Ä;SWñ�öåõÑ`¡)õ¾pÅhg ¼wQ¤W×é0ovØ5Ρ²´ÌÏ5Ëèm ×,£+Fàvkñ¦ àOðú�» ·ÆÐû$D(Èú8]K÷é(-Ú0ã;Ô{[g¬KåQ9ÖYúú}£å2AEwèÊaöXã8aêb ºc|� ¢ #&9{' r°jrá +åPF¹¯s× rù"ÈQóÉhuÜ»þ\n@¯ Ürµ ù§Ø¥Ñ?¯¢KÅÛD ËBsA¶ÄÓ¤¡B¯Tg #LÓC5cÔh{WÐhG)¸h<D)¸´¾:4úCI£¹Í4SÇ!oO(@´Ø^qhôÆÊP9:Ì o/6â]"°&Ò="!õÑÖC&wcäòéâ%Ò;ªz(¡=Öóg|2HRHt§?àèNì!Ñ É»ú w {5øm}Äw 'qG¸¹Ä¶B Ê11cÇÞk¹Ä\ÇF7N\û£[\S{¡Éò"-g4K«Ä©®ÐìÉÞb:ØßþÀk§»;D�GSã7 Ç1B8NàʵE¾n@ù2ÜNCzk§½<!X ïqoUeHl°¨ÈM�[xÐQK'´ÏsËy@vF¬òE(`¹!Å ô<ÜìÅþ¾lÆâ(èà°Ñ;=D�Ï�¾¨Y:ºÍ^Oëõã ë/Æ)£x0Æl±g� ÞµÍÓás¥´\4©ÞÖº".ô|èͤi [?Þ©h ÏeÐîY4ç¨p�ÝPé+C½¤ÃÞþëèì·ÐªrÎ'Ð +ÍÐDØ5©>;.j>%Ç©5)ä¡Óóh¡^9ª¡CäèÕ¹Ð}µ3.¥õìä þ¾>s7 ×Ì õ^%öHõfÌô§ôûSz3f:1¯«¤Æº@yÏr¤^SCt= muòP¤ ½ìêc:6¤\3%%Î0.r Ä¢Cz+Ý¢ %|þ¦ æÖmö#KýÍ´ÌQºAÊÄ_-A©§ôU¹Î 2GU +x80nlu:d> zìPÉE)GAo âÀôvLD]§YHRzÍ1ýÏÍåçå Ð:eϽ¨i.òüìçcÇ_ú¢åÍN7ï.F}ÞOZ˯ò¹9¨á:ß%DAGÖÄqw®v´NgÙi½M3Z[³ÔéÔÄ9 80~{&If[tQÛ�g¡7 ·ú°:uûÚ:¿e }nÕÄbâh*ü|�½<wëèl7[ÁÔ¯°jWHûaW¼©ö"·ä¯4÷Æþu^).;ÐÕÈI >úµôHÀÓÑ #L¡"Ò;tö4ÖqÍFGú÷oÙðè`:=¨ Û;o@ÆRD7HZUDôûøè÷r{LL1þ"z»óE¤cü@Çø3&ÁÍN'3¼ýóża{¥M8çc²7 "rð@ ¦Dn$&øäaá'ZH'Ò �ÞHÈøÕ%í,Ãçñ«,m*YH|Ú@¾Ã*ôñ¼ý¹Ó?[§éÑ4ë}:Þç Hï&±-ÔÞ¤¢ÞÔÅ®?Â;¦@ÊóÄÆ5ZC½gMýÊEe|BÞqj"½¢kBÙÅû^=ãý +gÍ!é\ì2!}hY°2v´|= +Þ²EõéØC"¡kfc~Ùï£LpTÆ%é�¼¡94W +í÷»éüÈ¯Ç ë±RTWà�-£aÁT¶gÅ!¹O&¿¦åÐnó{·,°ïþÈ�ñý__¿ÿÍÜðÓúXn"Ä~ÿJ¿¿~åËù÷DÓ§äù¦DêW½°Ðëê º 0"åÚ²eù*L/;HÐv¸Q]vp#bý'¸2£ÜCÜóFZà@:ömí $S"Z+Éa"Úó +`$²}�ìàN]6dû@ÜÞï¿ÝÜv`ÿÊ`ÿ@ +"ËWXàð¿0ÒMÒÄa"¶$$Îi6ñzýdÎËn;`Â2$"´BvP¢¶$Ûß$(Î9[À:qËÔö´xw´ª,ÇÕ ¶ü.7¿ÊeûßÌûXúëzAößoÕß¿òÀþûkëeakr?@ÊÀ5½nÀ=jÛÁüÖ6ìà»Kòs-Àçê¨ 8FW}Ü×ý÷§åÛïÇ;³w6 +úòûú³ÉºKqì;³¯~_ïbÞÚ¯Äá&> é¹î@oâgðG´ð§3mò £OKßïw£¦É¯Ð?P!)Jça¶±W«ËÄØZA r̾ t $ÎUccúx×ò¨®Ð³ ÄFzð¸ è°}\Rp)xñÖ÷8ºmîäÅ)}wLpÊ0¥�w 3Qð +½¨&ºðn÷añ0?bªä:ÀÏ>0¤»2£Ðß.õfûy,W�ïÀ1ZdGG³/Qo4¥G6=MxzC0¢ËôPyÚjwÈk|0ô¹Ú«&Èsn£Õ{æÌ3ï�ÞH¡W¦K½u=þü¦®Ïð�:2têô"©"ªrþö¤SÚ«Bs.}[ NO)&ì×Ë^mjÌñø=: È)ËK|æOØÛW×`³hskwù@ 6ç%ÍóTèPÈNY «æÐ +9¡$ÈÇúÀü´<~aE$§ÄÙãÓ¨OY_ót®QºPéUNo@'!Ñf!à°OéhäýÇÀ�hÐ!ò< ÂèNO--+°ø{ÔÊtbml°·¢uò_¢UÙ`IÝê}*Ù©«{¥`l;MFë¦-¬èlbS² ×òV¦{eZìçM~E÷¢´b°Î.FH>æ4pc´^תdz×ϲ*HfC+?6£ãÐø"lRÐQ"Ñ ÁZÏX ü)JÜ>°J^XV6Ðv*ÁÑ +júÓl¤í? 'YD÷( gX''M rÝ£ÚnAttkõ¾=)¢µnët^ï®uçZ=wÛe½Gð½ ÒV-ùâKµ¢.ïÁõº´î|½©¡½Ø]6à(vk"Ô)ø¤Z$ã èuNÐQçÔ{¤: BjK¤ê×Úúc× ³ ©ñùsb½VoFjÄáÌ´Äì-©n¨³îñÜ×ÓC¼Vò°nGVt2¾³¶5Xöm »jË=câ5&¦eFæ÷xJA=¨«k(xY/¿ú[?ÀË èÙ;[Ù;}çõ¡¡ô¿³ ~Q¿Õac¬O®Ñ ýlu +,hKÈÌÔC«}²vxøûP8Z"ú}ONÐ{¹%M)³fHøSjËYÒ"§Æ þÖY¡Õ´*I¶dz/·Ióù°?*@fýü¶^ÙCÃ2TcÁÞ&ôµrÝ1úD`O}]o¼Sèè,Xéܰ3£wrKØ:&C\VVe6Óe�5%PT!d}Xõ§Ú +©Ü«Lø +õÙK³fJy/;hÊå÷ã¯óû�H�þN¸4öÊjÄXؼ¡odACfØ Ô½Q¹a 1£a zÈÓo@¶Åerg ì|zk¦È[Åz¼ªÊzÜdh°â½_^ö¦-éÕ»Óf~ø÷eg2¼ÇæG<Þ GûVØÄá +ØK%¢¡ãÉp~Á=ûÀòð .þüá^$ +ît]¾Q)õ!N³Á5&âÏtWføûúÀ²ñ·®¢½ýßKd§ã ± >h!@êü�³XÂjDGÆÖÄz;T#nrP8°ZA!LÛr¬ åÂZ]7 74EÌüáí´>á½ÌàïëC,¹Ów]ÀÜÀYÄBò<Ý´"ì+Þ£Y¼GüÙlÈÞ1»ûá«P +õÁ毦ip°9öFôZ¥ØÐj¿ÏñQl d_ Ûs÷p2ÍðRdIJ!z`Þ>qgÁ2$#36îdÔÈ$,sÌK]z:f L"ä�ﳨƦt¥Â{ Ú2B]r¡ÍZhOáµ,z½©Ü èø"vgt|±BE¨ãOÝ¡mZÉSV 6äÀË)è�H«¨ÉY6%ú¸§øPHÏz©á´PãCh¡F(Dú¸¨<#ÁfÌ(BeëóDíQÆ(Nc¥Åõ2ÂzY/þ}y½Éài½cÞIÑÈG×/*ù ²Ðý9àIh/ÐáÉ/ðv6EtChßQåV52Eô(å8@͸@3ÜÑ4tÇW ë`Û¤ÀoV$:²aC¹/ëõ¡âü}G/=*-cÉGî(/Xéå@V~Þ^²BÖ³?±ÓñÑíB=¦÷'?�ÞËäRVÑ!m%¨ÉulËfU±-Óg¨udÁ&j÷ÕV!:3|ZÜþÌ�õgdtÇt|xßùå +düè3*Ç+v't.^!tx+@Mêh6y6»ëPQ0Bcª÷¨OX +ôàÝ 9&ÈÐ!ò$Áf¬õgºðHã4ÞÑÀ C]¦ª2G u ê©è³XЧ +K ë9e|^D½íV²6ÏÖ{Ð)Ë«¦)<4Àr¬·*Ï¢ÛåèåñB·VïöbUþçÐ,ɺ´@§º$EuìLïPR°S¦÷\ªð +ôDb{ïôH +ñÉô±9r¹al(y¥FÖÁ觬00YS¼ßhøXlèè¡E ^£ß ývÆA¢=s~Yv1 MB¯³5MæI;&-ûËÏËzÐrWB§g[o"Ô_OþÌz:@ðï;:EÀ 8:þGô?òpG x4zèPÅ$ðÎì@Ðaö6 C|æ to¥ñV¼cºAÒ2±°þvôû½À c¤2Ò!Á⳸þ¬Ädoôh÷:]ãPÒ§Z¼èõWt°®à´!ºÖ("ze"C=*wÊHþ¾´'x~½ÍBZH®M=Ú<\.PÈ¡éØå8òÕÈܳ<Ý#ó(M (74:DõãghHü]&F}¡AG.=Vb9@Öáɵ¨cÖ´¹tõÀ¶PÇÞcÆ;p|�cÆDÇÒ¹@[¦cÌ¢K=A6cÊ<U-¨¤rU>aF<àͰhºcÜ8¬Ò¯`ÕÂz¾êRÞÃþàíqF±"ñð=.ßÇöÑi´±UÅ6pÓÖkñÇ÷&Oï?ÿáç¿Êòú×9} ÿö»Óæ¯S÷ûË~öõ41oôº|Ø'ÖpZ÷: hoÕRçNËã$_[¾å÷!¶ì×-óí¼~2Ðm=8}ÖÖ7Güòû ½NC°õè÷Ëkë¼ì_&m}AëÁïæÙe½]ÖôíûÜÔú Î8O}ÈþÛooÿ÷vmm}Ù³·/Ü£ß}ÜåϤ¹mýK~_ÙÈý78¢ÿ'(~:ÿN÷?Ãß×ï¿ï¹ÿétÿþgåe½.¿â¿ûýÝ´ó¯þ÷jJªÿV´ÿ»þcô3 ¤ÿXÿXIu_ÿ`õo%Õ=ýçÿ~)·ïvYô?æ_KØå_«Èå_+Ȧ?ÒþRFöÇÁ?Ú_aGúϱ¾>äߪѯþÎÿP+üoë¡þ/ÙÿùOßÿèçßyäéß´@ý)L{n뺯 ê_ÅÝÏ¡þ]eù³Rôÿ³¸%}^øi=*æÿzu/Ò¸õo¡Çr>¼�·Ø¡åwÚïÙiè±U·ÐaÒB~Þáztzäz°Ð#I¿O]ÇÖié¨:D°þ®º©ëÐïßyÿ>¸?ý3¤Nÿ +1LÿÜõèO]ï_w½ÛKì ÿ A~º@ñÓC +ïï¶ÿ{© .è÷ïÊòßïðßõü{"kÇ´½Cülô½�Ì >Pÿ�ÌÐoú¼äè`÷ïVMÿðõü°û·Ð¥wÿ¨äp£èö»¾×ýÕs(ïÀu= þÕC¿ÑùÐïº\öï]ü8ä?Aýäÿú�Þ7r~»~Ëë:âÏßÎßöõï²å¡²_:ôa J=ù£ô+ý(ÿ@ý{§_/téÉ?u'¨t×yç¡¡?Öß²ÿþ ¡'Ùÿåÿ¶ª¿ ÷{×_Tþ×2(ÿº ý sLÿýßÛï3þÍØÿ¡/HÞç?l¿Äªg¿éùôßdýeýKB¿Ï/ÛO{yõrÑü'zXÞÎO¿BúS×ÚïW´ÿûùþ¶\=ýM×#ÿ5éг½:÷ã¶Æ_²ýÉ3<¿~ÿuècQã/lÿò +ùGö³è¿2úè¿"ûõO ýcú§°þ±ñ£ñ¯uëÅ¿Ì߯;(þ;=Böëî?2þµé£ö³`üAðwûe½ÇzöÞ_Ñð+z~?è¿_UÿðOUñ+¬ÿ +Ätü¢`ÿWö?ËôLÙhQÿ½Ìè÷ïüËüO«Hóû¶¾Jë)ý°þÖùÂÇwþaú£BýâO?Ô�í¯úR¡þUîÏÖÃóËø³]Ð{ ÿ0ÿVäÿ§7üt´Õ²½ñîÓ¡ú_~z«Æ/²þiáëËr¿ô^ß¼º|3å×âÏËuߣ ¾§å×cE¤Ó#öðs^Ì81@Ò[óÐö?øzÎXDçW=Ü ß×'{¸¹Ð_vbÜóñõ÷='à÷=9Kp?t¼®É²í÷ëórù}AqÚà ¼9g NPüÀïú· ýã¿UнÿÐîYÎ&?÷wc{¸ïôE³òï/úâëþ¹þ+Ô?2pg9kõÂÃÙùágTÿÙÃO~8P ûoÀ«éÿ3ÿûAöýôáþ@þÛÃý¨þO È/Ðþ ê_8²âÁËzøµ·-~ú8Óý#ýïÙü¯?Tôûzà`?½ß§PëþSÂ/p¼ ÿB×W·?iÑôøÑü?ó¶»ýð䬮ý¤ò»ùó<<ÈÿpÔNÌÿ ½ÀÓ?Gt~rúGÎùÌ Ôà<Aþ¾3ôïþ7ý}è?ëW6¼¥³õ·ÐâüpÔó_éþôeÿËFã/{8æìë÷7ÿ';^&~ôþæ÷7k¿Oåúßwà?\!ûé ßü/ÝÏ¢þ§üô?ä¬!à¨ÿa {þËYÞÞñß÷õßÕ×ýõ/¿úø#þøõï~y j¯u¯ÿøõ·j®´¾¾V_þõ?þøÿñ¯?þðûßüö_þó·õãoÿúo~üÛüë?þßßüöü¯ÿ÷ãoÿþO¿ÿÃ~üÃ_üæþòÇß|ýøûßÿö~ûúñ_~üóþôoõ«_ýùÏþúÓ?ÿþ?¿þå·úÕ?¼üðßýÇÿüÿó«ûÏmÝ×?ÿéøË¿þß¿ü·_¿v÷ÿ|±É +endstream +endobj +372 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 957 0 R +/Name /Im357 +/Width 21 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`l``n``o`ào`o`°o`Èo`8ßÀÐßÀØßÀÌßÀÆßÀÃß Áß`ÀßÀßp¿áÿÿ@Rÿ��¡!p +endstream +endobj +373 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 958 0 R +/Name /Im358 +/Width 17 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`l``#v(â#²¡0z�E Õ�> p�=Í +endstream +endobj +374 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 959 0 R +/Name /Im359 +/Width 37 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏ á¿áÃ~yOì ò Ø@äÿÿ·ÿ&�²(K +endstream +endobj +375 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 960 0 R +/Name /Im360 +/Width 28 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿñ?CÛ�±Ë¡a¨\D-\O>¬X�eÀøÿ>æ�_ +endstream +endobj +376 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 961 0 R +/Name /Im361 +/Width 14 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcH`xÀð1)-'#A A!!!á@Âÿ? 0Èü�Ù¢È +endstream +endobj +377 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 962 0 R +/Name /Im362 +/Width 15 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã©ëfQcScààR< Á Á`��WRÝ +endstream +endobj +378 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 963 0 R +/Name /Im363 +/Width 17 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc|ÌÀ.ÎÀÃÏ ÁÏ`ÁÇ`ÀÇP�FdE%T4Îdãc��/ Ë +endstream +endobj +379 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 964 0 R +/Name /Im364 +/Width 16 +/Height 13 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x3øÉãÇ3gHH&%È��XåÝ +endstream +endobj +380 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 965 0 R +/Name /Im365 +/Width 20 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³gðKlpk<àÎx ñ@ã>0an"vvâ" 6æ�¦o +endstream +endobj +381 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 966 0 R +/Name /Im366 +/Width 55 +/Height 58 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}ѱ 0 á;lÉ [H¬á2AÑ<G¸"ÃÝ3.|BèýBÐb×V31 µn¯'kÑ[FUY(³Ûßá·2Ñìä«YËPìXP#dNP£³öüS£ÏÜÀ$ðÀ»pù½¾F&D<ÖëÈn[GÑ57ÙðÉ;à?/vP¤ +endstream +endobj +382 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 967 0 R +/Name /Im367 +/Width 20 +/Height 10 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿàÿÿ�(Xÿÿ�£® + +endstream +endobj +383 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 968 0 R +/Name /Im368 +/Width 11 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcP`H�Â ÈØ�Ì È<`(`PÌ�� o +endstream +endobj +384 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 969 0 R +/Name /Im369 +/Width 37 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``0`� TN°f0Ñ�"ü`Ì I0Ã#ô¢jÀ��î ¡ +endstream +endobj +385 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 970 0 R +/Name /Im370 +/Width 37 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÀ`ÏÀÿácc?3{óÆ àD¸ÃÀáÀ8¨A@½AAùÁ +ÿ ì Cáa» +endstream +endobj +386 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 971 0 R +/Name /Im371 +/Width 39 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=ÄÁ À PI9:£8Æ(àÑ~lÒwxqH<±);z"uE²P»mÄUCÅÝ"uE²PÛoUCÅE6þz&YË8«_±©d¤/éd: +endstream +endobj +387 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 972 0 R +/Name /Im372 +/Width 26 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`üÇÀ�ÂvDcÆ?vìÿ÷1ð7þcg¨ØÉ þC�×@1H<Ã?þæ}@³ì0þ±?��{"3 +endstream +endobj +388 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 973 0 R +/Name /Im373 +/Width 39 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xU̱ 0ÐÚi-W°´s¼Ñ2JFH© 94 +6¯|ªpI3uüÝ`äáC`ABhfEó"0IKüô~ ¸0êè_vbw!'1ëËÇX¸�Hp)± +endstream +endobj +389 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 974 0 R +/Name /Im374 +/Width 17 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc<ÀÀüñ�CâaÇ~oø{¿Ánû2\ P +¨¦�«`± +endstream +endobj +390 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 975 0 R +/Name /Im375 +/Width 12 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKH¨?PßàÂà�þ0$00<�Áä�þÊ â +endstream +endobj +391 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 976 0 R +/Name /Im376 +/Width 11 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcl`l`n`màmllPlpl8Øðÿcò?��§7 +endstream +endobj +392 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 977 0 R +/Name /Im377 +/Width 11 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿXøÿ�sÎå +endstream +endobj +393 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 978 0 R +/Name /Im378 +/Width 14 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcø`PPp�4i8rðÛ �° ³ +endstream +endobj +394 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 979 0 R +/Name /Im379 +/Width 6 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcáa�3RR2�Êé +endstream +endobj +395 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 980 0 R +/Name /Im380 +/Width 11 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xS8`ß Ç �ú + x ¡á@b<�sí +endstream +endobj +396 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 981 0 R +/Name /Im381 +/Width 22 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøó½yûvvdôÿÿ4¬¨^þ�Â" +¦ +endstream +endobj +397 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 982 0 R +/Name /Im382 +/Width 13 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÀÚØøä8d8,$ + +þ��ÎJù +endstream +endobj +398 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 593 0 R >> /XObject << /Im318 331 0 R /Im209 218 0 R /Im319 332 0 R /Im203 212 0 R /Im320 333 0 R /Im204 213 0 R /Im202 211 0 R /Im209 218 0 R /Im203 212 0 R /Im201 210 0 R /Im211 220 0 R /Im320 333 0 R /Im209 218 0 R /Im321 334 0 R /Im321 334 0 R /Im204 213 0 R /Im205 214 0 R /Im209 218 0 R /Im208 217 0 R /Im322 335 0 R /Im320 333 0 R /Im323 336 0 R /Im294 305 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im117 124 0 R /Im93 100 0 R /Im99 106 0 R /Im100 107 0 R /Im93 100 0 R /Im115 122 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im102 109 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im117 124 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im121 128 0 R /Im108 115 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im111 118 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im256 265 0 R /Im243 252 0 R /Im239 248 0 R /Im258 267 0 R /Im240 249 0 R /Im258 267 0 R /Im260 269 0 R /Im281 292 0 R /Im241 250 0 R /Im255 264 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im123 130 0 R /Im115 122 0 R /Im108 115 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im93 100 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im98 105 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im107 114 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im113 120 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im74 81 0 R /Im134 141 0 R /Im108 115 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im107 114 0 R /Im160 167 0 R /Im110 117 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im112 119 0 R /Im116 123 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im98 105 0 R /Im101 108 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im74 81 0 R /Im244 253 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im103 110 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im114 121 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im117 124 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im114 121 0 R /Im93 100 0 R /Im102 109 0 R /Im124 131 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im103 110 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im111 118 0 R /Im108 115 0 R /Im101 108 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im253 262 0 R /Im101 108 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im102 109 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im99 106 0 R /Im113 120 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im108 115 0 R /Im111 118 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im118 125 0 R /Im291 302 0 R /Im360 375 0 R /Im244 253 0 R /Im383 400 0 R /Im136 143 0 R /Im160 167 0 R /Im136 143 0 R /Im135 142 0 R /Im122 129 0 R /Im120 127 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im93 100 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im111 118 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im118 125 0 R /Im125 132 0 R /Im119 126 0 R /Im135 142 0 R /Im112 119 0 R /Im291 302 0 R /Im360 375 0 R /Im244 253 0 R /Im383 400 0 R /Im136 143 0 R /Im360 375 0 R /Im136 143 0 R /Im135 142 0 R /Im122 129 0 R /Im120 127 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im99 106 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im108 115 0 R /Im117 124 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im101 108 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im93 100 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im332 345 0 R /Im111 118 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im74 81 0 R /Im384 401 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im94 101 0 R /Im108 115 0 R /Im100 107 0 R /Im100 107 0 R /Im112 119 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im114 121 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im101 108 0 R /Im124 131 0 R /Im96 103 0 R /Im97 104 0 R /Im103 110 0 R /Im104 111 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im107 114 0 R /Im113 120 0 R /Im108 115 0 R /Im97 104 0 R /Im97 104 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im102 109 0 R /Im96 103 0 R /Im213 222 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im103 110 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im113 120 0 R /Im96 103 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im160 167 0 R /Im110 117 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im108 115 0 R /Im102 109 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im160 167 0 R /Im110 117 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im101 108 0 R /Im117 124 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im128 135 0 R /Im160 167 0 R /Im130 137 0 R /Im293 304 0 R /Im132 139 0 R /Im133 140 0 R /Im98 105 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im113 120 0 R /Im93 100 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im117 124 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im106 113 0 R /Im108 115 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im96 103 0 R /Im105 112 0 R /Im111 118 0 R /Im97 104 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im117 124 0 R /Im94 101 0 R /Im74 81 0 R /Im135 142 0 R /Im96 103 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im108 115 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im101 108 0 R /Im93 100 0 R /Im100 107 0 R /Im95 102 0 R /Im96 103 0 R /Im280 291 0 R /Im260 269 0 R /Im241 250 0 R /Im239 248 0 R /Im239 248 0 R /Im281 292 0 R /Im255 264 0 R /Im282 293 0 R /Im74 81 0 R /Im244 253 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im97 104 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im115 122 0 R /Im108 115 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im160 167 0 R /Im110 117 0 R /Im112 119 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im117 124 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im93 100 0 R /Im99 106 0 R /Im101 108 0 R /Im93 100 0 R /Im100 107 0 R /Im108 115 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im284 295 0 R /Im285 296 0 R /Im239 248 0 R /Im258 267 0 R /Im255 264 0 R /Im286 297 0 R /Im287 298 0 R /Im243 252 0 R /Im285 296 0 R /Im260 269 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im74 81 0 R /Im122 129 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im107 114 0 R /Im160 167 0 R /Im110 117 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im93 100 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im93 100 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im98 105 0 R /Im124 131 0 R /Im96 103 0 R /Im100 107 0 R /Im98 105 0 R /Im104 111 0 R /Im93 100 0 R /Im93 100 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im115 122 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im115 122 0 R /Im108 115 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im74 81 0 R /Im119 126 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im117 124 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im99 106 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im102 109 0 R /Im93 100 0 R /Im106 113 0 R /Im108 115 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im160 167 0 R /Im110 117 0 R /Im112 119 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im114 121 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im116 123 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im124 131 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im106 113 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im108 115 0 R /Im102 109 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im93 100 0 R /Im115 122 0 R /Im160 167 0 R /Im110 117 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im114 121 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im160 167 0 R /Im96 103 0 R /Im102 109 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im102 109 0 R /Im106 113 0 R /Im93 100 0 R /Im96 103 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im114 121 0 R /Im93 100 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im99 106 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im101 108 0 R /Im93 100 0 R /Im100 107 0 R /Im108 115 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im280 291 0 R /Im281 292 0 R /Im255 264 0 R /Im282 293 0 R /Im335 348 0 R /Im243 252 0 R /Im336 349 0 R /Im258 267 0 R /Im335 348 0 R /Im257 266 0 R /Im243 252 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im96 103 0 R /Im74 81 0 R /Im127 134 0 R /Im98 105 0 R /Im101 108 0 R /Im103 110 0 R /Im108 115 0 R /Im102 109 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im107 114 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im114 121 0 R /Im93 100 0 R /Im99 106 0 R /Im106 113 0 R /Im106 113 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im93 100 0 R /Im111 118 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im101 108 0 R /Im115 122 0 R /Im102 109 0 R /Im93 100 0 R /Im105 112 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im114 121 0 R /Im93 100 0 R /Im102 109 0 R /Im124 131 0 R /Im93 100 0 R /Im115 122 0 R /Im291 302 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im118 125 0 R /Im128 135 0 R /Im291 302 0 R /Im99 106 0 R /Im100 107 0 R /Im348 361 0 R /Im132 139 0 R /Im133 140 0 R /Im107 114 0 R /Im101 108 0 R /Im96 103 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im212 221 0 R /Im74 81 0 R /Im212 221 0 R /Im74 81 0 R /Im212 221 0 R /Im120 127 0 R /Im74 81 0 R /Im347 360 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im160 167 0 R /Im110 117 0 R /Im112 119 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im281 292 0 R /Im255 264 0 R /Im256 265 0 R /Im257 266 0 R /Im240 249 0 R /Im258 267 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im99 106 0 R /Im117 124 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im160 167 0 R /Im110 117 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im101 108 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im74 81 0 R /Im342 355 0 R /Im343 356 0 R /Im342 355 0 R /Im343 356 0 R /Im342 355 0 R /Im297 308 0 R /Im218 227 0 R /Im224 233 0 R /Im290 301 0 R /Im227 236 0 R /Im290 301 0 R /Im219 228 0 R /Im228 237 0 R /Im219 228 0 R /Im220 229 0 R /Im221 230 0 R /Im219 228 0 R /Im222 231 0 R /Im236 245 0 R /Im374 389 0 R /Im291 302 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im111 118 0 R /Im98 105 0 R /Im103 110 0 R /Im124 131 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im114 121 0 R /Im93 100 0 R /Im102 109 0 R /Im124 131 0 R /Im93 100 0 R /Im115 122 0 R /Im160 167 0 R /Im96 103 0 R /Im102 109 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im102 109 0 R /Im108 115 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im117 124 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im139 146 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im117 124 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im160 167 0 R /Im110 117 0 R /Im112 119 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im128 135 0 R /Im291 302 0 R /Im99 106 0 R /Im100 107 0 R /Im348 361 0 R /Im132 139 0 R /Im133 140 0 R /Im74 81 0 R /Im119 126 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im93 100 0 R /Im115 122 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im385 402 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im123 130 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im108 115 0 R /Im94 101 0 R /Im98 105 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im98 105 0 R /Im113 120 0 R /Im108 115 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im93 100 0 R /Im105 112 0 R /Im95 102 0 R /Im99 106 0 R /Im102 109 0 R /Im98 105 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im286 297 0 R /Im243 252 0 R /Im335 348 0 R /Im239 248 0 R /Im338 351 0 R /Im281 292 0 R /Im259 268 0 R /Im242 251 0 R /Im258 267 0 R /Im335 348 0 R /Im257 266 0 R /Im243 252 0 R /Im386 403 0 R /Im107 114 0 R /Im291 302 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im160 167 0 R /Im110 117 0 R /Im118 125 0 R /Im291 302 0 R /Im160 167 0 R /Im110 117 0 R /Im120 127 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im98 105 0 R /Im113 120 0 R /Im108 115 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im103 110 0 R /Im102 109 0 R /Im98 105 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im93 100 0 R /Im103 110 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im98 105 0 R /Im103 110 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im74 81 0 R /Im291 302 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im102 109 0 R /Im93 100 0 R /Im106 113 0 R /Im108 115 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im114 121 0 R /Im93 100 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im160 167 0 R /Im110 117 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im107 114 0 R /Im135 142 0 R /Im136 143 0 R /Im384 401 0 R /Im136 143 0 R /Im92 99 0 R /Im122 129 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im383 400 0 R /Im136 143 0 R /Im360 375 0 R /Im119 126 0 R /Im134 141 0 R /Im387 404 0 R /Im107 114 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im114 121 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im117 124 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im117 124 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im160 167 0 R /Im110 117 0 R /Im74 81 0 R /Im134 141 0 R /Im98 105 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im135 142 0 R /Im136 143 0 R /Im384 401 0 R /Im136 143 0 R /Im92 99 0 R /Im122 129 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im102 109 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im98 105 0 R /Im97 104 0 R /Im101 108 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im383 400 0 R /Im136 143 0 R /Im360 375 0 R /Im119 126 0 R /Im134 141 0 R /Im387 404 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im116 123 0 R /Im94 101 0 R /Im106 113 0 R /Im99 106 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im113 120 0 R /Im123 130 0 R /Im104 111 0 R /Im93 100 0 R /Im111 118 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im93 100 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im291 302 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im108 115 0 R /Im100 107 0 R /Im100 107 0 R /Im112 119 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im291 302 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im98 105 0 R /Im113 120 0 R /Im108 115 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im117 124 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im106 113 0 R /Im106 113 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im280 291 0 R /Im259 268 0 R /Im258 267 0 R /Im335 348 0 R /Im258 267 0 R /Im240 249 0 R /Im336 349 0 R /Im258 267 0 R /Im335 348 0 R /Im257 266 0 R /Im243 252 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im97 104 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im101 108 0 R /Im291 302 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im103 110 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im114 121 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im105 112 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im98 105 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im93 100 0 R /Im105 112 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im108 115 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im102 109 0 R /Im98 105 0 R /Im139 146 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im93 100 0 R /Im104 111 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im116 123 0 R /Im97 104 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im74 81 0 R /Im135 142 0 R /Im96 103 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im388 405 0 R /Im114 121 0 R /Im99 106 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im104 111 0 R /Im99 106 0 R /Im102 109 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im107 114 0 R /Im291 302 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im102 109 0 R /Im93 100 0 R /Im106 113 0 R /Im108 115 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im126 133 0 R /Im96 103 0 R /Im106 113 0 R /Im101 108 0 R /Im96 103 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im103 110 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im107 114 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im286 297 0 R /Im241 250 0 R /Im389 406 0 R /Im281 292 0 R /Im255 264 0 R /Im258 267 0 R /Im260 269 0 R /Im281 292 0 R /Im241 250 0 R /Im255 264 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im93 100 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im101 108 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im114 121 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im74 81 0 R /Im130 137 0 R /Im99 106 0 R /Im94 101 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im291 302 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im253 262 0 R /Im101 108 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im160 167 0 R /Im110 117 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im298 309 0 R /Im390 407 0 R /Im349 362 0 R /Im391 408 0 R /Im281 292 0 R /Im260 269 0 R /Im243 252 0 R /Im259 268 0 R /Im338 351 0 R /Im107 114 0 R /Im99 106 0 R /Im104 111 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im117 124 0 R /Im102 109 0 R /Im99 106 0 R /Im105 112 0 R /Im332 345 0 R /Im105 112 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im74 81 0 R /Im342 355 0 R /Im343 356 0 R /Im342 355 0 R /Im343 356 0 R /Im355 368 0 R /Im392 409 0 R /Im224 233 0 R /Im232 241 0 R /Im220 229 0 R /Im231 240 0 R /Im219 228 0 R /Im218 227 0 R /Im227 236 0 R /Im222 231 0 R /Im393 410 0 R /Im234 243 0 R /Im217 226 0 R /Im359 374 0 R /Im290 301 0 R /Im216 225 0 R /Im218 227 0 R /Im220 229 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im103 110 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im130 137 0 R /Im103 110 0 R /Im109 116 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im128 135 0 R /Im130 137 0 R /Im103 110 0 R /Im109 116 0 R /Im348 361 0 R /Im348 361 0 R /Im133 140 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im123 130 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im394 411 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im107 114 0 R /Im104 111 0 R /Im93 100 0 R /Im114 121 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im123 130 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im97 104 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im113 120 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im104 111 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im102 109 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im93 100 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im394 411 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im395 412 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im118 125 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im123 130 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im395 412 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im394 411 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im120 127 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im394 411 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im259 268 0 R /Im241 250 0 R /Im255 264 0 R /Im256 265 0 R /Im239 248 0 R /Im281 292 0 R /Im240 249 0 R /Im258 267 0 R /Im259 268 0 R /Im396 413 0 R /Im255 264 0 R /Im257 266 0 R /Im389 406 0 R /Im397 414 0 R /Im243 252 0 R /Im240 249 0 R /Im256 265 0 R /Im107 114 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im108 115 0 R /Im105 112 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im115 122 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im394 411 0 R /Im97 104 0 R /Im93 100 0 R /Im395 412 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im93 100 0 R /Im99 106 0 R /Im100 107 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im108 115 0 R /Im94 101 0 R /Im100 107 0 R /Im98 105 0 R /Im124 131 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im98 105 0 R /Im115 122 0 R /Im115 122 0 R /Im108 115 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im74 81 0 R /Im347 360 0 R /Im94 101 0 R /Im100 107 0 R /Im98 105 0 R /Im124 131 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im398 415 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im104 111 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im395 412 0 R /Im93 100 0 R /Im115 122 0 R /Im399 416 0 R /Im184 191 0 R /Im166 173 0 R /Im166 173 0 R /Im168 175 0 R /Im166 173 0 R /Im185 192 0 R /Im169 176 0 R /Im164 171 0 R /Im171 178 0 R /Im163 170 0 R /Im195 202 0 R /Im74 81 0 R /Im195 202 0 R /Im74 81 0 R /Im187 194 0 R /Im400 417 0 R /Im190 197 0 R /Im34 41 0 R /Im401 418 0 R /Im74 81 0 R /Im402 419 0 R /Im194 201 0 R /Im263 272 0 R /Im164 171 0 R /Im168 175 0 R /Im169 176 0 R /Im166 173 0 R /Im167 174 0 R /Im180 187 0 R /Im269 278 0 R /Im176 183 0 R /Im168 175 0 R /Im185 192 0 R /Im171 178 0 R /Im164 171 0 R /Im163 170 0 R /Im166 173 0 R /Im192 199 0 R /Im175 182 0 R /Im170 177 0 R /Im314 325 0 R /Im176 183 0 R /Im174 181 0 R /Im176 183 0 R /Im170 177 0 R /Im263 272 0 R /Im164 171 0 R /Im180 187 0 R /Im168 175 0 R /Im166 173 0 R /Im174 181 0 R /Im172 179 0 R /Im176 183 0 R /Im163 170 0 R /Im192 199 0 R /Im164 171 0 R /Im169 176 0 R /Im167 174 0 R /Im166 173 0 R /Im172 179 0 R /Im166 173 0 R /Im167 174 0 R /Im168 175 0 R /Im169 176 0 R /Im171 178 0 R /Im169 176 0 R /Im263 272 0 R /Im166 173 0 R /Im176 183 0 R /Im163 170 0 R /Im168 175 0 R /Im269 278 0 R /Im166 173 0 R /Im167 174 0 R /Im171 178 0 R /Im172 179 0 R /Im176 183 0 R /Im163 170 0 R /Im171 178 0 R /Im167 174 0 R /Im176 183 0 R /Im185 192 0 R /Im174 181 0 R /Im166 173 0 R /Im176 183 0 R /Im175 182 0 R /Im171 178 0 R /Im182 189 0 R /Im169 176 0 R /Im169 176 0 R /Im263 272 0 R /Im166 173 0 R /Im165 172 0 R /Im176 183 0 R /Im174 181 0 R /Im182 189 0 R /Im166 173 0 R /Im171 178 0 R /Im172 179 0 R /Im176 183 0 R /Im163 170 0 R /Im171 178 0 R /Im192 199 0 R /Im166 173 0 R /Im264 273 0 R /Im168 175 0 R /Im182 189 0 R /Im185 192 0 R /Im263 272 0 R /Im176 183 0 R /Im168 175 0 R /Im176 183 0 R /Im192 199 0 R /Im166 173 0 R /Im166 173 0 R /Im179 186 0 R /Im168 175 0 R /Im166 173 0 R /Im176 183 0 R /Im167 174 0 R /Im185 192 0 R /Im263 272 0 R /Im74 81 0 R /Im403 420 0 R /Im404 421 0 R /Im405 422 0 R /Im406 423 0 R /Im407 424 0 R /Im408 425 0 R /Im407 424 0 R /Im409 426 0 R /Im410 427 0 R /Im411 428 0 R /Im412 429 0 R /Im164 171 0 R /Im168 175 0 R /Im166 173 0 R /Im265 274 0 R /Im179 186 0 R /Im174 181 0 R /Im176 183 0 R /Im164 171 0 R /Im163 170 0 R /Im166 173 0 R /Im192 199 0 R /Im164 171 0 R /Im163 170 0 R /Im168 175 0 R /Im166 173 0 R /Im185 192 0 R /Im169 176 0 R /Im164 171 0 R /Im171 178 0 R /Im163 170 0 R /Im195 202 0 R /Im74 81 0 R /Im195 202 0 R /Im74 81 0 R /Im187 194 0 R /Im190 197 0 R /Im34 41 0 R /Im74 81 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 399 0 R +>> +endobj +399 0 obj +<< +/Length 983 0 R +/Filter /FlateDecode +>> +stream +x¥½I¯-=v¦7Ï_qU»hjhxbT¡r¨-¥J²Õ+ ÁÿÞ;ö&ãxÖá»H óûn^Æ&Wûr5ÿúÿþë_ÿ~ýÇþõù«ÌÓ¯ékÚÏ_K~-ñ«Lù×Ã×¶Ì¿þúÿðÿû?¦°þú¯ÿüÿþmýço×o¯/®ËW¯ëã´]ׯ¸Òïoÿ¶~ÿ0M_Ûzß@º ã´Ð^ÿÏíÛûðûKú½|ýÀòµñb@FõBÜ´K0FÄôµfü@N¸ 1¿ø(ÞàÆ5d$ºFsVKÀÀ¬¬ê"®EãÄ; ^ÔýwØâÁß?Pd"nÃøÙAfÜÁMYÂ]c LÌH1ò5Þé®Ñêâ +·¢$L;KÂkÜàùM'OÛ·; ò×:ѶLëïl¾æËúüªN¾`ï¿Þ°|áØ@Xú¨6p»{}µ çõ7._1Òï¿È"oàÅCÊî7P7Ò×o7A6¯0kW¾ 3ÝtYüZo<¼«Ç:(]¡%¡ Û<0<` nм(W``áÜôy hx?Á}õ+2áí÷M=²ÎõHóNõÀË{¦^¦WÒwKP×¢àËcUõ@x ²Í·½P@¶E5!È¡IÂDl3aL@æâñ +¼ÃI0§u N ×ZÍXº<.(Ç I\@AcìQÝÐÜÀÑÐÍiHïW`m MÃÆ¤~�]2#)ðä;HSæøÀüèSb]x£¡ýÒ$x ¬ RRÝJcØ´¹ÉEcCKSa +.A=ÁDn`F¸ÀòÒ@vêÒB¿/±ÀÇ'JkÛ@Ç'2w°²ÞxÀ£ 3Ù¥m~t YV ¼ÿÌ>¬òĸDLÌ>,ÅÙPò æ8nNß7®_Sù PÈÆ$£CÌ a~æØçÌwÁÁ¨Èôð6>ùû3ò¬ó¶LvÉ2*2 êú}BÁ-¯Ø&bÂ;âl h°HPXɤ "rÄV% 9×c«>[Èþ[ÖDrlU08tÄV"_þùHhµ,ïÈê¼"+ëç_Æ|WcÕX5å'-Æë· ·¶_-ùèöÃDÔwhá¾¢ë]0(iÀë ni²;¼ÕÚ D@óq!××ëºÿ¨ÃÜܾÀÌq¹A +îô`n 0)0Ó *6YhÎÏx¦+ðàä¨á& "1ó sñº|-ùúXàÆ ê»íåùvåkº=9¾åø¥?hþæËÄt»Åûeªí �#[ñpÆÂ¤í ~ÍH +}`ñóô¼ÒVð('Fë#1ËøNHÄrÓÓ-àó'1#-òËsD}êxzê-èéHká ÈÁqD zßùf4£I-BÛ»Á|¯Xp²OWÍ'6Cê°¡O$+Ó4ihb0&Æ^¡ ¤¨£¼ û)j^ Skas\£C] ++¨jÌ$A) ÌçÖBðû÷´ÐÎÝx`>Atrd»Ýbhk�Õ>Y@5_¢þX±¢"Ñ+P9lYÚ4ÇÔFy7 +ÜÝMòª;pâI)²¡lr@ +è(c£û¯ 1ʺ4'Í(eH æ´ r ¤1)P$Ò;DUhCÝÈ2Fg4Çú[Ã7¨ËÀ ×gC^B:]6yÉyCNÖbeÒP2eÐé¹%È@§õTc24 ¨¨|YFe¯¼øöË´¨¶wÐ`ªµüÌÖëaÍ?¯ã|k5çÒöTpùykÔu½sN´ +˧ÖË·@ýèIõ7 £)¨ó_HÄA¬<Wh§ãÊ+!ÈH(,Cr[($Ãw´%?ø�]ãc9í�Ûû`¼7,(2ºjâÀu²?6½6c«¾AÔÓi':#vbAt$ .ó' _AÄDz}OL´Þ¼¿¯ß@y¼JÖØF¹y²?g¼BGF´¬¬nÍÛ(÷Lëh)áEb&GÎóêu *R9w&¡<êϤöbwúÀý±É*ß3ÂïBpSó t1²G¡C 5©1>1ægN]ʼîõº èf[ ËQ*Ïü4þIÂY̬À2-õÍõåüXÎ' ú&è ûõ°Ýïüuû¶ßºL úL]6öur*ÑiÅÈ2nÎ yP²¡t+"ÊyÍ~Þoù;Pý±gË×únb@)$o&6: 0¼CA´>ðY£¡ uOáAJgl¨Yó�ý¾§2`á+N3¢\`Ð,§bG«§ÂÊ`ÉÝ92X2ºU¤Ã;éd¤ÉÕ=궬îaÏ´ [åÏêîz¦=kPí:/>¼ÿqË¡Å:}éi¹')<ÓÏËѺÁrG·ñÝÔ¾ØyÿzNò4Óùõäöfݽ}cÿMþ:ô·sºW}ìæ#x~=¥82è0i¢ 8ª t°?£êXy!p¤p B4tt/QÉ�ÕÓv~¿ÒöÀO("ÄfbÿB¤'ö¯(D:νÑï;ÑЬFy8N¨dR@Ç(¡%Ö®À<�ë1£¡ÇôLÞ<¨CI# ò΢�_A%àh<Âz\'À<ªÛz¼Á('?ÅCű䧸òÅ]Áª¹ælt \bÖ":À8±ÔÆ -áí�&>Xêø`Ä+ÐñÁľÞz%¡?®7\ÈÌlfMMt/³"¬RAoÄèî,0k L¿¹ÁO:<½U½�«fÌdðCZãÐÒkR2ª1%&« :SSx�Ì0aV[vZ¯ÀZ¦¤ë§¡å<Zf¡ õU ÌáG ìu½¬×ÝñÖ;ÚZGÐË �@hK{ ê/Ð)ØÒ·:4 ð�zþZ«ì»@%2]¡ÈD�(PMÛµÚL½ÐxF&ÕpçCGàýèIQ7ªïlÀnè< »Ãaåpõ,r½~ëè9ªZCÏ®0CfHæéçÆ<AxÈÅ1j\ln ¡-÷|Ö' :qù îÙ[MY²(ë#=g¶¦:6 Ä| ÆHnì×úû/üc;[i[\OBä©QFE¨³ð¿¯§íL,CzL9iî+6E:°õ"é7 ?5Ê]4JÈÓ4£Ñ::Tw +Ø[¼)3?0!ð@;3J^¥½°tÄÅÄv ±æÛq½¦Ìýo¨õ.ì é] oH¯ïE5âH»Â°ÎÕ +©£!u²G gHGFæKÈH�ý3»£zæ]ÑnÀÒB¹p\)GæG}ï(,èËèbë¤ÙW"V}/«a=mnEÖl(IJ!*.9ìHT¸7Ë8e\7õ/Dtp§Dì)¦ ~�F<m4ßÇÚñ¶V!¹Ó×'äÁ9!Íç±Ì>>wú¸m83ý<4>cîÙzd°UÖæN+`m [ÀÔ1¨põü= ñÙ$Þ ¥A>çÜ5õ>°Ã³ï÷Óô´×#ãé²9íµÍKêrAÍÞÐ#²¡öºO+R]XJðô]I!ïä<]6 ܬ tdnb1Ða Ôd.L®ðÀF{rlc£I: G"½ª0Í,iÌ$E`,£--`Ü@æÑzHwFÂÖ®)° Q:¾ )y\H 8Òþ-¦C+^cÔ»%:¥<ewcÿmÒxÊBA®®Nw g°C£§}EC=í>I: +ò*B^p´/QÙu©Ì:Ï|úÄ-TEzáèX5sÚUÔ¥¡]*K² °>,²áRÝ´ax§ù|ÿ@ká?Aù^]cìÈnmÞÉS"2zeúÌNcfÆðÎÓI¯)Tµ¡IBÖzÂñ©^Ò׿õüB6ÔKc,9ÆæVDÇ %ÒSð2k"cТëãĺØjÆ ÛpÔ¥(]k}^Sã +ÇÂ(ë{yêtT¶<ëZ¤n+Y^߬yo½ÙÂpýëôo%]ãë×ôs Lͦ±N°G«ÿ/@iú¹¬ÝCI¨g0&úg®ýúI$¿\Ü;-´Æì©× +¶SûY¨&6)ØÆí×ûÇí¤n+Y«´Ð13kÁÐS8W¾}fVKBí +qÛ$ÞAÀ 9@OEßPåY±½××ËÄÒ^`ôûR@¦÷ä¦}Ç4/¿:¥ßZàFòUð½oiïW·Û>ý~{miûÀïzto¹dÕcÄ´À ÃÜAþÍÅßv°ÂȧåÆFo4évVÛ©X¡í¹Ö¦·»$V".ðpXw°AW/×v+F9¸èè�ADmàiAÇâì6CúrÈâ¶Èú\¦`B§DRD&ÐáëT)±IÖ¯0£_éªÎY§@ÑL UItD&©=þ&éðJc£Är V"¡#:IèVx� +öt#BÇÀd½:¨ Fïz&v2¥FB+¼Ù½< +o pPdÔ$Ü¢IÁVª=ÞÉ£áMÆøHoò7 ó »$zxWU,ryÞ ôü¡-ÃÌáÞ8çà8çpxS¬ 7[û +zȱY¾#=h9{æ%Í3·ÚîÓV>pëµ#å¯ ñ{@G×*]_ë¼Ö1á´Þßµ°àüûzxwtÑ;�Ã;Þ@hIÑ= +;EÛÅDÇpòÓáÝQ3;½<MQÜó2?[H?wv^fíÛÇÚìzG°ËHð�DD=¡)Ìt=£,´öÚñçf öxð,ý¾wâùu¸®áÝópã@ïJôÃøC£¯y°Ö4I'0KÞ'qv'º ±°X¢êÍ�´ÐËô̬É(¶ºÞAÌÝÔ@ò8´,ÚÌKȤÐ^nz4´3CQõ~ #(άõÌDGnë¢ ¢[ª\¯ºoù`Uh§2õäÜ7 7";ÊöÏëõììm{¤Ë+~]ÞR[YdkùÕçðÌeÿÖô(û?¯A®#1¶ãÐÚöùÐ2À²%Ô£zÁn2J¹hü�GY`~æP¥±DÔDzÙ0°Rh§W¹PóðX J}Þкô:»ï�n@Ç&¼B¹SFÊtÌ D»Hõ¨+ã3!<RbMùÑ· oÊ×@´½ÿ$·ôý)ÿø@JrH>üÑÁ¨â3èÐfCÊþdFEêÉÌ5©)¨I=b°`L Æö1Xðu1@Ô!+Gz÷íYT7,õÔIªÌÉä¬Êe<f«÷xÐ2f;ÚþÄ£-ìêÃå#UrHAMì�'i9=°0Îc2zã¤Éaß¡úð½µmZå«e õú¶¬äÐkÏm$%/´\OJ°nϸíCôN¥o9Éö/ÏÐ<r/�|Õê¬KÀÛNkÞþøiÏ~Çd¯ýøÖd6°|úÈ£&á×ÚöÌ_ÏÉÍÌÞ¼DAGVt)00 ÿ¡µÔ¼|@îEw<s\> ¿Ó,´ÏdwÞ�¼]XZXyþGwV=ÁÆ\¨woT.´*j\:ãFìæ"}0z KÔ#óã¡¢ws ëlÀ¤@b +èo= ) WÏ Èúc®ÞPðv꯽¨*Oç^bòoÃf¦N+/Ó6þôGöæPLvræmÀÑ=!¦5iÇÓÏ éì z¼}ZAË¿ÆZúøú$4úQe¼½£Ý·0u´¯@¯2jí¦N[Én?«a&é¥nKrÞ£ÔmÑÈn¶Ï¬ó�ª2S·U§nú¹-£Ý«Ü0Ö.Ùeë´·3ð +tkåÎ1àèÝ"½¡ åÞ?qù1 ÍÙQgå·F-m�7àhöW(?·Y+4 8£&Ö;-øûr+££FkгºZÈjõzÜ?ÂïÂ@^ÿªµFø°ßìU%`å9Ú´GÔ^P¨Dôi)±/àhµ<¨·ÚÏìÏÉScR«:Ä¡©1Ç£{Ï4éu0ÍÏÔÀQ!Öù}gÝÄÞaÝ +ÐZ)ÈîÕgyÒjpÃ+�K`½º?ÓÇ«ý dÃÒ[àDìWwC}Z@B +ʹÔ9±3í=®õÕô@Ô»a\ç!v7ÐcÑ{³[Xucpt¢4#ÿ)ÏZ\Öí÷?è¬FãºãÑzÐ!ɨ<ª-²Ú%Z¢Oo?ZãÊÏþŸä¢ùc`Û)o½°:¥%>í±Ñ+Ô.¦@JÊ:ج+çõº¬øó:J»âÏËAYí%wY.Ç4µDóº{¹uH¨ÜkËÒWâÏ¿¼#3ékúöd«×e JÞ£.+â uYIä�]KÚ-_¢Þ¬9Ú$Â;3WÚ@VáÖ«mâ¶ï@Æ6¿3å¦Ulc\^zD#»Ý¡c.òÆW¨ÏCÚtº}Û)Ýgj@8zþã%êaMÃHG¹¸ Tåâð÷u<À.ëõ²¤}Òû} +]^PÐ +Ã.ëeEQ9âyègBܨ ¤z6µYÎü${+YSGK;vt ÚÙÑö%ȪëÒ´¨]Ö¥qPø/ôI¦OaÞÐò->Dè8Á(±»¢»l ´ðµ V-Ǿ5\ ·6ãß´Ð÷nÐiÝ bþ´¬¸1éÐ +r¡>vÂð§ôV3*2JèyZ¹-AÒdö@W¤,$ËôÛÑv=Rsµ¹è¨-Lìé09úcþMÓ2x ãÅpô�cÔ!Öª\/IIéE9YH5êA¼<üÑå âíº6DûLå"ë!&9[ÉM6\CaùEèÔÊïmy}æÔgv©dM\&ÍØuI"4×Èd.Aãa³®ÉPdr`\EÖ i¨å$ÄÑ +7Ð ÚeâÀæËX»÷sHÒÄç¼\H6üu½ªh å`l"Ú;2ZYP|&.xzIKÍ\ëQÐìz ±\þ6ê {& FBaÎH»3lb{¹HFƸs&Ô¬ ¬²¾½.i墶N 7ÛhÍÃÆåpÅ è ÿÆÐÛ·mLpoÂÐÓÿ¦g´Õô«ÒÌQH àc×eÅHê²Lt5#8¡%Ö3ó ÎC±¾ÂÆHZH:ÂÎHA=wFè° 9Ò¢)sàÃA<¿¯6õz%zsbÅO0[2=Õ Þ^~â è ²°Ü°ÍÄ-/·¼SKa`ÜeàÆÃÖñqÖß_üï¨ }+°õÅÑ}Õ!¯õ#þh{aËXaæîÑ·ý BCZïqgC6`¾·û?¯×û°¶à¼^ïÃZ³Ð/ëuOªçõz]f¢pÔef:¿£ë×^ä¯\ /è(¨{È@³Æ@¶/ÏÔo Ã"T÷)`µÎ¸¡©ù%8àîJ'ØTb`66\â¬ïÀ¬é43ÔeÃt>Ô")l{°y²C6Þ²Eú[;ê!J�<9í¥Þ)K'C¼ÿÝ®í^ZàôqN÷·êünOÞüLÈ·;¤öOIÞ§´÷ÌÅ1ÝÄÀþÀ¬}¸à3ø,ÐV B(BËzµ¾R° +¦#gä¾%³òÑÀ¡ vÒ2²ÞHu"{äèýÖêòzd×õ¡G¢W4EV%:XÉÍUÞôPE§Ú¼öÌ'MEóIͺÀÂÖD®N3C=ådfB§à¬ñ yÃ*ù4>üÎsdtÌ¡q¢yD&0®ô´ßúK3ëA½ªnyÈ|jxúÔµP·.^|9¦Gw14t´Àksç¯ý\:æÆñô2Ö¤zÞQÉÏ® åàSpF&Ôs^8:uÌãèT·zæÆMÂóVU8j .¾cÍÓ¹ÝWsfì¢D!Y :°ká+ ù¥«fQcdK$¿7Øô+0bcùÍÿHyu7óÒf#j¸¥¼;zVÕÁ¾~^êmÈàá[æjïðvÎK¦ß×3F´ôrÊÊ&? ØmçR@OYtG¢éÕ`øßÏL$ðäÄnp{Ll ¨°Rnø�z+á7 ·2gIØãúåx¦õÁ½~@'áL¬·c5¨7þÛ*:x>£ñߦñ ùX=ñèéRÀòW¨çÇ ]¡Ò?T±y"+0kBo@4V÷ÐDù3@Gùþ¾MÆÚojg& ÎÃóCZ�¼±Eóº5¦ð¨©ìÉ]þìøz t·e,ôü1sA!(CzU'úsº?"ªa¹"%<¿Þ÷/!ëÅtYtGMpþ¾PäËØ,B²H3ûÃzëÄYÍy KÖ¦þİÔdãõ;¶îÐQ9hJ²áÉO¥;Âþ~*=}@ovs�ìç èÍn2úcx²; úôÌ¥Þ(%§Ú(å%ÒF)<d&ç&HóÏCfL|µ¥_ VmÜXqgnÕ¯ uÃÎìÓé½g¶r7ìÌ>ÆÂsGQgOÌ+k)ëbùr÷îÐ$!Ç2Ê^Ø©ã2¡Wë@ÙYé({xo¤Md ²=ÔO5·Ì\Ê#¯¨ Qcûo ÷i½î7ºü¼/µÊËzY´gªóöeleÕçåró¦ÏöFÔs4<´ÓØZÀãËéDÞý}£¦²!äÛwtíà #³ ß»þ½ ï´>Ò°DßÍ?pÓÀVîá^Ôùvdrø9÷ðÞhç7DýöFÏ;(z&~Ùð`é6s¡¬Baj½ %#õñ4k d¦_gí,Ø=v@Y°ÆsWóN|àv6±!ÐM£Ê¬ÁÌh +ôé£ó_Ïtqê6°[²1ºqD"pÿÎ ÈЩÕ;4Ö7æ¼Q§2óBAf²HN¾q¦è/~qÑ,ô/dÒH+Qïü~gîùvó>Ò#©OÔQd6PE´j3g0µÒºÎìDpB= ÕlÐDòA¯ôÈ#ïx¥ælT+BÎpía¶?d5¨ÃK{"ù^zýïðI"%6VGð4D×\¯PY +ôTrVd:λ0tCC]©ÜÃhC9Ð'S GæÈaeLoz]æz,G4e²;òÀ»z¸ÞÇ& $ä@=þ¥Ç>±ÝÙ#Ö3á1ºtô,ìMÉJ FýÌiÜ£"4kùÔ³PpíxêaxÌñÔc¸súSÏöLyÔ£Z´ ;¦kÑiÑÂZLÖ¢ µ¬EK|¦EK|æ îYØO´hIìHÈZ´ÔiR¢K&:-wèеóÏË*t£Ý;4hÎ?/+Ð:©·{ ÎÒÏÛIÜ+³¦.#çõzq FÉ¢Jk®Ìp Ôå[æáeúH¬]=»¯À1»¼ ê(Ä +´ì.é�Ùå1ÊNºëÑãÌÄúøøxÀ!Eu4:YéÁcôxç�v¼A=6,d¥Á è°dÃtÎëõèæEt/ÀêB¿ïx'>ú\> »¬åìÅ#{ÐÙ¡ñGÌëÇy2G +õ¨-Ë3_æèQ2*Ä+ªAÇèrÔbz +ø2¤· õ±Óí¹ÿ½&C 9 qôõö H~IQóGM$Ù7°ù<$h¡ù#invWYÈ6j¨ÃªÍë1¡ÉC³'òL´°èÍCMØ£Ë7ÐR¨jJ¬&%¤ÉÏGuOØØ¸¦ËM\lâÀPÇÅP:²ÈÈTÏ"õìô;´HÜ¡ÅÎm¨e1j½ÃX#ñVÆz@æÁÐGê[èõ·Rß~zöth¬¡ÓÈÜ.îirà£jèt�¶; ÒèõT!áô®Mc]¤Úð0ÐEúz×ÐIagÎÒ Ì Ìâì»Ø-TY +%öÑa©sÏ' §~£ê;лéVNÔáb»º¥Àm0:&2 9 Räh¡õ`í0Ågz$²"tÌËE+X{B`c#( zÎ[ëqÙ>/µ0èØHaè}gô&ô3À1`FÒg/ÈCúÌàϯCkùxô5(AlÝ}TgD=æHØrÝ]Å+0¢ªÀ¶LÇ1`fÞ[óè{ÆÐ®0æT'ôè<)W ï@®=¸7àHÜ{¹dïĽw=Tʧ±ºÐÔ2V½ÒÈQ®;ÙÃ8ÁºTï°°ÈMBNwÉÒúÌ#JÚ:êBxäò6¶¼Ú<qp®wYâÂ.:ÑÓe&>ÃNϤ^iF¯úÚßëª>-TZTàÉ¢tïï hw`'Ï¡"p$ï¡5pLíE1¢¾SWòÊ ?&¨ Qnãû>çNä ýê{î¥HÊ¡ð,<>æîê0#<.Qyª¨z=H§^#c£¼{åà´½¹^¨ÞåÝ^)>ÿ¼Ì~ éÏüõEúußp÷òn¢!mÂ×ù}³õa¨ùçç󣂮NÓËõû;voÀÂQz +¶úîÆy$Ï´ÏÐÞ< C´ DÀ3s·xfÞ¶¨£Bìô;Varñr+°Qn#'ZÓÞ'X˳ u4ÀoM¨us"=àxs¬ +õõ#Ø?÷L¡¿}!2ÎÄ7 C¬Yãa".hLu¡".x:Dܲ;"d>3̬e[Q9ÞYôô¬ÌzeùιåGZ4n,zÿHÔþóÞĵµËT#GT¿-®èdkÑs¨Ì°G¨£I4ævB̨ttB:ÐÉnmzOÍÙÏs}è8}@¯L@¯L¨Ê\µå;`÷ å;ÐË6æGï@''Ù+¶ÊÓQåéZlg§£=gn*5\: 3k"?Â=ÌìÉ©ÄGuùÔi·0e¬�2Ï0¶§²Otô0¢Í©.D+:úÁº> +òC/?øÊC¯Ï?sê+A?¼>èÍðú¨%>àõÁ `ù$îmFâêH;üá÷³7r+¾~Ù¾ì on_vksËÏëð<QÏpû²+jîäõúx¥ZÏÔ§¿°ÇÏ+óewÝÊi L/Ð3fBí¤·N'u{F-Χ[Ý[4/¡Ð-Þ/ÁÌ!q÷GR3q§Ë�ª ¬,Ç: kÿÒ¾´² ÷l\¡quÙÞö0<Ô `îZûÈ4h:ÁsÂýI¤ ñ'"ßËhô1eÐAÎhÂñFé +MÌÈBzö¿ï(fM®'î=ãJá¥ß÷`ì¨ÇôV!-º+6Ä#7 ÷a5¤Ãõ¨#7 çÛ$TCdÊØH)¨çn&VCú#AA=ª§ò§YÓ£v5sG*ÿj@Oå7Ü!] +V?GMQ=Á¶iq]Ö\Ï¿5ü!G}´æNØÍ7µÐÒFgÑÊÀJNdÌÃvöï«Ä�Öò3`#a\K»ÀÁyû|*åææ¢mÀÆV1¨q»ìMè3ÆjïÁÌ llÌõ+Ø´ÈÚD' FÎ:iùË]SbçkîH_ÃÂjPÇ£çG|HÇç¼:R´bk^³ÏËV¨$ëϽ[_g¼ìþ¥ü¦÷p¨76öZ¾¤¶|ÿ«÷ì°ÆölsþùW¤R[i=MÖ¹£ËöU¬§á@«ÞdbZ +üÞAJr»¡º¥#Ü'ë|6;á+¬×;H ´°1ß(ÎHDP!V Ñ M/Öy×è]TÓ¦±×êâ"zÕ2rCù¡µõðì~ÀL@-tGzëÑSVÎJ¸ÊY1& 5gà|¨g¯x�ýWÖ¥z"øFp䬴$báU¼9g%NÌEúø +Ä^Ñé +ôWÆrÂÖólÀ)7OQî.¥ò" ô!_ \L360?ä¡ù!- m¶wY¯'r×a¡ 2"ôÌx:ÕÖÓù=³&}6Ð7à�Yë³"ÐÆHìÁsðe5Ó k¨7¡ÊÏÅ3»S¢?b¶KWÜfÞF;àèÒD¿¯Spc)ÐëÐ!s·×I{}K``;òùRúÄù©"k9Ä£¶,³"£l(B¹¡rNÐè¦Òò2{S2BQ:ñCjÇÌp`*+âÖe£«M^46Õ ô4«YQ ɶtG©ÇnàR÷(hÃJù±«Í¨ê©åÆÀr£C¨£Ü÷ï@¹e*)=ÒB Ý9Eaîy°±~-ÏË`_ý&K¯¾Ñ¥c¦×½Ùú·#ûü½ÍF÷çm:Òñu·Tòë&º?GÙ÷§c »Gó2Ö̼5³¾P®<@úåçfæVE`¨U è!Ó 8æ{÷ +:{f +oÁ H:àÓLZÔavMLxxA!Ðo`!-æèÖÓp)7ÀN<¨'øzÏØ�=r¿:±èù«ñ ÝWÄÖ-¢¡£s@S¤@k `ÿ4â½Ú2¹¸ú@èG]ÐÞØØøz+áLräP¥± éÏD¨ =&f4§) ÏÈi:ÒÊÄ&Ar¨ÔerU3æ64úlx :6gèB¹ ¡.ô`ì¢?`æ!£Oçhý¢æTÚ ?²£5;òCWBÎßi£»Ð§£vØÆñ +M£33!#n`ÚzI_5¡~ ºH½®=._ó6öF÷Øö¥t<HÁ± cp~÷ì lbt~¿ÃÆÆ( +áùKí)QmTÕU¦ôûnª$|ÍAØÞY]¹ ¯oltûu9 <·æg·hĶpMckÈǾåÁe°¨Ö6ø@H7Y6/áå½Eé| éÆÖÝÞúsÛÏv½vÃ]k×Ñ7ÊðA£1ÄôÕ¡~]c9÷H)DªòÁ =oèT8úm¨Aú]vERB"Era!]ï6ÐÒen 9ñl@Úì *½oÀ4%UUv6ñ¦Í#$ùÎ*¯<ür¯¾«R½§öv¬ï¼³4!.?÷T·x¸¡õçårOã&Á¥3ÄÄ©ZhÔ;¾=z1ÓôÑÍ¡)cÃ-Z[ìët VÈï-^^Êö`Ö!¡IÄÐÑæ<=»[ 3QA!òpùy½Þùel´~ßøZlvùï.â G«6àx´ZQ èû_ñéè$ +DT!®|ûÃçЧ(GÔ¾.w g!ÔF²ttÕXwDS¨§ò&2e~ XV£)ö¨¶¦Øý°Ö£éÃCgötD5èº0ëå�ÙrGSéU³öäÆå¡ÙPêÛ,äèIÍ7 ·,a-æ@ÊEW¤�k!c«v vË:)gTª³æsº³cnc´Gç6Î êÌm4ï`F= GEiaZOÆFMæh)Íî¬IÓÐ +6ÕZÉèdËñÅÍjHͶÈÑZ».Ð>e#.ÕÑAKð¤êéðIsGìÖL½ëL÷;A®ÈÒi½£b?@¸ì[pïiýÖ�rµyy ɸ`>Ï3} O åp:È»ÌÍ;¼²öÜÁ½âÞÆ©¤,îÀ¹{(µ2i°[·<3mpähhu4NÕE%jºÈòiJD§J÷iöÖ)Oceb5"[c[iÀÌÖëiT ¹ü¼ÓÞàÞz³·´¶}7Ú¾cò_rgP ¯ÚùM|+ äD¾Ð$¨Ç?6È\hraQÞxY¯w5n-Ø.Ð3n@ÏHÎ$j9á=2Óâ_qÕÛ6pè¢Ô=*jÍíã÷w²áÉ?_,ùçOÚýç²^¨.üüþýþº<ûý:~¹ûûfYÁ´À"±°Ñú§açÜ3_îcÈNô{e¾´Ê +øÀv³BæÚSÑe7;hèDoñ+_ÄðÓ +4tâBDðe®àÀ¥6ãrHe4vÐZÔ÷v`vÙ/éþä}ÿ@Õ¥ÁGh¹3½#¬<Ïx&«ÒàÞÉËÜÁÞìò7*ÝÕ¡ÖÔátj£¥'-+¬×]êæPMÝ"CþùÖ£¿óóV_ó§¦ðsÞÚL{*»i¬Öýp¨&w{«ô».µßý:\'Zµÿ4Xª¾2ý\çk{TÌ:GÕ¡9j#ÍG#¹éçJc»ÌàÈh>ôhìgwbÇÈeþ Ýê#cV<¶Vr¡|²1ê])7Öú¬ ï@xõWÏI#»L ¯PµÑÎYI +>èfÍ囹ÖÌ8AF&ÛfÄ<kºØ +î*µiê *òT=dÂù!.2,°,ü©¸¢=w¨UõHØ«?ÜÎH2Ì7:îPÄ Í©îP¤¤ÀñòH +=/ϯ@~s;Þîý£HmÔUj]SÂjäxûï©s¬õwÛp+y¥Âjä&ÅvòºtäWdû+_Â0|°ÔLÀ}¨ùÏÉ TåúØ EÔ½yÖÃb¸jªÜª-JSúK + +¼öVvbûýî°qFÎSà~£c^ax +¼b¬l<y¼¦ÚÍ®ÝâwÜñ²FïGOÔ¥0*£ZBk"?:UzKÔ 2n@ö ÛHíQ9Ü'jyÕ +C}3B$rt¨E·ö@k>ÞÒéd+£Wè\´ap*¿:%v=ÂngÐÛô +Ezè:ã·zpX¢Ù¬ÉEòÊïOW«\R±î´y[²Õå1¾, X!¦órG\REàòó2׿×[t·Çÿëôn^5®º~@ËQPoÔ߯õÚY6£íÀÓ;ø½¢=<^v ô8?<öhh?ÿ#:ÿ+¼ÂPW{5âÖÒËÆö45`·dÓ¸ØÆº?Ý´. oÀÛ7Úþ\P+o>µ)+QÐÑM«MÆT© uÓÝ´&>ì·)=enݬʣ¹ äè:F#ò,´I(·R åH¯³KduvI#¬GÔ[<¿UIJjzļà¨#Sä©cMêhèFBèë×g¶(®ÈBú{áÓéútz:e2\:Ðä\qSÙ¥¨¹ô6ÔÍZÈu#e-jn?ËܺzØÊÙË/ß)ã +MÖß�Ùy}\u¶lô}`Óë>�ÞÓ[Ü'ýàìÇûyŬ:�¼îV9Âê]f$¢>þhA"êÕ!;ÚM·�f\!¶;å¦mÑ®ÑÊ¥ÛÓt¤r*'Ò«Ë.ßZ.mépk;±P ií´³ÂMÀðf`×˱IÐ<³Fk¯Þ-x¦Æ2 £/ÎH]%çÁ,mÊxW¥Û@®ÃÅ3ÃúèZ@×Ò1BháÀÞéÆË7Äýòýýu/¶û(³Ü{µLn©ªNISl¦ +Ìj± OGµØë(ϰ£æï3¬¶j½Yãèg+ëÊÅ 6r +ƹ«/½ªMMk þþ?4¦vv;ÿ¼Ãl¬×ÍI±Î?¯[6%ß÷ñîlÔ<ôA0µÿzú ãu7`Ìá Î``æ5êÂZÿ3' +:àÆ4 +Øá{Úª z$´7@ðd' Í+(È:Üf&¡Î 3É¡£³[Í,íSÀBíã këåÆñõ°>!9¬x~]k~{WíüòDpLá èó'P;¹Ä B»µjR?èßBh¨WO} wÖ:äqúÃS!&tÔ»ÅÐo`Æ+¤1cµä±çÏØÎÑèÏ6êaýÙfAÔmVT#ú³Íç×m¶5^dPo¬ÆzPOoX9ÒÛÑésÆQy{#²Þ,ñäÉ)¡GJ BÔ¿w]Ô¿ëv@ÿ¾1~Сs<üMTCæ/F5fÀÌÐIÈ�õNG~ûß9׿kvúþvñ#ºcÆÕ ÖëÐܹÓr!uLï÷ͨ°©±_?IÕR0ÎÐóQÀá·°ö¼^éÚÓçåd`åÏpÕ3n@.ö;rÑ.Ыç3@ö¦°öL½ø½$èF¥&0kÏgCGíùÐ'¬¶d²³ê¦ð+/$ÔOPYõN¸=.lÉh&ꦽ ØÉh.m +¸óùû5¡Õ¡"òDuôÞê7f" ã¡#O}¶ÜvT6=²Æõd+ EÒiëeÇehÎtpda)pLç=7¹xU¥ÈàbUCj7Ò#e%ìáÛ£<ëâ{òÀý?ýRK_ØG¿UÛA"ÍÂi,!{;$ÊÄy WVðDraw]Pi2Ð`Û«%vjhj»EÑ16ÊPNJL3Éø4Ö$ª´ü¦À·¢Ïõ¦ +Ì;\6õ¬î0Ýõ¹U´6RfP´ùRÆf<(&)¿dù ]Ah³Ø2&M9ùH/ùäW9êV#4= %¢[£g%´hzÙh"UäÉCÑÜ�G7zÝjPem9jR[áí°cô äð,¯ÈÃrxW4ézxÖêfG½ª¼±S¢w¡ezRì9Dgl P®kÂÁÜR©´Ãcm6-g5&$GþÑ`xZG.l2¸çØPË0[ÀórYµR·ÓrjÄùçc!×kýJzÙ¿øQ[ôoÙ¿õ§Ü½Ú!ö?²ÙçÈ>êðy±zrçõúLÄD7èhtÀ¬çèàDȵ<b/û 0;v×"çÐK;Ã;Jz'!8Ãvî¦BL)Iàë$®õìÍVRRÏ·Ò´ Ø0-+½Ëêw(hÂO[æký6§\(c±63:ÀMİj;°°Ð@Ç&b¢;@lÂè¥1´?æUc#;&KêØ(ÉvfÑmìgz4é|útÉ}=ÏP%ú{Ã&]/¾ßmØ+s¤à°=r¤àhW`·¸DÐSÔ°×¢rü +PݯÀ¬|N¬ôÔdôpj%Ð Ù¤¿¯Ïd03ê1̼°ÐÛ¼É+³ ^:Î@´ad«ËÐöÐ)ÍêïÆ9 èuA--ÎC+¹ÔQªÚsgLxc3O±,@Ö"9£èC3þ¾ìLä,$?ºftÇt!ÎèyƲº´õÚÐÞºá ZÐ KlÙ »'0X`CC¦ã£/�ó7èhì¨B+´ßK\ öÕ îôåÞhIªLx2ÄÛ�æ<Öï½9"9¿ Cùçö¶ÖcuKÉqìµ¼Uy·¯?:Tõ²ý±ü(PÍÇ&>زF.GË÷DïÊÓà±ÜÌblÑDîNþ°raL9' käNsV;¥ÈÉ:IRhC¬ ¿TÌDÇ(® O�jU½°!ZU,´"»2Â7?¤(}xËÔÛ¡MLA9¦¨HôØRòs§It·>rP°×Ò»úÊA8i{BlûQºA»>Õ dÌ>MU5fÁäÆ7²7¤ìu dÿ¬4Z 4^dapç9 ;Àáóz9">z2v.ÐrçckBvv%tw>¡ôËÌAîñE£,ÈÂ6¸,ä(0EgMpmYbwPï8Òæ »G}fǪEthí F7eWª¾�çìÙFõÝR-¨eo*-H�½)%ê1GdbE-Ì8÷0mèPßsínZ`kbsÖàÑÈPÐL>Ä Ì¤@Ôb"»!]¡§aÒ\zÜËëÍò^.}ƨÒ1täheتLÎhÍÃ{&ô$hÄ\¼"9¸ãB=|Ó ¢Þúä ÂËød¼°"½=ùO~ ¼>yá°VöÉKÂ}òÂjðvÖCaR·Ë9Ó¿!¼©×Ñß +ÏËåÓ7? õÜè×AZÙ-9×ÛTìÈoÞM.¤&¬ÕÒîÎç×pp!Þ©¢µTîlÀî_Xo vfþØèt¢èÏÔÇÐ ôV$ÈÑ% 3½hÙ2 (Lz§Ï\6 ãëjnSÜWØÐe¦ ½Ñz®`#AvÌò�µHcJkfó>Û;Ðâx¨o¬ÓPwãÇ¡¾fzdk"ÒØÞzmiDUæ÷2*-ÌzúnAèoe¬ 0Óï;й8³=Á±£àå¹A"èÎ êÝ¡yëöì6¾y©5Ïêº$:7&rÌG¨Jux²eõüÝC=¤G4)¢5S¸§í~SÈÖôh�Øc!©NÁ¢ÀÊ_æè)è3n@ÎÜKè9:.\DoÀÎÀ=2ómüY÷V6 +ÎBè:fomx:::! v¨[ÓV½©Î>s]b (Ä[B»ÇÆ3-Qê,peà¼9Õå:Òxï=@Ó#ÎMLõá¬w´l¹·çß÷L×X�éMz°Ñ¡( O×hÉ·¡ÓÖþ�]¡gº^¡>]£a³axºÆÐ§kdÝá èw-¦ëÐD)´§k Ó5fdBÏt &¡Î )Çtæu)ÐA·Ü¬¡[Èr³ª£iÍ´aEh7e=¤õR@O]´GûÄR^ £¨õG¢Ôm!ë03_¡Þ6 ¸¶h!]ι±±-¤ÐΨuµßïÖæºS{m¾"Åvm>«hÃI?õ£áØ>ÞBsÈØ-&ë¹Ýñn&nÐêÒÚÐÖô¶zîýVzþezh +RB=âØhmp½z¸ îC[xzmÁ @¯kITíB»w.Íõ¿²ö¿«n` ÀôYÒ<hcóRðú8çu:ðû0ÎÙÜÁ´ØXé´iÄ}"uX¯·îµuÖò1OFDk&öQÑô.¨m"õ 2ÖTéÁ¢ÙpÌEöè:&R[ámxv²4geß6£>ZOÇDé;Üq.«óÔ1ú¼óÔ' Ièh«ùv¡=ú%:T»âïËEÎyÓ"l»,»ºm¡ZYÈaT£neQÆG] ¨t5P¢ÆBözÔCw5Òm%;5d±Ær8Xã÷Jÿ©3lÆöb6 6#n§õº!i*àüó:5pÙ¾lF +8o_¶"ßÐåçÁ¡³Ñ2ùo×gæ +>àÉ% >àÈ%|=4i6Z_Hh}&ð õe@GëXÞc»Qßþæ4é)hX~^/§ XyGíF¨Fôø>´Îì^°| ÐrÄZP*'ú¬ 5¡VO¬ +õVAü= +O a44HkÞÔ¬-·?°<sbasêhV@¨CqÖAîîkB+ULÊ>YC³X8ðjÔerlÔU W£5СÆÀ$täbjh§R¢A×ÞN$²=Ît©'õ[496IQxzÑÎhä×ïdè½ÚÁ èBÄþè³"ÈE¾©µ>ºh97¨ÐLEv�ÝiT] +ðRCk»+K¡~1´2¶Ö\OeÌÈÃz*cÖnÀNe¤ ´Z¹¢!ÕhYèígb½ñ¢ÐZ¼79xeÐÓ7¶ú¨'ÔB°L¼9¶úìxúþNp@¤ç èï½W3STòtÜï%>CèD îÏëu&¬ùõçåØÕ{ÀGÅiûDÂà(sS^.ëe+Â$ý¾Oi½ÈXz÷o»"þó»ZDúYã®ÿ ªp®ÚéÀ w gãf¼ÐÂÆ¼B,×7ô²¢Üã²®tL»Â 8jÕ5%h®G-è(kØðõ´~-P:¶&©y6@ÉB §Rv¬»²Î;lÉbM pj¦ÄÎçe.ÒS²³¦ìa[n@Ïé.¨ e9³&æï/1¶ñͧR°7°= 7Ô¤zFõ7¨ç1NÚï[=¥w/zÇ%®Ð§ü rLùA5$=7¶tÜ'ÐÁ¹¨ytv6-kb¹bÃGG¥¨á£ÃRÔJÍ{LdR ßaÃGQ8feåG ͬõlCé iTDz`ßqϸöw~k¡k\ãÏÓ;ÍÔÊ«¿ç;¬Ç_»ó¬°2ûá0-°O®¤ ØqíLÔãÚZÖpY¯ÇµØ¹¬wĵ+tÊÊü»Ú>|ò÷ú´Þ`æ,Ô÷êË ê5ûG,TK¶Oèx[²µÓÉÔNyx3Ý¡ã)ÔÎ=&0ãºæÎ]6 7a[õÀÕþ`?züÉúÎÔÓ£fL õ°<Òc1"õ ôôn@j&Û¢:¾=eâ¡""ÒOPØêqé¬33ÛXT +ZºXzú+"ù¥©¥Íôý1£ù*2Çô[QuÃÊAJìNéU®-\ØrhÒùÏõ)±u4@ÃÔSN²æÚI;é!j2opÖ"ó÷gòeQý";&}È+sÕo¨Cô¨~Ëì`¿Ü!{ÀÆC3¨Ro_jTú£¬£BOY_O`Ò0aL¢ÏHb`nfªþ ¹õÒ¢²ÌPÏÜRÝ9èÎé³ò+v&fYeAy&wÌQM©SF\)åU¬² ¼"¾E]7¬Ï¬qñѳÆvm'±ó§øZ (Æzæ:RÛºl=É_*±>¡cLáÊb¸T!Xƺ*·GÿeÓcuLÇåçå¬|ýyYlÚéÍÄ« ~>Êykcïøv+HÜÞ¶æÈ|º|@/Ä�úAÓ±à{$¨È£�õ8ØÞÀ&mÀ7[ÂÁ2Ö͵ ¡¾¬× +Þ 0" þÚÝt\/@3Ò¥Þ Ú}ñ}Iô¨4 uÔ¦¢õ�Õ¨ 6Tc:¡U×ñ¯µãÏEÜY;ñYÈxE%ðó®!³KSé +m +Zmë¨)O õéÓ4éü¸Â¸ëÒ¹È7S2ߨ¨}vVé?½<ý6Oô"·ïÚAzú�è²ë°ýè³Äo,xDã$âýM"®Q#¢ÐÄÚÂìü Yd@s�íYrL÷Ê>õ±²0[ùW¨MäDÔVßzÝt'Õ¤YH74×,é'^a%=ê&öÊô1é§W·ÎèSéõÅ )ïìßÄö*õúâU³è6PMð´Ód§H¯Ì´ÀȬôÒLô©¥á!sxx¨ÀóÁÐk#£ªC~óÑõ ÍâJT¢Ø|ÊÂé16Õ§ gèÔ÷µ±Îo9 +ty:пh¦ÜÜ1 ¹X¶y}äí>Rc=ÎÿVØRÆ8ë1£69YÚÀmôÛ$ëQ|¤ ÀÈ{ZÀJCmu¥ÓßݺÁ&e¬äJ?¯Kp{ò/&®ÖéÛ+Uïô½yEÝ ðRWt!# ; ðQW .Í»¶ 9È1.(ãêÅ äî\ÝQÜÝqeÈZO<àUH qÁ+ÔGFµÔ¥Òmãj\as$Ü<ÔÖ#tÅß¡ õåõLúËt `LAF=æÜë:°1bÒ"î~ßÓ7Õ#>¡ë)È ) wMIA»69@OCÏ|rUac=ê +ÄB"àIcoEyn;ÐÖã È)+m +õ0P y*VMÍ Þ>wÒdÈÄ¥&öEt\jR ¬ÕÖ}oÎ"ÍW¼>¨4ðÑHìÏí%¶±éøÈN¨Æ<Ø´æËuèË9êP*¹µ,w® ¼§õ÷÷¡»'s?ó©[VÒfX¯ëà£ÛÓy=°á6`8wÛ¡X4ÎGî9GïìÝ3ïÙ»fKû¸=-í[ÎØ9;PÀÓÒ>';lÀlïûüû>Za§>2ð=ù5=k§ ².eâ"ÇüÖ7 'ï5Xè¼ÜÞÓ;´Ó~è÷]ãO§gh¾ÌezOüVÌÑ¥ áMN+nÀ%vâ1'kïPÿ@²cÌlµ=M`@E8b2G5g�*±±c�êBÊüþûf7ôÅè°Î'Oä·9;bóî9;V󼽿È>ð.¾³iû½ÙíóCØÃd²° {½Ûì¨DóI§>2Ë9GÆLÇÙQ ÐÓ5àÕ¶¨í©Þ³©hæÈ&Ç&fvÊô¤§å=M¬<4{jOEºñ ÉÜ>07p#wÆØ-áúÐGÔD¡ÅHO@E¢[³ÌzDyð÷õÑ¥ ÝrÙ¡9rNzRh·×Ø$ ú#wÚS7zÞм}m7k6�¸òåÓgKúó%æCRfcÔ#`dîñ±×|¦Á= ØJCÞk+áäÒDÜ}à>A×þ@¡Üg9Kò©î$!¥XU ûìÎÏÊÏU fÞF½é7¨5ñÄðiä¼£:²+ìÕµ¾òWg5¦gs ùßf_ÆÔím4¦¯º(5al~r·0<R?Þ@Yl£Ù\ÓX͹ÕÛ¾9û¨çyñªK?·4Ò@ôw<y7t u:Hv«+»üc§t4»8:ø¥Á6¤!!éµm7àèLÏw ¼;Ã÷uÕÙ}ÒÄÀdãäHéUáîöè:Íí +KQm¨sÑÎý`.ꢶ÷:e/oÆXVE¡ÍØÕE±ÍÈè [¢8*Ê1ð%:¦_ÒtÇúÀ:µiÙS%fYWªua©×M÷î®~ë0mßý¹|c¡ð/<øù¼½òËz ©Ý Ï~ÿåR?úýöZp^/«³£ÝöÛî}Í9ÞÜé1Þn°|-sæôü»0§´Ëna ½<~TÖïÏf £kl÷ié|Lj9ï OÃå¡å0]>pcóA½Ð�rc )ÞË#_·m¤R.@ÄDÕ 3sâ×tFj¹"Þh°ÞPËÛÝEn×Hôv×x ÌÚ3^n=eÌWÖÝ&K¡ÔàlÆüfÐô2Û^Öë¾mm»p^¯#]n_ÏÉÞ>ä»ü¼£;zÂãëð5õ²çjS¿®Ðs¶3¸¼Gx5`¥LÒÚëWú}=æ\íøÀ¡ÊÚJj' +êN-+¿+vV>ɰgê +¡#bÞÄ+4¢ËZíÙíCÙ[{õîzÝc®$лï@O«-Aûìç,®éÍíêr¡9õªâDÃwQy:¼W즮 &볡±D¤C - ¥+vn>RÀ1·Å@ÿ@Å{ndâä{&õlgò ±ÔÎdáK¸íàó{@.!Lz¤,§ÒÆ;Ði°Ñ5:j<mäȯGIÒÓÓ'Í)±w1g¸FW¬- Oû}nÇo¬-D! &óÄð[÷a>N eùÎÇw¼q>Æwµ#ü½28&Öíæ-¼¢ì·ow¾ ${×-K~ÔµJ3ó.3n@OéÂøÐÒµ2éé8«ªJ¬õ¬eÏ*aé À&»%V¯tæ½Q÷+F"Ì( rà;ÐûwD%`&£.Ó]rÒ~ßîÕÎöxÀh]_ðºn\¬7 )è ÿQãÌLg¥=Lz3ÌHµ"õ² ]=cbM,#u˨Ô"è¤0T%#E]"ì+T9ÔXQ]*;]*5_zULØ{Oôó²h®@g¹V;Rî%CT0k.xzG@ûÚä8áî5æû{àûÓsbU¢ËXåzHÈ�zÕd³ÃK§]3H,älC&:Ðê$ +hsùd£]y@È¿µÝ+°°ÚUbb{eÂpTn¢± ZÞþd³¡ë³@7ÚîHkç÷ÍZ3T#º]#ì�j{°`è¤q¬-!uR² <3¤1±--iëÂ2jJ#*BÒ[�&(eMÑHõÞHh&&t´ÑY4)2ÏÏjLo´ö<ØlOop[9Fë¶Dáæ^F¦Õà©>ÈÕ£Z0e¢íÀêï<¬£¹�kÔdܻڱÇ6<Ë7� @V¹$K¡¿fßÏ´ ÐÛà 7åÁzCé�ñ¦ÛC5æèGÑrô(g5¦iE>í±7åèn´ ÈÖe²%É9>³$9?s&2ê!GéÂ.¹>tVÝA]Õ¼1ͰÁYæaYèî¨"Ïê]Ú7-®¶}å#` µØµÁ%ÇJ#¨yA5¤óð®Þy_~Wç^ó&`WÏËåwÊ:jã²\Â8ѯ˷߰ÑÎæÍÈ ^ϬyÔçõ»fÏpÌä È®p+«¸lÀÍÎÒý¨V¢ßwhÐÖûú=9#Àðخв=NëÓVmÓ^Sñ~ 8}@Yf$¡K`«Ã\¼Ð8¸xá èLWÔrã «!k=é!`Bë$N,R÷:KÄÓß9 *Õsçn EãuäN îªdO4ÙGI¦PéõÅô²*¨KtS~ £eÚEGGï ³Éù¼:wÛ¹È.ê42ѽv,ºIô<¯è9ÞiâºD$@]æ·p@´=j§Ñ¢O Á¦ îLOiw¤cU¤ÃkH×r±ìS¤öàÝó)¬°lO}e&Òï =Ã6qØ1MyCè-á +s1ÎÚI´¼Y¥ îÀñ`Vö*t>^YÊÑuBÇÊÑMÓ£ø²õõì²`É]6ü"ٳ˹@÷ìr"ÇÊE*z¦csZÏY,R¥ÁK<RgGê :;òPûêÌF®.z:X¾p¢'¢.q@µ«¬Ïm¤ò:.Çzå¤u+¯@åº_T"ë2¹@«°*Ò=Ë#Õ§_QG¹x©PKùÞFrãWp�ëõùækÀß¿û.Ô>0×õ·óß|â³í3}a¯ÝþÞÂDb¡kÚðü÷Þcû~À@Ø6%$ öMë(´ Ò©E0{°Ä?pCçàØ S´êÙ y¢èu{>,ñØctÉèT&IVV÷ÞÈæÎÖm·/¨º¬tÛÙC4Vø#!´åp±^¡ '¥ÓÕ¬7Uð²ùùú@mÏëõ×[»ªÝ:7`§´Æg,ÐË o 0ä:Ï#%vð +bd!ÐË%¤Üóûl/6*ÆdGg½ÐÓ²ëÞï(¤E¤øôØ^> ï`a)Ðw°é1~\ô´çÿ brè,ÈÑ8ÜÄ$±"óHR¬& +ÈrÀÑx�I +Ru^/;U{RªD;)äÈS@ÒË è)óC&^Z³ÄY½²Ð¯`ÓxÈ<�*"GBë!\»I0Q¢ª\¯¹FÕ`]Ép`D9#õýÌJYähGNié´ì6s21®Ò}âlø3z׫t\Õ°Æ`ØÁûc:Ö¼1õÎ)ZÄÈ)PåÄì£e@é6]· ^4¥29¥z¼`TäiºÐÈhsésÊ�hiÙçå2нү;Þÿ¿¬AÆK·/{-%û¼\ïÚR²ÏÛ'GÒÈ mFüôGFrxY 죣7ëå�zJfú:@OÉl=WÒ`wãÖÇ. öL9òÓÏ-KÌ íÕü²=-¸¿l@Onádëz"QP·�×{ëØLÊU[ºQfdAÒÆZ{ßÎìëG7àèO\G»^6 £»3ó°?«¹#D&×WÈZD¹ÂÊÄÍ 3ñW 'c¢rVm}ê{jÀî9R¨ÃÓ ·¾:©§HíÁ-xáO|ágE¦7È¨É Æ¸mýöÌ:bH9ÑïIûä»å)"]ìÉÊì ìMè-VQ'Øx@¿!-²¦»ðúàùÀÆ4ÅøÌ¶ Ó£°M6¦ÕP-Îëý-ñѲ¡o;-.ð·låÁESÄ&.óC\<è:ÛR7Üþ¾°±)Éx}0(Èé宺î¾úûé¯nÐÄjh!=UÖB:ÎZÀ1 s½laS8x½X³7t4Ôõx½sæP¡"6z·°.vzw>t]r#}-"5?в8{0¹ÐÀ䨢èps`çè*ü0¸? þA[PУs¶% ÝwâYXQO?^ºô¶70Öø£Õ±¾í,¶ýXñçeþÙøçõÙU.*üÜ¹Æ Wpò+çѹ¢Kçk÷ÖÛo D©à/6g$,c¥Ê¡ Pç +ìÎH¹À±Mfá5¶'À°;_ÔdüÓè G½ñký÷A+²C{tî\ Ñ¢r¸cG +ôy²;¶sä^51¶S YÉîXÎ}CerV4_Üê|L ãsay¤ÚlíÚ3 ¥Ïpm¶:ÂÙ²á1¿mÔEQ w«ÎëõwàAHçYâ!»-0êÛìlæ!e_ÑéOEÛ6â!GWÝ µNMD�OîgxæN$v¨tt,&GO×DØÐéùÇ \©±Tx²"N3£e jc2Ù+F pE!ÖÇÆ±7£Ql,Äõ°~;¡!ÒÓos~ÛÔ{Qa\æH¿,D¡mÏ|£«ï fQÙ)àluÜË\C×X¢jÌѹ=ѾÈÖ92°5oʼTc¾ÈfÌ2 e@öæö^;jw»_> ¿m»¶SHK$ +@ +éOðê¸À«g +\áÕ%þÚó?~&P¿ÿù~ÿóW^_ÿú2êÓïûÛÓýÍÓèÑÀÑé\ß/`Ãå«Äwþëx/kømï«`Æ>õú-8¯O¬®µõtþôN¡æ V¬}@Üý>°Âk{¾ À.S¡¡Üîð>øs@{ù Äêa_äÚè¢~ ò òÓÿ$´ÿçøòÀß]"N¸öPÈQÚÀë^1Ñ}}Xo¦ìþc½1Þ] M¯níù®Éïg*µÄ à˹]bþo $¨'h ñå764ï`Ä;¸zÆ®Êtû®KóÝ}íå°+Û|àL] 購⳧åñ.B¨ÄÖѶ" ´x -6ÑéïJÌdêGl]Cp½»¶>Ózhµs-iëiÿ+HÏõò +õÎucêú×Ý&¤¿n3ÑïnÅLé÷ï&Ä4b5êñ¯i +Þ¿`ÚúMâ?KzÃL÷·AƱ~!þ_þw7ø-5Yf¯Kÿݸqüøúû+Ð?ÝGÇüÚïοæýotÿdÀßßèþï¿oÒ¯éÏ.ýøþÚÐÌQõYÿ lóÇ@ô»ë/KÄ¿/ëÖ¾'?æùIÂýßõ[ÿi<zY`óOë(ßãKÿ´öD=ýcòOÖôI¿öèÇö;¼?á]«õ§Ðd®Gý©Øÿzþyïßú}Mÿç_pÿûÞÖÏü¯Húý/¶ßq¥ß¿Ûoó÷É} ß7ùßýiÝ_bÿUÐÿm=ùϺü'Ô¿÷ý[÷Ðÿ¼ß¿å&ÒßèôÈ2ÿ·Q£}ùgþkMúüÇò¿7uz¢ÿSÆß×ï¿àù±×ügþ3òÐß8ÿþúOÿ þ¼ÇýJ¨?�§þ>ëO]þQ*÷_÷ÏúSÒFúKàéÏS¯êï<!ÿý·Ö#ýeýÉÿuèÿÌñ¿|ÿí5ô²^¿ÚzM~,þÏäçÎÿÖý·Þýôcü@HɨëÑÕõ÷>!õþÎè¿êú;ÏÏôwfý)Èo=?êÏ»ÿoÞߢñÿý!pzG{/«7ýÓW¿åOÆ3ê¿»ÿbÒ#ú;øãÿ»ý1éOø)êæ¿Bñ¿¿+ÿCümü~õ_>ç/¿ëü×\úúÃXúKÁß>ö§õÁºà7`¿þ5j=òóöëÐËrÙú,,'æaç¯æ_~]½+tw^®NÜÓrëÕfû¼Ü?7pê<¿èÿýÍFH;Þlö_âi¹¬õ¶OþËr)ogÚê³-áÏfJ´'úyùÞ÷:8½ãí|~ÿnsÚËw¤ßïk.t{ø¦ýó|w?·õÂöæè÷eÌ.To9ËþfWuæ2¨´BµjV×´%_ñ¾ÿü:Û~3 +°ÇAõڵ駿YUó²^³ª>gïþì7+â?s5æ>ÿô1³°âïëü¿¢üéúw#þqdþÔ$æËïËüߺvõèob¾éshM»üüûÉAá3·ñÂrÎMÜ« ¯úWÏùÙGb<úùX·2~ö¯ÛrHø±òuÚÕeûrºN¬mð_®ÓOÙ:æé3ßï§ÿ_ÿø¿øËð+üúãßþáÛ¿Ö½þsüÃÿñÅÖ9n¯¯Çýño~ý§ÿãýÃßÿõþéßÿô_~ý·ÿú¿þåßþùoþß¿þÓßüú¿þ¿_ÿíüùïÿá~ýÕúë¿úÏ¿þòë×ÿøû?ýÏ?ýÛý/¿þîÏþÿòñÿñ_þ»¿ÿ÷¯úÓÿâ¯^éoÿíÿü§ÿç/þåß÷u_÷çüÿüëÿ÷þ·?¾v÷ÿÖG +endstream +endobj +400 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 984 0 R +/Name /Im383 +/Width 28 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ<óyÆ~Ffo`àL@~ÀÃÀø>@ð ®P`k`y æg`6�9®b +endstream +endobj +401 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 985 0 R +/Name /Im384 +/Width 21 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¿TÄC`$ÀÏ`ÀÏPÀÏøáÿÿ�#ÌÕ +endstream +endobj +402 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 986 0 R +/Name /Im385 +/Width 12 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc?À£ P PÀÀpá<à (0�A ü�ÿÆ " +endstream +endobj +403 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 987 0 R +/Name /Im386 +/Width 14 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xs`¨ÿSÿÃA Á AÁ¡ ùà �¾ìð +endstream +endobj +404 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 988 0 R +/Name /Im387 +/Width 30 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x˱ 0�Á7F +](é`+Í£d)À#P\yoÓ'ÔdxrL]ЪH ÐCàZ`áØ` ù»;¼É +endstream +endobj +405 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 989 0 R +/Name /Im388 +/Width 14 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã? P �6ö ü ü?$T9À ü�âi +endstream +endobj +406 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 990 0 R +/Name /Im389 +/Width 29 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcoPK8àÖ¼à;ó}Ì `ÌÅ2ì¹Á¹Ù9X @YÁñ��nl +endstream +endobj +407 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 991 0 R +/Name /Im390 +/Width 15 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcH`8�m}²;øxX<²8$ÁÆ�<�Õ + +endstream +endobj +408 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 992 0 R +/Name /Im391 +/Width 33 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüø CCQÀð�xÀx�øÿÿ�ãæt¹`gàà øä<�h×Ð +endstream +endobj +409 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 993 0 R +/Name /Im392 +/Width 27 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc ÀðÿÇæüØ0?ào`| ÏÀðÀê¸ÿ000àÃ5Pµv|�hÆ Y @3ð10üªÀ��»b +endstream +endobj +410 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 994 0 R +/Name /Im393 +/Width 22 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûðÏÿääø�ûÁ b~Ì�Bß¿10þc`øF`d�F ?0ü8Àð³¡Á�Û +endstream +endobj +411 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 995 0 R +/Name /Im394 +/Width 19 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcooà8á ðáÂÇ +8<l`xÀ�D(¹¡á352<mdh9ÆPQÁ��v1b +endstream +endobj +412 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 996 0 R +/Name /Im395 +/Width 16 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xaVgwgwgnglgäB&0d`àààQ`?��J. +endstream +endobj +413 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 997 0 R +/Name /Im396 +/Width 17 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xalÐcnð£>v #>2" +þ`hl`pf`°a`��ùù ` +endstream +endobj +414 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 998 0 R +/Name /Im397 +/Width 15 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³g`B>(BËV6<<<| ø@%X<0xpÀ°A� & +endstream +endobj +415 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 999 0 R +/Name /Im398 +/Width 15 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÀÌÃÃ##gac QÀPÀð�Y8ä�«Â +: +endstream +endobj +416 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1000 0 R +/Name /Im399 +/Width 11 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcop08p á�Ãy @ ä�ÙÚ ^ +endstream +endobj +417 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1001 0 R +/Name /Im400 +/Width 11 +/Height 10 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xSpPpphphhdhdxxàã��L ¦ +endstream +endobj +418 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1002 0 R +/Name /Im401 +/Width 11 +/Height 10 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xK8ðñÁÇ�ov³ +endstream +endobj +419 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1003 0 R +/Name /Im402 +/Width 12 +/Height 17 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xs`¨ÿPÿ Á¡Á¡ ÙXæ^ +endstream +endobj +420 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1004 0 R +/Name /Im403 +/Width 11 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xg0lH8� ö|Æ @È3��Æx¢ +endstream +endobj +421 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1005 0 R +/Name /Im404 +/Width 18 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨q`lj`fl`#F âc�!þì?ÿ00Ô0@ ØØx@(!AáFCû�ui +endstream +endobj +422 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1006 0 R +/Name /Im405 +/Width 11 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcop0PHPHpøßp +8$6Ø1�� Î +endstream +endobj +423 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1007 0 R +/Name /Im406 +/Width 15 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã±:"Ì&̦Æ< Á# ¥ y@AÁ�ÿ0��XÜ +endstream +endobj +424 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1008 0 R +/Name /Im407 +/Width 13 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÀS Q```�8ápÂñDÒ�6 +endstream +endobj +425 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1009 0 R +/Name /Im408 +/Width 13 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x3øà-ágác0A 0XÒæ +endstream +endobj +426 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1010 0 R +/Name /Im409 +/Width 9 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcc`càÂÿ h� @ÄÂ`Á��T®ä +endstream +endobj +427 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1011 0 R +/Name /Im410 +/Width 8 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcfgc� £¤�ÚE +endstream +endobj +428 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1012 0 R +/Name /Im411 +/Width 11 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xco8`à�À°á@ÃÆn6�©t +endstream +endobj +429 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1013 0 R +/Name /Im412 +/Width 16 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x3¨ðìñcñaÃ# B 2�VÙu +endstream +endobj +430 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 593 0 R >> /XObject << /Im318 331 0 R /Im209 218 0 R /Im319 332 0 R /Im203 212 0 R /Im320 333 0 R /Im204 213 0 R /Im202 211 0 R /Im209 218 0 R /Im203 212 0 R /Im201 210 0 R /Im211 220 0 R /Im320 333 0 R /Im209 218 0 R /Im321 334 0 R /Im321 334 0 R /Im204 213 0 R /Im205 214 0 R /Im209 218 0 R /Im208 217 0 R /Im322 335 0 R /Im320 333 0 R /Im323 336 0 R /Im131 138 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im365 380 0 R /Im97 104 0 R /Im93 100 0 R /Im413 432 0 R /Im414 433 0 R /Im305 316 0 R /Im395 412 0 R /Im74 81 0 R /Im398 415 0 R /Im98 105 0 R /Im101 108 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im259 268 0 R /Im241 250 0 R /Im255 264 0 R /Im256 265 0 R /Im239 248 0 R /Im281 292 0 R /Im240 249 0 R /Im258 267 0 R /Im259 268 0 R /Im396 413 0 R /Im260 269 0 R /Im338 351 0 R /Im240 249 0 R /Im243 252 0 R /Im256 265 0 R /Im338 351 0 R /Im241 250 0 R /Im335 348 0 R /Im286 297 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im104 111 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im398 415 0 R /Im98 105 0 R /Im101 108 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im117 124 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im116 123 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im74 81 0 R /Im109 116 0 R /Im100 107 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im395 412 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im394 411 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im398 415 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im239 248 0 R /Im335 348 0 R /Im258 267 0 R /Im257 266 0 R /Im256 265 0 R /Im281 292 0 R /Im397 414 0 R /Im335 348 0 R /Im243 252 0 R /Im242 251 0 R /Im258 267 0 R /Im335 348 0 R /Im257 266 0 R /Im243 252 0 R /Im256 265 0 R /Im74 81 0 R /Im122 129 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im108 115 0 R /Im94 101 0 R /Im100 107 0 R /Im98 105 0 R /Im124 131 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im96 103 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im102 109 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im74 81 0 R /Im119 126 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im105 112 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im102 109 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im107 114 0 R /Im114 121 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im96 103 0 R /Im106 113 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im107 114 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im98 105 0 R /Im97 104 0 R /Im100 107 0 R /Im98 105 0 R /Im124 131 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im101 108 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im100 107 0 R /Im100 107 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im107 114 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im123 130 0 R /Im113 120 0 R /Im96 103 0 R /Im123 130 0 R /Im93 100 0 R /Im94 101 0 R /Im106 113 0 R /Im398 415 0 R /Im107 114 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im108 115 0 R /Im101 108 0 R /Im107 114 0 R /Im94 101 0 R /Im99 106 0 R /Im102 109 0 R /Im102 109 0 R /Im93 100 0 R /Im114 121 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im135 142 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im96 103 0 R /Im238 247 0 R /Im96 103 0 R /Im102 109 0 R /Im128 135 0 R /Im135 142 0 R /Im103 110 0 R /Im104 111 0 R /Im293 304 0 R /Im354 367 0 R /Im133 140 0 R /Im103 110 0 R /Im104 111 0 R /Im93 100 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im114 121 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im113 120 0 R /Im123 130 0 R /Im100 107 0 R /Im93 100 0 R /Im93 100 0 R /Im124 131 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im97 104 0 R /Im114 121 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im107 114 0 R /Im99 106 0 R /Im113 120 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im113 120 0 R /Im96 103 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im108 115 0 R /Im102 109 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im74 81 0 R /Im109 116 0 R /Im97 104 0 R /Im99 106 0 R /Im102 109 0 R /Im117 124 0 R /Im96 103 0 R /Im97 104 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im98 105 0 R /Im117 124 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im105 112 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im107 114 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im93 100 0 R /Im94 101 0 R /Im98 105 0 R /Im115 122 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im114 121 0 R /Im99 106 0 R /Im101 108 0 R /Im103 110 0 R /Im104 111 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im107 114 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im74 81 0 R /Im109 116 0 R /Im115 122 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im117 124 0 R /Im100 107 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im117 124 0 R /Im123 130 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im114 121 0 R /Im104 111 0 R /Im98 105 0 R /Im103 110 0 R /Im104 111 0 R /Im101 108 0 R /Im108 115 0 R /Im113 120 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im103 110 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im116 123 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im74 81 0 R /Im119 126 0 R /Im97 104 0 R /Im114 121 0 R /Im98 105 0 R /Im100 107 0 R /Im100 107 0 R /Im99 106 0 R /Im100 107 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im101 108 0 R /Im103 110 0 R /Im104 111 0 R /Im93 100 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im113 120 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im114 121 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im117 124 0 R /Im93 100 0 R /Im99 106 0 R /Im100 107 0 R /Im93 100 0 R /Im115 122 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im96 103 0 R /Im105 112 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im96 103 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im114 121 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im102 109 0 R /Im117 124 0 R /Im96 103 0 R /Im97 104 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im105 112 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im97 104 0 R /Im101 108 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im108 115 0 R /Im111 118 0 R /Im106 113 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im108 115 0 R /Im111 118 0 R /Im106 113 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im101 108 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im106 113 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im112 119 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im124 131 0 R /Im94 101 0 R /Im93 100 0 R /Im114 121 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im117 124 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im117 124 0 R /Im102 109 0 R /Im93 100 0 R /Im114 121 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im124 131 0 R /Im94 101 0 R /Im93 100 0 R /Im114 121 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im117 124 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im116 123 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im107 114 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im95 102 0 R /Im98 105 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im106 113 0 R /Im106 113 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im284 295 0 R /Im285 296 0 R /Im239 248 0 R /Im258 267 0 R /Im255 264 0 R /Im286 297 0 R /Im287 298 0 R /Im243 252 0 R /Im285 296 0 R /Im260 269 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im104 111 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im100 107 0 R /Im123 130 0 R /Im99 106 0 R /Im114 121 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im105 112 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im415 434 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im253 262 0 R /Im101 108 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im100 107 0 R /Im96 103 0 R /Im391 408 0 R /Im243 252 0 R /Im257 266 0 R /Im240 249 0 R /Im281 292 0 R /Im256 265 0 R /Im260 269 0 R /Im281 292 0 R /Im259 268 0 R /Im284 295 0 R /Im240 249 0 R /Im240 249 0 R /Im241 250 0 R /Im240 249 0 R /Im74 81 0 R /Im160 167 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im105 112 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im118 125 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im123 130 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im113 120 0 R /Im96 103 0 R /Im95 102 0 R /Im98 105 0 R /Im96 103 0 R /Im114 121 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im101 108 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im120 127 0 R /Im107 114 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im123 130 0 R /Im112 119 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im93 100 0 R /Im117 124 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im114 121 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im280 291 0 R /Im259 268 0 R /Im258 267 0 R /Im335 348 0 R /Im258 267 0 R /Im240 249 0 R /Im336 349 0 R /Im258 267 0 R /Im335 348 0 R /Im257 266 0 R /Im243 252 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im115 122 0 R /Im280 291 0 R /Im260 269 0 R /Im241 250 0 R /Im239 248 0 R /Im239 248 0 R /Im281 292 0 R /Im255 264 0 R /Im282 293 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im106 113 0 R /Im98 105 0 R /Im238 247 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im104 111 0 R /Im99 106 0 R /Im111 118 0 R /Im96 103 0 R /Im214 223 0 R /Im114 121 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im108 115 0 R /Im98 105 0 R /Im97 104 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im100 107 0 R /Im106 113 0 R /Im138 145 0 R /Im119 126 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im107 114 0 R /Im114 121 0 R /Im96 103 0 R /Im114 121 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im100 107 0 R /Im98 105 0 R /Im124 131 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im98 105 0 R /Im97 104 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im121 128 0 R /Im108 115 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im107 114 0 R /Im113 120 0 R /Im108 115 0 R /Im97 104 0 R /Im114 121 0 R /Im96 103 0 R /Im104 111 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im99 106 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im121 128 0 R /Im108 115 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im96 103 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im74 81 0 R /Im160 167 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im104 111 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im100 107 0 R /Im123 130 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im107 114 0 R /Im254 263 0 R /Im255 264 0 R /Im256 265 0 R /Im257 266 0 R /Im240 249 0 R /Im258 267 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im96 103 0 R /Im74 81 0 R /Im135 142 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im100 107 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im126 133 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im107 114 0 R /Im114 121 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im117 124 0 R /Im96 103 0 R /Im97 104 0 R /Im94 101 0 R /Im96 103 0 R /Im117 124 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im118 125 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im115 122 0 R /Im96 103 0 R /Im114 121 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im120 127 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im113 120 0 R /Im96 103 0 R /Im99 106 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im93 100 0 R /Im100 107 0 R /Im95 102 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im332 345 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im74 81 0 R /Im244 253 0 R /Im94 101 0 R /Im96 103 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im97 104 0 R /Im101 108 0 R /Im103 110 0 R /Im108 115 0 R /Im102 109 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im106 113 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im97 104 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im103 110 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im101 108 0 R /Im105 112 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im98 105 0 R /Im124 131 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im117 124 0 R /Im96 103 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im119 126 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im93 100 0 R /Im94 101 0 R /Im102 109 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im106 113 0 R /Im98 105 0 R /Im140 147 0 R /Im103 110 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im214 223 0 R /Im135 142 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im114 121 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im123 130 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im104 111 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im111 118 0 R /Im99 106 0 R /Im103 110 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im121 128 0 R /Im108 115 0 R /Im98 105 0 R /Im102 109 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im104 111 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im98 105 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im115 122 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im117 124 0 R /Im96 103 0 R /Im74 81 0 R /Im109 116 0 R /Im106 113 0 R /Im106 113 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im107 114 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im123 130 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im104 111 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im112 119 0 R /Im105 112 0 R /Im99 106 0 R /Im124 131 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im98 105 0 R /Im97 104 0 R /Im106 113 0 R /Im98 105 0 R /Im140 147 0 R /Im103 110 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im93 100 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im108 115 0 R /Im98 105 0 R /Im101 108 0 R /Im104 111 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im114 121 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im130 137 0 R /Im103 110 0 R /Im109 116 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im115 122 0 R /Im108 115 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im99 106 0 R /Im114 121 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im123 130 0 R /Im112 119 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im107 114 0 R /Im106 113 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im100 107 0 R /Im93 100 0 R /Im111 118 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im416 435 0 R /Im298 309 0 R /Im417 436 0 R /Im280 291 0 R /Im243 252 0 R /Im258 267 0 R /Im240 249 0 R /Im259 268 0 R /Im338 351 0 R /Im128 135 0 R /Im130 137 0 R /Im387 404 0 R /Im293 304 0 R /Im272 283 0 R /Im133 140 0 R /Im74 81 0 R /Im119 126 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im124 131 0 R /Im94 101 0 R /Im93 100 0 R /Im114 121 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im117 124 0 R /Im96 103 0 R /Im99 106 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im97 104 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im74 81 0 R /Im109 116 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im123 130 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im98 105 0 R /Im101 108 0 R /Im384 401 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im139 146 0 R /Im253 262 0 R /Im417 436 0 R /Im241 250 0 R /Im255 264 0 R /Im260 269 0 R /Im240 249 0 R /Im241 250 0 R /Im335 348 0 R /Im335 348 0 R /Im243 252 0 R /Im286 297 0 R /Im417 436 0 R /Im241 250 0 R /Im255 264 0 R /Im349 362 0 R /Im256 265 0 R /Im239 248 0 R /Im281 292 0 R /Im240 249 0 R /Im258 267 0 R /Im259 268 0 R /Im396 413 0 R /Im287 298 0 R /Im257 266 0 R /Im389 406 0 R /Im397 414 0 R /Im243 252 0 R /Im240 249 0 R /Im280 291 0 R /Im243 252 0 R /Im258 267 0 R /Im240 249 0 R /Im259 268 0 R /Im338 351 0 R /Im128 135 0 R /Im384 401 0 R /Im360 375 0 R /Im134 141 0 R /Im130 137 0 R /Im293 304 0 R /Im132 139 0 R /Im133 140 0 R /Im74 81 0 R /Im137 144 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im102 109 0 R /Im93 100 0 R /Im106 113 0 R /Im108 115 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im99 106 0 R /Im102 109 0 R /Im117 124 0 R /Im96 103 0 R /Im97 104 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im107 114 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im102 109 0 R /Im99 106 0 R /Im114 121 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im117 124 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im123 130 0 R /Im112 119 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im113 120 0 R /Im96 103 0 R /Im99 106 0 R /Im95 102 0 R /Im93 100 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im74 81 0 R /Im136 143 0 R /Im126 133 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im74 81 0 R /Im342 355 0 R /Im343 356 0 R /Im342 355 0 R /Im343 356 0 R /Im357 372 0 R /Im418 437 0 R /Im232 241 0 R /Im222 231 0 R /Im216 225 0 R /Im218 227 0 R /Im221 230 0 R /Im227 236 0 R /Im219 228 0 R /Im232 241 0 R /Im221 230 0 R /Im393 410 0 R /Im127 134 0 R /Im93 100 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im96 103 0 R /Im124 131 0 R /Im128 135 0 R /Im127 134 0 R /Im93 100 0 R /Im102 109 0 R /Im348 361 0 R /Im131 138 0 R /Im133 140 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im101 108 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im103 110 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im117 124 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im160 167 0 R /Im110 117 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im107 114 0 R /Im96 103 0 R /Im94 101 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im99 106 0 R /Im114 121 0 R /Im96 103 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im115 122 0 R /Im99 106 0 R /Im103 110 0 R /Im97 104 0 R /Im93 100 0 R /Im102 109 0 R /Im74 81 0 R /Im137 144 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im103 110 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im106 113 0 R /Im98 105 0 R /Im140 147 0 R /Im103 110 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im118 125 0 R /Im106 113 0 R /Im123 130 0 R /Im94 101 0 R /Im99 106 0 R /Im105 112 0 R /Im98 105 0 R /Im103 110 0 R /Im115 122 0 R /Im96 103 0 R /Im99 106 0 R /Im97 104 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im120 127 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im107 114 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im96 103 0 R /Im106 113 0 R /Im93 100 0 R /Im102 109 0 R /Im111 118 0 R /Im98 105 0 R /Im94 101 0 R /Im94 101 0 R /Im96 103 0 R /Im106 113 0 R /Im111 118 0 R /Im98 105 0 R /Im96 103 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im98 105 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im108 115 0 R /Im102 109 0 R /Im94 101 0 R /Im101 108 0 R /Im99 106 0 R /Im114 121 0 R /Im96 103 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im111 118 0 R /Im99 106 0 R /Im98 105 0 R /Im102 109 0 R /Im93 100 0 R /Im115 122 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im114 121 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im114 121 0 R /Im96 103 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im114 121 0 R /Im99 106 0 R /Im102 109 0 R /Im106 113 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im98 105 0 R /Im124 131 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im74 81 0 R /Im109 116 0 R /Im103 110 0 R /Im103 110 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im93 100 0 R /Im127 134 0 R /Im93 100 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im96 103 0 R /Im124 131 0 R /Im107 114 0 R /Im114 121 0 R /Im96 103 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im111 118 0 R /Im99 106 0 R /Im98 105 0 R /Im102 109 0 R /Im101 108 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im113 120 0 R /Im96 103 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im123 130 0 R /Im98 105 0 R /Im94 101 0 R /Im102 109 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im93 100 0 R /Im103 110 0 R /Im103 110 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im112 119 0 R /Im100 107 0 R /Im98 105 0 R /Im124 131 0 R /Im96 103 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im74 81 0 R /Im109 116 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im108 115 0 R /Im111 118 0 R /Im102 109 0 R /Im108 115 0 R /Im100 107 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im114 121 0 R /Im96 103 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im111 118 0 R /Im99 106 0 R /Im98 105 0 R /Im102 109 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im114 121 0 R /Im98 105 0 R /Im100 107 0 R /Im100 107 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im114 121 0 R /Im96 103 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im111 118 0 R /Im99 106 0 R /Im98 105 0 R /Im102 109 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im123 130 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im74 81 0 R /Im291 302 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im114 121 0 R /Im96 103 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im111 118 0 R /Im99 106 0 R /Im98 105 0 R /Im102 109 0 R /Im101 108 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im108 115 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im101 108 0 R /Im104 111 0 R /Im99 106 0 R /Im102 109 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im112 119 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im114 121 0 R /Im104 111 0 R /Im98 105 0 R /Im103 110 0 R /Im104 111 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im114 121 0 R /Im104 111 0 R /Im98 105 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im107 114 0 R /Im96 103 0 R /Im94 101 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im98 105 0 R /Im97 104 0 R /Im97 104 0 R /Im93 100 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im115 122 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im98 105 0 R /Im97 104 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im106 113 0 R /Im106 113 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im391 408 0 R /Im243 252 0 R /Im257 266 0 R /Im240 249 0 R /Im281 292 0 R /Im256 265 0 R /Im260 269 0 R /Im281 292 0 R /Im259 268 0 R /Im284 295 0 R /Im240 249 0 R /Im240 249 0 R /Im241 250 0 R /Im240 249 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im280 291 0 R /Im259 268 0 R /Im258 267 0 R /Im335 348 0 R /Im258 267 0 R /Im240 249 0 R /Im336 349 0 R /Im258 267 0 R /Im335 348 0 R /Im257 266 0 R /Im243 252 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im101 108 0 R /Im74 81 0 R /Im160 167 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im97 104 0 R /Im93 100 0 R /Im111 118 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im93 100 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im114 121 0 R /Im96 103 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im114 121 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im74 81 0 R /Im119 126 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im103 110 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im114 121 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 431 0 R +>> +endobj +431 0 obj +<< +/Length 1014 0 R +/Filter /FlateDecode +>> +stream +x¥}˲%9rܾ¿¢ÒBwðÌ2fÚÈDã,¹CßM¯÷ PîÈMOOu!þíÏüóoñÇ¿ýöÏ¿¯ºá+ûçòµ¦ðcM_5k_ûºüøÃßÿö»ÿú÷9n?þó?þöç¿ÿíóøýõÅmýJËu| +ûu|ýJúý½Àß¿G¿üIákßîÈ÷8V4×¹}`¿Iðø.aÍ?gP®X¿v¼¡º1íÚ&P!æª 1m~ d8(±¼ô(ÝÁÈ6V¨Hh¢ +1a¬Î�,}`S?@¸UMï2xIÿõϸ§®¿~ ÊBܧ5ñ=8?bÆ"ÚÆ1aEJ oãMî-!m`rºSù +·B¬mcÌ7=(_[8 |å·OÿAØYÁ~Ó÷_Ã74Lÿúë-"d0<åîK8û þüm8[ü¾¼ w +§¯í&ýÃ.c¨è÷WUz1hâ»{6>¢äèû·DcZ¿Ê÷^í�/pµ·Lbj3¯ÐúSï^à Úòö`¿} ÜYhÑ ù¡ÓÖÛ + +Ųà ܼHúØÖmâm|þX êàfÂt@¼GdªÎ+¸9b*Oàæù°n "Øâ¤#°hWpû�õ{=À<A¼c&Wä$@ÇÇÌ(ÕÜ#} ¢°¦à+ÉþÀ+*ûn2¨_áTòëÿåË-Ú?%CøÎ2ÁL{Ã7(D`äЦ +¼ÑWr=©MÕéW!æ»&¦¯ïÂË,7ÜémKiÉÈ£g "ÄEÞ"ÄSg$¢Ê«¨ÊT[Ðd@ÍyÍùô´°oæÐ÷24¦Xfv´÷Ìe÷fwñ~<`N=G\;z³ùm@+¸Omb~yD%·Ajø-Âl þúµÅ>(ÇÅÆ>aQã"ÎÎrÁ¸)@Ïò˼À#_¾Î3Z~y·£w¶xônÈ£¼ªÇ$¢$=Ô`Óªñ45¦{°¯Ï´¨5ÁÅÉU HQ·°Dè�Èüã33,ÐÒ@W¨ë`Iu°äg z)8ȧ¼Rà9UÀjÚø +Uð&�]K°®-»>- ÊѬ@Gè@Êò.*"XF¢e`é68ZãPRv5ì�VìÅd#¬8#Ó°b74àÚx¨A §Å6XSz´Ô5ðVÐÅ;fN%¡Q3¡å?9¡ûÏ¿°¾}Èyx2bÛ�çËÏË +Øn0/?¯ëßW/GÁãý>80À¹Hâçãwi< É"ü}Aþí÷Ûõçe¼|]qÀÕÚú LÑ:BÐw+ÀÑî7²pδäÒ ÷K·Ú}ýõV<ð¢Cí<3kñeÓFW¨Är1°ú2^"X}Ëx}wôû b`÷õ:ÈýîtcðÊ |1['Rܵ@ÄÑn5$äPr´)A*p²+>æ'®8Õ®8Uät3NK :$gà ûÙ¥Utdt6Mè6 èØ'w, dÆHñæ�ÓÁ>=¹ø®2úû0q`ïúÐÆÃXB)CWq(ÊW´Xl˯Øä½¢«J@GW+:Q8üp®ë3X°j@Õ %X5% ã7|ªê¸ìØ`L�fÐÜëh8<û,¡)$¡ð&Av 'rTP|2s´BJF>�"ðð>F íähT²æÍ)ºV 8¡Ã5ÁD¸³ì¢+"[¸Z<hÇJÈ�Vìt¼]Ï +ñDòé¸I·ã]óDÔ +HN&ÑÔÛÉhñѼAÞí»pà¢Æ÷Âv¸«a$ Õ>Ô¸ÀÛ.\¾QSK�嬨¦f +ðùô�ïÈwoHw!guPj`ðÖw%Ór¢ü28¬ëÆßµI`KoÆÃú¬E¯Ãú}ùÊtpýr Ñ+§¹Ïè [õÌy¼^=ílu«gÌ3ø«nÅùñrbݱâóP0a`q«obF3@g6oh¼T¸²Eý}²uw\X>rÙ�]¸�Ga5㺤¾\Æë×%T ýºÄî«ëgUÍ+Ü�£p:F êPûQÔ¬h -LØÈP{JÈ=P{Òlb|Øé_ Ç5'@ÐÊVF [X¡�e(-è÷%Ë>&�T~�{!9%è ´A+ Àvªº¤ú㺹n&í8�3Æ[ê°|ÆØh %̦ôf;B9·Jäéd('¤¬¿=ùUÃdFø}+e6 äQ («DòñV[,!/e¸ú½zBO.ÌÇ×%`6ç§#ÒËoèp tò:bMe8ïP Á¡èÐþ,è@ùHÖ_ð±=8e@7V#Ïæ çJÌ32½fdº +ìÇt(x\8·"� +SW¬Bz-9öcòkB2:p.Åé"O§eÓb£lY!²æx!ò3ªð\ +±ñVâä«29ÖÆ$3ÔzùÕy 'SÇ2TA} FýÙÐç° «¾9×ïª6üóòú Ú¹Ð2ÁôÙö5.¦ËpYý÷Ëuö:çAÈÒôy!2¿£4bñëE¤VÉ<?Áf3Ü?½´Ç6bÓý¾§´ t []Ôà.%Àê5âã 8TpÅtÔ1à è¯ì®zä8¼m@×wd:¼üýÛÐæ¡]qÆß¯ÈÐï¯ ]¼ÚÑDh:¶ �ul3n»ýgÖõ"äbÇÉTà Ò1² +^Ç]Ñ:Êìº®Ä D}àa&6-áð4ÖîcS#¹¥Úáê:¸kVD¡Ñ�_.dÏÅ6dÓ +v^)ùGdó^kpA§/T(A=eLÇÒÓ19í ÔÉ@ÎØ»y2f³1¨rÔA?ÀR: ¡~QgèÆ<è´=n]ã,: ýCG§µ|£ÓÏRêO.t!@§Y4JI·Å x2ùXU 'ódäI\PÏ%)CÃ�õb�3V#9-.8§ ±,òÉ1]Àh ÂãÌOkáeeÛµAäTRqN%+qGVÄâð()¬øp hUWÆf¨r^_3ôr4éóäÉÊ�æ%~çt|ãõªÃ§Ï?¯ÍX6qþyYúVÏî¸~¥u+.üû;Z¾~à :×Áµ×/ûðÑÇâ¡þèøhl¯ÎãõêÛTàt?Á-ÔñÉ PV:Æ}Ð,]*Î6R¡p0C/Húûภ+Ðßw{´ ì}°QS_Üþ>8nP:»÷¬ÐoªØ±Êïc÷¤OLëO¡+Ôß§íX~ÜaòËä÷Á'?@ÏtEÂ'à�Y¡+ó õn¢LÜuÐu|?¼P>'ã ^ÁÛ +¨-¢qVh´z@N²dÇl»¶ôªa ïo¡Ñ-¥¡�Uà "´ùHÌ*u.`SÉg=JË áF÷dµ×Qg@PÊ¥Ho; +ògæÎõd7(Ä #N)-ªÑ+º2B¼³BW&ßx Øp¬]�ç,ÁÇ;f5JéiW¶ã ècxM¨ûQ4)ê§4zqzMJÆÑDNíKÖr*:¾h§3^ÉE3Î ¨£Ä<ÞÊoÊÏV¾å'òßÈ7Ì|¯¿/cstèl#à ØÐåXXHJ'ÇÂsÏ¢Ð< Ôy2h KÙT'ã85ÔbùÚ·fhÆr6a8w#7»ÌªÛMSrª:jôóÕ8ËöÞ´¯|&§uÔ½£nÞ8ÍÌ·Lrò÷BêÑþQ|,!p@IÕ?2Gm(Di÷åe(QÚ}ùÈèUTbS#%ô@ö¢ë,B¢ìÒ% ãWì d²ãÔÈe´Íù:Dw¨EúmË' CQõeìÒÿ ùÎÆÊ O³Äd©ÄÈ)BÅÀb§}W¯Á¼ÏÐth"euªÃü¾ÀjÊ<`E #ÆX"¯`tOÄt»½¡c-Ôi¶ +`²¤®`[UW@D(æeTÐé"Ì{S½ 8BÐËi#´Ä×A²º³¦ñ ç8Ú²º©.û\p8CjÈENÒÔ æ/09¾æs¤n|¸Ì+õÅ(CÊ óµCx¾tØ!<_zîÌv85õC*A;P1Â#ª¼ ðc´ 'VÏÈæ :¨#íyy#í#Îo7¡B?a]±|gwô|¤Ð9IÁHO>!ÊqÌ÷ìÑp°úrùήÀ¦~gW¬i ªÀICpJ£÷¾®Pw¥5à ÈçË*/ +´u-y +5'¨CzG|<t4pÇC}«ÎÝ:ÌNãõ;£Ý§Ýá¯Ëù¬=ÏÊûP¨z×Î âeïÞ;/6FîÓxý¶Î®üÓÐÀüWä½êÝÓãÎËÓ½púLDqf;R^ ?PìX¤Ïë¤)i3¨Sz§!ócä[ ?)ÐQQ¡ê£¥ÀÚ7"-v¼«¨hú[ó¸ -ô°¦ t±¦TÉ +Y>úï|Þ90B?ä0«ÀͨíØóHÇörd§õö{"Ú³è +Ä+-ä0;Ú½SOJÐ +u×[VH?Ãõë¥È%ÏÁKùþkîÐÛ¤X¿&XDGÂQú*é /'×ҷƼÙ}^;«£ôÚèeÕ<)pDñk¹XáþÝóå�鿺W>QÉÈ3jZ´/Ï´(xh±G×.7ÓG°L}�É ×ÛØ.5ío=:íBÖ¹ÅNjt!f¼:PÓ*ýXaVå Î(XrO/I4Å^>À°¢|2-Ì8ÓQî×É[¶ðÈgâËtÞPDvTrvîÉ£I Puz2OIOõ{cÄÌéJsºò0§ëåè9]ÁgSùʹó_r2·¥h@7 ÂÈ,`vå²�ýA�LéÄ3&�ºS®S Ø0À£pÇý¦lWã0¾èê¤+©.º¾àô®ÆaÙtÒTìÃäbÖ +ϬfBäâIÃQ1züÌù2*FyFÅèqH}õ¹=xFÅèqÄ|EþÄÏA£bô8 ü¡Øbx¶y1h»ÇñiÛ¾I½¡üøtÑöãÃH;; 4rã è"°×¹³&Ð9S&mà�¸A¬H<V`Õ³V° :¬ÀJ¦FV@!zèý@èwMèc3$ÐvdzoV¨Gøû`!qÔ Slã8ª·ÍÌÈ<m33Rý]TÂnì~âEà¶ iÿ¬÷ËáÓÈJ¼hÁv}\¡¸Ø ûVN:ÒÞ¶rÒvZðÙt¢ÃÓC3b¼ÜHôu09hµ#æ:¬àè¸fzMdèî`w¥úG O¦¹âL@ éä ¿°»4Iý0ÆÚFÌ×£-ð¼dØp4ÒE°Á=Ð cà¹ÐC³ã©NS*GñiÐO w2#)Q�¯bÇ@çågC¾ÄÓ9aÖ¢@Á ì:¾<�% .:I¡ª&^%B2EÔ0:¦÷N ÐïB|ËÁkv|¤àÖÎuNêPf½oä@,§«Ø¡YðÉÓ}%g; ø$De6|¨"^àx9ØðïËú6üûîÆaÄCÈ.«ÝRÏ\5´öÐËêõúUÓÿðð¢kÇë'¿ üt¢$ +âÖø1xù EúÞ¹²@ ê¨YZ�¯`F¿ïé\ia|ì>¹ =t@Ô+Ô!ùíhüø}Év^þ(Bä@x¡r!¼ÐõÒCã#':Dh[@ÇG</ü}½uejoãOãÑ[õm½Ç#?^A ÝNZìmýÀpBl¼�Aº×úhSÏôCz¹Loü8 ùuÕv`ÏÎúáD2)G³ºdØé3wdºp.¨×¨ôs):D~?iûpþ²txw tþ¥v4аWí4Àáe$@OÛGÙ±¶ØÃpòM_ÆnÌnê"ëÚ8Dôí]ðt$ËÐy(F°#Ëö +ôº*Øé¸T Î6Ì8£Öò¼=æ½éâ(ó`èü0£shaÅ+е°j99¥i±²&iZV¬:M˪yÛHÐè4-¼DܦL4-ûS5)Kë+ö ²#¨QMÉX ´(a ólZ_1Ħ3gíl>¬a WZFR·9P;2¢FRrùyÙ¶»æëÏËÐe#Ûg:|Sh+À9V¬mãe¼üÑ82ÆË'ÐZBÊã©�n�óhûÙ-ëQ| Ku`á}×0£ô¬ À-+V ¾¬ày òìl<Ôa¹ìÊ*ä%ÈÈ$Ø9JM}Ô¶Y+2|Y³b5ª�)?Bxó#\vPcTÖ³;høôH�ZÈ8Þ$âÇäkNëÙ86BoæwÅÐe¼0·kêët*îüpË3#4ìi#4R .ÈÕÆc=I¬y +±ñxº¶§V¡nûC+ØZÁþÌ +rxf9lZFÎfó9¡P⪡ÖTB¼D&tv íDÀAvøû: xE:ì ~LOé âvc§cnÐõöHN#äøH©wkܱutk*¸5An½¤`uzäÉÇä3±SCo×7QôCæSL+m<7Ðúåµ5'ÁÆ¡D¯ÀKÄN2¹WVélòh^V ÝàØè=7qB¦³ÌìÚÉcxM/=!/ÆûûÔîJÝqXéÓQAý6£_g >UâJ®¨öTÕÃ=+ÁÖ^Aå%$ãD>¿GS «Nãu#ÞðÏËw<fÂçï,ý¼©Ü?ß�ò ×±9È×e$ßÍEmáOpûøtû§gMxÇI¬@ÂK®¶ ¶Pc/c :¬ßr,pôT±¯^& ¯X À5/ÙÄi±£Ú Ú5Ý@é6´®Û&,À2áX 8ô´ÕðMËDÆP4ÀêÍDZºø.¾|àÐh¨g]YÙG®ìZ$æ ûòÈSAFàhIp?fVG>òd E3C* +·@.Aí(û¬-ØÈ- q¥rëÛDò9[ôdäFÌá˨c¼`Ï©qO'ä9B+ÐÇ'<½;"!!cG¢¯�'uz%}[¨«è(×t#®ÕÐ-~@¹37[¡n$%Ù3ó&æt§ÆZ¨«ñ´/~fÍ*{Î8ô3OR +s'-+¥(5>]ê09ô#GT`JäÀh¡#rÁäøxªóHÃȳãH'Â^°#Ñuz"AGtסú`Kcþ/^@à½.Ax4sH°(d"bGªLD5;a+ËÀëÃÕñj9íç"æ«ÉMã]©KsxÏÃe7ÚÞ;¼è^Ö_Ãçá:DjåÕóN«4}±¢Í¤Ö0ÚWRøñJ 5õ=¯@g©HPz m6ÌÛÛ9}à~Ë4èÑ"Q×,tbÅÐaîl<ÀÝ «G JØ^¸N`Cf&@÷`v¨ÄÖsylFâíçbÇwS)ã=³É°è}Ú"ÞÐëTi騳Jh,]Fh"C_ª# À2C_è`{±ÅH´º¢tÀq.OÐ:Îå ú2ý\VÏôBâUÝV@® K0#sàS½yV;H;© ¤Ý#ëµã^<iÇ:²JäaZ/krOÊÊÜeM¯DtåG%ò W"Ïf$z2ýij®o毫Éï:Ê;Hêx?¸¶ìÇt>lx°ôX!ÌÉ<Ièvl :4t-ܵ-dV\ÂC+.ñYBU`BçaMÑãb ¦ NµÐ(¸¸µ`H÷°ÔGV`½§ `O*[}L[ÁZÁªZe]ÔPÀ*¡#ttÄf¨wÐqÓ£ª×2O¦Ãtò¡ BNØdL³m¹'AÚ +¦?Ú^ÃFýò¿ß5ëÛËÙà~ÝñªÉ +ø.ãås{Ip¾l>vÇsùy%ÁÎSÃßgãÑúõÖ,Öíïº�ð`[V}7�¯D+Я ìIÕy¼^Eáêløicv«¦T�WßÈG½ú`Üç 8 G6ØË§UÐ^¸T²½¬í£æ¹Vkö7¶Ö,¡·¦§c/ÎÊÑô] »1D6^"kƲp sT#?äÀw3nf-p2kè9¥º+ÌdttvÁ~ÄÑì±ü¨§ãÛçñré]Zq2$¿,íTgG¦/&ìÈt;Þ°èô{!ÑÅ"¨ø²0[ÕÂY÷ËBÎÕ]©àÚøÌdÄ´[_Äù\¡'sdTât §t+4º¼aË +Ü G`Ô°p¸zÍ:£4Ö"£^ ë÷4Ð9JÁ×ýQV¡'s´FèÔ¯$Ö¬JMõÖ%@_®)mx·A¼nØ 8º ª;@VáÉN'&)Ü¡³}>@µaNçaÔ®éT¼:£6Iêt*âEÍ*ÝñBjÉ]nÊëtû>þ:Q=\F ¤ßÐïǤߩ§SqCOä Û+Ðu bW¨×!m2+µJî¬æ#{T@îIBO8rOªÜ%MybKFNÃ0ï^.E¶K¢óÏëÈö¡Ä¹Bä½aüçéëuÈ._¯C¶#ÑEü:Äjg"·üÛ¢8R?`~(A;@1ÞTP`ݱÏãu¢vÐsÑbyÀå²V 3¶,P2¸UD#áÈðJn(²eÃJ¨m¸3°"Ný¨îtFë³up§3R»íøS_V ;)a3Ðyt :¸2Ô"ÎDèh3Ô)¡ÇD0Æ9óTÑ&êÎ<W&_ú&èý;N<ð¼ia$Àaf-Ql¢�8Ìü,g9úçtÀÁF«´�N5uPg£M8 ëL ºRH,fãÕÜ�@Á¾\/ÂÅ9|ªÈÇcéAǯm sCæÕ¹õê«1C¡#Ó1Úé]�Iä©ó7¸súÜ ÐàNÀ+ÐÁé³Ù寯uc^Á±'Ôa:à¨"VmõÄF(ÓjÑ<LVñV¸z!÷Ò }XYàȧÛýC <å ëdþ´¾}dDr,èíl,¨Øé±ààD~*N©tBáøì`Ó1ÚQBÂy²úÔUÑQFãf¯yLA4ö:ó4^GhìPr.4Ê/³ñ+äåµSðÌW/£3öFý2} -_gäï>y¦oÎÔÁ4àãÑ8Àò^> 3±ôO-3T"½·Â èàL´Ic+b0mÔôP:ÒN^ݲdGßÂ@gz-ðà÷)8DPpÆ +O&U E¨:8ÓkÏÐ`·Eð¦yXep¦<'«@~Àò<F·@~jcþºxR}-Ò=\p8_ÒÍH~fVM9È«ùN*ý¦;2] aFåb4Và`4FÈQEÄ~ bG¢c¤ J@§j°.1#3¤[aN§×ÁO¨×Á8R¹Àhê�y³ÌÈk´?£s Õ¥<ò#yùÎɼâRßMfä'ÀÉ*àÞ]9/%ÖÒz +Ð 0y¶3X4còj±. ¢Xâ $ÝÙÅ`h§5?×q~¥ñDdªÃüîÅI*ÙNæ?3¹ÒS¡ ÈùX4¾øNL Fèá;ç8ÇË6~æ²¥å?VW?@û.áÊÚ8¸öÐóÐ9Kà °9¸48NÖö¨&¥ñEK/!³]Ç,¥HWp%ͨYáÆ´íhÇö;rÖ4ãã`j¥àq@IM 'v´KBJìhq¬pc`EÃÎc%$[÷G~¤·KùfÇý¥ó¬wtc2¥ +ÓG¿%Ñr&O$BO¿%ìÊý°ë%pçÎxr>Ñ©<gE¸#3tpFèfF~@?G¬ÄzñPÒ¬>Nxz5~tD[ÌG2tdé_.-6Â÷1ã(@ûE¯²í?ýìF:81» +mÀÑ® 'õ:4°ÀS ®H;õvMî ¶UHàó)]bBÇ8áèå_þ¾Ôÿò m@?ä[ãþÌÙ}(°ñÐÊ=ÏJÙÞâ dlDúÛ% ãk%ãP*S*îùذÛÓ`ÃWÎÉDäì?Ùp(Óg°I9á:ïIß±ô~U»z."v¸ÃX&/½°óhÔ1©§tÆÙT±AO2(`Ì{Û,JÙØv`F>SÒWÆîx`&pþy½ÝS3zk$x§á:Bml%çÅëug¼HO¯[P|úóF+d¿L�8aJtù"Úy:`ú+;¡;º%¤T¢×¯ t*Q [ §½aT0ZówÊhz*Ñ1âY->ÌJDè ©DÇG3 "Ü t%رêLyF|¡ÞúòhÖô}.¿Ø¡|¨êlCGÂ0bèÌÌP.I¬þnKn2Sý÷-s*I¨Ã÷²a¯¥Áðò3¬²+Ob6Chkðäy¼\³p¼FF¤_´ìP Õ_P�:buVüóGå!a²ÿeNÚò7ÆP:¸qJ)¤Äo¥8¿sâúÐnF"äD8) ¹B-^eB +óG¯%øûz3xèÇ<ÅW+RFmOÝI¹ñHÚÎöûÚµ¬#¬0ëï[ü}¹ô§w:ºì ÎATGJ°ÝÞ'(AiéçªIGZ¦Ts«fÐÆ£-½'ÙaìH<ZFIqúftzÜÇQ¦ø}]oUmp9 +÷аÂpîè4´M¦KgaÁö¨è²@¼ LeOTEOD'�"#¨"ÒË<q<796õ<Üq.l×¥F¼Â`Þ:Q¿N*j6µ/pü-"dà»þîu¦85ÇeÅON¶&p ¬GF{AÕáøÍ Já6!h];U\? Ct9¢9'YÜÆ{á âB!.Â?ûÀÚôxÐè¿ÓEvèy.^%:Ú6-È=.+\5·¶C#_@KÚ[@¿Nà¦ìÂ%¾Nw-Ðo\'½LÀqå²cê(WÞ\Çxb�ä¨ältC Ñ$0 ù§+HPz%gèC;äo aDÓ+93ÒbRñôJÎ"@EJà¨ä¬x2óaµCp¬z"!&7-n۬â&òjÚ¬"afÝÐù1ÄewWBíÐêdzPRà 0 :è¡3tôô]{ë»¶Üt@rÏßú"%ò¼õ}Îrp<µ H=h/>Þèhï=åT=+ËÐyº®ÚТî+® 0«rhá3kÝì±ØgfT"ÞB#¤êH1cÂÐNu>ÁuÀÝøgRÐ=Ìðt%ßÞ¢e¼ Çsù\*£ïP}t2(ÐzO-XºS9úAGèéý´aȵõýMKµýtZZví£©tJÈób½oN|%ÐÆA8©o/k?NvÁ«8©«Rë+©{Þ¼Mò#·¦ñúɨ=3<×#à6äýH*9ûó»øó6bE¿/§ÑEíSr£8.ÏæÒH?YQïHt(^Øöòp3ÒG=fÁ"Ôkb+ú·¡B#õº×Û»/ØtöN@à6+@èiàµ#;vPì-Ü>sCó\(@kCxcg8 #ôÖìíéU7ô¹íÏu:@Q$u4W/põæêGr½¹z+ÅTC è@õ""ºfETV¬zÿµ":úomÐñ;^Nn»cO¨7WÈÓ\=@-ÒûæDlÈRI1)Üo5á°¥ØiýZú¢øI!g©ÕO;S#n gñbwï¡|ïi`®(ú"µéÎFÎwzÓYYðP(P ]ð$¯u^fÐÓ[ë ²ýÊ=ñRò_v3dZÒ`@r4ÍhIc÷exÂeQXi2<ßê¼ee|è¨Ö$H`Î ?±(ðhæ8ÛYaïÐqUóŬ¬,Hóî`>hÕé°,`3Ú"ú@.ê;<�DhH-øÀd1Ü¿¯µÜ�Ô�WÄ}C3¸Wı%ôâÖ[á. +\zß ²m<h¤mä(Ú&h/ú�"AÎÚ8ÜfàÞÐ&Ü»x~ïjD[í`¼!£×É[»ú]稶wüón¸÷2Þ÷"ñëüî=×6»y¾,@ÚfÜÿþxºg´ .åm¡£K¹¡,#àÉmËd,ëYN?`54èÍK3@`%Ôaµ':aa/¦ólxz#¬§öD.åé±£wHÀ¬w)0é¾4%ä=kB»è�\3ô ò5!;s+v8¢ù98¯Òú)TXÑxGOÏDÞÅiÅf(O;^;§¼Q;'FíZ<ä=pJ£WÕÊ) Á©"´"ýùy2ûýí ¶^<©Nr �t)a3¸í�Ê rÑôª@ ØÈÅxÖh¬dþfÅ:�ÌtG¡r@¥¥zEìZ²ßß4â@+þz;!Ù�wP®3 +£¦ñãu]@ÄI¹òEõ`ÎJ±ÒQ¾ü0;ÚÄ?IgzIïH*δ¸@7V¬&ú!½&¸µà"*!¯ Æv¬×Ã|JI&úí@z¾ö2Ä¢Þé~I£$þ8`z³^JzGcÞæ]N±Ö¨2/ÉÕÎU#Üé³qÅ3¹=®a¬uûhÆÌíNqe$ɽiXì@RÇìçMÿ?Oû°-èçõ÷ò_ï�ø<øUÔaÇVPát|.AÒ2Ò_`?£Ý¤=àõ°PêÄâ+RbO#µ¬H/¾n¡NvòIbÜFVLuxA %ô-4½oZ~ äI¸({5®íºòlwjBβÍÀqU±!_渪À®T¿ªØy +:CÐ\E^Ði ó¬+Lvå< XõNÎ"D8¸Q²GãË G©5-âãqDÖ+Bv¦ò]Gª0$;î:*TCý®cÁ9~×±Èj5«"v°.²¢´á=QâÓJÒ¾aK1ª´kI )NË�BÃÕcCÒÙajª7`éuÉuÐ �f¦e#T¹ ÚáÍЫìÊôÊnâÊô(Z8áýè`^ªã¬u}öû<ÊEVý;\fèǧË^U<«x¸¢XÿÐAVOzA.tC|*à-tW@ÒëY »ï NÕÇ^bÐ yPNèôhníÜF:Ä®<îïòb e3]pý®µ?"Èw5ëëk?WÀÒQO3�µ¤´¢wYàä#~yy"[ÂÏäÁZ´ðìè÷Rзá%¼R¢¸]wá8,«3ØóC!¾r*I´6D8Ô{m9åëØoÞä]ëé:ÿBÅþL'`èp÷¬G¯²;Â0ÁÝe² ô2ÙÁÁÎ&§ñ:Üi(Íùçu°Ñè¬.Ó}¡=2:O_æó²«óËÏËð£¤ø;\ä'£+Ü·y}àc0¡dÁ©½î8Í�c/t0HÜ«ú)ët6ÔϬÓô%h`¯;b©h ÷×T Ê>h«ï§Ë7dÝjPÎKØeÅ ñ=+¢tkð® +^5?D? ;2ÆB<ÄaÓ$ÀË'å1r¥:^|^^R /×AãKС7Eòé&Y4åtÅݦ¬´fXgáÐôOôÆnv¸¨�ª®ð÷åµ½*ydíMÀT.Ë#GØÁâY?fíF[xO¢Å ÜQÊ5¼A3Dï¦ÉÀ¤ÊSQ¢´& +È%±Qó#±£5]~zQ²ßìÈ� WCG ¸:ÒWÖG±(Wx°pP O¦S CO¦?öëpñeò z^a0Ó»±#Óñî íä2÷ÃåÀÓ=§K P'̶k³¡`Íñ9nÐQÙ®\Ð:ó$Æs8?L©:ÛòdNW+SqZì`á¾ToNWð¤~@oÈl_f@IY¼'æH ×X#w.Ç^\í_ÎÒD7qÝÅÑ%c5«ê +9ßÊM4]Þ| +*û&ÙÝn¸±Ì¶èLôдÜN ÂMÐ)j [m<ör^Wá ×ázy÷ì!ß²< N§ã+¯Q´áúù¤·øËèçe +³¡ü2éÝßÔ¾hö.¼»ìò0µç[? åO06ËêCk3R_HF¿ïáº-PtÊj#*ÍÃ.2duv6îNtºäi ®Ðõ¬P�:ßó + ûT�¯*¬c N6÷ ÇÙ 4¶ä @ÑS_V ¿¹NiÜ(oËm@¢)CÒûú5Ên;ÒäÙl*±N¹][eøYÊí&º,h<V°j/*Ö")«GMLÄÜá ìØÈïm;yǬEÍÚ +Ì&๡ èópu0A' ¼¼ dåÆg þ»AK¿Ëdx-8]*4bùv àäZ2Ç ¼4Hàî�'JF:[2HÐuôÓÒ!ZÕ½Á£ª{G+Ð ?ϲûPhEÑP å ½c2¡ï5Íà Y?>:ðYÕÉÂ#¡Û,ª��ªéx+^gà.Ì¥ô7×çR²)UÒHÁ°d¼+1â ÑP\1À ÈWm Sòea'Þ=ÔU 9ÒÁÛ}ÐvlwöP×»éMêjVö<Å áÑ¡Ò#7?æúPY$?o°LõJè;ÎsüyùrÇ?»&eø{+NsÌØÑ@óïßË)*µÍçãW(�pÀÌ7Íõ:èø.Щ 3«Ú?¶åÐCF&0$gXðy$A^E]$àÌ!ÈszuìWd:fçíùÞðR"îx2©l¯Â¾|@f êðô¤'è Z|tóódVFµX¶ãO$À¬ £Óc+ +(¢pvg¬r±D2`& zñJj¼ zò©^¿à*GôÎ=Ñ;=ô(¢S^Ìè¨`J§36$ì +e\#Ù�9¾?f½àl4ËA¶cPäPg&I¡Þ.Á-ÐÁÁô,¥ÊIL©8½5>Ü"´¥=6?;2Äv}'Ý ´gΧ¤êàíHàh×±öQG)70$üÄ1/Î@n¡íÁýùzï¥æF3Ð~#t Ì\Ë78ÔÈØ>â:zîê{P={ÄìÕØwƹDÑy-´QÅØ³©é =9d÷Zêóx9¯+0¯sð§TÓxøS*©:JÅAçOY`HÞ§ ¶oRtWF²®]~¾Xöè<¢:¬hÃInE;Ìëä̺ªyÿvƦPwP/£ÐÄiCij ÚWÉÐ ¨M~TÒY?Ü¡¤AW>Äɶ)v4:×oå:¨êéø¬gÓ·Ñ`úìÊÜÎEéé,Ûúyù¼÷!¼,ßß0hò Ègæùñ"j´ +X»0? é`}Æ +¤¯ £8(T!=!Ò8ËöV ±"%ÔÁ N=k£^Èn>0[A2¤YµB" K@.~:ú~gRçèï¡:GõÈòRläH<E¨j±N=0#ªj̰òVzr¯sûbWè�ë³ÊØZÜC¦U�;2]*:?4ôdÒ´ëseaÐjtDÀjÏ =4 Æ}·Y#j´;·�y-7ÞBl!h;ÀÇc+ÐyÌ)eêH÷d8î%£pÌõG#Æï`túÎÄØ)K.9¡ÌÄaJçpD½{Ò +{-õìVèÉ嬺×R¬7B|eÑñRjèÆô $ÇRí"Ûù0èÞÅù©UGLPvèÇôY ð`¬W2GlrR]¢TSpΪ¨ù¯Å ×bûàg1ö#h¦ÀJ¿³,0òJ×ÂGÃ²Èø§~Oìô¦«¦ T8!ÓïY @æé�Õ¹6°#g§~´§ds×dzsIØäv ëct:Ös$8¬ç<Ö<}4<¡ÜÖGWJëÁßÁè<^gkiå?ש§ÚËxÝ·db4}úóüy·ÁÔGR2Ëc@3p 4º×[°EQçNvÀJº'&`lE³�ºíP4ÚS# 8:¶ÄÀV¤SÑ öJpÑ$8⵬}`}h4#Ý7hÆúìð÷õÛ"èÈ<|#ð÷p©åB)¼o²»aryrGáÏÁ8òÁ\ë)#¼Z¡£ `{¨ÃìeSÍF]®`Ñ\oÁ·àlD¾³7øºG=6ôr¯C¯ÐF`G¢óÛï(;iÊ'=´ÎÆ"SøáU¡ÄpåÈ8!Òù2ÌÈ Ú¯3H|xâ¹ð<ëHÏ|Ó~Äx¥§ýH®Põ*ØÖzÚä'µbk-#£%éÄÉIñQIü$fx°s�íÐAñZͽÿI ©'$µ gY¬áì±ÀÚNrcñBäg'3£ì.fhFz0+J@áÉÌA:R4OHwÌôÇQû1}ýø\'²Ôg¡äàüPÈ1Z¬A2:Q6 Þ¢Øögøç¢ Tr,«»!¡ªµïZôóKëw-úÖÛ©yZÛ»7 +ºcüÔɺAäñò]UoÃóxµ¯»|@'P3>ß(<Ô0òëtx'ýÜÂOF@_{·ûÂëô:Ê¢í!`ÑthÐÇëµÄóÜH³aÅßçÚ&;`éÂuzï¼ÆþtìÆ¬sÝÕå<nE!U ¡[뺡ÐS~@¿ë²BÒË +tBÚ&à(È!c�@J¤OÀ2ÚñéN;±ôJÖyT°äçæ©»Â2¦ +}±ÎÙ°àp*?7ï ã¬,ÐèJ¸âÈÏÍÓ&àÁ±'Ó1 úÝv¤ÿ8¥(Z!êÐ +y!)ÞB5âè]³hüxòÁ$C_ê(dI¡Y)ëX 1rÉj^O2èJ¼gÅ2¼¡' Ùè = IV(¿Q<Úçiá(Áª)]À3ñ&jç´£¤ù±5=!E¸æ:'*LI=¼È±>Ò ©6=ËJ³ +ÁÒA¸Q°Ò 7 +Îë[¡ êÍ+Niåâb·=£Ã1 iqF¨^<=\wu`¼ï<\;Z`Úµõ6h[G`f(:BÊX0øpÓ³âP/ÿ¨ðt쨥}Vxºv4ᬠë±4VìËd-²2²ucÞ¬`QÌãP`%d뽸YÀ`8üÞ\ÀêíðÞ»ÝÓ3.ÀÕë=ã[Z½üüiï9]ÄþHüF÷0R:>Giÿ8YÃ6ÐÁöPþy¸Ü½²â è*`ç¡YX4äãWQ ÄLÀÇÆú4Ò!NÖ�ý§«Ä Ù "GpT¹&c+Ò{¾,¹ú¬cäçèû3 $dÅ_ Y;cìH¹dGöaÚ\ÅD¢#£}wdikaÐé&V¼ú5ǺÑL�z2åɦIbô;RbOý]ù.O¦ã»FC9¡Ëfº+í÷0#Äm#¥5^ài @Gæà7Ï=§ôzáï`J¦3#¼ZaõTÂèàèø(LÉ\�µæÊ©®ÈHÐN«æîÒI_Þ!êÉpw:( ±ï ÓQOÓÒ¦[P"òÅB\1R:Ùô~¨~þÀ½ùo dN£\ÖAêq8$m÷dêXLÌ9a<ÉA¯ås +k) 5"òñ¸@Wæ(f^áïëÅÌÌt3ÞÖf¼ãs~SA6!1Nãxÿ?ñ|ÎûÿågVXaRèè`p0oJjª`¶åÃ%ëß~Sb÷òV_ÁpÇ=ÜË×eM,ýv4Û@¿¯_X¾ëôJÚ%¨?UP|Pt6Áß×'2VAùdÚêPVß¶ÐÃê«þ>Ù�«_>««Áµ=/æFà¸è+|Êx /"¼ÐÏjðïâóP¯VÌP·ìÈôÚ©=ÄGZ¿#5ptÞ +È¡XÌhG®ØZø µð~ª±´SÍé 13_ ñý2é('7CüØ%å$B +ôf¤DNYâJuÊ' ³?/ñ5ë+¨Q .Ðè¿=¿þV}¹Nú±mR0áýïdGÈêgéõ¯M'Ôw*}¤Î,qîPqBå¨å.ZBD· =ÓTuÕ¡~¨éµÔ§\ñ +äcMgÏ5ñaö`ñÁN§ì´Új¡Ê©ñ0§r\YíØõ·ÒáÙÁ dúÁ 3Ona²# eqÚyÕ|! ¸ +qfdlzï·"kGZÐ]à +ôªÖ½N8Þ}¦6SéäÌvg6y¾-0§r ôræQ4à¬PuÖ=Ià@/tdòYÅG33"âÃWQéãV9+=Jí@¡@æ\°`^¬¾lþkËèêáð~^dÈëgVgÖsiw¹ÈeÐrVBÃ×ë( ã ×2këçoÐéL-É1I8©ïWàè%Ò(�cüXÐïë)ëÞ~ÐjðJLáÁéÆtØÃ¹bQxÖ òÀüÜB½w!´g#Jrร 8 Þ-"`?¢W1¹ø@´1â=(%(ÞKP uÂ_®hOYöäý�ôc¨Ðé�eE*ä¡LY`$X[1s@ô=ã«pº(Bá4aã[óîÀ +Õâ ±.]ÌF9H¬ùñjfÌé2ðêð^Äf¤Ã{ :¼5;¤àXF"ôĺBaV¼hZLqv+ Mj3tE|z"¶IN¥ß@W¤cKÕw¤ |8¯×yñÉRÆ:-ðàdJu`×60C�/&ƾTÇÄlH+<«Vx2+í´ÂÓ K¹(ÿ(G~TíX.Ê/V4ÊI8év¸¢ÝǸí:q²®·¼Çc HïoÊëýëVä\ýë e±OÐö2uPg&D³!cÆ0§bõòÈV²9z×aGu»:2ò¹% èi%©ë#«â¬(«F®GÕÈy`Ýl0Ïõi°k<ì@pnøózó8üór¥å"yÀÌMAÒд'z4BX«À;×!B{«>)¿^< I|+æÇ§ iB +à`ÒìµÌ Ðñí#%K*À{×a è(ÝVç!?=YAõt#+t£/Ø +½çlv7¼J@NÈ£=í!ÝMó#¼ú;gG:ähÀH©ü¨£BtB|G+ïtû^;ÕöI¤£ÙLçýî!£ÖÆÄQËíX/''®ÔÕÉ +èeIÁZ¨_`O¨ßÖ,({x¡W¨z9û +ñhF óNÚ1�U]¦¼y4¤ÃcJPÇb=9#íÀá±Îúqùeìtø!Kß°ðýÈá�Ú¿]ùËlûOW®Ó2ÄÒûdZß6§dwâÎã¹ÞÁp=6ÎÅöpÐvÃÜð`¢ÌãLçMÙpR¬SÇàJ~÷òý}\ Xux +z2GñDgݹ"Þ>OËhXNw°n<Êé +vez-tÓZ*ÍÀÁM-æ~æÌ;ç?/·Àxªò.Z<åÌÎ8êOÈéTÈÊ6:í<]ê»2ã+eÓ/ +`Ræà ®PæÈ¯A3C#ÐÃqÅgK9÷bîQ8¦ 8*Lê[Å-¤ñÐB¨ös=x$·ä4QÑjjôów dÏ|ó2{9 f?âü§¡ðy¼³Û¡ê<^çk°CÕY|z&ÓËÁÛÇ«¹áö;pz¸ÿ`$;`×T³;q�Ô�½» T¨(/(ûy¼qD5 ²Y@..í¦ôô{½:!ÄzÀ¾,áßÏòqÄ*±ÏãïY«wèM`/Ðmتv.o»;¿ýèü²x¥àÈiL÷"ç 8¼ÚDÇ2ÞÃb×ý17¾$?^÷ÓVÀ¥Ï3p´.h=¤11O«aEè(ºè$ûg!¢âË|Áݳ\$.PÖöµJà×m¢ò-%óë2hr%ïÁ<$©1½+²ë²' wEö¾î"Aý®( ÈOú³³ëíôe+×~*îd/{(W÷ë²Ùx¶üºÇ#=¨xô¿Ú¡lGiÙ5;Òº ½v"aO$×N¤+\;ìæd¼,νp<ÔUE&fç :÷N2½ðz9÷¯/¼èuOÒ´ÇIþº;CÇëèË<¯{`^渵¬pv¾V#½¥ñd¨'%G+Ø'YUÚ2Uõ;»±!±K;ì +nzÌÎÿt¾àLùX®~M Hçñ~¤Áïó;?lúËÏþ#91$H(µÕÛíX¿±*A²Czo=~åWµÃ ;Þ +~¼+¢#âïJ° +:ØÛK×%ìÆL=ßKÇ ¯À½1»1CJèxZýãÞyÇ®\íÊï¡ìÈz/ÖÙ̼ÆgZXaNåy]ã|Wñ UödAiäÉÞ:sÿµùñ/?ö$o;\w0>ݵø>þÍü²¢²¼Çÿ$.w3~i +¿¯_k¹?þª +ßn(Àl`E¨àpD>³^à@4ºûÒ÷�61çÛâ×rÙý{QÑ{ñ«þÔÂ$URߨ3RCpuñÞtðÒWç%l�u¾îa¾[Á/âù5á:`½Å*ÄÚØÖÏBÌÂC»ËõÑIzÿ¡ù7áÞÞ]Øýûé@Ã|ÏãO4Ðï;gýÅyúå äñØàè+HnNd çñ:-*гTbuqÄÓ5à Ð[Ó&$@ÇÕO2æµSíSF:ä¸7(h=÷F3=ÔA²µ>ÛÃY±T^ß$hÝÎ[8T±'uô¶](6õ;T/Úxy$rzÏ j¡\KÕÙZL$hïäó3%ì]ÇJHÊóðLpû#ó +t"â +ån®Ðñ> {Â9GÖ ÷GVÈo4øÔ¬ Â|B_AÅù£3,:é%]yAP`p1ÎÈô£Åâ¾ÁD¿3ØPBâ(èÉ;ÒBìX:V(§ø¡SÁìþÐQË))Rà²4vâìvR¤8ýOÐñêRÒ¢8kfD÷PtDC&¤Q>ò °V³ÝcW¬Ãµøp«ïÀý£/*ô*$Ö;ú¢§sÚµMi9ï +Xà±è}QåÓ)yãS2=)îpõdJX3ÞBù½BGè¦-H{@{:®3!0ÜqsÜà¥ËÏëÃñÏËÕhíÞúòó2/fHøåãÿhý´$3¾Ïdñr ÉßD¬¸Ú¯?m|»w¾JP"Æ4ÒþD©£éC+'¼.@oúÐJpÆ&Àx°u·UàLë`»øé ]ÀX¯k^ñÈNÌPòáÒìOýÀ®úÏuGF�+ÖÌ¢ck¡PÄÚÞWvçèÌ¢ÆØÎ¡a ÕÊ´ðî éè 5òĺBèDHO@¯M_äH8Ê¢¹`LKmûÀVhE:qD2À6åhz¬üîH�£1]? ?u2yPð¾®Øèdëq6©4yÖ5¼iZLñ¹HÇç +ÞÙå¢e$t<L©<½ «æË9ôåzoá[Þ[xóÆd% [Ñu@ß°iÁ£Ü8èïúÙ2n F è =§²9JñpÉùöáÑÊAø¢)°únHßoF:ôÒ,YJP¯%9NÃS5|"npDæWhEù¦ñV ö.JýNë_¬(Uáªâ]ØVÖø]yÌàc9dù +ø®c]ÁÁ"½µðÐ*¸ó¼Î½¡,à²×CuÑh ±%2Ø«&N¾J/eÏzÔ�* eÁAU*»´«1 lB]ï[k +Ï4±&¼Y:!QËEáͨôÊìÞ»ðs·Æ\@TÅþàV|_÷Ón2Dù¬~÷rJ¯ìâopw'H¾ù<�ο¿¬[ÒVÐxTXLÆoh<ªl¦Dh<�)®*Ô:ÔÚïÿ*¿¬<~níÕèU²ÇW�(®8}�ðEø{|ÀÁ¡9êÛsÕ´UèäùfFs%úê¡c 5©Ì>°ªÄPg¸ý©²§D5g°~.Ñgée\áîé%eÚrÿÀO=È÷Äà®Hm{�3YæG:pgôÁ!¥Æàx$p�Ç÷Ä,?8ê£ß1e{$ Gº#Ï;£c0äù²½Â;ÿüÀhgÈóy¼9N`¼ªÓz½NOÀN)£ Pèzßÿ¦Ö`q´þ¾.ÀjÞ.¸ñq\¨Cï£Ñe:-ÌTPjËf¸/V9³2BëäûÐôw9¨:Ä¡éc:¤Æ&¸~½OkÚ>mÎî±Ô«»ób ¢ ptgÌÅ4`+)´Nµc7Æ«¡ +Ên$C7êhGs4ªtîakT;VBV½h{8ê3;t#·F3pñ% _ìHWÆÀ>c:®:n=p4 ÙÁæ¡9ã`&_X§ÚõîÆÆ1öål<6Ù¨Pf6*0%t¼2ý/äøØÉ V_=íN³¡XÏ:âg gY_�<:.vôû¦Ù;¶d9«¬8)µ°<òµ;¸¡Y}´v4ãã¡ÊG;có>ÚUÊ;`á¯Ìd*XBqÂ9ÞÞZSþ|øëòc3;TËG;R ×Ϊ£+½^iG¢ónåx96oYæú,ǶÏÑRëàþ6ßó +ä¢Äõ>ËÖçõ"krÑt¢õµ¼àYú©0.PôúìÙ§>{ÕNÀ*iÆVÀ8<ò3þH )óõ}(¢FcåÑH¯R{z>ZçmF{(fôojÑýÅ'ï +Eà NÚ&Ë?¯Óu« 9»"÷u}Ê{òd<KîëMÀÃ}½@o¬s_¯ØêÜ×Þ]wèMuîë½>'9ÀL/n%I^ÜátÂ[èI<$X$( )@wI ÜXêdÍíX/°ÎP:RÞ6\1?Ì©n W¬:H*G}³rÇcG}sÑ ¯o:à¨o~øIJÓqâæ]ßã±Îß~�ÅoW¼Ïñ·ë³?%¹�Åè(gÄv¤£ ¦æ3iB|Y<ð +e¬F:ñt®ÀÁ½vÀZµáÍø|¦7 +]°+ÐéhF¥óX¬/¡Q*ùlP`Rç1FtYV�º+ô$:Ð]áñÁ|CFeMXd¤âÎAº,NaÕÜê O¸aÕ¯7Òæ(ñßÏrý¥çñI>ÝFäï7ªI¯4 ·N2¯Û=IýL¼NqR;TÕIÞóüV#^#ü}¹öä6ýs´jMhà5)5WECÐQJ»1¾L@HéíüÞ£°b%ÔÛÝV¨DrùL¬xep¤4´3i` 84 d/Ø4ÆnaÝX:Ö½#5¼Gbêɬ|fäÉ(ÆgøÐÀR-JÄù¢¡ôZÖ ??Ovã\mHh=vjÏ+N¸§è`{K-H§ªü +ÊËå\ûþu{?θÖÇïoñÙïo«öûèYÂñûJÇß_謷z{#´ÞE\s1ÆAºôÓGF maJráJ´ÃçÜ{xÐØ¹úò`Æ×rFKµ¡$áíò%^>�PÒë[?{dgpï]@·Ñâéh©*Ü$ûó÷ݯÍàüÜMj¿ÝNßã§¿dõ:9ÞÆëP» +Î?¯³4^åòóò©ÜçYr;9ÞEú7GNhµ60GHüø@m´P6»ÿÖz|Vºi�m¡cW_^ÍïFßXÀ^7¡µ¹lÂýyÍ Í½xs9aÅz¬çíÞ/À7ZÏë¡%éj´b è+^Ãb�áeÖáQte,+ÆÐþÚ]ÃX%$òñÐéT¥½ä<½%U-àm\°/Ó2zPVã!Q¢òÐ¬ËØ(C?À7_|^^ü°#ÒjâÊñPsUs +"ÁMså¼q8^N°·#3Ö:¿Ý+Î?¤Äâ�uP/~ÏÜÈÑí[r#Ë ø)Á^¿rþ�bÓÁ&97.£×î/÷Ö#ûÉo'!/ {¨ðdE@iÍ@gY\P4tµyAjèè¸l}¿ÇzHêÀV¤Fç¾ØéÏ}7Oè%8tDzÓpã:'D÷Úx^2SZõ<[éÎ;ÜÍ 47q _û§çóÔ`Êz~c/àhÂ?êºÉCIK¨ÎJ¨?O(uö6ÂÁnè^ÚÎk7 +×;ÏO»FqhndOÐ=ܰ#¯Ni÷¬#-rF5xãçNhÞ¬P$ÈÒúÊ¥ýß$Î×ßøìé°#r4QaõÈé: O;Ö½f?2øÐ.(?ÇOÚçy¼Jwôóz ÚÕ_'-þ¼£öc~¢c þ*}p¦#÷þÍ~.Ð5óÞþت@Çø\»1½EÛAîw¾×«_*¶ùwlñ×ÈÙøñÊP[{¥&àèó½@ Ðç¿ÂÔÛð¬Ð 6øMìyÙ�ÉvdpÙàèÈTÀ^Dïß©@ +ÏTÀê>fU EM(6Ø®ÔIØ2\^9±ÐáÝvÀP7\g¼Ø§ý¸IS ¿ïèàTÀñÀ^H·?±Ä[ +Ñ +P¨dµñ+rd:¯©u`1áCÔxr¤QéÍz²Bt%cOª7(XB Ýkäq%h|2ÿ<ÜËè+Ñ A*xwú6S\ç(¤2ö¦:Îß.ÛF ¡/tRæDèТ³rÐpIZNCg° Ct¼ô]%¥ûBG«rì$ñ8Øø´ 'ÃÃ'ض'OÀuA¡3ó´ÚÆyÞe9Îjý>Ö Lpõ @Oæy_'ùGÕ Z øN£Vë£ãµQáM¯Ë}¹|6)í²nÖÞlFb(ûìÙÊPöÙ³UI¡>ÜÊ¡ìhß"Ï Â4÷ Ç9©Ü´Ê¨Ë# ¬¢oK âùv]k÷%D×µyð Æy2kã8^NÇZáu¼Þh¼Âñ:]ÛÿÓx]íH4ãmi.Ð`£&�ZkiÀk#E°ä>ÀQn$Gk.Pz«iÎÐËx Þï!¡ÁÜ#rPY(±£ÃÜñ£÷Ó*°b3v<p\îÀü°~ªí0÷@æÆ~D.:±Bêñ>¿ozR S{rÙ{$ä Ôhv+ 2G³$ºSCÛ¤¬Å"P¬C:R_p0RQýºñt»%IÑ¡Ö0æ2½îÈ:u5 +J¬×1´óúß©º#ë4>Lè8J [%öl,é(÷l,1"@!£"ø`\$%äD~§sRc'T¡ÍíÖùbEàX\ 'ur¯Ïv bLãPGXÑÒ:äeÓÂ9s¥ævâL¦:£ç¦ùbRã è0¹Rx º2B·6j Ù#&2ÞS"½{2½×à¡ÙpÚ1îÙpZʳpÚAnw8ý rè\åã¬áÖbInu2GìÉPûx¶¢+ÀY¡¾ Pïµ¾g1 6¨g3ÖïEó¤LHÐX-9§"¿gfXaN§#4tZÚ!Lhi± +нÎ1¹Î½~æbÈè4&#øçåÇåçu:£×Æo@´zO¯¤ïÁÉ çnAøàu:Äh©Ä:¢@cÔCïè% �cF¿ï©¥.P õ# ù$Èiøê3¨X² -c´-`ÅàP ôbpÃvÖ9 +¹¸!FHIð6,A]w¸ý>q#:D éðq# }@ÛCÚp&Á=D gÒC $¤ÄÐà@ÞQêµ|ä0/od`ýÌØÞmÍq0Ó»UMõ»ÀSP¾ÀdF·£O@Î:N=Jx=6ÎêÐêlS¯6Ê!Ì<OvyPb3k+~uz[lèÊd0!ò ¼IËh(º3*æìX'²ËoεPÚåÙ:0Î÷@Ç·rUs2F×BGÏE4C +ÒÂÊoux`ÇT+´cýºhÃ)~]´Ãxê¸.Ú×G'2O_oxz¬:>2Çó¤ðÙH/äL¼À{c-ìËPZÇ8?Ä`ÔüêËÁµÌW3ãÜ^WdâtuU!ôEJ¶x58j·À8?d ó¼ã +Ää¼´FM´ :ÉH+hÖ¼9çÜxxĶÆÜc%&@kûý%;ïþÛðw$ úyÇѬµo»L_j#üy¹Ðn|Ï?/?h0ûb3ç2^ÖþÐïKU¡Á¼-£>}�a×úÚ}§^ÇÉï@óôÝx~«ßy¼ûº,@ ß3jíȼN&¬ÀR©ó +ÔÚ\ÌäÙËÉÏË@£9Ðóx¦Îx7¢(mAð4]ªH Mh¿X^Mmåä¯pX[1N{ìX¿®íõä-pôv¯ðú}ÙþPwQ9Ò' #Ghz55ñdúUAD±ÀQQT0ÚÍñÆîÐå#i*é )öôï×åQ(ë#ãPF¨áí<8öBÒ Q¬UîĶð®=Z.ù:ñZ164"ýLÞ«¹g½Àز¯$xsKä'ØÊ9 `ª_öjòK0vô¥G+Ðk0{5øE#QtD2¥'TaîÂñàõþ>T& _8-÷UdW+´"}M8¶;2O)5eèÀ¦yB^ ' }¯` ÙÝ85Dô.Æ®Z8â(7>ê}Ù#ÖcdÆ®àîy9¶qðf,ùµ¼uE·5Çj¤cÌm0½x´¡åhrH·®è#cÜá+éµÌ#WÂ˾¬�¢Lz/Ó²ã-¼ìæ$:°s +ô¡Â³ã¢££äÃ¼Ô Éµ¤jTÌ÷ aùYñÍi¸:¢ó ;^¯ZØÑôõ(`]É/ãå¢ rçu®h¡ÃÜ#ùójè"í?/fFpð%$¤¾{·I/7>¯@º´ ½¶ p-tÒËô«Ú®:NЯ::çÇyú]G´"ÂY/±»)/G+p#CG¤óòÆ¡´ïð÷Ø»ÎzÒý§÷_D:4²^& ³s'KtÒ%¨³sJ;TAòBOî@yU?JäWµL& ÓE,H~{E ÔI.%l$èÅôóL²«¢Áx±ÂßkP{!ó(ã'\Þ2dS:ÄQ>è¨}ËÐ9^gfèÆÀéY6ÔI¡G !tC%(ª2^Né~$C?æ©#^à¡ÂQÈàaXµXÎù2Ä-ätpõZréµävå={,³Î Ó:Ð+¡'eæsl82+Á^ÍËJªQÓ)Ðât@¯%ÏXä¼¶ufÄ:cIÅù.ZË£Áò*hìÈtzÑNEJÐÑù[¾jƤûåÁû %á ø`¬×ð¨Ä:¼jeC"¿±ë�1ÉÈdW^Ås!�td%êeÔV`ØÊ+3¹e±SÍy¸$ÿã×Í^R#v&ü<#Ûë»jã4ð¿qVæ(J¼w±M@8znp:©rú£"§V½u/G^E{YìÂbÆ[ »h]¿F{H¨ 8¨½ëSThÄzûÈZÀMßêW&ðPÆßêWÊújã¯IÒ®;DâçÇLô)Æ;2ÁÎy??%âN¨¢ñ:]=ü>5áç¯?±çBu4ÚaûÔ8zDà}£:wPöl@=wTè÷]=ü®5+`=Pô{Jó@ÃdWTÈÀ"ý!Àù:®7¸Ý lPõLdÃ^L¸&´;*´ Fê�W ß1´#µ"qb ElE:#u: 3R'd+HÐ:`¡~É')R)<açuè�çuÇ¡Do`Z±#ÑoZ<åÊÏ1VÍõ6¾Ð¹ 3ò<xæ Éçô:ô å´:2)7ÛnÛg=Y§ìõd½¸DzB?±ûE ÄìZBCIx(à÷LØèZhðìì +HJ$ýôÇ�£hÂw`@×h{v.éoÆvÈ>�=ìJK®T¿..¦Õ:sÄÐoI¢yóQÐõ"ð¤Ù1½eIÚÙÓª£X�¶a#ÇKoläô½z¯à£^½W*^ã¢I=]³{¦åQNXV¬Ä2UA§US²J@ +<Û9¨ + +<Ü9Z�ïÚÁêÐ.3þ�»bÏÝN«|=ÏAçëõå5Á=}y%(~âZ{Nµ~~â:ê 5ä¦jãõP`ÏyÂg¦�V´>3ÖPÂ�/oßGá�¥¯?Íì(ñe:¡uZp»ª +CÆ¥ÁcÑ +øcÛÄ4ûª°£hTMhö_U Ò߯h« +ç¯_5T¤Ä«é°£?I\£ä è ôÜõmÈ9îú6¨ú}ïþP�ª#¤´â±Þ¤ãÌq(Eät⺡˷U)A¡£ý¨²ü%ú}ÇmU^Ôq[Õk+ zANë½ lC©j;@ho!&sþbÌðî¥põd¤óÍÌ&#of2I;Î%äd$?æ@Ë#GI>§7 Ä~LfËØéH0ýxÎ0Þ¬²¿üØ72s$wRvN+¯:r"@Ìé,û¤1:òûM' Ç"ýAvd:@»À|\n Z +qÔ,` ¹þeD~Uq6§Cì;ü}¹ü3ÛÃÖÑSºãdBï¹³9!¶§ù\@~Û["ÔA£OØ�®CÀ½¤â*âÆÐ9íz*¦[P`$ÑÙ*:¼Záï;`9þdn@¿å Ð~Q ý £o(~QµÇJkÙ5k\:ÓwFüÉ-¬ÄêørÄn@æ©8Þr¼ó©9Jî è7]a=Tt}x¨`½¬xÍ÷9Ò²µÞG; ý¸ÌµDä<Z'úA¿o6Hè¼rxòóÛîþ#!RV?ýò STL`úºç nô¶xözl¼£L,Y?¢×¹w¼T¿ÝX$£ã4R]ý÷ï¨n ËÏ;}ÙÄ>¨±}çûÃΫó¦F:Oè~ 5Ï÷ñ �[AãîsðûÒù÷»d9,`üÖ1ö¯µÜæßë°q¯gðû>ÿäæÏ +ÿÍù°Þe_~¨/Ù¿öߥñLÿRúäG~¿ ù£ßg@4°? ËM{_ë"½Ó +]Lû×üs÷uNªíÞ]û¨ô7d=Uæ³IÛv·Þò@~ÿ(ü>¼Ï]{Þ¾â>ÿò<nùçb'þýçüÂrE~ÌúrÜDïÏÈ| ÷ÐÁ³V$}Îuì,ãÔKïËZ@ð×¹YsA©=®0÷Í×àkwîaÃaâ¬ÕWCéËÇå{¾i:-ôßÐ5þ=tÓÍßóu\¾ìâ 1ð½#¾7óÏËWàE;ðQ¼0_w\[Uõe¼|yi]H'Ï,%= +vb1ïÌØ +t[úêÛ³ñë3X<�i('w Âäçäõtf~ìµd·QÖðhï1F¥ßulhïuVsz5« 6#ªç¨�*ó ´Å[¦"áË_#ôù²æü$:ZE¯ÇÐæÉ7Å-gÿGþ2{å[ß.{ýLÓÄVCyÖÏLe,Ø·ZuÈU§Þ°áóË6Û^µ¯;ÎÍ~ÝAͱá²ÉXÍöEt²ÉXÉõàç91G@?¯¯!Ó³ÂKâì1PD³ë4hõ»0 ÔÞÁ)R6Åby¡64:Q¤Åõ,Q>µÝè³ÅuT©¯hëô"õé^£¾«ñ¨ïèéìw$zÔCÓñhØX<;Ï9<*úyĹ<ý&2!åáPÉ`ú +2©÷ No½2ÖI^]«« sÄ#»sPÄÃp¥÷NG×\ètô¢òK==Ò¼ûÉ¥iv+§iGv«7±ÝÑêu»Ù¥XÍk©5K)µÓò´MDy&Zúò¡×rTg$ë<ÐkéXb§¯J. +¯>Þ" â¸íuýdhУ<G'02:Y:NV?='fjé'«¾0Ø!ÃTËb'[o}FgVy=:"ðÂiÉiñ£ÈntùW/_ßô¾<<¿_ß Å]Á/C> ÍgròúGÀ@©ÐkèÝQÏÔ¾>8ñƤ(YÐ7`%ß{ä³<½q¡ÓÒéX6 X [¿C`áîXªTóT©b¯#ëÎB?�&jtgÄ6?êÙülªSGÇËÿôûß~÷gñGüñû¿~Ñ?jö/¿ÿûßâWIûëu}ý¿úñïþÛ?þø»¿ýÃÿá_ÿøü÷ÿüg?þé_þñ¯þïþøW?þçÿûñßÿâOûw÷ã/ÿÝþòßÿø³¯ñ·ü_ü?ýø?þæOú§ÿø»ßýÛ¿ýÛ×þæoÿõëþø§ßýe\¿þÿñÿçwÿô¯Ç¸¯¿ùÓßÿÝ¿ÿñûÿýÛùýkvÿRù¤ +endstream +endobj +432 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1015 0 R +/Name /Im413 +/Width 26 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xa8Ð Îxð;8ÐÎÜà�Â|P,ÃÎÐÀl,ÃÇÄ ÃÏÂÀ'ÌÁÀüð�Å$p +endstream +endobj +433 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1016 0 R +/Name /Im414 +/Width 19 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`H`�¡ ÄØ�EÌ ÄF<`$C`¡ ¢«&M�³¯ + +endstream +endobj +434 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1017 0 R +/Name /Im415 +/Width 41 +/Height 1 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ�r| +endstream +endobj +435 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1018 0 R +/Name /Im416 +/Width 26 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-È1 +0ÑIHaÄÒbÂÙÅcYæ`BüÆ-+ÅîP~ñ$Y&YÜîêM½Àg#2I²^§·í +Æ +endstream +endobj +436 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1019 0 R +/Name /Im417 +/Width 27 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`þ À ÇÀ`ÀôáóF dn`<ÀÎÀp¡AeØ*ðÌ9 +ÀXÁAAÁ±ñ� 8× +endstream +endobj +437 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1020 0 R +/Name /Im418 +/Width 32 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿùÿ æ?À`@-ÌÁ Ì0~`<Àð½¡þÿ�þ" +endstream +endobj +438 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 593 0 R >> /XObject << /Im318 331 0 R /Im209 218 0 R /Im319 332 0 R /Im203 212 0 R /Im320 333 0 R /Im204 213 0 R /Im202 211 0 R /Im209 218 0 R /Im203 212 0 R /Im201 210 0 R /Im211 220 0 R /Im320 333 0 R /Im209 218 0 R /Im321 334 0 R /Im321 334 0 R /Im204 213 0 R /Im205 214 0 R /Im209 218 0 R /Im208 217 0 R /Im322 335 0 R /Im320 333 0 R /Im323 336 0 R /Im348 361 0 R /Im99 106 0 R /Im106 113 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im160 167 0 R /Im110 117 0 R /Im93 100 0 R /Im102 109 0 R /Im115 122 0 R /Im108 115 0 R /Im139 146 0 R /Im139 146 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im114 121 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im117 124 0 R /Im102 109 0 R /Im99 106 0 R /Im105 112 0 R /Im337 350 0 R /Im243 252 0 R /Im240 249 0 R /Im335 348 0 R /Im281 292 0 R /Im255 264 0 R /Im74 81 0 R /Im342 355 0 R /Im343 356 0 R /Im342 355 0 R /Im343 356 0 R /Im419 440 0 R /Im283 294 0 R /Im216 225 0 R /Im221 230 0 R /Im227 236 0 R /Im301 312 0 R /Im420 441 0 R /Im218 227 0 R /Im216 225 0 R /Im216 225 0 R /Im233 242 0 R /Im393 410 0 R /Im226 235 0 R /Im216 225 0 R /Im228 237 0 R /Im216 225 0 R /Im222 231 0 R /Im221 230 0 R /Im219 228 0 R /Im278 289 0 R /Im216 225 0 R /Im226 235 0 R /Im216 225 0 R /Im227 236 0 R /Im218 227 0 R /Im222 231 0 R /Im300 311 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im100 107 0 R /Im93 100 0 R /Im111 118 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im360 375 0 R /Im108 115 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im137 144 0 R /Im96 103 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im106 113 0 R /Im128 135 0 R /Im360 375 0 R /Im137 144 0 R /Im348 361 0 R /Im293 304 0 R /Im133 140 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im100 107 0 R /Im123 130 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im117 124 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im102 109 0 R /Im93 100 0 R /Im108 115 0 R /Im117 124 0 R /Im104 111 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im74 81 0 R /Im130 137 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im107 114 0 R /Im98 105 0 R /Im115 122 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im124 131 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im97 104 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im111 118 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im96 103 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im126 133 0 R /Im96 103 0 R /Im103 110 0 R /Im108 115 0 R /Im97 104 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im111 118 0 R /Im107 114 0 R /Im98 105 0 R /Im97 104 0 R /Im103 110 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im105 112 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im96 103 0 R /Im100 107 0 R /Im100 107 0 R /Im98 105 0 R /Im117 124 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im114 121 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im106 113 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im102 109 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im93 100 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im130 137 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im112 119 0 R /Im292 303 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im106 113 0 R /Im123 130 0 R /Im135 142 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im135 142 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im118 125 0 R /Im130 137 0 R /Im292 303 0 R /Im135 142 0 R /Im135 142 0 R /Im110 117 0 R /Im120 127 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im124 131 0 R /Im96 103 0 R /Im96 103 0 R /Im111 118 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im105 112 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im123 130 0 R /Im111 118 0 R /Im100 107 0 R /Im108 115 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im240 249 0 R /Im243 252 0 R /Im335 348 0 R /Im243 252 0 R /Im242 251 0 R /Im258 267 0 R /Im255 264 0 R /Im260 269 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im102 109 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im118 125 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im107 114 0 R /Im113 120 0 R /Im123 130 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im98 105 0 R /Im97 104 0 R /Im101 108 0 R /Im93 100 0 R /Im114 121 0 R /Im94 101 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im107 114 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im120 127 0 R /Im74 81 0 R /Im136 143 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im97 104 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im116 123 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im115 122 0 R /Im102 109 0 R /Im93 100 0 R /Im105 112 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im214 223 0 R /Im119 126 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im108 115 0 R /Im97 104 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im111 118 0 R /Im101 108 0 R /Im74 81 0 R /Im244 253 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im114 121 0 R /Im98 105 0 R /Im101 108 0 R /Im96 103 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im107 114 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im99 106 0 R /Im117 124 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im108 115 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im280 291 0 R /Im260 269 0 R /Im241 250 0 R /Im239 248 0 R /Im239 248 0 R /Im281 292 0 R /Im255 264 0 R /Im282 293 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im108 115 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im74 81 0 R /Im119 126 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im108 115 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im108 115 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im118 125 0 R /Im117 124 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im124 131 0 R /Im94 101 0 R /Im93 100 0 R /Im114 121 0 R /Im94 101 0 R /Im120 127 0 R /Im74 81 0 R /Im160 167 0 R /Im123 130 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im104 111 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im114 121 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im108 115 0 R /Im97 104 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im101 108 0 R /Im93 100 0 R /Im100 107 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im114 121 0 R /Im104 111 0 R /Im98 105 0 R /Im103 110 0 R /Im104 111 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im284 295 0 R /Im285 296 0 R /Im239 248 0 R /Im258 267 0 R /Im255 264 0 R /Im286 297 0 R /Im287 298 0 R /Im243 252 0 R /Im285 296 0 R /Im260 269 0 R /Im74 81 0 R /Im122 129 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im97 104 0 R /Im103 110 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im96 103 0 R /Im107 114 0 R /Im108 115 0 R /Im97 104 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im93 100 0 R /Im93 100 0 R /Im94 101 0 R /Im107 114 0 R /Im106 113 0 R /Im98 105 0 R /Im238 247 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im106 113 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im112 119 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im74 81 0 R /Im136 143 0 R /Im126 133 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im104 111 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im106 113 0 R /Im108 115 0 R /Im103 110 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im117 124 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im98 105 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im97 104 0 R /Im99 106 0 R /Im74 81 0 R /Im360 375 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im126 133 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im123 130 0 R /Im98 105 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im100 107 0 R /Im100 107 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im118 125 0 R /Im101 108 0 R /Im96 103 0 R /Im96 103 0 R /Im212 221 0 R /Im74 81 0 R /Im212 221 0 R /Im74 81 0 R /Im272 283 0 R /Im120 127 0 R /Im93 100 0 R /Im115 122 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im74 81 0 R /Im109 116 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im117 124 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im96 103 0 R /Im105 112 0 R /Im111 118 0 R /Im97 104 0 R /Im123 130 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im238 247 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im74 81 0 R /Im130 137 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im106 113 0 R /Im93 100 0 R /Im96 103 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im107 114 0 R /Im113 120 0 R /Im108 115 0 R /Im97 104 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im112 119 0 R /Im114 121 0 R /Im104 111 0 R /Im98 105 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im115 122 0 R /Im96 103 0 R /Im114 121 0 R /Im96 103 0 R /Im102 109 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im136 143 0 R /Im126 133 0 R /Im103 110 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im360 375 0 R /Im108 115 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im137 144 0 R /Im96 103 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im106 113 0 R /Im253 262 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im124 131 0 R /Im94 101 0 R /Im93 100 0 R /Im114 121 0 R /Im94 101 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im105 112 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im123 130 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im98 105 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im107 114 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im113 120 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im107 114 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im107 114 0 R /Im114 121 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im245 254 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im123 130 0 R /Im103 110 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im115 122 0 R /Im108 115 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im96 103 0 R /Im94 101 0 R /Im117 124 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im246 255 0 R /Im128 135 0 R /Im360 375 0 R /Im137 144 0 R /Im348 361 0 R /Im293 304 0 R /Im133 140 0 R /Im74 81 0 R /Im342 355 0 R /Im343 356 0 R /Im342 355 0 R /Im343 356 0 R /Im421 442 0 R /Im236 245 0 R /Im227 236 0 R /Im393 410 0 R /Im216 225 0 R /Im220 229 0 R /Im219 228 0 R /Im227 236 0 R /Im232 241 0 R /Im420 441 0 R /Im227 236 0 R /Im359 374 0 R /Im216 225 0 R /Im289 300 0 R /Im218 227 0 R /Im216 225 0 R /Im216 225 0 R /Im226 235 0 R /Im216 225 0 R /Im227 236 0 R /Im218 227 0 R /Im222 231 0 R /Im300 311 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im118 125 0 R /Im160 167 0 R /Im291 302 0 R /Im120 127 0 R /Im113 120 0 R /Im123 130 0 R /Im160 167 0 R /Im99 106 0 R /Im108 115 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im135 142 0 R /Im105 112 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im128 135 0 R /Im160 167 0 R /Im135 142 0 R /Im293 304 0 R /Im131 138 0 R /Im133 140 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im93 100 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im108 115 0 R /Im102 109 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im98 105 0 R /Im113 120 0 R /Im108 115 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im74 81 0 R /Im125 132 0 R /Im98 105 0 R /Im238 247 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im115 122 0 R /Im102 109 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im95 102 0 R /Im98 105 0 R /Im93 100 0 R /Im108 115 0 R /Im101 108 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im98 105 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im114 121 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im99 106 0 R /Im117 124 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im291 302 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im74 81 0 R /Im109 116 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im118 125 0 R /Im422 443 0 R /Im135 142 0 R /Im135 142 0 R /Im120 127 0 R /Im98 105 0 R /Im101 108 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im117 124 0 R /Im102 109 0 R /Im93 100 0 R /Im114 121 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im100 107 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im106 113 0 R /Im96 103 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im213 222 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im213 222 0 R /Im108 115 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im108 115 0 R /Im97 104 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im123 130 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im111 118 0 R /Im115 122 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im104 111 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im118 125 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im422 443 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im111 118 0 R /Im101 108 0 R /Im98 105 0 R /Im139 146 0 R /Im96 103 0 R /Im107 114 0 R /Im422 443 0 R /Im135 142 0 R /Im135 142 0 R /Im159 166 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im116 123 0 R /Im94 101 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im117 124 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im99 106 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im120 127 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im103 110 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im108 115 0 R /Im97 104 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im102 109 0 R /Im96 103 0 R /Im121 128 0 R /Im108 115 0 R /Im98 105 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im213 222 0 R /Im108 115 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im111 118 0 R /Im101 108 0 R /Im98 105 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im108 115 0 R /Im97 104 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im103 110 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im74 81 0 R /Im244 253 0 R /Im94 101 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im94 101 0 R /Im93 100 0 R /Im95 102 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im98 105 0 R /Im113 120 0 R /Im108 115 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im108 115 0 R /Im102 109 0 R /Im94 101 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im160 167 0 R /Im99 106 0 R /Im108 115 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im135 142 0 R /Im105 112 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im106 113 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im100 107 0 R /Im93 100 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im99 106 0 R /Im102 109 0 R /Im117 124 0 R /Im108 115 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im97 104 0 R /Im93 100 0 R /Im248 257 0 R /Im108 115 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im115 122 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im123 130 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im102 109 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im98 105 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im107 114 0 R /Im114 121 0 R /Im104 111 0 R /Im98 105 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im102 109 0 R /Im102 109 0 R /Im93 100 0 R /Im102 109 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im96 103 0 R /Im102 109 0 R /Im102 109 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im123 130 0 R /Im99 106 0 R /Im102 109 0 R /Im117 124 0 R /Im108 115 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im108 115 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im106 113 0 R /Im93 100 0 R /Im96 103 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im100 107 0 R /Im106 113 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im93 100 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im106 113 0 R /Im108 115 0 R /Im103 110 0 R /Im97 104 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im99 106 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im108 115 0 R /Im117 124 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im108 115 0 R /Im102 109 0 R /Im94 101 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im99 106 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im95 102 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im397 414 0 R /Im257 266 0 R /Im259 268 0 R /Im333 346 0 R /Im243 252 0 R /Im260 269 0 R /Im256 265 0 R /Im113 120 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im108 115 0 R /Im103 110 0 R /Im124 131 0 R /Im96 103 0 R /Im97 104 0 R /Im101 108 0 R /Im118 125 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im116 123 0 R /Im94 101 0 R /Im96 103 0 R /Im106 113 0 R /Im115 122 0 R /Im96 103 0 R /Im99 106 0 R /Im97 104 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im120 127 0 R /Im99 106 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im104 111 0 R /Im93 100 0 R /Im114 121 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im114 121 0 R /Im98 105 0 R /Im100 107 0 R /Im100 107 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im98 105 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im114 121 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im111 118 0 R /Im100 107 0 R /Im123 130 0 R /Im98 105 0 R /Im101 108 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im94 101 0 R /Im96 103 0 R /Im106 113 0 R /Im74 81 0 R /Im109 116 0 R /Im106 113 0 R /Im106 113 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im106 113 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im100 107 0 R /Im93 100 0 R /Im111 118 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im117 124 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im102 109 0 R /Im98 105 0 R /Im103 110 0 R /Im124 131 0 R /Im101 108 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im111 118 0 R /Im97 104 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im96 103 0 R /Im140 147 0 R /Im103 110 0 R /Im98 105 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im111 118 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im96 103 0 R /Im74 81 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 439 0 R +>> +endobj +439 0 obj +<< +/Length 1021 0 R +/Filter /FlateDecode +>> +stream +x¥}KÏåJrÜþþ^ÚSOå¥aðÆ° YjcFl½5àïÃïT²dÄ©È"¸sÑ·yXÌÊgTVä?ÿöç?þù·øãß~ûçßÊW]ÂðýsùZSø±¦¯ÊµÄ¯¶.?þð÷¿ýî¿þ}Ûÿü¿ýù/Ï¿ÿöùùöúÅmýJËõùÚõùú6ôþVàûoÏ£÷ïCøjÛ}ùþ. àõ_n?ÐnÜÿ$ưæ+(×X¿þ¡º15m¨sÕ¿¶ d¸(±¼ô(ÝÁm¬PÐ6!.EbÂ2X#\øöúD[Õ4ñ.ô_ÿ-zðëTYmZß+Ha+¸ù#fL)¢mÌ V¤ð6ÞéîÑú'¤ ìBN1íB¬mc.7¯|ÁûO̧öË´Û¯- ÷¯Ý¥a¹? )ï×o<ßn:ÄV¿«?þRaðö ¤¯í¶ý»Y¶ =¾ªAýõùÑèýþõkðãmùk#üþÛæå¯? .p÷oNJ ÁíÚý�fÛWH·Äþ°¹[Õ?f¤ñîEÓW$±.àf¾t +6@°ØöX¨Ø�ÝÂÚ¤-¤;°¨;@Þ¿lÑ÷¯Poï§=à}éú· Éîß+?Ú?Kªò£ +ØÐþÇ{BÊÐ+sy>"Æ{>Ê$"àíù{ÑOx ÝÈ®{ðþ7«?½ìFS~¶)?Ýâí!s£x±Û0+NE"ݤ^,-j*@°¢HâÝìèÏn¾¿A7v{ÿ=¶çÑû_åòýÂM{2ÌE[*¿2ÌDó+ZËëbþ +íç +n?Àt([i>Lf°æ³)Á +ßJsÖ²!¦9ãlȰ@5ÎÀ±+¸ÿ�¨vCÌ5 _z/¨¨°'�ñ<ó CNòú |«Á +sÒ(dÕ}LÉä² o8)¾)2!tzNSfÌèKôhR^)É´àDÎIK:,ç¤Eôdlÿ +ôd÷ý7lêý'%whéôü +be:μ´õWý»Ã:ÌZAÏ;ºÀ8ºàn !]@Ô@ËÚáä¤<Æ -�¤#xC#ç4Ó#ú{:A7i¼.ÇÔ·°j[ÈÂH¬xrUáò¹*¡_°@3 ##J´BÜ`Åv|]Àd¨'Õ:"_ ù{ ëoËäú{Uý,˰ +¤Ð&ýæP�²�SBnÀQ%1в(k*ÌG~¬²Æ¡DÿuXNScÿªý� W¬92ºoÈ'º°B5ª~Ì´ÚÔÐO¾`à Á¶Hábd Æã»+n·ÂÐÊû³ì÷ò~Ï)Ï?pÒf?°À¸ 3æw|`®�+î?ð-Ñ +6'Üðõ¶çxOÌQu¾'jý°qYOÇ¥å¦ñ«\öàý'¯Êö[ç!á÷oñÙû_ñüÑû[�ï/÷_ûOÎ?6a¼üü¸ó»~§$ýÄîò÷¾ú ÅW_úÛåZÖ©î<ßãÁúµàîv±ÜíËWÀÅE©®Bi Ù µ]à?WpûúUoå#KLù¦H¨ë]Ø6_jV0k`A».R e¾Ø:·5QßFKÏÇÛH©mhî@³F;;Zcú*]°~Ðg:TåUb¢*3EJ©>S¤Åmd.-e(Ä»Kczp$écÂ~�Æ »"½D µVèÃe¸5ÏAnkCÏëeJ?¾:?¯RXnÖ2z\ÆË¬Î¾¬^Ë:`=Z>ï$êéùùy¹+öF¸ùègàã ®4¡ÜûÀøûþèûo}@WÈÑ|ÀyR8ü§æ^8(R +\õÄ +-uòXc'vtà~tGJ×zXÁ/½÷#`×!7�Ï? êÛO¾®? C GJ1þä7iä7kÉJ·+º@~çç ó×þÙÐcTc½1¿?ðS¢4¤¬m;ÆO%¾!ÉM±©i¨;ºd£=·}£/éåK¾qW¡TI'ä&¯·k®jÁT-ÀÙ¯tàÞÍ�y³t)T-t=: ñ^ãQ=À¾Dö©a=Õ ïs1M>ϦUrg`m:ú^ÿÕ:ý;>ý�Å¡/¦Lúiì�bi7 +ÌK©e®07w< AnÖ$[�Ê*ôv¼ªf@ÚqVèäS¸3ù.oCë'-¯2tdzg_ X@u°Ñ +yGÑ3OjAÓÈ8óÚ4}õs\9ýK¹Eº?(;ÒRa}u·*%>JË"Ç|Y??cÒ/X¡èZHP¦Û&Rl°8¹ybj=aQ=!;-ÐÂ,°È9])u B¨J?K¯v5RB¦5©ÑC]5CW*C]U,/ÙR{º²ª« å§Ç=@mD¯ý¸ }©ÿeõ²ë7>Üæ<X4ó9¯_ö`ÑËÈÌ®|^ {°&{kòPhSÕTÑQ ÊC Qô*\®CKÐt.`A[า¸` Õɬò0¤Xþò ÊP9ÞD½³0@-Òûú¢¨Eü°!ËÄô À¤¼aä(RP(tlaF®ØÓ]¡�ôîÚ¶P¹fÓOÞf6&ÙöåɾγõëÿiQU]ÛDÙÌĵÍq:D°áFwMËÇøóx:º]Øtt-@3ÖѵB]~ݼe×F±#ÖPN©§9CÒá½ü0!ÊvÞ5päT$#ÓÏ)ê³Ht Ì]ÎóÚÄPxÇ'ß-åIGha>uwC´1¹õÖèÓó÷ÆdÆU¬½üüY>ö.¸®Ò¡)ÌxðŤָ¨©XÍ+)º%Q2ú@? ¢¢ ED;J=1ý +CÑù´¯(|>g¸ÛáÛ7îñÛO?ô«Ë+HÀà°¬RCÞ'Ы²Áhª£ôÖ<pU09 ®fõ5jÑBÌC2ÆUaF¤'4D<ÐÔ}¹qUR%ÆñØ0ÞÔ>c¦ÄV¤92k£Ks\0z;¸»MiùàêupÈqÓ$ñò¾bCV¤ (Í� qB@Ä;x÷A¼~.�©�iEµ34d!iÔ _%Éw»ØNlhÐʬty#Xàt#>L÷A±³àL¿Ã>T>gСËû¬{G+°*ÖÉÛ3¡ôż½ßÃ*±#Ö/¿[&1Vbò Ðz0ê÷ÀÑK@®êvdúµT{Ø+tå:»"tdvE»þ?ý¥=³+nÓ®Ì@bèÊì ¢ã¤º2+Pêcý�'Pv?£©Þ32· ^qfuF«¹ÊmøòC¢\U&:Dü®ClGðdRqBåà%1Çxµ²³":ngåÝÏmiû^À@ÖYá2»Ð@ægI}ÁnèTÛ'ñ1ûSÊÈ<[V g¥j¡¾»!½uÁ:,#U«íy/Þý bÃ~Dw²#cóö(¡, K@?i£°ª:DÆ0^qx1t²Uì åª&3ÃAUÁNJvøû¤äüúIIÅrg u Z:ÌtØ +¬88Ѱ#¶>âËëeÒÐËóòWKF.ÏËäÎÄ!ï$î÷¬ãgF6vDp4 ÙÇ$è¡x-âÎróó:IoF; wÏÅ4ÐAîY èäi òÂGÀ@4!N¿@o6d'iF UÀQϪÀ +߯ôÞB¶z1=>0êQ *�Ý ãyÀa@n~;Ú Ý:x¹'ÃX²n BtnFn]3[äF]·P:¸¡×{p áVó /�ô+°.dh :¼º +ÔÁÁDR9ýçrúlP�2yÒÑTåàÔu°áP¨º}äFý G¨¡ô+òF1Èæ8@#\Ó]Ìãzµ!c+Ð'¿ÀÐOÂÐÓÉSB9¥ÍÐéBlvÎ0!ã7¬)t~Å[ Û!ödÑ7OÕx{r}9GÙ±Ê u!)(ØôÕ3f:ÑB¸ÙÑ9lc|)Ý »d¸!Èî.«¬[.kX#¶ldªNÑ.äWFö}ZyQ!½yÑÐc Èw|ªÉ²¨td#j°,º*ôB|³>¬«Xr\x5Ü�ÙÔ7@N§jÆ«pÀ~àY,7 +u.¥¶Tâô¼QàùqÙXItY½Ø ¬Ëórµ3ªËó2<ÛÐûèl@»§§²G÷«0ûʲiÑæàaWÛ$¡v¯h/Ï{ØøeøÖyTÅe÷uü|a0j¿<¯SµôóËó »ß[ºOì9@Ýöü2Oö¶wÓ77ÿ>èÂð+¨Ì°`'W}u±¶?ߤçyz Ð[¼-`È^yU¾Ë +ö Þgöð6tô Sú ѦÙ1;¹2ªò#wLé¨èyyè +í'TÈü°ç7Éñ&xl zÿrÂ:¬÷ñgìÈd"ïû!Ãk_ùç&Ü'l°p¶2Háyó[òæT éÿEUD<{g;Ù'Ô¶~ηaµ%¶!éìòÚµy×îå Ö +¿ÁçMiÞÉÄ ÎùN ?Ôé>¡£È;nÇæÝ|;Ö +®¹µgÍ#óçÑèÍg¹$Öè\ FÊ}¡ñfnzlnúg©©ø·à|PpyÞÁ ߯wóoó +¼úAEÓÈ*PZèjÆX : VâÇô.\Xàz¡a Ó"vP¡¥æòåafXDGÈ)_4%ä/P�úII ï×é¼rm`Ú~Æ`~¼º(Ç96¿µïØ´`ÊWp ,2ÆëÈμW$wÕÞ½1VWRáÉ {"]YÀ¨~-ìuc²\×7V¸ XØpê¼ËÛÓó`65EûWø¼ÜÇù²ïÊðô<mÍÞߪö~ú|Ï@å÷ +èªÜ\Á}´6Fû&Ö+Xôáu�î¢:´Ùð@ )X x{CþerFi#¯½ uÔ, _¾.@>³IÀ#B«fE¸àè'Øê¿U# ðxø)V×lanÔÎosìa) =ôô3wBÚÑPÌðæí3}'öÆ{xS"Jù°/eÄØÚЦüY¿Z +tÅòUûTDPÑÀæótjób¸§Mgj/Pú¬Aú�º+vÅr45ÎëÈÝ'iÓ\1ÇÊÛ{f]Ûç#4WIiÆZ¨CDAèã8 ËYmPe-6ÚY-ÎÖB0iÆÚ2öC´ê &ÑÜAÌý,¥´~ôé|(ÃÊ¡ +eÑh)i¶³Y Ú´HFßß´î`ó9òÂPªÓ]àdH§»ÉgêA+ÃHÆ0ZÍ9ÄèècÝy½¨`)P n¤Òeé qøLÀ'Â0¢åð"£´Ø +t¤E2ôháC?rÀ¼n?Òùõ,[¤Ò©o0éH}f$@µªnö*Ntºw@>«©0ò`ÄI8ÙMå +ñ%馲a¼êâlÎ åÄw"'sk?.\>öP¾ôvGAb|ðNQ4 ¯l¼Ò�ÚeÀVÃÛ#\¿/,�ßAÚ@ÎÊàè(7|vY'Ù*ú¼±ÑrRì×Ù&í�oÎÒpxêÐ=sÊUZ�G±Ë§LF=Úº�è÷;|uÖDâÇô=Øð +ô=çÕÆDn2Îa0`$ÒùRcéÁÚYWf�-²½*LÐy¦Öe(A½%º@Òv6Ú«'ÒBWæ8$¨b4¤\YQZ°ÈLNÇt^ñúrý:2¥ÏðÙT¯xþ±ÝK/GöΩ~]ÁýXýZoå»y MÌ:gG(RFÄñÝö,§Ë%K9ÁMÔ{é£ 2cÈV´wkU @µ£å9©><³@êÃ3+Ìiu|s)©NK¾×COA^%åy}cÉl(Ý GÔŹádF¾a¤Üúbc°²ônD¡Ôq#£D¸:¥tF¨¤ ÞÆJò9Ù +>àá-,Q¬íñÝãFHÁù±D,J87tdZolºp>wÀ+q¾õ¿}/`×'ÕEH +KùºtÙp:£ïAÓöCÄ^Ï»NäI_^Ê(°À+¢!ç<éÎ+Îçt^ó=¡\mÄC?@úÓ[uÀD9Kú÷×IÚÎús~^Öd¹Äåõr°Óâ:âüaqïw^ ù9në[AsYN¡äÑzʾÀÁ;Ê~~^GÙ3ÜÎö༸@¾[y4×(á:@f¬ÄBÛÑjÍÐ=´\`à(õè9Pê¡+ H7>ÁávÄ&^¤ÇVå�=¹>xz2>¹&'Bð×úó¤¤% ÓB¤Ä-ì¼ÖÓ[XqÐÓǽÀ` ÷q/Pú9Ç¥`Æy±áûåàÀ¨ßOÖ¿Aùéäô "¥uËï]§ç6ÉûP8À|*ÊÉ>ùQòÃ~ÐÁv½Ï%¨® ¸:ÑLÈàU�FVñ0¡:0æY TPéãGë3G|t!»·À@fìdøôsì`»82þ<Îçäº*o0¥Õ=¡<P>[ûáÙôò%¨Ùa$ë3GxÔ°D¤BW¦ÑZFÍY±a6£;¬bä9ʽ<ªzÎ9H-çôä cÑÜ�ÀuPÞ¹À¢ÈÑE Ý n[~hVÕQ#lÒw6¸�§º1G[ÅuÇÙØ*p2¡#ÄéÄhc§w�»1Ý-(õs(¦´Ø<ï`ånðõr÷^Ý:|BÔ-_¶À¾ÞÓÅ:¾Z>Ós^l(~}d]ÏëÀXÄû§Côvj¨?eë¯EÃuÎÐÑÑ cV ·|@ £ØNªüÅÎ G±¸¨@thyªC²b=ÌÈ8æFnH ©d´8^Êä! õ0OJ ìF,Ðø4ôÃrM qãÓ#¤Ø^BJìà ~L§.y´è(:YÑ8�ö +ÈÁK½h¡ÃËÐéf¬ùodÆà} �ñ àsjEÄ +:Âß éë¬c¦Æ|ñáÉXvàãX6lH^ÄP¡ôÜCÞD^{H" +Ô!9dè*° GìâBpÀÃ0ø¹g°áÔ�ݧyÜ(y³!Gó¢¹!LátÈÑÃü°§9Á-Ð{Ó3?ZèGi³O?¤·èuó)O~lXT ,"¶ÂnDíMÈßçŧPff½'\µvüË¢bãÂN×B\Ø99ÜC½ º91ei0¡#ûÏÅd>R¡'sðÂWPÉL{ò[ ËgªÊÔÁGò¬Õ¬IåðæÏ¤æ´xCËù`>39ËéÜ_/W$Vä9"êÞîÐÞ,ã» -À-ùä: S¯Ióg.qÎc% w�Û9ï¬ÅU@§©(âÆxuÞÄxEFUhÁzp]¥-¤]ìz¿ìæàÉÈCF|ðiysÑìpy3RBsÓ$À!æUó¥;r!À â@ò®}è¬'Û{5O«ºdÐLT;$u~@ÙzÂfcä )¼W`4»ûªvÖ5Ò*Âi±¨cÁv¬_ÀÙ~N±"êCäc:ʾA3Ö +§®Öå#D<dé'M9ÂV×ÎG-Èê2Lu"éü,§?X.FùÕ¬IWu"éZéð߯#¼0ÓHNÌsȰ>Lúò2íØÁ¤<ýbBÆæ))ÿ±6¥�c¡HaB繡q>¡BÌÊzÖL¬@Wê ÁÍÐë-ÀÄêS&�ÞU@¾UW* Χ]µXÄ6°uXa>¤«�,mõXPÄÚ L(uâ¶óAG4ö£:¼ÔÊ uípÚ߸°&�sÄ5£Y«Iè@/èp£D>id¤²Z>Ièó<¯£Ì±§7³¡ -_7a» >3³Î±Öù Ϋ×INËçëØti4TàË_®'¢r @ÞõGx £Osã�>}¦bçTÔðûåÁ4õàýôûz ÁâGà9c¨òQ¢`Gí;Dÿ}Æpúå¨ým¨Îir² tcÜøQÕ2a@öEUÈèäÃg®,ÎôSáä¡h°Pä=<¨~Âg²,*´Á/{«=ä^ÐChß4%¤<5k±ÀwfW)øPr.º_Åx¤ÅV´xxÐ6²CÖ°7¸½a%nHZØàø©FZøúk°ë) ú¾üú_º6âÑÃ)v"êÓ +àèá�÷ ÙìâóÛ&"òÇ÷ +ú]ðëxozH í¼ÏêúM?,Ì ýÀ}�4òçïú~ØwþMv§© gâè¥/Ðt¶ºI¾_§@9 '¾Á÷ËIiÂaÔì¨ &Uóyóã6ÆÈ3gqV f<ÐD"<ÆRq2"À³Áòâý°ínÆ÷¼2%¸wÆ">³&¶úi_ÆYchg¶3@7âyYµv!;Ô§7gÓè~4ÃÆq`¼iéð¨jÒç¼¶ÁÊB¿Ò´HÀ~Φds¦'ç?�C±¬%áP¢Ý@7ä8fÉxúQ¬Í<·!`qæ¡Ï¼Èqcv+²Ï9OÕêNv@Ùy¤c³sVh¶ØsúÉÙe[è8)Âã6\óÖ�%(üõ!FU¡sôñÖ¹m£&Kõ³61É:XóúLûAÑ® T-èq$ gçǽ ¹¼^~{'rÇ\5½^¿ ô<èZÄ? sÅôsi ôs(ºÑó²^M4ký åº�å6UÓ!ÎU¨CúÐÕ +w@ºº x¸n º¸n Ò7(@ý¨qS7hPCï÷Ü%éGM×Ðï4äE ÈÚ>l²OU¹|�:/'Ôýnöø° <'É$¸ÎÑ%èÇ=äB®¨ x¸ØÕHÊæ}"+öLL]ðèó6È£aÒíX:+{ìÈn*tEzIºÓ¡?e9@;ÖYTb}X#̧Ã#E:2ÙïcÍ£ÊÎÝã"ùM + è}ô[¡ÎÄ]pJÙÄQMõ«g2°dðð¬Û]&~ÎfÆÅ>æ ¦¤úeX¿ÌÒ±¡»Ó¡ üÎ Í}6#ܯ!H!WµHB±sj+ùóZ]ʩСq¹×MËFè,Ð èX°ÐûèEhüÙ~bC*à¸YÄtskéej8ËuYÅùnFø:¸Ù»n¦ÝõñϺ +ÝÐÓͬ lË\Qd&pzÞ1.3Â×Ë%Q¿QX^ ÍTEÔÐòÑп_ï@ ½ :?¯{ïç=¸=/D±wöûHÿN ×ïx{ýÞR¶×æ |Ao"6zýÀÿ¼pÀ¼h�ñùyÙFKÎÏë|IUÛªKUQå òL]Ñ8 +²Pox:B½Áèw!^º¹ 2¦sx}¤CFt3TŪ0Ã@ LxîÛ,ëDnÄÃrR tÈ�^$á°³/ B+Ò»g¸ ·XÆZ?|øü¨õ|À +H;ÓÍ[NÁ0ÝÌõ~îT7ïhúë +Ш®{øÝCÞ ¢>zܽjlæîÞ½J¡ÐECc3¿j¡>ìÑqJJÀ¡T$C¦_ ôæË=kFMB«Ëèò 3:Fg3*7ùt>aJä¡3æ 3,Ëô0ñÒC?r�sÅe+Q%@Ðɼ£Z²Y(!·C8Ìèlâ8ÐñÍXÇ`:áÔW É ¡ñ¬ÝïÅT!NHôæEÌ)©-08�Òg~¬`xÈQ[ûÞ(ØÈÇ[ÀÇÅQW`â+ÒO̧ +gL'¸6¯tÕ¤6¢Õ¢97 U@È*̧ô`jíZN¡LÎí°ôô¼Þ¾·¡×ߥÇ"±eÕË>°ß£>¾JûoÏÏ˱\>ß/Gø:8àÈÍ6kòú:88î[53�+(£¥!¯Úzjì¸ «¼,@YÞýóWÐgEZ1�cX@ÀN.H³"WÍ©È<þËþÛû^÷åô&vìÅô&ö·PXTb9¥�uP>æIvL5�5 wÐCÖ_3Ü@;Cvp`c/¤s`WôYØ é³:Ò;¸Gôîß}§ûw HÕ¹áHªó°o0*å 6oÞ}&£ùö"¸ôè´Âa2ê49²Þ=+ê�ï}J3öCt»<¥;8û$ͯ¡4G$Ò¼<¥Góìd(Í«JÙhþ>â9ï >ÜëhµÂía,<Àá¡ÞÓ%äØ0v#YæHÓì¬K-á,âÈ»f]Bp̺ÑÜÑ}À5ë§YXu"v#ÈZ{6]á²�9#+rYÈÐiÑÓC\*çíÖñ~İAê]ôÐÁ¤ñ3 ¥'¾L?)¬8%? B|k{¶0ªY+èî@�oϱm§*ùùø«VPØ:>.Ï߬ÑnýÅ?³æ¯ ÷oo²°Ëû«µE îjðýÛmÿï ·ZçÙåôëñ±¢`ÉZÜBF^¹c´`÷¦ÊVðn&äýÀô×¢B>á1tìô¼ ×@úóû=dè-@§í}çõIÎ]>ÀÁļIä]Øpôà$pb¨A÷3.Òk*DP�=ç4.@÷"}<Õuº¤C#²£þò&jMcGp³ìGüé®Cú9KCnÄqÔÖ !Òä¿ìZ.7pc0äRÚhè.CùÑ<ôÌMnÁÑD=Øþ<Þù´3e¨Cº�2´bù´óhâ>o¡~Ú + ÎÔòzN²B +W¬C:Q +ô¤®¥< +æiÅ\ï£ÔQóõd4mxôOhÚÐ49!"øRä!àè$Øë$«´U;'³³ +èõ6râKL¢'àG ZFñé¨âIRqN¨#õµÍÆc;ªÀJ¬wòC_vgoGÏg ^AJúW¸gìKuºXÛzxaB m¡�aÀp º@¿à]Hm+:¤Õü¨î c^(´°Wt&|Ã%%÷c÷úÚãö3#çD ´àHS +o&jã+:û!Gu]Àå¤b2}ðÓÄ~Pÿ¦õúe\K^àýü¢î 9«i(p4qìÇôsñéÑ~Ðñ¢ªQ\�gÖü}>áP®M+NèäÚ´ââZï£OÐu"ìׯ_DxOÚQMþLÚE'öýÏÛ\*bwaòßu×ûðôvú8|»|Åf^ §÷ âèKªsþûKýZoÖó}N }1ë]Ô~Á½õÏ"Ô!îòL£ñ.5 Eïwt~øù3[=è«P:Ñim ª�Äñ¯äAéû7(�¡ßvLLmO½¨ãjNRðèð°ÑU wñ´àÈc£#I'r\$yANämN`È[s§y!GïÞÁ>P"ÚÊ_p(ÔÏ© #vì!öÃúeéͦY±N@#cÎã*!¥kÚÐê(aGªßFý ý~ìu~¼ãNmé çlÐán ØóÐ 8Hb° èÀhÁ@ö:u"óÙÞ,)2Lì¯K̤eèóγcàü«°þØÆÎÁu¨ä7Ô41òP ôw©Ó)ÐéQu® ɦfäH9:ÿ0!,IóÄÃcGFDÕ`»Ðz¦<éýØ1a@ ÌvÁÞÿsöz¾wïÌÑý¨¾�ìeò˲Â|T?áÚ¤ÚóÏòáËZ8F6å ¨°,u°Í(xè,à/&°P÷Dmè$5ÃóYÇ- +N`ë£hDCæ¢ïîô8Ä6± +oðõ20dyÌùõ:.dyÌùõrhèëÍÏv¶v~^¾u¼|¾LúÇ H?9ù*îé~e!ßàüÞá·@çh±,ä"B£ÅP¡QhÓè/xc[ ÷¯Whr5+|¿Ü»|ôÏcÛhuW´® Z±®Ð ¹Àm¸pÚNUeÅØÈ IrÆ~àzPÇõb§º;@ï=ârs¬ úABà +ÊR ìH%lö4æ2 #©(9HÐ:<q²l¨D¬9¨äµ[Â9çAW}1{{ýcÃf ¥ysíÀpªÌ :3Gãkã9ÿO¥ÓòNFc¿ÊçÉ,¼þ¡7;ZØBdÏÿÞî�i.ÀÓ½õa39wlæôwl. ¤(ëôÞw8ðJ«pXiZT;¼vÖ¢$OÏÐé7ò²hµÙ)z`uèv9ÐbªvÅ <PöËYM!yÞ½p<йZ¢º ìy¸ ² +t;ÅIÉÈèyeÉr0` 7èú5"fÖ-.@EÛ?¯4[ÝBöüæÀ¤ÊÓèG9MÁ0N*½óåÀ' ¤Jð#oçXý) F +ÐDìKåË=µ'B±Á¨Ô¡¨ëþ�ªãqÕqÈ×å¿uêºøº6£×ëqÄ"yô=Ф×ó&n¸|!7¸_G<K_OåbÐI6ìç²ý:Ê6iÿ)Ffü¡q@Ç�+°G+If¿Àpæñ0 *¡ÞÆ^8«µýu!ÕÐ9æu®â°.pÍòqÐô6zCwÎÏëmôvZ7Ø@úþX?îßqî'v"ú¬Ëàu¡ é-Ì/àGq¦^ÆIÛ ë|î {!Ï:b½éåÀ¹gy*p:L]p ÐéÌE?Ìan´¦Þ.:rNô©®$Ô/S`OªOýÝ éòÍpø~ý"@C;¨ç�óa}ÌbDocé¨gÌbÒ4óÙËN`7¨tT?"ÀnP µçq P÷¬Qû¡>ïJ$S|ôq0 âÃK?¤8-@gÍØ!úPF(}¬Ãý ® ÇÚ³ùh Ï<ñÑ>ôàÆ ³´ÀÌAB +c"$ÃX¢Ð9t¨@OäA¸qF)§3E,ù¸TOé[°@ ¡Ájï¿g¶ªÞO@+;¹ ®`|ïè]MsåL{ï¿»et¨bOØ*̨\ø8Lét|<BO.שn$+n¨?(t¼²æõYinEQHUx°wäfç×»;Á/¯½xC¯wõ ½__¾Ýä/`Oï¶ÊËt*v;©?/@>£f¿ççut7¡÷;ÎNðóTìÈ�}ÔEÛAÎòvЮVhÿ:º[ +;Xfø~ýjEûç!r·FðÁÒØ4â$+ðý÷~¥ôü¼~À#º0>k*Þm'ë?ÀñY sq¤ æjâÖ('Y>@oâÎb¥MÜV 8ÛÄ %àGÇ/_àhâ¢2tý§ +ã >ítÁ[(÷èúHèÑ+üNDÏ: ³'§®�QN3ذ!ëÓ�6¸ -àø6Ìt\-àtR¾x ÷]dc¡'Ò´Ê<³*#ü,8hV&Óã âh¨ÃÛ8sp ãJ?¤YG8í}6ïð¸òT 653ìô!Ð 9¶°m9ºùÁûû;,f×C#Ê)Ð éD9%©dϺÁÃÜ]]ÀíQ,æà´&A?DF +ôCúYsùã +À:Ó8 +¸ ë: ÃG¿õ~P>óèÓq± çsòQ (;°ÅýÎqRí¶c¨d<)q>¥ãóÞµ°ãÜFDþdÚêÁ©.ßþ±{ûò¸à;6üw~6<}äðÙqx_ßïhÿnÒFc6/ptÞ&¸:6àêJÐÁÑïqMK° HEygA/ïa¹çÐYз·ûÙsâ_ÏeêØâåù;O5¿;`®Âü>ÅÎGò:`¦èn2Ñ®é /p\¡èèW(úùÈu@¯£î4ö¦CùêF<ô×è4âÿøúò}V#¢~ =Ö;Oþº�ýÈ!ëÝ!¸</§r±~]?à&Æì ýüZôò¯2Hèwöa¯1uêÏÑðc +èK|µWÅÃ=x êòáMow8~]_uú"Çi½uñ_d¨ódìJäîQ×*Äò»Sý°©j n8] t:ü$àh"Ç®Hé;ûçØÙ!¨úÌä mN!tdú)IÓ\ùhÐêXþ¬[oF¸:DqR©³P'Íy> +&|ÑòC +J÷( +Lgt§Cú)Ó×ï8£À>PWÁUÓ�º+^|\7hú1v"î3q¸4þÊ£~-õö¨}� ga2t 7¬)pÓ~�Ú0¬¸·ç7Û×ùyýH)Ðè·@á6¢3G÷ö¢é 'hÁe¡ÚÐéd°`+Ö¯ÀTÂAÐRÈ4t¢¦ö¬(ªA,x;ÖbG»Ó$ÉÁÜ:ØðÈhNèPcç3:ɩʼB÷ÎC~äü¸Pèåõú)CCë1=.çR ¾]¸Íh�+£}Øìo <~ưhG¹ÐÍþy*ï@Gt¨qÄDÀ)b°þê3% ÈéÎe®Ø{ûåô¡6±"p*±"-R(ßføNÆÎJtï}¤J´à=Ôg¥®Ð é]Ü+t#6|lúIÍ nÈ8Û¬ÏYG4c½ý5`Oa®Ð1d0iqlî!û¬C~xxÒÙ¨Ï +Ph ;R:V½{µ®ø!*Îe>råt¤Câ!Å˼ p|¯©x9Ú׬Ï*�÷Míøò÷AѲ}î¢_�=¡Ëgîi¡cOÆêM̸4%¤àVLµq0Öç$&èu|2:Lá9ìÈä¶ciZ!8sºr©uçÝÆ¾©~,`Ñ@%°À¤ÖÁ³jU"RÖêW!¶g±àÀDZàºNTsø¡{/ý\ÜÊ{X®+t|-ÀR¾T°'ÓûÈ#þ�`ÂPjìnI%ËHv[ÊH(Ðq4Ôaæò,-$)sð´À¬PX@am_åûõRV*ò´Ä]~V]^Y+ü,ÆT0À&6Ì>« 1Z1±H½õDZ!L7÷MUÝ>24aúaòYíÉÇñ«Q=²ºI5²¢z £úãz\¾e-5}æ)fE¯.3âÁêi'rdÇáëuÛR:I´tt2»7¿ãk)ì Ça,F[@; 1Ð~¸\ÂHûv´wó§/ª¿Xß4v"§~ØøúÈ´ 5ÿTA*Ï´·2pàJ~ Fðé©koc=1Ëì;ú{>S!'¶gxvV·ç ëO Üô8~Þ²÷ÿûóÒ°¼ýý} Ãôû_^èÑû[�ï/éV"%^ûÛýÒýJÆ+F\>ÀN̺ Ýøõ×ÈìÝîÊÒö!gsí¸s^A®$ãÈHR¡¸\yýîm6Ò¦ë +nùb¿_+ñz±ÆÎÌà.ä®7CîzP+PÄrýCZG°ÝÒzû${õ` B¼ëµ Îg}ù ¬ àOhpî#é õÑ'ðÀ+âòÞ×îzîW¬è +ìØg´¦H ó]Ø.¤W�výÀýÁÍÐ5·7ýZA¾§æ¬Î2ëxº§§7Ó%w°(Vð¼Eq¯ÁÒ>aãòz©àWÃÿÐçý«ö¼n cPÕ·qtÕ<¢$BÞ'ô~ÇUõã_ûäÐý²êwføª4>Î]NIå/îÜÚÒÏK¸ççõ«âxPSÓgèîÙí÷/¿áU©ãü ¨ ô#+9«ò½È§RÜ *£ûD;¡ ß-¨ÂmtLXõ«v}¬ûìØX÷ËóòbJXÂÑË;?M}ñþ¿7 PQ@§R³;·ççõn"pG¬ÐÝ¢7 ØoÂú&Z#ÁhY±ÜT;ý�(öïyý�^ÁÍR!¾ªÕo´à,Ä;Z0lX"g´ËP äþîã¶Úljs\WvÖS;ý¶WÂàÊVฬñè"ì#gݱÍ|¹c* ++$£´»<¯$_´ôÁÞï@W1"óV ~iÁõýÛÀQ4â�p×å`v/3W}òíG/Y¡~½g^K; ¢'¬ú!0tcº +ìÅd(¥ÅðYuB¬�6¨Ã:'!̨xõa +d2TN[ ÔOmÜ̸,À Å*³W65èg"¬ uÃ(ù¦afÈîëÉå1Y@Í%ú¢¸�Þ²!T±çqBª·px[oè]#bï÷ï¥ÁÇâ ß??ïÀ:|½ÌèÕ»³/¯oúlhõ¤§ø°Å8 Áëuuëc¸®_V?)?½èÑÕ:!Ûåy]�ªØÀ¡þÑøôøtþýâÿÞİ{ÐË Å%<öm?úÜáóó±oÆçvYc"<RAO/MO Fà3o ÑGÆ,ðý:©àºpbÄêÇ%f ßÄêD^p7лZÐy¦QcG¦ÛF¨D:¡éåD¡5«IøÔÑÒ/(xBýØÒÈà:Dàpd³J¨z2**¡ï.(èÇv[ïúr2Vd«R º2ÇW:ø;Ìè<vа!éÓ§r]ÎX]y¢e®.ÎGN6iG$eúu5èÌå3T½.ÎewÆ}/�&uº8,£ÏäÎQç +µP.Lì`¶0±Sq]JN)pR¨Ó,8%/ç>ÀëbEú$Ù+sýÚë=¡~гÁ-Á2®unÔ=¡|åÒÆÂûØP~Vë©~+? ÊáF¡ühq´]�¯Pª(Ê^4/ÂYõ°t°êA|E¾ú]74KIéäXZ`Jç3K÷É9ObiÙÄpZ>¨År,5:V1#¤3ör,µcÙXZÅÚ_wÄ@f!©Ð:̸âÒ1W/À1øê ¼�Cù·É£ý²áùyÝYU·MXlèõå· -Î /ðõrÏ9�·ôåG»ç�(Í~ÏÏëth÷`øýt Ê_Ã1á ÐùÐú)ÝX)àôzîüèZi©·znlA$G"tH " 8:Nl²üX Éyô+%ßõt løôþÞv5Ôb +Ó·wCýEVp(B¹°¡-;È65Èó@é{HðÍ$¨×©Ó\v@¯'l´û¬#KÇaÍÐëÇîÞË_5äWp$'m2ûõäd4-#¤_°"W®$ÃöüòP7¸�]7¤Blp:4ÓOõC7²÷Ú(JÌG`G®,Xu:Á|â¾ÇɺȯZè:S:Çdv,CBàÀevÓ qÒÍ& y¨' ùpE³¬zëö(¡ÈØéÔ¶Ú±Á¼^Ç÷hG#J¹q4 ð^Z±FlÑFÃÕgié3ÇÎ`¼9iñ·CÐùÔ 'r�ÄéS`N¤Ð÷Ù3Ëføü¼cö®³gV\ê(9ö#:Jnö³øRÍD'ö¬UÑLtbû]ù¹{¸Q'öÈ:±lÔ=^ÀçNìq,ùÜ}QB n±NìoG¸9G¸ö÷×/%¾±ÎQ²F{y½>ú$ ×ËÑ®#>:l?Öµs~ÜÑDá1B¹ JONåv©oû?/@®ive´Kpt3úåIÒ¶ÐÓ[ È$×6{øt®öásG'õ:àt¤X´pù�Æ»BàÀx:.³ÐC/BÜ�tìÅôÝíÍ®"²!®°}h6£p²4älÚ}¨ïxêÒS?ú¡ôÔ¥ +>X¼b È�ßÑ=éÒS!ý°#Ñyu½Ô'í(íÝ�yÝÄVD_NpnV.2v÷%(ïH¬.Þ|×ŧ ºÔ}Ì èLI!=tw&¾qR+üòDRI¾ hà(1öúT¤¶èKl%È8 ÚU-LØÜl2ËùÑF< ïÆ ÜaNäéÖü["vk{2?´B£ñ[a'ò+ië®8ȯyåï¶dÛ_AAåußô_Ånå3ýÿªý�ÂQÞ¥ÏlëǾÈAùI×Ä«²¾ÕWÌÐH?f3ÃA.ÇSa*êMp 'à¼ï4å�G5>mE Ë +ÝÑýXh³G%"j2P¨;ã¢wgTèÜ?_©Ágôò.àqÏì^/WÙ Ëáã¤}¼Ã5üõ:]5±]~@oãëá×ÐA%¨<V@a¾ÔKÃótÏêI6¾ÿi 6¾ÿrδ ÕV×@¹ö+RB½*}0ìh9å|¿òí 6ÆòÑðpؤ7?ôqCï÷÷4M8av:atzIFA¹{Êæk_>@ï:3ø&¥YBNÀ¥#±³fô=ý( I6cý*Ît-ª(:´pÕB½hJÄ)7´PP³Aîߥùéôî¡´ÁlDïJMΧXÀûq6 3vDìKu1";ò44ob0 8oÊo÷üf7k [E_LP´ªâ¼0¥t༥=Êè¾É&/èû=8ï¢eDç Ðóu-ÝNÏ?Q@õlek¶ Òà¡íÐÁÈx±çKcaøÕr0fÜYºÛr¤[ÍëÙó¸6×¹±#këB¡|W·`G¦·ÔàíÐÏBAÁµÎÙmýTQ9±5Nd«È,`¥¾ÄêVSBÝ +«èÇ(Äݧzúó)¸q,ÓÛÁqq«çÄ5aó¡ +Cv`7Ö¼j)é׺&±°«Qõ3³9e¬Èðõú¿�×ûÍê1Fô¼QÛ÷Hú_H~NP;±¾,@¿íoLp/@¾OaÓ/Á²b¤$Gä ö.Pôú +M@×áàÐáEô ±.@v¡º0vV~ù�ýeC:¬sàÝØM4²þwP'EHôúH>)4 pVi,ùå`Ü. ªFÈÚ¹ûáxÆ>4"B×;=þY#�oÑê`AÈsÎage8ÎЩýJ@ß¹`?æ ìP#ùU˦XÏN2?Z8+6t:ëK¡X×ᦽ#ì8g¬|ÕÜ�èѺ úgÁ|صzAôæè²Ñä¦-r5-rNl¤>â + MÀPæò=¹ãd ±L',Y¡ +ÈDymï£ÂÓóúQ¡åó¨ù¤Ð¼Xdñ<¦%å9>èh°PþÌDË%%øBÃ@¿ài^,O2·|óÝ®ðäyYGëX£²ÐQÔYëÙHè¨Kç.? ÇÒXáèT~JÒÜXÎI!J´hfÀ{¯ ä|0ÚË8¯2üGóU$@Ððè]#AS"^"%Ò»ØSDtTU±g3gè\)¡X þ$ìôA7;B½ñ¨h±öý¼�×%_-ª(ëwýÓUHç]6ÑYãvYG0ÑÏhÒ¶ÐlÈ8v iNO:±TÓ47Jò�¨Ï Z2ÂÛ® �uÄMè¦@4O}DÌéy=ÏÐ :ò¬fS|L Þñ¢zA~?øá*®IävcNÑdB,Ç_¸�½*ÙJ÷'"ñ÷ûªr8! �j¹o»ÂÙ>b%h¡·máH¤7EM ù "-QD¨CzÇL¹N«J}N5+T7]=+kK1oºzV +C©¾Ðy¦¡tÚC¹Âè^ÀÍ ±k±£cèZ,3K"9,MKè9 %FF亾ÂtÌÓô4íúÝê#|y34kG×Õ¤VèÈéH ãnrÿ>}â¶Û,§çõÞO3ÂËëåS¯gçlfÂçÇå#ÖÓóã2®ÖàÛè8úxG׿1fȽy c·¿ëT?³ð®±¦}Çdz´ÞÞ4ä]_ñG;æª0Èño¦}RÑ[Ëg¦ +V¼ú´©Z±cÒ¦Ç`·ê$)qczëÞ�ØQÆ×Ó¡#Y®HöIEÙðÛØÌ,ß2-LVR´ðî Þt?Éf¼¾`/(!ïèî2°Ö§dPåýÍßUÉyõ£wê¼þûÉ£l"E³d~?¥:Ôò%¶dÇýd$BýBTzÕEHôö³.ÀrCOà�¹¡+Ó;(7Ïth"5ͨü&?Þ: mÈ1, +@oZNLñÁ@8pb/æ ѽ`NÌÑ3qhºU¸ÃüÖHÿäDzvH¢9\�»%¨ÏZeåy³r>h©h¹Ãdig wUSJF©%dãC9)îöËÉoÔÏìtÌÍ«>}çC¿.Á1æ&ÂÒÊ1æ&b5ÒAÖ¤ÕfôùÑ}ºñOR)«ÓãrñøÎ\ðèÃØ+^LÚSª*C³.0¥ÔÏZpF¨µ@gè8kYa> #ýü~ý¬e«sk%uMt¦@~æ\®jd¢ +S:ǵ¦ +q6]YQâ`0+jf«§óÌRÚÁ¬¨s<G³¢>ãì;búg?=¯C\PÅrZ¾¬Î\/+e3çåËd`VzæÒãÃðîéø ¾vàF´�â"ZûæéyÅE40R�~=J@ï¢ÎhÃÞï9,)pB.Ø· F°ÚX±èJTá8®Gc' wÄ.ÀOB:´"rX¨nôbú̸ ½_lZTVuõÁ¯8 ©Æx»¦ ÐG5çÞCG#zоüýâüúíÞà¸ký+)»[¡émÌû!½~~D¿± h ++v¿»r¹,Or:H$°EI¨^ìQ0;ZÙÝJhÏC3ð¸à|ÙeÏRÊ¥¯y2Lé0yBpQùïfÇ9Sg®ô�ê']éÓϺÒtVIJ§ãäk$ÈÑaBRBòü<©ã°jÃJ¬V5µ,`æP0tõ¢£-TæÓôç#T!G+:|ÿmè)AìwÔOÏ;N pBæ8%¥ç�º!Ǽ²²6Är¬Bò-õb¹!±C È¡ä`ðcÑXo¥^aJªCÌ+ö£ò-õ£ýòò*l)¥cN¦¡¬Æ`x(õ&¼ +¤;ºÉ %aÀT3²á¬I-¬ji95YȽüNÄB+jN;TØlèüz^²Tâüømû [æeõz3yç×ë3,|=o¯÷!²sù~3":â´ÏóaãaBäÙ0 +ÝÁr{CÐñE¨ÇÄDáè�k è`�ø,¤ÃsÒ¡t!B=àpJÖåc¶àèØ ÏIѳ éô±A7$cs±uÖ³³=Ô¡~p"p1xb+ßâ:à ZѶ`pÏF£ }28îY?D?Èꧨ8Ðâzb]ÄÊÙxZP,s$sGûÐ1¶èf°iCÜpd:ìâ@0r@[.ÀÑL²±NvèÈô6ê W8Bh{T3®&k\4 *X± +ê*´ ¢ÆÑ@{�ÜÃtèàúTWmèàLgµîËQ>D? ÁV7¢¦ÅRÑ8Ù¦ÄànLÆ SvÐ5B§ÖÅǪٺ¸ü(ìdc@ÕÈ [À'CqYpY§1È5"RW +w[û)ÍÖï÷~@9¥y_®ÝÞ¤û5ãwkS+û~eþ32òHøò¼>¼ûËóþÍ(?¿ÏªºccçA%ãÏ|¿ÞwÖ±Ëó:¸áûu\¦@ù»GãåGö¯S¡ö®¿¢ï÷àB4�½}··LBþ�\¡p̬'ê½# ¤ðxCàáBopú½ð�UØÑ8©¹PF"z¿.+¥gÒ3 HÞö}ÕB>v¹2ÅæNX Ö®w~BÔY°+ÜB{yôbnõY²¾ÑÙ0dØlaÜ£÷Ó¶ÑV¾Ñ«ÐQÇ901è< \KÙTi´®MÁ°¶O¨Ã¦KJFtZ«d|¬¸�NÏ %ó];b9ËØ Êtfú!]>Á0:¤cÆÈ +¾2vd:ó*§¬ozb}4ÐGÈͬP¿Ñg¸Üõô¹�kJý^| ~/»bý^<LHõn¢zbìi !<¯é0±ËVXæ3Rûg5I ©~>Q #~{¸¨Cæyçª/Ø`4u@ZÖ|?ÞCMUÊÐÔÞwªÕ¬kEr»Í!ý¸=ªj*tdr¨úú3ÜAÙWèÇ/ò^ÿÞEÉ>,ïSQÂÞoÈÔùyý^¶¥"§çu'hÀÔåõ²1`êüzy÷{¿Öåqyó-9?®«ÇÎ5v`?×8?Î5ÂMwÖ_ù³ô(¦î~Î ÷v^ ¡öÑùxm £I!öë+Ó_P5ý§Èj [øõÞgS6oÿįT+RB BNÿEàèÚF¨Ó¡¾ ;!½åÛ±>09 8&G¸úÄê ûã%ð;B#îAüÎ Ïù§¢yb>_Fý|¡B#¼/ppXÀ¨ãñª2×7²z§Y¼ÍXiP§Ñ|w¤Dïׯh z·VF�r±åÂÓôfAß[s¸Zq*:skÂÑ\GÖ2J=ÈMæ9C? ßÂË%¨é<AGô¤zI¡'rRTKôCE ¦D×ðÈfRé+Njeºº¼!%txBã²brÐs6x<W'í¨àȯNVf¼:LëYÛ$ô#:íhÚ4?@a,]qÉ0è]»rY+põ¾OCGG*ÌáÙÙôçU :Ý{ÆÜô@?¦§3åA]÷¾ÓÔd¬Ó9¡«ZBÄGÌÁV?mÞÑÕ¹²æL +0\À:w\Û¦ÎVü :¨sÕtæ3uî0á³Ëp*Îg|v'ðÙå3ö]ê#|v£n6|vc·4f#?ðÙ¡ðóßÉðûõûÄÔc¨}KHýØï2`/çÌ·pzënA[èHÆcÁ 7WdîÞ*Ú oFèhFZè¨âòÔVhòE¸¸"G�»ù-ÞÄÛУ~åü:QXlPu¢°ØZb +%²Hjä¹qÐs¹t CItü°!ʾĸ¾B¯@8(fNè÷Ú+Ng8w7A# ês z"9 + _X;N*6ìÌåh6¸�] ¶¼£.@oÿ0ê u§Hc{VSmسE qÌ*a΢r.@ÇéaZ¨¹À`¨÷¯V¨Cº�+ü~Û9@öK:¡_°Ë$ËäÔá¼N[ý�,ît5¥vQ|èIù<,BJ¯Uç¢ØõöKìJu7Z8Äé'¡Cß`:(¸@[ñô¤°ÀÒ5¥O5dÔÁ7RãMÔO{¬ùbò£-²ÞbRÁÈU~TðÌMôDT'ÔÏËZ}tÕ𬰩°:ö°×Ê®tG¨Cz'yJbaõyÆÝÐ ðFh±8æü¿Z^Ï$`]«²¾©Î;¨·îCêguÊ1ÑêefHùàã9.?× òú¼6¡v"ÿËórãÍnGÊZ)Gp!åY ºiÐϪP}ªBê°®BªB»(Üé¬púZ?/ÀÁ!mØP°ØShá J@îHVÐÌêÐÑíÞ3îp÷s·cÙ[±¿Ï Î[n~v'hF¨|BZ¤NzB9T#è¾Ðy¾ ¢]ô0è"Wì¡]àt}A[à9ìY8 ®/¦ÜðÊviCÄÑûsÀÜÃt, á-Щ.Ç:wfXe4G;ø¤î´fèʾÐé%UÆÌA»IÑÔØÈ%U)ãrîÞ®}Áëc BT´}ýÐ:`zìå˹Y/ +Y+8Î'ô &4 qØë'5 .ÀÁÀ·ÀÑ ®õP ;ºoµ3øBè =Nõl¨ÀÊTϦٺè¨'R°äd¢?ª9Ä ¥~ÌPÅlV ï!¬=Ç]Óï#àÚXï¦'T?eÀT?ª2{T[sªÙtxÖÆº+,¬sý`>©ßG¨ ¾_8$ùp?Bx+tº8�îY?f6X&»XëRùLÏ4Èà©óëõFC§.ËïO{ù"èqùÎÌ·ÄÑk&Úîq¶òÎDÝØB2Z£5! z nëF/£ad¾1Ùù^}¤ÉerêÁÄ}|Ë>ûãH8_ ÜDO;û&íR~N²JD÷p]¤=ät%È£*7M;!/® Ħ¾QqÃ÷ëLÔQØð´'¸�8! PNayß aÇ+Ð÷ À=kÒTP(÷´c/ä@è¡ëý"SªD˳HpaÀ�IÀsaÃÙ oåS£¼Fó SjL°¥�ó ^PuxfTzIv�äй2ö¼~ÞÁ± +éTî >ì�8À ߯,¢#ä·¶Ë/@8c°À±H>ñÞgĽË4fPé{�*Ï9QQp-`ê\Ìj±¾(#NÌpôak{äÌA8¡|)ª+'-¼yº°ë°.êQ0å3ÞÈ ñ}TàíÐñPt>ì' Ʊ2à}ÔXº'Ø4P3hÈ8Î Ð)ÆDWŵh@Å- (o[ BãòTö$¡õhd}Ô°8£I%Õ)8¬Â[h0u# 7#ÌNxÚÝoçÏäp½ÞÑ]¥·óY~½Ï}Ã[¡W@ô²VðöLþ;é&+ eøF®£]} äýüNÑÜ*8N½!Ð1Ò yFR4Taò|ÑÌH =¤ØªÞÈl}?#%æ!Øä( ßÉÞ±�sC+Ò©Ãö^î¹=4VmqÔ5´:uØS<Å¡+Ô©ÃRP¬H µAUo¤¼>ÓâéÕâiñAxâ7ä¾=ÞL^°dç;9ÐvêºCåßðÆéyýÔÕ@Öx"ÐÓ]-¡??ï8s5+s<ÇÅ®8Ií¾;;²èç@ü^@À£9¡>˲8 ¡¤?` õåfh'VÇÝ®8$w'?`¼A£ ÍnÂE ×GJ?Io7qpní¶K"ú�}w@amlÃ÷ hH Ævn=©AÇÕ°±fPÏ. bW®ß*ùk(AÇë*i�?7¡wãrCtLÙ(ª ðpìü º1ÏièÅô÷¯Ðôi¢ÑØ´T7¨ºoÐôÎò9ûòâ.ö3¸�ýRUÔ/UEdKU6rlRKaêª2òKUοwèÜg0rpÁtpA¤_ªZòß»xqýRÕ~©j ; ÛàsA½í`{¨ÛCت�¬J£èQ%vú}è]'öPúôä¤ +T&+8N*3Zgzr[ aÄïónSáÙéûqÇy74"vl¡\x÷óîYdätÞ=Z�¿Ô÷PïúØpQ.C¼ûA} +<Îe·~pr:Ä>¢äQ,«$cY eËóòÙXvOƲT\×cWê8¯×*~\=©|¯§¾<é7Â|úa¶d&L2ËÛIUd¾3sô+ §·ºVøõríÎ|öíÃgÞ<:~7Àè]ÔÑì'8P)°g§DaÀó�ÈÝ[`ÇÝIû~Þ½¡èã! +Ò!ÇÅÈ?/@\ é>ð¸Õ5x?` ë×å,H rlp¼HVÈÏû±ú¸Íº¡º~YÎ^×4ä×Ê +ÊSN@¾Ô)§"cê6qWwÁãÐéÐb; còŹìç!§ç3Z@ C°#øTõ#VªÐød¼i¸õáKE+(ÂeØúãíxGè×rnLôî·´A;¹/ ÅwMtYÔké@®Ð3 hÁ3¯Ápê`^Cp1¯¡häø�ìÊäc¢cí�ÇØ)à9Ü!¥~ØqB¨¿¿Â`(µÄmaÀ(O7`Ñ6CìZF9¼æO'"¯Ï¼Ðq-mÒeXØz0æ 1É«Sn¥]>@HU7F¿ A+ôOáé�Åål0cÖÃ9&âRÅdÂügÕrçq+l¬Ewö ³cG!Èg5ÐéÁð@ÉýèÄË÷T»l!|Yô+2»¨i"ÒÙÓ Ì¦Ëð¹2$(uPAFv-ML ÌW#öær}]ÔBçOP:ÎÕhBèã +ït|ÃÌïïouäðQM?ªje®¿×4mHÞõ§¡Å롼c;ÍO=øë°6IÜôúW¾t+iߣ5Âw½ì>Ö ¶·Ï´ÀÛyä>À|½N×ÔSáò 0ZÞÇçÇu²«~«¼}¦LäÁì]6ÒcÖnÃÒpïõÀ;KÐ+ÿ%î&ÐkÆ`íUÙ=>Ïã× n~ ®!ËÕoA¿¥÷G¤^ÀLHï×Y£×S<8"·)7G¤Þ"t¾~ý-ã¸ýüãò[GFñyÜ&Óy:_Ðæéó3°ãÓû¬«$}NtG?LR oAACo²_èuÍÙÒ¤æØó àzè;ú<X>½£ÐÙ߯(pN4´õè8K_ÏÛÃÑëõîðTÇ1qCÌvêaºá·¡9*¼¬þ&<¦:¹¢½CªÃ¦måë˸Ìfµeç]Õ°ÈÓ (=kø{SöTºaOzÍØw¸øõS,Äl {´ÖòøÅä´ù1[aH3̵t&K:ÿZãTGúKTw4c¶H³á³vkóGÇÜfYÐóú¥@k£Ì +Jw<ÔyL5eDzAñ9 ] ¼zÿeA~ô_rd½Þ¦ÃfR ½×gjDrôOÈëêC«3´<&,¹=&¼¯·9êÖ~jó²¬õYùþ´Cé7ôrÙáöÃ÷ÒvrMZ®ýs»ñ6älþÜm¼ >éÞl¼ F8Ð÷÷smà0f°w®NaðzO¯uAº£ÃÁ} ßùq½M¶Â¯/};«º½BPÝ_GGPYßí §çÑ=õ¡¿µÀêcÐ¹æ³øóMz~Ôá;°N§ 4W´"RÒhñ:¤ìV¿´>0;åÂÓ¡à"Ãç×ÈçRH ;=½µ»ÃÕA¥TÑÞË'p¦ÞN ¿h±Èéé$r½:ÅëÑ$çIkS&¦·¾!³×ùãªô¶m@¥ËL ×ë]Aò:#ªìFPîðqÒ¿`¸GV<+»|¾ósm¼ó¤É^o. I÷¯¢A¢+X½£ç.# [îÈç/ðý2±Mµ¸<ï&ètùW2sÞP¼uÌÅiòQ %÷ÃZÝ +*0á V§ÅUIh¿gBÇÑî ýÞíEÙ³_ê¹~'«{1Ω\¾Î©± ¿%';¥,Ï¡\`¸Zä6·XË&Uç Õ¹-ØðîÜíþÌeq~}__Q{&H¬V!r"I˱ÇQÈp'Fo×I0P çh ÌÅÓÜ5Ì9n5ë$Iu×°~æ9§Hî^.7êôòdýLͶÇéõ3A9m*^ÑÒu^ãÖ®£aá×ú?ýþ·ßýYüüþ¯_>cîõ¿ã_~ÿ÷¿Å¯Úë×êúú;õãßý·üñwû?þÿþñ?þøïÿùÏ~üÓ¿üã_ýß?üñ¯~üÏÿ÷ã¿ÿÅþöïþîÇ_þ»?üå¿ÿñg_?þâoÿø¿þø/úñ~üÍþôOÿñw¿û·û·¯?ýÍßþë×?üñO¿û˸.ý/ÿãþÏïþé_÷ç¾þæOÿwÿþÇïÿ÷oÿå÷¯Õý±æà +endstream +endobj +440 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1022 0 R +/Name /Im419 +/Width 19 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³`l°ÿÏ`ÿÁþýûdøÁLÁ¿Á½ý�ûª`ð|`?Àß`!Ï ÿý�ÅaÊ +endstream +endobj +441 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1023 0 R +/Name /Im420 +/Width 32 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmÍ! �ÑÙJã$¸#7ðÔÅløu;Érꦨ?©jMÐÌþgkvM1ݯ¹Ûö¨x /Lk$ +endstream +endobj +442 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1024 0 R +/Name /Im421 +/Width 19 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=± 0À¾ølI2X +Í< +cXA\ N¾Ða ^åM¾Ó:#® Sv3{ðü÷¯·,«zÀÀÆÒ. +endstream +endobj +443 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1025 0 R +/Name /Im422 +/Width 27 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°o``xð¹ÁAe,v sCó.``<ðñ>RSÒkÃÇÞ #ÈÎÀ§ÐÇÀ®ÃÀ¼ áÃ{ fH�bö Xè~�¬' +endstream +endobj +444 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 593 0 R >> /XObject << /Im318 331 0 R /Im209 218 0 R /Im319 332 0 R /Im203 212 0 R /Im320 333 0 R /Im204 213 0 R /Im202 211 0 R /Im209 218 0 R /Im203 212 0 R /Im201 210 0 R /Im211 220 0 R /Im320 333 0 R /Im209 218 0 R /Im321 334 0 R /Im321 334 0 R /Im204 213 0 R /Im205 214 0 R /Im209 218 0 R /Im208 217 0 R /Im322 335 0 R /Im320 333 0 R /Im323 336 0 R /Im293 304 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im108 115 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im97 104 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im291 302 0 R /Im160 167 0 R /Im99 106 0 R /Im117 124 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im106 113 0 R /Im108 115 0 R /Im103 110 0 R /Im97 104 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im123 130 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im103 110 0 R /Im100 107 0 R /Im108 115 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im107 114 0 R /Im99 106 0 R /Im97 104 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im244 253 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im100 107 0 R /Im93 100 0 R /Im107 114 0 R /Im137 144 0 R /Im99 106 0 R /Im102 109 0 R /Im102 109 0 R /Im98 105 0 R /Im107 114 0 R /Im129 136 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im291 302 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im100 107 0 R /Im253 262 0 R /Im101 108 0 R /Im291 302 0 R /Im112 119 0 R /Im292 303 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im107 114 0 R /Im291 302 0 R /Im160 167 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im93 100 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im109 116 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im115 122 0 R /Im121 128 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im102 109 0 R /Im96 103 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im114 121 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im74 81 0 R /Im136 143 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im108 115 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im244 253 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im100 107 0 R /Im93 100 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im123 130 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im107 114 0 R /Im114 121 0 R /Im104 111 0 R /Im123 130 0 R /Im106 113 0 R /Im98 105 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im108 115 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im114 121 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im102 109 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im101 108 0 R /Im138 145 0 R /Im136 143 0 R /Im101 108 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im98 105 0 R /Im115 122 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im108 115 0 R /Im97 104 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im104 111 0 R /Im99 106 0 R /Im102 109 0 R /Im106 113 0 R /Im100 107 0 R /Im123 130 0 R /Im105 112 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im95 102 0 R /Im98 105 0 R /Im93 100 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im74 81 0 R /Im135 142 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im102 109 0 R /Im107 114 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im96 103 0 R /Im105 112 0 R /Im111 118 0 R /Im97 104 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im291 302 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im92 99 0 R /Im108 115 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im115 122 0 R /Im99 106 0 R /Im98 105 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im74 81 0 R /Im109 116 0 R /Im111 118 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im100 107 0 R /Im123 130 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im104 111 0 R /Im99 106 0 R /Im102 109 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im116 123 0 R /Im94 101 0 R /Im106 113 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im98 105 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im104 111 0 R /Im93 100 0 R /Im114 121 0 R /Im106 113 0 R /Im96 103 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im114 121 0 R /Im98 105 0 R /Im100 107 0 R /Im100 107 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im108 115 0 R /Im102 109 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im292 303 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im106 113 0 R /Im98 105 0 R /Im140 147 0 R /Im103 110 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im123 130 0 R /Im107 114 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im104 111 0 R /Im99 106 0 R /Im102 109 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im96 103 0 R /Im100 107 0 R /Im98 105 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im100 107 0 R /Im123 130 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im108 115 0 R /Im103 110 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im160 167 0 R /Im291 302 0 R /Im114 121 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im102 109 0 R /Im96 103 0 R /Im121 128 0 R /Im108 115 0 R /Im98 105 0 R /Im102 109 0 R /Im96 103 0 R /Im74 81 0 R /Im342 355 0 R /Im343 356 0 R /Im342 355 0 R /Im343 356 0 R /Im423 446 0 R /Im295 306 0 R /Im217 226 0 R /Im424 447 0 R /Im424 447 0 R /Im393 410 0 R /Im234 243 0 R /Im217 226 0 R /Im359 374 0 R /Im290 301 0 R /Im216 225 0 R /Im218 227 0 R /Im220 229 0 R /Im135 142 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im124 131 0 R /Im94 101 0 R /Im93 100 0 R /Im114 121 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im117 124 0 R /Im96 103 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im113 120 0 R /Im108 115 0 R /Im97 104 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im100 107 0 R /Im100 107 0 R /Im117 124 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im103 110 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im108 115 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im107 114 0 R /Im98 105 0 R /Im97 104 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im113 120 0 R /Im96 103 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im245 254 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im126 133 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im394 411 0 R /Im246 255 0 R /Im74 81 0 R /Im134 141 0 R /Im108 115 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im107 114 0 R /Im98 105 0 R /Im115 122 0 R /Im114 121 0 R /Im96 103 0 R /Im124 131 0 R /Im94 101 0 R /Im93 100 0 R /Im114 121 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im126 133 0 R /Im112 119 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im115 122 0 R /Im99 106 0 R /Im95 102 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im107 114 0 R /Im114 121 0 R /Im96 103 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im113 120 0 R /Im96 103 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im74 81 0 R /Im92 99 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im100 107 0 R /Im123 130 0 R /Im107 114 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im107 114 0 R /Im99 106 0 R /Im101 108 0 R /Im291 302 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im107 114 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im96 103 0 R /Im95 102 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im113 120 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im127 134 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im108 115 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im96 103 0 R /Im238 247 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im108 115 0 R /Im102 109 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im104 111 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im74 81 0 R /Im92 99 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im99 106 0 R /Im103 110 0 R /Im103 110 0 R /Im108 115 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im111 118 0 R /Im108 115 0 R /Im97 104 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im121 128 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im98 105 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im238 247 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im248 257 0 R /Im108 115 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im116 123 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im108 115 0 R /Im97 104 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im99 106 0 R /Im103 110 0 R /Im97 104 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im347 360 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im115 122 0 R /Im108 115 0 R /Im139 146 0 R /Im139 146 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im128 135 0 R /Im311 322 0 R /Im108 115 0 R /Im94 101 0 R /Im293 304 0 R /Im324 337 0 R /Im133 140 0 R /Im107 114 0 R /Im93 100 0 R /Im238 247 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im108 115 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im74 81 0 R /Im109 116 0 R /Im115 122 0 R /Im108 115 0 R /Im139 146 0 R /Im139 146 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im113 120 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im101 108 0 R /Im111 118 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im107 114 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im93 100 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im98 105 0 R /Im116 123 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im115 122 0 R /Im108 115 0 R /Im139 146 0 R /Im139 146 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im74 81 0 R /Im109 116 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im108 115 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im107 114 0 R /Im103 110 0 R /Im108 115 0 R /Im97 104 0 R /Im93 100 0 R /Im238 247 0 R /Im103 110 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im112 119 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im96 103 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im108 115 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im113 120 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im139 146 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im139 146 0 R /Im96 103 0 R /Im101 108 0 R /Im118 125 0 R /Im99 106 0 R /Im103 110 0 R /Im103 110 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im123 130 0 R /Im111 118 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im120 127 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im115 122 0 R /Im108 115 0 R /Im139 146 0 R /Im139 146 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im113 120 0 R /Im123 130 0 R /Im103 110 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im115 122 0 R /Im108 115 0 R /Im139 146 0 R /Im139 146 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im74 81 0 R /Im109 116 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im112 119 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im114 121 0 R /Im99 106 0 R /Im101 108 0 R /Im94 101 0 R /Im96 103 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im100 107 0 R /Im96 103 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im100 107 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im115 122 0 R /Im108 115 0 R /Im139 146 0 R /Im139 146 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im74 81 0 R /Im109 116 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im124 131 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im100 107 0 R /Im98 105 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im100 107 0 R /Im95 102 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im213 222 0 R /Im98 105 0 R /Im103 110 0 R /Im97 104 0 R /Im101 108 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im114 121 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im93 100 0 R /Im106 113 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im124 131 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im104 111 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im99 106 0 R /Im103 110 0 R /Im103 110 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im108 115 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im103 110 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im115 122 0 R /Im108 115 0 R /Im139 146 0 R /Im139 146 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im425 448 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im104 111 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im115 122 0 R /Im108 115 0 R /Im139 146 0 R /Im139 146 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im101 108 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im106 113 0 R /Im106 113 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im280 291 0 R /Im281 292 0 R /Im255 264 0 R /Im282 293 0 R /Im335 348 0 R /Im243 252 0 R /Im336 349 0 R /Im258 267 0 R /Im335 348 0 R /Im257 266 0 R /Im243 252 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im108 115 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im115 122 0 R /Im336 349 0 R /Im258 267 0 R /Im335 348 0 R /Im257 266 0 R /Im243 252 0 R /Im298 309 0 R /Im258 267 0 R /Im259 268 0 R /Im333 346 0 R /Im257 266 0 R /Im239 248 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im108 115 0 R /Im102 109 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im108 115 0 R /Im111 118 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im101 108 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im115 122 0 R /Im123 130 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im107 114 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im101 108 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im336 349 0 R /Im258 267 0 R /Im335 348 0 R /Im257 266 0 R /Im243 252 0 R /Im298 309 0 R /Im258 267 0 R /Im259 268 0 R /Im333 346 0 R /Im257 266 0 R /Im239 248 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im102 109 0 R /Im96 103 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im100 107 0 R /Im95 102 0 R /Im96 103 0 R /Im106 113 0 R /Im74 81 0 R /Im127 134 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im115 122 0 R /Im108 115 0 R /Im139 146 0 R /Im139 146 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im96 103 0 R /Im105 112 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im96 103 0 R /Im213 222 0 R /Im96 103 0 R /Im126 133 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im108 115 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im113 120 0 R /Im93 100 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im108 115 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im108 115 0 R /Im97 104 0 R /Im100 107 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im117 124 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im108 115 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im93 100 0 R /Im94 101 0 R /Im108 115 0 R /Im101 108 0 R /Im332 345 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im123 130 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im123 130 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im99 106 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im106 113 0 R /Im108 115 0 R /Im103 110 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im214 223 0 R /Im119 126 0 R /Im115 122 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im94 101 0 R /Im96 103 0 R /Im117 124 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im115 122 0 R /Im96 103 0 R /Im99 106 0 R /Im97 104 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im93 100 0 R /Im94 101 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im74 81 0 R /Im130 137 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im100 107 0 R /Im123 130 0 R /Im107 114 0 R /Im115 122 0 R /Im108 115 0 R /Im139 146 0 R /Im139 146 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im95 102 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im117 124 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im103 110 0 R /Im102 109 0 R /Im98 105 0 R /Im113 120 0 R /Im96 103 0 R /Im121 128 0 R /Im108 115 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im103 110 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im214 223 0 R /Im119 126 0 R /Im115 122 0 R /Im111 118 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im93 100 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im102 109 0 R /Im99 106 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im97 104 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im124 131 0 R /Im94 101 0 R /Im93 100 0 R /Im114 121 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im117 124 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im108 115 0 R /Im140 147 0 R /Im103 110 0 R /Im98 105 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im99 106 0 R /Im115 122 0 R /Im108 115 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im98 105 0 R /Im101 108 0 R /Im113 120 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im116 123 0 R /Im103 110 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im106 113 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im117 124 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im123 130 0 R /Im94 101 0 R /Im99 106 0 R /Im105 112 0 R /Im98 105 0 R /Im103 110 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im116 123 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im107 114 0 R /Im94 101 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im96 103 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im107 114 0 R /Im114 121 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im113 120 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im121 128 0 R /Im108 115 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im98 105 0 R /Im97 104 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im115 122 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im127 134 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im104 111 0 R /Im99 106 0 R /Im102 109 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im108 115 0 R /Im111 118 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im111 118 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im248 257 0 R /Im108 115 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im101 108 0 R /Im160 167 0 R /Im96 103 0 R /Im102 109 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im102 109 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im103 110 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im114 121 0 R /Im93 100 0 R /Im102 109 0 R /Im124 131 0 R /Im74 81 0 R /Im119 126 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im121 128 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im98 105 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im114 121 0 R /Im98 105 0 R /Im100 107 0 R /Im100 107 0 R /Im116 123 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im97 104 0 R /Im101 108 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im111 118 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im100 107 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im273 284 0 R /Im142 149 0 R /Im307 318 0 R /Im274 285 0 R /Im426 449 0 R /Im153 160 0 R /Im155 162 0 R /Im275 286 0 R /Im372 387 0 R /Im427 450 0 R /Im148 155 0 R /Im158 165 0 R /Im154 161 0 R /Im145 152 0 R /Im372 387 0 R /Im342 355 0 R /Im343 356 0 R /Im355 368 0 R /Im343 356 0 R /Im344 357 0 R /Im236 245 0 R /Im227 236 0 R /Im232 241 0 R /Im233 242 0 R /Im296 307 0 R /Im219 228 0 R /Im233 242 0 R /Im221 230 0 R /Im300 311 0 R /Im226 235 0 R /Im216 225 0 R /Im227 236 0 R /Im218 227 0 R /Im222 231 0 R /Im300 311 0 R /Im127 134 0 R /Im99 106 0 R /Im102 109 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im128 135 0 R /Im127 134 0 R /Im99 106 0 R /Im102 109 0 R /Im131 138 0 R /Im324 337 0 R /Im133 140 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im97 104 0 R /Im101 108 0 R /Im115 122 0 R /Im102 109 0 R /Im93 100 0 R /Im105 112 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im100 107 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im112 119 0 R /Im116 123 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im109 116 0 R /Im110 117 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im99 106 0 R /Im106 113 0 R /Im106 113 0 R /Im101 108 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im101 108 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im74 81 0 R /Im137 144 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im109 116 0 R /Im110 117 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im106 113 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im118 125 0 R /Im99 106 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im94 101 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im117 124 0 R /Im93 100 0 R /Im99 106 0 R /Im100 107 0 R /Im120 127 0 R /Im107 114 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im101 108 0 R /Im428 451 0 R /Im429 452 0 R /Im118 125 0 R /Im365 380 0 R /Im120 127 0 R /Im107 114 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im114 121 0 R /Im98 105 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im112 119 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im101 108 0 R /Im107 114 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im100 107 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im214 223 0 R /Im428 451 0 R /Im118 125 0 R /Im365 380 0 R /Im120 127 0 R /Im350 363 0 R /Im430 453 0 R /Im431 454 0 R /Im428 451 0 R /Im429 452 0 R /Im118 125 0 R /Im365 380 0 R /Im120 127 0 R /Im431 454 0 R /Im428 451 0 R /Im118 125 0 R /Im365 380 0 R /Im120 127 0 R /Im304 315 0 R /Im432 455 0 R /Im433 456 0 R /Im181 188 0 R /Im167 174 0 R /Im166 173 0 R /Im176 183 0 R /Im169 176 0 R /Im164 171 0 R /Im163 170 0 R /Im183 190 0 R /Im169 176 0 R /Im263 272 0 R /Im166 173 0 R /Im172 179 0 R /Im182 189 0 R /Im382 397 0 R /Im382 397 0 R /Im170 177 0 R /Im163 170 0 R /Im182 189 0 R /Im180 187 0 R /Im175 182 0 R /Im166 173 0 R /Im167 174 0 R /Im164 171 0 R /Im163 170 0 R /Im169 176 0 R /Im263 272 0 R /Im166 173 0 R /Im166 173 0 R /Im165 172 0 R /Im176 183 0 R /Im174 181 0 R /Im182 189 0 R /Im176 183 0 R /Im169 176 0 R /Im164 171 0 R /Im171 178 0 R /Im163 170 0 R /Im172 179 0 R /Im182 189 0 R /Im163 170 0 R /Im185 192 0 R /Im169 176 0 R /Im164 171 0 R /Im171 178 0 R /Im163 170 0 R /Im164 171 0 R /Im168 175 0 R /Im400 417 0 R /Im434 457 0 R /Im182 189 0 R /Im168 175 0 R /Im169 176 0 R /Im401 418 0 R /Im176 183 0 R /Im180 187 0 R /Im176 183 0 R /Im169 176 0 R /Im169 176 0 R /Im166 173 0 R /Im167 174 0 R /Im171 178 0 R /Im172 179 0 R /Im185 192 0 R /Im171 178 0 R /Im180 187 0 R /Im175 182 0 R /Im164 171 0 R /Im163 170 0 R /Im164 171 0 R /Im163 170 0 R /Im183 190 0 R /Im169 176 0 R /Im263 272 0 R /Im166 173 0 R /Im176 183 0 R /Im174 181 0 R /Im167 174 0 R /Im166 173 0 R /Im176 183 0 R /Im192 199 0 R /Im170 177 0 R /Im185 192 0 R /Im176 183 0 R /Im174 181 0 R /Im185 192 0 R /Im182 189 0 R /Im174 181 0 R /Im176 183 0 R /Im169 176 0 R /Im166 173 0 R /Im192 199 0 R /Im169 176 0 R /Im166 173 0 R /Im167 174 0 R /Im180 187 0 R /Im168 175 0 R /Im171 178 0 R /Im172 179 0 R /Im169 176 0 R /Im263 272 0 R /Im166 173 0 R /Im166 173 0 R /Im165 172 0 R /Im176 183 0 R /Im174 181 0 R /Im182 189 0 R /Im176 183 0 R /Im169 176 0 R /Im164 171 0 R /Im171 178 0 R /Im163 170 0 R /Im172 179 0 R /Im182 189 0 R /Im163 170 0 R /Im185 192 0 R /Im169 176 0 R /Im164 171 0 R /Im171 178 0 R /Im163 170 0 R /Im164 171 0 R /Im163 170 0 R /Im169 176 0 R /Im269 278 0 R /Im171 178 0 R /Im180 187 0 R /Im171 178 0 R /Im167 174 0 R /Im166 173 0 R /Im269 278 0 R /Im176 183 0 R /Im170 177 0 R /Im168 175 0 R /Im169 176 0 R /Im171 178 0 R /Im183 190 0 R /Im166 173 0 R /Im169 176 0 R /Im169 176 0 R /Im263 272 0 R /Im166 173 0 R /Im171 178 0 R /Im179 186 0 R /Im169 176 0 R /Im164 171 0 R /Im180 187 0 R /Im164 171 0 R /Im168 175 0 R /Im169 176 0 R /Im164 171 0 R /Im185 192 0 R /Im176 183 0 R /Im163 170 0 R /Im192 199 0 R /Im179 186 0 R /Im166 173 0 R /Im168 175 0 R /Im168 175 0 R /Im164 171 0 R /Im180 187 0 R /Im164 171 0 R /Im168 175 0 R /Im169 176 0 R /Im164 171 0 R /Im185 192 0 R /Im165 172 0 R /Im176 183 0 R /Im174 181 0 R /Im182 189 0 R /Im166 173 0 R /Im168 175 0 R /Im74 81 0 R /Im194 201 0 R /Im263 272 0 R /Im166 173 0 R /Im175 182 0 R /Im176 183 0 R /Im185 192 0 R /Im266 275 0 R /Im182 189 0 R /Im179 186 0 R /Im167 174 0 R /Im182 189 0 R /Im174 181 0 R /Im166 173 0 R /Im263 272 0 R /Im176 183 0 R /Im168 175 0 R /Im169 176 0 R /Im171 178 0 R /Im169 176 0 R /Im176 183 0 R /Im266 275 0 R /Im166 173 0 R /Im171 178 0 R /Im163 170 0 R /Im174 181 0 R /Im170 177 0 R /Im169 176 0 R /Im263 272 0 R /Im167 174 0 R /Im166 173 0 R /Im166 173 0 R /Im163 170 0 R /Im182 189 0 R /Im180 187 0 R /Im175 182 0 R /Im166 173 0 R /Im167 174 0 R /Im168 175 0 R /Im172 179 0 R /Im171 178 0 R /Im167 174 0 R /Im166 173 0 R /Im176 183 0 R /Im185 192 0 R /Im263 272 0 R /Im168 175 0 R /Im182 189 0 R /Im185 192 0 R /Im185 192 0 R /Im166 173 0 R /Im168 175 0 R /Im168 175 0 R /Im171 178 0 R /Im167 174 0 R /Im164 171 0 R /Im163 170 0 R /Im169 176 0 R /Im171 178 0 R /Im176 183 0 R /Im185 192 0 R /Im185 192 0 R /Im171 178 0 R /Im182 189 0 R /Im163 170 0 R /Im169 176 0 R /Im176 183 0 R /Im163 170 0 R /Im192 199 0 R /Im164 171 0 R /Im168 175 0 R /Im163 170 0 R /Im171 178 0 R /Im169 176 0 R /Im171 178 0 R /Im179 186 0 R /Im166 173 0 R /Im167 174 0 R /Im176 183 0 R /Im169 176 0 R /Im164 171 0 R /Im163 170 0 R /Im183 190 0 R /Im171 178 0 R /Im165 172 0 R /Im166 173 0 R /Im167 174 0 R /Im177 184 0 R /Im172 179 0 R /Im171 178 0 R /Im167 174 0 R /Im166 173 0 R /Im265 274 0 R /Im176 183 0 R /Im180 187 0 R /Im179 186 0 R /Im174 181 0 R /Im166 173 0 R /Im177 184 0 R /Im172 179 0 R /Im182 189 0 R /Im163 170 0 R /Im185 192 0 R /Im169 176 0 R /Im164 171 0 R /Im171 178 0 R /Im163 170 0 R /Im168 175 0 R /Im176 183 0 R /Im168 175 0 R /Im164 171 0 R /Im163 170 0 R /Im314 325 0 R /Im190 197 0 R /Im34 41 0 R /Im74 81 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 445 0 R +>> +endobj +445 0 obj +<< +/Length 1026 0 R +/Filter /FlateDecode +>> +stream +x¥}Ë®-ËÜü~ÅÚoå³v6¬aOìnµ»m©2þ{¯Ú+{WUÄÎ`H÷ªÅ$d$ü§ßþÛ¯ú-þú×ßþé·òQð+|`ÿ½|¬)üZÓG å×ZâǾ.¿þêO¿ýî?ÿ)Çí×üßþÛ·çßûüüþzã¶~¤åú| +ûõùú6ôû{¿{ýþñ'1}»/ ß_PàbXÑ +^ÿÏíûMÇÄøõ kþZA¹¾`ýØñ'¤eÔ=i×6 +1WMùc+ð%ÃDYå¥Gé&Ä^@¶±BEBÛH¸U Ë`pàØ6õD[Õ4ñ.ô_ÿ÷Ôõàûª,Ä}Zß+Ha+¸á3¦Ñ6æ +RJxotG´ö i»dLkÛ¸Ëföo_ï"([@Øzþ®Fùc¹<_>rÃäûöåþû9áçÏÏßè¾þö|ÌðnJ>¶�ÛqC°ª|ÉZ @�*ñóKà¦üPîNu %B:@ö° Ät{Ýà +pÛCúIÀñÒÙEÜô±7X#ZÀÍîa[À +xóTë. ®Ã:|bÚ~jÀ¶´l¡~©Ðͨ +íõ +í +¼0Uð¤�uXþWü5iï-L 0Û^{óT'H;Âm/È DSI¢/º>ßPlÖ-öDàKȪ¶�fF ãciÎ\Ʊ´,x и®Ï¸agTèn°UC÷ÜÑ$à'Ò¾"X.iø1sáÈÎ^x°í__ G9À2#QZHÉ(G-`ÌQ IÉóISBf âØÝ +éxNòOèLïJÌp WlF@+ôÆ7¢"@t.`Ѭ.�d`òªA9Å#�Éè ¢+Ü´EtyÛµjñ¾>ÓâBB2YÉd-.ÛäAqIXrX]Íõþã#:=¿Ó#%C3ÐùR0ÊIXâjl¥ ]ÀsÊ5¶ç!èÜpH$ciP$Eu¶¬B`ÝV°c;é!ÁI"9&ªEæ:ËUaLæKkTÃRò ¦§¼ßXS;ö8Q£Âã³ÈÚ0%^ß0²¼¼Ú:Ì4¨áùy§} Ç×_¿}=ó¥[«ÃmC«ÈÆr×ÏæòóñÆo±¯ßáÏëm$®/T´Ãùø¿ùXî�G,÷õôsô2YÔþ¬2;d4ùH Åò>p[^ ú´%6ü¬¯eÉ_P·GFQG<÷ð#ûò7?L÷`-ÚÐÓóV]¾ Éä@ÜVi¨vÑèö*-TíÀo +R2"-Ôéázjô¨¦T;"ݧüÌSíÒ¤ÛñM ã§÷ºÛaª'¤ovªìQ_U(è&.AÛDƦ½cýg?¬Ð§ï2½VM îåíù ËP>õKîzÌÐø ª%4fxpÕÒ&²#£PX(Kã*@°¦4!æszØeWÉ]ÎpòÁg.(1ñH <G¹#«E4ädµR¾f$8Ô¦Ä=ªª?;Ò-¹¥cWìô-Ü`X§ØàôP ÈìYËéìR~$:GLçJ\}@£BJ¶' ·`T5ÜaË0¬²R/ÒâêÏ(¶ÿäøM'ít yÎ;hÆ:ÑÜÝÆq-ÙBB¦h1$É<fLFRcªHJÏK¶½ Tß_ÎKpQoÙÄ{Q/sf5@g(dgÆãxD( +¶ÀîÕRª;AèõTºS<mæÎ_Ê4ã רd)"K+¶r:°¬qÅX¾ãÐrÏèóeñïøçå`æµQè÷e¢ÿ¥ªèypÖÄ+ªíUT_×Y_ ¾ !8B»#3Ò�!VQ}]|\[!áe:ÉgüÊPÈÖ m!¯§*¤Í@ô´a*¤Cp\¡ é·6mélpuÚ� Ýì ÉX=ò,&B#¶zäñ2JàNó²Pê¸ôJ^p¥êÇ +o[¦´Y¨ü0*±NÏrõP*ð÷eéíEÈVdDi²çñWÜT`5 äQA8ÁHß YNY9òÐy9ry¤i¾\FR«F")-#ì@VFy9+'F+вOQ:A;Ô+9a<¦´cr@Û)êI3¶zèYËuv² Gà¨%®P µÄ6b¹v(/ÏLT·¡*"äõÃhĪ¡g}©U3t +`:¨×áÈ:\Âòh +æ f¥Ì#a9]'¨Ç9¡W;MúÃ9ÙÎÁS{¢:"]ÊöÈÊ8\ĬªÐ¿_ΪD±ûúYßÁ.ü¦ø +!ýz¦¥z_ÁYéÝñàXH®~ª(ªbNâ`ÛÙE«ÕJÈ5YjV³J|¡ZñÓ · u1Z^!ÁÌØYõéqG$`'<çMÀâóã2wwë¸~½ÎÌY:uy¾V 1âèì²£ÐÒÔêx×4ª!%Ü\+¸sstìh´ ´[B1%Nþ»u+¨XôrîvÁÓoö<ÞE½eÈpÀQ¿"ðÂ6ÑCQ 9EÈÓ8g[¨KpÇ[è($FP Ô)` Èåì½y%ÜJu $¨CrV2tfrD2ÚB=)K%«ý;Ù=)ã3;¨H?kìõHt,ÿ +ÍØÁ0C:ÄÄiÄi×í`&1|Z£ÑRn F4~ ÃØM, éí8 a/u·à PïP°+ú¾¼9ZlÆzÓEbN±b Ó«ý®Ðë5+Þý ÆêF¾J�çfúAÍ.¦&TaD¤ÔðÌPÉ5ÖïbÖßŬ+*Iû~ºþÖÌoM~zý ¦ÄNF +ÈôúÓ"F´¼ÛÅC¡T` h»&q¬@ ÕocX·åMÝÆ(8 ÓKù7´3d~x"+;ùNU%×Uc°F-&²Ä³err÷ &l©g<µÖó"hÖHtî¬|yA¾ÕoϼÄÓóò&Z<s~^gÌ_x6¸ÎAê ü¾~ƪ¨/Ë}ñùçUÌßQBkUÔõëý"§%ÀyQKZ²4á éÒ»ÿüz×NT Wg¤CÓüL cÁ: 5u{V�-ÀÓý¾§/´yb#+vô+Tý¸gÅÐ[ØyÝXæÆ8ê ¹\Þ~_E$d¡Ñ=uÃþmJ�¤ä«æ )EnAïø1éÛýâ%ÏõÔM^ \¾q´¶Vì*QAp(QÕÜ9e©+öÆrR : 4-ôÞÚ+ô%r^ì¼°î?ç¼·µæDý@8ÏØq£dÇÞÜQ®¡h ^ #J}HCPòIQÐå5ý`6È8ÔÇñ¤Þ×:. Ì.À&N¢Aþ¾AYGõCÑ¢&Å÷"ÞÖê°~fåv9¶ý¨kкvìÇt ìø! ðJpÓè]&Ú¾ÙP¢à´ÚÑ©D$x%ù¦Á¯$H¯$Ï"5EZúALÌUEcF¨�+õªªâ8ùþåY4]-á}N +;ª6lÄúAÄQO£ÌèUGõf5»òF)ÐåªÞ(eÖÕ¨ñ +¡'YµÔöF+£xRd¼¢v%gDѲÚë´RÎ]Ñeuk=£ÊhÊÈ}ýÅäúù$¬ÑhR¾Ã¯sò^L~y>xÐ2ªáj-"êri¾¼ÎùôV9a/3JzWëõ^)Y!X ÜÒa«óóú9Qô-RôÓJ¼ #rqôÈô`*BrL.\ývÀÐ÷Jö +r +Po¸´Cê*¸Cêm&Ta}ê^n@oâ»óù÷N'w´NÆqïø½1½ìSB(¦ãpç×Ç8LIyGm7 Km[09ÄFGÎQo¶24"ò<A;¼h(Äëèq0¢_%XEWÌùñ,JèÐvÀ3<ã®B0C·Iüö�Gi!}ÄF$oaï2ÞBÖ©z£¤ESTYL(8Cý,¤ï½N¾²8Ó;º×ÀÀêàÅ´ÜB}ôä`�p+÷ôooÿÉ¢±�¬Õ±å¼]h)»`<¦×qÌ]Ä0 ¯ iV8l=NÙ°7«'K^ETG·-a/"¹µdƲÎ"©²c3ûÝ´¨¶r^q^¦w$·Ú«;¥/èÑðD¶íQXnc§Ù^>éNkJ$»Ó^> Å6¶qh!põ"Ö`T,;£NÏJ k¿?lÆ=BRÆÎäÉqY äQO|2x1ÃIz&.ÏË c;z^ÏI,È?O¨¡ Õñ§;/?ÊÜÛdo;ûK ÷H~¼ö¦m 'xz/®pÁpuzÍi,nA vÆmH%b F Q/P uZ°é5ÐÄë + 3}êâåô6uq C¼×&�NC8ZDت¦b "©N±Æ"H¢x8¶½ +<C3=.~ëÝR."Ô'WÙ°f%Ht JB¹\¬l(b,±¶�ªD«qk¡þ¶T ·ýQ<v¤Ä¾ü;6# bDL9ÎVàèFñäá +ÙÚ6óÌ($ÑÉáô¬WRÏ4u-(xz!mÑ×B«ýõ÷Úö`vêâ¢!/eFt2¯8°×ípÓ2úüµØQ9¹ï]±gÝAï2¦EIJaËó¹áòÎT×iâÄÀuLÁ* \.´`w&O+Ès#+(ôÚg~%Oç×oØTp8¸,�£â§\rö F¥z9ûUH/g³Ë!K=�vRQCã}z^9©xxíNLÎIfòͺ*¢Ø°'ö$Wb:¦¹àÆÎ¤AKpÚÓ:¢½°ÝKMèlù;úzG¹ñ'§co�>ÿ~ÑéAëC{ù�ÿÄÆËä|¢³ÔiØðc ªFØóÍ�Ò )<mÊ[ ãù÷ú9ÎR##pTáf$BEZ4-¤¯ÞÌZQ¬h>G¤¹Ñ¥¾,@&ø"AOOpd:ËkÜN `B :º<¤úYOï¨=ÆöUÙÐGíèÈÄ>À12¡£MFB:ìhfº8êU2BÞçC %X2Ü@½¾BÒ9/ æ±/&X5ämB éØ êüò¡xѧ .Æ0 8K^²]§Å"¼ÏÒau~yÒzóPAÅXR°ÞÌ:OFãP@vDc°ý!+~¤ÙÚØNâHg'q¤·óôÄãÞÓpÂÀUH&{ôH èìÏ\q/Ì(z£RV)Àttó$h`[Ê(¯V.×7y ½FcBôüDJÑaõ¬ +*P/v¨ÀT`ܶQjyÅP?ß0è¹°aO¦+!BÇ]B¯éwvlúÈC:FB suÊP}ù¨e ÷AoƼb [n¾Ýª: ï�nU±cVâä«ßs!!ÝÌí 9æËóz¦°ÄÉò½uü¹¡<í3as<üÊ÷:èÙ- íß´{Ó"´Ù!WÌí:ÎéytIþVFÕÚÉ×íûÏ+O¹>?Ê¥ýý'/G²ûóÀðï·V3Ó¿ÿznú÷zÙàýùrϪưH÷âÞÏÿ|JryÁ½`çö¹¼ ÜÛíðTí¯¿FlßÚóH×åöO!¶[yd°"ÄV:âvó vNdëÍ"_ö½¥ùU~§ Ì»~�S²í¼ôúe¯�ÚbJÂë÷¹aÉ2è·ÁÀ¸¥Çó?§Äô¸¶jóã $¦]«àÏë7àÇëýÜ[Z~]¾c3\4@û}Xå`øòvX;Ú?zÌÕ<éåy¹Þn$]>@/µ³Öëè'î@¿ÛVaeo8\mÖ¹âQ»Räÿ;lðôxlEVèéÝÖÆé= æA½=CÁ¸kfįä< Ö%HzÂÖÝÈÔQTЯD$r$A$sT.¥}>U cèS +T"Çe¤¶GÕ pØðçÈ#-䦵È3¼`¯îÄ1AY(øóxô1Ü8Ó«pDu¯¡ÎÊ-cìÔwôôÀBçÄUzÏ#ýÔ9bªßÈØ 9A»RðKI(ªr§ac<E:¤_ëA¬#víFÑØHèHlò¢ ¥¼÷KA5»RP?´^$A>ÝAUAÖú + +P¿Óµa9?4Æ; ·-Ù¥>°C²3³ñãì|ÀS ,ÝÃÒ3vÂNG`È¥U"_*½¹`tWÐÏÆQ¹\I\ªÓS[ÜêÇÎG=V¸`ÈF dÇz÷0Rà²!;ÔOìNÒ0/ ¸C,Þ«ò`w,çfU ù zã +¡ÌÁsYóYªÔ0ÏÆv¯i¬xýíØ¹Ö¹kUÆÓI¶&ê°[¹Ø´¢ß×ùFÏ~¾Ý¾þ¼¼|3àÑó|2ú~ÇðÙ ÷MHñ-!8?¯ßh±lvbFà3Ö¹6¼ýNKÁ+ÐOj~¶ ù7¡]-{eUåľ×N¤rKlïçì·`àCMøô#§ÖpÚö(í-?±´h¤¥ñ'Eá¡m¢ãbÄ"à(S 7ÐâtÀÑC-å$)å3tú�E»aY^D ¢HH®H·Ó`)Dwûµ¼öó=àV¨z¸ +mPt¦}ÇÐv¸�ùÀ)A'ÊÏÐÛ.EèJô¾O[c0 +ªt*ÃʱYê(O^3ÍÊÁñ[s'hÎ\ÊxÜMú¤¨N+¸2¢2´÷Ç{ÙèrddpHåaº¡9g=Éò¦©1�D2 deúÝ ED¼wVGï,:ÚX,Lmü±=4Ê*©lðõJjkѬùÕ5ª à ÌAC3kÑ +ÊP-åû,¢(ãòåAülX^pn¨Ïß¡èØ±?ÕuòTzr[°|2¹í4ñlr[j6¹$µÛ´¸÷¯JÛår¹ |fmãfê+²Øö/ÈÀÌ·Sc+xÜ3Ç·{¹bÜåq93ÞáÇë#\Í׫õëO>ßÇàa9-)HÏn%heòjL»$Bº V8» +@å¢!á=Yö¾@>nÀ3Ú N±.Bë +wPE½n +òæWPú½ ©¤Þ¡ôæòF27ý±sÄcâñ·/}ÞyÆÚWqÍXxhÆÖÿjhÆtn»eyÁ='ãCà&ê)QPæaÅÎH.IVý22$ªÆOBa§GîÆå3ÄcrùL`æé¤C2GU$?`4w¸¼Ô"½==©ôZÒ£Z½6èV¡êÕ#ÙêðFþ4c; ²\¹c*GýB¯½*ªtvÁ© >©c ÞÀATq-åê7sß_zkÚ4áí+³øi0ÒÐÑ>&¦ÞF,ÌâH±[nÙi0,Õë# ¬6KXp¦8ª,I*)OþJN¥Öf¸ {IóH¨à NïÂÞ°â<õx ÀôÔ¤h1 /Xa<¡µc$[ÄîäÊ:qUä!H@2dJv(?S~Y|Q±XLaPª÷£³qƳM±íåôö4!B)@Æ¿µ³Ö#ù{$ÐI}V×½±åuyØÉõôóD¬";§1÷á +èº'´F`WȰíÙÛ}qT£/àTwÀª±ôÆ J@o<a\{tã³*Z<u¡GûEyItÔwA{à »í[ íù =¯SÍ+ÚÂûúi +PïxåOp¨såc "üTÐvv`{cpux@u_tØÑ;±^Ê êÕ¸)£9C#õzêÁú)M\/Ö/[Û4ã#¤4, żn^Ì»`tXÁàAsk(ÀXnäJYio2Äa¢;T!½óÊ_vŽmÈÈóQÂZ,ÀG ãèÓ.¢ +"d0òpÄ Z±¾0jÞ³"6äÊ<49r9$îõÔ!±z¾`Ð8dVa8å©^ êcVÓëÓ6ÄxlȲÌpȲ^ L°´Æ!Ð~Úµk:HëXa<ç©peWP0êç$»Ù�g¹-+£%Ì °+±¾ õ>f ¤ F¤ ;1®Â,vfr3»bÇ}cr0¬+öçQÀ õÓªMKF£gܦ=²þ]S>ÊOÕ4j÷üÀ6 ·ÜZNðÞ.°Ab²Î'Ípøa0Ñ)æI´â¡ fÒR+:?®7§àqÇ,Þ ý¼ãfÛ_®À³#¢ñó¤|CâÓÉÑvÏQ¹Õk¹Ï/@9-¡Æ,xeF?Rc|ñD ¯sÎN ö¹ÑÞ³ã²�mlÓÈ9¿>À3xÁZ¬w_)nÌZv4 ÄÝÛðÒ²côtÜÈßáèézÝÏÁ:Â×ó?ÕýpJP/" *³æÒõjîtHï>ÔS[ Z£/@¾ 9Þ%¨¼Ö¦dD|1tF:Á[±3Ò ÞªyCºBýF%4+¤Õð+Rý *mµÃÈÔ1 gôBìTÞÖH^É<ü¢U Nʰ·ÜL4VC"ú Ú|Zó{çU åËI½z :G<½z 2F½³ñ±\¸gaxÏ* 3#¦ef¤s´[øù|Ϭ_@íxÇa±nÇE¤0¤ò épLå("03ÑH#Æb½4i! ¥Çi?43æý6àúu;c_¤wå-YR!Þ\ZÉèó05tä'tdþæ8¢º«0qP.(6<ÎMXó¢ùâa²;-°çµóÅ; 'f nfÆÒI£8)à #Ò˰ó3~§BJäw°X"zëÓhÍÂpx!y3x^W ÿ¼|«ÍðsWm:͸¢ÇåcxÃ\sýWÞ×K-:?/1}kìª- ]Õ£ï@}øøÂ m mõ`ÙÔEz« Vùxý0\ÞØ»BÙâ$è8dëÈ#âÓ±åC¶!PÇhC$°a#xíøô|´ÎáêRÑÙÉtÈÁëtzÆS@2Ð÷ A$»ïAýPS\ 8jèô. )ÁÉZBCW&WKtyh¬×Öb½¶Â-+^2ÏøF+AÃ1-ÄVäÌ<£ÿV z[ïMó¦CÙÄö<bÔçÑ»A +hx 2Æ!ùÀ:8Dµ(ê/B!YKÐéM¥3TbY;f> JûìÁÙ 4hEúüÉ Ü3²"3ÐsÒ\a@¡/³A±äÏrº¼I-!^[ ñéZ ± Û¾ìsÑg¨nØèwvÄúNLåóâb Ü{(ú¿-%F¼W2 TAÃ"g@^¡ôþÞí¹rEÙ(fÅÎb@A«!1Ñ»WK³ó5$!,ýãb¹¯rüX.h¼lÍ.¶F/¿ö-¨¶npþf!9*©aéjv7pÌÊþåÒ¿¾ ¡ ÃQ hùÞÛmBµ;²çMÈrã¨~ïâ`(Z\ÅÆðQ3,Fµ¤NU,°õ»8´éçó2Ò¯âmFçÇ=ý* +x^¯ÿi!Áåçõ[Aí¨æº|9®6²x´~ZÊàèùqlPvwsö3Ù{]Ç>Aç8bV5ü~^¥ß§LaA*¬7Y<Rºé 㼡uÞµ`k=4aªÃóÖPy· +(Ae³Zä±²ÎÎØÝ. +ê3$w"g¤e~òÁZCC%ÔI²à¨dm 7Ã-àÅÄX å{! ÃÞë gÉédì dG +ܽ´@%Ö+i«ã¼ý¾bJ¶"ùÜÓªG*@qSÕPô¼iËZ0Àçb_ [D2Ç*£#oÀ©N$( Óï`D§ß·bèY%ÊQ3cÞ/ãÙÕ=¿YÜAJTæwÂóDeÁ8"W TóU^L¦é¬z3-c(Ôi:c/ %ùkBP¤Ótf:M7QÈ4SO¥fßË¡·¬PýaÙ"\c�!ÄOÃ\ê1I`¢_²+Gö²7(n\Q2v¨r F`NYgiéV-½¥g¯ôRC>nc�!¶]Ö©EYar¥÷-ÙfC`±XoijTólnSqzêß׺^À°Üº^LS5!%Ò) ÉE$UÌNG<³ Ã?óÌÓ@fñÀ67èb]Àã¦]*¸ü¼>Àý¼ca«ýè¾I«4_.×}ïYqY¿ÉXÏËôâå/µuz �Î1£ Ô÷߯¾O�àä +k©<\Á¨¥òXÈM=»´½o˶6~!$ñºJFÌ+±ÈR¬¤YÐ6ÀPÛBú;ÚB5 yzf´ #¡å¬Q] ÷$Æ@¨×t'lzMw{¨×t'h¦ÐXåßm/Z|¯ "T±UCg¤Ô Æ"d :J!({Z §J¸<TÂå¡®øô²øuÙøÆÙÌj§QPìh æKF5ݳ*ÐiòI$Ï'2[_éY#ê<ù¬u|V¡^cZ©kK{A',ä8UÒô¸kºGt,[ó £Ùײ÷Ù-¬ç¦ÎRVñyQ· ç×$!_G=Y^»£çõßècR"ú}Ï6íê²�½vÇXuÐÍÕFã§×ÁaõÓ:×µW?Ãn¬?÷r¼,@/_«Hâ¡é00aùÔ:h +Í{AnxbáôWmëH©v¬ú¬�% ÊHà=OÖA Òoº¶:ä+8nº"(wÜtÍXô²<C²TÔ¾t q·F¿¤U#C¦"X(ëñðé_¬èõcÛ¿¾@vÇ=-ºh~]xE"Ð9º´B3Я;oY Ïj´ç©îGî4÷fÒæ�½ìNm¨ý´;Í8$Ò¯IFDz#Ã?@v§"!t§,¯z¦Ä½|hèXZ£)ñhØÎU�2 +ô¬dôúÔùRD¯m!}hôÔr: ß×Þ±/Ñ Õ°¡òÉåÓ3+ÙØ´Y(*Ð"Z¶éWm!x®Ú¨C«¶8µr\µµÒÕ= ¸`ÎD¿jÇUÛ3z ß±ÐQÃD¯áÛ1ëWmwìåì®¶¦¬cĺ âY¾¡Vqr¥ÌIõ~Þ²4zý¹ÃeÔPó¬V:s~\ö V9³ª¢è×$«ÙÏåy½`Oè!è¹V½ôfù¹%åVÜ=ýv¡%ËÏÍL)9dñü2h Iç|¤wÛóôjüöj|~¿²ø¹ßÈü(I\ÑïC1pôæ?ÑîxlßÏÄ: õç_°DJïè¼ç?;ôî '¾×®lðô5ºÜ!¬¿ A(qwÓ».@¿¡9:"f,Gé´x¥´«Ig-BÅ+l`r'i!«¡~ÓwMçø é-;~~ÙéyGË~Irl줨Ef¤oÁ=®D;ÒÇ¿]²N2â FzñÈdPÔIÎAH@?É¡ÒßOpýrDÐK7üHjWáô´ÖÚñM«PÅ_ W¿T(BãÃÜ:$×ÿ:[ä:¬ëÎêterV7-äãf0 +èSáw(A}RLÍ<*pn¦ßË +bDÅYR¸ú´¬È1Ì8BGภ(w)â°ãv¥ò^~P:Ë,à {þ¾ã6-fÊòtKØÃnÀ%lcz [Á㤡bHa Á#½¯Q£¸wgÓû~¹q6½¯0r¤÷µÉ ;l9ZsNe÷VU&DAR~îcH罬ðçåçwøó² +Ûiçåçuè÷}gIGòç áúÇ2hÉJ9ºÔNýÏÐo%¬òըγ#ó+X t ä]�ïãWàäk1±`+Gd2»1ÅeÐBV¼òYÍA+2¤¸"%�¨x-*¡~-#nÈ=Ű!Rc|h!ÂS÷Á%ÉpK@ï±P/!Kñ Kù%IQùCøúä'ÎÏëÍ!9næ§(�÷ZØY%î4ó¬ ¼ÑÑâþ³¶¼ó(çüåPåÜ6-èPY-,ç¸B¡ç¡2Z·Gq'ºò®ò]Vk!Á`à¯f A^5,¦¿PL㩦Å:¨wÌæ?´ëA{Ú½`G/Ðt¦zX +é£åwýkf¡7@æ!ªaD¥ÕËD5D /É{;®9û$7©ïÕ¸©I¯ÆMMJÀþ¼1ÍϤNo¢°;Õ¨A(sPyãø`*Q)2ü^Î;Ë1ªQ´VÍN9Ù¬m!Uân¡^Ô¾>KÍz¿±lØø ;Õ1îUs&´dêt©;m:&cbÌ#wÚÙò1W³ +³[G]¯G½U-÷Uín!Í+Ïõ/´ÇW𸣪߬èò¼\ÔoÏùy½øaGëw´Á +ð÷uN\^ OØñËèwÞ#ÞA½¦6A ÒEh64!c«´�*·�ñý+¶Ä(¯?Ûà°,ù"½óÕ%OËÐâ¡YÝÊÏÏë¥ù´C½4Evèh*¹"êìD´p"/½7¶M ý�d²÷v|àSk (Ó»¾ºé}:óËdg 9yï»p~îÌ{MóèH]. û L÷æ�NWæ²?OD2OßÍP¦"¥í¶¤*2ãá&ê\ñ7ô²dèt¦2`KÔJ&z~ߩڳéùýѹ@AcÞîaL§c{^ógC®×í÷T!¨¬ÐéD%g<D%Ä¡vn§çkHb¥×¥Ó:ä]�ò~ßqU®O<õ%"#tPD ã¨>ï#AÊuí%µèeSuí$ºöÜI+´ñÚÓVØ'Ìn! Gä£^;X�%ûq8ôºvé§®} V¤×µoPz]ûé½®}Ó#>peÕb >0S\®)Z<ÈhVl h@Jb¤r4SI8%×VéñX î e}}ÈÀb°Õ§çõxÔmÏ?¯ß0õüóúdî=.cX'Y/Ë×ù5#Y`$í®Éw^Èêz(® ´�"§`ª?S|ì +ÜÇhñ =¯Ïe¶Pâ"Çlî$meè*ZcpÏuH¯ç]±H'YfD%¸ª[ßÄ I@ÇÚëga`î�B©'¥@ó¼óEAVìhaIÙè¼».½0Â=úd9Ùë$ê)½÷ +%>²+×yê±£"8 8xêWàà©|eä8Ï< íù[¢ÎS,Ôyê²§ÞÐ'8xê c|òÜiâQLÂ(®£uÅ'Åuzâ"aβÆxE0âÀZàß¶Ì8,Sn[Z[)ÑGe.xåìöh_¡,öXõ!í÷²hél½Ãî$dy¬�eºlxºÚÙ÷dT¯ælTíÀk6ª)ûtGQ0TùÆfªãîÄ ×sB$ÓÓ» G zUé5É8¿Ô©æ£¦X�U¡ÍP¸òjd9¡^H9Õ#}B=ÎOuªÆt÷¨Mþ(J Ò=&ä\ùC !NöïPô õ»±b9Âê>|ÒWÞ$ÀÞÞàxÄôòÏÈÒ^Qìöö<Tùr1Ý/2uâf6xz^ol§MçÇe³ÒÁ¯³ßѯ;ayrþyùnYßåçõ bf}¯Äj®1Bñë}#"¿Nò&¼:EöG;жÓä+>Ûò±I ítÑØ^°£8hö*î�«$*¨W[:w~¤^ é$õúp!z|¿ ôÖ9½@ïâ7¤Á.^qÇ6¤ßHØ¡ +:ÚvÀ/p4 põÞÆK@æ:K~Ù½<a-ÒØ4Ìs>UãGô)~;c}á#)Ç;´GñÐÊõ®ÃXMÖf¤`òÞÊØêuGôé[c\@HèhÒGs*N±C%Ïûú9·´¶!v©cÒòr0$ÕÛdèô¶!Ey%4 §¿ªÙ+M*ò¢Åä|ö¦ú ÁCBGwe2½aDää¸Ïê±ËXô"ΰ< +ê¨üÍ(DÖQÌß\yb´³î+-}[HÒ\Hnúw~~b8üézuð^8áÀ¤ +6¾¢è´^LðÖoð´cÆ{(U<¼o97~óíÂ\Vàï>ÁQBXÛ9ãùyµ¥ßçÔÒbÇü°USb~Éé Ù(?ÖÏÛ^huÈÓF´C è)Ä1Ç ^7©ÂY~�»eÝF¡^pL¯{²sÞÓí7Épb!=RÂ>7j¤¼¡'´B½±@Ñ+;ãizU¿B Ü}ÀØ1v +â Ò$R8b/ØgàR¼7re´sCVà©áÜá +5V|vçz gª7að.Ê5ý÷LDó®¾!crRÖÂZL®á̪âÞz¡iýöôéêeàjéôñYÖ"Gù«u~eÅP ó+«êYONl2gU)ai#xzv8pHôvè£{0éµ[/@/P¤3Ýýªù%A×;Z&æú-Õ~U|Zùád¼úÀ¸ÊÁ²õËæC;`õsÐ8êç4 R%ªÉt+Zî DRÏ®âRnÓdÚRs³#Þ3=,LP=)qêèH ±ÔÓ²éd`Y#t TXäÀ²ÂÎ|À;jnI_Ù¾³qÇ[ZLqL¦-¤8?¯[ò^K[Dr}^>8nõü×çeg¯S¥ÿ¾N6æèÁ3u+Ç®{_¾À}Ý[ØAFW£-ôôÔprX[8pYÎõ´:ÓÛ±é´ÇæÍ§8Ö]ÒÎ6¸�ýÌdy¨Åö¨ú<à~J5åÄбa$sT²á8PiJH©ºPD ¡"HØe(´ TÓ{±7Ãbc¬§¡(e/(Xú©G `¬¾K@/g\Ü%ðúÎ˼~8¼çµ¼_ûÔãï +PòIÚ¯ËçþyiÓ qÝѪ�mO1IÚô¢Ö×&¯ä,ç·iè +8Oð~ÕÑW4n×]8¦ÀÜV°´à.TprÁªÙ¢&ò9¬¬ ¸ý¶pzp"½ëÚ +â±)ç1é7¾3-õÞEÌè.'ò9´Ý9Á ¿³½âMxwÑ´À]tPÏßéFo=Ðåy=Ðù:Õeõ@çõßoe£ßçå@PzsSñ{}cÂîûªØåôѦ.@Þ¬É4M,xò ðhQÅ:ìòL^`QÁè4ÃYð'ÈPh}.»¨7¶[¡::ãmpzßJz®Ð-yGðoçØÃ=àf±¨ÅE+^:*bâ&AÑ-¹Cbá-¸ÙHÉp÷P¯H`æHP +¶C¹ßºÍM^ÀàÊ!ë-÷í²Ð4&#{f±ÔjrFXJE¸.OÈí%HP ô°"cä¼5Ôò»#KÞçWÞ@3¼TßÞës^~_^=¯ÀáåúÎðN/ðdxy +Ð3¼ÑPûãÆÏÝ$tý±nyK+ø Ðw²ÂåÞ?áyÊ»°&mP/Ï4y5Uþgé~JS´ @OÑìÒÐtf~¦]B ô~>Ã~kFØÐÊjؽ�¯À1é9GMG{ Ç6Áa6®(Æ÷zzÅ<ÉS(f:Oµªé<µÀÈȧ5¨¡©*iåÊC·ÊëbT¿ÎfÝb(¹7L²<G]e¿ne-ÃàɰgY Q¥(tAÄi¦|ýªÂ,M¿ýc3FJD;ke-Å4ÊËd½õ}õü¼~ùËóãòÝ/ãIÎË»o¹ÉèãìïÎtçࢮÝ?ìþÏ.péû9áÑóú|N#iAÛï{8÷V1þçβúZkªáRZ,2+B³ÿ9c Pç3\Þ«@è(*ÔA}RrE:è9õ°Pd �N7ã¸èfG½¥&û(¡ñÕñl ºíP uØE$ç9P ¢+ TeD_à *ÆGoªUÒF2õ4$Óëù))Úà ºød:½ÀA2ͩР+d)½Ò*ðdzm�ÉtÔHBäÝ¥ødJí:ûudéÔ+í#Uo[¬?Lu·´h§¬A3O1Gh sDèÓÅ9UO1Ä#ëã*Ø^èçKÃ=àñÃ/(âP%h=;ǹÙÃåYva`ävsKG/9`Vè¸ÃOªQIç±ùÏóVL/ßE(ýò] ºc!y`ô1{âîL´i:ë'S4é +d8äI*¾(±~ÞP5ã÷/a\¨«À¢ý>¿ÿaôãc(=$r(^U ËÅé|ý°@Ëqý°àM¿~Xz69¬ÊT{c©~ý0âLîkQqå¢`P'[B%T|îV!Uä¸3a½>Bp~^§Ì3 °p V²xÆN~ë\ËR·{y^ïÂßn�_Ö¯ëuÛÉ byYûOÏA,üú#úG}²9ã³îýø -@:s|Wç¢-t¤U6.÷ªz¯¶ªÙ�*±¾�G³»þ¾£Ù ¹MËÍuØ7ÕæB%ÔûõÅYÙ!ê=äCãêÏ]cya-RAÇE¯Ì½à§Ò\EtLiÂ[xóôk¡Ú÷ÊÚI_ +ÒÇDdÕl%VÖÆ>óåÖ ~p,¢÷¬Ü +pÈo7æeHõæ¿ 3Ò£.VQ!JÏ$�GTZ@ÅçÌb#ÒYÚ¤Id ª^Ó*ÆS¡ÌX�z÷¢é0ïÂ?ÀÑ _ôÅb Ð)Æ»2ÇYìLå^Q{±"eÆYnEÇ<Ã0 yp`ß4%`-Ò!RG1dÄ+Ð!{Dç.í;ý½7à i¯©ê!ÙÅc2Ç4vrÕ05s\Ú+0¦òfÃäÌSW½¨1 k5'¢e»WÖéWÖ +ªä+ke© ^Ù ;G*erð¬bLJ&^ý^,fwå$Ù\XÜùÜÔfÅú97EQ³Ipr¸q$e®÷®eFe²o¬eFeÔpïÿÖz#Ó +;¨¸¬^>ï²Úòs»QÎòÉåÛóð÷uv)¢ïw°Kvíy¸~¯õAÛbNoÔ'õ¹n¥ñµðϺÒ(È~<±áýõy òw?\-î´- }@V(ÇX Pï²A+Ò{]nÈ=½.t¤LJÔA»V>Sc¦JÄ®ÒïóþÐ ÉcRÒTn@Òþ~®¢üÍf¸÷§ +�;ÒqL/I"Q¶b´`rtxæÊîOB¡´¢ßwTO¥]Ï9½@¿mv¨úmë´ã/Ч0@Ôoåa¹/0HËÅiG`$sÖ^@E�ÌÕæ#:¿WIÃBÞq4ÀZã!Wä¢Ai¯äÒ2¥^DàÓX0ê:°Âh@Èòu@á®eµ¼m£Ûk¯L+lË´7³i±coÆjy!;<ȱ®ZÐùY(¾ÞîÙ?ÿ¤#ÂGí/xá«LóÛÛØ°jb¸îi*³QqY4z òÃÉ@Ëab2¹F +i;»æãauyæÏÉMõÆT²;-8¨Ó«èjÀ(WÑUÕéçB¡£´×Oyï:1m'dç½xX[T½ ðÛã-8?¾¡iÿÙé$~^§+zÜA1Ix¼kú}Ï�;"º¼@¹øäÞõÑf~ççõõ'¸z« ôrÔ¹µ.:o~#%$�©àÀ^TÀÑöÂ*w.p´àmXW«üUª°®ë¦ª�£¸£dã¡(ïùaLfF:E&{ö'zsÕqH/È%'½z£¹ã³Ááh¹ßB±cîwÓÂ×Î+ͰÜQn :$P!:$`Ç}# ðÁåXõ½+t:ÓÃAÏ( AçF¶< +ÉÄBÏaÍ®ETT;rG©b(jbî'ìÅܳAm1¥ +mîù¬w}¤Å÷Ó/ýó´æôçî1ÕgsÜ¡, +1åYJè.B0ÕË÷2ÆR½¢~Ñ·Ì:àZ'æU´úMóÇtw¸úîpc:>õ§Vz)¶Ý¯ ¥PèèK°3ÒG~ãôX/ÂMÏr;º>¨HËuHoyan'û#Ó°c½åÇ0"dìÓÞ³c;Éî`ëÚb$û(¤¥; &Ǽ +@×`ºïÐêQP¹hý¢¡fB5æGØÐÈÛB¯bý`ÖlhØ,dÖ Ç;sS¿¢Çå8bË,vF'§<X½ +»i'\q8 pêè<}ÍÛOù]BÈ)~¨�®ßAñgIigìܦÅ5àÞµjX>i½}Öb Ðà-h=ÃWô^#Ñç7¤Â!| ×ê}[À)v(-?wàUìÐ +åH6Ó°%)µµ-àü6ô$zy Òð2rh A.éCü&üèT¢�9/#×\1ç÷ +zÆ´/�8; kÐ +qX·!crNn=ã¶!ëm\VaTû#Ë ¬`®X@ÒlÒ² Ãz7è¬ÆdJvcOª«ÑýEF(/ +£!G«åaFÓåIíÌòeBWý×.£^p¿r/Ú³ÑèPÌò[ï2SÌxJÀ#L©uV çTrÕaÄq«±ÏÝMkKÖ²2^¶(!Ý1¡P5 ö¤EÊò,.8)»{ZÿlwâÎ*p¯½äíÓvÎ[xs¼ÒÑÎ+£3O;g®vΫ¶¼Í´½32W;g¦vÎ0$p´sÎýëFÝðóÏÝOÏ;út´Äòü¸\qbíeõ2¿míåy9¢³ËóRZô¦híCbzõHßHô[ ѪÏÏËŽúü¼ÞM9aÐÛ9ï@éd¼�e/Y²aõùyÅ +wÐßéã"�½õ$¨Ôö*è0 É9ÞòlV#v;vëüümý´ÕÉwà^³E°ï¢�p$ì¤)g²>H=}B ë5Ð ¹1¤(2^N[ÙÝÈѤ0«a$/Ä!É;G{Ñb½%xUcBÓw:k±Þ.gÅ{ ÄÑcî"]7Ï8j zÚºïÑ-Ø¡/Ñ ª�ÐÁÍñ~ÒØå-è½>&#òcæÞ<'¬z¥Dd±ùQüÉ^àªy £º¶èËd¬3ÅãÄ1k`:ìI=ÖcöÑèyêù#Þíë¡^³KGÛ ÖéToÞáê<]@{¨»£Îu-vc20ïEÌo@kXV½ zÌSÍ0½ÖU @w¦³ý0(tQÁÙ©£µCìÖ3Nvk0ÄËåÀ½@ HðUH¾U¶U2b^Æ,ò`Lèè4PC¼ö3®QÃaº~ãc<;´A½OHÒ4`8³p6¤¬0»ÖG4ü¸9ÃN´¬îò¸ì[2zÅmùùqÇÿýMO^~^Þ¼v àòó:Té÷)ÅÞçu4WµP8M¼¹HêG«Ó» +ø"GpÖ@9úu@§¨\ରc¶qä8&BÑY/è÷#-â$è!éW(½{[ Òåßl¼îNñlÇî~$3-ÀSÇÍÐA°b räXt fÕ èJ1¡§M\#Çf¬oAk8ÞB"/@XLÇc1XHL¶�Sz§ ®CÚéj·Qܾ@ÈÉöEE/Ä Øä~=9B(Ö»dD5ø¹MÇhùÌE5 "{k8ë 2ÆAÙX3ë gÜPµàü6TA½|.ÃÊq-*/b^Bu@N +ÉÀ¬ÐSKLgè[ñÔ4gD+Ü!Ü'±Sv4ØL¦vG1õ;´³¾ @r5ÉÐ + !ptÃÎZHÊl@ v4ÃÆ0 õIù>oq:&.JÐÑåBàhÚâè÷ëG(P�Fb9¢,+9(«¦_Nói8¹ CìNÉÑgãͯ|>à¤`LpRÞY*Î,¬±39Fcg÷°ÂÌÒ3mZÌï´NÔi±cÜÊvnÄ-Ñ´²ËÏËÒo4þÕ77¡_iÓþm® ø+`WOx%Kf¶ÙY~¿^?küðùyýB»ï8á´ +èñ0z·Â8è]([lå6öc} [>·¹ç)?¿ÀÁWIé¨Àý¾ãÝJÇJÈ9##�Q�¯a_à©aVQÕ0'Mx ³jFÜÈ<5ÌE³NïBCÉ£ËÄg(yÙBG +¸�}T^ttiÀÔË_+ôe:7¹`+Ò /ªØóIu#Xa(¢7ê¡Þ³.meL >ðtS£B»Bì°7íË;9¿à~ØKY�wPïQ Ë÷¬~ùª:-Åc¹ÝUaTo>áè¼^ÆÙ>j±õÉyR*(cµÉc�#§¡�õöÅÅõq¡|^§¦WH8N2æÌ2òº±Âç¡2˳&°cÐÇy³¬ôƽÐJßÚ|) ï@oR '×¼ÓÉ¢ùþ<^NlVÈý £úT- §]2¢Å,©+ÉPRGD°â`@§ÇE(ã=Õx)ĽþÊ "^ Üðv°FÍqjøYZ\3FRÙ¬xxvìxhåÿI/ðyYvL|z^6üóòÖ¾P½ß¯ðylwÓ//ÐOø¬òEzV=?zr m ã<'^&gAÄÜ(öõç>è¼1ìbk¸5ÔN0o[`õÃâØa¬ûôý0.Ð +õ#¸â/Ð9úu^ïRBýr½MúÑ h1¥düÊÜR[ sKFP/µ¡¶ª+aU_éåÊ? âËËÆX"ÏØ8f(_Ðé ~ÒêCX¦½ù µâ£±ö FHê ¨7¨úú7¸z û5Hoå½ÃïmøhñÈ{ñð¤ çýÎn=Çzñïä䬡訽Åt4DQ Ç æ¯§¡8e÷*ÞÛ¢j='xq0%ÓÙÕXo´Å³:½µÄ [1I+u+y¥ÝÈ +ý² +Î+õ~Ysú;ú9S0y^¼<-¤)1g5WÆ¡� 6Aî3/bR·ÂÊ3«;§ÖIfØÛ\óóúÒ6¬÷òównó"ú}9í³ÏÏËÓÝ¢éïà÷÷²ë u.¿WÝèñ:®D®2>ÞÊNë\î^w7ø}*Á~ßAmÚx¨ëô¢¯ÚÙêÏÐé,¢ðùRÈsM:13ØC*¡>×$nÈwr{áÞ`´tqÇq (A½êÌüht§}#£á` Câ ôÛýýbõ$t^d¨W¾änÇ|¾Óöl ÀCìThFò ÈÎk¬êðthÈkLúk:R!fÆ×1]ÀÌPwF C[»¦4'ê°[Õøô S1IÎß6 ß*NXä3ëü94^:§Y1MvzÓÊÞ´²<3ÃLPg`Dä`1&ä3ªàêf¸>4ÃU6C×ô{Ù¼ñ¶HfL�ÔÁÑg¤ºajé`Þt. MÍÌËUíý?r¸¾à¥ÈÜÄRGBÀTï[´²+9?JlÊÖðoÚ|^-èW ®ª%ô`Lè!¸Ñù Å£k!ÆR½øl y .A:Òë^¾7N¯ÙånÍÒ/ØE3äõ{XrTW_3wÔ/OÒlÓtz"¤é<Í;#ËåâpD"ëP³k~¹Z±Ws÷S°ÊÓóº Ø÷åçevcC?ï¸ØiüÐyùò9MxýR%ý»0£ÜGÒ⯰¿£Óîçl@4~é"A¹æ¡3Ýgê<±NjPç¹G*Än¸�ýzÁpÜPG[à8k¨¢ò!]E\�>q> +?O/:$g%½é¬.h=X¡ëFpÉé>6¥ëú;òû3%Úñt3Ú¡'Ð9Bc¸8@IÒ�X¯} +Pzíur>?/·iIGA)9`B¾Ìs¿;ÁÔ/gc +ýp¢zsè/HÁPÂ@ªÓÌãØÍ)Q¾`+ÖÏ»VèWúûÙ-Ø +8mmHì¤�Ä7 °4Cs·å Ô¼ÿ)¡Lô¨£°^GTdÈ*HhÈúa õ"¼^ X`@£W!ÂÐõkê³ÑAÕkîßÈvfYS;UÃxÝSÞHoûi[Èv-µ¤Ïïe:8õ/-ÓÄ!ÇåN°5ú^CÀqËút%Cút%ÚzFÙݸyT¼�pZCÐÆGO+¡^¾ GTÃeì<é49Ä] ëJ°ì¢+XaPª[HñÑõÃÎQI»i@Î;¨&!»G3ëDz}2¤k).¾ÅÉ×çãçßþþüûOÖFÐ壯ô1¡ßß Ï÷ãÆõöûÛçãýI¹úÒÜí[ÊÓÊýð[ßî_cÓà ×/ÔëǺÀ¤|B¬·´æ¾öe ¼`û(áMò]Xo»xø¼·¡&ðr¯È¾ëaûkãxQ$`aÛ`Å)Þ^@ °âm�¦tAûÀOзaÚ6 °´l_½tÃ÷ªú|7ÆøQÊÕ?yaá'\ÌÞ¿¿EôûwEf¿ÿÊnÅß¿êÀû÷÷�¯ mï²ÐÇñRX~2+Xe}D/È~8 O�EÅ×=°VH®>Á$¡ÜÏ\è'ª}BþÈ0;ë3Ë.»p«î»`ÿ^Qdyì¬éÀ]j<Anx¬Xº&Z\3ÒÄ»-åá +@¶lhïè.ìh`97ÆsûýÐúvìq²Y;ô£öAôùM{~Ð>&zhÑéþüÍîáþ±wwñ#4[ø%àCêû[UïìZûá ôãØ°æþ,´i"hhçäû:Ýü¾s~Ù;òåh®2P õÃÇb-xj|¦K@BÚêã ?ÿÅ@"Rµ=\M νäÀ¹ YÁ*B¿j °ÌqÓ©9£ëäÃ3;�í5±~K& /p´?H-Gúõ2[vd%Oì(%¼2ec}d(])ã/páÔDH? àÈÝËbÐ/h (FÌÏE0ågÀØäñwÖ§ýúù20Ô i]E-`Ò¡GuôáA{àéÃ$è¨EÁXìh®ê ëó¨FÀúèÀÄBïhÚÇÎ &¸�ÇM!W"º^òDËqýáKFû@nGÑ_PöÀѪ]Ìø!ôSM¼ìY/äõ·yyçEÄr~_Liø PÅví0"pCsÖna§a=IÓõ<¦M(¯@ÆóãÆØ=,Ma9Éhø~~}XÁpü:É>è¾£Sgøè "ôzIÍòfùôªÙÒ,å«* uWÓYöù$x:;(ÜDý(y`¦ÔÝ1ËÑî[ÍzÄ ?GÃõ FÖäºì×`WeÕ#[]IÔaº¬-n@ÖTý¾1öñZQ\íg<ÙëÚò¢Ù7W>Ù]sÇ?¯ß5 +è÷±ÕÔÅÉÖ1"ù{niD(Aý¶VD"trLH;ßïxp>½WµHvÖÙlÖbs]£a|~; zî-_¾´ðû¡Î¯X ã8n;Aó\ÛT$"tÿÖNN¦G×µJÈ"z»nu}Ñ÷¥>#úWT8èYk4¬ÆúmìÈ3Q3¡8Fzfl÷äìD¿,ÓjÒü¿o÷D$â\5ÞB½±DÇ«U´#þäÑ=G.èäA^ "çÞ %EþÓÆV?óg9àèUмïM ÷¥8(ãÂÐ +±T(ÒÝq¡Ý¸m.é0.¼/àµyGmÉÑ^í3¨Y¶ü j,Bö¶¢ºY0ìlõ´W[ëjLÀÔÑ^ G¶ºãìÔÑ9çWº¯PºoÊt5Þ0èãaa\ç® +S\½o¶uG»</ß.Aû}ÎTcÖ/a$;u¦{V�udbà¾�SzzÃÁôÔqߨj®Å à°\ÁqÜøRÀòP�bLKYnÓ*YAëg úò¤[üò¤àØ\SM�|®éCzÀæÎF¤¢ §«(uGX ê45L®4µÕåNf¦ÇòVZË$â¨ÞÈÂ"ÉÆO úê±_·CóÉåV?Û°|?/[VÞ6¯.?eÇ&>ú|»yíE9Ë~_º4ܲ»òxà[6noàó?G;ê2K9Ö´kJÀT´ k¡ÎÔ¨:IlÄ@Y kvù�ÇIÐ3þbA{¨w÷ªô¡M$è9n/�ë^V¿§gH`Äd{θÃÔgWh2¦ý^á÷ëëOÉÃ?°ê· +0É¡`§Ø§P +;&ÈT¼�GS1ÑFsYgA"0¨ÏÀ0è?Dè¸Õ�£9Ç¡uRqµ=ºÝa¬Üo +Þo¹½?ªsôÇ^Ư@Ø"c¶ë; YFü*¡¶B�ßá¬Ç(Þ°<ª¢_ +ªxYº¨ dNHù ÛÞÜ-a4O{lÊ, fÈ:ÆÃBpàÅþ]ÚªÈ0.tt§[0è-¨ " òªrlrvmcLfÃk®&$7äzÆÞ·+^{ñãõº#»fÌB§&Ç©p¨O ª[e\?Ö"Çà9ú»ACvôw{¥Y4/0A¨ï!cÇÖgHPª¼?ư»reiF/`¬7¬PrýF!`¬w¸[1èw36-Édþ¬Ìú³ KýÄgùòI &áy·ã¯²ü·ú¡v$A°â ü½ÉHx|_[ýD.sñ}ªh ø>Ùu»óîñý}ªÓÛ«§åÝë(Ñý¹M&b´Çg1faï.oG5Ö{ßûUÔϬ`7ezýîïìSÞ1+ò&ä¤èÊôìÂ_ÞûpäYöáHsTnÜçÅhWÞæÅXUWd~[¶Ñ×BW¦¼+®ÎKu 2×ôëh{ô§¼|Ñç?ÿñë_{ýë>Â׿ýÍA~þlícÅ<)~[ ?ß×t9w+ÜØæ-ã\ÎÏ/ûÝ_áó 4Ùnßoçpç¬B£º·Hú}Ë +nXr£·û}Ë_»öjá', ľÊà}±¾_x9ì¯DoáÝXÉàþ M%{¢OÀj`zp×ö¼¾CÔ]ºÚ + +\Á&´°ðìyR$ø«´m¬©ëAýÂDV9ÒDúÉ�ñÆö¸Mø¦+ÒÄxïKwaÃÖ(h¢½�Ê ) ìØt@! ,ãA +x2Ø ¢i<°IE_ /xdÇ"^P$òwáîØ¬¢ëd=HT@±@!êÎ5e,DÙ¹¦=@}´O(ø@LXDLdéhvõÈ3%Ê÷m¤/À¨ì°Æjâ¢t¢«`P=À°îЮþ¡G~û +Àç·ìx ]»¾à½/é ãM| {_×ÿG=S ¯L§\eDÊ8ؾ«2A¿Æ4ÖıoÔb¶jÁm:ª9Ak¼*úéä(F¢+ÈØdXÏÙ°9wÛ'T£´~i¸b@ÉïÂüÂqIòT$Vîq´`T¾ÕÄfïz´Þ;g¢uªYUH»|Óì¢gâ+Àüþk*;þªr¸_ ¨:ÂýÞ¼k6Z/*¨²m, ³PØVQYgÂJÆQ.Öé6»L@ôkQ#Ê bþ@NºJe@õ`Á(Ô·,8Äg¥ +u0¿ |Âm|"áPäø l" P!b¿p·ªÊôLwU¦°´0ýërÒ\G¼s%Á6÷q°Ý¡m`TëzT#±m¬CÑ][ÍH×V3d&Ë´0éÌ/ÏËj¶&ÕL9Ðá¡YrÀ![¿x£õ3Ú±üdêÂjà.ÏËÌEPtæ¢ß4»¬@f°b,o++ä'\p:e±@YýW 3XýjV ¢uÿÖ#c§õ àOSÞmô ü|I\ÝïF»ðÅV° EJÈ]X ô¹ßW¯LW°xÀ¨0ÈJÜ0¤±ddv$D¸ä``¢àíËd0ÈT(1"ÉDd¢*SFcâ]o,å ÞHsa@yÄT 19*!¤y*«m¬ÐXo2°HUÖ ¸Èg°-ÓwípFÄD~¶"®óUY7g¦:¸cß(ýxhâPPŪÂÙé¢P>Ò¸Ô�5ñµ3[èw×F¶@9uhH#T FiÊ!½�;W¡8¶ 1cD1çÖØf1X×OùH¤*[c®" PEªÐtkì7èfóö¼àÄ[NÜ3özæ±_Ð+âz¯¼ik\Ecbm¤fy5Ö§ÜEptítî"ºvA Ò£ "¥R1(£:B'Gh +(XùmÉwpÖ'{¶BèÙ1õÓ¡qÆp&Lrn/À ì8V(P"¦T«lDaö¹@'ýpgÖ1ÂæÊY_Á²v649÷.>Prï¶ÖÈVD·@Ï%RªU¥T1UL(gtí`#â¬ìdûýdFºÀéteªªüe¿Ð¬ù89óöø +×å[Ò{y\.¾i}§Îë òÈüòíòñæ¾ý¾÷íÞÏåy�ÄäL£ÿ¼|½ÐÖ~GÒÓIØÅ§s°ý¾ãÞTB¿¯Çd1Aݪì8ì²ÿiï}ÿùa2]ÏeEú~ú|; +¾æGäW5ùÑçÍþø9J}f?ÔýÍ +å§eAìvdAðvCmü¨ýïHÿö¿?Ó»b4~Ðæí£? ýwÜ©Àø_±Pô0¿éú!~ëTmÊHîL-¿ØößAØCüÖñßZ¾Û@ùËiµ;õñë¿ú´ßßæòC_9ü³=ãøèÿôeòì¼â¿~\³ÁýÓïæíPÿå¢ïÔÚÁU?ÝÚ?ëþÃnò\Ö/ãñ³ãþ?£®Rvç v/ú/ôÿo¼ì+}~?Ø- ÙøÇzÎævÈ3?d'ÇéDÑü=¤*0ÿßvBTüæúù ùMúL× é/?ÛÑò'þ¼Pùmð÷åz>b4ÿvñhÿÔþqü-ǯÆßzþ\Dþ²Àý¾IÚïÓÓ?Ëþ·`þDîSPüïÍÌÞÞ<ãgý¦Õ/ u-ºý>;Ø<îú|âÇ÷ßÿ_ÿá÷¿ýî/â¯øë÷óÛúq<÷úOÿßÿéµ3GÃðQ_Jûû¿þõoþË?üúãßýÕþþ_þðïý×ÿø¿þñÿá¯ÿï_ýá¯ýÏÿ÷ë¿þ÷?ÿÝÿøë/ÿÍ_ýå¿ýõ¿þûßýáýáÿüëßýúÛ?ÿùÿýï~÷¯ÿú¯þÛ¿û¿ÿÃ÷/=úþÿ~÷ÿr<÷ñ·þÓÿí¯ßÿïßþÓï_«ûÿÃTeñ +endstream +endobj +446 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1027 0 R +/Name /Im423 +/Width 19 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xK``¨ÿÿ�Ôÿo�¢ÌØð0``0�£ ÄD;bn`��Sÿ +endstream +endobj +447 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1028 0 R +/Name /Im424 +/Width 17 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿßP!ÏP`Ï`ÇPÃð!áãæìØ6ð76Ès3C;C ?Ãÿÿ�ù§ +endstream +endobj +448 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1029 0 R +/Name /Im425 +/Width 12 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãg0hHppH8 pÀ� +6ð00(0$<pxÐàÈ`Ç��ë0¾ +endstream +endobj +449 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1030 0 R +/Name /Im426 +/Width 27 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xȱ 0@ÑR¤ÓÇÐJW\À LF;7¹RFÎKñàóM³ËD¨±&ðÈnæ®·ÿÅ +O%H#ÄÍÀÓîolj +endstream +endobj +450 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1031 0 R +/Name /Im427 +/Width 48 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]ı ÐOH 1¹Öì,YÅÎ-kѹ#\IArjÉËH¤�Nìs6Xǰ·=p¶]TG¶ã_§wUæß¨K?l}ú.þ'Ø,L6÷ÊÌEÖ +endstream +endobj +451 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1032 0 R +/Name /Im428 +/Width 19 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã?ÀÀFÌ ÄÎ@|v|øøäd`Èø +ø@Hð4$°3��eL +endstream +endobj +452 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1033 0 R +/Name /Im429 +/Width 7 +/Height 15 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcáã±°0((HH8p��5 +endstream +endobj +453 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1034 0 R +/Name /Im430 +/Width 19 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`ÀÀ�F¹3°3ðð3Hð3Xð1ð1Ñ$dÑ�A 3äø�[< +endstream +endobj +454 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1035 0 R +/Name /Im431 +/Width 25 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``l```b9 +Æø¸ 4g$,�ĸAýÿÿÿÿÿo��0 +endstream +endobj +455 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1036 0 R +/Name /Im432 +/Width 14 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÀÎÁÃ!ÁbÁaÀQ`Pà²$p$$ð7��¶ +à +endstream +endobj +456 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1037 0 R +/Name /Im433 +/Width 11 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xg0lH8pÀá@:<P| ÀÀà�ä4$3È1��Ø +endstream +endobj +457 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1038 0 R +/Name /Im434 +/Width 9 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcf`o`o`f@�ùf¼Ð¹á1Ãs�#j +endstream +endobj +458 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 593 0 R >> /XObject << /Im318 331 0 R /Im209 218 0 R /Im319 332 0 R /Im203 212 0 R /Im320 333 0 R /Im204 213 0 R /Im202 211 0 R /Im209 218 0 R /Im203 212 0 R /Im201 210 0 R /Im211 220 0 R /Im320 333 0 R /Im209 218 0 R /Im321 334 0 R /Im321 334 0 R /Im204 213 0 R /Im205 214 0 R /Im209 218 0 R /Im208 217 0 R /Im322 335 0 R /Im320 333 0 R /Im323 336 0 R /Im199 206 0 R /Im354 367 0 R /Im114 121 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im430 453 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im432 455 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im102 109 0 R /Im102 109 0 R /Im93 100 0 R /Im102 109 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im428 451 0 R /Im429 452 0 R /Im118 125 0 R /Im365 380 0 R /Im120 127 0 R /Im99 106 0 R /Im100 107 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im101 108 0 R /Im117 124 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im286 297 0 R /Im281 292 0 R /Im256 265 0 R /Im260 269 0 R /Im258 267 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im260 269 0 R /Im241 250 0 R /Im260 269 0 R /Im338 351 0 R /Im243 252 0 R /Im282 293 0 R /Im241 250 0 R /Im258 267 0 R /Im335 348 0 R /Im235 244 0 R /Im435 460 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im103 110 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im100 107 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im139 146 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im97 104 0 R /Im108 115 0 R /Im99 106 0 R /Im100 107 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im428 451 0 R /Im118 125 0 R /Im365 380 0 R /Im120 127 0 R /Im74 81 0 R /Im277 288 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im108 115 0 R /Im97 104 0 R /Im101 108 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im139 146 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im99 106 0 R /Im115 122 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im108 115 0 R /Im97 104 0 R /Im93 100 0 R /Im238 247 0 R /Im74 81 0 R /Im127 134 0 R /Im99 106 0 R /Im102 109 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im253 262 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im106 113 0 R /Im99 106 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im109 116 0 R /Im110 117 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im114 121 0 R /Im93 100 0 R /Im112 119 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im214 223 0 R /Im136 143 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im93 100 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im118 125 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im93 100 0 R /Im102 109 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im120 127 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im103 110 0 R /Im98 105 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im97 104 0 R /Im99 106 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im107 114 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im117 124 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im99 106 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im117 124 0 R /Im93 100 0 R /Im99 106 0 R /Im100 107 0 R /Im107 114 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im99 106 0 R /Im103 110 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im107 114 0 R /Im114 121 0 R /Im104 111 0 R /Im98 105 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im115 122 0 R /Im102 109 0 R /Im93 100 0 R /Im105 112 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im74 81 0 R /Im92 99 0 R /Im100 107 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im118 125 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im120 127 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im245 254 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im246 255 0 R /Im93 100 0 R /Im115 122 0 R /Im98 105 0 R /Im97 104 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im107 114 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im102 109 0 R /Im96 103 0 R /Im103 110 0 R /Im96 103 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im108 115 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im98 105 0 R /Im105 112 0 R /Im108 115 0 R /Im105 112 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im74 81 0 R /Im127 134 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im96 103 0 R /Im102 109 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im114 121 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im93 100 0 R /Im93 100 0 R /Im124 131 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im111 118 0 R /Im99 106 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im100 107 0 R /Im108 115 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im136 143 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im114 121 0 R /Im98 105 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im260 269 0 R /Im436 461 0 R /Im241 250 0 R /Im111 118 0 R /Im100 107 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im96 103 0 R /Im235 244 0 R /Im235 244 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im114 121 0 R /Im98 105 0 R /Im100 107 0 R /Im100 107 0 R /Im113 120 0 R /Im96 103 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im123 130 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im124 131 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im93 100 0 R /Im115 122 0 R /Im93 100 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im118 125 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im120 127 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im114 121 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im94 101 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im103 110 0 R /Im104 111 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im98 105 0 R /Im111 118 0 R /Im99 106 0 R /Im100 107 0 R /Im95 102 0 R /Im99 106 0 R /Im102 109 0 R /Im98 105 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im129 136 0 R /Im93 100 0 R /Im102 109 0 R /Im115 122 0 R /Im253 262 0 R /Im101 108 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im112 119 0 R /Im116 123 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im128 135 0 R /Im129 136 0 R /Im92 99 0 R /Im293 304 0 R /Im324 337 0 R /Im133 140 0 R /Im118 125 0 R /Im101 108 0 R /Im96 103 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im212 221 0 R /Im74 81 0 R /Im272 283 0 R /Im74 81 0 R /Im132 139 0 R /Im120 127 0 R /Im107 114 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im117 124 0 R /Im96 103 0 R /Im97 104 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im106 113 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im107 114 0 R /Im99 106 0 R /Im106 113 0 R /Im106 113 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im254 263 0 R /Im255 264 0 R /Im256 265 0 R /Im257 266 0 R /Im240 249 0 R /Im258 267 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im123 130 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im103 110 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im119 126 0 R /Im115 122 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im100 107 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im116 123 0 R /Im94 101 0 R /Im96 103 0 R /Im106 113 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im432 455 0 R /Im304 315 0 R /Im430 453 0 R /Im115 122 0 R /Im102 109 0 R /Im93 100 0 R /Im105 112 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im99 106 0 R /Im100 107 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im111 118 0 R /Im101 108 0 R /Im74 81 0 R /Im119 126 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im103 110 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im104 111 0 R /Im93 100 0 R /Im114 121 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im93 100 0 R /Im115 122 0 R /Im116 123 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im114 121 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im98 105 0 R /Im103 110 0 R /Im97 104 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im74 81 0 R /Im135 142 0 R /Im104 111 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im114 121 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im115 122 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im107 114 0 R /Im113 120 0 R /Im108 115 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im102 109 0 R /Im123 130 0 R /Im117 124 0 R /Im93 100 0 R /Im99 106 0 R /Im100 107 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im111 118 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im118 125 0 R /Im96 103 0 R /Im126 133 0 R /Im103 110 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im105 112 0 R /Im99 106 0 R /Im123 130 0 R /Im113 120 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im102 109 0 R /Im93 100 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im120 127 0 R /Im74 81 0 R /Im135 142 0 R /Im108 115 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im111 118 0 R /Im99 106 0 R /Im97 104 0 R /Im104 111 0 R /Im100 107 0 R /Im96 103 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im117 124 0 R /Im93 100 0 R /Im99 106 0 R /Im100 107 0 R /Im105 112 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im115 122 0 R /Im102 109 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im114 121 0 R /Im93 100 0 R /Im102 109 0 R /Im124 131 0 R /Im93 100 0 R /Im115 122 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im106 113 0 R /Im102 109 0 R /Im99 106 0 R /Im114 121 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im74 81 0 R /Im137 144 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im116 123 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im94 101 0 R /Im123 130 0 R /Im117 124 0 R /Im93 100 0 R /Im99 106 0 R /Im100 107 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im432 455 0 R /Im304 315 0 R /Im430 453 0 R /Im115 122 0 R /Im102 109 0 R /Im93 100 0 R /Im105 112 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im99 106 0 R /Im100 107 0 R /Im74 81 0 R /Im137 144 0 R /Im96 103 0 R /Im105 112 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im116 123 0 R /Im94 101 0 R /Im106 113 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im115 122 0 R /Im100 107 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im114 121 0 R /Im98 105 0 R /Im94 101 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im98 105 0 R /Im101 108 0 R /Im103 110 0 R /Im100 107 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im108 115 0 R /Im117 124 0 R /Im104 111 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im121 128 0 R /Im108 115 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im93 100 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im118 125 0 R /Im430 453 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im432 455 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im93 100 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im117 124 0 R /Im96 103 0 R /Im120 127 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im114 121 0 R /Im96 103 0 R /Im105 112 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im99 106 0 R /Im114 121 0 R /Im98 105 0 R /Im94 101 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im107 114 0 R /Im111 118 0 R /Im98 105 0 R /Im103 110 0 R /Im124 131 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im100 107 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im74 81 0 R /Im127 134 0 R /Im99 106 0 R /Im102 109 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im253 262 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im106 113 0 R /Im93 100 0 R /Im96 103 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im106 113 0 R /Im93 100 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im121 128 0 R /Im108 115 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im117 124 0 R /Im93 100 0 R /Im99 106 0 R /Im100 107 0 R /Im115 122 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im124 131 0 R /Im94 101 0 R /Im93 100 0 R /Im114 121 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im121 128 0 R /Im108 115 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im94 101 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im95 102 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im108 115 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im105 112 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im101 108 0 R /Im118 125 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im112 119 0 R /Im116 123 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im120 127 0 R /Im107 114 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im108 115 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im96 103 0 R /Im111 118 0 R /Im113 120 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im115 122 0 R /Im102 109 0 R /Im93 100 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im126 133 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im107 114 0 R /Im117 124 0 R /Im98 105 0 R /Im95 102 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im101 108 0 R /Im104 111 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im113 120 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im96 103 0 R /Im100 107 0 R /Im93 100 0 R /Im93 100 0 R /Im124 131 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im97 104 0 R /Im74 81 0 R /Im244 253 0 R /Im94 101 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im114 121 0 R /Im97 104 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im430 453 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im432 455 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im114 121 0 R /Im96 103 0 R /Im106 113 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im123 130 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im99 106 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im97 104 0 R /Im428 451 0 R /Im74 81 0 R /Im127 134 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im98 105 0 R /Im115 122 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im430 453 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im432 455 0 R /Im114 121 0 R /Im99 106 0 R /Im101 108 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im127 134 0 R /Im99 106 0 R /Im102 109 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im253 262 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im103 110 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im113 120 0 R /Im96 103 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im100 107 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im107 114 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im123 130 0 R /Im103 110 0 R /Im108 115 0 R /Im97 104 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im106 113 0 R /Im93 100 0 R /Im114 121 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im101 108 0 R /Im111 118 0 R /Im99 106 0 R /Im103 110 0 R /Im96 103 0 R /Im74 81 0 R /Im342 355 0 R /Im343 356 0 R /Im355 368 0 R /Im343 356 0 R /Im342 355 0 R /Im226 235 0 R /Im226 235 0 R /Im226 235 0 R /Im374 389 0 R /Im135 142 0 R /Im97 104 0 R /Im93 100 0 R /Im103 110 0 R /Im124 131 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im128 135 0 R /Im135 142 0 R /Im97 104 0 R /Im93 100 0 R /Im131 138 0 R /Im293 304 0 R /Im133 140 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im112 119 0 R /Im116 123 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im135 142 0 R /Im135 142 0 R /Im135 142 0 R /Im110 117 0 R /Im74 81 0 R /Im135 142 0 R /Im135 142 0 R /Im135 142 0 R /Im110 117 0 R /Im98 105 0 R /Im101 108 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im109 116 0 R /Im110 117 0 R /Im107 114 0 R /Im99 106 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im112 119 0 R /Im116 123 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im100 107 0 R /Im96 103 0 R /Im112 119 0 R /Im99 106 0 R /Im117 124 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im101 108 0 R /Im118 125 0 R /Im244 253 0 R /Im360 375 0 R /Im117 124 0 R /Im102 109 0 R /Im99 106 0 R /Im111 118 0 R /Im104 111 0 R /Im101 108 0 R /Im120 127 0 R /Im74 81 0 R /Im135 142 0 R /Im135 142 0 R /Im135 142 0 R /Im110 117 0 R /Im114 121 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im106 113 0 R /Im99 106 0 R /Im111 118 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im109 116 0 R /Im277 288 0 R /Im125 132 0 R /Im332 345 0 R /Im244 253 0 R /Im360 375 0 R /Im117 124 0 R /Im102 109 0 R /Im99 106 0 R /Im111 118 0 R /Im104 111 0 R /Im101 108 0 R /Im74 81 0 R /Im135 142 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im97 104 0 R /Im93 100 0 R /Im109 116 0 R /Im110 117 0 R /Im107 114 0 R /Im135 142 0 R /Im135 142 0 R /Im135 142 0 R /Im110 117 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im98 105 0 R /Im111 118 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im244 253 0 R /Im291 302 0 R /Im136 143 0 R /Im277 288 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im114 121 0 R /Im104 111 0 R /Im98 105 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im103 110 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im103 110 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im116 123 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im104 111 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im105 112 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im94 101 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im74 81 0 R /Im135 142 0 R /Im135 142 0 R /Im135 142 0 R /Im110 117 0 R /Im114 121 0 R /Im99 106 0 R /Im101 108 0 R /Im103 110 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im98 105 0 R /Im139 146 0 R /Im96 103 0 R /Im106 113 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im113 120 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im106 113 0 R /Im98 105 0 R /Im140 147 0 R /Im103 110 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im97 104 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im117 124 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im103 110 0 R /Im102 109 0 R /Im98 105 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im160 167 0 R /Im108 115 0 R /Im97 104 0 R /Im98 105 0 R /Im97 104 0 R /Im114 121 0 R /Im99 106 0 R /Im101 108 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im114 121 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im74 81 0 R /Im135 142 0 R /Im98 105 0 R /Im105 112 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im114 121 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im135 142 0 R /Im135 142 0 R /Im135 142 0 R /Im110 117 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im117 124 0 R /Im94 101 0 R /Im98 105 0 R /Im116 123 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im100 107 0 R /Im123 130 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im106 113 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im93 100 0 R /Im113 120 0 R /Im95 102 0 R /Im98 105 0 R /Im93 100 0 R /Im108 115 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im109 116 0 R /Im110 117 0 R /Im214 223 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im117 124 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im123 130 0 R /Im102 109 0 R /Im96 103 0 R /Im121 128 0 R /Im108 115 0 R /Im98 105 0 R /Im102 109 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im93 100 0 R /Im115 122 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im244 253 0 R /Im291 302 0 R /Im136 143 0 R /Im277 288 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im74 81 0 R /Im127 134 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im291 302 0 R /Im100 107 0 R /Im99 106 0 R /Im99 106 0 R /Im97 104 0 R /Im243 252 0 R /Im260 269 0 R /Im261 270 0 R /Im258 267 0 R /Im335 348 0 R /Im261 270 0 R /Im128 135 0 R /Im291 302 0 R /Im135 142 0 R /Im291 302 0 R /Im106 113 0 R /Im160 167 0 R /Im293 304 0 R /Im294 305 0 R /Im133 140 0 R /Im117 124 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im135 142 0 R /Im135 142 0 R /Im135 142 0 R /Im110 117 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im94 101 0 R /Im108 115 0 R /Im100 107 0 R /Im100 107 0 R /Im112 119 0 R /Im114 121 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im93 100 0 R /Im114 121 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im101 108 0 R /Im118 125 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im120 127 0 R /Im214 223 0 R /Im130 137 0 R /Im122 129 0 R /Im112 119 0 R /Im135 142 0 R /Im135 142 0 R /Im135 142 0 R /Im110 117 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im101 108 0 R /Im135 142 0 R /Im135 142 0 R /Im135 142 0 R /Im110 117 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im102 109 0 R /Im111 118 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im105 112 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im99 106 0 R /Im117 124 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im100 107 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im214 223 0 R /Im135 142 0 R /Im135 142 0 R /Im135 142 0 R /Im110 117 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im114 121 0 R /Im93 100 0 R /Im135 142 0 R /Im135 142 0 R /Im135 142 0 R /Im110 117 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im101 108 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im123 130 0 R /Im102 109 0 R /Im96 103 0 R /Im121 128 0 R /Im108 115 0 R /Im98 105 0 R /Im102 109 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im244 253 0 R /Im291 302 0 R /Im136 143 0 R /Im277 288 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im108 115 0 R /Im101 108 0 R /Im107 114 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im248 257 0 R /Im108 115 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im101 108 0 R /Im115 122 0 R /Im96 103 0 R /Im114 121 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im112 119 0 R /Im116 123 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im135 142 0 R /Im135 142 0 R /Im135 142 0 R /Im110 117 0 R /Im98 105 0 R /Im115 122 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im114 121 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im93 100 0 R /Im114 121 0 R /Im101 108 0 R /Im74 81 0 R /Im262 271 0 R /Im437 462 0 R /Im438 463 0 R /Im166 173 0 R /Im269 278 0 R /Im164 171 0 R /Im174 181 0 R /Im174 181 0 R /Im185 192 0 R /Im171 178 0 R /Im180 187 0 R /Im166 173 0 R /Im175 182 0 R /Im176 183 0 R /Im185 192 0 R /Im266 275 0 R /Im169 176 0 R /Im171 178 0 R /Im169 176 0 R /Im263 272 0 R /Im166 173 0 R /Im439 464 0 R /Im182 189 0 R /Im166 173 0 R /Im168 175 0 R /Im169 176 0 R /Im164 171 0 R /Im171 178 0 R /Im163 170 0 R /Im176 183 0 R /Im175 182 0 R /Im174 181 0 R /Im166 173 0 R /Im180 187 0 R /Im166 173 0 R /Im176 183 0 R /Im163 170 0 R /Im164 171 0 R /Im163 170 0 R /Im183 190 0 R /Im171 178 0 R /Im172 179 0 R /Im169 176 0 R /Im263 272 0 R /Im164 171 0 R /Im168 175 0 R /Im169 176 0 R /Im166 173 0 R /Im167 174 0 R /Im180 187 0 R /Im164 171 0 R /Im163 170 0 R /Im169 176 0 R /Im263 272 0 R /Im166 173 0 R /Im192 199 0 R /Im164 171 0 R /Im168 175 0 R /Im185 192 0 R /Im182 189 0 R /Im168 175 0 R /Im168 175 0 R /Im164 171 0 R /Im171 178 0 R /Im163 170 0 R /Im74 81 0 R /Im262 271 0 R /Im262 271 0 R /Im440 465 0 R /Im166 173 0 R /Im176 183 0 R /Im172 179 0 R /Im163 170 0 R /Im171 178 0 R /Im192 199 0 R /Im166 173 0 R /Im168 175 0 R /Im164 171 0 R /Im163 170 0 R /Im169 176 0 R /Im263 272 0 R /Im166 173 0 R /Im268 277 0 R /Im167 174 0 R /Im168 175 0 R /Im169 176 0 R /Im174 181 0 R /Im166 173 0 R /Im165 172 0 R /Im166 173 0 R /Im174 181 0 R /Im176 183 0 R /Im167 174 0 R /Im166 173 0 R /Im192 199 0 R /Im164 171 0 R /Im168 175 0 R /Im185 192 0 R /Im176 183 0 R /Im167 174 0 R /Im192 199 0 R /Im166 173 0 R /Im192 199 0 R /Im176 183 0 R /Im163 170 0 R /Im192 199 0 R /Im176 183 0 R /Im174 181 0 R /Im179 186 0 R /Im263 272 0 R /Im176 183 0 R /Im264 273 0 R /Im175 182 0 R /Im166 173 0 R /Im169 176 0 R /Im176 183 0 R /Im185 192 0 R /Im182 189 0 R /Im169 176 0 R /Im171 178 0 R /Im381 396 0 R /Im168 175 0 R /Im176 183 0 R /Im167 174 0 R /Im166 173 0 R /Im182 189 0 R /Im168 175 0 R /Im166 173 0 R /Im192 199 0 R /Im74 81 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 459 0 R +>> +endobj +459 0 obj +<< +/Length 1039 0 R +/Filter /FlateDecode +>> +stream +x¥}KÓ-»mÝüþ3ùÔ|õÃÃãªLRvYCOYH~Þ*ÿ>»w<_w¯µ¹Àè>ns �à¿ýò·?þíðãÏ¿üÛ/ù«ÌÓékì¯ó×§Kü*Sþ±äðµ-óßýéßü·?¥°þø«ùåo¿}ü×çï·×ëòçë÷qڮ߯¸¢ßß2üýÛ÷è÷÷? Óôµ÷ ¤û�N LÁëÿ¹ °Ý$¸ÿI?°¤3Èׯ /!(èîA¶ T©hBL_kägd!æÅlc¶qΪ#ÁàÀØ�«:�âZ4M¼Ëà%ý×_Ã| ÈBÜ5ñAf8?bÆÚÆ1aEoãMî.!®`RÆàJB.í%ZÅ÷]( éA*@®2È_é8Þ2¶ï·ïó×:¡ ,úþ®ékÐï¿ôøþý6÷X?Ç?Söó[~©o#ª¾Ïé¦AǯÝ?¼>¼pßÿ»øë÷fçïåí{I +l@á"Z@N· H$¦!C ÖU dMã×zó"»wêÐ"oAYP 鷺 é Ü6Àª @uh ܰ}·�Lìát(ÛØ +^§´æ^7\Áí0¥ðÈÄ0«ïAØo!aDgR«Ô¤ü5ÅûÞ""æ^ÿ{äbÆv$;X4C¦(Øõ ÌêqJpƸi1U¢M�rü +ð@ò>§7-¦J´Âý¦Dt+!Z�Ù /àfFÓ-39þ$n5Á< °é§ ú{TÏ´8MbHÊDdHkñMîM bg~óDlSRí»ÒÖGQiÊð÷!Ì¢¥·PvÅ©:D%8It8&n}ý. £ (ÐÏ¢´=<ÓÃù,Êì2ñCòY´"}$$(ÃäP?rg|å�¢bçQro3_óEDz t{~�ìø*ðúÛºêq¸|¥Ð;êNõ0£üøå_ô)¼ÔcÓî0sfyDgFô`Æç�l1Hq\P*²EsÇHÞкõk*?E(gâ\RvsEy³°hùZÃO½Î`Ã9®lf:LP&<è�Aé +0X¦¯ `.;Ô~*ïpñ£CqàËqi0¿téæ¿¬ìî ÞWüì F_f¸äÛ÷üþ|Ë÷ x%Wà÷ç#ºÃíõ÷Wô}Îû¡-ÁïåÀ~ÿÀRõMpóÍ10iÌï£Ì À-ÈÀÈ"\ÁÝ÷qx¥<²Á]hï%ÔôjÞæo§I\AKñ6;Âz¼ßÁJÌôP"°Ä@ToB,ïÊ{e:]¢®¾Ô°ïäû�,¨óáÏK�AAÎÜÃ[zq° 8.jPrYtN@MCÅ.ßËQYØ`èê`U5E» +@|m -@ǬÒ�â´/,¢ +0Ì;H¤ha|¦¹÷4®?=\è{põgèî Õ üP¨ATE³!¹Gi9ä|Ç8ù:b/WäEWo«fq¿¯µ |ï^yÙ~ïu=å{¯½ kNÐõEM 8Ü==:Rͪº6@% +ɹ½áí× Èyɸ?9Gqc (ÿ¸_2Ë÷�3ÚÇ¥ÍP¿rXàQ$eiAiãÎúAÝ %:yÚàdl!Áhµè,½.Xë¦àÂZCª#ÏX+»>Íefèú×÷æ~ÉìYsÒB*fÉt° þY ÔJb:¡¾¸æPNóüì@ÍÄ9àòYôEWS6´473¢¿¿>;ò6|XuÈ $g¦rPjPwwªÞü¦+xÀy÷°D +¾üû¡`n,× Z^³!#6pèô¹Ü©øã!³àËÏËHý~Þmhùºþï Ùà{½¦v¿¯×Ô,?¹ ôµ.ð<½0Üì¯+�Rú:Ê1C¥°´4äp¤¥ç ÜÓR^×¶�Ù/AG Ú¹H�"øÒxÇÈòçKc +ðÎÁ½ªW?ÔâEÖb¢ µ²û:C?¤gUú¡»AµÂîha¼_ÑrH»q; Çóµ2}^ÒwFY�õÑåù{ýuE-¢ºü¼£´JÚ�Ô +'$�ýµhà:ï]ß8t²]X.ßK?bÑ=y¤- ¨Õ ×HÇ£ÓjKè0W6Ññ¼"ÀRÂP/7mðî·J d8�,ØQ0?3¯@?Î-%ìh1¿+h»BÍz/t®3²XúLà}Õeå+/ø Ü=ó»B(Aýe@F cÄ1 +vÜDèEd :ÇûzÏqÖ�ÏûdÄ÷=Ø :Þ÷@ ÞT=Ù3Ò p²MïÚ^^ä]õ±¼D¹ýáí(ê=¯éë áOs9¢+ô£ºÝÕ!P9n &Íø]æD6 qTâ¶»ºî®å_Ó{J)¯õ +JÏ»¶IóÃü¶OS!þ¸ë°S'ègyH÷ä û!Aê/«9 H÷Ë:Å +é«)¡çf¤×-o%´Ê©~0@®;7¬rM»më3¤"¾9¢øÜ ½ØQ&vºææÉ:JxÏìëb-=M Þ]aùZ`1thB#{ÞÒOîÉM[ÂI~×qv¯_4aO"Mà E´#*Y©¨ÎÐ +(½][IüK Çî¬&VGDrD7-¢ ;#"y +F¢ìË$꽫ò»:(z¡D|8nº +ßj$NIÐã9|TAYRqúÜ/Õ·Y×ïå"P;ÌÏÓW¿¼|ÏåÄçÙ£´¸ #1ËÖ{È.Û �tlÇ.Ë:ûO±3 Ëê÷in� ½L@½éê�#ABôÀ{%<@µ prz¸YS"~WHhÛsód|!¬-àWeý¾|èF°VHälp�½îªA¬ àÌ&à�øèøsxêÀ~LN¤áD*èA83:ÊBO@çï)cý@hÆ:¤_ÌPú5ÁÝN ´à£H m0\<×Eô£D�ú}Gñ`Üp<)0MPnVpG&¥HÓAÁ4¿tñ[F3ÉÅ{ %îY]A?KÚ<ñÔËëÉ + 'ô¬ ³@GyIHè¹Â}±þ4/aW,ûT4GØÝIEíEÉëï ³Ó XZÚ�{ÑîGVM ¨O¨[á&f$f¦^Î<Ú÷8(Öß!ý>ÁÓTKðÊ!]{Î1VdèG/Ã2LM4ZêFkV·èà¬%TqD§ï Á×äÔ:ãÌT®¤Ï0³tpGq·Ç6T`^ê¡íñ0Vy{Ì1zì d7Zì í`Ln¼EÝ Ä%ZHü¢~/ 1b ?!þ5Ï�û¤ÙSÚ¡ þ¼^;¡ù; +HíÏÄ[!D4á®×^s^?«Å¶"£Ï5~¹@'{1Êcd·¯¬À±º+`5¶"]f8½Ø êºuîÑ· @7ä¥hxV¤-X¡ïAÒ#?6d²è ]EpÂU×Ï*à÷uáÅÒ'ÆyýÎX]áý0`Å[1b%Öëx¡'óÔñ¬rw÷ÔØ¤AÐônÐéuÄ~LNj£=ôxtþëC Ú q¤³LH�!ØÔ¤´\ÃL$â ä+ÿaH*`ìǤXÓ÷è]ßtùý£uXª»öï6îÚä{¦D^�a<(Çä Fc»@'¢3ÄQháK-ªïpsÓ%,Ðèý¹^»ÖHÎy^»Öò(j¤?mCGí¸Õ!jQÄ tâA;2ýîaÎYöáa¨ÂÌR¿(Ê8±Ô@q8æàûÁ!µð"Äxvå¢aC ÆðªÊ+AÿÅEïf~(åÙqÇyCV¼ò¼A7 [!èô"`Xê³X2r|Ñ)Æ4?FQúð,©(غÉùÇw�;R@¯AÔïÏÓéÖRËfÒçÖ~ÝQ5cÈPdܲ@$±ÆmøçõòÓ J_~ õ<ýur+¢Nc¤qÁ2ªÔ!ãEÔip*ÆâW~«ÿ÷w1fUØ3Z.'Ã=Ô¡f8ºY u[U-¥:PfÃ÷P×âyUµQ#;ôpê#-ÖiëZuoù�êH¶ÀáD}À1ã8XÙQcºÝFu1êÍc@»¨'u1"gìxã#ÞÄÛ +ØåÎñÆ6ÒüùÆÂì +²lÊ åî2¯åÎP/ w÷{rCW$ç4qAó÷pU,è8qÑ' ÑP.¢2d.nø@Õ9©'-*¤(ë* Ã8$OØê<AHhoÔ + +Ï?¦³'m(SCÂ*({¡ôÐ¥¬y^4T�E�]ÀmHÌ+áÆ¤Ì×AÃÎ1ãxFVÂL"Ï:G°N® (÷ñB-Ôñ=lÆRx¬Rxõ$a ±R»ÀÌH¯£.Èyê¨gí( J¼à ZWâe{¦Ä+<KîJÌ!V¨²#³ªÃ®´LXòZ!p8(¤Ñ1¾ã#¯´DFù +t$b}èIt²;Ìâg>`p,¥RjæFì"ÂÛ-EìÂSþ¼pÄ.)8cÈp�Ü0Ö§Øa¤î³°=aD{àA"V3;ÚEï' B'$B Üj)qmôÇHµCz|gÕ¦JP*Á@άÃ@OÎ:è·P¿-Xê/æ11è5ô²¹*NõÒý¼A/N�õ'èô é£p¢Uò' #lÐ9¶HÇÒ3g.u+GýHEg|è(1vD:J¼À-ÔQâ-À¡ÃPòR`|ë ¬Ó³®Aþø²MPãÜ{Z×éÿy ªuT:ÌHD%×çţ \ O@¯çVAf s7µbÞËê@ñR½ë¼=ò¤iÁyN~Õ°bW®t¯pºo0"x{f !aÔÛ&ÂäÐQB=Ø(}~%ÍÀ½WB(ĵ-àµÄ8*ûÑgÚyØ"¦ §<ÍLëG(.8motga"+gèIõzlé[@RCj�{©!ÝÂmÎΡí�¯åÅG\_ È¥¿k0sG»¥´£HåóÒê°¡Äa°ÃUn§öçÞ¡KîOji3ü^®¢³¶ðÒMßPæÐcöÇÂÛ4áu[ÏtÚ\*#ûéû;¸Èhý~p:Q V<ÃÎßëoÂ,¦1ï·cô÷8Èêôn"$�I½L ºS»Àq¤Qumm'$¤BÈH>î¨3}ãVo9ºÐt&á© I8,h¨}'p÷à]¢Þ�__$ò2d8Ý ¶FýP4î¿A+hL~¨±9÷ýеU±1×ÜÓ�q¾íáý$1|¼2:J&hø<,eCGË»IÛD^¹Þ1.Ã]ÔéæJºûeºÏQRã.óù{ëbÑsÎuOzÕ\)½aX±+khã5q¾}_æ£åÞ»éátn ®8Ø�³6�å0ctÝ}=+m@*¢Ô3ïT|Ù½ +6i!YM¹g Îh¾ YÉðmoj~hú|ÛK¯YJ%«8p¿f¡µà8¨Ò¯ifì uyæ[Æef&ú%©ae¹V¦ N@?MóÍà>�§Ë{ ßÕå )ÅæÜCº2½¿Aì} ÆFÈÜsTÐ9$ ftÅÝ5>åËi¤oÁósýh4²^b@wpÕvÞ3½Bª÷=ÓÅõ{&Ü9Ú.ª¹'p4ýA±\õQ Ƥ#$%B"$%i¤l O@Hì*çÌr¤eípg±¸¾",eí²8<ïu'PòËçzßÎÊ#zY~oëC¼LÀ²ie üuª°=[@èhÐ÷*æ +@N-¢+AN7uP/"®ñø +jñße�aÆP¯BÑônôÖrïº�G2²½r,`/¤£¬+RB{Í@Ö�)Æ9arðk:LÑ' ×Fèô~kC:DÚüÐ £-:²zùC?äà>Ð)g±}Wp÷C½¦{×È·%Öu¯§Æ¡ÛAÚ#ê±ÁbÎæ] #tq}jÈ8 Ò;/nÏscjèYE§`<ä©£ÈAµ +×ÛENèýkSÒæÏk¡�\´yzæ÷ä'eÂnHç (ø(ÐEÃ!7@:¼ ¸ Tq8¤÷üÃáóoØëeìêu¢ õzù'ôòÏ' À¸"FÈøGCRHGý`ó:º8-s ÔbZÆ" p0EÀ¬Ìá%%_]° +ÊÑT~Èñ¯6ÂñÑ£ÇÉUd¢« fòmPÒáA1-ãÀpeºÔÝèUUQáþ>Ùlh'i`\_×ß?b;âó÷x4£Ïu Î^Nè6øóRBù.]4áspö¨Ù¹ü¾Lbýê®ë. \MH�òÏNæ«, GR1¬~FRÑßAîNâ`ÌÌ÷ü½ÉEÅðü- +9¯±g(?½½ÔëÓ÷: Ñ á³èD¨¬W ràjªð|Õ +¢åLÀâx .~C²¡-pt¹àïë]º tÓÙÓ +ÐôÚϧö3nã¼X ôÚGìä8Ðø)FÏ«íJ1õÄé`�bå·Ðëè:q#BÑ\èî¡px÷û>@er^í¦=}'u/úVYGÜ=¥Û3CLÐ96t¸ëÊ®¥üÓûLÓVóékÝ~JযÄóöà(áPt1! DìMuFxÈâVÃÛuf½w£9u¼ë§Êe5*_Q� ä{TÀWgzSÂð5_T`ûZóAqDóWù6ÀM̧9àÎiÛÄ57|jÞó{¸ð}TX2ê +`PîÕLùåËOparcëöU¨î#tÚ2Yt§c¤³ùx(ë0»ô, ÁÐV_�L/!ÀÁ6 äüÔÞæ§9k¹EH ;|sÌ(°÷%¸y.RËAWä}Kz6¥ $@,æ&?ûxCØùXÂ2ÆÜ1Îç¸kÙ92@#º§üèH-ÄItæ®]©Ãê×UEëºHûh^0T'ë!í{3ß°BäÓ÷zh(Ñåçå°Ú³óÏË×¥k£?{n59=Ï^yIPqÂÊÙUæìåÌ2¨}CÐKHRúß3 í¿l"£ïýd½ àHùúHÒÝÑÀ^Ï»þï³"f$@qQ5hÀ4ÈCÕ°@ èøõ ÷å{áiª} èîÌåH=Hý]¸Ôoâ8Õrâ( A÷fÀ¡nxÈmÐáÝuú�ËPëÓ3-Ðy¨±#ócå]3dUÐXô-q'sÏ8Ut$:UÄÏr9©b(ǹ áY®sA¯³¤týö:YÊÏBùqrê_ÙõKÁtA_@)%«_Yu̶¢´÷à@;ÒbMA!©>$&l�ìä9%èH=tÅrPlMÿâV +>&âtØÚyÎðµôr¥;çÌùûXô÷K/¨0Á¨2Î@&¯Jëg�RË«¬<¢2ÌÙ�x:ÊÚ¼aWðRXCÚ'(ý©se¬1þR%BÄîÐÑ{úë²L"K½:øBoݱ? ¤rÉ@ôj0{¶óíÖN.³°äü½£Ì`ÞÓ�Ïê©/pÖBóôÐ% ÐTÇ`ª9E#ã¹|:ਵ¨¤³§B"tàDfÅ=%dV2ÞCáU!UEÝC»4ëh!ï:' Á¥ P¤i vì@ÐHÓ~E8? +·ÔëÙEP +Õѯ¶í-)4¼}Dß)bóDiÔò£/¤@M"p ExòMLÈ:(9349&vyßÛ:ÝÞïaлv¤ z'ëT¬ºÐçaÏøjç!ðÎCmØéØ4OFh:$£}iX+ëùû{P6ð;+ëEA~æìÝe�½0ÎâqÞ¡p[±Á<ã~ð(ÅñÎùP ê=»°Óß»Ïè÷¥kÃÖ*°@ èF´ #7_tæ%:iÎMÑ¥ú°Òk `nêb(bnIJ ´"½û¡{<Æ)QÕìÀ#0 ¨íY£Ë0µtðú6ÎÁ³<ÃÔÒ¡YÌmé +N©ãA4f¦Ì8«Ñ9(�ùÖ(C7æ8²±&;¥+: tÞ N@/ã4+æ¢#çø(æ´àI8Tâh8t¥!dIºö·TBV~y³Ï!Fö*âxýÄ"ìÆhª§ïó½ ¡ÔÛÔ¾ø:11u£d½L@�&lU�Á§Ú +[ï¬ÞRÓòËdÞ 9PÚN@¯æ³»óôbº¼I¤mì$}Í£0NT´T£2</íá~O8H\9îJV¬ú]Éj+ïJ6¨CrEy¨ýCG%ÐÞ÷$ÀªpâTïûÎJ¨÷ +i(ñ [ï¬a3nõ3îÒº^& T&hz5`ÊpRVlrF¼2ºÒhaû{Èÿãt]t tmзzÆ/ç 1:(¯ì²UCþ>1ÆÁc¤[°=;ZAaç4â/ÿ±È¥ÙiÐ1JéÏÊÛ /D:ì ÒJyRÇu[+'ô)i§!UÑ9hî¡#=GFWP4?BûF¸_b»Çiyx§ÐC?¤3§+±ôopu%Þ6I9ÈÝÞòÇøCz©%ÅÎM¼°Pz×$âtZÒs[£LPex¦=¹ï¥:R1,&İ'§@û©L$!Âä¹+Á~HgW^±#Öd×gÇyÆ©¥¾QÒlÚQÂβ2áR¾j(05Ô͸Á¼3æïÝ¡#Úý~ÛU0BæîÜ%h�^Ùà+Á¿¥4çÏeñ¸sþ\Né¬èåü¹opí²¶«âÓçpr¿¯÷T7Xæ¥Cu[ îl>]½¸H@íGwÀ�j¼z)xBpà*Y¶»`N +ÓK\¹ó FÄuµ2äó +dVËV|Ù½x"ÔÍÈаXõîë&×!g´{22¿=:"ödz§åC=%¤ÈX¨»N¸#c÷ Dr1üÜïôKr5#í!G¡^ +#mÇ:¾¸0w̰Ûw¬·�¶óW(Ç¢q~EèÉPÍà +xEò#öái¡'ôT£ÎC½±áÄ0ãèϵ'¤Æl,à=í'êzíÜex½ó?yGÄ#äºR-(¢ÈÐëoE¼z#Ö¼IÐñʵÔ=5äOÖµäRGÌõóYu6Â3[ ^Ì,úÞ? ¦§rvrGUö=ôÆ:+é_G8'$@ÂI\¡pÂüTϲ¥£°Ëö²ÊÝ Iè[ñuX.ßÉÖ q0¤h(wßâã¬ÁÜýã�õV5à6»cF¥Îy6ÑÓ ¬PôÛ¦mÒS2CG¤N80vT#k( /&Ç©U +Ùa!@5^×ÔÇaqH$föØ<QóÚÍð¡MßnÂÖV~WdGy£Õµ{0Ȫ&øûzg{;Êà ³r#f Æy-4^HkPswÈ,©é.�µ/ý;Ñóô·y!Op +´�O%o&TÐ=Ìptw¿/?)i-ÀzFÄaZm8³)¶bG0(AG0dD +H»í m,[¯ä¼8YÜFü ãÆªá¼7Âé. ¯ÜbÂqLé2à-¥#±§±ñuý�À¬qæíX!ç5$ ¿¿À£T¿l±|âeKÊ%Òj"® 0t[ΰ`Z8Âa^èIï8Jö�~° ÈÐB²»û+åÄè4sôßñ§ýT +¢:ÁÃDéB^èôv# z"Ì\tI¨8axv+O³]ÞmA®Üq4u0¯I0¢r§ cuTÁþT~*nmYó/ìu>Nìt:ÍÓßôÄzû³(fäÅ:$õ9a+Ð)3 'tf<¡ÆOÛ}p72NÒÚ?ë4½c7߯ÅY¿qh~`?oí1_hêðâòZ¾¤@r;(N+ð�,J@8BsÞºÇx[Îß;Þ¸�#33ì.QÿÔù{½÷O`w¾òÎ7pt:Íoô2ëxë^4àMÞ'm¼Ch:È¸ÆæÆ>'çä÷WÍx ÚB¯"v¸ üô":Ù îÜ¡FôgB=AÈ_uã1.4 áC^4B'èàÐzø\±Ô±% Ã#Å~°[D5?Ì÷ #[@&°ÀL(¿"7ª×ÄUõ¬Á< .»!¬\TõTf ê UUôì7 Ò¶¾Ë�tH[c_J®àÞX;¡Ø +t#¶93Fä:ÍZ0Âû»kñ$]�<XÔ óL|0 NØéïì±qp>ôc®«Ãìø¢ 3jÅ,¹Z¿¦ú!Þ]!%ÍÐ ÜP ägyyãâìoö¤¹ �OÊëß`R¡-Q ªñqÜ +àFã½³ù#-Ä£ ÛhL[_)ÛÅ{/àϬqn.× Ýöy§N+AþÐúCq/9è8¦á,/OôF8Oл.Õrö¼ v]ªFtù^?jñÊù{=YÑÏëgq5 Ëç:88Aéy +èiù=.Ïëth*hòçÉú^)]+H¯Ðêtº^& ?i±Îâ× è[ÑzèTKVÀbP Q,AD0£=OZÈ +æUZA½P¨´<dÇRZ÷óõL\E W1bG¤ßlXú;Ûzã;êʬ»x×Q.À 8ºc 80NÍx vE2%¬u'ßYÒJëN>ªDöÖZP"²"gèhái¢+a£ ZX°ËM,wu§ÎÜéAýõ®hÿþû±£cÒ$De]D_ü¹ãÒpDaz`rûSiäujÒbBÞë0E¸ :Àc*½1uÜù¡ý¡óXLe )t#Gþ!k!U§"@s£áêHû<?:¬cp}nä×!9áêU+%tÐä;së4zå #:¾&QXÇ%í,ålÚYÎAZì àIâhxÃOÃ#(GÃ#:i!1oxãAGÃ#hCGØ àè0ò\Tvô$Ë"¾D1æÖ vÛ1&ÍÑp°`IFÙK¥î&ƬßN p4ÜÙ©4m¡;%8¹ãN½hØ»o ]wU2ËË÷ºÄº~¦£e9Qe¿þ¼üÌÞâùuPxC³wA¤H|*ÄúD¸'>Z>XPó:Úk' èÕsõáò½Þk§¾±ï*�X»Ëô^;k ÞkÇ`u´×NA3pôÚ)%0`°ÄþHù KÐa°¾¾%ô"w+¤JXK@/ÄÚ!-VjH2©:Ä�ÒUsdÃHæmJ@¯bÐêõwÐÜçÏVxê% +PvºxÙA[+«äø_uä÷dDö +eÆä8zãèQf% ÃGÙÞ)è#Oã(KÍeIgØ÷÷j@$`è¦vò~ðð$ÒáÝ$z* k¡~_OpEz¶`Üñ@g4rÝ=îæÝ~HGȧV¸ÎÏC%IPb +ÎÁ¬Êθ:¶`4"HÀàIMÕ"þûP ud(My;xxèønÆ*$×açOýöS?ú±¬ú1Þë*Þ}©½Þ.kUÝG¡è4ä¬,oê#\ù³°J§ñ§Ö'Jh%¬]x÷zÐé4IEèpZbù|¦bÌ¡2ÛÁÚþü½¯+üyiÂBå3/ g3úì>¾k7Ý<¸ÏÎè÷uC³¿¥ÃËñ]$Çã`KhzêÃKX78£ÙR`d?1C rP@Î ôûb ÏZpÃg»+ ý¬Çw¡êó_àê:¼@#ô¿öL`Å6 ³T`7¦¿Í5xø2Ý©@U Ϫ@ +pö½X+.dßc÷¬1"#÷¬TõqoÏ»øpG]|ø¢C ÇwÝ ¾H@ç!I¼ÕO|vEìH䪫hÏyºÑ�¦tt3b7¢÷'p0 CkvRh º©X B[«Ì¾¼<ò¤Ê êHR}{q$ÄätBZìhD{ãJ¯@Î/æÜp®×%§·�N µP¨äJõÛÚV~ÚÓânýiOø+}xÈD¨$²ó¤S0â³@' Põ99ju·´gÝÒ®x+C3Ò1êO3Gý(ÔAGý¨æ(:7VH`ªö#rs¼Âx@aó½ÝØþáªÚOô'Ï8èO0"Ó;üÆñ6³`?tÉIÔÌ=ѧ¹þDßðÕþYDb+@ÄW,¨/*[öûVZÆè »¸Y\+>ÑÏËÛgyùÌdÌvÏn(J®Mxù:ºfçxGüÝP~z�ßñÂ~´ íl ï¥ÖïiÑS¹z.ÐK3²?O/ö¿× +^½@8jñh©Å£å3 òa0w2Ìg¦Ùÿm5<}¯§ÄV@~þyi²¾7�µ ÀÁqQÉЯ¸ipxsNß£Ýø½n/ýÆÆw¶ ë.+Ð+¸Í äA®¥æÎ+Ðù¨E¼i~M2¡j¦`%Æ7Ë�r/úvÉq@wº&í¡,gÅÀÝ(ë2w£¬�øÔA] àX ôF]Qô¼©¸g¢Äû½MT{¨×çEÚZÃmES¹ËfN0C%Èx óQdÔÿó�zõý\uìÈLÄÐèØÈþbãü½Î¢;=Ò$Ó-¦äm®àQ¢w(Z4@ç*ý¶7Õ®½Ö gÑùèù�pô+»#5âTª�ö£º +ÌU`ÑTþþú,0eá,'ØÊ#/ÔnXü^È(Bvr|88BT76_ÔMï;½ËÕaÆë׺ý\ÌÞÙHB.~@ÉÍUï(£I;J©kßÑpêÄñ1Ô4Á¤¦ÁcyF¿Ì¶ÈkÝÏi�@6/P:l»£éYQ÷fTquI úÕÓÜ0Lè0ôÔ cW*K Áw$ÀîÉÞýÙÖ+¾ßuàáV?ª~0/\M9Y |êò aÎ.yÒ aÕ}¥ÍÁx'8}³²¯4Ƶ!éyh ¾ÍYBuÀqɳ±¦üPç NXrRßàÓQR»¥4ÀvKÓ³@NãMX¯viEìFæV°V@°"/à º1|·gEêÇâ¤4ìHtl8[Ûû Ä»éØÚ[xtl-<ÓÂ÷´¼Pu' aça«ïØ�öÅ:MH"ÔßRÍÑ-Ä®ô®ãÆv¨sÏtðB~¬DúMËýÀ0îQW¶JĨ±ÈuGQ +©!oh {Ü©9H C½:<t )ºÂº�Îç©þ²7%|è kÒìs½`Ê{õ`PÖ`ò®*m+!Nn*m©¡Êï{w[H¨xéV@RcÝ +DOHýÀö0·Þre(D9M qÅô7|ÂÉ5 0²dEÛªF=ÞfTB �Wzô`G'ë:ÖðúbÔð½F© £a ¦ô9ÉE¨?ÇX`@ +Ñ}¹þÃòѢѵºÒ#"H:©®¼0z4 (»29 (VI9èKN=PH(JRJÒqÑpîÑÂ^3Ä]!ã>zÏ?wfCq,ÇÞ'ÇA® þ¼|´£¿&´�Ýh cñCc ê ¸*®¥À 8ø¼¡u²¤.ÑÅàè;9k6DÀpÂD kqÁJ$£a{à |¥=¤· t¼ '|~ä&@ú$dûÖÓ÷ú¥°æ¼ú¥CÊGY« î82 6¾èdÌF¤{ܺ8Z a½ÖÅJ@GÊÒaÏdhD:í IÃÄxzÃF+4°qfèÀð@ýÔ½aãý®C^Þ°qÅü*%G¢7 ŧ&4½<AG¤íð¥§Cì#à=ÔÉ>p@¤'t8J¡#sH0ÃÃL#ø ¥ò0ªO0rÖÌPõZb1©ã-çt#^ñ¦Å¢ *¨WNÈDÀ´á(#+ aÖuÖ® +2Æs +ÂZ'¡Ö«P³æ 8<Cj½C:º*ÀKÅhêft¶èFîï¢(À½pÙ÷8 ÕùÀ±rT2ã ÈVü²àA+®èd@±ã=AÁîÈKÔð=þ½vó2àgÑ\!IÌv`'qè²~áXB>Q² þ¼pUXëôóôóþ¼SoHz:,´Aá ª^Ñç²û +FaÛùy +MHzúÕ@ã¹:\âYEÚã¨@H�÷XÁ(lÃg¦& +Ë%¸úïç,ý>/BÍVÀZ&2uèÆ8MÒaÏÌI~·³T¼ÁíÇÄìAõ#,,Ðå#,¬¢´ÞD]%&ßÛ»ÌA#hTÜ]#`QÅ@ïg¹Èy:¬°ê4ÌØÈ§pCf»cÒ9»¢=èE!t{r½y·à´ûÈ +,ê°CrÑeø�p*oèÆthÆR õjÜVÛÙâè4Y£Í^Ä~LÇ%¡r Z ª^ûS=;m%8G XBN¤ %¨CËÐ8Ò±Vý:x´ê×Ñ,ÁNÏÈÒ*ú1ª+ôc:OÇ%('e 'u: ðuX'Ó£ Ñx÷sRvh;Ó ÿmpô6}çò-i#L3ÇôºIèG·¤x·wQ¢]ö^ï©Ó£Ãx rLg,E¹p*«!ÝGÙyø^ÖU²å.S _Æ4s>1"ßbf@ZèÎÐqñb9=|µ±/1 FêÎ8F,3«GÌ]´u(±)HÀ÷Fð>Ëøk<Ñûu¶øM\< WêkËïëc½*¾L�ÝW* èÙ|lÐÃØZ8½24wW¨Ð[M.BÔÙ"/#åg»zê¨3T=³ÚS¸ºÌxô"àù¡,Èxt èÔõ²«» )^Ä-`H/ô¤z!ùv¥W3ÖÖ©HVÄ^¼ ¤ys½â F¸6aøû:ÐÝêf:P½¨-ýX,Ð +å'5Æ|ÂpÈÁʽ@?¦½8ÒÙW(@]7$@aÊ_ïÔ6Áß"à »È£äÅ(BðtNÝ ,ÑD¸ôõ¦Ð�zíXJXòõlµã)Ý +RA{à(Á-jVC¬�Szá�sFG<Î%ìe? ôÔoÚòïU?Ll¨ùÁ q:bhC(«bñQ¨påQVq8¦×àÂpÌð¥Z¡sTpB7& CFh,Æä=¨x\ pbxÛ +vÏXò ñ)©5Nìä¨<¯Pu¢E:QÄfì4½ãuÈ6@i`Hæx`]'_°gøÕ!÷·�íñáiT B¥%`Ñ:FÌn§ùùsÙí0?.+ a¼§Ïþuh.ßëÅ7vw¦Ï[Ö!á;ÈóP¸;�$µ¼È·æÁBó÷nBc¿Âà@¡þËÌÓÚi.ÁÆÑ�,¡¹H@à¨( Ê¿v8ÙÙ1dÆ{dÞá+b,pt%õj¥|[û®�9¼hnÓ4 %ôsoG1òEúÿ O@ÆFâ]¹Ü=9NH:íXÐ#¢ ÆhÐË#ò¥ZؤMäÈ0pMtc*ÂO}E; 8Ê-Çtê³Þðj`lGºa@ç)ç]*ÑúP6Qø�p¢ÓêÕ¸ôGöî '赨 §WpL¦sÙ&U3et +LR?jtCnU;¯v3ÚÀMïTZ¦S~ÿ^áZÞ½±×/.ùki+1ˤIwÿ~Äú´éò½ü2)Tó÷â!K3#¿Kpò5KË«:àií@·Å«{A[àfB¥íçUpïn?ÒDJè(ÉoyÕ¨ZZÕÓBAêµKZ'-Y±iI6ëÙ@.aÖÊî¡«÷-¶NÜW ê^"t¥zÕD®Tï¡ êyBÔAÕQ+².)=+âo$/wÄ92åÆÜ +g~Æ?¿ÏIϬ4'#@;àxh¼b7t(áÊ K@®ä¶FÚ]GÈKGé½qÕ¡ãGRÕr2GÜ +OzÇÁJɳ¨D4$/Pzè:wÛO"ý}Þ篬ø$r4².¢aü é?8©ÐøUÎ¥Q7aRt°"Ú¥ÃèN¯»aRá Í9 6+iNî@m"Ýßò}V5�F°¹G§äbÐdèC@ $}!Dtl æx�íb] Ï `a!%p¢þÈuÓ2svYká¬`7 @�jÙ ¶Á¼¨Ðí!ª©×C´ÖÀ) ð¾Ô¾?zS\·P¡¤ów!ôsü¶ÆÐÏËâ³ù3y"˧,¿Ì^Æì¢qþÌ\ÈÉÏ£ÕùZoùüYZ¿ã®Ø +.æ.9vÁ¡¸'àHç<·=ò´¾Xé jÎ ¼B Ü<oá\Ðô;2§k36" X{[!{ó pÀNÄñ&ÐQù´b-Ð+ì9Ûí{èu|8BOäÀ#vE7;`éÞú}�¤¬3Ne¨ÂE:´áêO"Àݱh2&hz4+ä¨#hÏòæAÙ.öàè&<ÏÜn];ïA Ås}¤>/!~Kõ ÆàÖõ ¼3öezÝÍvQù +·Þ<Bgê BÜ#ð½lèHv<°ëôW6$½æ @W¤Ã{ÄÔ=Ä{ qÂà BHx"vßöuÝ9Ù< lGl�ÑÐM±+ÑÎðD¹Úó¾a;0g`N0ñhXHdé`Â"êN +«ºGÝyÆ¡þ>8C½Ctà<-ªàPóC-²6%7%h{xGÛ9Øaì ÞÔöf4ý©q»¡\A-¦úó:«éC-ì"mõõ9Zagª÷òƾP.É0IÖ3Ä2a :Ðr8èÉ8\PVkD=!Z#j!Cì<Pôû¡ÜÞßÃNvæ !°Ë(w{à-°öÒ#s$Og8}ýa�ß+áÈñ'[9¢Óç÷3tíNe©Heü~×òM}ÂW¾Ð(²¬_K¾/Õbï¿oÂ?_n×ì÷×åÙïo¶~¤|KÅûïÚéðÏxÅBâ�»_.ä`ýfB:t5 £ÛtèåVs$ÓÛ3ýiìA ÑP?×(/àsèÿð Ë~<& D3ü}ei⺯±Ú³ó÷·ù¯ù²{Û×ún´h¯ù&�wéP½ü#ý m¡?/it7 »±á@±B.Úýð}xÝW(ÿ¾²>ïA!Fk¦Î3gz_S{êù-ïnYÝõV@'`¯|»~UÃc èLØél+ö$º¶<èIìÆm¡ < ôbð�' NXË¡'a¬Ô{9þaë+õ~ãup¡.¸ivÈêxd4oÌòv ò++hÈ|¨21uÄL® ³(�~ßE{2Q²û¦E�àíXîuÑ.¬¦ã ¹'é=&¼ò½k®P÷¬}?&b¯ñô¶KÆÅ¨×«èÇJàx&üLSµe¨_Udí<ì¾3¾L@0ä#4oï{¡9`y8\²j°dÅÎÿíHXòë[çµÞ÷¨gÇi{*Ãí¡óôP{³IÝû7ã;öÜXÁÑf#ê\Iôô® ¢7c·=0*Ò¹3ÜBÙåÏù¥i{Ü0ågV¡Ë{1ØqÛá�PL¬èß z¢C&{_úù¼ê¶ÑÀЮkàúÛ&xF5mF<k;4àYÛ¡áÏÚ 'x ÄUî¶C}Oòñ¾gÑpzßsþ^¿q[Äÿò¹|áVËO®³Zwý^¾n«eÍ×ïõÚôôÖÏH,prnfxóä åf! -ð§LÚRÔR¼ËäÜÌðêË÷:%dEº:@C2!)73ÀúèÎ~@ï +Zc^ìÃíH_0ÃMtJ"-ôJÍèVl:ÍDBb|î¬ÍÏRWÉQn³&BWC-Öß'LÐéì3ê\éð =Ðè!E +±+Ôùo&¯txqRK¸2ÁÝ/þüÄcÀÕF±öÝíàcOXFçöúùfùÜXnØÓ(ð]£jÊDµn\egDl±9£-R°oÂqµ\Hd§+R +&èíH95ÔùÐÄÏÏÿ)Ty°¶¸> %m�W¦íìOf>¢J'ÃmÔ_¯îÏ$dHöJ¢«Gtó<lJ;%¶ý¡Ie´µåÔ¼QÇéí ôF:X¶ÑÀ¤JpÃáµÖáÈFGª&(�G$ÑñDªÉbydD9I*¬Qêê¡ODùPÏØÝSJæRÅå¦EwWø³Âÿ¾ !g|-Ì:êªö +;Ð~ÖU% J ^½,åYd´÷ zå FFÆ3qâMÄ, ÂÖáadTÁm,®ÙQß'qM§Ø£ÜN $Îrj=ÅþýHEJeF;î!Öz¿ßÅ×îk-NM#Þ¸AkçüyF4ýò*Ôª®ëäË«¯ù®óØåÕÞÇæmk÷Ù$).A3>hEt�;NzP!Ϋ&D +ÜÚÝGÏ©Y2ZÚõÅÚ{0ÆXY K?ßvdÑê~Âm6ÙÅ IÀÓ&Di8è¡q»"G )ö :D +tÐÚÐôt¢UæñlÆ &{ýgl* , n7 ¯å¦CÇ� $@Kif$S-^Ä`·Cæx +I<eÆ+ÔgC@y6d5ªõ +ì¼�tÆúà HiÜGlÇz£ä' ;¤:N uHoÉöåòqf}+ø\ày¾¾ù§§zÇøMÀ.ÐôRí+Û§z¬ÃÌÖ¡uD6ÔéDL/e3ÌA\�ź&Á^y© Ä-D:èx#Üù&9Ãüα ;"½¾5k)>g3QNæÑa̰XGaHa²Ïl"ãV°ÀÃH·Òy:Ư³²°våø0ÓhÃ{ ?1>Q%(ñ +[|ÉvX`T§ÛaÁÙ¥lFÿݵC^]ú)+ICÊ:ýÒã2u~o 4Ë D&´©o/?/WTúûëÏË®^éü|¯áùõ÷õÒÊ ÉÏQZiöÓÝ>Ãß³Âç}g gܳBÃpÔâÐ{#&M(Bh)Ñù{½>¹@ÐûúlzÇøz�Ýf<ù²(ÔæçæVv0Dù2"qÚ4/ÆImV¤cRBÏ+xèG\L£ç¡¬Èëf£æÈxa%ÚBOcÁ' 2ÑÎI@h EGt¡qÏø(ÖÉÏ¡qpAô@¼ âÅp@¼éÙ@7äéu^\& WÂMxzÎ0IСF[=z¦' 1%ìÇ7d¯Qx1A?¤Ã $º2´½_=¨t*ø,ÕuzB¾9c ê7ôè(Á9m2G8¯cD±tXëC3ÜðtG´i§!ËKóýfOéàLìiÆÎ¶=¡£"6MÒYÄb5/#ðdBN÷¬ î`Á*$ëpÆ~H§{q@%[qÌQS;G{HOéó½P-zÔ:ëgì{Uþ ¨QµìUó Uqù(J@vCRc®uHÍ�ÎË¿¾¢_ûG;+.èçoúK©Ãë>÷çA ->ü~Õ¾§Õ¯à]ýø:^6YoÄ}zVE;µ%äs +÷<ŧ¡³ôwïö\õ2°Û1~°,sþ^uÑô`QDOtí!�Ñâw É· _>O@N¾|ïEÄïøbFz±UÌWàhtÈqK6hF:Q+#îì/{¨TBùµ=üÏ]~KElFº +TØ÷+R¬¿»OØäh8BOè©Ïx�`%øfv¤÷ç®ÈQ;ó@àH7E5¢Å+ÞBýbE[è¨ ßðô{¦ »B#ÇÌAt¥W1CÔKpqLç(^h�Ý'ìÈä{¢à÷:6ð`8"Ó»(@à.H=TÇ8 ÒáÙ¹h!Çs¨Ð Wò/«d¼%"¶!½5è&Fo�ÎNxzîEàèøP@íV¢ +3ãNÿ +0C-ÖÛñEèG3´fxèè$ÌïVÄÐüJßðÊé{T63Ý6à]A3Ó^Ú³~ø,ׯµÜþ>öÝÂÅgòZá3ø1¹\ã:è!/�S[q«VtíFe5´"ùÕÿºÑ C5+îÿƳc22`GyêѾ`ñ[ùïùsY©Ýð.ËÀ~]êÏoð{ùØ8}V¼;!éÉ©ÝÍûÜ íò½/¸û7Ý£¯û#¿çuÚëGÓ éPCGwÀÞCî@à(F¿ï*Î�xñ06ZØ Q ,Øè[`'ÐeUÚ-cÔ6h×ïD+"cØn¤+§l1Ì¢X³Z3ºÄ¼]FJèi '/jcRH0mY$Ü á�ô-vdö=ö#:¸ ShåË=WÊò¹öÏЯËãòsH³â +}¹ÞÇmŧ©Ì7hFú&¶úãþ&2tXsæÝúåÒhr@ÄÃ0Ñ)u#6FtbF{ÀËx:8C:À<ÆèhEWÈëáê�ûÎægiMݵ@[4GF0ÉñVm�Jj¼ÕÒÔ!5æø®X༼ñÑ&æÙ£Ê°+×ÁÅ èM´8GéýÃpnª_ÜToqv-wüh�±û02 +óÝÆ7`J,¿ÈÐÞÀeæ9Õ¼àìÊu'2?C^4%¦\4|Á +ã¡'!!pW?f�µmá)¹rù[C¸{3àEÔ'îRdÚq1¥Ä qP(L ²®´P$=Ï1dÇÏ43åF?¯o¿Ü_ç\½/5;º)Pmë3ù¿wQ¤ñSm¢cÃBD +è©ÿH:¾Ôö®0 ~$H)"r}JpúÞA¡ +8(",ééÊ´¼ ++±\7ìQhüLDz{zü'X#J·Ï,= °¨±t' ß6mó"høû:Cùòup<-ª+ÎÄ3Rá&æèVAù¾°5Oëz²ÐÁrRÄÙPÃÙ;6Äaö$y!*Ú£Ù ¨ +`N×Á5=ó"+ܽ|ÃF¤ó+LÏ¢áÝ£N@'Û³-LQÛBvQ`4æ HÐ9J ³¶�*ANéÐR᣻!¹ËPnÄÑd§Øx¼ÑÝÄØ@D×8ÓÍpÃyn¦ÐQฬËq|µà´æÑ(e8&×YFDGB'�ãGWÎÈ;X>ÍÀÑÞÑ ;ÀÈyqf¨7®¡d #F+ñÁ÷b"ò>K-J<,BÙéj¼á=Ô«'(½BT*â�Ãj¹ç]« QÇ`TÛ:£ÚFÔ1ÕÄÑ Aª{ØÆr¬0ôrpVg)ÁùsDþºD9Aáéà½!~p÷eñ¿üCû¦æï.ÍÃW'I(EB*B}À"rg¤ÀRî2I"ìÒ\¿3Fs>3Q|FJì@ÈgM 8¼UX_ÿ}Þèn ¨ÿþ +å'3DE¦g!ÝÀ ¹pG!9ôþÛ j°B'æA¦ ·F{=?Nî%àÀµs@ã´©cöb3â±N{y^ÀÕio¸:í!¸:ía!:h¡:Zl~æÒBîµ>Ì=}.+ÉÀp,DÇ&õÖ F³wl#´PòM] +ð0ÖñQOyXq@yódw8*¥ÚÒ`Ú>7ÿe %dÇÀðN}¢rÍ@¹-46M§zð0ØõÝ0fP9vÚ¨Çûûøðöýw?��_kKxÅd`¢¿x¹Â7J} ÝëéVq ák¾ìâö^TZ+Ìý +ËÊ7_j0!lH!Üõ°ÖrãéLµÜlÙÞôgÀÚý¡ÐÓmgþø®wE2ªâÚ±ã=<gz°÷ë{'g=HB%lAãûNþnB*ê3ôG:Ô^4#ÝbÃû<GÉ!Ó ,Xu§2c^6 ¤ XaX Cý«pYFITOLùDh@õhX°óu<9ÖÚd3.8IHJP¡RTk8 ýý¤ê 6Q#8ÎÃåð;#èÐÛ¨ÊÝ5ü}-é~ÏnÞ×ÒLñóÅ;ÛÀí°áý÷ +¬åßu�92·çHY}pù^GÊêõx =Ë1ÚþØ÷«¶T)ÃdÁx?HEwªGÑ4}®è¦ÔÞɾex÷ôLÊè&C®"Ô¯,f´:Hfdrôú^þ2q_E-¤VsËàà »"wÈ*gLI3¸B_è!ÎHâ�±^S]ö{ä56#ù àY?Ñâðt¸6#Gؼ»Bå@}Å@Ó®å@Ûö-ý)ÂÍRúMY÷ÆÆ,ÝóÆT ±3t4_Ä»¨¿-XШ3õu2`¬4J==æeÑZTÄ©¦ iÛToÎP{4/qÀ¨CƲ'Ñrfk5¤!Äq©ü[³!¸A0È_<LyU66bùt~ÔqïR`Lç8 +Òléíé(z]ö<׳äû@]6jôp4ODrHB×:À +ÏÃû[EíÝbTÆ s1GçlÏ0Ì}%Ø1w & ìÊ¡�=Ð_æcsýÅiØtöϽ*D:àµ#½×@QH°ÈA±=è"dztGm8NÐtõYÃxHé- ÞÐ0¬ÅòA#�ÖâMÌ.8ýVõjÃ{"Gܵ$×vc È÷6V.ä¨�Dz+3Q°«@_ªC¦¥¹Ò#éTïÏÖ¨óçþêòËÏËaàåçåÀÂóÏËÏ%+ÏõçåW+ï-}õÝûurXZ£¼<FI´º;wF ;#à~3Ö?ïuêw@§©.H O +~é3C Ãõ3£<};è ÉÆF¨?±XáôØ�=ô#½cÔ{ǰ²£^ èÆåÙXk|éÝç4½Â=á è £e$]GÊ jäÇ$%¬âeiJã°j°Ìz¯ïÞ3ë°£#u|¹wf}¢YÍôeôÌÚê«}Y&iÂÎT~±k×ä¬(A_"ú7Öi!ý:Ø8(g¢wÑKptÔÇÃGz{ôáä¤$µ ¨ÓÒlzýDè°k¡®D>õ;¥HÝuÒöp qÞ t[ [ÁÍPïÂ7Á èLÎÎ8U IUimþ!$G$0²Õj#*äøÃ*JJ(âdèÉ×çÆ4=êJ3NïdWèJÙÑÎ4}iÀ½ðPÃ2:À°=w)0äP¯æËxq4òe ìʨyØ4yzBê¿5ùC*åÝ`Å9ãá_§ò+®½ÀÎßë²æç×Ëû â¸|/Ãlq\¾ëb (½|/¯cÿpgù9úÎHþrõ#¼|/:ûÏû!"z +þyjËÖ@fLH0£å4] à´5¿N£¡W£é«àgÁHQ®Õ5/y°(wÆ^@ËçM©Mßgþö¢Ë Ûøým| v¨³¯Ðu%Ú¢$AZZn¥|èå Øêå £:BÁ;¤ÕÐ:Hjú}OKÈú~¾§t +@`FÜÓ¶ôº8Býºú1 +ÌÚaÊ+áïëÉÞQ3N½B#Ö7`Ó6W4ãpP®û0¢ç®St »A¹?t +Ø8x@`@éàÁg¹%Ð9Hza<繪Èè »/RÉ@7æx¥ +t#ÖRÔÚÌpÿ~¬u Oµ(×ô`eÿî{òjTÑæ:1-Gña"_¼&èô2÷BRN6 Cº{^Àafä³ùBèËH!#I.oÈ8vùQµàÎID¡~\êPÂõg-¯ {PpzíàðGº>Çåú]õP/H&ANm¥g%rÐeÃÜÎÅõ¬"¥Ë6ø²½Þ£<Se¨@ÌUЫELÄÉ<tÙJ@ºazè@úTR¹â;ÅØ@riFxþ\N ]9}î º®$4ݸÅ×+'øûz5¬åçï弬ñ_¿×Ëü}½1âýstDúãÙ»0Ý´ê¿ó¢ß÷pG¨B:Ýuô<ûEg{ÔËií]Ïð.1¦ÚF~ñú~©6¬HLµaË`�SUágà`ª HêìIt¦Ú Ygª+§¥±>r<}ï(ÅÄSÑBá´ø4Ò÷ àÈiÕÎqÈ0~N«(Î8O7åÜX2<ÐÚó +ô+¯Õöwà7¹òÚ¡ÚÃAËJ.×oÐè<4;`ÒBRÓhúW¾ÌAÑHiu÷ÔCa´ràÁ¨ÞhoÊ÷$+I +@`Aq±ãÊ«wv^Ìø8Õ¯9T` :ìné׳Óg@H(8ó0·ËSt·ôÃÐÑ%Ò9Þ:ç�OÈ '8â òz®NÊW®á@ÌzfÂ@³ñ&èEéùÙiº×?RÃY6DRþ +ɤs-æö=*ѽQìËäÓ,cJ·CâÊäÇeÒ@ÎS|½¥^@ ²÷¡lEua0$+ILîè$¤z?»,)a,¨·:¸Ó÷º¬ðçuùÀ8)ª,P;ÑëǨ|MóKõû³ôtÖ .Å¢åQùµrä�i)¨Åe»6ÓôD@qNÏ+Ð1#Þ}' [`«'¾L@©[Añe�½¤:##vD¡ 5TBÚ´¼óú~¨~dÇ `,½XÊ^Iü.@y EC/{½r<Ël"Áë×ú"ýÎÆà!PK4¦äó +tnÂбfèÌ,¦xÐØÝ3eJ²ñq¬WU'äNUÕØéUÕ o^Ò¡èÈØëUÉí¡£¤tÆG²üh?ÎðH^øXwÂ*$½.Põð.ÐäÈ£:@W¦?ñܧ$añ¤ ÅîAô#üpåS»¢Å£µÜyëµÙ÷èåÇ^V÷ú½÷?ÿñç?¿÷ú×ýÁãÏûÇo¿n çÑ«vtéôÐxÈaïxäô}NiÄqlä+)¾â±#º°êÓ÷¯çÄ}ß²Ó�/¿pàÞìX@0òËVfu�ÃÏÜoMù�Iɰ½S<° +áP "!¾âľ Ú�3@ú_HPw=ÈoZg D/K�2¸¶´«30ñ2pÚ�ph®3¨K(XÁ¥a¾¹òÝ9gp·ª³¨t´ ûè6.Hâ,ÔÖ%,ØEªK°g>)~ôÓ£ K¨3X±@G`mùôc�äÃ"c¼Û®·Ì¥µô¦çT&¶ô¦§lZ1ÏeBK�Ï@öH1âs4[%BðlÔÏ ±)Z�{eÝ·zÞè.¨^êAÆþà¦t +¶F âx@±ÑnöêªpË* vu3ÔäÖ¯INÁR9.(8~.Ä)8è6®x@ j®Ç©·.\àÔlXBQÑ1@ã)¼ $«6�´Æ»?`»p¨«SÂ^ù®lZSQML0ÔuD()áI>XR.m»Y#Ý Ã<ÝÕ`Ϩ°W¾ÇÊT`¬,º"3`ÆÆtîÂü0FJóÃ)hý¦ÊøØ°æë�(óý^ÄxÁ¾_öýýéǼù;xåðÆ<úé{Gtcýüý=¸açòþtæ}._� ¹ÊgÉ-̾Ì@ÐA? +àîÌh¶davoh¶dVdCn,MäC½¿éíM»3vg¤É´Ûzoî(°¨rDþ7 ü¸Ì@¨¸== »0ccÒ¡ÈÎÀ.XeÔÐË�«t?°o3 2X±O2 KذG£ä°AtW$ß`MÔIô4Ù ¢G¢ÉNmæ*n£v oc$n\ 2üE)·®ëABD3`è P<è Áý\ K(P%`·~_µ êÁÝ¡0@¸ÝQ¿2ÇpXtìbA ®D'^ïí=ÔT×Wf~Î@¡'Xäs¡=¨êGi=ÁÆÐ"DìÖõû4Áųb·rV]·.ßï4ø¥ßo[ ¿YAVá1AAÄ)8Xð6¦(ú +%<ùxOØ++nÝÀ¨Êìxe~)PTNõîÖ)rP,õÿ>Àw§ü_~ûËoþ:ü?~û¿,_û?öÆú¿ýÓËá總+/õýí?üøOÿý_~üñ¿ûý?ÿÇïÿòÇßüÕ_ÿø×ÿø¿¿ûý?üøÿïÇßüݯøãüýúÝßÿÅ¿þúñwøýÿúý¿ÿúã?ÿø§_ý׿üÍoþüç?ýúOø¯þý¯¿ùû:ýã¿ÿþ?¿ù×ÿØ¿ûú§_ÿôÇ¿øñÛÿýËýíkvÿ+ªÔ? +endstream +endobj +460 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1040 0 R +/Name /Im435 +/Width 12 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãg08� +СHÆà�?�Ý/ +endstream +endobj +461 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1041 0 R +/Name /Im436 +/Width 24 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xclVgnw¡ævvF â#>&bàa"95öÃ�ßä¸ +endstream +endobj +462 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1042 0 R +/Name /Im437 +/Width 11 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xg0lH8ààp :8$0lg��æ� á +endstream +endobj +463 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1043 0 R +/Name /Im438 +/Width 33 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏþǾÁáÃ(ÁXÀÂÀÇXÀ%,8Ø, �sèàS``<Áç�%.°;00|`o@&0f�ÖVÇ +endstream +endobj +464 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1044 0 R +/Name /Im439 +/Width 17 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc?Ä £Æ`!ÇPÀÇÀÇð� ¹@A9=ös|¨È¾�S d +endstream +endobj +465 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1045 0 R +/Name /Im440 +/Width 19 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûAH¤�C `ä Ãp@ùÀÿÿ�îZ +endstream +endobj +466 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 593 0 R >> /XObject << /Im318 331 0 R /Im209 218 0 R /Im319 332 0 R /Im203 212 0 R /Im320 333 0 R /Im204 213 0 R /Im202 211 0 R /Im209 218 0 R /Im203 212 0 R /Im201 210 0 R /Im211 220 0 R /Im320 333 0 R /Im209 218 0 R /Im321 334 0 R /Im321 334 0 R /Im204 213 0 R /Im205 214 0 R /Im209 218 0 R /Im208 217 0 R /Im322 335 0 R /Im320 333 0 R /Im323 336 0 R /Im199 206 0 R /Im199 206 0 R /Im342 355 0 R /Im343 356 0 R /Im355 368 0 R /Im343 356 0 R /Im355 368 0 R /Im223 232 0 R /Im441 468 0 R /Im217 226 0 R /Im219 228 0 R /Im301 312 0 R /Im297 308 0 R /Im224 233 0 R /Im221 230 0 R /Im216 225 0 R /Im232 241 0 R /Im221 230 0 R /Im219 228 0 R /Im227 236 0 R /Im228 237 0 R /Im226 235 0 R /Im216 225 0 R /Im227 236 0 R /Im218 227 0 R /Im222 231 0 R /Im300 311 0 R /Im109 116 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im102 109 0 R /Im99 106 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im128 135 0 R /Im109 116 0 R /Im94 101 0 R /Im99 106 0 R /Im293 304 0 R /Im354 367 0 R /Im133 140 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im107 114 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im136 143 0 R /Im121 128 0 R /Im108 115 0 R /Im98 105 0 R /Im112 119 0 R /Im291 302 0 R /Im93 100 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im135 142 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im118 125 0 R /Im136 143 0 R /Im291 302 0 R /Im135 142 0 R /Im120 127 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im107 114 0 R /Im108 115 0 R /Im94 101 0 R /Im100 107 0 R /Im98 105 0 R /Im124 131 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im112 119 0 R /Im116 123 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im97 104 0 R /Im93 100 0 R /Im124 131 0 R /Im96 103 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im94 101 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im107 114 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im112 119 0 R /Im116 123 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im117 124 0 R /Im123 130 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im100 107 0 R /Im100 107 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im117 124 0 R /Im102 109 0 R /Im93 100 0 R /Im114 121 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im104 111 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im108 115 0 R /Im117 124 0 R /Im104 111 0 R /Im100 107 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im111 118 0 R /Im93 100 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im93 100 0 R /Im115 122 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im95 102 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im114 121 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im94 101 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im74 81 0 R /Im136 143 0 R /Im121 128 0 R /Im108 115 0 R /Im98 105 0 R /Im112 119 0 R /Im291 302 0 R /Im93 100 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im135 142 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im114 121 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im99 106 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im100 107 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im118 125 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im120 127 0 R /Im98 105 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im95 102 0 R /Im99 106 0 R /Im98 105 0 R /Im100 107 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im98 105 0 R /Im97 104 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im115 122 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im112 119 0 R /Im116 123 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im113 120 0 R /Im96 103 0 R /Im104 111 0 R /Im99 106 0 R /Im95 102 0 R /Im98 105 0 R /Im93 100 0 R /Im102 109 0 R /Im74 81 0 R /Im136 143 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im136 143 0 R /Im291 302 0 R /Im135 142 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im103 110 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im238 247 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im100 107 0 R /Im106 113 0 R /Im442 469 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im103 110 0 R /Im98 105 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im97 104 0 R /Im114 121 0 R /Im104 111 0 R /Im98 105 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im115 122 0 R /Im102 109 0 R /Im93 100 0 R /Im105 112 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im134 141 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im97 104 0 R /Im114 121 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im103 110 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im214 223 0 R /Im443 470 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im199 206 0 R /Im112 119 0 R /Im111 118 0 R /Im100 107 0 R /Im123 130 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im97 104 0 R /Im93 100 0 R /Im111 118 0 R /Im112 119 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im100 107 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im105 112 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im98 105 0 R /Im111 118 0 R /Im100 107 0 R /Im98 105 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im116 123 0 R /Im97 104 0 R /Im115 122 0 R /Im102 109 0 R /Im93 100 0 R /Im105 112 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im74 81 0 R /Im444 471 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im103 110 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im199 206 0 R /Im112 119 0 R /Im111 118 0 R /Im100 107 0 R /Im123 130 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im107 114 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im100 107 0 R /Im108 115 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im103 110 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im94 101 0 R /Im123 130 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im102 109 0 R /Im96 103 0 R /Im112 119 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im93 100 0 R /Im115 122 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im94 101 0 R /Im123 130 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im102 109 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im443 470 0 R /Im332 345 0 R /Im444 471 0 R /Im117 124 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im103 110 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im116 123 0 R /Im97 104 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im117 124 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im238 247 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im100 107 0 R /Im106 113 0 R /Im442 469 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im108 115 0 R /Im102 109 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im119 126 0 R /Im115 122 0 R /Im443 470 0 R /Im332 345 0 R /Im444 471 0 R /Im445 472 0 R /Im442 469 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im100 107 0 R /Im98 105 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im98 105 0 R /Im97 104 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im112 119 0 R /Im116 123 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im107 114 0 R /Im99 106 0 R /Im95 102 0 R /Im93 100 0 R /Im98 105 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im111 118 0 R /Im102 109 0 R /Im98 105 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im121 128 0 R /Im108 115 0 R /Im96 103 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im332 345 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im101 108 0 R /Im74 81 0 R /Im134 141 0 R /Im108 115 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im107 114 0 R /Im136 143 0 R /Im291 302 0 R /Im135 142 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im108 115 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im108 115 0 R /Im94 101 0 R /Im96 103 0 R /Im98 105 0 R /Im97 104 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im115 122 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im108 115 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im106 113 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im74 81 0 R /Im135 142 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im99 106 0 R /Im106 113 0 R /Im106 113 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im109 116 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im102 109 0 R /Im99 106 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im253 262 0 R /Im101 108 0 R /Im114 121 0 R /Im93 100 0 R /Im102 109 0 R /Im124 131 0 R /Im214 223 0 R /Im137 144 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im111 118 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im442 469 0 R /Im138 145 0 R /Im137 144 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im98 105 0 R /Im105 112 0 R /Im108 115 0 R /Im105 112 0 R /Im96 103 0 R /Im238 247 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im101 108 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im99 106 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im138 145 0 R /Im127 134 0 R /Im93 100 0 R /Im114 121 0 R /Im106 113 0 R /Im93 100 0 R /Im96 103 0 R /Im101 108 0 R /Im136 143 0 R /Im291 302 0 R /Im135 142 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im138 145 0 R /Im342 355 0 R /Im343 356 0 R /Im355 368 0 R /Im343 356 0 R /Im357 372 0 R /Im226 235 0 R /Im219 228 0 R /Im232 241 0 R /Im251 260 0 R /Im217 226 0 R /Im228 237 0 R /Im227 236 0 R /Im218 227 0 R /Im223 232 0 R /Im230 239 0 R /Im221 230 0 R /Im216 225 0 R /Im232 241 0 R /Im220 229 0 R /Im219 228 0 R /Im224 233 0 R /Im232 241 0 R /Im220 229 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im93 100 0 R /Im115 122 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im109 116 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im102 109 0 R /Im99 106 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im107 114 0 R /Im92 99 0 R /Im99 106 0 R /Im105 112 0 R /Im111 118 0 R /Im113 120 0 R /Im96 103 0 R /Im100 107 0 R /Im100 107 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im127 134 0 R /Im101 108 0 R /Im108 115 0 R /Im128 135 0 R /Im109 116 0 R /Im92 99 0 R /Im127 134 0 R /Im293 304 0 R /Im354 367 0 R /Im133 140 0 R /Im114 121 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im116 123 0 R /Im94 101 0 R /Im106 113 0 R /Im99 106 0 R /Im106 113 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im112 119 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im106 113 0 R /Im123 130 0 R /Im94 101 0 R /Im99 106 0 R /Im105 112 0 R /Im98 105 0 R /Im103 110 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im93 100 0 R /Im123 130 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im74 81 0 R /Im119 126 0 R /Im115 122 0 R /Im99 106 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im105 112 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im123 130 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im117 124 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im118 125 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im120 127 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im100 107 0 R /Im98 105 0 R /Im124 131 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im238 247 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im108 115 0 R /Im97 104 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im115 122 0 R /Im98 105 0 R /Im97 104 0 R /Im101 108 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im113 120 0 R /Im96 103 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im98 105 0 R /Im103 110 0 R /Im96 103 0 R /Im94 101 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im74 81 0 R /Im119 126 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im112 119 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im117 124 0 R /Im108 115 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im98 105 0 R /Im113 120 0 R /Im108 115 0 R /Im97 104 0 R /Im96 103 0 R /Im96 103 0 R /Im238 247 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im106 113 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im112 119 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im93 100 0 R /Im101 108 0 R /Im93 100 0 R /Im100 107 0 R /Im95 102 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im298 309 0 R /Im258 267 0 R /Im286 297 0 R /Im299 310 0 R /Im281 292 0 R /Im255 264 0 R /Im243 252 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im96 103 0 R /Im113 120 0 R /Im123 130 0 R /Im99 106 0 R /Im106 113 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im74 81 0 R /Im127 134 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im99 106 0 R /Im106 113 0 R /Im106 113 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im238 247 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im96 103 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im115 122 0 R /Im99 106 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im74 81 0 R /Im119 126 0 R /Im94 101 0 R /Im128 135 0 R /Im109 116 0 R /Im94 101 0 R /Im99 106 0 R /Im293 304 0 R /Im354 367 0 R /Im133 140 0 R /Im109 116 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im102 109 0 R /Im99 106 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im117 124 0 R /Im96 103 0 R /Im117 124 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im99 106 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im123 130 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im97 104 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im106 113 0 R /Im108 115 0 R /Im103 110 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im74 81 0 R /Im127 134 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im245 254 0 R /Im101 108 0 R /Im96 103 0 R /Im96 103 0 R /Im105 112 0 R /Im97 104 0 R /Im93 100 0 R /Im248 257 0 R /Im108 115 0 R /Im101 108 0 R /Im97 104 0 R /Im113 120 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im246 255 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im106 113 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im238 247 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im100 107 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im117 124 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im342 355 0 R /Im343 356 0 R /Im355 368 0 R /Im343 356 0 R /Im419 440 0 R /Im236 245 0 R /Im216 225 0 R /Im220 229 0 R /Im221 230 0 R /Im301 312 0 R /Im295 306 0 R /Im219 228 0 R /Im218 227 0 R /Im220 229 0 R /Im221 230 0 R /Im283 294 0 R /Im219 228 0 R /Im232 241 0 R /Im219 228 0 R /Im359 374 0 R /Im227 236 0 R /Im230 239 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im103 110 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im113 120 0 R /Im96 103 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im160 167 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im112 119 0 R /Im134 141 0 R /Im98 105 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im130 137 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im117 124 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im129 136 0 R /Im93 100 0 R /Im102 109 0 R /Im115 122 0 R /Im128 135 0 R /Im129 136 0 R /Im92 99 0 R /Im293 304 0 R /Im324 337 0 R /Im133 140 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im100 107 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im101 108 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im108 115 0 R /Im102 109 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im111 118 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im98 105 0 R /Im111 118 0 R /Im99 106 0 R /Im100 107 0 R /Im95 102 0 R /Im99 106 0 R /Im102 109 0 R /Im98 105 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im108 115 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im106 113 0 R /Im93 100 0 R /Im114 121 0 R /Im94 101 0 R /Im214 223 0 R /Im106 113 0 R /Im93 100 0 R /Im114 121 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im108 115 0 R /Im102 109 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im111 118 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im98 105 0 R /Im111 118 0 R /Im99 106 0 R /Im100 107 0 R /Im95 102 0 R /Im99 106 0 R /Im102 109 0 R /Im98 105 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im108 115 0 R /Im111 118 0 R /Im97 104 0 R /Im93 100 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im99 106 0 R /Im117 124 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im135 142 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im93 100 0 R /Im113 120 0 R /Im101 108 0 R /Im96 103 0 R /Im102 109 0 R /Im95 102 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im111 118 0 R /Im97 104 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im114 121 0 R /Im104 111 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im114 121 0 R /Im93 100 0 R /Im102 109 0 R /Im124 131 0 R /Im101 108 0 R /Im214 223 0 R /Im119 126 0 R /Im115 122 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im104 111 0 R /Im99 106 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im108 115 0 R /Im102 109 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im111 118 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im98 105 0 R /Im111 118 0 R /Im99 106 0 R /Im100 107 0 R /Im95 102 0 R /Im99 106 0 R /Im102 109 0 R /Im98 105 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im107 114 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im94 101 0 R /Im112 119 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im98 105 0 R /Im111 118 0 R /Im99 106 0 R /Im100 107 0 R /Im95 102 0 R /Im99 106 0 R /Im102 109 0 R /Im98 105 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im114 121 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im112 119 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im114 121 0 R /Im104 111 0 R /Im98 105 0 R /Im103 110 0 R /Im104 111 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im101 108 0 R /Im105 112 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im74 81 0 R /Im244 253 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im107 114 0 R /Im98 105 0 R /Im115 122 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im104 111 0 R /Im99 106 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im108 115 0 R /Im102 109 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im111 118 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im98 105 0 R /Im111 118 0 R /Im99 106 0 R /Im100 107 0 R /Im95 102 0 R /Im99 106 0 R /Im102 109 0 R /Im98 105 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im108 115 0 R /Im101 108 0 R /Im108 115 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im108 115 0 R /Im101 108 0 R /Im107 114 0 R /Im102 109 0 R /Im96 103 0 R /Im117 124 0 R /Im99 106 0 R /Im102 109 0 R /Im106 113 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im114 121 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im123 130 0 R /Im111 118 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im114 121 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im100 107 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im98 105 0 R /Im111 118 0 R /Im99 106 0 R /Im100 107 0 R /Im95 102 0 R /Im99 106 0 R /Im102 109 0 R /Im98 105 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im98 105 0 R /Im101 108 0 R /Im100 107 0 R /Im98 105 0 R /Im124 131 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im107 114 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im103 110 0 R /Im96 103 0 R /Im114 121 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im93 100 0 R /Im74 81 0 R /Im129 136 0 R /Im93 100 0 R /Im102 109 0 R /Im115 122 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im116 123 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im98 105 0 R /Im103 110 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im107 114 0 R /Im104 111 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im106 113 0 R /Im93 100 0 R /Im108 115 0 R /Im113 120 0 R /Im97 104 0 R /Im115 122 0 R /Im108 115 0 R /Im100 107 0 R /Im98 105 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im93 100 0 R /Im100 107 0 R /Im95 102 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im284 295 0 R /Im285 296 0 R /Im239 248 0 R /Im258 267 0 R /Im255 264 0 R /Im286 297 0 R /Im287 298 0 R /Im243 252 0 R /Im285 296 0 R /Im260 269 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im107 114 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im101 108 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im254 263 0 R /Im255 264 0 R /Im256 265 0 R /Im257 266 0 R /Im240 249 0 R /Im258 267 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im105 112 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im108 115 0 R /Im113 120 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im93 100 0 R /Im238 247 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im98 105 0 R /Im111 118 0 R /Im99 106 0 R /Im100 107 0 R /Im95 102 0 R /Im99 106 0 R /Im102 109 0 R /Im98 105 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im104 111 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im74 81 0 R /Im129 136 0 R /Im93 100 0 R /Im102 109 0 R /Im115 122 0 R /Im253 262 0 R /Im101 108 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im101 108 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im121 128 0 R /Im108 115 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im100 107 0 R /Im123 130 0 R /Im115 122 0 R /Im99 106 0 R /Im95 102 0 R /Im93 100 0 R /Im102 109 0 R /Im99 106 0 R /Im104 111 0 R /Im123 130 0 R /Im113 120 0 R /Im102 109 0 R /Im98 105 0 R /Im106 113 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im112 119 0 R /Im116 123 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im93 100 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im113 120 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im102 109 0 R /Im93 100 0 R /Im108 115 0 R /Im117 124 0 R /Im104 111 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im112 119 0 R /Im116 123 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im111 118 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im106 113 0 R /Im106 113 0 R /Im112 119 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im238 247 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im74 81 0 R /Im109 116 0 R /Im94 101 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im100 107 0 R /Im123 130 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im118 125 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im120 127 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im118 125 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im214 223 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 467 0 R +>> +endobj +467 0 obj +<< +/Length 1046 0 R +/Filter /FlateDecode +>> +stream +x¥}Ë®%;rÝü~E íOó ['õP»Õ²dë6ÿ½wîÍ`Uf®u¸ +ºÅd¼c1ñÏ¿ýùþ-þø·ßþù·òUð#| `._k +?ÖôUCù±øµ¯Ë?üýo¿û¯ãöã?ÿãoþËúÏ¿>¯ß_¿¸_i¹®Oa¿®¯_iCßßüþm=úþñ71¯}»o ß À İ¢¼þËíö¿ñçÖüsåúë×"¤aRyÓ®11Wùk+ðJ;2ËKÒü�ac ØH¸ Ó`pàì6õ·ªIâ/ê¿þ{êrðëTû´$~vÂwp³GLRDlÌ (¤0ot·híi\È (SG¨´iõ@ê~�9 *æÂþ+ Êñ«\$ùó7/A^Ë}ýìû[D߯71dß9¥Gßßöý¡O9ý@º�òqè>%l_¡Úr3õk½ |å·O 58ï ®×H_%@SVø)xIq8,z_K?BF.1DÄývú +¤AIèéfóW¾Áe?p;Â]Ú*ÜA\d6VÈ |ÓDzój£#P9X îr@¹°F¸ ËÍ-¾i 4H7P¾¶�iËÀ¤tãeã °Ð`¯ ÊWØÐ¼8w�hÀ~ Bt¤»$~¸"ÚAr|µ~TaÙO>éܹø9ÁºõûM?ÿø¾¼ Fåò×¾¾6hÏÿ/Ëûï|ÐnGg÷¸>íôw[ÞÖGtüxÏPè?màÕÙzLG¦Hë#þÇÄ÷.�/_wý2Åòémÿª?p7b4²nÖ´þÄ)P¬(C÷ñ_žþÈ~rÌÏ,àrÕyðòDGDráAaá] ßδy¢åe ~Feñ¤R=Ú0u=ÚÄDý{ÒN@7°¯ÒRÀn�pb|$`7WL7@LLÓ}dK_qÇC +dènH_{ò\àno�Ê�`Y_%w´yÓT P ÀXS8L:3¢¨*-(ðÐ �b¢k~¦ë¦ÙAz ɾE�RR±$ÁD$ì9 5Dj DC=¦ÌPrÔ\Ý@ÂÎðFp;?4ÉiûÄTggn$ , k¾¢Lº)æ?ÅX¶åB` «ÈDWn^ aÌÒÞzÐmÙI +Hã¼b)¸¹ÊõW#¼¡¯ü2fï¸t ¾ûÏ äæâ½yC¡yÚå&ïСÉ9ã¨PVÄ`n"Èùµ¿/%B[ +Lÿµì~?a[~3÷ |P¾6[Å,{³M©QѲ¢K*G¥ vDæ×ÀÞøJIÔ®,?1ü wÙÒ² ØRfHÊf I£uÕäak¡å÷ë7ªËªã¢²cw ÇEeßEeƨ80¼ E5a³¦Z3àé$-Åæ¬&[ËaQM06¼¶>C]F7GØÔ¬¡L ,_Ûc0þ¾åW§õz¹ÁÏßóK&Â\?/Üø»~ýàtq]¯[\?ë/ÔopûåøÀ/<¤_9\^àdw:Úíñè�Lþ£)àå�:Z!eoÞ,C± +xd ":HX ðpiø¼ÙÙͱÿ�vq\ánV£í2LvÔS)ZÀÁò$Rà@ö)@)ÂC!îhûаõª!@eBDf�)AW lzb¶m@$>PyËÖíûÊ +=HíUdW^i q¬]Q8Z Xæ«N0Iáá Hv%iÏ+¡<صx¢0rÄÃìsÄR,«QN!¤ %¨t°>#:Àú£ Ùu¨{o@ç@ Î\v%¹B%ÒEp1ÎsBTÅFòn®R`ÓÂzMa"Ä9`bhd3V`8ä©¡,ä8µ1h¨¼Â¡74t*Ð9bòÅÔÍ0±íH)È;ê?JÙ&µÀpbìJdKZÍ1;PE³T +WTë+Iì�>ñ¡²Åg�QÙÊ3¨Ì³Q!¶Lg®¶0ä Ô tØêAË#|¢âÜP¾´ì(µh¯tzn¹~mñ§=º'&ïôÜò¤È÷W&íÏòLfü¹Åçå²;·ZÈÓrÂfwÖõ²�ïÚ¾|ç[Iþe½\5ðÊ@áþep§Ä£àUÝ")>! åJD{¤$ÁÔ:ºíè²¹ð¡ Ï +Q+£ÁCçõ:Î_Ê3L@PxmX¯J%ßÚ0zª¡GÎ'ÐÓª¸tGIõZá¸A +Èv¸×Ïâ¨[b"E;bOErj¨×³¶÷#P.6î|;BÇx"ÔcbLPõrØ9àÀ©9J¡!2tOmC«éÎÔöô+xúN}Wèïä( ¡!ò¤Ðy²$Äô²hµ´½(ûuA@KN°ÁR\BÑ8&1Ú¡!sÔdC;æ¨JïEáÞɵRÒ xHqÚý©ÖehîBpWäKQ÷Å=dHsTÝAËC)À¦H·$¹")p`íÒCGbWDBÝe1$¢!£4oPôjмaEKóy(ëa!¦D/ ªG'ë£ÓDLA¹®¿E_~�`ÕäjvHN: @Sä@Z6Æz-kbLAP5 ~yÓEiè¬ z9òªé1eá&Êbhô¿ÀÈÉÎ ü(9;ê¡%g5BK(+Q'³äU#ké1 ê!J%âs9ssf¨5F;¯WÚYËÏËe̲ór§®ððr@lÀùóôX1rß'Y3«¦¿¯°tÖɪGìâÄÐQFjùeä8/Ú§Y$jáüåÈ è(¥E¤%é \6 CÕÒ#ýÚ;®P<8-´ºa3$ß7vÖM�i#Z/£qß×».(Âò#ÉdqÀ@ù÷!ð-i%uÔqÆ7ê8É ²"w +Ò !jø¡¼#¢]A2è©.Ð +żm} B¨³ ÂïËOãR Þ\ƺdÍSr}æÉÒúÐ¥MódTa8æh°E(hG?fíø¥qÇ �z)n2¨¯OxÀ ÐéÏR2ƽzÒ嬩 fðn(Æ À¸9ÄHÌèÕÌýûël4xAÏpTSo¢+¤2ÔZrlÆd(ÐyêPÓ Dq¼z$C%=¡Ð÷=åÜ0+TʹCÃÛKÿÓúû7íQ*AGïRq^côÄÉUteÑ,9-%>ªvÞ1ù:×{ç@ï4tôÞ)«æK¨mÐè½w¶Z°iZÈ5%àø4fd_^lÐ^0sôÞ©ñç¦zïÔ¨bO+ ðp¯+çt\ ×F�õQD4ãíç´^¨7üy9 6dèüy©Aú{ùþìôpOÿ}»Ëç Ap¯èôh¸ÔèèlDGð´Ë@pÀË RÀq�K&Y3Þ�¨¼"(PäâX ô2âà)#*ì(#¶¨¤YxºÁ£çèeÄØ9ÊÁpÀºe0ìqÙ£j¡£xÀñáÖ·èbÇüUÄC$¨z±ùñYG2tdzqÁ\oî] qï1-Uó¥tf|UÚæ³Ò¥©¡¥ÊO¤Mõ$¬34GÍ.fYØZ æÐJÙKü¾ä°]Æì:Ä<é {»Ët7a=+¹sÒBb¾1(¥õPNk36 rñbÎø�)31,PÄQ'Nr +-|W+ôÇ·ï¿l¡èO D»À¨X~R)¦åü$/ÕO°1¦"R,S*Ð:.Zv¨EúEËý¹^ÿjA5¾+ìEÐçõ2ÿJÔ¾ÏCÃïëðjÂA½\3QÒ2X 5êïè õ¯BCêèl]4 +ðjhEåÿRáþõdh=ÈÐ +: +a@èáàúY3?tT`?Êë +(õä�¯xR/@Pe¨8±ßåUN:zÀhÒñ ªÂÌØA[AìVM -É£®êXMó÷&Øò=É£é�_ßÁ×÷Ö¬'»[ûç7æïÛSp2@âëóK¤¾^zkê;ü>Aöâ.±oo_è¯÷ùÈ* 8kðö1Óx¦e"«kG8èhuL"~ëÎÁ-³bíN;Ð[fóÑô®êmñõt&X 2ËhÄ]H{ø:u¤`± BÖ è!%àH ,É í24wú½âfk}Fâ©ç*¸ÁØX¯ûAóCçÏë~°¿%Î}ÃSqØ}ÜRÙ[¼8l@ÉZ>Eüðô°X0Îu°ìoF4ä?°i?À»>!.:ºVtG<R5 +ÒýÛeï`ÿÜÀïë/yx~+ÅÔÇ[ç¿¡X!õ¶gRBÝÄ P¹!Cè ½#8^ vÓ{fà=c~$ ]s$¬l1YóÌÓ8&}¥ôS¾ZãÅØë·Õ9SÇZhÅ\Å ÉÐ9<IZ ùçì½k] é ¬fehXË*¨úk,lW½#úPì/À¤¬ß¸ý*<4 ëí¦x(Al0"#"Í$Ó[%H½ÙRÆ1µÜ\!glFôÙí@/zé£.�Dì5v@®i À¢7[ã#_W$ƼÏuFyÓÈ;^¹!nÀqÕ"Ç=Y¶Ü1Çs&h ¡ã2æÞðêÊ(s¦LOkz¿«I[ÜÛ]=@ÞL?�6d·PÀ¼ÒQH^HD§S`Ñßµb;¤·,[EÊok dåaHV69¨f°3Òçíª!!×Í»V°É2>D.+d¡Þ.Jùèeå+¨Òc~_c*}¶D�ÇMXáV%¦PFÊíº5Ì5¢µ×Ñáû¦sô9Óëã3Xî ¾¡äa®éài'SvÇ1 = è!ííº +Z¯wéÚéù]-<¾vx|Rrû]ï¤èöÉÁ²Û'2Ì +ï1áôvp|R|ûHIùíf¸Bº 0»b;^R½¯ØNëÑ[Üãè³îbã)}ÃHø51TÇCª(I ý>´ ²wúºüD¦¨ç ¶úS.ÇÝ$´N]Üâ|�½ô<%¨Åú CÎÚ(´¡ÓÑèØ*¶c:¸ í#îO©feÈze`}hGtý¯È9úW'lÉôáÑûSìÐêq4'?ìî/± "$�B$ª!äD&ÃpÎѶ³cÔ¢cðð-ÊÄÉ'¹`%ÐU1âã 9Æ9 Î-/y@Nhë6,ÅrýñkA=Ç8þÉoË ÞÆB ? +xúS %F%>5z»°¡%"ÐhÂR|û{fÓ66Ù¤»1¿W}|j.ZÕNÝ~mTÞ&æ#ÇúïÁeë¬`¹gàfF#Ê^ïqÒO/ß×À/®Ûdó[«]¼@_N o&$� c¡Kàw*ÌÛ C +è¯ù¬ úHùz$¡«¼î@Ê3cMHõöV»8!XmØÄòÊB9³íª}$Cw-jøÎú±¢ ?BBl¹`ÐònÏ»DÈ3Ï`¯ðV7ÐË RÆXo}i½ÔGzÀ¨úZøe½\6ú¾£Úzå ¯~ÔÛ¬´"ðxñ#dPµIC;B%¨"t�T�×¼NMyñ"ôÆzN`rÆ:@X¸©°p[4æu¢Q«xù#RB80åÄê' P¨VïÐ ©Þ¤Ç¤ò@ÜcÒá@Ö(@?�IuChmrüZdè¶Cú¨ÉÓ +ýËlToëg)ØD`pxè!´ÚÉY_[i_fðЬ/³a¡Ó¾¬LÇÖËRýilã9ZµDKÎ5ð^î0 Ô']b3$YOí£NÐNè¥ji¯Þ]ª4¤ÙR 2$_U:Õ@;À.[Ê]Þ.jÓ{JAêÜ`0 Ïö±Y£È¨Î§ñXÅLǪØò À´Fêýøiu#Û²$J1ÿYÊ5Ì[RÙU2*sEÎ@ó:h9FÑ×AU^ÃÁ*Z?óË P¹ Ñú}»"¾~ÖÓ2éÏptÓ6tctÓæó6ó3 +DøÈ@E$pÔA3t³Àp^$-ímèPè ZÞ´mPu%Ø´ïÓ9/gø¨.Чìpüì¶6 ã3mÀ31 ЫO1dú ÒÀÓaÚËÈÞÌFf 'õÈñN¾|ª7.L'÷v uÄ^åXÙ¹BE£Ò$>±z#7LA oÓ TaHã@hx%(sMÐV~ ïK¿Óú{Qøg»÷XåDýuy)rA²¹ÓzGåÄ{*'àçõÊ üyGåDAß×!gëyÓ§ÀÚm_ Û«i +dDO85àØ'Y`uH<-[ä´n BèÏ2Úi%BÇ˪QÀQy±6ù|�GåEë¢zÙ^y±7#|Þ£òb_Û ê\å =,ê1X-IÐÇ£XD[¹=/\Ð,ɰpadé½96ezå EijÀL¯¼(èûÊhÊE3D|<2DÊzS½ò¢<Ú>BÀ1B+¡c¼OP Ø3ôT^ìzåEëu2¶ÄäÂ1D ÷xúÃÔ£nácÊOf,8Ê p @gèPcZÇzMÚ²c�à}pL(±æ õ¬°Y!½ö1¡ãÚ»>4$Æw%ë3_WU;¦Ð¯0Ñ3[ÇËlJåĦ>L#ö0f6±)§2 +Ln½kMlzéÃlbÓK& #z%6¥ xGÇ +è!ÄIA/\' 0¤óôZTm�«±ÜzØ¡Ëï úyãã«ÐtoZìyÔÈò¾O ¨Í°ôþ¨Ò{Þ8 +Þ¹JN®±!©)N"$¶$:`rí¸j°AAÃÀÜiMX Ý9ø½-§0Ýáò¸Æ +¢ËhÆ+¨h7jæ/'ÐßYjâ>ÕZ/[¢^}ñʾµDtQÀÑ^½ 8Þ9ZIuT!ݳnBL)° -ð`ÅYSCV¼_6 O·J¡°n&Baòã¾=:@!78�a·Cp�Åpzÿ,¹#-èHsK" WÒ´ c;ªWäg¾ì )¥`A2à�J+re>ZùÞ:©v£ÇÞÜñÆ +¡´®U2ü[ÐdNÚ>£Î?*®úĨ÷ùÏDteö¾û/h½çî?p¸Â�àizÐbòÙY5V<0;«&Aèý-´eM?zÏ Ó Ðõ#m´lÿÍÑÑòóëWíÈùÆV<â�¨¡¥Ù±×¦Þøõ»ÿÙSä¡>pÊ*ئ6íP ôxp]$%൬Øèá¡Fâ´ÀS}±C�"ÁdWf¯¨Æ]{ð)$ÔëmøàHhDÑ)6dr=sJa5WènàÆBZ±+ÑA¦Æ4¨AÔBÖ}ßS\:zÑ¥ÛýÅýí.+d£v�[R½z &Ã^;0N¤#:wÑðR\´O/<lÇôk49î}eh÷UqûþÒ íôØzZNkQÎÑïàôïUªéÕ¿d£n`Q£zRû°hjÄ{@5ÖÇXäx&¯PôÚ Ñ9j'`@ç©¥^9` )GëÙì¼8fçõûɶÀÄÒ1;¯àLo9´ÏkBpÌÎ+Y¤�ò\(EÔBJ"j¢ +µ@¾,*»syv^YDWÀfçPv/4ýâÝ=yÎ.Þ";`Ö²#8ô�dSXESÆ×c!KûÅùl^P#Öýê>a1Ôo¾tèrv\qr)·ª¯Ðéq½ÕD?ØT'{[Vôl`Sõçf& lªwH;ïÀ¦éiŤ{`Óe½>ïæ¥üïÁ¼D¼7¸Ññc¯8b¶výayC¨ÓÒÙ?P·ú½P'ê ÔËüÇCíÖòù²ÿü u;Áh¥ÄóVâÄÐsÑ#ÚÑÛMÕlû~å?=ö¨HVêÁ¾kzÀK ס)KHܨAKØèe/)AC¬¿«IPtl+£ï{FöUT"½¿ßøÉé4u@ÄÓ,òÛÞ«aZV(Ä2´`$ä¶:À;KÁ +±NÁ]<�¢1²°!v¼Ð¥XáÐH (¸°!Óǹg¨ú0ôy¨ÿÀ´!2{sýeQARìZIàZô,ÈcÝdPy¦ZVCÕÀÚÆ}ûUû>uçur%rS+k2Àgáȶ´D-µä1$ï%êíTùMHxÇûMÕ"ö¶ +ÇtúHûÝÞZ¸b8~� +ãqhø`o ²² .:®:V â?x;CIζ +J2(£,ûy^·ò²Þ_FyþGr>øÂe½ìbéÊ>hË`Ó~·PB$tP i øDÎ ú³_6 ?ËiÏí/ëõ*Êb`eþØú +)¨?«iåäÓ"°Ôg"°BCʸ" ð1np:ÈÍÃíH Ùy@ôÀ*°Ä !>x +n@/@KÈÃ7¤5}úì}Ðg×aîíγôA;3ÙÛì¨i=HZ"½³mÁ$Ð[bS¨¿Mª7ÒZVh +î)êõä÷´ ý!¥áª:dVI m^I ¡£×C2½×èàùõ©3aÓzærÄJ CÂÜî gã±;TÀ: -$£'(Pd;+¶òÐ\µ·pzæNó"ºSZM¼àLo ¶~Z¡]"{+4ÊÃ-©~qP(û²,Ú1òAÔûíXô¹9ØêWpL©w^ñÅØ¡í #55Pø6½JóżôabR°:LÕ³ÙQP ³£4|gñ 9¯}èNuá =�ajIH¸!|ÅîÐÈYmO ¬Ìn +¦EækÄ4Ãk 4SWëñ ?@Bj Ç36|jlqß>ua!ê[e ÕíÜJN¾oi@û¡MS×-¦ ·b¯}ôù]û<(©DgIGMû·b´Xd¶±c?°# +èeL x¿6 _9Æà¸ê9&¼òÓܯz^ÛıÙxxÚ@*x¨Ç<ÔyP0ôbÐvàÀ-Ú]àx,(zà @ÆÇâcèP\ !ë_b{3"!ËKñc5´è¾eÛ¸¬àÁÅN ÖùÒ.TÂð£eýÀÏÂðõûPmÃv¬¤ÁQ ?Ò3´¦µO*¢µ<1/Å,gç ùaNZ8Ú-rjVà·ÅVOm±NÀM# V "Þ±@Hx=+ü¾PäEØÑñ�@¯DØ /ì>/¯V@n"ã. D¬úÅ +j/ÐË_¬ãÁt@a³Æ< BT;Öµ0W$-ì@÷бrV8hV^UØ}á6Ù^ÚLDV;ëÊ2É-åÔ¸å#à +Év�µ@~æÙrwvnH;&¡ÕG¨:TC]JÎüö}:`>c3 Ct¥Û±áÀ Ö²@ÈJ 2Ò ã)é©CIf'�5ª,`H7ô% ` â*ÓÒ@Í´É'8Þ4<IÌjA¥Þ²2GQxM³é}h@uB:[·'÷eMß§ÖíÍý±þ; b`ü?-w´âë8éùûúkcCÎëeG`¯æà#eY£©6vÄ +Pe|ÈÐôy¦¥tQáhì¼^b " ¤y®Qã ïê*rcú+á;oÀ1ªbCð¼Ù·ë¢S54G6¶#¬¯,æþàúR+RL¶O wÔÐ;ÂB!Ò»$$D|,?3#Â9gF¬ O~~�sPÇX¡!ò@E;p¼!dzD,Þx[2Ç«LBÇHWh +G�Âvï@óë«ÿëdo4jâY5jë#$ ì{1ð7þÌcÅ2¬ yÎx¦´ZÉZP@èÈ©rkO=-zâ;ùu}«¤]>o4üúg@ª^ͼ`S~3CwÛ0JÏD]V×8ê±7YîõC¶¬Ð'¡±1á×Hwìì²bÿ©È¿fz-h@q½§çvrDÔAÆóª8¹Õ»ÂÔÎÓU4kb8ztÝ>³`èmI+Î,ôÎ 2QBbKt)\´ ×ÃjîÏ#ÅB$?N)ö®àeçÊÚ7ÈÊ(ÆÅ;d^Ì Ä"Ë DÊsé5b-ÓÛJ¢"¹ÏÚªÎfg5i2@Kíâx²úªõõ3q½!$çå²0|䴢Ĥ±*ú¼#34 <o_¶A{Ã6ÎËåØÔï²{}kxƼ4î1Mý^ùõ·võLtõä½U7ðñÞ¤Ec¤}ýÀT4f³P¯LÔ±ÖE" +Ó.hùk+ÒAOÓ¬J1kÚ 7mÀFÀÑ´R@YwdEe +HU²àÞV¢;Y"ý¶ÇF +` +&¡¾ À1»jËHµ=N:wËHn@o° gฯê åÐ|?zjVÓÝ¡^iù¤7O¢;ç ø�úsw§Gþ :¼±ëÏÝ#½"Ê)zc +&¤ ¢bÜ!oMý©±ÔÊàFoY0²Å¼ç&ndbÊôRFÕLøLjô:ÊT T*¶0a,?È»HBáÜB7DSDñ%hI° +4zEtI;ãß×rKÞÛ½,¦ z1*6D:B !\4NEg6úã¢#O!äÃÔª`+"O-»Uó2DÈB¹Ö&7]ÖËQ}ñçîÏìËçî³"üëk÷²ÎÑ�m*4ù=-w�\ö"áüy9´¼þ¼\{vï{´H´ãà\Dëëià`»¯?ÿÒ¡? &½1AÞ(ÀncBÒo 2áè³.zKØ¡üdÉ<ày½ã7ú>P úF¹½ +þFyÙÀ8Þ(=aí Ô¤´ ã5�íã9BÜ×4tc> Î?:E×"¡#ì�áÐ2|*¢ eÌCý¡{®H®çïYG¤yíaÖ'»g8@/Ä]Ø>É�ß�¶æ:VÄGCÒÊðJØðI¨wÆF-"¡í9 #´;6þ"Ê__6 !K|qQµh�0N ¡°�··>Ê(ßΤïÛ[ó§æX +³ -w<5W¥ã!#xµh1ª!<X°¶®¸é×|¿´_åÂÂÏ߬Y×õBRüùþÑ÷ëͰ￲*éû¨Aúñ}K«.ßÌÈ;¦h ]WË´Ò²úóÜG²ÞÃâÒY¾óÜÛ1ôÔ&ýZûõòÑò¼$§W;pq!âMïGh;Èp(½8=+ ÁÄ]3ywAN÷^~÷NdmÄÁóª» öf�wñ©^<q¡È¯¬pwI¼Á²LDÐ3(Óu)$hÒ½¤Ò`HD0I´À0L¶oi£}/ëõkÃ÷oécá?¯÷r³ü2|ÿÜVð¸½) ú¡ìhaDüÓ;|îà-?áûÇòôü ~_?¿Ï϶MâoÈÑzý¥pòãzéüHþ*R�O;G$¿ +²n@¯ [=ÏýW(ArLÞ*ÏRpCôTAî ¢Ø1õâ�u@nNlZÈywÂmÀqY,¨ZÁCç`ÕKý¡stÀ¢Èh;igäNÞ%GÀ»Ab5p¼T<ЫW¸Z¨BW,W=¤ª~ +±ü¶,OµhUµ¶¤:ÈcA�Ð:JEãa²Wi=Raã/ø|Q;Ý�¶¤z%=5pã`@r Yþ^ÅxæÁ=·gþ3é<þ+u v)/à %¡%Õü¯0(ÖKaWSêØò#g7¼ÝìIÚ�åÝ;òâbMÔ&E >�kQ~t|¿5åË/K?~°£Òðóò}×{!ÚóªIXzÚAÚµéØ¾"2^¨4´!Ïì)[:ÚbS}g¥xUóVF£rð´"õ2ÈKP+·Ö- ;Û]Þ¢Âøµ\ùgîI=nܨþr©ëôTzä)8F)¦1¡Âì2á:úÅJ)W°¢*ò9ÈôO!LÈçÌ,¤5øÝä»û{ZMùÉ.ÏëuÚ0Ëçõjà¦ÏË(]ÓËréÖÐ+Ô¿RON cëwÙ^ 1ýôjÀ$þñrÄðpYc ÞM)Ð]ÖÛÉ°â¸æï'èÚ áôZR0-ë(ü>>v#&«1÷Ù Øz(BúÄ *!E¸TBá�ú¼¿¯÷l9ßÙz¨î=dý$e3±T$ÃÊACY¡'Õ[ÖUbnI¨ã®På)²^7 GR !G(6Tö¤É�ºIèxª í>>âpJïfíäÄj(Ûtz!!±$úCå Gj}̧×â¡ïK!GBÄK1a8!¹ÕÏú¼¨=ôÆq^5gLepEt�Trã!>ók.;ôÇ2R_BÔ,!EW¦¡>/$"oâxç5_ÀûQb;"ßÚÁ×%¬¡%¶¥úSé¬öT:týÞØpÖYKV*âã�UJù|x,²93d(-ä ÞfK(~ZÙ®?p¸$hý¤½4r]ÿ{$ø¨ÍÓn ò¼ÞÐ_ËCCæx-à÷õ×òrù WÍØÞdqÀ�Ú,OE\ÖëÃݸ^ö;þ¾OµTõúeW´¤äô2Â6 ·³BÞÑzºÿàxê0ô?I#�±ëu¹ÅBç 8A8ºYÆg߯àû8µJÜ£úaí>o@¯E^¡ +é°BvÔ"oSØðô©K{DS+¡<ÔJygHjS<g)bT)È âúH ;Ä;ä�!`J(¿g°BÞËzù=½Ö¿¬×{yfh õv¨Ò_¯¤.ðû|xèu}«Ä^̬ßWbñáYÂ@ÌÁÀUÓ@^D«z1Vq4[Ø¡éàjÀ&D&ÂÞV#9öRr@Ns^Lob¡Z-Äð~ï_Ü;}bþÙ·æþºË(2ä ÎÉÉÉXFÐ1ôÌ*xçe¸>3ÃVì7ïjFG%ÀÃ|R�pxÕÒѼ%!!bz´/;éQràÛùQFaRì(_Ѥk¦û3E,0ô@ 3Q/AMª"â¡[fÅ`è·a@¨³ £xê¹$)0 Я õvº +Ö $-bíí"â7¸zZÚÛó^¨È ¤ÇZ s` Mî9f©à¥�)åk²Á=9¤²^¬7#³pL'çå5bdBV + ¡^?Ùññ¾LO±ÐÒªeªY?õÏçåà1°Õá_>/k@k4rù¼®�;ü¼lYNuù¾^ºh +4Ø�ÆB«=¯±^À|9|OM.? ¿²OH�iýlF<P +Ïl}QElÀù`¼Õ ¦+Þq¨B!ÔK¸«&¼¡ÐÏ�vL9Ø +úK §µ`Ã$Ð/I6Ãèóz½S!ì¯ îÛÄvX=iìPØËÈ£YÆYï_Fò*j´G+Ììæl±£*´¤»ò1ô®ÄÐéÕ +©B=ÖAâ +¿¯£üÐyúѦ÷ªxèÏmbÖ´nØËQ²h2"J{|u}½{Öd:ÚM¡£ÕCļ®%3ݱ%Ó»[³Ù*çgiE¯â5Ź@)ÖqæÕPÒ9¦àv {Z -¤¢í²<ÒãC:OÃUH¨ÐñØêì8¦æåÝ6° +ÑÙÀ/¸ß +X nôÞ~bº_à^@Êx¼Pë dxÎë¹ùÓ8é¶¾I× Èc¾þÞEÐðó ôò?s%çõzíÕXÀ«ß ]3!ÇóÚO ÕÓOਫúãj£t Z ¿ï]BxÕ¯!!ôÀ|Ðè¾$îX(5{Rn õ +Âí£~m¾ÏëÏ0äA¼)ä¹A¼ýòÀñF ú°Y +±âIS râµq3CgÆÓû]tÇ,¹ÆB$[´ 8Ø 7ÕÚoèûoöòÈd9Rc,Cú¤ q¾8$*k9+6zDAZÃïË(© ³[(Âr4í5Á¤#Ècú¼ j(óÑò +.- óÖV¸Q×ÉyAÐyæmHó sá®E3,/= +ÈÞyéi½ãa#6c÷<3¾\®-i§� ;½}Ìëôx°dè¥?~_/¾*Ïâá1ýüõY<Ü7ÏÆÃ¥[±Éx¸à¬Pï1°>Æäx¸l'¥èØ&B|·óò/Méã\h ×]5Êi))@#vHékÂñÕi c5É0Î29¨È0Î2è ÍK øÇ ¢2ÙÙ&·]6 ^ÁT`9ƹ �C@êw2b£~§¨¸¬×ëw +½~§@¼k!8t>nàò¦¬û2 Wô7Âçõ £Ç,p@! +8*ûÚ,wD@J©±§� o@/½!äÃzvIèÚ±þFwhÇXÇ®¤C¤Cdm =0{ Z¨ô®xzÕ²=2å½£Û@ ÍÜM7mñ-:×M×fÝL`CÑ!ݱ#Ð{ÁîPõK{{[V³v§{pBÒøEÏée *¡!ÕD#ðû`©*ÐëLmõØA;Ý íP +ÀhÈQ~µà`Dù×g¾<oQs fH¯~ÚÄBz}ßS¾µc-ÔûÂpÊQûR°q@8®¬BÕíÈäðÁ°7ßjlIä ¾¿Q5¥½ãd@UHb§÷f]"ëÕ;d0 Ò¥xÅ2¤×àá¼Lt³i ¥Àr]qD æÆ±I;²G¦Asè#þº¨b +cãÖ5YPýëzðÐâ¼éBV3ör¼þÈuÀ&ääÁÏþí¦à¼\í²ò¼\ãºå7®ðó7®x®7®´Ï¶Xè¼ÞñƱÏõÆu?àxã5R8£p<µ@`%BÄÖCºgÇ ÷%Çi½~É+d¡~ËÑñÙY-Øéj¸â è,´÷nþ|¢úö"ç è½{ìyú=Ë N]3D¼$b½�2 Kîè àØèE¼i,1x±%ÖñÕeXÇWV"_E¢�e!´CxrVDÇW)qÄWWè�1Ft|užXÇW7ÍÑ>V:ã¾öÙ \�âI +fhÅ<øjÔ Ó9ÁïëÅ{ö`Â*`GÀ`SEõQÄñ¤>»h®Ñ&1$gÏSq<ª¿^rDÔÛ1]pN¨¿¯ I¡Ãg¢F6$ËпÎbMÉ ì}HÐ0c%¬ÐêåsQLÊø!Èá¼áËÈ%Ï]§[ kIQªzŲª´ÝP¿*ÈË ÅCï¨ð¬@h áÑY.qW´üä°�¤N¬ôFØé×Ð@ßXÖnKâÜã£Ì¦FXÈ$80Zéè ]º×£*¹Tí¹]øþ¶l4hçÝM¥fve{Z¯;d»æ¸|^ìãüyÞ±ëÖËç +"£~0àóëæ` kЧ¤DDB] +< Úuñy½ÞF0C ÒÛf(B±o÷ïm(ÇhãÇ60ÚZXbcòX¡È{ïy÷Âa£PZ5B¼F¨w!AÖCïôó³Ý{èQÚ ó t1 +x&;è¨ÂÕÌï"eÀC%ïz6ú óèhÔ£$¼QìÈXìtÏÀ¡`³Fzú0IV"I¶#z!76rÅÿaîÓzGÅCÐÑlcCÑ£â¡×OãA}T¡Ä#-ì�G¡sTÃïëÝ×ÒbLã1}YÜ�íqÂxL¯ËÄè\ +Ñ Ã1¹n+V¯ÇI^G½=4»°+ÿlã/±¯âÊèeL9@Þg`(Ã8"/bRÇǸkYñpÊ̤ïCfÆÁû '¨#âSØ#Òq©^üò'sUÜÐ +yª¸W,Äò¸ª!~öbZwÃ>ÈìùvXëÝ.v¨· įå²ý}wR_YÝ'/ݾê/ÐÂx£«ÝA>A¯áL93\ï~Âö~í3ÓhÉä~ W¹9ó xóÀ�â°Í±À´à´^çÀÖórùë¾ÎB+9//;wtvOÔ ×à¢ã{&@Ç"m7²ÅЫM&ùßáÙ¡�°&ýhoÒ0Ö"sP¿a¨Põ-î^6àÃ$RÝ^%t£Ã +`D@OK'&H/à¶"Ö6m;½÷`/à$@13"�oñ�7 Ë qÐJö +ÞI;ÞGÄøí¸µÁ5 +,s +t¤ºÚ6` ÍhU �C!v�C3dp0cfdF3fF2013d!+Á5WºNRßàttwÇjè@w¹>Ë}§àYg±!ÓçDÈG °F@®b;¦ÃÓvÍ4iÉû(ôY¬-ô ;_&hÆå£ÅÄ+Mêm|»4BÇ|¹ÂÀáªm·xxf:rº4R\+`ʨQwÇîB!Ö_¦'hôÄé3Èí]éYPÝ$ÂÞ bVzñ¬@;æpŽÃĤ!+8 YY4`ç$7Ö/O¶w!â-&DòúcÈC9 ìpǦ�ÆsSXq@§w ÈKuOOcS¢7Âr}¯vGD¶¦%zÏ^=R>ÆTò#÷!ßRÖëM ¿ìÿ^?Éöß�òóz=hJxù¼O5%¼|^ÎË[åàe¹-µÊÁÑçGÜg©gm§Égm.Æô#è^Dì÷ {é!²Êï\üb¿lÀ ±_ÖËWÕ±ÊÜUµ r¿R@¾ªb_--É�åáµ@ïñ°B-pÌZô ÝlìÈèð aìÓZd}ÇZDÀ¹�9¨ GhFt|ÚQ mä_Hy¿>FK ±FÌ"(À!ô Üçm6°oaب8x�F�BÁkíÃÂËo3VO,tôØé½ZZ#æép h».hÇà¦ïK §M¹¡ìcKH`ß$_Ä^G['å«+p0ÃxB~#bǨ8õû¬2´Ä%ýeâ~1rBtìGBtÞÞõËúd\9¨*«Ø9æ°ktseÕ`cW¢ß8¤Ô/:pV©_4l+ ßß ôhÆôpİû¹UxS÷PÆSh¤D-3¦û£Âj¸§QIØë]a<æi53Sù=T)çõ÷P¥Â è/´f¦zZUH@&WUÜsØÖC;¤�´ÉµBý)Â.b$ÒH>ÒVÑ9Ô°âÔR®=ªÑ¼ñà!×I8ÆÁGÈ9·®0±|I¯Û±WròkR"Wñ:tZïhÀrÇ5Oquù¼4;¡ÝËù@»¤º,w7>½OðQS¿)ªìù,Zùåz¤±R°=QCäÆBÞÇkÞ +Û0òËè=6*ÚoàÆCÚæ¤~z\à"XáHS×OúQúsy.7įrå>³n_k¹¯zeßß"úþ½aûþË=ú~ls^_îoÁh°HYï²bVàüP&~ÐRÐõlà'ÜA æÐ{½ýà+*^:²ïB¼þBÄÑP·¢rù¿Ü]yÀÍvÌ\~� ¤mÊÕ<ZéÐ;FÞD\*¥ ÀÌvc?"býZIà (H¤Ud¸íÛuÚA®à6±;Ö Sý3¸kùs¥ÁMJhL8aÎp×ëÍ(xZ¯×rïpû¨w"©h(ùùózHa(ùåøú{XÑùõwaÓ_ݵ ðén@o}×Z&%E Ab!=@ëG=!G"Ü>+®r7-(ÐG.P ï"@ýq{xùEo¿¸"zZ¿á8BO&{ii{ßM&¸ûFÂö¸ðr¬Ñc¼FÀ$ÉÕ÷¤§yÐK<¸ßÛ··qq $k¶dúµy,Yh¯Gß§ Ø:æeÒ[á´÷ò#^ù°?rçiA¦Üõ:@oVÄCP:Á`¢´ÙV/Êj?°h?À+ £äwLÝ`Sæx_ý©ã}! +©<×ÎB½#x¯}xiô·Ì`ÅWMÐÊFÃÃJ}BDÝ éÞõ²Eoz¡!@zpÇcÊÇézÄÝ5çMà +åøNÃ{XôIO{ùÃë~6Ù pÓ£Ü}=èzÃLAÆ(ßk( ·ÖixïzÃë4Æ`&Û£ ¶EúÅk@A£�"b=ð«?R¬Ïc/wÓ8( ¬ìÖ`dËèÍk{zw!åJ2{&(5ìáHàxgØ·Íf¥j)-Y°K×ÇݬÐ%ëãnVì³1]ÿÃäD×¢æ'r80ÕÇ0c JÍkÔD?D-¨£ëqr¦OàÈQ>³3Ô¾Ìá�ZÎy¹¬Áúºcv¥åçÏ[y[0wþü=ãïÛ õôçaÏsq5ö¦0_7 WbÚëÈ¡TLx2Àcc 4°bRúÝ@¨¨C}®ÜËÜCëþ@mDAþ ±À/J1=�6cÒmÅv]5b½mh0/ãñ¸cÊmóe:FgÕp¶>Ak#7f!9@L"L>b$A+â1±gĤßMYOjsÏëõg%öÐýN]Ûóz'µïÓL<5¿l@wCö°ivî]6 cÄýÊõòúCg«À¹ü�¸é 0!:¦YJ~^¯û¡àyknÌs¥È½üæ¼Ý T¬ÂSs¶<<ÁY £*Öv¨FÜC=Ö'¾$0AÒ¯ø�7!¢M7´Ç;ßM¡£åÃ.Z2$IY,"¡^"Aý¦XRýÎXRýy,ÔO� ©ç®+#8:L½©o¦XFöRÕÔÏûí÷¥ºs¶^#�¿ñÅfDÎi¬¡ì1;oº!¬fÈ vÈB[JÄù/\Ç?@ni°!ggæ7.IØcshG Þ®[Ã'¨?OÊÓ¼y(: «Ò¾EóÆ�õïUvf¤laÓ#zHfÐG¦A;!É-Qj¬ßÌýHhèm-GäBÈ :zº®2ðó÷¨¿h±>²,«ZD6ð2CÒxGT¨EºÌN¡ÔHG +IÌô¾¼+ +7 dVrX^6¼GKÔg1Y¦L÷%EÌìXHW»!tô©1äì¼bK+µÞKèh¨ +7 GÕÕÊNf£j6UÉ7v×òÔEÁÚ<Áy¹|O°¡¯;ЪPÏQömvO»±ôuß´·æï÷y½~×kw4çõz/S«ÕPoP¿ÏÞ¡ý;ú9ÇøçÈ©;@ü2Äßj?Åö*$Ï,â×´{�ÛýENÀ¯j(Åb·®'!ö]Û�Ç¡Ññæë¼^æ¢*Ã×H]Ãvé�üªPÿ~JÞµaL#eô}i½ %t\ö·i]c ü~Z׸:2Ä] ,Ôöo@nxq<Èy#k§@ /®,øñ§í§/ýY³Îà *ÁÍÒW]0×TÃç0C-dà*4C:,Q(èèÅEõYA0qÌ +ÊÈB_Jz¡ÂxF·9o<Qw'ãá\ÄGSzʪÄÄ %N¤³®°w"úrÖtÚ['Ò¨ cü% 44:¬ÍØ@C¬?ØëÈN«d3Ô[Ìÿ,D²ô§82Pòò(1íDgYX +BÈkª}ã%SÓçTËôøþ?Å1©dHû¶iÎwâÄÞXMµ«Þ {ÄÉÅ_6ïj:3bHFáe9àelÊä⯴Ë^üU¡%Q5³ 90! ðìÖ;zyôy%"mðìÖ£é�øûíª÷ú}!-kë?ÃÂÎëA½ O=H{ë/vÑx׸ �-à¦Uñ"rѶ¬æ²^Gi3>3·¬ä²½sSÁЧUHAH»HJHE`E`±6@4õ²^¬oÒe½DlFOhkDÐ"zê/ÛUÍHøkȽgPßoªSDp`¼Ðy0Þ àÖ¬£Ü!eäI=à +Þ^ \°è%¬Øé8y <Ð hQí(©`]qî²*b8CÕp j «aCGF¤ÜåÖtÉ�ëT4Pzß%KL*!WÀæEAK¨c¤±>r%9¡ï;dÐjÇ,$HÈÐe(B:È-±cÿê òÂpÐQ�\µóóqYØèï%XX¶h=%À + ¨�Flpúȸý¡ Ø5À§Ma _F-Ä""PÓ¦ éå·/#(eÅ]L0¥ÒÑÅY ßb+¦ì$)ëfcA²:¾A¹ÑNIVÕ¬,8'ÖvbÅt VÌsKÍ~KÁ5¯(ß÷ÍéFÃS2¶¯êݮڨªÙ`ÒFU ewÒRÂ;¾úÊ£úø°ò ¿Ë4-ÜÂH °/m¯¡ÎëõÌàñór}*A»{Âoðó20Ù +ÿ.Ëݪ"ܾ£ÇÜëþ]6 ãz±AÃç è¸^»Äu¸eaÛìXè(/P@.@Ò¿¡w wLû®!=ïp!�u¥É ¥àD"<¯8äCÓÐS6´÷~0ps@ï9·Ã èØ¡ÆnC%r0c +:Àm¸¹ñ«õz:ÚÍ£ÐyÑy¨£Å`´ +àF+ܶ÷CP`t ¢Xd_JÈa(æ("o/Áf}qÚp(¨Ëà¦Æä�LðyÐëw|8ÓÑ0ël½ðîPõZTWÌ uld< ieì¢>ȵ¹¢xT7£FSz8w0KáÇ3y}ÌØ(é`ÆêG®*LéyGVÌS÷4OƱa1©åí165"ÈXÄ? ¿ëO +h̹õb/? ·^,ï@n½h 2FÎãÓR¡"éeôU³$C|y2¨ïøòlPo³¦ Z"Ï< +Ø9ºÌÀ¼ÎÓefWÕzRþ.="«8"#² +-¡ÕEHö¦Â[zf}ÀË"¶A6 T#txÙ¾W:|Y/ï¿=Ê<¯×s2S ËçåI;>¾Òµyíëe£ïçìñ ²°EL@}ìmD \o>µö}½qZ¯4Án£[¬cý/£µÜ®ãÃç8f´^¿"0\åÂýÀ28<D@¿¦$ N�«9&À +7 ·_ñäFê6svxÏjfÊðdÈÑ÷3`3(_R¦úhñúý%%Ef"Ô"ÁÙúÏ\Ë ôG ½|zÖ¥ñÐú_6 Í&û4F$tHajÔý'0o@os²@K&[X%£2� G6x�ùHÚ´p|Õ\/ýÃ)fI(¾Hâým{Djì(È8àAhF:c½ò3F¢sn@G÷H8ãèÕÈPÅ;_X áXù°p +¡£|x>$ýµÃÄÅëyY@ÕpG,p¨á) kÁCBù²³×»` ´ô0>Ë,KÄ,3ck<_»Wb.¦e°ÀL¦aµ¼*&tÿúþ¡!v´y©~B'ýEÊÔáÓ0tªÅ~ÀOkØU¡ J®B*ÆÁþæ¥t©ÂÄT÷¤5`;.½~yrYÜG!¤5á Èi%Tðí #lë¨Ñ ©@nx`À²ºór½9åø }ÞMÚu÷yûú¼ßËnÔ�îËîå+2÷;Ú>¸h �sl�óéô)Ñ¡óô1½»ÇåK >08ã4üøÖxLÊ~ӰνAå¡cþæ´À¦ôµh´ÉÂu{¤G½ÃÈ&rÐ56æi¢§R]%Õ;aoz#êí@¿{ý Ìç ÜQfÚØ®Ë/?à@ê±=ÖAÞ¨ùaóz9(OТ 6§ïbîÁ-#6ìüÜ`}N9äTGsãÛ"³C.W¯¥Ë°ÞifEvÀÑ "½öhòĤb]wUY!2´¤ÚeÓ"P u|*·É#ÒDH½Ôz|Ì +aQö¢äÔÏúó\DNYPê#)¶^ÐC)æ}> î¾ ¥¹nZXÊ' BC¢ß¶ÌÑLZ³d©ª3cH½S)Äé©©ÎÄÔc8úYtÁúúÌÄ!õ ¤Z2RÿÌß:zhGH½æÎ9REÈÔÃPß?NH=¤þzè»B½~ iÕ]ø¨ðv¤ÿOéW:£|Ã0ÒnÇyï Xïfss[³ +½ÙJÄñ^53B¯ +æ +ÆÕ[0.ÞªDFJFñ£àÚî¬K" õ:/SCNËåkV³pþ¼L¶©×Ï;Z Àï;v¼£µË¶áº?/ÐßBôZôóä=Hz·ÞÈ{RbFà¡7 ç#6lñøÁlÖ¬±ÐÓ¯¦î ¡°Xä²ÙÙ¸Æ 8WH"ÄéB°©zÌZyã èj´CC®×CKæè6 k\""ϸÄ$y²a+ïÙïgô}�R@C¤7mêµìCWN�Ún¾÷¼ûB¢^4gÌ{@+¢·B_±+ÓæU3c¼74:ÂÜkáG®ÊÀ^Ec'{íYê}´'ñ§]Ü�ï £½;ag®{ñ#§Ëj@Ä1òg)I.Pä®·+yíc*§ËuV â®@Ï2´Di+tærÞÖ³ú¡!'µ§õ¨~h ´Rø|Ï$¿nX¬wä4«dwÖNåA#iþ»ö<ËÏH`%#Ðé@^~@o@1äf%½ëòzZdò÷mpù+gÈÙõWÎyÔð°bè¥?U#�eá² 8)£xÒB(÷´þÀà(zèÄsÏêrC{Z7AZZ7°#õ+¤)®ÐùÓºñOØ9Ò2(Äzb\°s4pÌGfHÿ~Et|Aß÷$ÆÜC3àH7hôÄ[Gb¼kv·J¬ê ïõ¤lRzÇÑ»Ïó¡²]×OzÂG^Ôl"ô§wD~ú½¢¿çdȥعâ8æiJÀ_(#%p\çjÁ-¥m8q4¢DÄV¸T4)æ/±+¯ü{áѼðÀQxõH¼\°%+©ûãQ<ÆÊ¤)µÂ%11ä#àô$r(Ð<(feÂ!Zø1 ½rèeÓ§ÅôÒ¡ÉܼTlÉôÚ/9´çu&ø�òüò¢ÒaéÏб.¢3¡2°ÏÖCRhØ@K¦?éè¥?z\ãòH+ô7ºØÊU¸5AxF/=²ÃåÁ#¦Ð¤A/YZz´õw;ÆÐ ~þ®ù¦ïû¸Ò6-ûFíÚ×9Æ!ñoF¾/ ûqk#¢¿îú¤4ׯ¶#ÄïóÊ#Ä@©ÍÄþÞÒ²²ð1G°Ïë6£Þ²B ê¥Gïpô²å¯H<(ÿ¥@v½æP ^VT"å`xÀk°É¥èqÐqÇz¤°íPt5Ø#ò�lúýyjh%çõr]PÑ=Ù@ +Ò8Êm¹<!eìÍôÂePTp,£Ï*zÉÀÑV¨ú5ÃPù¸pÙïì¢Ö§ DlÒÓàÆt×ô©~j×NQÊ@ ·w°µ·çT}VÓá�wßÄH=øíÆ {fÜpÚ°B"êµ/± ¹ëñÈXbã}ÚõÐAË~ yô89w.gdS°sÖ2# +hNQ\ÇÞ9ã°Jî[q`(È¡Çí&ôòRµôÏ\ñNCþÎzÇÌ&lUXåSÏ0Aöt ݱèµ00s`½AK°8ZgÓtZ`6kJ +Lr¦¤àÈL{ \Ýäzæíd )¡`/6wSÂñrÞȪRQp +*¸C&:�w¨Gþ®ãl` <Ô7°a:ÞúªpÛ5´k6/S¶{d&cGf÷Ð.eSÐ1P +¾h ´Ãám%¡ÐdöããC;DDréðäLûx®+ ·¬¢î§Ð)sçr )bì¯k½K¨9,©¬n!Ik¬ºãÝËw¯½3æ+0kIVt~G]4ä~÷ÚQóð}iºoh½&|�ùî5&´àéXAäè( "¥õõµªZr3¢!ÿpg"%áõH'á +¥H| sÏüx~ÀÌ~fk¾ XtÄ0"=p Øè!´${dpC=d 3ä|Þ_ÜôÆH(�:j^ÑzG£ô^}ùùæ¤×f@¿@LÐé}{[Ê?åon-ÖQ-~TCƳ¡éj¼jÌ«»³ÓÇAHÈ÷ÐàûüŬQ*={WÊ'ùëÎÁ[Mçi}ÊrLq@¤C¥+¡^]áôú|ë f'©fwC_¤·dÜ 3×)HÌøïprKÆ^Ú=bÕ}{öéOãÜ´dÄñÞ1ÖGv¨·Á"ÇS*^ò>ýi`F8R¬¥¶tÿ:½%cA¤?²)Øê7FE4t=Æô£cz"Òo +Ì+7Fe2¨ßí0ÓoöøbG5W fL÷ÅT_\!B¥7¯èuÕ³iaÅiÏT»± g*´CXìΪ-#9-×»µ@âòqù¶]´>NW¯èãr6¸ÂéþcGtÚÉ6dz«u@¬U�>N½�§?+-tÙ}dù¼¦O±Äéóz»«Ä>³]o·[ÁÍùô:¦í=ÝV^qÃa³Ïëï&ûuÈËúVIoocïï(RÕÐjÇãûF~Øzð}OÀ> +ec.ë%Ü@ua7+ äÓ!(ë2kîãÝ ´YöPêïèô²¯3|öô)�¥gþÖäbùt4Bw)¿H¶Êk÷ö ÂF§ï¬ìzÒa&dwýË @¹:U©ÉðÒrÙòAÏÇãØrÉåÓ¯W*ÉFß°÷Ѧ_vxû"£Q_Â{R'F} «reC»#% =ýâc1üxÐZ¢dÂ}0^Ô{YD5``ë5GÁÆ>è1Ä~Òãå§ßwddte£e£Çj»íeÉ(Xt]ó§ë˺÷wAÔ1=êM½íkÛþ&¹¬X^D}ýø8·×5GygO|´¬Åº«èv[MÃø%ÍAü¯ÓBà ü×£h5¡úý|â|^ý£íD<ÊúªÁZ´¿¢PUkwñù>ÖôòßE +UÙ; +¸³Ç¸ÕhÀê+ +åR£=ýÿè¶"MIBfCÿ:4ZI0RÓû$p½áçåp£¢XËñüÃ$Mzóè+×±t,9Mk¶¹-CÚmÐ)ÁÇõÁHáÉÖ[v3Ú:¯F_wôÏ®èórjlC§X§×ë£ßíãyµJýï;_oß·¿§xdÔw Á|ÝfxzGÓi¤´ú¸ùúi8|þ¼£qúò©Ù¾]À«!õä8'¶B¦m8ÀÈ^sôÓßÞãcÒúË\wÀ|Gc@&®Õt.ô¢.Òr&##Ïu60yÒãXYo²Ä9 +'¶^ù³.'UD<½ÿJ±ê^ª¨%Öѯ¯A»ïûcü G¡Ést§~ê$1ÖáP,ú¼(¡XÅóD>"£Pîõ>I<=[/~NHëå°ñä#%LC^3bM>r/p²Y¼<×8W 9|IbÅf$!½ñwçUÛUS[ʼMb Á·U(þ²úúñwÛÊ0xAFÓA¾ÝÐaða°¡·ÿ ¡jdõ08Ìït=ÞhOFÖ?ûüy^ŵ¢ Q'É`£ DÉÓÆ¥gõϼ}¡£¸ZJéezïh3dg³îG&6~*ÁÓz½ïCMÈdé}*2²ð2õ¹ß:׫»=®Z';î·cì·ßVsÝöʬ½ö[v²ÎuÚßá½Útûu²Í~l®ë Ë>³Zr²[̳ÏI¢=³Úë@j9 +ɧ7WÎ|þØoÖ@tøô@H<½,µ¬OTÞ`ÜÎóõ@kµ±"ÙÓëÛâ¿/gÆV¼¦#0¸ªÃ'?oËÍ!!«I%Cãwn &O±*NÏsHzÏ'Bãd>¯÷²Î´3ÐÖ°qÀaB4gÖ©|n Öò}fÍû8»¥Hyl½'Ì"~ZD¬×%gEZ:@ã>Gç7é]ÚðVÒçùrà/î:íHð i,¡áÐÆp§åÚ¬7¢ ¿Ñ½FÉbpàI£qàÀR¤Å.?²3²Y`ÁÆ+Î,¶<òÖ¹JÔç5½ÐfÊèy÷7Ŧ·ï/R°ÁCo¯_"¬zBÃ»ÕæÑûã¹áë%ýøzdk¹°d#êýs¶MÔÉ×5³Ç+Ãm¾ÉcÞæHòûô'æ%b Ì ³«c±mnÇdeÍ¡ÇvÙ0XstìÌ>o82\½ßHA«o¾H¸¥´ÙÃýY¬Ø\úy)Jßl=Ò[ =®l³¬éÎzhquÖ£HS¹ÿ1µkÖc\Ϥ£ý;&7JZOKã$õ¬ YBTGSÈ¢«EîÃo÷,!ýÚIþ?ýþ·ßýYüüþ¯_p,ý¯ÿßÿýoñ«¤ýõ£u}ý¿úñïþÛ?þø»¿ýÃÿá_ÿøü÷ÿüg?þé_þñ¯þïþøW?þçÿûñßÿâOûw÷ã/ÿÝþòßÿø³¯ñ·ü_ü?ýø?þæOú§ÿø»ßýÛ¿ýÛ×þæoÿõëþø§ßýe\¿þÿñÿçwÿô¯Çº¯¿ùÓßÿÝ¿ÿñûÿýÛùýkwÿÛb9 +endstream +endobj +468 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1047 0 R +/Name /Im441 +/Width 22 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀÏó@ý óæÌ~` +°Pû>þÌ00c ù?@�z5! +endstream +endobj +469 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1048 0 R +/Name /Im442 +/Width 29 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÿÿ CÀqs0Ã(6``øÿñ +fnpp`n`�áfg`d`f fcàc°cøÿÿ� +p +endstream +endobj +470 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1049 0 R +/Name /Im443 +/Width 24 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÂÁ @ÑOjêÄtFp&.w`½!ðòiçSaT~ Ñ'4h £".Hý6gò\2æÂ«Ü?3 +endstream +endobj +471 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1050 0 R +/Name /Im444 +/Width 28 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÿÁù�à þ�Ä`\�d#ð@T÷áãÿà¹U¡`~ þÿ�Ên +endstream +endobj +472 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1051 0 R +/Name /Im445 +/Width 25 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``n``àg``°âÌðqÁÄä4��.2u +endstream +endobj +473 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 593 0 R >> /XObject << /Im318 331 0 R /Im209 218 0 R /Im319 332 0 R /Im203 212 0 R /Im320 333 0 R /Im204 213 0 R /Im202 211 0 R /Im209 218 0 R /Im203 212 0 R /Im201 210 0 R /Im211 220 0 R /Im320 333 0 R /Im209 218 0 R /Im321 334 0 R /Im321 334 0 R /Im204 213 0 R /Im205 214 0 R /Im209 218 0 R /Im208 217 0 R /Im322 335 0 R /Im320 333 0 R /Im323 336 0 R /Im199 206 0 R /Im212 221 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im106 113 0 R /Im108 115 0 R /Im103 110 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im106 113 0 R /Im106 113 0 R /Im112 119 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im238 247 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im120 127 0 R /Im114 121 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im97 104 0 R /Im93 100 0 R /Im101 108 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im98 105 0 R /Im111 118 0 R /Im99 106 0 R /Im100 107 0 R /Im95 102 0 R /Im99 106 0 R /Im102 109 0 R /Im98 105 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im108 115 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im93 100 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im98 105 0 R /Im113 120 0 R /Im108 115 0 R /Im97 104 0 R /Im96 103 0 R /Im96 103 0 R /Im238 247 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im114 121 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im238 247 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im108 115 0 R /Im113 120 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im273 284 0 R /Im142 149 0 R /Im446 475 0 R /Im447 476 0 R /Im153 160 0 R /Im153 160 0 R /Im145 152 0 R /Im275 286 0 R /Im148 155 0 R /Im275 286 0 R /Im158 165 0 R /Im427 450 0 R /Im145 152 0 R /Im372 387 0 R /Im148 155 0 R /Im147 154 0 R /Im310 321 0 R /Im275 286 0 R /Im448 477 0 R /Im109 116 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im108 115 0 R /Im94 101 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im100 107 0 R /Im108 115 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im99 106 0 R /Im105 112 0 R /Im93 100 0 R /Im94 101 0 R /Im117 124 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im107 114 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im117 124 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im112 119 0 R /Im108 115 0 R /Im111 118 0 R /Im102 109 0 R /Im108 115 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im105 112 0 R /Im99 106 0 R /Im124 131 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im74 81 0 R /Im134 141 0 R /Im93 100 0 R /Im100 107 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im102 109 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im98 105 0 R /Im115 122 0 R /Im123 130 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im74 81 0 R /Im342 355 0 R /Im343 356 0 R /Im357 372 0 R /Im343 356 0 R /Im344 357 0 R /Im374 389 0 R /Im301 312 0 R /Im283 294 0 R /Im219 228 0 R /Im232 241 0 R /Im137 144 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im112 119 0 R /Im113 120 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im139 146 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im96 103 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im139 146 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im110 117 0 R /Im112 119 0 R /Im130 137 0 R /Im98 105 0 R /Im94 101 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im360 375 0 R /Im96 103 0 R /Im98 105 0 R /Im113 120 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im160 167 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im106 113 0 R /Im128 135 0 R /Im360 375 0 R /Im160 167 0 R /Im348 361 0 R /Im272 283 0 R /Im133 140 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im97 104 0 R /Im101 108 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im107 114 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im106 113 0 R /Im98 105 0 R /Im238 247 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im104 111 0 R /Im96 103 0 R /Im114 121 0 R /Im98 105 0 R /Im100 107 0 R /Im100 107 0 R /Im105 112 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im238 247 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im96 103 0 R /Im102 109 0 R /Im74 81 0 R /Im119 126 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im93 100 0 R /Im115 122 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im99 106 0 R /Im117 124 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im108 115 0 R /Im105 112 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im106 113 0 R /Im93 100 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im99 106 0 R /Im97 104 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im110 117 0 R /Im112 119 0 R /Im130 137 0 R /Im98 105 0 R /Im94 101 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im99 106 0 R /Im117 124 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im114 121 0 R /Im96 103 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im449 478 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im444 471 0 R /Im450 479 0 R /Im346 359 0 R /Im235 244 0 R /Im304 315 0 R /Im118 125 0 R /Im199 206 0 R /Im350 363 0 R /Im444 471 0 R /Im450 479 0 R /Im120 127 0 R /Im444 471 0 R /Im450 479 0 R /Im346 359 0 R /Im249 258 0 R /Im304 315 0 R /Im74 81 0 R /Im74 81 0 R /Im74 81 0 R /Im304 315 0 R /Im118 125 0 R /Im199 206 0 R /Im350 363 0 R /Im444 471 0 R /Im450 479 0 R /Im120 127 0 R /Im451 480 0 R /Im452 481 0 R /Im235 244 0 R /Im444 471 0 R /Im450 479 0 R /Im346 359 0 R /Im451 480 0 R /Im305 316 0 R /Im444 471 0 R /Im450 479 0 R /Im118 125 0 R /Im451 480 0 R /Im366 381 0 R /Im364 379 0 R /Im367 382 0 R /Im235 244 0 R /Im118 125 0 R /Im199 206 0 R /Im350 363 0 R /Im444 471 0 R /Im450 479 0 R /Im120 127 0 R /Im364 379 0 R /Im452 481 0 R /Im235 244 0 R /Im346 359 0 R /Im364 379 0 R /Im120 127 0 R /Im107 114 0 R /Im114 121 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im444 471 0 R /Im450 479 0 R /Im98 105 0 R /Im101 108 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im103 110 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im114 121 0 R /Im96 103 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im103 110 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im117 124 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im93 100 0 R /Im98 105 0 R /Im103 110 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im449 478 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im114 121 0 R /Im98 105 0 R /Im100 107 0 R /Im100 107 0 R /Im103 110 0 R /Im104 111 0 R /Im93 100 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im365 380 0 R /Im453 482 0 R /Im454 483 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im118 125 0 R /Im365 380 0 R /Im304 315 0 R /Im199 206 0 R /Im120 127 0 R /Im453 482 0 R /Im454 483 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im108 115 0 R /Im94 101 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im93 100 0 R /Im105 112 0 R /Im98 105 0 R /Im139 146 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im106 113 0 R /Im93 100 0 R /Im96 103 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im97 104 0 R /Im108 115 0 R /Im99 106 0 R /Im100 107 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im105 112 0 R /Im99 106 0 R /Im124 131 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im107 114 0 R /Im96 103 0 R /Im101 108 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im98 105 0 R /Im97 104 0 R /Im101 108 0 R /Im93 100 0 R /Im114 121 0 R /Im94 101 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im160 167 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im101 108 0 R /Im108 115 0 R /Im140 147 0 R /Im103 110 0 R /Im98 105 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im107 114 0 R /Im114 121 0 R /Im104 111 0 R /Im98 105 0 R /Im103 110 0 R /Im104 111 0 R /Im105 112 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im103 110 0 R /Im108 115 0 R /Im97 104 0 R /Im93 100 0 R /Im238 247 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im74 81 0 R /Im342 355 0 R /Im343 356 0 R /Im357 372 0 R /Im343 356 0 R /Im342 355 0 R /Im297 308 0 R /Im218 227 0 R /Im224 233 0 R /Im290 301 0 R /Im219 228 0 R /Im283 294 0 R /Im227 236 0 R /Im230 239 0 R /Im119 126 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im97 104 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im103 110 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im115 122 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im118 125 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im132 139 0 R /Im354 367 0 R /Im112 119 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im108 115 0 R /Im100 107 0 R /Im96 103 0 R /Im120 127 0 R /Im74 81 0 R /Im311 322 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im100 107 0 R /Im93 100 0 R /Im98 105 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im104 111 0 R /Im108 115 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im98 105 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im113 120 0 R /Im123 130 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im98 105 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im101 108 0 R /Im108 115 0 R /Im113 120 0 R /Im93 100 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im100 107 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im102 109 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im104 111 0 R /Im108 115 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im97 104 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im93 100 0 R /Im108 115 0 R /Im97 104 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im121 128 0 R /Im108 115 0 R /Im98 105 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im115 122 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im117 124 0 R /Im102 109 0 R /Im99 106 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im104 111 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im124 131 0 R /Im94 101 0 R /Im93 100 0 R /Im114 121 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im117 124 0 R /Im96 103 0 R /Im113 120 0 R /Im123 130 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im97 104 0 R /Im99 106 0 R /Im113 120 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im74 81 0 R /Im119 126 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im93 100 0 R /Im115 122 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im253 262 0 R /Im101 108 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im108 115 0 R /Im105 112 0 R /Im99 106 0 R /Im101 108 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im112 119 0 R /Im100 107 0 R /Im98 105 0 R /Im124 131 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im101 108 0 R /Im106 113 0 R /Im93 100 0 R /Im107 114 0 R /Im311 322 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im128 135 0 R /Im311 322 0 R /Im99 106 0 R /Im94 101 0 R /Im293 304 0 R /Im272 283 0 R /Im133 140 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im291 302 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im98 105 0 R /Im130 137 0 R /Im99 106 0 R /Im126 133 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im455 484 0 R /Im118 125 0 R /Im353 366 0 R /Im120 127 0 R /Im305 316 0 R /Im366 381 0 R /Im352 365 0 R /Im456 485 0 R /Im352 365 0 R /Im455 484 0 R /Im118 125 0 R /Im353 366 0 R /Im352 365 0 R /Im120 127 0 R /Im107 114 0 R /Im114 121 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im455 484 0 R /Im118 125 0 R /Im353 366 0 R /Im120 127 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im107 114 0 R /Im353 366 0 R /Im352 365 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im353 366 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im456 485 0 R /Im352 365 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im353 366 0 R /Im352 365 0 R /Im113 120 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im103 110 0 R /Im104 111 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im113 120 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im117 124 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im113 120 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im100 107 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im455 484 0 R /Im118 125 0 R /Im353 366 0 R /Im120 127 0 R /Im305 316 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im352 365 0 R /Im457 486 0 R /Im458 487 0 R /Im459 488 0 R /Im362 377 0 R /Im460 489 0 R /Im461 490 0 R /Im462 491 0 R /Im458 487 0 R /Im459 488 0 R /Im362 377 0 R /Im461 490 0 R /Im452 481 0 R /Im463 492 0 R /Im455 484 0 R /Im118 125 0 R /Im353 366 0 R /Im352 365 0 R /Im120 127 0 R /Im74 81 0 R /Im464 493 0 R /Im118 125 0 R /Im353 366 0 R /Im352 365 0 R /Im120 127 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im108 115 0 R /Im101 108 0 R /Im99 106 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im96 103 0 R /Im112 119 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im123 130 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im124 131 0 R /Im97 104 0 R /Im93 100 0 R /Im100 107 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im464 493 0 R /Im118 125 0 R /Im353 366 0 R /Im352 365 0 R /Im120 127 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im117 124 0 R /Im93 100 0 R /Im99 106 0 R /Im100 107 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im113 120 0 R /Im123 130 0 R /Im99 106 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im98 105 0 R /Im105 112 0 R /Im108 115 0 R /Im105 112 0 R /Im93 100 0 R /Im115 122 0 R /Im465 494 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im95 102 0 R /Im93 100 0 R /Im98 105 0 R /Im106 113 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im101 108 0 R /Im96 103 0 R /Im96 103 0 R /Im105 112 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im96 103 0 R /Im117 124 0 R /Im93 100 0 R /Im93 100 0 R /Im106 113 0 R /Im107 114 0 R /Im113 120 0 R /Im108 115 0 R /Im97 104 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im93 100 0 R /Im103 110 0 R /Im100 107 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im93 100 0 R /Im108 115 0 R /Im97 104 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im100 107 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im94 101 0 R /Im96 103 0 R /Im96 103 0 R /Im106 113 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im103 110 0 R /Im108 115 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im107 114 0 R /Im97 104 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im456 485 0 R /Im352 365 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im353 366 0 R /Im352 365 0 R /Im114 121 0 R /Im96 103 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im108 115 0 R /Im117 124 0 R /Im104 111 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im93 100 0 R /Im114 121 0 R /Im93 100 0 R /Im102 109 0 R /Im124 131 0 R /Im74 81 0 R /Im119 126 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im103 110 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im104 111 0 R /Im93 100 0 R /Im114 121 0 R /Im97 104 0 R /Im93 100 0 R /Im93 100 0 R /Im113 120 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im126 133 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 474 0 R +>> +endobj +474 0 obj +<< +/Length 1052 0 R +/Filter /FlateDecode +>> +stream +x¥}K³õ¸qä¾Å]Ú¹M¼øðrÂVÄl&ì°ÚÌHmKc½Õù÷C¢x/ÉÌ,pÓ¡¸úpª +UBÖ_~ø·¿ü>þþÃ_~Èe>Ïa°ÿS>¦øYü1åð¹LãǯÿðÃÿã)Ìÿü§þíÛøý_Ç/ë/ÎÓg¯ãã°\ÇÏ8£ï/~ÿ6}ûKÏe¾O Ý Ã aB3XÿÛ,7 n ák SúA¾þÀô¹à%Ä�eÕ=qÑ6 +1MésÎðr3²óªGñ&Ä�~lc¶q̪#ÁàÀØÌê!ÎEÓÄ»Vé¯ÿ K<ôàûYK·&î3ÃgpóGÌb@Û"0&¬H1âm¼)ÒÝ£Õ%ÄìBÀ\BIÈ¥¢U±¤ÃMùsÎ??Ó~(¼d8,߯/75Úÿ1>£á·õÇÏù¶eÌ Úß/ÕóçPéÝ=É]üûì|>ܽ1[ýv")ËGóÙÐPàFu÷ֵ¸ÙPúÉ`ØE4å6º;ÐNÔêÖ³}_:pÓ!¦!Atp?Î »'¦[á%,hJ8âJh?0i??Ç^9LésØ"UçåkovHE8A\#ã:~v|;é÷gdÇèûÄø}Y "öC·ï£pdÛÁ5nØ7à4>&ÙÄ MG^�º!lÅ1hV|wcëÌy;Êkv´útå×`¢.!AWä£4bG$ØqÑa +ÎæÊ#tDë§:Xði$ÛAáa¢pÔ\!Õ¢ ~äûÓRè4þÍѱÜvÿ�vÅ`É +°'Rl#»°-HÜBù8NÐ9ãT_%b~¤éhÜ[¸GD)E-"¢+HHî:À¢êD"¢ÛqNE¡�GFt(#:t¨`O*À<U{Ò[@AW0A3Ô·pQµ¾ 01äÁ~ aGü�Ñ®@×*ñMÌ äerXIn'{¬Å9`G"{ÂS3)/x- u¦çFDG¡'ÒÓáè$]ç' , nÁá[ÀIÓ£Ó,rLS³<A Ü<)]ÀÚ) :S;Îð0[H°Dq!Pÿ:÷GiM üä àÌ W®ë äÆ!ÈgyZDËÈ?JÒ6öý«õ|¾B3áòöÍðë²öÔ0ä<äÄ,^ìó¥KãCxÁß0@ñÉ`¨é_~vã¹À�láÃM� KØÿ%x;Á8¾$ Ò ¤' �0·$Àf´dx]¸*F@EX ÊÌê¡ãG¨C2¼Ö dsáçñ�Þ¤V4Á ÈéT°";Pó±¶ :´ 7�tnÁ¢m!EÖèn ¸Òv�äanÀP#7 1Bs`«ñ¡#IsÄô MQ f¨Ã`°EâÆä["§»·°@ÏrC·{O¢8¢ t0ÑQ nÁÝP~Äsº,ÝÀ¢¹ºñm[áÏþ4¤WÅÈù¦ÏábÆÓç8¿¢ù)¯ÃÇÓMßtÛÁðú×ßÇïYO²×çOãC¾m@ùFôýyÇÎãs¾ pþÌ _-¬ë¿/ gp\ýØ>U[ë¦Ïòµ®8ÈÄAûòY.:°× Z5t!(½ºÎ þ@-ú¹nâíîJP G8á0°X´ä×å*¢ çÛÖcû*Ū#B7E Û0uoîVwþ4[ Û°Ûp/¨3XÐ6»1 _a2ÇÀ7VORñäÉvEX¾ÝüoÖôuï*â:D;ÓÊ©î^Èâ"Í/ã¥KïW }h!¬øLgø} YêÆ#x×Þ,55*é}é /aòwdY¬sEãÉ( °UÀvÝ@GÒ@Ï5�Ëôꩤí�`VU�$\õ,°?O@Ç +ÞBc*¤t£º@rY�Èó³-ðô-4¸íï[^[pøñ¾bSÌ$ªD>äÛÎbiý�Mïciy"V¶ìIä:Èã0oxì dC@ÇÉ"ôÅÓxCY4C"Hð0«cFJä@Á:¤ãlî|Ä1¡ñÒ Å²ÌýñØ^ÔàE}+0¾ÚB̵hß§*¸h*̾oM7F`D=ñûÀ^7"6"Ù¥¨Å´-=´â5{&¬e¤-k§1¯ÀÃ: e d7 Ð ø(Ó'0Aó¢4Ãè:4ã`@> +öCòÕs"ñ¬VÂ×á¬Ïãsn«¸ò½aXrv#6ïÎñYvÓï?tD9cOx ³ãqfÊX hôÄ% Òf1·¤ß¹¥þ@/×Ræ1/}ô2vz,t:ØYóÄt0 r@d&vºX ^w<R0FwÛfDTÀh_T³\EZ°ãà÷o;ÀníJ÷k³Óøû{©n w:áü÷îL-%9×Ïr»éH}5¨ ¤¾ÔeFÃuÕâÔW�¹Ñ ééo¤tÇ`u? ׬�z +é}*/ãÃî½w¥ +©Þ{§S%û ãü9H:Ì|X0då²Ù E¨ñÐôò£}¿ó]Øò6ÀØ47@ØGZ^?ÓFJèPâO�Ü´°ÀD¶¸º2É +x{p@¼Í= ã#¡þÔ?&têïIbÅ£=²~xÄ,dextGìÇäÓ<¨úüG¸:¾:B 4ØàÆ8o�BÀü ãÆ8Îp1ÖA½oy¨Ë3HÃ3H0¢»¹á aÜp!nð,v¼R%'@ä£!ÌbPMáAâHu»@%ïIRaÔÚæ%26F-&§¡Ê 'iBß°yã ÓRºY= �ÔpB[83ݽ1oZ!¨Í ð7êÐ éðnP£9.¾ÝÊi(:ÃI¹ò&'ÓèøtÂÑdCÚy1A'q^*ZbÍÉãÄZ�÷ái9®ÌcèrcäÝÐßé©u/U ¥"ûq ԬɷÄêô¦²)¡<ê +I娮t»C¹US$Øå¨®@wèê +ñò;9CÊcã}í>ñ:çE$« ßÚ1%DÐçõçæ®^hôyGÙÆFhúRÀóüõbj{®û^I»hjm?]åUç è§áÜ,¯jï +æÐ1Î' ]5íµÐA3ÑØtVßQSbzS0!%vþµÌ=l¾o(!ÇÉ¡ràäâðÀf¬×`P2éK´ÊótÒgGçgÇL.Z8pòÞÔèLÛJÄã È·®G)ôyriÌÈ +ðF,P @=\èFfx?Lés�ÕÑT:Ôv4»£ú<Ø1:TèHu }A:¨_¹F«\ôAßÙP)¯ ~x&ìÈäÚ¥én1ÿ8G1¶hÆM¨»÷0:êÎÃh£C}t%ì|¨Èy öÚ~[=þ(ä@ªÛ1)ùùaPæg¾<ÁJ¿òK0³Óï +¤ºñ}tk-+ Ëaorh/pï©õ~ $WÀeìt&Ïý üB27$S{¥Ô0 +¦£úâôJä#BG%´ +ËÃ5Oc"Á1?ÊL¸t\~rB÷f¦y[ ?X`V¢_V,bZDÒAÃw(>9à-ÔQê�cZG-vg©,Âãía +Ð`?$°Â»¦=w¦öÐü4Äø¡¹ï¬ûøö9ExgiúLú\½þÊÝÎñæxÒ)ÇnÏãuhË�ÞóxZ +èû²«¾ü.A{Ð E#R�:h3 RtÐ +ÈøHñä8 (A]6aiaDp ;Öñªµ&BÜÒ +²B|öBè¬`FJà!ì5°¤vc$}%µç *JBøaÅØmGLV°@O¬CØêà¥D!õ £±v£½L@G#q ²Eè +=%)±$áÈtc· n@;pTCC-rÄÚqÄIM¡8ZnÁõë7-k8'ú2Ïp«L� Úi©½j1tfDàú§zß©î©/¨¼µz)m@pôK2NÏ)+k¬¥C§ñwx +fy>Z³ùDÃxgU ù²û_VØHQ¯ã%érÿ~Å.ãËM~ìûk0 }ÿNº Ðx ¿ëxKKêÖ `848Ý7à~ µpdïòQð9FîGÙüØëu]À®Îå®ÂWbÛÚ» 7¼3ëZ^61¦¡%|+*Ó÷fÖk¶¡zùk|×-AÍÏãõÔpÁ3ÃJ7Òú<Ϭwr¯ÔÌú:ÿÒ¤¢V^@fªIÐÓÊ@gª"o} + [X·¶7Ú@*_FÈe?ËÔËÆZ éÅÜ[ñÔ#-E-æThDµú:Ýç(I _' ÷ï´^el¦Ð,ÐeÖ!ãlzRRhôÞ_Æ;§vÑ´2@CFËE3 !}Ò´N a-Ôsûe¨çö@ÏíVC´h®÷ë®^×M£èX· ´2Qé !㡲Ҵn;¨×dè¬9IóXb +c2½n$BWê ß×ßB?¤×X/é¶ +³VÒÐè\¢«°§Qôbt#´9*Otz#æ î ìÆÓüT�Ø-L0/¶Ò©ËÞÇSú`/¦×X8Õ +ù+]íà¤ñQîè$ ' ¿ÈáÔV<¥¤´p&¡-ôÎÀÔP§ÉÔ:iYe5Æ)d5ì,HõÖvQ~Ì£Cs~ÛÛæxñÔ³x´¼N6ãÃ)ùq¤Õ>5£!Ú:`Ê5[ñðàKçrSÃûKgþ@ö[ñT37g̬¨t²ØÍ*ï_Ó~Ì#ú<BÈd�ãõ`¤6WOÁOE÷<{,¹(4GýÖvÀÁÎ"TGñÁÄ= +0ø<^çQL¶MÎV5£ èXoþF¸¶+êV¢j±ãø¸H^×OvÌ_¸BÐéP±Ã¹¢=×첩!@ÐâÔY¤ÃÂÚ³½öÀV3"*¨yr:ÿwP¯»Á^Lg!\½Ðëªè¼Â#½þ »1G§ dÂòPF-à¥OÈyÞç³\f!Ó^tRJ/ìm@ÇwgìEÜDm7éGòUö1~/û÷ö¥¼ò)ïV46î'ÑlLw7¶(2¸àY¬KAS"P´R:§RÂg±þÂ8A3ÖkDzèGøÀ ÈWÎF|Ié§ãÕE ³qZDH÷p*ÒiN0£ÓPJKìîüPIj¨«ñE(ß5å#µl¬âS0$ó4ÂJ$ndìÊô>)$µÔ Á@Õ/Þ±'²=¸Ã;¬uÎ_vðUC·^ªaPî¬Y·¡ÞãäÌ¥Ø!EÊGÞëHõ!LyRDóÎϾ¿¨ð{âæ¬àÞQ}×ÊS³»R4h΢´;s9&²n?BvÊ`ÞñÑqT°#Ñû®#ãÛ&Ïñ/óþÈõÚoþäNz³cæì<ÎÓ{?ÄÈ2<½×¡ôíýûó¾ADÇ/(Çò[jv|_Òyüìª#¿¤ÌqÖ ÐóN5£ èea>$دØ3×nØMIn¼sçÕ¼h<X}ÔqâV 8òÊÚÏ@Rd:UA°Â�us* ÃĨTó(ép°9ó.ðä=0Âëè%Ã"bLØ8Úõà<qw4dGV [QÌx<Hº0iKÙÛ´¸ú¡=xOÄzFìGôæ±²o5?ÑD©ÉqEHK#Ñ9pBÖüÈ ¤*¡Þé"à-¹Õ7rW±¯MA0p<1Mð8í8xD~Zòðl3ÞG-ëÃã04Ç+ÝFºF¯f#º 0-rÔÛÛ ÜËChàBûJÙ{ȨÇßÂHç!Ú÷y),ü¾^ +KÒ^²=1mñ§1kA5�t j5$oæû¡ñõ©öiüçÉ:8>ȬYKwnabä0ìt#á÷õ®MvÐnÜ8Ò»Ñ/#Åà\ýRÇôêò)":ÃV¨úüÜAù9ðQ÷1rP¼\@jÆàï[F¼C´5ñú)hU°ÏË褽N}CvÕú(ì¢3õ15´ áñ/HøòÇ��.X0®õ¹jè�J@nµÀÝñ@�?@ÁYCERw@{¥Aé=ák p«ç Ü[p¸:Ï ÈaP>HÂ4èØ(ºj% èWKïØxäFõ0ÈüZn»¢ +pp:bÇx¼zU@Ö">Èô)ÐQ=©£ +2.ÔévS,ø(Ðñq{ØtĬê°nTAÉ>ÊôÑ Rú¿#ë¤bÐ9ª¶*ØÞ³to2Ñ +ôGm :BGèvPú½P¯8N?p¿â@Jøªv¨:´ºÃïl¦§ñº18^w"aß×û½Ç;¨Ïj6{/CJsÙE�®-@&!Ý^±ÔEt>fÈ×tÊ."Ðf$C>¥µVÀ#ú,*Áu|}Vgl=1tÒ^Ú¨hô¬ú(8×ëM&äï h ·Ô@ÍxÁf¬çdÜÞäà »L@.²®½[xä-äá0tÄ:eVÀãa$�iWFG§g ]Rvºòi¢èÊÉÆ$ºöªé�l¤N kNÝ6ãÈÐQb_@¯Zð?�-Y¯º®ÈÓ5pÀÎP¿© ÎLÎaÚÍÿÒDí@nunlNRO%¼z*?;eç5nì=¬qc·7Nµ¶?²·xÜù>hÉǽ©£dCin;Ã-Ôs[éSkvøÊmÏ9ª"þz ±ÖP·ïÓA0¨rXa£"z]£"½;à Èñ¢(k! ¸ÈØe8ëÄÿÓÞØÃ^ï´·<»çöV²±Gu¥ïv¶ç%èï´3J8C%ßiÏÊzkØ0AY(û×Ðt"%h%ÈåÈÎ:íÃO<i'muÚq!ñ4yXè# 3#tòÏ ÷ÜiìÞÞàóçï×öÏsî°îº*¾cÅÐä 'øä-ùSÈî+ûß,¼hH. "ýs4_=Z¤&$ãCpà#!#%pN�êPw©P÷Å +äfòÖ<±× XïÄn/pà¬M-"Ü[3´C}æ ÷¼ï V¹úðÀY[JÈqVäàÈ' w7ptoM)$%¦áÑ =l>´~àRÿÒÂõYÞDÆÿ e £Ðy@¾g ÿÀ¨ETFØ!ÿ¬º%ag¨÷zpL £Xk©àÖÔ¦KkÌvRd©÷Û¦Û;í׬KùöåfJ´u[I`)ÈîÚºm?c¶ZÂ-½=Ï`µÐvdZgPù0·Gh«'ÝIJ5ÞP¢m +é«y[J¹ìö0í?pB¸»Ä;cDí]U{øåõÂåÃ}"§e·"ÄAT*Åâñߤõ5ñájÙÌ1Ϊ2_ã»]·Ó÷ÄûÁBßW¤¦2ó˨â½_Oe<0- +ëaevì¶æhî ×·¼gÖ¼<´4@¥Y³fd +¯)Ô+´ »û>át®ôÁ¤¸êJøúÐI ,[ûýrëdÁÛ°õÿy¶ é¡CJiéwH¯ÔK´ë@qµÇzRÌW»þÒå{ÎM 8>Õå)>ÕåiÖ<b½ÇÊK|/Åï²ë¸¿~ÞWñýññ*»Wº:í~ÊOçñ»Ò(à»lï§_3Xã¥üm ÄØÓ:¿ìilDj|#ékÎ:]®y»{äs@!Cs½ØïWçÍ53UÊ;;F¨JØ5ç´<sÍÕ£äc\å¥9F*Z1yÞ ¾ ©´¶]N¿ìèe ËûËiÉ× ÏtòcÀJöxï¸R(`¼�ÌøózÏé$}æÎCÍOã=¹³¥LÙmÉVº=¢èÝ@ NÑÑ´,Á\Qîc» ©ë1æ¬ý�A/hiEä3^Ìëê#¤Ë M°95;¢ÅïI°=Új·»]Jtïá¶ÀóupÜ) -p¼iõYyK(;<³kÒ EBÞý-`@f SnZKn%Ðz¸ú É/b²ïwvVØê 't¼¦ÈQ½¾?ê¾ÆCòí¬ÝHtK`|PÅ rÝ'4#B^{H.KâÆL`=«/Ð ¬r¼7&µÂñ¦ %³!xߤíÕì±m-I$+¢HӣкVwÇ8"Ç@+û�¤\9 [ä¥ë8"£ÚT é ß#<Ìt®>5&ä?0ª?ÀJ×9z¿Ï0¢Òò¾×Ú÷yá9\ÿí,c÷8yØ+çÏãõ{ã¼zrø6GhD¾Ù½õ3É +r¶Á�GÎýÙ^û3GC8,ø19¯±*½yuÞîàkwãìî¼ÆJç{óA:BÎÁ·¡×ä#$ìÌkÊð`)$$¢0_Qa>^:' K�¦¦ÞçæÓ]±Ý©AÜË$Xë´rjp²`Âl0y k?}uÖÂ_êÕazÏwÉ>oDëó¾Ýïë{¥c(ÿ´h¬ôîÐÌñBAúwçøiõiOÕîÃ-Ô¡` ¢HpÇ?V§h,-'NTÀRª +кõw@ïy] �tº½~_ßÀIó"G&àhÆflÄú +¸ºZÐ<;>ôzçn¡a/ä¨ÛßÉ9®~è0©zÈ ªwÊO°é/²¦ÌcíJÕkÅÖN¦µ ¼ú¾ã=úQ]<8D %਱8 êV0Ã`BF¢á2XSÁ$ǸáQ #KØ8 îgG¶¾O-`ÖæêÇtb Ç£ÆlÒ¦ÜÍø0Oãã4¶n4m%f�±æÉyÓm,½Î¨¹rªÅ +©ítH@¥1Ì +=�q§ù*×¶W`æ¸ó?=+`ïįJÆÁ®ºÎ? wë ÈÑÊÒôçæet&fzÍ@oø¡/#ª¡3#ªó*9°~6Ýó¡éóà÷ø.Þ@P ËðÝgÐ@ÆàãdpGPë`·4{L[ÞuÓ~&æGZÝ5·Éöoß±²ò§Ç|¢rgmB°cg!D!¦04>óÆ¥¾iîöƲÆÒç d}<Ö3ü¼îÍâ{*tæíâòyØ`@ó×Y°[óx +ðû7ñ³ûÞùeñ=8³AKË«N¾îmu.ãõK#9ÿ£Úö/4è}(9I@ðhåU¡éÌ:ë\' ·¬®´ + èU°]&à(æÐ÷0{H à=ÔÄí5|è#¹:`æðäóÃ` 8ÁámËñ?p©å¾üÎn@uxÏ×ê{Þ\:Ôm"ì(ö:½Ê|¹£± ñZnäHt2ùÔ°Rn¼+¦àWWü:LO?àx 9ºCOêy3´"R.ûV>JVÀ[ë 3Öëhã;7BOx?ÎéeË' óñ[DÜ´Ì;g¨CI ¼wÐÞééôþXi6 ýÐ:J¹a@è¡o¡¾Y)ÈðI$³d¥¬1@\· ÓÊ£»7'HÐé9õlïÎ B¼7'0q!![0?Óò0"NØéç dãÆñ¨^C $xÙÛ91t´º!ó±þ@B'¡û!Çx´^&¦zH~ÀôíM@&¨@O¨¥G!wã$ -Äê-ÆßÒGñ˶L�2àÊÐ98Ô-/f%|Å®C�Q +t°Ã ]DØhsÄJäøgèJÁy¡pâ åâKj>îÙiçO>w¼ÐµúçÏËÁÅçÏë±À?ïhõ$éQ¦«ü¾Ú'ë)ü�èÎÄ%¨Ãö¡¹ï)È[ßçuÐpý«ºý·F/`è¼÷ú?^¬ #Ü®Bv·T#Ìññh±Q _& 2]É+8×9o¬rè²�ýzA÷÷½g`µØ£$BNW¢QC]ÐbM´w?FD½e3TBMp¼Ìão½Û/ãÜñľïàñÐ:²Ò`n®UbCÒ/)°Ôç?ÂâC9A ^Z,Çeâ£Ho»ÀÐmz1²x;�êg*ptªÀAÑÛ ï__3Æ£k®á¦B;¿.ÇGà�R!�²ìDØÀPøt½`?ªódeÃ Ò LXòuyÔ¤uh')�L +wü¾þ@@Fè¸$ÉèGQ{¿½; Oåçf x§ :ÏDf¨s$í$¡{ß²:#êÈêYJÐINéÏ1¬ÉeÓ9Q q¢ Óèð(ôCf ú¿LÒ:}¸½ÓéýYoÃ(ÏqD2!rf aiY p:#rØt®Òè¬@Ëñ2¬@¬éqMÒ¼ô©ñ¼³*Çë÷$µhåòy�°æÏËñTµ¡ëêutÒòyó' ÝuîïP ym/Ç"ÐúGMX»âz;ÓºoÛóBè@É`¬Ô-%j¡Äñr«Ü %V$ÈAbd±Vx)yKhºF¸�ªÀ ¼tè4>&½|Â/ÌCMK.+Ð{bGü0q+ëdP4NèÖpVa«¸{¬¸µ´4ÀèÌIF*Ýôæ¼YóD¼yoeuGhÐi¼ùâÊ:ÆS£|sÅá3_ìpÿË´w[¹¿ °|7;Þ¾_cêËøró#ìûó¤}´õÓÞµEÄù"r÷û k÷Çw Úi< ¸Tå³@tÀzD\�®«®½^¦W3¤P®K¸g´Åd}ÙxùYÐ";OáâmVYã](p Iªb¾Õùü¶R®f·Óè4^Ǹæ½�ï2\þz-o}ä®ßÙHx:ÆzÔgá+eÔUÿìYòFå«%ùÓX &¸ýqh"t¼ìÑx=¬õñ:û[־ϫÐ÷]±éyá% ¿ #ò�¨Dm [8A' oát¸#îÀ¢ ¿DðD£,8 #pdö,.mhsWF�ý##x2ʱ±õ}ï=¿®uñ+ð×ÙßÊÃõø}}+JßÜ@Þ3:r×£:e9{öã2¼g|ÈðjÁCqÑ ^´�X®@L0Ò¹SÈϼPÐuê±ü°ÃÛ³¸Þh(¥gÑU=´¾Ï«& :ª& É/ì¼®¹A°Àt0Z0BwFcGi#¾�Íéu+TGÑÄøÈ§$úÓÔE;HZUÝ¡HT ·½aÝ8¹ïÏ4 UÈø}<太ûáð^t3 +û ÆtÑã=Sáä×8[w×-ÉE7¶^Õu3yÖV@éÿf¨ :ýßòp¼ B,q°çí/B¶CÕÉgUÕ¸Ul<Ì%[ì¸3+³ö&MWÂ_ÅÉðÐûþ&½iÁÃÉû.ñôªî<ÜÿªîòyýUÝ{^Õ%ôy¡»á»U}ÖñÓ%²Á¤;s"X¨[`þ¶bsÇ¡ðpÇE(C}ÐóxÀ¬î!cn �tÚ°%¨7©±¤äòz#ñXçQ ÅÔ0¼§¥ãNÄzºì½Þ5yÜ|³ÇëÐ)ÔãÈõP§nÌáÇÃ' _U-P¤«ª¾g%©ó¼Q· vDÐ¥ÑÑÁÖ +8ÆÄ³aÌã3°>ܽ®,&Q ©êÓº^+²§um%ä ±ò}þ° í ,aÄ÷ÊLd#òåðp�;2_:PæÎÌÖ5C2R/ø<CJã^k¯�L2cu¨<MRШÃÜ1k°2ûÍÈ`^-«à03ô#:H +c:ý²+a?¦¬û!ù«@ÇZæ8JPÆÈ¸7¯HV9Ôy¥zbùñÖ[Jm)Àô-9ìY¡r5ä:ÇxÈøPƹ¥^Äj¸Û~G¹¡G0¤ÓQÆÉÜþóªÏ®üNÁfhǨ,A.gPpD£3ØZTL÷pÄÐ`ÔN#*ìKh?ô¥¨x!k¾w¾Xï¥[]Ê´5eúà;]wLVN'Çd%LâyJDEWÄß'ö!ÝÐè,·r;ÚÊ» + v¾·JêØx,OÁîÆë½¼ ,þG¾ ®grC±°kóøþv«øe¼^ÅYO®âw4I©ãyúûÊ�,×b?]AåM P}[¨Cõ~ßÕ# vtw0 +ºR(�G)5^¾�®¥ìsÀ>Dã|ÔB7¶Ó·!öзA'¦ÃSÄè¥Ï4v¿,D*(]7ÙËÀþOGèF(sÄ*qCHͬ/»wËé +²¸Íbè^-,8ÐùÃF8 ¡þ¤�{"G1ò¼®Q¸A3Ðë¡'ÑédA+jV3·¬ jfD¶OSäLðû:P´ï7QâfDÊÆk-?ö"FÖØuþ³Q; èFÍ[ük×8zàZW9Z|`/æhñ' ?5¶´F]Ygh&gô:H1áhÏÎb#PëÞBëÐÑkEF#µnà@h{w PÏì3ft +¾« dèB&ë×3ÎØêX´£zî8¼ÀQJÜiD<Ú4"ÕJ9 Û£¸Ó 9ÜPÁÑ\5`èæÐÉÙcGñÐGÙco´NÂ;È÷|;ÐpÙ -höú³8+åoÈÓT4^èùiã$|ýQ[Ϥ0Å4ÄÏi×°öèHúÝÄÁrÑØÎRñP�VÜ@«¹ÇeæH<G¨Ã²û:hÛÎþ+Ê·3aBðqOмoÐ +">T ô¡Õ C è ôcPi@p<Ì;ÐÙ¡A»ÆÁUM9¸ +'ਢNpr S¥À¼H@~·Õ{ÀµÐþ"j¡FÑq¦ +¼ 7ODóÆÊwúGoè<-¼I0¦ÃÓ3egGÒF)4F<lFÖ¹±ÌeEW±AÂȱPÁ¹ó +d`ç¨"nÙq+¢ó<<¸"ZvD%$ÞàGº,B½ uÁ"ЫpGlɲ3LlõBdìî1Gh ;vE:ÄcÇ q6ZîÒwæÌt|5ôïàÞÃyQ}1x¡Ð«anæ¸oÎ)i! ]A £3v$zmÞieÄ{ .Éîeáé~Yz@¼ +dÅQÛPïeôF3ìºvrEnzì¬Q4h{W°`H.%/NÑe¹§ÙQÃÚAã(úrVªuÊÝ!Q=Íã2u%íá<ÜQ¸3ïÏëdÀ3½ø2ÜMÜú|ø"=?p\Ê32àü[dÀ×8¸BçðÒ+Â:% pMÀS@ÚkU�£|k¬L#Þç`B:¤·«ÚÀóø;8ÂèÐë)º=Sþ.@ÙÕ¢óxÝ×lâòyGó�¿¯7ñ®Ukñ>òÕ Ì^Â$»)JP�ú"úýÛèf^gØÜI<fz®+Ðk¸3Ü9#=|PKü®ÀQÃ]ðô.â5¸L@¿máä@vÕ³áoÒ#yË +ùM¶GþüÌä\+ÍM&]öúä�:Gê�%¨CÜQu¤¬»ö}ÎG×ÚÓÄË÷÷_Üð÷stø¶±8èÑIäèZ3ë¢HUbrQT/z.ãEè0÷áãDÉ1Ã`À1é°£y®1·9Õ¡Æ< ôNö´B½~V¨ÓlpH¿$nÌÅ(þì,¶G�½g±1wÅ ú!G 7Ç<%Ü0»[!½£)¢äâÐé[8¸Á[ßçT1òAÀ¨^pV¥Ï`A'LxHRZÄ9ÁE3æeøX²elÇ:©·ÏïãxÆÁÉ- +na½-ög¶vEã¡;m£rÍkZ¶g¦Ó{*W*BâHD'0 :@®FèJõ×Å{"ý)Å4I{H0ãxDæÌsÑN3º/éA`@äàÌ8"Ky{ïqlDÍã_¾^²oÈm¬è¤ã* Æd7% Íì-·;'×÷fö×®¦N6^3éºmþú|ÆjØÈÞï_£ûåórfoocöás¼È~y¯ºoÞ>Ë7' +¼0áRæg»gD'½ÛgD'íý#¤èñëû_È ²ÑL w0ÙZ1rÙ$ãcÇEÕÔɦê£À«ËåJ|Þ}µv¹~Õ¥Mß4ågflâ-;æõøI�E Zä%ÆÐQâN@Sa(q¯ÇP¯f7¸C÷z~t8îKcè=ÊÎmØà}ܡ˯Rì=Àuä¤ÀHÅ[à¤äè<tÑ47Ì. « (iF:PR +tlÇ:Ð="3rXô y"o¼©¨üTê»ÆE÷D0¨óx¢@¯#;½Hh©ñ]+Ð:Ì@áÞHI u»BC¡+¼$¬ô#ÅÖ~@c®ßŤWàáqd|ceÝ'/ãuNíq¶#Í8*:Ä fìdg`Pæ ¬ar'lPót²§%J[@qNìG@ï�ãrG÷F-;ç@1<ÎõRòókDz5ÒnÄ#ú]ÁÓx$?GòÓx$?G²pÂ^ÈfìHÅøp¼îD(îÅøûÙÊô9åõÊð dÉEpDµëØ®¼Îó<¿ï?Y>ÎóÊV5^?°|[Cº×°ð)Ìõ@<O!ÞáSÔ2Úx{´¼|mw[Ú.ú/;¹þiyE5®Êã÷U7]À7í8ÒüMR¹Å5÷èú« +áu¨[ùõ¹è30È<7fÀi )ÓF&øH^çe¢BH¢ørÒ´ÿ[|¹ÜÖ�öÎÊÿ0¼üÆÁê"Ïãõ�ÙÜâi¼ÙÍøó2F¥ñi}iñÆÃóÒâu|oL<¯ c5:{iñ¬õ¹ÄãÈy +w%ä\:pu»>»ì¢»bu»ÖçÝZ|Tx7ôò¬WËx½Â¼¶Ñ»×êGô}Gw`÷Ó¼ãISDÒ!Ç+9î'âÅê[0ÏÒpè½f9';öÔGÈ;8²Ù + æW0Zn¾:cö PôÒÐç¯c7xs"ì,ßûåæÉÁYN£ãT´£41Cß4TY3ª©ã<?*Änê ôc÷ñáIr�ﱬ7j1Èü�Þ/? 3j-xÐÎÎ%3èJ9òã(ÜCÛvD~�úBÏ +"2ìjógw³æé +òÔy tÏc9³:ªÄ/[pScä#¡'É?ÃÆqÀëÄ¡!êofêAù¡íOÀÁöÍ@çâ±;ÀVTH±cèI<�jtè{½ c«Sï ¬wø_�/TGÎÔÑ4aB¯ÒÎÐèdã8;Õ{Ú»½³¢^d |leêbrFÌh43âuæ07Ñ«´'ìÌåä*CWèдéýØÊÉUÔÁ¸¿ÀÀþæY8°zg¹Q9²ÛfnDÄqL¦3ÍQ;·yß³½ Ë(Bp·ãÜpÆ.>+Gñ}^@±ê/¢gô}áý?¯W©èózzAÃdFM_¿4Îù¸4v²åµ*óó +ñAÛQF´2Á-Ð+´.ò,Aá¨1oÿ�Ã} +2Aáàé´0jßç4 pý7ä\Fõ©Çi¼^ÐV]ÈÖS³«Ö\Æ;, Ö"ÀqÏQ_ª\Æ;:òîµTñ¼P÷P*PDðÜsÔb¦¶Ih¼~Ïv6¤Ë÷PµM© xØFM¸ÀF¤;úúý29°W"-ä¯D +yè *BÛÒAÞÒwAãõõ¦êº�áªÅáM ¶($ØUrÊ»çºèGD2IÀÃ%½ÌÅTØÌÙ°¤¾`.f¨CºXô"Áì¦g|æHã% ¿ða®¿óäì@td¬öÈØ®")$M¨mÆï;û=¹½°4?Do9§±]µÃ÷EW¸E¼it*ìÐÑ )%ѨÓ$´.vͪ¶"°pz|ìª]c¢--ØÒ¾ºØ5¯^?{ëb-ª:O!êu±µ5pXÝÒÛºXªIfL½EêöÞ)4Z´¨¹.¸´|¢^wmYæ[p¸iÒnqÞbÏ?¨�¹_ù½f`õò7Eº¿^ÕÊÛåý>ïA.RçòrÉ{QíöåK Fð?ç«Æa'h³|[ÂxSD¶TÛo\0JÑå¦ÛÛ»;A\¾~@ª®Þ£Ã³]Ø8ÞíÂæÅ] 3¨nBܹ6·¾/aþÌák àîø îNîpëg!òs &î[ÞÚ½?rË©Í-ÓøZδÍÀyok¨�~¾ÁsÂû7ÓÍ÷ª5æ|ÚF!Æ«+÷2ÿcß&ÌÕ!åÔ·õâkß·KªåÕv0æ¾t;Ô×"çñòê�' ïmçÎ\-M@ï"PûëtĤò3õL`/P%z¼ó6pv±£¶tõ!r{ìæ�n¡~ù3¢-t "÷ý:8Á è ÙèxhÍZÛ:Hv`AÕæäxÙ{Á\ aìü¨_C 85vC:)ìX9ÜAG§Ö¨í�§Q^Ⱥe8¹!uzÝÜaÛâÆ�®ev±Õß )¡£@}Ö^Ý^a?kFÀ³5ÐWK ÊÏGéý àôÐé0,#iàpP£-pg¬àÈÍZVÀk«4N®92Z[ÔxÌ_fèXz}> gôÊèéY<·vk;HPÛK@1òå|?LÇ÷äËB{R7 x¯dèt#0^Þ¤Æ*»IÍ»Êî'VdݰÊlxèEµIKJxa7²bGQmó×j3tcÂÅ¡òWlè4^/g²&± Ôë>¼; Íb8FmàÇ=««ÆÐ|{µñ+^Ó´ûM>-KÆðüÚ®ÀxÌA`nüß½øX!y¡ìǬ0»×ÎåkðÑ)¨C¤Ooz¨µ2{ɾO@~ R+³ÏãuÖ7¯á:}øg/Ûð?/T!2/3*«Æ:^g=6Xæò}Ùþ¬ÍýîÒö1P X üx[¼zIbBú¯÷%;àáóx½Ënß×U ËÀÐa¤Ct¶à è5c¥ÏÐÛüÖwûpêp¬BºMpú%ôðÃ\|úü÷V.TªF ×à pz$¸z9[ô^ÎÆ«B¡#Ô¹îÜ ''¼|X�¨Ñ³*QA"t6G¦sP;K^Ò0pð`ÐÉ;&-aõ[3»�<ÿÈ+«]ã¾j¼e§«9õ}XJºË>ÂÐ*: ø` ãAs¦ôû¦:JÁoVV +' ô »"ùCÊfI°ÔÐè(¥1ãÇ[àà[ ¦¥ÿ ;s933þÞã,-Pú3£>y"sà ÅÕ¼K%Ft<γc¾µ:s4m*qz-MdÜ9zfÝé{P4_Îé;v.§« \íÕ¨%y¼ý�ª§ +T~ÀTãìÊTÏø4Ðj]éäÃ3ê@i{}a´¸¬¡7°5ölFò(mgvv ´ìN�fWº +Øi·Àæoýi¸#³áçåhfF×+Â=nIêð}] cmÌC¬ðû²õ»"¹l^Àj%'aédÚþQ|Ëâù¶úÚ]oCczô~?£-Ðïzbºm�e·»ÞóxùÄÚCvÛ¿qL·�Ñá; #Épò¨Â:F= §¿¥=ü?OÀñîÙVÈ=ÉU@¯?àtp+À8*uPpÅý¸^¿jÉÄ:¾úÕ%¨w·Ä^H`Fß -ß,qÄC£aø/î!G8ÑÂÇ¢ TßÃiüPâùº�G /<JôäåY(gϽJM),3 5E¶V!GgEÍ9=3Vù(I8U ¥g*D?Æ¡ +ëðp^ÄAì[ÔaxåªmÄsÜÄÑnN0 ÖYÖÕpCv°KcýhÂ~Ðï)GgUGÊ:;â¤J/Å~L/Axrh-+¢ØhÄG\zÌÌõ-Ìj^L°Õ2ìØê%crãfîõ¤¹` êÈ&Ìëô:#ë©ó4IñÕ!âÈtZ`<£7ÇèÃÊ�lEe@GtÇQPÍôÂKºû$¦>ÀÝÞ³ @|J?p·u0;6+ZïXV;¼§ç¦àn¿Wo'ñÐÙfa× K(.ßwðVhiðö(°ñM@¿¥<xI÷ÜÞ¼6=@8<;Á ů"p~ ÐQYиhU#"[PægJ8"ð3/P�r^&8[2vå½êy¼]yN6è%W>÷s+Æ{|Ø>ïpa`õRÚz½zù¼MG0}»FP{´4VO¹1r~EáçÏëA¸ñª?ï(/ÏToD×EFIxôn±ÖÎ/c'«}¥!m'Ó¯×*îéÛ.û}]g¤¯·ndÜg2Àç9 £äòøpôu½X¹è² Ã×K½3ðY=wªÝ£ Ḡ+Ó|Þ¶ÞÑlãQÙóçå»\«2ït¸ÆÂÒëpã,vTxü¼,¼íE¿?çóR{/{ܼ?¹øâ#ÝKQÒ=*½ZPÚÐv»±oAòù´tÐçdà7?i¾^]TM7J£ÑìõÇ×oL&hw:cÉõ^ Dµ´zýÆêY ¸îJ$£%eàØgé=P<8Àô0TÒQz*y@zè³tzKÒ +Ñ)ÓKÓ׿GÉm.è¼u´0ÈLC÷8Ë ÒGSèµôþ¥°[êO(L×ï'´wÆÈëÈýò,åTqË9ëáñ,8Z8ÛÍÎòL<$dÀÆÖõR6è½r{zK P|òæ;Ó[»N_2P¬${Í-¬Ø kTF¹t~N÷ѰÀè-§Jk8¥TÀÜuF4wÝ_VBËÜu¢ÞjsçÉë¥öµ:wÛí.©sßí&©wçL¥±u {®WÙ'Qq4Ç&drz}¢~w¾øoïÎOãxvn0òÜ`ºgÖóbwO¿ ËÒyö' z.îÐg÷gº¡<Tuôu /Xµä¦;"¨ ðÀtÇJûË+P¹èÞ-<:-íaÀeúæä·Ä+ÐsèÔ8ò¬'>¢:ÀG5lyu._´ùtú5?ë=±íAA¯îMÚ±Á¡ô=;=^FF"edðð¦êÙ/(ÚI¬ëXëÌâP:ð[þ{ÐræbÖ.{Hp'í¢Ý}bx¡Á§ñ÷ ´w/ö. +Ohóäh/ÁxK¿ÈàÈÜÖËî<±í ACu¨ì ÓÒ±è¤ 70Èiyø»'1K"«E» §Õz|ж;rã-jZP¤{-¢¢Æ©:8zÅtÓ$2¥46"ÍEé=cíF²¾øT9wBd#Ñë8~sLÂôB÷]ÎòF¶¹<%eãèáiÍ(Q çGAn¡ÃÕï@*æx+´ §W(}^.P.ÌO@´hµHò3ºxê°T Î/K¤a¹ÞÚsW^¹´rÚ»{òê599\0ÝG{% ËwGü¸ÎQ+_oÁЧ֥weM/ÓÝU¨LCmx=2½ãÊ6Ľ¿»ôm¦õyc/`õò=¸_BkOóó¬[%Ú;Ä/ÈcÈW¶cwuªlÙ} 0îÍÜi¿ÜÿþË~üEø¿üõ¸ÛÆ}lDwõüò[k츬¿V¦õßüæãþç>~ÿ»_ÿôÇ¿ýôOÿúÏ¿øøó_ÿôÿûë~óñ¿ÿßÇ¿þûÏ¿ûýï?~õ¿þÕ?~üâóãß÷Óþô×?þÛÇoþùÏÿôãÿûß?þíïþöùÇ~þñWaÿã¯ÿëÿõãÿ¶ûüíÏøý?~üòÿüð/¿\g÷ÿ-ÖV= +endstream +endobj +475 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1053 0 R +/Name /Im446 +/Width 24 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xeË¡ @DÑÙCÀâ(ã(G FßQÆkoòÔ$_BZ1ZÐV::ÑCÜÄE36³ÌjvsLÖþpôý/äH'ä +endstream +endobj +476 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1054 0 R +/Name /Im447 +/Width 35 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x±0£HÉâÍGË(ÂyWcKOÀhõ\.2mÐÙ+Â<îÄü}¨@¨Ò¬wmhRãÒP©}/ö¼3 +endstream +endobj +477 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1055 0 R +/Name /Im448 +/Width 25 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xe!0·©hPg¤÷ßB ÎõYÔñ:l%ªÇ &ÙìlÖ5BÐM(íÂþè +&WÜ=ûJ¤®=^ÕöÕ,+FÌX@R>Xg.±>{§Å(¡ +endstream +endobj +478 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1056 0 R +/Name /Im449 +/Width 14 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³g`B>(BËV62 øÀ <Hxp ñ2�#Û3 +endstream +endobj +479 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1057 0 R +/Name /Im450 +/Width 17 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÑÀÌÚÀÆÌÀÂÈÀA|üØ00þa`óùxÀ!AáCÿ�û±ý +endstream +endobj +480 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1058 0 R +/Name /Im451 +/Width 12 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³aàaBã <p Áá@B2�æ +endstream +endobj +481 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1059 0 R +/Name /Im452 +/Width 18 +/Height 2 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÀÿÿ�¶} +endstream +endobj +482 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1060 0 R +/Name /Im453 +/Width 9 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcaàC ÿ @Ò� +0! Á�NèÐ +endstream +endobj +483 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1061 0 R +/Name /Im454 +/Width 14 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`càB Érp$áÄ +�s& + +endstream +endobj +484 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1062 0 R +/Name /Im455 +/Width 28 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-ÃQ Ñ_`' �cD0Ñn£ÉúmÞ³w·g(5|bÑdUçÉÅËê!5æÀäï\R¼¹i^ÿÈã +endstream +endobj +485 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1063 0 R +/Name /Im456 +/Width 23 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã```à"6& â`r`j`!>üÿÿ¡~þzùvü�á ¤ +endstream +endobj +486 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1064 0 R +/Name /Im457 +/Width 3 +/Height 13 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xsxàÀ��MÁ +endstream +endobj +487 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1065 0 R +/Name /Im458 +/Width 23 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÿáAã Æ<`ÄÇÜ@ì20dÁÇ`ÀÇPÀÇðñ�ÿÿ�× ü +endstream +endobj +488 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1066 0 R +/Name /Im459 +/Width 7 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcbá0PHpp8� +,L�¸ +M +endstream +endobj +489 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1067 0 R +/Name /Im460 +/Width 6 +/Height 15 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãà`�R2 +�sÅ +endstream +endobj +490 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1068 0 R +/Name /Im461 +/Width 7 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xkpP0ààaaa �,ìå +endstream +endobj +491 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1069 0 R +/Name /Im462 +/Width 18 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x;ÀÀðÁ½ñCÃÀÀ|�ØÁÜ +PXqÃtPÿ¿áÿÿ�ì° µ +endstream +endobj +492 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1070 0 R +/Name /Im463 +/Width 12 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcl`þÀbÀÂÀÆÀÄÀÌÀØÀ|çÄ8�ä�åÀ +endstream +endobj +493 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1071 0 R +/Name /Im464 +/Width 31 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÿ¿ÁñC Ë�y ,ÇP1ã .¶`n`¨�â þ�ÄØ°307°3 CÃÿÿ�m}& +endstream +endobj +494 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1072 0 R +/Name /Im465 +/Width 17 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xM¡ @@Ñß\"ÁèÈ +¹ºu¬¼Q:RÅËÃà+¤! Q'|³:<´å`Uºb×üï¤1v|`-xC +endstream +endobj +495 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 593 0 R >> /XObject << /Im318 331 0 R /Im209 218 0 R /Im319 332 0 R /Im203 212 0 R /Im320 333 0 R /Im204 213 0 R /Im202 211 0 R /Im209 218 0 R /Im203 212 0 R /Im201 210 0 R /Im211 220 0 R /Im320 333 0 R /Im209 218 0 R /Im321 334 0 R /Im321 334 0 R /Im204 213 0 R /Im205 214 0 R /Im209 218 0 R /Im208 217 0 R /Im322 335 0 R /Im320 333 0 R /Im323 336 0 R /Im199 206 0 R /Im272 283 0 R /Im342 355 0 R /Im343 356 0 R /Im357 372 0 R /Im343 356 0 R /Im355 368 0 R /Im226 235 0 R /Im231 240 0 R /Im216 225 0 R /Im222 231 0 R /Im217 226 0 R /Im228 237 0 R /Im227 236 0 R /Im221 230 0 R /Im219 228 0 R /Im278 289 0 R /Im216 225 0 R /Im297 308 0 R /Im228 237 0 R /Im227 236 0 R /Im393 410 0 R /Im311 322 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im128 135 0 R /Im311 322 0 R /Im99 106 0 R /Im94 101 0 R /Im293 304 0 R /Im272 283 0 R /Im133 140 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im117 124 0 R /Im102 109 0 R /Im99 106 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im114 121 0 R /Im96 103 0 R /Im99 106 0 R /Im124 131 0 R /Im101 108 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im113 120 0 R /Im108 115 0 R /Im97 104 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im124 131 0 R /Im94 101 0 R /Im93 100 0 R /Im114 121 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im117 124 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im95 102 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im99 106 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im97 104 0 R /Im99 106 0 R /Im113 120 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im103 110 0 R /Im104 111 0 R /Im93 100 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im107 114 0 R /Im93 100 0 R /Im108 115 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im101 108 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im93 100 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im100 107 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im260 269 0 R /Im338 351 0 R /Im243 252 0 R /Im256 265 0 R /Im389 406 0 R /Im258 267 0 R /Im335 348 0 R /Im335 348 0 R /Im243 252 0 R /Im256 265 0 R /Im260 269 0 R /Im240 249 0 R /Im243 252 0 R /Im335 348 0 R /Im258 267 0 R /Im260 269 0 R /Im281 292 0 R /Im242 251 0 R /Im243 252 0 R /Im255 264 0 R /Im257 266 0 R /Im389 406 0 R /Im397 414 0 R /Im243 252 0 R /Im240 249 0 R /Im241 250 0 R /Im466 497 0 R /Im241 250 0 R /Im239 248 0 R /Im260 269 0 R /Im281 292 0 R /Im389 406 0 R /Im258 267 0 R /Im335 348 0 R /Im240 249 0 R /Im243 252 0 R /Im239 248 0 R /Im335 348 0 R /Im281 292 0 R /Im243 252 0 R /Im256 265 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im74 81 0 R /Im347 360 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im114 121 0 R /Im98 105 0 R /Im248 257 0 R /Im124 131 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im127 134 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im124 131 0 R /Im128 135 0 R /Im347 360 0 R /Im95 102 0 R /Im106 113 0 R /Im127 134 0 R /Im293 304 0 R /Im324 337 0 R /Im133 140 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im245 254 0 R /Im113 120 0 R /Im93 100 0 R /Im94 101 0 R /Im108 115 0 R /Im101 108 0 R /Im332 345 0 R /Im105 112 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im101 108 0 R /Im246 255 0 R /Im101 108 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im101 108 0 R /Im106 113 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im100 107 0 R /Im93 100 0 R /Im111 118 0 R /Im96 103 0 R /Im106 113 0 R /Im114 121 0 R /Im104 111 0 R /Im98 105 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im93 100 0 R /Im108 115 0 R /Im102 109 0 R /Im99 106 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im123 130 0 R /Im115 122 0 R /Im96 103 0 R /Im114 121 0 R /Im117 124 0 R /Im93 100 0 R /Im93 100 0 R /Im106 113 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im112 119 0 R /Im100 107 0 R /Im98 105 0 R /Im124 131 0 R /Im96 103 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im97 104 0 R /Im93 100 0 R /Im311 322 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im253 262 0 R /Im101 108 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im107 114 0 R /Im96 103 0 R /Im126 133 0 R /Im103 110 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im101 108 0 R /Im74 81 0 R /Im347 360 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im114 121 0 R /Im98 105 0 R /Im248 257 0 R /Im124 131 0 R /Im253 262 0 R /Im101 108 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im106 113 0 R /Im106 113 0 R /Im99 106 0 R /Im113 120 0 R /Im93 100 0 R /Im94 101 0 R /Im108 115 0 R /Im101 108 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im93 100 0 R /Im113 120 0 R /Im96 103 0 R /Im95 102 0 R /Im98 105 0 R /Im96 103 0 R /Im114 121 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im108 115 0 R /Im111 118 0 R /Im105 112 0 R /Im96 103 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im98 105 0 R /Im101 108 0 R /Im105 112 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im74 81 0 R /Im311 322 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im253 262 0 R /Im101 108 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im123 130 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im115 122 0 R /Im108 115 0 R /Im100 107 0 R /Im98 105 0 R /Im115 122 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im124 131 0 R /Im94 101 0 R /Im93 100 0 R /Im114 121 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im117 124 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im95 102 0 R /Im99 106 0 R /Im98 105 0 R /Im100 107 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im74 81 0 R /Im134 141 0 R /Im93 100 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im123 130 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im115 122 0 R /Im108 115 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im107 114 0 R /Im114 121 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im97 104 0 R /Im99 106 0 R /Im113 120 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im95 102 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im342 355 0 R /Im343 356 0 R /Im357 372 0 R /Im343 356 0 R /Im357 372 0 R /Im252 261 0 R /Im231 240 0 R /Im231 240 0 R /Im224 233 0 R /Im232 241 0 R /Im216 225 0 R /Im232 241 0 R /Im221 230 0 R /Im283 294 0 R /Im224 233 0 R /Im233 242 0 R /Im216 225 0 R /Im228 237 0 R /Im226 235 0 R /Im216 225 0 R /Im227 236 0 R /Im218 227 0 R /Im222 231 0 R /Im300 311 0 R /Im119 126 0 R /Im98 105 0 R /Im106 113 0 R /Im99 106 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im74 81 0 R /Im128 135 0 R /Im119 126 0 R /Im347 360 0 R /Im95 102 0 R /Im106 113 0 R /Im127 134 0 R /Im127 134 0 R /Im293 304 0 R /Im272 283 0 R /Im133 140 0 R /Im117 124 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im124 131 0 R /Im94 101 0 R /Im93 100 0 R /Im114 121 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im117 124 0 R /Im96 103 0 R /Im99 106 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im103 110 0 R /Im97 104 0 R /Im114 121 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im105 112 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im101 108 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im100 107 0 R /Im93 100 0 R /Im98 105 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im114 121 0 R /Im93 100 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im123 130 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im114 121 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im124 131 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im74 81 0 R /Im384 401 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im113 120 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im108 115 0 R /Im111 118 0 R /Im102 109 0 R /Im108 115 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im97 104 0 R /Im93 100 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im253 262 0 R /Im101 108 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im127 134 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im96 103 0 R /Im102 109 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im113 120 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im107 114 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im97 104 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im99 106 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im104 111 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im100 107 0 R /Im93 100 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im96 103 0 R /Im101 108 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im124 131 0 R /Im94 101 0 R /Im93 100 0 R /Im114 121 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im117 124 0 R /Im96 103 0 R /Im99 106 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im104 111 0 R /Im99 106 0 R /Im95 102 0 R /Im98 105 0 R /Im93 100 0 R /Im102 109 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im113 120 0 R /Im123 130 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im139 146 0 R /Im96 103 0 R /Im106 113 0 R /Im103 110 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im74 81 0 R /Im342 355 0 R /Im343 356 0 R /Im357 372 0 R /Im343 356 0 R /Im419 440 0 R /Im283 294 0 R /Im374 389 0 R /Im92 99 0 R /Im99 106 0 R /Im102 109 0 R /Im105 112 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im130 137 0 R /Im99 106 0 R /Im102 109 0 R /Im124 131 0 R /Im93 100 0 R /Im95 102 0 R /Im98 105 0 R /Im97 104 0 R /Im103 110 0 R /Im104 111 0 R /Im128 135 0 R /Im92 99 0 R /Im130 137 0 R /Im293 304 0 R /Im294 305 0 R /Im133 140 0 R /Im97 104 0 R /Im102 109 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im100 107 0 R /Im93 100 0 R /Im98 105 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im124 131 0 R /Im94 101 0 R /Im93 100 0 R /Im114 121 0 R /Im94 101 0 R /Im114 121 0 R /Im96 103 0 R /Im99 106 0 R /Im124 131 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im74 81 0 R /Im109 116 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im98 105 0 R /Im97 104 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im96 103 0 R /Im106 113 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im107 114 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im123 130 0 R /Im99 106 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im101 108 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im74 81 0 R /Im119 126 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im93 100 0 R /Im115 122 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im99 106 0 R /Im103 110 0 R /Im97 104 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im99 106 0 R /Im101 108 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im130 137 0 R /Im110 117 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im123 130 0 R /Im106 113 0 R /Im98 105 0 R /Im238 247 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im107 114 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im93 100 0 R /Im115 122 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im139 146 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im107 114 0 R /Im130 137 0 R /Im110 117 0 R /Im98 105 0 R /Im101 108 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im102 109 0 R /Im96 103 0 R /Im103 110 0 R /Im108 115 0 R /Im102 109 0 R /Im101 108 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im108 115 0 R /Im102 109 0 R /Im94 101 0 R /Im99 106 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im114 121 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im105 112 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im105 112 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im117 124 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im105 112 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im96 103 0 R /Im102 109 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im117 124 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im118 125 0 R /Im100 107 0 R /Im98 105 0 R /Im124 131 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im120 127 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im117 124 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im114 121 0 R /Im104 111 0 R /Im98 105 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im108 115 0 R /Im102 109 0 R /Im94 101 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im96 103 0 R /Im97 104 0 R /Im103 110 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im99 106 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im105 112 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im98 105 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im92 99 0 R /Im99 106 0 R /Im102 109 0 R /Im105 112 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im130 137 0 R /Im99 106 0 R /Im102 109 0 R /Im124 131 0 R /Im93 100 0 R /Im95 102 0 R /Im98 105 0 R /Im97 104 0 R /Im103 110 0 R /Im104 111 0 R /Im117 124 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im99 106 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im98 105 0 R /Im116 123 0 R /Im96 103 0 R /Im106 113 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im123 130 0 R /Im93 100 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im106 113 0 R /Im93 100 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im98 105 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im108 115 0 R /Im111 118 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im111 118 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im74 81 0 R /Im119 126 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im105 112 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im98 105 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im108 115 0 R /Im111 118 0 R /Im102 109 0 R /Im108 115 0 R /Im100 107 0 R /Im96 103 0 R /Im124 131 0 R /Im96 103 0 R /Im96 103 0 R /Im111 118 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im93 100 0 R /Im115 122 0 R /Im104 111 0 R /Im93 100 0 R /Im114 121 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im99 106 0 R /Im117 124 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im130 137 0 R /Im110 117 0 R /Im112 119 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im74 81 0 R /Im92 99 0 R /Im99 106 0 R /Im102 109 0 R /Im105 112 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im130 137 0 R /Im99 106 0 R /Im102 109 0 R /Im124 131 0 R /Im93 100 0 R /Im95 102 0 R /Im98 105 0 R /Im97 104 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im93 100 0 R /Im117 124 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im104 111 0 R /Im93 100 0 R /Im114 121 0 R /Im97 104 0 R /Im93 100 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im253 262 0 R /Im101 108 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im96 103 0 R /Im103 110 0 R /Im104 111 0 R /Im94 101 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im101 108 0 R /Im74 81 0 R /Im109 116 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im124 131 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im93 100 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im123 130 0 R /Im114 121 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im96 103 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im124 131 0 R /Im94 101 0 R /Im93 100 0 R /Im114 121 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im117 124 0 R /Im96 103 0 R /Im99 106 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im253 262 0 R /Im101 108 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im93 100 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im102 109 0 R /Im114 121 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im113 120 0 R /Im96 103 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im106 113 0 R /Im93 100 0 R /Im101 108 0 R /Im93 100 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im108 115 0 R /Im102 109 0 R /Im103 110 0 R /Im96 103 0 R /Im113 120 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im107 114 0 R /Im114 121 0 R /Im96 103 0 R /Im99 106 0 R /Im124 131 0 R /Im96 103 0 R /Im102 109 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im113 120 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im116 123 0 R /Im97 104 0 R /Im115 122 0 R /Im102 109 0 R /Im93 100 0 R /Im105 112 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im74 81 0 R /Im122 129 0 R /Im93 100 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im113 120 0 R /Im123 130 0 R /Im105 112 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im94 101 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im101 108 0 R /Im108 115 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im96 103 0 R /Im99 106 0 R /Im97 104 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im114 121 0 R /Im104 111 0 R /Im98 105 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im108 115 0 R /Im94 101 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im106 113 0 R /Im99 106 0 R /Im123 130 0 R /Im253 262 0 R /Im101 108 0 R /Im106 113 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im105 112 0 R /Im108 115 0 R /Im94 101 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im117 124 0 R /Im102 109 0 R /Im99 106 0 R /Im105 112 0 R /Im101 108 0 R /Im74 81 0 R /Im277 288 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im117 124 0 R /Im102 109 0 R /Im99 106 0 R /Im105 112 0 R /Im101 108 0 R /Im99 106 0 R /Im103 110 0 R /Im97 104 0 R /Im108 115 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im116 123 0 R /Im126 133 0 R /Im96 103 0 R /Im106 113 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im113 120 0 R /Im108 115 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im121 128 0 R /Im108 115 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im103 110 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im106 113 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im94 101 0 R /Im96 103 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im106 113 0 R /Im96 103 0 R /Im121 128 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im74 81 0 R /Im134 141 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im253 262 0 R /Im101 108 0 R /Im93 100 0 R /Im114 121 0 R /Im94 101 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im111 118 0 R /Im106 113 0 R /Im108 115 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im108 115 0 R /Im140 147 0 R /Im103 110 0 R /Im98 105 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im100 107 0 R /Im123 130 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im94 101 0 R /Im96 103 0 R /Im106 113 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im126 133 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im101 108 0 R /Im124 131 0 R /Im93 100 0 R /Im115 122 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im74 81 0 R /Im109 116 0 R /Im106 113 0 R /Im106 113 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im105 112 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im98 105 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im108 115 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im103 110 0 R /Im102 109 0 R /Im98 105 0 R /Im113 120 0 R /Im96 103 0 R /Im106 113 0 R /Im111 118 0 R /Im102 109 0 R /Im108 115 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im140 147 0 R /Im103 110 0 R /Im98 105 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im74 81 0 R /Im119 126 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im121 128 0 R /Im108 115 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im107 114 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im100 107 0 R /Im95 102 0 R /Im96 103 0 R /Im106 113 0 R /Im107 114 0 R /Im98 105 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im116 123 0 R /Im97 104 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im108 115 0 R /Im97 104 0 R /Im114 121 0 R /Im96 103 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im106 113 0 R /Im108 115 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im104 111 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im108 115 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im103 110 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im101 108 0 R /Im74 81 0 R /Im119 126 0 R /Im94 101 0 R /Im99 106 0 R /Im106 113 0 R /Im106 113 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im114 121 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im115 122 0 R /Im99 106 0 R /Im98 105 0 R /Im100 107 0 R /Im114 121 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im117 124 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im108 115 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im74 81 0 R /Im119 126 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im108 115 0 R /Im140 147 0 R /Im103 110 0 R /Im98 105 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im100 107 0 R /Im123 130 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im107 114 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im124 131 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im74 81 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 496 0 R +>> +endobj +496 0 obj +<< +/Length 1073 0 R +/Filter /FlateDecode +>> +stream +x¥}I¯-=rÜþûoi/|»8^¶�oê¥6v«eÉÖ¬6ÿ{:§ïUUÄe$pûã)9ÿüÛÿøçßÂûíË_e]~,_Ëbÿ¹~Õ¸ü¨ñ«,ùGÍá«ÕõÇþþ·ßý׿Oaûñÿñ·?ÿeüç>o¯_ÜêW\¯ããÒ®ãËWÜÐ÷[ß¿Gßßÿå«m÷ ¤ûd8°T4×ÿsûvÛÁý/!ü\BM?g¯?P¿^Bp£z!6íè&¦¢mbúÚ2üà¼ù%Gñ¶ü�9Æ #ÙÄ5«ñÔ�g�À~`SlâV4I¼ïÁk÷_ÿZìrðëyÛ´$~fÎàf2Å1E LXbÄÇx¤»E;7p +)e +p %!öÚZE÷S( ÊA½ír +û®SXÚ¯[oãÃW¾Làó ×|ÛòµÜ°;ây|©ê÷_NIú>[[ÐúËM ò×¶@M^Ðb\ïPn"°`R¼l_Ké?n¦à¾üÞ>e[ÃmùkÙð¬`â]ÊWÅ3Hèc¸büZ¡TÑÄ)¸KÑ1÷ Þf¾ÒMÞ§Wø·S_yA¦ | +Btt,¡dôõ¶TVQ¨_]7$M?Æ7Q?ÆÚ´cD!æû_nñ®L©spÕ Ï^æp¿¶A¿Ç&ùÞWP?æ>þçîæünM>÷ÿeøÍ©ßÝÉ1|ÃÃ=4K_+ü|èóÀàÙ·U}øZ/{ßÞÞ-,ÐtÝÚWù9ý»ø°ÃËöìôBH/t�èü°7ñç÷ñæwñå?°¡¸ôRúZâíP »?|k`jÇ,¿h`¸ábÑCÌ ¾ÃW@'P´ ÐXó35Þ ¹¢Çt5© ?°-ÚÐ3ØÄ3 [°Á3�[@Æ7|Ù`[|3fñ+ÀïËÁ¸%'L÷üJ1fñk¾ô£-Ñ�Y@@Üäx&bczÌÙÆ¤XñfÇúSÐdnÀÕÎ`^DwtÏmÞ+ÈPPzzÝÂc%~¼ÁydGd²)+Aà¨cSxb$ï¨("w JaEBàÂ<ó§±a[,ûÓM!ò§×ñÊr�E{H± +�¹^A"P^AZ6Iî@Ó1>`(û!¦("3%)áCMIJjdMIJfJè +2´ÆÀ`²\0)L%jRÈ,IZÑè$XdKV-¤¹§÷ÇxhBÐ'°AC�LÁMSC$ïlp£ç{Y ó¢4XòB9,ÍA=2w Èam8¦a-V£ ÄqS#&Å9!-�RLÏ0C¬/ <³¹v9¼F5" Bô0=Ì$&ºùcVæºja%]A}Ýå ðfD Ò�²Ü Èq7eLË¥Pp6^Ì:Ô°ÀìD4ì4eº),ãL;³»» Ƶd Öm.3¨Ç Ôö½3:®îÎãQ^óûmEÃo6 P_]±%5Åë�)àùû²ø E�ý��¹rÒÐüÜCzsÆöçÎ[ £å �¡åä,¥pG +l(9¾ï° (~EæßZzkN%¶ÁRË +dG,§Õh¤-45H;ÀyhÐ +É'eRå-ª m(<ð ÈÑd!\nL¿Ä?·~§ñ2"hE½zAFÄñåy%xC|¥<sä%õäqER¨_źh+ ¨P uÆ"ðÂL`Ó,)Åú7lIåp6BC/È©c`[àÈàJ +âP0@!¼Et|8 _/ ¢)å -äëÚ'¯¾8Ùwu,ä,È@plAÑM¡nHÒ*!â +Ý¡sWÔê8wÏê1åÝôbGy?þødË9$J83Ó ±:B-¡¼¼ [®«áÒjH�¶(RoEhJADSó ëø\Ò¾O7 ao*49§Gî<ÃÔÐqß˳*¯bDE�2½z#v¥Ú1xgJvpS3;²�ZÞ® ¡pÀ±"GdXÈd-,0"Óµ°À!æJJh+aB\`D¥ßµhÇ©] h×:å + ]9go·çá·É³Ý·Âópyó a= wÁ ó÷uhÇ Éùϳ°I UEïõøZÜÏë¢óÄUðbö.#¤r2¦ Íàþ<çþ.Ã0ÚÏóËPõpµAÇ�f6á ý@CK(r!çÒÞ|ÓV´à8JåÀq +-Ä +åà.ô¶ ã+{A°´ôZRO,¡ª áMe°h o¨tÉè6ë]°:7ÿ6Gí(N¡(£÷zø±[ø@ +6({Y°hPHQmBÎÄðæ¤ª3Äñ1¿@6±ÀMÌB}ÿööÖ/¡ýªïX_9</á6ôîôY]N3x¬ªI£Ú¸Au¾k#Ä ©³ÃµÅµQwm±É Ï a¤õ´TM¤U9`°µ¸L6iºUNQ¶Ø½§(Yx.Ç&"Uý@//$J¶Í8Tß tàz2YHEÌvè!Z-À YãÀ7ÌeÀ)õTu]á±ØÔ +ØÐ:pã î ~0aÕËIR2*âl ¿/�÷K/.¾t =rø/ÿòz6ëahÛG-a稷¦Bu¯MF:èªM" d°*çõ+-7g 7wVÌ ¬Ke¸w0Z_¾Âk²:l}9Cýê£B!rÀÖ2qlÀ¦Yº Ê ^ØX 5äÉhɪ$]DP/«§°wD'�c RÚ4;ȰÎ#%døëÖô=óõø~)ß;ZÙûøïU°iÀi8`&AöLè< !QX§Óúë´Ó~!,xú|S¢WX:ÇÂ`WÐCÀ®n.Ð�GupBb¨s½:ù<^®&2B¡áPÀÒRóäÜPûO[Cp�çØÈðFÓw~SñÈ `K(?R0:£¡)ä4Hô¬2´òhã" +16èôêà�'à¨Xõêà¨Ù!º O@ÇÜ2åºìxõ|Lã^ßáÌrJJäx è5ò¥¢ ¸B5ëÅ}T´Q¨0¤AÎðÒ|h¼d§"¥1g¡%sÃÄhq$EjƦ8r ë^_¼ *±"öúû¢²)èÒ³1Q²'_Ðë{¡1óÀÐÝ¥âQCSÖbÎc¶ÐQ¥^°"I8ëiÓ#Î#ãB!I0,ÓËÒ4f¨,UXckªs¡l0(Ò¡ò +4«�± 2HƦìTR)àôPG: +1",?µdÈb2¿Ì îþý@rЩ@pX¦;ÔLL½Ê{Õb +Óä ¦¹ümísC +ÎC-þÔ&2õµ L!µ$*yY4Î^Á÷"ëó +î¯àYDR>C½L<BC¢GÝèeâ¢!£x94d!¶ç½¬iâêÝ@ÓpG®½38^.3ÞÐçýUÒ³³oM=% _Ð÷uá öVê<^BEãuÕ GCBDßö°hNãÇæ3¿±þóôG!Ã-A£¾¿N@~rØâWD2IcW ¬³Bd¼õèû0¥b|Çþ~[b~xp|H =ËæÈÏbì ½6G>©È"ùùyÈÃca$G¡%&p \±hBlQ;ºvÀC¶G¾°ó!=Ã' CÝeÞ|Ø£ªEì¶gj+T#] +ôçú lðûrV7(Ãòkñþìµ³hÇëÏ÷E36¤¾¨oÆgál'±l Ŷ¦÷¶åôRâ\¾¶öSä;×^J<è8«�¡©ÅVÑÔ25¦&ødÇ&Hã1N¢!ºBñjG@ ¸B_®[ +ý�Â<i u.ãQùÚ}Gß×î§Ð¯ÝV¡k:ÓÊ·îfÅÓ#wÈÎæ(n{ZÜ·ö4>¾g)¦0|ü²�!±Ä¡N0Û˯Ò÷³Ã¬6 (zé2ÜA×o_& þ[?¶õå§°Ñ^?&)r{ÕPI [Eg ǽ~jð}zGÓËxù®¶W?6"F¿Ã¬x¨,«EZä¨@fGh<½ ;âHé^GbÈ@"YABzì`øLÈècþ¹SMéö׺Ъ@K¬#+Et%4'\áôpÕ\Qx7âüuüQV÷éô*¦èZí#íYñ@©áxJ¯ù Zri«$TΨξðÎÄßùj®FÔØÝÛôòÒ)4ðÊ'õX¡ª$)J³ÞÜòÚåwÀñÈ7«!!{äÀñÈ:CGO8ZøhE*NKô#°×iÃìàÕPßAh<;Ø /w0/xúû¾°<ÚÁþÊv°¼p +dzá4CÐ1rJÑÒwÊÆJuúÇ;åÔP@åx§3CýrÖbbz8 Ó« +ôwÊ+Lmïqb©¿S®ËçòÉyÞ)cC^Øáðµ1Ïb¼a=¯zrá:Q.+$o»ìV@'´ pJÑñ ´G�Cj<(ÁåÃä´?!_ãgýa®{ ÁäáL¯)2Aåx<)~ +¦ßQâó÷õEb2xY~ ¥EÐuø²:LlÏ|Ãâ?óÝàè[hî3´ñh:Wéûüm�@ZöÎÉÃõ.Bn!üI/)iyëJz·øð=Ï1e´@ÃEH/ kÐéU#´Cú{^;5kGwVQ^ûqÆòl ï^xcÔ=aØ2*g8l"42¤cH¿³Þ»=1q Îôn©¯Ð9ùV-àÚ±7:ê}`ZèMõ®Z2àÏ©ÛÅÿH)ÂC"½#\Z 7rà¬8&Ô¨¬Hzø,"I0$ÒKÒûס;#0iÂB¤Ë@e`ðÆõòrfd[4èÕ~ï�z±;ÑaʪytºO@º¡)rìÀ£R]¦s3:nQ# +öÀT¶C(FvH¯?é@íH)ÀD_@Q¾-©\ÒÚp ihÍZ`O7@ÍíØã Þ([ì2:DèôG«v)©ô6È`Òü(ªÌZ£§wñ =v;¡â@)H¹Îd¯+ʵ@o¢ðäB²Ã%c7FÅ8ûO?p¿1b%8V=±Ô¹ +v ¤Ë¥gûùùú`´ù(uÎjÀ9FÏ`d°»¥ü_»kéŬ£ Y¬'h<í&ɱ¹ÒÑÐ-0xa~sCÔqÚ¢)¾ïÈë¤ÐA9,&_¾§eåløt)ÜàôÛ ê±¾ ï þÖÙÊòÏR¬3½õ2Í|Ù¬-S°zÖõSu�*"[@lÞsÃUG§H Á-àrg·ÀÕ°Òá!²V¬ÂëÃZ¶ü¡*cZ¼â� Ť*z [(P<;P¡z NhåÄ"nhwcÊ2ØÐ÷50uì¸Cî°ÌªbC ÜúgìöùõCSôGp°tFäHgDÑÕp=q!¡ÂKP]±Ê÷ùSUø}Ù$bu*½§ëÏ 7¼ßùÐR; ØÞd¾4²ýÓø{núÒøR2Õv0$h !+ + ¡þÔ1C¨SñWG¹gñ@ ®Äìj?M±Ü)9[§äsH¤wJÎÐê Oïø>]õï¶<CS긵êU½ÐÖdJh5´e# 1µ®ÐèzH\/ßÔÌÕÔjıZ8nope%($¿3ìÎF8abä3(99ë5±öÞ~çQ]`~ëȰK#{ödzéÒ¼]>8R«Ëpçxkx.¡,?w8ã£îòyøà à¹~_oú±|BÒËô¦GËuò;»àè_ @T%à{´|´,¯4´¼´IZ]«éÉËzÚd@!¯øÙzg·a Üm=Âi®ÄaE"à!P©HÃÔM'I)}ÇdÈ£�e´,¤·ní¥åïCzP-hö +aÕc! _Pÿ~Tÿ~B¾L掠 æZ°s7<ÑçµÀrýG`81A½4ýÀGF;@n9b8ó&:C²0òT57mFmkÎpD½0ëS½1a>èfh²a(¢öÔ£F-à81Bù KJðû2HR §$ÔAIXÔ#d0-t!\E ìkÓB:^¬93>ú,!BQ9¨Qü¾ wĪ�EÓêO¾Q8ùèé +qÊ £Ã;ä7FY¶£¬g´£7âÔíÉ¿ï&à¹=H?Kõ×:Äq½_ùÂ{ðùË+)ªù>þ¶þòµÜ:ïß7 >/·ócßßê³ïWEÃﯷý·ÆÈh±Ü6°|[@ýk_ã²þZPÓÍÐ0 ÿÀui`â½ð¡|UüÚõ¸(¹üÀ½#}.Äpó$tyÕf¾®;L®{pÛÄLù[ÆMØA4xî: »|+ê°Í-gíî(öjÔÕ �Êt§4cKKT Uã]g�«ka¶PØö:Æ;Ñð]¬Í -Ç~ +Õ3\ÂaQ]ùI2plèózz}<ϸ|^®êmhõúéQ9p®c6{~×ÐàîÝÅ!|?Î?p'Â×zYÿ§-ïõ¿ÇçöK[Þp·LúïHüÑ<ï?ð-µÏ@nî>ðDé¾÷ä~ànè¨Â÷¸7W6°}ébøs#J,ØôÄDêòIÎr¼ë3DÇ#vlàNbÄ9<yÝWÉðÊv$ ¨;ÀýêÅ�µ@¨÷ÙR£YÚR! ]´$®íDÐõ3vpm(:×v2ààÚ>Í_@Ü£!O£{¸U;ÄÊÒ¡{áE³CcCÊA!Òî/øtêeBVaü(¢u¼H¡¿ÔòË-þ2ÀªÂ¦£í3àp?<ÇË�³D#)¦+(ðdw¼uϹãh=:CùÖ-UèÏ|°)Õ[mp²I e¦f,C¢l-7dpÿN´üi/Gè�ËÓ£&Q9Z.Dü 3Á¡7Õ_WXûiKfUá³v g(Åzò-s·«Yø²¢E¥DHF-êý¾ÄÆkß§WN®ÿfèÍ$ u"Ë *¡Þ,ÃÌaËwP®5þY+Ppj¨_þ[Iø¬Xâ ÐKÚveÞõ%Tðú [IßȰ¬Ì24`Oa·@`ðyÚo¥',ðûp<c;´ZÚÈë:½6j;@±)KH&NðC>b8 £?`ùÈøX=5ÚBóE¨@ß×pVíû¼~_P± л9V¬Dd$ÃúMÔ"º Q³êÑ(¾¸éyz%jj¬ã¡£µ76C:Dá÷uÎÐÁ¨¸·WnÝ 6ò¬An®Xå§Öq ®L¯Æ^EgNáÕ +eH6#ÆBÞMS"zO²Áp<ªhH\ø*G%ë' ¿×·[ïa@F¥ð̧(bÞIN@Ó|Düi¤·ivþ@ ]A2¤£E³¼[aúýUû>ïï¿AÞG#>zZ,@/I2cành:Àk±êt¸ ^ 2 ÀpÈÕ÷bèÉx,Çg2aZç*dQ8:[dYLë(4Wby}æ£åÄô`lH *în(�mqy;ÑqÊ,ò{ÿñ%ù£@|ÉA¯4_ÄÇkØ� w#4#z^[¢Îpxi±1$iBÌ\Á³q@üÃ$ÀR8ÇZcøl¦P¾>/»¡£ÏÂe¸ì ,8Ï^wB¯#è^ÝÞNv/â}_~@¿ ²í§7YúýÀóx:l0V²"è£>Þ|Ýjð/÷ú0Kõ`,̽ËÁ»<º ìBB[è¸aHPõ½NxÉ(Åôz ô-#¼L@'½©ÚÐ&~ +^@ÛòÓ +èÎPçíÌv ¿ÛA ôåtp0hw!eÒ:¿2ÂwÉÑEä30nîYK¡!ò�ÄMM:xÒÕ1s£ï;®¬¡`®Ðè·<+²Åúuy/¾,@¿&©Ú²x(nǤÓx=²ÓQ¯`:cÉP1b', ù{EÎXW Cì8¢Ñé2zD3Ëxà!:V %Óo)ì1ß?¡;Õ!fhsyO$hMiÕbÔ5ÙÑ:*afå©@ÆÎÐOjaçûi!¸ñ +dl«0ö²%$øbÔ´BÌg62óÒ^@¬í�83)u9ãÒÁ + ©Î +]°!u´�T½)¸Õ¼hQ 2è(ÁîÕðÈ +6hȬÐpõhðû²++8]YYòPOpÑ[¾@GÔW"Ü�öçSÀ$/ij 8 w�¸ÏyBL}ÎÃõúã#9q¾î%¬}âõôÒG»énf¬þø<^'Ë8/ÀA&ü8àÉ@¸M;HÐróx³\`pEß÷ÔÀ¨Bz ü +OPo]¸âÔ/Yêñ +çô¨ËÍ8ì}G°-À¤M¡ îß!HV*¡££Ð8ªÉp§Zá^~<8mF<9ÛÁQí¸¬\Õ´£ª¾®ý¸NòÈ÷òåYWW,2d\¸R=\¡+µwlÖíÈÖÍJJÈ»"pu-+Ð¥/PôX uXÛ1ÇËþ�µX§ÑñògtX+=3#]bÒììOÌHfÌaFRA'à0#{×Á'fÄD7-Ô#»ðõòoP:·ü,êÐðø´ph+¡l2çt&åEè)¦µhVbZ8)È]ÈÅÎm¡dô]VÄñ®?=´Ã9Ã-í îÉr©9!Ã8JV¬c!¦tª§ d\6Cç.J{õ()VP@-AÃ3Ð9VpH''f �drb¶ãËO³m£ýj©©ãyt"FÈ +ðz õådþÊ"uyg;y0ûæËçuâËWLÇýLnË$¿ÁQ+ü�A´~�÷OGÇü¾°ÆEúþaߨv,¾dÿÚY2á¡�P¶ ôt<©_V ßôã)Ôe÷~ZB¼¢-t¼¢µ 3Cz£¨Ë c ÎÒ÷yÃ@q8Ä\Ä#d1RBé-Ö"¾®@g_ H =ì«ê¡Î¾*Ú¡ûµf¶ia(D:ÇFLç2R"Gé«f8 ±fÊ9ÅbGÓÉÚGÃ@èKd_+´¤z479!+$Bìf¨&¬~w6H~t9ï~qwh!·_¨Çâ¨ÿÅá08A±F¸:Ä7ÉpblÈu5á&¬ãàHèdñ¾´Sd|`Ä»B¤ÃÔÛ!¶c: õ¬�¸ê5«1bÔé 7íûTö$7hu`N-"°|ß¼!¢4.eè ô +æ�£Gs Á(Ù¼&';*NH2RÈ+q^¡dJO)2éô-Xqr+ED&&¤»jaùxZ7¬BãÉÏò¶i¦hij1Égº&ïÈäM.PPf§&§·%ªÍ÷eÈãìÔQÃäÔÑìÍ@â:Ç{vܵìýS)Ñx<A·Éé·Ë¾ø¨C¾×!ÖEû< H¸z½Oå4çñ:º?ñ:ÍDDß÷ÔqGt�:nSÁ Ò"Ú' ¤$CÝËßNà¬�z<2A&/Põ:èO´Ì#à$ÐÉõ{££«Ëuäाü²7¸:ÊÞàèèÜQÿ7ÚAZÀ¸@%rð¯B;æ¡qQ4d PeC±Ò«xS{dÍÝ´!îó¬!6±+%;ppÍv´¬Ì"±iôE5#t¡ÑC)98²C¡Ñ¶/0Y +Y +#£ØVDfØR' é[ #ÐkH3a¹î)e¼²@BÓ!òÿ¾k AXW¨:ÂZ¡ +T1@úÊè¤ Û!½Ú!ÛOÈ®%ÖyÀ5ltÖL¡µD¬Ö¦NPDñB)лÌA[¦¿I±.u#)ä]îàÊ1u¡^µ{DVGUß7©hdbt!Æ1¥^-¡£ò$ãÌPoXá +IL§ñn1§ì «±Zvx° ¼Ûb±`S*Ã;ó;>7Ê»b½Ó_;¨#ÔzTHv�[Bj ¤ú~ØsÕjÀ´pq_¼ÖïÃQòú=1î.C^×eÈã øÞñ¸Ò¿�Ã4Þ_<ÜÿAòàûÃ2äøQø¡>wSIïO¿Ú/ôe¼ÎÓ¨|Ïù¸#.fËrqQ8õGi.ê¶ÐÁE½Á8¸¨Ñx¸¨Ñz¸¨&K±~ÓTVI8ÙIФxÄE-¨k÷P¯E¯âÚ5^öÐqÑMO}º5ÚL +06ê¡"R2è¥}b¡óÜc!N5ÙA¸²Âè¥Ün¡pSatØÐéÏ;ûUGñ®ñ«ÅÓË&ll9©³#àtØØ!íñ"Â2óCäåøðåøU²æ#Êëê]C7´ jzdJ!ÐÍ.Kàê ëìd (*ôÀ¨Lâ^ ?:BÎxãZ}й.K(ÄrIðº"ýADÁá\:`H¥{ÃGÉs2k´ÏMÅS%Ú ëMKarèhZÚÐ, ï"Ftd0qPÀÔéq8¤ßÔDíûüB Ǿ',<!©¥ïVhÀN!æ]¡g9¸¨W-5ñE\ST;¨¨5-fvpØú()ÉMõåØ1ÉÉýÎeý!*$« +ÌÊäa;Ù¶rË&ù¶Ò¨Ffc)Ù0ÉäaõÓc)çIî0+áÌÔavGçÃÌçIâ0{ÔçxÃ, +Ès´a¢áúÄÍãøðQD¿g +âh÷õ!¢ùú/VÏQ.ÒÐó4ì`Ú¤¤ÈèûÒÃ9:|uªËè¸âpT¡C)+nB5!ñ2v8£ß° +ÏÑ®|.ºN? _tÃDÎpô[Äðn È èW]+e¤Èê¡kE�ŵìeí¤-Istº""Y¶Åß÷5¥{º²Æðø´Ç"ðKjaÒ»5®0ÐÑéúÐGbÈànyä#Çþ<âLïÖØ6É£~·ÍõáðkÅBÊ7C¾ò¥1Ãç/uûªù>þv�¨±Ãþ}¦ÏãàjÁßߪö}¶þ¶õçp²·'[*ø¸ ,¸op8v0¯¥õ _º\fPßü5Ç îø\M]ddµ¶>|F<â<Üñ í¸\¹ñ#!¹L_orÜ_¿¯óîÝÓGûÇ3 ³ýuBÙç!À-à§èE}$AÖ{|(Bì9T?@×̬` £óvAÐog,!¹×KvV¤W+VB=%«øo'¾ÖË +Ú×¶¯àè9öä¿ámYAª-jZÞóEùD�e?°Â÷0ðÆ.{ôrÄ�kÐó@?õ&¦GÛ$÷à-V0ªQÀñú³Êã-{\vPË¡)qøCK F[H'�MncÕDßà÷uúÊ :#}eäÀF/º²rqDB.\Î[à*/üÐ +àk@-tçO[ÇGHv0g1¦$"�ÍG +T"}Vmh¹È¾ï¨ÀM$¢Ñ»Çc3¤¯ "3è@çÒ@/xÙY²â]u +Ѧ%6ô¦y©Ï&·�£ ðæéXdx-ÃxÈóQëiÁ4d7 'ú¤:#rØê½¿sÑâþ²5¨?@VP´xV¬pÝ×5W¬hßçÌðûò¨¼ #³ûu¼F£ûén¬Å^NÄÆ;8¦Ýù§}ºñg¥Ð¹;º 0¢r¼N8¨¾!CM ¶ó»PÙ(õy¼Nc9Áåóò5GAÎ?/{£òsôyÏ1Nx|záb8ØvöÚ°ð=ùàetîx s/C+ö¨ïº úÃÊ£�ý2wÙÇpüÐxÞļú8óä##0*ûÖ£ìC0d+RDOñÐ4ÑQ<´ÕgRÔðêÅCÄé]Ì|ú@ùÙ«¼2-E¶![¦Å' #\K¡Ìe½¿ê{çÜY£8ÌÎÀÑ=ÃpôA_$5à èûÅ©£zW@dhÕüÙåøS:ÿ +OP·A k÷7opãÈEÈXB½ÓUCÞÌÓ£ezóN@ïa`P«?I("qðÕê0wÔ|!ïU@ïc° IÊ0(Ö¡T`4áx(åE"ä¨Áì8óPÉ@3è�èRÅaµÜ®ãÌ£Ìæ;YcUâtjmÐgsëí# ËA9L' ¤×?{äÎl!ÎNuö½õHÆw2´EÆ}gÐyÕÁäÒSÙXÓ3cqD¦ãÔÐ9pj:pjê8õ¿¯ãÔí¨@:¿ãÔèû¿Pw¥z~W)Gñy¼þ°Ôòâ:xWÊ»Àïë%dG§²ËxY°2Êê}ka OÀêÜÃÚëÎ:xXKá©W Ó^emt3adz¨Và¨Å-xò}kX¡ë½-V¸�·×QÖWÎè]×HGﺮ;¨0npº5¸zõf;8I2»$èø{xohÈ ¶á÷õ ±Þ!iPVÉÓ"RhŬ×`NêPVÌSÀgiíàù£*UThP)×VñÙ£¬�wP/ãÝ é2Øæ=áp«>³B\µBi2äh@ XGFòÅzF°ãÉÍÜè«£k"dý«G@¿áüuº¨ÀC%cT [0ÇÖpJ"Íìý«µAc0ÐËfR D¯Ý°êý§·O{Ë +PÓWVÃ9ãÔ°Êu7Æù5Lj8¸õHoíüH=ã´P.:ÈQÜ�ë¤<Ûxx÷hck"´À»G«-ÃæÊ#!Î0+td::67kÌsÕ9§ÃµÜy´Wq,{_·÷¯¾"|_¹ +rû<ôÞòÏgÒ!8ÚO?£CÇmU¦ÌQU#ÙsØÐÑBRUé ¤0ªràôöÖ}õR ¤#\¼;ìó?/GåVƹ¹"Èø¢§u M_¾í4ò®Ë÷õÛÎ`Wuëð×qÂD·&ÞàtÒòÁ~æÆ0ñi|L&Ôè<M¨ñ8ø»;z´d$Å-NÇÈPj,:ξjV`øX~$¼ 5:Bξa;$_Xïe w!v\XÏPoB,!¸°&4epA2à ¦Æ¦¶\¸ººBòé¡/iV(vH?¿ïx«¯}`ß/¬wò¯wH~¯SðõúgvPðUä +=|´:Þ ©NÄ )# ùÇCïe6µñÐÈU&í E¨ÂP�j�LPÂf ã;)B-Òw 19a8£Ý rW@NN@ó(áU PõêkÔ Z¸/Â+ÐeÛ1Ùö§þïÓ Øn@Ó6a3 &G¢¬UQS´¬p#÷h,ÌuýËQhÙÓJ?jVWb_.³î¢�£1×Bƾü�) ,!§ /É+/ý¡8@^1â% 8«±LKùÆ-CKèùXê{ذè}ÈaDèéÀ3S95.cøÎ�ç^ÄØ=¤~](±=ª4úË ÓÃW8[4R¹ÌÜnÇã ȽMNÿ�©.[A%ÎÃutqÑ>Ïë áê/p|߸:ß§ÈXÃïã=àbø¨?[ºãËïð,~úMa°æ¼ý¦p' +xß¾ú·7 C:Öóè]°Í_Î@¦_ѬæÁ*øÎ+ÐÛhoxúnxdÊ^ì¶Ç^£ýï@¾'éÈðñÈIUùòîÂaG@Â¥�ä ä¡Ö\Ç÷v¼ÅÞAù³Ügkê`Ä-H¥´îZy5Z5CÀù`¡1zgÖ¢M4$«�Þ»!êxá»`-Ö$<±öÁ³Z"Ô½[½T®îÁUtç¬ÆtziÙ FÄU̬fdW;zßön2'KuS¬�íb;¨@Ó<!ý>Îëôç½8º ãtÎ8B¤Òàpúûêu�¼¨p¹c Öþ!¡SÈO÷#ÈÆ4°c׺C´ç Üy9Īyºõ!Î q±£&i^Íå&f ; [òbf-yGg-yÁÞ>7ÂhJÖ"ݤ}¶/Npýr@n*æº#N~Bê7kÃðÚ?/w{{ òop-ÈIÛMë q¾^óÓáÑËúõæm £uªIdsî�idsÞ;ø¾}@csV0&Ù±¶pHålάI¥ÀÜø´pú%Á&à�ékD`ÈãtÖôÒÉt7¬:nCfØS:M.ÅÖ¿w¸¼Û´Dz pÀ[¨?FèÉt`);@Ë"5Ã3^{¯Ë6D¾Û#=+¶¤B,xÔà8ê0ñ¨ÂÔrh'°¡pQãxÈmVѳZ5$Èä:+¢«±L#pEº3%LòÃUEF[è ª(0ñwtóIP`4ãÊw¢GñTgJ= ò%OÚÊPeÃØëèÜg .Z8Â' i/¡ ÀQB[4W6H']AÇG'3û^;Úg1/ã¬ÐêØq¯` 'Zxhòª*UKÍ9<óBù-GÆÑ\´Utn]õN´½zÕÐ<«F#]5%mÖ°/Ôi"b|ïtxuÞé¾°ÀxÌQo`�kãÅ75úXc³Âü¼¬Aí(;§½`X_QùÔC°h ð¦ÕZÇ먦ӿ?¼þkû°¾£áפôsäHª·ÚºH^{hÀppFÔ+`ÏÐ3¢N±0A¯fx:¾xðÕÐ0¯H¯:@;4" ]¤ñ~_ÆMêñá¬ñ&Ä,©ÜÞ}OGNozÚÏMOCBìa8X4!¢ÐNÐÎ÷ɲ3¤ävÕ4þ²hÉ ÚrýD;4dXúÆÄ×/3µDh<øô +C½YÜu@¯á®pxO@.£$-i´ÃhÐçj2LKx%#j ÈRÐ&Àt¡èËftl/bÒa+¤W&¸²éÅ«ÃhÌ??¨SyQ÷â×Y X£4zÃ�c!Ï C ([Ñ^º:kEet+ÚÁ]¿µh©çp4hZ4GDqGôrÉFÆi^8¦ÝuÇ"ÇñU¢+¥gÑa`(÷¬nЩmÈ£;ehtÔ;>üÉI}[iö +£TMİâÄR¯_7"¼co:x§W*ý§ÁÔV/ßÄi|ÍÓù . _s�áß,8"sТtDT`2¦îü07é¬ Â»ñz@hoà U®Ëá`;¬xøRèµËÚg÷+µst¸J³§U{I6úNë>û6{�ÀÁ}ðtîÓ\>±àùܧÊÎ}j¨HÐÙSpÓÁ5ádÀ/W8½ÉX &@o2få*a²½O°K¦ñ´Y5²ñHÈ࿯#ö}^{¿/_´whvhÈ÷#4ãïc+r;@JÞ±Óèð¾9Áe»Õäopq&÷ü"Åâeg«3Á=DÁ[à§í!Q.ßsQgñtOdlãìëLîËr¿dA+p8¥ð(Pt°bÌ/¡éåI±#Øðôn�V¹9<BÖðÓ6`@#N'ÐÔ e1É#%p¸s¥øyíþ!CKDZäpÆí w, a3$WÄÔD3±@%ÔQdMèùÙ`;¨ó4ðå´8®påâãhðË$o¬ÐÉû=ë;+<ïà=+ä-O¡è¯Ñ=%hÒkºZY;IЬJÐê|ký¢uÒìhÜ\0b÷¤È;"%1áÐêÆ27¢�gÉ®xäÒÃNó3 +héV-à2(uèz¿shSÑãBéû]í¬65% Dê0±¼ûb~S«i1ïW*oX£ dñY@£f<EC&óÇvP'ZvÐñA9Øá¡�Ù@É:ØY&=Y^$At^I´~0«u<Ãðã)XpÐÐ9ÃËrôk=ý�ÂË^^öñ[ÚëRíw¬KÞ(F¼Õ)NN5t>D"á\or´:mÄF^ñ|>.GGÂy¸ô®ýÑ.ãï$Þü¦S[>Ñú!(@^ùÈåî¯@è +2Ë +drp°^ÆËnÄÞÑ\ÆËÏâíªö2^¶ìÍõt=á#Qpì¹õ»Æ/+[Hð :!ç9" ããë&)½a8Pë è7ªì +!ýº¿A3x;ÁòµÀv½;:¼2 ;ܼD�> fèáè.a¼ÌLØéà$´#zB3ÜAG£R¸:Ç ¶":6¹bÖ±É6Y¡+u`8Ñïx¶U²T^Íøôqß>ôDt :cù/C-¤ÀÐe@'ÙáB< %�2DÑEhaDÖèÙ!<òø¬ Äß Zä`®LGøa4㸧Ûûqi)é#íÞG B ÐYH8%»Â´a;$_[§Ñé4|z·Üö̼;íJ2¶cò%IQd!#'"K®ì§u:8àêðlJ¤¿È8[êMR|Éò·ïp8< +]¾+´£ºW1±æ? æ$^- ©Må=©T9x +ft é?QttÇÙØ µp +? ±)Acï5¨æë¤oÒpÉX:q.Ã2í ê&ÿ&¸yògXðîË)yQ\Á6ͤc«ðøõùGxzýò¤ ã }_ +$ô÷sÉyùÏ+m8=Ú=AÏ+å +^þ]ñÊ·¬Vû;ÔBÞäiÃ[ñï´b;(Ëtt¸N² FÕrx¸<#±�KØé9Ë'èÈ-6±/GÀðelIt§`dä(>\àÈá°Uïã»Pu|wÅ;èÀw5- Ø ËñâY¬Âe¯!ÌðÑm3#²Ç3ÐK ÙB^À+Æb*²8¨rtÙD[è!:Ú¤ïSp.ÃïËOiR·#¤P4CÆ^tG} "GÙÓο=à^ö,á-¬B5z÷#ì +'ú%1D2¼ÖÚr¦"Q(¸´´GÉi&fH¾«ëoÙDÑèdO$¤ïê+itãÆPé^|W¡%t5ÍB2c²u%y Z¤ V¼:Ê_UUÀøÝ¦!4£ +Ø¡¡ ËÃô¸ÔJNK@BàHäôØfÓãżÓã;f5xÎaÕ@âópÙ +mæÐËpÙmèëÕBu@´EQâ"N;EÄe¼îXF³Î¸ÀÓÓ1V»ãYG,[¡¢Âý×IbbÄ´�^á<öPý<öX<öðe/ +T!WØ©#ä1ÖaW)W°V¥a\I&EâNªG IïÏ"Kà(/åE¤ø!+Ð;RDht?ÚQâ Eúð-gB`CcÊI& 1ÔI&2N25wÊ{"wê4çú¸Bì¨CÞ>wk*DäVGDhÌî+`üµq[x篥RØ !p°<àBÇqP%GÄ)À NçjPÉ0b¬rP"!8á¨J/¡Lx:J{°Õ ë·Ã:h#k;ÀqêÎ ã̳¶¸ãÌîÔÀhmtUSQvyíj±=Kîz!ðÐ25"b87AëµKÔñ4`K¤Sê !± ²7ÊØ9p^ë aÚIaÇkxªI1Ý"$Ò$ò+ë½ø¾àuúJ.åejÎï'ZKûiH�F¹^H.ï éõï#¨k_Û/? ¼³>f�c*a˦ÊãÓÇg¨¶¨é%9azé(^p.;ôÓK½¼ú(µ)ÛÙø(*0½ô÷\NO ¨.sÜTIFn«f.ßÓ)³åÒ\äiNèó2Êf±À`8ªáçåFE|ï'.qê£ÓópêÛ óàøi¯Êô!9×Éf ¯ñ3d3Á +ðÎó×¹B +Þ@l¦ó<\~ÀAô�EP§9X +8ÈfvXÙBCÔï, +É0BCpÎD#¢¸ %rÎÄ�¥ÐÏÉv1E@/ Ωþe¼\vÒ"vW#%r(bäFï@èäI<µÌo^Ë\ +\±ñ%Ls;±Bg*Sîtx ļ2?ÕÄ@hAÃP¤£7ïl(°sÐ<RD±´ãuhJX ÄÚ +Ø5CÊpõk/gPDMPzÎxXdW¸:s y" |çlD¾£x×C3䍯J _á¤J#¾h"Dû}ö¤j²GSWÇ?@V�íã?Ϊtl0ÁïË=2ftÌYÃ$Â;ûuüÑ-ô½³Â~ªÀ+0!úa¹4¬Å:¶¸"gì)ãÅÄQƵHÎó&,µßtµÔþÛ>U1?ëSuï¨�³"Ä<GÄ<½?=«LC¶çtY±éXV7»Gwëô?IÝABÂiDçñ:6µïstI<*ö,k +pzËK+ÜÉ|Þ¡â-öYÇÇË8à%$Â`·L3 aÃÐóÒm¡§c#TcGÇF$DzJðgR;éHé¢fHé&x�ú+mhÆ<¯´3Ô+ðõÐ$ȯøåZä. eaKpäÚXq0 ?3¯¡ fL¸«¶úC;a·=06,zéÈttgáĽ$bA4$¼O'dʰ!�®0"ó0&$ÇxGdò kÂn@Kæ7 +4¥z£ÁS³j %ò¨Q ¦P¯`ÜDCÀa<¡7¼:i;ਠl?¦èÂ@é24*RÚ9ª×qïÁ èðHè£3ã¼BæèÕé¼Qo×]¿¶jºN@æ¼âB¶$ý¥ùèx¯%17£z�s3H¬Í@*hJää0oHõ桹Læ¡ô6tE,ÞAY÷§êZ\I-¾#Ò7 ¯ßw¿ß¥0÷ÐÝ._q*9Ý>-ûÎãbóÏôÕû<ý;£1Û>Ë +ÎͰyâËêeZów0òÈÕôçüG®V�{Þ�eh÷ d¾¤=/@¿ð VúrþÒ:ÁÔ-в*Ì#Ð-PgóÝ©Í)£¯ByúCïr3 ÈEoõ4²¡S4Ât j¡Þ§gyfâeXhE+Ä!Z¸~½ô*BE0FÑóGÞØ +é¼3T"Ç#ïüL"6cºhÇåP6Ú{¢W@õm(KexE;àèöµbi{«§IC¡ópnP$®Ä: +Æhõ×]Ñ=àë3; ò´Qr8ÌJø°7Ö»'-¢¥+HÐëÝ® %s ù¡÷^OzÜ!Ö±%$BD*Ù$Py�BãÎÊ�9CÔ9ÎpÃj¤á¦!KRCÌu.O·7²ñ!b0cCÒ"ÆDÀÓI&fERIu6eë¬CÏØéuö¤aM°'ÒØéÝpfçè¶-κªa5_¡/Ñaú X/$Ý´@A©^ÊÛñḚ́㫳a!=)C%ÀÔáIÏè¡5³ÍKëKywÏ÷5ÉËLòö÷ѳÎÜ�Ú×Fú\á1|EÃÝDçán"ÏÓð "ÏËx7çpú"Ïóx?çy¼Èó<ÞOäy/h¯½¯^>åçýw?F´òGCVÜ+°Ú' ?Opºd¨¿ºXíY(Pu|½hë§ó_áúõ'þÍDQT*Ü@"`ÐKßúïÁÐZbõ2îPG¶´prA+p[ÏìhPupÒD mLZÀñeìð.ôdrÔááÑ(eB¨cqÚÙøª¹2^¥XÆ#å¤ç½ðBK¤o!´Dzõcá=ô%¬ 3_Ðñáa0Mðå¥x¿¦ÜQÂq8£ðFm8¼½©¿v2HYÖ2¢Îâp@/]5KJw >Uª�gáô(Q[ñ O@Ø"9'Ï8/t<×´åeùIyÄHqD¤×¯B;äi`j«£$"ÒÛ}e, úÂÌÎÓÌ>Cw¬Cô 6e6 zý+©ôi`y*0¢òaoÛ_<ýþÊ<7(Dú3ó!*O*¶e:d@ÄÅá ;Á fPA.±Ã L):F=½ ªÀbh wýáË+ür˰ܢ:Fý os3q70^w§ÛQy.Õ¿Aê Í^o1bDÙjÏWê ¤>LÀRçJ¸;çe: b?÷ +¬jæ¼½»ÃÌGÐi@GgÀ©ü?ÕÃåt1GñNÑ(®ÔpfxzuAà ²]á÷õ2è +À3¯¢#¸¡ 8n:6íûåkÉpÚòq Ð{58ã´^S N@Nj:ÑÃØ2ÔïLhà=ãÕ¶3-`K®ó$´G!41c2qUÌâr®,©=lô#Xa,ä`R]¡!Ö¹&*2 §a)ÉNÕðO? §$qGR² 9S6N:ÈÏÒ¢ù"óGÀ´ÃÄxrÿÝát¤>ZÀËáè0/´#�»6ÕüVõN¶ÐQËí~0©Óã3¾Ïy@á÷EÈÐ + tg%½QÓ(+á4 X 4 Ðê0³1OMæ½ÍÒPÈ2È«é�ÅÉ÷ª=%¤¤ÈjfKv0C3æèH®þë%ÀçñÐUZ?-C¯8/Ö[UÎ9*�wW[©aÞ`<)×e.éõ_Y=ÜhøpVUTð.[Aþ£)G r¡^C¬AL +Dt(8Ók¸a9#©diÏïglà\Ëw4ñÛy¸ãæx[}/#sþ\¦¯Óg.´{·Àù;hxü½3àÐ)H£|ÞÝÄ3 y2(#üû"àËtp1c!t £á$ÅêÆ1ü +oÏ«¯? -@{ý½¶jRD·X"]ZCÞBMκÌê¡á£P ¢kÄ�'ààiÏ0Ft&ÚiKfø*AQ4d-£IPA' gt;ï^ gtqM,i¬b<A°bS,ÄÃnAófçFdz1yÃZ$߯c} Å4NOPô*VhÈt)N¡jRÌËx¡qí'M8˶C2.`41xWð}£©Ñ(Hô¤0xxxÖXr|(Ân£ÑU{væÊénXUÈ83»ÔÙqçfÕåe}ß^<^7qjõ0 è<¦÷21~Ô]ç$¦t8"sÔ1ËÎü@Á+ï{syf äÍ«òw@Gé+®Ð:(2IMDÂÐè7=Om1eÌz²h %ÅhdKá9ù�skY AÙäÔ´è (5bÙòÉoÛ +´:¶ÁÜ#fhÝ+.É ,;ý%u§áwmÛ§ÇÏåór ®¥t/Còí]7ãIi +òýúM1m\×/Õ[üÊ<Ü@^ÐÊíÃQüw¯Ãí§}ßSÃ|\3 ×0C ÒaþuÀQ @gZ(XogÈ�o¡Î²b)v´R,G$hŸ¡CV<Øf¨4¸24³e¼óÚó (÷ÝFvW ?ǰ*ä«èýÞç³¾ £ì£3àtʪ)etÐêtÝÅïé6èæE;CNwVàâÛ@ d2èáÐS¦¯`Õ¤Vñ®È9 òÐÑBè-û5¿þÖ"çS¶ð5-yÛlLy�D4Æz (©<t?¦ãA?6´Å¼.ÀQÆ#G3<A½ÝZ g3ÆÎDo·Ö É!JÝL¢´¢ xV°nQ!§káâbeÈÖ¤p o¡Þ¶°Á¨PÆÊ;Ò<k D¸hgÈéñÊðN¦e8¨ÊjPűÅÔbt ïÎz4w0bÌN=QÜ /?Ë'24f � nÁª%éjƨÿ�1Fú +*,eÔ¡æqzà +ªát´¾a["cÕ #YÊ¢:uUE4ç*Vc{¬,0ÁóDèPtÒÕ(/.b|¿ºd[`hq»ªè ×¹ÙM ë÷¼Ö´*:ÀÏË"d<uÔa»S«ß©îXm¿~YÑ«ªóçp5^Þ±+ ówÐúFxþ^d¸:[Åç @¥¬í\Ia]%Fà TT$ð +' C¯pu Z¡êPzTàà¿L@g,Ù èÏ4áZ,öAzíÎý®ôRÐ*R6<3FX1kcD2ì)äfÌS¡; +ªáúª§í ~{rý&¤,MRcÞ7/?E"4dh¶t_~à&#Æóx3à +t¿Ã1N¹@g¤7Mñ§e¨<PóöH +1Dz1fTã²T&½áUgled!ÁÊQ@ %rt,Èx*ª¡+Ð+ªW8GEµïW-¢ë¯ø�%~ùOEtBñ²d{æ +:N=RB:V¥ ;®p3vóbáLïy43Ê;dgü=¯ótV`¼Ì#-¤ùÃæzfä;C£ìgU£çÇôB;äÁù«Ð#¬ùèõ¬/ÎóåoXõþ¡ ¡TÂ;2Ê_`f©ßShÇ×½yvQ�-NÐ˵%AK,סiÆ:×)ÄjWÖ!19ÞÓÕO ÿFÏ6l´²ÝñîµMÚ=Þ·._´ý:¼m}÷®ëoÃÑvóz�z)«9òËä ^¿'5§è#³²&¼ñÎj]ʤ +Àº è)ñÝEt +Ã^Ë;þðB5Ò!jhFMScÏjßç}ïà÷ofâJá(@<¿ãJ¯sƸRDN($6ªvÑ #vÜóYߺ?ÐÐè¥ÈYVþ³yÒAç?ºeH_@ ˰=È0¡~_£bEfÜѶGB:À¿Áùßl{[:t¸Ì½êEÀÐQàmìv +ÈI´í ëL°Q3£VJ8Óa¥4 Xï2ï?Ð&<½ó£±r +o¯h+×W*gQ{np¼lFeäÛòÔ°'3ªDÌÀv`ËAØqþ,·ÌØè|;¸98>è +ôêÏø,Ë¢¢ë'vH¯!NbVȹ"pV¨Ë@V#j áÀr® ¬:Sñ`(ÃúÝiKnå³²/!Gptß>öÐî-ë 0h£,xåKëX7ëË:UÃ$ºd ëFßçýâÄà?ØQ»V`^ç » iMXÅFl®`IEñÊãù[N¼öt|ÕÆÓòÙM_b|Ó×»P[õnºsx5¢ùëÐà' ?7xupþ +hÚɾï)Pe °~u× èG; +¨3ÀÍqx·LîM�î ìX¿»½y�ì°uP t6àmã9Tt-¬OµQ]ÇPbÛ0B檹 +ÎACæ°,bpQy£²¦FPd¾ÎÈMv8D M±N(>ý-®ÎPïÙ-£a4dVï£wÇ»ñÂ{Ü2Ç; +Åhõïоc~(C(C¼cö:«5Éë ru¬S às0"s\ôty2H.@zýïl<I\Xôðݱ^Á\ !t´Ü[5oL` ¾ÄÓrÊ^\aHçh¹-±òoÚ÷9%2\¿|_Úq_}¯æ¼9ϧ3¤\4eåÃñ28×IG?À¥ðö4C¦Îãe9Ø{°Á÷y^çïx6ÐQòlò<^®7èiíå�õwÅl~n²Ê÷ñ,{¾'ÆoJNmþ°V!ªÉ'¯,Hy¥Õ/Æs +D¨Å§ÉN@¯Ü 8:Á#;æ@¬dár:ºÔ8¨PÜ@½÷Ôx"+¾lÞ'( xUtG*±#«Mä¼�GF±%L;áèxáòEÖ=¯t¦q R¨÷é±iØuL�²ûP)¬Põ~_ªØX'øàYíò(èÏbÇÞqC"äé2³$q¬QÑ3NÂô0 Lb@H Ó¢Ù1:Ðé¸@'àȪqR¢sïñûP ö<UEñ?¾¿ áÞ§§â´TÛÍ ã¢$ÁN¿(I$1/J²½§¹2N�)Rþ0¢Rgã4Ä9BWª×~EëQz�IË)è÷ó3WÜ»ÍfæAOñÁ£Ì|Èý8tîÇQ^JµÐJéGZÈöBS®¯�'¶z beS±!ÓÎ9ög½iÝΩhmq`@.S^×ê¥oØÉàRI8¥ÑF§Y^O´q>Õú8Ç[¹áÏËlgq@ÜIi8^®º±@â¼|½ð¬¢ÏßÏ cí6 ?1|ì!b CÄ" >F~ÞC½CLB{è)¼B2è(¼²H"åy$ÄFò«& ¼òî ÐWt\³T$C·Ý~OÖ Ê)Y¨Gvná8 +· %ÔiûäH%ÄúqÖtîÆÁ +Ø{¢¢óô÷DzqäÌøÛ^ÍqêEm8Ä e@ZkùÀÐçáåxZz¿nGß¿M^¡9)îoà�74¤ú5MEßw<#èÏîÜÁàºa5ÖeGTºi¢á3<^\ /q ä0¢ÖáÅ\u/uçñ:ïbÑþ"%Ëv4A;z!Vq +?¨ð cC;³òpÇëäú}ö8ú]ÖU!0Ë®ýÀ´´@Hz\|¸G15ÕÑ9Ê74CrVÑGYI£Gfÿ�ö2ßQ=±g¹ÎЧ± õúÛÜôÉÐI¹¹AÌ +'tt ?oÏá +CZøFtoÖß7Ïz³ÞàÈØx¬r·¶L06ýuËÜAnØëí}my!Ë;P -ÓÉ: +LM¥»ceÓ#Þhg,$µc²¢Ædl-¤ÞÆÇðòÉíÃ$î?/»&Â$ ®ÁKa|Ôð²zLæï(�]мwAû>ë³·?oFǯ#N@flêÏÃ$t/Ãs,ÒÁX¤G +@AæW óoZR2XTÐóÂ{E+pðoBä©Å¯Pô + _48ôìç^x·gV0´f°£ÜC;Dê/±_tE+Ú Ãä,ÿ�«£2¤³83i#¶CYû>á÷eh'´rAýyv9ê®Î+ö.òsJl1ÔA]�*2õ(B}1nèû"Gáê :"à=ÆÚ£º¾M5)<§U3#tC6ôpúëì,úr +fÍÛØBþh<E¼8Ó;dxLç�xtÆSÐMÓ#þ¼:(¶d:@Ã! |jòCCÔ»û&À«Õ äÆ9kËsÂZàÇx'Õ0K¦÷!H2´Dz1.Xôbþع£òD;õ?`ï="½'vz1ÓDwÒð!^\Äý#ølÀ: ü½yV:B<Ohe%j"<l`?�+þéñéôâË3©»Y áò=.;ÀíÀå{XÐ.hö:ÓGC³w}´|ÑGFãu¢«|¢ÎßA©?e¹Ö&I."\¿%(þz$Õ« Àù/±ßô0/,Ƚý2ÇV(B~þÊÑð*f´ ¼â ÜvA3a?c4$ þHH=V©eìçÄ=¤Dá¨"¾ì¡ÎªäIèDxúF¼·-¤�6EJ{+n"ñ:h´H& ¼JûKb<l!?2¦Ãòî¸2ã"Å[ã!Ç: ºLÑï7íûCxlj¶\' vÈQ eXh6Åz$h<%Ï@¶¤)1¹a¼0 ÐÏ0ãÈ)Ñ¿S¢Óè)Q*ÐÞs"ÊV²&Íñ.IP t)4dfÖôBà¡!$2´A; sQlYçãñÁyÌ`3â@á÷õúAû>¯á}fÌèiQ§©ÛqF¡Mn t £?ìÉô>_ë£Ï<}¾ rôùÂØ¦bV `^çP ä:U ´zóçÑ)G(ÐÞÉÔº�ûÓ¾;'X± +'3B�&wð!tHÚ&;[µsÛ»Ç0Û÷üú· ZBº#msDðÇ%ó6GÜÌlxêÛ �'.OÖ8v5Ä=¾Î{ÖkçE¿Eºï)οÓ3qHêÞÑè êìý|Gïè¢ìç²|uxïÈÀÕbk`hî6ÙýÀH·¹þÖhd0y«z´z9ïÚÑçlàë³36ÁÙQ"e{ûºµ øO¿ÿíw~¿ÿëõØÇ½þÕÿÇïÿþ·ðc{ýZ©¯æ¯~ü»ÿö?þîoÿðÇø×?þÇÿý?ÿÙúü«ÿû?þÕÿùÿ~ü÷¿øÓßþÝßýøË÷¿ü÷?þìëÇ_üíÿ×ÿåO?þÿùÓþé?þîwÿöoÿöõ§¿ùÛýú?þéwêú×ÿò?þáÿüîþu÷õ7úû¿û÷?~ÿ¿û/¿Íîÿæx÷ +endstream +endobj +497 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1074 0 R +/Name /Im466 +/Width 20 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`>ÀÀVÀÀSÀ À Ã�B(ùC +z æb�!vcÏÎ00T00��ß +endstream +endobj +498 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 593 0 R >> /XObject << /Im467 500 0 R /Im208 217 0 R /Im205 214 0 R /Im202 211 0 R /Im208 217 0 R /Im319 332 0 R /Im207 216 0 R /Im323 336 0 R /Im201 210 0 R /Im205 214 0 R /Im202 211 0 R /Im323 336 0 R /Im199 206 0 R /Im324 337 0 R /Im468 501 0 R /Im469 502 0 R /Im84 91 0 R /Im81 88 0 R /Im87 94 0 R /Im327 340 0 R /Im86 93 0 R /Im331 344 0 R /Im88 95 0 R /Im84 91 0 R /Im81 88 0 R /Im331 344 0 R /Im244 253 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im324 337 0 R /Im354 367 0 R /Im123 130 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im101 108 0 R /Im107 114 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im107 114 0 R /Im99 106 0 R /Im114 121 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im106 113 0 R /Im96 103 0 R /Im116 123 0 R /Im103 110 0 R /Im98 105 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im106 113 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im107 114 0 R /Im104 111 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im116 123 0 R /Im126 133 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im140 147 0 R /Im103 110 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im125 132 0 R /Im98 105 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im123 130 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im111 118 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im108 115 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im138 145 0 R /Im277 288 0 R /Im93 100 0 R /Im74 81 0 R /Im125 132 0 R /Im96 103 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im98 105 0 R /Im97 104 0 R /Im108 115 0 R /Im106 113 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im111 118 0 R /Im99 106 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im102 109 0 R /Im94 101 0 R /Im96 103 0 R /Im106 113 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im101 108 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im117 124 0 R /Im98 105 0 R /Im94 101 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im107 114 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im123 130 0 R /Im115 122 0 R /Im96 103 0 R /Im114 121 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im104 111 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im96 103 0 R /Im97 104 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im117 124 0 R /Im102 109 0 R /Im99 106 0 R /Im105 112 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im74 81 0 R /Im244 253 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im160 167 0 R /Im110 117 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im103 110 0 R /Im100 107 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im96 103 0 R /Im97 104 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im100 107 0 R /Im108 115 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im74 81 0 R /Im92 99 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im101 108 0 R /Im114 121 0 R /Im96 103 0 R /Im100 107 0 R /Im100 107 0 R /Im107 114 0 R /Im113 120 0 R /Im108 115 0 R /Im97 104 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im123 130 0 R /Im98 105 0 R /Im94 101 0 R /Im115 122 0 R /Im96 103 0 R /Im114 121 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im117 124 0 R /Im102 109 0 R /Im99 106 0 R /Im105 112 0 R /Im101 108 0 R /Im74 81 0 R /Im135 142 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im107 114 0 R /Im113 120 0 R /Im108 115 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im102 109 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im114 121 0 R /Im99 106 0 R /Im101 108 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im108 115 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im74 81 0 R /Im244 253 0 R /Im108 115 0 R /Im97 104 0 R /Im101 108 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im108 115 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im107 114 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im114 121 0 R /Im93 100 0 R /Im112 119 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im139 146 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im112 119 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im107 114 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im112 119 0 R /Im98 105 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im160 167 0 R /Im291 302 0 R /Im114 121 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im114 121 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im93 100 0 R /Im108 115 0 R /Im97 104 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im244 253 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im100 107 0 R /Im93 100 0 R /Im107 114 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im113 120 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im117 124 0 R /Im102 109 0 R /Im99 106 0 R /Im105 112 0 R /Im101 108 0 R /Im100 107 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im74 81 0 R /Im160 167 0 R /Im102 109 0 R /Im98 105 0 R /Im106 113 0 R /Im117 124 0 R /Im96 103 0 R /Im107 114 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im112 119 0 R /Im98 105 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im96 103 0 R /Im126 133 0 R /Im99 106 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im291 302 0 R /Im99 106 0 R /Im102 109 0 R /Im97 104 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im135 142 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im74 81 0 R /Im130 137 0 R /Im99 106 0 R /Im94 101 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im99 106 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im74 81 0 R /Im134 141 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im126 133 0 R /Im99 106 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im107 114 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im130 137 0 R /Im292 303 0 R /Im135 142 0 R /Im135 142 0 R /Im110 117 0 R /Im107 114 0 R /Im291 302 0 R /Im160 167 0 R /Im110 117 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im130 137 0 R /Im98 105 0 R /Im94 101 0 R /Im332 345 0 R /Im130 137 0 R /Im99 106 0 R /Im126 133 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im126 133 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im113 120 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im136 143 0 R /Im291 302 0 R /Im135 142 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im160 167 0 R /Im291 302 0 R /Im235 244 0 R /Im249 258 0 R /Im74 81 0 R /Im119 126 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im104 111 0 R /Im93 100 0 R /Im114 121 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im115 122 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im114 121 0 R /Im98 105 0 R /Im100 107 0 R /Im100 107 0 R /Im113 120 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im115 122 0 R /Im108 115 0 R /Im97 104 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im107 114 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im123 130 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im101 108 0 R /Im102 109 0 R /Im96 103 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im100 107 0 R /Im95 102 0 R /Im96 103 0 R /Im106 113 0 R /Im74 81 0 R /Im135 142 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im108 115 0 R /Im111 118 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im121 128 0 R /Im108 115 0 R /Im98 105 0 R /Im103 110 0 R /Im124 131 0 R /Im100 107 0 R /Im123 130 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im104 111 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im105 112 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im123 130 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im108 115 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im108 115 0 R /Im102 109 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im107 114 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im92 99 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im123 130 0 R /Im277 288 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im291 302 0 R /Im160 167 0 R /Im110 117 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im116 123 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im99 106 0 R /Im105 112 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im98 105 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im107 114 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im117 124 0 R /Im99 106 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im98 105 0 R /Im97 104 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im97 104 0 R /Im108 115 0 R /Im97 104 0 R /Im96 103 0 R /Im101 108 0 R /Im94 101 0 R /Im93 100 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im100 107 0 R /Im100 107 0 R /Im117 124 0 R /Im96 103 0 R /Im97 104 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im108 115 0 R /Im117 124 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im130 137 0 R /Im99 106 0 R /Im94 101 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im116 123 0 R /Im94 101 0 R /Im106 113 0 R /Im99 106 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im118 125 0 R /Im101 108 0 R /Im120 127 0 R /Im97 104 0 R /Im93 100 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im107 114 0 R /Im104 111 0 R /Im93 100 0 R /Im111 118 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im93 100 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im102 109 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im108 115 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im96 103 0 R /Im238 247 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im114 121 0 R /Im99 106 0 R /Im123 130 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im115 122 0 R /Im99 106 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im254 263 0 R /Im255 264 0 R /Im256 265 0 R /Im257 266 0 R /Im240 249 0 R /Im258 267 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im107 114 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im123 130 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im93 100 0 R /Im115 122 0 R /Im93 100 0 R /Im103 110 0 R /Im108 115 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im97 104 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im107 114 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im130 137 0 R /Im98 105 0 R /Im94 101 0 R /Im332 345 0 R /Im130 137 0 R /Im99 106 0 R /Im126 133 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im126 133 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im107 114 0 R /Im130 137 0 R /Im292 303 0 R /Im135 142 0 R /Im135 142 0 R /Im110 117 0 R /Im107 114 0 R /Im160 167 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im112 119 0 R /Im134 141 0 R /Im98 105 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im130 137 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im160 167 0 R /Im110 117 0 R /Im107 114 0 R /Im291 302 0 R /Im160 167 0 R /Im110 117 0 R /Im97 104 0 R /Im93 100 0 R /Im101 108 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im100 107 0 R /Im106 113 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im114 121 0 R /Im99 106 0 R /Im102 109 0 R /Im106 113 0 R /Im112 119 0 R /Im111 118 0 R /Im102 109 0 R /Im108 115 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im106 113 0 R /Im98 105 0 R /Im101 108 0 R /Im117 124 0 R /Im108 115 0 R /Im98 105 0 R /Im101 108 0 R /Im96 103 0 R /Im74 81 0 R /Im244 253 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im101 108 0 R /Im94 101 0 R /Im96 103 0 R /Im96 103 0 R /Im106 113 0 R /Im105 112 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im112 119 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im124 131 0 R /Im94 101 0 R /Im93 100 0 R /Im114 121 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im117 124 0 R /Im96 103 0 R /Im107 114 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im108 115 0 R /Im97 104 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im107 114 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im93 100 0 R /Im102 109 0 R /Im103 110 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im101 108 0 R /Im107 114 0 R /Im97 104 0 R /Im93 100 0 R /Im101 108 0 R /Im93 100 0 R /Im100 107 0 R /Im95 102 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im101 108 0 R /Im100 107 0 R /Im98 105 0 R /Im124 131 0 R /Im96 103 0 R /Im280 291 0 R /Im260 269 0 R /Im241 250 0 R /Im239 248 0 R /Im239 248 0 R /Im281 292 0 R /Im255 264 0 R /Im282 293 0 R /Im93 100 0 R /Im102 109 0 R /Im114 121 0 R /Im104 111 0 R /Im98 105 0 R /Im103 110 0 R /Im104 111 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im284 295 0 R /Im285 296 0 R /Im239 248 0 R /Im258 267 0 R /Im255 264 0 R /Im286 297 0 R /Im287 298 0 R /Im243 252 0 R /Im285 296 0 R /Im260 269 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im123 130 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im104 111 0 R /Im99 106 0 R /Im102 109 0 R /Im106 113 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im117 124 0 R /Im99 106 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im124 131 0 R /Im94 101 0 R /Im93 100 0 R /Im114 121 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im117 124 0 R /Im96 103 0 R /Im114 121 0 R /Im98 105 0 R /Im100 107 0 R /Im100 107 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im140 147 0 R /Im103 110 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im101 108 0 R /Im74 81 0 R /Im109 116 0 R /Im106 113 0 R /Im106 113 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im107 114 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im104 111 0 R /Im93 100 0 R /Im114 121 0 R /Im99 106 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im96 103 0 R /Im114 121 0 R /Im98 105 0 R /Im100 107 0 R /Im100 107 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im98 105 0 R /Im115 122 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im115 122 0 R /Im108 115 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im107 114 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im107 114 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im102 109 0 R /Im108 115 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im117 124 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im121 128 0 R /Im108 115 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im103 110 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im74 81 0 R /Im119 126 0 R /Im115 122 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im123 130 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im98 105 0 R /Im101 108 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im106 113 0 R /Im107 114 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im100 107 0 R /Im98 105 0 R /Im124 131 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im114 121 0 R /Im96 103 0 R /Im100 107 0 R /Im100 107 0 R /Im74 81 0 R /Im134 141 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im117 124 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im199 206 0 R /Im74 81 0 R /Im212 221 0 R /Im107 114 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im101 108 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im123 130 0 R /Im96 103 0 R /Im140 147 0 R /Im103 110 0 R /Im98 105 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im115 122 0 R /Im108 115 0 R /Im100 107 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im74 81 0 R /Im137 144 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im332 345 0 R /Im93 100 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im123 130 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im117 124 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im107 114 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im113 120 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im102 109 0 R /Im96 103 0 R /Im116 123 0 R /Im94 101 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im324 337 0 R /Im354 367 0 R /Im123 130 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im101 108 0 R /Im74 81 0 R /Im244 253 0 R /Im94 101 0 R /Im96 103 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im96 103 0 R /Im126 133 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im98 105 0 R /Im105 112 0 R /Im105 112 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im101 108 0 R /Im108 115 0 R /Im102 109 0 R /Im111 118 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im114 121 0 R /Im98 105 0 R /Im101 108 0 R /Im96 103 0 R /Im107 114 0 R /Im96 103 0 R /Im101 108 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im123 130 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im93 100 0 R /Im105 112 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im107 114 0 R /Im114 121 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im101 108 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im123 130 0 R /Im114 121 0 R /Im96 103 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im74 81 0 R /Im134 141 0 R /Im108 115 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im107 114 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im103 110 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im123 130 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im115 122 0 R /Im99 106 0 R /Im105 112 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im108 115 0 R /Im117 124 0 R /Im104 111 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im96 103 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im96 103 0 R /Im94 101 0 R /Im96 103 0 R /Im116 123 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im102 109 0 R /Im94 101 0 R /Im96 103 0 R /Im114 121 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im111 118 0 R /Im99 106 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im96 103 0 R /Im105 112 0 R /Im111 118 0 R /Im97 104 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im105 112 0 R /Im108 115 0 R /Im94 101 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im74 81 0 R /Im470 503 0 R /Im471 504 0 R /Im89 96 0 R /Im472 505 0 R /Im84 91 0 R /Im81 88 0 R /Im84 91 0 R /Im473 506 0 R /Im474 507 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im114 121 0 R /Im93 100 0 R /Im97 104 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im108 115 0 R /Im105 112 0 R /Im105 112 0 R /Im99 106 0 R /Im102 109 0 R /Im98 105 0 R /Im139 146 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im101 108 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im212 221 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im102 109 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im122 129 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im199 206 0 R /Im117 124 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im103 110 0 R /Im102 109 0 R /Im98 105 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im324 337 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im93 100 0 R /Im114 121 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im102 109 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im102 109 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im111 118 0 R /Im93 100 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im74 81 0 R /Im130 137 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im102 109 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im245 254 0 R /Im94 101 0 R /Im93 100 0 R /Im98 105 0 R /Im101 108 0 R /Im101 108 0 R /Im108 115 0 R /Im96 103 0 R /Im246 255 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im103 110 0 R /Im102 109 0 R /Im98 105 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im101 108 0 R /Im101 108 0 R /Im97 104 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im102 109 0 R /Im93 100 0 R /Im106 113 0 R /Im108 115 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im114 121 0 R /Im93 100 0 R /Im99 106 0 R /Im106 113 0 R /Im106 113 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im103 110 0 R /Im93 100 0 R /Im100 107 0 R /Im108 115 0 R /Im105 112 0 R /Im94 101 0 R /Im101 108 0 R /Im214 223 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im105 112 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im97 104 0 R /Im93 100 0 R /Im115 122 0 R /Im114 121 0 R /Im93 100 0 R /Im102 109 0 R /Im124 131 0 R /Im99 106 0 R /Im97 104 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im115 122 0 R /Im94 101 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im104 111 0 R /Im93 100 0 R /Im114 121 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im123 130 0 R /Im103 110 0 R /Im108 115 0 R /Im97 104 0 R /Im93 100 0 R /Im238 247 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im93 100 0 R /Im101 108 0 R /Im101 108 0 R /Im98 105 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im213 222 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im108 115 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im102 109 0 R /Im253 262 0 R /Im101 108 0 R /Im93 100 0 R /Im111 118 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im107 114 0 R /Im101 108 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im102 109 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im108 115 0 R /Im97 104 0 R /Im106 113 0 R /Im93 100 0 R /Im108 115 0 R /Im113 120 0 R /Im97 104 0 R /Im99 106 0 R /Im102 109 0 R /Im117 124 0 R /Im108 115 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im74 81 0 R /Im127 134 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im105 112 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im95 102 0 R /Im98 105 0 R /Im106 113 0 R /Im108 115 0 R /Im99 106 0 R /Im100 107 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im102 109 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im106 113 0 R /Im107 114 0 R /Im98 105 0 R /Im74 81 0 R /Im96 103 0 R /Im74 81 0 R /Im101 108 0 R /Im105 112 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im106 113 0 R /Im98 105 0 R /Im238 247 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im114 121 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im101 108 0 R /Im107 114 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im123 130 0 R /Im245 254 0 R /Im304 315 0 R /Im246 255 0 R /Im93 100 0 R /Im102 109 0 R /Im245 254 0 R /Im112 119 0 R /Im246 255 0 R /Im74 81 0 R /Im135 142 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im106 113 0 R /Im101 108 0 R /Im101 108 0 R /Im104 111 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im114 121 0 R /Im93 100 0 R /Im102 109 0 R /Im124 131 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im107 114 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im94 101 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im107 114 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im123 130 0 R /Im248 257 0 R /Im108 115 0 R /Im106 113 0 R /Im117 124 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im102 109 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im74 81 0 R /Im92 99 0 R /Im93 100 0 R /Im105 112 0 R /Im105 112 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im93 100 0 R /Im113 120 0 R /Im101 108 0 R /Im96 103 0 R /Im102 109 0 R /Im95 102 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im103 110 0 R /Im100 107 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im97 104 0 R /Im101 108 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im116 123 0 R /Im96 103 0 R /Im106 113 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im105 112 0 R /Im101 108 0 R /Im104 111 0 R /Im99 106 0 R /Im95 102 0 R /Im96 103 0 R /Im105 112 0 R /Im108 115 0 R /Im103 110 0 R /Im104 111 0 R /Im117 124 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im99 106 0 R /Im103 110 0 R /Im97 104 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im74 81 0 R /Im262 271 0 R /Im270 279 0 R /Im184 191 0 R /Im166 173 0 R /Im166 173 0 R /Im315 326 0 R /Im190 197 0 R /Im184 191 0 R /Im316 327 0 R /Im475 508 0 R /Im317 328 0 R /Im172 179 0 R /Im171 178 0 R /Im167 174 0 R /Im176 183 0 R /Im168 175 0 R /Im263 272 0 R /Im171 178 0 R /Im167 174 0 R /Im169 176 0 R /Im192 199 0 R /Im166 173 0 R /Im168 175 0 R /Im185 192 0 R /Im167 174 0 R /Im164 171 0 R /Im179 186 0 R /Im169 176 0 R /Im164 171 0 R /Im171 178 0 R /Im163 170 0 R /Im171 178 0 R /Im172 179 0 R /Im169 176 0 R /Im263 272 0 R /Im166 173 0 R /Im167 174 0 R /Im166 173 0 R /Im174 181 0 R /Im176 183 0 R /Im169 176 0 R /Im164 171 0 R /Im171 178 0 R /Im163 170 0 R /Im168 175 0 R /Im263 272 0 R /Im164 171 0 R /Im179 186 0 R /Im171 178 0 R /Im172 179 0 R /Im169 176 0 R /Im263 272 0 R /Im171 178 0 R /Im168 175 0 R /Im166 173 0 R /Im176 183 0 R /Im174 181 0 R /Im183 190 0 R /Im171 178 0 R /Im167 174 0 R /Im164 171 0 R /Im169 176 0 R /Im263 272 0 R /Im180 187 0 R /Im168 175 0 R /Im74 81 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 499 0 R +>> +endobj +499 0 obj +<< +/Length 1075 0 R +/Filter /FlateDecode +>> +stream +x¥}˲-¹qݼ¿â¥¯zhèáC +qÈMRm>D²ÿ½wíBâªZë`%jÒ}û¨ $2þé_~üù§ðão?ýù§üâôcú&ûçü±ÍÓ%~,9ÿXrøXÒüã×øéÿýy^~üã~ú/ãçå2~ù¯®ËǶ^ÇÇiUÇo/×ñ¯¹ÍÿbâGlËç¢:0mÚ +ÊG\áÂüQ¦ëRØú38¶ Äüçûn{pA]BÚ>?bº~ }¬.!ÍPAbÂBÔ·1/Ú6R¬Ê Àm 3Ûm%(` )æ»óe ÛGúb»B.¦xSÄíc®ã÷}Ýæcñ@w;/`QÖC§¬·ù/óÍÞã_p_À +hàøXÐïßÌ ÝÖ^ÿÚ?"ø@·/Ф`V\Á{|F+Hé&¸]BAKX;%{Xæg{8gi©¤Iàn/Çúç×¹òÅäÛ^Ö~Àaëô6Â}üçïo7?tß:¼ á7¸;:|ÃÃÝÅõ&¾¸ð~þ¦¿ùc½YÐû$©áõ÷oÒcËÓ"?~ú½'Ðøðúß»N´N Nmÿ¿LàæÃØì>Mà¦lBT·�»¹§�:ß"ÌÈR, ® ¼mi"@'!Q¢)ÝÃ9<ÛÃyÖ¬~`AN�(Átó¢ZåJ/"¼Gdt+6D°²+îÂ&Nà?Rm}¤qB¿ï`®,L73`Î4ðÌFèõ=O@¶¨:Cf1n0-IÓ{4PÇghG8C2¼=SÃòT <Od;3/8óªÅ¯lw Þ""v FQÉ1I\±u3®À¶i¸¯à@"QÕ-(ç{0 ' +Q +ܳó:>â=Ãê ¨ê.A¦Ä ú%ª«¿gI,.N»rn¨�ÝY;ÏËÇÃÒôòCÈô ,XnÊpVt³B:íCqn(û±´aаÁ èÀÙ¥dâoá³¢#*ý,Ëa~veèÇô³,ÃäÐqå¤Y!]@F'Á}t3oáÝ¢åvTçv2Âg¨C7# Ä~ð&Aþû¢\4`^(/01â¼jH×S·ülÆØ¤£t×2A|$�7u¸ÌRÞ(ùrOï<©;·uû\°b²Y"*QÅ ±@Çö»Í áñ2/eHºúÓpÉÐRªWn¶OñËË·Hä<}áªën Õeú�¥ÆË7hèüó²Þô< wÓw8y6ð·0¡°È+¤íÀ"d Q\ÉIÙ-I°|ì<^ÎçÊ}/ÄÒr# v8 PPÀÆCP64^Jéß ýlãó÷Ǹ¡õH.,p<ú^á:½p¹!Ý K�\õË*Ë:~é@H ÅS !Ô½cåäÑò¡ÉZ#r!Êf£æ(¼°#(¦MtDe24>Kõ- ÝYsdaÑï¦qÅ[(%q cÉà ñã0NSö¤o\gB~b{ØR@p\z'èðhÔR:>©ãq8T!Æ^@ßH¿%J©¼¬$,Ð߯S'á_´ª Gd+N+ nÅ+äp$mxò{ÂySgÖèÐZ[xP ç1>£p$ßÒbFÙ +8ÃpSGE�ó"ÙSx{2^ÄLÆøs\Çø3V"¡d`ª�ïTsã¯X"Ø#(ÎóºÆßhÝQ}¿Uæ5ú%ÃOsýA¨XYÞ`f§RWtDã°!¬Z\ 'iv$%àÜRv$ <²#)Ðê¤`GNnKOöù/õç_qža½s7ìã4Õý:àþ<¸«%g�ãõÝ3hã<\>,èÍB3S¤G O@/¶Ñ ¬>²ù5¶³_põú͸©úO�ÊÐtÙ*÷º;@h)Õ Ø PÛóxá.7pF¿ï)D¡�ä<,Pu°lÏLpE +ว ë¢!ôapº lª à{Ú8ÕÚ˹ÝÓÆ Cú5IHl- èJí9Ç Åü¸¢OÐtt5c+(b7(ã21ãs@(^;h ~+2Û±|ÝÛæÁ£t¯`~âã½x2ý%Á£G 4Ô"]·èþpé^fà^AƸ?^Þ7òD¯½Õ1j¨F·MdÀFz¹¢7°q¯k½±/§çÅw\Æô59×UÀª¦Î?¯dÄõ4¶þW}ëGxN°¢Èn$XN¯GäA Ïôû¼æc; ¿ÍLp·Ð²(%úòi1õåzVV éI ÝrêàuHÐK +Ðü¥$uVDù^÷²¢=t<ë[ë%Ü{LþÏPãÔ-h¬ãhD6ൠ+æ#$´ ð|~äÉ÷éãY V"} '*NPò=O®ÌÖc_¬çUN@ßCâ ex§J�{2ù²±õ=GDëNø{Ý M W¨CzZ²B :ÊFÐqÎszã=ÁÃH¿ñ�E +pU#²'$YEÅôpõÊ=á_¡O²2öÅòwÊϺD<H+ȬEú&ÎØôâ£zb·é@ç'ÐÈEC*V¹"ÆtT�ö¢fT�07DQ5¹ðÈqá°éÞbDÅõn?ëªkÑù¡¼}_ Ü-é´p&ã@¸íµñ01ó\ Ôç½^-1ìm�{çñrêLyp¼|¸ÄëR5Ò2ÃÉK;dûf-5¤Vý¶²^HÊö°$C=9.aÓ$ÀFyâýÃâhHiU#i}V5¶Óü=U#÷ñúKIzÓg?o§ïW¯¿Èj$uþ}GÙÇ'�¢ari>mê +>°ë¢$ZvÑ<ë +8ÖMH�uí¡çaça]Aãås,Øuåy¼PÄl-Ö \D'À'räò¢³T+¶B]¡#Òu NÐdd¥=¬;×o<tp, vTâ7¶£Äü]ÎfÉr|ÀQ6TÐQ6Q�=ejô#°Âè7ttªÐUÀB?®ÿ>vBrý^\¤ÇR:¸9Mª° l:¸ !¥Ï*&lïsZþ¬x6InÓÎáp^POxöP]¢!àÈ +2´BýQX~¤¢ybJZ6ãL§ÒÝN}Ý~I3:8«¹ºÐ y^vnZ<Ìb7¢Ãët#:´1~Ð͵`¬ãÆèìÊÿºÚ`Ô5tx4nènGè¼{§ñJéÚÁÉËgRü-)? öÊöÌïðêd"/Haåû�(õ¡Zr¼ +Ä~@¿$º: Ðñ*WX ä¾ ¡oê¢zwàÝÁð@G¤çµíM`/¯efl´k{)+©èp=_ÙûAÈMÚxÚÝ£êßiú`ÎRóòå¤x[$éñÞèçeì Þ½|@¯` P�úª' ÷uõqúYî·t¨EÑ»»G36ñZz÷×Sü¾< ¢VÅ{!xJdhRz2ä5¸^]ðt-áíIÑ B½@-Öç¿ 7â@Ø-èÛ1á»P|xÃ;(S4D»híè0Ç:×,¥xYsa�1 Ê;F$ÇéL´q=7Àkzß°e?3T"¹j)Ê~ì�ôczíaáqìxÛ9k~#ÄÐéV¸@ ÐÐæÒX×GQÜp8¡nMP tÒ-PÉ· âíE´ÞhúUèÈ´_Æ:¾ý¤¤éÅ7±Ò[»dSèm5 + Gg(AsÜS%n~¤u{ê ¨t4áxJ¾jK8/Ôú1ýªõ9×áIÎéc;!G_í(æÄw8¨*!Æ©µÞ"Â-pÔÿªg9` f.µ;'ªóϵ£Á%Òâ¢y1ª{1Ì8ÓÑÓRÀã9Ý]¡XE;¦÷km»yú�º§.¨÷Û'¾øyO±éÍm6-1¦øîì CÈŶ6 "ÂIYã 'ÔÑ¥B¡¼ÅîÚcúq÷ͱ· +æ³ïeìL Ì +Ãìëð' Çã¾¢±7ó\@ãõ¬tCów@¼ü}Gï_»n¾|@/6ê¹ó +ôîÅF=×_£¤WÐ&,B"NXõÞÁÍ` ;Èe:Ä[ʳ=4¹'ö¤=\ÌÈ#8±¯xú=q$·Ð»u>óPälpwWD aè×@Úy~Þ +Ðu�©þD>{ÈÃ2÷ð~Ò$¨Æþ6´ z^-¯¸è^FZ4WFi,¯è9^¼ -Ð/[!qï<¢ZC½5Z Þ+KªCm¥ÀÃ+ØtÐjò n¢ã=t$Ìhor8Ó¯¸gFw Q +kÀgf|e×:@rÃy»a1V¢Ö@º§DÝÒýÃQ=ÈÎ�ÖCz0(IйlËÆôpÀ½[gzÐÁ~[éÀLÎÏ[1qÏ9RÓ5¤y0 H´bY�yãb°Lë#ÈA<Ì8Ur¤rrÕÚÑä*ãJ'»Èx jâJu˳À¾=ö¹<ì[è#¢ã±#Ò%°`-r´øÐ<a·sÇq¨9"á;§q"ï/Ö¡ ãH(Ð9áp@¾ò)Ü£¡fFd¶¤EÅëMXu²ªÃ¯àxÈÆëíì$í#d +üy¬!h«§F +úy9²«áµÀ N_§Ó èöA?§ãEòó%$´.¡ð<óÏÈ~P{FtØo«î}/¢=± élö¬è<¹ú'@æ «X¡ÉYuczþ}èt>ä ®_çcÞ ËùÐN¬ì/DFòs äi¢÷°x +!uèXÙPk=jCkÂí âÅ â¿BB'4d 1>Ët¾¬íC÷bGFu¯¿ÏÖ3ñ5þÛ÷¼ÇZç¦dÑNónþQÂè&F=©Ç@ï]©>~Ãp#C_ì(FÆp#äÊôN3)âã\/¤ð8q£ÆñV?ÁÒÐÂÎQDHL§sBgAe£ *Ó,Js-";«áêR^e ûBòbÕ*Î'üT`jêiD·P.ßh®¬÷]@xW6BáAÊ8¦c²ND7çËD¤9k·2N-up+ãÔÕ¸uß^Î{H`ö·î; æY; 9ã> åûƲBKn ¡¯uhè¥&¤V $¯8*½í½©Ø¢v°×Úy3Hz9*É$(Óëiôå²ì(µdtÃ\z+î³3¹"¶D<3cjTÒ¢©QÕ¸¼ÎÕ¡NõÁxÙÕy@ÖKQéáÖC.ãõªõ§Oꧯ·âÒá ¶6ãX~þÞ8+rAÐA¾ .@®ÛviÿzPûeòMõÒî* %Hx.¤ã(¼¬@of +;Y#vàYÛNªv@¯¾ +ÅÖ?=ÕÞY à¬Ìh<Ä}h NT§©åÐCÀA=³ÁÜ©gÊGÁX»Y?7¹¨=Npô |ï|§ho\^8øå6ãú³ò"Y2ݵ@©'¶@W¦cÝE;N©�fètfèκBc¸î ¹/�RÐ]³¢áh0npfÐùY<¸w~P¤IÓ^NCG@¡# Ø¡j- `åÔxBùAݦE¼õ¶ÙíÜÊp\rÑâjuããHÆ'RAàà(ZTH%8§gJ´@3rÕ½£];î@µÍÿÛkGN|1îJâìÉH·rndê´²Äé É®ö"Y K R¡+Õû¸ÖÝÓb +5§gJdÔ#dÕP P93ÙÃC*à°zêa ´¢¾bÝBHè'DcÝcߨåÔu\UããT_Áº=Ê3ñ òµB|;U²/ÛùµôUTc=¸Þ+0¹²/+¢/£X7öe2NSZP7ÓTæò2̬è<\6"ËNÃ=ÝûViöLú4Ë£,¸Ì^&o1~æ²lcé (>/@ÇiÃX÷½ËôrÒ¨éýýȳF8f¥= ¢ë¯¼½õs8@_Aòw´C·æ}W ÒkÚTa¹ÓEßóx Aªb¤34â;ÈJm¨>Jéú°qG_É®Øå^ÔV^uÙè¡ý{Xòíxë~ñz+彪[1 +M²'ïàÜ£Øä:Âsw¶b)iGgwFð¬ CWªÛ¡²B_èèa ]¡gµ³ãìðßGFàé?£)½ÿt¤þ+<KåD«çîS$ϼy9KuÆI;x=7>õÜb<Jѵ y! +óGä;Ê.íg·J 3'¼2´c¬%}+d {¨cÅ+)C7¦cÌê\¼JÒ¶ìúý®iF~Äs×4ãÃ\_Áò̧å'O0¢ô@r@G¨SYX/ å{6Bs0/÷ôÿÃyµ^H±ËÅ+{D)$çüÔð4v°¦`hH'Éá6a<©7ýÉ8Ôyg +ÌIîÜKT�sy¦ÄÄôp"[V/à%Xdp!¯ªWjHG÷`Óð%ÑËÑ÷Ó¥Aì8 q°àÈöVþàÏi £ô½°+W+'Ï\ùò- ÅóX»ý¼~ÛX_§]f¿lde[õc§ñ £ä|ÀÁ <áÈÄ-ÁîÉ:ä({~´ ¥ý}&:¿ÏQv8ePe.ÌÞÚà[.LN¼Ðtvê¼<ÓÀa¼`ÖÉsf¤ÂÀ9N_«¡çï;=ܣà ¬UåD=䫿mã¼/VÀxT?k>¤tx© +Õ·ö ÈèÔ~ÓöeÎÔxZ#ÔËtê»é>OÀÑ4Á 88æóà XùagÜñV¼`}T¡é}¸ zJ²sÜ+VH ¬Xdµ]u' ¿Ì²'7ÀoÊ´¤¯ r<´ßÙÆü äÇôÜíEGïüª¹78tD÷ISb~Ñ Xï#úÔµ®AG#Ó¯Kç L`uJ�z2ÚÀ +ÞÊuÅÐÛ [õagèmát@gÞ î ü¨ë {ûçÜÒ¿» à 2äBÒSDRê÷ª#ìÞU )A#ÐÃ`ÿI8Юzá�½ðlUç0¢7%3ÖB½®qî£jq?)«ñúé +®DV:x¤ YT7òI~$eVßÝ6=qí¶©ç8{ÖbÁ.×MÈ62ñeú«øì8k×MÇY¾ÐÃÑ/gT&:éî Ãgvú$ 9þï_?P[y.øò¶LéåY?°Nà�åã(Ú8yPøXòq½þöKí ÜA-o³æÍTn$ùç]/þ§._ïÎÛÊa±vú IÌwû'Hÿô:lz`ÌLsþÞ%[[c³ã4O$>ÖKýÐöþÑË6<%á,9_ÖôVÏ/k2ø¨ÝÀú=UX'`8iõäÙMjX´ðn @GH¬èEú}f½=àì9pr%d{Öé ÷W P°|F[à¸q5p À±t½Á9W¬úuÇ:j ¶³.Ðz^N5`<ñ È¥'1ÔÒËd¶V¢£*#4bÄÒÎ>°>ÛâÆtº!G+Ò¬ýý cte~ä óNÇQ¡�ttg1:Èe= = +Ì:zÆ@ÂêtR£2m&Às #Ó±ú4¡ÎÁYðY,?°KN0ñ4õ(¦vÔÀµWýãq÷`8¸{PVâ@É`DdX>¼áòâúnÎ¥¶iÀ¤2°J^3N| Ê`ÑÜ1U#ÙɢѼwDܧ 93¡`=ù&2Påx©Ó ®Ä×#~ Ô+óòmصÏ^YÿXNK¸_û 3õ--1èHcÝQXSGa=Ö"Ù6öÑÀ0gä =õØËÖ¨p$àÀÊQ¯y.{ÎH`uPÍc èlû0ÁÓY-éýjFzcâ ¯@/lÄü3½ã#Q¯Kx@W¢¶«ÿ�¶Dùî¬ÄUÍr¶ùæ©@¬ºanµùiË2ÔeâÂh1Eúðà_üZz¾§Óc³7âô=ÿ'ZOpúòæµ²ÜÎîQ+hëç<.@päöM@ïi·-Ý`UÁ$@ÞLìiÍy¼£²ÿáfôû®¨ªÿ`H5Ô`hU`H5R�¯mht×6ÔNÃ.t«5~k=ÄÒ ¯mØ÷t&Þt^Ûv*a4¨#AÊqÝ þÀUwÜý°Þ6b%Ìà@»ð\8$x8ÐrèHh9< ü4óT»{n£ÝÑ¥Ò[_vPe[Qñe¢z)"4°+±-Ä ÇczY´èÈh9ä˽ÑÔ!7æeÅPñ�÷@/xô®°1J¾Ý aO¦ç)AO$àV¹AF¨±+&«8k1z,Hê êÅTtIL%ߥÆÕú Ç +ãj2áê~ s¦x¤E-ܰ7é3vE::Õä³Ðh!+ØèÑ)<JN2ö$:Rc*9¦±¦¨£qu+ê´¢Æ!3zå¦×:ÑÅ:"ÄÏ(d° +¸:"`È2BF¶º!Ç;§¼Õ"§Ü/¼Øµ©bÅiìÖÔ +±â÷8ÌX@;$D456/~OþBK ÍO Bȹy{wïwY$8:Â8®/p`lXÚC¥¾½»&Êþ`¹iؾèè +´pÐ÷pEJìèxìÖyò£é`eì@±N;{§OPʵ·l+R{PÎ\QÈáTcîhçxÆ®DOïTCF \£¿/sîçßÏÅô(H;`eo¨ÍXõ,dÈ£Z´ã³Lo¢ +ùCOæ(^qÀ´AæÜÐú=Õw6EúïM< X5§ d =s" ;1ÖZK;-ghÆ!©mÀÊAÓ]{¾X9b×±wûØÊ¥ù;ÂöH¡BJØàI¢cb@Æñ5 ^a ÈõWyv¬'ÆS}l{:Ç\/-k%hz^33þj%z)hÄV ÛqNØ8!jÑ/% ÐûZfxIÌôbXâÉtæ&ºÌø8£VKÚKè +<b«`wýì|¢7ç æJ¨o£1U-B°'A¢öl(Ðéø@ãñ÷QtõÖqÒ*þì»2�ã1MgT'´BÎé{YöóS÷~´ý¼ZV2uj9?ªoåGÙô=Å./¤�äÇ9 æ½H@'çLøº\´7¶¯B¤Ï^Ý÷P©ä3+±Nt=C#r<»V ÓÚaÜU"ìÅ]½BÓ¡¦Ä §íÙ!¸HÇêíºë2¬]tDüá?öDz Ó&à9 çí2ý@@è ØeWÔÏ¢dOB@:Ky{¹?èÌAj_§Efä迳7|'§g_êhi¯];"ä§ØÈ0[\X½=¼?v=îã�>/®:1ÃIáüõ&V¦üÙ»ìIY7¿¬Çüå>r¥:¼HH¤oAEf ØI¹ñÑoF"¼G¥wR»õBG¹$7,C½)dÁ§ÕP)teXèIhó}©Ü)AOä¡À0¬tð8jXéàqHL#s'ìÏîïpÐæ�#sp/|?üÅ6NjÄÖÆúnÿ4ZPLãAk3ÏÖá"·hn¯Ö{þ½0»qøã<#_â(G\8zÛ³õË + á¡,YYX9^¬Ee¾DóM²9½)A!Gú´¸¿9J¤W8°Ò»)#¼Ã½äÍõúÅdÚõjçñúaRÃêËÏëPsç¼ü¼³Ö[¿ëÏëÌõÖïòû:@QòëäþÈ! êHµ{aïRmÝØº"ìUö·Çåûe¼ÞÅ'! ö°sÖú Ët¨ v0ØXAhÏ{ô Ã;0#%v4[2ôA>JÐ +uVâ�éÖM[�¡ï;ÂuX/Ä~ÌÕNN=+¤ h5¤ïé ÅwÔA½/j;ÀéE5¤ÛþbÍï»Ûo6^ U@¾î°jÖ®â¤<¤Êã$Ö¶£Ñ@pT3Z9ê°,°ÓÜÊI Ó, ¾¯^ÀÃxÌøE²ô0 K%Ñ9ê9 ^ÏÖg*`0gOxA*Ü^JØÈÈDʶ =ýñC:R\ ë%ôc;;ëã4l0¢óÜ.8¯ÓÑþ§º-Ðu3ZfF¼"Ærñ@ÐÑhÂg^9ÁÌ^2ÎLuJEÑ9C:Ú'¦òæUP¾l1jÕn@Æ»HÁÔU(CêÏI@è(gÕò2ÃxP&®0yø$É6BãÆnPǸW-80î§îbÖQ{CG#3Ý/(Ä3EÈH)gãË�«%ÅÑò§gÑD½qÍ«µÁx½º6b»KO,X;䯴vãe®·µ×ñò9jµ¬]ñ÷XI/ÔËkéÈe¼ü&¡AÜk}�-@z^UAr$^Þ´SÉXI éXNÕÙÞ+±lÖC«o¬ÎúPàï;0vôûc'*`yOè=Å=;¦Z¼@:@nhû ¼,Àr¯Hûä6Ò ët{¥£Üs±äP ÜM¸z*Īfö\oû4þ^5ú98¹ÈônÛÆ{9Öí[ÆôÚAºtôÙþ/ßÓOQÓaÂg¢¶Î]íÒcûýç2Ç}{ÐÛiæ<¨U�Vö² v ö>@½àE¨·Ó´K}wÛ«ná~ß+9V¢J@/ÚXñôzv¬sÛ¦ê�öD±mu=?É¢èØIíX®ZÚ²'Ò=§$ÚBxKA$ðÀ}mçxþ®§ -v°´Ïh(aãÑÈü¸ú£ïàÍ(Müw@¿-®Ýû*@¬Ø®Fã4Á-ã4Z<Á_à=Щ[ªÄä&Â=tòéÛ$"=±ñÿôÍñA êmY ÉE!/sî\´í0¥÷ͦzÉÁ' Eö"¥'Aþ¢E³Þý>ìNv�ÆCúEWÂá~Íó2ýdB6ìx¡à Âë_ëþùH_F>im;»á¾Ý¦kíy +Qn^Î. #*½hÂAAÎ0ª¿j½¹òþ¤æ >qD&Ç´yÆPîw±_wj<ØïÂÄt}1áªåt~·ô¾tQ|÷ÎèqZ¦òì8-A'èu+Èd±ÀÊÁP<Îô²`G$vÏcvÛ9w:Ì=#âý¼þÊn;/³oK7¼zàòuÚ O@§1û)^e2ÛQ>w9ÜH[D$"à¿§ãYú}ÞqTc¼ +ð»Jh»Ê ʬ¿`sÒ0C³G®í¼Aï´þ4>&}°Ôoú쪳çE¨ +b'¨« tc»Ö +@G&M 87;ö!ç<ÐufpÃUFÏö¦£Ãü9r.rx¨|7I[HÑ8h"bÑ"äî®ÃsÀã@' .Æë ìG#Åe�1:]�±æ8@\P,rÙ ýÎ:ôNèNÐi.ÒX§¹h�q/¦wÔÎcGû@äu?²ã³£ft¼I£ñ¨}`Õ>ÀÓ@3ð<§Ñ#:~V]1x±+ÖÛÂxÈ1ÃÈñgÅppi9À&ê�ïu@çDy~ÕµC¼÷ØQ:cí{!i¯ûa_�ZHJ¢&ïðÝ'V¸³KVÈ?�w@ï}G"29ÈÐ9ú[ÿÃ^ZBu:2ʪ£ó2á@¯ÿaß®·ÔøÍÛõrC;qØ%5.r<R¦"ªXÀ9¦.Û³ �5 îIhÀ]e`XÐ2«É"/ì±(DñâÈÎhÇ䳤<Èfw¾y<Í1q§J©ÓÉÌiØä1â4«ËÞ4vѦZÈ»|¸¤ÑÞ´ôH1¾ ×'à�Úc-Æ>O@/¦NXäçóZ÷MKG¼çÆë:Pðèu¬EÓÞ4!'ä¨G¯m§z:Àq^èF<üðpô-¬íóú[H°©n¿/g%;;ü;(¿¸ÇdDzÑEÄ~LIíH|âÈä´!Í£~¤wͰSJ|j;Ì/Póy¼ü´!ÅÃU3&Hï%¨#½3Þ¢`Á^O=¡£ZtT ªîë i'¼Á³D/~Ú;>9KÒW ß&ì +åG¸©gc£¾ø³Y:¨"'ôJÚô0 I0¤ÓóÆü4º ç:J C:G5xÑÀò4G5/aPùúÌ +ñ4¦åèØéåè+ÜùiÚPHÞRnz¶<i¸+Ûûo\?¿l¡´ñ) ¯¤\?k @¯UfÖô2TÛAݨ(¥!Íý³}`Ö>@˹Ê+<¼A$:yÈàTÝ1Jû#2GËΤ(ª!: ³AL¯bË+<õÜP<¤ÒæW<&%̼¯ù{·£eÒÞÔ>ðÙ2)*=êb�IÐ!ûÀ¢}õéè3»Ïȱ%-Ú.°V)¤÷Ó,gFF£x¯_<Ûi|þyý¥´á3çF8_Ãé}·ÕKÛW\¹~ÿM^¾ +Ö¯lU ÏÓO:gU#ç¯cÔ\ä'7 +Ôn@p²a "ÔÉ"T½ÓÐóx}q¢óû¼½�² g{»@{.@§vÆG°P ³ï© ¼wÇ>0@'æhµ·!}»ñW`8äÆwøíÆSݵÌÚâû8Zf5ÆQì%Å8erEÊôØQ§ 6!g¬?-ª'èìwcÆø� sf¸�ý¡páts*¤/�FCz£¸háå¿ZÍ |¯ÓÆæz9m£×¿¨ |¦M"£èà y$ ñF<H +'à((J,n¤ã àCDÅÒs{cl¨@÷ùúg*0¦ÓÂgÈÔ1 D{E±q)È&®bPÆR³ô©¤ÜÖ¥[)_mó°a=f`ÀºëÕ"c1è +ôß((Ô7þ4Ð<î ÈíaNØé@)NïtîíÀA°ñ¬¬g ¢¡HkÁÜ}-ã¨N×ÂH:çÃ2?ÊO3©tþÔv6 opÐa@Þqn|1i:Áè[¡ZU¬Øè�ýÄ*ñq$7ÚQD|8X' +W¿Seù_së6nÝWxúlÏrndiüڲܯ`¸«kF¿ïhÄ' K$�Gv¢¶NûVàáæÚP0Á è¼®VÆv¾vÆË=J¡ëJhyAW ÙxøûrWkÄÚ Uâ[À~ò¢ÈM$sÂåºmxBÄ";tq' =v�AtE;ÉÐQE5ê"¥ Ð-°á-Èk;;¿ü'¥n¡ÒÆ%v89Þ¹ÞÉñ+*q'ǧؾ/í°ëèЩé^ø}fÇ*Z5_J·`Õ|9J±êÈAË9Á²ÖÉ´Ü_H+ôÄQॵ»ã¥ ÏmSÂF¤ãHvÄ jõ;b#×µ 6.JØê©¥f%g7 ·µN3 +å.º04òÑ$-bDB a-ÒiÆNìÊtn¢i1Ý#½û29»Ïhôª^è/ïavè@@@ðÁ¨Äóc¾©-'Læ(Tl@m? `ÝHQ@á3ÜC*.ÐïP1/ê%?Àù}¡XõüÐI~ª!ôÅ3\áòÐÅ ê0I¯ui^ë¹i&']ËFP +×WÐø{"äÉHú#£UºÒæJé +ÔBâÆÅúA3û}§Â÷Óá8Àõ×ĨÖ4gôó2Îk·EÁKS_qv[ühÿ° K_ïfÖñsê M@? Z;×Þv¹3:[@QRKL/ÛÞ4¨½g]äè22pap dd�àäÚÜ+óëª$ù]úÿå¾j¸BlF~QJ&ï±GiëÁòmQ³÷é�ùN¦Ó-ã(Ú¼«× -a=ñÞI|àNÄ�£¾ú>/aÕ½$oDÁvÕR× )²ãö>w&ÃT îïØ2¿.¶¬1bo$# 1ÁMÔyr3¾à¨¬F'§tÇzmüc�^ÚÕÂb+'¼8¡µ]lð7GÀ|ÙN@!ù2F*·×F#W¤7GÞêËðíÅäEB\alÉ¢Ö|$CÀÛ¸ìTÝ«¥S2NÇ|ÀÁ8Ptêa¾ÄS¡3Óë³K{ ß]¦Æ×(<î@î½#ó%ÃMÑu$ÐÜ{âæÐi¬ÙEÜG¬´%Q ÈåßN4Ñ* ô¢È N@Gº¦À$ÏÓJ,jvÈKe +HØõtÍ bÄE +×èÍùRç3¬tÎç'ÊXq2FôÎÄÉÞ8¯HÌé+´d9}«¯u. #ËfÉv2Îi)îLKÀ,;ÓÖSoÐXn4V c½«aÔ»¶¨®«867Èy:÷!3T{.u¯'¨öÂà<\®d1<Ï^/d±Úìóx¶eôû²Ô J_/c±âì=ª*cit˰ hñè»??O@¾9 Nྠ1Æ{ ¿Ú ±:k{ÀÇà 8«-éX! ýÚCO ÿìÐqï½JÄBè½Å¯©±ÃO¦3ÅNP6_aªóPïF÷ÐAµPv% .î»VF¨Æò[Ðx(|}ÖêË;ZÀ ¡+ÃX/¿ºçÝèô´._$èhîu@¿vYðôòð%z¡#Cò¸ÂPï ¸A#¸Gì0håᣧQ4_L!&SéDçþúðr&VëïÍRB:(UòT°ÛÞl>ÀîûµÍUã èHi#sö¼òÜÀæn`L´pÖ<!ÿ}hòQ1NÓf;ßñÛ8×opn©' ;2X°½îlÎ&¥õÁvÜü]>à(-®ïç/pढ¨ÐQZ}©£´8jjD'}©£´8©~Ç1¡^Z4G@K3ÜB ¡:ÆÍ(Îj¬H-ßîfß:<ÅT¤ñòn8Gy7juÎæe:g3Æ åF,8s9ªÎ0¿vÜÚm¦Ò«'-¨äL&ð8ÙZK£jz×`|·Ýó�µº�¢&�Ô'»únjËNOíqÉPVPMð<ÞµÃ×Ùê½ýåç íV\Ðôuo¥ßçµÕè÷%Øò? @T¨ý²ª¯H{w9RVàê+PÞ!ÿ�§¾ÝBËôýúRmØCaê£FнPM æÁ£Ú¡Öì+¨ã×¹þªÅ¨y¶2#GI.vdzIîÍØQ'wôP} ñA&Äb,,¢ +0=©®áìH-Õ¬.û"C¦ÎX t¶hfÌ;â èT<3ÚL=ÃÃ÷3Àh_¾e}äHâ +% ?Xñièàaç¹Î´ øÔtÔD_¶@o>õ¶r:sYRó Ý~Vd0(spá$5` ÅÓ¬0¤rÀ¼0¢rùë*4i¯é®ªäe +¨S~¯ZDÊanlrb6ñ4¦+Ø4GÌ9X #vp° £ÈA/æ�Ç4AA ¢NÏâ©3K>`8¤ã£$ÓñQ1ëqU«@^LWr½§]Ù´â3άuuÖÐ 0kø¯&Cz^Mýªj}ÓF=K zr½MàdlÁÊÉ´3 àV.*0µÕÝ@Ï©"FT�$Ô Hײ{L3Õ+ÿËp9µê4ÜQ¶bÌe¼ÜöÂò©Ëx ðt|sBðp}£ pÐÕ7{éÒÕtÎLð¼ù®q _Æ;¸ÆáïëLXej yÇ8IDãõ®ÏumhK= líµÓûe:[ûà!ÌáÈ@XLO[¢N¶¾b7 ûî¡~Ó´Â-Ð`Ã[ c¿|@~RÑ@v÷ÚxÍ +8Æ·P_@ÐñÙøpbD[ Çã{SI%à;`NÈ{È[2våBRUæT>p/bEpù±'ÉEI©%èlñ3ÔBýIÆÌ@?Ìâý\B úb¹ü/®Ðt lÐédS#M0kçöZxI x1<âGgÅ¡^Íàê LNÊRÓλ¢I×Â5!¡ã,KÐyÊg|8ºRæGqZ`Z"Gå©E¨æÆÂ~Ëw ï²»õæÉ·+Cé5-ä·Z^ÂÊ¡êtAÌÍé #ôãP¦ÆÌ0·vPc椺òï+ÙÃvMÐ'ø=´c}¨1) ÉË*9"º"LrvqD¨`ÁJ¬ëö¤:uPG³äXc½¬ÀÜØñ$¦X)û0«â(Ì]¡^Z¢³vqþÁ³¤áügIÁ(¥ðç¯Óæ$ÉÕ²ïLÁ#å ñ:íL½§8×ñúÄù2\ÆÌ¼|éP0¶Ás§\Y= ÷ܺHÿ¶û4-�T¢÷:ö$ÀIcV¸G%zÐ>À°¡½þÎ>pÇî,ß +Yó+øòûÉóã=ÿÓx¥ ò]~^¯5ªüËïë ÿ' kEãç èwíUÑ�Wa(Ý _=×8¡ßw\õÓ~O øEÜ1üØMU=DJèÝT'0#Pò!»hp°&! èí¢ª³ü)ëg÷\Ðt ØÐü]×LP õê ÀQvÖÞrtÜ ÅÇí$îî�A·vpÊ%(@aë Gå´¾ðîÅèKà÷côÎ^'2ð¢ñÞNÁR;aÒ1Ø+a'[äÇyC^¤"}ÝÁd:{ï È=YÁØA6õ®w¥ö^8üâ¢9êVhºÁpСDôÄú{(ÊÁD4àôüð(Ò)°#Ó "> +®ÃVÏV¨\Ô$- eü}{GÞÃN+ÐùûÝ_8Ù5Nñ¼øKí0ãKð÷e#6rÿ¾ °;"LèOVÒèF°á£ÈÑMtº +lø(ÒYÑ'<Ç9iÙ8^׿8!Gày OS½|ÝõBÞ`@ÌmùEY>§GɹµFr3~ÑÕH¿hÅµí¢¨×âô>· ®ÞÓà Nï:·|^Ñ긱þØq×FܱÌÄ;¾¹ÞiÒ»ø²òåûì Þ �¢t îþ¤u:=õ9ttrO³¢á2åÌ~ÝAåj +xïààò弬½8×ajÃg.Ðébì4?O@ç«1ú2Î$àë9p^N·õ¨¶½gèKà +mï¿Ù4¼ð Jû@Jz#΢í!Ýï¡>y¶Sö`3â`ïº^"{k±| í~èÉdCØqG{Öw¥â Ðë Mù¬ ú¨f(µY/4TùÓrcý8 ¨7j+ (ð<ÔÉígQ8kNY³àY.CÝ_$¼#Ò³Q*zy¸¿(@Z¨ðÔlÐô'ÖÌuÔ$âôzxTéõðºàèípĸÒ5O4èö'ö°<tæ {"½x"w+Ö~\c¢ÖÆD;\û$ªK+´ùö>Põg-¶"¹½]OJðÑñ~¬BòÍkãíé[!ã^îýðÍkNóåOn^3ödúÍkÆé¡áç¬ÇéÕ!'ÞIZ<ÁqÖéQ~Ý{ºù5CIµüXu×`ÖQGaDåÀya@åÁy7xéÕä´äða,'·§ðzxß;`Zt9aIêaJàaêævCó7*ÒÓx=3ºü¼|ÙEÃy¼îÅíEËyúzÌ ý¾£Òà<^/Dh¼§Ø +â;(Óíyãq_6@@ÐË©Ò GûÊ~ß<K@`Å'pbxq¼W³^Ìm@_À~ßsUaùÈè¬P�º +nØêmxE/ÄÙ¡Ôu¸Uó' s_5Îóxù¶¬»wÝp¡í¹A%h:6�<ØXЩñíMÂeB0k�k|tGâä¤Úúö·�GãÑØOãzã}¯È¶Z\Àç}*À|ÒÊØâ:VI±#ÒÍxíáµDìXõîSMJO@Ý7¯×þ/ív5=Y®Zhå¸gAÈQÎðY"ÄV}ô4MØé´êO@.³¨+c P±ëõ¸³SÎÈî"¤øâ_§LYõÈÐ9:\XÒ't4'Ø´´Ã"%öÐrOÐË ÕsiN +ÉõOöét TrL³q|ª°«°ª^È:c?¦WdÏCª,ú°ÂÃPo ã¹óc^q8qÓA^àPbë]95ÂpÂM^´ÚNHÈñÑgGQP ôõCxÇAÔ_örl ÅÕñ3/¿p³¤â2^ºèÚ`O_4tá¾ÕúôûzN±áåË¥K aíË CÓ*-·ßLpòek«¤íï�+¥Å*¨dqE/[Cª ïË]¶µ@éCFVà(§ÎhúI¸wßT$HuÀ^*÷t´E�/åÝ47B»_.µUÏeõîÐz*iEGÈFúpù¾k$ìV¿" è¡]]àà&hEÐY#Z§'£3i~a¾¢7>u¶cÔá¼è4q ÝY�¯Ä Ï<Qz»+` ´Øå¬"bW¨SÌÏÆÙкÜâý¢Ã-~ÞCDJf°¢Ó@¯ÀH¾'¬rq¨zkÀ!Þ»0ja19#< õÈwP¯Lø,ãòæE d'÷Et$]x4®Nóü(7J^.8ªÓE°b_¦ßw`Oâ`nÀÐõpDNï´#B0ªQ +¶,ZTCFè<þ±7ÒYÒ³#9èÊSæèö`Ôäò,GßÑæG9zæèz3àDG5£s´ZºôÚýWÑuéU4 æ (Cm2TëÙK+-Ú±NÏÛHº:ÈàféüÜ G2ÁÍÓ÷üÂÁpÇÕÄ^¶Áµ©M^vëCzfçÙëôìV¿2 +[,q¾ìVÝ>'Îðra¸z5lÀ�Ê.++å4Æ.ÝÈ Ï@ôÒ¬%¶�} j¾|@gÎH/î3´8+.x:Òj:.p`ÅhX1qzY<ö2N¸cÍä±®æ¦xxhT}Yîº"ÓÙ½]ç,á´X uÖNOÇ=øGxé{DWÖm 9r ½J{äx¶s 訤æU[¡8+°äî[ ¯îD5¼&ô$rÏV=uP Z B׸2ávzv ¦ITbÞÊn¡þb?,9Z ³Z m@¾7LÐ)¿oã±+w4¢ ßWdmèø¢§8?'Ò¬ ´"x*Én´õ¡ìÇ3ìýpºGFtì¸E÷ÒcÚpxXU´æ(ÄÐè õû!áöÞH#*ÈzÙ9±Éiì´ä¼wgH9 Î\°#Ñ[yâäT¾½om$=a&¹©~×±B,6 +@·ÑÒß'PØJ{±Éñc÷ÅÙ¹ðÊËnì åx¢àxJç½ð4t°FàTgÛ£®áÜ£f\HD>EXqînD5'9w¤Ö5'¹ü¼VÚÞpfó2\¾0®¯,»§ðZmÃxù}½1Àå;Pê GMþ h<ôÎõY¨ëDOcÖÌÜØ~ôªúUXØAc8:']&à('5æÔÂH <eý©À`÷ª°<5ãzÛÖ)ë_m»W Y§¬¿VD÷Ìw±f¨#K¯/AòûÐ9~? бððÄÍXés<I¶ú!=§5bá®órf¸ º +ÎUp'ÞqÁg©^SC!ÏEÏúPÐ8¸W6$AO ãS9H>Le:#Õ!g{:D?ÁhXÞgÇw ÆÓuù¡L8qtp\À¬ý>£aKó +Ã)Ù VÁUSA¦uÑâAÎÉṳ̂§^$ãXD.=Ë<ôòCI íZNÂ5pÊ +¸¨«ë£Àª c-müU #Ö a>tBØ:b½ñ ±"dÑ +)@q%G·¬C¬.×Òó ++Wá +¢^ÈÂCÛ`@'{¢2ÁÓX¯)-ê¦ÖOKÖY�¯CÖBJ*Â$2Àr°ùíÁýHb[Û&]ËFÌ:Ã)8[Ðp9¯µçáJ¬Ó÷Ï{·%qù¬IßQÄmU¼½ P`ÉòµÇKÎàÙ.@nST ùy§wU~ # J:dø(ÒxËÆ>�÷@vâa: ¿®3VB}kQd5¼£NÄJx{^þþªù@"öqoP� +^<wo_«¬{*HÎGÕàö@±¹X$æå³H±äϾcÉÓP,y¿}¤ù3 +Èëáy¹%4¯ÔqZ¯ØeºÍð·ì«ç-|_1Lè+¨woFøo'Ùe·8è.úD°|Làu-ù6þ&�úûi~7²óþÀkà}ygáuXÏj¶ÏÈ eT¯C}(±k®óxÇU}ãu?¾¡éßÝ8C%6ôëPÂ_~_ÆfÛ]{gþ<«çñò Mpûôv×~ÙùÆ:DôÓ *°§ð*_Ö'iéø¢ª�ë~ßõ é£KJ-îïu¸ww¸ +@W¡ë°Lvj§§ëd*ÔvÕ~ùÑDèoòöð÷Xxdl2BO2×Ç%äw$QtD¼Éæx ôû®&ð,£lÊS Kp~(Aè%7Co¡ÔØèÏÑVhEòE]ÜòqQwdÝ^cuWÀ¯ë¡èoy&ìõëò ô!ôz |ÂPïÐ�#2tÑwoòn "8 â½nvùx9²wZ{ú¤c=%1ê°aOjMup[àèP©\?Íræ2ìÇäÃ<htx2ÁÌñ$d×\0-ÕDnÚÒk eÈÈ]s@V¬'\`41lõ£¡Ñùu ðåÇîn(è´ðNkûí}?¯8P3FåHïÑ3CoÛü,'ÈÐ9ssl8 ËÐ9*.VVÉO»GÆhH!¾å�É3vDúU5I,õ»rìÉÐkïyË£àa"]Tõ +¦DeìÆ¸ÀÔT(özø,¢´çd}V+¼¿öa$'Yjíài¸ôäðãSÆÎ6lBÓ± ý¼£^¡AÌ!Ë´®üYb´Ê,ËÎÐAîXÏ¡óxýA[,è÷õçX j~WÐúTC!£ xÞÕ.Æ= rΰ ©�@)âÆ% _´XJ6ºËÇë3tS¬¡Ü7Ä'°Á èeGÐê§õaî/U|àè~lC*à×&ètpm*ÚIÆAvlzÍGÐÑIz{äG¬CH× +8HÌÐÃÚ°êqÖ#ÞÊm£=ZVø:Ç· +4d²¬à=ЯzfÊeèÖ"¤O°{ìIä2ô¸`5Ö úROéÐZ1ÖÓt5â¨Ô±B_èzâXrH³Òö,ïâÍ T¦0ØÔ$Óè¤Y Û.B1¬ä½ ñy&¿Òoûú¹»*]Á¬¶ì~Z¦ªóØ+ýõ_´H CýÖ6q!àº<)ÖñnÔÏBû<¡=Åy±+Ôq^:�£BG`spÛÛÀá ¤ülY¬y;k5$!ÈÏë\ÄÀ.�uzvÅ>OÅù¹LCk¼mBTLzÄØUÁ(̱t´Ó; Kp^@F¹·§,$Ýû(!é=¨>v°LèI'-Ã0£þ°1 ý@£zôÃTVôuÓîQ§½É^8R÷`×y¸¬Á+üu¹êÁ*ÑOÃiáSçñM]§÷uöNÜYû�¹Jâ§±U,Ç;hëI{z}¸¯®Zë,;ÀAzÐ8.jÒ@©!@íküþÀòåÙñ.2{À® àê¯fdÃ|F:ì±"è=¥äÐ:úfZ#m¿±Þ&6³è=¶£ãây:4UfmC¦j:xïxQó7=Õ^' 7¯÷ý °ñP·½õaåer½=¿×=qB�¸Çy~åÔ¹×_U¤BWUIÐóªªâZ=¢+±éJXa©a+Zðt+Z{®k<xý~c»Â=H[¨®õø7G÷Àu÷?ñÆ{ _¶èId>BOæè8izúvDÉôÞô¾ü{ +ÎîðWAøú« ÈWAÐôÛ>è\¯ é[°â ÈÎØ.ëqÜÔÓ@ôS´Þógì²;ðP\Ö$GOcùÎ:ÅgZ #´_dz2}ÈG5ZXKïú*ÓÁ×z¤Ù59êèÔÈ -0¢ÐÃÂDb9,´w5½= \¸+6dýyà÷@ÞDkRÔý� ¹¡/rÜÔTªïÉïÃìL/DÌ89qX«3&ôÇ=E ßSdu� òPÁ¸º�¡ò\Á£Dàg9ü¨½ªõ£CDJ@eWeø0A¶3+G9r´Óxª:· LPô'!ê£ÃQDXÎ7]£=i©+Îõ{`¨0ïy¼.ÎÃõ² ÏÀí(½Ó ®]öf{µ÷.º®[çàßD{¯sNY¤Ë¤SNÀÁ¿¥ýãø,RGBÛðÙÞ(´¡ÈÙÝSõ¶ã³hu÷k÷\£æf¨ºÍë#nèîeu|ºÒwûOãlêI°ÎöV@·`Ã:ìà|ÂV$_¶Æ úQÙ6t¶çï7}öýü¨;2{2j1¢MÔ{X¤ËxùÆ?æô¾ñ¿zru+ka�·P.ûJÐñ;}f8`_ÉQx{Åf¬oá]a4ä NÓ³X0MÏÁ4#¦Ï ¦©îvîw]+D·l*áý:]AÑ":ª8Ñ9¯fÒêñ1º´h JXION¬Ç#ún( r`ËÞ(»Ç+<½~:¤Á¬ÄÆky!Fq^(_TæÎB0IÒ*Ìp:ßÎdPËú `ÆI.N@×áO@xlEâYÖ F¢©Ma3Ö½Isd¼û»°ÎGt¥öuD%A � Þ£76l,Ë× +ÌåºÃ&çãR§ÿ:^FWVôûz@¹¢G +t§Ô£GöyxLr ðW/?â¦Àçùëaìò<^g« p¼Î'nè´' Wo&¨�îç\L2aízàãáÈçð¾Ðy¼ÎÖ3c `; j»a;iÝC[èx ±"ôÔñ<8ììÑíl<tCÖÙ6c½uö¤Y¥¨¶<wPT¸úC±'wÀð Ó+¡#r4ÏYò¼öJÐÓ~£ýºæ )¾ /h[ w^Þû¯hB¯ÁØé¥+²BG¥AL?M#tdëÒ£ðÆSÂÃ�' cK~Ðo6/@¯Mªaµ£Xtp +;2 ÍX73·FcLöðÇMSøú(è3(ø4#4k"àÕ«E(Ä=~M°ÀD/^ +×۬Р+õ¶8-¼ÍÿTÚb GN0餸Rlg; ·=Í01t¼ÄÈA ëÉ #ÓozòËÝSqf:À¦¶9k©-/M¬àN@/ýáê¥3¶½=öBzá%Ħ/Ç<F¼nró¼á³Xh[éiG_Å¥Þ?>h[HK_±¸D¼ ÚS `äø.ö"ºD¶Ü¬ii9ÓÌÈ~ÜNòò=Q=MðçehcE?³RÒò3£éë»§zU\ƨ¶Nýº~¡üý�6å#ÅMUUg`Ôß"$pNÀñ¾=aÖëí伤"Upª|OVuìØCVκ$BýÌúþ^·@GégèÁ¤ z!´°=ðïü>Gh¡�îfÈ#>T }ðN¬ÄzéØà¨þ°ÐѱÚZ¥·¼g'Ô!¹¶=ÏïKgÕÖý²úECLÒ-È¢r:2F¼ºrChÑi®g´3þºnãu?Ra×ëþù�¡rp6¨�C."îgN =îï8 +ìMÝ8ÓáI&·ikønç$¤¿àÈñt£èçdfôx2ÙEUǨp4¥ GSpôjÑqj,�½áæÝ¸ÞpsÑÈnb7¬ÃÛ+<GäªD1/À3?ÜÐÝQ?'(½üc:¶G1Â~P7±ÔxaNü ËvxXÊxÃOí(dYé^«d¥^Ðï$àÚïßð³kô@[úÙéÑIW¬C2 uÆèÖýÝÜÑp¦`GvSBV?¹S¼oiNãa%ëø©92ÎÃ=©ì +uGTp@(¡Ñx_ 4yT0«u÷æ3±^¼ñúQ¶¢×ØÛMñeöòþYÅKgötø" çõ¿×ßvêó÷<Ú5z³øcø¶íþ4Ö ,D¸zõgDêçaîLPuzDè(Á¶ì²�ù D«`¾|@æé +mô6¼¢«åhPrDWgèôP`¯Rì ÇÄÝ·Cü£Ôg g{Þlì;+û·lì¬voxi!&à4ØÜá§àÌ/íãËH2dý¹b¬C_õm.:Ëjz2¤uÔ©ÞSäïùÔï{°¼«év +YÓ%µ$I<Í庥H|A2kañy O`Ñt^ c¼+6äÞàt +Û Tèu1g`PãxÑPæÞ8LϽ6hfÀ˱¨áÔXrjÞ¹v¨Õ÷"kCCrñâMÔ +´$Ä´@d8ÃÈÊÓnz»ÅM@¿pK87ùGNÎH1v%òiÂé^ ó3#ÈS|XfèÊôo/ã}à5 wļfcJ8G¶z×ÕôoA*¢pT_Lêx%ñC73JñhÑÜ� ½1íHbåsÔò;ÎÕ aD´iêÝ^/bTÔ±Ôo+`HæÑ gâ´ZPÊÇk G&<HL<z´BâÁ¤D²8 +·GI#±<H3)uu°¤(McÇ]Ç?#.ð÷ååoA\>>C^)ÑûIqì±çDçé;ºûLhý MÀÓ¯1Iò£¬\ ?D.ÀÒFQ�¥°Ë3ÑÙAP0ÆH°CA¿ï° ½Ë¢Æ +@ åRè6´h;@Aê±, 9Q +lPu² þ¾þ:|F¬ßì,ï8ò| +ÜãÈ.Ä|^οi)º$5ÐØ¡cß4ܳî÷÷hsøØAýób+0#qdrb«¾|@¸'¨\Æ×±ÆÓ±@;Ð[l¤]ÐãªÁÃ!¤d^àià�=t)+£KÐp"\è D¸ð÷õ"NPy8Tb½3h¤ø8Õ8#<MôRðôpÓ3h<¼£&pD¦»ESA¯dt»çź,½ÓÃã#g·¥;ï;8Gû¦Ëï·¥;¯Iðó¶tÓ{Ämè(Ô/K[´^DÉY"ða®PËU0-ÓH#Üù7c/â¨CF¨/ ncÃj^Ȱ] Ø¡(ÐëÐæÝ¨n/ÐôZüEÌÌy/T!ù5B¶7ò= [¸f5*â>ºDÐU5±ãðî³`¤¨Ñ» høðy: pXE|ÁËð÷õor0ÅÑå'~¼¡Ë±äa°%Ùp#3_j$¼$Î\Îpö²³KêУB'Øô˹`û?OA»¢Lì! ù9(t#Ö½?E R`ÍjeÂ÷$Þ í ämd-ÎÐ< ª2Vaùk踣KÚÃ=µ=¤V4#8¬hAë÷à뢣^ÌÁ¤½aÔy7èôÒQtBË#Gæh/4¤Âbe£?/@§¼:ª°$ÈP:GtCúëö ÷Nâ.4ÜUÆ <Ìð÷å80ÎÐn¤Æó +UPà¢å¢2|´K²°|_)À9q4!£:þÙ}Gt¤\mÂá«äôÎ:Ç¢VþÜ?K#GmÞE(Eyt #s4m,ýuiþX·E<ØEa«^~ËBV~ÕP~\Vx ëlâVv4Ó%ìôºKR ôyë bk2iXx2iXn¨sPp.ja9¨±/Õ%ÕêÅ¿Øé:¤Óuþy4¨mÅÇ!ÍP5"!Xajêà1rq¯p±Þ©B\`´Ï©}Þ졼"´ñÐ4ø0Ôi"â3´$u±´<Ó!+@~·#`Èçár<¸ÎÒ¯³s̰ÓpMñö½ÎÓ!«>O_'I°öNùë$ ' ß$@ºðt³¿Ëdl¦aÄ£+°æÞ +(¼Ã# +ZP(hkíCÖ}¾'@NH'!^ðv�û�òaRýl%²^+eØé×z%¾ÜÅ?lûßþø××½<ñÔþãß¾ün¸OúXóûzmÉùÇöõåIó¸Ö¬Ãkv¾hÆ+ ß]÷ñxíÃ|Ú*Th¤´»îãÜ; ]¯ÃgixøÈµh' ße·®_bÇt?5ïÞ±x»Ü;ÿþ&ow¼ôîã§üIt<ñ5n=üîí÷_µ,¿ßaÇE~Âõºþx¾çõ/Bè|l¿½¹&m<ÔÁ¯7ÛyÏð÷"·½cü~ ò_¿g!l¬¿_Ëå7CóûoN?GÂìg§&YNºØàóëüøûúþ-ÚþÑ߯Î÷bÿBØcã5ý 3_mºQÇUþuÿÌ}¯åÏf;Ùÿ éß}ÿÙüíR²7¦ÿqBò¿ëÿ}ý6Î_¶¿Xg¿ýÕõUòLþöàeÔþìJ´ï°þGè¿ýaý}ëûoòûУøè_FöXZñùa|Nýóìòÿû)ÐèöSàüuûÁçðÞÊÆCûÏO{éÓÓ_*?|~ÈþÓîc{þÊ}è?V-þ¢ú·=ôÈÿ;â4©ñÖ4AýÏo»Êí§/ØþSþCö?)¢øGñ?Gþ`7Áûs±Ïó«.äÿñcÂþ__RÒìéoJZüÁô7e ¿÷÷uýðüXÅ5Ñßâ»þÒ':/ÿÿοÿª>ÿõ?ýâÂðãÿöÓò±û±ç~õ¿üÃÆíõµòÚô_þæÇßý?ýøýï~ýÛ?þõ·ÿðãÿñ~üç_þôÿûëßþæÇÿú?þù_þÝïÿãW÷ë_ýýúøñ¯¿ûí¿ÿö/?ÿø/?þãçÿó~ñ¿ýío?ÿÇïþúñÇßþü_½ìàßþò?ÿø~ñÝÇ}üÇÏøýßÿøåÿþé¿ýò5»ÿÒ(çâ +endstream +endobj +500 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1076 0 R +/Name /Im467 +/Width 18 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-±@@ÑßÝnÔ ¼PIW`3m)E +ãÍc§;èÂu~MÁ{fȨBký_»Æµ-³<x�O +endstream +endobj +501 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1077 0 R +/Name /Im468 +/Width 27 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xEÎÍ 0á·xèѺÐÅÄÖÍ:#ôè¡¿¨ á9ä$Êdhy¿Hru$§ +ê½6N¬½<zÙi>µÏáÙÄ~ÍÈíÒìêwîëh¾³r:ñ1@ +endstream +endobj +502 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1078 0 R +/Name /Im469 +/Width 40 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xα 0ÑCîÈHY)kÑ MX Q!%ÂäGj\\gûAÞ{ÌO#ºr +NçÝ Þ@ +;ĸ= iybùuüOÚv[,½ÑA FY&©fùJÚ&óRõNnÚä3E +endstream +endobj +503 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1079 0 R +/Name /Im470 +/Width 29 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}̱ 0CQG)Ò ²F +¤[)Àf0 +#PÒ-Åk,ÛÒ = +3\ +]\¥D1bBEÃn +).¦tc1¢¢á»÷ÿG¡Ó].$O +endstream +endobj +504 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1080 0 R +/Name /Im471 +/Width 42 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿ õÈ$Ö0Ô7ð7T�Iv(Y�$>ÈòdÄI2�I&:B�pM +endstream +endobj +505 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1081 0 R +/Name /Im472 +/Width 32 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5ȱ À @Ñ/WXºAn ÁµÒéhââÅ@R<ø|[ºíãT¾Ê +¸}ÁNPâ1!ÐáuÚ]6D»ÀÈÕumÒ´K ÝF¶ßE-,§ +endstream +endobj +506 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1082 0 R +/Name /Im473 +/Width 51 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû Aþ�ÃÿÿÔ`øýÁÁüGØ?2þaà?ÁüHÝ`þÇðÿó$êózRÿÿÙÿïÿÿ��Ú¶Z +endstream +endobj +507 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1083 0 R +/Name /Im474 +/Width 32 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=̱ á#¯x,`t :²4A³0 +#PRð"Äâëîþ^¥÷ÉfdÍHZ¤ø©M`4:]Ëô�þ¦ +ìe`ä§i8 )ÇÌiÆLÛh%¼y^,g/Æ,/ +endstream +endobj +508 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1084 0 R +/Name /Im475 +/Width 15 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xs`¨ÿWÿ§þÇFf db`B>8da��!G +endstream +endobj +509 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 593 0 R >> /XObject << /Im476 511 0 R /Im209 218 0 R /Im208 217 0 R /Im477 512 0 R /Im202 211 0 R /Im205 214 0 R /Im478 513 0 R /Im319 332 0 R /Im320 333 0 R /Im206 215 0 R /Im479 514 0 R /Im320 333 0 R /Im210 219 0 R /Im320 333 0 R /Im202 211 0 R /Im203 212 0 R /Im323 336 0 R /Im199 206 0 R /Im132 139 0 R /Im480 515 0 R /Im326 339 0 R /Im87 94 0 R /Im481 516 0 R /Im81 88 0 R /Im84 91 0 R /Im482 517 0 R /Im327 340 0 R /Im328 341 0 R /Im85 92 0 R /Im483 518 0 R /Im328 341 0 R /Im473 506 0 R /Im328 341 0 R /Im81 88 0 R /Im82 89 0 R /Im331 344 0 R /Im109 116 0 R /Im94 101 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im95 102 0 R /Im98 105 0 R /Im96 103 0 R /Im114 121 0 R /Im100 107 0 R /Im98 105 0 R /Im124 131 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im94 101 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im113 120 0 R /Im96 103 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im100 107 0 R /Im96 103 0 R /Im97 104 0 R /Im96 103 0 R /Im74 81 0 R /Im135 142 0 R /Im93 100 0 R /Im105 112 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im101 108 0 R /Im103 110 0 R /Im102 109 0 R /Im98 105 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im101 108 0 R /Im103 110 0 R /Im99 106 0 R /Im111 118 0 R /Im97 104 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im114 121 0 R /Im93 100 0 R /Im102 109 0 R /Im124 131 0 R /Im98 105 0 R /Im94 101 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im117 124 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im103 110 0 R /Im99 106 0 R /Im94 101 0 R /Im94 101 0 R /Im93 100 0 R /Im97 104 0 R /Im113 120 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im99 106 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im123 130 0 R /Im106 113 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im100 107 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im114 121 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im98 105 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im117 124 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im94 101 0 R /Im93 100 0 R /Im94 101 0 R /Im100 107 0 R /Im123 130 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im113 120 0 R /Im99 106 0 R /Im101 108 0 R /Im98 105 0 R /Im103 110 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im108 115 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im102 109 0 R /Im114 121 0 R /Im93 100 0 R /Im108 115 0 R /Im100 107 0 R /Im106 113 0 R /Im100 107 0 R /Im98 105 0 R /Im124 131 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im124 131 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im292 303 0 R /Im109 116 0 R /Im130 137 0 R /Im136 143 0 R /Im135 142 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im117 124 0 R /Im102 109 0 R /Im93 100 0 R /Im108 115 0 R /Im111 118 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im347 360 0 R /Im94 101 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im109 116 0 R /Im100 107 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im99 106 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im98 105 0 R /Im102 109 0 R /Im101 108 0 R /Im108 115 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im95 102 0 R /Im98 105 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im118 125 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im124 131 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im120 127 0 R /Im111 118 0 R /Im99 106 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im115 122 0 R /Im96 103 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im99 106 0 R /Im103 110 0 R /Im124 131 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im96 103 0 R /Im106 113 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im95 102 0 R /Im98 105 0 R /Im96 103 0 R /Im114 121 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im113 120 0 R /Im248 257 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im74 81 0 R /Im92 99 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im106 113 0 R /Im102 109 0 R /Im96 103 0 R /Im105 112 0 R /Im99 106 0 R /Im102 109 0 R /Im124 131 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im115 122 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im101 108 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im97 104 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im123 130 0 R /Im98 105 0 R /Im105 112 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im74 81 0 R /Im135 142 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im124 131 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im106 113 0 R /Im108 115 0 R /Im96 103 0 R /Im97 104 0 R /Im93 100 0 R /Im387 404 0 R /Im94 101 0 R /Im117 124 0 R /Im95 102 0 R /Im98 105 0 R /Im160 167 0 R /Im248 257 0 R /Im484 519 0 R /Im93 100 0 R /Im102 109 0 R /Im94 101 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im105 112 0 R /Im123 130 0 R /Im114 121 0 R /Im98 105 0 R /Im115 122 0 R /Im96 103 0 R /Im130 137 0 R /Im99 106 0 R /Im94 101 0 R /Im108 115 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im111 118 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im100 107 0 R /Im123 130 0 R /Im106 113 0 R /Im96 103 0 R /Im113 120 0 R /Im108 115 0 R /Im117 124 0 R /Im117 124 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im106 113 0 R /Im102 109 0 R /Im99 106 0 R /Im115 122 0 R /Im97 104 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im98 105 0 R /Im101 108 0 R /Im111 118 0 R /Im99 106 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im123 130 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im96 103 0 R /Im101 108 0 R /Im74 81 0 R /Im134 141 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im108 115 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im114 121 0 R /Im99 106 0 R /Im101 108 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im95 102 0 R /Im98 105 0 R /Im106 113 0 R /Im96 103 0 R /Im106 113 0 R /Im113 120 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im292 303 0 R /Im96 103 0 R /Im102 109 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im109 116 0 R /Im103 110 0 R /Im99 106 0 R /Im106 113 0 R /Im96 103 0 R /Im105 112 0 R /Im98 105 0 R /Im103 110 0 R /Im136 143 0 R /Im126 133 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im135 142 0 R /Im96 103 0 R /Im102 109 0 R /Im95 102 0 R /Im98 105 0 R /Im103 110 0 R /Im96 103 0 R /Im118 125 0 R /Im125 132 0 R /Im109 116 0 R /Im109 116 0 R /Im125 132 0 R /Im120 127 0 R /Im107 114 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im129 136 0 R /Im98 105 0 R /Im100 107 0 R /Im100 107 0 R /Im99 106 0 R /Im105 112 0 R /Im134 141 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im99 106 0 R /Im112 119 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im277 288 0 R /Im99 106 0 R /Im97 104 0 R /Im108 115 0 R /Im102 109 0 R /Im99 106 0 R /Im100 107 0 R /Im135 142 0 R /Im103 110 0 R /Im98 105 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im136 143 0 R /Im94 101 0 R /Im117 124 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im360 375 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im92 99 0 R /Im93 100 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im98 105 0 R /Im100 107 0 R /Im118 125 0 R /Im277 288 0 R /Im135 142 0 R /Im136 143 0 R /Im360 375 0 R /Im92 99 0 R /Im120 127 0 R /Im107 114 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im114 121 0 R /Im104 111 0 R /Im98 105 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im99 106 0 R /Im108 115 0 R /Im97 104 0 R /Im104 111 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im105 112 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im117 124 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im115 122 0 R /Im108 115 0 R /Im100 107 0 R /Im74 81 0 R /Im485 520 0 R /Im328 341 0 R /Im486 521 0 R /Im328 341 0 R /Im83 90 0 R /Im328 341 0 R /Im81 88 0 R /Im87 94 0 R /Im328 341 0 R /Im331 344 0 R /Im128 135 0 R /Im109 116 0 R /Im92 99 0 R /Im127 134 0 R /Im293 304 0 R /Im354 367 0 R /Im133 140 0 R /Im122 129 0 R /Im74 81 0 R /Im109 116 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im102 109 0 R /Im99 106 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im107 114 0 R /Im130 137 0 R /Im74 81 0 R /Im92 99 0 R /Im99 106 0 R /Im105 112 0 R /Im111 118 0 R /Im113 120 0 R /Im96 103 0 R /Im100 107 0 R /Im100 107 0 R /Im107 114 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im134 141 0 R /Im74 81 0 R /Im127 134 0 R /Im74 81 0 R /Im127 134 0 R /Im101 108 0 R /Im108 115 0 R /Im74 81 0 R /Im135 142 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im214 223 0 R /Im109 116 0 R /Im106 113 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im97 104 0 R /Im93 100 0 R /Im113 120 0 R /Im102 109 0 R /Im108 115 0 R /Im97 104 0 R /Im96 103 0 R /Im112 119 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im74 81 0 R /Im416 435 0 R /Im240 249 0 R /Im260 269 0 R /Im281 292 0 R /Im487 522 0 R /Im259 268 0 R /Im281 292 0 R /Im258 267 0 R /Im335 348 0 R /Im254 263 0 R /Im255 264 0 R /Im260 269 0 R /Im243 252 0 R /Im335 348 0 R /Im335 348 0 R /Im281 292 0 R /Im282 293 0 R /Im243 252 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im107 114 0 R /Im324 337 0 R /Im272 283 0 R /Im118 125 0 R /Im199 206 0 R /Im120 127 0 R /Im214 223 0 R /Im293 304 0 R /Im293 304 0 R /Im488 523 0 R /Im199 206 0 R /Im199 206 0 R /Im354 367 0 R /Im107 114 0 R /Im199 206 0 R /Im293 304 0 R /Im293 304 0 R /Im354 367 0 R /Im74 81 0 R /Im128 135 0 R /Im109 116 0 R /Im94 101 0 R /Im99 106 0 R /Im293 304 0 R /Im354 367 0 R /Im133 140 0 R /Im122 129 0 R /Im74 81 0 R /Im109 116 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im105 112 0 R /Im74 81 0 R /Im416 435 0 R /Im280 291 0 R /Im260 269 0 R /Im258 267 0 R /Im260 269 0 R /Im281 292 0 R /Im256 265 0 R /Im260 269 0 R /Im281 292 0 R /Im259 268 0 R /Im258 267 0 R /Im335 348 0 R /Im280 291 0 R /Im260 269 0 R /Im257 266 0 R /Im286 297 0 R /Im396 413 0 R /Im241 250 0 R /Im466 497 0 R /Im280 291 0 R /Im243 252 0 R /Im335 348 0 R /Im243 252 0 R /Im259 268 0 R /Im260 269 0 R /Im281 292 0 R /Im242 251 0 R /Im243 252 0 R /Im337 350 0 R /Im281 292 0 R /Im255 264 0 R /Im349 362 0 R /Im337 350 0 R /Im258 267 0 R /Im285 296 0 R /Im280 291 0 R /Im243 252 0 R /Im258 267 0 R /Im240 249 0 R /Im259 268 0 R /Im338 351 0 R /Im281 292 0 R /Im255 264 0 R /Im417 436 0 R /Im241 250 0 R /Im389 406 0 R /Im239 248 0 R /Im257 266 0 R /Im260 269 0 R /Im243 252 0 R /Im240 249 0 R /Im417 436 0 R /Im338 351 0 R /Im243 252 0 R /Im256 265 0 R /Im256 265 0 R /Im74 81 0 R /Im291 302 0 R /Im104 111 0 R /Im125 132 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im107 114 0 R /Im92 99 0 R /Im99 106 0 R /Im102 109 0 R /Im94 101 0 R /Im96 103 0 R /Im117 124 0 R /Im98 105 0 R /Im96 103 0 R /Im130 137 0 R /Im96 103 0 R /Im100 107 0 R /Im100 107 0 R /Im93 100 0 R /Im94 101 0 R /Im347 360 0 R /Im94 101 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im107 114 0 R /Im92 99 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im108 115 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im135 142 0 R /Im103 110 0 R /Im98 105 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im125 132 0 R /Im96 103 0 R /Im111 118 0 R /Im99 106 0 R /Im102 109 0 R /Im97 104 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im107 114 0 R /Im291 302 0 R /Im98 105 0 R /Im97 104 0 R /Im97 104 0 R /Im101 108 0 R /Im113 120 0 R /Im108 115 0 R /Im102 109 0 R /Im117 124 0 R /Im107 114 0 R /Im130 137 0 R /Im99 106 0 R /Im123 130 0 R /Im199 206 0 R /Im293 304 0 R /Im293 304 0 R /Im354 367 0 R /Im74 81 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im93 100 0 R /Im214 223 0 R /Im97 104 0 R /Im96 103 0 R /Im103 110 0 R /Im104 111 0 R /Im94 101 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im102 109 0 R /Im96 103 0 R /Im111 118 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im92 99 0 R /Im130 137 0 R /Im347 360 0 R /Im112 119 0 R /Im92 99 0 R /Im135 142 0 R /Im112 119 0 R /Im293 304 0 R /Im354 367 0 R /Im112 119 0 R /Im199 206 0 R /Im131 138 0 R /Im272 283 0 R /Im74 81 0 R /Im128 135 0 R /Im160 167 0 R /Im96 103 0 R /Im102 109 0 R /Im131 138 0 R /Im293 304 0 R /Im133 140 0 R /Im127 134 0 R /Im74 81 0 R /Im311 322 0 R /Im74 81 0 R /Im160 167 0 R /Im96 103 0 R /Im102 109 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im102 109 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im160 167 0 R /Im110 117 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im214 223 0 R /Im109 116 0 R /Im113 120 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im112 119 0 R /Im116 123 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im93 100 0 R /Im115 122 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im74 81 0 R /Im416 435 0 R /Im240 249 0 R /Im260 269 0 R /Im281 292 0 R /Im487 522 0 R /Im259 268 0 R /Im281 292 0 R /Im258 267 0 R /Im335 348 0 R /Im254 263 0 R /Im255 264 0 R /Im260 269 0 R /Im243 252 0 R /Im335 348 0 R /Im335 348 0 R /Im281 292 0 R /Im282 293 0 R /Im243 252 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im107 114 0 R /Im199 206 0 R /Im212 221 0 R /Im118 125 0 R /Im199 206 0 R /Im120 127 0 R /Im214 223 0 R /Im212 221 0 R /Im272 283 0 R /Im488 523 0 R /Im324 337 0 R /Im354 367 0 R /Im107 114 0 R /Im199 206 0 R /Im293 304 0 R /Im131 138 0 R /Im293 304 0 R /Im74 81 0 R /Im128 135 0 R /Im160 167 0 R /Im130 137 0 R /Im293 304 0 R /Im132 139 0 R /Im133 140 0 R /Im127 134 0 R /Im74 81 0 R /Im311 322 0 R /Im74 81 0 R /Im160 167 0 R /Im96 103 0 R /Im102 109 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im92 99 0 R /Im74 81 0 R /Im130 137 0 R /Im103 110 0 R /Im92 99 0 R /Im93 100 0 R /Im94 101 0 R /Im94 101 0 R /Im96 103 0 R /Im100 107 0 R /Im100 107 0 R /Im74 81 0 R /Im160 167 0 R /Im110 117 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im99 106 0 R /Im113 120 0 R /Im98 105 0 R /Im100 107 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im113 120 0 R /Im99 106 0 R /Im101 108 0 R /Im96 103 0 R /Im106 113 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im74 81 0 R /Im416 435 0 R /Im240 249 0 R /Im260 269 0 R /Im281 292 0 R /Im487 522 0 R /Im259 268 0 R /Im281 292 0 R /Im258 267 0 R /Im335 348 0 R /Im254 263 0 R /Im255 264 0 R /Im260 269 0 R /Im243 252 0 R /Im335 348 0 R /Im335 348 0 R /Im281 292 0 R /Im282 293 0 R /Im243 252 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im107 114 0 R /Im311 322 0 R /Im108 115 0 R /Im94 101 0 R /Im96 103 0 R /Im199 206 0 R /Im293 304 0 R /Im293 304 0 R /Im132 139 0 R /Im74 81 0 R /Im109 116 0 R /Im100 107 0 R /Im101 108 0 R /Im93 100 0 R /Im214 223 0 R /Im122 129 0 R /Im96 103 0 R /Im103 110 0 R /Im104 111 0 R /Im94 101 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im100 107 0 R /Im360 375 0 R /Im96 103 0 R /Im111 118 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im92 99 0 R /Im130 137 0 R /Im347 360 0 R /Im112 119 0 R /Im92 99 0 R /Im135 142 0 R /Im112 119 0 R /Im293 304 0 R /Im324 337 0 R /Im112 119 0 R /Im199 206 0 R /Im294 305 0 R /Im348 361 0 R /Im107 114 0 R /Im135 142 0 R /Im103 110 0 R /Im104 111 0 R /Im93 100 0 R /Im93 100 0 R /Im100 107 0 R /Im93 100 0 R /Im115 122 0 R /Im92 99 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im108 115 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im135 142 0 R /Im103 110 0 R /Im98 105 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im107 114 0 R /Im92 99 0 R /Im99 106 0 R /Im102 109 0 R /Im94 101 0 R /Im96 103 0 R /Im117 124 0 R /Im98 105 0 R /Im96 103 0 R /Im130 137 0 R /Im96 103 0 R /Im100 107 0 R /Im100 107 0 R /Im93 100 0 R /Im94 101 0 R /Im347 360 0 R /Im94 101 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im107 114 0 R /Im291 302 0 R /Im98 105 0 R /Im97 104 0 R /Im97 104 0 R /Im101 108 0 R /Im113 120 0 R /Im108 115 0 R /Im102 109 0 R /Im117 124 0 R /Im107 114 0 R /Im291 302 0 R /Im109 116 0 R /Im74 81 0 R /Im128 135 0 R /Im160 167 0 R /Im135 142 0 R /Im293 304 0 R /Im131 138 0 R /Im133 140 0 R /Im136 143 0 R /Im74 81 0 R /Im160 167 0 R /Im74 81 0 R /Im160 167 0 R /Im99 106 0 R /Im108 115 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im137 144 0 R /Im74 81 0 R /Im125 132 0 R /Im74 81 0 R /Im135 142 0 R /Im105 112 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im74 81 0 R /Im109 116 0 R /Im113 120 0 R /Im99 106 0 R /Im123 130 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im74 81 0 R /Im416 435 0 R /Im240 249 0 R /Im260 269 0 R /Im281 292 0 R /Im487 522 0 R /Im259 268 0 R /Im281 292 0 R /Im258 267 0 R /Im335 348 0 R /Im254 263 0 R /Im255 264 0 R /Im260 269 0 R /Im243 252 0 R /Im335 348 0 R /Im335 348 0 R /Im281 292 0 R /Im282 293 0 R /Im243 252 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im107 114 0 R /Im293 304 0 R /Im131 138 0 R /Im118 125 0 R /Im199 206 0 R /Im488 523 0 R /Im212 221 0 R /Im120 127 0 R /Im214 223 0 R /Im199 206 0 R /Im293 304 0 R /Im132 139 0 R /Im488 523 0 R /Im212 221 0 R /Im324 337 0 R /Im212 221 0 R /Im107 114 0 R /Im199 206 0 R /Im293 304 0 R /Im293 304 0 R /Im131 138 0 R /Im74 81 0 R /Im128 135 0 R /Im160 167 0 R /Im108 115 0 R /Im102 109 0 R /Im293 304 0 R /Im132 139 0 R /Im133 140 0 R /Im130 137 0 R /Im74 81 0 R /Im160 167 0 R /Im108 115 0 R /Im102 109 0 R /Im93 100 0 R /Im74 81 0 R /Im291 302 0 R /Im102 109 0 R /Im93 100 0 R /Im113 120 0 R /Im92 99 0 R /Im108 115 0 R /Im97 104 0 R /Im214 223 0 R /Im109 116 0 R /Im111 118 0 R /Im93 100 0 R /Im114 121 0 R /Im96 103 0 R /Im102 109 0 R /Im115 122 0 R /Im108 115 0 R /Im100 107 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im96 103 0 R /Im103 110 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im96 103 0 R /Im126 133 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im101 108 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im303 314 0 R /Im306 317 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im74 81 0 R /Im254 263 0 R /Im417 436 0 R /Im417 436 0 R /Im416 435 0 R /Im489 524 0 R /Im241 250 0 R /Im257 266 0 R /Im240 249 0 R /Im255 264 0 R /Im258 267 0 R /Im335 348 0 R /Im107 114 0 R /Im199 206 0 R /Im348 361 0 R /Im118 125 0 R /Im212 221 0 R /Im120 127 0 R /Im214 223 0 R /Im131 138 0 R /Im199 206 0 R /Im488 523 0 R /Im348 361 0 R /Im199 206 0 R /Im107 114 0 R /Im311 322 0 R /Im108 115 0 R /Im94 101 0 R /Im96 103 0 R /Im199 206 0 R /Im293 304 0 R /Im293 304 0 R /Im132 139 0 R /Im74 81 0 R /Im128 135 0 R /Im92 99 0 R /Im130 137 0 R /Im293 304 0 R /Im294 305 0 R /Im133 140 0 R /Im125 132 0 R /Im74 81 0 R /Im92 99 0 R /Im99 106 0 R /Im102 109 0 R /Im105 112 0 R /Im96 103 0 R /Im100 107 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im135 142 0 R /Im74 81 0 R /Im130 137 0 R /Im99 106 0 R /Im102 109 0 R /Im124 131 0 R /Im93 100 0 R /Im95 102 0 R /Im98 105 0 R /Im97 104 0 R /Im103 110 0 R /Im104 111 0 R /Im74 81 0 R /Im244 253 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im98 105 0 R /Im94 101 0 R /Im99 106 0 R /Im106 113 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im99 106 0 R /Im102 109 0 R /Im123 130 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im74 81 0 R /Im119 126 0 R /Im94 101 0 R /Im490 525 0 R /Im240 249 0 R /Im241 250 0 R /Im259 268 0 R /Im243 252 0 R /Im243 252 0 R /Im286 297 0 R /Im281 292 0 R /Im255 264 0 R /Im282 293 0 R /Im256 265 0 R /Im241 250 0 R /Im466 497 0 R /Im260 269 0 R /Im338 351 0 R /Im243 252 0 R /Im287 298 0 R /Im258 267 0 R /Im260 269 0 R /Im281 292 0 R /Im241 250 0 R /Im255 264 0 R /Im258 267 0 R /Im335 348 0 R /Im417 436 0 R /Im241 250 0 R /Im255 264 0 R /Im466 497 0 R /Im243 252 0 R /Im240 249 0 R /Im243 252 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im241 250 0 R /Im255 264 0 R /Im416 435 0 R /Im240 249 0 R /Im260 269 0 R /Im281 292 0 R /Im487 522 0 R /Im259 268 0 R /Im281 292 0 R /Im258 267 0 R /Im335 348 0 R /Im254 263 0 R /Im255 264 0 R /Im260 269 0 R /Im243 252 0 R /Im335 348 0 R /Im335 348 0 R /Im281 292 0 R /Im282 293 0 R /Im243 252 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im491 526 0 R /Im416 435 0 R /Im416 435 0 R /Im416 435 0 R /Im254 263 0 R /Im349 362 0 R /Im492 527 0 R /Im493 528 0 R /Im494 529 0 R /Im107 114 0 R /Im111 118 0 R /Im99 106 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im199 206 0 R /Im212 221 0 R /Im354 367 0 R /Im488 523 0 R /Im199 206 0 R /Im212 221 0 R /Im132 139 0 R /Im107 114 0 R /Im199 206 0 R /Im293 304 0 R /Im293 304 0 R /Im294 305 0 R /Im74 81 0 R /Im128 135 0 R /Im292 303 0 R /Im98 105 0 R /Im94 101 0 R /Im293 304 0 R /Im294 305 0 R /Im133 140 0 R /Im130 137 0 R /Im74 81 0 R /Im292 303 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im117 124 0 R /Im74 81 0 R /Im291 302 0 R /Im99 106 0 R /Im102 109 0 R /Im97 104 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im74 81 0 R /Im119 126 0 R /Im94 101 0 R /Im490 525 0 R /Im240 249 0 R /Im241 250 0 R /Im259 268 0 R /Im243 252 0 R /Im243 252 0 R /Im286 297 0 R /Im281 292 0 R /Im255 264 0 R /Im282 293 0 R /Im256 265 0 R /Im241 250 0 R /Im466 497 0 R /Im260 269 0 R /Im338 351 0 R /Im243 252 0 R /Im287 298 0 R /Im258 267 0 R /Im260 269 0 R /Im281 292 0 R /Im241 250 0 R /Im255 264 0 R /Im258 267 0 R /Im335 348 0 R /Im417 436 0 R /Im241 250 0 R /Im255 264 0 R /Im466 497 0 R /Im243 252 0 R /Im240 249 0 R /Im243 252 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im241 250 0 R /Im255 264 0 R /Im416 435 0 R /Im240 249 0 R /Im260 269 0 R /Im281 292 0 R /Im487 522 0 R /Im259 268 0 R /Im281 292 0 R /Im258 267 0 R /Im335 348 0 R /Im254 263 0 R /Im255 264 0 R /Im260 269 0 R /Im243 252 0 R /Im335 348 0 R /Im335 348 0 R /Im281 292 0 R /Im349 362 0 R /Im282 293 0 R /Im243 252 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im491 526 0 R /Im416 435 0 R /Im416 435 0 R /Im416 435 0 R /Im254 263 0 R /Im349 362 0 R /Im492 527 0 R /Im493 528 0 R /Im494 529 0 R /Im107 114 0 R /Im111 118 0 R /Im99 106 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im212 221 0 R /Im212 221 0 R /Im348 361 0 R /Im488 523 0 R /Im212 221 0 R /Im272 283 0 R /Im272 283 0 R /Im107 114 0 R /Im199 206 0 R /Im293 304 0 R /Im293 304 0 R /Im294 305 0 R /Im74 81 0 R /Im128 135 0 R /Im127 134 0 R /Im99 106 0 R /Im102 109 0 R /Im131 138 0 R /Im324 337 0 R /Im133 140 0 R /Im384 401 0 R /Im74 81 0 R /Im360 375 0 R /Im74 81 0 R /Im127 134 0 R /Im99 106 0 R /Im102 109 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im74 81 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im104 111 0 R /Im96 103 0 R /Im108 115 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im108 115 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im102 109 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im106 113 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im96 103 0 R /Im102 109 0 R /Im102 109 0 R /Im93 100 0 R /Im102 109 0 R /Im74 81 0 R /Im416 435 0 R /Im240 249 0 R /Im260 269 0 R /Im281 292 0 R /Im487 522 0 R /Im259 268 0 R /Im281 292 0 R /Im258 267 0 R /Im335 348 0 R /Im254 263 0 R /Im255 264 0 R /Im260 269 0 R /Im243 252 0 R /Im335 348 0 R /Im335 348 0 R /Im281 292 0 R /Im282 293 0 R /Im243 252 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im107 114 0 R /Im132 139 0 R /Im214 223 0 R /Im212 221 0 R /Im199 206 0 R /Im131 138 0 R /Im488 523 0 R /Im212 221 0 R /Im272 283 0 R /Im324 337 0 R /Im107 114 0 R /Im199 206 0 R /Im293 304 0 R /Im131 138 0 R /Im324 337 0 R /Im74 81 0 R /Im109 116 0 R /Im100 107 0 R /Im101 108 0 R /Im93 100 0 R /Im98 105 0 R /Im94 101 0 R /Im214 223 0 R /Im92 99 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im135 142 0 R /Im124 131 0 R /Im98 105 0 R /Im100 107 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im130 137 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im130 137 0 R /Im99 106 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im96 103 0 R /Im107 114 0 R /Im135 142 0 R /Im111 118 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im96 103 0 R /Im102 109 0 R /Im112 119 0 R /Im383 400 0 R /Im96 103 0 R /Im102 109 0 R /Im100 107 0 R /Im99 106 0 R /Im117 124 0 R /Im74 81 0 R /Im128 135 0 R /Im127 134 0 R /Im93 100 0 R /Im102 109 0 R /Im348 361 0 R /Im131 138 0 R /Im133 140 0 R /Im127 134 0 R /Im74 81 0 R /Im127 134 0 R /Im93 100 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im96 103 0 R /Im124 131 0 R /Im74 81 0 R /Im360 375 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im108 115 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im123 130 0 R /Im74 81 0 R /Im119 126 0 R /Im94 101 0 R /Im125 132 0 R /Im74 81 0 R /Im134 141 0 R /Im74 81 0 R /Im160 167 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im107 114 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im97 104 0 R /Im93 100 0 R /Im102 109 0 R /Im107 114 0 R /Im416 435 0 R /Im286 297 0 R /Im242 251 0 R /Im258 267 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im256 265 0 R /Im281 292 0 R /Im255 264 0 R /Im417 436 0 R /Im241 250 0 R /Im389 406 0 R /Im239 248 0 R /Im257 266 0 R /Im260 269 0 R /Im243 252 0 R /Im240 249 0 R /Im417 436 0 R /Im338 351 0 R /Im243 252 0 R /Im256 265 0 R /Im256 265 0 R /Im495 530 0 R /Im107 114 0 R /Im277 288 0 R /Im93 100 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im114 121 0 R /Im98 105 0 R /Im248 257 0 R /Im124 131 0 R /Im104 111 0 R /Im93 100 0 R /Im93 100 0 R /Im97 104 0 R /Im107 114 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im277 288 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im100 107 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im107 114 0 R /Im199 206 0 R /Im293 304 0 R /Im348 361 0 R /Im131 138 0 R /Im74 81 0 R /Im128 135 0 R /Im119 126 0 R /Im347 360 0 R /Im95 102 0 R /Im106 113 0 R /Im127 134 0 R /Im127 134 0 R /Im293 304 0 R /Im272 283 0 R /Im133 140 0 R /Im127 134 0 R /Im74 81 0 R /Im119 126 0 R /Im98 105 0 R /Im106 113 0 R /Im99 106 0 R /Im107 114 0 R /Im311 322 0 R /Im74 81 0 R /Im137 144 0 R /Im74 81 0 R /Im127 134 0 R /Im74 81 0 R /Im130 137 0 R /Im74 81 0 R /Im347 360 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im114 121 0 R /Im98 105 0 R /Im248 257 0 R /Im124 131 0 R /Im107 114 0 R /Im127 134 0 R /Im74 81 0 R /Im311 322 0 R /Im74 81 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im127 134 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im124 131 0 R /Im107 114 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im119 126 0 R /Im74 81 0 R /Im135 142 0 R /Im74 81 0 R /Im127 134 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im103 110 0 R /Im104 111 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im117 124 0 R /Im74 81 0 R /Im291 302 0 R /Im93 100 0 R /Im97 104 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im100 107 0 R /Im98 105 0 R /Im103 110 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im112 119 0 R /Im105 112 0 R /Im93 100 0 R /Im106 113 0 R /Im96 103 0 R /Im100 107 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im74 81 0 R /Im254 263 0 R /Im417 436 0 R /Im417 436 0 R /Im416 435 0 R /Im489 524 0 R /Im241 250 0 R /Im257 266 0 R /Im240 249 0 R /Im255 264 0 R /Im258 267 0 R /Im335 348 0 R /Im107 114 0 R /Im199 206 0 R /Im294 305 0 R /Im118 125 0 R /Im324 337 0 R /Im120 127 0 R /Im214 223 0 R /Im212 221 0 R /Im354 367 0 R /Im199 206 0 R /Im488 523 0 R /Im212 221 0 R /Im354 367 0 R /Im348 361 0 R /Im107 114 0 R /Im199 206 0 R /Im293 304 0 R /Im293 304 0 R /Im272 283 0 R /Im74 81 0 R /Im291 302 0 R /Im108 115 0 R /Im113 120 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im104 111 0 R /Im96 103 0 R /Im106 113 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im93 100 0 R /Im98 105 0 R /Im94 101 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im103 110 0 R /Im96 103 0 R /Im96 103 0 R /Im106 113 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im131 138 0 R /Im97 104 0 R /Im104 111 0 R /Im92 99 0 R /Im93 100 0 R /Im94 101 0 R /Im115 122 0 R /Im96 103 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im93 100 0 R /Im94 101 0 R /Im109 116 0 R /Im106 113 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im92 99 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im108 115 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im92 99 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im107 114 0 R /Im130 137 0 R /Im99 106 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im98 105 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im107 114 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im277 288 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im100 107 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im74 81 0 R /Im128 135 0 R /Im311 322 0 R /Im99 106 0 R /Im94 101 0 R /Im293 304 0 R /Im272 283 0 R /Im133 140 0 R /Im291 302 0 R /Im74 81 0 R /Im311 322 0 R /Im74 81 0 R /Im311 322 0 R /Im99 106 0 R /Im94 101 0 R /Im101 108 0 R /Im96 103 0 R /Im94 101 0 R /Im74 81 0 R /Im129 136 0 R /Im422 443 0 R /Im129 136 0 R /Im360 375 0 R /Im214 223 0 R /Im135 142 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im100 107 0 R /Im123 130 0 R /Im97 104 0 R /Im104 111 0 R /Im114 121 0 R /Im99 106 0 R /Im102 109 0 R /Im97 104 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im99 106 0 R /Im104 111 0 R /Im108 115 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im74 81 0 R /Im254 263 0 R /Im417 436 0 R /Im417 436 0 R /Im416 435 0 R /Im489 524 0 R /Im241 250 0 R /Im257 266 0 R /Im240 249 0 R /Im255 264 0 R /Im258 267 0 R /Im335 348 0 R /Im107 114 0 R /Im199 206 0 R /Im294 305 0 R /Im118 125 0 R /Im199 206 0 R /Im120 127 0 R /Im214 223 0 R /Im272 283 0 R /Im488 523 0 R /Im199 206 0 R /Im131 138 0 R /Im107 114 0 R /Im311 322 0 R /Im99 106 0 R /Im94 101 0 R /Im108 115 0 R /Im99 106 0 R /Im102 109 0 R /Im123 130 0 R /Im199 206 0 R /Im293 304 0 R /Im293 304 0 R /Im272 283 0 R /Im74 81 0 R /Im128 135 0 R /Im311 322 0 R /Im135 142 0 R /Im160 167 0 R /Im312 323 0 R /Im293 304 0 R /Im131 138 0 R /Im133 140 0 R /Im109 116 0 R /Im74 81 0 R /Im311 322 0 R /Im108 115 0 R /Im94 101 0 R /Im117 124 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im94 101 0 R /Im101 108 0 R /Im107 114 0 R /Im311 322 0 R /Im74 81 0 R /Im135 142 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im96 103 0 R /Im238 247 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im130 137 0 R /Im74 81 0 R /Im160 167 0 R /Im102 109 0 R /Im93 100 0 R /Im103 110 0 R /Im124 131 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im97 104 0 R /Im93 100 0 R /Im94 101 0 R /Im107 114 0 R /Im387 404 0 R /Im74 81 0 R /Im160 167 0 R /Im248 257 0 R /Im484 519 0 R /Im93 100 0 R /Im102 109 0 R /Im94 101 0 R /Im101 108 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im107 114 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im122 129 0 R /Im74 81 0 R /Im130 137 0 R /Im99 106 0 R /Im102 109 0 R /Im101 108 0 R /Im100 107 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im74 81 0 R /Im125 132 0 R /Im98 105 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im101 108 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im108 115 0 R /Im102 109 0 R /Im94 101 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im99 106 0 R /Im106 113 0 R /Im106 113 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im74 81 0 R /Im119 126 0 R /Im94 101 0 R /Im416 435 0 R /Im286 297 0 R /Im242 251 0 R /Im258 267 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im256 265 0 R /Im281 292 0 R /Im255 264 0 R /Im417 436 0 R /Im241 250 0 R /Im389 406 0 R /Im239 248 0 R /Im257 266 0 R /Im260 269 0 R /Im243 252 0 R /Im240 249 0 R /Im417 436 0 R /Im338 351 0 R /Im243 252 0 R /Im256 265 0 R /Im256 265 0 R /Im496 531 0 R /Im107 114 0 R /Im111 118 0 R /Im99 106 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im132 139 0 R /Im272 283 0 R /Im488 523 0 R /Im294 305 0 R /Im131 138 0 R /Im107 114 0 R /Im199 206 0 R /Im293 304 0 R /Im293 304 0 R /Im131 138 0 R /Im74 81 0 R /Im128 135 0 R /Im311 322 0 R /Im108 115 0 R /Im94 101 0 R /Im293 304 0 R /Im324 337 0 R /Im133 140 0 R /Im109 116 0 R /Im74 81 0 R /Im311 322 0 R /Im108 115 0 R /Im94 101 0 R /Im117 124 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im94 101 0 R /Im101 108 0 R /Im74 81 0 R /Im134 141 0 R /Im108 115 0 R /Im139 146 0 R /Im139 146 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im99 106 0 R /Im101 108 0 R /Im99 106 0 R /Im97 104 0 R /Im93 100 0 R /Im93 100 0 R /Im100 107 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im117 124 0 R /Im102 109 0 R /Im99 106 0 R /Im105 112 0 R /Im101 108 0 R /Im74 81 0 R /Im254 263 0 R /Im417 436 0 R /Im417 436 0 R /Im416 435 0 R /Im489 524 0 R /Im241 250 0 R /Im257 266 0 R /Im240 249 0 R /Im255 264 0 R /Im258 267 0 R /Im335 348 0 R /Im107 114 0 R /Im199 206 0 R /Im131 138 0 R /Im118 125 0 R /Im272 283 0 R /Im120 127 0 R /Im214 223 0 R /Im324 337 0 R /Im199 206 0 R /Im488 523 0 R /Im324 337 0 R /Im348 361 0 R /Im107 114 0 R /Im135 142 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im96 103 0 R /Im105 112 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im199 206 0 R /Im293 304 0 R /Im293 304 0 R /Im324 337 0 R /Im74 81 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 510 0 R +>> +endobj +510 0 obj +<< +/Length 1085 0 R +/Filter /FlateDecode +>> +stream +x¥}KÓ,¹qÝ~~Å]J,¼ê¡¥Cf7)Ä¥66I´ùÆÁð¿wW²¾FáÆÉêÅÜBÌDæÉ×_úçý)üøÛOý)¥8ý¾¦Éþ¿¶yú±Ä¯%çK_Küú?ýâ¿ÿ1/óüóOÿüòýüµÀï×å+ÎÇ÷ÛbßÇiÿøðñç¿¶õúûqZ¯ß/_ózýý}Å0°¼,ý[wc ª'aG(×¶¯5#X¾bìï £ÁãÃ4Hù«L×#¤�.!ãòxüqÂ,`8 lTX + b^ô#ÌI;Âö0Ì:Bè ;XÐ×rë[:øº@3Òq¿Î#|ßBݱ¤ ì lÝ5&"%°� ®·°}¥}öêu°vÂׯì{ÚæcÍ)N:QØ'L+X`úèªÐÂãoû¡²ÁåAQÏÄhÐP|":AHXx¨tîÓ×<a´ ;*Î_o¡àkÞÛÂ:Þ«Äíyª°T 4Í_kù&B'KôkÐ"]aE°È[xè»T´6ó×Úq×01,zFB/ãó÷#ºÄ,`óæ¡NößfÎ>ëÍþ�Áµlàû¥Þ:;þÍãÁçÝý=9£Ïïø¼cá^ëçð×;MØ?ÇçaÂÄënm?<DGÙü +"{Vm`ë¸?, ì{tûUåD¸ÀÔ½ft¤Q ¿û¾ Äîõ)0~�ï:)dÈÝ;ÐË_=@ úEä!"3"ÀÃkQU@áÀ(@Ö« zªÈ÷+âÐ¥�Ûa^6 «à°!F:'¨dÆ ¾XÉZ<B-¤«ñÑ+Õ8Á àU$øÈ,3¢ #ÖBÝ÷½gW¿/Ý"îj0Î&Ä·£|°Ó"LE¨EÀKBi¸|¦È㥰Säü÷554uNÍñoâzøÆí÷`U×øE½:¦à + a5$óPðC"ë$ë!,Æ)`Å0EøÉèákO)Ý�VD½ ;ÀæP¯ +¦¹ØcX¤T=Å0ehMtbH�í)t�,©ÀÇL¶fRÑ*z3~ +ds,asJxË*åkýc(ë´&É¢7}Jð Áî$§ÍX |áûÀ&''Øàs.Ka°M/Ka *î Q>sJ2ôKSÂÞLT1x ?U¥:*§å¦U_ï ˹DQ2Mg){¹à;PÒº�t-ux"ÏPôð½ClÓé¼â÷X�ª P÷ðÕ!Þãz¬Êßò`Ârú.f$,A&!¾Ã½KAkÄçô.¯=AÄ/²,%~S¢Êô;î©Ã¦X}~Óc©¬ý\âÁg?Ïfýá÷òKPnwO¢ÌîãÛ÷*ù<ýz¢gXÑ÷:ÂiOyK] ) è�A¼ïé:Ó ¸ÒÈÄAô�n ç`z æ®bÌ3dAù +¼Ä÷/#ª¡+=дa&ÙÏÜìòë3Üç=PsB¨+Ñ4!¤ðZ@@Z Sqdâ±H,Ì¿G, y¥çµüÆ�8Yãk¡Þ§,4«zàü3æaÙX 9 âÏ^¸bKD§àz(SH§à¥XÐ"Û¦\ºð.M1Cáµ ±L 5§Ô ¤Ö®#¼H!ûàHññýö`ÊÚPÈ¢á±ú»À·H5%lÎé,0cs¼eØI§&#¢]lôÞ)ç 1|K¼©Ñc¦[iU-R&¡îÔeìTÊaõ`ÿûN¥ rYÐ sä.ñÐ"$ølÒ¤ì ±Ìüa�ñgæH.#¹hæÝ�6èúã»0Eñ]L`ò¨(¡=Ã5&¦W°^7'\!ðîT>ºÂ_]!Ë»ØñågÞE³@wÁª*J0ÊÙG d²hPéW`Bô° +>AwÏA©1ÃfÚµeï]~^~IMÚ ^(1t· ô×C<8�Åæ|,m� $èuO"Æ8²WDC=Ù²^Ú x²;² +a¢ Ì3b"G`Ô¥8,óGJ,¬hÈ'°B)B^BÁ r-Ù;<¢ ÏÖXHîYÀv/U¦Tx ¬XtwÈÊ÷4ÞBêÔ@ùZºK<ØàÂKZig@Iº5Ð40¸E±"EâÈ»XÈÆHz�bè�ÊïPÐe Í&ý DtpMð9Ñ 'Ä À¦ i¤ô1Ç÷i'ô1KlD!ºåàSäûôÙ°E¡«ó$ZL§MôRiåô³4C»TgÒ|×&³<Xø¢ëߢ +á* +!_@TÅÃDÚ)oè J¼A!VPb)55Ä¢Mù¡Ñ¦oÕñ�¤$ȹuøFgìår°äD9o²qN ¡*&È&§LPÆt*=tƪ\§à¬½EÌ:λhF%GI!Ä£'"GV¥yU)O£EªÔaÐ[ ¶ÀöET2Ku6.Q|Ϩõ$´5V|MäTh««)Ó½LhK)á=ýØ_Ò|¯·Z0j?[lð×å8 àåð:Äg.û÷ fMè{Ù'/Í7`}vÍY8Ãc ô ήÀrFt ÆE¤!ëÕÑJJÒ(!¹¤æYÛ8`RÈ B´îlT£]-DÉ<Ö¤i!zÚEìr¹¬),YU,ÒPÏ¥]±*3wÄEVà&¡!PêC)f[µÄ³] 7)FÕ;dßCM$'ɸ# +ðôÌXxw|(ðÂsn鼦Lé +¢¡ñHñy2-ü^x,X +É´Ð$ÐyhÏc|OuiÂÐsY'øJ8PÚ¢¾¬aÒ#o@|xÇt<À¯@¢3v ECø¦$hyÒg¼¬Ó4©#V±À·L~Ó5¹NìØé,´Bè' kç n@ç¡ >eè5Ç®mкoæQ|,h§²BEî¨sOð)Ó³¡c¥k¡3õæ[~f¢Þ}J36ft{ÆÆB-"H1°Hã×|i º>oeOEMÓõ1Ùª1ÿ±D!HÔsËäÜAÚ'ÂÒ|29§Ëìb5þ;äÙ'°põ3¿°@GJ,¤l32$? "¿¶æ{Ù4j¾ï9u1dâòór¤hüÓþ¼ºbì?:=s -FÑ~ï×#½l@F" ¯Ý?qv=.Añ½èF«ô<NkU0à@pnI@ÈèõÍ}Nt¼WäwrÐÑ-bV)Èúé.Q~Á;a q' R°b5¬g#oP +t}Cp@SÒ¤7âÞd¡³!î z?Ù Ý ïoPf"QòSpæâÞ|cÕ�K>§&]ß'ÑÞ,ÀZê"!ð´Ô-ð:ºgäg(rÈùxÛïõ0âÉ!½4ú6hOÈÐÌÙ.a (º7i#Ääâ¸=÷éR5èM¹DïM Ä|j²¡0=Ǻ.?Þ.çí è iæUÐßÏø1i¬[´èôTæ7 £[;D¬Pg"CsBÎ[8â»U~©§§¯µÔ½ùÀwêt[Z&.veM&s`´gFÁ©�ß"=5B·tWÇìòóì³Ôíâ/<O=²º*>à è(=ô{Eæ=0Cl ¬Ïî°6o@X{ª�åj +Øk¡vîQ&Z ë©ÈD µêñ·@Ö'Æ|×19A滪ôl¨{Ó·ÌeÓ·iùè1+jb$®%ÐĄ̈.Ð ~ öÌNxä±p¡Äq}-cļæ{%ÚWÄC_~^v*LÚ許íÏ÷E®\©#ó.¿ïhg» ýëíl¼>ý%?ûÑ8ìWpÙNÁX$ +R5%èÌ¥h7 ?g»¤%Íг.¸ Z²DÂaCÛö{GCÛtSÈo@o)l.Å@èù¨DôóCèhßubÄ-è iOø²§ßî^Á¥aÂE +(3Ú�ùcúl©gï[`ÖàMm*Ô+Î<Þá[@`Æ`y¼è-pDÏÉkcUH0Ò:XüîchNÐ<Úå@Æ#T¥¨õÝ;>|Fþ¶¼ +Èe\!äúƸAU¤dU +X&ñÝ÷xo«{Ï(4 Z4x[]¨IôD^h9¦Óë"zQÉ)i& Ï&RÀY{9Îm"Çä5¨äY"HïØ0ki±Ð£%Ë|à;Í}´ ßõ>%gýÕµõAÍ÷úknUû¹ÞËËö{¿c9ø}îFð½#RsvÂÒù D�îx�øÁ²&¸Åâ Gû¿´grÝ)s?g`%¢Ã7.øä2÷Ó5m7ЩQÚrFbèi¹$ )Ìòsùâòq)e£<`M('. @U HnM|Ör!# éBsÄ ð +MDè]³ü 1nÎĵ¹îHv!Eáô=¾ÛP·âÓ`8oe$4ÿfÁr¬¤~¨¢OL3h`RÐæ½ÌwC§ºmÒ9M¾°2×ó_$¡.:³P·"B³TjÏN~£+`]A÷dëzZUýü8^¤i(©`ÓXOÁ) â9qÄí[Ô;0×.äQKLÖÍOccȶN@Ãή¬Ê²±îê6é¸ADC¨ÊEèñ4 +Òæ+û̧{þ`¢·xX«ÿ½Îh¨÷$^'Gt G°lÂÑ8 ðn©;/µGISmK}\CcÙMroÕ³!ßMËîK}ײËÐ0Òz«>/*£õ¶+tråVRÚEVRj3G=¯û ÚkÛ[K`Mä ÐÀy°.ÐûÙEdÞ(ûxIüú|ºé©Jªµfqݾõ±µ^û¸Ê;µ%õËp ÐÛÏåû7¤ýÜ3¶äIûösÙ ³Ñð×Iô~B¤÷ôîn òy*5#ܬÃÏfxÍ÷qÑÜ,^4¸AJÁùOÎ>+E/£!£ xPº¢ñ0Å˺é:ú=È6p˨æ\v t <$¬Ãô<¤J.E+ú}QB½p¨ë={a +)Òª½©IÏ$ &¥CK,êÔ. Ãg§û%²${âÍ,¤#=)ÆÄg/¾!²+ñð9X{¤H)RCÎ`þÐ(κd S_1Úr÷ +ÓÇÞ¬ð5ÖÇÞl5ÀSÄÇ÷Äæ1Nø5ÛïìÝ{&ÐÛ異7 ò-:Cvƾ©RúÐHФÓa³àÈ ¢àP2lç¡ 6«Ï±3~³ºrÑ5Âý󪽧trªÌ¨ ¬è½ ð[0p¥½¢Û§S×ÞCt,§3mëáÚ·DtÝ B×+Ý YæËy¸¾@6ì2t0Y¥'X|Ó7ÈQT'|@5vòm?sòÏÓ»N~-3Ê eùÈ9È3¦ >c|¦±côö.§pº®²mWͶå£_0dË.c¨Lv¯ +Êúè/ +=Á¿S6 O¤z@Z1°m*Ã,j2½â¯E&W;%«í{¨L2;¬Tmº7ѱJaÙâ=¨m=@ö{k¬ÞÑås9ø^1ËçrOºk´ÛÃ#[â-Ö}%>x¥ºF×sjªyáí}^ø.¨úo_k>'´òZrWwùzݼY3ø>ŽM\-Ê-À �o N̸±ãûP*ÛVP27HX¾æNÖ¯%wè^Ô|âù}\Àúîô�I¾Â>Þù\ £+L©;Aè(pòર¼<cg÷¶*tú 2°WT¢ýûwNs,+>sùùtØÚ]ÀS -àç#2ð÷VÑ.J¯ý÷ò§l/ m,b IЪ±´TXÞª1ÆÛ?d¨-õÚ*e>ïà9ª9?ú}²«Öüå{=è¹ ó;¬ù=\¤NÂÐC~k6ÀLI]7 ·NضXÀ2ûG,ÀXê4¿GVèû®ôÿ`Rc¥ëá¤)Ò]''ÝeÖ,ÀújVs®½Fé·@EªÏ䵯Èþõå¼@NßRdE[Ùx)S.xyÎoÉá +U©vÝ0@Øç¥ �äñÖëí×ô¹�uqoÑÐ í³ Ô¸±`RæàÈå)!&�%AN h°¡ ] ¼fI²¹Mó]ÈFÁâmÀayõXôS6ª"ö[µ÷÷ÆÄï£7&bcÇü¦ R@ó7 Ã3yºTïÍ 5£)`Àb,wÌ·PËXÈ!õÝ � ;FBã[�½%±VѺ¯@®3³æÃ÷t?\2Á#]æY»D¦Jó5UÊC%âsÈ0irL)Hl"9ÇòGàßc»V®ù-¢&¤¬ á+« ¸|/iý>=<,´èßGãù^ÑuIð)Ý´ø5±µÐ¨_;ìB×µÐ(h½C®¥e_ïðDÉô×Üz3^¾Z�WeÚlïóú¶*¶·,s] ½£)3¢ gÐHèÉj6«xpgàCÖ!Éûô§QÝ~¯ fß¾Ú®·Ðp½©ÛvàHª èIµö<Ó·öú¦Ã(l6üû>ät|¿�Èpñ5äQ)ð0kû ì?6TEß3|À}&ºÃ' sD(a»£åûÞry._ÄÜÇíxnx@;(RËó¥hG ·PV¸ÙC0áúlH¨J¦}=°L`ؾ(X¸$x`WFZDFâéݲ>MêaKD¤lâÏ[Ø {FB +éh2Y#,<(#%RHê ,ô|ÀÀôÒø®M¥tYk kCD 87Ô¨ £ÁèT'³í¼D²Gzq²kHï¼{ëÀ:ª qJåm!×tvQ`ÔÌP+ö %c zB@²`ôhÞÀ~s¨vöú5ï·I¿yÖ®.° Ç .@h° ¤*NkÐÄai@°}ÊÈll(?ëXiÅQfÐÞªêÌ ©µÔåX`M1n¿×³BÌÕi? ÎãØ?¿u}Û +¾wåÓ$.ä¿ÔÒÿF^Ðôx^Pú¬çç]8ó,Àóôû</hFß;òÐù]yAE^qÙ#/(v+âalhRÊ ÐY¦ÔY·¼ ¡g= ÎzÏPÓzbuPZ=¶:õN�},Ìhä¨ä íÃ-|íʽå§ñõøj¹IÁàñ`±Â[ÞCKn|àÁ§KYyI²òiÐßB~:#+¦1¸�]#�p¯;0gÝvðj'�ã#ì£Á²s@g»³¾t;ȳ¬öΣÒ5rg^£Ú¤4Nä½G¡4ö;à%á&S*MW( w °VÎ:lE"nV¶òÞÆÇÁd`¦@g¦�Ì|¡ÁtzÚ'._ó·8ç( d`0µ¾ Ô:í? +ý¬Ø1Q}°Ê»¤¢4bäI´PèË~ Ê=|h©R¤×ùæ¡ê íÄ^zõàR2_ù £Eü´åß"éVÉBZ»[(_ÔÊÙ »æm \#9Â9¨4ü.äE¶Ö '.òÓFda O[/ +Eä"Ðé²@ë'|@ì/ì÷/ù|U[ùû8aÅï|P +â§ê¸ÉÅ6Nx]0øÊº^á+y|á_ûdè[èKMco¿÷´¢Lpz¶HÆógCÍþ¼l@ïYñ·á¿Ý¹pÏ@|ã³¢¤Ç¹L°ïàNQÒ^gßßÀjÂÏzÚXmäxÙ£cx ãÞ.ãV?ç:æ!ð¥Ðº¸ÚÇñr}]ØQUóu®, eÕäÍá4M"Â+ÐÚFi¿ô} /¡,ìé:Ê(E=Æ\õX¾Ë±3ÄFè!YslbÏ/ÍrQb ãb,ß' óÂÄõ³$ÖHÄÝ$b=ØF6$òÖw$TÊ[¿dÐd&Hê}VKÔ41èè)¢QiHðgØKÂèèäøÙkjÃ`Çæ�YÞ"G+˯@>Ü�h8½=·½W0ä§`eUÅ`kúÈ$M+6'äé +i¯±Ð© n@Õd¯ÓSZÑ5A¿Jo_ ØuÐMß"æ\ç�çVt%MP +$ü{(ÅzITâ(Ò£®åh%á¡w ÷,X +Ǩ2Ál¯áÀ3£lXC6d®ÕÞDRr(ä»N*cVa^¡IÓ[ ,Ëo/L<HÐ@OòʵmLk8²¼lÜÐ 8²üJ@4PzT¨1".Чuè]:¦[[HA°âBø ¾ }¿� +á!Ò¸gÞ0O¤±ý^®¯ ¦ïEUÁôËBÛ*tÙÃR@GL)ÀªÊÚ è3kjëëôïµØu½²nA;Ð Û°O7'´¯pzygí6¤�CbH!ß¿8T¹ï)Ú·¿ÚXïÞl?î-ÞÖøRÄU"ó°c©Û~çä ½§{±~yûÀLPÄK`V¥ê]øÙU}Øö%xBm¡-Ø�ÔÑ´×ZÙ×Á]zË6*=¸òqíË\UÑÜPP×Òö{©² Ë<Ðdì·ÊóÍû«ðö{ ¼ö`:X¸¥?ª=`Sô6D½Õ´ «S0Ô- RÿÑ Ôì´Ñ±Ó»,hSðîò /phÒÌ/°¢Èö§I4¿7*GCônSp WØSòÐE"<Ü@_ÁCíú Ý# !ÖÆ;#2)8¯c) ÷áHÜÁéå1LH"W4ß 4ô1 e»ÜÆè¹}ÿÇà5ED#guèå{}T Pï9B4¡«ÑBÞ×3¡ÔU9´4Ç>èIN�Mݹ;çw_£¸¡;pD°¡*Ô³ÁÒÐñ� L R2ßÎà5q4´Az×ÈÍ�TeÉÖØõ®.K�NHì+C6ì·Ã0¾Ê>º¤º@KBE~Èó§45òªÙÓ{ hC}¢$vïô~%+dcA¬5@L çÊì& 3´ë$ÌP)$°Ì T«ñÃú\BGìäëD¬Mu»&!í'Ñ=ÁµÉ9ÏÀªq4ËùGFbÙ²v½ +îùa¿ÞHlõ*FbyAàh$¶÷§@oaDÔ{w óðÑ^p4Û+>úÄr½. 7ÛJÄKF #é5©Ïj |DDG#±DY@NÆÑ¥¶ÆÂYp4+µÖ<4>à áôFb%ÁèÄÎ`tû´ë!¿s"Ôdí±·qi¯l˽Fb¡Îoo!×F» (7ÛÛåö[�pÑÈH'YHú±ÀÛ k$¶¸ß7£Å#õÛátr35ë?ÓÁÑ,Ôb½´ó4Ô>`·¤Áê_À- gD"j°vO0nwÀ{Ð øq{ߨOq±¹þmeqõ:Rèò=ª�"Ѱp~¯×¾©CM«1í7¢i-nDÓâ{FÓܦ 6À£iQã!MC$ôDÓÚ'¶ÀôhÚ2¡8¢ièhÚúW4¿èEßgXÞú�¼ó8äÁ1 É5!EÒ'×P=næñ@h~RUEÊBQP÷ ¥@8¢�Bd$DJH¨F°ï¡èáT¨E<?T"*ÇÈë3±ç¦"u ÈI@x;:æä£õ6 ÌëèëMøyBzÄ?¨Éåpd +PQñÙ@njR$ epV¿2xËø÷t98Qà °8¼B¹6Yk ûÊz¾¦(«Ä<s½Ôe:ÄCà9æ txý+=1"mÒlø9vL8DÏ#1"ÈÑ¢z ¡'g°O"´#Q;ù]p Ò| ]â Adô¦{B¹DàôD©èy³'1G°'1CFr NeÀH£Î]WV_å½òC"â0tg#¨ òjú`½È=7¤Ñ<!IF¾�FG"'@Wíq .b~VؾÁ }&;jzº +Øq Âfâ¥v¶ LXî{æ³2Ú=)ægJ½¡c|å}¶4ìÓÕ8äázMÞw ÄÞ½¤A¨e$)$| $è3Èyû® @/M5õBB½4µÎ½. c6"£ùTKScH*èSß¹ ô�ö9ZhE&Hºer¦°A6Ѽí0ß+Mn@Ï^.H¥©g±vziêÁ8JS ð§4uùÃ{¥©ë1=v÷Øî¦®èAs¦n|ÏäÒÔ4Eít"Ô4kO2Ç?,(ÀE OÄK cµÂvMØ®Ñç³EÄ)wú3»U&ʤ¾ÚE,O#ñ&^H9ÞÄTÐä¨GIXéàáßDÿ1äÎ3iAo#{Yª 4è3°6:»x¹µÑ7ö§`ØëBA9 <fÑðM%ùÏÐ.r´ÌA{y8²õtØ0_líï*í"G;Á³ÖMÛ4ghë9ðÖNp`[Óß/¢mÌRàVÔ¦ò|×*1Ðn{ÊÄ«hÒ+\¡êW(:̦ɧXî5¨.ÓgþYê ªKMks¬Q7àa¾�9ä×øDÛæCë4¤Håǵ³6õÕÁÂÁÃA¬Ñ~DßË ªµ3l¿³ÙDû½UÐï; +éáËú¨Y£ µ )(äÃl,ï5¨3 &³¦ {ÿ§MÜ $´í»$\7¼ýV¾çý¿:Ú°ÎËzSÐ8! +:Jú¢9èþy©Ö/ÃØ8Ýk +ãôîóB%6äÓ�ئYYâ`tÍ ]ý顽@ÞÞtõ=»ãmsjºúþýÀ+ÀǺïþýîý¶Ã5¾Ð¯ÏV,¸¡"4&¹.5Ô±ídñ:wgx<[ýà T·æYài$ô®<Ü+2/X²ùu�/T|äö jóË÷r²¶õ¼ c DÖùè*FrÍE¬}yÇLCw6ùùr¾Ó=Ý@Ô6@ó +oyQá!ñ¹/=_2d"¹ç¥_ §·í4 oi @_7 gêZØæ²&jcSÆrL¿¬¶]McPí¯6ÄÏ$M oGÞ©|¤ -[|¬ ß'{û¿¦*ÇnPmTñ¤-@ó\ÑÁöI¨;²v |è ~MüÉÊÓ¥Hnÿ "Òè{¼EºBk ¯PÉ,Wûº}è86H�ÎIÆ$oPÈUÚÔHÆjLÇy'|î?wo0GÈrJ {üzÔò´íûkN¡þ´J7ÈÌ©¡Wá»Í= Ç&9½BâèGftàÈ4k`Z@g®¹Íë¢1!-¸Ø¢hâ2p}ÞI¿GÁE - \¼{GÁE ë³à¢å"GÁEí@/¸°65Ã#Ð[HzÁEIG·¡vGÁÅ=X¡+zÁE°#\.¬KÍe=qúô}jJOGÁÅ÷¹½õU�GÐ.öÁ+O}°Ä{;Ô%ceEãÞØ�î@/¸µÛð<vd8äEsõ×ê ,)T¼IÍ� 1o¸´Ù5=6$pênw´'z?ëe~ßî©$ßr¹GGã«X; ]å®S±¼nédvHi·¡8k¬D0ØðÂJrÛª6üìsÐîFájæEj}¯ .âh¯ÌªF |0Êó§|° >p褸 �DÑ×ÑÀHÜ/ó@bi®�E°³P»_¾×£Ñæ+\¾óÕk¿ýûOúfµßßèu¹>ÉR³ÎHdK>5G"«:.ï9MÜe3x¬ïÕ ¸y ¸Po>·QHHÓbêÑö{ÀûNb@)PG(ÀC úÌh.]+H(Ç¥µ¬Ñ8Z|¡�:\¬2°jÞU ¡ÈAíoNíP{&裹mÙ ôÖQÀ±&µoàÐÆí ºË)³!k^ÔI®ç+¦> +êGÿ.¨JQ3:äö=$�Y@ÒHY4Ê)&ôé² «2)jßÓh.Öd°¹¤éâÑÛÈÐTû?Çz<jRG<¾@ÊI¢ ZTx<TÒµ¢éaÊAP:&!J~ÊÎPèÚ¾¥{(³7 S¯Äz²vL: ¢Wk ¡Ù$c¡äg¨Eó¼r´;wYÏVõ¨tm$Æ´z0kz¶.Ëø%çyYíÚu9?ÏjÏFmYµäüoê>ÒÛ¤µvmY¿ò|õ+rÏDtuV íÛ6$É ÈÆi=>>iø²U\aaB®I[ Ý¡èÕW1á¸ïò-´#X�'0ÔhèÅÅ=ó½Hy02{Ôoi_àm[áÐôøû �B"¢9[¸~°¡-èá3xÙÞ(¾½hÉ´pàè"GC/Òã}pGG¨R@Pûð 0z±§-Þê¿f`#èµý'äÕAï¿vb^ÍFÙÖ~/÷_Ad#½=áØÈµ�%½]|B4ð?öøÂuPg¿ìSGï´,²2ªÇço±ûQô¢ùùÑË÷2ùÎèEK?4õôn³èEK½�Ħ~´(ÑãÏip8/8ÞÛÀª/è}ZÅd®úe=5¤N°¿@ÆûBmSsÝ^¶¬ yUBÐ˨VLAÁS®<´@^$&¦Ï&(E½¡ÈЮGW�ãO}Òêñ,h> !.DÆ\cBè1W^ÆßQÆ ôyÆXÿ^ð:êÀVQcGûLÆh£,ÉñKEKb¸WÄs` dðõÚüÚgf¤Éxäþ¾{OÚïóÀÆÄ´áWÀO^@Rû/ÀïÍÚSÀ#P è%< oÀ1ôë}QñØ ä9ûÿ¬#{·z%ÙðøÛ!¹b÷ÌïØhðá +¥Xb-¦ÏZÌÑh'Y�ø²¬Ï:²æÌYGvÇ9Îè%AÁd3Å·Æã§ÄNbúI¡kð;¾}nQ¥úÜ+}4è5|Æ. + 3BµÃÎu¼7^°R´ P�Âö8päØÈ÷Ü{GÝB¶üØËôεh0×f×X%àèá²:´qW" +fU-GLQhgsÛ¯;�êh1R/KV϶õlÍònäEÈ(͵'â@BvAJzÇ$râ0Ux_Iã`[»� +¢r4S©íz]£ÍؽAeîá#°�b$ø%H9¹v"ùȧ05H$ó´÷Ïöc·!mJÄò+䤰8ï ÏOq¶÷âÌgvx:ÿþ ôÊÊ ò^-/`ÌljÇ׳ýÓøö±1RX#YÀÙ{!V¯µÞ1C} ×zÇ ëÄ=íZÒ¬Ö{þ0éµÞ¨4¹ÖûaåjG ·0Ë/Ë»R¥åpË +pÔzGU'RFZEFâð¡¨yêwÑÈ@DtÔz§IfꦩæÈ4²à¨õNÓj=ÙÀ`éߢ4òüo¬Ò·±&é<aÐ=.ü°û¿t2j°ÕòãÊ5µLÈñÃ,°ëÈ\4 ¿òå¦c9ÔÿÁ~=4Ë/v +nc×5-\ÀÁÈ}a©l¬m@#0Otf34³]@êØãöK�mKzà- Í»RU@ºÝ>Ä¢2Í÷KÄF9 IL4:Xã©OÊñ[_½Ðã3æö\ò'>ë cÐ }Jëu©ÒÐ@ʪs@Ìõ¥t} g¹¬à|¥<#¸À;ÐAáÑÀp×upvmÎöHñëþå+³'8V./ËÍj¾Úu÷Þ|µë÷î|µùýÕö-nTÛ·(Ýr-_-Æ�¡6Ȼ˰6f6o6ï¬ï÷e¾Ôü]/$p}È7 @5ÏdçÂ[ îö· +Ñ~/røòõæ9ÅïjÆÛ z¾ØÔgÖè$`oGRÀ»@=êøýEB{ÁýëFñ3)µBw(Å|\.$Õ¿»Íý¾#>mÍ®8î°ÑîjÉH°øt¬¿WE*ǧãH ǧcm{Ò~ïOâuÑcz|Ú¯ë:×pz\w ¿f©æ Nþ¨Ç§Su¯èvmVz%¢ÞºOFZ Oïy;ÔrÝN ßÞ[,ëõøtÊõøtÊèMwħ÷¦'2ã:ÍH§;âÓiÂ¤Ç§Ó ÇbÒÌ{G|:¢F¢Â´ÂDu¢JÙ¯^ñé}0X¯>#>zDÌ«u9>kºÉP)èEµNs·"äD=>mð°"&Ùä^¸GòW;ÐãÓ¨4 +ÖHr|Ú�«¤Ç§óYYOç +®ó +YYOï)x@ôø´52OÁ¤Ç§36óí¦¬)U?ïM #ǧK² ǧ ÄxKyQ'ò!À«FDÞ"Ü_ày ±g$Ü»H;¸|¦à¹,7ÛvSçλpB ífæîÀÑÌ<Ã8Ü¡,Ï�÷Þ¿÷VÛ¦¶[pħ=·°PÂhÚËã¡×¬x¹9À½·px.ðxan¸÷îv·ÜÖÐýºÎû<Þ 0à¶,¾VîÊlpT-Ö!í=êîXîvÜ +pÇZuwÙÞö3Mà{FÜdIÍÍÔÓýòáï¼mÈBÊT#[áfCùò 82#Äű�¢XRÍEvTYлà騲B8¢¬¶ÐQe³TøÜûÌ_»i(ÿ¬&ù^núW[ª´ßëqÚ÷ñòó(¶GSóçßöbÊ´&µ¿¦2#Ü-ýÑdë¾Û\ánw°ÊdÛôy°ÁqCÂÔ» tùþl^ÐG,¸Wx|¡²2!_`Õõt¹@ïÈ¥¸éÖ´¿ñ¾BX£ÐO¾}=£»×H( "<zÂà;Ô7`!j÷ì{¼ ¬)Ìm.´¦0w¹ð´G\H£ü 1#Ê ÑXS|�¹ÜºÂ)À£ÜPèaú²|¤ +ãu±#L?£Õ¦_ð©§%Çw g\YW åþVÖUæºGC}DCGC¨ +=.tÔT@6Öû¡¨ä+HDê}a¢¦IxGýð&Ûë1ß§5¡~>füô°jÐ;ÚÏSµË ôí©Ìu!&§+±éô õP:櫯¢YÌÊ}¼¹fT K?n¾÷Äâ,W§YÀÐ <±¸ÐX\8jE÷ý^,΢@í±¸Ú +|x_àäXÜâÖ¬ÇârÚÀX\ÎôXÕÏY¤Çâr5"ò±8M0d$JÛG½úàf(ÍúëHù`²àH±XEiäÀèsó© -)éÙ +Üg¡'H4¶Ök{ëÂÓj i á1ê¸ÏaG>ØÇ½?Íùfø Dø÷Ø|þ3ät÷.A§K9ñý}Þð hظ7â:m`üêÄö+pW&@ú[f°0ñ]w´<@/¡}Y@/±´øfþ9øº¡ïõ +:S÷ò½p öý®N²¼ÚÖ±±2ËÓ Ot�ö®ÐPè¥i[ Üå¡ÚÙÔéEA*k¨½¢ô̱K$Gq`ßcAÑÆÄÀ³@F ËQ̽Ѯì}¶pte¯±/ð×ç@ßêsîþþ +/À\^8 czÛöÙ ìÀ£BÞ%Áè ©~d1>ÇB`±GwÈbCì®öÿ°hòCéQXZ#A"V)Øî ϯ¢¸UÁL ÇÁöN2ÝáäÈÑÛ*®Æá/z÷=N¶é�¯pÇôïe9O÷æ¡Ò×íûÝÌ,M/6ÕKRªéð1q4Õþ6ñ=¦º*S=M0OYã"ÚzcBî?3)æÏ2bkQy2úïuøÛ2âF½7â<Ê0$M3ø¸Ã̤þhVÉËv<3©:6ñ=Ñ Xê.Úü.½7F<0ÌL÷ìÓ¹{f4lê²a¶ùÆø +t|ÂR<oðÀÑz£ 1Òó°A5 gT:Û`| ¬õú}¼q¶Þ01Ï+ +è{Ý1 ð÷u·. 5¢[Cgë8xÇúÜ4KK<Üã+ܱ jÄ1k +m@+½?À ô¢Çô;5fÝÕcgVÐ@©bcÂÑ�g\,?EÑò¤jòà +¹~$ <jêÌIOhÙ¡ãûò~BM&°ºÁCº¯$¨ÝWR@o±Þ}%ÄxyJå© ©Î^QàÁéx n Éoù>;X{˧ n�ë1ý-?=ûoy*Ú[N}º¿åBª|EWjØ óì¡"³ÑzbÜ +7 'ÆPd= [æHjæ ÔT¯ÐJÓGWH;Lè%�YMtÀùåÍ U TiÌkkÀô=4"Â8ò("ÞGa .4�[íýeé0èc¬Ðåõ^Ó@ïûRÖ£ïKã[yú¾Ìð}»>ó^´vת§)A46ÒÉaù4 +ÈÔeí:ëÉì²fcNd½.f¸@·Æe**ô.ÚJóZ +ø²44iäm¦Kú¾Æ×ÒvÁ¼³tE}Xxݮ޿°èpõl@Hù¾2}Oá¶~ßá¤ëÙn@F +N¼¯ÝR@èVÇ,ÍìÒ«:C 1ÁëïkOæz:<ü.w ±Ïl»Ldâà{Ê+ü}´>V[}+bHJ!7|tY»^Å�t*ÁäDìFdØ`b°^¨É1¥`B<ä¡ !~ð:@¼½3C&ô\Räöz.IW¨ç@MàX%"~fëN4AæÝ)êÜîÀÓ"wðYwfGññ[`DäÝ)V@wx¼3Ô®Â{ã[Ð õüþlYÀ3øýÞ¦cR°´ý^&Þô}�¥&aÍ.@3¤ÃÁÂ-,ê(Ë}9 cÇøôð.,äci0 +c·èȳÅC&¦Ve\(`ÿö=¤�pÏÂØù¼Äw µ©jWÎݶ$<û¹ 9îsÂxzîp#å¤f·xp¼36@¹j"oÚè$rÙ>%Nå68tÐt9d¯Q«4"mÞ[¥Ü*FèĬ7*Gð«"rÂÇÄîí>D"MW=àpo#ÔR:J5 +KÔ4õø$ó)YjÒÍËgª06ÙhØ$#axEÂôð,wøû,wÈCz{4¡÷\oô&øËO¢£ÍÕ@chSPÏM¡#4°"ÓÕ@ª¥ABÂY³x ¤Ë N +äÇ%é3~®&̳¨FHÀ¼Ç�Ô Ð ,÷í'VÄ1ÂÈbýG¢ÉänSy$ÐËe2ö/Ì´ïX6bC91,ϪD£¦ÙG¤x3Í>®³ár¹nn¿wËÚµ2â±{ªw()ð5ßÓ\ È©my¿/ûyFB ÷jÊó"½%ô÷¬Gd¬8/ÚXÅV^miÔ-°jPlð5ëIÀÐ ÄÇjD{YO1`&.|d&.Ú2¬å,õ¡Ê Ç +±Ie-¸Çï°c{øþÀ)ÛLöNò!M> +ÖÀg z 5ÜÂ`ÞýxÿoÀ`ƾ£vÖËâò½üبÜÑïÓÐó_H%:ª&wòÉBk~_5Ùct{O`aÒyÐ4ù <PÎn@öZgt *ßðän$V®s]@ïà:©LHàp4¸|¯×ôû®é!O×¹Po_;Ûz8Zµßvo,!.>,â\Oð6!/°ªà$áhæ I%F60c»>³jµIKD4-PÐ}f%6w ç@¬î@Í7¸½sá>®¶çDÐ3âÕ5þ~yõ$W{F=ÁZr´\ô4¨#{ö¦Ç¦=!¶¥H©&Y|±±Û-D!xõ yNÐ{Ö¥:æáº\NR÷z¥F9!! +Þáu;æy'å^ϺôüE¦[`Cô(^À?ÇY¼zÑÀ±·þlî@T[¨VuÄËú_ø!^1° "gTdó¶ÛzØâ ÃÙ©|¤õY ÙüíKI ZyïJxîyku o@¶´s¥M¯ èkÀçøÈ +"Þù0cW.*>Ïsþªçìëè<ý]àÒxx�PØæQØ4ÔVÞLX9@ª`XéäY ¨%B Dt zL§Q·/}&,:ngx<TAT Ãæ{�}RàÌ"Píd=`]t/Ðõ5 +ºl�0!ÉO¬Ã÷ïßæYsè0}FË +QöÓiÛ ²9б_µß7hÀ_Òx#³Ä8D<ìÁÝ&ÄÄùabGÕ"½GKÐÏxØÑèÈ"8ÐÓ�h Íûô )I+PôÔº5t'+)b-ähó8ÀÕænÀÑæ«A9l-t/pÌÓÔSÃÑ\Ûj8a%Ò]� %¨D`to5sìÁ +Î(¤!moN;DxzZV#zZWB LÓÆ<pæyåâHï!\>{ +Ó7 wð:jÿÒ\aó{U;¤sèeNÖkU1û~¾ç¹ø5-Ò´©bD<Û #I8O*æÉø5Ö>otTO³RôU¡£=',:Àm*½=CÊQE]6L¼éÙm +BÊàºà èrHl*=½°5¸kflé9Æ~tB×Ð1]Û&^µø«¨Âð¶ÁVE]¦÷%Cìí˽\¿þ½WAiÿúxÔí÷ +äÚHûBþ¾Å«Å~x¯@®©å=ÿð1U«Æ�tuþáí ¾v÷Î<°`'Ù*Äô°`j¼¼Wãô�æÀ 7éyýñA'«-R[Õ±{1úË ÓÞ¡fPwÀ +"ÄYH !Ha5O{p¿ÇlkÓÆÀÐ5êÑhHýEt.cAÒSª +Þ£3NT -/Põ2ôJ²Püh |Ne ÛZiXîÁ7.´¶âûVÐô .r´Ú`°ÒAØ. (ÙÄÔ»Vx¹S^ +H:æÓÈú¤à«W³z4¥7âM¢(B¹'¿5Ã*B +ÕøêÉþûªOlª4£èãîlÊÔå{¹àÅæÛCº9&ãÈ "Ñ#V ê=Þ'ÄÊÉIóÌ8À_/}¨GF)ëÓ^Ýdz¢ÿåÎ/q$úï�¸�éBG¢¶&íôDÿ\ U«'úÛ\÷ë-ÈþÙÐúˬxr¢^àôDÿ½tÏDÿä:0ÖËôå9ÐsttÅYô,û2}ãToýù\öY;ßBíD}ÙB}¼½Uòñè\õ�ÉæªÑðÖð®¤Q=¡bDÌìntSåðMv23Å,#-7ñ"«Hë-Û&¤ï ø0çú½¹¹Í÷0Ã^tÑèºë�b/-»×5¿óÒÓêít ´C^F{½'õÃV¸½Ò!¬~à?ÌÿÁ-FycÀó=À«ØÄõû÷_X GÜz1:mÕIÛUbøÞ¿>sû@õÐ!C8·C·7¨u/m4aKÂ>)ǪyÞ³ %åÖy©B|+8UYébØÿãXK® lìéN6ºõYÃ,¹6HßÓÇÄ�·d l5!,7 ËFq!XÇÇÅ@÷!hªgÇ¢;tÕ£KtpáÞ_áB;\r9HMûÃW>táë÷Qsà]ùñȳ¿b¸4dcVv&è¶;p4Ñ5mÎä¸díE¦4ªÄQ°¡M ,àýXHÙ @©&·x´ömÌïÙ þÞ3þ'´;è9pÀQ#�Íî*JA(2prüHSLÜ!뤼§è>;)7$�{¨'kJR|mWW½¡èQ%à$¶�²+u£&aUèÈR^Vmãå@#h9äÈZÂ2»NÙµyºk×Z.~IÂdá}R +`Ö6PÌ È Ùd<ó}¤fÔ jÐGbÈÅBç;: æé3.ÈÁ È Y|M¯b¢~²4ï~ ) ¢ó5¡¼2AM¦×`øÉ&ÝÙ½rðû´;ÈO©b&¬5`UìR0idFéY>2J)Æ`@×dXZ?f=ÓÿLm¿P"ù<ÌD6þrHaÿÌö:Ìcµ Ù ÕF�í¨3"c¨µB!u1n7 §ÙôÊëävÁÜÛѼfA$Ë'O¤m 4=pBW 7Ü¿`õ¬¤Äôü_ °ÄÛRh8¤^o±ÓèÒ<f¤É=P)Ѥú #¨ eàÀSHÐC¢õ,PëXë7 {×qÅB¥kkô±}qLÔOHá8ö3¼<Y½Bó=H £cr¬^¡YàAX v , ø«-0£ú¼*¦àrØ%%H"G=öD_Dy4}ʵìeÒ~ ^£3| ³÷Lß\9ùm#KLf¤î3ë¿j zÍ©ÏrDiG®ï\MÓù0MrdÚ0' +ÝÝ Þ +½NÜBH²-zY ÛÍv IåÞK<�;d^'=#>,{×IIé)iP¸(Oç/DìV*kbÃʶ%]O?q¾÷¾CvÁ<qPF`+ÿÌ:9!»±uBe_üÄ×t�93)¯,àHÝ[O1¬Éßù�ýà§s2òi §úhÀÈ4Ó5L@8R˳w+Cp[#-@sm#ÚcBûÜ)fî Åp-e®Ë½ä°:o@fÎë{fÑ«uxuXÕâæÇASúQ[òþÌÀíÜë{¾áyñ£7´óîÕÚ+op÷4)°ö:xxN øyOJ`¹^PµÓ³ÏïxòÜ9\óP]óë9Ààîj+öç|ú8iZ6âçòûàÕ!ßôûÈ!Ô5ZµÎï3óéùcüybí*5"ÚòË÷RÝÛwHó8~^¶8 +ÏÎQÑôçg¨wõ¯Uçµû_Î8ðŧ,Zòààówã|�íä¡ )Oâ ôäQü �Ò;0e«ù=yMDWï:®=:ü{h/éÕâ5½fúû_oío²~r82xèö$¿¾ý"<´ÛÁðhðd=¨µe%ÕÉBGí³ròåsG¡úê¯Ö¶£N}oª}OÊÔ§©¿=OzõÔÛßw©×²Ü~õ8ï%ê\¿§B=Áß×Ôú}G}úCùtüç)O¯ àÖHMÎÀâw$çÚ´i $´0<ÍpAi:AËæÀ®ãÒvQ.L·-(-ê ÀôWÀÁéq{îØp%Ý?2ÝàþÜYútL~³# è÷hà2A9ú¤¢R§;¬:_<¢û^Ñí½þ» ¿OV¶áÜëö~°2E{ªí¸4½ãrÚG¹ù^7}AûóËY|@}í÷Jür¸ïïÕÑ×xÑè{ +ÖÕxQ³ ûoÁù_·ÿú«~ñËð#üøÕ¿=xpÿîÇ.·õ~õÇÂWÛcµ²<þßüø»ÿñçøý¯û§ÿüí?üø§üå¿üÇóýÛßüø_ÿïÇ?ýËÏ¿ÿÃ~üëßýú_ÿþÇ/¿~üËïûï¿ýü¿ûùç¿üÃ/~ñ·¿ýíëçßýþ?¿þôÛñ¯aÿí?þçþÏ/þòûw_¿ûùøû¿úß?ý·_=v÷ÿï~íä +endstream +endobj +511 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1086 0 R +/Name /Im476 +/Width 18 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcf<Àü¿ýûâ Ü<<|ìì Ô�Aü ¡A¡AÁÁÁÁÁà�^° +endstream +endobj +512 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1087 0 R +/Name /Im477 +/Width 32 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5Ä¡ 0Ðߤ8�@Géc&,p²îøÄ{ÁÄСHI Юö4ÒB +ÜSáOºþ¦ÚàK¦AVÚh¢Ï1Ýõ;µ$9 +endstream +endobj +513 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1088 0 R +/Name /Im478 +/Width 41 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÌ1AAá³Å«TáàÅ \áeBçJCD +Gxn ÔÙ!/ò'_ù×gµªs:¯0cúç$\ ·£§è5¢,T÷¾lKó$;Èç{÷^äàÞÃ< ½sóÑ!Û¨e,5ÕÇ|�D$c +endstream +endobj +514 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1089 0 R +/Name /Im479 +/Width 28 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUñ @Á§$Òq�¢+XRX8 +5¥A'sFø(&XxÉ¡¥Ç¶¡ö\UR¤!uàß9wù|å÷ÁDAçPºÒ2Ò2а¢vx�ÔÝ6 +endstream +endobj +515 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1090 0 R +/Name /Im480 +/Width 27 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}Î1 +0á_º¸¹vP{¡×rÚ£½£xGÒÃ7Çr ´*En¹Äf~$céý\XØëì¼R¿Lk¶s·CeÒ§}Zæ}¬-� +endstream +endobj +516 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1091 0 R +/Name /Im481 +/Width 32 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÌ1 +0DÑíRÎ Ü^ËÎm±°LÀÆbq$bmñà3ÅD¿©RF·F©6ìTÙÑè´ºÀ.Zº)ÃÔ`|y¤®ñº¹B4 +endstream +endobj +517 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1092 0 R +/Name /Im482 +/Width 46 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMű 0P£îðH^#ÅI¬DIE<ZFñ)SXä>N×¼7¢ÆøS\|ªÜØ=vléRCºÐg¨1K,'ùø|d¸¸¶u»mЪ«¿JúÓ²±=~¶<<g +endstream +endobj +518 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1093 0 R +/Name /Im483 +/Width 30 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xm1Â0Q¸ 0e +$"?f?-ù%>påU,¢AJ1ÒhwP·³÷×ÐZemËu%ìø¾-yw.LêLÀýÇTy ´ei$ÉÂm&YãäÄöÙFÞJƱ9ë +endstream +endobj +519 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1094 0 R +/Name /Im484 +/Width 12 +/Height 4 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKHø� �¨A +endstream +endobj +520 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1095 0 R +/Name /Im485 +/Width 47 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xͱ 0DÑRÐ%£ÁhÅ#¤Låí +¬×ù>IH'bG5Uuiª_pÇý¥=É6sA´Ö´cº¿ºÿ]o£úFVóhjìÔa# +endstream +endobj +521 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1096 0 R +/Name /Im486 +/Width 24 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`ÿÁ`ÿ¡ÎñO=ózæõì dÇþýÿ�°Êêÿ7@�·©3B +endstream +endobj +522 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1097 0 R +/Name /Im487 +/Width 25 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`øÇÀÀÌØÀÀÄ<Ì 2@ZA-P1ó Ú>$,Á`Øp +fn0b Å�Áì@|ñ ®�b�äú³ +endstream +endobj +523 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1098 0 R +/Name /Im488 +/Width 20 +/Height 1 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ�îï +endstream +endobj +524 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1099 0 R +/Name /Im489 +/Width 21 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°ÿÁÀ|¹Ø É !J(`xPÀp ¡áCãç;�Ѿ +endstream +endobj +525 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1100 0 R +/Name /Im490 +/Width 27 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÿÁ¹Áñ�Ã8.`DÆ0pÃv2ÿ?0�Eá(ªP0?ÿÀÀ��½>U +endstream +endobj +526 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1101 0 R +/Name /Im491 +/Width 16 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`f`cà``0`H`8Àp±$ÄÆÀ2@ ¤C&@á8LC Q�á(Ù +endstream +endobj +527 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1102 0 R +/Name /Im492 +/Width 18 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=̱ 0Ñ/Áú!ØX9£ýV®7QW?6¸IGPEµOÒú3¹ ç§(vA +8}¦ï8·|�Ëú +endstream +endobj +528 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1103 0 R +/Name /Im493 +/Width 19 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x%Ì¡ 0@ÑOÓ¨è@æF¨DÞhåÆ@Ò@òôc5vEÝ's� "äáá9pXtÁOxD3ºQ*µ3ÊÉ#Ì +endstream +endobj +529 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1104 0 R +/Name /Im494 +/Width 16 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``à`àa`a`Cv8ð!Ê0H�¡&�á ÌÌ@%<@ °�»Ë +endstream +endobj +530 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1105 0 R +/Name /Im495 +/Width 19 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xchH`üñã?F&$ÄD?XyØØxØ8ØLòPñ0<ah`h°`p0`pH`P<À ÏÀ��>ë +endstream +endobj +531 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1106 0 R +/Name /Im496 +/Width 20 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x˱ 0�Á· +¤´TÀ)ÇcPz0 +³SPàHWþ³aâ¦ôT°:DõÐ}.ä¦l,µfçúx$#Ü&læì´à)b& +endstream +endobj +532 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 593 0 R >> /XObject << /Im204 213 0 R /Im320 333 0 R /Im497 534 0 R /Im320 333 0 R /Im320 333 0 R /Im202 211 0 R /Im208 217 0 R /Im320 333 0 R /Im323 336 0 R /Im199 206 0 R /Im294 305 0 R /Im128 135 0 R /Im129 136 0 R /Im92 99 0 R /Im293 304 0 R /Im324 337 0 R /Im133 140 0 R /Im360 375 0 R /Im74 81 0 R /Im136 143 0 R /Im74 81 0 R /Im129 136 0 R /Im93 100 0 R /Im102 109 0 R /Im115 122 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im125 132 0 R /Im74 81 0 R /Im130 137 0 R /Im74 81 0 R /Im92 99 0 R /Im104 111 0 R /Im98 105 0 R /Im103 110 0 R /Im124 131 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im74 81 0 R /Im160 167 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im112 119 0 R /Im116 123 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im214 223 0 R /Im244 253 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im100 107 0 R /Im100 107 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im101 108 0 R /Im74 81 0 R /Im119 126 0 R /Im94 101 0 R /Im490 525 0 R /Im240 249 0 R /Im241 250 0 R /Im259 268 0 R /Im243 252 0 R /Im243 252 0 R /Im286 297 0 R /Im281 292 0 R /Im255 264 0 R /Im282 293 0 R /Im256 265 0 R /Im241 250 0 R /Im466 497 0 R /Im260 269 0 R /Im338 351 0 R /Im243 252 0 R /Im287 298 0 R /Im258 267 0 R /Im260 269 0 R /Im281 292 0 R /Im241 250 0 R /Im255 264 0 R /Im258 267 0 R /Im335 348 0 R /Im417 436 0 R /Im241 250 0 R /Im255 264 0 R /Im466 497 0 R /Im243 252 0 R /Im240 249 0 R /Im243 252 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im241 250 0 R /Im255 264 0 R /Im416 435 0 R /Im240 249 0 R /Im260 269 0 R /Im281 292 0 R /Im487 522 0 R /Im259 268 0 R /Im281 292 0 R /Im258 267 0 R /Im335 348 0 R /Im254 263 0 R /Im255 264 0 R /Im260 269 0 R /Im243 252 0 R /Im335 348 0 R /Im335 348 0 R /Im281 292 0 R /Im282 293 0 R /Im243 252 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im491 526 0 R /Im416 435 0 R /Im416 435 0 R /Im416 435 0 R /Im254 263 0 R /Im349 362 0 R /Im492 527 0 R /Im498 535 0 R /Im494 529 0 R /Im107 114 0 R /Im109 116 0 R /Im108 115 0 R /Im117 124 0 R /Im108 115 0 R /Im101 108 0 R /Im97 104 0 R /Im199 206 0 R /Im293 304 0 R /Im293 304 0 R /Im324 337 0 R /Im74 81 0 R /Im109 116 0 R /Im100 107 0 R /Im101 108 0 R /Im93 100 0 R /Im214 223 0 R /Im97 104 0 R /Im93 100 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im98 105 0 R /Im94 101 0 R /Im109 116 0 R /Im119 126 0 R /Im311 322 0 R /Im74 81 0 R /Im128 135 0 R /Im129 136 0 R /Im130 137 0 R /Im131 138 0 R /Im132 139 0 R /Im133 140 0 R /Im125 132 0 R /Im74 81 0 R /Im136 143 0 R /Im74 81 0 R /Im129 136 0 R /Im94 101 0 R /Im108 115 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im360 375 0 R /Im74 81 0 R /Im137 144 0 R /Im74 81 0 R /Im130 137 0 R /Im93 100 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im74 81 0 R /Im109 116 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im123 130 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im93 100 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im111 118 0 R /Im102 109 0 R /Im108 115 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im74 81 0 R /Im416 435 0 R /Im240 249 0 R /Im260 269 0 R /Im281 292 0 R /Im487 522 0 R /Im259 268 0 R /Im281 292 0 R /Im258 267 0 R /Im335 348 0 R /Im254 263 0 R /Im255 264 0 R /Im260 269 0 R /Im243 252 0 R /Im335 348 0 R /Im335 348 0 R /Im281 292 0 R /Im282 293 0 R /Im243 252 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im107 114 0 R /Im294 305 0 R /Im214 223 0 R /Im212 221 0 R /Im293 304 0 R /Im272 283 0 R /Im488 523 0 R /Im272 283 0 R /Im212 221 0 R /Im294 305 0 R /Im107 114 0 R /Im199 206 0 R /Im293 304 0 R /Im131 138 0 R /Im132 139 0 R /Im74 81 0 R /Im128 135 0 R /Im384 401 0 R /Im360 375 0 R /Im134 141 0 R /Im130 137 0 R /Im293 304 0 R /Im132 139 0 R /Im133 140 0 R /Im347 360 0 R /Im74 81 0 R /Im384 401 0 R /Im93 100 0 R /Im102 109 0 R /Im96 103 0 R /Im94 101 0 R /Im139 146 0 R /Im107 114 0 R /Im383 400 0 R /Im74 81 0 R /Im360 375 0 R /Im93 100 0 R /Im97 104 0 R /Im97 104 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im107 114 0 R /Im360 375 0 R /Im74 81 0 R /Im134 141 0 R /Im96 103 0 R /Im100 107 0 R /Im106 113 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im94 101 0 R /Im107 114 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im291 302 0 R /Im74 81 0 R /Im130 137 0 R /Im123 130 0 R /Im101 108 0 R /Im100 107 0 R /Im98 105 0 R /Im114 121 0 R /Im98 105 0 R /Im96 103 0 R /Im97 104 0 R /Im139 146 0 R /Im74 81 0 R /Im92 99 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im102 109 0 R /Im93 100 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im106 113 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im123 130 0 R /Im112 119 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im74 81 0 R /Im254 263 0 R /Im417 436 0 R /Im417 436 0 R /Im416 435 0 R /Im489 524 0 R /Im241 250 0 R /Im257 266 0 R /Im240 249 0 R /Im255 264 0 R /Im258 267 0 R /Im335 348 0 R /Im107 114 0 R /Im199 206 0 R /Im348 361 0 R /Im118 125 0 R /Im272 283 0 R /Im120 127 0 R /Im214 223 0 R /Im199 206 0 R /Im272 283 0 R /Im132 139 0 R /Im488 523 0 R /Im199 206 0 R /Im324 337 0 R /Im348 361 0 R /Im107 114 0 R /Im199 206 0 R /Im293 304 0 R /Im293 304 0 R /Im132 139 0 R /Im74 81 0 R /Im128 135 0 R /Im130 137 0 R /Im103 110 0 R /Im109 116 0 R /Im348 361 0 R /Im348 361 0 R /Im133 140 0 R /Im125 132 0 R /Im74 81 0 R /Im109 116 0 R /Im74 81 0 R /Im130 137 0 R /Im103 110 0 R /Im109 116 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im74 81 0 R /Im92 99 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im130 137 0 R /Im98 105 0 R /Im94 101 0 R /Im112 119 0 R /Im130 137 0 R /Im99 106 0 R /Im126 133 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im74 81 0 R /Im416 435 0 R /Im240 249 0 R /Im260 269 0 R /Im281 292 0 R /Im487 522 0 R /Im259 268 0 R /Im281 292 0 R /Im258 267 0 R /Im335 348 0 R /Im254 263 0 R /Im255 264 0 R /Im260 269 0 R /Im243 252 0 R /Im335 348 0 R /Im335 348 0 R /Im281 292 0 R /Im282 293 0 R /Im243 252 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im107 114 0 R /Im272 283 0 R /Im132 139 0 R /Im214 223 0 R /Im212 221 0 R /Im348 361 0 R /Im131 138 0 R /Im488 523 0 R /Im272 283 0 R /Im199 206 0 R /Im354 367 0 R /Im107 114 0 R /Im199 206 0 R /Im293 304 0 R /Im348 361 0 R /Im348 361 0 R /Im74 81 0 R /Im128 135 0 R /Im130 137 0 R /Im387 404 0 R /Im293 304 0 R /Im272 283 0 R /Im133 140 0 R /Im125 132 0 R /Im74 81 0 R /Im109 116 0 R /Im74 81 0 R /Im130 137 0 R /Im103 110 0 R /Im109 116 0 R /Im100 107 0 R /Im100 107 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im125 132 0 R /Im74 81 0 R /Im387 404 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im97 104 0 R /Im74 81 0 R /Im109 116 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im112 119 0 R /Im103 110 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im123 130 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im107 114 0 R /Im199 206 0 R /Im293 304 0 R /Im293 304 0 R /Im272 283 0 R /Im74 81 0 R /Im347 360 0 R /Im360 375 0 R /Im384 401 0 R /Im214 223 0 R /Im104 111 0 R /Im97 104 0 R /Im97 104 0 R /Im111 118 0 R /Im214 223 0 R /Im332 345 0 R /Im332 345 0 R /Im114 121 0 R /Im114 121 0 R /Im114 121 0 R /Im74 81 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im74 81 0 R /Im99 106 0 R /Im97 104 0 R /Im97 104 0 R /Im74 81 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im332 345 0 R /Im499 536 0 R /Im106 113 0 R /Im105 112 0 R /Im99 106 0 R /Im103 110 0 R /Im332 345 0 R /Im99 106 0 R /Im113 120 0 R /Im103 110 0 R /Im74 81 0 R /Im111 118 0 R /Im101 108 0 R /Im74 81 0 R /Im128 135 0 R /Im277 288 0 R /Im291 302 0 R /Im127 134 0 R /Im348 361 0 R /Im294 305 0 R /Im133 140 0 R /Im125 132 0 R /Im74 81 0 R /Im135 142 0 R /Im74 81 0 R /Im277 288 0 R /Im99 106 0 R /Im108 115 0 R /Im107 114 0 R /Im291 302 0 R /Im74 81 0 R /Im291 302 0 R /Im108 115 0 R /Im102 109 0 R /Im106 113 0 R /Im93 100 0 R /Im105 112 0 R /Im107 114 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im122 129 0 R /Im139 146 0 R /Im96 103 0 R /Im94 101 0 R /Im117 124 0 R /Im127 134 0 R /Im74 81 0 R /Im92 99 0 R /Im74 81 0 R /Im109 116 0 R /Im94 101 0 R /Im96 103 0 R /Im95 102 0 R /Im99 106 0 R /Im100 107 0 R /Im108 115 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im93 100 0 R /Im94 101 0 R /Im97 104 0 R /Im114 121 0 R /Im93 100 0 R /Im99 106 0 R /Im100 107 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im94 101 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im74 81 0 R /Im119 126 0 R /Im94 101 0 R /Im500 537 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im240 249 0 R /Im260 269 0 R /Im258 267 0 R /Im281 292 0 R /Im255 264 0 R /Im260 269 0 R /Im396 413 0 R /Im281 292 0 R /Im255 264 0 R /Im416 435 0 R /Im240 249 0 R /Im260 269 0 R /Im281 292 0 R /Im487 522 0 R /Im259 268 0 R /Im281 292 0 R /Im258 267 0 R /Im335 348 0 R /Im254 263 0 R /Im255 264 0 R /Im260 269 0 R /Im243 252 0 R /Im335 348 0 R /Im335 348 0 R /Im281 292 0 R /Im282 293 0 R /Im243 252 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im107 114 0 R /Im111 118 0 R /Im99 106 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im132 139 0 R /Im354 367 0 R /Im132 139 0 R /Im488 523 0 R /Im132 139 0 R /Im354 367 0 R /Im293 304 0 R /Im107 114 0 R /Im277 288 0 R /Im93 100 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im127 134 0 R /Im93 100 0 R /Im100 107 0 R /Im100 107 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im107 114 0 R /Im109 116 0 R /Im105 112 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im106 113 0 R /Im99 106 0 R /Im105 112 0 R /Im107 114 0 R /Im199 206 0 R /Im293 304 0 R /Im348 361 0 R /Im294 305 0 R /Im74 81 0 R /Im128 135 0 R /Im291 302 0 R /Im99 106 0 R /Im100 107 0 R /Im348 361 0 R /Im132 139 0 R /Im133 140 0 R /Im109 116 0 R /Im74 81 0 R /Im311 322 0 R /Im74 81 0 R /Im291 302 0 R /Im99 106 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im74 81 0 R /Im280 291 0 R /Im243 252 0 R /Im258 267 0 R /Im240 249 0 R /Im259 268 0 R /Im338 351 0 R /Im281 292 0 R /Im255 264 0 R /Im282 293 0 R /Im436 461 0 R /Im281 292 0 R /Im260 269 0 R /Im338 351 0 R /Im239 248 0 R /Im240 249 0 R /Im241 250 0 R /Im397 414 0 R /Im258 267 0 R /Im397 414 0 R /Im281 292 0 R /Im335 348 0 R /Im281 292 0 R /Im260 269 0 R /Im281 292 0 R /Im243 252 0 R /Im256 265 0 R /Im74 81 0 R /Im291 302 0 R /Im104 111 0 R /Im125 132 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im101 108 0 R /Im107 114 0 R /Im92 99 0 R /Im99 106 0 R /Im102 109 0 R /Im94 101 0 R /Im96 103 0 R /Im117 124 0 R /Im98 105 0 R /Im96 103 0 R /Im112 119 0 R /Im130 137 0 R /Im96 103 0 R /Im100 107 0 R /Im100 107 0 R /Im93 100 0 R /Im94 101 0 R /Im347 360 0 R /Im94 101 0 R /Im98 105 0 R /Im95 102 0 R /Im74 81 0 R /Im107 114 0 R /Im160 167 0 R /Im93 100 0 R /Im101 108 0 R /Im97 104 0 R /Im93 100 0 R /Im94 101 0 R /Im107 114 0 R /Im130 137 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im74 81 0 R /Im107 114 0 R /Im199 206 0 R /Im293 304 0 R /Im348 361 0 R /Im272 283 0 R /Im332 345 0 R /Im348 361 0 R /Im132 139 0 R /Im74 81 0 R /Im135 142 0 R /Im96 103 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im101 108 0 R /Im93 100 0 R /Im118 125 0 R /Im199 206 0 R /Im293 304 0 R /Im348 361 0 R /Im132 139 0 R /Im120 127 0 R /Im107 114 0 R /Im113 120 0 R /Im93 100 0 R /Im93 100 0 R /Im124 131 0 R /Im101 108 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im98 105 0 R /Im97 104 0 R /Im100 107 0 R /Im96 103 0 R /Im107 114 0 R /Im291 302 0 R /Im98 105 0 R /Im97 104 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im74 81 0 R /Im128 135 0 R /Im291 302 0 R /Im96 103 0 R /Im99 106 0 R /Im348 361 0 R /Im199 206 0 R /Im133 140 0 R /Im311 322 0 R /Im74 81 0 R /Im291 302 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im100 107 0 R /Im74 81 0 R /Im127 134 0 R /Im96 103 0 R /Im108 115 0 R /Im102 109 0 R /Im98 105 0 R /Im101 108 0 R /Im97 104 0 R /Im98 105 0 R /Im103 110 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im93 100 0 R /Im102 109 0 R /Im123 130 0 R /Im214 223 0 R /Im109 116 0 R /Im101 108 0 R /Im108 115 0 R /Im102 109 0 R /Im95 102 0 R /Im96 103 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im102 109 0 R /Im96 103 0 R /Im103 110 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im101 108 0 R /Im108 115 0 R /Im100 107 0 R /Im97 104 0 R /Im101 108 0 R /Im74 81 0 R /Im119 126 0 R /Im94 101 0 R /Im490 525 0 R /Im240 249 0 R /Im241 250 0 R /Im259 268 0 R /Im243 252 0 R /Im243 252 0 R /Im286 297 0 R /Im281 292 0 R /Im255 264 0 R /Im282 293 0 R /Im256 265 0 R /Im241 250 0 R /Im466 497 0 R /Im260 269 0 R /Im338 351 0 R /Im243 252 0 R /Im254 263 0 R /Im255 264 0 R /Im260 269 0 R /Im243 252 0 R /Im240 249 0 R /Im255 264 0 R /Im258 267 0 R /Im260 269 0 R /Im281 292 0 R /Im241 250 0 R /Im255 264 0 R /Im258 267 0 R /Im335 348 0 R /Im489 524 0 R /Im241 250 0 R /Im281 292 0 R /Im255 264 0 R /Im260 269 0 R /Im417 436 0 R /Im241 250 0 R /Im255 264 0 R /Im466 497 0 R /Im243 252 0 R /Im240 249 0 R /Im243 252 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im241 250 0 R /Im255 264 0 R /Im416 435 0 R /Im240 249 0 R /Im260 269 0 R /Im281 292 0 R /Im487 522 0 R /Im259 268 0 R /Im281 292 0 R /Im258 267 0 R /Im335 348 0 R /Im254 263 0 R /Im255 264 0 R /Im260 269 0 R /Im243 252 0 R /Im335 348 0 R /Im335 348 0 R /Im281 292 0 R /Im282 293 0 R /Im243 252 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im491 526 0 R /Im254 263 0 R /Im489 524 0 R /Im417 436 0 R /Im416 435 0 R /Im254 263 0 R /Im349 362 0 R /Im496 531 0 R /Im501 538 0 R /Im494 529 0 R /Im107 114 0 R /Im383 400 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im93 100 0 R /Im108 115 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im160 167 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im98 105 0 R /Im101 108 0 R /Im104 111 0 R /Im92 99 0 R /Im93 100 0 R /Im100 107 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im98 105 0 R /Im99 106 0 R /Im107 114 0 R /Im212 221 0 R /Im324 337 0 R /Im112 119 0 R /Im212 221 0 R /Im348 361 0 R /Im74 81 0 R /Im384 401 0 R /Im93 100 0 R /Im101 108 0 R /Im109 116 0 R /Im100 107 0 R /Im97 104 0 R /Im93 100 0 R /Im101 108 0 R /Im107 114 0 R /Im92 99 0 R /Im99 106 0 R /Im100 107 0 R /Im98 105 0 R /Im115 122 0 R /Im74 81 0 R /Im107 114 0 R /Im199 206 0 R /Im293 304 0 R /Im348 361 0 R /Im199 206 0 R /Im74 81 0 R /Im129 136 0 R /Im99 106 0 R /Im108 115 0 R /Im115 122 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im94 101 0 R /Im74 81 0 R /Im128 135 0 R /Im291 302 0 R /Im135 142 0 R /Im291 302 0 R /Im106 113 0 R /Im160 167 0 R /Im293 304 0 R /Im294 305 0 R /Im133 140 0 R /Im109 116 0 R /Im74 81 0 R /Im291 302 0 R /Im100 107 0 R /Im99 106 0 R /Im99 106 0 R /Im97 104 0 R /Im107 114 0 R /Im311 322 0 R /Im74 81 0 R /Im135 142 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im96 103 0 R /Im238 247 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im137 144 0 R /Im74 81 0 R /Im291 302 0 R /Im98 105 0 R /Im248 257 0 R /Im100 107 0 R /Im101 108 0 R /Im107 114 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im109 116 0 R /Im74 81 0 R /Im106 113 0 R /Im96 103 0 R /Im160 167 0 R /Im102 109 0 R /Im108 115 0 R /Im98 105 0 R /Im94 101 0 R /Im74 81 0 R /Im160 167 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im112 119 0 R /Im116 123 0 R /Im102 109 0 R /Im101 108 0 R /Im97 104 0 R /Im116 123 0 R /Im126 133 0 R /Im96 103 0 R /Im106 113 0 R /Im112 119 0 R /Im106 113 0 R /Im96 103 0 R /Im111 118 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im101 108 0 R /Im74 81 0 R /Im416 435 0 R /Im240 249 0 R /Im260 269 0 R /Im281 292 0 R /Im487 522 0 R /Im259 268 0 R /Im281 292 0 R /Im258 267 0 R /Im335 348 0 R /Im254 263 0 R /Im255 264 0 R /Im260 269 0 R /Im243 252 0 R /Im335 348 0 R /Im335 348 0 R /Im281 292 0 R /Im282 293 0 R /Im243 252 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im107 114 0 R /Im348 361 0 R /Im131 138 0 R /Im118 125 0 R /Im199 206 0 R /Im488 523 0 R /Im212 221 0 R /Im120 127 0 R /Im214 223 0 R /Im212 221 0 R /Im132 139 0 R /Im132 139 0 R /Im488 523 0 R /Im212 221 0 R /Im293 304 0 R /Im272 283 0 R /Im107 114 0 R /Im277 288 0 R /Im93 100 0 R /Im95 102 0 R /Im96 103 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im199 206 0 R /Im293 304 0 R /Im293 304 0 R /Im294 305 0 R /Im74 81 0 R /Im128 135 0 R /Im360 375 0 R /Im160 167 0 R /Im348 361 0 R /Im272 283 0 R /Im133 140 0 R /Im109 116 0 R /Im74 81 0 R /Im384 401 0 R /Im74 81 0 R /Im360 375 0 R /Im96 103 0 R /Im98 105 0 R /Im113 120 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im160 167 0 R /Im74 81 0 R /Im137 144 0 R /Im74 81 0 R /Im160 167 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im106 113 0 R /Im74 81 0 R /Im277 288 0 R /Im93 100 0 R /Im94 101 0 R /Im112 119 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im96 103 0 R /Im117 124 0 R /Im98 105 0 R /Im96 103 0 R /Im101 108 0 R /Im115 122 0 R /Im93 100 0 R /Im102 109 0 R /Im108 115 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im117 124 0 R /Im99 106 0 R /Im98 105 0 R /Im94 101 0 R /Im101 108 0 R /Im97 104 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im100 107 0 R /Im98 105 0 R /Im99 106 0 R /Im113 120 0 R /Im100 107 0 R /Im96 103 0 R /Im93 100 0 R /Im111 118 0 R /Im111 118 0 R /Im93 100 0 R /Im94 101 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im74 81 0 R /Im119 126 0 R /Im94 101 0 R /Im490 525 0 R /Im240 249 0 R /Im241 250 0 R /Im259 268 0 R /Im243 252 0 R /Im243 252 0 R /Im286 297 0 R /Im281 292 0 R /Im255 264 0 R /Im282 293 0 R /Im256 265 0 R /Im241 250 0 R /Im466 497 0 R /Im260 269 0 R /Im338 351 0 R /Im243 252 0 R /Im281 292 0 R /Im255 264 0 R /Im260 269 0 R /Im243 252 0 R /Im240 249 0 R /Im255 264 0 R /Im258 267 0 R /Im260 269 0 R /Im281 292 0 R /Im241 250 0 R /Im255 264 0 R /Im258 267 0 R /Im335 348 0 R /Im259 268 0 R /Im241 250 0 R /Im255 264 0 R /Im466 497 0 R /Im243 252 0 R /Im240 249 0 R /Im243 252 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im241 250 0 R /Im255 264 0 R /Im258 267 0 R /Im240 249 0 R /Im260 269 0 R /Im281 292 0 R /Im487 522 0 R /Im259 268 0 R /Im281 292 0 R /Im258 267 0 R /Im335 348 0 R /Im281 292 0 R /Im255 264 0 R /Im260 269 0 R /Im243 252 0 R /Im335 348 0 R /Im335 348 0 R /Im281 292 0 R /Im282 293 0 R /Im243 252 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im416 435 0 R /Im416 435 0 R /Im416 435 0 R /Im254 263 0 R /Im349 362 0 R /Im496 531 0 R /Im502 539 0 R /Im107 114 0 R /Im111 118 0 R /Im99 106 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im272 283 0 R /Im272 283 0 R /Im348 361 0 R /Im488 523 0 R /Im272 283 0 R /Im324 337 0 R /Im272 283 0 R /Im107 114 0 R /Im384 401 0 R /Im93 100 0 R /Im101 108 0 R /Im109 116 0 R /Im100 107 0 R /Im97 104 0 R /Im93 100 0 R /Im101 108 0 R /Im107 114 0 R /Im92 99 0 R /Im109 116 0 R /Im107 114 0 R /Im199 206 0 R /Im293 304 0 R /Im348 361 0 R /Im272 283 0 R /Im74 81 0 R /Im137 144 0 R /Im98 105 0 R /Im100 107 0 R /Im100 107 0 R /Im98 105 0 R /Im99 106 0 R /Im105 112 0 R /Im129 136 0 R /Im99 106 0 R /Im108 115 0 R /Im115 122 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im74 81 0 R /Im128 135 0 R /Im360 375 0 R /Im98 105 0 R /Im95 102 0 R /Im348 361 0 R /Im131 138 0 R /Im133 140 0 R /Im360 375 0 R /Im74 81 0 R /Im384 401 0 R /Im74 81 0 R /Im360 375 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im101 108 0 R /Im97 104 0 R /Im74 81 0 R /Im292 303 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im113 120 0 R /Im123 130 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im332 345 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im99 106 0 R /Im111 118 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im126 133 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im416 435 0 R /Im240 249 0 R /Im260 269 0 R /Im281 292 0 R /Im487 522 0 R /Im259 268 0 R /Im281 292 0 R /Im258 267 0 R /Im335 348 0 R /Im254 263 0 R /Im255 264 0 R /Im260 269 0 R /Im243 252 0 R /Im335 348 0 R /Im335 348 0 R /Im281 292 0 R /Im282 293 0 R /Im243 252 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im107 114 0 R /Im272 283 0 R /Im324 337 0 R /Im118 125 0 R /Im199 206 0 R /Im120 127 0 R /Im214 223 0 R /Im131 138 0 R /Im131 138 0 R /Im488 523 0 R /Im293 304 0 R /Im294 305 0 R /Im107 114 0 R /Im199 206 0 R /Im293 304 0 R /Im348 361 0 R /Im131 138 0 R /Im74 81 0 R /Im128 135 0 R /Im360 375 0 R /Im137 144 0 R /Im348 361 0 R /Im293 304 0 R /Im133 140 0 R /Im135 142 0 R /Im74 81 0 R /Im360 375 0 R /Im108 115 0 R /Im101 108 0 R /Im101 108 0 R /Im96 103 0 R /Im100 107 0 R /Im100 107 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im136 143 0 R /Im74 81 0 R /Im137 144 0 R /Im96 103 0 R /Im115 122 0 R /Im99 106 0 R /Im100 107 0 R /Im106 113 0 R /Im74 81 0 R /Im244 253 0 R /Im94 101 0 R /Im93 100 0 R /Im111 118 0 R /Im97 104 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im99 106 0 R /Im105 112 0 R /Im96 103 0 R /Im112 119 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im108 115 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im102 109 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im93 100 0 R /Im94 101 0 R /Im99 106 0 R /Im100 107 0 R /Im105 112 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im112 119 0 R /Im102 109 0 R /Im96 103 0 R /Im99 106 0 R /Im101 108 0 R /Im93 100 0 R /Im94 101 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im74 81 0 R /Im119 126 0 R /Im94 101 0 R /Im490 525 0 R /Im240 249 0 R /Im241 250 0 R /Im349 362 0 R /Im259 268 0 R /Im243 252 0 R /Im243 252 0 R /Im286 297 0 R /Im281 292 0 R /Im255 264 0 R /Im282 293 0 R /Im256 265 0 R /Im241 250 0 R /Im466 497 0 R /Im260 269 0 R /Im338 351 0 R /Im243 252 0 R /Im254 263 0 R /Im255 264 0 R /Im260 269 0 R /Im243 252 0 R /Im240 249 0 R /Im255 264 0 R /Im258 267 0 R /Im260 269 0 R /Im281 292 0 R /Im241 250 0 R /Im255 264 0 R /Im258 267 0 R /Im335 348 0 R /Im489 524 0 R /Im241 250 0 R /Im281 292 0 R /Im255 264 0 R /Im260 269 0 R /Im417 436 0 R /Im241 250 0 R /Im255 264 0 R /Im466 497 0 R /Im243 252 0 R /Im240 249 0 R /Im243 252 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im241 250 0 R /Im255 264 0 R /Im416 435 0 R /Im240 249 0 R /Im260 269 0 R /Im281 292 0 R /Im487 522 0 R /Im259 268 0 R /Im281 292 0 R /Im258 267 0 R /Im335 348 0 R /Im254 263 0 R /Im255 264 0 R /Im260 269 0 R /Im243 252 0 R /Im335 348 0 R /Im335 348 0 R /Im281 292 0 R /Im282 293 0 R /Im243 252 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im491 526 0 R /Im254 263 0 R /Im489 524 0 R /Im417 436 0 R /Im416 435 0 R /Im254 263 0 R /Im349 362 0 R /Im496 531 0 R /Im492 527 0 R /Im494 529 0 R /Im107 114 0 R /Im95 102 0 R /Im93 100 0 R /Im100 107 0 R /Im108 115 0 R /Im105 112 0 R /Im96 103 0 R /Im199 206 0 R /Im107 114 0 R /Im111 118 0 R /Im99 106 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im272 283 0 R /Im272 283 0 R /Im324 337 0 R /Im488 523 0 R /Im272 283 0 R /Im324 337 0 R /Im354 367 0 R /Im107 114 0 R /Im199 206 0 R /Im293 304 0 R /Im348 361 0 R /Im293 304 0 R /Im74 81 0 R /Im109 116 0 R /Im100 107 0 R /Im101 108 0 R /Im93 100 0 R /Im214 223 0 R /Im125 132 0 R /Im93 100 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im360 375 0 R /Im98 105 0 R /Im117 124 0 R /Im104 111 0 R /Im97 104 0 R /Im122 129 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im74 81 0 R /Im128 135 0 R /Im135 142 0 R /Im103 110 0 R /Im104 111 0 R /Im293 304 0 R /Im354 367 0 R /Im133 140 0 R /Im311 322 0 R /Im74 81 0 R /Im135 142 0 R /Im103 110 0 R /Im104 111 0 R /Im99 106 0 R /Im96 103 0 R /Im238 247 0 R /Im96 103 0 R /Im102 109 0 R /Im74 81 0 R /Im92 99 0 R /Im93 100 0 R /Im94 101 0 R /Im101 108 0 R /Im111 118 0 R /Im98 105 0 R /Im102 109 0 R /Im99 106 0 R /Im103 110 0 R /Im123 130 0 R /Im94 101 0 R /Im108 115 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im74 81 0 R /Im416 435 0 R /Im240 249 0 R /Im260 269 0 R /Im281 292 0 R /Im487 522 0 R /Im259 268 0 R /Im281 292 0 R /Im258 267 0 R /Im335 348 0 R /Im254 263 0 R /Im255 264 0 R /Im260 269 0 R /Im243 252 0 R /Im335 348 0 R /Im335 348 0 R /Im281 292 0 R /Im282 293 0 R /Im243 252 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im107 114 0 R /Im324 337 0 R /Im272 283 0 R /Im118 125 0 R /Im199 206 0 R /Im120 127 0 R /Im214 223 0 R /Im294 305 0 R /Im131 138 0 R /Im488 523 0 R /Im348 361 0 R /Im324 337 0 R /Im107 114 0 R /Im199 206 0 R /Im293 304 0 R /Im293 304 0 R /Im354 367 0 R /Im74 81 0 R /Im109 116 0 R /Im100 107 0 R /Im101 108 0 R /Im93 100 0 R /Im98 105 0 R /Im94 101 0 R /Im109 116 0 R /Im106 113 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im101 108 0 R /Im98 105 0 R /Im94 101 0 R /Im92 99 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im108 115 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im92 99 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im383 400 0 R /Im107 114 0 R /Im125 132 0 R /Im74 81 0 R /Im160 167 0 R /Im96 103 0 R /Im99 106 0 R /Im100 107 0 R /Im118 125 0 R /Im96 103 0 R /Im106 113 0 R /Im74 81 0 R /Im120 127 0 R /Im107 114 0 R /Im136 143 0 R /Im100 107 0 R /Im101 108 0 R /Im96 103 0 R /Im95 102 0 R /Im98 105 0 R /Im96 103 0 R /Im102 109 0 R /Im135 142 0 R /Im103 110 0 R /Im98 105 0 R /Im96 103 0 R /Im94 101 0 R /Im103 110 0 R /Im96 103 0 R /Im291 302 0 R /Im108 115 0 R /Im113 120 0 R /Im100 107 0 R /Im98 105 0 R /Im101 108 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im107 114 0 R /Im109 116 0 R /Im105 112 0 R /Im101 108 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im106 113 0 R /Im99 106 0 R /Im105 112 0 R /Im107 114 0 R /Im277 288 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im100 107 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im107 114 0 R /Im111 118 0 R /Im111 118 0 R /Im74 81 0 R /Im199 206 0 R /Im293 304 0 R /Im293 304 0 R /Im488 523 0 R /Im212 221 0 R /Im199 206 0 R /Im348 361 0 R /Im107 114 0 R /Im199 206 0 R /Im293 304 0 R /Im348 361 0 R /Im293 304 0 R /Im74 81 0 R /Im128 135 0 R /Im135 142 0 R /Im125 132 0 R /Im294 305 0 R /Im293 304 0 R /Im133 140 0 R /Im311 322 0 R /Im74 81 0 R /Im360 375 0 R /Im74 81 0 R /Im135 142 0 R /Im100 107 0 R /Im99 106 0 R /Im117 124 0 R /Im100 107 0 R /Im96 103 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im311 322 0 R /Im74 81 0 R /Im129 136 0 R /Im74 81 0 R /Im125 132 0 R /Im98 105 0 R /Im126 133 0 R /Im93 100 0 R /Im94 101 0 R /Im74 81 0 R /Im136 143 0 R /Im126 133 0 R /Im111 118 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im105 112 0 R /Im96 103 0 R /Im94 101 0 R /Im97 104 0 R /Im101 108 0 R /Im114 121 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im130 137 0 R /Im503 540 0 R /Im277 288 0 R /Im97 104 0 R /Im102 109 0 R /Im96 103 0 R /Im96 103 0 R /Im112 119 0 R /Im101 108 0 R /Im96 103 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im98 105 0 R /Im94 101 0 R /Im117 124 0 R /Im111 118 0 R /Im102 109 0 R /Im93 100 0 R /Im103 110 0 R /Im96 103 0 R /Im106 113 0 R /Im108 115 0 R /Im102 109 0 R /Im96 103 0 R /Im74 81 0 R /Im489 524 0 R /Im241 250 0 R /Im257 266 0 R /Im240 249 0 R /Im255 264 0 R /Im258 267 0 R /Im335 348 0 R /Im241 250 0 R /Im466 497 0 R /Im260 269 0 R /Im338 351 0 R /Im243 252 0 R /Im416 435 0 R /Im417 436 0 R /Im337 350 0 R /Im107 114 0 R /Im199 206 0 R /Im294 305 0 R /Im214 223 0 R /Im199 206 0 R /Im348 361 0 R /Im293 304 0 R /Im488 523 0 R /Im212 221 0 R /Im354 367 0 R /Im131 138 0 R /Im107 114 0 R /Im109 116 0 R /Im111 118 0 R /Im102 109 0 R /Im98 105 0 R /Im100 107 0 R /Im199 206 0 R /Im293 304 0 R /Im294 305 0 R /Im293 304 0 R /Im74 81 0 R /Im128 135 0 R /Im135 142 0 R /Im97 104 0 R /Im93 100 0 R /Im131 138 0 R /Im293 304 0 R /Im133 140 0 R /Im292 303 0 R /Im74 81 0 R /Im92 99 0 R /Im74 81 0 R /Im135 142 0 R /Im97 104 0 R /Im93 100 0 R /Im103 110 0 R /Im124 131 0 R /Im105 112 0 R /Im99 106 0 R /Im94 101 0 R /Im74 81 0 R /Im109 116 0 R /Im105 112 0 R /Im98 105 0 R /Im94 101 0 R /Im98 105 0 R /Im105 112 0 R /Im99 106 0 R /Im126 133 0 R /Im99 106 0 R /Im100 107 0 R /Im117 124 0 R /Im93 100 0 R /Im102 109 0 R /Im98 105 0 R /Im97 104 0 R /Im104 111 0 R /Im105 112 0 R /Im113 120 0 R /Im96 103 0 R /Im97 104 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im97 104 0 R /Im104 111 0 R /Im99 106 0 R /Im94 101 0 R /Im109 116 0 R /Im100 107 0 R /Im111 118 0 R /Im104 111 0 R /Im99 106 0 R /Im112 119 0 R /Im160 167 0 R /Im96 103 0 R /Im97 104 0 R /Im99 106 0 R /Im74 81 0 R /Im416 435 0 R /Im240 249 0 R /Im260 269 0 R /Im281 292 0 R /Im487 522 0 R /Im259 268 0 R /Im281 292 0 R /Im258 267 0 R /Im335 348 0 R /Im254 263 0 R /Im255 264 0 R /Im260 269 0 R /Im243 252 0 R /Im335 348 0 R /Im335 348 0 R /Im281 292 0 R /Im282 293 0 R /Im243 252 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im107 114 0 R /Im199 206 0 R /Im212 221 0 R /Im118 125 0 R /Im212 221 0 R /Im120 127 0 R /Im214 223 0 R /Im199 206 0 R /Im131 138 0 R /Im293 304 0 R /Im488 523 0 R /Im199 206 0 R /Im293 304 0 R /Im294 305 0 R /Im107 114 0 R /Im199 206 0 R /Im293 304 0 R /Im131 138 0 R /Im293 304 0 R /Im74 81 0 R /Im128 135 0 R /Im347 360 0 R /Im95 102 0 R /Im106 113 0 R /Im127 134 0 R /Im293 304 0 R /Im324 337 0 R /Im133 140 0 R /Im311 322 0 R /Im74 81 0 R /Im137 144 0 R /Im74 81 0 R /Im127 134 0 R /Im74 81 0 R /Im130 137 0 R /Im74 81 0 R /Im347 360 0 R /Im98 105 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im114 121 0 R /Im98 105 0 R /Im248 257 0 R /Im124 131 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im127 134 0 R /Im74 81 0 R /Im311 322 0 R /Im74 81 0 R /Im95 102 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im96 103 0 R /Im94 101 0 R /Im127 134 0 R /Im96 103 0 R /Im102 109 0 R /Im98 105 0 R /Im124 131 0 R /Im74 81 0 R /Im135 142 0 R /Im111 118 0 R /Im96 103 0 R /Im103 110 0 R /Im108 115 0 R /Im100 107 0 R /Im99 106 0 R /Im97 104 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im111 118 0 R /Im100 107 0 R /Im99 106 0 R /Im123 130 0 R /Im98 105 0 R /Im94 101 0 R /Im103 110 0 R /Im93 100 0 R /Im105 112 0 R /Im111 118 0 R /Im108 115 0 R /Im97 104 0 R /Im96 103 0 R /Im102 109 0 R /Im103 110 0 R /Im104 111 0 R /Im96 103 0 R /Im101 108 0 R /Im101 108 0 R /Im74 81 0 R /Im119 126 0 R /Im94 101 0 R /Im416 435 0 R /Im286 297 0 R /Im242 251 0 R /Im258 267 0 R /Im255 264 0 R /Im259 268 0 R /Im243 252 0 R /Im256 265 0 R /Im281 292 0 R /Im255 264 0 R /Im417 436 0 R /Im241 250 0 R /Im389 406 0 R /Im239 248 0 R /Im257 266 0 R /Im260 269 0 R /Im243 252 0 R /Im240 249 0 R /Im417 436 0 R /Im338 351 0 R /Im243 252 0 R /Im256 265 0 R /Im256 265 0 R /Im504 541 0 R /Im107 114 0 R /Im111 118 0 R /Im99 106 0 R /Im117 124 0 R /Im96 103 0 R /Im101 108 0 R /Im131 138 0 R /Im293 304 0 R /Im488 523 0 R /Im293 304 0 R /Im354 367 0 R /Im107 114 0 R /Im130 137 0 R /Im99 106 0 R /Im99 106 0 R /Im101 108 0 R /Im97 104 0 R /Im102 109 0 R /Im98 105 0 R /Im103 110 0 R /Im104 111 0 R /Im97 104 0 R /Im107 114 0 R /Im122 129 0 R /Im104 111 0 R /Im96 103 0 R /Im277 288 0 R /Im96 103 0 R /Im97 104 0 R /Im104 111 0 R /Im96 103 0 R /Im102 109 0 R /Im100 107 0 R /Im99 106 0 R /Im94 101 0 R /Im106 113 0 R /Im101 108 0 R /Im107 114 0 R /Im199 206 0 R /Im293 304 0 R /Im293 304 0 R /Im324 337 0 R /Im74 81 0 R /Im347 360 0 R /Im94 101 0 R /Im98 105 0 R /Im95 102 0 R /Im96 103 0 R /Im102 109 0 R /Im101 108 0 R /Im98 105 0 R /Im97 104 0 R /Im123 130 0 R /Im93 100 0 R /Im115 122 0 R /Im384 401 0 R /Im98 105 0 R /Im105 112 0 R /Im113 120 0 R /Im108 115 0 R /Im102 109 0 R /Im117 124 0 R /Im74 81 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 533 0 R +>> +endobj +533 0 obj +<< +/Length 1107 0 R +/Filter /FlateDecode +>> +stream +x¥}K³4¹må¾Å]Ú¹|åÃË [³°ÃZj3#µ-õVO(æßOeQ÷<§xµéèþúK ÇÁ_~ø·¿ü>þþÃ_~X?uùX>Åþùø-~%l9|niýøõ~øñü!Þþäÿôÿ5ßç½ÿ~·ïç÷Çfß§Ûÿ¾}¿¯àû|lêïIý}¼ÿãxoÿaÙ´lGBþkO .q\ÁÖØ>ãí!Þ>ÜÇ-ìòâ®m¡|Æ® ÀÄSO }Èç¾Vc$°Rtb+Çpásí¶pÜIÞÔà¾ó4¿ûC¨jP¸ß7 ¬ß¾üνªáíû¯õ°ýø<ÃäÏ å§(³/,·ÿÿÒ°�Ä¿s7V¤uÁeÐãÇ´Õü¾ mØAùÜ;pWüÅÂo'x[º¼J`JÒDh<ÃÇ5�£Jh߯h£!JëÏp3!h"ï`ÛÀV îüþ¦EÃß× ì;äÀ Ô;¢8p Q\$Dì2¹Y}(ŲŠ©³c1fɱ# qïãøà}ov�ÈÀ`ÈG!~ÈÐÍK�¦´àäõxØ_Áv0!Óã É¨Ç Ec!Sø""5ÄQ\í6Ú>÷ðeG +ñ¶\⺠+áxÑ#Äq2da ãî!:ýìx [>zÕñsÍ=OÓì>ás?¾`¡ò¹@$- Þ2Òm1¸ð&SÐx8Úâº}Âe¸¦Y×ÃàdS2¼Nß§È"?JzËHÊP|ºJ`MÀÄ ¼×aÚ_»"d!Üàe0!»OÓ/ù6J»vQ!:ð[Ê `·t @¥è;ýâ¬["ÌÂ-~dh%cz#öiMfg£xLsÔIJ ƹ9i¯3´Ó%ÈùD!ȶ(Í)bO¼¢÷i>OÒêVäÙ3ì`Ù!-@ÃP=ØÐã&å!vä×ÅTÈæÜçcì9¼ãoè2¶fù@p©>T±,¡ +Òþ¹¯�sà¥XÛVò¸LJÀ§ سý®%ìÛÞo!¯àz÷¶ò B]|ÄÄG¼icJò3óXJHÃÆ5`¶[#HÀ¤b{`³@fbÈÈt!ä ]Àò A"§ e¢L,ÊD|³5ß©%Ò°æa×/3eÊÄí]&î":a·íN`}ÎLÂ%Ýä«Qí èþeÑVÀh?AÉ +\~¹Æj -`AÊ.H1BIyrز°Ä,ʳ±ÀSÐmbÄi´cìê¡L·{)º¬PFA¢[XáÅ2nÂEY6ªñæhJF¥ÓÀÄ"0-�(ª3¤#hDñÕ2ñölHîb¢H`»�eÿ�»º©fCZ]®. ~ñb¡±,Ù¬§(j#'Mp7ÞnÓÒ§3£O +å3}y0IØ,§ZeN`{@ÉW/*«hnÎXwK%°VÇçúÅ ìnÝÂúåi~óóPf'°ßmLÚ2P2cL¶ãÓïa`ÂyUÒn6éûÂ}p@:ö¢G�1uÊK®ÊëÜ-¶ Ì×Èñ@ÅU@â(ÖÉ)<µñeµ +'°jè)f$G Þ ¡£¨{Ü¿/«&È4"»b)�þ£uÓÄ¢¶Ñp,·bÑÀΤ¹*Ç{än`z ßíùØÁ¥¢d§,êï7Ö0a0#°kh +11Á8pÆá0,1A+JMt3¤%AÈjjZc=Ýý×jÓ +¡V«tPZ¡t×ÔrÀ·º¹QxÙZUÃf£%N®kz«pr]Uo,º?RÄÝ÷cÁcàßñ/$á±Z¿ßà÷óÊÉøpªZ¢ÊIV½{ è5gÏ@ðúZfý8*'µðÊɨɬK-¥nоBò«ø*[@³üaËpr¼"@5òT^î9X7P«ú ¶ÄqAzì¨Ë! áA_cøÂï@/Z³þd´ô³VñĬì.jÏPag¤zEÌè÷u±@-íÐ:½jî߯Ðé¯Ó¸©vÀD@×â¸#-tüþ®ý>9b3DxLÏ/{\o¯£o±ÒbUøÁã=WÄBùuoeÓð#ºb;v£QýÖ#Õöâú¤´ +~%sê[!ÐÞUïݦgá£ÆR}[ì¶×Õ·t^§A.I±�Uý²ÅZùmÖí¢%³²É¢É�ÕÃK¡pF�Û2½z÷Ð.YÝäÌMC¥îË ÞDáR=2ôÏi¡#-¡ÝpdsDG68×¾È >ë&ïÙàFÙàÐ!8²Á9gmôàëРΥænlp. àÈç5À-ÈÙ`«Ý +/½¤gó5&rûu÷SØE]`Ùàü|ãækÙ`+þ2GÑÏ >CÎ6ÒïW0n¥ðÊb_§ðh§v@uЩÍò%@]óLKDñª8zWt±À-Èù+«íls±<"ÿ©Tqÿ\ÃYr¹m»õzs_®11¤ü$p!ÁèÉä`ËͼO$ç1Õj5[pä1C)pBÅ.#ø|áhèuC<ðGÿÏî«è?j¬ÑÿûúÓ÷¿¹ÎjÈeÏï_FýFä=8Àïßd[ ºhý æFpÉ`SðäB~ö}È w?¿=,ûùÏüCz-LÎ:tIhð;ïÏ\ \rC'zà2Ôën Ëò}nDÜÑVôû7-ÛâÚ´¦-¦B´mHvÁ/©Bd!¢¨*SKB èglÒ±½À3ÛìûUú5ëõãHå¸_È:Ï1KBÌd0Æã= ÙbO +Éb¦_FÑÊg·O C¤÷êFhÄÐë# hXBˤ^Â-¿' Û!I!O¡ 8¤øX4)¦.£g~AG¨gr´C@nË.U +èãXnÌÔðÌ`(jÈ|ºE§e¡ öY¨Ð ÊØ#Ñî3¼MH9ËÀ â>²¢-`ÀÂIcr2*]w©ªoÚeÂåÛL)·ü4dàm;I_Lì=þ¾`¨S§ë(zÄtA¯ +æ4wzT³Âw ÷elDO@&(D²æ¤ÝÆ´H:ã#KtsWÁäÉȽ[@}Ò#(È)EA2"ðm*â©=r«v²lú[ñpo6ý«RýðÌ\ È@JyÇz$tXW):%pÔìÊ6eÐѼ +yúkݧÆpRë>ÕIûÕ ÑY!*°1^¨£9X;Jct<æQ)ÖÁͱ¾cÄðë¸Ùs�®)8C w)h¶�j +.^(5×®` +þ-V¾gðtÐk$ìNAÙð +ôPÙ¶Ãè¨;\ucGÑ4àiܳZîRòé@<p$âø=ì.ð ¶sX±÷%ã[;gr1��| ¡Ö +¶KBÈÍÆçð¸|q×@ $t ÃÁ1íÿ&æY2ð <`¥^Ñ(:!È[Â" +3 =ÍêE}Ьzä`=è¼gäò:´G28B³êNs¤Â«d0¼Y2xi�%S±dí÷£DÉ;ü^c}®ÿ¥ó\nÐð^²õn º¸ÐKÖ²àB/ÙòZhÎÚgg0í%,ªRÄU!8¼* ÏdìԹٰȧg2vFò`G§¨¿Å»Èª2 +r@±·6p`ê¦ØðĦz´t¨0üËLýr¶cx1 ïåÀ[rà-ZäpY®ÞboÑr83àít X"=ðötÊf6SY[mËÂ1ðÆç�hBÀ¿GGàݼpH@EhÈq³¸C)rÀ÷¡7{¶ÔÍö-5zÚ±@ï[1׫«RY@ó¹aÓ®t) ©°LJ v0«ö½=ù_°)Ò®q7´!zø¡"@üT )qÓ +¥Pÿ¦yÆzø7§L¢ÛdsÎ&`c¨§äwt'{Ê W(7YCÛùº¹ØPD§4-H< eap5!·ÐÓP3"àh(^´q +\ eÀÑP®2ÈDGCY®ð¢ WCY�< e¥À-8Ê*xÊV(H²õÐÈÊâu÷SØD] eVbÓ諡꣡lºài(µÀ&ÍÑPf¸\l([6ðÔuài;nÚu¤µ<¸ÐÖðw¤Í"¬éÙÖñ@xowiË4 ñº#ìÇìIF-=Ôù$p)oií +ÒhgießßëH»¾ ÚÖ1ÑÑNT;Ò:8bØ+ZÉi;ÒZøëdï$ QÖÉ�ÍGmü~´Sµß'e,GM"çï_:Áè¾ÕhG×1ÐCè8èÏ!´ü9nþÂl4`J4!C8àôB}mNYÀ$$ çv¼Ga<!x¼=P»8rè¡¿ZÜoÀÃßz²ÐôN³2m@¦|NÒ}ËlM±-?»$cλ"dEØx0ñ "ë}Ài¯)8Þ2æ)`!ÒáÄ"RcØS÷«pbØêpb ݨ8±\}m2Ìî ÃCðÀAS¢wã´�XxëªqGo±O¢7º£g·µv éuJÕh?45âxf:²â!RÞ¤ ,Èz:!ÂX¨÷Z?Îôyð±EÉ Ýèz%'ìë·*9bs`§Æ rðÕ¢$ÈënTÏø-½÷Ä´¸çu;\ÁøH¥ñ@÷*JøR%@Ì`x �-¡AGøJAG +¹]³Òå,}$¤Ú\×Ð+BÚ¥ïÙ*Þt)Ûë ±ÐÆ¶â¶5VRê!õ[¬$cN`Õ°>ëPóâÝ!*ê�: I À["8ÔUôºX°c}gGà4$¸�ùVµjÁÙèC¿bßwßË·j\Ðï{ætä[5|²YÈL(cXHÉQ³eôû¥ïéþëxû¹Lø2pÿ#%]Zª¡Kõ)µOY°Å=bCeañWÎÌߦÛIÓXtð üf¢!x]8zEkzt½f¶>-#R±, ¸AµDäæÕðzI¬IüíBeàÒúÖD¨¯ll!ÚëmØ~Æâß7w ù>D=·>ÿbP�2*OámhU{Rxü)¼ä½O{,Jn;Õl¶ÙH©©Òçu,tTZÌd¬v(m¯ãL½ògzÄû,]¥Âg <¬¦<¦à:ràüéY§KÀsxh·*`Èî±{Ý ü.*ÂÓ3m¿×³gz4Y (8mLG`£n´:<¬³´w?oäõuá5³¦8½RéóæH¢9_:Ôv8s+ûdl£.Ñ¢þ>ËbbC¢7PDí©[à÷@úÔ}EPoÊÚuÈññu(dqmâ]@wP! +æ;¤0ÛïAp`E ê¾`)PxâU#Ò% ¯þþ̰O~/@Yú +·³ô¡z�äû ]¤N¾kF¢ó¶#@½óòÄH#¹rÒDlÄ¡ÓM@ÎP ÀF<äF`yó�±#¤äå2@ø¾½çMçi�ð¦é ðäºÜÂMÊ"2@ èM§¿ÛÎg¼$O l7½þÐw !ôyVn9ÃÔg#ÞÓ-È" Í/»¯gµÞ3*Ì}O@~ϼ"cÏÅ+û(Cíë ö7¶ò@ê!|ÔgD@i>³�x<ƨgèAÀ±| $mÜÀû»<ØEP8GÕ6½ÑW%Ñ@ø¦§ÀxðILd½giÑÑÑû̽ÎìÝBåBÄr wôé×-÷½'ßHÀÑÑQÕ9fQ^MO¬2²jLäë¶i»hP*×úÆjtÁÑÑWx/è½qº ßÎ' +à[·ó9^Ú [q^ÃD2&ØMæå¶PÅ=Ë"À¬ëxi±ä×OE®~v»�î$dð=,)Â9ÄÃ/{9�Ͱ@WÀ:Sª5÷ñ¸ÖQò»<Èïò BY¦JçIXäý5lYÏc¦J²Þ´aIÁ$nWqoºHÆä;ìM¿�9ìÍÞ ÜcH;ÐXMË�]ªö- 9ÓsxÙ²ÝW-ºåºÝW :JH`}E²iW ´Gø¶·î´\%q$Óóõ@ï>YwIé[&'Ó ïe*´÷cGN¾§÷ãHÚÄ ìèNÔ«ÊW O¡/fyÚ9y÷Uy+K1¥¹QQU +B«Ñ\^!3æV¢¹Ll9ãx|~éü¾w̾¹æw¯®e¿ÜpÏ�ÝÁâËkù¡C» ^¢å ÒvÒÕ¦M@ë¢ + 3HÞA¸Ê ]®ÒX#ä9nø±òºÌ¨GÐOjõû®óïª!ð:æ³;CGüÈÀòâ¸=^d¡ÏnÒ+ûQÄ0%9~F.Á +ôøq¬xýtµ}*NâE7qÁµa ÉANr=BkxÀãPQcÅ©#j 4éÇÐ0ÕÇðoþ1e6é7ìÈ É'RõH !çla§Ô¬`W@i+@D¢·{zÚÄkÑÛj£CwhÒ¹#j+ 6ñ@÷ +4ëdlì²�&Æ"ç·ÏÐå;ÎÅY©(:$ÞèH îÇøeäæ1JX#b¶ýÍpzô·àèPöTo CeXâl4n¹"Mã-KÇÂ:½xEÏÇôâMó09Ü >¹ÖìÒ.@¡©ÒlQKûýI + áäÜϨådtj«51ݼÄK ÷'Z +°#: +_L+oxD-³öLâñÄmÜ{|òLiÔ4gôTa6è¬ k²�>=Zb½br ÛÐòª½3iÀа^üvÔ0®Ñ Å»ïJ'"D£¾;a=l} Kì¨ù< Ë:P°ð<:é3xê©£5ðL.fÈÑ\æÔÒ3x>/ÆÝÏ ãIି½wµî$p ¹b�¶<]Å®@I7¬¥^°º +N}}ë8\jÛct´%o.@/píÐËAÕé{^0ù%E"¿µ2§ÓÑ# Æë è!»r@H¦?§*ÇÙÔc2)¶F/ÛÃå½l¬æ²"ÙÌâ©"q.¦ô4ÎÁ͵H¬ä3!é.³°#¤éW\$ÑïÒôýİjG°44t§¯ïêÒ7sv%~ÆÑôZÅúH3TÇtvßËoÜx ÏþûPôÎÊ02§¯Ñjf¤q +V3ÕB.\p!gF,ÐÀfóÍɰ5FOeFÒ.)oLË!RF®©»â¦ôN9Ä}Ò+ C»ë}¾]óhöü¼~WóóÉM:ý¨ýyàp¨ÇtÍýc9F¨åÝÕõmÕnÁQPb/ÀÙ öX9Ä\KZÐïà +UV±@/dÏ(+Z´�XÅ%ê ¨Ä °¿{:=ãaýÓB6´�ÝY Ãí±¶,ôugÄZÞÒã·ô8F̽w§bxNYH$ij' cTÄ¥Øñ&Â,Ða@\~-@?ßD³3¤3ËWÓãä³GÕl1Àf9m)¨O¤< ¶P=;f¢{v MNá«ÿ +ü.LÐ)hEõQ°ìP§>@k. Ú«&V·® NÈÕþ)¢xÆE'ͯæßc)ÔT±-}mï'CBþV!º$|â¸Æ�>òk¡lÒï3¹+Úz·¦-ïÝÒ¢YÆôq¼köa½_½ë¯{hJ5´VQNQ>d lö>Ók#ÏÞ-D@àê1ÑóÕqà)�Õæ¸ËUºg!" jÏö1ÄD¹R9[ú¯¹ag;®L<Á§ÎÊÄ~À A*ø{VGÏßê¶÷[È«PRdðQZ^ê7ë�¥ÎT7(JÙ¿5%x +:Ùyà@m8~_¢I#<±@V*ÂÁL,®@¯T.áP +ÖÆBªlJ21Áè -gUǨ à5Xìô¾sòÃ×ÄÜîÁÌúÀ{ÅDT/:¤ +T é8z(µ&¢ly8R&®pº$nÝøb ÛéÄ'|y±¼*ë@[л¹ö� 8¦%cI_¼Ö6e"ïh+p ºÒų`v°¬ñÁÅ:®%àK¢Ðl-0 2Ñ'R&XÊä«S§[àýdXu8±õÑÅÓðÀ àÛ 9àÄj?ÙTxm4(8±ÛÛ]b"'°_'ðh»|;[}H}½7ºà;àÕ¦õ´@]ÐÍzZðå*õà +»±ÖÁÔxSoZõUkQkÓ9\Ò&æ(&ÕQdNÒ /9Iìf1,«7Kå=ßg<¹;ÇåA Ôç?×/´Ï¬æªðP@´@|òýfTÇx÷$§Í,B¸#dhV-Ò®+ô\G¹%ÊÛï}i|ïdn¹¡vzOåºè==r@GA¤�Ì*©BØ»hhèngHü»¶dV WýYcY÷½Im@/1,r´iõä6ggÙ+ ²¹Î©!å ¥vº ÈYn¥¦Ç gÝÂ-ÉXA>CÓICFÉóÖ²M3Ì)(]&qì±E® !G¤±uù«9¿îò¥[°VÙ(u2´7òXÊÓ +(ñ$x¶Ëò»üÖªoèE7Áqó=0fˬiG@o+2kØÍ¡ èM¢¡Â¤^f¡µbÌXȧ5Ö÷úÍM¿p M®ÜÁüÊúZÑÑüY'<�ç?Þ-I»±äVáÚ[»! 7ÒÒÆ²ep5 Æ2ëæh8Êá£ef[àsÜ7éè¤ÁFÌ¢¤´ø.cS¦9 É1íʲÌnúñ5½Çcí×bèõCÀÉЬ#æô,¾»#&}ÿy ñaÊëüêóûMÆtþõ¦þ>öÍ-Nü©øyi^qû=z]²ù×+`§WÞì`G@ j¨?HiÏC7HiKÀÓ4!à.Ùw c|´e}¿KßSÐ*ÁÛï ³Õ#³b¡8¹ÎigÖöµkYÛ.É�³#gNX2$¯@JÈ =µ,ð®�2Ð]hÅé_ϦÉxW6$r°0Z°p&ÆóGÒÄøfäëØj\.²3ü){:DíÅZ5£]ÖÏ´ô,£Wü*,ÙRÞélãyiø¤1cùdÕ3nGg Oqß1&¶oä´hbLÓ_Öª?ÛÁ«Dªf˰["B=êÿìIÙ"{²¼CG@oHHúøÔ5õôÚIè(zQEäBOÉÌÐê1H¼àxoÚjcT¯ã½4¿àF(>é)I1'ð.w( �s°àØ4ð*²$`.ÇöR , &N )¶]#>QKÎMÄ{Óla{#¯Å¶PîÎ;%1£ù7òBÔa(Eú0ì¡tE÷>Û¦OÀs°Ú§Páu2ê1]ÀÄ76KbFj¨¹W"X¬(î¯Qy +úörâ¦,âû6!f+l ùU5.Ø«ÓÕøE%I1G÷Ä|º§ç C-¾OTwT]?m Ï8ñ½êúçôªëDç^u¶kU×g¸¬@¯º>û@¤-ÐSX!õªësªÐ½À°!਺>°#GÕµê èÝ8»(H¼ +^u}æq%&¾Êã^&p? CÔVuêºV<U×V4=c"[B]pqp!Îu²Ñt<nh¸ùk,kVùe.ÅÏO4@HBÜï Rjǰ^z v¤³Ùã-ü3½,Üm ¼3¡ÔlZË( YðqA¢4"âðf¤íÒºCIÐ lI#@ÏqÛß<Çý]ìÚñ�àS`õ13@)ÚiËÇ,j(k(»öý¾×{a"üýÁϤX£æj·æD¯XM qT¬rTCÚ}e¸�%xfPdL5NÉ@ä¯êA2ùëVH@"oèVq×§¤Ûãûe} +K Ôús,ù·yô1Y»N9¿¿TßQ1è»ßwO m¿l2¶ã¿¸£c¿¸£%ਮ5jí÷ b. ¯Ò(ªW2!þÚÜõÑJVÜÑ}/¿àGCÊL¹M íe@ý ¡û5Ñ}¯?UøÞïðõîNÐQefx¥S3Dë*.ÕL haDüZÀµÂÚì?×B xä�¯uMкdÀQóÖ"}%K;áöóH" ÆTÖã²)¾AÅèk¿w8Õ^çz?f¬¾f¥òÎ÷§Õ²xçüY<T=eh£þËÄZäUßÚeFAd�}WEM(°CòÉäY-#¥^Ýt ÉD�Ú¼¦l @Ã÷V:s¨X".f×kãBô¨tüò´"r¼L7låÞéæ=K¨kÑPNE¦ß¦zyÕ Xïj^9 à3têtøpÙ:7D$&ÅtQ[�تiÍèGÍ«æùXU%p²ªüåZí{ù +Nè>©uæ¿A�²Pî +?ËZ®ÝÆVÖ"¾myk¿èsSèPéf`GP\Ò*Ä»q`{][E A%À +k Kè:r¥¥,Z| þ~Ð~WµÀýËþXXõX¤gþ. .@þ.ÐëÀßVÔöï#oÀß'*À ð·aö2"à@¬£ÍúÈé+j`ÀßVÔÒпm´SOÀnZ eàïP1«Ï²åKÀßgQËYÐѯ@þ;>ø;ìÛ½¸©ÝøÛ°I»(2+jÙ6:¿Ïp§$0¼)H1D!kEÈ|¾´:Jî9 I4i Y\ü3\^)hè¨Ü"us2q +ðÀ«"ý$nPÆ2qëÎÄ*Y}Nl"År kãÕY·Vg¸©¬Î¯ÁM/{( [e³:a£ªRPumL «³·Ð'$¹zÚºê.ÛÄá1êÕÓgU +P&½z:a?Q¯N+½z:ØÙÖ{+×C3ªtØ&êJÚ »¯{(6íé²r`/{iÖ¼x맪^= ¾Xß²Y·UÍzØ&:&Nw#kIɽ@K +%Ö7 XnFN*>ûdÀè3ú °_>©¶Ñtl×�â@Ú]MÊ6·Ln 8V&Ô##beB7Óø2#§5ÕP»�íø(à{S"ø$µ=DPîÇ loh°WÑÐ{Rd?üÕãh¦È&ÅòJíµ2â´ÎPR§+`ªT¨J3ÔÔN{òä¶ü0©í÷`R{nÔ&µc&õ2kÇõ «N§v°¯&õ\Á+Tz{ÖÎî ÏîUÐLi·Jh)Ú²ÀÓI²ì£;¸Åt¥±®¼tóë_nÒTBbº¾Ù÷XôÊI+xºN I;ൣ+0Ç£rRlMÁ¬-RøméuEÒ +éÕ*fCÂ)wt¤W+¿Ê±£fÏ:aJ|¯¦ä×mL¬t¶Ìt÷£oÞ~.µ«ßû`´z½ÁöXÁ÷ ¿¢¤.¤âý¾FÿÓFòZ~¦4eâSNi&6Ò\À`ìEðéÑMedØÍ£k¿Ï>2ñ©K»A%0Ý'ج¶'Àûµ/·Û|>qÊäà©iíÙ S3à§è÷aO)Ë+#B2Ⱦ_ßaÃÊ0]@ÒNûbA!ºà9 +Ö ¢µ' ÷PÄêÜ2ÌztJ;y£¦ qVyL8°Á3«6Q°ó®Og¤yXF¹¥1øõyz±>¨ÇBêá$ô5þHQx# º]4Èð4Ò ËÌèv°xu²òïVôÊYà8H<8j²\z +¼OÇ3àT¸�½kÅÖXÂ-KB@{6¨Çz+Ю1®÷±~fGè«ôÐ^4õfæ{Ý3ÚpTTä:ȼ# WT/^Qq¹¼WT4vÀQQ#zY9**²uW϶@O!A&ê9Õöu©ãÑÍ4#]¶Â\Q(Hô$½¢â>Oa"'P®¸Â +訨ØÌ=O+**¬à¯²ÈÐìp=³xtÙª Ë4oÂÒÀ(\æÉ¡.È9³. [yÚõx ®@»r?/p<}äKhp%Ft#:9RØHè !O¥Æ-·kéøgÜ2Çk´2$ Ï©ªSN~%YD«¹Ìñµ$Ñ-åMT\Â#|¬O²!�äþêPþìCïebzûeYLël¾IL?è÷8\+øH�Ï<?:ùÑ"ר«éaÇ}ä§Õ>C®ï3d!ê+"(JVÒ,ÀѲ,pÖßÛÏ9Êk ÐS 1#@#ðßñJÔ&ÔIæÝ÷2ÖÊ«ÛÀÀÂ#=Ô`x-¤Õѵ3= õB"W¬M¥Çl9 ÃÄXè²øoBjä²\èÔõ ÇcsFæ<ëc[4ú¬¿ªÜõWS£xm¢JÜZ^´!=Ö6#]÷õ=!>ã<õ 7u¼¿,t6Ù~3D¡)À3!*¯ÑÌhð5&IgCÚzÈÁÒæ7Å_ýdÚ÷, ¡ì¤¬Ý%<$¤(Ø¡ÑO�BG6õìCdSþÓºê&bÊäiK>ÏMY2Ê;r+¦"9-èôÛ,ht£PÏâ䨻9j^=Þc-.C:,a; ]3ä \3ä VT $CúÊ¦Ý ´whÅþ8_µ»r`=Þº +@X33H�í¨CvèMè#òvøû:ô(u3Uâ@Y ñäUDq hÆ8PA{1¨ kAT1Ъ$�¬´¤ÚÓ|³/Ai)Öh÷íJº} +ûÒp�IY÷Ú�Êp�IîKG@2Ü:T¼ÎTÒ% ©_{n:ÔOAÚâ£*¡ÙHj¾#±¾z§6@R'(ÊdÈ!t§àµQZÆD^±,j# ® Øè@R)Â8¤"ä^âó>07(ÉêcæÚHDA¢LÌP@RY$PÂFqÃÕlß +vHj §.WrëúÞ½7ñ^ ¸êL#Ï7'5¯QÔ0qäIJë8´ #QÉ +ÁÿYð½ cß,:Wè@ãp4®%ÑÆEüDÂû#Xíès@CÀQ; +æÆUDCYaWWGã:+öFer qm¢ M¡¬f[ §ýD×µ¹yg�ó-7/©6 +öµ£$GíèÍ&JLä1PÑ?àuÔÐ 8jGê>º&PVWÍzÆFÕQ;MGíhÍú¨µêñI=#Ëñê1Ñ£IÐ&æ(æo¯ï"sÎ`ªä$Ñ®: ÷ÂÍRy° mfÓÒE@°m®`_ßyOèÆf].Iûcp/Iråf6üF¡!¤îØÎÖïÛÃØ±Íô¹Øö{Ù¨>G4ßK. \'Q¬X¨# [¤bmv-µ @(å`X*¸ÖÅFºpåÎÊÇÓ×5o80*þÌYñq Wî,@~8g`ßà{®ÕßnW`áÎÂG�åaÅNh·� +X!ûÎ|£x±½¢a]ßBMÓO·@W°£¤ñRáiuàÇÓêɧÕ1ѧÕñÀ§5]ÁO«å^#Rf²U?öÀ[a0à¸À ,´Xd,}1,ÑkÙQ·¨WÿÕJîÙhù#4G¨\!xòÐ"@] T +÷ôH\|¯ì ¼XùcÖ.EÊÂ_jòÜ¥´À[<°B/ò<ÜäÀGÌâ0(ÅzáWs!íO-tÅójþv>µ!nÇë¦ µáüþRñaÈì¿=jÖ®ßqhÿÀ¡à]IËÝ©ê�u%¾4óÍÛ¾9ïJªWÉöZXWÒeµö² HÏ1s¾½~ð¦¤�®,9§n= ¹ÍiúM[�ÇE+2DªU*ÌåcÞÖÙ½r-ú^ld$XãgWƤxr@®¡6\´©P0·ÈpÑ3@ ©ÒX8BRÑ¢¤ ý>c!Ð[r!ÃV °##¬=JN·Â ZB`"ÑÇeM¦Í-¶ÅgyÀ(ƨMºê¹µò£ÖÆb-GJty(j5É]Ð!xR¢µ<`º hxÀé´<)ÑX�OJ4¢;Õ¬© ñæ*(HE9jLäÖë¾ë +KZV«h*P.+4(JUÔF^áM§6ÄIؾwäà:"¿i_ÑCo=S,çÍÊàtÒÔѧ{n×àtòâ6dlÌòÓ{®æ:ݦ-Êp:¹N·9H/e!rD+H0¤K$"OÈ"Mʦ¨i¤\zSI¢<ȰÇY¡ðOAÉÄ,�âD°fÞÑÔ;ö§*'2yt;Úµà{E/XÚ {ÚÐs5#npì¹SüdF¶µíRÝôê°Io^ZáïË9Mx3S .@~ïO@[<ÃëvIm ý^<Yôòöý¥ÀS Tê~_Á?¸ý^|òß³ò«1`õb(µ9¡¶0$XðrCßëÁKó » )[Dö]®Cûè©ÈíÀuYðdX®¸ -t{F¦]~!H÷ë¼c4j$´+Nc· 1¡ÍêK±! °ë2CG6%ú\s©ÚïõªôPF«ï¸Ú!Ù 5SÀÐmàµÚ6I8vÃâ}¢UEØEE`ðlñ0³ñºQ(ɲ¨æ ³(ØKÔ$=êà&qª%£WíyâÆr²)¢ÍM �p,)< Ð*À¾GW¢îY§@ö¬S�(Gj}û}8ªÖBÁµ®G¸A¯bL&ñ®"ÌC¹B*íÐè¸P;¶dRVö¾óP£ã=K)Õg/²_Eé¯@ÉË¿/-"<¡mtõ¡1t"´ ÐN,º54RwÉ5¤g¨¾Rùhûx]m,¸»&"´fx« *äbKÃFºlJÎoIá d@,\'ú ¼y¦h|æêÈÇ 2=Úý:Ç@ñRÛ#§jÀ¢=åiÝÑJ á" +qe¹É6@XVûì¿»°i'ã�mÉù*»?uçAfÐò *PuF ¼ÉÄu<�I0Ú³Ú +òÅFË)_Þ_]ä' ®VMþâísß·»x;ׯDs3¦æÇc Å]SyL¦Å× ~/8ݵÿ.Ô^7¸R{^�6ÀÏHëi4[�-þ.&B|¢ôúdá%§âI= +¡£µÔ*oBð²c6bºÿ÷=k¯5°ý¾c f�´gùý=5ÎèÝC¦Â(tX[G£º�¼è%å!6tú@b{"wÐÖÙ.@¯½ÎhúÍs¨´r4jnÉcÔÏ£Z8ÈJæÙ,[ÖÐY¨g7dD(1BZþnñÂnúlùCã�=ÃC³´§õ@2à¦PÁ2z4loG,ñ�Õx¬ïãÍðyðä(ɳ³ãÞàeª/ aDøfí6À +áU$|Ã|r ªkoÓ2f.Øm ?Bmôv$Æ5Øñè%×¢àßÃËLËr³Åv~AGàÈ fèÑ8 èzÚ9 èâ K?`§Rn +ÍÛR>Bc®WGbK¤Ñ'3Å s(²õÕÎ +rßÇúP¢9 | ¼Îô$ì³È×íX°ü´!B@|*9 wÌ]ðëN®9!È4Ç@ÑY×Cs90KØ]G%@OXÉ¥öÇ+ÐEYÐÓ%ÂèÝlgÞàÞGÕ�}T|,CTOcßÇ2ì½5òá[â 1ƺA}Ëj¸°!à÷ +Án4ð¬H^Á +@o)e<篰±`a(E»ÈoÄâþv +ñjÜ¿�&zâþû×Ó¬-Þ V� Èv$- lÁy8vÈ9 uFÌîêÍ.\Ja=QÄ:&ÊxvO±¨=G O±4ÛJ&ʬzݼ%©åXP=´ÙQ²±Çæld Ù8¸Ä¿ßáZQ»½iâÍ·ÍP¸^txàO.Éð³4à2kÎÞûæ¢.׿Ú~.'áö®^Fæ¬Ó¬Ûï=IÄúÖ_&cåG+Òï cïXEÆòZ|xÔàøý¬ý>Ï!®ïÉß~é¢�{%N$'ðÈ5R¤aì(¦]dP³-P-ô¢µßËéò4aÖ9¨W©$rLÑqÀ;$ò +±|ÉÛ{"¿©ñP=)È-Hàé+tyäV"º\GÅ«º;!;ÕXNÿÄ*}Y° aZðÊZÏVK@GÐJê¡\gæMñï¡éÐM Ùÿ@uAÉ +"à¡E@Ç]Z5;BoV¨ò]fÓ̧woA"(ÍL°`ò.å}3ø:v:D[NA/µDwfݼ6ϼÛÁmä ¬÷ìÀ3vÑ©=ó_ +iÜ¿N|{dd�LF¿ïÀѳ6-^¶ÐBK`<B:N© 8pôÎüÕ=æÝèG/¯èiåÀÑËu6Ùtô¶W GÎÖ=óÐpàè ¨GÏfàôd½³ñE$²²ÀSÐqôÎίÆè\&°}ÏÍ 9Ç÷Æ`qx G¯ôDtàè÷Îä£íÀè8z%Áè8zÏæåjö¥n!YB´u¥vß´@Ü"$:÷,D%Ôå%ÔvÈn QÆÑ%6zRHõn®aïÀ¥°g¨aï§j[î.Ö ½=I!½Î^ÅïÀéf <=Ç8 ¥na¹:h}÷°³v$¶¬ï Râ +xñ<â;ýqf¦_¦?Ø{«6úß±ò¼:êüþ£-Gê[«ý±rͲé¾BuKU m*A¤¦Æ\Ú�<L:ã&AwKÒ ¿«;BV» Qábÿêò +Ë¡ìÒØ©Ðm¬l9¬_Rô²lOX.sàñýª©1íãÚ"é±Ï°#5pÀàè0x5æÒòÀÍÖÕÐnÎÁþUÇÚ/ÛgºËÐ÷Û4"d^GuÖg¯òS1ÆH±#!äV:kú|Xé²°>ªRw"¿iÏrmø6+T#=e~ñUØàïë"°ÁD ¤ jGvÀÑ-|mÓ'D¡¿A%Ò3æ 3ø·cfÈàߦfu«å¾sÀÿÖ»#2¨¬%ZKìèELY½ÌØ÷ø2ûISÆnµ>ÿ£àÈEß©l!¡y°¾+dÆÒP~)¶4´:àµHî5ô¸©ò4Øöæ ª7R¥jÑ8ÆÎÕîø2ÓAsµµ!S¬£cç 2k +ïâíÉãexz +(#)vÀ~è; +¾NõN¼F(ÈgØé,È7x¡ëCÉÎ$r¡#!²zÉ^i> §gs ºýdsOT p î²Gpj�²Ðp`ÐËd2yþ®À?<ðä_òGihÿ16°~6t?*îqZÖC´*Ç{ÔIàeëdnaìd[iò'iìhD-6²áï,ÍH±$·DZÐ3ø¤n§ g´¹Bêå«b`lh(¤°nîQo¼BåÖÆshì]»c6Ø5çØméXÆ«÷PUT¦ÝHT.ê ÄkRǨãEÝÉv>¶¡ºåÚ+¼n¿ Õ$äVò×2xB%àé&\sMà\ÉWq¼ñ@'Vy;4Af 3ì6Ê!HPA>EíûCúͲ&4`± AvÀ¾Xô¾[#nWÐcv¸�ù¥"2ô¢¨±ÎÙL¢9f@t)Ace¨ògànÆ>7aÌ)E/*h ð´B)Òø+fÈìùØ ô&7$Æøù ëáo4àmj +Ið÷G(ç`lêB¿ÇØU³¥|lxÑ¡öÚmWàÃ{Wò9¶Aô*°gº¤9«5ê#Bó×&A$ê¡)Ð!¨ +2¦z?C[¨ðóúkWlt´ +¢0ü¥ùÔíBf)lIVÇ� ïPv4_ª®yËÁ0È� +VÜ¿dÓ.q¶PoL-⣥¯`·nléãSZñ (x· �©ÕCH¶É#OmØ'¦ð¿ÿò>ÂÇ/ÿãvçg¨¥þË/ÿðCøÌñ¸+Ûíïüæãþç>~ÿ»_ÿôÇ¿ýôOÿúÏ¿øøó_ÿôÿûë~óñ¿ÿßÇ¿þûÏ¿ûýï?~õ¿þÕ?~üâóãß÷Óþô×?þÛÇoþùÏÿôãÿûß?þíïþöùÇ~þñWa[ÿã¯ÿëÿõãÿv~÷ùÛÿðûüøåÿùá_~y[ÝÿT& +endstream +endobj +534 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1108 0 R +/Name /Im497 +/Width 26 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÿÿ�Ãæ¡3>�afà ~ÀÀÔÂ|�P0{VÌÏ�Ä@úÿ� è +endstream +endobj +535 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1109 0 R +/Name /Im498 +/Width 18 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xM˱ 0@Ñ +± W§¸!,íQ!#ÜÎdåa)9×>ÄÙ?° +JXà .ä@IIF6QöàÕÙúÏ=âJ} +endstream +endobj +536 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1110 0 R +/Name /Im499 +/Width 14 +/Height 4 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xa±çpþÐð��bû +endstream +endobj +537 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1111 0 R +/Name /Im500 +/Width 27 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿ`ÿ YàX[0 àüÁ 7@0#C³00p00H00°``��B¾í +endstream +endobj +538 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1112 0 R +/Name /Im501 +/Width 14 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`aàa`°`¨`ßÁP� ñ�27@ ;ò3üÿ��n +endstream +endobj +539 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1113 0 R +/Name /Im502 +/Width 19 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xEÂA 0@Ñ?Fè3%C*¥PUJ p`!$¼<:XàQ°iT5¿WÔTGàË[þ§+>6tCö¤;] +endstream +endobj +540 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1114 0 R +/Name /Im503 +/Width 27 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]ÃÁ @@@ÑÃŮðG-E JÒ¶ÑN^òp¨"4í»ÿ_ÉÏÕÅ5TV#÷®´%<¢§²íÏ_îuAw±ºÇtX(+ÀwÓ +endstream +endobj +541 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1115 0 R +/Name /Im504 +/Width 18 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã<àÀÿ AþaL"CCC%Ñb¢f b``!># >�ÇÌÍ +endstream +endobj +542 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 593 0 R >> /XObject << /Im204 213 0 R /Im320 333 0 R /Im497 534 0 R /Im320 333 0 R /Im320 333 0 R /Im202 211 0 R /Im208 217 0 R /Im320 333 0 R /Im323 336 0 R /Im199 206 0 R /Im131 138 0 R /Im63 70 0 R /Im50 57 0 R /Im55 62 0 R /Im50 57 0 R /Im63 70 0 R /Im50 57 0 R /Im66 73 0 R /Im53 60 0 R /Im50 57 0 R /Im51 58 0 R /Im51 58 0 R /Im56 63 0 R /Im54 61 0 R /Im59 66 0 R /Im53 60 0 R /Im63 70 0 R /Im64 71 0 R /Im56 63 0 R /Im50 57 0 R /Im63 70 0 R /Im64 71 0 R /Im57 64 0 R /Im61 68 0 R /Im57 64 0 R /Im53 60 0 R /Im505 544 0 R /Im52 59 0 R /Im59 66 0 R /Im63 70 0 R /Im52 59 0 R /Im58 65 0 R /Im50 57 0 R /Im51 58 0 R /Im66 73 0 R /Im54 61 0 R /Im72 79 0 R /Im50 57 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im63 70 0 R /Im50 57 0 R /Im59 66 0 R /Im63 70 0 R /Im50 57 0 R /Im51 58 0 R /Im50 57 0 R /Im66 73 0 R /Im56 63 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im51 58 0 R /Im50 57 0 R /Im76 83 0 R /Im59 66 0 R /Im57 64 0 R /Im66 73 0 R /Im72 79 0 R /Im65 72 0 R /Im50 57 0 R /Im56 63 0 R /Im49 56 0 R /Im54 61 0 R /Im72 79 0 R /Im51 58 0 R /Im57 64 0 R /Im58 65 0 R /Im59 66 0 R /Im49 56 0 R /Im57 64 0 R /Im60 67 0 R /Im61 68 0 R /Im50 57 0 R /Im56 63 0 R /Im57 64 0 R /Im506 545 0 R /Im507 546 0 R /Im508 547 0 R /Im509 548 0 R /Im510 549 0 R /Im511 550 0 R /Im56 63 0 R /Im64 71 0 R /Im65 72 0 R /Im50 57 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im512 551 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im513 552 0 R /Im51 58 0 R /Im53 60 0 R /Im57 64 0 R /Im58 65 0 R /Im57 64 0 R /Im63 70 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im72 79 0 R /Im50 57 0 R /Im59 66 0 R /Im56 63 0 R /Im49 56 0 R /Im60 67 0 R /Im70 77 0 R /Im63 70 0 R /Im51 58 0 R /Im56 63 0 R /Im508 547 0 R /Im514 553 0 R /Im515 554 0 R /Im60 67 0 R /Im516 555 0 R /Im57 64 0 R /Im53 60 0 R /Im505 544 0 R /Im52 59 0 R /Im59 66 0 R /Im517 556 0 R /Im63 70 0 R /Im54 61 0 R /Im53 60 0 R /Im50 57 0 R /Im72 79 0 R /Im52 59 0 R /Im63 70 0 R /Im50 57 0 R /Im506 545 0 R /Im518 557 0 R /Im519 558 0 R /Im520 559 0 R /Im521 560 0 R /Im511 550 0 R /Im60 67 0 R /Im55 62 0 R /Im52 59 0 R /Im66 73 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im54 61 0 R /Im55 62 0 R /Im508 547 0 R /Im512 551 0 R /Im515 554 0 R /Im513 552 0 R /Im61 68 0 R /Im50 57 0 R /Im51 58 0 R /Im56 63 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im51 58 0 R /Im51 58 0 R /Im53 60 0 R /Im57 64 0 R /Im58 65 0 R /Im57 64 0 R /Im63 70 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im60 67 0 R /Im517 556 0 R /Im63 70 0 R /Im54 61 0 R /Im72 79 0 R /Im52 59 0 R /Im53 60 0 R /Im56 63 0 R /Im517 556 0 R /Im63 70 0 R /Im54 61 0 R /Im59 66 0 R /Im57 64 0 R /Im62 69 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im506 545 0 R /Im517 556 0 R /Im50 57 0 R /Im57 64 0 R /Im522 561 0 R /Im523 562 0 R /Im511 550 0 R /Im60 67 0 R /Im59 66 0 R /Im63 70 0 R /Im54 61 0 R /Im72 79 0 R /Im52 59 0 R /Im53 60 0 R /Im56 63 0 R /Im59 66 0 R /Im63 70 0 R /Im54 61 0 R /Im59 66 0 R /Im57 64 0 R /Im62 69 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im51 58 0 R /Im53 60 0 R /Im57 64 0 R /Im58 65 0 R /Im57 64 0 R /Im63 70 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im64 71 0 R /Im66 73 0 R /Im506 545 0 R /Im524 563 0 R /Im71 78 0 R /Im523 562 0 R /Im511 550 0 R /Im60 67 0 R /Im525 564 0 R /Im69 76 0 R /Im50 57 0 R /Im63 70 0 R /Im57 64 0 R /Im62 69 0 R /Im50 57 0 R /Im517 556 0 R /Im63 70 0 R /Im54 61 0 R /Im59 66 0 R /Im57 64 0 R /Im62 69 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im506 545 0 R /Im515 554 0 R /Im517 556 0 R /Im75 82 0 R /Im522 561 0 R /Im520 559 0 R /Im511 550 0 R /Im60 67 0 R /Im57 64 0 R /Im69 76 0 R /Im50 57 0 R /Im63 70 0 R /Im57 64 0 R /Im62 69 0 R /Im50 57 0 R /Im54 61 0 R /Im55 62 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im512 551 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im513 552 0 R /Im57 64 0 R /Im66 73 0 R /Im72 79 0 R /Im59 66 0 R /Im63 70 0 R /Im54 61 0 R /Im72 79 0 R /Im52 59 0 R /Im53 60 0 R /Im56 63 0 R /Im59 66 0 R /Im63 70 0 R /Im54 61 0 R /Im59 66 0 R /Im57 64 0 R /Im62 69 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im51 58 0 R /Im53 60 0 R /Im57 64 0 R /Im58 65 0 R /Im57 64 0 R /Im63 70 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im64 71 0 R /Im66 73 0 R /Im506 545 0 R /Im524 563 0 R /Im71 78 0 R /Im523 562 0 R /Im511 550 0 R /Im60 67 0 R /Im508 547 0 R /Im64 71 0 R /Im66 73 0 R /Im526 565 0 R /Im508 547 0 R /Im57 64 0 R /Im76 83 0 R /Im57 64 0 R /Im59 66 0 R /Im59 66 0 R /Im63 70 0 R /Im54 61 0 R /Im76 83 0 R /Im64 71 0 R /Im65 72 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im506 545 0 R /Im527 566 0 R /Im64 71 0 R /Im69 76 0 R /Im522 561 0 R /Im509 548 0 R /Im511 550 0 R /Im56 63 0 R /Im64 71 0 R /Im65 72 0 R /Im50 57 0 R /Im62 69 0 R /Im50 57 0 R /Im66 73 0 R /Im50 57 0 R /Im63 70 0 R /Im57 64 0 R /Im58 65 0 R /Im64 71 0 R /Im73 80 0 R /Im50 57 0 R /Im72 79 0 R /Im59 66 0 R /Im60 67 0 R /Im65 72 0 R /Im50 57 0 R /Im57 64 0 R /Im66 73 0 R /Im51 58 0 R /Im53 60 0 R /Im57 64 0 R /Im58 65 0 R /Im57 64 0 R /Im63 70 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im61 68 0 R /Im50 57 0 R /Im51 58 0 R /Im56 63 0 R /Im66 73 0 R /Im54 61 0 R /Im72 79 0 R /Im50 57 0 R /Im512 551 0 R /Im58 65 0 R /Im50 57 0 R /Im57 64 0 R /Im51 58 0 R /Im56 63 0 R /Im53 60 0 R /Im54 61 0 R /Im65 72 0 R /Im65 72 0 R /Im52 59 0 R /Im58 65 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im69 76 0 R /Im50 57 0 R /Im59 66 0 R /Im50 57 0 R /Im66 73 0 R /Im57 64 0 R /Im58 65 0 R /Im56 63 0 R /Im67 74 0 R /Im513 552 0 R /Im516 555 0 R /Im528 567 0 R /Im506 545 0 R /Im516 555 0 R /Im50 57 0 R /Im63 70 0 R /Im509 548 0 R /Im521 560 0 R /Im71 78 0 R /Im516 555 0 R /Im508 547 0 R /Im521 560 0 R /Im510 549 0 R /Im511 550 0 R /Im51 58 0 R /Im50 57 0 R /Im59 66 0 R /Im57 64 0 R /Im63 70 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im54 61 0 R /Im55 62 0 R /Im61 68 0 R /Im50 57 0 R /Im51 58 0 R /Im56 63 0 R /Im57 64 0 R /Im66 73 0 R /Im72 79 0 R /Im529 568 0 R /Im66 73 0 R /Im72 79 0 R /Im61 68 0 R /Im50 57 0 R /Im51 58 0 R /Im56 63 0 R /Im65 72 0 R /Im54 61 0 R /Im69 76 0 R /Im50 57 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im512 551 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im513 552 0 R /Im54 61 0 R /Im55 62 0 R /Im59 66 0 R /Im50 57 0 R /Im51 58 0 R /Im51 58 0 R /Im64 71 0 R /Im65 72 0 R /Im64 71 0 R /Im51 58 0 R /Im56 63 0 R /Im64 71 0 R /Im53 60 0 R /Im71 78 0 R /Im63 70 0 R /Im50 57 0 R /Im57 64 0 R /Im58 65 0 R /Im64 71 0 R /Im51 58 0 R /Im60 67 0 R /Im56 63 0 R /Im64 71 0 R /Im53 60 0 R /Im57 64 0 R /Im66 73 0 R /Im72 79 0 R /Im54 61 0 R /Im59 66 0 R /Im56 63 0 R /Im64 71 0 R /Im65 72 0 R /Im64 71 0 R /Im51 58 0 R /Im56 63 0 R /Im64 71 0 R /Im53 60 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im71 78 0 R /Im59 66 0 R /Im63 70 0 R /Im54 61 0 R /Im72 79 0 R /Im52 59 0 R /Im53 60 0 R /Im56 63 0 R /Im59 66 0 R /Im63 70 0 R /Im54 61 0 R /Im59 66 0 R /Im57 64 0 R /Im62 69 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im59 66 0 R /Im50 57 0 R /Im51 58 0 R /Im51 58 0 R /Im64 71 0 R /Im65 72 0 R /Im64 71 0 R /Im51 58 0 R /Im56 63 0 R /Im64 71 0 R /Im53 60 0 R /Im71 78 0 R /Im63 70 0 R /Im50 57 0 R /Im57 64 0 R /Im58 65 0 R /Im64 71 0 R /Im51 58 0 R /Im56 63 0 R /Im64 71 0 R /Im53 60 0 R /Im57 64 0 R /Im66 73 0 R /Im72 79 0 R /Im54 61 0 R /Im59 66 0 R /Im56 63 0 R /Im64 71 0 R /Im65 72 0 R /Im64 71 0 R /Im51 58 0 R /Im56 63 0 R /Im64 71 0 R /Im53 60 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im65 72 0 R /Im54 61 0 R /Im51 58 0 R /Im56 63 0 R /Im54 61 0 R /Im59 66 0 R /Im56 63 0 R /Im64 71 0 R /Im65 72 0 R /Im64 71 0 R /Im51 58 0 R /Im56 63 0 R /Im64 71 0 R /Im53 60 0 R /Im66 73 0 R /Im54 61 0 R /Im72 79 0 R /Im50 57 0 R /Im55 62 0 R /Im54 61 0 R /Im63 70 0 R /Im59 66 0 R /Im58 65 0 R /Im57 64 0 R /Im67 74 0 R /Im50 57 0 R /Im63 70 0 R /Im526 565 0 R /Im54 61 0 R /Im59 66 0 R /Im59 66 0 R /Im54 61 0 R /Im66 73 0 R /Im50 57 0 R /Im66 73 0 R /Im56 63 0 R /Im517 556 0 R /Im516 555 0 R /Im528 567 0 R /Im506 545 0 R /Im517 556 0 R /Im57 64 0 R /Im58 65 0 R /Im522 561 0 R /Im510 549 0 R /Im511 550 0 R /Im72 79 0 R /Im54 61 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im54 61 0 R /Im55 62 0 R /Im61 68 0 R /Im50 57 0 R /Im51 58 0 R /Im56 63 0 R /Im54 61 0 R /Im69 76 0 R /Im50 57 0 R /Im63 70 0 R /Im529 568 0 R /Im66 73 0 R /Im72 79 0 R /Im61 68 0 R /Im50 57 0 R /Im51 58 0 R /Im56 63 0 R /Im65 72 0 R /Im54 61 0 R /Im69 76 0 R /Im50 57 0 R /Im59 66 0 R /Im63 70 0 R /Im54 61 0 R /Im72 79 0 R /Im52 59 0 R /Im53 60 0 R /Im56 63 0 R /Im59 66 0 R /Im63 70 0 R /Im54 61 0 R /Im59 66 0 R /Im57 64 0 R /Im62 69 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im54 61 0 R /Im55 62 0 R /Im55 62 0 R /Im52 59 0 R /Im66 73 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im51 58 0 R /Im59 66 0 R /Im63 70 0 R /Im54 61 0 R /Im61 68 0 R /Im57 64 0 R /Im61 68 0 R /Im64 71 0 R /Im58 65 0 R /Im64 71 0 R /Im56 63 0 R /Im67 74 0 R /Im72 79 0 R /Im64 71 0 R /Im51 58 0 R /Im56 63 0 R /Im63 70 0 R /Im64 71 0 R /Im61 68 0 R /Im52 59 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im65 72 0 R /Im54 61 0 R /Im51 58 0 R /Im56 63 0 R /Im54 61 0 R /Im59 66 0 R /Im56 63 0 R /Im64 71 0 R /Im65 72 0 R /Im64 71 0 R /Im51 58 0 R /Im56 63 0 R /Im64 71 0 R /Im53 60 0 R /Im66 73 0 R /Im54 61 0 R /Im72 79 0 R /Im50 57 0 R /Im55 62 0 R /Im54 61 0 R /Im63 70 0 R /Im59 66 0 R /Im58 65 0 R /Im57 64 0 R /Im67 74 0 R /Im50 57 0 R /Im63 70 0 R /Im526 565 0 R /Im54 61 0 R /Im59 66 0 R /Im59 66 0 R /Im54 61 0 R /Im66 73 0 R /Im50 57 0 R /Im66 73 0 R /Im56 63 0 R /Im530 569 0 R /Im54 61 0 R /Im66 73 0 R /Im51 58 0 R /Im59 66 0 R /Im64 71 0 R /Im63 70 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im515 554 0 R /Im52 59 0 R /Im65 72 0 R /Im61 68 0 R /Im50 57 0 R /Im63 70 0 R /Im51 58 0 R /Im506 545 0 R /Im508 547 0 R /Im53 60 0 R /Im525 564 0 R /Im522 561 0 R /Im522 561 0 R /Im71 78 0 R /Im518 557 0 R /Im53 60 0 R /Im49 56 0 R /Im521 560 0 R /Im524 563 0 R /Im511 550 0 R /Im54 61 0 R /Im66 73 0 R /Im58 65 0 R /Im67 74 0 R /Im54 61 0 R /Im66 73 0 R /Im50 57 0 R /Im59 66 0 R /Im58 65 0 R /Im57 64 0 R /Im52 59 0 R /Im51 58 0 R /Im64 71 0 R /Im61 68 0 R /Im58 65 0 R /Im50 57 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im58 65 0 R /Im50 57 0 R /Im55 62 0 R /Im56 63 0 R /Im57 64 0 R /Im53 60 0 R /Im53 60 0 R /Im54 61 0 R /Im63 70 0 R /Im72 79 0 R /Im64 71 0 R /Im66 73 0 R /Im62 69 0 R /Im56 63 0 R /Im54 61 0 R /Im53 60 0 R /Im54 61 0 R /Im66 73 0 R /Im51 58 0 R /Im59 66 0 R /Im64 71 0 R /Im63 70 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im66 73 0 R /Im52 59 0 R /Im65 72 0 R /Im61 68 0 R /Im50 57 0 R /Im63 70 0 R /Im72 79 0 R /Im50 57 0 R /Im70 77 0 R /Im66 73 0 R /Im64 71 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im51 58 0 R /Im50 57 0 R /Im56 63 0 R /Im54 61 0 R /Im55 62 0 R /Im53 60 0 R /Im54 61 0 R /Im66 73 0 R /Im51 58 0 R /Im59 66 0 R /Im64 71 0 R /Im63 70 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im66 73 0 R /Im52 59 0 R /Im65 72 0 R /Im61 68 0 R /Im50 57 0 R /Im63 70 0 R /Im51 58 0 R /Im53 60 0 R /Im54 61 0 R /Im66 73 0 R /Im51 58 0 R /Im59 66 0 R /Im64 71 0 R /Im63 70 0 R /Im57 64 0 R /Im56 63 0 R /Im54 61 0 R /Im63 70 0 R /Im56 63 0 R /Im54 61 0 R /Im64 71 0 R /Im66 73 0 R /Im53 60 0 R /Im63 70 0 R /Im50 57 0 R /Im57 64 0 R /Im51 58 0 R /Im50 57 0 R /Im526 565 0 R /Im72 79 0 R /Im50 57 0 R /Im60 67 0 R /Im53 60 0 R /Im63 70 0 R /Im50 57 0 R /Im57 64 0 R /Im51 58 0 R /Im50 57 0 R /Im63 70 0 R /Im54 61 0 R /Im54 61 0 R /Im56 63 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im64 71 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im531 570 0 R /Im66 73 0 R /Im53 60 0 R /Im50 57 0 R /Im63 70 0 R /Im56 63 0 R /Im57 64 0 R /Im64 71 0 R /Im66 73 0 R /Im56 63 0 R /Im67 74 0 R /Im506 545 0 R /Im75 82 0 R /Im54 61 0 R /Im63 70 0 R /Im522 561 0 R /Im509 548 0 R /Im511 550 0 R /Im56 63 0 R /Im64 71 0 R /Im65 72 0 R /Im50 57 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im512 551 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im513 552 0 R /Im54 61 0 R /Im63 70 0 R /Im68 75 0 R /Im50 57 0 R /Im64 71 0 R /Im62 69 0 R /Im49 56 0 R /Im56 63 0 R /Im50 57 0 R /Im72 79 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im512 551 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im513 552 0 R /Im57 64 0 R /Im53 60 0 R /Im53 60 0 R /Im54 61 0 R /Im63 70 0 R /Im72 79 0 R /Im64 71 0 R /Im66 73 0 R /Im62 69 0 R /Im56 63 0 R /Im54 61 0 R /Im66 73 0 R /Im54 61 0 R /Im72 79 0 R /Im50 57 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im51 58 0 R /Im53 60 0 R /Im57 64 0 R /Im58 65 0 R /Im57 64 0 R /Im63 70 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im54 61 0 R /Im63 70 0 R /Im68 75 0 R /Im50 57 0 R /Im64 71 0 R /Im62 69 0 R /Im49 56 0 R /Im56 63 0 R /Im50 57 0 R /Im72 79 0 R /Im59 66 0 R /Im57 64 0 R /Im64 71 0 R /Im63 70 0 R /Im54 61 0 R /Im55 62 0 R /Im51 58 0 R /Im53 60 0 R /Im57 64 0 R /Im58 65 0 R /Im57 64 0 R /Im63 70 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im51 58 0 R /Im72 79 0 R /Im50 57 0 R /Im59 66 0 R /Im56 63 0 R /Im49 56 0 R /Im70 77 0 R /Im63 70 0 R /Im51 58 0 R /Im56 63 0 R /Im508 547 0 R /Im532 571 0 R /Im518 557 0 R /Im518 557 0 R /Im528 567 0 R /Im506 545 0 R /Im527 566 0 R /Im78 85 0 R /Im522 561 0 R /Im521 560 0 R /Im511 550 0 R /Im52 59 0 R /Im56 63 0 R /Im64 71 0 R /Im58 65 0 R /Im64 71 0 R /Im56 63 0 R /Im67 74 0 R /Im54 61 0 R /Im55 62 0 R /Im50 57 0 R /Im76 83 0 R /Im59 66 0 R /Im57 64 0 R /Im66 73 0 R /Im72 79 0 R /Im64 71 0 R /Im66 73 0 R /Im62 69 0 R /Im61 68 0 R /Im50 57 0 R /Im51 58 0 R /Im56 63 0 R /Im66 73 0 R /Im54 61 0 R /Im72 79 0 R /Im50 57 0 R /Im64 71 0 R /Im51 58 0 R /Im58 65 0 R /Im50 57 0 R /Im51 58 0 R /Im51 58 0 R /Im56 63 0 R /Im49 56 0 R /Im57 64 0 R /Im66 73 0 R /Im56 63 0 R /Im64 71 0 R /Im65 72 0 R /Im50 57 0 R /Im56 63 0 R /Im54 61 0 R /Im50 57 0 R /Im76 83 0 R /Im59 66 0 R /Im57 64 0 R /Im66 73 0 R /Im72 79 0 R /Im64 71 0 R /Im56 63 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im512 551 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im513 552 0 R /Im51 58 0 R /Im53 60 0 R /Im57 64 0 R /Im58 65 0 R /Im57 64 0 R /Im63 70 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im61 68 0 R /Im50 57 0 R /Im51 58 0 R /Im56 63 0 R /Im533 572 0 R /Im534 573 0 R /Im535 574 0 R /Im534 573 0 R /Im536 575 0 R /Im537 576 0 R /Im538 577 0 R /Im539 578 0 R /Im66 73 0 R /Im54 61 0 R /Im72 79 0 R /Im50 57 0 R /Im516 555 0 R /Im517 556 0 R /Im506 545 0 R /Im516 555 0 R /Im518 557 0 R /Im521 560 0 R /Im509 548 0 R /Im511 550 0 R /Im52 59 0 R /Im56 63 0 R /Im64 71 0 R /Im58 65 0 R /Im64 71 0 R /Im56 63 0 R /Im67 74 0 R /Im54 61 0 R /Im55 62 0 R /Im55 62 0 R /Im52 59 0 R /Im63 70 0 R /Im56 63 0 R /Im49 56 0 R /Im50 57 0 R /Im63 70 0 R /Im51 58 0 R /Im50 57 0 R /Im57 64 0 R /Im63 70 0 R /Im53 60 0 R /Im49 56 0 R /Im64 71 0 R /Im51 58 0 R /Im58 65 0 R /Im50 57 0 R /Im51 58 0 R /Im51 58 0 R /Im56 63 0 R /Im49 56 0 R /Im57 64 0 R /Im66 73 0 R /Im63 70 0 R /Im50 57 0 R /Im51 58 0 R /Im59 66 0 R /Im50 57 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im69 76 0 R /Im50 57 0 R /Im56 63 0 R /Im64 71 0 R /Im65 72 0 R /Im50 57 0 R /Im53 60 0 R /Im54 61 0 R /Im51 58 0 R /Im56 63 0 R /Im59 66 0 R /Im63 70 0 R /Im54 61 0 R /Im72 79 0 R /Im52 59 0 R /Im53 60 0 R /Im56 63 0 R /Im59 66 0 R /Im63 70 0 R /Im54 61 0 R /Im59 66 0 R /Im57 64 0 R /Im62 69 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im54 61 0 R /Im55 62 0 R /Im55 62 0 R /Im52 59 0 R /Im66 73 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im51 58 0 R /Im59 66 0 R /Im63 70 0 R /Im54 61 0 R /Im61 68 0 R /Im57 64 0 R /Im61 68 0 R /Im64 71 0 R /Im58 65 0 R /Im64 71 0 R /Im56 63 0 R /Im67 74 0 R /Im72 79 0 R /Im64 71 0 R /Im51 58 0 R /Im56 63 0 R /Im63 70 0 R /Im64 71 0 R /Im61 68 0 R /Im52 59 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im59 66 0 R /Im54 61 0 R /Im63 70 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im54 61 0 R /Im55 62 0 R /Im66 73 0 R /Im54 61 0 R /Im72 79 0 R /Im50 57 0 R /Im51 58 0 R /Im68 75 0 R /Im64 71 0 R /Im56 63 0 R /Im49 56 0 R /Im61 68 0 R /Im50 57 0 R /Im51 58 0 R /Im56 63 0 R /Im540 579 0 R /Im518 557 0 R /Im518 557 0 R /Im541 580 0 R /Im52 59 0 R /Im73 80 0 R /Im73 80 0 R /Im67 74 0 R /Im515 554 0 R /Im52 59 0 R /Im65 72 0 R /Im61 68 0 R /Im50 57 0 R /Im63 70 0 R /Im51 58 0 R /Im506 545 0 R /Im542 581 0 R /Im52 59 0 R /Im66 73 0 R /Im521 560 0 R /Im543 582 0 R /Im511 550 0 R /Im72 79 0 R /Im54 61 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im68 75 0 R /Im64 71 0 R /Im56 63 0 R /Im49 56 0 R /Im53 60 0 R /Im50 57 0 R /Im63 70 0 R /Im56 63 0 R /Im57 64 0 R /Im64 71 0 R /Im66 73 0 R /Im63 70 0 R /Im64 71 0 R /Im51 58 0 R /Im505 544 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im512 551 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im513 552 0 R /Im54 61 0 R /Im55 62 0 R /Im59 66 0 R /Im50 57 0 R /Im51 58 0 R /Im51 58 0 R /Im64 71 0 R /Im65 72 0 R /Im64 71 0 R /Im51 58 0 R /Im56 63 0 R /Im64 71 0 R /Im53 60 0 R /Im71 78 0 R /Im63 70 0 R /Im50 57 0 R /Im57 64 0 R /Im58 65 0 R /Im64 71 0 R /Im51 58 0 R /Im56 63 0 R /Im64 71 0 R /Im53 60 0 R /Im57 64 0 R /Im66 73 0 R /Im72 79 0 R /Im54 61 0 R /Im59 66 0 R /Im56 63 0 R /Im64 71 0 R /Im65 72 0 R /Im64 71 0 R /Im51 58 0 R /Im56 63 0 R /Im64 71 0 R /Im53 60 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im59 66 0 R /Im50 57 0 R /Im51 58 0 R /Im51 58 0 R /Im64 71 0 R /Im65 72 0 R /Im64 71 0 R /Im51 58 0 R /Im56 63 0 R /Im64 71 0 R /Im53 60 0 R /Im71 78 0 R /Im63 70 0 R /Im50 57 0 R /Im57 64 0 R /Im58 65 0 R /Im64 71 0 R /Im51 58 0 R /Im56 63 0 R /Im64 71 0 R /Im53 60 0 R /Im57 64 0 R /Im66 73 0 R /Im72 79 0 R /Im54 61 0 R /Im59 66 0 R /Im56 63 0 R /Im64 71 0 R /Im65 72 0 R /Im64 71 0 R /Im51 58 0 R /Im56 63 0 R /Im64 71 0 R /Im53 60 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im72 79 0 R /Im50 57 0 R /Im59 66 0 R /Im56 63 0 R /Im49 56 0 R /Im70 77 0 R /Im63 70 0 R /Im51 58 0 R /Im56 63 0 R /Im516 555 0 R /Im57 64 0 R /Im66 73 0 R /Im72 79 0 R /Im68 75 0 R /Im64 71 0 R /Im72 79 0 R /Im56 63 0 R /Im49 56 0 R /Im518 557 0 R /Im50 57 0 R /Im57 64 0 R /Im63 70 0 R /Im53 60 0 R /Im49 56 0 R /Im506 545 0 R /Im75 82 0 R /Im57 64 0 R /Im63 70 0 R /Im509 548 0 R /Im543 582 0 R /Im511 550 0 R /Im51 58 0 R /Im52 59 0 R /Im61 68 0 R /Im54 61 0 R /Im59 66 0 R /Im56 63 0 R /Im64 71 0 R /Im65 72 0 R /Im57 64 0 R /Im58 65 0 R /Im62 69 0 R /Im54 61 0 R /Im57 64 0 R /Im58 65 0 R /Im55 62 0 R /Im54 61 0 R /Im52 59 0 R /Im66 73 0 R /Im72 79 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im512 551 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im513 552 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im51 58 0 R /Im53 60 0 R /Im57 64 0 R /Im58 65 0 R /Im57 64 0 R /Im63 70 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im61 68 0 R /Im50 57 0 R /Im51 58 0 R /Im56 63 0 R /Im66 73 0 R /Im54 61 0 R /Im72 79 0 R /Im50 57 0 R /Im512 551 0 R /Im62 69 0 R /Im544 583 0 R /Im49 56 0 R /Im513 552 0 R /Im518 557 0 R /Im518 557 0 R /Im518 557 0 R /Im528 567 0 R /Im506 545 0 R /Im518 557 0 R /Im56 63 0 R /Im54 61 0 R /Im509 548 0 R /Im521 560 0 R /Im511 550 0 R /Im56 63 0 R /Im64 71 0 R /Im65 72 0 R /Im50 57 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im512 551 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im513 552 0 R /Im51 58 0 R /Im53 60 0 R /Im57 64 0 R /Im58 65 0 R /Im57 64 0 R /Im63 70 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im61 68 0 R /Im50 57 0 R /Im51 58 0 R /Im56 63 0 R /Im70 77 0 R /Im63 70 0 R /Im51 58 0 R /Im56 63 0 R /Im545 584 0 R /Im517 556 0 R /Im518 557 0 R /Im506 545 0 R /Im525 564 0 R /Im66 73 0 R /Im57 64 0 R /Im521 560 0 R /Im524 563 0 R /Im511 550 0 R /Im56 63 0 R /Im64 71 0 R /Im65 72 0 R /Im50 57 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im512 551 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im513 552 0 R /Im51 58 0 R /Im53 60 0 R /Im57 64 0 R /Im58 65 0 R /Im57 64 0 R /Im63 70 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im57 64 0 R /Im58 65 0 R /Im58 65 0 R /Im58 65 0 R /Im50 57 0 R /Im57 64 0 R /Im55 62 0 R /Im51 58 0 R /Im68 75 0 R /Im64 71 0 R /Im56 63 0 R /Im49 56 0 R /Im51 58 0 R /Im65 72 0 R /Im57 64 0 R /Im58 65 0 R /Im58 65 0 R /Im50 57 0 R /Im63 70 0 R /Im53 60 0 R /Im54 61 0 R /Im51 58 0 R /Im56 63 0 R /Im60 67 0 R /Im61 68 0 R /Im50 57 0 R /Im66 73 0 R /Im50 57 0 R /Im70 77 0 R /Im56 63 0 R /Im63 70 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im56 63 0 R /Im49 56 0 R /Im57 64 0 R /Im66 73 0 R /Im64 71 0 R /Im56 63 0 R /Im50 57 0 R /Im63 70 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im50 57 0 R /Im55 62 0 R /Im60 67 0 R /Im55 62 0 R /Im54 61 0 R /Im63 70 0 R /Im56 63 0 R /Im58 65 0 R /Im64 71 0 R /Im65 72 0 R /Im64 71 0 R /Im56 63 0 R /Im518 557 0 R /Im64 71 0 R /Im66 73 0 R /Im62 69 0 R /Im52 59 0 R /Im58 65 0 R /Im57 64 0 R /Im63 70 0 R /Im545 584 0 R /Im76 83 0 R /Im56 63 0 R /Im50 57 0 R /Im66 73 0 R /Im51 58 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im51 58 0 R /Im506 545 0 R /Im525 564 0 R /Im530 569 0 R /Im75 82 0 R /Im521 560 0 R /Im524 563 0 R /Im511 550 0 R /Im60 67 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im512 551 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im513 552 0 R /Im51 58 0 R /Im53 60 0 R /Im57 64 0 R /Im58 65 0 R /Im57 64 0 R /Im63 70 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im72 79 0 R /Im50 57 0 R /Im59 66 0 R /Im56 63 0 R /Im49 56 0 R /Im70 77 0 R /Im63 70 0 R /Im51 58 0 R /Im56 63 0 R /Im516 555 0 R /Im50 57 0 R /Im51 58 0 R /Im56 63 0 R /Im60 67 0 R /Im541 580 0 R /Im64 71 0 R /Im63 70 0 R /Im51 58 0 R /Im56 63 0 R /Im508 547 0 R /Im64 71 0 R /Im66 73 0 R /Im64 71 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im506 545 0 R /Im507 546 0 R /Im530 569 0 R /Im521 560 0 R /Im543 582 0 R /Im511 550 0 R /Im56 63 0 R /Im64 71 0 R /Im65 72 0 R /Im50 57 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im512 551 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im513 552 0 R /Im51 58 0 R /Im53 60 0 R /Im57 64 0 R /Im58 65 0 R /Im57 64 0 R /Im63 70 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im55 62 0 R /Im63 70 0 R /Im54 61 0 R /Im66 73 0 R /Im56 63 0 R /Im64 71 0 R /Im50 57 0 R /Im63 70 0 R /Im66 73 0 R /Im54 61 0 R /Im72 79 0 R /Im50 57 0 R /Im57 64 0 R /Im56 63 0 R /Im517 556 0 R /Im546 585 0 R /Im528 567 0 R /Im60 67 0 R /Im508 547 0 R /Im64 71 0 R /Im66 73 0 R /Im506 545 0 R /Im527 566 0 R /Im516 555 0 R /Im522 561 0 R /Im547 586 0 R /Im511 550 0 R /Im56 63 0 R /Im64 71 0 R /Im65 72 0 R /Im50 57 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im548 587 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im71 78 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im548 587 0 R /Im68 75 0 R /Im64 71 0 R /Im56 63 0 R /Im49 56 0 R /Im59 66 0 R /Im63 70 0 R /Im54 61 0 R /Im61 68 0 R /Im57 64 0 R /Im61 68 0 R /Im64 71 0 R /Im58 65 0 R /Im64 71 0 R /Im56 63 0 R /Im64 71 0 R /Im50 57 0 R /Im51 58 0 R /Im68 75 0 R /Im50 57 0 R /Im64 71 0 R /Im62 69 0 R /Im49 56 0 R /Im56 63 0 R /Im50 57 0 R /Im72 79 0 R /Im51 58 0 R /Im52 59 0 R /Im65 72 0 R /Im51 58 0 R /Im53 60 0 R /Im57 64 0 R /Im58 65 0 R /Im57 64 0 R /Im63 70 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im72 79 0 R /Im50 57 0 R /Im59 66 0 R /Im56 63 0 R /Im49 56 0 R /Im70 77 0 R /Im63 70 0 R /Im51 58 0 R /Im56 63 0 R /Im517 556 0 R /Im63 70 0 R /Im54 61 0 R /Im61 68 0 R /Im64 71 0 R /Im508 547 0 R /Im57 64 0 R /Im76 83 0 R /Im506 545 0 R /Im542 581 0 R /Im57 64 0 R /Im66 73 0 R /Im521 560 0 R /Im547 586 0 R /Im511 550 0 R /Im56 63 0 R /Im64 71 0 R /Im65 72 0 R /Im50 57 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im548 587 0 R /Im59 66 0 R /Im63 70 0 R /Im54 61 0 R /Im61 68 0 R /Im57 64 0 R /Im61 68 0 R /Im64 71 0 R /Im58 65 0 R /Im64 71 0 R /Im56 63 0 R /Im67 74 0 R /Im68 75 0 R /Im50 57 0 R /Im64 71 0 R /Im62 69 0 R /Im49 56 0 R /Im56 63 0 R /Im50 57 0 R /Im72 79 0 R /Im51 58 0 R /Im52 59 0 R /Im65 72 0 R /Im71 78 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im548 587 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im54 61 0 R /Im55 62 0 R /Im58 65 0 R /Im54 61 0 R /Im68 75 0 R /Im63 70 0 R /Im64 71 0 R /Im51 58 0 R /Im505 544 0 R /Im51 58 0 R /Im52 59 0 R /Im53 60 0 R /Im53 60 0 R /Im50 57 0 R /Im51 58 0 R /Im51 58 0 R /Im54 61 0 R /Im63 70 0 R /Im51 58 0 R /Im51 58 0 R /Im53 60 0 R /Im57 64 0 R /Im58 65 0 R /Im57 64 0 R /Im63 70 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im72 79 0 R /Im50 57 0 R /Im59 66 0 R /Im56 63 0 R /Im49 56 0 R /Im70 77 0 R /Im63 70 0 R /Im51 58 0 R /Im56 63 0 R /Im518 557 0 R /Im59 66 0 R /Im50 57 0 R /Im53 60 0 R /Im52 59 0 R /Im58 65 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im69 76 0 R /Im50 57 0 R /Im517 556 0 R /Im58 65 0 R /Im57 64 0 R /Im67 74 0 R /Im506 545 0 R /Im542 581 0 R /Im57 64 0 R /Im66 73 0 R /Im521 560 0 R /Im547 586 0 R /Im71 78 0 R /Im531 570 0 R /Im69 76 0 R /Im72 79 0 R /Im75 82 0 R /Im521 560 0 R /Im543 582 0 R /Im511 550 0 R /Im56 63 0 R /Im64 71 0 R /Im65 72 0 R /Im50 57 0 R /Im61 68 0 R /Im54 61 0 R /Im66 73 0 R /Im52 59 0 R /Im51 58 0 R /Im526 565 0 R /Im65 72 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im51 58 0 R /Im51 58 0 R /Im53 60 0 R /Im49 56 0 R /Im50 57 0 R /Im65 72 0 R /Im57 64 0 R /Im51 58 0 R /Im53 60 0 R /Im57 64 0 R /Im58 65 0 R /Im57 64 0 R /Im63 70 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im72 79 0 R /Im50 57 0 R /Im59 66 0 R /Im56 63 0 R /Im49 56 0 R /Im70 77 0 R /Im63 70 0 R /Im51 58 0 R /Im56 63 0 R /Im549 588 0 R /Im59 66 0 R /Im59 66 0 R /Im54 61 0 R /Im66 73 0 R /Im50 57 0 R /Im66 73 0 R /Im56 63 0 R /Im508 547 0 R /Im54 61 0 R /Im72 79 0 R /Im50 57 0 R /Im58 65 0 R /Im518 557 0 R /Im50 57 0 R /Im57 64 0 R /Im63 70 0 R /Im53 60 0 R /Im49 56 0 R /Im506 545 0 R /Im550 589 0 R /Im531 570 0 R /Im69 76 0 R /Im72 79 0 R /Im75 82 0 R /Im75 82 0 R /Im521 560 0 R /Im547 586 0 R /Im511 550 0 R /Im56 63 0 R /Im64 71 0 R /Im65 72 0 R /Im50 57 0 R /Im50 57 0 R /Im76 83 0 R /Im59 66 0 R /Im58 65 0 R /Im54 61 0 R /Im64 71 0 R /Im56 63 0 R /Im64 71 0 R /Im66 73 0 R /Im62 69 0 R /Im65 72 0 R /Im64 71 0 R /Im51 58 0 R /Im56 63 0 R /Im57 64 0 R /Im505 544 0 R /Im50 57 0 R /Im51 58 0 R /Im54 61 0 R /Im55 62 0 R /Im54 61 0 R /Im59 66 0 R /Im59 66 0 R /Im54 61 0 R /Im66 73 0 R /Im50 57 0 R /Im66 73 0 R /Im56 63 0 R /Im51 58 0 R /Im53 60 0 R /Im57 64 0 R /Im58 65 0 R /Im57 64 0 R /Im63 70 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im72 79 0 R /Im50 57 0 R /Im59 66 0 R /Im56 63 0 R /Im49 56 0 R /Im70 77 0 R /Im63 70 0 R /Im51 58 0 R /Im56 63 0 R /Im508 547 0 R /Im528 567 0 R /Im506 545 0 R /Im530 569 0 R /Im508 547 0 R /Im521 560 0 R /Im520 559 0 R /Im511 550 0 R /Im56 63 0 R /Im64 71 0 R /Im65 72 0 R /Im50 57 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im512 551 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im513 552 0 R /Im57 64 0 R /Im66 73 0 R /Im72 79 0 R /Im50 57 0 R /Im76 83 0 R /Im59 66 0 R /Im58 65 0 R /Im54 61 0 R /Im64 71 0 R /Im56 63 0 R /Im64 71 0 R /Im66 73 0 R /Im62 69 0 R /Im65 72 0 R /Im64 71 0 R /Im51 58 0 R /Im56 63 0 R /Im57 64 0 R /Im505 544 0 R /Im50 57 0 R /Im51 58 0 R /Im54 61 0 R /Im55 62 0 R /Im54 61 0 R /Im59 66 0 R /Im59 66 0 R /Im54 61 0 R /Im66 73 0 R /Im50 57 0 R /Im66 73 0 R /Im56 63 0 R /Im51 58 0 R /Im50 57 0 R /Im56 63 0 R /Im54 61 0 R /Im55 62 0 R /Im51 58 0 R /Im53 60 0 R /Im57 64 0 R /Im58 65 0 R /Im57 64 0 R /Im63 70 0 R /Im69 76 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im51 58 0 R /Im72 79 0 R /Im50 57 0 R /Im59 66 0 R /Im56 63 0 R /Im49 56 0 R /Im70 77 0 R /Im63 70 0 R /Im51 58 0 R /Im56 63 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 543 0 R +>> +endobj +543 0 obj +<< +/Length 1116 0 R +/Filter /FlateDecode +>> +stream +x¥}ÍÓýºmÞþþï2Yøç#¤¤,;©gºé$/³im§qk'þ¸OÿûJG(�Þ83{ÉëÏ¡ø <�?ÿôÏ_þiúúÛOþ©üØËëëõãõ¢^ÿeäWúZÓôc]Ê×oþøÓ/ÿÛçã¿üãþôÏ¢}Úí×ùh¿sû}¥öËñtí礵ßÒ>í+úûûþ¾þýûþÙ÷O¯ëÀúcU)ýË`~Í}ÖÀúc>þ9ÍGÃÿ þyÃ>!ÿ7µKVq'ÀòcRÇ //þÖiß�éÇ«ûs³Úi$À±Ø¿¿þøõ.ÓÑÿíëGáÇñ_Õãøú7n»-ԶѼþv/]o9½¬Mâý¯ûªÖzngùçϪhýç®aZ~,î/ïÂíø×Ëûß×nξo¿¾×ïÕ>wÚ3ÿû)@í·ßÏyø÷×ý¾Ý~ûìû·øýôc{YíËý÷ËðïïÓý÷Çû¿g ÿóm³Úï÷ö÷^²óiõÅûrí«êêµ}^Vç×[ûr4üÅqFÌÏöI9úç«¿Äèu×Í~.Ïß?ª×Ù~¿¯þîÀûnöæ¼~4ûsÕ?½ï.m÷Î%ßÛßï¿<=Wÿ¼NíþyÍ}ÿºß][êïo¢ÿ«²{ã>«»ç(Þ·K_UwO]}JïE}Æî±{¿¤Åéý÷£¿¤ X½Nÿ{÷¶{^Æåa¾K¾¾¹¹¾Û¾Ø>ãÛwY_Àòsú¿.@ÿç5âòËÈømÿ7dûÙÇ÷²e÷òø:%Ösñ ûZï«ÆÒ·F.mâà>øÓqmÿ2òI\Û«1söȧ½@bµuiùÖ¾+×k¿[ß^yyZgÏ_2°òíñ;¶òGG?óìûä95ONÇkÝöÎÏòè7®ç÷ógbwÎØm.Ǽ�³Jöýû;ðû¶à×ûÕi .öùWLð5Ç_ +NæøëgKþÍ÷Ké8B9ïª +sOÞ@ÑÚ×}å¬æÊ±v~y!;ß^yez+Ϲ"N^kæì¯×ºù.^Gýýù¾òË0aPdþìwüwhç¿ÇOûþãälãÌÛÚy%íI%'`üíW²¯ð<ÚµóNBí¶Õúª$ºléNÎÏ»ªOpÛrûÓ,[f¥å¾RËZººxüíÖ£!cv;m_ê¨9"+çÄê9Ý2¿^ +°Jío_=½¶}{:ýu#¦±xIGsqÆøÒÒùÑk#¢6ß0Ù¦;!¨ù jóݺ÷*½Èd*Þ×h_íWûE&SQþù³ª®øéG9»¾½ÚõücÚ.2yMmäo¿fL¸©ÈÃÙX8ëÕ `DoÇkyW$ÀvYÄÀ¬óµt�å0ËÇÄ] +Ó¤¬R¥â}ÒúªA©Z«÷A©â%µOB³6î'å~çöKì~§öÙÓ¬ÞCvQjT¼W_UGÏîýI©}ß{{ó/©@ÒY']RûHõÒÙoö¸S,~·ßî;xÂÅ3ê@°ÏÃn/ñXW±}eý\¬ï¦¯¢Úý$µá«+IFÍdõ¶ý#¡%íwéÖZÌßßõo~! Gf¼Ö�/Fí§ù3¡o*ÐøYË?O óbÔ~ödKFÞùîaeºJÈ]5HЯÙ`EIh}Y5Åè³oßeBÌÐ=!º¡-61û¶Ülþþ|?<Wåö+°ûìÓ¯,Èéçÿñ/ÙK;¥â}¹öUOSdµòX²w-óª>µÌÛî¢í&ÛnJÛizQc*^Ý<þú¦£RMÝq¼|:.õJª%/_² +P¼<ò^'ò3äAYôÓ+_ÊbýµZÔ¬²¸ÂF�[ð΢öûº³»SÛ;wÀÊ�È¥¡Óq[çæôJÀ¹yù©_0ÉksÃI}¦A££Õ`]0q»sÐFlBê(ãϺ>u0 «ÐôÐ� +`wÆà:�/úË÷ó¯¯*géEpY6xVQdzí#Ê,I Édß&c¾s ApX½/è÷ bfã.÷Fr»rÍßEpù>y}ÕÐÅÌå¤BìåúÑKàòýûªajê|#i¥åélèE1öÉî�Ý #þH×�<Î!�â£åܧOÈÖÙ�°A´{ \ÍO°0·ZÉ:¨ð*çv~+d1K¦ åÔÍ>¤Kî�Wl~+¦ à]pÄ�óÓ@TSÜMËãH@ÐypüÃYsÑÆøyÓ=ã>©,c-Ý/¾üãQ±iÆä J46µ¶0ÕØ�\#DÉÆd@nd�o<ÿE7Öà:ºê¨|wÒ®|WÙ¢ZºÿZ_uHÆðÑñ©õ'å3Oܺ¯;ÿüÆùpUýpMÝ6 ôѶ+p.Q¶©ýITý5Lí· ¢[ÛC~ÓÎ÷¯ãºv×öòÑq;(OÏÀÊ?>û}1ÒξÚsí#Ò7PPìé$c®!»&ÅàÁ8 h6 fq@³a-¨ÙÀ"ÄáÇ'\W¥k¨,.¥®°¡ò£EW)ù5BÙ8Ûñá¶ØÓù3Û«qÅİ!�)Îæ¡øV2u|Çþýï÷3±ßïòy¯JùPY̾R CH÷ÏVÒÊâ'ºgÕÇí;÷ÓL³>:Þ´~vA/Â??pC/yýì(;z)lO£2Ó¾M¶§qÃ+û6Ä îKëÍ\ÓPÓ×ô5¿¦Ó+J@2ÀöÙ5¦(É�ÏþuUºÊâSê0å@]S¥ J9@r`(å@z[r`(å@�aÊ¢D)p)`?o÷¾ßÏÞ',ÉÙÓ<`dÔdµ,ÌÆG¼.?ÏëtWCNû«¹¡Mq1çåCq1Ë'º¸Xù#*K椯ßpHï,ÅO*õ47.èÎÍ2hM?¤Ä¯j¨Xí4÷UÃݹ·ÉÌ»Â$͸¿3wÖ¤ífj/ñÚ#n#NÿW$&ß1Nç¥oþCág4ÕÚ¤ +°c½pCí£LÒ1HÙÎNÐSvg +ãLõ Ì$@Ib(Ä�Q&�|&é}xU&ÊâèRêÊIX$*?ZtuI:$ÏÞ?ñ0<$ã@u6ôãµ£½>ÈÕ|Ó "m*ÉFj£åäM 8zÙà½*De1ýJ æ¡Þ?[©$*TêèTÈ2µ{�iþì~PIã7ôéAôÑýð ?àñä9pI/Rg¯Ë0�µËØÓʳ.Øw]Þ,@ê·ò²vñpÙu ÷Ï|ÛF]H¯sÏ>ÜÆ¯É4aqKìA8õÄÊÈ$ýñ�° Oô4rî=°ÉeSfL)={_I½÷vhìY(Q(z`'�)©ìiúÐNRýÜãv°¨rÚn¤dìÁp¹ÁvÓÓ»uD{¡¤Ú: ¨¢ªSÕFi<8 À 'wIw`§²ì:L°Ón +ì%Ø J°@`g(ÁNtV`g(ÁN�a¢;D vì&Ø J°WíñÑ0Á^ 8ÁN]ì4ß쥼7%ºêPîë£Jô7{J`§²øI¥îSäRO2ôT?)öÂÁ§¨Xïøó;ÅNUø nn½ÐÕ¶S(H¨?m7Q{d3Õó@¬¢£çç**û]ã �gVh´CµlȪ©Ô~4Oç÷wè¥Äs¿9aK@Tá©_ðvhIÊ)<æHÜgL3¢{kÚ?ä B�b,Ò$eÆfb�(87 óÜ6)mÎir ç§²8?ºrWÊ]æùëöÏOà ¦ÙXÞT®d¯FÂÕfv{�6¡·}Cóßc5[ófbÂj'¡¼W@¥ù©,f_©£Óè+ÂÓ 2c¦14í¹j© ²5¥îY*äjZ.BFNP;ê7<²à!¡ÀêMH Ô.�ò,ÃÙÓKÁ{íÜYË·Îa4@!$`ÅÖAO2@^®Òæ5«é<ùõÖyÒ +iãÒV8N[Iì=`¼¤¹8UA¡RjTGR)5êBRc(¥Æ�QJ�ÂD)5R_ÃD)5Sj¥Ô J©ÿLöâö&å4Þ¥²} ÍÇ]<Ìøf(ÐâlÇ"È$Mð Lõ©@A¦Y("xÃ@DLiäCâNo±¢;Û©«Û@Ö¡8}:'Â#¾y"ØKÑÞ,ÅL|Æ�¹Z¼¥XÇKGÆ(+¢tx�âzµù{;np¬z+qDz٠ºu°¾¢¶O@lÎ'¬Ò§e\§`ÐÕ©\QWåÍ2BNeàfÑ ^5Ú 5ðëÁ�XÚBb¬Ú,YìFÿÄÅP®ÈÙçÕäx]IµÔPY%JÝ·´4ËL©>j½³Ôlý&Û¯ö«Ò~~qX*ÖþhÓÜW°} Òê÷¸T. ã(Òû1ÅÝÒòXEW§/rË¢ËJ]\åò£EWÉÕu{oãÓzd «1&HÈ5J�ÛËCÑÓ³ -ТY οFbö&B¾¬ÐLa~í~>mfïÊ%¡GCÈÁ´¤çÉe©¯t±Ô\ÛH©Ãd}*ÙYÒ\É÷|]N3äu©Ý²Ô°Þ'dä±ÛèK(Ï£&ï1@ô¥`®za�Vï¥Ò-ÍhM�»8Ç÷Âæ2 ÊeÀL@Ù�0|s,3²YXf$v0×ÈÀçvwü$gâAù°¨�òHXP¢( Êe0�¢zhD�¬c v¢Ày%ôÖ L�»w \úe@岸кñ»EÚNÑÔSÍ=Å�ÑäS§ªù2øBºPÃs¿.Pb\ïX\w9oÖy¡ã\°Ë<Æu.ØEòbþ«zé <kp.ØùpüMò~4O5�9&$ì³ÈXËiFzàÁ ¢)¥¤%}&î&ùvÀ�\ÅQÏPѶÝ=2r�½àì©DÙI@ØIo˧+qÅVbïRqǧKEÇ2ÔnøÇKê¥L� ¹Yãø 7d,X)./ÙsÞ¤ÝE¨¿¶ÈoJzË:`@Ó¸Õ |"® â{�ÅîõÖð¹�ô¼ìHaÙ·ÏT{Ñø &áÐØLé pv6SÁ£§2DÝR�±z¸ 4¹v¹ÖÝxføþru¶sü%7}Bø%7D_r3@ô%7_r3@ô%7_rïF¼Ý?xË�ÑÜô áÜÔðKî}ÿð%7õ ü�Â/¹ ú¢/¹ À}É}7Û)q£ÔáðϤql*ÏrǶw,«ð©ò¼¨<ç×Ês¢ö:cAÂTóô¡ò!ÂYHyþPy>ýV?R³ÔÿÇçZ-Måùñ{\yÎBÂ(Ï9#£·ÃÞÕ} �zìMcê¾°F£À51�b*ò$Íp4wÁw)¶·#ùÍ=µmGÔ6G÷Mû<Ö7Jº ôÀÑ}óñ£p1CIâ½O0!É÷ód*vTWù! ûæ9ú® �Ìs×Tò"ö¸Òä_,ÕApo.=í Fuì룿,s#ØM+@y!º«s³<^Tß,eB ïfLà7¥í²¼"õ`æ`�$A³JBé½$¤Þ:ÈÂ`b8Ë/`Y~M £$Q±# b3àUFîwu6$ÿ»7;âKâåkËpìÁúBhçÖIi~_MHÂ^#8WS¶ïG% Qµwå¯PäÉ?IêÁufµMxÌnWò÷2¿ A´\D´´].�ÆMÛ m×dnÒlÕ^2æ cJË%{o6/ÑêzTÂe!V)õǹ=êïBN¼û£Z> +9|¯ß;ÿüþ«h®Öù¥eذ¹+Nø ýC̯r½*) æç²øf¥®a}UBåG®¾*§¡ÐüÎDIÖàCô°Wò¢Ýdìé|naKÁÇ<TðZõ1Åì+uô1;}ÅEVfH"³7 Á�!2£¹ Ùå<l9wg{Nbõ7k0YF` Ñ_D¬Ç ø�Â!@ð1@!YX&Ìúkî E¾Åmv �qòó�¸úÈ-NöùÅgbì5#D_S4àk +¾¦`èk´µ4àk +¾¦`èk|MÁ�þk÷j/|Ð^NTi@©£øó©èGÞ(¼£Þ( ¢ù@0ÿ2Dó/7`þeÆhþeîA4ÿ2D-vü ÑüËÜhþå³å_¦ó/7 5Ü�ù ¹xùÌÁ'³ @iæ¥`,³ëÁ(�$]8Û9%ÄìéÄ´Ü6�ÌkÙ^»ìA,È :²z*ùû¼«wÜUW±R½Ã¾qÜé}?~¦§#eÍ«ùáaú<'jNT§YÆÂ½ó�f/4¬,¬4>Q �ñpöòÓ.:#DégY¼Y¿{c°`c`îåÓâ#½;'Lï6wceodÌæñÝ¥éÛÜæ ÃBg¢ká@Æ à#-ÌTfäáFó/öÊç6¿²ôuÔ>êÓL$A?ôa¨Dý`è<ûÁp¢~0 èÃ�Q?ôa¨Løt£~0õa¨Dý`@Т~0öi�A?úÁÌóôxa?ô¡OûÁp¢~0 è3Ïó~0Ü ÷e.² 4Ñ©ö'D5�äݺ79[¤ vBÇ,P' Ìï¿V}^ªH¥ÔÇË,àÕúÓ&qXV*Ö_E<®¢aQç àݶÀgO't£âö{§I Xm-W>ÇÖdúýà30j¿38p{ä÷~y¬Ýuüö¸d]ôûÓKJuä'# /í5Ñ�&$غ&À,&qÀ2Ê�Q5@jgMgZ½ÎêFeqò(uå «~hT~´èê°Ú2:N Ëà íbvH\{&Vä1·!nd¾|+ÌJ Ý^¾É§"ìPö9åq*gtbäqêf ÃüÂÙ4>óKô>Xô.ÜÕ½Gf�ùÈØì ÈÅ`Ü/ÎE$ÑÞ#ð½«G Å>Têê¾tdGxäq!s~Ñô%@;knÎÚ¶ºcAFâzc�Y¼ýPȨ4�#Z+õ`ÝñYP?L6l¢´ù²yOÎPôG^¡Wº°¹:³pº~?ÎBZ^ÁA ®Ï@{c0#cà,¤eÆj�ÈëíªYg^0õ¾¢D D¦w3ç£|]GÕÊâ*Rê^fTu$è¼7?Áh4�Äs¹YPº^ÀÈýæ´@Q¶CQfFñ·g$CRЪrÅóËK[ËÔ ÓåMãe¥ `G¢î9=x ¥zrn×3Ø8#ÁtN_ÀJtf!%@è$ÉHiÁL¦¬±Ñö¾°×AÂv£ ã½S:2¬oÒqÿÎ#îß8¥VÄ}Cûz»Ê«mÄRG�#I¿Õk`ö @Fg°Ø2�âÂâ(¤ßH u|·dUý +©,¤*¥æGâµMöÜ�ùÉǯçG®æ/a²´¼îÓ`Í1Èò%×øýþ7~¿gÈÕÚYwã÷{ +¹ßÏàHÝïyùÐ`$æÛM69!6o@Dzø«;÷{ÛÀýâèÍÂêe �0ÞfdJìV×@*Kcq_7]ûö¤òúÔ|üúðH*P$QçH*ÓGR><Êüáôç2ð>¼]Ëx¡xc�Å2õ>Áå¢Oho XÞ^:˸ @±Ê=�HgqéX`Ã^ÄÙç4Ç/² (~ÅîL¸¥9ÛúÂ2߰ʦ¸Ýe×;#ÌÃCràv¬Jz³�EÛ#K^[å3í"HÉ¥È�Q·âöÈ.ÀHM`A8IG/r®k¢&$Ä;Èa�Jëën¢ÎÿPço/,!jþD0+ý¡×!-Ø�Kà`ìNÇ÷ 8`sd�áÊ1NèÝ;Ö/-¡zºRYhJÝ÷VmÞ)Ko׫þôv=3ÕöµXïøó»·+UÇL½oUÝA2ÞÛ2ð °µ öÑ[¶_1Ý9ϵÓÚ#©¶jû dÔ>Ú#¾êÎ÷ïX.zÉùòfÇ÷_k¾zYRY¬x¥®l êeIåG®{Yæ2âeélCée¹¼à!�(´³¦è#Â^L�r%ãcYÞ'ýø2{"ä Ò¹ö½@uí£²|¥n0ûæ!ñÊÙÑsB¤#M6a�D>sÖÂÝ`óï«^(T£¦ÔáG¶µáôÒM/Í�ÑôÒçb|gV>dÌXziîÄé:Ki":·Ã#?u`Ö5^»°aÁhÌÕ¼l;p²] 憎² + Î<>ÜHüiòpÎogÒ«Ô®©Ó]Ò¶<¿cñÌO°ö ÎXj¥b�qÇoG^:p&¥9ëgRZàL:C}v&¥LË�[ËæôÈîuAÎ$m"ëÛ¼¸$}$ ê#I�aIúH2@ÔG�Â>õ<~æ#I=Ø¢¡d úX�v/%ÒÈ ÄYI¼wáæ j"!°÷=D½ï ì}Ï�Qï{ð4_}¢¨,d|¥ûDÑÁöb�ì}}AoÁDa°'híìÚâA~EMß0EiaÒÂ0c¡<L !ÏQZk£´<Òµ+-9!·«£´d»1 ´q¾>RZrÁ¥JKÜn@iÉÜ (-yż8ìAÜÍÏQZ°43Î!¢à!,½» ²ò8bZÚ>Ë»vÌÂQ2äS¥yª2xDa¾ëê¯6q8cp:Æ®6^m Õ«¢W@!¼,H¤x !ÖoÅ;ÚÃD(¶·å³mb¯NT6ʾçÓ¡CqGÏèøà4«UyaáÊÌ¥@iy»M:YZw ö³õÅÄ9ê®K�K4|!xá¯åW÷TKO©?;ÙÞ÷¥þÀû«þ°½/WÞ³5ëoռϪº ´À,)^,aã(ÑlËVºúÎ^§�ìX<`MÑ&ëòηî^®¸kÜ/ë1Ũ+ue/ë1-º:l=^·OÇu1zfã^Ú®¤""kHõF�CÖ_A~HÂHßú{Màeýå²<¥n\Mýý\¿bòhg$$4¯&n3�¯k2 +lâõ�rïóÆ GJjíY*¿±i¨%D`<@¯i4[Ç® mh7ÁIHËÔ ±xiføb�D{v²3bb`�ä5F³ð61L bÁ2EîÀM¸Ç�ÑÀÿ° VmjZ_y*9�JÀ©Í`)@ûY õ!`h´q(¸Þ_,\,Þ@ÎÞ'¬Xº<ÀS~½¥L�Òe@ïcû Úz_*ôØ8 \¸,á[õÞ' ñÞwVâ2a±ªì11pN¤ +´}¾ñ0@a#ƾ×ÑtsÔ¥ë2`�ý±N�±]kK°S¹_H°zúÂ¥ç\¾\:R}5ùzúj@ØW�¾Çy~ùjnQ¿(êBØW�¾õÕ¤Að}5¯õsù�pY¬¥û�Ôû�0@ÔPÂ�QC }� j(!j0ìÀ�bG«~Ò 0§AÌPÂ�B¸ `öðÊéîLjvÊèöuØÎA]IQª[ çJgU·Gª*Sά£ý|±»om?Ö_a~ 8î·Ãâç3ÕûP>xS¹LÁÉbíÓZrGð3ܨI¤±+ë+xu9$Ù¬ï£þõW$��mDg�Ï_ñ:M.³ÅI¢ÔVO73ÕûúÓlu,î«í»pýÎÉÝLV\ES«Vo²¹;îï§Í�dè¹é±Ï.WkÏUÝUêÝWKÏUzüuWGí<Ë4Øyñ{Øy¬T,nðp}Ç = A0 ßDð¿?ócm>óãÜ¥3ôóWÍ<WIÌRG<ôa#D< häi�A#D< hä9É<Ü(¤bäa�¡² ¤9o�+�àÄí¬Då.j�©7ò®K!4@yì"ö'ìå�,º¤HÉ �ÉÇêõ`ÂÜD;ɬUF"¦¹�Hg,3Blk'RíúÃÈ8 !ï´C�ò8TµAd ¾Ö�0}Í(Øô笶:uW䥩¶ hvfMøã^ß ÍÄ�X´1s ÓáæOcïy¹J»µEÓüib9�!òø°ÑY0cÆs%J#E£yc�¦DéÇ`igbl ¢Q0f`E\ëw#¬ÁCuAÕSË©&«$ô¥îñ¤½)umá _p4�,_ZGÚ0¸Yíw4¦¤½@½1«h\Ò~½Çí<PfWïFb©�#¹ÖÕOÙÊêÁ;¬³o,Ä\HfÒÇj®uh�X^sIipSe@¼â¼ÌAÿÌ ´qÕýòê ÉR@:Û9A1$¼G,ÞJ1$+1óh2�CÒÑý{·rµ_%q+õÑ«{Þé-q¢Îô´cëÍ«9Éü¦®b¨:QäWzà¬ã9¤9tlø^Äs°�ûxµ?NÇÊL&v {f$;76æ^ÎKÐÚÝ\X8s7fHPöÆ aîíYHHçDÍ"6sÀ8sTo'h©?»U²`êmZÝÉ>Å~"dVíë£ô±/s� +÷ÐYÇò}lÀ¬ðHB2¾Êôá"x_eöÒ(Ò»#£Ê µ@i½O¢9ÇQɸ¼Xo�þBÄÂ�«`Çïö²}hj-ÑG à¾lNÞÆ=\�V(÷3ãwû:!6ûºÖ÷lVJ©§òÍï!ùQ 4BúLÀ{qÝÜ7Ûç}T=®¸ºí;Ôü©Lø]õ§ßÑ!¶_mß ú;ÇÞÜsÕð;êÝ(u$dνäþ8cÆý°q¦ ½&§ô^z2L¡!+Ìé÷eÂià"!`v;j¿ÛqûèñSÛO/$Û¦!ÖÎ/<Þ¹kªëÛU;F©w¯º¾]¥Ç_wuØõ-å׷꼪Màéúv?<è2BXÊ.À0$¨cxÄHð]çt)ú¡=ßÄH8濺Î]%1óJui§/I[ë%J^â:G|;ðP ÒÒYHsFPjìuE/Ë0@Ô,L�Ðc%o¡|Þ ®È jb9lQ±�vÄ=À =*3�â2åÜJ@Ùéw@0ÿNÀüÍÍ´ÌÁ< м ͵A¼¥±C)G4éDM9ò¿Þ!!¾r/U«$î!¥¾aå9¾aeèV¾a=¯öÏòp¢oX úµß°ò ¬[0ßwaCÈ_u#�)bùʦ- }kª +oè(7R@<¢ úÖYËI¸Örxc0ch^m Ê!í}ÂH(ÞBZÌ×5×È¥û´+Þ)aæi�q¡töx)m¢Om@æX¬ÄÜÎÞJ\ϼO�õ{WÄ{NF5¡ØW8'C¼ÂgI}[»8#ÙÀËU15jí"Ò@ÔZîAx0@0r¬Q a°`C\ë½AÜ¢þ{zB³ÍÄ Í¦7Ó~?TâC@zEU@Ug;§Iì N<JøTSªã×U +Rmüt³¿èDÝgsÞ²cñà�$w«ì#«#$Jϱ!WZgò}oÅ�ä}ÂyI:~Ä,ÂkÄñ@ÂâÁBâ®å#!1CO½iÌi¯ÄÅF´WbF8ïÊêJ.ØT{W$g(Þk@Ô>¢'ÑôÄÂo÷¸|ópÓ5ñp-¤_Ñ_DëÃAÄù&OÈë�GÆ´BbØ`ÁRÖBâéüè_,o_¬Íñ³ú¹ôõQkk8Q +;D¥ÐÝNÂ=&Ji�ÁD)MÒ�R (¥x*ç¹øª××UËN©?G6Nt)ËÊåéWéùuÕ_ ZÑv´Ýµ¶°xµ}j??ÝK_ £UÕ¼uX´*íüª�{Ò>ÔßïþÚ~Eâirj5×öÛªÓáµjõ_[õԡϵ_ÛizgËÚ~:#¬ òÛ4/R°§ Y^&$>¼¾wfa½i87~u|»JbÓ+õîü¨oWéñ×]v|+û¹}øó度 `E¨6oG^}o°MHÀ7ÍïÂ~o4ßø½Ó_ýÞ®x¥Æ5¦/xâpA&¹/§é#dï|¨ö`ä-<·°-*RJT)b�D)Ò4K@4Kg7Îk(b�áîG{i{0xø½ 0ÔðÁ¯=÷ Áæ¢QZùúßå}wN�òÁï72`N¤æy Óú<Å«ó¬WWIJv¸¢;\@Øá�ÂWÇòYÒ�îBØá�ÂWu¸¢Að ¹Ey"@LûÎy²ìQ2°ëæÉ[°¯Ø|J}T: g]h�Á¬ Êõ@4ëBÐ$¾ u¡³.0@4ëBf]h�Ñràg]8iÄôFV§¯Ã)ý|4ãBã|¢< hµSôÑ7ÌÑGߥ `Á`Í[,ÐÕîÙE¼S²Äìʾ=áLP¸X·«ÃæÛ ¼» =Xyã«$vR·¹ÛÆóà}¯ú÷=ͬµu-ÖßZ_û¥ªzhÔ]å:rø¡5Dsc@æÆ^ óÌ]üÜØïa«ÌÅ )ue*{FåG®ógL3ôpÔÇÇÃQk µVuÐÎCÀ^ôìQdäÚ<"ïdO ½W@¥Ð¨,f_©bª9ñh¶fË�Ñh¶àF³½F®êÝT£¦ÔaÍ»v!®y@Xó&°æ}ª:iÞÔ °æM�aÍ¢7 Â7éúÞ맪TkG©Ãcý¸âÈ�QÅ¢#G*$+G*V ª82@Tq$�_q¼¤Ä½]OMY¬2b_Gù¢Ê#É|aå¢Ê#Dmæ ³@H¼1?»c�o®ÕSÕ*£Ô}å¥);Û#EÛ¦¥h{O¾ÚS±þÞ&Ó´Qv|©6ÒG¸$ãnÔâ-U�?M'´+³__}é.\߬Ô!¼t.?ZtuXwÙò½i¶ÿ:|oó@Ü%B!ßGB0�Âkl¢y¸BêÍüöLONw¹VÀ¥»pY̾RuúqÝ �ºDupukä.Ý ËbÔ:¬»Ô.Äuë.Ö]Eø¡îB]ë.Ö] ª»Ð øºËµ~.Ý Ëbí(uXw©×] ª»0@Tw!°îÂ�QÝ d °îÂ�QÝ �ºDuê.àê.UÈÛÛõÔtí2ëîb"´Q,b!X£è Fx`B�i(î^`ËìgÍ/�f$©s¦q3Ô|¾ @)#Nߢ�KDЫ RÚf/{r18´RÊúáVdbÙÀfܽʹ!\üB�òHUÖbÇvÒ +Q2÷ +Ñ1Huî S jñöcIWÐêÛ úï·îë Õã<Ìi�Æi)·kÀÜì@(¥Ü½»,NKFiA�² `Ò±ZÒ�IÇ a»ÑþÌTÍ�"åù@fÚ)ö^(°¼YâïxÃí¥¼#i7�$¶7[0znR9 £DöÂÛ�ïqgVèe"ê2¿cºýÕ¶ïõjÔæ@êøÈ?h�;0Ú V"óáÁo�²1&@Ð2 ù¦Y¹ì¬ìõ`ÆÒ¾ÛèÚ{.û²÷pYhÛJÝ·×°}'M25F?í=s©çæÙvþé®TQG7n9ºiÃO�È ¢D3=ÏÇ wëÀôígy?ìt¬æïCY´Dí1ò¨¿¨=f_éÏÚ^æª7ÅØGí¹L]µ#Ä@øêGP¿ýfÊ(�I ä,IñÂs2ÀdÖ�3L»`ÆÞäÙc §ÈÌ^ÄßóèªÛùæZZ-¥ÞÕX;ßÜJù¯»:jª=Cô~fªåÏÇLµÎF<Mµ·£x1ֱצÇz*®XZüÜVË2öÓÛjy*äSªÎV;²ÔÎ7Ò:õJݰ +ube§·Xù¥ÿäâçB&ÎùæYN©£NÀ°¢N8ÏüÌÀÉ]8 jàl�A'Â7ιys¾9bÖu£ÔQã&}@ظÙ�ÆÍ4n2@Ô¸Ù�ÆMm£ÆÍ4n2@Ô¸Ù�ÆÍ4n2oÜ6ç&é3}uÊlúIð-+(Ñh§òQ´¦"C 5`4@k�Áh Ö�<û\|UÇouÙ)õ|º²ÿ.6~.RÿêO Ùjëw¡þÖ\OUÔóÌÝP5üûÀ èW @ÛãÊr{¶×$ºe©D!À*Þ¬ôû+=TF*À#Î@*¾3Rª±^H¯}ÿ.pL`±j ¾×h:t ` ã¥Éõ°:rýyòTý*SG©wXUЯÒ㯻:¬ ÚØ +:}¾TÐ_Æ�:)¨ kÚ1!È<º#ú5#ÈÃÆ#)Gôúõ1U¿¾Jbæ:êM_öf¨túA3ï}[¥®1¥Sõçã)SÇäHPÂ)R4ßPÇê©ÁUëF©ÃAý8EÀ�Q¢)R$])R¦ J0@" �"8¢®¤F T ¨¯6ÐÞ~t°û¿#.)ùU¬¨? þ%WÑøµü4®å(xc �(ØÞö Î;0Þ4. Ƭbû8BV±®ÙBÍÓ¤ä¨s îÛº]É +.8¢þéävEÕ©\ÏUçR·¹Æë,2Ô}?yôbè]¼ýýþh¯ »Oe®K{æ{þé®TS°_:é$=Añ<å'OE¤¹´x&Hôt<JT°DGí=îòª Ûã:ÜJ½¹ª Ûãbþë®+Èy(P¶kRtWNdBÆmª±WoAìÜÙN¬"<d3»=~ £sþª\nëÌ)uXAN9b°Ì�Q�|¹Ì¤ Û£à:bJVÓ ¬ �¤ ¿O8qµíÃÐHAöaÅÒØ óoáðLÙüNW»"É£½1 HWlÎB8Cáeu! Oí}�qßÎöÈ:`¿d»`nÛ/{l]IIø$Kå,n¡©Pª$!Ý $Ìý ^2Òo!e,«^ÏT0�òªÑëIÝ^Ê%ª&3@TMf�DMÖh?XdðÚR]½×+þ4òHDÀÎ{§ñcþO§ñE(ßx«=©Lì7ÆýB"}È�¦ßog@ÒÑk�Ö`Jq7Ôîwðª§tY ôrRåJ¥è´Â:D tè&Ð J §6(N�a¢:D tð ô2^nÁB)êë°ý|ØÇ¨°]ðâ>vL>E}ì êcG�a;úØ@ØÇ\»2ïZn¯æê²Sê6÷ÙxÒ"#&Öú7ÝÚ¼í1ñçîÜ)U »³®ãÃÇnà¬�R.P/¨=f?êw0µKg@´¯íWDEÔ¸_j/%Â{¨lHJ1¬ öBz®ÜípÊbÉ(ueVÊ]æ×¡ËÒAuÁòöBÇG°ü0&L�q'+Fñú8d ?Ûäµ*Le1ûJæëWÄydóÈå Àç·[ÀI*QSê0\»qÉÎ(. Qø ±$ÄwU£ / ¨IWÇf~±®\VDÈwî·J¡á\p2@�xÃØ=Øx+Ièj#ô zÛhô +^}ÆÄM¿¨ULßµÒ°áÎRNÒ{¼b�ä·F^cpWI¼´!¯¨ÊÆ Kæ bÂ)%DãÔtÈ ë8Çòy¥ÄÈ+@R kæ1Úk +ǶiànÓÎDÛI l'e°ÂvRÛI�±j#ÈV¦M¡wd�aW1c1õ7@ T½OØû];×`ë ½Ní\'�ÐLÚIDÔE4âËPøXíT$ §ãM´âQ? ½>@+Þ &äjñ�2fW0wÓihE{ >Êûâ/mÚf¨,45¥[gè~ [g ja¨u�ÂÖZgØ[g j!°u¢ÖZgÀ·Îl·ðîT|t_-4Ô ° ê¨ ¦J«q õ l¡a¨ �ÂZhæZhÀµÐl·XTKO©ûfÙ±75ÖáIQÔöµXoñ·ÑxÕw¨ãCÄ=×±w8B Õ@n^û ºúÓ¬¶_µU;N©=â¥çÔ»û\ÛKnÕ¦öHj§ÿ"u9ó·#¾O©±¶$ fÙÁS8M§gñêzCx�\¿ZÛ¨,¶½RWNjm£ò£EWmPö¡µÆ1nm#°µ¢Ö6[Û²¶iD-§ýaýÓêÜËu "ÌbWÚbn/ 1À +hÎ7ÌBN þÈ�û39Kj|$8EÝS³z»é{/W»)Å>Vê°Ý¾"l7%°Ý¢vSðí¦ï«vS*QSê°ÂQ»°,GÆa@>f�ÄnêdAjØ�!ê<jÛa9½no2ÍG}æRZdxìv�VÄìéHUw\ý& ÐmOÿÊØyg?.P&"Mó¬�ç+ ïUW§ÒnjÎBJ/$L¿³Ò´:é:*#Heq)u¤.A2e Ì2@$:Ì2@$0#È�QF¢ øàÅ|ìMÌiàöº ÇE¥.A""Â`Ûã õ Ì2@$0#È�QF� ¸à{ùUFÊbé)uÑkà%#xÕÞ©ïÝú*Ôß:þôÎRÕðî{=ç/×Ä; xXûô½'` {í1ǺNJ¦XhÊIÆí¹õ¨ýæïoý ¬^j MÊíePHÜq�¦WÐ1¦Wìn�h§\ �KõÙqê0gT÷¾aAb+2A@Ô·ÈAìH6\Æo�ÞÒóô»(ÑZ'RïÑ¥Ç_wuÍÇ>@z«P¡¶Ò1` A×,#¬MíÍ,Îï©ÌP³<�¡«Ð0¿¢nC> Õ4¿Üµç¾HÀZ«W©£ Ad(Ø� ¸à9nXKbÄ:L~^ºÚzçÉ�â8µ"ÉjIHÈç@Zò_ê'd$ ³(·³(H^J0ðz@âR*Îîç4¾#5Lè³»³q$<ài�Ø,t*ìA`ñsÌ{mÙ$ν^ +·<K!ÉL¥¸W%LA§È°ÛQñf�¡ìäm�H¾XçL;3Z|¤n&!åôÍsìø «·2òþÆëAÊe�7Ðy¡^<v-«T©£,6ÿ|Ån�A»Yl²Ø Èb3ñe±@Åf(Ý�,v²Øà²Øo¾n')½1Ö«ëë(Í?e° Ì`3{e°¹Q»l2Ø È`3@Án�xt.¾¿®%±ìú8Ù½¾ÌVh½®õ'{}¯íkñú½SÕ½E᪺ 4sÒ²{Ùf?Çùs}>.3'ìóÕéJ<QYtY©+#PÉ'*?Ztu~Ò)±iôÜÇGôão¸d¡ë¼ÙG¨F1Í×ÉöHú+®¬äÅì)u~>LÄ�aú ¢ôøôË{ä*Ce1jJ\A]¿îeèë^¦ :ãgi¸%ªý3�j²² &ÁOL䥳¿aÃX^T#}j ½0¹ÓydÉz}E@~hò:õ`BM÷fнµ|¦8ñ||Ñ�°ØæJLËZ=xLã;xGøDêt5xc Ã(ð¸#zÓ¥hqT°æyØ#|"#ìÀà"YÛsÑL|"¤(È�H´3íØoIòåéÀÀ ýÀ�Q>�Ö(È�Q>�6O|ËQ¤² :Ì)Òfs9¡ØgÒ ²oGI lGÒ¤ µÅÄ,-1OHè +ç\ÎSÐY¿ ®@^fäA7³ðHÁ"îçb<Gud ö9BÌ2¸Ç¥å>¼³+bT&ko$�³¹ÄcõuÝ¥.ÙÝR"FÙÝ*ñÇÙ]êAÝe(»K�av¢ì.Ù]pÙÝy'v÷*e§Ô%7yj};Ë||µ~ãgÿ˯ú實¯éë×ÿöÓ!�Ýþ:éÁZøõí}?>&¯Çßüöëïþû~ýá÷¿ùÝüõwÿðõOÿø«¯?ýå?ûó»ß~ýÏÿ÷õOÿòóïÿð¯ý»ßüëßýêÇ׿üþwÿëwùùë_ÿþóÏú_þòoûÛÿý÷ýñ¿ûùÿ:åßþò?þãÿüòO=Ûýø÷ÿø¿ÿúõÿþé¿þúÿ&Ù +endstream +endobj +544 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1117 0 R +/Name /Im505 +/Width 19 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÃÀ Éágáa`Q`q`yÀ ûA®A¦AÆAFAF¤¿áÿü�FYH +endstream +endobj +545 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1118 0 R +/Name /Im506 +/Width 7 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû÷ï�!ðï�!ë¹ +endstream +endobj +546 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1119 0 R +/Name /Im507 +/Width 26 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-ʱ áZX âÖv®ã¸£° ^AñUw½¥j +2y¬Øpà¹"$[àqâÆWfº«¼mxI½½õë% +endstream +endobj +547 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1120 0 R +/Name /Im508 +/Width 32 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏÀðás700ç&8æxÀÁÈÐB�e ÏÙ ¡@ÿ7³ÿ�¸&¸ +endstream +endobj +548 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1121 0 R +/Name /Im509 +/Width 16 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xs`¨ÿ_ÿ¯þKG@�606020!;òÁ!�Rnª +endstream +endobj +549 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1122 0 R +/Name /Im510 +/Width 14 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x3°ÿ`ÿÀ¾Aõ$(0X0H0È0È8È<� ü �GÀ +endstream +endobj +550 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1123 0 R +/Name /Im511 +/Width 7 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû÷ø÷�Z?¿ +endstream +endobj +551 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1124 0 R +/Name /Im512 +/Width 9 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xch`d`b`aàaà``0�Ã(|Âä *%ºxº�,G +endstream +endobj +552 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1125 0 R +/Name /Im513 +/Width 9 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xk`p`P```à`àa`CflÀ¡r<@]@Ý +@S�" +endstream +endobj +553 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1126 0 R +/Name /Im514 +/Width 25 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc<ÀÀÀ¬ÀÀÀ&ÀÀÀâ|ÌÞPßÀÎ ÇÀÎÀd0p±àà + +T�±-Ã9| òøj�¬ïó +endstream +endobj +554 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1127 0 R +/Name /Im515 +/Width 26 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÇP » ó�s<�â(¶�b(æbv fn`Æ#O ¸m Xy$à ¹�? æ +endstream +endobj +555 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1128 0 R +/Name /Im516 +/Width 23 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¿áC *ª�3>àÿáácCB20þÿ?�� +endstream +endobj +556 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1129 0 R +/Name /Im517 +/Width 22 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¿ñCC ²��ð10àGÿ0��J¢ +endstream +endobj +557 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1130 0 R +/Name /Im518 +/Width 16 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã?$a¦ÀÀví�>`(`¨c° ÿùÁÇÀÎÀÜ�@Y¶,7$Ú��¡j¥ +endstream +endobj +558 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1131 0 R +/Name /Im519 +/Width 25 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¿á�±Ë�1²ÃpUÇÕ'Å`³ÿí��â +endstream +endobj +559 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1132 0 R +/Name /Im520 +/Width 16 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÁÎÂÃ&ÁgÀgÀPÀÀðáñ'/x>ð=`{À @XÀfÀ'ÁÃcÁþ��Z4x +endstream +endobj +560 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1133 0 R +/Name /Im521 +/Width 16 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc c` QÀÀ÷ ÙA0½ß@\Bý8;OODA�F¾û +endstream +endobj +561 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1134 0 R +/Name /Im522 +/Width 16 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc !aÀ£À�l<vòìðü0¨IKà?�ä`û�($Ù +endstream +endobj +562 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1135 0 R +/Name /Im523 +/Width 13 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcf`gøÄÄÁú�<` +endstream +endobj +563 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1136 0 R +/Name /Im524 +/Width 16 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc ca!cÀSÀÀÀöÄøx,dd,Ø��xõ1 +endstream +endobj +564 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1137 0 R +/Name /Im525 +/Width 26 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcàa``a9(Öbu(vn@àÆ`ÌØøÿ``b(�c8æ`c ÿþ�� è· +endstream +endobj +565 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1138 0 R +/Name /Im526 +/Width 14 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`aàa�C0L�Ã ÈØ�Ì È<`]9�I[ +endstream +endobj +566 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1139 0 R +/Name /Im527 +/Width 26 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿñ�CW�± \ªã©gn�òAz@õ éc ^ iøÿ�oÀf +endstream +endobj +567 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1140 0 R +/Name /Im528 +/Width 14 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcf`ÃÇ2ÅòØØä[<a�j°y +endstream +endobj +568 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1141 0 R +/Name /Im529 +/Width 14 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãoHP0p°h°9 ó@ÆAÁÁ060201°°p°°pØÿ¨ÿñÿ�±} +endstream +endobj +569 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1142 0 R +/Name /Im530 +/Width 23 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°gb<pAANOÍ©�>00 !8Pqð1p0308À`Ï��$ +endstream +endobj +570 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1143 0 R +/Name /Im531 +/Width 26 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ þ�²P³1p0°13�cÃö�®Ú/ +endstream +endobj +571 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1144 0 R +/Name /Im532 +/Width 26 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°gb`<pAAAHÊ0°1X�qC``ÀÄÿ�Õp[õB023ÍNc`°ob��*ü§ +endstream +endobj +572 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1145 0 R +/Name /Im533 +/Width 13 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x3ø+1ÏbÄ9PX� �8 +endstream +endobj +573 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1146 0 R +/Name /Im534 +/Width 13 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc|À'!ÃaÁQÀQ ðÿÁ(äHHP08 Ï��«æ +ª +endstream +endobj +574 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1147 0 R +/Name /Im535 +/Width 8 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xgggç °� x/�<Ä% +endstream +endobj +575 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1148 0 R +/Name /Im536 +/Width 14 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³ðñéã2 (P� +ø�r¾à +endstream +endobj +576 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1149 0 R +/Name /Im537 +/Width 15 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc>ç'!c!c S óÀ`§D9 �¶r +endstream +endobj +577 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1150 0 R +/Name /Im538 +/Width 17 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x3¨alcÇBsÀÈd +d@È¢¡Àá$C�ý + +endstream +endobj +578 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1151 0 R +/Name /Im539 +/Width 10 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xccàB ü@Á + ð!>bx�£ +endstream +endobj +579 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1152 0 R +/Name /Im540 +/Width 25 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}ͱ À0DÑïJ³p)\7JÎÍÅxH!uÄqB4÷@8dÔ¦l\l +é¼ã]¿)Ð]5#uæÖ;Ï4öôuåQz +endstream +endobj +580 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1153 0 R +/Name /Im541 +/Width 22 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ12@3ÿaÀþ?`��g¢ +endstream +endobj +581 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1154 0 R +/Name /Im542 +/Width 15 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãÿÇP@t(x�È3��` +endstream +endobj +582 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1155 0 R +/Name /Im543 +/Width 16 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``°`¨`øÁ°Ñ Y,8,$,,,,Xüÿ Cæÿ�äF +j +endstream +endobj +583 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1156 0 R +/Name /Im544 +/Width 25 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcàa`` ÿÿÿ¿IÑÂ�«Ù +endstream +endobj +584 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1157 0 R +/Name /Im545 +/Width 23 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ12@3ÿa`!6z Fÿÿÿ��kJ +endstream +endobj +585 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1158 0 R +/Name /Im546 +/Width 26 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûß @AÙ8À¹A�(1Ã.hàJ ¶d`9$ÌÁ� +endstream +endobj +586 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1159 0 R +/Name /Im547 +/Width 16 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc a¡ WÀ§ Ç Ç ì¤?ÿ <ÀïÀ #aÁþ��Ù« Á +endstream +endobj +587 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1160 0 R +/Name /Im548 +/Width 4 +/Height 16 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKøð! +l�,°A +endstream +endobj +588 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1161 0 R +/Name /Im549 +/Width 25 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨g``<x¡ÁAmä,> +~ (;Ãö|¤Az@zAfÌ 2h�Tñ +endstream +endobj +589 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1162 0 R +/Name /Im550 +/Width 9 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûß Ã@üß��Þ +endstream +endobj +590 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 593 0 R >> /XObject << /Im204 213 0 R /Im320 333 0 R /Im497 534 0 R /Im320 333 0 R /Im320 333 0 R /Im202 211 0 R /Im208 217 0 R /Im320 333 0 R /Im323 336 0 R /Im199 206 0 R /Im348 361 0 R /Im75 82 0 R /Im50 57 0 R /Im52 59 0 R /Im63 70 0 R /Im64 71 0 R /Im51 58 0 R /Im56 63 0 R /Im64 71 0 R /Im53 60 0 R /Im545 584 0 R /Im63 70 0 R /Im63 70 0 R /Im54 61 0 R /Im63 70 0 R /Im518 557 0 R /Im53 60 0 R /Im57 64 0 R /Im58 65 0 R /Im57 64 0 R /Im63 70 0 R /Im546 585 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im545 584 0 R /Im76 83 0 R /Im59 66 0 R /Im57 64 0 R /Im66 73 0 R /Im72 79 0 R /Im515 554 0 R /Im50 57 0 R /Im76 83 0 R /Im56 63 0 R /Im516 555 0 R /Im57 64 0 R /Im72 79 0 R /Im551 592 0 R /Im64 71 0 R /Im66 73 0 R /Im50 57 0 R /Im550 589 0 R /Im66 73 0 R /Im51 58 0 R /Im52 59 0 R /Im63 70 0 R /Im57 64 0 R /Im66 73 0 R /Im53 60 0 R /Im50 57 0 R /Im546 585 0 R /Im57 64 0 R /Im58 65 0 R /Im52 59 0 R /Im50 57 0 R /Im516 555 0 R /Im57 64 0 R /Im53 60 0 R /Im505 544 0 R /Im52 59 0 R /Im59 66 0 R /Im518 557 0 R /Im56 63 0 R /Im54 61 0 R /Im59 66 0 R /Im59 66 0 R /Im64 71 0 R /Im66 73 0 R /Im62 69 0 R /Im549 588 0 R /Im59 66 0 R /Im59 66 0 R /Im54 61 0 R /Im66 73 0 R /Im50 57 0 R /Im66 73 0 R /Im56 63 0 R /Im68 75 0 R /Im54 61 0 R /Im63 70 0 R /Im505 544 0 R /Im57 64 0 R /Im56 63 0 R /Im66 73 0 R /Im54 61 0 R /Im72 79 0 R /Im50 57 0 R /Im51 58 0 R /Im53 60 0 R /Im52 59 0 R /Im56 63 0 R /Im54 61 0 R /Im77 84 0 R /Im51 58 0 R /Im59 66 0 R /Im54 61 0 R /Im51 58 0 R /Im51 58 0 R /Im64 71 0 R /Im61 68 0 R /Im58 65 0 R /Im50 57 0 R /Im57 64 0 R /Im58 65 0 R /Im59 66 0 R /Im49 56 0 R /Im57 64 0 R /Im60 67 0 R /Im61 68 0 R /Im50 57 0 R /Im56 63 0 R /Im57 64 0 R /Im60 67 0 R /Im60 67 0 R /Im60 67 0 R /Im60 67 0 R /Im544 583 0 R /Im544 583 0 R /Im60 67 0 R /Im60 67 0 R /Im60 67 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im57 64 0 R /Im58 65 0 R /Im59 66 0 R /Im49 56 0 R /Im57 64 0 R /Im60 67 0 R /Im61 68 0 R /Im50 57 0 R /Im56 63 0 R /Im57 64 0 R /Im50 57 0 R /Im66 73 0 R /Im49 56 0 R /Im57 64 0 R /Im66 73 0 R /Im53 60 0 R /Im50 57 0 R /Im72 79 0 R /Im60 67 0 R /Im60 67 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im60 67 0 R /Im544 583 0 R /Im60 67 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im508 547 0 R /Im514 553 0 R /Im515 554 0 R /Im60 67 0 R /Im516 555 0 R /Im57 64 0 R /Im53 60 0 R /Im505 544 0 R /Im52 59 0 R /Im59 66 0 R /Im517 556 0 R /Im63 70 0 R /Im54 61 0 R /Im53 60 0 R /Im50 57 0 R /Im72 79 0 R /Im52 59 0 R /Im63 70 0 R /Im50 57 0 R /Im544 583 0 R /Im544 583 0 R /Im60 67 0 R /Im517 556 0 R /Im63 70 0 R /Im54 61 0 R /Im72 79 0 R /Im52 59 0 R /Im53 60 0 R /Im56 63 0 R /Im517 556 0 R /Im63 70 0 R /Im54 61 0 R /Im59 66 0 R /Im57 64 0 R /Im62 69 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im544 583 0 R /Im60 67 0 R /Im525 564 0 R /Im69 76 0 R /Im50 57 0 R /Im63 70 0 R /Im57 64 0 R /Im62 69 0 R /Im50 57 0 R /Im517 556 0 R /Im63 70 0 R /Im54 61 0 R /Im59 66 0 R /Im57 64 0 R /Im62 69 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im544 583 0 R /Im60 67 0 R /Im60 67 0 R /Im508 547 0 R /Im64 71 0 R /Im66 73 0 R /Im526 565 0 R /Im508 547 0 R /Im57 64 0 R /Im76 83 0 R /Im57 64 0 R /Im59 66 0 R /Im59 66 0 R /Im63 70 0 R /Im54 61 0 R /Im76 83 0 R /Im64 71 0 R /Im65 72 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im60 67 0 R /Im60 67 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im60 67 0 R /Im60 67 0 R /Im60 67 0 R /Im60 67 0 R /Im516 555 0 R /Im528 567 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im60 67 0 R /Im60 67 0 R /Im544 583 0 R /Im544 583 0 R /Im60 67 0 R /Im60 67 0 R /Im517 556 0 R /Im516 555 0 R /Im528 567 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im60 67 0 R /Im60 67 0 R /Im544 583 0 R /Im544 583 0 R /Im60 67 0 R /Im60 67 0 R /Im60 67 0 R /Im530 569 0 R /Im54 61 0 R /Im66 73 0 R /Im51 58 0 R /Im59 66 0 R /Im64 71 0 R /Im63 70 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im515 554 0 R /Im52 59 0 R /Im65 72 0 R /Im61 68 0 R /Im50 57 0 R /Im63 70 0 R /Im51 58 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im60 67 0 R /Im544 583 0 R /Im544 583 0 R /Im60 67 0 R /Im60 67 0 R /Im531 570 0 R /Im66 73 0 R /Im53 60 0 R /Im50 57 0 R /Im63 70 0 R /Im56 63 0 R /Im57 64 0 R /Im64 71 0 R /Im66 73 0 R /Im56 63 0 R /Im67 74 0 R /Im544 583 0 R /Im544 583 0 R /Im60 67 0 R /Im60 67 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im60 67 0 R /Im60 67 0 R /Im544 583 0 R /Im544 583 0 R /Im508 547 0 R /Im532 571 0 R /Im518 557 0 R /Im518 557 0 R /Im528 567 0 R /Im544 583 0 R /Im60 67 0 R /Im544 583 0 R /Im544 583 0 R /Im60 67 0 R /Im60 67 0 R /Im544 583 0 R /Im544 583 0 R /Im60 67 0 R /Im60 67 0 R /Im516 555 0 R /Im517 556 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im60 67 0 R /Im60 67 0 R /Im544 583 0 R /Im60 67 0 R /Im544 583 0 R /Im541 580 0 R /Im52 59 0 R /Im73 80 0 R /Im73 80 0 R /Im67 74 0 R /Im515 554 0 R /Im52 59 0 R /Im65 72 0 R /Im61 68 0 R /Im50 57 0 R /Im63 70 0 R /Im51 58 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im60 67 0 R /Im544 583 0 R /Im544 583 0 R /Im60 67 0 R /Im544 583 0 R /Im544 583 0 R /Im60 67 0 R /Im544 583 0 R /Im544 583 0 R /Im516 555 0 R /Im57 64 0 R /Im66 73 0 R /Im72 79 0 R /Im68 75 0 R /Im64 71 0 R /Im72 79 0 R /Im56 63 0 R /Im49 56 0 R /Im518 557 0 R /Im50 57 0 R /Im57 64 0 R /Im63 70 0 R /Im53 60 0 R /Im49 56 0 R /Im544 583 0 R /Im60 67 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im60 67 0 R /Im544 583 0 R /Im544 583 0 R /Im60 67 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im518 557 0 R /Im518 557 0 R /Im518 557 0 R /Im528 567 0 R /Im60 67 0 R /Im60 67 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im60 67 0 R /Im544 583 0 R /Im60 67 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im545 584 0 R /Im517 556 0 R /Im518 557 0 R /Im544 583 0 R /Im60 67 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im60 67 0 R /Im60 67 0 R /Im60 67 0 R /Im60 67 0 R /Im518 557 0 R /Im64 71 0 R /Im66 73 0 R /Im62 69 0 R /Im52 59 0 R /Im58 65 0 R /Im57 64 0 R /Im63 70 0 R /Im545 584 0 R /Im76 83 0 R /Im56 63 0 R /Im50 57 0 R /Im66 73 0 R /Im51 58 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im51 58 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im516 555 0 R /Im50 57 0 R /Im51 58 0 R /Im56 63 0 R /Im60 67 0 R /Im541 580 0 R /Im64 71 0 R /Im63 70 0 R /Im51 58 0 R /Im56 63 0 R /Im508 547 0 R /Im64 71 0 R /Im66 73 0 R /Im64 71 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im60 67 0 R /Im544 583 0 R /Im544 583 0 R /Im60 67 0 R /Im60 67 0 R /Im60 67 0 R /Im60 67 0 R /Im60 67 0 R /Im544 583 0 R /Im544 583 0 R /Im528 567 0 R /Im60 67 0 R /Im508 547 0 R /Im64 71 0 R /Im66 73 0 R /Im544 583 0 R /Im60 67 0 R /Im60 67 0 R /Im60 67 0 R /Im60 67 0 R /Im544 583 0 R /Im60 67 0 R /Im544 583 0 R /Im60 67 0 R /Im60 67 0 R /Im517 556 0 R /Im63 70 0 R /Im54 61 0 R /Im61 68 0 R /Im64 71 0 R /Im508 547 0 R /Im57 64 0 R /Im76 83 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im60 67 0 R /Im518 557 0 R /Im59 66 0 R /Im50 57 0 R /Im53 60 0 R /Im52 59 0 R /Im58 65 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im69 76 0 R /Im50 57 0 R /Im517 556 0 R /Im58 65 0 R /Im57 64 0 R /Im67 74 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im549 588 0 R /Im59 66 0 R /Im59 66 0 R /Im54 61 0 R /Im66 73 0 R /Im50 57 0 R /Im66 73 0 R /Im56 63 0 R /Im508 547 0 R /Im54 61 0 R /Im72 79 0 R /Im50 57 0 R /Im58 65 0 R /Im518 557 0 R /Im50 57 0 R /Im57 64 0 R /Im63 70 0 R /Im53 60 0 R /Im49 56 0 R /Im544 583 0 R /Im544 583 0 R /Im544 583 0 R /Im60 67 0 R /Im508 547 0 R /Im528 567 0 R /Im60 67 0 R /Im60 67 0 R /Im60 67 0 R /Im60 67 0 R /Im544 583 0 R /Im60 67 0 R /Im60 67 0 R /Im544 583 0 R /Im60 67 0 R /Im60 67 0 R /Im60 67 0 R /Im551 592 0 R /Im50 57 0 R /Im62 69 0 R /Im50 57 0 R /Im66 73 0 R /Im72 79 0 R /Im548 587 0 R /Im65 72 0 R /Im50 57 0 R /Im56 63 0 R /Im49 56 0 R /Im54 61 0 R /Im72 79 0 R /Im66 73 0 R /Im54 61 0 R /Im56 63 0 R /Im68 75 0 R /Im54 61 0 R /Im63 70 0 R /Im505 544 0 R /Im64 71 0 R /Im66 73 0 R /Im62 69 0 R /Im54 61 0 R /Im63 70 0 R /Im51 58 0 R /Im50 57 0 R /Im69 76 0 R /Im50 57 0 R /Im63 70 0 R /Im50 57 0 R /Im58 65 0 R /Im67 74 0 R /Im49 56 0 R /Im57 64 0 R /Im66 73 0 R /Im72 79 0 R /Im64 71 0 R /Im53 60 0 R /Im57 64 0 R /Im59 66 0 R /Im59 66 0 R /Im50 57 0 R /Im72 79 0 R /Im61 68 0 R /Im50 57 0 R /Im53 60 0 R /Im57 64 0 R /Im52 59 0 R /Im51 58 0 R /Im50 57 0 R /Im54 61 0 R /Im55 62 0 R /Im56 63 0 R /Im49 56 0 R /Im64 71 0 R /Im51 58 0 R /Im64 71 0 R /Im51 58 0 R /Im51 58 0 R /Im52 59 0 R /Im50 57 0 R /Im60 67 0 R /Im60 67 0 R /Im64 71 0 R /Im66 73 0 R /Im72 79 0 R /Im64 71 0 R /Im53 60 0 R /Im57 64 0 R /Im56 63 0 R /Im50 57 0 R /Im51 58 0 R /Im56 63 0 R /Im49 56 0 R /Im57 64 0 R /Im56 63 0 R /Im56 63 0 R /Im49 56 0 R /Im50 57 0 R /Im64 71 0 R /Im51 58 0 R /Im51 58 0 R /Im52 59 0 R /Im50 57 0 R /Im64 71 0 R /Im51 58 0 R /Im57 64 0 R /Im59 66 0 R /Im63 70 0 R /Im54 61 0 R /Im61 68 0 R /Im58 65 0 R /Im50 57 0 R /Im65 72 0 R /Im60 67 0 R /Im66 73 0 R /Im54 61 0 R /Im64 71 0 R /Im51 58 0 R /Im51 58 0 R /Im52 59 0 R /Im50 57 0 R /Im65 72 0 R /Im50 57 0 R /Im56 63 0 R /Im49 56 0 R /Im54 61 0 R /Im72 79 0 R /Im54 61 0 R /Im77 84 0 R /Im50 57 0 R /Im63 70 0 R /Im51 58 0 R /Im57 64 0 R /Im70 77 0 R /Im76 83 0 R /Im56 63 0 R /Im54 61 0 R /Im56 63 0 R /Im49 56 0 R /Im50 57 0 R /Im51 58 0 R /Im59 66 0 R /Im50 57 0 R /Im53 60 0 R /Im64 71 0 R /Im70 77 0 R /Im50 57 0 R /Im72 79 0 R /Im64 71 0 R /Im51 58 0 R /Im51 58 0 R /Im52 59 0 R /Im50 57 0 R /Im544 583 0 R /Im65 72 0 R /Im50 57 0 R /Im56 63 0 R /Im49 56 0 R /Im54 61 0 R /Im72 79 0 R /Im54 61 0 R /Im77 84 0 R /Im50 57 0 R /Im63 70 0 R /Im51 58 0 R /Im57 64 0 R /Im51 58 0 R /Im54 61 0 R /Im58 65 0 R /Im52 59 0 R /Im56 63 0 R /Im64 71 0 R /Im54 61 0 R /Im66 73 0 R /Im56 63 0 R /Im54 61 0 R /Im56 63 0 R /Im49 56 0 R /Im50 57 0 R /Im64 71 0 R /Im51 58 0 R /Im51 58 0 R /Im52 59 0 R /Im50 57 0 R /Im544 583 0 R /Im544 583 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 591 0 R +>> +endobj +591 0 obj +<< +/Length 1163 0 R +/Filter /FlateDecode +>> +stream +x¥]MÓí¶mÞß_ñ.E^KERYvÒÌtÓI&^fÓ:NãÖNâÄOÿ}ÅC$u6÷â¹÷ ø G$@ýøå÷?~Y?~þòãðyåcù\ü³üKtûâ?¢_?ã>¾ùáËWÿö;ÿå7ûò{RÞ§kùèÎòG-D,¿ÿÁÊ;/OA(ïhµlVûòóÇ{Ï¿.ÑVøy8QÁê?]¸*pã5ñÓ®î,ø#$ó#¸d{ýÓ%±Û.4âæ¶«ísÛ`ßúëqp¢Ü»\iuÛ>ÏêîÛÇEËñ¹¹ïOxNÇpþí÷nö½i@ùlW(q8 \HUÃ)4Ä¥i-Á1Ñðãl¼<)ÕÏÍõlÁÅù³{ ËÒq¿öDùõö¹ÿ«¾[£S°³ÁT~í?Ó2R¶×ß Íû¤Ô)l4¯_óRnÃõ +ØP~í>SÕàð}¬#!÷Â9Wzaú¶e5<ÒÛBaХÒî'FRÕ`éGMAr&¹ä@ÁNa¾Ç¢Ô LâmõuB2À'4<8Öâiq,2÷p?NGs?üç2#ÍÈ|<N5aëq<VÍj µÁ CIZWa$änèÒ`JKÏÜö°«hjE¾2£Ú +sU°+¾¦À~´é°tøs,NiY«eYòÉC!ÄÞC;rlqwñ[ì¥ûÑ£a$(.vKÄ;è ¶bêGsm:ÐnXç½Ãgð~DéArÒUATtÁ~iñÉèðìhöPëĪVËʨ¿ZÂùü#å©w±% ìx².È2ü¶æâü¦ Fè~ߨÿ)Ó®çX +ôûÒûùÄÛïVPh¯ßöj5î¡© +,nZçÔ[K«ûC)-¶¥*ð÷cñcu,o;dìq<ûééûÏÙ ûbée:ìKß3d§*ïÅ®¬ù¨¼A]Zqfq û²>¤½UÁn¢þÜ;TGßËn Iç~¾Ý÷D·Îå,Ó}%U8¤ù°o±ÎS&ã_À³ï`ûvXÞÁ Ý{ kh¯²UA4¼Ê*¬ußm¬UQ +7¿Ë¶6¥7¬Í0öÏúG8|VÐïm'¥Ô^çOKkþSnD^çý~8¶7;òHÊXËfÃKzÏÉu3½<k°FC »}yÛZÒ)¡#`m(ϰõCã~ô¡µnðdBN¸ª ÙÜËh=Ƹ#éìpQ:¸`|ùîRúò¡/í~3¼Â)4!wÃýtÞPÁî7ÝÁG¸txà£ÇcîWÇâxIÁ@T´,#Iù²ROâp2ß�éàC!kÁ´7¦Mhá9ÚPLÚP4)Ø +$Sô½0æ9ãù|í½á#wÃAòÄAU 9¶Ñ_ûù+àãØv»{z [0?H5 j8=&/ÔxÏGÓW$É5 òêìÙ;pUpºQ!¼fãl?1¶5 û1c²:nhÙt>×`éÖpOôC9Lµa2Is$íÐCóUÁabãF<´FÌ£ÂDÆÙ,"Ñ_s<Ø×v #áÚÙ( ð¬ù|nwc¾XãxÚ|XoÌà C9Ï÷dM4ïqä´=l0DZùe÷¸9.è²§í®PÕ5 ¯z½Ð"Ñs<Ý¿i@Øz*1'àYóyãéÆ|ÂÉÓ6'ÀÇÓæÓÝäWÜ"s>ùÍê½áßpoO¨_¸,v~ÓTì*±'àËÒ}4 +ôå9W}B +f(ÕòE{ç¯ ªØLÀk?§@UÁS +t¾G¼G°)*xL¢Õ<¥@¨à1ª +R T R Ã#8z 5±cXØ6ÉË{Éɤ=9IÙvEÎT¨*°}²#`×®¼N}|nY¿ÌVC Â©Í _slv§0o¨pª±©$,æ<kþ +§»úÈ-0DZÙ]}a¦Â½yÕToj¼Nê£uJ<ûMßÙ÷8ú}{OÛN§«N§ZúÀ¨1dzCðN§zúsÜbNÀ³ x9ÇøtêÿÀdzçS=2JýQ1'àÙÇO£>ê6ê7ù¡ÆO?ΧMn�0òÔokXáÓ}gaÎÆ]ãó/¹H+ÕP0Ópty2(CÏÓW,öAüéÚáô<_iܨ!q¸{(¡æ5 +?¦bJ@ª£TKg-Xç5ÝS5XÂ%6 +[`?gSU ²î V?î9ëßÏó°âÁ&>£¡�ë|3:×?ÃLIU`PkòjT°YbÕà6K°6üjÚ#ø`ê ±]{Ã+Ë!¼ LB+¼ LKp,h�2)!`IC¡é(Ó&£LJXÒà[K6j%84¢2-Á±*%'5SÍT4äèK*¼j|eRkí�eZcAFI KºQ.£XÀfÞÎ6è/¾ÇÖQ&&|Ã{S:.ùÁ3ÇKyÀÞùkÂ*@pS9/¬iÂMU ô(Éî¦Kxà$㨠+¢%Xk<ha#²*Ha#RëÇcy·KÒL{(°[ÜçkÁj˲`¸¹9×ýP¼âjp6ÕáÂÙìÚMéÆ!éw£;LÝ8MnÓv¤ó:VèHd0[ÕþcVºÐȯÌK¿(Hô×³Ò ÞD~-`^Úc«5"¿æ~Ñè¯9¶ÜåRB±'`VûBF@¢¿æ.D$òkóÒu¼ Ëø°d£ DÌ øRùÍVäJ7ò©QO?�3ú·æQÊÅf.ÑSm¸ÕIÄ٫пfat'÷}UA0¼§j +¢å]]{躮u{¹®5&ëÒ!Yr$ + +SªÁö®Í}(xNAÖ (HA°)ôãs +Rkð Ǥ*xJAª§èd HAÖrÀ +&àëdí(þcV(ÈÚQøµyéBAÖrà¯9f¥¬å_öØjrà¯9æ¥Y;Ê¿æØLAÎ.·P5 Y;ÊöÌjdí(þcV(ÈÚQøµ$"/6/AS}®$b ÈaÖ³ 9§Íëf ÈaÖ³9ß0ÆYÖrq-"¿Ê`ó,A8LÅÖçy2qø$-¨!lESZóªÒ+ÏÏ5ÓÍ 7Ð µB4µä¼PC²\F$ܾÒô4h|θ%qO¢n +±(¢ H4 +ÁOwäªËýdJ/P2êe6àßúl(5Ê5p}7w +T°Y¹D£ªwíUÞ®u£·m¬çµÀ¼²B,¤f S(Ó½sè¶bÊĤg« G¸ÙBëP¦&96Ó£³+ QnÅ.CMÏÖá&NÍ¢aUãl æ¾ÈFK¡ÖO? ívÕEÚäxºQÃÍ!b©9fI<;-ô,0ÚÌl<Lr<]5òê21)àÙ*Ü÷b¶["ÃeIðtK$PxI_ÖùÔQðDHü©ø9?: Õ.Äs +4 (CÍ+iXlH!øÊÁ5×ÓT{({¦«/§©= ¿Pèl<®ïý£ä _Û�½ï}£ä ×¥óùóªâÇA6 jd.�ÎÚ÷®ÚÑ`ôgàrí'ؾ᫯÷½§w4½áé'xÏÞ4¨ñì¹�0ßóGãÙ}7xj¸á ¾²ßsG#â6/¨Û^âÉ÷E[P}%¾§³7<m^ gÏFÁ³ûÞ¯;ÎÞðlÿݳ[4xu¾êph4ÀÑøgðøJ +|O oxÖü %ðø8ÍÞ0óàË}ïÉ$oøRzí¼èJüpÁw3?¼·hò*ͳñÃü0?{QM'G '<¹ßÁGÕï=ùÞ}£YÀ×VDO¾wßgÀ_slÃçó¿éÉ«Ýï=ùÞ]H5ðì¼áÉQÃ'ßzò½»CkÌñô<÷äUîÉw|ïîxö Þðä¨áÆï=ùÞ]w5æØ¼ÈàÉw|ïn¸EsO×=ùîÐïÝ ¢`NÀ³ý÷'G 7|wèÉ÷îK¬1dz xãÉw|ïî>s5¯{rudwHöî¶:¬/ÇÌ�Ø»»±à×¾qäÍõï4-0£¡ GWlî4-¬aó+yX*èà6íáÛè¨áòiû6zUmô6ØÕoUA¤dÄ~¤J6Ó%ÀÙ~GnAZLg UoæHç1Uå\N«Áa¹�½FæH.!HnPGï§e*#ÞÕ0 +TŪÝt,ÆcíQ#ýh¿³£)CíPÁf9ÝTfÛ´ËBÌe² XXÖ£LKplöÌa±ðóbø5ÊĦgëpðÁnaÈ(SO×áæ\+´´²*à ˻¾¨ÆKwÖ°hìÉÂSCËl«25Éñt3ÜD` VebSÀ³u¸!¬`7µiÑ(æN3ÛíÊZj\IÏVáf)´Üº*SKpGI _4ÔĶà;¦SðÃ9Æ.²e°w ̱âÁXâî:©qý»3Uý²ÀÄRU ES@ã· +v·åa0U%F"~¨ Y®Ø¸kUÜUëÆd¹JkÃò zFÔ3*Ô³Ì� ,(Ñ/`a>eAàØ¼6ÇÕDYbûjeMÏÖá²Äö©À*Sçpî^-f± LL +x¶ +úý«`Ö·ñÔ +äx¶'_Õ4¨FAÍçAÖã駸á<±}¨ÊĦg;ó&&¶¯ÇTäxº +:åí«#U&&<Û7HÝn MÀÓu°¬pÀP&6|Ã{S¾(gô¥åSÏâ%/ªÙ|Rx³ùÆ×0qÞ è5LÛ0}«j ìão+v8åø/-êñ_ª9H©÷Ïñå¤TsRïã%)9HÚHNÎä«SÍbJ½_,¦(f1iJZ,³©¦A¥Þ%ÇKTÓ ·«j"Uêýq¼$RE1Ê`ÿnG!ÕT¬Ô;ãxIÅb*¡ùovRÍåJ½\®¨æriæõS¯TS¹Rï@ã%+©\ÖãÔ5Üzew>eZkgñÆ'¿ÌOFðln¶!Y\ÆKÜ´(æ¦RàPQ&%¬¸Ãæ<Ó%µ,É©eGÄÒE[éVÔ´2éðêÓÊFQ(R$j¸Ä±\_Ïz*©±Ùó*ý5Çæxøw£Pª}Cð¬78²"xö ÞBA 7Q(¹ÞÅÖãé'x R5èQ(g½ÁÔXÀ³OpçM³Us yÏtÉIjÆ´ÎâM³ÑâMDÍq<m^÷¦§Qð¦E"æ<Ûúw[òÙjÂØü^º¤x$1Å#'V$òkÏ6ÞËFë.gïîò´ +î¯HÄ/ªûJ³;.)±ÚJiÀÖùkâü*8?溶EüN·ï¿W ¡x÷º5}¢}ÿ½)8 +ßmO¥ÅíYÐAýúãDÐAÓ(TÇö,è�ÐÛ|'÷ûT$ðb"è )Ø < + ̳XhHô×[W¡\ù÷hXÓ :\ïBÃ@"5ðìÜаÕÚãØêF¶Åò½µl´0 9Ï>þ zYõ8üã{OÛ×7û_V_$jãÙæ×)P6Z(HÄgÿùBÕ o(¼êpþ4Ò5æx¶õÍl´°09Ï6àÍæþËj]�ÃeÁð´}}ÌV ذB¤*íÚ× +Ѱµeä¹XiF`¦Á9,_¤RÛüëÈ5lÝÅØà»NÆ]! j »öOL5\ H1ºcXH.$±_T$Ëu Ú#¯¥Ac¨ +hýScMAÿ25úÔp, +ò=½ÏeKø©2óå:âh +,M+Ý/øwC^º.1 ¦¿Ùb\ÔuiøkÍKñYyÍVIº.ì Øì ×h8z-DÒu9ahãÙÇ¿ÙËVIº.£ì xÖþtµÇñ´ý&é0!$jãÙî¿a²@"æ<ûøo0IÔpÃ$&dDkÌñlÞ0I Y smÀ;&ÓK¢Lmr<]ç¯ÓUþ:í\=«2©µNؤ£]£Ü6,]$°åhRWÃbJ<`[¤¤®�ª!< il.¨ä¶G\$Òjf}�¸Hô×'²K{Õ²QðÃE"æ<kþÆg£ÅãØ<7SÞIz*ë ¼H¤Æ};Oz}Ís;±Òð´ýÇ M�úªwáE¢5æxvÞpÓ(p"smÀ.ð²p6ÏíhKóãÉO£àÉDÌ xöñ5´jпúªw]AÃeÅðô<çUÃí�P$Rc_<¯^¼KÑÙ6¢q�¿cé"¦ç4lÞUòbz+I¨AÑ8où9 +ÈO¼HäÌZ<xè¯96?oJÈÈVÁ ذyÙÏF/5Çñìã¿áÂ«Ý õ^$RcÏ>ÁÏV=¿æ²7ÃÑð´ýñlµ8à"Q{Ï |\$bNÀ³æõÄÑÓ§ùÛ&]4<m^÷¿§Qð¿E"æ<k^yW¸,VfK8®"_Xq=ÍQy!9®½}q Ê`ÏÓ,Í/°û6ó+ Û2ÕØXS /Õl»/_"É©ã/Õk@Þ G%îse'UAÿ¡Ýþ¹¦Àòé$² öâ% +è·²G,F¸k¿iè»at×¾t¬ +ò¡Êý±Ò¶èe \¢kìä4ÚÙäÖdMÂ%AU{xIPS`ù|ÖÛ¢E½V2 £(ULÀºeZcAPJI K ++DàØÌjδ±¼ì¯CØðlî]±ë[o66çiPÃÓu¸awÅnáw(S½ eRBÀÔFTãU&Ò4,h�¢2)!àÙ¼;tØ["L©M §�Æ2)!àÖÓxÒNa�3Þ0$°·ÓdÍ/üa*FrTALÞÆÇרªÀâg$_[_+±îPâÑWu×]ÛôÀDSTµä+QCZM¾rÜ &Ò¤uCove]ö/]5äVï}¡ú§þ^Xn%Ñj°>üÆRSLqÝ~£gûè)ç¾Uöµ¯¼ã ]r¬@fë°Ð%·á¯96¿@˲Q J¡ËLs5³û0$jc³O¦´²l8VèÂÀgíß1¬Ia Q{Ï6¿fRp×ÀÍBUõåxºþúÞ[À¬29Ï¿Ù{T5Çñ´y}ï-`VHÄgïg_¨áæì+`bH´Æ³¥ÈhèÒÒà×¾n_*r£¦¦fT4Öò>.¥±tZ±t ¶ç¯ x°ùÇùO/ÐÍ¿kÜ6üb¹zݵѯñ7pOùj(ñª`SøKnzðÝE".`Ö à»DͱyFÓç²UpÞE"öl^`�Ü8ïl´8ï"QsO×ÓN£à»DÌ xÖ¼~}Ù˨ǡÓ\5ãxÚ¼êº_Fç-5ÇñìØ»¹s,[×[$bOÀ³ãz³ÑC¿¹Z0Çñìãg×{óøà{Dì xöñoν²ÑºòËJ#àióú[Ãi<o9+¯ùÉtÉ#JrÑÑ>Pe°.¹D6øöEs&lRË%²ä_ðþªÀöY]S 4± +¢åÍ]rÿIJFùPwÕ@f^Ý«íÑeü�@£H�Ê´Çpã(4O2-Á± )ʤ% ¾µdóéQ±¤¡¸4i Í«z:LNíeÜÊĦ §�Ï2-ÁñìSÜù¦]ðN(ÃÝaÃÑe84Ã!]2*6;©-NêèÒP&&|ãjs:.) +¢§I)Ø;.) +^òX»*ÂG[üß¡·³%§«U §ö[/LCQyÇðh +ÈÝ#v?U¤Åà§£¦`7κ)8ÎZ{rXÃ!.Tào!]J?^>\3ßnµÜ/\¤³érXqQÂ6@"Ó_Àl1)L$úkYéÂ2@"¿0/ýb Ñ_sÌJvùµyiÖxÄqÉ©~± +è¯9¶zÂ<f"[-$bOÀ¬ö MDÍñlío¸D¶ZHÄgíßðÕ:æÃeµ^!� _øRÚW÷_äêîóíÝ?`æþW©ØË¿îÝÃæÖ[äþGwHîÝÀý;ûWD`/ºõ¢{ÓÖô5øþIU@¿ýa,l +,÷~Hî<h +LJ7\Â+íû UÁj¹»Déê;Çq3Üý£gqÿ® + MkϰYb$RXv<´x²ml¿ø£)Øìt\lEßÏÇëWBà@kk Ù +hí²ð׳ÒÀÖ.×~-`^ºp µKÂ_sÌJZ»4øµyiV9þc^ºp µKÁ_s<ã,hÅ=³ÚZ»ü5dzµ¿ã@+æ¸Dì xÖþZ1É$jcë>_Ã>J6 +$jí²dÀ +ÔÓJ³d�3åðâtÀÖJ3d]ò®eÈü&_.Ogó:f§ß¹³çzÃrçúåm¥Ñð ³çåÎõËÛJ#á6w½[ ÑaÙ(¬®_WFßð¬yýùe´,¸®_`Wßð´yõ9 Ûõ+ôJÃï5¯0¿z9m_iä}ÃæeÇ"ï_VÓp½XiÔ}ÃÓ¯Æve£à3\ï#V²ßð¬yýùe4áÐoNf¥ñþ ϶þÓqëÌJ³}üÇßo +îÚ/Ô+\V*O×ÿvå§åz'µÒ4 ·Ó£) +Ó:ÇfÝ7xɯ+DB.± \âW¦µÝu{w..ìEÇcÙrŶKnÏ9 +úN×éýy}FyZ Èå3oíUeß@zãEdß`ôÆF5Hñ3ú¶\¹Ïa>¼@}çKx¹¦2=Ò2+ñ ^é`öbäéf°ôÞO\Ja>´g«µõ4T²áÁZÌûaOÂt¥HcË}ÒÐÞâ]zÚxå¥[Ûÿ© +û?¨ yÃlæ#*8lß1?Ý<Ò¶eáúݦ¤]8T@SíYOUÙmÿ(ÝH¯mÝÁd"«K³2ò&eaæ¾åÇÙ·¸-|˸¼%øJëÝ $U»%P«ÁîD¢@¾§1q \XEMA´ÅÐ) +,$EÚQ® +z{s LW£ï¢>¬¢¬ëîXëºÖ-n<K ²¢lÅ1(ʶXbq°Ñc}ýû8²`jD~Jã`£GÇlUÁnP µñdbÜåbwM'ïûóKÚæ÷)ÿÞ8Øã{i£ÇÃP¥¡_Ø%)Yk¸qès¼Å7®ÃéL>1°BÓ¶Þ#Ëa£EU[hX´n<C7*5ð¦Än¥~±Ô@S@UûwÓ`ÊPöN[ÒÊÛb}{®¨W°}'jD4Tàµ8¨yyGÖãË;´«oÐýwXéxcXst%GìÇÚ°ØÒppa_ä)ù,¥*Y +*0¥*JÃ9´|gÞ©*Hï$-¬¨ =¼£«)° pðEÚõRG ÷ÍønY ¾Aé K Í|/ä(VËí-wÛÀYÚ@9æ~(ÉÑÓ ÷Vî*°øGeErÞ®5¢·¼Ák¸ïo6"ÝC¶Áx.ÛË'í9Yêëý9ZµF¤üö<¼ª Ù®Ü:G#oB £ã°¶qi¼* wp^{!hUÔS ÛV¢OBåøé4n3ñÃ+%¼Ì$°wþð¤Å&×[6c¤á +Li¥Ò¢ +è¹ëÄ¢Rø+sU`[ÆH®Y«Í½ù|ñXõ]/áå:ÚpFáXmè¦å$Ç®5pëèc×Ó%v=ÝÄ®óEåpu(?;tCÝPÁãC·ªàé¡[UðôÐ Ý´è{á¾Ä¦ _ãDÀòçè{UåSÒ +VËKDsªmA©éµ¼q¸9ËòÜ«r-ïÄõÌMeOMHÎ[xVo¹´RkÄݲ«§ $Ó6LwJt÷(É49ôÝÅPçú`2Qç:L?@ÆÈ»ÜÛ9Ú#$Ë1²¨R¾<³ +¶å)Gª +r¤ªà)GB«å Bé mÕ¼sæ!Üó ¯ÏÊUx¸nê»^v¿*µÈñ ÕAøuaSÇNÙÕ!Æî^cØ:è5Æ [ÙÕ¾``ûCvU<eWUÁSvÕ<dWMÁCvU<eWUÁSvÕ<dW¨à1»j +²«ªà)»j +,ìJ«³ÅÒ»^�<æ6l§* Ûã8¶7»a9VfcN|tÁDS`¹ JkDoK0·Án9âÑÚ`·0LíHHÔÇ +Þ]qMOçh!GÚ8H¾ÏUÝδs¦àáÁ3*Øíà9{tä6(÷Þ\Âfn«`à6 ^ÍÙ|ÕüÅ@¢uæXá7 íÍ�ÜóùúËW¿]?Ö¯ÿüåig?r_ÿðål<wϲÇó7úøÅ¿ÿíãûï¾ùö¯ÿüö׿ûÍo?þþ¿ýé¿ùöOÿù¿ûÃOß}ÿýÇñÍùñÛÏ?|÷í}û>~õñ~úû¯¿úêçþüé/ßýóó¯ßþôÕ×þüÿøëÿ|õ÷ærùéïùñõùׯÏùþò§× +endstream +endobj +592 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1164 0 R +/Name /Im551 +/Width 21 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿTÄC||||þÿÿ��Ùî +endstream +endobj +593 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F1 +/BaseFont /Times-Roman +/Encoding 594 0 R +/FirstChar 0 +/LastChar 255 +>> +endobj +594 0 obj +<< +/Type /Encoding +/BaseEncoding /MacRomanEncoding +/Differences [ 128 /.notdef /.notdef /quotesinglbase /florin /quotedblbase /ellipsis /dagger /daggerdbl /circumflex /perthousand /Scaron /guilsinglleft /OE /.notdef /.notdef /.notdef /.notdef /quoteleft /quoteright /quotedblleft /quotedblright /bullet /endash /emdash /tilde /trademark /scaron /guilsinglright /oe /.notdef /.notdef /Ydieresis /space /exclamdown 164 /currency /yen /brokenbar /section /dieresis 170 /ordfeminine /guillemotleft /logicalnot /hyphen /registered /overscore /degree 178 /twosuperior /threesuperior /acute /mu1 /paragraph /periodcentered /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf /threequarters /questiondown /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis ] +>> +endobj +595 0 obj +<< +/CreationDate (Mon Jun 18 18:33:47 2001) +/Producer (PStill 1.55 UNREGISTERED by F.Siegert frank@this.net) +/Title (icca_dvi) +>> +endobj +596 0 obj +18882 +endobj +597 0 obj +119 +endobj +598 0 obj +39 +endobj +599 0 obj +88 +endobj +600 0 obj +65 +endobj +601 0 obj +63 +endobj +602 0 obj +82 +endobj +603 0 obj +90 +endobj +604 0 obj +74 +endobj +605 0 obj +56 +endobj +606 0 obj +33 +endobj +607 0 obj +24 +endobj +608 0 obj +54 +endobj +609 0 obj +86 +endobj +610 0 obj +83 +endobj +611 0 obj +73 +endobj +612 0 obj +95 +endobj +613 0 obj +14 +endobj +614 0 obj +102 +endobj +615 0 obj +135 +endobj +616 0 obj +76 +endobj +617 0 obj +55 +endobj +618 0 obj +79 +endobj +619 0 obj +80 +endobj +620 0 obj +28 +endobj +621 0 obj +61 +endobj +622 0 obj +27 +endobj +623 0 obj +60 +endobj +624 0 obj +59 +endobj +625 0 obj +50 +endobj +626 0 obj +41 +endobj +627 0 obj +34 +endobj +628 0 obj +82 +endobj +629 0 obj +39 +endobj +630 0 obj +32 +endobj +631 0 obj +67 +endobj +632 0 obj +85 +endobj +633 0 obj +80 +endobj +634 0 obj +22 +endobj +635 0 obj +23 +endobj +636 0 obj +91 +endobj +637 0 obj +76 +endobj +638 0 obj +48 +endobj +639 0 obj +42 +endobj +640 0 obj +31 +endobj +641 0 obj +28 +endobj +642 0 obj +45 +endobj +643 0 obj +43 +endobj +644 0 obj +39 +endobj +645 0 obj +29 +endobj +646 0 obj +36 +endobj +647 0 obj +38 +endobj +648 0 obj +26 +endobj +649 0 obj +31 +endobj +650 0 obj +32 +endobj +651 0 obj +27 +endobj +652 0 obj +31 +endobj +653 0 obj +48 +endobj +654 0 obj +15 +endobj +655 0 obj +44 +endobj +656 0 obj +12 +endobj +657 0 obj +44 +endobj +658 0 obj +60 +endobj +659 0 obj +22 +endobj +660 0 obj +19 +endobj +661 0 obj +31 +endobj +662 0 obj +24 +endobj +663 0 obj +54 +endobj +664 0 obj +58 +endobj +665 0 obj +38 +endobj +666 0 obj +37 +endobj +667 0 obj +19 +endobj +668 0 obj +44 +endobj +669 0 obj +39 +endobj +670 0 obj +12 +endobj +671 0 obj +28 +endobj +672 0 obj +55 +endobj +673 0 obj +35 +endobj +674 0 obj +75 +endobj +675 0 obj +34 +endobj +676 0 obj +22 +endobj +677 0 obj +46 +endobj +678 0 obj +50 +endobj +679 0 obj +38 +endobj +680 0 obj +61 +endobj +681 0 obj +69 +endobj +682 0 obj +39 +endobj +683 0 obj +74 +endobj +684 0 obj +36 +endobj +685 0 obj +72 +endobj +686 0 obj +118 +endobj +687 0 obj +77 +endobj +688 0 obj +78 +endobj +689 0 obj +44 +endobj +690 0 obj +26 +endobj +691 0 obj +43 +endobj +692 0 obj +40 +endobj +693 0 obj +33 +endobj +694 0 obj +23 +endobj +695 0 obj +54 +endobj +696 0 obj +15 +endobj +697 0 obj +44 +endobj +698 0 obj +24 +endobj +699 0 obj +35 +endobj +700 0 obj +31 +endobj +701 0 obj +39 +endobj +702 0 obj +48 +endobj +703 0 obj +18 +endobj +704 0 obj +26 +endobj +705 0 obj +68 +endobj +706 0 obj +36 +endobj +707 0 obj +46 +endobj +708 0 obj +12 +endobj +709 0 obj +48 +endobj +710 0 obj +61 +endobj +711 0 obj +29 +endobj +712 0 obj +38 +endobj +713 0 obj +74 +endobj +714 0 obj +44 +endobj +715 0 obj +16 +endobj +716 0 obj +43 +endobj +717 0 obj +45 +endobj +718 0 obj +46 +endobj +719 0 obj +62 +endobj +720 0 obj +65 +endobj +721 0 obj +56 +endobj +722 0 obj +60 +endobj +723 0 obj +25 +endobj +724 0 obj +15 +endobj +725 0 obj +82 +endobj +726 0 obj +66 +endobj +727 0 obj +55 +endobj +728 0 obj +52 +endobj +729 0 obj +15 +endobj +730 0 obj +46 +endobj +731 0 obj +83 +endobj +732 0 obj +55 +endobj +733 0 obj +90 +endobj +734 0 obj +46 +endobj +735 0 obj +45 +endobj +736 0 obj +55 +endobj +737 0 obj +27 +endobj +738 0 obj +15 +endobj +739 0 obj +51 +endobj +740 0 obj +36 +endobj +741 0 obj +47 +endobj +742 0 obj +62 +endobj +743 0 obj +19 +endobj +744 0 obj +60 +endobj +745 0 obj +42 +endobj +746 0 obj +70 +endobj +747 0 obj +46 +endobj +748 0 obj +97 +endobj +749 0 obj +59 +endobj +750 0 obj +46 +endobj +751 0 obj +59 +endobj +752 0 obj +13 +endobj +753 0 obj +74 +endobj +754 0 obj +47 +endobj +755 0 obj +25 +endobj +756 0 obj +54 +endobj +757 0 obj +30 +endobj +758 0 obj +34 +endobj +759 0 obj +23 +endobj +760 0 obj +19 +endobj +761 0 obj +35 +endobj +762 0 obj +34 +endobj +763 0 obj +22 +endobj +764 0 obj +37 +endobj +765 0 obj +29 +endobj +766 0 obj +44 +endobj +767 0 obj +30 +endobj +768 0 obj +27 +endobj +769 0 obj +48 +endobj +770 0 obj +13 +endobj +771 0 obj +42 +endobj +772 0 obj +35 +endobj +773 0 obj +18 +endobj +774 0 obj +51 +endobj +775 0 obj +41 +endobj +776 0 obj +28 +endobj +777 0 obj +59 +endobj +778 0 obj +23 +endobj +779 0 obj +45 +endobj +780 0 obj +48 +endobj +781 0 obj +31 +endobj +782 0 obj +47 +endobj +783 0 obj +18 +endobj +784 0 obj +43 +endobj +785 0 obj +58 +endobj +786 0 obj +50 +endobj +787 0 obj +50 +endobj +788 0 obj +44 +endobj +789 0 obj +69 +endobj +790 0 obj +31 +endobj +791 0 obj +49 +endobj +792 0 obj +24 +endobj +793 0 obj +17 +endobj +794 0 obj +63 +endobj +795 0 obj +21 +endobj +796 0 obj +22535 +endobj +797 0 obj +34 +endobj +798 0 obj +33 +endobj +799 0 obj +89 +endobj +800 0 obj +56 +endobj +801 0 obj +81 +endobj +802 0 obj +84 +endobj +803 0 obj +74 +endobj +804 0 obj +62 +endobj +805 0 obj +84 +endobj +806 0 obj +75 +endobj +807 0 obj +93 +endobj +808 0 obj +77 +endobj +809 0 obj +62 +endobj +810 0 obj +33 +endobj +811 0 obj +17 +endobj +812 0 obj +32 +endobj +813 0 obj +50 +endobj +814 0 obj +30 +endobj +815 0 obj +29 +endobj +816 0 obj +26 +endobj +817 0 obj +44 +endobj +818 0 obj +34 +endobj +819 0 obj +43 +endobj +820 0 obj +64 +endobj +821 0 obj +42 +endobj +822 0 obj +18 +endobj +823 0 obj +81 +endobj +824 0 obj +54 +endobj +825 0 obj +19 +endobj +826 0 obj +94 +endobj +827 0 obj +61 +endobj +828 0 obj +49 +endobj +829 0 obj +30 +endobj +830 0 obj +46 +endobj +831 0 obj +83 +endobj +832 0 obj +19 +endobj +833 0 obj +60 +endobj +834 0 obj +38 +endobj +835 0 obj +46 +endobj +836 0 obj +63 +endobj +837 0 obj +31 +endobj +838 0 obj +52 +endobj +839 0 obj +36 +endobj +840 0 obj +38 +endobj +841 0 obj +74 +endobj +842 0 obj +27 +endobj +843 0 obj +27 +endobj +844 0 obj +19 +endobj +845 0 obj +34 +endobj +846 0 obj +45 +endobj +847 0 obj +64 +endobj +848 0 obj +71 +endobj +849 0 obj +72 +endobj +850 0 obj +20 +endobj +851 0 obj +35 +endobj +852 0 obj +49 +endobj +853 0 obj +45 +endobj +854 0 obj +40 +endobj +855 0 obj +35 +endobj +856 0 obj +34 +endobj +857 0 obj +37 +endobj +858 0 obj +12 +endobj +859 0 obj +15 +endobj +860 0 obj +28 +endobj +861 0 obj +12 +endobj +862 0 obj +36 +endobj +863 0 obj +40 +endobj +864 0 obj +53 +endobj +865 0 obj +34 +endobj +866 0 obj +45 +endobj +867 0 obj +38 +endobj +868 0 obj +40 +endobj +869 0 obj +22157 +endobj +870 0 obj +57 +endobj +871 0 obj +84 +endobj +872 0 obj +73 +endobj +873 0 obj +38 +endobj +874 0 obj +55 +endobj +875 0 obj +80 +endobj +876 0 obj +51 +endobj +877 0 obj +61 +endobj +878 0 obj +76 +endobj +879 0 obj +38 +endobj +880 0 obj +63 +endobj +881 0 obj +76 +endobj +882 0 obj +73 +endobj +883 0 obj +51 +endobj +884 0 obj +57 +endobj +885 0 obj +80 +endobj +886 0 obj +43 +endobj +887 0 obj +47 +endobj +888 0 obj +46 +endobj +889 0 obj +42 +endobj +890 0 obj +80 +endobj +891 0 obj +57 +endobj +892 0 obj +59 +endobj +893 0 obj +54 +endobj +894 0 obj +62 +endobj +895 0 obj +50 +endobj +896 0 obj +77 +endobj +897 0 obj +49 +endobj +898 0 obj +37 +endobj +899 0 obj +13 +endobj +900 0 obj +120 +endobj +901 0 obj +53 +endobj +902 0 obj +24 +endobj +903 0 obj +24 +endobj +904 0 obj +86 +endobj +905 0 obj +81 +endobj +906 0 obj +99 +endobj +907 0 obj +37 +endobj +908 0 obj +30 +endobj +909 0 obj +37 +endobj +910 0 obj +22 +endobj +911 0 obj +38 +endobj +912 0 obj +38 +endobj +913 0 obj +15 +endobj +914 0 obj +46 +endobj +915 0 obj +15 +endobj +916 0 obj +17965 +endobj +917 0 obj +72 +endobj +918 0 obj +43 +endobj +919 0 obj +71 +endobj +920 0 obj +66 +endobj +921 0 obj +56 +endobj +922 0 obj +79 +endobj +923 0 obj +67 +endobj +924 0 obj +105 +endobj +925 0 obj +105 +endobj +926 0 obj +19 +endobj +927 0 obj +78 +endobj +928 0 obj +73 +endobj +929 0 obj +53 +endobj +930 0 obj +79 +endobj +931 0 obj +41 +endobj +932 0 obj +66 +endobj +933 0 obj +78 +endobj +934 0 obj +33 +endobj +935 0 obj +62 +endobj +936 0 obj +100 +endobj +937 0 obj +59 +endobj +938 0 obj +81 +endobj +939 0 obj +77 +endobj +940 0 obj +79 +endobj +941 0 obj +75 +endobj +942 0 obj +12 +endobj +943 0 obj +31 +endobj +944 0 obj +111 +endobj +945 0 obj +96 +endobj +946 0 obj +49 +endobj +947 0 obj +59 +endobj +948 0 obj +13 +endobj +949 0 obj +15 +endobj +950 0 obj +50 +endobj +951 0 obj +26 +endobj +952 0 obj +63 +endobj +953 0 obj +40 +endobj +954 0 obj +72 +endobj +955 0 obj +81 +endobj +956 0 obj +22104 +endobj +957 0 obj +72 +endobj +958 0 obj +47 +endobj +959 0 obj +41 +endobj +960 0 obj +54 +endobj +961 0 obj +40 +endobj +962 0 obj +37 +endobj +963 0 obj +45 +endobj +964 0 obj +33 +endobj +965 0 obj +49 +endobj +966 0 obj +154 +endobj +967 0 obj +22 +endobj +968 0 obj +37 +endobj +969 0 obj +47 +endobj +970 0 obj +81 +endobj +971 0 obj +91 +endobj +972 0 obj +64 +endobj +973 0 obj +100 +endobj +974 0 obj +49 +endobj +975 0 obj +40 +endobj +976 0 obj +36 +endobj +977 0 obj +16 +endobj +978 0 obj +33 +endobj +979 0 obj +23 +endobj +980 0 obj +34 +endobj +981 0 obj +35 +endobj +982 0 obj +37 +endobj +983 0 obj +24185 +endobj +984 0 obj +71 +endobj +985 0 obj +36 +endobj +986 0 obj +44 +endobj +987 0 obj +39 +endobj +988 0 obj +76 +endobj +989 0 obj +42 +endobj +990 0 obj +57 +endobj +991 0 obj +39 +endobj +992 0 obj +63 +endobj +993 0 obj +75 +endobj +994 0 obj +72 +endobj +995 0 obj +52 +endobj +996 0 obj +39 +endobj +997 0 obj +64 +endobj +998 0 obj +48 +endobj +999 0 obj +35 +endobj +1000 0 obj +38 +endobj +1001 0 obj +29 +endobj +1002 0 obj +28 +endobj +1003 0 obj +31 +endobj +1004 0 obj +34 +endobj +1005 0 obj +62 +endobj +1006 0 obj +31 +endobj +1007 0 obj +38 +endobj +1008 0 obj +32 +endobj +1009 0 obj +25 +endobj +1010 0 obj +33 +endobj +1011 0 obj +27 +endobj +1012 0 obj +31 +endobj +1013 0 obj +32 +endobj +1014 0 obj +26347 +endobj +1015 0 obj +56 +endobj +1016 0 obj +45 +endobj +1017 0 obj +12 +endobj +1018 0 obj +74 +endobj +1019 0 obj +82 +endobj +1020 0 obj +45 +endobj +1021 0 obj +24028 +endobj +1022 0 obj +72 +endobj +1023 0 obj +78 +endobj +1024 0 obj +70 +endobj +1025 0 obj +106 +endobj +1026 0 obj +23815 +endobj +1027 0 obj +56 +endobj +1028 0 obj +61 +endobj +1029 0 obj +44 +endobj +1030 0 obj +83 +endobj +1031 0 obj +95 +endobj +1032 0 obj +59 +endobj +1033 0 obj +23 +endobj +1034 0 obj +58 +endobj +1035 0 obj +50 +endobj +1036 0 obj +37 +endobj +1037 0 obj +37 +endobj +1038 0 obj +30 +endobj +1039 0 obj +23104 +endobj +1040 0 obj +28 +endobj +1041 0 obj +46 +endobj +1042 0 obj +28 +endobj +1043 0 obj +81 +endobj +1044 0 obj +44 +endobj +1045 0 obj +30 +endobj +1046 0 obj +23361 +endobj +1047 0 obj +51 +endobj +1048 0 obj +75 +endobj +1049 0 obj +78 +endobj +1050 0 obj +69 +endobj +1051 0 obj +38 +endobj +1052 0 obj +17110 +endobj +1053 0 obj +71 +endobj +1054 0 obj +85 +endobj +1055 0 obj +98 +endobj +1056 0 obj +48 +endobj +1057 0 obj +57 +endobj +1058 0 obj +38 +endobj +1059 0 obj +14 +endobj +1060 0 obj +32 +endobj +1061 0 obj +38 +endobj +1062 0 obj +70 +endobj +1063 0 obj +57 +endobj +1064 0 obj +16 +endobj +1065 0 obj +49 +endobj +1066 0 obj +30 +endobj +1067 0 obj +21 +endobj +1068 0 obj +30 +endobj +1069 0 obj +62 +endobj +1070 0 obj +44 +endobj +1071 0 obj +75 +endobj +1072 0 obj +74 +endobj +1073 0 obj +23116 +endobj +1074 0 obj +63 +endobj +1075 0 obj +23631 +endobj +1076 0 obj +75 +endobj +1077 0 obj +97 +endobj +1078 0 obj +108 +endobj +1079 0 obj +84 +endobj +1080 0 obj +56 +endobj +1081 0 obj +87 +endobj +1082 0 obj +72 +endobj +1083 0 obj +102 +endobj +1084 0 obj +42 +endobj +1085 0 obj +18853 +endobj +1086 0 obj +71 +endobj +1087 0 obj +89 +endobj +1088 0 obj +117 +endobj +1089 0 obj +89 +endobj +1090 0 obj +92 +endobj +1091 0 obj +87 +endobj +1092 0 obj +105 +endobj +1093 0 obj +110 +endobj +1094 0 obj +14 +endobj +1095 0 obj +92 +endobj +1096 0 obj +48 +endobj +1097 0 obj +81 +endobj +1098 0 obj +11 +endobj +1099 0 obj +51 +endobj +1100 0 obj +66 +endobj +1101 0 obj +62 +endobj +1102 0 obj +78 +endobj +1103 0 obj +80 +endobj +1104 0 obj +58 +endobj +1105 0 obj +76 +endobj +1106 0 obj +80 +endobj +1107 0 obj +16146 +endobj +1108 0 obj +61 +endobj +1109 0 obj +81 +endobj +1110 0 obj +16 +endobj +1111 0 obj +66 +endobj +1112 0 obj +41 +endobj +1113 0 obj +73 +endobj +1114 0 obj +95 +endobj +1115 0 obj +65 +endobj +1116 0 obj +16112 +endobj +1117 0 obj +59 +endobj +1118 0 obj +15 +endobj +1119 0 obj +79 +endobj +1120 0 obj +58 +endobj +1121 0 obj +46 +endobj +1122 0 obj +48 +endobj +1123 0 obj +15 +endobj +1124 0 obj +45 +endobj +1125 0 obj +44 +endobj +1126 0 obj +88 +endobj +1127 0 obj +70 +endobj +1128 0 obj +53 +endobj +1129 0 obj +44 +endobj +1130 0 obj +53 +endobj +1131 0 obj +45 +endobj +1132 0 obj +53 +endobj +1133 0 obj +52 +endobj +1134 0 obj +51 +endobj +1135 0 obj +18 +endobj +1136 0 obj +38 +endobj +1137 0 obj +62 +endobj +1138 0 obj +37 +endobj +1139 0 obj +58 +endobj +1140 0 obj +32 +endobj +1141 0 obj +55 +endobj +1142 0 obj +62 +endobj +1143 0 obj +41 +endobj +1144 0 obj +72 +endobj +1145 0 obj +29 +endobj +1146 0 obj +35 +endobj +1147 0 obj +26 +endobj +1148 0 obj +33 +endobj +1149 0 obj +33 +endobj +1150 0 obj +41 +endobj +1151 0 obj +32 +endobj +1152 0 obj +90 +endobj +1153 0 obj +45 +endobj +1154 0 obj +25 +endobj +1155 0 obj +46 +endobj +1156 0 obj +24 +endobj +1157 0 obj +52 +endobj +1158 0 obj +57 +endobj +1159 0 obj +52 +endobj +1160 0 obj +17 +endobj +1161 0 obj +65 +endobj +1162 0 obj +16 +endobj +1163 0 obj +9269 +endobj +1164 0 obj +34 +endobj +xref +0 1165 +0000000000 65535 f +0000000015 00000 n +0000000112 00000 n +0000000158 00000 n +0000000380 00000 n +0000000419 00000 n +0000000441 00000 n +0000041835 00000 n +0000060793 00000 n +0000061101 00000 n +0000061329 00000 n +0000061607 00000 n +0000061862 00000 n +0000062115 00000 n +0000062387 00000 n +0000062667 00000 n +0000062931 00000 n +0000063177 00000 n +0000063401 00000 n +0000063616 00000 n +0000063861 00000 n +0000064138 00000 n +0000064412 00000 n +0000064676 00000 n +0000064962 00000 n +0000065166 00000 n +0000065459 00000 n +0000065785 00000 n +0000066052 00000 n +0000066298 00000 n +0000066568 00000 n +0000066839 00000 n +0000067058 00000 n +0000067310 00000 n +0000067528 00000 n +0000067779 00000 n +0000068029 00000 n +0000068270 00000 n +0000068502 00000 n +0000068727 00000 n +0000069000 00000 n +0000069230 00000 n +0000069453 00000 n +0000069711 00000 n +0000069987 00000 n +0000070258 00000 n +0000070470 00000 n +0000070684 00000 n +0000070966 00000 n +0000071233 00000 n +0000071472 00000 n +0000071705 00000 n +0000071927 00000 n +0000072146 00000 n +0000072382 00000 n +0000072616 00000 n +0000072846 00000 n +0000073066 00000 n +0000073293 00000 n +0000073522 00000 n +0000073739 00000 n +0000073961 00000 n +0000074184 00000 n +0000074402 00000 n +0000074624 00000 n +0000074863 00000 n +0000075068 00000 n +0000075303 00000 n +0000075505 00000 n +0000075740 00000 n +0000075991 00000 n +0000076204 00000 n +0000076413 00000 n +0000076635 00000 n +0000076850 00000 n +0000077095 00000 n +0000077344 00000 n +0000077573 00000 n +0000077801 00000 n +0000078010 00000 n +0000078245 00000 n +0000078475 00000 n +0000078676 00000 n +0000078895 00000 n +0000079141 00000 n +0000079367 00000 n +0000079633 00000 n +0000079858 00000 n +0000080071 00000 n +0000080308 00000 n +0000080549 00000 n +0000080778 00000 n +0000081030 00000 n +0000081290 00000 n +0000081520 00000 n +0000081785 00000 n +0000082012 00000 n +0000082275 00000 n +0000082584 00000 n +0000082852 00000 n +0000083121 00000 n +0000083357 00000 n +0000083575 00000 n +0000083810 00000 n +0000084042 00000 n +0000084267 00000 n +0000084481 00000 n +0000084727 00000 n +0000084934 00000 n +0000085171 00000 n +0000085388 00000 n +0000085616 00000 n +0000085840 00000 n +0000086072 00000 n +0000086313 00000 n +0000086523 00000 n +0000086742 00000 n +0000087003 00000 n +0000087232 00000 n +0000087471 00000 n +0000087675 00000 n +0000087916 00000 n +0000088170 00000 n +0000088392 00000 n +0000088623 00000 n +0000088890 00000 n +0000089126 00000 n +0000089335 00000 n +0000089570 00000 n +0000089808 00000 n +0000090047 00000 n +0000090302 00000 n +0000090560 00000 n +0000090809 00000 n +0000091062 00000 n +0000091280 00000 n +0000091487 00000 n +0000091762 00000 n +0000092021 00000 n +0000092269 00000 n +0000092514 00000 n +0000092721 00000 n +0000092960 00000 n +0000093236 00000 n +0000093484 00000 n +0000093767 00000 n +0000094006 00000 n +0000094244 00000 n +0000094492 00000 n +0000094712 00000 n +0000094918 00000 n +0000095162 00000 n +0000095391 00000 n +0000095631 00000 n +0000095886 00000 n +0000096098 00000 n +0000096351 00000 n +0000096586 00000 n +0000096849 00000 n +0000097088 00000 n +0000097378 00000 n +0000097630 00000 n +0000097869 00000 n +0000098121 00000 n +0000098326 00000 n +0000098593 00000 n +0000098833 00000 n +0000099050 00000 n +0000099297 00000 n +0000099520 00000 n +0000099747 00000 n +0000099963 00000 n +0000100174 00000 n +0000100402 00000 n +0000100629 00000 n +0000100844 00000 n +0000101074 00000 n +0000101296 00000 n +0000101533 00000 n +0000101756 00000 n +0000101976 00000 n +0000102217 00000 n +0000102422 00000 n +0000102657 00000 n +0000102885 00000 n +0000103095 00000 n +0000103339 00000 n +0000103573 00000 n +0000103794 00000 n +0000104046 00000 n +0000104262 00000 n +0000104500 00000 n +0000104741 00000 n +0000104965 00000 n +0000105205 00000 n +0000105416 00000 n +0000105652 00000 n +0000105903 00000 n +0000106146 00000 n +0000106389 00000 n +0000106626 00000 n +0000106888 00000 n +0000107112 00000 n +0000107354 00000 n +0000107571 00000 n +0000107780 00000 n +0000108036 00000 n +0000108250 00000 n +0000159708 00000 n +0000182321 00000 n +0000182548 00000 n +0000182774 00000 n +0000183056 00000 n +0000183305 00000 n +0000183579 00000 n +0000183856 00000 n +0000184123 00000 n +0000184378 00000 n +0000184655 00000 n +0000184923 00000 n +0000185209 00000 n +0000185479 00000 n +0000185734 00000 n +0000185960 00000 n +0000186169 00000 n +0000186394 00000 n +0000186637 00000 n +0000186860 00000 n +0000187082 00000 n +0000187301 00000 n +0000187538 00000 n +0000187765 00000 n +0000188001 00000 n +0000188258 00000 n +0000188493 00000 n +0000188703 00000 n +0000188977 00000 n +0000189224 00000 n +0000189436 00000 n +0000189723 00000 n +0000189977 00000 n +0000190219 00000 n +0000190442 00000 n +0000190681 00000 n +0000190957 00000 n +0000191169 00000 n +0000191422 00000 n +0000191653 00000 n +0000191892 00000 n +0000192148 00000 n +0000192372 00000 n +0000192617 00000 n +0000192846 00000 n +0000193077 00000 n +0000193344 00000 n +0000193564 00000 n +0000193784 00000 n +0000193996 00000 n +0000194223 00000 n +0000194461 00000 n +0000194718 00000 n +0000194982 00000 n +0000195247 00000 n +0000195459 00000 n +0000195687 00000 n +0000195929 00000 n +0000196167 00000 n +0000196400 00000 n +0000196628 00000 n +0000196855 00000 n +0000197085 00000 n +0000197288 00000 n +0000197495 00000 n +0000197716 00000 n +0000197919 00000 n +0000198148 00000 n +0000198381 00000 n +0000198627 00000 n +0000198854 00000 n +0000199092 00000 n +0000199323 00000 n +0000199556 00000 n +0000249174 00000 n +0000271409 00000 n +0000271659 00000 n +0000271936 00000 n +0000272202 00000 n +0000272433 00000 n +0000272681 00000 n +0000272954 00000 n +0000273198 00000 n +0000273452 00000 n +0000273721 00000 n +0000273951 00000 n +0000274207 00000 n +0000274476 00000 n +0000274742 00000 n +0000274986 00000 n +0000275236 00000 n +0000275509 00000 n +0000275745 00000 n +0000275985 00000 n +0000276224 00000 n +0000276459 00000 n +0000276732 00000 n +0000276982 00000 n +0000277234 00000 n +0000277481 00000 n +0000277736 00000 n +0000277979 00000 n +0000278249 00000 n +0000278491 00000 n +0000278721 00000 n +0000278926 00000 n +0000279239 00000 n +0000279485 00000 n +0000279702 00000 n +0000279919 00000 n +0000280198 00000 n +0000280472 00000 n +0000280764 00000 n +0000280994 00000 n +0000281217 00000 n +0000281447 00000 n +0000281662 00000 n +0000281893 00000 n +0000282124 00000 n +0000282331 00000 n +0000282570 00000 n +0000282777 00000 n +0000322354 00000 n +0000340397 00000 n +0000340662 00000 n +0000340898 00000 n +0000341162 00000 n +0000341421 00000 n +0000341670 00000 n +0000341942 00000 n +0000342202 00000 n +0000342500 00000 n +0000342798 00000 n +0000343010 00000 n +0000343281 00000 n +0000343547 00000 n +0000343793 00000 n +0000344065 00000 n +0000344299 00000 n +0000344558 00000 n +0000344829 00000 n +0000345054 00000 n +0000345309 00000 n +0000345602 00000 n +0000345854 00000 n +0000346128 00000 n +0000346398 00000 n +0000346670 00000 n +0000346938 00000 n +0000347141 00000 n +0000347365 00000 n +0000347669 00000 n +0000347958 00000 n +0000348200 00000 n +0000348452 00000 n +0000348657 00000 n +0000348864 00000 n +0000349107 00000 n +0000349325 00000 n +0000349581 00000 n +0000349814 00000 n +0000350079 00000 n +0000350353 00000 n +0000400396 00000 n +0000422578 00000 n +0000422843 00000 n +0000423083 00000 n +0000423317 00000 n +0000423564 00000 n +0000423797 00000 n +0000424027 00000 n +0000424265 00000 n +0000424491 00000 n +0000424733 00000 n +0000425080 00000 n +0000425295 00000 n +0000425525 00000 n +0000425765 00000 n +0000426039 00000 n +0000426323 00000 n +0000426580 00000 n +0000426873 00000 n +0000427115 00000 n +0000427348 00000 n +0000427577 00000 n +0000427786 00000 n +0000428012 00000 n +0000428227 00000 n +0000428454 00000 n +0000428682 00000 n +0000428912 00000 n +0000483301 00000 n +0000507564 00000 n +0000507828 00000 n +0000508057 00000 n +0000508294 00000 n +0000508526 00000 n +0000508795 00000 n +0000509030 00000 n +0000509280 00000 n +0000509512 00000 n +0000509768 00000 n +0000510036 00000 n +0000510301 00000 n +0000510546 00000 n +0000510778 00000 n +0000511035 00000 n +0000511276 00000 n +0000511504 00000 n +0000511736 00000 n +0000511959 00000 n +0000512181 00000 n +0000512406 00000 n +0000512634 00000 n +0000512890 00000 n +0000513115 00000 n +0000513347 00000 n +0000513573 00000 n +0000513792 00000 n +0000514018 00000 n +0000514238 00000 n +0000514463 00000 n +0000514689 00000 n +0000575532 00000 n +0000601958 00000 n +0000602208 00000 n +0000602447 00000 n +0000602652 00000 n +0000602920 00000 n +0000603196 00000 n +0000603435 00000 n +0000659041 00000 n +0000683148 00000 n +0000683414 00000 n +0000683686 00000 n +0000683950 00000 n +0000684250 00000 n +0000739041 00000 n +0000762935 00000 n +0000763185 00000 n +0000763440 00000 n +0000763678 00000 n +0000763955 00000 n +0000764244 00000 n +0000764497 00000 n +0000764713 00000 n +0000764965 00000 n +0000765209 00000 n +0000765440 00000 n +0000765671 00000 n +0000765894 00000 n +0000818437 00000 n +0000841620 00000 n +0000841842 00000 n +0000842082 00000 n +0000842304 00000 n +0000842579 00000 n +0000842817 00000 n +0000843041 00000 n +0000896539 00000 n +0000919979 00000 n +0000920224 00000 n +0000920493 00000 n +0000920765 00000 n +0000921028 00000 n +0000921260 00000 n +0000959227 00000 n +0000976416 00000 n +0000976681 00000 n +0000976960 00000 n +0000977252 00000 n +0000977494 00000 n +0000977745 00000 n +0000977977 00000 n +0000978184 00000 n +0000978409 00000 n +0000978641 00000 n +0000978905 00000 n +0000979156 00000 n +0000979365 00000 n +0000979608 00000 n +0000979831 00000 n +0000980045 00000 n +0000980268 00000 n +0000980524 00000 n +0000980762 00000 n +0000981031 00000 n +0000981299 00000 n +0001034810 00000 n +0001058005 00000 n +0001058262 00000 n +0001112216 00000 n +0001135926 00000 n +0001136195 00000 n +0001136486 00000 n +0001136788 00000 n +0001137066 00000 n +0001137316 00000 n +0001137597 00000 n +0001137863 00000 n +0001138159 00000 n +0001138395 00000 n +0001177776 00000 n +0001196708 00000 n +0001196973 00000 n +0001197256 00000 n +0001197567 00000 n +0001197850 00000 n +0001198136 00000 n +0001198417 00000 n +0001198716 00000 n +0001199020 00000 n +0001199227 00000 n +0001199513 00000 n +0001199755 00000 n +0001200030 00000 n +0001200234 00000 n +0001200479 00000 n +0001200739 00000 n +0001200995 00000 n +0001201267 00000 n +0001201541 00000 n +0001201793 00000 n +0001202063 00000 n +0001202337 00000 n +0001235852 00000 n +0001252077 00000 n +0001252332 00000 n +0001252607 00000 n +0001252816 00000 n +0001253076 00000 n +0001253311 00000 n +0001253578 00000 n +0001253867 00000 n +0001254126 00000 n +0001282353 00000 n +0001298544 00000 n +0001298797 00000 n +0001299005 00000 n +0001299278 00000 n +0001299530 00000 n +0001299770 00000 n +0001300012 00000 n +0001300220 00000 n +0001300458 00000 n +0001300695 00000 n +0001300977 00000 n +0001301241 00000 n +0001301488 00000 n +0001301726 00000 n +0001301973 00000 n +0001302212 00000 n +0001302459 00000 n +0001302705 00000 n +0001302950 00000 n +0001303162 00000 n +0001303394 00000 n +0001303650 00000 n +0001303881 00000 n +0001304133 00000 n +0001304359 00000 n +0001304608 00000 n +0001304864 00000 n +0001305099 00000 n +0001305365 00000 n +0001305588 00000 n +0001305817 00000 n +0001306036 00000 n +0001306263 00000 n +0001306490 00000 n +0001306725 00000 n +0001306951 00000 n +0001307235 00000 n +0001307474 00000 n +0001307693 00000 n +0001307933 00000 n +0001308151 00000 n +0001308397 00000 n +0001308648 00000 n +0001308894 00000 n +0001309104 00000 n +0001309363 00000 n +0001309572 00000 n +0001319963 00000 n +0001329311 00000 n +0001329539 00000 n +0001329668 00000 n +0001330995 00000 n +0001331142 00000 n +0001331165 00000 n +0001331186 00000 n +0001331206 00000 n +0001331226 00000 n +0001331246 00000 n +0001331266 00000 n +0001331286 00000 n +0001331306 00000 n +0001331326 00000 n +0001331346 00000 n +0001331366 00000 n +0001331386 00000 n +0001331406 00000 n +0001331426 00000 n +0001331446 00000 n +0001331466 00000 n +0001331486 00000 n +0001331506 00000 n +0001331527 00000 n +0001331548 00000 n +0001331568 00000 n +0001331588 00000 n +0001331608 00000 n +0001331628 00000 n +0001331648 00000 n +0001331668 00000 n +0001331688 00000 n +0001331708 00000 n +0001331728 00000 n +0001331748 00000 n +0001331768 00000 n +0001331788 00000 n +0001331808 00000 n +0001331828 00000 n +0001331848 00000 n +0001331868 00000 n +0001331888 00000 n +0001331908 00000 n +0001331928 00000 n +0001331948 00000 n +0001331968 00000 n +0001331988 00000 n +0001332008 00000 n +0001332028 00000 n +0001332048 00000 n +0001332068 00000 n +0001332088 00000 n +0001332108 00000 n +0001332128 00000 n +0001332148 00000 n +0001332168 00000 n +0001332188 00000 n +0001332208 00000 n +0001332228 00000 n +0001332248 00000 n +0001332268 00000 n +0001332288 00000 n +0001332308 00000 n +0001332328 00000 n +0001332348 00000 n +0001332368 00000 n +0001332388 00000 n +0001332408 00000 n +0001332428 00000 n +0001332448 00000 n +0001332468 00000 n +0001332488 00000 n +0001332508 00000 n +0001332528 00000 n +0001332548 00000 n +0001332568 00000 n +0001332588 00000 n +0001332608 00000 n +0001332628 00000 n +0001332648 00000 n +0001332668 00000 n +0001332688 00000 n +0001332708 00000 n +0001332728 00000 n +0001332748 00000 n +0001332768 00000 n +0001332788 00000 n +0001332808 00000 n +0001332828 00000 n +0001332848 00000 n +0001332868 00000 n +0001332888 00000 n +0001332908 00000 n +0001332928 00000 n +0001332948 00000 n +0001332969 00000 n +0001332989 00000 n +0001333009 00000 n +0001333029 00000 n +0001333049 00000 n +0001333069 00000 n +0001333089 00000 n +0001333109 00000 n +0001333129 00000 n +0001333149 00000 n +0001333169 00000 n +0001333189 00000 n +0001333209 00000 n +0001333229 00000 n +0001333249 00000 n +0001333269 00000 n +0001333289 00000 n +0001333309 00000 n +0001333329 00000 n +0001333349 00000 n +0001333369 00000 n +0001333389 00000 n +0001333409 00000 n +0001333429 00000 n +0001333449 00000 n +0001333469 00000 n +0001333489 00000 n +0001333509 00000 n +0001333529 00000 n +0001333549 00000 n +0001333569 00000 n +0001333589 00000 n +0001333609 00000 n +0001333629 00000 n +0001333649 00000 n +0001333669 00000 n +0001333689 00000 n +0001333709 00000 n +0001333729 00000 n +0001333749 00000 n +0001333769 00000 n +0001333789 00000 n +0001333809 00000 n +0001333829 00000 n +0001333849 00000 n +0001333869 00000 n +0001333889 00000 n +0001333909 00000 n +0001333929 00000 n +0001333949 00000 n +0001333969 00000 n +0001333989 00000 n +0001334009 00000 n +0001334029 00000 n +0001334049 00000 n +0001334069 00000 n +0001334089 00000 n +0001334109 00000 n +0001334129 00000 n +0001334149 00000 n +0001334169 00000 n +0001334189 00000 n +0001334209 00000 n +0001334229 00000 n +0001334249 00000 n +0001334269 00000 n +0001334289 00000 n +0001334309 00000 n +0001334329 00000 n +0001334349 00000 n +0001334369 00000 n +0001334389 00000 n +0001334409 00000 n +0001334429 00000 n +0001334449 00000 n +0001334469 00000 n +0001334489 00000 n +0001334509 00000 n +0001334529 00000 n +0001334549 00000 n +0001334569 00000 n +0001334589 00000 n +0001334609 00000 n +0001334629 00000 n +0001334649 00000 n +0001334669 00000 n +0001334689 00000 n +0001334709 00000 n +0001334729 00000 n +0001334749 00000 n +0001334769 00000 n +0001334789 00000 n +0001334809 00000 n +0001334829 00000 n +0001334849 00000 n +0001334869 00000 n +0001334889 00000 n +0001334909 00000 n +0001334929 00000 n +0001334949 00000 n +0001334969 00000 n +0001334989 00000 n +0001335009 00000 n +0001335029 00000 n +0001335049 00000 n +0001335069 00000 n +0001335089 00000 n +0001335109 00000 n +0001335129 00000 n +0001335149 00000 n +0001335172 00000 n +0001335192 00000 n +0001335212 00000 n +0001335232 00000 n +0001335252 00000 n +0001335272 00000 n +0001335292 00000 n +0001335312 00000 n +0001335332 00000 n +0001335352 00000 n +0001335372 00000 n +0001335392 00000 n +0001335412 00000 n +0001335432 00000 n +0001335452 00000 n +0001335472 00000 n +0001335492 00000 n +0001335512 00000 n +0001335532 00000 n +0001335552 00000 n +0001335572 00000 n +0001335592 00000 n +0001335612 00000 n +0001335632 00000 n +0001335652 00000 n +0001335672 00000 n +0001335692 00000 n +0001335712 00000 n +0001335732 00000 n +0001335752 00000 n +0001335772 00000 n +0001335792 00000 n +0001335812 00000 n +0001335832 00000 n +0001335852 00000 n +0001335872 00000 n +0001335892 00000 n +0001335912 00000 n +0001335932 00000 n +0001335952 00000 n +0001335972 00000 n +0001335992 00000 n +0001336012 00000 n +0001336032 00000 n +0001336052 00000 n +0001336072 00000 n +0001336092 00000 n +0001336112 00000 n +0001336132 00000 n +0001336152 00000 n +0001336172 00000 n +0001336192 00000 n +0001336212 00000 n +0001336232 00000 n +0001336252 00000 n +0001336272 00000 n +0001336292 00000 n +0001336312 00000 n +0001336332 00000 n +0001336352 00000 n +0001336372 00000 n +0001336392 00000 n +0001336412 00000 n +0001336432 00000 n +0001336452 00000 n +0001336472 00000 n +0001336492 00000 n +0001336512 00000 n +0001336532 00000 n +0001336552 00000 n +0001336572 00000 n +0001336592 00000 n +0001336612 00000 n +0001336635 00000 n +0001336655 00000 n +0001336675 00000 n +0001336695 00000 n +0001336715 00000 n +0001336735 00000 n +0001336755 00000 n +0001336775 00000 n +0001336795 00000 n +0001336815 00000 n +0001336835 00000 n +0001336855 00000 n +0001336875 00000 n +0001336895 00000 n +0001336915 00000 n +0001336935 00000 n +0001336955 00000 n +0001336975 00000 n +0001336995 00000 n +0001337015 00000 n +0001337035 00000 n +0001337055 00000 n +0001337075 00000 n +0001337095 00000 n +0001337115 00000 n +0001337135 00000 n +0001337155 00000 n +0001337175 00000 n +0001337195 00000 n +0001337215 00000 n +0001337235 00000 n +0001337256 00000 n +0001337276 00000 n +0001337296 00000 n +0001337316 00000 n +0001337336 00000 n +0001337356 00000 n +0001337376 00000 n +0001337396 00000 n +0001337416 00000 n +0001337436 00000 n +0001337456 00000 n +0001337476 00000 n +0001337496 00000 n +0001337516 00000 n +0001337536 00000 n +0001337556 00000 n +0001337579 00000 n +0001337599 00000 n +0001337619 00000 n +0001337639 00000 n +0001337659 00000 n +0001337679 00000 n +0001337699 00000 n +0001337719 00000 n +0001337740 00000 n +0001337761 00000 n +0001337781 00000 n +0001337801 00000 n +0001337821 00000 n +0001337841 00000 n +0001337861 00000 n +0001337881 00000 n +0001337901 00000 n +0001337921 00000 n +0001337941 00000 n +0001337961 00000 n +0001337982 00000 n +0001338002 00000 n +0001338022 00000 n +0001338042 00000 n +0001338062 00000 n +0001338082 00000 n +0001338102 00000 n +0001338122 00000 n +0001338143 00000 n +0001338163 00000 n +0001338183 00000 n +0001338203 00000 n +0001338223 00000 n +0001338243 00000 n +0001338263 00000 n +0001338283 00000 n +0001338303 00000 n +0001338323 00000 n +0001338343 00000 n +0001338363 00000 n +0001338386 00000 n +0001338406 00000 n +0001338426 00000 n +0001338446 00000 n +0001338466 00000 n +0001338486 00000 n +0001338506 00000 n +0001338526 00000 n +0001338546 00000 n +0001338566 00000 n +0001338587 00000 n +0001338607 00000 n +0001338627 00000 n +0001338647 00000 n +0001338667 00000 n +0001338687 00000 n +0001338707 00000 n +0001338728 00000 n +0001338748 00000 n +0001338768 00000 n +0001338788 00000 n +0001338808 00000 n +0001338828 00000 n +0001338848 00000 n +0001338868 00000 n +0001338888 00000 n +0001338908 00000 n +0001338931 00000 n +0001338951 00000 n +0001338971 00000 n +0001338991 00000 n +0001339011 00000 n +0001339031 00000 n +0001339051 00000 n +0001339071 00000 n +0001339091 00000 n +0001339111 00000 n +0001339131 00000 n +0001339151 00000 n +0001339171 00000 n +0001339191 00000 n +0001339211 00000 n +0001339231 00000 n +0001339251 00000 n +0001339272 00000 n +0001339293 00000 n +0001339314 00000 n +0001339335 00000 n +0001339356 00000 n +0001339377 00000 n +0001339398 00000 n +0001339419 00000 n +0001339440 00000 n +0001339461 00000 n +0001339482 00000 n +0001339503 00000 n +0001339524 00000 n +0001339545 00000 n +0001339569 00000 n +0001339590 00000 n +0001339611 00000 n +0001339632 00000 n +0001339653 00000 n +0001339674 00000 n +0001339695 00000 n +0001339719 00000 n +0001339740 00000 n +0001339761 00000 n +0001339782 00000 n +0001339804 00000 n +0001339828 00000 n +0001339849 00000 n +0001339870 00000 n +0001339891 00000 n +0001339912 00000 n +0001339933 00000 n +0001339954 00000 n +0001339975 00000 n +0001339996 00000 n +0001340017 00000 n +0001340038 00000 n +0001340059 00000 n +0001340080 00000 n +0001340104 00000 n +0001340125 00000 n +0001340146 00000 n +0001340167 00000 n +0001340188 00000 n +0001340209 00000 n +0001340230 00000 n +0001340254 00000 n +0001340275 00000 n +0001340296 00000 n +0001340317 00000 n +0001340338 00000 n +0001340359 00000 n +0001340383 00000 n +0001340404 00000 n +0001340425 00000 n +0001340446 00000 n +0001340467 00000 n +0001340488 00000 n +0001340509 00000 n +0001340530 00000 n +0001340551 00000 n +0001340572 00000 n +0001340593 00000 n +0001340614 00000 n +0001340635 00000 n +0001340656 00000 n +0001340677 00000 n +0001340698 00000 n +0001340719 00000 n +0001340740 00000 n +0001340761 00000 n +0001340782 00000 n +0001340803 00000 n +0001340827 00000 n +0001340848 00000 n +0001340872 00000 n +0001340893 00000 n +0001340914 00000 n +0001340936 00000 n +0001340957 00000 n +0001340978 00000 n +0001340999 00000 n +0001341020 00000 n +0001341042 00000 n +0001341063 00000 n +0001341087 00000 n +0001341108 00000 n +0001341129 00000 n +0001341151 00000 n +0001341172 00000 n +0001341193 00000 n +0001341214 00000 n +0001341236 00000 n +0001341258 00000 n +0001341279 00000 n +0001341300 00000 n +0001341321 00000 n +0001341342 00000 n +0001341363 00000 n +0001341384 00000 n +0001341405 00000 n +0001341426 00000 n +0001341447 00000 n +0001341468 00000 n +0001341489 00000 n +0001341510 00000 n +0001341531 00000 n +0001341555 00000 n +0001341576 00000 n +0001341597 00000 n +0001341618 00000 n +0001341639 00000 n +0001341660 00000 n +0001341681 00000 n +0001341702 00000 n +0001341723 00000 n +0001341747 00000 n +0001341768 00000 n +0001341789 00000 n +0001341810 00000 n +0001341831 00000 n +0001341852 00000 n +0001341873 00000 n +0001341894 00000 n +0001341915 00000 n +0001341936 00000 n +0001341957 00000 n +0001341978 00000 n +0001341999 00000 n +0001342020 00000 n +0001342041 00000 n +0001342062 00000 n +0001342083 00000 n +0001342104 00000 n +0001342125 00000 n +0001342146 00000 n +0001342167 00000 n +0001342188 00000 n +0001342209 00000 n +0001342230 00000 n +0001342251 00000 n +0001342272 00000 n +0001342293 00000 n +0001342314 00000 n +0001342335 00000 n +0001342356 00000 n +0001342377 00000 n +0001342398 00000 n +0001342419 00000 n +0001342440 00000 n +0001342461 00000 n +0001342482 00000 n +0001342503 00000 n +0001342524 00000 n +0001342545 00000 n +0001342566 00000 n +0001342587 00000 n +0001342608 00000 n +0001342629 00000 n +0001342650 00000 n +0001342671 00000 n +0001342692 00000 n +0001342713 00000 n +0001342736 00000 n +trailer +<< +/Size 1165 +/Root 1 0 R +/Info 595 0 R +>> +startxref +1342757 +%%EOF diff --git a/misc/Multi-Cut Pruning in Game-Tree Search.pdf b/misc/Multi-Cut Pruning in Game-Tree Search.pdf new file mode 100644 index 0000000..5bfa552 Binary files /dev/null and b/misc/Multi-Cut Pruning in Game-Tree Search.pdf differ diff --git a/misc/Pruning nodes in AB using inductive logic.pdf b/misc/Pruning nodes in AB using inductive logic.pdf new file mode 100644 index 0000000..6bfa702 --- /dev/null +++ b/misc/Pruning nodes in AB using inductive logic.pdf @@ -0,0 +1,10356 @@ +%PDF-1.2 +%ÐÓÔÌ +1 0 obj +<< +/Type /Catalog +/Pages 3 0 R +/Outlines 2 0 R +/Dests 5 0 R +/PageMode /UseNone +>> +endobj +2 0 obj +<< +/Type /Outlines +/Count 0 +>> +endobj +3 0 obj +<< +/Type /Pages +/MediaBox [ 0 0 595 842 ] +/Count 6 +/Kids [ 6 0 R 213 0 R 268 0 R 321 0 R 383 0 R 394 0 R ] +>> +endobj +4 0 obj +[ /PDF /Text /ImageC ] +endobj +5 0 obj +<< + +>> +endobj +6 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 449 0 R >> /XObject << /Im1 8 0 R /Im2 9 0 R /Im3 10 0 R /Im4 11 0 R /Im5 12 0 R /Im4 11 0 R /Im6 13 0 R /Im7 14 0 R /Im8 15 0 R /Im9 16 0 R /Im10 17 0 R /Im11 18 0 R /Im5 12 0 R /Im4 11 0 R /Im12 19 0 R /Im13 20 0 R /Im10 17 0 R /Im14 21 0 R /Im15 22 0 R /Im16 23 0 R /Im13 20 0 R /Im17 24 0 R /Im18 25 0 R /Im19 26 0 R /Im10 17 0 R /Im12 19 0 R /Im17 24 0 R /Im20 27 0 R /Im10 17 0 R /Im12 19 0 R /Im13 20 0 R /Im8 15 0 R /Im9 16 0 R /Im21 28 0 R /Im11 18 0 R /Im5 12 0 R /Im4 11 0 R /Im6 13 0 R /Im22 29 0 R /Im4 11 0 R /Im9 16 0 R /Im3 10 0 R /Im23 30 0 R /Im12 19 0 R /Im5 12 0 R /Im24 31 0 R /Im10 17 0 R /Im25 32 0 R /Im8 15 0 R /Im6 13 0 R /Im5 12 0 R /Im23 30 0 R /Im2 9 0 R /Im8 15 0 R /Im6 13 0 R /Im2 9 0 R /Im17 24 0 R /Im26 33 0 R /Im26 33 0 R /Im5 12 0 R /Im4 11 0 R /Im6 13 0 R /Im27 34 0 R /Im28 35 0 R /Im29 36 0 R /Im30 37 0 R /Im31 38 0 R /Im32 39 0 R /Im33 40 0 R /Im28 35 0 R /Im34 41 0 R /Im35 42 0 R /Im30 37 0 R /Im36 43 0 R /Im30 37 0 R /Im37 44 0 R /Im38 45 0 R /Im39 46 0 R /Im40 47 0 R /Im41 48 0 R /Im38 45 0 R /Im42 49 0 R /Im38 45 0 R /Im43 50 0 R /Im28 35 0 R /Im44 51 0 R /Im30 37 0 R /Im45 52 0 R /Im32 39 0 R /Im46 53 0 R /Im28 35 0 R /Im43 50 0 R /Im28 35 0 R /Im47 54 0 R /Im40 47 0 R /Im48 55 0 R /Im28 35 0 R /Im46 53 0 R /Im28 35 0 R /Im49 56 0 R /Im30 37 0 R /Im46 53 0 R /Im32 39 0 R /Im27 34 0 R /Im38 45 0 R /Im37 44 0 R /Im38 45 0 R /Im35 42 0 R /Im28 35 0 R /Im38 45 0 R /Im35 42 0 R /Im50 57 0 R /Im41 48 0 R /Im32 39 0 R /Im50 57 0 R /Im51 58 0 R /Im35 42 0 R /Im28 35 0 R /Im33 40 0 R /Im32 39 0 R /Im34 41 0 R /Im43 50 0 R /Im28 35 0 R /Im31 38 0 R /Im52 59 0 R /Im53 60 0 R /Im54 61 0 R /Im55 62 0 R /Im56 63 0 R /Im57 64 0 R /Im58 65 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im60 67 0 R /Im61 68 0 R /Im62 69 0 R /Im59 66 0 R /Im57 64 0 R /Im53 60 0 R /Im63 70 0 R /Im63 70 0 R /Im64 71 0 R /Im65 72 0 R /Im53 60 0 R /Im59 66 0 R /Im66 73 0 R /Im53 60 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im68 75 0 R /Im60 67 0 R /Im58 65 0 R /Im54 61 0 R /Im69 76 0 R /Im57 64 0 R /Im53 60 0 R /Im56 63 0 R /Im70 77 0 R /Im66 73 0 R /Im64 71 0 R /Im53 60 0 R /Im59 66 0 R /Im66 73 0 R /Im53 60 0 R /Im71 78 0 R /Im72 79 0 R /Im55 62 0 R /Im65 72 0 R /Im60 67 0 R /Im73 80 0 R /Im55 62 0 R /Im62 69 0 R /Im59 66 0 R /Im74 81 0 R /Im57 64 0 R /Im64 71 0 R /Im57 64 0 R /Im69 76 0 R /Im57 64 0 R /Im53 60 0 R /Im60 67 0 R /Im61 68 0 R /Im75 82 0 R /Im53 60 0 R /Im66 73 0 R /Im76 83 0 R /Im59 66 0 R /Im60 67 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im73 80 0 R /Im71 78 0 R /Im77 84 0 R /Im60 67 0 R /Im78 85 0 R /Im64 71 0 R /Im74 81 0 R /Im60 67 0 R /Im79 86 0 R /Im66 73 0 R /Im76 83 0 R /Im60 67 0 R /Im71 78 0 R /Im70 77 0 R /Im76 83 0 R /Im60 67 0 R /Im80 87 0 R /Im55 62 0 R /Im79 86 0 R /Im78 85 0 R /Im69 76 0 R /Im71 78 0 R /Im72 79 0 R /Im55 62 0 R /Im65 72 0 R /Im60 67 0 R /Im73 80 0 R /Im55 62 0 R /Im81 88 0 R /Im82 89 0 R /Im82 89 0 R /Im79 86 0 R /Im83 90 0 R /Im84 91 0 R /Im84 91 0 R /Im84 91 0 R /Im71 78 0 R /Im85 92 0 R /Im55 62 0 R /Im54 61 0 R /Im55 62 0 R /Im59 66 0 R /Im86 93 0 R /Im87 94 0 R /Im88 95 0 R /Im89 96 0 R /Im90 97 0 R /Im91 98 0 R /Im90 97 0 R /Im92 99 0 R /Im93 100 0 R /Im94 101 0 R /Im95 102 0 R /Im96 103 0 R /Im97 104 0 R /Im98 105 0 R /Im99 106 0 R /Im100 107 0 R /Im94 101 0 R /Im101 108 0 R /Im89 96 0 R /Im93 100 0 R /Im92 99 0 R /Im93 100 0 R /Im89 96 0 R /Im100 107 0 R /Im94 101 0 R /Im88 95 0 R /Im101 108 0 R /Im100 107 0 R /Im99 106 0 R /Im102 109 0 R /Im103 110 0 R /Im88 95 0 R /Im98 105 0 R /Im96 103 0 R /Im104 111 0 R /Im89 96 0 R /Im88 95 0 R /Im101 108 0 R /Im105 112 0 R /Im98 105 0 R /Im99 106 0 R /Im104 111 0 R /Im93 100 0 R /Im98 105 0 R /Im104 111 0 R /Im106 113 0 R /Im95 102 0 R /Im107 114 0 R /Im108 115 0 R /Im109 116 0 R /Im110 117 0 R /Im111 118 0 R /Im112 119 0 R /Im113 120 0 R /Im110 117 0 R /Im75 82 0 R /Im76 83 0 R /Im64 71 0 R /Im74 81 0 R /Im54 61 0 R /Im55 62 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im56 63 0 R /Im53 60 0 R /Im54 61 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im74 81 0 R /Im55 62 0 R /Im54 61 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im64 71 0 R /Im58 65 0 R /Im64 71 0 R /Im59 66 0 R /Im55 62 0 R /Im56 63 0 R /Im73 80 0 R /Im56 63 0 R /Im53 60 0 R /Im74 81 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im66 73 0 R /Im76 83 0 R /Im60 67 0 R /Im61 68 0 R /Im55 62 0 R /Im54 61 0 R /Im54 61 0 R /Im63 70 0 R /Im64 71 0 R /Im66 73 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im60 67 0 R /Im61 68 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im58 65 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im54 61 0 R /Im56 63 0 R /Im69 76 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im54 61 0 R /Im76 83 0 R /Im55 62 0 R /Im79 86 0 R /Im115 122 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im79 86 0 R /Im57 64 0 R /Im56 63 0 R /Im53 60 0 R /Im53 60 0 R /Im74 81 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im66 73 0 R /Im76 83 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im71 78 0 R /Im80 87 0 R /Im76 83 0 R /Im64 71 0 R /Im66 73 0 R /Im76 83 0 R /Im116 123 0 R /Im59 66 0 R /Im67 74 0 R /Im74 81 0 R /Im55 62 0 R /Im59 66 0 R /Im55 62 0 R /Im54 61 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im79 86 0 R /Im54 61 0 R /Im56 63 0 R /Im64 71 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im115 122 0 R /Im73 80 0 R /Im63 70 0 R /Im60 67 0 R /Im60 67 0 R /Im78 85 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im79 86 0 R /Im57 64 0 R /Im56 63 0 R /Im53 60 0 R /Im53 60 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im55 62 0 R /Im63 70 0 R /Im64 71 0 R /Im58 65 0 R /Im79 86 0 R /Im64 71 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im67 74 0 R /Im53 60 0 R /Im54 61 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im67 74 0 R /Im86 93 0 R /Im75 82 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im54 61 0 R /Im76 83 0 R /Im55 62 0 R /Im79 86 0 R /Im115 122 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im56 63 0 R /Im53 60 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im69 76 0 R /Im58 65 0 R /Im115 122 0 R /Im53 60 0 R /Im56 63 0 R /Im60 67 0 R /Im61 68 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im115 122 0 R /Im73 80 0 R /Im78 85 0 R /Im53 60 0 R /Im53 60 0 R /Im54 61 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im54 61 0 R /Im67 74 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im63 70 0 R /Im60 67 0 R /Im80 87 0 R /Im53 60 0 R /Im56 63 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im54 61 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im115 122 0 R /Im60 67 0 R /Im69 76 0 R /Im59 66 0 R /Im67 74 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im74 81 0 R /Im57 64 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im66 73 0 R /Im53 60 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im117 124 0 R /Im56 63 0 R /Im69 76 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im53 60 0 R /Im118 125 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im67 74 0 R /Im53 60 0 R /Im54 61 0 R /Im53 60 0 R /Im59 66 0 R /Im67 74 0 R /Im74 81 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im59 66 0 R /Im55 62 0 R /Im66 73 0 R /Im79 86 0 R /Im66 73 0 R /Im64 71 0 R /Im67 74 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im55 62 0 R /Im63 70 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im60 67 0 R /Im61 68 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im114 121 0 R /Im64 71 0 R /Im74 81 0 R /Im64 71 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im71 78 0 R /Im115 122 0 R /Im53 60 0 R /Im66 73 0 R /Im55 62 0 R /Im69 76 0 R /Im74 81 0 R /Im53 60 0 R /Im80 87 0 R /Im53 60 0 R /Im66 73 0 R /Im55 62 0 R /Im59 66 0 R /Im53 60 0 R /Im119 126 0 R /Im54 61 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im63 70 0 R /Im55 62 0 R /Im56 63 0 R /Im65 72 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im69 76 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im55 62 0 R /Im61 68 0 R /Im57 64 0 R /Im53 60 0 R /Im56 63 0 R /Im80 87 0 R /Im53 60 0 R /Im76 83 0 R /Im55 62 0 R /Im114 121 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im56 63 0 R /Im65 72 0 R /Im53 60 0 R /Im69 76 0 R /Im54 61 0 R /Im67 74 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im86 93 0 R /Im75 82 0 R /Im76 83 0 R /Im64 71 0 R /Im74 81 0 R /Im54 61 0 R /Im55 62 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im54 61 0 R /Im60 67 0 R /Im74 81 0 R /Im53 60 0 R /Im74 81 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im57 64 0 R /Im60 67 0 R /Im63 70 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im59 66 0 R /Im56 63 0 R /Im69 76 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im57 64 0 R /Im60 67 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im57 64 0 R /Im60 67 0 R /Im73 80 0 R /Im64 71 0 R /Im53 60 0 R /Im63 70 0 R /Im67 74 0 R /Im53 60 0 R /Im118 125 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im69 76 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im71 78 0 R /Im115 122 0 R /Im73 80 0 R /Im69 76 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im79 86 0 R /Im58 65 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im61 68 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im80 87 0 R /Im60 67 0 R /Im56 63 0 R /Im78 85 0 R /Im86 93 0 R /Im75 82 0 R /Im76 83 0 R /Im53 60 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im55 62 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im60 67 0 R /Im61 68 0 R /Im55 62 0 R /Im115 122 0 R /Im64 71 0 R /Im59 66 0 R /Im55 62 0 R /Im56 63 0 R /Im73 80 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im58 65 0 R /Im60 67 0 R /Im59 66 0 R /Im65 72 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im71 78 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im74 81 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im115 122 0 R /Im55 62 0 R /Im74 81 0 R /Im53 60 0 R /Im67 74 0 R /Im60 67 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im64 71 0 R /Im59 66 0 R /Im74 81 0 R /Im54 61 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im80 87 0 R /Im64 71 0 R /Im57 64 0 R /Im76 83 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im60 67 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im63 70 0 R /Im63 70 0 R /Im60 67 0 R /Im86 93 0 R /Im121 128 0 R /Im122 129 0 R /Im123 130 0 R /Im124 131 0 R /Im125 132 0 R /Im126 133 0 R /Im127 134 0 R /Im128 135 0 R /Im129 136 0 R /Im124 131 0 R /Im122 129 0 R /Im126 133 0 R /Im123 130 0 R /Im62 69 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im58 65 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im130 137 0 R /Im62 69 0 R /Im131 138 0 R /Im117 124 0 R /Im132 139 0 R /Im64 71 0 R /Im74 81 0 R /Im55 62 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im63 70 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im64 71 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im61 68 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im80 87 0 R /Im60 67 0 R /Im56 63 0 R /Im78 85 0 R /Im60 67 0 R /Im61 68 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im79 86 0 R /Im58 65 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im71 78 0 R /Im80 87 0 R /Im76 83 0 R /Im64 71 0 R /Im66 73 0 R /Im76 83 0 R /Im64 71 0 R /Im59 66 0 R /Im114 121 0 R /Im60 67 0 R /Im63 70 0 R /Im114 121 0 R /Im53 60 0 R /Im74 81 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im116 123 0 R /Im56 63 0 R /Im74 81 0 R /Im57 64 0 R /Im79 86 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im58 65 0 R /Im55 62 0 R /Im63 70 0 R /Im79 86 0 R /Im64 71 0 R /Im74 81 0 R /Im58 65 0 R /Im86 93 0 R /Im62 69 0 R /Im131 138 0 R /Im117 124 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im53 60 0 R /Im74 81 0 R /Im57 64 0 R /Im60 67 0 R /Im116 123 0 R /Im59 66 0 R /Im67 74 0 R /Im55 62 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im71 78 0 R /Im66 73 0 R /Im55 62 0 R /Im63 70 0 R /Im63 70 0 R /Im53 60 0 R /Im67 74 0 R /Im55 62 0 R /Im76 83 0 R /Im73 80 0 R /Im54 61 0 R /Im60 67 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im64 71 0 R /Im74 81 0 R /Im71 78 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im119 126 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im64 71 0 R /Im59 66 0 R /Im74 81 0 R /Im65 72 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im59 66 0 R /Im53 60 0 R /Im119 126 0 R /Im55 62 0 R /Im58 65 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im80 87 0 R /Im64 71 0 R /Im57 64 0 R /Im76 83 0 R /Im56 63 0 R /Im53 60 0 R /Im79 86 0 R /Im74 81 0 R /Im54 61 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im57 64 0 R /Im60 67 0 R /Im55 62 0 R /Im63 70 0 R /Im74 81 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im59 66 0 R /Im115 122 0 R /Im55 62 0 R /Im66 73 0 R /Im78 85 0 R /Im65 72 0 R /Im56 63 0 R /Im60 67 0 R /Im69 76 0 R /Im59 66 0 R /Im67 74 0 R /Im78 85 0 R /Im59 66 0 R /Im60 67 0 R /Im80 87 0 R /Im63 70 0 R /Im53 60 0 R /Im67 74 0 R /Im65 72 0 R /Im53 60 0 R /Im86 93 0 R /Im75 82 0 R /Im76 83 0 R /Im53 60 0 R /Im53 60 0 R /Im119 126 0 R /Im55 62 0 R /Im58 65 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im115 122 0 R /Im55 62 0 R /Im66 73 0 R /Im78 85 0 R /Im65 72 0 R /Im56 63 0 R /Im60 67 0 R /Im69 76 0 R /Im59 66 0 R /Im67 74 0 R /Im78 85 0 R /Im59 66 0 R /Im60 67 0 R /Im80 87 0 R /Im63 70 0 R /Im53 60 0 R /Im67 74 0 R /Im65 72 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im67 74 0 R /Im53 60 0 R /Im79 86 0 R /Im74 81 0 R /Im66 73 0 R /Im56 63 0 R /Im64 71 0 R /Im115 122 0 R /Im53 60 0 R /Im67 74 0 R /Im64 71 0 R /Im59 66 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im74 81 0 R /Im86 93 0 R /Im62 69 0 R /Im131 138 0 R /Im117 124 0 R /Im76 83 0 R /Im55 62 0 R /Im74 81 0 R /Im115 122 0 R /Im53 60 0 R /Im53 60 0 R /Im59 66 0 R /Im53 60 0 R /Im114 121 0 R /Im64 71 0 R /Im67 74 0 R /Im53 60 0 R /Im59 66 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im57 64 0 R /Im60 67 0 R /Im80 87 0 R /Im60 67 0 R /Im56 63 0 R /Im78 85 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im58 65 0 R /Im55 62 0 R /Im59 66 0 R /Im73 80 0 R /Im66 73 0 R /Im63 70 0 R /Im55 62 0 R /Im74 81 0 R /Im74 81 0 R /Im64 71 0 R /Im116 123 0 R /Im66 73 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im58 65 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im66 73 0 R /Im60 67 0 R /Im58 65 0 R /Im79 86 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im119 126 0 R /Im74 81 0 R /Im57 64 0 R /Im56 63 0 R /Im69 76 0 R /Im66 73 0 R /Im57 64 0 R /Im69 76 0 R /Im56 63 0 R /Im55 62 0 R /Im63 70 0 R /Im67 74 0 R /Im60 67 0 R /Im58 65 0 R /Im55 62 0 R /Im64 71 0 R /Im59 66 0 R /Im74 81 0 R /Im71 78 0 R /Im74 81 0 R /Im69 76 0 R /Im66 73 0 R /Im76 83 0 R /Im55 62 0 R /Im74 81 0 R /Im58 65 0 R /Im60 67 0 R /Im63 70 0 R /Im53 60 0 R /Im66 73 0 R /Im69 76 0 R /Im63 70 0 R /Im55 62 0 R /Im56 63 0 R /Im115 122 0 R /Im64 71 0 R /Im60 67 0 R /Im63 70 0 R /Im79 86 0 R /Im60 67 0 R /Im65 72 0 R /Im73 80 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im59 66 0 R /Im55 62 0 R /Im57 64 0 R /Im69 76 0 R /Im56 63 0 R /Im55 62 0 R /Im63 70 0 R /Im63 70 0 R /Im55 62 0 R /Im59 66 0 R /Im65 72 0 R /Im69 76 0 R /Im55 62 0 R /Im65 72 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im133 140 0 R /Im52 59 0 R /Im53 60 0 R /Im134 141 0 R /Im55 62 0 R /Im53 60 0 R /Im67 74 0 R /Im57 64 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im84 91 0 R /Im71 78 0 R /Im137 144 0 R /Im69 76 0 R /Im65 72 0 R /Im65 72 0 R /Im63 70 0 R /Im53 60 0 R /Im57 64 0 R /Im60 67 0 R /Im59 66 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im138 145 0 R /Im139 146 0 R /Im86 93 0 R /Im75 82 0 R /Im76 83 0 R /Im53 60 0 R /Im116 123 0 R /Im53 60 0 R /Im63 70 0 R /Im67 74 0 R /Im60 67 0 R /Im61 68 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im74 81 0 R /Im60 67 0 R /Im74 81 0 R /Im69 76 0 R /Im54 61 0 R /Im54 61 0 R /Im63 70 0 R /Im64 71 0 R /Im53 60 0 R /Im74 81 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im58 65 0 R /Im74 81 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im62 69 0 R /Im131 138 0 R /Im117 124 0 R /Im56 63 0 R /Im53 60 0 R /Im74 81 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im66 73 0 R /Im76 83 0 R /Im86 93 0 R /Im137 144 0 R /Im55 62 0 R /Im59 66 0 R /Im73 80 0 R /Im62 69 0 R /Im131 138 0 R /Im117 124 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im74 81 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im140 147 0 R /Im141 148 0 R /Im142 149 0 R /Im143 150 0 R /Im144 151 0 R /Im145 152 0 R /Im142 149 0 R /Im146 153 0 R /Im146 153 0 R /Im147 154 0 R /Im148 155 0 R /Im149 156 0 R /Im150 157 0 R /Im150 157 0 R /Im151 158 0 R /Im143 150 0 R /Im144 151 0 R /Im152 159 0 R /Im153 160 0 R /Im154 161 0 R /Im147 154 0 R /Im144 151 0 R /Im155 162 0 R /Im152 159 0 R /Im156 163 0 R /Im151 158 0 R /Im143 150 0 R /Im145 152 0 R /Im157 164 0 R /Im158 165 0 R /Im159 166 0 R /Im151 158 0 R /Im143 150 0 R /Im160 167 0 R /Im142 149 0 R /Im144 151 0 R /Im145 152 0 R /Im151 158 0 R /Im158 165 0 R /Im161 168 0 R /Im162 169 0 R /Im145 152 0 R /Im152 159 0 R /Im158 165 0 R /Im162 169 0 R /Im152 159 0 R /Im141 148 0 R /Im143 150 0 R /Im151 158 0 R /Im160 167 0 R /Im151 158 0 R /Im144 151 0 R /Im145 152 0 R /Im151 158 0 R /Im158 165 0 R /Im163 170 0 R /Im151 158 0 R /Im149 156 0 R /Im158 165 0 R /Im153 160 0 R /Im142 149 0 R /Im144 151 0 R /Im145 152 0 R /Im151 158 0 R /Im158 165 0 R /Im164 171 0 R /Im165 172 0 R /Im166 173 0 R /Im149 156 0 R /Im143 150 0 R /Im143 150 0 R /Im152 159 0 R /Im158 165 0 R /Im144 151 0 R /Im146 153 0 R /Im147 154 0 R /Im167 174 0 R /Im151 158 0 R /Im143 150 0 R /Im168 175 0 R /Im145 152 0 R /Im158 165 0 R /Im169 176 0 R /Im159 166 0 R /Im151 158 0 R /Im143 150 0 R /Im161 168 0 R /Im149 156 0 R /Im160 167 0 R /Im145 152 0 R /Im148 155 0 R /Im155 162 0 R /Im151 158 0 R /Im166 173 0 R /Im151 158 0 R /Im160 167 0 R /Im150 157 0 R /Im149 156 0 R /Im144 151 0 R /Im152 159 0 R /Im143 150 0 R /Im161 168 0 R /Im147 154 0 R /Im148 155 0 R /Im144 151 0 R /Im152 159 0 R /Im160 167 0 R /Im148 155 0 R /Im166 173 0 R /Im151 158 0 R /Im143 150 0 R /Im150 157 0 R /Im164 171 0 R /Im170 177 0 R /Im171 178 0 R /Im172 179 0 R /Im173 180 0 R /Im174 181 0 R /Im175 182 0 R /Im176 183 0 R /Im177 184 0 R /Im178 185 0 R /Im179 186 0 R /Im174 181 0 R /Im86 93 0 R /Im172 179 0 R /Im171 178 0 R /Im175 182 0 R /Im180 187 0 R /Im181 188 0 R /Im180 187 0 R /Im86 93 0 R /Im182 189 0 R /Im180 187 0 R /Im86 93 0 R /Im183 190 0 R /Im171 178 0 R /Im164 171 0 R /Im64 71 0 R /Im59 66 0 R /Im74 81 0 R /Im54 61 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im115 122 0 R /Im73 80 0 R /Im55 62 0 R /Im54 61 0 R /Im54 61 0 R /Im63 70 0 R /Im73 80 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im57 64 0 R /Im60 67 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im66 73 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im67 74 0 R /Im60 67 0 R /Im58 65 0 R /Im55 62 0 R /Im64 71 0 R /Im59 66 0 R /Im130 137 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im53 60 0 R /Im119 126 0 R /Im55 62 0 R /Im58 65 0 R /Im79 86 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im71 78 0 R /Im133 140 0 R /Im184 191 0 R /Im185 192 0 R /Im69 76 0 R /Im56 63 0 R /Im59 66 0 R /Im78 85 0 R /Im56 63 0 R /Im55 62 0 R /Im59 66 0 R /Im186 193 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im82 89 0 R /Im71 78 0 R /Im187 194 0 R /Im69 76 0 R /Im64 71 0 R /Im59 66 0 R /Im63 70 0 R /Im55 62 0 R /Im59 66 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im188 195 0 R /Im71 78 0 R /Im137 144 0 R /Im60 67 0 R /Im56 63 0 R /Im55 62 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im138 145 0 R /Im71 78 0 R /Im137 144 0 R /Im60 67 0 R /Im56 63 0 R /Im55 62 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im189 196 0 R /Im71 78 0 R /Im190 197 0 R /Im55 62 0 R /Im64 71 0 R /Im59 66 0 R /Im191 198 0 R /Im70 77 0 R /Im56 63 0 R /Im64 71 0 R /Im59 66 0 R /Im64 71 0 R /Im114 121 0 R /Im55 62 0 R /Im74 81 0 R /Im55 62 0 R /Im59 66 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im84 91 0 R /Im139 146 0 R /Im132 139 0 R /Im86 93 0 R /Im68 75 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im64 71 0 R /Im74 81 0 R /Im56 63 0 R /Im53 60 0 R /Im66 73 0 R /Im60 67 0 R /Im65 72 0 R /Im59 66 0 R /Im64 71 0 R /Im186 193 0 R /Im53 60 0 R /Im67 74 0 R /Im55 62 0 R /Im74 81 0 R /Im55 62 0 R /Im74 81 0 R /Im69 76 0 R /Im64 71 0 R /Im57 64 0 R /Im55 62 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im67 74 0 R /Im60 67 0 R /Im58 65 0 R /Im55 62 0 R /Im64 71 0 R /Im59 66 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im62 69 0 R /Im131 138 0 R /Im117 124 0 R /Im115 122 0 R /Im53 60 0 R /Im66 73 0 R /Im55 62 0 R /Im69 76 0 R /Im74 81 0 R /Im53 60 0 R /Im67 74 0 R /Im55 62 0 R /Im57 64 0 R /Im55 62 0 R /Im64 71 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im67 74 0 R /Im60 67 0 R /Im58 65 0 R /Im55 62 0 R /Im64 71 0 R /Im59 66 0 R /Im71 78 0 R /Im74 81 0 R /Im69 76 0 R /Im66 73 0 R /Im76 83 0 R /Im55 62 0 R /Im74 81 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im116 123 0 R /Im65 72 0 R /Im69 76 0 R /Im56 63 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im71 78 0 R /Im76 83 0 R /Im55 62 0 R /Im114 121 0 R /Im53 60 0 R /Im66 73 0 R /Im60 67 0 R /Im58 65 0 R /Im79 86 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im119 126 0 R /Im74 81 0 R /Im57 64 0 R /Im56 63 0 R /Im69 76 0 R /Im66 73 0 R /Im57 64 0 R /Im69 76 0 R /Im56 63 0 R /Im53 60 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im53 60 0 R /Im119 126 0 R /Im54 61 0 R /Im56 63 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im53 60 0 R /Im67 74 0 R /Im115 122 0 R /Im53 60 0 R /Im57 64 0 R /Im57 64 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im116 123 0 R /Im56 63 0 R /Im74 81 0 R /Im57 64 0 R /Im79 86 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im58 65 0 R /Im55 62 0 R /Im63 70 0 R /Im64 71 0 R /Im74 81 0 R /Im58 65 0 R /Im86 93 0 R /Im192 199 0 R /Im69 76 0 R /Im56 63 0 R /Im54 61 0 R /Im56 63 0 R /Im53 60 0 R /Im114 121 0 R /Im64 71 0 R /Im60 67 0 R /Im69 76 0 R /Im74 81 0 R /Im80 87 0 R /Im60 67 0 R /Im56 63 0 R /Im78 85 0 R /Im133 140 0 R /Im72 79 0 R /Im55 62 0 R /Im78 85 0 R /Im55 62 0 R /Im59 66 0 R /Im60 67 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im63 70 0 R /Im86 93 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im83 90 0 R /Im139 146 0 R /Im66 73 0 R /Im76 83 0 R /Im55 62 0 R /Im63 70 0 R /Im63 70 0 R /Im53 60 0 R /Im59 66 0 R /Im65 72 0 R /Im53 60 0 R /Im67 74 0 R /Im57 64 0 R /Im60 67 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im76 83 0 R /Im53 60 0 R /Im69 76 0 R /Im56 63 0 R /Im64 71 0 R /Im74 81 0 R /Im57 64 0 R /Im64 71 0 R /Im66 73 0 R /Im74 81 0 R /Im57 64 0 R /Im60 67 0 R /Im53 60 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im116 123 0 R /Im65 72 0 R /Im69 76 0 R /Im56 63 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im67 74 0 R /Im60 67 0 R /Im58 65 0 R /Im55 62 0 R /Im64 71 0 R /Im59 66 0 R /Im60 67 0 R /Im61 68 0 R /Im74 81 0 R /Im76 83 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im71 78 0 R /Im60 67 0 R /Im56 63 0 R /Im85 92 0 R /Im55 62 0 R /Im54 61 0 R /Im55 62 0 R /Im59 66 0 R /Im53 60 0 R /Im74 81 0 R /Im53 60 0 R /Im66 73 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im86 93 0 R /Im62 69 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im80 87 0 R /Im60 67 0 R /Im56 63 0 R /Im78 85 0 R /Im80 87 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im76 83 0 R /Im53 60 0 R /Im69 76 0 R /Im56 63 0 R /Im64 71 0 R /Im74 81 0 R /Im57 64 0 R /Im64 71 0 R /Im66 73 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im58 65 0 R /Im64 71 0 R /Im59 66 0 R /Im57 64 0 R /Im60 67 0 R /Im55 62 0 R /Im74 81 0 R /Im64 71 0 R /Im58 65 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im66 73 0 R /Im63 70 0 R /Im55 62 0 R /Im74 81 0 R /Im74 81 0 R /Im64 71 0 R /Im116 123 0 R /Im66 73 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im58 65 0 R /Im71 78 0 R /Im80 87 0 R /Im76 83 0 R /Im64 71 0 R /Im66 73 0 R /Im76 83 0 R /Im66 73 0 R /Im63 70 0 R /Im55 62 0 R /Im74 81 0 R /Im74 81 0 R /Im64 71 0 R /Im116 123 0 R /Im53 60 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im74 81 0 R /Im57 64 0 R /Im55 62 0 R /Im59 66 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im193 200 0 R /Im194 201 0 R /Im195 202 0 R /Im195 202 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im197 204 0 R /Im198 205 0 R /Im199 206 0 R /Im200 207 0 R /Im197 204 0 R /Im194 201 0 R /Im86 93 0 R /Im193 200 0 R /Im194 201 0 R /Im195 202 0 R /Im195 202 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im197 204 0 R /Im198 205 0 R /Im199 206 0 R /Im200 207 0 R /Im197 204 0 R /Im194 201 0 R /Im130 137 0 R /Im201 208 0 R /Im71 78 0 R /Im202 209 0 R /Im203 210 0 R /Im71 78 0 R /Im202 209 0 R /Im204 211 0 R /Im132 139 0 R /Im64 71 0 R /Im74 81 0 R /Im57 64 0 R /Im56 63 0 R /Im69 76 0 R /Im53 60 0 R /Im80 87 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im55 62 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im202 209 0 R /Im203 210 0 R /Im64 71 0 R /Im74 81 0 R /Im115 122 0 R /Im53 60 0 R /Im57 64 0 R /Im57 64 0 R /Im53 60 0 R /Im56 63 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im59 66 0 R /Im55 62 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im202 209 0 R /Im204 211 0 R /Im57 64 0 R /Im60 67 0 R /Im115 122 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im78 85 0 R /Im53 60 0 R /Im59 66 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im55 62 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im116 123 0 R /Im65 72 0 R /Im69 76 0 R /Im56 63 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im201 208 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im54 61 0 R /Im60 67 0 R /Im74 81 0 R /Im53 60 0 R /Im67 74 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im57 64 0 R /Im60 67 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im74 81 0 R /Im57 64 0 R /Im64 71 0 R /Im57 64 0 R /Im69 76 0 R /Im57 64 0 R /Im53 60 0 R /Im55 62 0 R /Im57 64 0 R /Im60 67 0 R /Im57 64 0 R /Im55 62 0 R /Im63 70 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im61 68 0 R /Im56 63 0 R /Im60 67 0 R /Im58 65 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im79 86 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im67 74 0 R /Im53 60 0 R /Im116 123 0 R /Im59 66 0 R /Im53 60 0 R /Im67 74 0 R /Im55 62 0 R /Im74 81 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im193 200 0 R /Im194 201 0 R /Im195 202 0 R /Im195 202 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im197 204 0 R /Im198 205 0 R /Im199 206 0 R /Im200 207 0 R /Im197 204 0 R /Im194 201 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im71 78 0 R /Im80 87 0 R /Im76 83 0 R /Im64 71 0 R /Im66 73 0 R /Im76 83 0 R /Im64 71 0 R /Im74 81 0 R /Im59 66 0 R /Im60 67 0 R /Im57 64 0 R /Im53 60 0 R /Im114 121 0 R /Im53 60 0 R /Im59 66 0 R /Im54 61 0 R /Im55 62 0 R /Im56 63 0 R /Im57 64 0 R /Im64 71 0 R /Im55 62 0 R /Im63 70 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im71 78 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im115 122 0 R /Im73 80 0 R /Im55 62 0 R /Im59 66 0 R /Im62 69 0 R /Im131 138 0 R /Im117 124 0 R /Im55 62 0 R /Im63 70 0 R /Im65 72 0 R /Im60 67 0 R /Im56 63 0 R /Im64 71 0 R /Im57 64 0 R /Im76 83 0 R /Im58 65 0 R /Im61 68 0 R /Im56 63 0 R /Im60 67 0 R /Im58 65 0 R /Im64 71 0 R /Im59 66 0 R /Im74 81 0 R /Im57 64 0 R /Im55 62 0 R /Im59 66 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im66 73 0 R /Im60 67 0 R /Im63 70 0 R /Im63 70 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im61 68 0 R /Im56 63 0 R /Im60 67 0 R /Im58 65 0 R /Im53 60 0 R /Im119 126 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im53 60 0 R /Im59 66 0 R /Im66 73 0 R /Im53 60 0 R /Im60 67 0 R /Im61 68 0 R /Im74 81 0 R /Im60 67 0 R /Im63 70 0 R /Im114 121 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im74 81 0 R /Im76 83 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im58 65 0 R /Im74 81 0 R /Im86 93 0 R /Im75 82 0 R /Im76 83 0 R /Im53 60 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im71 78 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im71 78 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im74 81 0 R /Im57 64 0 R /Im64 71 0 R /Im57 64 0 R /Im69 76 0 R /Im57 64 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im57 64 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im66 73 0 R /Im53 60 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im79 86 0 R /Im69 76 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im116 123 0 R /Im65 72 0 R /Im69 76 0 R /Im56 63 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im71 78 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im57 64 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im66 73 0 R /Im53 60 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im80 87 0 R /Im76 83 0 R /Im64 71 0 R /Im66 73 0 R /Im76 83 0 R /Im66 73 0 R /Im55 62 0 R /Im59 66 0 R /Im115 122 0 R /Im53 60 0 R /Im69 76 0 R /Im74 81 0 R /Im53 60 0 R /Im67 74 0 R /Im64 71 0 R /Im59 66 0 R /Im74 81 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im66 73 0 R /Im76 83 0 R /Im55 62 0 R /Im63 70 0 R /Im65 72 0 R /Im60 67 0 R /Im56 63 0 R /Im64 71 0 R /Im57 64 0 R /Im76 83 0 R /Im58 65 0 R /Im74 81 0 R /Im86 93 0 R /Im62 69 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im64 71 0 R /Im74 81 0 R /Im54 61 0 R /Im55 62 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im80 87 0 R /Im53 60 0 R /Im55 62 0 R /Im54 61 0 R /Im54 61 0 R /Im63 70 0 R /Im73 80 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im69 76 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im193 200 0 R /Im194 201 0 R /Im195 202 0 R /Im195 202 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im197 204 0 R /Im198 205 0 R /Im199 206 0 R /Im200 207 0 R /Im197 204 0 R /Im194 201 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im57 64 0 R /Im60 67 0 R /Im64 71 0 R /Im59 66 0 R /Im66 73 0 R /Im56 63 0 R /Im53 60 0 R /Im55 62 0 R /Im74 81 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im69 76 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im53 60 0 R /Im118 125 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im54 61 0 R /Im76 83 0 R /Im55 62 0 R /Im79 86 0 R /Im115 122 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im71 78 0 R /Im80 87 0 R /Im76 83 0 R /Im64 71 0 R /Im66 73 0 R /Im76 83 0 R /Im64 71 0 R /Im74 81 0 R /Im55 62 0 R /Im63 70 0 R /Im60 67 0 R /Im60 67 0 R /Im78 85 0 R /Im55 62 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im67 74 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im79 86 0 R /Im57 64 0 R /Im56 63 0 R /Im53 60 0 R /Im53 60 0 R /Im74 81 0 R /Im86 93 0 R /Im75 82 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im54 61 0 R /Im76 83 0 R /Im55 62 0 R /Im79 86 0 R /Im115 122 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im56 63 0 R /Im53 60 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im69 76 0 R /Im58 65 0 R /Im115 122 0 R /Im53 60 0 R /Im56 63 0 R /Im60 67 0 R /Im61 68 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im115 122 0 R /Im73 80 0 R /Im78 85 0 R /Im53 60 0 R /Im53 60 0 R /Im54 61 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im54 61 0 R /Im67 74 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im63 70 0 R /Im60 67 0 R /Im80 87 0 R /Im53 60 0 R /Im56 63 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im54 61 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im115 122 0 R /Im60 67 0 R /Im69 76 0 R /Im59 66 0 R /Im67 74 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im74 81 0 R /Im57 64 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im66 73 0 R /Im53 60 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im117 124 0 R /Im56 63 0 R /Im69 76 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im53 60 0 R /Im118 125 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im67 74 0 R /Im53 60 0 R /Im54 61 0 R /Im53 60 0 R /Im59 66 0 R /Im67 74 0 R /Im74 81 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im66 73 0 R /Im66 73 0 R /Im64 71 0 R /Im67 74 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im55 62 0 R /Im63 70 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im60 67 0 R /Im61 68 0 R /Im114 121 0 R /Im64 71 0 R /Im74 81 0 R /Im64 71 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im57 64 0 R /Im56 63 0 R /Im73 80 0 R /Im57 64 0 R /Im60 67 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im69 76 0 R /Im63 70 0 R /Im53 60 0 R /Im57 64 0 R /Im60 67 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im114 121 0 R /Im64 71 0 R /Im74 81 0 R /Im64 71 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im57 64 0 R /Im60 67 0 R /Im73 80 0 R /Im64 71 0 R /Im53 60 0 R /Im63 70 0 R /Im67 74 0 R /Im53 60 0 R /Im118 125 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im69 76 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im71 78 0 R /Im115 122 0 R /Im73 80 0 R /Im69 76 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im60 67 0 R /Im61 68 0 R /Im193 200 0 R /Im194 201 0 R /Im195 202 0 R /Im195 202 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im197 204 0 R /Im198 205 0 R /Im199 206 0 R /Im200 207 0 R /Im197 204 0 R /Im194 201 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im62 69 0 R /Im131 138 0 R /Im117 124 0 R /Im86 93 0 R /Im75 82 0 R /Im76 83 0 R /Im53 60 0 R /Im61 68 0 R /Im60 67 0 R /Im63 70 0 R /Im63 70 0 R /Im60 67 0 R /Im80 87 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im74 81 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im56 63 0 R /Im53 60 0 R /Im114 121 0 R /Im64 71 0 R /Im74 81 0 R /Im64 71 0 R /Im57 64 0 R /Im74 81 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im54 61 0 R /Im76 83 0 R /Im55 62 0 R /Im79 86 0 R /Im115 122 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im67 74 0 R /Im53 60 0 R /Im57 64 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im74 81 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im67 74 0 R /Im64 71 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im74 81 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im57 64 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im69 76 0 R /Im59 66 0 R /Im53 60 0 R /Im67 74 0 R /Im67 74 0 R /Im69 76 0 R /Im56 63 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im53 60 0 R /Im119 126 0 R /Im53 60 0 R /Im66 73 0 R /Im69 76 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im86 93 0 R /Im75 82 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im71 78 0 R /Im80 87 0 R /Im53 60 0 R /Im74 81 0 R /Im54 61 0 R /Im53 60 0 R /Im66 73 0 R /Im64 71 0 R /Im61 68 0 R /Im73 80 0 R /Im60 67 0 R /Im69 76 0 R /Im56 63 0 R /Im62 69 0 R /Im131 138 0 R /Im117 124 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im58 65 0 R /Im86 93 0 R /Im70 77 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im205 212 0 R /Im65 72 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im74 81 0 R /Im55 62 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im69 76 0 R /Im56 63 0 R /Im53 60 0 R /Im57 64 0 R /Im60 67 0 R /Im55 62 0 R /Im54 61 0 R /Im54 61 0 R /Im63 70 0 R /Im73 80 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im56 63 0 R /Im69 76 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im71 78 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im193 200 0 R /Im194 201 0 R /Im195 202 0 R /Im195 202 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im197 204 0 R /Im198 205 0 R /Im199 206 0 R /Im200 207 0 R /Im197 204 0 R /Im194 201 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im71 78 0 R /Im57 64 0 R /Im60 67 0 R /Im53 60 0 R /Im119 126 0 R /Im53 60 0 R /Im66 73 0 R /Im69 76 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im54 61 0 R /Im76 83 0 R /Im55 62 0 R /Im79 86 0 R /Im115 122 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im86 93 0 R /Im75 82 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im71 78 0 R /Im64 71 0 R /Im59 66 0 R /Im70 77 0 R /Im53 60 0 R /Im66 73 0 R /Im79 86 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im84 91 0 R /Im71 78 0 R /Im80 87 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im54 61 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im53 60 0 R /Im119 126 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im58 65 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im55 62 0 R /Im63 70 0 R /Im56 63 0 R /Im53 60 0 R /Im74 81 0 R /Im69 76 0 R /Im63 70 0 R /Im57 64 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im54 61 0 R /Im60 67 0 R /Im74 81 0 R /Im53 60 0 R /Im67 74 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im64 71 0 R /Im59 66 0 R /Im60 67 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im63 70 0 R /Im63 70 0 R /Im60 67 0 R /Im86 93 0 R /Im70 77 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im82 89 0 R /Im67 74 0 R /Im64 71 0 R /Im74 81 0 R /Im66 73 0 R /Im69 76 0 R /Im74 81 0 R /Im74 81 0 R /Im53 60 0 R /Im74 81 0 R /Im58 65 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im57 64 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im56 63 0 R /Im53 60 0 R /Im58 65 0 R /Im55 62 0 R /Im64 71 0 R /Im59 66 0 R /Im53 60 0 R /Im67 74 0 R /Im64 71 0 R /Im74 81 0 R /Im74 81 0 R /Im69 76 0 R /Im53 60 0 R /Im74 81 0 R /Im86 93 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 7 0 R +>> +endobj +7 0 obj +<< +/Length 452 0 R +/Filter /FlateDecode +>> +stream +x¥}ËÒ5»mÝ\Oñ?5oÍnS«2I% =Il9r"ùª+o¾½7»I,t¹JÇûHqYðóß~ýóoܯûMN?ó¯ÝO^~ýéWÝçç¯þg·å[~ýá×ß]T¶ÿ~¦eúµýç$ÿùëϺýÃÍé'ÅéWöáøý7úÍoÿóܯÿø¿ùo_ònßÏ?aÿ>oÿ÷ï§ã÷ù½¿¿üÌ¿ò÷¿¿úïW¾÷ïãOð·ïLüä +xü> $5~5ï×CpÞ¥ëûxýýùþ½ó?ëwÐûì`Vï HjÇßOüýUÿ÷ç ü}7Ý ¤|ÈÀC;:×w:°D¬?nÿûëZ(¿Ë +4VtîA ?̨¹ Á¡<7Ám{}baÁgÄÆ8!]X+rSjK1zfäÌÜÃ&þÄíÃÝ¡�ÙåÍÇ_ÆØöç!Ïh zsËb5ÇSìÊ|r'äRÜT6Þ×p +!:dþ±¦bpïÃKñ¥EÇ,ZïÖãá¡GÈ!ítKñSþÞ _n;ö©x)Z»çi±9vç�Dp÷t;T£#¶D¨·%u8+`à¡í¿Vð÷õZìç|ïÚ¡5o´- gZÜ;Z +B®ðضÖÌàá:è�âc t:_²/=øYcí=t÷ ½ S£N\[ÉPN +³GZ@|Ø5[ÐPõÐHÎiµ?:8ç,@®Ì«NJ Cô¤ÐÖÃèW¾ ð*ÄèÇ»x$æ N¤AùùÇëçæ ¯¤Áõ«NÀU,Û¿r:Ú¹7À½ÿ.r|ì%pÊÛlÿp[T: øãw!ðÐfâ8xÄ¥6édÍAÐ:ÒR|sÁÿ,w&&^Î%¤ãw! Le [h| +1hBc!j�E»4çÞÂAA·%<ì©M` ªml±¼o4í$à§øNv ¨7&ïf´Ç6M?ÓRÝÏvJ84Ñ8x$0O_¶CÏ|©rÔ�"¿�DÍI¡È dà.ìÔÇóVkls¡"ééDʱpP ½9ïP[cÎ0Ä»0Ã]гÏ:[) ý~~ür÷ñáNuOÄi*ÐIJè"áV¤J§z�¥)¼Óík8�B´/NuÓùâàáþ`' ñPçã¼0]88Ðs×É ©! ÀBèAþ]p Z£âÈedm\§/¦59[±È Çw@3,â(ãÂÁÁ²¾ÎaVNrì1c¤8!| Û `´ x¨%»/sþÞ ¤1è�FScÔ©r{ iR-¡TcB»ô)Îæ]èÀ¡ri �<p<O,í]ÈjN5.IubiFç¸Nï¢sþ8ú¦Ëôm7!n!îKuÏý_]= píBÒÈ @] ï5Ð<8ð*· &4ÿ¸@:õ`¢ûxÄ\OVÄÎâø](Á`´e²Jí%Ìp0k|¢XÖ*Ï¢B 'D@wì;á6B\âK!.J Ü?d°$�"C`At^ù8/LUþ8ÕYïÂdvi .M£B�q0k<R!*±I!¨dÐÛO¬ô@SÊtþ«Ëé=Ä/|0ëjH:Ôtë!éÜz36î>6vaÖ{¤×wé:t 4±C�6-=(7¦µdØÞÿÕ~èÒXcÓ¥Å)Z]pð2¼GgïB�q@x¤ýاYÂYúT8ÓqyGÉß¶eêJRÖû¯]ÈDxOE»såæ|¹öÝ "OÔÛÙXÈNÌ/dpìÂRðAµÈSs We/®Z:q 4A(Ûz>±éÂäôìÚqaBBdâ*:n#|RÙB;§&´zä©v(Ðá¥"ÜFMbº,!y´]fû8/q¯ÕlcÛæm#!Äììt8J×ÃÈ·aÞâT^¹ÃæTظEi26ÿÊË-óß8xJxV>2·¾ERùÒDÝEÕA §Z @Ö^^ù\*.E%°3wÝ;ï%zÐ&i ½?¸Ò@õ.èaÄô@MUös)æ®*7á¾4ÜTÐD93euz�¬Q èÁ7E³8ààÒÚ(Y&¶ ¸.*sî dOÒöÛEjwÐôH5ø Ú v`ñE²e²â8/쥲OM$Î×Í·YrU¶íÂçöÑguCJþhûXE iLaÖSq 8«óÓ'VtÀúÀ¢ã qtæãÂQ°"s^ôÍ+ 4På¦1Å)!úl^tf�ä@ãT])yFÑy!¦÷ËûIEÐ Mé @Õʤ,~:ëËÒ¢>ÑUWKsØÎ¾O«>¡èÝiÏ7ºÛûmë8ªxÞX³ï&ÄÏñ}%²0áìH»q ¹æñ?y߯¸á±ôã/=X5Æ E ÉH¦¥Sot`ùà`ú»o+OÈî~àØÆy>~Þ¶80d¶ÑM3KÙÇ ìjö°°iÐÑQå×ã·°@XÃ_ô¤ðTæö>HFÐjN{§OBO#N>qÀhÂöU +Øô:ÏÞT¥àW*u�sÔI¡© +{ãºÑ$¥½-&!ݤC¬+ܤÇV¤dÝ +IëM*×Ö!TÞBdåüϺÜÕÑMÌåélµ©O^ïB/ó[ ®ÍMÄrÍïÔÞÁ¯±æNÆÍ·½ÛÉèt¾sý¹¨Ð^ÃæÛTk�,,?qþtÖÊä&=^Ùû 5 õ½.G++¹µÏÖáASQ(ûÃ;Mì\éêH/ñK³ÌCu¥l3í]´½P t(<³äç0 /EJw +È 2¤ QêS{Ò_%fl=½)îX»or +¾²bSs ÑXYáJaDße ϤóPïÊ=fM8Ô;}ZÁùUÅA[!!zïèä@1wåÞÂN ÑÚBLPg¤Hª[D!0[epÆY§ËLWòÒl° B`A2`Tyy«Ê+ÜFBVÈQ¾Z:ön!0«\Z»|K nR]VqÐIOAk$än#SÒ9Ða¥#ËbAezè#2&B=öIÚ:tq¡½3ܦÞí¥9KóÍ+âYPÚ±¸ sÐõé1i¡_±×vÊUkD mçJ0ôK|:""ÀÀÄ Ò#Ay^µíèîóµSÑ¡+)»ÊeòMúªWêcn2Ðç(]©àqд% h:?j"JÓHí#S.>µæ@_úéÊ´]X?PU.%ÀvU^Ö»°Ê6~/Á©æ +ä(U>X¦ÆpT£»*öªK:8Q· í%@§¨Î'JÓ ¦NÛÈ 4hÄ.ÄYµc7XB§9ghj8æÕtó5*6 ÐÖÄ<¿sÒ¹iMedÝÆ+v¬`PÞT9·òEÌÅ¡z»�qbÚA À`¬ÅÊÁ c :2â@3ûJ0V@»H¦0«8hê¡Ä×¢K&ÍY9H*øÁX'>ÂédÒà6ùÌéyrî�÷RJפIµÆ²C¨,a]À.0ß .È8HÁ'í?bäÒM #!vʬ 5 Ü¡ÄÍ¹Ú +¹ãàø; ú4]1Â9Zb²ê² ÛÆÍøÎ«ú gce¸bBÈóæÀR4iÑiRsá8g»S×®©}qH5",¦I;É"Y;\é²qÐA8 гĺyJU²¶(]ö¦)]Y¤z zSº¯%8Ki` +4«dÐA8HOÖ¬çßÇ5|{d`JTà¤ádÇW}æCIÛõJCÀh 2%¸ç39Ãé[iÐRÐf!x&s8¯Ú^BK ¢{n¸ï!ýáôw4^<í]ÈÐ)2e:4(Å]å¢,VåqL£\Ý0ÕL%1>MÆccA(7[&) «j5qnh^ͪÊ�Ë5UM@Ú>×TÇ«MuÉ,s9Êj¤óJlaêº:õL,âY¿Ð¹é.`wFºÈd$ËǰQV Eb¤+ãøìö¸@k Òy«¿Ðiåãäúål'× zEâäê W$N®¥[ndMíÀàc± Ùvrõr÷nõÆEèÛ b'¬Èî é1IgdL ÅT>±C@à;i à5.I#[h.¡dqâ²ÚFWN¹ý{ÀGÜ]«)¶ºùÛ +÷Óèdq^,á¬øÎ~\3Ú Nf2 ÛRñ}[Ñ:¼aǰpà6KuÔìÆßï©öJ\b·¿Ù¿!½47!KXÝË]Cu.|2Ø Î-C¸%*÷T#kìdqÖwÆ$åÒB*Õ.ÉxK$®j Ô-�"´AZeðipt.©±G!î÷Á¼¾óëRîl¶g)¤©@Ú<tIDt²'¨-P»\3ݾgðEYÀ>ÁT 9!Í2ååFpÊN'Â�1buTòPäMFÀ.0©Ü{ô@,�QzÐN¥%¸ÄÃP*!2^]ZÊìó;s¾ N-E¢f¼ßìYßá°G"´Hg°¶OÐ>2W,¥¶Ï¼òJÌÈ!t.ªWe2¢Æ©YÐ;vïys)Ì#-/áB(Øt>+ ÷IâddDgn(´?ÁÍÐÌÈ!0·}ºU,/H eE'0;ºjÄåÊ¡lÂqÄ¡Ô0UE7l=$Þ]l¹}ñHõÜ~)¥Ù ú/öJ°"¸F´ÏÀÒ®Á²ß5$"±2üFHD Æhb§ +ª2ÓÑõִƬÁîNpJz ÝP=ø?wÊ`x$ELHDÿL07«â¨b¡$ÀÕs®b®û´ §¨o¤RÃJ¦Ìá ¦1B±G×wÁQf2c[Ò"!'Eãé{*P�E + ±@g',ÌlbY@R�0ýL¥£j´6ÊòáZee$¦é|B2`ªyà6êGï ã%¹î%K;¾Ë©Á`yT¯�9 )£I3RE¦3N2ÓEìm¸-0+E[£[ &=ì¹}Û¶"°)[6`¡ 9OݧìF¡³°*¡AA`ÚÖÍNÓér§!Bá4dÏN{é¥ëÜ ÁiÐ%1=Y0:d¨ÄaAz zXòVͼíÁ ñ'»:pH"¨¸´ ÷n½�y#ÀÔ-` RU ZmÝrÉÀ÷¯z i +ʪ ÈpH<ë%0 éDÈIz@Ü4Íh£ëÛHÜ4e´Lïþ2©ÐÞFÁHæm"ó6® `ºáTÀɱӶªbâ MbjmÝlå À<·ª|Z#AFܶ ÈhRû!¹PãöüÃaç{Í¥óݬÌÊÄç1Êñ}]Íqy=ëì±C@çØÛ¯éå4qIq%³¬Û((ký]trj«0w˪ 0%E`PVÙsÄ% ,0Íó«j c4ØÇ6Rβ}¸lÇ«¶^L[JQ4FI54InliY¼*EÊÐEÊÈt\FȤã=·IRQµ"1¡0m«J:8-[UY@G2н,y¤¤2çÎ{é<ö�ÉD9àØ C!p`¤jâ÷Ò+kòÛ=41²@ô IvÜê×}Ö ¡½¥OkÚ³_¦w~Ýc¦ ,_ Ú6TEU,UQ>t,㪨CU·>á¡4/ÑÛ2?§® ïÙZ"Ó$ªÞú¦L7vÛFFªÈ¼)3C=`¦Lg"u0FZTÔIEAy¤«Î;$äP¦m9¶ÕIÿú¶cu ×eÛ$æôî(dÀäó²F¦+BDÝwÒ9Õ6Ð2pëm%YOgq,ª|69UllË T5¶_0ì|wÆíR#éóP¯«2GO±âÜ*ø¤&@¤<$Àx'ÈëÔLûw»xÕ ¶±C`Þ¸¸\K°¼v +>á à62³JÚB,8FBì¤`âK[X':½÷¢Æ9ÙW_U/|bUe_Þå1«²wÈ¥1Ë1UK î!"Â<AlID§riL|©HIç>V°¦2î(f][f*ã²N;Ã&µî2]¦YN£a5NÌ�sU�ªfr@ ¹{úSa;¬*Ú©õÞ ôRqíÙ¼~=8aíÏæítßüÃT%eG-U·n)B%-�óDòlWé2Uò<©¡3�qz¹íÓW^½q@à´5¾ÓÉâÜJ¦§þ´ïN=ÑòndÄQ½*08èØ âZBæ¨:2Þºmh/!¢ÐÂ<w*2ùÀ= +J(61»0ëbÓ§8º`â@hÁÖþ ê&²zägDÑÉyÎtF©dv¦çÒ\\[¾ÍÓnÝÛT^\ðªml/¡(Þè+ãö«²Cª}ß<NªLÔÏâû3ÛÈ:°îvô±]X«²Ä e^fÄQRéA[×xa¤.s¶ÝpL/ (¯¡Ty8ÅñæWº8Ì^Y½yåN[Ù¬ZBg"ôØÈ©}ãz$ªäy$æ¾qÆÄL¡XBF¡ipѹ3? ¨TyéÁ0é É·DTMym,Ä&¸ò¶ÏNÀV(ëÔußGQ5æ-lâYtæ`B^»0±S0A;ºË)&ãvòH¯ºÈC¡s]9 yÊíMàìܶ½µçZñ ʺ¢md&]{ë.ÈʶDä8Y{îd² 9=Ûþ¥OKfæ#ÚFFQgÎíð*²!ÏX¬2¨çTß4¸²ÌPµ øÄíþÄ%ÏÙK:4çX^§&@äæ'áÀ8VÖ9´ê=Ô `ò¥ºð&¢¤LÝe`+Æ´ô@¢ÛÆN)«Ø8þ¥$ÄSS%¢ä`&°Ý ¥@9v²8hcX .ëË]}×ÕªIq¢Uë¢9v²8GòÈ©º.So AMd +¦K6¤¡¤ZJGÛØSíÑ7efUQh"æÎyILÏ¡vÓñ_WòÏäÏ®§vyÒi«*éCKÍtHôeÁ8`Zq&Èáâz4qÀt{m±)lV-¡STB[¢ÇÊJãüªZÂp¼PÍõȪAç1(D"&Õ@¼"É«óo ß +1CUfÆE"u[è,ïÔâL*ÖIÂ謱sÓ5[w¡n[·s I«HÛºIÏZ°e0$±\sÀ4 ùwæ|ÕòXãO:cjëÁüVg³&J +yOâÀª"ÐAHh Ï]hÃ<Im/¼}¸ÑÜD°n¿ÂfSùäi*a¿|òH>? ×�ÍÂIºÐDÇ àOgÕõ^µSpÓÂ3ÖfÂc&46](l0åØä.$"fâ9¶¬M"a×Ò^Çס)0+ÛÛÑT*$8Ôªö*ôz7äÎf¤ÍûÃâ_üZ¥hÆeö+}]qþýrþºý}⥠ü}¢£øÛ÷ÄÙ£À¥}¶W¥Tñ&®Tñ$ð½¦öYjoHÜüØm Ìs mQK>z`|j(©¶ax?Ò¤NC"ÀÄË×�ÿ`´}f¯Ú ÎÊ<梢##ð½må7"йFÆÄL.CÆÄ\NÎjL[¨òóy~`¶Í;¦ùòIxåÆA{Ô¦úWØG± <kÑÃ>+*>åðXư÷Õì¤÷µÖ¦Ü/A fÆé0°^Ðlr3£©4ýS7º !2MZkxTö¿üj¬@%Lгé Ý¥ïÓd@Ô`1>\J*nßëããÿ¾><2øÛ÷zKX£ÊßmQr;^hjçR3zãÈR{¸DºdØ h|ù»çÅúò·@Õ ¾úû>9 :\¹½´+RÛH¼i1§»PÚôì»PÞ20)ÒyW±e~çNdÂËÈuúr^Z£tÖØ;5~ :Ä<t(ªCÜ@!{ú4b@BTû¾GØA¹é]`öEFâè*%££ÀÒ)È2àgìÞ@4Og¨HZ#sݱ¾Ü %ªva.ͯ:Ö¾7[!FÓ7OI@j´5OK#÷/î¼d6´Ço_ñ¤æþÕg³îx=ïöC_¯ì¸} .!!÷¯ÐÛÐ@BBî_vò©jÆ 5÷KjÚKðùå¢n ª_´¦§'¢m¤òâ JQ_Ká$&äþåk§±É½]ý¨R`¦9.î i/:sj/aEK`FøOì£s̤dèîm÷n®ê`ÚC=ÊY{gé)Fy1kdN:!vÚ¿Ð$¦©&¼´&é-aX÷;r)m$Ëï åU;oAè�F)#=PæB%8Ðý¶Qå*Òc }Úåuîè·1LA¥c ;p(ÃlîlÔ#ÉæÎ}ÚÜRUÿÜfeÔzV±ìej½Â¨vhÐß¹2S¤&ÀÜIÛêé÷º¿l§`ì/Û@@ÕðRdàõc Öhb[)¼¢\ýÏ}ÖI.@�"u®î#"Ñ6Sâl¥ôùÆ?oz´ íà\fjìlÁY`¢ÕäõúÛ4GnIcdMTÎÚ»½j:0qÀ¤±NÛø"ÍÖàVº¿7÷nÏ4L'üó4,ï9/AeÎ0²0Å׺ÈÒ>ñH:ÓêôHÄxÉF¦¹{xoºÉ¤øõ»hWßÞD²Õ÷J_°b¹2O³1û!ÅX¶Cû%Àôç9@-1¥Z°$¦8èÌû.P;9ÖI{¹åUFD»À<gÕ:Q§Hlælz"yN*kn«bvH5HTlCUeãPáEgMMxãÖÈlLÓ¼kS§wÊ|Ýû[·Áûæä +:sº¥3ÊÜiº¨ÉB°_ºÍ½1Ðt'º¼2+jdNíìÁ>>ï=~ø*OÏùwÑíJgZAʬwAO LhT¥¡·ldò¶ë º{.§£m :ï *·dõ÷Äë}èïÆkÉêï¥<¼Nªd% @wE+ÐO4a[7±Ý`ìZTJ4NdÐíÒ.°°5RÅÉ)í,aZwoU¦Ð½vTd9vWBà¦m!e¦¦mE=w®Ý°UY¡ÀÄ R¥öVd ÔûÄ:kèàL¤IÄc[Þ w$ãºnæDfélã$ÐIf"kzîB Éɵ"À�$¹±úå+Ê{¹óF» t>+3¿3&yx´ö|¶«ïÃÓLïH\¹ÈZõ©Ä0AUf@âK$o²ÀR^«¿gNlòjô6yõ÷úóZxûÈ¿H·{F$y°ãlfEG*eL=èK Ð \pÕB$ ¶ÛïO»ZÎ{2,¬æIJ'¨ÈÄÄ5©ª8ànÛkÈh)å µ|80",(~hüMÂBAXôÉÂB»À ,é¿lãpdûh íØt»ÐAX(01+æw~]¦ ÂU×hq'ÂÞ¼ÐlFæûÅ6æÀñsß<[wáÇp0ÎãmçWy¼}Ú%#y¼ê{â'9·WßålK)ÄòÍ¿ï¢CÕ÷ °¶-íâé..¯xD îñD¶&Èäñ$¸0DÊ*!¶uд¢]`òIeJfæ¨Ú 63SUéf 4gb`¢s¨í,·CëxpNújß©U%$yÚ'2³öªÊQ@rÕU4¡2j#ÛK²Hsh¹Ú¼±¥3¡9-As`^2GAå²¶"�îG:÷Å:×Þ¹îTz3ÍBXQpa¶aE0íJFZaN¢UgGÚ_·ÝÊ Ó^ c94®Å«Vß3ävgð÷;©À�0O+K.q 9ærm©LFúÚe EDtÞèÎ>y±ç"''ÿ�Q(%@æéÄÉàéÆU µª +Bìä"1So+!cb|d@¼PµN�Ód}%#û8NFòÛP¿ò=òÉÊHèQºFGéÜXC¢7ÇgÖþhþ^7 zSE¢Â5Â}d*ÚGâ9yßiäØ;@õ¥GØxA.MÌÐL1²D$§&§ vaÎÜC/Ù4ÇÎ<^®ëXc;XBÛv6)rIgÞþ>qe~Rý=¸2ïÀD8`kÅ©ïiÐÂÄwÊ @L'¶n'¶JÃKoûJBÓ.Ä�-©lÔBáO¯ ð87!êÝ6Þd@ ý2 È.ÄÜ|FDµ¿ cbÉÊ6nmR×8â S-0Ó¤'?èä3=Pe*TÔyHéR8² N2¹õ§5vÊã»Ø*ÉÈQpí`<$æÄ4CÄÌv7;U`0 æè,wÞ°ê´°Î*§ØÁ©Ðõªx ólçî½o®ÝªóÎ +Wm¥ôaÿ|0ïê?ø¯þ¾ªÏ¼d3àz¬~BÇêÅ£N¶V¹õ6p .hQ.ý3G*È2W¤EÊ2`Pæ¢AeK¤% +ÊT: ÙðR1åVc8 ª +%!kRåc yU-¡S!úÁRÛy#@¤K!ÏÈ:(ÓY}º@0ù8`�CnÈ«Ë3D#mlà¡? EVæ9¨àUª +8¦³u$äã9¨}ÀÖ÷3H1ýÒÅ´à%°YÃAyk>¡ðºÅ+Cd +Lukh#ÕìT¡}¿Q*Fº=j9±ì3}éA,çxQ¥éø-Û óÌ'Øö¾)õDâÍö*×ï}"LY%GpúÆ2íaê[õP«Tpéi)ïÓõ=Ë÷Iõ}§©À¤l}³²Ô`*wa:ÆÔÉê:´DÃ»ÑØ«äO5ÜàÉ÷÷Ã7ØÌY¡î1ªÙMΦùpójì"eZýþ¬ðwÔìE)LìÑ)ŪµEýRkz#À<U&Õé¨ÊÀ¨¹UwïD,·Rp#@×)ÝB;¾¹-Ò^ç;=çÚb0Q@áJîêô S( + ð +ÔÜ8`Î.3ñÄù-#ÌE¢(£]aÊóÜ&°BM$Îo+4&bè +õy5éq Äh#³ña*ÉíÖß-U |¯ÂI¥%ªèÀ¼TQEoË¢³ñy3Iï×Ð]Xµ&@4q8´Ê"³#jB"`JeÑg$³ZTÏ¿-·¡1ãöã5)!0KAR«Ðj[ä RU©Ap0NîÖøj[»¨Ìüp¦ZP»ÓTÎÓº§ fÁO*3ñ&¶N@ê2SªEWª¨uozå¤TÕî. :r ÃJQspJQK(iÅòxÄñD'2NlÌ¡Tó;àËc07M`Z¢23Xy (KïÕ.hõj2^©¯Û`>^ü¯?¹Øòûß»am¿Ëÿºüúï¿ëÃsvç~QqDËõ'_ÇÏ-úªvóeYÒ³é;Íí¢lnuù�¶B@s_qp¥ ãNAsnH?iùJ/nRH_tG#Aé +f»A£ReââGr<·._<¯½Ô5çü¤£�VQ$éñ^hÚ:ÊÃsw +ÂK¡ {YEñr£4Z(@TÊ*CÒ4{½°´êì¢Í\äÝV¡±nc_|uÊyP(Ýw +U9Ê~V +ë¤d§F!ÀU{Úç^4}ý^d�½*î<x)2kµ/¤.«ð^ç«;ÖK'¿å AaeÁCÿ k¨=�ù÷w}Ðx¹Â±í{£n/ÀEP»©ÊU +Rèo§múYim}(ÏtÚ£ÿU<Ú¶Feè£w +ËtY÷F©O ÉÞvSaI®oqÔU³`ðrBa6Kò¤pFrèP$|õôRI¤Ùpyyè`ïzïÚv@YB¨tÓ9.«o7â s0!RìÍi¢ ]@Tβ=«Ò&UZ¾ð MmöU7\î +©Éa ¬CJFq.<-<D("\ÉÐÿ:yÌ:^ïæÝêÕÄé¬K]WÇoÑIÒÿÊ}ìõI*!ö)¹~q ÉMUÎW~¦Oªâ"¤@(d£ð\xÕ+¯ÞÝ)hz¿%ïPb _Fqæ>D«9÷¡$§fÀ»TMA÷à^Yh×2ã$gÍnÊ ®jkT¥rõég-%^BaýT)Ë6ϼC<OhµÚUäeßMAq¦ÝÜ}ÜQáêO¼\ûX¦ÞíB×´wf.VF5óÒÆ{_ñÛååVcÇKרHkO²Ú<¥NvÎüP'U¸¾Ø¥oëÆæÖB²0â<ur5EÎ?êâfÂ_}èCÎ:ënïEÃÃè3þ~õ´¬ö^¬îí^¬Ê½hkõ +÷Bå£äÌ?¿ð0ûnÊßY[nf5ÞHQ±ãòÜJ9ó»e7[°9NÛ·{*�üqºí# uÞiß×kPú0ùÉCMAã +rä¿Q`P}9Ý(ènMâ{åø-c¦$ n<è0ùÁ4äÝxÐgê÷R¶ì I<a8wgÝ^t:6·³óâúÿüV%ghÚ*³(Ó[ ÊäB\ËfhÜaÜyÕñÐÞÌ%½ÜLvc¨¹XÃÛE¬«j \æ£íÇK¡®«þ¢5y>¯3UÙ6û¡@mÚÓDü¹©.Ò×2 Òÿ}íR¤2ì+ñÕTç¹&DÈQuLÕ}B3ÛB9¤AU]EµöëREqm¥£,*ïÛûX:Ó Ä³ÜGU§I½9ÆráíMb#!¶9(df·:³%-º.ÓýÆ»õD?¿³¦}*AP8¦5Ŭ¨QçÚJ©ñȧµ0O/0#%d´DûB,ݦÐtÈ ´C¼jèÒØ¬«CBÔLôúª4¥w%Ñ2#8Ø|ß¿Ü�ÖÒ¼VÛú>Ûä¡WÔ÷D%¬.E@ÖS +:sjïC@haÄM² ïNh3SÇm3lÃî->>²ÁðÂË5סË@x>Ò¶3yoD{Bç(]Ý!Am´Xªk)¸çXdÔ'i=þy§ ïIº0s%HbÝ ëÐO eJÐ~`ÈQ*d¨ÎÄJÊöFØ E'öVÄ{äÛ±fA´ë=dãh8-×FÚF£D^S@<<2M9FTrwëñw¾¶RߨΦÛÇÝ3qüÐ=ò Qhs ÈÝj±¼¥8ZB[6äþÎ ²{kPy~k{Mò°hjÌ W§d³õ7®+³ÏÖß6l EÀÕ½ÉÁA@¼Î¢:ØZC�Y1È>kmZT +ëKJ1¾´×U¤XD¦§wAn¾íE]8-* +C +ª0 MbTM@oQ¡Ô�×B`1eäÒÀæóê$Eg³¨0CPu¡÷b8e^ÌÎY©a9/Ònê¼è}X ÃìÂEúᱸ0ës,åy7}fÞq )1<ÿU,¥u)æoè»jô±P(¥u5UÝ`gäçìc^ÁÎÐ+0èýí> +ø®8�/öv(@)êg;ÄywbºDuÞ½M ë¹ [óüηÆÅ¿ôqÉ/}k¼Â +ùòäèàhKrsÔh'÷=¥Ë-|Ðë]ab»©Vzþ«ä#ðLÏzüf+"q°k#�|D&A\%]©ïö!FJ®Í1µ! ß}o'>t¯G©ï�ó¸ÔôO×ÙÆi\êU*RË@âB*Û!gLJv§â�äKÇyïÁ>vM9ÖkЧùBFÀPäNE²aARd8Ôkå Nh Lª³4©T9jÞÞ|d@dkT$ýë+e]-÷KÛÝMDGûHC,ï¡ÍÒ©µk¾Ú×ô51éö±ó^TªØÁ¼ÈEGg¾xBè/øcF2 ²:1ë@Þ p/VY1á0® Ú£¾ð)MÞ±&UÀzñÒbò0ÆëAÂo¸öÞE0põrJF¯$Gi ñ)BsÐW¦ÞE§ g'²¤R[½ÅwµÕÞó^í¨+ëÅ©1HF¦Zqò +ó¯ÀTÌ"<ɧTáñB«õôá1Ùú7"-ÓKEZJÆI^·ÚR¥Á±æÜeÎmõ>ñJ×V¹ ØBîBE"R©²r´ûWók4_/°:XBkèôK1B! +zÐ!ðt(° + ¨/ûºÀj¥º·s¤À"½T &Æ¥8¢aM+DÀTÁ±}jYuñ½²äoÕ¤4A!êýz* d#¿ÞÆyî¥S¼ +£ÛØ! »ðM�\ÙtÀ.dÉCc òÓú$=F¹ +£nu\½]ÞFïǯÂh^F×ýcRà^�îÜêXPè³0^Bx×X©Iö�U8`!³WÉ`6/A²Ã!v¤ª(p¹&@Ü3Há_MÀ©ÍIîB0h±{nW³m¬ÛË@µ¡Gi÷sFdDsóÕhb0#Ó7½ê póû(½«Õ±#LZ3.fe.pwY¡Eðrx¢\yY5éÂË]n_¢Kss½D/¢Æ ÏÈ%¯bpË}SµªBgÏÔ®Bd^nM*Aà-ÎJJ5ÆËÓÚÅËm xyï¯í@þÜ +é à.~yòÆÌªÄ¦±Kò` b²õ2bÄj¤ +Ø]LyFK ê9$6ÕK`3âÈíJ.ȬÊzÐNÑ/HL^BSM© ö*MìHïôàJOWKxúÄvjÖAsV½~$vÀK7 +î>1Æ©ï"hͶ8ÅSâb¼9 ¥Ð¯& ôªç4¢`ê³¢Ï2½&�2j§kZÝqÛG}fTîÜì° æYd Åç²6+\QQ2¡%!gõ6>ÛËÛÌ»OÙ¹wîN +hvDz f7)Ef>«¤ÐÉ9ø¤�â²%"UJPÓg)_>¸sáuBlXì4s3JxË%¼-S7¼uÚ" @µE¯Å¹-âcMÖ¦æõ- ñðØñ*åâíîU© Y¢ M+r +LW3óDW³[Uú<lhÑ£�ÅLò«Õ¯IWórTd"t~AáIu®ËÔF±AÁáéÛejû´³Wej1ë$qã¸ñÔÕ¡d¤nÐ8PÈ#P.îv¶ÎÒqã@_#w7Ì0¡Y%¶,èSm(Áç@07"£H+äh¢-5vP¹QiëØ9°ÕÅáïö%8¤HLGA!:AèÄ 5wQiPÓ¡"ÕÖue42ÇΩ&¢H¬Ì|·+¬sIÐ?¿2ÈȤTÏ.ÄÏË ¾ø3;"OÚo_aä°¦f3y÷Nni+ñªàÖæ m`:J96¥òd´96% MJPÄ.$VòðÏÆ[ððÏÆ[péKÙ9xÕR/êKYо8 úRàà©H¼>£%0}) î.óúRÊôP" ÜF¨Y2|(¡%}ÚFfFøîtÔFî£H¦;ìèJ:CãÝZÚ¤±Å ÛÐô´¢¤ *ãepèÈÛ¥ éêõ +AÛÙÊÁ-Go5ç8CÿjäzÉä0jM$.ÝüÒ¬f +Ú¦{Xé;#ðª%¶=òHú[Ci7CTK!ü7ë´µô y- ~5â;AExåàkéÚ·øÓdÁUÌEr0@ݨ[jê +'í×&íß0#ÞÊ ëdÐ>ò,%)ºçÄLGÌgõïd°§¦_q§lå@ .ZÓuê Dz^ n²éydÎTjzQ)R{ Á¿\tiLz¾4dÐó¹¨ÐºéÑU +Í>ñÂÊfU*}v1ûç¹´«Å²Çi ¨;½ÎW% +/[%JµÌ´½ì#31Iç×ÛíË£¦}Y&¦wA&4©ÖÅ÷qbÙjÖ@$Çî-n9HdÙ½]h§4%Sq JiJõu@%Hd©Àt8Ä?Ù¾&ðôëâk¸LýwBK Iª·Ô!ôÑÄ·QK5¦ÉM^£íc§I¸,»rÛû9Þà÷b;ß#0ý3àÔe¯Ã]à»Ð 2#G ð7U$òó!½sjW1ÊÀ©uF"EPõT¯Ã̾2!¿Õg"§ÓÀ6<O¿tOêÀeZÔ²$·K'·±).ºð:údM2¢ÔäI-slJSxö©OïbÌH5äPpcàuPq8#u:éq3H)?DUxí9 W% +z0Ú%d.3uU r@(D»W ö´X/¼6¯dîÔ^±Ù«�èzrÀÀeÙ �S|}+ÈÞ2 +dÀÌ2(XUê,7lXu^Ñ3S)ÒpìÔMúäûáhïªàV5íaý¬áSÉáVÎu µÄ tî¿ f' Âj¦p®âj;(Pȧ$o4@åï±Õ«ùùÒßucAwctѯPtu·ó YªZ¶M<ÄÜWGþ±Õ<¬ºÄØIaÖ©C»s³¼x7Ì`*'ØOï,óªd7[æ>vöe¥ï,SîìY^ö}a9¾´Ì¼¼µÌò<ÙË\° Ë\ý[Ë\±J¹®fu¸'E®jåÕã·4å"ïÍðÓÀ àÖîAõ&ìí4TE~?=Êf±fEøü%I?i¢Ë"üúr!¾]Gn`Ô!æK«»¯Õ ßI3ãÀëDRÉá*ô{vʶ¨ÌýZsOÁ©X¦àÔèKÇöA¸§¾ Ù¶kÍ&D[µ¤ëKèi2" ï=ÛçjDCî ¹+Ô&ý¶}U·¶¡3*[ÚÀ~îûÖqÅL¥TÅZÓ$ ®µâ*IÁF4ÝZA¼[ù_G¾KP¨ZB'¿¨ÜZ§âº5¦tyçÖâ + èÝZ ½[»àÕ%)â3»µ«ÒêÖÑÚ2÷ÑV;m·hJ(@WWòvS [)¨q ÃâÖ´Éo,ئÍKßNÍ~¾ØU1R áY£ÞIÿBÙÛ�¹,ÒÔK`Ff´ª,¾XÐÌ\f¶Êàà²~Øúô'¸Dþ@ôé;³1RÇWo#S,TA¬qÀö¨2õ¶Ô:A*k!¥ÁÉ¿3= +36é¼j§X"!ÂÌüGÑ$è'erî¨ KL¼õ29)ô'NÇ]Q,!ÔfO´`a§¢ëÙ+°v*Ör«J;`M\ÚKð0¸ðÏ©Ã[ +HLKfÔ¹öÎ »P +ó kB^I]8%¼É¹+0gn[ÙÕ*sXë%0»ÜCÕ0}låi$Nb.«Ðz XÚNB¬"1Ã¥LyÕíB§´7_Èø*Sâ̶ h Q rê9ufM¸;òÑÒÈT® +ìK(ÆT8ùå6F:½| i"ó¾{çPíÞ@ÔÕÎÕ©ÖICd° +w8xeÚÈd_¢J:MX¨aý;§*hÛàT%·ú22%èTCθ-AÉÁfE¸?A§Ê@?Kr³E°¼2#¨Cª[p÷Τ°×àÖë²v¤BéÔ×èÇ;&ÜEÀVZNmGjÐË©&ÀÆ.£;nK`EK f,@ ÖI.CáPÌì¨âpLÝâBBÓbÆûIemHdY'Ï®v¡+OÁÜ4©¡t)k(K×É^im¬¡ôÉLAÊVÝ*Ú !I&k ¥ þ vÎ Aý7Ê ö#u j(模LgÕ]Xk eÂ*IÔP¢RËáúGûiw AA÷Éê`åq[ì>Öw`!®(F0÷ +Ï8Ù®�Îç öhejMP©8 ö¤0cd:]/!Û ýë] Æy¸%\®ÕºlAU+&tÔæ !@$RÒA÷6^]ÈÑI$5¦Â'0väXÐ.¸rý5bº²äµjlØTÐ×ËIWßÞ÷ª«o'`j®¾:DfÄ1ÏeAzÀÜw,PWÁl<E®:[ètÔÿPÂîÛÙm7iÜ;E:d9c<&Õ.tnR$¢,$ ] æö! Ñ,Ïà¿'P0ØAdÈV¡_g¦dCk" +K°KÒ7°¶ÁMÏ»Pá>Ú¼êSg´hýÃ:W®<GããeòÙ³'ìS°éWk#5?©t/G O¼Ü)(G¨ÄEÔíB�B«Ì �î/ºìxËdfãÃWmMEÉpJmÍl| øª©@< X:dì2HêIÈ5KÓa.ûK(Mo7Äk¤GªLÌ2{ä1Þ6ïÂj¢dûg-tð64gfÔ·¨²áYÛo'´Ä.nAK`JÉá.è½²¼û~ã(§æ]"ÄoÎãdHk&äש;È36Ú3×Ùs§Ü½;E¦¸rÀ<é(SzUiÕ/´m MÒ6h,©<K; +7afhÌÔ;÷§]pWEyDò1l0 +ÑÊ,èµwm NSêò!/fzï,Q<m,©]Éo§ê H&;§Iz;ÑÏXJiJ ¯©~ÏȬQÛ5jÔö o½ákDGÁ¶xèj/ÏåìÑëðwvôôs2Ñ}ºDsݾ+REgMpÑnº4ÑÖÖï^ +1:$DÂeÔÛÍKhgØÃ4QõãÜ,DËf!JÕä@:mСè¯àw´l¢`UäP¤8ýº`U¯Aì¢ØÆ<p$"uj9 +,Un#!2½-«ZvV(11x]ÛV=¸ÛÖ]Wen2 ^÷ó;MÜÛFM´ýÒ¤¨ÓN5Èà�8ôtJÉuÛÐÛ³ +(kÑ7ÿÞ+wl§¯G×µçN~=�Ì|äPûÏvж¿ØªácB2 ªá%ºÖ2 ¦ÌZ1edF»@\ØÉ3·%ègC\éñØj{\>P¤áP¹~¨Ü�SÑ.0¥èë;M¼j9ØÁû+ÐDjHOï!dMT5ÜGbHH@ÛÀíÆøÎ§É3fvµ5IÒãMjæsöìîßmÇ®<©ØI'Æ`}o<C=`LG^91¬Þ*Áëp ¤(Å(VUÞǬ¼Rå+=nõªòãh;p[vá� ½n:xÛ!)k06éÞU½mÖ¤^jRD±üÒ)&¥S>º~T¥\F¼ªø¯j� Ô¬@4"©â,¡Øu�SP3#öW M¨ñRéX³@TñKlª¥HHIóK¨m¿é2³¤vz`¼dÀä¥Ã*D+hÖ«vz`¸ 9àM7{51³ÜFbÔK�}S$}ÉîUL²q`º½¾ÔB$fÅdèPr2BÚYðhüRL2ÐvaÔU¸°[Ñ.צûãÔä³íAa¸ê_SB/ ½"Dg(Ĩê]]ïz%çúu³"©e ,9;ÜV$D¢lY̹& ïªG´e!Lµ)ä@SðIèÛøMà ;�#ªÐämèÉ»&^äg¤Ä³ïûh `ú)§Q)j[ jüúÎ\£àþ 0tyÛHÄ ¤ÓĶÓòRó[!ÎHªÃ³à�8`ÚdLbXnn½3Í©K'õ@_åxÍQst£¤ãs:IµfX=®Y`Õ¤Ë'Eã°«ÜÔ@áó.jÍÖ"É`V¤;Õ¤0ÃEè»ö¬Rý°± õÃjR:ÅÜlVsµä ²Y©?©½Âd.\õ�ÑTü©_M0ê6ËJÜ{MƲ«rv2\Wñ±Jìªè*11«dÐ^Âvá¹Î`U%ÄñU</rK la 0f1 ß,1Ø@Ädö&hrwÐ#1¹Å Ú Î`¨Ä\rð ÐyàNçP:jÎîÎGS>2°eöNôòdI-çãËöâ¤H4^!¬åÂlVèÓÀe0ý` íþ"ÉFLÆ2ò«òÕê¯È§Øi¬E,hÒ6±Çé¼õKx¦k6o}fÓ A©F}:BØ3è²Ü¤CkâßLñ«µÚ¯nø7Süj¬O<÷NÀx>%)»5DoÍ~¾_Wø¥_äÕÎñιñ{ LADÖ ±3Uá³¶#GAË·] +"Jd±/¡ÌP¶/aEÆDLf°{3&âÕE´a¸¬² áM¼ÙìÞ¶Q?_òÜ#!vå:EjË B¹h%$¯òHíT}©í1Ç:l{ûU\¡ +öm,¯vU^Õ.4Óuo¡ +ºÐÖ!�=¾=¹-êØôHÌsÒÐ#1ÏIhD{Q(eYmO]¤rüÙB©BðÌYªNH}(Ãd1ôª.h¥/U§7R-ÅÃ~±V+Ñ7ÄL2³^qòªÓúg(7°#!vjB²Uå%÷M>/¶§Ìd¨À:"´O]Ë|í£mÞ +U8y +X^¬EbÜGfª³Êà3Ãì=ËsØõ(°4yXîrI/«N .IªNj °8 ^Ã�!¤A,@ipÊoU9¿UååehºÀrM¸äXá6>´â 9yJf9¿ôëRbÖ¤ä ·°CPê7{Ö¸ ý:ñ< ]«W¼®Ù«J! }ÚFbÚ U7ÇÐUÅ6Påü½ä?,¯ªÉ6T,<9´[¡â),ÈÀ¬Öôn;X=¡â·ò8Þý½©0ïlJ÷îf"n Äî +yoEKPÝKý1\Þ÷b¯ÔDæ%iwi¢íæ·<lgVå+±kUe©b©rg�´F§"½"="Kóf ötªD-¾¼'göWb·&@£Ì/ýÌ0û'`7¦å?X_øãþ}T:yYè 9 BsJÑH*&Ìû(PÙ3¡ÒÍ?RÅq^µFYL3¾Nm¼^fÕÞ@M¨¹cVËáUÞbóûø&îðZ8m¬8 +n'Ûx°]Ö@= Ôpi© 0Ó9dzÖh:hyAR$ÖPêãnR$ưIfÖ¬I{©Ie6¥]dW7hÊÌâÒ|ëSê^´t[ªÐB¤5åÖ±^rR¦äÖ#UdJn}V)Âp�ØÞþ¸U[Ém»@ÜF$ªä6Ae&ðr2;ærðÍÑMê` L?ëdл¹¦~y"tjÌáBìV!JG9ØHaЮÓÙs�"Ø"1#ļÎ:ó»¼Õ) +Z(ÀwÁ*Qt`µS4ÞbÓÆGõrAü`¼²å¸ÚôàÊn×2ß` cÄÏQj9Ê6Ö2ÐßÔÈëÍ5Ì{7¡§¼±À×@@ô¢2-ÇÀAAüù#E[£âu¸hà8ÐåâªHÜ OÈT±M~g2AÌlWáó@Ú#|©á±{êÙ¢øtWų;CµvR/" ¿ÊÄÄôN¯bc>¤À§0sRJ} efÐH¼F.¥!×Ùc§ðØ¿óÒ¥wáVdLMÍ8`pÖ¶A»Ø¥-nÐ¥< ØióóH$¿2 Ô¤ÀjLW1é]pyà;Gb88KYöE%Äv|À°VÎ}Ü g ^®X`p¤Øy$Gï/6Ñ%%ìõ},Ó)o!f´g] òÁ:x;«ØA»N¥HûúR$4YxVx`OÒS~gW9É`Æ}5DÕ®Ä6«"]Õ %´sÃe{Í/uYZÜ4È ·FºÜ«óª½HAh'È-nõ0'èÔìrFÛÀ\öHñs½ÄetjÌeÏ2¿ÜG)iáCLÄûÈ wÙÓìaßKZóï5z=ìê鸦duï5Ô8æNA 4h¢ôz5&]ÕÓVEáÌ ï7¡ wã¢rjmE²ÝJÌ¥KOÅØÏO©5ÃTýØ"Äk*ÆFÀÖk(S1ª%0XS6+¬)µÏÚ îy½H6 \NÇXÇ�3åó»ÛlS>¯?§|^Ù@¡¬¢Ì®¢9ås¤âd2NùÜ'É«¶)q +pD;~úzWýÏ+M}ãA?åsF·Ão.Ê6åsDmPHf¥èídÚu¶Sîo`ft ïD½n·ª\|ü{´º'«T9LÏ8.&ç9ä=Y£ÔgÈØÍKRâ.èsVê³^®=a'x÷þål÷]`P0ÌFèJ¯ú¹¦ZpëÔ¯ðéWÈbtqy�wD ¹tK"«<\:÷ñ-¨Båd,{¼îã'cÙã &c©¼ kPe¹G¶À$¦¦Ï.ØbÓ´¨¶±ât*MWðòz JHÁ(:Ô©àÀ{ O#¶!êt¹³f+74PÅÊ VsIÅA§7¾mò¨]¤w2üí³Ð4¥å] 5-´âUBìÌ8+÷>Ól8+NW³35 È+2ún¶ê²d8¡*2ãØVDÇ÷ý¬ö|Õ$XíùÆ7I"Mb®¢^wk¿:¦Ós¢«?tÒç ^K ´¥°cçÀøF ³rPÔ '¸ö%xÍvKa B #LÃâQå5«4±Ãµ6T^mcÕÊÀm¸^GÛHáudÎÎ+#!vG D)9Wîetêtn½¶Q`!Be³[¢Ù©F¥K¶Q ·Î=W¨H\_¡v7$D¦zvÄ´»AË|§S¤6Jó:Uît«+ÁÊh LACÔmc» !.ªÀÒéVÆD4¤O`±åó+/t `åóàXp(ü,gì¸T¯+ tK"cÛ>MØjÚG(·] ¶1#OÚwyA2ÐU4Õ³IµÃal5Ì=MInT¹ý4D�Q÷é-PçwB+x³%7mPåOõìÕ5¥Ý-ÌÇ¡[íÆPÞ¸¸Éyã"¾bZßùõªüA³frªO!ïþÄÒ½Zsð¼në M¸,¯ÈJO¤TBfsÐS"*·Þ©|Ez ꬬ١ÒtV|P§uoÛ¨KeIVQ_!b5¦CÞ¨¸Qxb´'Î +ÖÌÉf W^6+«.¨u5s]BÌ3Cî×fuÞ@�ËFæ~p{ÖÏû5` §³ß³û¥Ëßu~QG2èäUܲ`Íl,pÔ¦ÂYuY@!êN=g^5^ưFO~Ò¥ôÆA«9§ÞJlH±3ʬÜTB z<4'eKÃ�p#õ½%RîivÌ2Áì¯Ôì@Ç©YÞ ïÂØBt Îf.A2 ÒÓÆWæoUårx,Õø#¯ØAÜ:=èdVW$láÌ[èÀUÈÑ& }ó�2òiDoòºØ4ÌÐÒIÏï)E¤ÊTrBE¦BgLÃ:ƹÝ9výA7·û$@ùØñö¡Hól»riX/!Õè£ò|ñ×°;»n£ÚM/eÐ6*«Gѯ¶9ÚPÌ.¾-dæÐôä¡0IefÖ¨Ú à2 nà§èËÛâ +UÖØÁÊÈKlUÖ_2ì`[ØòãKûæz hÙË{«_ÍÓù)½Qµ.3{zùc2v~ÆË)ñÊ*¾¼ósfvJ2Z;?³è£7v~..iòÊPÎÏó@t~î÷×{FhÎÖÎÏ/ïhëü¼ª:J] Cxy úG¢ó3F`£SMÿxþq8Ù6dò(FtÎt꯾öO4±-Ä2(r$ÄÎá#[ãäíì°'f¸ÓËçìp,¡"`ª°ÐÁþ°Ô Ôu!ûÀbW]ÈFà]]H½C]H½L]HTqÐOW]H-¦.dVíB§º8ª.)s_~Þ0ò (tPg;©z¤HDÓ ý³õ8Édz L16ø4)ÖyN6TEâ â8Ã}d¦ ¯ïì9f´TÏ¢Ù«~Z0%JK©®IDI^é»É@_¢tÕ0[ °G!°ª�Ài>�!¹½$]ðÜIC[ÐD×sg÷æãà´Y¥é*ý*±¢,!<BYíÖSé4¸åv|#ÇþP eÉ6nl(K¶qG&%µìâ.~OSz°-ás¿yîTlaãÄT®'/nÔK Êõ®~¿ZÞÔ�ÓÊxí4µ$cjüw#Eê M³1³ÊÚ±q0XwNc¬jÝè 925ºm¾7rImVtÜ8`&#Udö1Bèýz:¿Þ�8 NM îó"õKtU5Qܦº¨¾¹$fþ/®LUIxé$DæÚIîîx·,>V$"#(Mм-\péöDb×CD,! <¶KÐ;ø"õ¦6ô²Z8@ìö"!KdÄ7ü�b·¿b1¦«ªd#`KJwµ"pqWcä}»æEl¸Lb8«dÐÉëúÛ(èæmÏ&¶wAÐv½UE ×Ñ»ÐÎDMù<8îC{-Ý�{QÈqtÝѦFôº]è@ )( &vfÙé¬qÖyrCë¼9&ö1}e Y±20ÈêÒbÏibF^Ár×5P¤á,»¢|A0KXV~k+²Æ'í)l3 ͽ\® ]ÞYUYÊ0Ê#uÀ6Z4!J#ÎL2Êî&âÌ$ù+>H_.ÍvfJPøÇ:ÜÞTÿ ++×Xy¯ñVÞ¼ÃÊÕ,X¹âzÛ."!elSMÂ^�¹p¬90L¢(R[¥_q ʼ0Ò&'9ZD*lÖHDgwn¤¼ò¬A+#UfðA@2 Ú&2)êv¡C�qÀ¼§Î÷´Ý¶øÌô~÷ßþûå~ýîï~³ýo¶ï·ÿ»þßýi§í×jÊÛÿæoý»ÿò¿þø÷óûø×ßÿå¯ÿúÿê×?ýË?þíÿýßÿí¯ÿùÿ~ý×ÿþç¿ÿãýõ¿û¿þ÷¿þêç×ÿûßÿ¯ßÿËýů?üùÏÿô¿ýí¿ýÛ¿ýüùÿ¯?ÿðû?ÿö¯]ÿî_þÇ?üßþÓ¿îßýüáÏúã¿ÿõ»ÿýÿô»»ÿ£Ö·8 +endstream +endobj +8 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 453 0 R +/Name /Im1 +/Width 56 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÍÎÁ À Ðâ(ÖQ2Ǥ¿úc¡B/½U¤àØ+~G¿5hªeÔ£G`¢p±´¯,ßçÌ{=Ö¦8"³p¼ÂCäp3« +endstream +endobj +9 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 454 0 R +/Name /Im2 +/Width 40 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃTùÿBDÔÿ@¢ñø{ðûßÿþÿù"*òìÿ ù?Ø0��}«@O +endstream +endobj +10 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 455 0 R +/Name /Im3 +/Width 48 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x½Î!À ÑÙ¬@ös¢àj=R=ÙϦ +Q]óì.Ó¢éNT³k¨\Ârèö¯åí*òôC]ªSv +endstream +endobj +11 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 456 0 R +/Name /Im4 +/Width 48 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿGýÿ?ÿ1HæÿüL6È¿ò�dÿó�¨ìÿ +0iÇþHÊÿÿ$Ùÿ?``r�] +endstream +endobj +12 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 457 0 R +/Name /Im5 +/Width 24 +/Height 56 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃbþÇ@-Äþ¡ 1�nÀüýÿùè(*��L9q +endstream +endobj +13 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 458 0 R +/Name /Im6 +/Width 48 +/Height 52 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x± 0E¢ ÃDÜ(^,½AVb@Iaqùg¤(E4Oß=? yÜ/ݽ:¥atwR;Ó ÆøÅû´Hr+Ö1Ù:Ë'I<Û8A[¼ÆªDXíûYFXc)j^N*RªU ¹ér5+²Oþc~»6<¹3WùÅø'ú÷FÏ>j¼5uÜ +endstream +endobj +14 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 459 0 R +/Name /Im7 +/Width 72 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xeѱ Ã0CÑT¨ÔEk%H!o¼AVðq©Â#ÇÂHqÀ«~Á3Ëf¸£uÞc5ð($!E¨hAø +"áMdd¢u8Ú!tv"`#¢°`Dz8NìÂFD¬DÂBdá\&ZwÀñá¯v¬D=Ýs,×ã.ìÄ~t +endstream +endobj +15 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 460 0 R +/Name /Im8 +/Width 40 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xα À DÑCÁ£0Æ(@I8'R¤Ti^gßGd 7JÜe@»vÈÈÆtJCZ/4ö_>·Ù¸ú¯%Ûm^à-(\OßUz�GO +endstream +endobj +16 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 461 0 R +/Name /Im9 +/Width 48 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xµÎ1 +0À )Ræ yOOüàrë ÚØ^1Åܼyt%¹²8:²]bA2¤±ÝÃ-?ù¼÷ê±¶ë}rÇdn2qZiþ0Tù"2s© +endstream +endobj +17 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 462 0 R +/Name /Im10 +/Width 40 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmα @EÑël`¸%P +¥íF)ðCG|:cð ð Õ« Fí,5v`sÝèÑ´0,7#Ñl¼Ô?Tù!è7Ú°ÄÂüÊðÙ/;h;~QÓ-½æ¥ÐµàÕÔLs +endstream +endobj +18 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 463 0 R +/Name /Im11 +/Width 32 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-ͱ DÑïR¥Ð£F)WÂ0¬§cð¿kÕ¹µÔd¥ÝÉ'Ûk>Cìy,"õ*qi'&QÀb³ù;Hv?¥¯}7¸ÌîI +endstream +endobj +19 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 464 0 R +/Name /Im12 +/Width 32 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`þÃÀ ÿ¡þÃÿöÿ0þg|Àüñó?|Rüÿÿÿ0,ÄìPqF fá:(¶CÃr�¶@_ +endstream +endobj +20 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 465 0 R +/Name /Im13 +/Width 48 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿGýÿ?ÿ1HæÿüL6 Àj�1ÿ«�vì¤üÿ@ýÿ ÿ@$Pdÿq`�p§qÀ +endstream +endobj +21 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 466 0 R +/Name /Im14 +/Width 64 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuα 0á³(\zxk¥ÑQfo/ïì¶H®ùª~/ä8Ì xÒ³:ªK¬Nª~ð !k¨£{ãZÑÕ¢1ÀQ£^T{(ÔÔzæ<1xaÉ9«:å<1ð¦èrVãV´³Ô£8ÌQßEó¹z¥I½%çî{}øÛ{-s¾ZÄ{ + +endstream +endobj +22 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 467 0 R +/Name /Im15 +/Width 24 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÇbþÇ0û?ÿHá�ó¦Bý +endstream +endobj +23 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 468 0 R +/Name /Im16 +/Width 48 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x¥Ð± 0@G.(!£0Z<GÉ)]Dy>tÐ\eû_BD°¨C~»iÓ&Ø;Px5)ês«ÔÛ£½ÍñÅõÎñH)~¥Ãì~ ³'Ø9hFsöí�q1 +endstream +endobj +24 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 469 0 R +/Name /Im17 +/Width 48 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]ͱ !DÑA@)fwv.eK $81g³¬´:Éz?ËÔÌY©«Qûl*Wù\K4Ñ£üiá8AaaYaò °ÒO¾ímÚµ²õUpý£ÇD¸yyfÔ/PÈïßIÆÆX¹ +endstream +endobj +25 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 470 0 R +/Name /Im18 +/Width 24 +/Height 8 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ;��*ûé +endstream +endobj +26 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 471 0 R +/Name /Im19 +/Width 56 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xб 0ÀGÀ(Fc@Iò$~DHkbûc²õæ!¬HV7'íÎ|8S1àO.S3aÖØ¤ÔsA*13íÁj> ÇýÒÐéGQ~5kAx-WëÔ¯37K6¦²³ +endstream +endobj +27 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 472 0 R +/Name /Im20 +/Width 80 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}ѱ à ÐCl±ÄZR@µè²]ZºP ÿð»|0>éN¯?¢K¡Y8ÐsBÒ$Ey>ËL;&ÙºOÚä³½QH&¢¨Ó EPy)ݧ2GÊV`_j+ä3` E@¿z�õzö_¡ÐXá_ü/®,/UXÑXpÀô +endstream +endobj +28 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 473 0 R +/Name /Im21 +/Width 64 +/Height 56 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xíѱ 0@G)(³,ÈbHd4FaÊÆ¦JXo®xû0@6Õfò²[O@Û\+H;µ*2ª5eTjçª3vîTÎÚñ÷CúzÅ7ícq¡ +endstream +endobj +29 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 474 0 R +/Name /Im22 +/Width 32 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿH¡þÃPÅÿÑü�¸©c + +endstream +endobj +30 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 475 0 R +/Name /Im23 +/Width 40 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xαÀ CÑϹ ¤MÇ(l2£0%EG\²@ר' s {êà× xHtåAle`tQõÊKþúqìå¹Pi"mâvàºjÕÚû&"Ê@Ê +endstream +endobj +31 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 476 0 R +/Name /Im24 +/Width 48 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xeͱ áG((Ù@1º Æ(7Âó.FHô_ù~ Áö¸çéU¦BC'üÑ÷cúi¶Um3ëb÷Õ£ÝsÔÀNax_^¥xÍHv¤÷Ù± +0¼Z5NPú{CB² +endstream +endobj +32 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 477 0 R +/Name /Im25 +/Width 48 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ~üÇ ê?0@Hy0ÉÿD2IF$BÖ`6¤ÃA2:ÿ°�éHv +endstream +endobj +33 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 478 0 R +/Name /Im26 +/Width 72 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÕÌ¡0�Áϼ¤a %$.)-¥¤dÄãA0 �Ü;h [è|C»DÈüFǨhUûê!¶inÌÑF¿a#mÀªìÜYR.=[ +endstream +endobj +34 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 479 0 R +/Name /Im27 +/Width 48 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMϱ@@ág.èÎ8#QR\jP^`îy»|³áþE¼¨YÓV\éfXPGKZýlhwÁêaºPoºËV´I°»é 5#Ô¾¹9Ó® n7Ü©4Òµ¬åóG{ +endstream +endobj +35 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 480 0 R +/Name /Im28 +/Width 32 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨?ÀÀüÿû?ü vò@hÏ ßPÇÀ�ÿ1ð?À ÕôôÌÇøÿÐ|�öx#J +endstream +endobj +36 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 481 0 R +/Name /Im29 +/Width 32 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãcÿÀÀ/ÿ|ÿþüØð`²ð`á?Dàõ@} ýøÐ¼û@sÿ`à?À@þ88 +endstream +endobj +37 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 482 0 R +/Name /Im30 +/Width 32 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨ïÿÃøÿýöõØØà? ÅÁÿH�»0Ô +endstream +endobj +38 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 483 0 R +/Name /Im31 +/Width 32 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ§þÏ(æ?@&|�Å ø|ÿ= >þÿàþDáÿH�Ʀ<E +endstream +endobj +39 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 484 0 R +/Name /Im32 +/Width 16 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿã?ò þC8`g?`ÿ�å°3��Ö!ç +endstream +endobj +40 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 485 0 R +/Name /Im33 +/Width 24 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿá?ñ =øÁÿð}üÿñÏÿ?þÏÿð¿ý��s%"D +endstream +endobj +41 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 486 0 R +/Name /Im34 +/Width 24 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃ0bþÃ@Sôf�_1u +endstream +endobj +42 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 487 0 R +/Name /Im35 +/Width 32 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ§þÏ(æ?@&|�Åxïoø?Ûÿ3üoüÃ��0 +endstream +endobj +43 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 488 0 R +/Name /Im36 +/Width 24 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÇ büQÏPaßP!ÀBþ ÿö ÄüCñã? ªg(°o�!ùüÈý ó{æ?öÿA�Qo" +endstream +endobj +44 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 489 0 R +/Name /Im37 +/Width 32 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xɱ @DÑé`J°¯-#oK[10´80¹à`PÐÐàñ&jjñ Ñi$£eÐFià$GÏÆ~Û\ \ÔYÛõù ½tËø#>.°¾:= +endstream +endobj +45 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 490 0 R +/Name /Im38 +/Width 32 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=ÉÁ @DÑÙP�%P +LK±{ 4?ï2CÁ.%®t¹Ä°_¶IÜÞU HëmÈüÇ' çëðkø"Þ +endstream +endobj +46 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 491 0 R +/Name /Im39 +/Width 16 +/Height 17 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcd`Ãlå,-ø07ð?°´ø(w*�zø +endstream +endobj +47 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 492 0 R +/Name /Im40 +/Width 16 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x3`°`aàc`g`f`n`ÁdÔø ÿê*�ÏÄ +endstream +endobj +48 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 493 0 R +/Name /Im41 +/Width 48 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿCýÿÿHæ?ÿhBþÿÿ¤-ÿ1|�f +endstream +endobj +49 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 494 0 R +/Name /Im42 +/Width 32 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xE̱ ÐO(®ã0²KYÃhr#PRób,^ûb²�GfZ¶e_p2òÅP5,&¶_NæÚF#À ëôòÍEâªbqrw÷(_ +endstream +endobj +50 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 495 0 R +/Name /Im43 +/Width 24 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°c`üßÀüñ�óÇì0Aôÿÿ ÿÌe~ÀÀCH�|*û +endstream +endobj +51 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 496 0 R +/Name /Im44 +/Width 40 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃ8ÁüÁ"äÄÿÿ(X"QÌx�``n@!Øá?õ@GÍB�5>Ø +endstream +endobj +52 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 497 0 R +/Name /Im45 +/Width 24 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãÀ`ÿ¡Æá<5üã?�D5ü¨þÃàc`°o`¨?"|�÷L+Í +endstream +endobj +53 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 498 0 R +/Name /Im46 +/Width 48 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ§þýÿÿH$ÿǫ̈L>`ÿ�'?°ÿ�;Øÿ�É9üçØüïã?$Ûÿ3ÿoøßøá� Kû +endstream +endobj +54 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 499 0 R +/Name /Im47 +/Width 16 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcd`Bæü¤¦Òæÿ¿Jtõ�ÅÓ2 +endstream +endobj +55 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 500 0 R +/Name /Im48 +/Width 40 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÿÿ?`�aÚ6â@B¦HØÔ�zÿêîC"�£ +?· +endstream +endobj +56 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 501 0 R +/Name /Im49 +/Width 24 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÏPFìÈDÿÿCÔöù#1þøÁPÿÿ��dJ-Ó +endstream +endobj +57 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 502 0 R +/Name /Im50 +/Width 32 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨çÿÃøÿýöÿÿÈ7Øo?`Ï ÿ@ÿ#ÔÔÛ1H?uýAý ¹ìû0�ÅÃÿá�²Æ9 +endstream +endobj +58 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 503 0 R +/Name /Im51 +/Width 24 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°?Àøÿûþrò üöìõìuÿÐ0øÇ Auöõvö@ÔP#ßPÃ~ðóÿõ �1o +endstream +endobj +59 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 504 0 R +/Name /Im52 +/Width 40 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃÿÿÿ00?`þ�$~a"äA``P= +ñU/ûÁ¶ y¸3j`N:ìÜÿ �Î#E5 +endstream +endobj +60 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 505 0 R +/Name /Im53 +/Width 24 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÇÀÜØÀÎàÀÇ Ã `à PÃÀPF?Ðÿÿ~0P=°a!9Æ|Ì Ìí�ÜÇê +endstream +endobj +61 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 506 0 R +/Name /Im54 +/Width 32 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿá?ó3åø>0ð;X0ð7È�Åä àÀ uü½@3þÍúoPÀÀÏ�:ÝB +endstream +endobj +62 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 507 0 R +/Name /Im55 +/Width 32 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿ`à Çñ¡åcCó ÌÀ5lXùùáÿ@ÌÀ@lÆì0ذ70Hð10°ÿ``��^ * +endstream +endobj +63 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 508 0 R +/Name /Im56 +/Width 24 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿ~QsûùöÿÝüWnàg��B +endstream +endobj +64 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 509 0 R +/Name /Im57 +/Width 24 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨a`|ÄÀ|¹½¡1Dÿÿ3Èÿgà³a �^ +endstream +endobj +65 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 510 0 R +/Name /Im58 +/Width 48 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿñÿãÿþI~9 òpRÞA¦Áá¿Cà +üìø0��ÅÖA +endstream +endobj +66 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 511 0 R +/Name /Im59 +/Width 32 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿñÿÿ@ÌÏ`Ã@n`yÿ +ÿ +øù0��û¼0 +endstream +endobj +67 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 512 0 R +/Name /Im60 +/Width 24 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÇÀÜÜÀÏø@á CU0Ø�Ñ;L" 2 vÆ@íÿ�D] +endstream +endobj +68 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 513 0 R +/Name /Im61 +/Width 24 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÃPÿ½|ôÿáTÐÜÀÜ~ùøÆÃ>60Ø3��Éà +endstream +endobj +69 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 514 0 R +/Name /Im62 +/Width 24 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¿áÿÿöÌhVüÛ�(G +endstream +endobj +70 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 515 0 R +/Name /Im63 +/Width 16 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿ~Ê <à äg��xqë +endstream +endobj +71 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 516 0 R +/Name /Im64 +/Width 16 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿ~ÂPá?ò3 9{(c��ªëQ +endstream +endobj +72 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 517 0 R +/Name /Im65 +/Width 24 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÏÀÎx@¡ÀÁ¢Aæ2*`3`°`øÁÿÿÿÿòÿ,àq>9öææ5ÌPD¹I½¯ñG"�Ý/ +endstream +endobj +73 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 518 0 R +/Name /Im66 +/Width 24 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÇÀÜØÀÎàÀÇ Ã `à PÃÀPF?0D¼ÁÁñã>Æìþ7��E@j +endstream +endobj +74 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 519 0 R +/Name /Im67 +/Width 32 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøc¹Ùþ�;Ã>>0¬@Â?p`| TH/Èv=ÌmêX\ÃÀÀü|�Où +endstream +endobj +75 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 520 0 R +/Name /Im68 +/Width 40 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÎÍ PEá31`v¯[²÷5&rÓ`#`Áx'qÍ·Cì@ù*+ôÄÆfåN;s£& :Lõ¼d: _Þrn\®øh¨&ùHù÷3Z9¨Èi¼÷59üå°ÆÒ&Ü +endstream +endobj +76 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 521 0 R +/Name /Im69 +/Width 32 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøcù°ýv}ì5üplCêýÏüA|�ü +endstream +endobj +77 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 522 0 R +/Name /Im70 +/Width 24 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÂ1 ÑÏ`âBÊH¹©Wrth +ðP8y #Éo´úòbä=cÅglæ¸%Lüîúª15%ub$9a*xB=÷åWÏØ;â-o£ÖAt×úë&É +endstream +endobj +78 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 523 0 R +/Name /Im71 +/Width 8 +/Height 17 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xsPàà`aaªÿþü©��çw +endstream +endobj +79 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 524 0 R +/Name /Im72 +/Width 40 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=ÎA + áQ!wy¼]L":YtéÒjÀÞãæ[¼Íû¥Æ4QØ'1Ð2HÂ6xó�w+þáP¢«,|SëàO:;¤ÈµÍFct¶âVÀPV Ä +endstream +endobj +80 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 525 0 R +/Name /Im73 +/Width 32 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``Hl``øpá+@°�P%y X Û"áþà�ÇÀù�³7p1Ë1üÿP� ²f +endstream +endobj +81 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 526 0 R +/Name /Im74 +/Width 24 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xkþÀpFáÃf Ô�D @ÄÞÀÀßÀPÏÀþAþýú>02< ffv iö�k² +endstream +endobj +82 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 527 0 R +/Name /Im75 +/Width 40 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÿÿ#``þÁÀÀÀøDPÀF� @ÂL$�Ô0~`?Pÿÿÿ�Ì77 +endstream +endobj +83 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 528 0 R +/Name /Im76 +/Width 32 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿñÿÿ@ÌÏ`Ã@nb~ +~~þ@9¢°<ÿb�¢ +endstream +endobj +84 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 529 0 R +/Name /Im77 +/Width 40 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}Ï!0 á7ATV"+8Âzz±<ná"{+åM +H*>5ù;�ÄJ"s% +Ú=»/"Ã""o&Ñ +D¨ÿ½¡÷N¹ñZj¾ÞüùÉ®¡Ð<ò£\ÛÔTgB_à Ø0Ö +endstream +endobj +85 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 530 0 R +/Name /Im78 +/Width 32 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÌÁ 0áÔ +zË8tgqxôöüÀÃw$+JÀéÓÝU9òÔÙä;6,1b@èøÈñ~Y]Ë/ñ +endstream +endobj +86 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 531 0 R +/Name /Im79 +/Width 16 +/Height 3 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿã?�²æ +endstream +endobj +87 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 532 0 R +/Name /Im80 +/Width 40 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5Ä« 0@ÑûxM*kq¬` AT¢ÊJJ�_àCI·ü 2C¯»°Ù/Y¬Aòô bqרÔ*6r×ZÃK¨ðÏõtÇÛË?!¹ +endstream +endobj +88 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 533 0 R +/Name /Im81 +/Width 24 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmÌA +@PEáû\EQ (P6 ,ÌÀÆNÙ×{~3õ OGgV0¿Jɳ٬f4éMm*c¢¼Ð´ M¨Cj¾UBz=»b% +endstream +endobj +89 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 534 0 R +/Name /Im82 +/Width 24 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]̱ 0@Ñ/vfÑàp&Ë+$¸XFÉQjáÕOuY³Gì;TXÑbz¥?É fæxÒfêQ +ù<[Kr¤Æ´#ûÈì6ï$ +endstream +endobj +90 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 535 0 R +/Name /Im83 +/Width 24 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÌ1 +0@ѦÓZxË)d÷*aN /£Ì,VÂkÿç"´%T%)½1¼ä¬,3§¸3 _ÿ5Zq ÿä¢Õ©Ú~Ð}Îöê[aã«!© +endstream +endobj +91 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 536 0 R +/Name /Im84 +/Width 24 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÁÀþAÁ½AùãÆ ~Ð*`øÁ@@ñ�ã Æ"Ì Âì° áòäÿQüÿr�zâ!ÿ +endstream +endobj +92 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 537 0 R +/Name /Im85 +/Width 24 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÀ aÁ ÇàÀÏPÀßð½áûª`?À@]Äùÿ �� #Ì +endstream +endobj +93 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 538 0 R +/Name /Im86 +/Width 8 +/Height 6 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ø�á +endstream +endobj +94 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 539 0 R +/Name /Im87 +/Width 24 +/Height 56 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`|ÀÀÏÀ ÃÀ`ÁÀPÁÀð,ôhóö d�¹@A fVtÐy�ô¹-K +endstream +endobj +95 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 540 0 R +/Name /Im88 +/Width 24 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿãÿÿõÿ0T0ê0�µItðñ¹�Y/ü +endstream +endobj +96 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 541 0 R +/Name /Im89 +/Width 32 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿQÿàÿÿê4{Éø�?�âvìlê÷ÿaø?ÿC}û�ôñ +endstream +endobj +97 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 542 0 R +/Name /Im90 +/Width 32 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨ÿñÿýÌÿÿ?`?ð½¡íXl\ßøáó?0 �ce +endstream +endobj +98 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 543 0 R +/Name /Im91 +/Width 24 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x± À �ÁGlà,µ\ ÑÅ#P¦²A9]Ç¿# ¹:¤L²(Ü PÏAMÓR>¥¿áç¾ã +endstream +endobj +99 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 544 0 R +/Name /Im92 +/Width 32 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xu̹ 0DÑAÒ¸0"lÆÑà¢å[rJð4Ú3·(ñFͤdmC§U>pùذbÍ}=ÔA=¥_1òØ_ +endstream +endobj +100 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 545 0 R +/Name /Im93 +/Width 32 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xM˱ 0�ÁG)(=kÐy-(ñh\º@2î@¯+µ#§i¦ qbsþE¹Ê(ºI§fásÖ×Û¢ËÍLCäª&µ +endstream +endobj +101 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 546 0 R +/Name /Im94 +/Width 16 +/Height 15 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xK`øÁPÃ`ÇÀÏÀÎÀÞÀÜ ß`ßPör�q0k +endstream +endobj +102 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 547 0 R +/Name /Im95 +/Width 32 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÁÀðÿC=fo ÷``ßÿ¨ýGûy æg`?ÀßÀ~½L2ãÀ@õ½@3êfýßÿ¡¾ÿ�þì+ÿ +endstream +endobj +103 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 548 0 R +/Name /Im96 +/Width 24 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x± EÑK,(Á5èXÒÂÄÕå%.ðK +ÂÓxr ÝmyIoP'r$kw¯æ"IÿØteUë°òÒ Ò' +endstream +endobj +104 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 549 0 R +/Name /Im97 +/Width 32 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xM̱ �Ñ3tº� 3ØhâJØQÀh°~ÔDëÎ�{ÁW8°`úgú yñ±#}r¾ ]ªÂ1ÆÎ£¢EÑm²ÒÒb+-õ^ùP!U +endstream +endobj +105 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 550 0 R +/Name /Im98 +/Width 24 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÇÀü¿ýÿþærl>Ô0|¨``øÁÀðR56 ÅüØÿ`þÿáÿ�Ô +endstream +endobj +106 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 551 0 R +/Name /Im99 +/Width 32 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿQÿàÿÿê4{Éø�?�âvìlØ÷ÿa`ÿ½ýP N\Äÿ¡4�Å;#7 +endstream +endobj +107 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 552 0 R +/Name /Im100 +/Width 24 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÃÀüÿÿùövl>Ô0ü¨`¨øÁPóÁ¥¨¨¨¨¨á�7·G +endstream +endobj +108 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 553 0 R +/Name /Im101 +/Width 24 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÀPÿáÿ5ìÈ!!èÿÿ?@Tÿÿ¦Ã�$ +endstream +endobj +109 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 554 0 R +/Name /Im102 +/Width 24 +/Height 56 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÁÀÀÏÀÀÜÀÀxñòPC ûs+ÀRd tÐI@÷�ªÏ,k +endstream +endobj +110 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 555 0 R +/Name /Im103 +/Width 24 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]Ê!À �ÀDýÀÒ~Ñd_BÖ§ñ>¡±ÀÐKNÈ=Ó~s<Ø 8»bTÆÚ[-QyÃ?£óÚ¡b|WZó"¸°kK;`;Èø�×ç' +endstream +endobj +111 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 556 0 R +/Name /Im104 +/Width 8 +/Height 7 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³¨ù÷ï_�c +endstream +endobj +112 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 557 0 R +/Name /Im105 +/Width 24 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x%ɱ 0EÁRPf²Hsµ"±Gpé*Òu(»¼ÞÑÈ Ì !>RþË·r86oWÍ¢Åß # +endstream +endobj +113 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 558 0 R +/Name /Im106 +/Width 24 +/Height 47 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÀPÿáÿv?ä +øøØ©øÿC�Ú%ß@ü�%rÇ +endstream +endobj +114 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 559 0 R +/Name /Im107 +/Width 56 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmб Â0 ág]/ä5(¼âÑ<G0Eäã^,9¢ú^w¿N¼jÒXà5 + 6IT8ò0@Ü ÍªAu3®ðäÿ9ðdA¨;H²¼- 0Å*x|ðî<Ù�¼:÷6;aÙ~Yê?ð3ø ìT +endstream +endobj +115 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 560 0 R +/Name /Im108 +/Width 40 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcg¨o``oþÿýxãöõììØ0È`ÿÀ ÿ�Hð@Aü ë�À5l<Ø"°ß9ãÈAÈ%þ£Ì �¬¶Lº +endstream +endobj +116 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 561 0 R +/Name /Im109 +/Width 24 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-± EÑKecdkX¸ Æ(@bCñóÐSU51IFlÿmÄÆ /§¹È¢Æ©U³PÅ`°÷ºHwpæeNë{*7 +endstream +endobj +117 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 562 0 R +/Name /Im110 +/Width 24 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcàÀ`ÿáãÆ?rÌ?ø°!âÑÿÿHþÿv0ñUÀ�K¸*¶ +endstream +endobj +118 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 563 0 R +/Name /Im111 +/Width 32 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ�Ã(fÿÀ@9þÂò ì?ì°ÿâ7@üÎþÀÿg@ü|~Ãÿÿüa��Á-Ì +endstream +endobj +119 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 564 0 R +/Name /Im112 +/Width 40 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMË¡0á«Bv±p$£õ=` 8,²#©àÕ|æþ+ò¤I¿ijû 8^´¤®0ÑÒæÁ6ÂËa�MêJýãæmÒÄb=#ÚüQv9 +endstream +endobj +120 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 565 0 R +/Name /Im113 +/Width 32 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x Í¡À0Á÷ª¢ÜTJù2vl°èÀA +ðvKôºRب²Ä°ÀðØù�°~ø'$-¦R¨ì¥Ü¯<xï2'L +endstream +endobj +121 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 566 0 R +/Name /Im114 +/Width 32 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcàa``�a9$l+ ø3>P�cæpÌÞÀÆü <@,ÇðÿCý�gç +endstream +endobj +122 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 567 0 R +/Name /Im115 +/Width 32 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xão`àQøÀÀç`ÁÀß ÃÀÏÀÄ`ØÀÏÀÃp`$5ü½ 3@f0ðó�1 åø?ø�.8| +endstream +endobj +123 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 568 0 R +/Name /Im116 +/Width 32 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿðÿA=³7È1PÛ1üÿÿÙp`°:f>`ÇÀx@á ÿ�t"ó +endstream +endobj +124 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 569 0 R +/Name /Im117 +/Width 32 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¿á?3?` a~Àþùã ¿kØí±`\ ÿ�êÿðÿÿÿÿÿÿc��Úý3` +endstream +endobj +125 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 570 0 R +/Name /Im118 +/Width 40 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿðÿC=`oc 5ñÿÿÿxmvìÌìùAÃùöÉÃüj�`n)$ +endstream +endobj +126 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 571 0 R +/Name /Im119 +/Width 32 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x%Ì¡ 0@Ñ_dÃ2�QºëfåF�+GϾ«VH´ì4<8.È +[h&Ào09ÍanÁ©àuÅNfzIØZ>/aR +endstream +endobj +127 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 572 0 R +/Name /Im120 +/Width 56 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÏ1!Ða!Y#@< x/D Éz,JKÀ()Ì®bàóiæ +¼=SDND&×_°<á;ú!wQ(g2F&D<ÙU/X")D \¨LùÃô&ëZQ±9âù£N¸±ÙV½%ón|�N>u +endstream +endobj +128 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 573 0 R +/Name /Im121 +/Width 32 +/Height 43 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿÿ@=3Ø`hüÿC0ó133`��=6# +endstream +endobj +129 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 574 0 R +/Name /Im122 +/Width 24 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿß0büÏ0 è?Ì�º9é +endstream +endobj +130 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 575 0 R +/Name /Im123 +/Width 56 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÐ1 +!á'^`a/ðb=HcH2Ä#XZ,N|oÂBª¯ýg"² ¹«rrxHüc'doÅá¦x°)qûAº âPIQ<D $Nc%(inäfÀ¸£*µÓÐíî9ùé¤ñ¥ÕqR/PÇi +endstream +endobj +131 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 576 0 R +/Name /Im124 +/Width 48 +/Height 45 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÿÿÿdÁþà %H\äYLÈ +ù¡H2~¨Ìêìð¨ú÷? + �l¹X® +endstream +endobj +132 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 577 0 R +/Name /Im125 +/Width 56 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x¥Ð1À Pí ¼F7¯Ô±£xFÆ_¡º5)Ë#¨DHh8°âE |*/éØ úf/kí¸»ãEØÈ½¸°NFà'ä36ò¸,w:ýSbp§]KywG +endstream +endobj +133 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 578 0 R +/Name /Im126 +/Width 48 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÁ À E_ÃÁ£#8 +µæ(à±S+Å&=7!/Àè ÈbK4Ë, ¶Ëb&ÒáÈaµÄ©:ÙGbÓátƾ8eeÑVÈõ_ÅGÿ»7×=ÑXÝYfJóf^`þ:uþç7ç·^ +endstream +endobj +134 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 579 0 R +/Name /Im127 +/Width 56 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xб À À·\¤ÌFc@ñXEDrÆ'¹±ÿI26Y'Bmk 纳:Çãhs¤ï)G? /äàÏ»Òö(+عBÏ +o=[YVÝ�Gõp` +endstream +endobj +135 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 580 0 R +/Name /Im128 +/Width 56 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``þÏ�öÿ?¨ÿÿÿ�Iæÿÿþùì*00©úP¨ã?*Q £* Å0¤þÿÿÇ ÿÿ*�òK +endstream +endobj +136 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 581 0 R +/Name /Im129 +/Width 48 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x¥1Å C1tdý[®Ñ+ud£qÐ1*u`ûüO"²;@|À7g9o@P:ãX ÐÒ£¸GÊp«óÒNæä<Sso¢Ôµãnç½qoÏ;ÉJePÌÓyò`ÞÚ©y»dl*f«uöÔ�PÐ +endstream +endobj +137 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 582 0 R +/Name /Im130 +/Width 16 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcà``P`p`8ÀØÀÌÀÌÀÆÀÇÀà @hÀP�` ÔuIMàÅÆ�2±á�Ð ]�ÛÊ +endstream +endobj +138 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 583 0 R +/Name /Im131 +/Width 32 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿ@Ìü@¸-X90f *þÀÀðÿÿ0�F».x +endstream +endobj +139 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 584 0 R +/Name /Im132 +/Width 16 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xk`p`P```àa`BfæÆÆ0<�Â8¬`°À ++Ô$u�ÀØÀÜÀ6h¾�Ð�£úË +endstream +endobj +140 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 585 0 R +/Name /Im133 +/Width 8 +/Height 56 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÁÿÿÿ¸1» +endstream +endobj +141 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 586 0 R +/Name /Im134 +/Width 40 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuÌA +À À-)Ø}/ñi>%OèѰM +µôàeXÂn�%k:rb<ì¢[ÿÀk ÒjÉàðý&úá¯'eEeG|HÂèÀ D +endstream +endobj +142 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 587 0 R +/Name /Im135 +/Width 24 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÀÿÿ?00> >:øáïûÌ(�Ø|%Ì +endstream +endobj +143 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 588 0 R +/Name /Im136 +/Width 24 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÌ1 + á_Úrmð(w¦F©{ Gñ QYD|óg+nÇ;Äd5E© +á1¼vµ³öF=«' +1ÜtûO 4ÂØ¶Ò-Ùµ-!W +endstream +endobj +144 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 589 0 R +/Name /Im137 +/Width 48 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿýÿÿ`¿AAH2AI[²¢üàF2>PÌÐHö4NÊ10¡6hdÃ|TòC<d~ÀÀ`ÏðDþ�{ (X +endstream +endobj +145 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 590 0 R +/Name /Im138 +/Width 24 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5ʱ 0@Ñ*ÄB0¥ ¨#XÚé(agFË(!åÂáÏ,¥ÛònyÅøßÐV´  0A.à"uüÑKôá'ª¢äb©Óêâ8geñפ%. +endstream +endobj +146 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 591 0 R +/Name /Im139 +/Width 8 +/Height 56 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ?;Éàÿÿÿ�ÑY +endstream +endobj +147 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 592 0 R +/Name /Im140 +/Width 16 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcf`ÂÃ<m¬øð°.øls, +�fJ +endstream +endobj +148 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 593 0 R +/Name /Im141 +/Width 32 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿá?³7Ùä�ñöFþ?ÈÔ <Ãÿÿÿø�u¡&= +endstream +endobj +149 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 594 0 R +/Name /Im142 +/Width 24 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãðÃFðO÷¡ì>0CQó ²a>ÀÏ|ùðúÌ dÁ| ØjØ,ää0��& +endstream +endobj +150 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 595 0 R +/Name /Im143 +/Width 24 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿ~¢Q3|{Ã÷ÿÊür�8Û +endstream +endobj +151 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 596 0 R +/Name /Im144 +/Width 16 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÁÜÂÞÂÎÄðÿû?üì@ÈP�ë´_ +endstream +endobj +152 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 597 0 R +/Name /Im145 +/Width 16 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿàÿ~|Pá?ò3 > ò1��kE +endstream +endobj +153 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 598 0 R +/Name /Im146 +/Width 16 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿ~r¡<à äg��Té¾ +endstream +endobj +154 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 599 0 R +/Name /Im147 +/Width 24 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³c`Hd`ØÑÀðà H�$ÀȪÀè#1~l`|�BÌý{?<Åÿÿ�vÙ3 +endstream +endobj +155 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 600 0 R +/Name /Im148 +/Width 16 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x*�ÕÿàØ8àÀÀÀ�>üø?ðàü�ð�àà``8<Ĺ +endstream +endobj +156 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 601 0 R +/Name /Im149 +/Width 32 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøSßÀÜTßÀÎXÃÀÏð+HÂò@=ÿÙ!Ä�þÝ� +endstream +endobj +157 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 602 0 R +/Name /Im150 +/Width 24 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿ~H¾?áC???ñcC) ÿ ÿºä�² +endstream +endobj +158 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 603 0 R +/Name /Im151 +/Width 24 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃÀÎÎÀÇÜ ÃxÀáAÃ(D@5xºÿ0��§ú +endstream +endobj +159 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 604 0 R +/Name /Im152 +/Width 24 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃÀÎÌÀÃÐ Ãà`Á PÁ PÀÀðýÿÿàÃ,H0àan`çc`üÁ��ØÅ +endstream +endobj +160 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 605 0 R +/Name /Im153 +/Width 24 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüñå?óÆ*>0|ø ejd>ð1~`gûÀøã^Äø>���5,G +endstream +endobj +161 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 606 0 R +/Name /Im154 +/Width 24 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãoàIxÀ×PÀÏ`ÁÏ ÃÏ ÇÏÀÇÏÀ ñee@*øðË7ð30àAòÿÁÈ�p^ +º +endstream +endobj +162 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 607 0 R +/Name /Im155 +/Width 32 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿùà æg¨` 7@±C¿Á~þ@q¢°<ÿb�×Ñ +endstream +endobj +163 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 608 0 R +/Name /Im156 +/Width 32 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ§þß fo`>@6þÿÉÐûj?�·7 +endstream +endobj +164 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 609 0 R +/Name /Im157 +/Width 16 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿçÿöòá ~�,{¿ +endstream +endobj +165 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 610 0 R +/Name /Im158 +/Width 32 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿùà æg¨` 7T0Èñÿøù0��Ö¨ÿ +endstream +endobj +166 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 611 0 R +/Name /Im159 +/Width 24 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÃPÿ½dôÿáTÐÜÀÜ~ùøÆÃ>60Ø3��En. +endstream +endobj +167 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 612 0 R +/Name /Im160 +/Width 40 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿùÿùÿÿA? ÃÊ;ò â¿%Ãÿðó?°o��6Â%x +endstream +endobj +168 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 613 0 R +/Name /Im161 +/Width 24 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xEÉ¡ @Ñç!q]HcGøÑæftFøjPϹíjãèzº\) 5# Ä g¤âzö]F2öÿ(L¯pD°8Ø<ß«ÓFK$z +endstream +endobj +169 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 614 0 R +/Name /Im162 +/Width 24 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃÀÎÌÀÇÐ Ãà`Á PÁ PÀÀðW07X°a?ÀÇ~¹ñ?�Å +endstream +endobj +170 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 615 0 R +/Name /Im163 +/Width 32 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿá?³7Âhø�{#ÿb$P£�Á0�Å@|½ÙüÿÿÄB& +endstream +endobj +171 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 616 0 R +/Name /Im164 +/Width 8 +/Height 5 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øñãG�]É +endstream +endobj +172 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 617 0 R +/Name /Im165 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcb`Cv¡¨àÿ¢TUL�YÀJ +endstream +endobj +173 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 618 0 R +/Name /Im166 +/Width 32 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`ÿÁÀ ÿ¡¹ñÃæ ì üòr@lÇÀÀbÄ5P\ÁÀÀð�®@RÔË4hÐL Ù2@;lvÕ�íÃPÇÎtû�e¹ +endstream +endobj +174 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 619 0 R +/Name /Im167 +/Width 40 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc0`f``�Ì ì0â¿Ã0ÁçÀÀøHNB0?``>h",Ø~p@þ<üXÄyÆüÿÏÿ±?�&�eq× +endstream +endobj +175 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 620 0 R +/Name /Im168 +/Width 24 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}Ê« @�ÑY AÅÑ¥!¨Z®K®$åS�É#&[fKã4£ÚWÇâ¸éæ;®¸àvHg¾^ðcü<}Ígo +endstream +endobj +176 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 621 0 R +/Name /Im169 +/Width 24 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÏÀÏø@¡ A0ðAPkÁPÃÿÿÿÿüÿd$ÀHAò?;sÙ0#;ö1þpc`°�ïA÷ +endstream +endobj +177 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 622 0 R +/Name /Im170 +/Width 8 +/Height 15 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xsPàà`?~��Çu +endstream +endobj +178 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 623 0 R +/Name /Im171 +/Width 24 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿá?ñ3à@vüÿøÿàü¿áÃ~ +~~TTo¨�©yüáÿÿÿÿøoÏ��Ò:¤ +endstream +endobj +179 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 624 0 R +/Name /Im172 +/Width 24 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x{þáÿ?ÿÿþñ7ü`>ðñÀÆÌø0þoàÿÏ`ÿ¡þÃì TÁßPÿ¿Á(û»�bE +endstream +endobj +180 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 625 0 R +/Name /Im173 +/Width 24 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`°o`¨?ÀPù¡ + +*,ÀÈ Õ10¤10<c`xBÇ7�sssãv b¢üøÔÿóÿø? �We +endstream +endobj +181 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 626 0 R +/Name /Im174 +/Width 24 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÏÀþÿ�ÿÿòÍì>Ô0|¨``øÁÀðEâ5ì*�Õu1þo��'G +endstream +endobj +182 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 627 0 R +/Name /Im175 +/Width 24 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿñß0âg|@�5ÑÁüðÿ?À_ßÀoÏÀÏþÃ�Uþ +endstream +endobj +183 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 628 0 R +/Name /Im176 +/Width 24 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃÀþÿ<û;æ5*>ü`øñ¡ Ų@5@@õ@]�j; +endstream +endobj +184 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 629 0 R +/Name /Im177 +/Width 24 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]Ì¡ À �À'H65$¬DFtggZÝäô¡ÁqÙ)ù{l£nRä¢Ö(¨BÕØ2} 3´ÏWus/,¿3{ +endstream +endobj +185 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 630 0 R +/Name /Im178 +/Width 32 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ï?ðþùõ@Z,ÇÁòóÏ3ÔÿÿÇðÿï?5�÷Ï +endstream +endobj +186 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 631 0 R +/Name /Im179 +/Width 24 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc·càÿßÀÿÿ�ÿãü ø~ð3Tð3Ôð3Ø ¢xCHÍãüÿ´Ø3ð3 £ÿ0�ÅÂÞ +endstream +endobj +187 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 632 0 R +/Name /Im180 +/Width 24 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÏÀþÿ�ÿÿòÍì>Ô0|¨``øÁÀðáÿÿôáà 8ãÆ6ÌäÙêØÿ30þa�� / +endstream +endobj +188 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 633 0 R +/Name /Im181 +/Width 24 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¿áÿÿÿÿ70`ÀÀÐæ<Ìÿäþßÿ÷ÿüÿ��t÷¸ +endstream +endobj +189 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 634 0 R +/Name /Im182 +/Width 24 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿñß0âg|@�5ÑÁüüÿà}Ã{�¢w +endstream +endobj +190 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 635 0 R +/Name /Im183 +/Width 16 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³Pÿáÿ5?ä +äøIüÿåÿóÿg@�>y0ä�顪 +endstream +endobj +191 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 636 0 R +/Name /Im184 +/Width 32 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ�à fþÀÀÀüÌ%Øùÿ±Áb(êza ó@±Û�ñÿÿÿ1�lC0% +endstream +endobj +192 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 637 0 R +/Name /Im185 +/Width 16 +/Height 6 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+ùa2�(lñ +endstream +endobj +193 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 638 0 R +/Name /Im186 +/Width 24 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿAã9y~ööÌ00|�£ +;9~ü ì ÌAÚëÿ��� +endstream +endobj +194 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 639 0 R +/Name /Im187 +/Width 40 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÏÁ Â0ÐnéÉ +PÁZBÅ0YÄ$XAô×zn"½o@ÏYÉ-tòûcFúÍ _P"¹v¼!¼¤B»ñ±ÏH÷Ca¬%evÒ3î\ébðgkÊì¤Ò0+VþuY7³aرzA +endstream +endobj +195 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 640 0 R +/Name /Im188 +/Width 24 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÇÀÜÜÀÎxáC CU0Ø@Ð;â\Y0X�Í D@ÃV�-bøÇ��#o +endstream +endobj +196 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 641 0 R +/Name /Im189 +/Width 24 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcxÀÀøb@C`dC`ÄF,L`ÄÈÀÀÐ�D + $àÀÀQÿÿÙÿÿD@ +�c +endstream +endobj +197 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 642 0 R +/Name /Im190 +/Width 40 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}ÍÁ PÐHp7ÑÅüÑ¥#xü1¶ ñ"^¥$-Éë b-1µ_ÕõdØaäÓXXÜ»ÀûÈÕøÂëO7gÖQò.ßîC +endstream +endobj +198 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 643 0 R +/Name /Im191 +/Width 40 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmÌ1 +Â@áM0[ñ)-$æ(v¶)B\ðb^d b±E ¾WÅ|Å0Ùá&3 ê|±áàëAª²§ÁôØÄ ¼ §EO¡-ç÷,k%ùJm± :æJ'qJ¼;`nÊUã/íøqµâ$Cº0: +endstream +endobj +199 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 644 0 R +/Name /Im192 +/Width 40 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x± À0/¸pé EBærGó(Á¤Èç]¸ô: Ç +eë0Tê Ð8Ð8*»JÝ8!6ãºqAè + +ã¼f8e%¯kI²%§®Å¿^¶2ï +endstream +endobj +200 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 645 0 R +/Name /Im193 +/Width 24 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûøáû?ÿÿþñ7ü`>ðñÁÆ ¨ÊUþa~ðÿÀÿÿ ÿ3|øÃð(�+98( +endstream +endobj +201 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 646 0 R +/Name /Im194 +/Width 24 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÏÀüÿ�ûÿü äl*À¨áýÿÿ>00T0$T0<°ax`Çx@ý�ÿÿæÿ�qµ¸ +endstream +endobj +202 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 647 0 R +/Name /Im195 +/Width 24 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÁÀüØ7°72°7þÿ"¬²�úö +endstream +endobj +203 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 648 0 R +/Name /Im196 +/Width 16 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÀðüðÃÿÿ¾øøáC�y, +endstream +endobj +204 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 649 0 R +/Name /Im197 +/Width 24 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÏÀüÿûÿüä +lj*Àè6ª±a`c0àoø�Ô4á?�÷z +endstream +endobj +205 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 650 0 R +/Name /Im198 +/Width 24 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÀ|àèýa?ð¿áûÏÿ>üaøÀ@�ñ>7i +endstream +endobj +206 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 651 0 R +/Name /Im199 +/Width 24 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÇÀü¿ýÿùærl*jj*lè&*`ÈUÕó7?�êÀð�cË +endstream +endobj +207 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 652 0 R +/Name /Im200 +/Width 8 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«¨À`à��K& +endstream +endobj +208 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 653 0 R +/Name /Im201 +/Width 24 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xão`0xÀP`À`Áð@áÃ~ì@Ô�DÀQ#Ùc-sÜa99âGBì Hè�CýûÌ�<Þ & +endstream +endobj +209 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 654 0 R +/Name /Im202 +/Width 48 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x`0`°Â +$9 ýD2>h� ü@± +²B2°7ðCIù�;P?lF"°�Øð18`_ Ç x]BA¸Eáó�&è2 +endstream +endobj +210 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 655 0 R +/Name /Im203 +/Width 16 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÃÜ@,üÄ �v7¾ +endstream +endobj +211 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 656 0 R +/Name /Im204 +/Width 16 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¯þý?&FF6FfÆ 2r|üü?À0A.AFÀÿ�b£ +endstream +endobj +212 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 657 0 R +/Name /Im205 +/Width 24 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-ȱ 0@ÑX¤SKq'Gq2£d+¯1¯ø| +®ÆÍ¥]ôÂNÌÈ ÍMØ ü<d0P$á¢iÁð|G´³Uì k!:.&÷5RxÓû&M +endstream +endobj +213 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 449 0 R >> /XObject << /Im75 82 0 R /Im55 62 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im135 142 0 R /Im206 215 0 R /Im76 83 0 R /Im53 60 0 R /Im137 144 0 R /Im64 71 0 R /Im59 66 0 R /Im64 71 0 R /Im79 86 0 R /Im137 144 0 R /Im55 62 0 R /Im119 126 0 R /Im137 144 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im86 93 0 R /Im166 173 0 R /Im155 162 0 R /Im151 158 0 R /Im151 158 0 R /Im148 155 0 R /Im152 159 0 R /Im142 149 0 R /Im160 167 0 R /Im151 158 0 R /Im207 216 0 R /Im152 159 0 R /Im159 166 0 R /Im143 150 0 R /Im151 158 0 R /Im160 167 0 R /Im142 149 0 R /Im169 176 0 R /Im145 152 0 R /Im207 216 0 R /Im152 159 0 R /Im158 165 0 R /Im154 161 0 R /Im151 158 0 R /Im142 149 0 R /Im143 150 0 R /Im153 160 0 R /Im208 217 0 R /Im151 158 0 R /Im159 166 0 R /Im144 151 0 R /Im155 162 0 R /Im152 159 0 R /Im209 218 0 R /Im143 150 0 R /Im148 155 0 R /Im144 151 0 R /Im150 157 0 R /Im146 153 0 R /Im142 149 0 R /Im147 154 0 R /Im152 159 0 R /Im143 150 0 R /Im170 177 0 R /Im148 155 0 R /Im144 151 0 R /Im149 156 0 R /Im143 150 0 R /Im158 165 0 R /Im210 219 0 R /Im211 220 0 R /Im164 171 0 R /Im166 173 0 R /Im151 158 0 R /Im158 165 0 R /Im148 155 0 R /Im144 151 0 R /Im143 150 0 R /Im149 156 0 R /Im162 169 0 R /Im144 151 0 R /Im142 149 0 R /Im169 176 0 R /Im142 149 0 R /Im160 167 0 R /Im152 159 0 R /Im212 221 0 R /Im144 151 0 R /Im143 150 0 R /Im152 159 0 R /Im152 159 0 R /Im151 158 0 R /Im159 166 0 R /Im153 160 0 R /Im152 159 0 R /Im150 157 0 R /Im144 151 0 R /Im155 162 0 R /Im213 222 0 R /Im170 177 0 R /Im145 152 0 R /Im164 171 0 R /Im152 159 0 R /Im164 171 0 R /Im170 177 0 R /Im142 149 0 R /Im144 151 0 R /Im143 150 0 R /Im152 159 0 R /Im152 159 0 R /Im167 174 0 R /Im155 162 0 R /Im145 152 0 R /Im162 169 0 R /Im155 162 0 R /Im155 162 0 R /Im142 149 0 R /Im148 155 0 R /Im142 149 0 R /Im143 150 0 R /Im151 158 0 R /Im151 158 0 R /Im144 151 0 R /Im208 217 0 R /Im170 177 0 R /Im155 162 0 R /Im142 149 0 R /Im148 155 0 R /Im153 160 0 R /Im152 159 0 R /Im150 157 0 R /Im144 151 0 R /Im155 162 0 R /Im213 222 0 R /Im142 149 0 R /Im158 165 0 R /Im153 160 0 R /Im162 169 0 R /Im151 158 0 R /Im158 165 0 R /Im148 155 0 R /Im145 152 0 R /Im148 155 0 R /Im144 151 0 R /Im148 155 0 R /Im151 158 0 R /Im159 166 0 R /Im214 223 0 R /Im142 149 0 R /Im215 224 0 R /Im142 149 0 R /Im148 155 0 R /Im142 149 0 R /Im158 165 0 R /Im151 158 0 R /Im153 160 0 R /Im152 159 0 R /Im170 177 0 R /Im142 149 0 R /Im154 161 0 R /Im151 158 0 R /Im142 149 0 R /Im143 150 0 R /Im153 160 0 R /Im162 169 0 R /Im151 158 0 R /Im158 165 0 R /Im209 218 0 R /Im169 176 0 R /Im149 156 0 R /Im143 150 0 R /Im142 149 0 R /Im144 151 0 R /Im145 152 0 R /Im151 158 0 R /Im158 165 0 R /Im170 177 0 R /Im142 149 0 R /Im158 165 0 R /Im153 160 0 R /Im214 223 0 R /Im154 161 0 R /Im215 224 0 R /Im142 149 0 R /Im148 155 0 R /Im142 149 0 R /Im158 165 0 R /Im142 149 0 R /Im143 150 0 R /Im143 150 0 R /Im151 158 0 R /Im167 174 0 R /Im159 166 0 R /Im143 150 0 R /Im151 158 0 R /Im160 167 0 R /Im151 158 0 R /Im158 165 0 R /Im152 159 0 R /Im154 161 0 R /Im151 158 0 R /Im142 149 0 R /Im143 150 0 R /Im153 160 0 R /Im208 217 0 R /Im216 225 0 R /Im144 151 0 R /Im151 158 0 R /Im142 149 0 R /Im158 165 0 R /Im151 158 0 R /Im144 151 0 R /Im155 162 0 R /Im152 159 0 R /Im143 150 0 R /Im208 217 0 R /Im217 226 0 R /Im170 177 0 R /Im142 149 0 R /Im160 167 0 R /Im151 158 0 R /Im207 216 0 R /Im152 159 0 R /Im218 227 0 R /Im167 174 0 R /Im155 162 0 R /Im145 152 0 R /Im162 169 0 R /Im155 162 0 R /Im154 161 0 R /Im143 150 0 R /Im145 152 0 R /Im158 165 0 R /Im169 176 0 R /Im148 155 0 R /Im208 217 0 R /Im216 225 0 R /Im144 151 0 R /Im151 158 0 R /Im208 217 0 R /Im217 226 0 R /Im164 171 0 R /Im219 228 0 R /Im164 171 0 R /Im163 170 0 R /Im151 158 0 R /Im143 150 0 R /Im152 159 0 R /Im142 149 0 R /Im162 169 0 R /Im155 162 0 R /Im146 153 0 R /Im152 159 0 R /Im142 149 0 R /Im159 166 0 R /Im170 177 0 R /Im162 169 0 R /Im142 149 0 R /Im146 153 0 R /Im162 169 0 R /Im149 156 0 R /Im146 153 0 R /Im142 149 0 R /Im144 151 0 R /Im152 159 0 R /Im145 152 0 R /Im144 151 0 R /Im148 155 0 R /Im148 155 0 R /Im144 151 0 R /Im142 149 0 R /Im144 151 0 R /Im145 152 0 R /Im162 169 0 R /Im152 159 0 R /Im207 216 0 R /Im142 149 0 R /Im146 153 0 R /Im149 156 0 R /Im142 149 0 R /Im144 151 0 R /Im145 152 0 R /Im151 158 0 R /Im158 165 0 R /Im164 171 0 R /Im220 229 0 R /Im164 171 0 R /Im221 230 0 R /Im145 152 0 R /Im207 216 0 R /Im152 159 0 R /Im152 159 0 R /Im142 149 0 R /Im162 169 0 R /Im155 162 0 R /Im154 161 0 R /Im151 158 0 R /Im142 149 0 R /Im143 150 0 R /Im153 160 0 R /Im151 158 0 R /Im159 166 0 R /Im144 151 0 R /Im155 162 0 R /Im152 159 0 R /Im209 218 0 R /Im143 150 0 R /Im148 155 0 R /Im144 151 0 R /Im150 157 0 R /Im146 153 0 R /Im142 149 0 R /Im147 154 0 R /Im152 159 0 R /Im143 150 0 R /Im170 177 0 R /Im148 155 0 R /Im144 151 0 R /Im149 156 0 R /Im143 150 0 R /Im158 165 0 R /Im144 151 0 R /Im155 162 0 R /Im152 159 0 R /Im160 167 0 R /Im142 149 0 R /Im222 231 0 R /Im145 152 0 R /Im212 221 0 R /Im160 167 0 R /Im149 156 0 R /Im160 167 0 R /Im152 159 0 R /Im207 216 0 R /Im142 149 0 R /Im146 153 0 R /Im149 156 0 R /Im142 149 0 R /Im144 151 0 R /Im145 152 0 R /Im151 158 0 R /Im158 165 0 R /Im151 158 0 R /Im159 166 0 R /Im145 152 0 R /Im144 151 0 R /Im148 155 0 R /Im162 169 0 R /Im155 162 0 R /Im145 152 0 R /Im146 153 0 R /Im153 160 0 R /Im143 150 0 R /Im152 159 0 R /Im158 165 0 R /Im158 165 0 R /Im151 158 0 R /Im153 160 0 R /Im152 159 0 R /Im148 155 0 R /Im142 149 0 R /Im148 155 0 R /Im145 152 0 R /Im144 151 0 R /Im148 155 0 R /Im152 159 0 R /Im207 216 0 R /Im142 149 0 R /Im146 153 0 R /Im149 156 0 R /Im142 149 0 R /Im144 151 0 R /Im145 152 0 R /Im151 158 0 R /Im158 165 0 R /Im164 171 0 R /Im223 232 0 R /Im164 171 0 R /Im221 230 0 R /Im145 152 0 R /Im207 216 0 R /Im152 159 0 R /Im152 159 0 R /Im142 149 0 R /Im162 169 0 R /Im155 162 0 R /Im154 161 0 R /Im151 158 0 R /Im142 149 0 R /Im143 150 0 R /Im153 160 0 R /Im151 158 0 R /Im159 166 0 R /Im144 151 0 R /Im155 162 0 R /Im152 159 0 R /Im148 155 0 R /Im152 159 0 R /Im162 169 0 R /Im151 158 0 R /Im158 165 0 R /Im153 160 0 R /Im150 157 0 R /Im146 153 0 R /Im142 149 0 R /Im147 154 0 R /Im152 159 0 R /Im143 150 0 R /Im170 177 0 R /Im148 155 0 R /Im144 151 0 R /Im149 156 0 R /Im143 150 0 R /Im158 165 0 R /Im144 151 0 R /Im155 162 0 R /Im152 159 0 R /Im160 167 0 R /Im145 152 0 R /Im158 165 0 R /Im145 152 0 R /Im212 221 0 R /Im160 167 0 R /Im149 156 0 R /Im160 167 0 R /Im152 159 0 R /Im207 216 0 R /Im142 149 0 R /Im146 153 0 R /Im149 156 0 R /Im142 149 0 R /Im144 151 0 R /Im145 152 0 R /Im151 158 0 R /Im158 165 0 R /Im151 158 0 R /Im159 166 0 R /Im145 152 0 R /Im144 151 0 R /Im148 155 0 R /Im162 169 0 R /Im155 162 0 R /Im145 152 0 R /Im146 153 0 R /Im153 160 0 R /Im143 150 0 R /Im152 159 0 R /Im158 165 0 R /Im158 165 0 R /Im151 158 0 R /Im153 160 0 R /Im152 159 0 R /Im148 155 0 R /Im142 149 0 R /Im148 155 0 R /Im145 152 0 R /Im144 151 0 R /Im148 155 0 R /Im152 159 0 R /Im207 216 0 R /Im142 149 0 R /Im146 153 0 R /Im149 156 0 R /Im142 149 0 R /Im144 151 0 R /Im145 152 0 R /Im151 158 0 R /Im158 165 0 R /Im164 171 0 R /Im224 233 0 R /Im164 171 0 R /Im166 173 0 R /Im155 162 0 R /Im151 158 0 R /Im151 158 0 R /Im148 155 0 R /Im152 159 0 R /Im142 149 0 R /Im160 167 0 R /Im151 158 0 R /Im207 216 0 R /Im152 159 0 R /Im151 158 0 R /Im143 150 0 R /Im142 149 0 R /Im154 161 0 R /Im143 150 0 R /Im142 149 0 R /Im158 165 0 R /Im162 169 0 R /Im155 162 0 R /Im159 166 0 R /Im143 150 0 R /Im151 158 0 R /Im160 167 0 R /Im144 151 0 R /Im155 162 0 R /Im152 159 0 R /Im154 161 0 R /Im151 158 0 R /Im142 149 0 R /Im143 150 0 R /Im153 160 0 R /Im208 217 0 R /Im144 151 0 R /Im155 162 0 R /Im142 149 0 R /Im144 151 0 R /Im146 153 0 R /Im152 159 0 R /Im142 149 0 R /Im153 160 0 R /Im148 155 0 R /Im144 151 0 R /Im151 158 0 R /Im144 151 0 R /Im155 162 0 R /Im152 159 0 R /Im154 161 0 R /Im151 158 0 R /Im142 149 0 R /Im143 150 0 R /Im153 160 0 R /Im167 174 0 R /Im145 152 0 R /Im144 151 0 R /Im155 162 0 R /Im144 151 0 R /Im155 162 0 R /Im152 159 0 R /Im160 167 0 R /Im142 149 0 R /Im222 231 0 R /Im145 152 0 R /Im160 167 0 R /Im149 156 0 R /Im160 167 0 R /Im152 159 0 R /Im207 216 0 R /Im142 149 0 R /Im146 153 0 R /Im149 156 0 R /Im142 149 0 R /Im144 151 0 R /Im145 152 0 R /Im151 158 0 R /Im158 165 0 R /Im170 177 0 R /Im142 149 0 R /Im148 155 0 R /Im142 149 0 R /Im158 165 0 R /Im142 149 0 R /Im150 157 0 R /Im150 157 0 R /Im143 150 0 R /Im151 158 0 R /Im150 157 0 R /Im143 150 0 R /Im145 152 0 R /Im142 149 0 R /Im144 151 0 R /Im152 159 0 R /Im160 167 0 R /Im151 158 0 R /Im207 216 0 R /Im152 159 0 R /Im164 171 0 R /Im225 234 0 R /Im124 131 0 R /Im226 235 0 R /Im227 236 0 R /Im107 114 0 R /Im228 237 0 R /Im229 238 0 R /Im226 235 0 R /Im107 114 0 R /Im230 239 0 R /Im231 240 0 R /Im227 236 0 R /Im124 131 0 R /Im107 114 0 R /Im232 241 0 R /Im227 236 0 R /Im124 131 0 R /Im226 235 0 R /Im126 133 0 R /Im127 134 0 R /Im107 114 0 R /Im123 130 0 R /Im127 134 0 R /Im107 114 0 R /Im123 130 0 R /Im126 133 0 R /Im125 132 0 R /Im127 134 0 R /Im227 236 0 R /Im125 132 0 R /Im122 129 0 R /Im123 130 0 R /Im127 134 0 R /Im128 135 0 R /Im129 136 0 R /Im124 131 0 R /Im122 129 0 R /Im126 133 0 R /Im123 130 0 R /Im229 238 0 R /Im125 132 0 R /Im126 133 0 R /Im231 240 0 R /Im228 237 0 R /Im227 236 0 R /Im232 241 0 R /Im120 127 0 R /Im53 60 0 R /Im55 62 0 R /Im74 81 0 R /Im74 81 0 R /Im69 76 0 R /Im58 65 0 R /Im53 60 0 R /Im55 62 0 R /Im74 81 0 R /Im57 64 0 R /Im56 63 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im71 78 0 R /Im66 73 0 R /Im60 67 0 R /Im58 65 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im57 64 0 R /Im53 60 0 R /Im64 71 0 R /Im59 66 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im58 65 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im71 78 0 R /Im67 74 0 R /Im53 60 0 R /Im57 64 0 R /Im53 60 0 R /Im56 63 0 R /Im79 86 0 R /Im58 65 0 R /Im64 71 0 R /Im59 66 0 R /Im64 71 0 R /Im74 81 0 R /Im57 64 0 R /Im64 71 0 R /Im66 73 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im73 80 0 R /Im53 60 0 R /Im67 74 0 R /Im115 122 0 R /Im73 80 0 R /Im57 64 0 R /Im80 87 0 R /Im60 67 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im74 81 0 R /Im60 67 0 R /Im59 66 0 R /Im74 81 0 R /Im71 78 0 R /Im74 81 0 R /Im69 76 0 R /Im66 73 0 R /Im76 83 0 R /Im55 62 0 R /Im74 81 0 R /Im66 73 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im60 67 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im63 70 0 R /Im63 70 0 R /Im60 67 0 R /Im86 93 0 R /Im80 87 0 R /Im60 67 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im73 80 0 R /Im53 60 0 R /Im56 63 0 R /Im74 81 0 R /Im71 78 0 R /Im66 73 0 R /Im55 62 0 R /Im63 70 0 R /Im63 70 0 R /Im53 60 0 R /Im67 74 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im116 123 0 R /Im56 63 0 R /Im74 81 0 R /Im57 64 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im53 60 0 R /Im66 73 0 R /Im79 86 0 R /Im60 67 0 R /Im59 66 0 R /Im67 74 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im73 80 0 R /Im53 60 0 R /Im56 63 0 R /Im74 81 0 R /Im71 78 0 R /Im57 64 0 R /Im55 62 0 R /Im78 85 0 R /Im53 60 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im74 81 0 R /Im115 122 0 R /Im73 80 0 R /Im57 64 0 R /Im69 76 0 R /Im56 63 0 R /Im59 66 0 R /Im74 81 0 R /Im86 93 0 R /Im233 242 0 R /Im59 66 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im73 80 0 R /Im53 60 0 R /Im56 63 0 R /Im80 87 0 R /Im64 71 0 R /Im59 66 0 R /Im74 81 0 R /Im80 87 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im55 62 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im60 67 0 R /Im61 68 0 R /Im64 71 0 R /Im57 64 0 R /Im74 81 0 R /Im57 64 0 R /Im69 76 0 R /Im56 63 0 R /Im59 66 0 R /Im115 122 0 R /Im56 63 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im74 81 0 R /Im55 62 0 R /Im74 81 0 R /Im57 64 0 R /Im55 62 0 R /Im57 64 0 R /Im69 76 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im60 67 0 R /Im74 81 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im74 81 0 R /Im61 68 0 R /Im73 80 0 R /Im55 62 0 R /Im65 72 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im59 66 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im67 74 0 R /Im64 71 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im66 73 0 R /Im55 62 0 R /Im63 70 0 R /Im63 70 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im57 64 0 R /Im55 62 0 R /Im57 64 0 R /Im69 76 0 R /Im74 81 0 R /Im55 62 0 R /Im65 72 0 R /Im60 67 0 R /Im55 62 0 R /Im63 70 0 R /Im86 93 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im54 61 0 R /Im76 83 0 R /Im55 62 0 R /Im79 86 0 R /Im115 122 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im64 71 0 R /Im74 81 0 R /Im55 62 0 R /Im59 66 0 R /Im55 62 0 R /Im63 70 0 R /Im65 72 0 R /Im60 67 0 R /Im56 63 0 R /Im64 71 0 R /Im57 64 0 R /Im76 83 0 R /Im58 65 0 R /Im57 64 0 R /Im60 67 0 R /Im116 123 0 R /Im59 66 0 R /Im67 74 0 R /Im55 62 0 R /Im59 66 0 R /Im55 62 0 R /Im54 61 0 R /Im79 86 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im54 61 0 R /Im56 63 0 R /Im64 71 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im86 93 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im54 61 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im54 61 0 R /Im56 63 0 R /Im64 71 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im64 71 0 R /Im74 81 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im115 122 0 R /Im53 60 0 R /Im74 81 0 R /Im57 64 0 R /Im64 71 0 R /Im59 66 0 R /Im55 62 0 R /Im74 81 0 R /Im53 60 0 R /Im59 66 0 R /Im74 81 0 R /Im53 60 0 R /Im60 67 0 R /Im61 68 0 R /Im63 70 0 R /Im60 67 0 R /Im60 67 0 R /Im78 85 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im74 81 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im66 73 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im67 74 0 R /Im53 60 0 R /Im54 61 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im61 68 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im79 86 0 R /Im57 64 0 R /Im56 63 0 R /Im53 60 0 R /Im53 60 0 R /Im74 81 0 R /Im55 62 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im67 74 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im60 67 0 R /Im61 68 0 R /Im55 62 0 R /Im65 72 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im59 66 0 R /Im76 83 0 R /Im53 60 0 R /Im69 76 0 R /Im56 63 0 R /Im64 71 0 R /Im74 81 0 R /Im57 64 0 R /Im64 71 0 R /Im66 73 0 R /Im61 68 0 R /Im69 76 0 R /Im59 66 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im65 72 0 R /Im60 67 0 R /Im56 63 0 R /Im64 71 0 R /Im57 64 0 R /Im76 83 0 R /Im58 65 0 R /Im114 121 0 R /Im64 71 0 R /Im74 81 0 R /Im64 71 0 R /Im57 64 0 R /Im74 81 0 R /Im60 67 0 R /Im59 66 0 R /Im63 70 0 R /Im73 80 0 R /Im59 66 0 R /Im53 60 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im55 62 0 R /Im56 63 0 R /Im73 80 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im54 61 0 R /Im56 63 0 R /Im69 76 0 R /Im59 66 0 R /Im53 60 0 R /Im74 81 0 R /Im69 76 0 R /Im59 66 0 R /Im59 66 0 R /Im53 60 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im55 62 0 R /Im56 63 0 R /Im73 80 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im115 122 0 R /Im73 80 0 R /Im69 76 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im57 64 0 R /Im73 80 0 R /Im60 67 0 R /Im61 68 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im79 86 0 R /Im57 64 0 R /Im56 63 0 R /Im53 60 0 R /Im53 60 0 R /Im74 81 0 R /Im86 93 0 R /Im62 69 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im74 81 0 R /Im57 64 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im64 71 0 R /Im74 81 0 R /Im74 81 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im80 87 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im114 121 0 R /Im64 71 0 R /Im74 81 0 R /Im64 71 0 R /Im57 64 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im58 65 0 R /Im64 71 0 R /Im59 66 0 R /Im64 71 0 R /Im79 86 0 R /Im58 65 0 R /Im55 62 0 R /Im119 126 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im54 61 0 R /Im76 83 0 R /Im55 62 0 R /Im79 86 0 R /Im115 122 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im55 62 0 R /Im74 81 0 R /Im74 81 0 R /Im69 76 0 R /Im58 65 0 R /Im53 60 0 R /Im55 62 0 R /Im74 81 0 R /Im57 64 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im66 73 0 R /Im53 60 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im55 62 0 R /Im57 64 0 R /Im60 67 0 R /Im56 63 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im115 122 0 R /Im60 67 0 R /Im55 62 0 R /Im56 63 0 R /Im67 74 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im116 123 0 R /Im65 72 0 R /Im69 76 0 R /Im56 63 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im76 83 0 R /Im53 60 0 R /Im53 60 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im55 62 0 R /Im57 64 0 R /Im60 67 0 R /Im56 63 0 R /Im53 60 0 R /Im74 81 0 R /Im57 64 0 R /Im64 71 0 R /Im58 65 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im74 81 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im234 243 0 R /Im69 76 0 R /Im55 62 0 R /Im63 70 0 R /Im64 71 0 R /Im57 64 0 R /Im73 80 0 R /Im60 67 0 R /Im61 68 0 R /Im115 122 0 R /Im60 67 0 R /Im55 62 0 R /Im56 63 0 R /Im67 74 0 R /Im61 68 0 R /Im56 63 0 R /Im60 67 0 R /Im58 65 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im64 71 0 R /Im67 74 0 R /Im53 60 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im116 123 0 R /Im56 63 0 R /Im74 81 0 R /Im57 64 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im73 80 0 R /Im53 60 0 R /Im56 63 0 R /Im115 122 0 R /Im73 80 0 R /Im55 62 0 R /Im59 66 0 R /Im69 76 0 R /Im58 65 0 R /Im115 122 0 R /Im53 60 0 R /Im56 63 0 R /Im71 78 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im74 81 0 R /Im71 78 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im116 123 0 R /Im56 63 0 R /Im74 81 0 R /Im57 64 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im73 80 0 R /Im53 60 0 R /Im56 63 0 R /Im76 83 0 R /Im60 67 0 R /Im54 61 0 R /Im53 60 0 R /Im74 81 0 R /Im63 70 0 R /Im55 62 0 R /Im56 63 0 R /Im65 72 0 R /Im53 60 0 R /Im59 66 0 R /Im69 76 0 R /Im58 65 0 R /Im115 122 0 R /Im53 60 0 R /Im56 63 0 R /Im74 81 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im53 60 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im67 74 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im73 80 0 R /Im53 60 0 R /Im56 63 0 R /Im76 83 0 R /Im60 67 0 R /Im54 61 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im58 65 0 R /Im55 62 0 R /Im63 70 0 R /Im63 70 0 R /Im59 66 0 R /Im69 76 0 R /Im58 65 0 R /Im115 122 0 R /Im53 60 0 R /Im56 63 0 R /Im74 81 0 R /Im86 93 0 R /Im76 83 0 R /Im53 60 0 R /Im58 65 0 R /Im64 71 0 R /Im59 66 0 R /Im64 71 0 R /Im79 86 0 R /Im58 65 0 R /Im55 62 0 R /Im119 126 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im66 73 0 R /Im76 83 0 R /Im60 67 0 R /Im60 67 0 R /Im74 81 0 R /Im53 60 0 R /Im74 81 0 R /Im55 62 0 R /Im59 66 0 R /Im55 62 0 R /Im54 61 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im54 61 0 R /Im56 63 0 R /Im64 71 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im55 62 0 R /Im115 122 0 R /Im60 67 0 R /Im55 62 0 R /Im56 63 0 R /Im67 74 0 R /Im201 208 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im116 123 0 R /Im56 63 0 R /Im74 81 0 R /Im57 64 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im73 80 0 R /Im53 60 0 R /Im56 63 0 R /Im71 78 0 R /Im74 81 0 R /Im57 64 0 R /Im69 76 0 R /Im56 63 0 R /Im59 66 0 R /Im69 76 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im55 62 0 R /Im63 70 0 R /Im60 67 0 R /Im60 67 0 R /Im78 85 0 R /Im55 62 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im67 74 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im69 76 0 R /Im56 63 0 R /Im53 60 0 R /Im86 93 0 R /Im76 83 0 R /Im53 60 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im64 71 0 R /Im74 81 0 R /Im74 81 0 R /Im76 83 0 R /Im60 67 0 R /Im80 87 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im55 62 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im135 142 0 R /Im86 93 0 R /Im62 69 0 R /Im57 64 0 R /Im57 64 0 R /Im55 62 0 R /Im78 85 0 R /Im53 60 0 R /Im74 81 0 R /Im63 70 0 R /Im60 67 0 R /Im60 67 0 R /Im78 85 0 R /Im55 62 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im67 74 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im55 62 0 R /Im63 70 0 R /Im63 70 0 R /Im115 122 0 R /Im60 67 0 R /Im55 62 0 R /Im56 63 0 R /Im67 74 0 R /Im74 81 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im57 64 0 R /Im66 73 0 R /Im55 62 0 R /Im59 66 0 R /Im115 122 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im55 62 0 R /Im66 73 0 R /Im76 83 0 R /Im53 60 0 R /Im67 74 0 R /Im64 71 0 R /Im59 66 0 R /Im55 62 0 R /Im65 72 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im59 66 0 R /Im67 74 0 R /Im53 60 0 R /Im54 61 0 R /Im57 64 0 R /Im76 83 0 R /Im61 68 0 R /Im56 63 0 R /Im60 67 0 R /Im58 65 0 R /Im55 62 0 R /Im66 73 0 R /Im69 76 0 R /Im56 63 0 R /Im56 63 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im115 122 0 R /Im60 67 0 R /Im55 62 0 R /Im56 63 0 R /Im67 74 0 R /Im86 93 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im54 61 0 R /Im76 83 0 R /Im55 62 0 R /Im79 86 0 R /Im115 122 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im71 78 0 R /Im74 81 0 R /Im76 83 0 R /Im60 67 0 R /Im80 87 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im55 62 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im138 145 0 R /Im71 78 0 R /Im66 73 0 R /Im55 62 0 R /Im63 70 0 R /Im66 73 0 R /Im69 76 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im57 64 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im66 73 0 R /Im53 60 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im116 123 0 R /Im59 66 0 R /Im67 74 0 R /Im74 81 0 R /Im55 62 0 R /Im59 66 0 R /Im55 62 0 R /Im54 61 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im54 61 0 R /Im56 63 0 R /Im64 71 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im55 62 0 R /Im74 81 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im58 65 0 R /Im64 71 0 R /Im59 66 0 R /Im64 71 0 R /Im79 86 0 R /Im58 65 0 R /Im55 62 0 R /Im119 126 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im67 74 0 R /Im60 67 0 R /Im53 60 0 R /Im74 81 0 R /Im71 78 0 R /Im115 122 0 R /Im69 76 0 R /Im57 64 0 R /Im54 61 0 R /Im56 63 0 R /Im69 76 0 R /Im59 66 0 R /Im53 60 0 R /Im74 81 0 R /Im69 76 0 R /Im59 66 0 R /Im59 66 0 R /Im53 60 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im55 62 0 R /Im56 63 0 R /Im73 80 0 R /Im115 122 0 R /Im60 67 0 R /Im55 62 0 R /Im56 63 0 R /Im67 74 0 R /Im74 81 0 R /Im86 93 0 R /Im62 69 0 R /Im57 64 0 R /Im69 76 0 R /Im74 81 0 R /Im53 60 0 R /Im74 81 0 R /Im57 64 0 R /Im80 87 0 R /Im60 67 0 R /Im114 121 0 R /Im55 62 0 R /Im56 63 0 R /Im64 71 0 R /Im55 62 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im235 244 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im236 245 0 R /Im57 64 0 R /Im60 67 0 R /Im78 85 0 R /Im53 60 0 R /Im53 60 0 R /Im54 61 0 R /Im63 70 0 R /Im60 67 0 R /Im80 87 0 R /Im53 60 0 R /Im56 63 0 R /Im55 62 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im138 145 0 R /Im206 215 0 R /Im76 83 0 R /Im53 60 0 R /Im233 242 0 R /Im63 70 0 R /Im54 61 0 R /Im76 83 0 R /Im55 62 0 R /Im79 86 0 R /Im190 197 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im137 144 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im86 93 0 R /Im142 149 0 R /Im146 153 0 R /Im150 157 0 R /Im155 162 0 R /Im142 149 0 R /Im212 221 0 R /Im154 161 0 R /Im152 159 0 R /Im144 151 0 R /Im142 149 0 R /Im214 223 0 R /Im208 217 0 R /Im170 177 0 R /Im237 246 0 R /Im170 177 0 R /Im238 247 0 R /Im215 224 0 R /Im211 220 0 R /Im157 164 0 R /Im159 166 0 R /Im208 217 0 R /Im145 152 0 R /Im148 155 0 R /Im142 149 0 R /Im144 151 0 R /Im153 160 0 R /Im152 159 0 R /Im150 157 0 R /Im144 151 0 R /Im155 162 0 R /Im154 161 0 R /Im151 158 0 R /Im149 156 0 R /Im158 165 0 R /Im153 160 0 R /Im170 177 0 R /Im143 150 0 R /Im152 159 0 R /Im144 151 0 R /Im149 156 0 R /Im143 150 0 R /Im158 165 0 R /Im144 151 0 R /Im155 162 0 R /Im152 159 0 R /Im148 155 0 R /Im144 151 0 R /Im142 149 0 R /Im144 151 0 R /Im145 152 0 R /Im162 169 0 R /Im152 159 0 R /Im207 216 0 R /Im142 149 0 R /Im146 153 0 R /Im149 156 0 R /Im142 149 0 R /Im144 151 0 R /Im145 152 0 R /Im151 158 0 R /Im158 165 0 R /Im151 158 0 R /Im159 166 0 R /Im208 217 0 R /Im239 248 0 R /Im152 159 0 R /Im146 153 0 R /Im148 155 0 R /Im152 159 0 R /Im162 169 0 R /Im151 158 0 R /Im158 165 0 R /Im144 151 0 R /Im145 152 0 R /Im158 165 0 R /Im149 156 0 R /Im152 159 0 R /Im164 171 0 R /Im219 228 0 R /Im240 249 0 R /Im152 159 0 R /Im144 151 0 R /Im208 217 0 R /Im216 225 0 R /Im170 177 0 R /Im164 171 0 R /Im164 171 0 R /Im164 171 0 R /Im170 177 0 R /Im208 217 0 R /Im241 250 0 R /Im154 161 0 R /Im152 159 0 R /Im144 151 0 R /Im155 162 0 R /Im152 159 0 R /Im148 155 0 R /Im149 156 0 R /Im162 169 0 R /Im162 169 0 R /Im152 159 0 R /Im148 155 0 R /Im148 155 0 R /Im151 158 0 R /Im143 150 0 R /Im148 155 0 R /Im151 158 0 R /Im159 166 0 R /Im208 217 0 R /Im170 177 0 R /Im148 155 0 R /Im152 159 0 R /Im144 151 0 R /Im242 251 0 R /Im210 219 0 R /Im243 252 0 R /Im211 220 0 R /Im170 177 0 R /Im142 149 0 R /Im158 165 0 R /Im153 160 0 R /Im145 152 0 R /Im159 166 0 R /Im208 217 0 R /Im145 152 0 R /Im148 155 0 R /Im142 149 0 R /Im244 253 0 R /Im245 254 0 R /Im246 255 0 R /Im158 165 0 R /Im151 158 0 R /Im153 160 0 R /Im152 159 0 R /Im170 177 0 R /Im169 176 0 R /Im151 158 0 R /Im144 151 0 R /Im151 158 0 R /Im148 155 0 R /Im144 151 0 R /Im152 159 0 R /Im150 157 0 R /Im220 229 0 R /Im239 248 0 R /Im152 159 0 R /Im146 153 0 R /Im148 155 0 R /Im152 159 0 R /Im169 176 0 R /Im151 158 0 R /Im144 151 0 R /Im151 158 0 R /Im148 155 0 R /Im144 151 0 R /Im152 159 0 R /Im150 157 0 R /Im220 229 0 R /Im247 256 0 R /Im164 171 0 R /Im220 229 0 R /Im161 168 0 R /Im152 159 0 R /Im144 151 0 R /Im237 246 0 R /Im210 219 0 R /Im243 252 0 R /Im160 167 0 R /Im142 149 0 R /Im222 231 0 R /Im214 223 0 R /Im237 246 0 R /Im170 177 0 R /Im142 149 0 R /Im146 153 0 R /Im150 157 0 R /Im155 162 0 R /Im142 149 0 R /Im212 221 0 R /Im154 161 0 R /Im152 159 0 R /Im144 151 0 R /Im142 149 0 R /Im214 223 0 R /Im208 217 0 R /Im248 257 0 R /Im170 177 0 R /Im237 246 0 R /Im170 177 0 R /Im238 247 0 R /Im215 224 0 R /Im215 224 0 R /Im164 171 0 R /Im223 232 0 R /Im157 164 0 R /Im159 166 0 R /Im237 246 0 R /Im249 258 0 R /Im238 247 0 R /Im143 150 0 R /Im152 159 0 R /Im144 151 0 R /Im149 156 0 R /Im143 150 0 R /Im158 165 0 R /Im238 247 0 R /Im239 248 0 R /Im152 159 0 R /Im146 153 0 R /Im148 155 0 R /Im152 159 0 R /Im162 169 0 R /Im151 158 0 R /Im158 165 0 R /Im144 151 0 R /Im145 152 0 R /Im158 165 0 R /Im149 156 0 R /Im152 159 0 R /Im164 171 0 R /Im224 233 0 R /Im157 164 0 R /Im159 166 0 R /Im242 251 0 R /Im243 252 0 R /Im250 259 0 R /Im143 150 0 R /Im152 159 0 R /Im144 151 0 R /Im149 156 0 R /Im143 150 0 R /Im158 165 0 R /Im237 246 0 R /Im239 248 0 R /Im152 159 0 R /Im146 153 0 R /Im148 155 0 R /Im152 159 0 R /Im148 155 0 R /Im152 159 0 R /Im144 151 0 R /Im242 251 0 R /Im210 219 0 R /Im243 252 0 R /Im242 251 0 R /Im251 260 0 R /Im211 220 0 R /Im142 149 0 R /Im158 165 0 R /Im153 160 0 R /Im169 176 0 R /Im151 158 0 R /Im144 151 0 R /Im151 158 0 R /Im148 155 0 R /Im144 151 0 R /Im152 159 0 R /Im150 157 0 R /Im220 229 0 R /Im164 171 0 R /Im220 229 0 R /Im247 256 0 R /Im161 168 0 R /Im152 159 0 R /Im144 151 0 R /Im238 247 0 R /Im210 219 0 R /Im243 252 0 R /Im160 167 0 R /Im145 152 0 R /Im158 165 0 R /Im214 223 0 R /Im238 247 0 R /Im170 177 0 R /Im142 149 0 R /Im146 153 0 R /Im150 157 0 R /Im155 162 0 R /Im142 149 0 R /Im212 221 0 R /Im154 161 0 R /Im152 159 0 R /Im144 151 0 R /Im142 149 0 R /Im214 223 0 R /Im208 217 0 R /Im248 257 0 R /Im170 177 0 R /Im237 246 0 R /Im170 177 0 R /Im238 247 0 R /Im215 224 0 R /Im215 224 0 R /Im164 171 0 R /Im223 232 0 R /Im247 256 0 R /Im157 164 0 R /Im159 166 0 R /Im237 246 0 R /Im249 258 0 R /Im238 247 0 R /Im143 150 0 R /Im152 159 0 R /Im144 151 0 R /Im149 156 0 R /Im143 150 0 R /Im158 165 0 R /Im237 246 0 R /Im239 248 0 R /Im152 159 0 R /Im146 153 0 R /Im148 155 0 R /Im152 159 0 R /Im162 169 0 R /Im151 158 0 R /Im158 165 0 R /Im144 151 0 R /Im145 152 0 R /Im158 165 0 R /Im149 156 0 R /Im152 159 0 R /Im164 171 0 R /Im224 233 0 R /Im247 256 0 R /Im157 164 0 R /Im159 166 0 R /Im242 251 0 R /Im243 252 0 R /Im250 259 0 R /Im143 150 0 R /Im152 159 0 R /Im144 151 0 R /Im149 156 0 R /Im143 150 0 R /Im158 165 0 R /Im238 247 0 R /Im239 248 0 R /Im152 159 0 R /Im146 153 0 R /Im148 155 0 R /Im152 159 0 R /Im148 155 0 R /Im152 159 0 R /Im144 151 0 R /Im242 251 0 R /Im210 219 0 R /Im243 252 0 R /Im242 251 0 R /Im251 260 0 R /Im211 220 0 R /Im142 149 0 R /Im158 165 0 R /Im153 160 0 R /Im169 176 0 R /Im151 158 0 R /Im144 151 0 R /Im151 158 0 R /Im148 155 0 R /Im144 151 0 R /Im152 159 0 R /Im150 157 0 R /Im220 229 0 R /Im247 256 0 R /Im164 171 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im54 61 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im115 122 0 R /Im60 67 0 R /Im69 76 0 R /Im59 66 0 R /Im67 74 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im53 60 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im190 197 0 R /Im73 80 0 R /Im53 60 0 R /Im119 126 0 R /Im55 62 0 R /Im58 65 0 R /Im64 71 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im74 81 0 R /Im69 76 0 R /Im66 73 0 R /Im79 86 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im55 62 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im201 208 0 R /Im71 78 0 R /Im252 261 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im63 70 0 R /Im60 67 0 R /Im80 87 0 R /Im53 60 0 R /Im56 63 0 R /Im115 122 0 R /Im60 67 0 R /Im69 76 0 R /Im59 66 0 R /Im67 74 0 R /Im235 244 0 R /Im64 71 0 R /Im74 81 0 R /Im69 76 0 R /Im54 61 0 R /Im67 74 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im71 78 0 R /Im64 71 0 R /Im61 68 0 R /Im201 208 0 R /Im64 71 0 R /Im74 81 0 R /Im55 62 0 R /Im137 144 0 R /Im233 242 0 R /Im253 262 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im60 67 0 R /Im56 63 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im116 123 0 R /Im56 63 0 R /Im74 81 0 R /Im57 64 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im73 80 0 R /Im53 60 0 R /Im56 63 0 R /Im71 78 0 R /Im74 81 0 R /Im57 64 0 R /Im69 76 0 R /Im56 63 0 R /Im59 66 0 R /Im71 78 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im252 261 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im69 76 0 R /Im54 61 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im115 122 0 R /Im60 67 0 R /Im69 76 0 R /Im59 66 0 R /Im67 74 0 R /Im236 245 0 R /Im64 71 0 R /Im74 81 0 R /Im69 76 0 R /Im54 61 0 R /Im67 74 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im71 78 0 R /Im64 71 0 R /Im61 68 0 R /Im201 208 0 R /Im64 71 0 R /Im74 81 0 R /Im55 62 0 R /Im137 144 0 R /Im62 69 0 R /Im72 79 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im60 67 0 R /Im56 63 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im53 60 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im67 74 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im73 80 0 R /Im53 60 0 R /Im56 63 0 R /Im71 78 0 R /Im74 81 0 R /Im57 64 0 R /Im69 76 0 R /Im56 63 0 R /Im59 66 0 R /Im86 93 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im57 64 0 R /Im80 87 0 R /Im60 67 0 R /Im66 73 0 R /Im55 62 0 R /Im74 81 0 R /Im53 60 0 R /Im74 81 0 R /Im80 87 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im54 61 0 R /Im56 63 0 R /Im69 76 0 R /Im59 66 0 R /Im53 60 0 R /Im74 81 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im206 215 0 R /Im254 263 0 R /Im38 45 0 R /Im255 264 0 R /Im51 58 0 R /Im256 265 0 R /Im233 242 0 R /Im57 64 0 R /Im55 62 0 R /Im115 122 0 R /Im60 67 0 R /Im55 62 0 R /Im56 63 0 R /Im67 74 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im116 123 0 R /Im56 63 0 R /Im74 81 0 R /Im57 64 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im73 80 0 R /Im53 60 0 R /Im56 63 0 R /Im71 78 0 R /Im74 81 0 R /Im57 64 0 R /Im69 76 0 R /Im56 63 0 R /Im59 66 0 R /Im71 78 0 R /Im64 71 0 R /Im61 68 0 R /Im55 62 0 R /Im74 81 0 R /Im69 76 0 R /Im66 73 0 R /Im79 86 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im65 72 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im74 81 0 R /Im55 62 0 R /Im63 70 0 R /Im55 62 0 R /Im56 63 0 R /Im65 72 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im69 76 0 R /Im54 61 0 R /Im79 86 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im115 122 0 R /Im60 67 0 R /Im69 76 0 R /Im59 66 0 R /Im67 74 0 R /Im236 245 0 R /Im71 78 0 R /Im60 67 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im74 81 0 R /Im69 76 0 R /Im66 73 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im74 81 0 R /Im59 66 0 R /Im53 60 0 R /Im53 60 0 R /Im67 74 0 R /Im59 66 0 R /Im60 67 0 R /Im57 64 0 R /Im57 64 0 R /Im60 67 0 R /Im115 122 0 R /Im53 60 0 R /Im114 121 0 R /Im64 71 0 R /Im74 81 0 R /Im79 86 0 R /Im64 71 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im86 93 0 R /Im254 263 0 R /Im38 45 0 R /Im255 264 0 R /Im51 58 0 R /Im257 266 0 R /Im233 242 0 R /Im57 64 0 R /Im55 62 0 R /Im115 122 0 R /Im60 67 0 R /Im55 62 0 R /Im56 63 0 R /Im67 74 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im53 60 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im67 74 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im73 80 0 R /Im53 60 0 R /Im56 63 0 R /Im71 78 0 R /Im74 81 0 R /Im57 64 0 R /Im69 76 0 R /Im56 63 0 R /Im59 66 0 R /Im71 78 0 R /Im64 71 0 R /Im61 68 0 R /Im55 62 0 R /Im74 81 0 R /Im69 76 0 R /Im66 73 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im65 72 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im74 81 0 R /Im55 62 0 R /Im74 81 0 R /Im58 65 0 R /Im55 62 0 R /Im63 70 0 R /Im63 70 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im63 70 0 R /Im60 67 0 R /Im80 87 0 R /Im53 60 0 R /Im56 63 0 R /Im115 122 0 R /Im60 67 0 R /Im69 76 0 R /Im59 66 0 R /Im67 74 0 R /Im235 244 0 R /Im71 78 0 R /Im60 67 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im74 81 0 R /Im69 76 0 R /Im66 73 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im74 81 0 R /Im59 66 0 R /Im53 60 0 R /Im53 60 0 R /Im67 74 0 R /Im59 66 0 R /Im60 67 0 R /Im57 64 0 R /Im57 64 0 R /Im60 67 0 R /Im115 122 0 R /Im53 60 0 R /Im114 121 0 R /Im64 71 0 R /Im74 81 0 R /Im64 71 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im86 93 0 R /Im190 197 0 R /Im53 60 0 R /Im66 73 0 R /Im55 62 0 R /Im69 76 0 R /Im74 81 0 R /Im53 60 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im69 76 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im67 74 0 R /Im64 71 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im74 81 0 R /Im71 78 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im60 67 0 R /Im61 68 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im64 71 0 R /Im74 81 0 R /Im64 71 0 R /Im58 65 0 R /Im54 61 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im55 62 0 R /Im59 66 0 R /Im57 64 0 R /Im71 78 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im80 87 0 R /Im76 83 0 R /Im64 71 0 R /Im66 73 0 R /Im76 83 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im74 81 0 R /Im69 76 0 R /Im66 73 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im201 208 0 R /Im258 267 0 R /Im80 87 0 R /Im76 83 0 R /Im64 71 0 R /Im66 73 0 R /Im76 83 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im69 76 0 R /Im56 63 0 R /Im53 60 0 R /Im64 71 0 R /Im74 81 0 R /Im66 73 0 R /Im55 62 0 R /Im63 70 0 R /Im63 70 0 R /Im53 60 0 R /Im67 74 0 R /Im80 87 0 R /Im64 71 0 R /Im57 64 0 R /Im76 83 0 R /Im86 93 0 R /Im76 83 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im74 81 0 R /Im71 78 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im56 63 0 R /Im65 72 0 R /Im53 60 0 R /Im56 63 0 R /Im69 76 0 R /Im54 61 0 R /Im67 74 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im115 122 0 R /Im60 67 0 R /Im69 76 0 R /Im59 66 0 R /Im67 74 0 R /Im74 81 0 R /Im64 71 0 R /Im74 81 0 R /Im58 65 0 R /Im55 62 0 R /Im67 74 0 R /Im53 60 0 R /Im71 78 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im56 63 0 R /Im65 72 0 R /Im53 60 0 R /Im56 63 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im54 61 0 R /Im60 67 0 R /Im74 81 0 R /Im74 81 0 R /Im64 71 0 R /Im115 122 0 R /Im64 71 0 R /Im63 70 0 R /Im64 71 0 R /Im57 64 0 R /Im73 80 0 R /Im57 64 0 R /Im60 67 0 R /Im76 83 0 R /Im55 62 0 R /Im114 121 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im69 76 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im76 83 0 R /Im55 62 0 R /Im74 81 0 R /Im86 93 0 R /Im60 67 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im57 64 0 R /Im56 63 0 R /Im60 67 0 R /Im63 70 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im53 60 0 R /Im118 125 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im69 76 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im76 83 0 R /Im55 62 0 R /Im74 81 0 R /Im115 122 0 R /Im53 60 0 R /Im53 60 0 R /Im59 66 0 R /Im55 62 0 R /Im57 64 0 R /Im60 67 0 R /Im54 61 0 R /Im64 71 0 R /Im66 73 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im54 61 0 R /Im76 83 0 R /Im55 62 0 R /Im79 86 0 R /Im115 122 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im133 140 0 R /Im72 79 0 R /Im64 71 0 R /Im63 70 0 R /Im74 81 0 R /Im74 81 0 R /Im60 67 0 R /Im59 66 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im83 90 0 R /Im139 146 0 R /Im86 93 0 R /Im184 191 0 R /Im60 67 0 R /Im56 63 0 R /Im53 60 0 R /Im119 126 0 R /Im55 62 0 R /Im58 65 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im71 78 0 R /Im55 62 0 R /Im59 66 0 R /Im53 60 0 R /Im55 62 0 R /Im74 81 0 R /Im73 80 0 R /Im80 87 0 R /Im55 62 0 R /Im73 80 0 R /Im57 64 0 R /Im60 67 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im57 64 0 R /Im56 63 0 R /Im60 67 0 R /Im63 70 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im74 81 0 R /Im57 64 0 R /Im60 67 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im74 81 0 R /Im69 76 0 R /Im66 73 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im115 122 0 R /Im73 80 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im57 64 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im66 73 0 R /Im53 60 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im55 62 0 R /Im54 61 0 R /Im54 61 0 R /Im63 70 0 R /Im73 80 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im63 70 0 R /Im63 70 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im55 62 0 R /Im54 61 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im55 62 0 R /Im66 73 0 R /Im76 83 0 R /Im71 78 0 R /Im60 67 0 R /Im56 63 0 R /Im55 62 0 R /Im59 66 0 R /Im62 69 0 R /Im131 138 0 R /Im117 124 0 R /Im55 62 0 R /Im54 61 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im55 62 0 R /Im66 73 0 R /Im76 83 0 R /Im71 78 0 R /Im57 64 0 R /Im60 67 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im74 81 0 R /Im69 76 0 R /Im66 73 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im71 78 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im74 81 0 R /Im71 78 0 R /Im80 87 0 R /Im53 60 0 R /Im57 64 0 R /Im56 63 0 R /Im73 80 0 R /Im57 64 0 R /Im60 67 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im56 63 0 R /Im69 76 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im57 64 0 R /Im60 67 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im57 64 0 R /Im60 67 0 R /Im76 83 0 R /Im55 62 0 R /Im114 121 0 R /Im53 60 0 R /Im53 60 0 R /Im118 125 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im69 76 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im53 60 0 R /Im119 126 0 R /Im54 61 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im61 68 0 R /Im60 67 0 R /Im63 70 0 R /Im63 70 0 R /Im60 67 0 R /Im80 87 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im55 62 0 R /Im67 74 0 R /Im114 121 0 R /Im55 62 0 R /Im59 66 0 R /Im57 64 0 R /Im55 62 0 R /Im65 72 0 R /Im53 60 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im64 71 0 R /Im74 81 0 R /Im55 62 0 R /Im54 61 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im55 62 0 R /Im66 73 0 R /Im76 83 0 R /Im206 215 0 R /Im252 261 0 R /Im62 69 0 R /Im131 138 0 R /Im117 124 0 R /Im64 71 0 R /Im74 81 0 R /Im53 60 0 R /Im59 66 0 R /Im60 67 0 R /Im69 76 0 R /Im65 72 0 R /Im76 83 0 R /Im54 61 0 R /Im60 67 0 R /Im80 87 0 R /Im53 60 0 R /Im56 63 0 R /Im61 68 0 R /Im69 76 0 R /Im63 70 0 R /Im57 64 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im80 87 0 R /Im64 71 0 R /Im57 64 0 R /Im76 83 0 R /Im66 73 0 R /Im60 67 0 R /Im58 65 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im119 126 0 R /Im74 81 0 R /Im57 64 0 R /Im56 63 0 R /Im69 76 0 R /Im66 73 0 R /Im57 64 0 R /Im69 76 0 R /Im56 63 0 R /Im55 62 0 R /Im63 70 0 R /Im67 74 0 R /Im55 62 0 R /Im57 64 0 R /Im55 62 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im60 67 0 R /Im58 65 0 R /Im55 62 0 R /Im64 71 0 R /Im59 66 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im74 81 0 R /Im86 93 0 R /Im233 242 0 R /Im115 122 0 R /Im60 67 0 R /Im55 62 0 R /Im56 63 0 R /Im67 74 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im116 123 0 R /Im65 72 0 R /Im69 76 0 R /Im56 63 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im64 71 0 R /Im74 81 0 R /Im53 60 0 R /Im119 126 0 R /Im54 61 0 R /Im56 63 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im53 60 0 R /Im67 74 0 R /Im69 76 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im55 62 0 R /Im63 70 0 R /Im64 71 0 R /Im74 81 0 R /Im57 64 0 R /Im80 87 0 R /Im76 83 0 R /Im60 67 0 R /Im74 81 0 R /Im53 60 0 R /Im53 60 0 R /Im63 70 0 R /Im53 60 0 R /Im79 86 0 R /Im58 65 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im74 81 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im57 64 0 R /Im53 60 0 R /Im56 63 0 R /Im58 65 0 R /Im74 81 0 R /Im53 60 0 R /Im119 126 0 R /Im54 61 0 R /Im56 63 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im54 61 0 R /Im64 71 0 R /Im53 60 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im130 137 0 R /Im64 71 0 R /Im86 93 0 R /Im53 60 0 R /Im86 93 0 R /Im71 78 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im64 71 0 R /Im56 63 0 R /Im54 61 0 R /Im60 67 0 R /Im79 86 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 214 0 R +>> +endobj +214 0 obj +<< +/Length 658 0 R +/Filter /FlateDecode +>> +stream +x¥}K¯5;nݼÅÚVéQÇ@& ÷ФÝîä¶ù÷Ùµ¬}Tµ$q±`Àðþ|¢øX")êß~õ÷_ÿö«éë?õo¿Z¾c_á;ÿû¯æï5¯)Nßi_Kïß¿ýÓ¯~ýßþ´¯¿ù_ýýå{/òw;U÷ï@±RLÓÂëÿ½6(¬ßÓz¥0§+a´<¡5XÌß󼨾·pp°ÿ5¤Û¦ï1%/ñÊBóB{'g÷N*¸qÐãMb\¿ç«-aJ]¶T!ÛÕyKh ÁÁfâ�ßåõAÓAàeXåä`¹qÐbÅ&Ŧâ7Òîâ¤BøI`ED¤`Mmiñõ´ÈÓ¹ÓE²60¨XXÂëÌp0ß�ÜÒô^k/§òvKqyÿ>¬%,å{þZ^{ç¯?}¥°}~þòãç_?Ïÿöýë_¿#ï[0¿Mc^ÆNeoö/ÖxleMà®Ñ`+Ò÷òúreÂû§Ì¶h#�üäÕÌÁd!VÈÃRBaZd#* +wnóóÃâxÁâZB$}ÜÇþóª7Ùæ!g$ÉlñoJîæ]íÝ,ñénÎp7ï(ïm·Ëí½f[ÄÞ°e9ÃÇÏOÙî¦å±FX«or�N)¬h/Å?Nnt7èÒ\EF'ס½ÝGÅirÛÅ!8IØ¾È pú¨b°ûêüÒló0À.ÊwÙyÈI$ß¿U0-<äùaØËÁbÂCÙb°{Ú8F5CwqܼéC{/N/7Øè' +ÈGMåæ«¡|KrÍh7³Ï02zû÷*6lÝvO·ù! +zݦ�UÇï%ìä°_Kr±ì ò�WAhÔ"¦xã>XP} +5v»Ru +169Ðì@êtlCE Nørõ 0¿8ÙòÀÍKÂ;aôúð Þ?¼Ø\ì~2ÚѼnýQÓv^ç~¤i#pà+.ê©�ò@hó4ÍÂÃJûGåaC« Ôq R 0½$=.æojË!ŧrHÜçõC·y(Xsf:IL +´Ë^¼× ~?ÞØÍåñn.ŦÕݳI³MzJal>ªs¶9ÐðÅOÎÛ~N?¹Ñ§úlã 9Û\)XpR0úÉ6A(l}Lß¡°IÆÉbÊ(lðæv?«èù{?Bw[òlÓ6%ØxhKòåiMìÐñ¢óòÐËÅÚá墮ü>*.0vß)4cV\g³l·emÉfm»ØV]tNGÐWß1Ls)fA.P,Xx¥V +R Òõ +G<tà¤8¹ÅücB<PÉöÕF¡iE©Þ=HðWH[éHÇ5Ýä¤Î~¸É¦Jîu²ä§:©®Ú¡² +ŽdõÁNH»xAÐëkFµwsM¶ÝlSØ"ÒÉ;êb¼öAJÒ®1 Ë¢@ñ´ UÜÃEB¾H`Ä8ÛäÐNð&/,$ð¦rjT7ðvxdÌÒð0´6ùiÔŸm,rÔ[G=°õ{}}ÖÛÙÏóf®8§n=+ÎvÕ{Ní×»ð@©byxøÀD0q±ñÐΩ%qQ5Ò*7\;P¥goÐ+ËIO�´¾tÁyN;ÿh/:Á_Îi90Ù(h\ÕÉFE¤QD}xZë4^x Þ´A90A/@9Ü-«}Ú|ù¨·£ä`«¬â8}xèfÛ«¸Du7úõá¼Vo@::ð*|ȧmúÎí{¿ÀCRø0Ò¨v6*Ͻöø#μGìB±þ¡ @¤*X @ÄE©qA+Ï\xp�2(öH¹Ç�dÄC¨$ù¶ª�ñСPT«ßöVñ7.{z³@Þ§¸&ðTKz*e r ܺÙxhkõjõy°ÃÉfêä:Ù¡0?´Í=ûàÕ(-©t·¦(üf7wpxûºæÖFÒɨâÔ>¬Ow³w³üg¸]Äò@ä»ÏbÖHm`¾dhY\üÖÅ,èa»Ð¢¿_«7@^G; ÕTP^4# +ê\ËzÁkg¼Ð*NM¬âÜyà®LDÈ!´>ªæaºéCLPöëarvX_üó²Ö`.«°XÏÆ¤Ñ*ÚHlÁr RA©WajªI®Å&Éá«NZ¼½´ºiÁýE½|¢8jE»IÔäö*ÎA!{ýdXŲÜÑ_ÛròFÿisû(ÅQËS9h'óñBrR9âEZé¦ ³£ø½q«:o +5ì(ÙÑQ¼Ûvï9©YnÓ_'^â7z4¨)0Ç4=\x Ýz4¸ðÀ´_@90:ÛïÿÒáæh}HqgcJå©$µýÂ!IÀäãàÅ*´cAfAÕO F19û²ØäÐÞM=øwSî[ztR)¬Ð6m÷-ððX'¨DÆýlyùYggõ +%iê�³}v-ùË*~VÑX'ð�åÀ´èý÷^ì}ÑÏôá0IJFïv³[zæaÎÎj·¯/* +ÌA/¦õ¡9ÚüC§Ul>ªJ +O5ªä§UÖ§5X'!%iªé $^ Â迯[¯Lå'$·Ð=ÄSès�G+ý¼d7U îhÉé«bV·<;iSô9M¢Ò¯O)¨«)P zAP¦s/Ù´A +xТ$#R»ÉHRÔ ÑSTÜ03ÜM¦9k9©\y°98ëqÓ ù¢Ó Ý¥`ËÐê�9PcäZûP:P0At@ÁÑ^t®ÈAfÆèz71¼¬".p/6=ôÕgGòH:×ô¤zRKs°CÁ¥ëþ´!90`ï¦ýjùY¼ì&3@$<ôrgUÑíåΪâH';Wä $ZXܲÍ6Û{±mEûÁ? lCÍ«åI¤{åî,»$õ\²3õ!! +w³hãÂjãaH×ÉMÚýYQ `µÒ0P¨NV;θK~´ãc£²òàíaÝs´*ç!IAñEƨ%É4FÍÑÆC§ÍM.°ÒêD»hdûwóÓæ4¤fX/þ�ÅZà ÕÉÑ&·$?ÀÜdÝm}Ðqð³bÃW;fW<m§S²YVLs6¸mSÇ?Øy°·EýܵϮðz{¥`´îNv3?ôQg§¾ÛGÅÆFÚîçF '0w#sv èl@?+ÂQÔ!iõã¨z6 ľÚqß0"µ# ${ +Rë|w¯ eg¡¼ú3ãn9ùW÷²O�ëq0ʸý|øpÀgÜw +Ï2îeÝfÜk +\Æ}yJAP.¨û(P÷pî 7ã¾@ +LÆ=AI÷÷ʸG Q\Æ]öâ"&ãÝrÐãÉúþyåɸçÓ¿83îÖ&ãõ¸¶Aëf8¨LË@þºH<#f.LJûG«5ë¿A¬FEeýýþA¯OÐ?0Yè«8*ñ>ªs÷Up$õ«`²þ%¹=æì¡V3vÆ»Édýá²þ~9èÑà©§Ý&ìdý¡ußÅ`?ÛÐà0ëïÙ:ë?ä¡õ½ØÓZO²þerõ¿Ppdý<³þ +¬MÁõ¿ÊÏúupYÿá^³þUÔYÿ²Ì0ë¿ËáYÖÿª|ÖÿJÏúyfý/úàÈú%9æÝ¬³þWâ³þWÿÀgý¯ä³þIÖYÿ¡u³þ×UðYÿë^ðYÿ¡§fý5ÌúûmS³þ~ÛÔ¬ÿ½H>ëï·,Íú{¼}õò0Ìúû}Ô{}fýHR²þ~¢Y?Ѭ¿hÖß@4ëïG õ÷#ÍúûHüá«eýýD³þC/7ÌúesïõÙ¿sîóReý-Ãäë¬ÿ=z̦ìÏeý `æSç^](P¿E!_gogX®)tÃ<Ps¯ä9"mf^îsÐÓ</J�<P½RJrNOW1CIRS« $+¸2májYDfC{Abd¦¹mPâx¢=î¥ùr9*^(aWóåî½8AõH«ÛY½¸ØüC§·[5jq?PÆ;üΫÆú@\§CGÐNnR8ªv¥Y*ïl@L¦§¥)V·Fé*ýh®B»Ã«h te¥³h«(î¨)#Ô/¥H®ôiø,áæYBñ³e°ÃWI2ï§þÔAÕhvè�Y $Q +['É,^/©Ó¿ZÝ?÷)hÉ[áÜg¢Y;Ìü:¹BeJòêðòEn»8ÑäÈ.Ú(jE²tòÖP«;ï§ bnDŸÚ4ª-dC{z^½ÈÁ^Ú<Ѥ/ä'ÜÔ¡½`3ÔI&±8C_Í$5=:Ú-îU\q³Õ§hu'=:ÛbV§oJÊ¿CùKî¨{/WßKv§äzü S#«fØ4%ÈíÁòÂê¦ ò@=*¸ 9BÚéé*´¡x´Nßê׸Ïä>tº/tîã <·u$óÒ6Ô(&Í;CÛ¤^B¶I¥y5\äÐ,~ìïd¿ÝdîV?^gþ*©|¯ó×^~mûüüåü9¿°Ó/_òßʯ?|ý¾ï§ïåÅÚ"Þúu~^~Tqnj¹~Ï× ¼62|0{÷Àg ôúêªëw\ÃùöéN"þÀ·øyxSáW +÷I¬m&âv®ãCbºëÐl¡ Ö7ß^^¸P¸Ïl/£`IÜdÙ!1/6I�ëÞDµÝ>¿<ñ£TéfãmIhh½t³ñ6?T¦bïnj¶NJrïyÐ&Î/¸y¦$bÂæEH"çÇÐÛÆã,}âµ,Í>{ .$7!Þ.¯Û`C;Þî°Ð p[®MbÂ$.^èéBòd[HÛFË|®Hg ¸Å¯°ÙÇá.ülxK-ðP[n^)Ü!IÛ>ä ®ª©Û=PM½r%a£ú.ÜÂ-¶=^ùØy×ãµ·cƲ$ü¶LÂ|`q}j¢ª/léE$îj@³;èî¥@àÃx�p¢î2î¤@`=}]a2ñå;Ä7Ü#³¾×ü¥åôuü<f÷:öy½Àyãø^æi]¾·¸9ù~ß/»<þiú@sZ'¬ Üð� ¤Lx%1$¤[˽ڬåÞ=ê8vA³!éÔÃO6¤XÂôz]`I hëªy/¡K(plµ½ýM½½(gm·vë×}jo`j%,² {ºgAÒwF³·kÏåí±D,©á`Eæ|ç C�³å¨*69w¼Mo¯Û¨7ª/ÛhQ¤ãbx Ç0ûæ'´¦ÞA2°»õ}¢¥$H×à »*ë&¶ d¨¤ Sµ¨²(Øê~×¢Hm=Ó3¦w5F»Ðô¦·g¸_¡¶øDèPÞ2¾¶kÜl�£½[~è¤!ÌÁÁñO)Øla825¿l¢| æIuÞºcKMM1ój¹ÆµúïÛ®îp¦¿ßêü}"Êúýï»<^=w/àLÔU+0AÁgÓG=|ÖÁéí¡åä¬Ð&0G ¹x!`9jh^DìàfÊ+ÚFâ°SlBl/A~Év_4ͮ۸uzÀ¼ôÓ.énqAïH=âì8X xÐ6"»Þ£ûH` ƨc`?íìc^Y ¬^!*Ê Å³�âà¾6¾z¹¤7¾zv×3BB¤´v"!èQCXìé-¥¼j{ 2Ü߯+ÔDBzpÈ R!ÄrT¯(&*HÝ«6\l9¡ïoÜÜUÿþê;©(Ȭþ¾éȬc?%*ŵÚU3¬W@(Ѥ¹ZöÌÇ$/Ø\dÈXLÚKÐî»�<²ôÄ£´cúá×áø×÷äµøË.XÚÁ? íC?@3=Aef¤PiÛ@Y¹Î@ï,@P^¢É:DÉ#FýÞó]ö80 5%|¢qÑN¶)R@zæPbaÉ~`::Wê×YÝqAÛ¶ÜqáÚn¤ìÂ4,dh´DH_ãrl"mèì�GïJ»^ö«â2?TÅ£«Í;@Å6ëopH{àUÇéàTé¥(ÒÞss³¦ê{Ò~=: ô¾âÑß'àFèÖðDiÔx2A"@À´'´_K!áÒg]ùÌ({¶ñÀú+Ðä ÈigÈ¥'îQ® õ3´ÊYx4bÚH¦Ôæ¤7°\N:{ ZsÒñ¡2+Ö®7HäèÖ<\@0éÔ )³É¥÷ýÝ»K1ÞÄx:µõýû =4½àøÎì'èE·á>Ú!ð,º½^Ü"(Ö.` ÷$L{¸Db~yjM¦Ý©-»:Yí£c¤�£]¦Dyk¬¡rÈ]ShÆgm©¿·gTßÑy-¬¾§s@0ÁYÊ%ÀÈX%ÃÜmfkÃý8!Dpüpàk¯kãµeyÐ|ÄAê®hìÞdôÈfÄqjÔFõ6ÖP-'oÍkÏ&MêedÆÎÎwÏòÙ^O+#;+Òe¦a_ªÛ´Ëk:ºÈ±ÉÉC ~&èרìö(S=nyº·ÜTåónÝ@;8uzϰ7:Í|pÔãø,²WûømTÀ4,ЯÆ$£F2hCíÕæ;HÙæÛ¶°%-Go^8`.Òã.ìÖ(@7½V⺿³+½»¯E8É÷É T¥§&À\Lè{ P® 0·Â8yp´6 rÙD¢ÏY§iAi¯ÓZ¢Êp]HhMw.¤EzÓºI¬öÅÚ)#!07kõ>àÈ:P*3q\X 2 +¥VyÑ¢iYMÚʼڹmëìiè{#tjLÕ<Ì^(Ð &=hs0¹wA9@ Áêí±ÍÚP;Sto/!£%^qïxdÎúúÒÈÛµ²Üj³±OÒÒïëkW½úÞnÌ +pº G�ξ'j·ÐM}Zô΢L'©Ä;©xep´^ì· ô[/ÚKH¨$VÜLzÐÉ%¦s¹ÄÅ$ÅvÑ:Ãm`ÖPÈäG4Y³ª`ò¨ +O&1`} öL@åíJþÒ"u@f/ïhÉÚíwxbqíÐ<¥_hP\`2@1!سâúCtúöÌõ"×ÈÛÀªÅ#éãÁ´a*Ñí4x,DÿÆÑ_jtImÖøÌ!è~`DIM£ÃG gØÝé;Sç~ÿHgNè{§ð½QßÝáÿ\¿ÝIu)ÍÎÆ38÷ÛgÚàDCw|åæ n!ÑU¨1¥&À[¼J SÀIEj\H »:y¸é80Ît3Ùg\ÀÁÁâ;1êȶÄÜÃ@ôEjHXs�äÀR½þlZCÓ·ýKØ &o˺}Ú½>íÄÉ^¶·v>òiÚÚéöiÚÙéöi:ËïÓN:B§7t6)B'8`Âe6)BçgNQKæ§x¹ó [¼ÍvjD^~E. ÙÕ1Ú$%o¿KÁ8ÍÕß'ÿ¤@¹dVtø®êïíuyù×°4à¿ô¨S0e4+¾ x;;广Ú"y¢óF: aåàçîWÆïZÄyE+Þ¼JO¢ôî|³Å4\s@äÄTeãIo©ßfdLS£\8Ø·Ñwè&2Íò¸æHÚ@jR÷óqN¿°K%¦)Ö¯e@Ô¶ÅD Ù´F{-¨Ê4¢i:fäÒøÉ`îÀ±OdzSË3vVÜ.Ó +}"ÓjïÍD¤>ÇJd¯ksëôÌO¤îuëûDg/1R\52½Ø¥ÙHñ^kÜà.÷ 7¸ö%è-.W®~î7\¾§¤Üï«l#õþ>´%°ÖXúêÛ$ØÆZæÌÎþb}ýó²æÊ-°z TF9B!ÙÔôPôZLB8#Mb ùìl;sÚ5L-IÆP=÷ÛñÆP={ç§Kád]°!mxðÌ!¬{öæDÚ[hË`K~×ÈÖgÛxfÕ½Û5® üz'-¬è5òUzÁUW+Æ<OâCvBu¯KÓÑb£ØÖIª/H â2 +¬ï +Ã3¯¼ñuÚf5v²òÁ¤HíFÄ#S!NRý©GHñÛ:¸CÓ±éStúDZ[·qOkzªýê{â± +¹RöµI¯²Õß'®j±xÀ;°Êíè¦.8`nÂÉíh?z!õ@ç´ÑmÞ5ÛHñw×¶y{õHËð+Rz@ÔF4 Uó¬´&lQ¤)S`1@~=X¡93 4PÌ`¤HÌYá©KO]Z.IãMh í+t ¸H=vñÐ+ëÀw\Ð~2ÚfjFF^znj"õÝÖ(õ!í÷Æ}TίH~¦)íø,.mânE.8yæÄ«%0'÷öGû¨»°;GjÊ@qrõ=qÔÐÛÑ19'F¬àïm?z}Oøô:#�XÚ¦kAïF×[Ht¦jTr/!B�+B,z_jDç *\ë1±dÀTg´)³¶{µZßbw¨²âd¨ÄÎêqa@+µEjßÌ]$5m¾jõþ^E:8Êi4¶@hâjb'§M>½}gâ Ôßùä}~n'Ü´ =%l!)ñaáhýåÈh«WNÎ6öÐÏ4ñDên2LÔkù5ÆòÐ+ê¯\µ¿¸IÛ_ÔA< V©'ï6*Ðvë@êGþ(9ùÁ6vRêP¤>rëDFûìøÄæ$h¥´ãÍóûÕÄÒTõ=±zÚª¿·û3þ~§ý%�0IOkStü5®U,ÇIÛ:y M%.Y¡z2èôÊ˱½ZÓþ "cë×n}0Ø TK°§ÎÑ'ÚH[ãÚK#]¯ÑOòàëHÙpPÄyG±þÅ5hi°Ô¶ù¤v\ +á5Ý'^k:»Oª%0y¼ qÀÌP6íÀ¼ÐîÁ:@׿UÛhJÚ½åat3ïDÍ]qçanHÇ.¶È2\ÂË@ºíµydàU;å ,ºª72½.)é8^¨BU´ç¡$§ýF̯,§Ë÷v ¬¢È» <Ƭ@÷õ½Ë¥PZóOxä³÷£bàîÎÚ WLXD|Ãk嬱=¨q$½}ÇI]àò½ÝtçWçÇõk÷ÊNgüËD@¹ëÞEúîMÒêÅíÔCßÄìÖ#á ¯&:H?SbÎ iä¡ù3,á'pðFÛй» )kØÈ; G#4i&MÖ.K º6èº� +¦ll}Xq/A+£%têêU A¯H$µ0àv«ú8¡_ iÝ(ÐãM;-<Pg¸8¦×ÐåÂÀòïzò=;ÿ¸ CÀC§Nm8ÁÆõ¼äÖ$9Ò¤&ÚNái¾ Ì4ß{Â\·w$±ùiþ¾~·j¬=ø¾EæAb¿C²À\lUèäí8`ð ¦Á:ýù\_¤@àdÀô^ÈnMÔf÷�sàP´>bîÏHntÞß¼¼Ì4÷+ÒbA{NæÝÆi"õ8a0-¡3A&?ó©'Öæ¢NAbâ»ÝÝ.I{hÜ^5ÊCR#¯Ú!°¬©OdKÀ3MÌ+ÚîÓlÏÚ6 ËÔgF~Aë3´fV#ÄgY%"àbÙPÏ¢ãt»Ð-'Ò¦5iV¸8ëòêíþ½¨)eº0 @5ïî UPóojøL¹¹J§Ie¯tÔbMðF{RÈÀÞwÂT¯0Õ«Eú6àHm¤-²æÀ:P*wîêßwÇþ¥H´BI_äE#×d@E]® ÈàTÈC`5éA§ÎÀLQÊÅ#!t`æäÝ̬ 08Å¢Ô¦Oû]8°¹´E6 +b媤(#Ui¬ôÞ¼§#¦Õ:<óì'Ìxö1̨b{ K6-¡ó +v4ANJé²éòlãº=ÜÆíaNåZPÜZqjÎø¬yõ}¦²'<ë&VßÑYϯ¸³F ¦Qzdb³´5^8`îuj:nÍC`5)A§QZÕ8xj�Ýz«é!s³4CC`²HyMȺ5±@M,3ÚcÕü}1tþh¢k°^ËíB)CÀ4?D¤|§ö ;ÂÒNí«O'Vx¨Ëúü;*)Ý1t 6ÜGjCUsm~¨Íè´NÅÚ*¨íõª'ÒvëAAÆÀ\§+p KbÚ/f$OB×H²gãÿ÷¹U«Þ^,Wd9º^s"m/ÆIO]ùsc ,qsfte»[ñ uß3ÏTFô=QFj3Î&íÀªõ +rñEH´NÈHïZ"ß>¥ÏB 3Ñ; %ðFqr¼ÉHx£ÙJÔôiÕµLXpôt¹}maFªB<j¤6Ry/qi6×{±Uî{Úë¾×à +{S6qо×:I£·û^«fÝ÷Z#q¯UfEÿ½V½µà¾×*s7FØ)}4ÉW¥Sê¾%.s7¢÷^«ýü¥P=³"!ÞQvMºe°!]¾Ë CÀ&ÄÎqÀuàx§NæC3ôªÌ¡9â¸áç@àìï7GìPÐ)2 ÿHÒÅ&ÎÊ®¿<®ç¡y ãò?üC8X"ÙéLÑè:íúFW»"å%OpüY^ +tÌñOÒ5 î·afß·>$ª\¾·Ãd ©Á[ìÖÎ# qêh ââ)îLHD?á^z¨¼~å¡É«GÚIåVd½O>¨å!ïU{ºÓ`V@í +î^®Ùf Àôri'gF(hNDnMHë¹³ß'½°2¸º 9`*t«DÎ*¿Óµ10·k*RWj¬}qIÄFÁÚîØ¦ö/°ÌYBBáyý'Cc"pf¶É�êÁñÖg|7[5&¦DödéFÑ +×bó,ü£³îèª`Ý]M:½dÙ³qARÂïF[Ï©Qr@ïéN°ú{B «¯ÎJïþ>Î ¤Ë´Ô¡�÷&$j>6 ]Ê=ç*KLgLªZìV01ÉÝI¶dÐÉH/�¶)bäJwñûj§ë¬1?âHe¤wcÂìæ)äzõxrE_rï¾"5Ú æå½²ôbEà>Gyx¯ö¢Êö"Y÷h; Z£e´6Q¹=BL´6ÉH@©-ÅéãØx1öåQ¶pp°ÿ5¤ÛÚ/ÿζÐÒLáDÉE^p{©¡}ä[mnµC`ñúeÅbª´Ae¶Ç&m£r(°¹Õ¦.ë.®NUÖüÍâDzÒ|ßnÐÈØßÑ´Çúï3éý}"´$�j ÚbgBzu4Öþlú ÒÉѦñD¥F¥Ûø(Chr³wD`ØÇUàú¸×¦;8qÀÔFf$¦óbA0ñõ£¾ÃÂynï{ö.hTãwAGØÌ¦%trDD¤R5Ìû4Êê¶AxhMz5xäØ;Ù\W ZvkÒ%Ì+ÂgÍ£ðz"m^F'gn!@¹¸D]aÑÑæÞ§õ£H½¤|gÔb|(í¸»S/k½±Én 5»KÑ|ð¼ùBæç~õèÂÂå{{dÓ2çßlûÖo2em1Î'>©Qeö¶Ohî�©3XîÓ!ÀÌEG¡yý.¬z2`F5n ÈÜKR+"@¼5:§g¶¤Æµ-P`@}ì°Cb&Ð !0U¼î;6?»õ±ßrëãò=}ëã=ÓɣȾ*ý®Ðá°zÄÃ=gö£8ÚäE0°s xe ×F¢¤1³óáýY¼û([ÖôÇ@ÚþHFM¾GpþHà +ÔDâéUÑQåsË l^hîá¡5O3"=«|¥ï¤Ù¶%{;ļ°|.>½ZU¤³Ùs§Lôà.ÄNNì¹"ÀéfÖHéäêË62÷N ? tqõ6M=ؼj§Hô*ÒÉÃz£ØÔI^Ø¢kûØ\æ#B¼8øY¤»9µv_æ<=³Ç8#]d2qò|"Dy>Ç¿ kx¸aû¥½^£ÙÛÎm1Ŧq×åKqàØÛuBù>9µXýÁ +µS¿°ý÷WÓßoðç÷®þ kÿÌS\ ê*ÔSÚ7ØÎï yV.")2Oe,ÏÔhúéÍ·" yî.V¨·b±éA�Z=ëÙÑÛ{ m´àîÎ8}â^&åkè edÌõæ0Uº�¨lL6sl_í ¹Þ¬Hy@`\å« 8ª|¼=ë mÆ@y°N?-8v.}ÀàF�¬Ù/:@n#q½yëÍС~=®³-À·YØ Ocjl=vÂT/ÌT¿ÝZjMÎzµ6Dg·¼6I×ß3s|â)�)83öˤ78èÌñâJs|4ªØAPÌqG±.w3s|i *ÛjÒÄN>5=3¥©,Ïli#XOL\M:ùÔdZB{%"©ðÓvVÛ¢Ãj§Ïë «1jÖz;ùAX8`"ôËLöLdÁâyMÏÇÞ¶ØÖ!8`,#s` +qDqA0|¡Kb8.ìµ!¿ÎèÁfÏé¶ÆÃ$íeª@½3ñf`òöèiar¶h¡orvlèïͺ ³n +fdè+,½ãÚÔoAå�º¢õì¨ög"¯jÑ&2½\É&ÄÔyå!x9ÐAB6!6ëÅúLDÍÁ½^Ü^f3½¦8Ét¸�×*×§e1sç~ñXVùKèäS7Km¯aÍ`m(EfÚG*¥»³p?âý^iç02Hjæ%t ÄÕ ÊÐ�¬ßk<zîû͵¿Ï%J{#Òfâèz"Õj ÄÍÔ©ºuQí3ö)Ì3Ë3{Òåû.´{Nà ¢OÝ~à@I:älJUälJUkÇDj +"$ 5Ø[Ò˳ï~uçm:ækßáfÍBöÌaóî¤fDÀ~tÌRm,aù;¤ÊÞ¿Õ3Û¯ÙædS ¦WÊ9 5Ø;s¶I±iP¹L&j&ȳLX_b¿c¹IiÒ´ÙýZ¡S°g³ÜYp}²\ôIdØE¹!Ù|ÞlæÐ¶x p¬¡èÜí]ÚG§ 9wâGôòÎ1<½þ¿ó×òúoçùëO_e>?9®/§òú©ÿ±üüÃ×ïû¢HßËë'éXÂúþ-úoçyèÞI!é ZvËvï²ó O]x(öf$Ø÷Âé((r4¯GJðRï3XÆÉy¯BjO×UXÒ²w³XV!{1ën÷oÁ:I$ÌÞÞÆñÃüC¶ôÈ[o®%¸¼�ËÂzðÊ{d¬b±è¤ÈA¬åï¶ÍÃêçaýv +ê«k9Ü\{/¶õ½°XÖë|X÷¾yß¿Â=Ì uç=p|2EÆKeMï; e«¥®FµW1§ªË*²Õ5¿Îg?-Ër< +rº½R ü4Æï»Éú¤¤¼®{ajYZÅÝ˵#Îd¹qÚrØVÚ\zV®r°µ½)LR°ûê,ׯr°¹ BHÙøR +î E«Er¾jTÓÓæÓGM}OÛ¤LRºÊÁ®Õ9ã½°ÛfÎ[' m»Ù^EYlrhó0CIºÁD³_¢QKrÛ¦¬bYÝ»)V¨woßÃjC{üñB{Cq³`ÍU�£©f)¦à8J!ÁazÄID¨Õ÷ZÓ6Kú"µW¿F4?Õ¨´=Õ¨í%CI¢P(ÙÆC3n²=EÅÌ×*WpT9ÄóZÙE²kÔÌWÞÓÊ*4⬻è óx`ùl\EÛDðrI¬®<ص:ɼí+{ÌJrcq^½ÖäÎâ¾]ën¯Bê_ÃUt(l£Ô¨»>�Ë +o»N˪0éÎÝçä¾ýç%V'w[Q[Oî ôc/b¶ãê$Sæ='äBÅIékΫZ÷~zîy¹9ìã«?^î~ñ®?ùòÝJSöæAa{SlêCÂSÈn +uNl(ön*¦í& ß§$æùg%*f{äÍÒHYóÀÜÃC»ÈÒ>´ö)IÏþU§$éñ¬B(¤(Ü#oû¼©xòBðÕ2pôB¼çÙÿ í©$±§57?g ö*f¬ÕËR +֮ $U,X« ÿ°?¯eGægö`äåÚ9±u³yÚ¶$7(F2§ÞïåfYÝÑ¿ Iò~b w»DÞjq²td{±ý¾ç<X²+Qvóån:ÙÔ;òêÙ[ÖMSsBÖMäX/eëÅygÊ|F=6{p9w»û<wÏ<"d^ÄOÎU´1zûÙkÝ'®ú�[zÞ«Ø:_WïÖ )$Á´@w9´y6½+ö¬ZÒéÌkµ#$qÂäÀTåòy°øI8ê'ïa/··ê©$·Oâén"ÒÙ&É6®©óÌGE¤Ð²L<\ðäÈ6ǵ$ÿ*Oô¡Y¥=kI +¶³Þ»ÕlV9TQ/ZNÍÂÃyî®b7<+A#94óy§ñå'O4èöÕy5®¢mò>ß6µïÏoE²ókµvþùmó¬ã¸mó¬ãøWÑðrvÛ,2ëÁo'tØæqG¿dõ0ù;~(dKÕÚ«0 âr¤ýå*àüBdÝU@ +yý#ÝOð?x°yÏé¾×)éÌî¼¹ År[·VÄÓÖSÒÞõwHrî�_Hì®%yïnï fk +ÄçDµ¢½2I$¹õû'Û9±PÜ»©XNyHÞ ñÀÔ»³^¼XÑ|âÉeÙ;s\L45ª}s")ÅÙ¥¿úº + f¸L¾º#R$ŲÊj³¬¶$gÁ$m'÷oʦU/7ýzDfOú«¶ÙöÒ_ýÀ?¬~Þæ¬}¤µ$Þæ=é·ÛÛܦ°% vVæ]ä@Vißvñ:wþD öÖMÚ)}rAþê ýðö.Ð3ôòv]ï2ïDz8_rX>{aêDnyÍÛW«�ÕéLüPéM+ åäÅ«]N,·¸ +¦{!ØäÐA P¦ñífûìÃ\tÒMrìæ§·ùCñýeTëu/³2êd'úgDªo®¢S]{GÕA Ͳöìm®=-Ñg¿]( õ©u/p7Þ$¹]5ÇíÁ¹ûyc¨¢Ñ'¦§§Q/NÞ:¼óYS�µÅöw3ï´öϼmo¿|(üðr¦LÎç¦Û[£¦Õõ$òNî{Úë÷;Q/ÁU¨z'h$NÔd¬[«ÕëPûÄ6/¨Ü»y95ÇÁâNÔ*êùW¡1ë17ÝvePØÐ.Ú'Ví3ù¨ff/ÏiÙËV/×^Åb\E³R¼X5âäSU* Ú»XǬ{F§úI¦BùÈÃtúa +¤R,½(ÓÇÓ:+A2ëúº +¢¤·v¡5ÕÍöÃàÝ$*AÉõ:7Y^®] ÊÔ(¢tz@W¤S¤»i*Oë8avV£zû°ö«QãJPXV÷éY +üÝIÉ¢h%¨Z íÜ}©U«pU^VjIÞ+Aã{(áñ=ÀߦÑé ba¡+AE þÝØ$ê÷Ýê j5U ZνðVܦTT%(¸å å!y+Ai «`*AO}TÎFÕ©MnIj%¨Ø,««7dYT%(^ÎY mv*AHª-FÿЩEêT3òz+AB§ ²Å~%haÊ6è¨fÕÊfÕv +ÏjIe}ÖvI>«%Õ«ðÔêUxjI +ZÒ.gµ¤ë*øZÒPÃZÒUDVMjICÖ®øZg75vënºûH%'vݾ4\Å0'v¡à¨%]y`jIɦQZÒj³¬a-éâiµ¤v!vX÷wÓQK*ëÎ=veíׯqs Oãæ²=Ëö°USðT£Ê2èÀìT£ÒIÁ[»Xæ~¼V£.Õ¨]£U£®«à«QC9tâ&$Ó!Õ¨F1=2(÷¢TÜîÝÔû,rô¶ãfÜTÜô¯B)<æANî~»ÐûÐ.:§ædóQjT@EU£ÍËuªQÆU´«QËvÆ,o5j9¬îjÔ¢±¢ªQH\5êãå¼Õ(/jTtÛE}£ÇÃV£ðn2Õ(¿uk5*Ø<L§¡F1Õ(õ´=í{I£FhpXÏ*K·+øù^Þióáåç/?~|Î?ÖóáÛï H³ðï U«ýa¤þ¬ý6-Áô~æg.;X}PNTï�ÐIYÜc-üJ�r`¸0ɳFõ.0O7¦Iñ^PkïãêÞG!°=UÅm3©bSz¯ªæxyPKa#!Bïv¼#·^%èѦí'L¢*Ì»Yù¤Îs:±ÿéVÅ}qö÷;û£¨Á#*mÈUN°ç<Ãm¼ ±ùÞc*ÝGTz/-ÈÁ@í¢î:e¾¿Û¢Ìs6t]ÍÉ®:%ÓBB@fÑ]ØÑÏé@{´{'*µ9S? ÊÀ|ß~v¡o¶Ç×9¯h#NjsP÷Gºí Eâ'¾ÚCÑê>c¡ÃA¦Y*ÐJ3 @Dø3ì'×eàEö§ÞÎ<rMØÆí)´PiÊ»_p5}(ůÝÛ¸º·Q§ZËÀRäR¸·Ñ~ôÓÆn=Ð!§n=Ðn=ÈXx=âÑÓYseîÞMØ3¿o3Í?PÎbCì ßÍ_ûSNgd¦¤Ê§8õV¥ktÀfÛ¥ßj'àz±O[:Þ!;ûÐ~LUkÌcª3âà®ÍWu÷®Öi½X ¿,hu$á üBHÈ˵©$ø;>eBW@I³¤Ö$â ÏN{üp�^+oÝô]³@ÝæÔ,XQImÐ"mñ mAºÈlC@ÁµcàÛ»0CØ^õ}Ë@³z´cËrô¹í÷z±¥kðjâç=Z@À6¸ò °�°í5È`:¿5mÈöIöW}÷× c¾÷§5ߨ.rg³¼ük÷êf2¥¤ 12©|;KvGYC±ùöÎØS:¯ã»w$ûNoR¬¨ Ü|è/ +µÏÝ2i>¦úN'ÜæÛn®¢Ý3ë365ÓýÁRÊ÷qCd:J|Ëè®m8f +oh ¶Çje¤ID^î^8°aµõGeP ÈïFÈA AU´¼£çGñµ1ôTrñ*VK"Éý¶E°d`ªUÈ.ÌYv!wV¹e&³@Ó)n|p¬ûÔöð$±w ?JDì%"ö{O\dÐð¦A¡æèFPEGÇ:fDID$°\"bEÛÀ$"wÀÀ$" +é,wÖdtM &KÁFéP HDTâÝæ¤x9¤T"*È&¯ØID@%dÐID8ö3½¨fDHDlQ¢[eMD"BKùnk*Ð'1 Æ&±"Ç|OD4ŨølÑG" oiJ¾¤!yàcKÓ8 áÐê÷qÅÒOçàÓÃ4Dõ°' QqàICÔBdÚF¦ +-ãìýlÚF»ÎÏ@Æz |Áç¢HD$"Ufò réÂ×s 8 ò ò¨ÑE4ÒD&m¥ 1ò"£²F"RÐ62yäp(Ó -yÚY *3=Ç£=¡âêÙÔ¯]~l£Mû ¼²th½}õ×0l&ZÄñY5ѽÊÀÖXsDg9¼æ¾1uú1Ä+~éЪ 0IkîÇÆa{Ïàø@/4¸mA[¼F4·QG{¶±Þc~æt,Ûõ>à wxØh± ¶òòP©ò]Ír}ùùBÀrôÃð:lt($ÈS!®Ðª¼"¤ +z`wig+DîCN +F&âô®5C¯KÓË#Ö¹Í�UXt(LBÛ»ÔI<B»ÐÔÈñ\uM i¾)ÄwB¢)5ß.½ðîøJÁ4Lh*ª"þ X0>üJ+w)äϸ»I7[:bê·±^ì_vë\ §èó¯ösÜ×_µ£bÈcèåÓÑ:X q@TÝöI®w!0ÝôêZ2hçØµ#Ò·W%ÈÇÕ«I×]Z\Ñ.µí¦¸¨"Ö&"t@Êlþm8ÑÑ&w£÷ +ðH©-*ïÕÑrÀªH¤Ô¶"$RÛ*R ñYd8ñfí¸½^U @U¶·-¹{WWíô,¹Eú*ø§äfqËÛ³Püå×" /¿úõ ÀøÎ_~Ý'4ø.¿ê÷ò«â÷Ò£¦÷Ò£fü2+9¹É¹üº¢] o:öwÙwùusëÁq}Ù«zwÙÛÑ9Æ©@´1¦j `ÈH«¦gÆpÝ.wvH©1'IILmddÏ&¤)³I:@{&¶±@= À2ôiLzXÛ»FºÜ¡� @hÒjÒé\á6Mrër.Á70Gf¡|RìÚbS[ÜF{ ¨WÈ Ôäj%ûé·v]ì%ÂØDÈ@±ª[\È U:ÝÆ$C3±O³/X5,]¬ÚîA¬×;P3!V =èZÁö__&À¬¼áµÁ,y/ÃX¿ /T Ò«oÞ{ÐÛIp$!Òàs'/4Á*ê|IEMxÇcèk·5èã#kè¤53 @MXLºÜAzÈ#0rÀÁý»PÐ.0í5@ÛHjúiAÛÈ(ÒdÀLZ¡-03ý DC¡ ¸R¢Ü2(m#á^Ýåc8y (R,Þèª@/=ðZFw("½£ñ·&�~íÜn ¾2wJͱ±âÞ¬ÖÃíÑMré3Õ÷N÷]J8 ¸T)©Üã�äW\m¶Í&¹>ªëÃdÛì@};ÉÑ̪ۻft¹þË73ÔLï6}J>¤ð³Á>'Eö»ÏùÚ´c¼ÒÛ³3`IeÛ: qÀ43LHÔhÀ`T£¡àkfü®C4A<0ç·A¼H`U×ìç`EÛÈäwÓC[Ì% Ìü dbÀtSȬÑD~x{àÓ´sõà R$¢á{$Í#µëøS�!Hdh+Ãsg¡©DdL=!ÀtS$ènt<½¼7Ѽq¼7Ñ÷ÖWK\hË@nÿºëÜtëÜ/�¡:f%y¯ê¥f@�LBìÈO m$9:06y¯Hsp]°4i UåÀÙÉ~M^¤=}èk'[.K` &!ðs T3D|hzGÊíQÎôðàsªÚ¬©}C :EÓc4mKh+Â"Ø`k'Á@ëÂ%¨ô0ÜiÊÀÙ¡1t(<ÝÇͶ´½"óäD7Åvu ®n=Álqjc°ë¡Ø¤h¹dÐN0ËT4Ò»HnìÏ"¼>Á&öªÄË�ºÒ¿ ÐÁª"ÄÒ¿ÕÒ¾^D*ÌMty/¥&@=¸ Ìó¢Å}?jµI±-�ó<àÀ<8!0à^^õ®8�/´!¦ãÖcÊý»�ã¬æ`ÚIIõÅ{ÃJ½bqß°B@ÕÍd ¬ÌA»©"5ðq@e5!ùá.,HÔ°ýV¯-|°æ3EZ*ÒmiNIÚ¬±òL3ÄÍA hÓOìX½è!@äQÊé¼¾@Ä-R Ƕ¡<²óÍS½àT³`jЦÑàå@ªÇÈNM8óÙig×jîÛc»AF¥ä|¶UG¥êM5ðlk[ +üÏ<n�3ºIÓQÞÇõÎýÔoïè2âI/Äuê@»`ô«*5 8l[ÓRNÎPEjÄ'ÔfÄ'ÒDjÄg2qÐ.½j}êß&è¤Ø¡5S ´FâvÑ9°÷¨å5ÉÑÃ]°¿ãÇ}7å´Äûv®^ösg»m:£Ø'`÷Ð4|}´íÓ¯¶9N>y9¸»Ü» ñÝýjë80n$Æ*ü§z×ï¡[ÏëC·~»¼n]©9b£X¼NUïú1u2ôH¨Aj0°¹ád@�¢vÞ7K»ÀÌ·éA{3ËÔ,y>è@894ÉЦ49{ØVÝî3m4ÇgïsÅ©x¬&7DAë Jwù£k> èk|ÖFÉâ̤¾£ç Õ´fhÛ{¼C[ /+ +Úiɱ~:©VeæÄ²Á] ª×ø]P´MªÜéý^¨Þo¨Hü³#Ô{âT±Çg`éëA©æ^ùDëõ6-üêÒKèNÖ°8Ø^ÙqÛÑH+²êºäv°ÆÍ¶c¬ì%PLØFz@äPJ@>!`tiЩ½$í5têsßr~æYÌÐadÌ6¤HÌ£lÈ©ø@°rܼo'Ë6î|ø@<q£/K*V.�Ù�¡Zæ©eÀLP'ÚíùxÕ¾æ�<&YXw\²P(ïßBá~äh·%QTéç"¡©é*µ]2ä²Lné"1$ ã° Ùãþö#{Ô=êóU+"À<ò¦£n#ÑÙ .!þLM\ʰ{ü²æí§øpæÙ$á9·9빦£gÍ^ 6$¦÷Êâ¶tà6\Ó<Ò]¥È¼¤Q`é,^EÒÖíôÌ+kfyäM{fyOÅÍ9ÐA[·/ا�l[Bç!tëÄ%bêÃÄp\×gá¸;¥ÏKÇ\¸&g>/s >¼.$µ¨çì6 ¦^¦]`^£0¯ÑeDÀ>fV3Ë;Wñ\3Ë#!v,¦%tÚß¡'Z¯9°?®w5/zÀ´¿O^=°f1u2ËÈç6}î"¾ÿþ²ÔÅ«H:dÛÈtzp}°N#Hôê²XNdÒåNrYQrÌò|µ;¶åɹðº@M".¼®Ð)Ú!>Pâß =w^8YÅ÷,?ïÚÇáïe² ¦1ÚöÆ÷mzÐ^Bælï%Ågñ½@F¥al³'ô¦¥_J|¨HÅ&6ÂÐmÜ'4T cJ¦YV#Ó@ç¶©@Þ#E�ϼ^L,t,�qb[#Ú§&éÜ ¸ÞÛ/¼ª}d¦øÀ¿t¹]_"çw}ðbD;Ͷ!RsEdÈMOÈÜ´ÔM/ ¼özÙG«FÈÑ{.M¢x½8hWíüÞ ôÂk§95¦£À%0ÁäØ ½,Zã} =r±£GédÇ&RÈßf³ ÜÏܲNñùÜFtAnO0<ÛCNÎvÇð5vÐ2òZNUYßt¸õºmú²|Û´_¢eÛ¡Êϳ/u¶ÌÙ·g@0¦n×nBl_aµ¦É6µúÍB±±Ð!° )2}ÓÓ¹_DSIµ"ãgÕ¤K`ÞH±�ÁÁjÓÅN}CûÈÌ)è ðls»@�½ðèMº³èEhJÈM ³ +·XGÄ4ýjtãé(BoCk"J5rdäÔÆéíApj±KbñéFñcA"ä-y!lã¶¶±ÞFÖÄ`Í�UÈNOÐ-Ûóig~¼¢=¶ùñ& º½ªNÍvÈ@yIªðÀÛñ¡W-ا禼º|I¤Ø¾%¨ òýìð!@UÜ5"©í({ØcÏg;ʯE·«%0yQMUØæÓylgúÞÂNaþ.ó©÷7^ÚÇyâ" hìËtî/G¯½5¦!©S*YÑFR²W.½¶û[�;bçôJà«¿^VM*ïߪI6t`þùÔ¤ìi,oö>¡xX-Ut±(@~µ(ËVHz5&°÷ôê¶W1L;R'&¿B3ظ÷.l?öá'i"¿Þl©Y°Ç¸³|ã:¸½ Ìc5ák<ûZÛÐp²üJ'O5É^º;À®±»!vC!xoB`Éx?`wÆp¯·ûØ"`º uIsóÛ(KÈÙ´1æà½NzyæOÌïo%íí© 0A{{rÿÉ h=Èýg:iîqà�Í{Brÿ¯N:dÐíÚÃoÑ%¹¢ñجi;-ȹwºAhz°NzBäh ©8 1;o\zñ¼qéÕ³%_@»Àp? º ÷çÜ 1#¹î3úDmC=>-éW¤ 6j:ReF¡Seú«VÞ©çÜRÞÒ3¯7q¨ù$6=ÎP¯�²«m¤9©C ß×Ô®Hw¥xÂÙâÞöy_Ó;ïõ@kb®\N&:ïÉçgñý<0¸ñ¾ó°¤Ç¶�óØyb¨Y Z°Uó°sFJÅÓ Ñq°6à×Cr¾�dÔÍED~XÔ2 ~3ÜF{Rr`õÇy©d/))YÐ<'¯=ZSUöL,bÊNsPR°¤£-jöDÌÙ!5 Ðip@Döìª8¸G·ÎdÉbâ¸ØQ`ɯ&=èÛqñrväe ×wÃÉox¶^¶«À>&.å¼PËDm0mÛØ¹NL:ÏôÌ#eìÒ·^á.ìV=ÅYMìTj ? ZõôBÃD·êéÙq{ôý-w\Èk0èý Gb¬°Aª¼AFvͧUhTs«ö³ãäLïIA?b@�ioD¼ "Ù¬ñho*ÈÜB:ýQØÆ)Yjzr+ÂDÌßÖWp«Îû»¡_ºí0÷w3"ÀÜH@0e@ Å9 ªzn +ýv[Ì,åëC´9)8«i±íB-/�õjÒôy,Ö¡´ìbHL^Án-f»MÛ"ä!ôz+éa×Ðâ'°=ÓÄlô¬vIÑ´L^%¡ßóÙæ` y¹uæÑ£å¡SÝg[ZüÁxÚÎ .tÀ®;´émÕ´vvZ ~ÛljdLÄ6y{´í¦"½MPqpo*ê e·KÓÇf˳ÀR G2öAmM ÈÀÓÖä^Ñ# GSN[¿NÒ©1gië×=;Üg!Ð/[vÃàyaT&^0mMê Q(DâÒ§t%dÐéÃH®¤ôPÚ¢jä5½} >´.Y¬0) !2I°òHÚ¡m&!v.¾ÚüAê!G¥Tçgª¡Gb*æíWV¨ëß `4qFæÌÌ÷\nãòtWèÖ cZ·gIªÛôyÎZÌKìP¤Q¯ 03´Þ½%Ú¡=Ã<MÀé:Ñ¿r¹¶èØ>³<õIû`ÇPlRNvÖªìx!@�5UÕÛ!ÒÓÚïgéd'PßSÌe(ÃN Wòk÷³ÌÓûð:-î~¹·Zêg¢ßE +ÞU´9 ÐécϺÖýaÄ(õí¡9h¼[:¨åb^MçF!VÄÉD S¯VªÄ<|ܤwCMs>Ë.سYÆW]8 9J0è¤fmKh?TZ`M÷|ÖpºÛ¯ÙëW5·;ò«ÃöÌ ôØó´4w]}!Å J�¬ +í¸x=^`mùé÷ñÉ`;ràÜæ J´LçOÅìæñsy´b:=ì6ÒÁË(¾Ó//w?;).øNNr7#|'EMÀtW¼eÀwR\8à;)¦%²^^pÿä §|ìã>izúKåÖYÔ4èóÜR~.hM:Ï-¦5IÀ/îIã4{½~@å.GcM+"À;4Æ×rL_® 0µ!Lwóo<¤fÅJß :óà7$DþêíHm¼T ê·Úý<R¤q¼ÐYO1D]û@:Ç8°³ÜÙ 8ÇKÎ^cÒ4;òiLý©CÉØ¡0oFÓ.´{dÀÈ:ý067.§É¤m°9G#öÒÄLظ¤ÍË=°O\Òaê#§:NqóæüIq?² "¯j §7«{sô¤XÓË=ûÊèÒÀ]sÀäÈeAMièÔ(óÍ$Î=»ôp 5qÀÜý]×SôeÅã¢ìBMgs´vt6;÷6éi¯wH¤³¤søÂñB¤íBç!Bøu}Ôþ²â}ÆbÓLîôHT;Eöze! +1B{æLÌ v|ÙåͶmEÚf"µÃs@»@ 8Az@¼¾¤m·SÙ×Âe²ß¿%rùÛFÚÝT)7Áù$â�¯Oº;ûgñÑQS«HÌ3 Y{Ôõ½&¸�Lã<N8½ûOEà#ßYp¹&ÕBpÀ¤ZLBÛÀÌYS¾ù"Û¶I ÊÝ]¿&mPÌ/ë³%èìç&<Np D"1Tf!Ì)´Ì-ð|CÆÀlÌ#ðq?}T¨§G¿à<tÌШ· %0Í¿rëtdMí%,hFNñÔxÕNJoC2 Ý.©âUemØL¡àîYÉÎ$ºlDTÙt踤ô¼þ <ui'ÔèáaxfrÐ[87kD×8w߬i?×¢XuÙã97 5¢f¨÷jÄèêYNð{>¥cL 8`Z!´NR/frmÚBÜòC!nPvOÚ)�e`Wå¬u´ D¸i[¯PH3A¤ ÷@Zºu+BFûèãÒíË9AèÉWm¤»ÁUp¤9dÐÁºÛC=Ð*EEÀñ´ I¦ðçè ÷ãI/Z=ÄmºØN+éÏr78NlÄØIlfh Ä\¢'øAtëÀe5èÍ23X3-Ïì±d³Ð©1-§Ð -¶pA»¯@Ñîùͯ~ý·Ó×ôõß¿Oû÷¯ÿ9ÿßüi×±¸½¨öüæ¾þâ¿ÿË×/üíïþù?~÷×_÷7ûõ¯ÿþ/ÿôû»úúÿïëïþáÏüå¯üßþã_~ýí÷×?üñwÿëwÿþ篿úúÃÿü¯ýë_ÿçþç÷ÿðÇÿøþçßýù×ÿ8-óïÿýüóÿùõ¿þÇþÝ÷þü§_þòë7ÿûWÿõ7/îþ?¸ãC +endstream +endobj +215 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 659 0 R +/Name /Im206 +/Width 8 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«øH ,�yø Á +endstream +endobj +216 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 660 0 R +/Name /Im207 +/Width 24 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``�"ª£ Äø±ñ1p�"ö +ì +ü üòÿü"�=t +endstream +endobj +217 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 661 0 R +/Name /Im208 +/Width 24 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc?À QÀ` ÁPÀÃPÀÇPÀÎð½á3�¢ +ÆpdEìÈ36Èf³cc`àGBì Ä|�ìÁù�Eô +endstream +endobj +218 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 662 0 R +/Name /Im209 +/Width 32 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿøÿ@=³7Ø0PkþÿÿÆì 8°X3¨a`<`ÃÀð¡Âÿ��ì$ +endstream +endobj +219 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 663 0 R +/Name /Im210 +/Width 8 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øñãGø�SE +endstream +endobj +220 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 664 0 R +/Name /Im211 +/Width 24 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿßPÿ¿ñÑßÿ00?``�¢� ¶ +endstream +endobj +221 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 665 0 R +/Name /Im212 +/Width 16 +/Height 3 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿá?�jÎ +endstream +endobj +222 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 666 0 R +/Name /Im213 +/Width 32 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcoøÀ ØÁ` ÜÁPÀßÂPÀÁñ8®`|�Ç@lÃðAù+U00Ô�1Û a94ÌÅÿ¡¿�T0 +endstream +endobj +223 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 667 0 R +/Name /Im214 +/Width 16 +/Height 49 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`P`p`h`l`f`B 0,°Âpõ@½<`Sæ*0��ÜOÑ +endstream +endobj +224 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 668 0 R +/Name /Im215 +/Width 16 +/Height 49 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xk`p`P```àa`BfæÆÆ Èð� +?0` `* êÁ¦ð�Í�ëÀÐÀ��R6 +endstream +endobj +225 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 669 0 R +/Name /Im216 +/Width 16 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿüÎÀÏÀÌ��a¤p +endstream +endobj +226 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 670 0 R +/Name /Im217 +/Width 16 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ£þý&F +,ÐÆAæÌþ� # +endstream +endobj +227 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 671 0 R +/Name /Im218 +/Width 40 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x3`8Àð¡ñs Ãæ Á&@ÜCrÌAÄ Áø�Lð3�¥Ðö 8 $È4¸Oq(pç±0x`Ãüÿ��ð¬!é +endstream +endobj +228 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 672 0 R +/Name /Im219 +/Width 24 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-± 0@Ñ KÁÁÒÎMÌh7JF°´ÎBÏÝÜít;Ü&rOÐ4T0(°Á Vľ*íÿKZÅJ4Mu^Irñ1fÊ +endstream +endobj +229 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 673 0 R +/Name /Im220 +/Width 24 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-ȱ 0�Á·\¸"#0�BÄ-£x." !]ñzi¬dùÐrßR+5á!v_E|Ò! #°<ÏäIýú©eÓ²X¶/ûu | +endstream +endobj +230 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 674 0 R +/Name /Im221 +/Width 40 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}α 0á_Hp 8 8Ã8 #X¦Rß¡Xâ«òîúô0ºâ`Ãít£hE#òZó½zð:{±¨¨Ð¨ø¨¢¤Êô»Õ~٠Ŧ ¨FÈÂã +endstream +endobj +231 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 675 0 R +/Name /Im222 +/Width 32 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-ÃÁ @@ÑoLÂQ*-(EsÓÖn'¨`O®ãxÉKÏH¬ÑÛI§æU7`ÑY÷ÿv_Z! +c4²æ÷â§ +endstream +endobj +232 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 676 0 R +/Name /Im223 +/Width 24 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÿØ0Ñÿÿÿè�{{{�q°7°°7°±70±70µ{zyx?ÌæF�I¿' +endstream +endobj +233 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 677 0 R +/Name /Im224 +/Width 24 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc~ÀÀÿAFÁ!½Á¹á�ó~0> Æt�4ØÔx0(0 #õö?ìÿ1Øÿg°ag0`h��2Í{ +endstream +endobj +234 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 678 0 R +/Name /Im225 +/Width 32 +/Height 43 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xM̱ 1DÑ/\¨ÔÈqjÉ¡TJÙ:07ã38xÁ,4uéÖ¤¨V.Û ò$R,nÜm· +a¶¼ ½|<MÖÇWsÐÔuX§,ú/ºÛ}îx%Qtõô«ÉYJ +endstream +endobj +235 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 679 0 R +/Name /Im226 +/Width 56 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿóÿÿ?þ£PÿØÿ04Ô@:é?¶À�Ò>} +endstream +endobj +236 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 680 0 R +/Name /Im227 +/Width 48 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xeϱ0P8Á5Òe%KËQÃà'H(^Áýãø":M,ÄÒUª0Ã7'_-ÓcQÓ ïG²h{ËÌ|ñr¾¿µhrf¸ÃjM á¤iA +endstream +endobj +237 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 681 0 R +/Name /Im228 +/Width 40 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿÿáãyÁ"ÿ� 0Q'là*Á `(è$� FG_ +endstream +endobj +238 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 682 0 R +/Name /Im229 +/Width 48 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃ$ñ?ÉÿÿÉ ö`ñÿ`²¾DÚ�@¤<2ùI=ÄiÿCmZþÿü�&�8Y! +endstream +endobj +239 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 683 0 R +/Name /Im230 +/Width 24 +/Height 6 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÁT�¤:5 +endstream +endobj +240 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 684 0 R +/Name /Im231 +/Width 48 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xϱ À @£À(£eF ¤@yð»�&º·ß�PeA!îw)¹ª©©®zsü¶ïl°iu7®tÚ´ª°ýÄVéÈÆ³Ûe¼vY6stæãöFLÏs +endstream +endobj +241 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 685 0 R +/Name /Im232 +/Width 72 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuб 0ÐC.ÜáX²ÿ&YÅ(EÊ?K +Ä ÿåHw§W),¤$1è +Æ#&fõÈÕC·ÿ¶Þ!®Ñ!Õ £~ÛÄ\ Yp³ 0,;0´ñØÞà¹ÑàUp¿â8§�Tðóùù«c +endstream +endobj +242 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 686 0 R +/Name /Im233 +/Width 40 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÍÁ @0�@Ñß$µAMRF2ÐÑÒ$ÕFI{y×ç]å/Ñ0ÑFùÙ°&,7X®ÄîÏÄ,cåröøPNÙD¯uø^¤)kA|r{"î +endstream +endobj +243 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 687 0 R +/Name /Im234 +/Width 32 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`þlâ?6ÌÍ6ì{øjäØk ¸àÀHê@¤!hVóa�¨Û +endstream +endobj +244 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 688 0 R +/Name /Im235 +/Width 32 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÀ|@BOÁO á@ ÃlĶÀئ@¸ÁF-ldXù,8Ø +88``°g`��- +endstream +endobj +245 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 689 0 R +/Name /Im236 +/Width 32 +/Height 49 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]͹ 0DÑo¸ �$(ÐK¡ÂÍhË¥P ±\<fÀÿt?õ£êq!GN£J +RS$*,fy3ð<L@6ÁÏz|¤v¯{Ǫ&=½dÄ7Ã(BýUØâF +endstream +endobj +246 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 690 0 R +/Name /Im237 +/Width 32 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÀÞÀÃÇã`Á(£`Àð¡Á?À±Û2T±MÛ0Ø8Ø0T8È0T(ð1;CsÃì�E +endstream +endobj +247 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 691 0 R +/Name /Im238 +/Width 32 +/Height 45 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]ÎÁ @@@Ñ?l²N8РäDcJQĬâðÿöÐðÓ=fè¥b£f2iÈhMnÃëWò"¿#nDÒ±F½¢i´"ÙèLyËD±fN.i÷ +endstream +endobj +248 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 692 0 R +/Name /Im239 +/Width 8 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xspPà�?~0 @�n× +endstream +endobj +249 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 693 0 R +/Name /Im240 +/Width 32 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿà fobdbF f�áPì¨ ÿÿ`�'¸ñ +endstream +endobj +250 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 694 0 R +/Name /Im241 +/Width 24 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x`g°àiqQá"> b¡>vwf÷f7w;�fµ +endstream +endobj +251 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 695 0 R +/Name /Im242 +/Width 24 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xE± ÐïÁ +0A`Ã)ѹÅ(-=lx÷ªëc/Å`2+{e¨Ì¢È.àtpöBW¤ó¦fÔàúº=+ÆÌ¼ø�hy +endstream +endobj +252 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 696 0 R +/Name /Im243 +/Width 40 +/Height 15 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿÿ?ÿo�¤�¶z)�¸Üé +endstream +endobj +253 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 697 0 R +/Name /Im244 +/Width 40 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ@Áþÿÿöÿå +°@(ã¹ F°3¢|È#°`PD& +HëVÁÞÀÀüà?ø&�â7x +endstream +endobj +254 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 698 0 R +/Name /Im245 +/Width 40 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUͱ ÐBÔÂ' à�Æ8åÆ(p¥Ý Q®yíÓµ ð$@ùàRTù§ÂÐ³ÅÆ~Ö£1ß/ (Ï© ä +endstream +endobj +255 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 699 0 R +/Name /Im246 +/Width 40 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=ͱ 0á3F1)SA¡È(ÃoÄ(2ó? +¯;]«±Õædã$B!ÀÄ;TøÄ^IÉàaý$èVsÜ(%:éâ+ò fgêÅÒUS¦º§»§ÕÓÛ]üyn$Ï +endstream +endobj +256 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 700 0 R +/Name /Im247 +/Width 8 +/Height 17 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xs8ð !¡ ÀÂÂÂÆFNN�>ïw +endstream +endobj +257 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 701 0 R +/Name /Im248 +/Width 16 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xK°xRð¤à>°<`ß`Ã`Å Û&ã.£,#ÇÇ�ìP(ß��³Å +endstream +endobj +258 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 702 0 R +/Name /Im249 +/Width 32 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿ¿ÿ@\ÿÿÿàÿ�â: ¶o``à +0þ%`¡A|8H lÈ^�Õ&Ä +endstream +endobj +259 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 703 0 R +/Name /Im250 +/Width 32 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x3`¨`¨`<Â`ÃxÁÙä4�1Ã0æªCÆí 6|ÀÁ}»D û�s +endstream +endobj +260 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 704 0 R +/Name /Im251 +/Width 40 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`<ÀÀÀ@=â?4 *&�ï]% +endstream +endobj +261 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 705 0 R +/Name /Im252 +/Width 24 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃÀþÿüÿöÿÔÿÿ�AÿÿÿÀDpY J z . ^Æ?�ß2i +endstream +endobj +262 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 706 0 R +/Name /Im253 +/Width 40 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x%Í1@EÑ;qì ¤08. WÂVFWbeMaAAß×âæçæÕ½áEÌ.Ó&n\¡gjVh8»^Ôp\eÌ uLÆhƦ³ôÿo¢zwµmQËîï,Ñtcé¿é?Êòãrf-I +endstream +endobj +263 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 707 0 R +/Name /Im254 +/Width 40 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x!0¯¨Åñº~GÖ§ô 'T%fgÎì-`#PmÂWmi"÷L¤! +¨Çá8k4 \`øUPBúéãòBè=HiôÈ«Å=m�tG;Z +endstream +endobj +264 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 708 0 R +/Name /Im255 +/Width 24 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x%ʱ À0ÀG#DÊZîìÑÈ&ð¥At彪j!~à7!XåWÙS{%ê Pì7Õîa4ìv)O +endstream +endobj +265 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 709 0 R +/Name /Im256 +/Width 24 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿ¯þ1P=øÇðä!"r|�%)` +endstream +endobj +266 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 710 0 R +/Name /Im257 +/Width 32 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5ͱ @áÿ¸âà"¢kYw£9Ê`i!(ákB RG"±Øh µ\9mµm¨/H·Ëþ)¿:ÙÎRõ*?¯Ä:sÜþ»5àJÓ2 +endstream +endobj +267 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 711 0 R +/Name /Im258 +/Width 24 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKcx`ÈPPÈPPÐ�A@dyÁAA¦±AÆùò>Á||ì |ìH¹ä0��SrR +endstream +endobj +268 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 449 0 R >> /XObject << /Im74 81 0 R /Im64 71 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im57 64 0 R /Im73 80 0 R /Im54 61 0 R /Im53 60 0 R /Im132 139 0 R /Im86 93 0 R /Im137 144 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im58 65 0 R /Im55 62 0 R /Im67 74 0 R /Im53 60 0 R /Im115 122 0 R /Im73 80 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im73 80 0 R /Im53 60 0 R /Im56 63 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im60 67 0 R /Im53 60 0 R /Im119 126 0 R /Im54 61 0 R /Im56 63 0 R /Im53 60 0 R /Im53 60 0 R /Im67 74 0 R /Im115 122 0 R /Im73 80 0 R /Im116 123 0 R /Im56 63 0 R /Im57 64 0 R /Im79 86 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im57 64 0 R /Im53 60 0 R /Im56 63 0 R /Im58 65 0 R /Im86 93 0 R /Im75 82 0 R /Im76 83 0 R /Im53 60 0 R /Im53 60 0 R /Im66 73 0 R /Im60 67 0 R /Im58 65 0 R /Im79 86 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im119 126 0 R /Im67 74 0 R /Im55 62 0 R /Im57 64 0 R /Im55 62 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im67 74 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im57 64 0 R /Im80 87 0 R /Im64 71 0 R /Im57 64 0 R /Im76 83 0 R /Im116 123 0 R /Im56 63 0 R /Im57 64 0 R /Im79 86 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im119 126 0 R /Im54 61 0 R /Im56 63 0 R /Im53 60 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im252 261 0 R /Im120 127 0 R /Im53 60 0 R /Im58 65 0 R /Im55 62 0 R /Im73 80 0 R /Im76 83 0 R /Im55 62 0 R /Im114 121 0 R /Im53 60 0 R /Im53 60 0 R /Im114 121 0 R /Im53 60 0 R /Im56 63 0 R /Im55 62 0 R /Im63 70 0 R /Im56 63 0 R /Im69 76 0 R /Im63 70 0 R /Im53 60 0 R /Im57 64 0 R /Im60 67 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im71 78 0 R /Im67 74 0 R /Im53 60 0 R /Im54 61 0 R /Im53 60 0 R /Im59 66 0 R /Im67 74 0 R /Im79 86 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im60 67 0 R /Im59 66 0 R /Im115 122 0 R /Im60 67 0 R /Im55 62 0 R /Im56 63 0 R /Im67 74 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im116 123 0 R /Im65 72 0 R /Im69 76 0 R /Im56 63 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im184 191 0 R /Im64 71 0 R /Im56 63 0 R /Im57 64 0 R /Im79 86 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im58 65 0 R /Im69 76 0 R /Im63 70 0 R /Im55 62 0 R /Im53 60 0 R /Im66 73 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im53 60 0 R /Im66 73 0 R /Im56 63 0 R /Im64 71 0 R /Im115 122 0 R /Im53 60 0 R /Im56 63 0 R /Im69 76 0 R /Im63 70 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im67 74 0 R /Im53 60 0 R /Im54 61 0 R /Im53 60 0 R /Im59 66 0 R /Im67 74 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im54 61 0 R /Im55 62 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im53 60 0 R /Im56 63 0 R /Im60 67 0 R /Im61 68 0 R /Im115 122 0 R /Im60 67 0 R /Im55 62 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im119 126 0 R /Im54 61 0 R /Im56 63 0 R /Im53 60 0 R /Im53 60 0 R /Im67 74 0 R /Im115 122 0 R /Im73 80 0 R /Im66 73 0 R /Im60 67 0 R /Im58 65 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im119 126 0 R /Im116 123 0 R /Im56 63 0 R /Im57 64 0 R /Im79 86 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im57 64 0 R /Im53 60 0 R /Im56 63 0 R /Im58 65 0 R /Im86 93 0 R /Im252 261 0 R /Im62 69 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im56 63 0 R /Im69 76 0 R /Im63 70 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im53 60 0 R /Im55 62 0 R /Im64 71 0 R /Im63 70 0 R /Im73 80 0 R /Im56 63 0 R /Im53 60 0 R /Im55 62 0 R /Im67 74 0 R /Im55 62 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im58 65 0 R /Im60 67 0 R /Im67 74 0 R /Im64 71 0 R /Im116 123 0 R /Im53 60 0 R /Im67 74 0 R /Im71 78 0 R /Im115 122 0 R /Im53 60 0 R /Im66 73 0 R /Im55 62 0 R /Im69 76 0 R /Im53 60 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im55 62 0 R /Im67 74 0 R /Im55 62 0 R /Im115 122 0 R /Im64 71 0 R /Im63 70 0 R /Im64 71 0 R /Im57 64 0 R /Im73 80 0 R /Im60 67 0 R /Im61 68 0 R /Im116 123 0 R /Im56 63 0 R /Im57 64 0 R /Im79 86 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im58 65 0 R /Im69 76 0 R /Im63 70 0 R /Im55 62 0 R /Im53 60 0 R /Im86 93 0 R /Im259 270 0 R /Im107 114 0 R /Im123 130 0 R /Im122 129 0 R /Im228 237 0 R /Im229 238 0 R /Im232 241 0 R /Im227 236 0 R /Im124 131 0 R /Im226 235 0 R /Im126 133 0 R /Im127 134 0 R /Im260 271 0 R /Im122 129 0 R /Im124 131 0 R /Im226 235 0 R /Im124 131 0 R /Im226 235 0 R /Im227 236 0 R /Im261 272 0 R /Im262 273 0 R /Im263 274 0 R /Im263 274 0 R /Im262 273 0 R /Im264 275 0 R /Im265 276 0 R /Im266 277 0 R /Im267 278 0 R /Im268 279 0 R /Im269 280 0 R /Im266 277 0 R /Im262 273 0 R /Im125 132 0 R /Im227 236 0 R /Im228 237 0 R /Im107 114 0 R /Im124 131 0 R /Im122 129 0 R /Im126 133 0 R /Im123 130 0 R /Im107 114 0 R /Im123 130 0 R /Im127 134 0 R /Im126 133 0 R /Im125 132 0 R /Im127 134 0 R /Im227 236 0 R /Im125 132 0 R /Im122 129 0 R /Im123 130 0 R /Im127 134 0 R /Im128 135 0 R /Im129 136 0 R /Im124 131 0 R /Im122 129 0 R /Im126 133 0 R /Im123 130 0 R /Im120 127 0 R /Im53 60 0 R /Im76 83 0 R /Im55 62 0 R /Im114 121 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im54 61 0 R /Im60 67 0 R /Im53 60 0 R /Im67 74 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im60 67 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im115 122 0 R /Im55 62 0 R /Im53 60 0 R /Im67 74 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im115 122 0 R /Im64 71 0 R /Im59 66 0 R /Im55 62 0 R /Im56 63 0 R /Im73 80 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im193 200 0 R /Im194 201 0 R /Im195 202 0 R /Im195 202 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im197 204 0 R /Im198 205 0 R /Im199 206 0 R /Im200 207 0 R /Im197 204 0 R /Im194 201 0 R /Im64 71 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im53 60 0 R /Im114 121 0 R /Im64 71 0 R /Im79 86 0 R /Im60 67 0 R /Im69 76 0 R /Im80 87 0 R /Im60 67 0 R /Im56 63 0 R /Im78 85 0 R /Im133 140 0 R /Im62 69 0 R /Im59 66 0 R /Im69 76 0 R /Im186 193 0 R /Im69 76 0 R /Im78 85 0 R /Im55 62 0 R /Im55 62 0 R /Im57 64 0 R /Im55 62 0 R /Im63 70 0 R /Im86 93 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im189 196 0 R /Im55 62 0 R /Im71 78 0 R /Im62 69 0 R /Im59 66 0 R /Im69 76 0 R /Im186 193 0 R /Im69 76 0 R /Im78 85 0 R /Im55 62 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im63 70 0 R /Im86 93 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im83 90 0 R /Im71 78 0 R /Im72 79 0 R /Im55 62 0 R /Im78 85 0 R /Im55 62 0 R /Im59 66 0 R /Im60 67 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im63 70 0 R /Im86 93 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im83 90 0 R /Im139 146 0 R /Im60 67 0 R /Im59 66 0 R /Im63 70 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im76 83 0 R /Im53 60 0 R /Im69 76 0 R /Im56 63 0 R /Im64 71 0 R /Im57 64 0 R /Im64 71 0 R /Im66 73 0 R /Im86 93 0 R /Im62 69 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im53 60 0 R /Im114 121 0 R /Im64 71 0 R /Im60 67 0 R /Im69 76 0 R /Im80 87 0 R /Im60 67 0 R /Im56 63 0 R /Im78 85 0 R /Im80 87 0 R /Im53 60 0 R /Im59 66 0 R /Im53 60 0 R /Im53 60 0 R /Im67 74 0 R /Im57 64 0 R /Im60 67 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im56 63 0 R /Im69 76 0 R /Im63 70 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im57 64 0 R /Im67 74 0 R /Im53 60 0 R /Im66 73 0 R /Im64 71 0 R /Im67 74 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im58 65 0 R /Im60 67 0 R /Im57 64 0 R /Im54 61 0 R /Im56 63 0 R /Im53 60 0 R /Im61 68 0 R /Im53 60 0 R /Im56 63 0 R /Im55 62 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im55 62 0 R /Im58 65 0 R /Im60 67 0 R /Im59 66 0 R /Im65 72 0 R /Im58 65 0 R /Im55 62 0 R /Im59 66 0 R /Im73 80 0 R /Im54 61 0 R /Im60 67 0 R /Im64 71 0 R /Im79 86 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im53 60 0 R /Im55 62 0 R /Im66 73 0 R /Im76 83 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im64 71 0 R /Im57 64 0 R /Im69 76 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im184 191 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im76 83 0 R /Im64 71 0 R /Im54 61 0 R /Im69 76 0 R /Im56 63 0 R /Im54 61 0 R /Im60 67 0 R /Im53 60 0 R /Im71 78 0 R /Im56 63 0 R /Im69 76 0 R /Im63 70 0 R /Im53 60 0 R /Im76 83 0 R /Im55 62 0 R /Im114 121 0 R /Im53 60 0 R /Im57 64 0 R /Im60 67 0 R /Im53 60 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im58 65 0 R /Im115 122 0 R /Im55 62 0 R /Im53 60 0 R /Im67 74 0 R /Im60 67 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im53 60 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im62 69 0 R /Im57 64 0 R /Im64 71 0 R /Im67 74 0 R /Im64 71 0 R /Im270 281 0 R /Im66 73 0 R /Im69 76 0 R /Im63 70 0 R /Im57 64 0 R /Im57 64 0 R /Im60 67 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im64 71 0 R /Im78 85 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im60 67 0 R /Im61 68 0 R /Im56 63 0 R /Im69 76 0 R /Im63 70 0 R /Im53 60 0 R /Im69 76 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im63 70 0 R /Im63 70 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im61 68 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im80 87 0 R /Im60 67 0 R /Im56 63 0 R /Im78 85 0 R /Im86 93 0 R /Im62 69 0 R /Im59 66 0 R /Im57 64 0 R /Im53 60 0 R /Im55 62 0 R /Im67 74 0 R /Im60 67 0 R /Im61 68 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im69 76 0 R /Im66 73 0 R /Im76 83 0 R /Im56 63 0 R /Im69 76 0 R /Im63 70 0 R /Im53 60 0 R /Im71 78 0 R /Im80 87 0 R /Im53 60 0 R /Im67 74 0 R /Im53 60 0 R /Im116 123 0 R /Im59 66 0 R /Im53 60 0 R /Im67 74 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im55 62 0 R /Im115 122 0 R /Im64 71 0 R /Im79 86 0 R /Im59 66 0 R /Im55 62 0 R /Im56 63 0 R /Im73 80 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im193 200 0 R /Im194 201 0 R /Im195 202 0 R /Im195 202 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im197 204 0 R /Im198 205 0 R /Im199 206 0 R /Im200 207 0 R /Im197 204 0 R /Im194 201 0 R /Im71 78 0 R /Im80 87 0 R /Im76 83 0 R /Im64 71 0 R /Im66 73 0 R /Im76 83 0 R /Im64 71 0 R /Im55 62 0 R /Im54 61 0 R /Im55 62 0 R /Im64 71 0 R /Im56 63 0 R /Im79 86 0 R /Im80 87 0 R /Im64 71 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im79 86 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im58 65 0 R /Im60 67 0 R /Im59 66 0 R /Im65 72 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im80 87 0 R /Im64 71 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im54 61 0 R /Im55 62 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im53 60 0 R /Im56 63 0 R /Im60 67 0 R /Im61 68 0 R /Im115 122 0 R /Im60 67 0 R /Im55 62 0 R /Im56 63 0 R /Im67 74 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im116 123 0 R /Im65 72 0 R /Im69 76 0 R /Im79 86 0 R /Im56 63 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im60 67 0 R /Im56 63 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im64 71 0 R /Im57 64 0 R /Im69 76 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im184 191 0 R /Im60 67 0 R /Im56 63 0 R /Im55 62 0 R /Im115 122 0 R /Im60 67 0 R /Im55 62 0 R /Im56 63 0 R /Im67 74 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im116 123 0 R /Im65 72 0 R /Im69 76 0 R /Im56 63 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im201 208 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im57 64 0 R /Im80 87 0 R /Im60 67 0 R /Im54 61 0 R /Im60 67 0 R /Im64 71 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im202 209 0 R /Im203 210 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im202 209 0 R /Im204 211 0 R /Im71 78 0 R /Im193 200 0 R /Im194 201 0 R /Im195 202 0 R /Im195 202 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im197 204 0 R /Im198 205 0 R /Im199 206 0 R /Im200 207 0 R /Im197 204 0 R /Im194 201 0 R /Im130 137 0 R /Im201 208 0 R /Im71 78 0 R /Im202 209 0 R /Im203 210 0 R /Im71 78 0 R /Im202 209 0 R /Im204 211 0 R /Im132 139 0 R /Im64 71 0 R /Im57 64 0 R /Im56 63 0 R /Im69 76 0 R /Im53 60 0 R /Im64 71 0 R /Im61 68 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im60 67 0 R /Im59 66 0 R /Im63 70 0 R /Im73 80 0 R /Im64 71 0 R /Im61 68 0 R /Im202 209 0 R /Im203 210 0 R /Im64 71 0 R /Im115 122 0 R /Im53 60 0 R /Im57 64 0 R /Im57 64 0 R /Im53 60 0 R /Im56 63 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im59 66 0 R /Im202 209 0 R /Im204 211 0 R /Im55 62 0 R /Im57 64 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im115 122 0 R /Im60 67 0 R /Im55 62 0 R /Im56 63 0 R /Im67 74 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im116 123 0 R /Im65 72 0 R /Im79 86 0 R /Im69 76 0 R /Im56 63 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im201 208 0 R /Im71 78 0 R /Im64 71 0 R /Im59 66 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im57 64 0 R /Im60 67 0 R /Im56 63 0 R /Im53 60 0 R /Im55 62 0 R /Im66 73 0 R /Im76 83 0 R /Im55 62 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im60 67 0 R /Im63 70 0 R /Im69 76 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im62 69 0 R /Im59 66 0 R /Im79 86 0 R /Im57 64 0 R /Im55 62 0 R /Im59 66 0 R /Im66 73 0 R /Im53 60 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im64 71 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im66 73 0 R /Im60 67 0 R /Im63 70 0 R /Im63 70 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im61 68 0 R /Im56 63 0 R /Im60 67 0 R /Im58 65 0 R /Im55 62 0 R /Im59 66 0 R /Im53 60 0 R /Im119 126 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im53 60 0 R /Im59 66 0 R /Im66 73 0 R /Im53 60 0 R /Im60 67 0 R /Im61 68 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im53 60 0 R /Im119 126 0 R /Im53 60 0 R /Im66 73 0 R /Im69 76 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im53 60 0 R /Im67 74 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im62 69 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im56 63 0 R /Im69 76 0 R /Im63 70 0 R /Im53 60 0 R /Im130 137 0 R /Im60 67 0 R /Im56 63 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im132 139 0 R /Im60 67 0 R /Im61 68 0 R /Im193 200 0 R /Im194 201 0 R /Im195 202 0 R /Im195 202 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im197 204 0 R /Im198 205 0 R /Im199 206 0 R /Im200 207 0 R /Im197 204 0 R /Im194 201 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im69 76 0 R /Im53 60 0 R /Im67 74 0 R /Im57 64 0 R /Im60 67 0 R /Im66 73 0 R /Im55 62 0 R /Im63 70 0 R /Im66 73 0 R /Im69 76 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im53 60 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im60 67 0 R /Im61 68 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im61 68 0 R /Im69 76 0 R /Im57 64 0 R /Im69 76 0 R /Im56 63 0 R /Im53 60 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im86 93 0 R /Im62 69 0 R /Im59 66 0 R /Im133 140 0 R /Im62 69 0 R /Im59 66 0 R /Im69 76 0 R /Im186 193 0 R /Im69 76 0 R /Im78 85 0 R /Im55 62 0 R /Im55 62 0 R /Im57 64 0 R /Im55 62 0 R /Im63 70 0 R /Im86 93 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im189 196 0 R /Im55 62 0 R /Im139 146 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im133 140 0 R /Im72 79 0 R /Im55 62 0 R /Im78 85 0 R /Im55 62 0 R /Im59 66 0 R /Im60 67 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im63 70 0 R /Im86 93 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im83 90 0 R /Im139 146 0 R /Im80 87 0 R /Im53 60 0 R /Im55 62 0 R /Im54 61 0 R /Im54 61 0 R /Im63 70 0 R /Im64 71 0 R /Im53 60 0 R /Im67 74 0 R /Im57 64 0 R /Im76 83 0 R /Im64 71 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im57 64 0 R /Im60 67 0 R /Im60 67 0 R /Im63 70 0 R /Im114 121 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im53 60 0 R /Im64 71 0 R /Im65 72 0 R /Im76 83 0 R /Im57 64 0 R /Im54 61 0 R /Im69 76 0 R /Im186 193 0 R /Im186 193 0 R /Im63 70 0 R /Im53 60 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im76 83 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im130 137 0 R /Im64 71 0 R /Im86 93 0 R /Im53 60 0 R /Im86 93 0 R /Im71 78 0 R /Im85 92 0 R /Im55 62 0 R /Im54 61 0 R /Im55 62 0 R /Im59 66 0 R /Im53 60 0 R /Im53 60 0 R /Im66 73 0 R /Im76 83 0 R /Im53 60 0 R /Im132 139 0 R /Im58 65 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im58 65 0 R /Im86 93 0 R /Im184 191 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im54 61 0 R /Im69 76 0 R /Im56 63 0 R /Im54 61 0 R /Im60 67 0 R /Im53 60 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im64 71 0 R /Im54 61 0 R /Im55 62 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im80 87 0 R /Im53 60 0 R /Im55 62 0 R /Im54 61 0 R /Im54 61 0 R /Im63 70 0 R /Im73 80 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im193 200 0 R /Im194 201 0 R /Im195 202 0 R /Im195 202 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im197 204 0 R /Im198 205 0 R /Im199 206 0 R /Im200 207 0 R /Im197 204 0 R /Im194 201 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im57 64 0 R /Im60 67 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im56 63 0 R /Im69 76 0 R /Im63 70 0 R /Im53 60 0 R /Im60 67 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im69 76 0 R /Im66 73 0 R /Im66 73 0 R /Im53 60 0 R /Im79 86 0 R /Im60 67 0 R /Im56 63 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im54 61 0 R /Im76 83 0 R /Im55 62 0 R /Im79 86 0 R /Im115 122 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im64 71 0 R /Im59 66 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im57 64 0 R /Im60 67 0 R /Im76 83 0 R /Im55 62 0 R /Im114 121 0 R /Im53 60 0 R /Im53 60 0 R /Im118 125 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im69 76 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im64 71 0 R /Im59 66 0 R /Im57 64 0 R /Im69 76 0 R /Im64 71 0 R /Im57 64 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im63 70 0 R /Im73 80 0 R /Im67 74 0 R /Im53 60 0 R /Im116 123 0 R /Im59 66 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im193 200 0 R /Im194 201 0 R /Im195 202 0 R /Im195 202 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im197 204 0 R /Im198 205 0 R /Im199 206 0 R /Im200 207 0 R /Im197 204 0 R /Im194 201 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im61 68 0 R /Im60 67 0 R /Im63 70 0 R /Im79 86 0 R /Im63 70 0 R /Im60 67 0 R /Im80 87 0 R /Im86 93 0 R /Im184 191 0 R /Im60 67 0 R /Im56 63 0 R /Im55 62 0 R /Im115 122 0 R /Im60 67 0 R /Im55 62 0 R /Im56 63 0 R /Im67 74 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im116 123 0 R /Im65 72 0 R /Im69 76 0 R /Im56 63 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im201 208 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im57 64 0 R /Im80 87 0 R /Im60 67 0 R /Im54 61 0 R /Im60 67 0 R /Im64 71 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im202 209 0 R /Im203 210 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im202 209 0 R /Im204 211 0 R /Im71 78 0 R /Im193 200 0 R /Im194 201 0 R /Im195 202 0 R /Im195 202 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im197 204 0 R /Im198 205 0 R /Im199 206 0 R /Im200 207 0 R /Im197 204 0 R /Im194 201 0 R /Im130 137 0 R /Im201 208 0 R /Im71 78 0 R /Im202 209 0 R /Im203 210 0 R /Im71 78 0 R /Im202 209 0 R /Im204 211 0 R /Im132 139 0 R /Im64 71 0 R /Im57 64 0 R /Im56 63 0 R /Im69 76 0 R /Im53 60 0 R /Im64 71 0 R /Im61 68 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im60 67 0 R /Im59 66 0 R /Im63 70 0 R /Im73 80 0 R /Im64 71 0 R /Im61 68 0 R /Im202 209 0 R /Im203 210 0 R /Im64 71 0 R /Im58 65 0 R /Im60 67 0 R /Im56 63 0 R /Im53 60 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im69 76 0 R /Im64 71 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im57 64 0 R /Im60 67 0 R /Im76 83 0 R /Im55 62 0 R /Im114 121 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im56 63 0 R /Im65 72 0 R /Im53 60 0 R /Im53 60 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im79 86 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im59 66 0 R /Im202 209 0 R /Im204 211 0 R /Im55 62 0 R /Im57 64 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im115 122 0 R /Im60 67 0 R /Im55 62 0 R /Im56 63 0 R /Im67 74 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im116 123 0 R /Im65 72 0 R /Im69 76 0 R /Im56 63 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im201 208 0 R /Im71 78 0 R /Im60 67 0 R /Im56 63 0 R /Im64 71 0 R /Im61 68 0 R /Im202 209 0 R /Im203 210 0 R /Im76 83 0 R /Im60 67 0 R /Im69 76 0 R /Im63 70 0 R /Im67 74 0 R /Im115 122 0 R /Im53 60 0 R /Im114 121 0 R /Im64 71 0 R /Im64 71 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im63 70 0 R /Im64 71 0 R /Im53 60 0 R /Im56 63 0 R /Im130 137 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im56 63 0 R /Im132 139 0 R /Im57 64 0 R /Im60 67 0 R /Im76 83 0 R /Im55 62 0 R /Im114 121 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im56 63 0 R /Im65 72 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im69 76 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im53 60 0 R /Im118 125 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im59 66 0 R /Im202 209 0 R /Im204 211 0 R /Im80 87 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im201 208 0 R /Im64 71 0 R /Im55 62 0 R /Im137 144 0 R /Im233 242 0 R /Im253 262 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im130 137 0 R /Im137 144 0 R /Im62 69 0 R /Im72 79 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im71 78 0 R /Im56 63 0 R /Im53 60 0 R /Im54 61 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im63 70 0 R /Im73 80 0 R /Im132 139 0 R /Im86 93 0 R /Im72 79 0 R /Im60 67 0 R /Im57 64 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im57 64 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im193 200 0 R /Im194 201 0 R /Im195 202 0 R /Im195 202 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im197 204 0 R /Im198 205 0 R /Im199 206 0 R /Im200 207 0 R /Im197 204 0 R /Im194 201 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im64 71 0 R /Im67 74 0 R /Im53 60 0 R /Im116 123 0 R /Im59 66 0 R /Im53 60 0 R /Im67 74 0 R /Im67 74 0 R /Im53 60 0 R /Im54 61 0 R /Im53 60 0 R /Im59 66 0 R /Im67 74 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im65 72 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im66 73 0 R /Im53 60 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im192 199 0 R /Im115 122 0 R /Im53 60 0 R /Im73 80 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im64 71 0 R /Im67 74 0 R /Im53 60 0 R /Im116 123 0 R /Im59 66 0 R /Im64 71 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im71 78 0 R /Im80 87 0 R /Im53 60 0 R /Im66 73 0 R /Im55 62 0 R /Im59 66 0 R /Im66 73 0 R /Im60 67 0 R /Im63 70 0 R /Im63 70 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im53 60 0 R /Im119 126 0 R /Im55 62 0 R /Im58 65 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im61 68 0 R /Im56 63 0 R /Im60 67 0 R /Im58 65 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im66 73 0 R /Im76 83 0 R /Im53 60 0 R /Im119 126 0 R /Im53 60 0 R /Im66 73 0 R /Im69 76 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im80 87 0 R /Im64 71 0 R /Im57 64 0 R /Im76 83 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im79 86 0 R /Im57 64 0 R /Im56 63 0 R /Im53 60 0 R /Im53 60 0 R /Im55 62 0 R /Im61 68 0 R /Im60 67 0 R /Im63 70 0 R /Im79 86 0 R /Im63 70 0 R /Im60 67 0 R /Im80 87 0 R /Im86 93 0 R /Im271 282 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im71 78 0 R /Im80 87 0 R /Im53 60 0 R /Im55 62 0 R /Im69 76 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im57 64 0 R /Im80 87 0 R /Im53 60 0 R /Im69 76 0 R /Im53 60 0 R /Im55 62 0 R /Im76 83 0 R /Im53 60 0 R /Im69 76 0 R /Im56 63 0 R /Im64 71 0 R /Im57 64 0 R /Im64 71 0 R /Im66 73 0 R /Im61 68 0 R /Im69 76 0 R /Im59 66 0 R /Im66 73 0 R /Im79 86 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im272 283 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im66 73 0 R /Im53 60 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im55 62 0 R /Im54 61 0 R /Im54 61 0 R /Im63 70 0 R /Im73 80 0 R /Im55 62 0 R /Im67 74 0 R /Im53 60 0 R /Im54 61 0 R /Im57 64 0 R /Im76 83 0 R /Im273 284 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im67 74 0 R /Im53 60 0 R /Im54 61 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im61 68 0 R /Im63 70 0 R /Im60 67 0 R /Im60 67 0 R /Im78 85 0 R /Im55 62 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im67 74 0 R /Im86 93 0 R /Im184 191 0 R /Im60 67 0 R /Im56 63 0 R /Im53 60 0 R /Im55 62 0 R /Im66 73 0 R /Im76 83 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im201 208 0 R /Im60 67 0 R /Im61 68 0 R /Im55 62 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im79 86 0 R /Im57 64 0 R /Im56 63 0 R /Im53 60 0 R /Im53 60 0 R /Im71 78 0 R /Im80 87 0 R /Im53 60 0 R /Im55 62 0 R /Im64 71 0 R /Im65 72 0 R /Im59 66 0 R /Im64 71 0 R /Im57 64 0 R /Im69 76 0 R /Im66 73 0 R /Im66 73 0 R /Im53 60 0 R /Im60 67 0 R /Im56 63 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im201 208 0 R /Im203 210 0 R /Im71 78 0 R /Im86 93 0 R /Im86 93 0 R /Im86 93 0 R /Im71 78 0 R /Im201 208 0 R /Im274 285 0 R /Im53 60 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im55 62 0 R /Im79 86 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im275 286 0 R /Im130 137 0 R /Im201 208 0 R /Im203 210 0 R /Im132 139 0 R /Im71 78 0 R /Im86 93 0 R /Im86 93 0 R /Im86 93 0 R /Im71 78 0 R /Im275 286 0 R /Im130 137 0 R /Im201 208 0 R /Im274 285 0 R /Im132 139 0 R /Im115 122 0 R /Im73 80 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im58 65 0 R /Im64 71 0 R /Im59 66 0 R /Im64 71 0 R /Im79 86 0 R /Im58 65 0 R /Im55 62 0 R /Im119 126 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im71 78 0 R /Im80 87 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im201 208 0 R /Im203 210 0 R /Im71 78 0 R /Im86 93 0 R /Im86 93 0 R /Im86 93 0 R /Im71 78 0 R /Im201 208 0 R /Im274 285 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im115 122 0 R /Im56 63 0 R /Im60 67 0 R /Im69 76 0 R /Im65 72 0 R /Im76 83 0 R /Im57 64 0 R /Im115 122 0 R /Im73 80 0 R /Im54 61 0 R /Im60 67 0 R /Im64 71 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im202 209 0 R /Im203 210 0 R /Im71 78 0 R /Im86 93 0 R /Im86 93 0 R /Im86 93 0 R /Im71 78 0 R /Im202 209 0 R /Im274 285 0 R /Im61 68 0 R /Im56 63 0 R /Im60 67 0 R /Im58 65 0 R /Im201 208 0 R /Im86 93 0 R /Im75 82 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im71 78 0 R /Im55 62 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im57 64 0 R /Im55 62 0 R /Im59 66 0 R /Im66 73 0 R /Im53 60 0 R /Im71 78 0 R /Im193 200 0 R /Im194 201 0 R /Im195 202 0 R /Im195 202 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im197 204 0 R /Im198 205 0 R /Im199 206 0 R /Im200 207 0 R /Im197 204 0 R /Im194 201 0 R /Im130 137 0 R /Im201 208 0 R /Im71 78 0 R /Im202 209 0 R /Im276 287 0 R /Im71 78 0 R /Im202 209 0 R /Im277 288 0 R /Im132 139 0 R /Im71 78 0 R /Im278 289 0 R /Im71 78 0 R /Im279 290 0 R /Im280 291 0 R /Im87 94 0 R /Im135 142 0 R /Im71 78 0 R /Im86 93 0 R /Im86 93 0 R /Im86 93 0 R /Im71 78 0 R /Im281 292 0 R /Im102 109 0 R /Im71 78 0 R /Im278 289 0 R /Im282 293 0 R /Im283 294 0 R /Im279 290 0 R /Im130 137 0 R /Im135 142 0 R /Im132 139 0 R /Im64 71 0 R /Im55 62 0 R /Im54 61 0 R /Im60 67 0 R /Im64 71 0 R /Im57 64 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im53 60 0 R /Im119 126 0 R /Im55 62 0 R /Im58 65 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im64 71 0 R /Im61 68 0 R /Im275 286 0 R /Im130 137 0 R /Im201 208 0 R /Im276 287 0 R /Im132 139 0 R /Im284 295 0 R /Im275 286 0 R /Im130 137 0 R /Im201 208 0 R /Im277 288 0 R /Im132 139 0 R /Im71 78 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im64 71 0 R /Im59 66 0 R /Im53 60 0 R /Im65 72 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im60 67 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im80 87 0 R /Im64 71 0 R /Im53 60 0 R /Im86 93 0 R /Im184 191 0 R /Im60 67 0 R /Im56 63 0 R /Im53 60 0 R /Im55 62 0 R /Im66 73 0 R /Im76 83 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im80 87 0 R /Im64 71 0 R /Im57 64 0 R /Im76 83 0 R /Im281 292 0 R /Im54 61 0 R /Im60 67 0 R /Im64 71 0 R /Im79 86 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im71 78 0 R /Im281 292 0 R /Im130 137 0 R /Im281 292 0 R /Im285 296 0 R /Im135 142 0 R /Im132 139 0 R /Im286 297 0 R /Im138 145 0 R /Im54 61 0 R /Im60 67 0 R /Im64 71 0 R /Im57 64 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im53 60 0 R /Im119 126 0 R /Im55 62 0 R /Im58 65 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im59 66 0 R /Im69 76 0 R /Im58 65 0 R /Im115 122 0 R /Im53 60 0 R /Im56 63 0 R /Im60 67 0 R /Im61 68 0 R /Im59 66 0 R /Im53 60 0 R /Im65 72 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im60 67 0 R /Im59 66 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im65 72 0 R /Im53 60 0 R /Im59 66 0 R /Im53 60 0 R /Im56 63 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im86 93 0 R /Im233 242 0 R /Im63 70 0 R /Im63 70 0 R /Im53 60 0 R /Im119 126 0 R /Im55 62 0 R /Im58 65 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im60 67 0 R /Im61 68 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im79 86 0 R /Im57 64 0 R /Im56 63 0 R /Im53 60 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im58 65 0 R /Im53 60 0 R /Im56 63 0 R /Im65 72 0 R /Im53 60 0 R /Im67 74 0 R /Im57 64 0 R /Im60 67 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im57 64 0 R /Im67 74 0 R /Im53 60 0 R /Im116 123 0 R /Im59 66 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im193 200 0 R /Im194 201 0 R /Im195 202 0 R /Im195 202 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im197 204 0 R /Im198 205 0 R /Im199 206 0 R /Im200 207 0 R /Im197 204 0 R /Im194 201 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im287 298 0 R /Im107 114 0 R /Im229 238 0 R /Im229 238 0 R /Im228 237 0 R /Im288 299 0 R /Im122 129 0 R /Im123 130 0 R /Im289 300 0 R /Im261 272 0 R /Im262 273 0 R /Im263 274 0 R /Im263 274 0 R /Im262 273 0 R /Im264 275 0 R /Im265 276 0 R /Im266 277 0 R /Im267 278 0 R /Im268 279 0 R /Im269 280 0 R /Im266 277 0 R /Im262 273 0 R /Im124 131 0 R /Im126 133 0 R /Im124 131 0 R /Im226 235 0 R /Im227 236 0 R /Im107 114 0 R /Im228 237 0 R /Im229 238 0 R /Im226 235 0 R /Im107 114 0 R /Im230 239 0 R /Im231 240 0 R /Im227 236 0 R /Im124 131 0 R /Im107 114 0 R /Im232 241 0 R /Im227 236 0 R /Im124 131 0 R /Im226 235 0 R /Im126 133 0 R /Im127 134 0 R /Im233 242 0 R /Im63 70 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im69 76 0 R /Im65 72 0 R /Im76 83 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im193 200 0 R /Im194 201 0 R /Im195 202 0 R /Im195 202 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im197 204 0 R /Im198 205 0 R /Im199 206 0 R /Im200 207 0 R /Im197 204 0 R /Im194 201 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im64 71 0 R /Im66 73 0 R /Im63 70 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im63 70 0 R /Im73 80 0 R /Im67 74 0 R /Im53 60 0 R /Im116 123 0 R /Im59 66 0 R /Im53 60 0 R /Im67 74 0 R /Im55 62 0 R /Im55 62 0 R /Im57 64 0 R /Im60 67 0 R /Im57 64 0 R /Im55 62 0 R /Im63 70 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im58 65 0 R /Im60 67 0 R /Im59 66 0 R /Im65 72 0 R /Im54 61 0 R /Im60 67 0 R /Im64 71 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im80 87 0 R /Im64 71 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im115 122 0 R /Im60 67 0 R /Im55 62 0 R /Im56 63 0 R /Im67 74 0 R /Im54 61 0 R /Im55 62 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im53 60 0 R /Im56 63 0 R /Im71 78 0 R /Im80 87 0 R /Im53 60 0 R /Im66 73 0 R /Im55 62 0 R /Im59 66 0 R /Im59 66 0 R /Im60 67 0 R /Im57 64 0 R /Im53 60 0 R /Im119 126 0 R /Im54 61 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im57 64 0 R /Im55 62 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im61 68 0 R /Im56 63 0 R /Im60 67 0 R /Im58 65 0 R /Im66 73 0 R /Im60 67 0 R /Im63 70 0 R /Im63 70 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im53 60 0 R /Im119 126 0 R /Im55 62 0 R /Im58 65 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im115 122 0 R /Im73 80 0 R /Im55 62 0 R /Im59 66 0 R /Im62 69 0 R /Im131 138 0 R /Im117 124 0 R /Im55 62 0 R /Im63 70 0 R /Im65 72 0 R /Im60 67 0 R /Im56 63 0 R /Im64 71 0 R /Im57 64 0 R /Im76 83 0 R /Im58 65 0 R /Im65 72 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im59 66 0 R /Im53 60 0 R /Im64 71 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im55 62 0 R /Im57 64 0 R /Im60 67 0 R /Im57 64 0 R /Im55 62 0 R /Im63 70 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im59 66 0 R /Im60 67 0 R /Im56 63 0 R /Im53 60 0 R /Im114 121 0 R /Im53 60 0 R /Im59 66 0 R /Im55 62 0 R /Im54 61 0 R /Im55 62 0 R /Im56 63 0 R /Im57 64 0 R /Im64 71 0 R /Im55 62 0 R /Im63 70 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im62 69 0 R /Im59 66 0 R /Im133 140 0 R /Im62 69 0 R /Im59 66 0 R /Im69 76 0 R /Im186 193 0 R /Im69 76 0 R /Im78 85 0 R /Im55 62 0 R /Im55 62 0 R /Im57 64 0 R /Im55 62 0 R /Im63 70 0 R /Im86 93 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im189 196 0 R /Im55 62 0 R /Im71 78 0 R /Im72 79 0 R /Im55 62 0 R /Im78 85 0 R /Im55 62 0 R /Im59 66 0 R /Im60 67 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im63 70 0 R /Im86 93 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im83 90 0 R /Im139 146 0 R /Im80 87 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im54 61 0 R /Im60 67 0 R /Im53 60 0 R /Im67 74 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im57 64 0 R /Im60 67 0 R /Im66 73 0 R /Im55 62 0 R /Im63 70 0 R /Im66 73 0 R /Im69 76 0 R /Im79 86 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im54 61 0 R /Im60 67 0 R /Im64 71 0 R /Im59 66 0 R /Im57 64 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im54 61 0 R /Im56 63 0 R /Im53 60 0 R /Im61 68 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im59 66 0 R /Im66 73 0 R /Im53 60 0 R /Im60 67 0 R /Im61 68 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im115 122 0 R /Im55 62 0 R /Im53 60 0 R /Im67 74 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im62 69 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im80 87 0 R /Im53 60 0 R /Im67 74 0 R /Im53 60 0 R /Im116 123 0 R /Im59 66 0 R /Im53 60 0 R /Im67 74 0 R /Im55 62 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im69 76 0 R /Im64 71 0 R /Im115 122 0 R /Im64 71 0 R /Im63 70 0 R /Im64 71 0 R /Im57 64 0 R /Im73 80 0 R /Im290 301 0 R /Im60 67 0 R /Im80 87 0 R /Im60 67 0 R /Im61 68 0 R /Im54 61 0 R /Im56 63 0 R /Im53 60 0 R /Im61 68 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im59 66 0 R /Im66 73 0 R /Im53 60 0 R /Im60 67 0 R /Im61 68 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im57 64 0 R /Im60 67 0 R /Im115 122 0 R /Im53 60 0 R /Im114 121 0 R /Im64 71 0 R /Im64 71 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im63 70 0 R /Im64 71 0 R /Im53 60 0 R /Im56 63 0 R /Im71 78 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im54 61 0 R /Im60 67 0 R /Im64 71 0 R /Im59 66 0 R /Im57 64 0 R /Im80 87 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im66 73 0 R /Im55 62 0 R /Im63 70 0 R /Im66 73 0 R /Im69 76 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im55 62 0 R /Im55 62 0 R /Im57 64 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im56 63 0 R /Im73 80 0 R /Im57 64 0 R /Im55 62 0 R /Im57 64 0 R /Im69 76 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im290 301 0 R /Im60 67 0 R /Im80 87 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im69 76 0 R /Im53 60 0 R /Im67 74 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im54 61 0 R /Im60 67 0 R /Im64 71 0 R /Im59 66 0 R /Im57 64 0 R /Im55 62 0 R /Im55 62 0 R /Im59 66 0 R /Im53 60 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im60 67 0 R /Im61 68 0 R /Im115 122 0 R /Im60 67 0 R /Im55 62 0 R /Im56 63 0 R /Im67 74 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im116 123 0 R /Im65 72 0 R /Im69 76 0 R /Im56 63 0 R /Im55 62 0 R /Im79 86 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im71 78 0 R /Im76 83 0 R /Im60 67 0 R /Im80 87 0 R /Im53 60 0 R /Im114 121 0 R /Im53 60 0 R /Im56 63 0 R /Im71 78 0 R /Im67 74 0 R /Im60 67 0 R /Im59 66 0 R /Im60 67 0 R /Im57 64 0 R /Im59 66 0 R /Im53 60 0 R /Im53 60 0 R /Im67 74 0 R /Im53 60 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im60 67 0 R /Im56 63 0 R /Im54 61 0 R /Im60 67 0 R /Im64 71 0 R /Im59 66 0 R /Im57 64 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im54 61 0 R /Im69 76 0 R /Im56 63 0 R /Im54 61 0 R /Im60 67 0 R /Im53 60 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im64 71 0 R /Im54 61 0 R /Im55 62 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im59 66 0 R /Im53 60 0 R /Im53 60 0 R /Im67 74 0 R /Im60 67 0 R /Im59 66 0 R /Im63 70 0 R /Im73 80 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im60 67 0 R /Im61 68 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im69 76 0 R /Im53 60 0 R /Im67 74 0 R /Im55 62 0 R /Im59 66 0 R /Im53 60 0 R /Im55 62 0 R /Im64 71 0 R /Im53 60 0 R /Im56 63 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im57 64 0 R /Im60 67 0 R /Im66 73 0 R /Im55 62 0 R /Im63 70 0 R /Im66 73 0 R /Im69 76 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im60 67 0 R /Im59 66 0 R /Im65 72 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im86 93 0 R /Im131 138 0 R /Im53 60 0 R /Im57 64 0 R /Im201 208 0 R /Im115 122 0 R /Im53 60 0 R /Im55 62 0 R /Im115 122 0 R /Im60 67 0 R /Im55 62 0 R /Im56 63 0 R /Im67 74 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im116 123 0 R /Im65 72 0 R /Im69 76 0 R /Im56 63 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im291 302 0 R /Im115 122 0 R /Im53 60 0 R /Im55 62 0 R /Im53 60 0 R /Im57 64 0 R /Im60 67 0 R /Im61 68 0 R /Im55 62 0 R /Im63 70 0 R /Im63 70 0 R /Im54 61 0 R /Im60 67 0 R /Im64 71 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im60 67 0 R /Im59 66 0 R /Im201 208 0 R /Im86 93 0 R /Im75 82 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im71 78 0 R /Im80 87 0 R /Im53 60 0 R /Im67 74 0 R /Im53 60 0 R /Im116 123 0 R /Im59 66 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im61 68 0 R /Im60 67 0 R /Im63 70 0 R /Im63 70 0 R /Im60 67 0 R /Im80 87 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im53 60 0 R /Im292 303 0 R /Im293 304 0 R /Im130 137 0 R /Im202 209 0 R /Im132 139 0 R /Im71 78 0 R /Im66 73 0 R /Im55 62 0 R /Im63 70 0 R /Im63 70 0 R /Im53 60 0 R /Im67 74 0 R /Im55 62 0 R /Im294 305 0 R /Im295 306 0 R /Im296 307 0 R /Im296 307 0 R /Im295 306 0 R /Im296 307 0 R /Im297 308 0 R /Im298 309 0 R /Im299 310 0 R /Im295 306 0 R /Im296 307 0 R /Im300 311 0 R /Im71 78 0 R /Im60 67 0 R /Im61 68 0 R /Im55 62 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im202 209 0 R /Im280 291 0 R /Im291 302 0 R /Im55 62 0 R /Im65 72 0 R /Im55 62 0 R /Im64 71 0 R /Im59 66 0 R /Im57 64 0 R /Im60 67 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im86 93 0 R /Im292 303 0 R /Im293 304 0 R /Im130 137 0 R /Im202 209 0 R /Im132 139 0 R /Im283 294 0 R /Im301 312 0 R /Im301 312 0 R /Im301 312 0 R /Im301 312 0 R /Im302 313 0 R /Im202 209 0 R /Im303 314 0 R /Im280 291 0 R /Im291 302 0 R /Im285 296 0 R /Im87 94 0 R /Im202 209 0 R /Im102 109 0 R /Im301 312 0 R /Im301 312 0 R /Im301 312 0 R /Im193 200 0 R /Im194 201 0 R /Im195 202 0 R /Im195 202 0 R /Im194 201 0 R /Im196 203 0 R /Im285 296 0 R /Im197 204 0 R /Im198 205 0 R /Im199 206 0 R /Im200 207 0 R /Im197 204 0 R /Im194 201 0 R /Im130 137 0 R /Im201 208 0 R /Im71 78 0 R /Im202 209 0 R /Im71 78 0 R /Im202 209 0 R /Im303 314 0 R /Im132 139 0 R /Im283 294 0 R /Im57 64 0 R /Im56 63 0 R /Im69 76 0 R /Im53 60 0 R /Im304 315 0 R /Im301 312 0 R /Im301 312 0 R /Im301 312 0 R /Im301 312 0 R /Im71 78 0 R /Im80 87 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im305 316 0 R /Im306 317 0 R /Im305 316 0 R /Im67 74 0 R /Im53 60 0 R /Im59 66 0 R /Im60 67 0 R /Im57 64 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im69 76 0 R /Im58 65 0 R /Im115 122 0 R /Im53 60 0 R /Im56 63 0 R /Im60 67 0 R /Im61 68 0 R /Im53 60 0 R /Im63 70 0 R /Im53 60 0 R /Im58 65 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im64 71 0 R /Im59 66 0 R /Im306 317 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im78 85 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im80 87 0 R /Im64 71 0 R /Im59 66 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im54 61 0 R /Im60 67 0 R /Im64 71 0 R /Im59 66 0 R /Im57 64 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im60 67 0 R /Im61 68 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im71 78 0 R /Im60 67 0 R /Im56 63 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im69 76 0 R /Im66 73 0 R /Im66 73 0 R /Im53 60 0 R /Im60 67 0 R /Im56 63 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im66 73 0 R /Im55 62 0 R /Im69 76 0 R /Im53 60 0 R /Im67 74 0 R /Im115 122 0 R /Im73 80 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im86 93 0 R /Im75 82 0 R /Im76 83 0 R /Im64 71 0 R /Im66 73 0 R /Im60 67 0 R /Im69 76 0 R /Im59 66 0 R /Im57 64 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im57 64 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im59 66 0 R /Im60 67 0 R /Im57 64 0 R /Im115 122 0 R /Im53 60 0 R /Im57 64 0 R /Im57 64 0 R /Im53 60 0 R /Im56 63 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im59 66 0 R /Im55 62 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im86 93 0 R /Im184 191 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im66 73 0 R /Im55 62 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im57 64 0 R /Im57 64 0 R /Im80 87 0 R /Im60 67 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im78 85 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im80 87 0 R /Im64 71 0 R /Im59 66 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im54 61 0 R /Im60 67 0 R /Im64 71 0 R /Im59 66 0 R /Im57 64 0 R /Im71 78 0 R /Im80 87 0 R /Im53 60 0 R /Im58 65 0 R /Im60 67 0 R /Im67 74 0 R /Im64 71 0 R /Im61 68 0 R /Im73 80 0 R /Im57 64 0 R /Im76 83 0 R /Im64 71 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im67 74 0 R /Im53 60 0 R /Im116 123 0 R /Im59 66 0 R /Im53 60 0 R /Im55 62 0 R /Im57 64 0 R /Im60 67 0 R /Im57 64 0 R /Im55 62 0 R /Im63 70 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im307 318 0 R /Im293 304 0 R /Im55 62 0 R /Im61 68 0 R /Im60 67 0 R /Im63 70 0 R /Im63 70 0 R /Im60 67 0 R /Im80 87 0 R /Im206 215 0 R /Im202 209 0 R /Im203 210 0 R /Im307 318 0 R /Im293 304 0 R /Im202 209 0 R /Im204 211 0 R /Im80 87 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im292 303 0 R /Im293 304 0 R /Im130 137 0 R /Im202 209 0 R /Im203 210 0 R /Im132 139 0 R /Im308 319 0 R /Im292 303 0 R /Im293 304 0 R /Im130 137 0 R /Im202 209 0 R /Im204 211 0 R /Im132 139 0 R /Im71 78 0 R /Im60 67 0 R /Im56 63 0 R /Im80 87 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im292 303 0 R /Im293 304 0 R /Im130 137 0 R /Im202 209 0 R /Im203 210 0 R /Im132 139 0 R /Im283 294 0 R /Im292 303 0 R /Im293 304 0 R /Im130 137 0 R /Im202 209 0 R /Im204 211 0 R /Im132 139 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im292 303 0 R /Im293 304 0 R /Im130 137 0 R /Im202 209 0 R /Im203 210 0 R /Im132 139 0 R /Im309 320 0 R /Im292 303 0 R /Im293 304 0 R /Im130 137 0 R /Im202 209 0 R /Im204 211 0 R /Im132 139 0 R /Im71 78 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 269 0 R +>> +endobj +269 0 obj +<< +/Length 712 0 R +/Filter /FlateDecode +>> +stream +x¥}K¯5ÍNÞüüwöé®K_F)Ä2IàH¸s"Õ«íÞ»z=åòãûEíå²]®§\¾üÛoþò׿ýfþõ¿ù·ß¯¦_Ó×4éÿþóöå+/Ó¯5¯ï?ÿæ~óÛÿöOkùõgÿò¿üñ}úÚ¶Û÷Ë×V¦_ó4}ÍÛA`ÿ}X>�¯9ÒE`¾8¨+ÁÁåàü§yÚ^ÿp#P¿Ö Pw?3âàS}Ò8¨~9»�²rÐháC};(»Ë ùõ¹ª!5BÌ(DÂ(Ä×n§¯ôúr^ÓW}-ÓW]ÂÓÄüUÊÄ×´^Jåý÷Ia[åN@,a[%ÌÙc +"è ¦ÂkºYHbPez)Ä£J F%�qó!Qp*2åÝÒÂAøvä² S}k8ötzêÒ2»B÷xJË'"ÅYSï%¼v´G}=n�< ?|AÀçûB.åS]òíÀ¿<ÕèfhZZÌ8Iâ+Xhà¤8øTA`>ýº ü2Êà'üòY ^µ%à7¤9ûÐ'P¦z,å)-ªG±åªBÜÌ£©O`AeV¿Þ +Xúýø2q¿·§¦´!Sr)R@û>]k /oÓ§Î{å«~s@\ö>%M>!öABÅ-PrÀ`Mè<vpª1¥âRcäÛÐTDgËçúp9#;øË}Juí îÅ)½.°ïSÊæÅiýJ6¤ºCZ À¾ K\ µ>µÄ5ìPnP3ÌÁ¶#@È`GøéPú¸Ã½ða]5 5ðÝ£Iâ\cW)Îk)ÄÓ¦M8øIÀÓÞkÅ´kð Ásc³1ɽÙÅA=~ J "ÀP ǽťF#¤ÕHâwqïZûIi-.C¼ì¦íÃ¥õ°mh N£{A8Ø+°Ï£Í@i,AÛI ¢!Í Ðv}¥{²$½þ¾8 ¡í(~.AÛÉ'D#(9!Â(HTè`NÇ3ª Y pö§jX)2PsEgñô¶õ·°è`7õ aB$öóxæÒ³Ë¥çuµ.=>ùµ-oÏ´¼èÔI¿Oõó½jzÓo(¬_Sz£Ý·^ õcODTQ"³)vÿ,ýFÀÿTs%"N!´`TSl¤è:_¬îÑ%|?À¼Ù/È=ö ؼIy�\`³>ÂêcÁ �wa âWG` Ív4sýÜ !KØÑ^>üj ûþl i!¶eßZÅå~"%2'|BvÀp ^qdH}!æÕ%Äþ _ Ä _?paJVp20{yjÊÏ�HÉ_Órbͤ,/¨ð RÖÙ/õ©¶ðÁ }^Ø»OÆ:äÀ»^ÐBÆE}5o¯]¯¼ë÷×û/ðr°ÉÜ^\¾å;,zø»¢â QÑÑú8ñòÉSF!Ö QÍøäýû¶&ª8 b½¬É«Vd%U1nË6/&»aõíhîHÄÛ±:UÞn@7EK±äç}uù4'NÏ,)MPBÑvdb󱺼ÔiÅ úÇ»<õÜly#BAi{¨èxZFj`ð~Þ£¦(Áår^#¤cÏF`9v®×]±nر_X·å uy;P¨%~`]#,8`´°!¤rlètd2wü@ñxÂBôå½*n +íÀoH°¬M +=q´é +V:ëøUm 0/øbk0ý\«jnq¤T�&()ø#-`9¡%|èã,wÕ.2Ã;Ðø"õ ¡on"·ÌHLaÏSHePÀ5àÛb/ð+2æ `Ëk }!îh;21Ií`PWdP@¦HÇ´ì1Å>32ÅÏÍ`ÔùN>ÒlÓ°5Ût¤G#YjI B$nMRí8´$ì>t)©ú\nZÐi£ûñ»² `^àÃ((çËh`Õð ¯hÂ$X3ÿ@z¡°¦bÕÅθ5 æ¸ H`Þß!¦É jfÈó_]ô³ $ÛôFÀïT5YôFH¬Xes]£(Lói¡O`EBtݾ¦ÕKÖý¿ó6/Ê(#¬ôÈìg}~oZ-5=#K2`vT_,0Ïç>)1IÈ+2�Ð'QJTZ¾¹,ÉIî¾ýh${`JLý÷ÀÔÔ¬>`¡GðE»o30kE~Õ/Ä+$õyBjdjb)Öh +ü´j´D¡b¥vµ[Ð~!Vp*iMK ¦Àk z»">~aÅÇoð5Z!ÌÉHD^Ô\KVDZ k }¸«÷ï�wõ ~°úzõ|÷¬s¯ó ÷º6Õ¡&£çãû~Bm9Rt¹b§¿ pÀ¤¨7h 1! +¹äÁx3çh¶lFjdÂëú]¢ ¿eu qüÄíC#ª¸²,>-àfb¿·¨%ê½/?Á8`î CÀgý@ÂÄv LÞ64e¦Êp~¦Æ]Ó7LNÔ+§ô8�w¦>ÜÄí°KJÐ)2j(ÿþz ®×Ís Çþm Nxf.ÉIÒ½ìZQã·»<ßÿ$@Õï¾Ãmx=B7>O4s0^ü94¬KHÁtYß]L>"Ådgô*â ÉÊFAP×¾@§Õ«f:9Mïå"ËbÐp\ÃÑ"çxcx&Ä2ô|j4°ê5e}c(@̵ko&}¤¨>b ½ "3"ð¡Àââ ¿¤È0´ÞAQi½}ó(Lã1dËC8°¦Ç!©Û¨ãU_9¢û1A¯He^Wû׺Â×È©1Íëc Dk&Kés O·Q¿â~YÓaöèá¦h7|¼*(&óÊȼÞÐÑBe^W5²Y Ìk¤ OCêe/´èr×/«e_w½D>/n¨%Æö¶7Þ>)¤÷â§OÄߥpáåDòì'¡ põFá#:ÚV)ÄÃË_;ìY(hýö§(Ó×~WPÏÖøl¨ßgbAHÉsÞ¾æélªÏãoåçSA_½{cÂãÂ&EÔ7}~P0Øó§$æòU°MÙ«oÿЮÃå$ BB +vÙUÇÑê¡:RIÔñfâuÞ=ebYÚÄuàLø:áëå®ÿÔuíÓ·>|¥©¼Q·3Q)x^¡¶¯²WûùÍÃÖØçÐQ +5LA_q&ß* ü(oo¹$Ï¿NoÙ×ûsùkù¡âZ¸ +ÏÙwêÿ¸à#{ð4;ÔX§8À ×Ö:þ{ç)ÃrP +«Ï,:ºÖ(çäÉèT(íÝ?ÂÝ)|*£ï¥¦*hñ fú®r.ÓUgF¢ô£ÍqzÞ)§§¾(ÜI|"Ó>}²´ , +ðiTðí[/BQ("øöNâcs$fL¿¸-°¿&äñ~¸>ND;ÆÓTÌaÔ +Óòwq]ذ]}8þ>RßÅY-{c®f« \ÍKDwx zverÃZ¬ÕäfH·`â<Åî o$Ä�S�½Ú|MâÁf,Ùzn;ëÕx2Ú¦9ÎÜ÷d®`| ɪi[É�óîV¨&èÈ÷yÙr?ÙqK ¥Ìm$ã±£^%ØA|w9#3y$§)KÆS o3õCÔÒ¦æÆ¢Îh/PÐâÛÆCo7_FK0&îHDÅæ +7Ù³>t(iC'Ì ýnÎê7òúټß^0:©QíÔÜÖsø!<÷Ô²-à{âdÜ'ôûÆ+@�Lê³j ÛµÆÛÑ +ÊãÍ¥#p¸úÀhs&2ܤHä>gdÊC;Ôjß©r~pkÉL94&«'»öÑ£fCj$ÒV¸þ,Rz|pkf¸î.KìQ¥ð~ÞV)÷3Üv·Ûq÷YÒQ £¥ÇßU9óî¹®$}rëk_®Ë7& ¾(È*æì[0¥°$[ +ÕN»©9Pê÷fA&ï,øÚ{æà»8½yÈòðùýùqFbÌþI½nÒÓ%#`ïæ¡`ô´' %l TRllí7â¯#÷f îÕÔxFxÌ1]ÄÞ¡ºÃ3If0ù=8©ATkIZG=²¤aò_9þIÕJìRØÞ~ïÿý ýþ'lïÎÌ×öû¸3¹`¨�SB¸=-?·"Ï.j#¢,±é¬Þ}Nï£áàë÷}!±ú!7 ÊogI ¹�îÝZ¢¶fW²BFEÏîÈQ9"ÐÞz2¥%8itõ-aÜ[Sô'MÈýýhf3i²[£4¿¶O5JPïvôû$ûñgÆÅ}j8±½,é'" ør<{-Ñ(bÞö3rζж"íØCØ~âö¨_»p{Ô¯¥("¼ÑËø5í\ökäú5pKJ�9wâÍ'-ù_ÓÔ°_KÒúµ£õ_;Ròùµ´ýöNzà×ô1>LA³ò[ +Gm ëHݼBí/ïöc;ù¾ %¿¯&íïû·óþ}ù~CßPoB0 _³!Z'd)6;DIÉ'Ã>LÒ÷×FLÊâ äÁä\�&I¯%aLOºSð;+eíÄËèõmé˨~^ß ±,® a öÙµ%AËÇñöÁÇÛ;ªÏÁ9`F}"-BÔð7!2-áKÔ³Ê ¯ýê>]øväI`s0�·Ï1ö<]N!ªéÓYÐùJD65ÝÚ¯åæQ&1%»L¹ÏtiL)ô:¹h°KXGbznÈ+3ã̶ê:㻤Þ}]¥T°ìvZJWÒYáøýÐ;<´ü;qüY³$ÀäíDHXÂ7R=u0È=BÕB\-¼~#@�¬8 Þ94+¤%À<tÈãHFL.K2êÈ´>Ö¾Öõ¡6¸[kÀ)Cè»ô r@iZp%ªé0öÍåSûKHÈ>-Ñh\þÀ©V 6»hT:mRr#@`8 @DXyA{iÐ!Ñfò¾³Í�XHÈ|a¢£ÐGÅÈüE'ñâ§)á%H4³lÁÌY¹e¶ßÞðýçNêry£³äûülý ¬_ûد×bå,óVÀ4² +!jÚNðFÈ¡È-2Ò3M@Úд yÃ@LmÔ79 ²Hd:Èm+økfi#ö³ô½ÉÀBKdÚ N`3QIôÛ¤ÈR÷Ûqj BhôÉÄLÃYò 5¯ÏÓ'Èâ²# ÕÀ")¸ppùöV4·/ê³$d÷£bDèÔÙWkO&S.ÉE8ÜÒöQ\¥F²#5L-(;D©kÔ-oô× WÖØÅtÊò:uûHªÃ5èMLÙSQ¬¯G20T@ÀÒÎPdBZ$JBP@Êi°¹8Ls½`JäLG* ~¬ô C2¤âÁAèñedÐHëüp;êÓHx/È{÷h/M£¡GcF@, fD$WNЩóç͵c:t(Nõ9§Bâ)êGÂt¶**«=ûËRÐÙºñ³5Ã^5$Eb\y¿[Ö¢²ÕåÓó§´øGéÂi&áÛÏF<îgñµö-ÁÊ +k#¿NamôøôÔv?»òòÎR¨¼XE# Í÷Ä»À&8s±¥ûH{Cüû¿W¤Ý|ïÜGgEXLW`¶û+`Ä/ipP²@D¥Ózi163C3bmÍ®%@¹ú¤hÔs¡50Y¾Õ·Ðf Ö,M:GKè´(K=ÇЦ:ùLÑ�ºNK2"ªÐÄõj +T}`ØâÕ^#²íf 2²O´ +§B!8µlÑݤ@×G ¯ Åwº8Õw´³�¡c÷Mp/A#²ÍnWWH÷J�¬HH?ݾC²vÂĬ9ÐwÿÈUÿZé67´³´¯j¥Àî"`À<¹´6(¢Ù¡5\/-Ä�JfÄ4vD�¼¸É9=!0}eó³tEd{©_VÏZ®ò¬¡Dñëé¿oæÄÏÆq-h6YX+"sïÓl˱iD9Z8¿Û|H+P&hDVà¤ÈdÎ>ÒG8³o?÷ ¤% 2HPLìê2aÉÿÈ!KþG¶l !·LeÈ®.K4p&<CZ"N1Fìþ̧] ®QvÝj×{ãÆMy(ÉoÊÐòèÙ4Ü¥¯ÍxÝýBoÎÏl~Ǫ +[þýy_ÿÎÐ bZï?E:`[5ñ "±d@är]ñÔ²´Wöî²Ã1ÌØ´}8ǶwÇÃÃC(µî.;èq¦LÜ4ü20$#Eq@uøò©ÑÈ-=ÒeÀ!J5@ +S}*Ól`yæ.¤õHWD÷HÎÏNÖj!ûJ?©!é�$ìtªÝªÌt9ÕªLm6ÀGJÀw°!iA1Aj?f9Gê× +À>st(LêriR¶ÁÑf´¡)3ýx¡øk/.¤ßjGúGHñ ÒÏÙôGýÌ }ïwÉz*5üW%=Úß'ú4ó¡ ÓÙkEü7æ+ó!*«áÂ@}ùx/1u# ÌmGáÂZÐãF¸ó¶R!1u\ne¢¡Õ À×.!à³~¶5§s> +%�Öp@5l@ÛWçôHF<ºD¦ßÂì` 8û¼r óC)]pùõá÷ò¶c¤cÃ` ÆÐx63C|!¼?Ôô(LH}\~Ý àóiFDü©6ä ´æà¶ýá<e%kÙ^=YËÖÂÔiD"8z×h¿§gµÝ¾÷gikæFó=1!Kï ß7PfF�¤DÎahÚzqDÎ;Z3Ï7%0H772ãîmkÎg;êv ̬¹|¯!6 ë +I¿Øão¥àuuPUèÉ4ZEw@Ö%|Jr +Ⱥàò¼Åd]pùÆ@Ö1t@ÖÕüáÆ@Öq²®dåÂâ3þÅa?[Cð]ö xøÏºUɼ@Y$ó3÷¦SçnîJêax ZA^§Ûsé³¶¹N©~9V.Ýð¤&¦.TxR3UuH®N¸2:P3ã± _|iÜg-,Ù7¿!¬ÀT/ì>-Ê3ÈöïjÔÆòíÚÀ±'fÔF&k@FMFz}2#5#í95Ô|O\{4Ô~OÔü«[Lý®àô@ãàô@¨¡ÎyË #-02(r²7¨ÚÆ Ð<T7à¬péZîÅ[ºõÀô#³ZÓpÀ¹nH¸7hÄ;ÉwÄö3Ť«pt;^mÒø½ ÉÒËú$¨$ìsIÝgRÔîÆûÝ^ÁfAÉþ*²$¦ +wÁÁmÉâ@B`ÞzôúÞÊ·\#Ä qÀ¼ì°$ðÚÔ=áÓj!Êq½ÞpêË7=iH}Ä«oßûc«]8M1¬Y¯ïC8Y²8Zþ +Ü¡ü$êb O` ú{ÉçA ÖßKÓ#0pî08 CÑ`RÎ54ÍÛ¡&;O®`$adHDª±<·òUÝËóòp3+Nïæ»C¢¶SÆ~æ½Æú{)[óbJ´÷÷ƼÑiuÍ{cû=S�SÑ÷DOgÉ+¼IgGÀ¸ùûÖ`<×!ñ/ gs.H|ç˸եnÁcÀûá î@lõ[±M]âLѶðnÒ¼´)SÁj¥ÞPã·§ÛqB$Þ®÷s¸z»4yîzõGÛÉÉ ËÊåh ±ê2þÓHRC&(jùEÀô ñ4R}¦h@03У@Sg=¶£qóÈÉJkB,0£àn"mðl!"qÒv0ì´Òº%ÀÆõê?A�!µOSêJQ¡æúó,Mu4ÝL×ÝýíVÇ4ùé+®ô·^'DÀzû^éUûW×ù©µÉù]DIÎ;ÇbgôÏǼ¿yZ)p¹]åC4·KÐÞÏíJa +µøVÑWæ2$ã¹]×pn× +ÁävÍÐÜ.ÌÛNß²Æs»°I2¹][Ø^WÐtØäE¹6ïî8ÆH6víº£*Ããw/ä¦w»Nþ"æýá"dÔùEääsÔ}s8¿ÔªïVA§¦É¸óVLéª$yÄÞ ¥©ÂíÐffa¢3*ÍùI[já»)& @\H÷ò:iiF:iýï: _j4Ciß=dò[^fóÓ½nXßÿ,¬0ê&Ä�1_gJß'jaD» +¼¾ÜòÛ¡ÕÕvìF¯=* T&°¦ T»µPgÉ(¸"Ñ¿]êåB]ô´UNÀ-ÒÉ/Að7[> +h=K0¤V G*I +YsÝ |¸$cäöpCjÒ}C2Çá"1?)=3æ£�ö%\Æ% irí£ützèStäxøxÔ=Þ`Ö`Gõ§HL<â©£úP;4&Ç¡æëV;Çh"ôv FDaTX0|.Ñ£¾÷;$IóÊ5 ×ïc)F+32!ï_s6cGÐûú]ªyý6`Þâ¢d´G 8 Þ~®'oÇ +4õtbþðzÏ.Ñ4'É;-¡Ò$Cg´ú¬È-lp3 rgT;Â)ê�rhLµ£>{4D ]ír©ïÄ×ôM Y¡Í�G½üàßС¯ Þ³k/ë-o h· !ºvêËòìlÕ¶ßáÃUç(OW·,ý~[g#ÓÏPz>ßdàïgxAÄÁƱ,ϲÈóÊnÉ+xíÉPò«æ4¿OÜÜõ¥§ýÞ¿~Æ6ßþ>Ó´ ðEZ-y[ñN5K V0²-¤GJÀ¾§ãKØÍSqlEµ¡0]¿T×ïÉãêú]\v`týÞªQºö´Y]îÄHC÷ù3f?5¤ÍgHèPv$i_)M»g>6б@ÍDjt QÇód×fês ÑàÁíoBôg£$ì¾ãÐ+JVGØ¿«èSËg¢Þ âºUѶϫªñ'סï~o½²F[Æ(ȯ3Ûq]¶GN«a÷M]®»FÔ¯ç rà×Þ5B©Jßð6¨±½+¼~?úÐsá|ìúi²"ÄÑ># 04icÐ�¾ Ï&Í× íºnVD<kUKÀ:ÑA'adÈ|kÑN2Ê£f¤fÞyrí�´e"\ãÑ²Û -)ÛÐ~f.;"ß÷{$>DÓðïRçîQ®0íFædé6£Í4hG-ñ +hG-ñcùÈS¦ÌÌK_¹4íviWH=êÒ´3ËHÆtMICÑ`i x1ÝfE±D ¹aKÜááJXâw +d"Û>±E©GÙ¦á}Uï`üº¿bz*µümÃøÞU稥Ò$ºJ'è$CÀîR¢Ñ÷{}¦ «�¿íAX/döÖMh LL;£%øØ_ù¹»ºÔØ'PêâÒÂ8$u'WznKèѳÀ½@\;WäQ( 5a7à{¯PùÁvÒN`7øK-ÓÄ«ý$ÀZ^¾-1¥IÆvå×=>Vjæ¦ a»oýLç$¥u7 +D³è¤Þ9ÇJ-µç÷âæ4©åÆrãÁ_jJ¹¶U¬Ô2lþRËôÃÃæ`Ä¡dÒë³S"aIÄfWtN1°yCG-Õ:ÄkƧ[ÿèÏýÏúæv 'ã +9/GA÷©°p¥îÍ÷D}îÓò¸GùWàÞ~O°ß\üÙγKýÀêô-ÁXªÂþ¢KSYSY!2#²*>î#`äÈh) õÙNºBMQ»ýöº}Î oIÏ;ÓRú¦¥"T# G(Ðíi�ÕHäCÂ%5»n´yØ©i;ÎÏëúÔÐç ÃíH¼¨G"6[àn"Êö«ïtí:$ÃG¢Tt¼2 sûk xßñú.>ø±bÅ2$¦ø`êö»1O¾ÝØ}§ÈTtMsìBÜ¡úÐ3 ¼R¤#Â8Ц7ÇÛ9F侮ü òÙÑ©NÏV Iߣô¿G æ·W@`v5nî >P 2\ýmྠi>¾¹ô!VÎÄoßDÑÓINí½·díå~yg�g9 p±¾ÿÖÍèSà TçË~Rð;¤YêÕ#¤éØëdzE̸½¸l¡ïÕfIO»»5ÁËñ-%!cûîYöé>£@})%.çºÕj }CxF}ªf>}£¦©)%#Eq@!ntD1q½³f>½óygÍ {çq?òÎGä3ï¬Eqבּé'KâUöìóýØÝlióo1WÓæH;d½Ò»kÙ¾÷uËzßß¿Zb1GQ¨(Gqܾ§qÜø'%¥Ç¢U×ü-XpX¦ªÎêF_ÎÓ<}ÓLPK}-Hc\Òái¤ þ*ÚI®à 1-qõY¢Fv@Àz*÷yrq` V?2Àò*~r@Ef%¶åôÔ£$§G1bÃðT!ËÙG Ò2Ô£/:ýÆHòàup@56£BT¨»ÅÕø.«ðlcr(%R±á �)#8X�"«kG÷YØO ¼? =ßÜ÷Foî8[ZºÚ³)º¨ÖóHáoßu2î@ÏÕÕ©âV{Jþ|6á?ª^Íôg£¿°~Xq°âkWOr6ÎÐÂçNês0WFß:´×ÕYB2âÆÄ§w$bò¶bå�GÃ(ØÕgÄ¥¬'ÎÁѳm^z´ºTª#Ò#Äͧ+{;ì7§ö5:$#ÇδRP´=Ø }6m[¹)\øe#2 eàK"øÙ½otºõ&vjÄ'Ã%0=9Ð&nÏ\_ÃcÐ44½FÇ I2ÈhG÷Ó*t DÂâÛÑFlÛºjP§V&ÔÆÝ¦ZL;è¿ï¨R®ÁTÏ 94Ù.À?ÆâÊh øBj¯o*`9L.ôL XF0,õg ªóÔ3Á²óÆ£Mµdº´élܶ<Û +-;ÚF²kEK`:¿m.5ö-qõY¢ñx÷q]Ø%2{aG±Ärð¡Æþ#̵i l »4¢gK`�T£ß®·ÿ# :£½à?Ò´O-óRI®ÝØ×BZ TäPF:U& +á ^|NuØ`9ìuXÚè`µÔhÄSG[Úm:Å#|´i?0Ì»òx¯|íw8±4©mDݱí×½)Vv,óÖrÓXÕ±\8 aõѺ5Çû*BÌÁãYʱ鮿±@Lw6h Ät×Ëî:KèZÓ]6Gbº«&1Z1û·BAYÓëdd«9Ù¹iãÐnfOk¤ØùyF^FK`B»,8®kG¡³$µHÏ'#´és }!nÐk´"åWÚ=ß8 ²èw¨F%LH̰° qÀ¼ûÎÉåÆ)Ç]ì|þ ¿í!°LìÛÎ}°'}5o2 Ê¥î8¾:G %·úÐ+ 9Õ3g9ãht¥qÔhT ¢½@µã@{ñH;ä!°=ÛÎyB.Íõä×N Þãô 3Õ +r0EQïÍ÷O×Zlgât_58àßÈWl<×û@¦C]× ¨ +/¬Ïë°>xÚÖÁÍÞ¬-Ì3OvÄô²@B¤ºi@!M1¨[_+B4ªó3pÉ@®ïÒõhüERÕ, ,5®§¿ÅeAÀ©CS$ªç'h|;°´Fx?§éÊFNðëÐøuã`Cû ÏC5ø¨></ÌÎú@à¢ß÷¥2õ5Ýy`ÊJõ®FÏ·é[ÖnÏ#Ò%pD×ODk0®ðzT +SÊÓ-W[øy.ø}âæc 3'ð=ñP¥ Ï)·ï@�LK#ëÍ'û�GaR0+îJIvVl8`é©ìÔB£]t}¨GEʺYûÜ8î¦1Χ÷ÿ»¡p>ohk©iêøKçd·áìo¦ IiíïqÝÝÅÓØÍHD$tgúKP8X°÷{X :%©åÑÒC;Òæï·5.Qz¾µ|&ô/L +2'º¡¬^WB_dIóLxå +Y $eLÒh }c^§è~Ô{kj`â,á|`gë)Ú8],Ä2t¢èÑ&Ø8ýráÆé?<c°qúëö¼OÆé³/ÑÆéóÁL¡9Óæh¥]Ôn±IÓµ"`Ôz=ʨ¾mL}*ÑSF9¨éYÒ³ÃþJÓãáÆ6x,»ì:dç.HypCK`Äêr¢kÜ»Bìªñèªé±Äñs×À3v9«Ã1/ô/ñåy/¦º¹×[ßÿù=z-aö{¢ h?{eIè¡z"½8´d +G nñð·¢ÐáWôH¸£¹øÖÐç "Ø®Öß¶qsX +yßf4Þ«2óÜ´wî.ýhÊö-P¯eM» ¸üìÐí´#¨ßrI1¤døfLóöÛQZFdàíå|mðºÎøYÈa¯¦@z¢¤ ³hu¼7y¡_ÙT÷gÇ«¦UAªzV¨fDÐÃã1mh Lzcô·ã^\ÛÑxñZ}ç«4Ó3'¨Gí¸<XÍ[F¼7ð=ᤣý nîæÁkß3='$Á4}ô²èbî6U²·¿ÏÖ×Õ~ï¹ ïNs#@ ÷ÝcAK Ä(3ïbô\:´ýùùâs)é»Zx|D£Z)PÁIIM:ÄNJnÒØbÁÉ#9)JAV±%ß*úÊÜd¸ÄJýÞæ`\Áqâ;DÔÝÍNN"89mâ\¢%VèÈA)°9HÇ clÑ.vÁNVäEÕF®ýþÛiu¹~Â[N}Ü}]GE¥>\DAGµºùµaKº¬Úl eÔCÏâõfhþ-bKÁ-Ý« ©©lÐ;ù�|ø·Dµ DÀUü»sÎô´ÚÉýúûÁÌCÕÀJgí)|\0ÚKÖh>ø$W¢ÁÄQE8ðÑ,år7~¨ÃÚ%Pà5K\å ÿLÇ>"ð,¹ UdL7wé;<2æq¤u¥³h5Ò±?ð%æ-¼nÖ¨GõFÝjÔ"À<¿L¹W¥úIsÆP-"S¾ íggð¬¨@LBw õ.àh êWȰ?Ûi. Hôè, 8Kh¿e+¡Å ïp«J`ó°úH F´¢ÿòLÑËÚ&¼1ÑbÝ%ØòVºKÇtèýk+×÷!"íZþ ¬+k·õ3éÌÉ%qVÂb76zlÎ. |ÈÀºà ®8g5¯ÿFRA~fȳØ)²O@_�à g#K0 .ÒϬñeÐøØ�Ëû³ýx%ðz¼aÝ .Ñ-Sø7!BuAbÂ.x »!�#}ïÇØ n½?/v½R_zªft¶0É!Åw6m2g§ã [R ÛHY$ÄÞ, +±ËËã%|S¨Ö@tjÔ×ã¶Jú$Þ "ô;r)Ì}dÔòyDÓu°ïì=#0û3×;¥r®ý}*Nè{TT ¶ü;¢ïï7°~W5E+ @îÒ®¥ÓiD£ª pg3TB)2 o»Ë·å@;Æ|/!Ö° Kdp&VL©ÏA}júÞ× Lq0 áW×v4ì-QË!Ö¨®¡;å|Bé38IL£0¼WÓÈðµÙNûÃí¤Ý!ÃzHSy¨+#ã¦ã¹5çúP +3òLh8¡ó g¸¥öït1ð²Ï¯¡áùÙv¸�wÔ1jß1öon?<k,4¼@ßNH1<[X¨Ã^h×Ñ"Üvàoq¥Gí@µx¯1Ì`Ô÷æ(óÿ Wé¾7#ºß+ào¾çûÞ¼;qs.YcËÙE`øR±åDÈÄ7D-#\lYðú¯[îfè@øÏÒ#²]z0ðöî2e£9T¤?sߥYãH1ýÌàeuÊÍ®½WÃÀ1~'!|êñeXSÔ[é~ôìüzý^1%äópª)§¼-Ü£cä,ÞL�«ºNSÄ]%û¥óæÓ7ß34~ToEª\>\[ß4²ÙúÎG$íl1 Q)hê)tãËyør^bñeÅ9ÇIÅn)úÞSôŬùL'½n¿ÏW[EùßÑï0ëIGG*&ÓU_BXûJWm@µã}B4^w´"K1%°WÊÒzB£÷Äè·×{}ùÞ©-ºQ[µRøtFh£¯¤äÌð£õÖèvÒ3#`BBdziW´"¤§W?^J`(MÈ ¯FèÕ¦fG7@i8`ê/¬ùb!V7x¥¤=ÚÔLÑjöâ*¾UôkÒÙîNhjÕ7.Á¦f¹ÂEX±LкÁy êët9ø`Ý`Å&IÔ Ö%lÔÞHϾÜá³úíÁ³Z ä$2S4m3 +�©2!ZßA;NÞmeà°æ°1´<!- ªÅt]}4ÊýòÒt]êÌÞh~é^ºC6ë³Ì>=`Ö1GU0kóÈNØ=!L>Ãå@dÈÓçÁgÇÃQ7Lòo¢6ß/¡·+¡ápgW×Â- %à;Îv^KF·>T£æ4K ®Ñ;"�]3jmG¦|.)ú£_UfC89Ø]£&³ËúBLÈ«2Ôù¡\©#S4êÔ|ûÑHþ]TäØGì +¦wîüÐK1°:ÚÏÌÄnÕsi:cZiB¯mIÆ´ÎÊéÌ Z_7Àï[×¼{¢ütåö¹æèù·,qµ5aN'Ô�QÐ%±¦]q¸dI¬¹-È7Ø5ÓáÜ Y2%Ry?R}!®K};Xw DâÊåÁéÆñܳ?°Ä7;së)dÁó,ÓUÃiIE0ÂÈúHþ°!y2 üjI>!vít^Zs1íºYEz-Y}HöÈ P%V(DzN©îyU©yOCê²Ón¦ì?Y +v¡Sdì@Úë(þ@.N#Ðç`¯Q¯ªv°^°ÍM¡Nð|öTÃG¼QªäªÝø+Cj^Õo5ÁíHÈÈ% t«¤ö¶c÷¢dà§\Ï»|7JêË "0Ñ%gq=ÔùMÀÏA-KÑúâ$twÌyG`·DÉjí¬*×ßv DÉÒ»ê&Îd^ +Z?³(Ëí5nHzcÈ ëT³¼QÜ8ðç`ç íÂ#åÝ·újÜáüßïGµP&dH.§Ý[Ì¥z$â|ì �8ßû,`§H $è´Ñnru¥g[Ô§Ý2qí*È-3×.|ZÿÖ´d`·&nOQÖìÒB7]>ÞMg$¨lßû9ÔÛ¢ìèh"°î ×£nùBÛ<Â8s@ê¤ÇsaSbçÉÖûK¡7CÃÀõüïpì_2ÿl«Y"1Ê+EãT'Lëߺ¤ïÒëöM¹úL¹UíÑpÞÌöpº®WÎ2Z»%@IJ²¼VµálGÿS,u7k(ªb"òð³<¡·k`îmR¸z#ÀÀm$E¦aER$YôÅ aG¦HÁm(Dn#57"U#ýãYÚgݶ£¿h±Ìâx.ò�0eI¹\.)ò¶#^ +ÜþB)k }¨Zg{¡8J_«ÏвÏÐ2âY´Ó©±oH»ÏÆP5ºª>ÒB!þw×:C@eR#UTSum&#¶ýt îßëDâÀ?Ö¡BDäÃÔ6Â*2¤O¡êLOW°¬ªq +ΫÌy¾Ä²ÒêuJ,q ¦D¾j.ûPÓ,!¹ªÄ«îHTM.!#èº�GÉë¾õÕ³]ñİ=µå==´e ôjd"Ãh30dzaLb}j0rI6$E&¶<#)úýrIȨùéŻzÿZÒ·£^ñÛ¼WT´ì³�Zá/¸Ý +ÑïQÊ^ÂPV¸)}Ùà~ö§ ,þDËrù´Æ¯3hMà¯z{¨ÑÛp;ûeP¡CqÕÔ(Z^¢gÈ@zO +vFñ×qÕG¥B@`?IÁê²ÛÓðÄçÓ¡»g'Ãe·ÙXs0ù®usðμ®"@�=IâkA +nãZ67í\¨yÏûµk/ô¢4ð¾ BËF ,¡ #FÁ´àIS¨8`"A3äÉb0Hsz¸Lùs;wIÊë`8üË>Ï$F\vÌC೤> +¥HèQ¸åú<Ò£ÙE~ÉÈY˸*ôëDhxK Â@Me÷}2.[@OÁad6|2ÔÙw2ôárÇ«¿ì¶æo¡dZ %Ó.H&©HL2IU GÏe¿!Å-8ñB[pJ¨ÖØÝA21FúoÇ¥GËìÄÞk!þäy; +¹Ñú!AuË=Ï@ `²M%,:"` Åé²D:½í]f(aÑ?ÐÛt}/áNæg»ñQ5jPsDÀ"Kd^n²D&4 ìÒ[ß^0&ridÀèAÄTØAÄÈA; `Ú¢Û98 ^£¢q;XC!rË&8¯Y¯wôÙõëH=)Ìöð©~¹èàyNÇþÍmßO/½[@òS[À):'´¼ú (i +Ó5$ªBÍçÖÌÙOÃ<UÕüOfµTtÂk(hK2©:Ïn}³!û¨G˨-âpÈH«G Òt÷hkqô \Öb÷1ïGëÙ_¤#ãlÂd{gc·exzkê¬DÖ{Ld?yÕbùç#ÊüÀV¢DÛæeN rßdÏ »§LÑÀÒ²Û§LG°Ë p·nîÁ0åþ[n*âá~jÃùø3xächó +ÖÀì%-áæ"?ÐO¥Ö÷¯ÀGpªÿ¢.¹Z£cblxù>Ëæâ {ÖiÄo/s¶ÎÚ¾WtÒ¹Z#h°ÊHÑ´�¨5JÞ×úÀQ +Sìî¦:íÏvSÕ¨Dt7i�bÑ,Þ8p½_)~ß]'L7ÈX¥3A»Ï c å©!èbªö*ôi|%jÁÙy¾¥(dËrƦ9÷±F>K×bbx«ÌB`Â¥R¨SÈ ì½ûÙ :Yæ«/Çttêôo13_'³©Üo'úºFk¹7b¤êé^[l IM¾ð÷'¼Ò+{^£X+¢3ií 7eØÃA 7¥z¨Ç>dVÄÛHÑþ(ôxi oÑ02>kzÅXÓ¥G2+âÓã°KÄ&h õH\<°S"j8÷é¡Gù¡-¦vÔNéÓú¹3:\ñWÄ8TÚ·GH¥æ0NPå)ýR9P³GF:ä"û¡ÿºø {ߢ6³ð¾fV` Ë£Øãûý´ôé åÀãU¾û RÌa5P¯l²;5HFËÂgÐèc<!LB0Rh²A5ø»Ïæ ñs?m )iXK0ºW´ÀÔU80²4 + @Ô Ov,!T¨¥ga-héY\ÒÕìæQ4Èñ2®÷ð)÷]ÒwÄ?ÿ|Íd&Õi{ù%§à¤:í/¿äLÏS +{¬BãB£Uô£22øNÁ_ ~kdúYVßò +\R]^vhþIuW½Çÿ¤ºã)î}J¾ÎëØ¤º+&RXÂæp½¥M"Ê}ÜÝb±Ñ?évySLvÒHÿ"% ø+Àöó-îÔö9úáïÚx¶}Ì,Bó¶kgþ\'áAß$5h{3ÿ#yÑ í@FKÝ=}ÇÍêbôöµ¥óEðøïOòKýÚåIðÜVù«\;3¹2_ªxg-²+Ul>/ùÖùòË]~7}A®¾ÙÏhÛäN iÇ£Þ3û% Y}>{6ª'´¯79)U,¦0º#/o~¶+ëå»ÈáD=GKù<0·E[aúZ§3Êr:§×b¶o +xnì#1ϵ±ûòxÛïrêÜP5rÓÃËn²#f=ófe¤¶m�ÑJ!k¼¨%À´oÏ�GÏ-)åÐ08¯®Xã²»80Þöä:ÐÈ !_1Êçê"`Äjv¸²ëU;=0f¢íD¹B%Ý0Øt³â=d~¨Ç«ôßK6¡%ø'ÉhíÔÒàkÃÍöTú¶×N80Þö|d¤Ãù6S_ëôÌ+êħðé¨]5G¦<Nke@Ä^÷GËI�ʨ¡í¨Lßø¾¡ÒQNÔYÊzUxó¶ålRÈvhÀXÆ,pí¶O¦ïúµ§<8½½B_~ìÒmüTe kC/U 9ã8º¹»´Ñ¿MUy+çàÓf¡LtÏ :T*úìÖÆð$9*[ìÓ,f ÌBÛ dÐç`_ä»zùæ VH½B2YðÐBÿk1ù@vs¦Y ÿ7¸ü¯à{ +´è|{¤ht>*`71°oB}úÐÙð<¹+ èñ3`ÙÒÿ9ì +tLVZöíg£uÄÙ^ök¤©}S¼u2"&qáÿ!ô ,KcøÎ;5Ϫuo;Ñwôh)Ч¹ð¿¢odITë$WíQLË3P5 À;ßä;ÜZéTè@ì¾ß(Taw«·ôprGݪN;O¸|²7õÑ®è±îMÂ�-|�î÷+Æn×ÓñòEX° +y} æd[DLâÈ9e0hk` nÄ5? IÑ5Dªá®[ð9O£Õ-À%9¯Óå¸G×}ðdîêcP,=ÓûmM)ø»ÊCN +ág¬#fýÞßûà0¡¯äs$Ò'fë¯C:Ü×AÞÒSÐ!oi£i@0õyGîÈÁ¥GKGíé÷ÞI¡sØ; (Ðyk zì¯â! +ú7æ!jR$lqµãz¶££ídä|@7%p#àG<Ú¶ô&D_öÐÙ >»6´¾WÀSEm¢Wcñ©Ñ(ijdú"Kd¶ùnvka¤¹%@L*ÔHóCÑHóI`Ðåd|·`=~V5lÁz|Íy¾IȲ<VDa-h¦£BÔ¶£ßÄ¢åRîxãK¹ã!Äà8'¨¦ E`ÒÖ6)áGmY#Å#S4îÏ,éÂËá%$ÄÓ{5C!!Ê= +çÞM:Li´´ý2VÑÉ@5.õq`!Dw Û\{¶äò(F Ø·@ñNGf^´-ëÆkJ%BeýØýC:[¼.vÆA`sènôÄYzûlP)²àÚýFÀsÓÞè7D:ëªAAÊ@ H�¦�|Äô7D,G«no2 L7¿ üòy¼RÑ +ð34e! ÍD!äÚ¨FbV¡B°kص¯áÝQoK!þ!D}â >Ñ8Á#Ç +1Åºë¼ÆC1±CXuçÓãÅ'D�:HÎeàGËÚ1,Ä Cñ¿ÿéÀǰ)×ÀÄÓÂ$Oeuù>Õ'Ä~P².Q§Úö¿iGv£6y·x4¼²u÷XÆ,ÕNnäªb@Ýd@Ä¢ôîZí¡>qÀà}ÉQº +Ö©1�uÔÝW<®ÚÙ«F4lrY¢u¡ø½Þ7ixÓM«�¸Ö ZcåÁ3p/ +¡Ýèì8u]í.§:ÆÊ5ðWà@PÍ ·÷S5¢iÐHÒyfÂi&mzUâÞ·!~OûüP{uâ,ó2ÐçxfIZn|Ó,©Îzº`³¤£)c¶uDçÓ,éhE~J2%oØç*è±Ân,ø%¯àÈüÍjÁô7K:&ÅWß±fIµbô7KºÒF-pEϹà&Î-ê¤ónO¨¥\ÄPËÀtmÀ\ÑI%P<Ö,í-³ÊÑ2,Y¿ÖéÈóù·lÏÞ>䨨¾6Bß;j>ÿk>H�Ô&ôÕPHÉÙ!ô½`D< M6»QøìõÔÄ&À«%±yÜPØ`bNõ }&ôr#ñYzÔ%q\$Öô¹Ïµ\sa_Þ»]Ð|[BÂ$¢i M;/?raÓâ)TÞ¾ÊqѸv.% +T¨Þvß* +Ûù>%yþ<^ê<m*ªsùkù¡¢WþRá*<næÔÿ1AÙÃèöá=!<½Øí,\¿ó@¼lXD9Ø%ùaÐÓÍ÷2íë°Éù;$OòÓ«´¼{UôyȾ©¹©ädâMAß ÈÉ5ûäêzr5À©a\¤ðúËлîÄgg9ãèZ|�^FÈ~âÁcrlú$]Ihß¡Û2²§o¥P! OèZöÁR9-ûeíå¾öÏsçMBcH7Iø¼ÄfpÄ%!£vHB_<GvÙ_4m¼É±ìëÉñF³ÇÛ¤¢#"ô,©¨¬;`«@@(¤--Lzyhy§©Å®: ðOüQW{MüÑ´ÃE~¨¹cĵ°!!2³ÔöYðØÈiNP«& W¦YĸrG(±>!cbrGµß)É5+RS~ªC9}n¹³àÈï-Èü9;óàÈC¬Îì)Óü¦çDZ_mv´3^wÙµµÑ¯«ë12&Äñð´T4Úõíh L¯;xÈ+:æ^wÔ± Ózfß<~ImR´)R#S,QS¤k7 C¶èffI¹FDz$çÜ8ð?ÂÖ^1ô[ËdÀ<ÂÖYð?ÂVIV#)rè)jÑbKé-'ãblgüï=ÛpËÆ3G|zUÝÅA_"â$SÉdÐæHÝàæMµ°ÅÖ,Þ8`Û!; 2ÒSk FgéÙeFÅ¡Ïû iÞ\{ÁhnÐæv>S6ê !! +$@¤y´&¾"522¨ð\ /ßg¼[¬Ð°¼?sieCþª"Ó+f÷íã=9U¦W¦g'K lüzU"?¡íHl*ý6[Ôì^ìR)f-ö{Ö°=ËõËÒæ¤¦(JºÝ"õô»GZáVÎr}®k´?v´,0qæâ[vP«H®;¿Â%0Pà¬Â4P=à _A¼�ÑbP_oüo.ÚùW\´s%àÓ10½ÏJMfÁ~'æ¤2øÉÁ§S4°&T#!b´þI§£>M ´[}ú2XÐf"îßeYòêÛLFcdH¾ÚË ²ÀÄE¡!0Ø®J/9àãE ì.F+¶&¦ñ>]Û^n%(Ðó,NK1À^_wndzöt¿ªÝB°¦2rËLµ"ÅRb»ñ +¶ö ´p¥D`ð1X1#Lø�Iã°hy0rp@ðê[ËÞ²¦2e¦wGy÷É�ò;!ýñoüb´t4¼¯°è`7#§¡C!"zAªQ`´ à´¤ôPШ}a!jíi¹CÚS:£I±nx;+AÛ ªs2ôiL||GÑ9yDZÐ$¯¨-_aѨ-× YëáUÁò, ³ÆI�-D"tjLófèÔÏ'Z®H*ï°(âgV·Ö¬PGüí!#73Nà}MÕC¶VÈúdéæJ "øSb´àMÄhoç`=ûw³]ÏÞÇËÒÿ&_w·5°:P£Ñjes Ñ»2%p3î$& �"Ñ¢x7G{3LÙµ>ÒÖg¶|T<²eíµ2²eqïÏÔ¨} GÁH»H È»KÞEvÀFËU£ÂU¬Ý%z²ÜÃÑ¡,p72#îf`Êâ0V Í´AÀô%DZ`<Ò=qëØ¡? "³ZT1Øä÷m}Ä>#5~²Gÿâ¥}ZÂ'ÓØ£»±fLë(>K4v×ãÊÚ ³Pêñüz#ñm)O¾`²v¯Cj5ivó±ö(ZPc°²d`§+âÉÚÍæÖ´BCb²ve/$zøÑ-<ÝrÀÀõ5$EÛ ,®%Y»ËÆY»ün¼eíF7Óµ;ØLc¸>0e£·"t(þ^Cǹ¾ÊÍÃê5Ô% +Õè%)ÚNÕµé\ÃË£¼S;æÑ_A[íá".1®Qk-im6ôìêu/X0òn[\=j »j¬]}æê§Ëd}KènìSüCæ¸ëÙÑݳc(õ'ϳn@íHÛ=÷ã`rk?@}!µß-]ù +ÒSPº<µ] ³ñúàb_uwi¢Û_éÌóÏá=«ß¯]!îÙ`dô¨~p ¸y>ÎÁ1RÚϯ%ÀàM +³¸Þ¨_§ÙedtøØí¡nÔHx¥,M_ô×W:"ܯt@æ·W::¦ ¼Òâ¾Q À¢îKÓ5ÑúTeiЧ«âwú¤ðÓ¨âŵ!ú/Ùî(¦³t +Ì|½ìr +ý%hICx ÉKGð�Séµ Pi+8<±5üS-ÈPÚ¡g%*ö=êÛ5BÑ Ë4Gè4å3§¢¸ÔØGÝ?<A Ù¡Ev@T$TìPæê:a1T#± +]§Mvß2ífï£>ÊHJ ÅBBY#õG×ÁÈýïjêv´KXâcn9ðmY+SZLÿê|î q¸ÕB DÜ.Á?ì +µ° -0c×d@iÔó@F8#!Ùü´DfzNuq`ðíìægZ¸Ô< +uçg2(3"åBä§aß,XB +«Qd¤×^ÐêÙeFk hLk (D"P/ýº[Ô`öÅgIS4rBjðåÎ*ÜÛFµ!ERÔàÙÄÌÃ.@L¯Éw>AîÕå5´$"Ì|¼ä@·¡!ùß*.À?P£ø¡¬ÔHøå +^¤ZÔ5¼ü! u7üÀ£nðư#ø5ÖÜÀ¬i@8 pßdÀ¬9b´¡Gd pßd@¼S¬Ð+Ç6»Ôhä%0m w¤F¢ePÞán$@,#ú±¬ù¡- XÒÝÒ±�\#Mì7Ç&8^|>±¿õ%Án»-Ô¤ÇÅçúkX!0kX)2±ii¤6:Yr½0Ô WeZöB!2ùÚHD3¹ëzNW#¸½; É¥âbÁ à9= +1$@/c&Cý]4©8Õ#Ó· 1íDß úÍäêCÏ~Áå#6hÅâñoÅAÐ-LLPÒjn#H̰ê(mx;. +¸´,PDJË8`Úc¬a5jxiÙ2Hyd\^Ѹ\]K0B»TLpF,PñmäyÖz6 BÆÉ`Ñnb{ÖkÏdÐâ~¸A"s>nÖÌdøié~°å©%¬Ð¯2½�K`.>òæ7 úÂ% zt¶Ajdj÷g¨ñí°Oº. ôÓf_~õZ«*8,9©ÑÏ®ºw510epÃPcAKøôËFB´D"Æ¡¢?¦§õ©VÄÑZZÞ¬CWUãbÏJ1ì�ØóC¤¾%@ä%]áé¦âPpÖ}¤JâKDÇ"3J¦`È�ù·c99aWSýÑ�9/EüÈ&):Ë6ÎÁ@áõäR£QqøÐ#úE#ìKt[»¸¸i¾3+å©%VèýÙa× £5$&yeÆe.`ÜW(Â×í!²ªhY"δ@Q´}õm3ùÊjfAëA!j}nÉ_}É�Ûèp¥bË ¡,&¶¬ÝPìW}y_]_5}ÎÔÖzÇ HáP©.#kfâ ¯Kl?iê�±´uK)zmªô@7íð!Çc ¹àrµÆhwËàu²#ôíµµ" ]Áj¥GH)XEDål.5öe )÷§iBK`Ð.Ò v¡tÑù*÷ zúðÙ�]ô(D3¹-k(p71³N C ôÃm#<¾»ö³VÑnb ÿÕÈ$¤ R;À&¿å®¡n P%»Ï/ù }R >hݤS¨ç³¢MQ¸Wdû%ô,hgïs©±Ýòéiê!(XõNÃjÇc²UíØ.öÔ#ùy¾Ä2¥þÝc#bWt¹!Àd³YÍ1·%vmÉäoÀ\[®tv +ÒbÙÀ"\ïMßÕ'ö'#¶:¹Ù¨Ø$¦Ö`*®höþäJ|,DÍ7=3"Ý£n;xÁNHÎÂÑWôÁ¢âÝ[4à*ÚÌô6¤rÀ$Pv ±Ñèv¼b££íhG!ÄÅgÛÐñÆtOF¶Ì\|vèöËó³#þÀ»xmîvuj$Ó%G!Þ:®\@ b°q.Ä@ã\^·\%Á]ÄÓRAánÎ3Ëz4å3¤,5-¦û²ÌòzWrGFÅ0@Oo-íØ,"Ó{ABdbôZª7ÐB +T#3,qÀ>Û5gjéÿ¼G 5Jt7Þjý¢{A¥öÑ}yBK`º/£Íälp¶¡m¦=Q#V|Û¹/L.9ð\¤u@!-¸à2ïVìB)2Âzpº£±EûjlQ]>Ép;m%´Ø¯]ÿt¬³bÆ#¹Ë ©»ùÁéø³±E\Ø¥0èÂ0K¡fyv¸U}.nýÚ ±'z¦Ü j&{dÑöXר¢änk`w'@àóxìw_z|{ö4E»Zj4¸«} #`FdFQ#=P`éE-9Ù³¼T8 òõÕ%@3$@Ð Úñö ]S`¥©)8IKgY7tÉPþQXºÅ+²Ê/AF§K±[FVStDãèòì·*µÁnìË`+.X2RtNÇ�ñø:!§ÊtËÕ¬Ó°X¡Gb0#BtTé¢>Z¢.MÛ.¯ÏIã =R ËG0piF_-º¬ú�A�bM¢¸HO¦Ù3ÒG»5Û Ð®^Ú]¾ðö{¸CýæÀJH1¦HOe° -02Я� øWhLS0_täÉ=ÔªbËio²9>Ë7¯"èÇ[m~Æ�H¯¨Aþå Ô®!MD>H-H +D¦óH +Ã#7ÄàÉw|°±ÆfGm«k ÆÍqÀäVÌ;þ´ 0ý§!BÔ#7Sá$L7¶¡,² 5©å&>©%`zsûH¡ñ#¯d¤ï@ TÛ±T(D"cA C¬È[Nís?£&µ vÿá w§¸cЩ0£±O 8hLKi=|ÊkG»À)ß^]FÛ¡¤v7["ºThÍÄ%ZÊ2n}+ô)D6½y*`23 @\ sF0ÑY©0ú?6ûÛH*Kl0*³t6¼±À<¬HDïbuí-âú%)Ô#C0À¢À�uýÚÔõkh;RsDOÈ÷ð3©#wÆÀݧ0¯ï+dÚìtîÌÓrù&¯ÄsÑ8û�3pv°bo¤~"z]c«m`7õ�Ú" 6L~óIL{zÈÄÙï~@ý;d¸wìa¢ ÈßkN»éÎPâKøÙáfþöRyÅ>Ì:«Ññh@ļVdßúý%ÊìÚÏFóE)7´9ZÞ5?0F( + ÈiðF¹ ¦Y^ :AIÑæ8`²$Ò~[ÂýJ1yïh ¤ýcVBùÚ36ùÆkzÿ<ûéu±NoçùôºÿaüaÏàÜÐ2&Ï2ãÇË'$Ög½XZícÚ@HLc:É[´ôY´A`s0B¤p Ä9/y7ô=âBì£ÄÚ=å»D!ÒM(,?Ƨ"´W þ*Jzº²øxÇÌÙm]ÝRð·^=ULÓ'"MF8Ý)øÞ\ö§\±Mú´y¶W[ÅIÿÄÜ×m~æöDt¿ùNSeF¾¡{PÕË;##¨2íuâ&#ð&Ok°úµ�ÆX¿Ê è°6õB÷mlÁºÿF o +K cçæ áÎÎ>h¥ÜÆ;Ñ@°q@ XUÃb'bvïÄW´s ¦=ei&Ôràô*ç|ëÕÅñ¸®2f1j ÝML¬iÈ%Í´D"⻣%PÁNñí ®ãÄC)êxé-ÑÒ³xêua£¥ê»æC¨ë\ÀôÑëÜË'¼óÿ¯súÒ.ºÎÕí\Ç@/¨4Mï±õ§$^`|û>c<dÄ¿¿¶åÁKå(dòÏïòS +óðÂlS�[ó V¹#A|(Ãð/²7ÁÏ_Ëô]6ÊÇþàÁs³<AÇÑñ´ë0è¸+ :Î0ËQ*üfâ¸àý`Â:¯£|ãíeòòcklçU¿p@oÈ9ÛÊ0x8,ãùD×,îiSKа¿)LO)ÛíRèßHr¹lêǫħ» εäpß rþ6� +§¯½µ~ëâóviPXÃd +G«×IAO'âqn²È¥¢ð[KxXñ*üÙ¦ÇRd> õæAÊn<x¥�{ïµ³¦ÛÛ÷\xò° å 4W3`�v?§(ôߪ& m7Êð=Ëì¢I�]Ì/øÞݦ«5Æ'mYHÉÇB÷è°y�Cëèí+óxsSÁ¹¢ÓsÝ{^ѯãý/rÓÔ9)7ýDLV6L櫾ºe»¦ åÈrK¼ü½¤ðS¢âBS âþƬé@¡¬ët¶_ûqM£ýôý²á;hø¨%Àp°»8@WîIÊÚ·3:?ÿ|÷Ëç½GËÚU +ëó2O®¦)ÂÄâdÂ! K"ÁF$i¤ÜDî&·íôí=ëH©�3FGú0`ôaz¸§Gvpeì ìÀxyDôyÊ íp º/D©o HõV¯È¨FLPLe;rÎÝt^E¦ËCZWyÅ@FËÐ8 ¸ÁãÅÿR¥MöGÔç`÷ÉÀ¨OQ¯ª9ë3§X5ª=ðiÃÒød³äA÷¾. úÈ%f6GÛé@¦OIü@¦Oi[Ô§~¨ÒçãDwQÄ)ñÏ©yébjÓâA¢2¸UóNÑÇ: üÀ¸<»>fÄQ«} +¶YÐLqh1ð` ã÷F^gömH±Sx7*ÔKÏ,QûÓ´`dºIº`CÈC.2»ä&D¾åæm ÌìNèPü_®Øwx ú*õ1I i$â¦P±åx9_ѹð¹úB\B\O$`ÒU2Ø}°§¨?P¨´@¸uÇð +z¤úÔ#é8¦ð¹pU !Ó±³>;µcg\ng¦c':³Q)ö°cç¼Gû÷È¹Ðø\°cgK Ò±ó¶¾cgKÀN$ Ò±sÞö`A´IÑ P̶üZu¥oͼ(Ö 0ÝáÓ3!êìпk*ÎÍPXwNGaÍ*¬L ÈÉPèÑn4 *4e¦m âéT õ¡+2efBzEN!°÷BW 8 ªp;3³GCqmWÍÏ\Eãv°#Kd:ÆLðdbzB53/ghHÄ$¥ù¡)×8 Jåj*.;0°."�ÞIaN;Y®ýrg°jød©ïÌ¥úâìIøÀnC v!°Û®!�vöôóºÅ:\`÷åCF4.{#às¼ájÈfÄ�»HLË=ZKbF®MQÁnKÀÐÓ7ü% )_Z¥yMHT@qq` åÕeØEvÀ<f´ÓÔHf5Ç}¦ë }&Ä A:²Å aÉ.C04B.Wßn2f1AK"R1$ àFØvv`T ÃÃvÁì.ÏIË[C¢ÚTÎ>)ö×Â~¹mvì; LQÑnz¨Ç§M¶£AÀ·e×ó: òWDIB¨�r$ ¡%@áíXðå½ +\>Zæe övÉ)óÑ÷çÛ#lZõÑ�1vðZC,Dî´B`AvhLÆ)"qÂÏPÄù:#¼c¤jÔâ#5ÓBÔÚÙµÀî"`ôÌÀ'Q="!}nçþav@ÜV´;$Æý²þïg½ÿò»I¡ÞÝ +6ËM&o»éq9` bzæ4 ì×/¨µZÐn"tR&Õòp;^ÑNób»$£A£¼[.ɨ ì´0`UÜ=ûÃ%(`p�7Ó9i½Ò˲é»qÀ�Å øôëF`õ©¬>;0f¾8&m+àIÙÏîks]åûêÚT v@gd@P¤90$cú.¡1$bnKòmghH'TMoàÈ9å¾5/nW`u`ÊÃêªv Ä;ÉE¢bÝêÚLFX4!K$ú1.h;S³kË$ÉEÀºk;÷9Ø' F®#;d!Xå× àÁ@LígÃ0ðiX®Ñý¬ød`4TÏh?óG2¸åv üàÑðnÒÛ% <K8Û[hûè2×éG{«<y7éÏÆ1sôÃå²³ÛI lóú|wÉnxÁæP®¬.q@ôà^þßúPQýTÔ~#5´«ÎÆ;-ôYñiô !Þí_+Åã¢ë99tNËS":Îicüù [òsKöå°îOå Ð79|hÓ¸zE7<N´/ç`BĬyÖÔ§YHôMDkÏãîá²£§Öë¤~d=uöfÜJqn+cõlìu_¿õÑH íÌ»h_ô/>×úXëþT²kJñ¹»ÕKF£¶svÇüáR:!»f ¨´Y¸9ï_m³vWÐ;ê$kF.¹Mé3ZÔI^ö�ÚTþ{Ò\Ãý«lª×Í,:Î&£e0gî:_Ë:É#ôt/S´ò&àãuÇ5[î?ã$¥ã}qËgú¼ÐCXWFçML³OÃÎNí2¨WFêd¢^zÑù:ëÝ?u;òÜAÇ¢<vå¹( ¨ËAl "PñcQ;úØAÔÇ¢>wÕë ú(*É{.õ_~÷ßþùükþõ»¿{)õøþõ?×ÿñ»:h§ýEµ¾¾úÝßþú£ÿþ/¿þñþæ÷ÿü¿ÿÓ_ñgþë_ÿý_þöÿþÍïÿö×ÿü¿þâ¯þðÿø¿þúþæ¯ÿø×ýú«øýÿúý¿ÿá×üúû?üá_ÿô·¿ýÏÿüϯ?üý?üÇ×?ÿþ¿ýëy]þîßÿÇ?ÿßþëß}ýýþéÿø×ïþ÷oþëï^ÜýjÙP +endstream +endobj +270 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 713 0 R +/Name /Im259 +/Width 32 +/Height 43 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]Á Ä0'äá§JP#îìäÒTJð3l{B«,s s¢Íü¡}6¹¦/Êb<X+£R/È¢¿P¬aw\Tø²³}[4íêÚkÈ;MWÜüÌ^Gö£?{qFY +endstream +endobj +271 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 714 0 R +/Name /Im260 +/Width 80 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuÐÁ Â0Ðå]�5¸e¥J½pK'2 nPn¨úqbhïâ/Ûí¥\¦¿j2̼իò¢e£0Áñ¯â}Õ ÍSuWñ +ÿHUç.U!ç,móX´R«J¬rIìOEsÑQ5¨ ±_ÉOèÔ-ØFÙ¿(¹b.ãå±1½E¬/GKùɸf *VYÖ gO"0ýÒDP +endstream +endobj +272 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 715 0 R +/Name /Im261 +/Width 32 +/Height 56 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x¡0CÓWQÉ¥ÑÆ(7BeE¸À)Äw??(lå8¥!éuÓ¨&éÈËHàÍþüا½èjlSÖ,þâ]`u0/Üþo\{aæ +endstream +endobj +273 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 716 0 R +/Name /Im262 +/Width 32 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]α 0ÀR¤4d²%Q<KóHâ*¿ýF1 ]@DO#¬¸h²:°Ô©Ú_g=ü³Y'ãÍHÖ¨ö¬u!ÞFa7{y¼&ÿ]B +endstream +endobj +274 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 717 0 R +/Name /Im263 +/Width 32 +/Height 47 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc?ÀÀ`ÿ¡þÃÿÿ `ü¿ñ3ãFF ðÿÿÿ00)ú< +endstream +endobj +275 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 718 0 R +/Name /Im264 +/Width 24 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÃÀðôþCPÃÿÿ0üþÁðóÃÿ~Ô?øaÿàÿÆ�=-,¹ +endstream +endobj +276 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 719 0 R +/Name /Im265 +/Width 24 +/Height 5 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÇ$�v¢Ï +endstream +endobj +277 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 720 0 R +/Name /Im266 +/Width 32 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x± X`Gk°cXFcF ¤0y~¬y¹öÝá$TÔix[hX9caK°ä×òù +Øç*Gh®k:»¹ÛlxZ¬é*R/8 +endstream +endobj +278 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 721 0 R +/Name /Im267 +/Width 32 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÃÀüá ñ?$üýÃÿöÿð?øÿÀþÁßÿÿüáúÿ äÿ1üaÿÁðj�ú°_{ +endstream +endobj +279 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 722 0 R +/Name /Im268 +/Width 40 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x» À QP2£°XQÅqL(U«ÞçȧB¤âD^¤VÄî'©¹Eª,2¢øCñxí(67÷¹i©äÖ½Å/Å.9ç +endstream +endobj +280 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 723 0 R +/Name /Im269 +/Width 8 +/Height 55 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x««#Á?��ª¹- +endstream +endobj +281 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 724 0 R +/Name /Im270 +/Width 48 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿñÿóÿõ`½ÁÞd à ø%A"D@R¨B2o¨a`<Àß`ÃÀðù� OPéù�X3b +endstream +endobj +282 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 725 0 R +/Name /Im271 +/Width 40 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¿ÿÿÿ ùÕÿÿÿA êúîf�wË</ +endstream +endobj +283 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 726 0 R +/Name /Im272 +/Width 32 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÌ¡ 0 áw9QÙs * 1Nv$Fh q#T"yTT|ùÝ¿ÁÐpÂäi¥M<'ñµCû`îì!SÝèMC:ñw£{¼Å¦$k +endstream +endobj +284 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 727 0 R +/Name /Im273 +/Width 24 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãg|`pxB:G8Ë~0bo¡Ìà¨ñY0>°a| Ãðá;ãfÆ*j* È É!!yÆÿ@Ä�*Ð!t +endstream +endobj +285 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 728 0 R +/Name /Im274 +/Width 24 +/Height 17 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x3`<PÀl`Á.`ÁÎaÁÜD2Ì 2 áAÃ~ ÙðÀïÀ ò �Z4 +endstream +endobj +286 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 729 0 R +/Name /Im275 +/Width 24 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÁÀÜÆÀÎÈÀÎÐÀÏà�F +`$�Dì @ÄDÌã| +äØqcoà�Ð8c +endstream +endobj +287 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 730 0 R +/Name /Im276 +/Width 16 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xa0f(d(h°�A äÂ>vw Tòsóæ �é +endstream +endobj +288 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 731 0 R +/Name /Im277 +/Width 16 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«axÆðácCâÆ °� +- PQá2àcàB6�ÂT +endstream +endobj +289 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 732 0 R +/Name /Im278 +/Width 16 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãgh°p¨p¨P°Q°°ccàBöl>Ð|ÀùãÅø°@XÁ`��shµ +endstream +endobj +290 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 733 0 R +/Name /Im279 +/Width 24 +/Height 49 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³g`(<Àðãà + +CBüH½ ãj# ¤ð�0ð70à@kÀÈ�Ãõ +endstream +endobj +291 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 734 0 R +/Name /Im280 +/Width 32 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcàÿ¡þÿÆÿÿ0ÿ```?ÀÀÀÏÀÀ Ä6@lÄ@\�ÅøÿêaØ$µPý6Pó@æÌÙ²d/Ð~�Т%¤ +endstream +endobj +292 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 735 0 R +/Name /Im281 +/Width 32 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x`c°a0 rXA¡B¡B�m@½åàù�?7C±ã þÀÎàxAñp?ã�mà +endstream +endobj +293 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 736 0 R +/Name /Im282 +/Width 32 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xK```x�ĸ�+ØmXåùaø�#? ×\eÈ�×M +endstream +endobj +294 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 737 0 R +/Name /Im283 +/Width 40 +/Height 15 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿÿÿ þÿL0ÚêA¦��6ëi +endstream +endobj +295 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 738 0 R +/Name /Im284 +/Width 32 +/Height 44 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿêÿÿÿÇ@�<�â@\Äö ü@fÀ?À À ç×±<P(ÀÐ >H$åôôÛCÌ2dì?¨½ û)&* +endstream +endobj +296 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 739 0 R +/Name /Im285 +/Width 32 +/Height 3 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ�M¾õ +endstream +endobj +297 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 740 0 R +/Name /Im286 +/Width 24 +/Height 56 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x{ÀÀðáCU00X É10ð?;500CÐFz�6 I��ÂyE +endstream +endobj +298 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 741 0 R +/Name /Im287 +/Width 32 +/Height 43 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}ͱ 0Á³83 X|ÎhÉ@'´ràNx$"Vxaîxaãÿ4aÒ¥I EòaL4b!]¬R¥H>t=à²ÇËÂ"E²$Þbà<L +endstream +endobj +299 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 742 0 R +/Name /Im288 +/Width 56 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x½Ð± 0EÑk¹pÄ)P²RJ:<GñNÄß PîêéÌ6àqçRÒ9e1|x}ªÓ¥6auvÊÃÇçIIËwÛ¿<(¹ÄFìÑq%'% =ºôbSÞJÂÜIex¢sg~ªµQ¸ +endstream +endobj +300 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 743 0 R +/Name /Im289 +/Width 56 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÐ! 0Ðí *kq¹kÕµGã(ï2ó;%íG ÌÙ] mf¤áKÊX ( $ÅÔ¨NêÈÑÙu°9åðU©=Ü÷/eÀX^Ü!=ãáIèUB/6õñ)ý@ZPõyìcÕ ¤Æé.(»b +endstream +endobj +301 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 744 0 R +/Name /Im290 +/Width 32 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿùÿA=³7È1PÿÿÿQË|À�± ÿ7�§.#Ñ +endstream +endobj +302 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 745 0 R +/Name /Im291 +/Width 56 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÍ» à �Ðã#Aa&�6ÈVÂ&YÃE$ß&Y%£díãP½òme0Û2(ÂàA N�tÙ¼~ôG^½+¶CWRÐâS ÁL�;aã¶23z}ed $x6î'õ¼àÁBÄn[wÊ3d +endstream +endobj +303 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 746 0 R +/Name /Im292 +/Width 40 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÃù{c;c?ÃÁ'ö +Á|�LØ08Æ0ÂñÃr>È1>x Çüã�?ãö6�'", +endstream +endobj +304 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 747 0 R +/Name /Im293 +/Width 16 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xg0lH8ð áÁd@°+xl$¬$,X0È@!Ö3�� +[ +endstream +endobj +305 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 748 0 R +/Name /Im294 +/Width 40 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÃßÀÀ|̹@ñ�?à Á"x@`ì ÌHó0aÃØ�&>ä>� rì ã�?{{3�Ýð° +endstream +endobj +306 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 749 0 R +/Name /Im295 +/Width 16 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãg9``£`c�r@ÈÏ�ì È|àðPñÁÉì À¡ �¤ d +endstream +endobj +307 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 750 0 R +/Name /Im296 +/Width 32 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x`°Â$9 Ü ÇøàÃü ¸Ø@ت@ø0?cHá|?øÏÈ1¶É0ð3~`��ìÜ +endstream +endobj +308 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 751 0 R +/Name /Im297 +/Width 24 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«o`xðáCÃ9 â!ö b~ÞÀ&ÞÀÃ@ý31>°# Cáñ3T�;5T07Ø0¨a�¢yü<�Öé« +endstream +endobj +309 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 752 0 R +/Name /Im298 +/Width 32 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿá?ó3 0{*f>�ÅÇO<``ü`�Ä@,ÃÀøáP×vn�ã + jdlÃÂx ø�Ë3`ml`pêµc��þs"@ +endstream +endobj +310 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 753 0 R +/Name /Im299 +/Width 24 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã?À QÀ` ÃPÀÇðás1xÀø�>0|£ + ²`(#>°òì�Õ¶J +endstream +endobj +311 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 754 0 R +/Name /Im300 +/Width 16 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãg8`áPPaPa`#rPÈ ì øÿÏÿ?Ì0>@`�� ÎÀ +endstream +endobj +312 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 755 0 R +/Name /Im301 +/Width 8 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xsx@8��O£! +endstream +endobj +313 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 756 0 R +/Name /Im302 +/Width 32 +/Height 132 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÍ1 XXò"3§ù`Iaá-H¥ö ÙÌK0Þvàa: ÅÅ"VþÍÚ±¹âú:V#q9ëNf4«7Ã@ÿ÷×=ßh¾ä®S¹ãâZÎý³.Ý/V. +endstream +endobj +314 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 757 0 R +/Name /Im303 +/Width 16 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x;Àð!ÐePùø½�~! +endstream +endobj +315 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 758 0 R +/Name /Im304 +/Width 32 +/Height 132 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÀÀÀðÿ±}üöÌ�A¸ëØå9æo@`v @0ã$=Ò�õ-Ø 1;¨=pé¨f´? aX|Õ!yç$nÁ>=�sPÜÒ�(t�q=/Ï +endstream +endobj +316 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 759 0 R +/Name /Im305 +/Width 8 +/Height 56 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x{ð<��u1 +endstream +endobj +317 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 760 0 R +/Name /Im306 +/Width 40 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=ı 0ÀDt0%ÊXyTÆHaüAò§O¯E: éa-ËÞÊ6ؤÊ^ â�Ö±àAXnÝÖÚº¬ÄF/zj¡x'Û½ùïiÄ +endstream +endobj +318 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 761 0 R +/Name /Im307 +/Width 32 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x{ÀÀÀð� �â ®�b ¶b9 æo```*`þäübû?@ÁÿÿDøÿ!ò u õrPýPó + æ#Ûw�$ $ +endstream +endobj +319 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 762 0 R +/Name /Im308 +/Width 32 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x{ÀÀÀðÿ±}ÿf@@Î ®by �;P.�¡A|8H¾¢¤¤dÎ?¹ ó¡\°½@.�3¶ +endstream +endobj +320 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 763 0 R +/Name /Im309 +/Width 40 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿÿÿÿ ¢D0000¢ÕU�.Ä +endstream +endobj +321 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 449 0 R >> /XObject << /Im80 87 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im309 320 0 R /Im64 71 0 R /Im74 81 0 R /Im55 62 0 R /Im65 72 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im60 67 0 R /Im57 64 0 R /Im55 62 0 R /Im63 70 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im66 73 0 R /Im76 83 0 R /Im60 67 0 R /Im74 81 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im63 70 0 R /Im53 60 0 R /Im119 126 0 R /Im64 71 0 R /Im66 73 0 R /Im60 67 0 R /Im79 86 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im54 61 0 R /Im76 83 0 R /Im64 71 0 R /Im66 73 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im309 320 0 R /Im86 93 0 R /Im75 82 0 R /Im76 83 0 R /Im53 60 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im307 318 0 R /Im293 304 0 R /Im71 78 0 R /Im60 67 0 R /Im61 68 0 R /Im66 73 0 R /Im60 67 0 R /Im69 76 0 R /Im56 63 0 R /Im74 81 0 R /Im53 60 0 R /Im71 78 0 R /Im55 62 0 R /Im63 70 0 R /Im55 62 0 R /Im73 80 0 R /Im74 81 0 R /Im65 72 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im55 62 0 R /Im57 64 0 R /Im60 67 0 R /Im57 64 0 R /Im55 62 0 R /Im63 70 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im60 67 0 R /Im59 66 0 R /Im65 72 0 R /Im54 61 0 R /Im60 67 0 R /Im74 81 0 R /Im74 81 0 R /Im64 71 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im74 81 0 R /Im86 93 0 R /Im120 127 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im55 62 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im64 71 0 R /Im74 81 0 R /Im55 62 0 R /Im67 74 0 R /Im53 60 0 R /Im116 123 0 R /Im59 66 0 R /Im64 71 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im60 67 0 R /Im61 68 0 R /Im55 62 0 R /Im57 64 0 R /Im60 67 0 R /Im57 64 0 R /Im55 62 0 R /Im63 70 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im71 78 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im64 71 0 R /Im59 66 0 R /Im66 73 0 R /Im56 63 0 R /Im53 60 0 R /Im55 62 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im115 122 0 R /Im73 80 0 R /Im307 318 0 R /Im293 304 0 R /Im64 71 0 R /Im74 81 0 R /Im53 60 0 R /Im119 126 0 R /Im55 62 0 R /Im66 73 0 R /Im57 64 0 R /Im63 70 0 R /Im73 80 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im55 62 0 R /Im74 81 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im57 64 0 R /Im60 67 0 R /Im57 64 0 R /Im55 62 0 R /Im63 70 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im86 93 0 R /Im75 82 0 R /Im76 83 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im69 76 0 R /Im56 63 0 R /Im53 60 0 R /Im69 76 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im64 71 0 R /Im59 66 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im54 61 0 R /Im60 67 0 R /Im64 71 0 R /Im59 66 0 R /Im57 64 0 R /Im74 81 0 R /Im64 71 0 R /Im74 81 0 R /Im59 66 0 R /Im60 67 0 R /Im57 64 0 R /Im60 67 0 R /Im59 66 0 R /Im63 70 0 R /Im73 80 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im73 80 0 R /Im57 64 0 R /Im60 67 0 R /Im58 65 0 R /Im55 62 0 R /Im78 85 0 R /Im53 60 0 R /Im55 62 0 R /Im57 64 0 R /Im60 67 0 R /Im57 64 0 R /Im55 62 0 R /Im63 70 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im71 78 0 R /Im115 122 0 R /Im69 76 0 R /Im57 64 0 R /Im53 60 0 R /Im69 76 0 R /Im74 81 0 R /Im53 60 0 R /Im67 74 0 R /Im57 64 0 R /Im76 83 0 R /Im64 71 0 R /Im74 81 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im64 71 0 R /Im57 64 0 R /Im74 81 0 R /Im74 81 0 R /Im64 71 0 R /Im58 65 0 R /Im54 61 0 R /Im63 70 0 R /Im64 71 0 R /Im66 73 0 R /Im64 71 0 R /Im57 64 0 R /Im73 80 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im66 73 0 R /Im53 60 0 R /Im70 77 0 R /Im57 64 0 R /Im53 60 0 R /Im54 61 0 R /Im138 145 0 R /Im60 67 0 R /Im61 68 0 R /Im75 82 0 R /Im55 62 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im138 145 0 R /Im115 122 0 R /Im73 80 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im61 68 0 R /Im60 67 0 R /Im63 70 0 R /Im63 70 0 R /Im60 67 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im63 70 0 R /Im64 71 0 R /Im59 66 0 R /Im53 60 0 R /Im74 81 0 R /Im71 78 0 R /Im64 71 0 R /Im59 66 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im57 64 0 R /Im60 67 0 R /Im115 122 0 R /Im69 76 0 R /Im64 71 0 R /Im63 70 0 R /Im67 74 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im56 63 0 R /Im69 76 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im54 61 0 R /Im76 83 0 R /Im55 62 0 R /Im79 86 0 R /Im115 122 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im86 93 0 R /Im138 145 0 R /Im131 138 0 R /Im53 60 0 R /Im57 64 0 R /Im201 208 0 R /Im203 210 0 R /Im71 78 0 R /Im86 93 0 R /Im86 93 0 R /Im86 93 0 R /Im71 78 0 R /Im201 208 0 R /Im274 285 0 R /Im115 122 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im69 76 0 R /Im66 73 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im201 208 0 R /Im71 78 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im69 76 0 R /Im66 73 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im79 86 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im74 81 0 R /Im76 83 0 R /Im64 71 0 R /Im66 73 0 R /Im76 83 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im64 71 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im64 71 0 R /Im59 66 0 R /Im66 73 0 R /Im56 63 0 R /Im53 60 0 R /Im55 62 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im130 137 0 R /Im67 74 0 R /Im53 60 0 R /Im66 73 0 R /Im56 63 0 R /Im53 60 0 R /Im55 62 0 R /Im74 81 0 R /Im79 86 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im132 139 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im115 122 0 R /Im73 80 0 R /Im307 318 0 R /Im293 304 0 R /Im71 78 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im201 208 0 R /Im64 71 0 R /Im74 81 0 R /Im55 62 0 R /Im137 144 0 R /Im233 242 0 R /Im253 262 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im130 137 0 R /Im137 144 0 R /Im62 69 0 R /Im72 79 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im71 78 0 R /Im56 63 0 R /Im53 60 0 R /Im74 81 0 R /Im54 61 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im63 70 0 R /Im73 80 0 R /Im132 139 0 R /Im86 93 0 R /Im70 77 0 R /Im53 60 0 R /Im57 64 0 R /Im310 323 0 R /Im206 215 0 R /Im283 294 0 R /Im135 142 0 R /Im71 78 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im64 71 0 R /Im61 68 0 R /Im201 208 0 R /Im64 71 0 R /Im74 81 0 R /Im55 62 0 R /Im137 144 0 R /Im233 242 0 R /Im253 262 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im71 78 0 R /Im65 72 0 R /Im60 67 0 R /Im57 64 0 R /Im60 67 0 R /Im74 81 0 R /Im57 64 0 R /Im53 60 0 R /Im54 61 0 R /Im205 212 0 R /Im311 324 0 R /Im53 60 0 R /Im63 70 0 R /Im74 81 0 R /Im53 60 0 R /Im65 72 0 R /Im60 67 0 R /Im57 64 0 R /Im60 67 0 R /Im74 81 0 R /Im57 64 0 R /Im53 60 0 R /Im54 61 0 R /Im205 212 0 R /Im303 314 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im66 73 0 R /Im55 62 0 R /Im59 66 0 R /Im65 72 0 R /Im69 76 0 R /Im55 62 0 R /Im56 63 0 R /Im55 62 0 R /Im59 66 0 R /Im57 64 0 R /Im53 60 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im57 64 0 R /Im57 64 0 R /Im76 83 0 R /Im64 71 0 R /Im74 81 0 R /Im56 63 0 R /Im53 60 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im66 73 0 R /Im53 60 0 R /Im58 65 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im67 74 0 R /Im60 67 0 R /Im53 60 0 R /Im74 81 0 R /Im59 66 0 R /Im60 67 0 R /Im57 64 0 R /Im66 73 0 R /Im76 83 0 R /Im55 62 0 R /Im59 66 0 R /Im65 72 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im74 81 0 R /Im69 76 0 R /Im63 70 0 R /Im57 64 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im74 81 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im66 73 0 R /Im76 83 0 R /Im71 78 0 R /Im53 60 0 R /Im119 126 0 R /Im66 73 0 R /Im53 60 0 R /Im54 61 0 R /Im57 64 0 R /Im66 73 0 R /Im55 62 0 R /Im74 81 0 R /Im53 60 0 R /Im74 81 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im57 64 0 R /Im57 64 0 R /Im60 67 0 R /Im115 122 0 R /Im60 67 0 R /Im55 62 0 R /Im56 63 0 R /Im67 74 0 R /Im74 81 0 R /Im76 83 0 R /Im55 62 0 R /Im114 121 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im53 60 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im184 191 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im53 60 0 R /Im119 126 0 R /Im66 73 0 R /Im53 60 0 R /Im54 61 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im63 70 0 R /Im66 73 0 R /Im55 62 0 R /Im74 81 0 R /Im53 60 0 R /Im74 81 0 R /Im71 78 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im54 61 0 R /Im60 67 0 R /Im74 81 0 R /Im53 60 0 R /Im67 74 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im58 65 0 R /Im55 62 0 R /Im73 80 0 R /Im66 73 0 R /Im76 83 0 R /Im55 62 0 R /Im59 66 0 R /Im65 72 0 R /Im53 60 0 R /Im74 81 0 R /Im56 63 0 R /Im53 60 0 R /Im74 81 0 R /Im69 76 0 R /Im63 70 0 R /Im57 64 0 R /Im74 81 0 R /Im71 78 0 R /Im115 122 0 R /Im53 60 0 R /Im66 73 0 R /Im55 62 0 R /Im69 76 0 R /Im74 81 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im65 72 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im74 81 0 R /Im55 62 0 R /Im59 66 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im114 121 0 R /Im53 60 0 R /Im59 66 0 R /Im55 62 0 R /Im58 65 0 R /Im60 67 0 R /Im59 66 0 R /Im65 72 0 R /Im57 64 0 R /Im60 67 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im64 71 0 R /Im57 64 0 R /Im76 83 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im53 60 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im66 73 0 R /Im55 62 0 R /Im59 66 0 R /Im56 63 0 R /Im53 60 0 R /Im74 81 0 R /Im57 64 0 R /Im56 63 0 R /Im64 71 0 R /Im66 73 0 R /Im57 64 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im66 73 0 R /Im53 60 0 R /Im58 65 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im60 67 0 R /Im61 68 0 R /Im63 70 0 R /Im64 71 0 R /Im59 66 0 R /Im53 60 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im75 82 0 R /Im55 62 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im138 145 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im60 67 0 R /Im59 66 0 R /Im63 70 0 R /Im73 80 0 R /Im64 71 0 R /Im59 66 0 R /Im64 71 0 R /Im57 64 0 R /Im64 71 0 R /Im55 62 0 R /Im63 70 0 R /Im74 81 0 R /Im53 60 0 R /Im114 121 0 R /Im53 60 0 R /Im56 63 0 R /Im55 62 0 R /Im63 70 0 R /Im63 70 0 R /Im53 60 0 R /Im114 121 0 R /Im53 60 0 R /Im63 70 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im66 73 0 R /Im55 62 0 R /Im63 70 0 R /Im63 70 0 R /Im74 81 0 R /Im86 93 0 R /Im75 82 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im54 61 0 R /Im76 83 0 R /Im55 62 0 R /Im79 86 0 R /Im115 122 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im64 71 0 R /Im74 81 0 R /Im66 73 0 R /Im55 62 0 R /Im63 70 0 R /Im63 70 0 R /Im53 60 0 R /Im67 74 0 R /Im56 63 0 R /Im53 60 0 R /Im66 73 0 R /Im69 76 0 R /Im56 63 0 R /Im74 81 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im63 70 0 R /Im73 80 0 R /Im69 76 0 R /Im54 61 0 R /Im57 64 0 R /Im60 67 0 R /Im55 62 0 R /Im65 72 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im59 66 0 R /Im67 74 0 R /Im53 60 0 R /Im54 61 0 R /Im57 64 0 R /Im76 83 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im53 60 0 R /Im114 121 0 R /Im53 60 0 R /Im56 63 0 R /Im73 80 0 R /Im53 60 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im60 67 0 R /Im61 68 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im86 93 0 R /Im75 82 0 R /Im76 83 0 R /Im53 60 0 R /Im66 73 0 R /Im55 62 0 R /Im63 70 0 R /Im66 73 0 R /Im69 76 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im60 67 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im57 64 0 R /Im55 62 0 R /Im78 85 0 R /Im53 60 0 R /Im74 81 0 R /Im66 73 0 R /Im53 60 0 R /Im56 63 0 R /Im57 64 0 R /Im55 62 0 R /Im64 71 0 R /Im59 66 0 R /Im55 62 0 R /Im58 65 0 R /Im60 67 0 R /Im69 76 0 R /Im59 66 0 R /Im57 64 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im64 71 0 R /Im58 65 0 R /Im53 60 0 R /Im66 73 0 R /Im60 67 0 R /Im74 81 0 R /Im57 64 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im74 81 0 R /Im60 67 0 R /Im64 71 0 R /Im57 64 0 R /Im64 71 0 R /Im74 81 0 R /Im55 62 0 R /Im59 66 0 R /Im64 71 0 R /Im67 74 0 R /Im53 60 0 R /Im55 62 0 R /Im57 64 0 R /Im60 67 0 R /Im55 62 0 R /Im54 61 0 R /Im54 61 0 R /Im63 70 0 R /Im73 80 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im69 76 0 R /Im56 63 0 R /Im53 60 0 R /Im57 64 0 R /Im60 67 0 R /Im60 67 0 R /Im59 66 0 R /Im63 70 0 R /Im73 80 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im116 123 0 R /Im56 63 0 R /Im74 81 0 R /Im57 64 0 R /Im55 62 0 R /Im61 68 0 R /Im53 60 0 R /Im63 70 0 R /Im53 60 0 R /Im114 121 0 R /Im53 60 0 R /Im63 70 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im56 63 0 R /Im53 60 0 R /Im66 73 0 R /Im69 76 0 R /Im56 63 0 R /Im74 81 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im72 79 0 R /Im60 67 0 R /Im57 64 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im64 71 0 R /Im74 81 0 R /Im66 73 0 R /Im55 62 0 R /Im74 81 0 R /Im53 60 0 R /Im53 60 0 R /Im55 62 0 R /Im54 61 0 R /Im54 61 0 R /Im63 70 0 R /Im73 80 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im69 76 0 R /Im56 63 0 R /Im53 60 0 R /Im53 60 0 R /Im114 121 0 R /Im53 60 0 R /Im56 63 0 R /Im73 80 0 R /Im66 73 0 R /Im55 62 0 R /Im63 70 0 R /Im63 70 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im54 61 0 R /Im76 83 0 R /Im55 62 0 R /Im79 86 0 R /Im115 122 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im69 76 0 R /Im56 63 0 R /Im53 60 0 R /Im115 122 0 R /Im69 76 0 R /Im57 64 0 R /Im60 67 0 R /Im59 66 0 R /Im63 70 0 R /Im73 80 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im116 123 0 R /Im56 63 0 R /Im74 81 0 R /Im57 64 0 R /Im55 62 0 R /Im61 68 0 R /Im53 60 0 R /Im63 70 0 R /Im53 60 0 R /Im114 121 0 R /Im53 60 0 R /Im63 70 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im56 63 0 R /Im53 60 0 R /Im66 73 0 R /Im69 76 0 R /Im56 63 0 R /Im74 81 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im312 325 0 R /Im227 236 0 R /Im313 326 0 R /Im229 238 0 R /Im227 236 0 R /Im125 132 0 R /Im122 129 0 R /Im232 241 0 R /Im227 236 0 R /Im123 130 0 R /Im124 131 0 R /Im314 327 0 R /Im107 114 0 R /Im123 130 0 R /Im127 134 0 R /Im125 132 0 R /Im227 236 0 R /Im314 327 0 R /Im128 135 0 R /Im228 237 0 R /Im124 131 0 R /Im314 327 0 R /Im120 127 0 R /Im53 60 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im53 60 0 R /Im119 126 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im58 65 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im74 81 0 R /Im57 64 0 R /Im60 67 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im73 80 0 R /Im299 310 0 R /Im300 311 0 R /Im315 328 0 R /Im316 329 0 R /Im317 330 0 R /Im317 330 0 R /Im299 310 0 R /Im69 76 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im54 61 0 R /Im76 83 0 R /Im55 62 0 R /Im79 86 0 R /Im115 122 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im64 71 0 R /Im57 64 0 R /Im76 83 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im54 61 0 R /Im60 67 0 R /Im74 81 0 R /Im53 60 0 R /Im67 74 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im86 93 0 R /Im233 242 0 R /Im59 66 0 R /Im60 67 0 R /Im69 76 0 R /Im57 64 0 R /Im63 70 0 R /Im64 71 0 R /Im59 66 0 R /Im53 60 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im53 60 0 R /Im119 126 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im58 65 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im69 76 0 R /Im56 63 0 R /Im53 60 0 R /Im64 71 0 R /Im74 81 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im66 73 0 R /Im56 63 0 R /Im64 71 0 R /Im115 122 0 R /Im53 60 0 R /Im67 74 0 R /Im55 62 0 R /Im74 81 0 R /Im61 68 0 R /Im60 67 0 R /Im63 70 0 R /Im63 70 0 R /Im60 67 0 R /Im74 81 0 R /Im86 93 0 R /Im135 142 0 R /Im86 93 0 R /Im131 138 0 R /Im53 60 0 R /Im57 64 0 R /Im57 64 0 R /Im60 67 0 R /Im66 73 0 R /Im60 67 0 R /Im58 65 0 R /Im54 61 0 R /Im69 76 0 R /Im57 64 0 R /Im53 60 0 R /Im56 63 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im73 80 0 R /Im53 60 0 R /Im56 63 0 R /Im74 81 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im73 80 0 R /Im60 67 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im63 70 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im71 78 0 R /Im66 73 0 R /Im55 62 0 R /Im63 70 0 R /Im63 70 0 R /Im53 60 0 R /Im67 74 0 R /Im55 62 0 R /Im57 64 0 R /Im56 63 0 R /Im55 62 0 R /Im64 71 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im71 78 0 R /Im60 67 0 R /Im59 66 0 R /Im66 73 0 R /Im53 60 0 R /Im86 93 0 R /Im190 197 0 R /Im60 67 0 R /Im57 64 0 R /Im76 83 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im73 80 0 R /Im53 60 0 R /Im56 63 0 R /Im69 76 0 R /Im74 81 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im58 65 0 R /Im64 71 0 R /Im59 66 0 R /Im64 71 0 R /Im79 86 0 R /Im58 65 0 R /Im55 62 0 R /Im119 126 0 R /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im64 71 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im65 72 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im59 66 0 R /Im76 83 0 R /Im53 60 0 R /Im69 76 0 R /Im56 63 0 R /Im64 71 0 R /Im74 81 0 R /Im57 64 0 R /Im64 71 0 R /Im66 73 0 R /Im61 68 0 R /Im69 76 0 R /Im59 66 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im74 81 0 R /Im57 64 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im66 73 0 R /Im53 60 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im57 64 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im66 73 0 R /Im64 71 0 R /Im67 74 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im64 71 0 R /Im56 63 0 R /Im58 65 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im74 81 0 R /Im86 93 0 R /Im271 282 0 R /Im64 71 0 R /Im74 81 0 R /Im79 86 0 R /Im57 64 0 R /Im60 67 0 R /Im56 63 0 R /Im73 80 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im73 80 0 R /Im64 71 0 R /Im74 81 0 R /Im56 63 0 R /Im53 60 0 R /Im66 73 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im67 74 0 R /Im86 93 0 R /Im138 145 0 R /Im86 93 0 R /Im77 84 0 R /Im53 60 0 R /Im59 66 0 R /Im53 60 0 R /Im56 63 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im54 61 0 R /Im60 67 0 R /Im74 81 0 R /Im64 71 0 R /Im57 64 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im59 66 0 R /Im53 60 0 R /Im65 72 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im53 60 0 R /Im119 126 0 R /Im55 62 0 R /Im58 65 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im193 200 0 R /Im194 201 0 R /Im195 202 0 R /Im195 202 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im197 204 0 R /Im198 205 0 R /Im199 206 0 R /Im200 207 0 R /Im197 204 0 R /Im194 201 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im55 62 0 R /Im63 70 0 R /Im63 70 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im114 121 0 R /Im64 71 0 R /Im74 81 0 R /Im64 71 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im67 74 0 R /Im69 76 0 R /Im56 63 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im73 80 0 R /Im71 78 0 R /Im69 76 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im134 141 0 R /Im69 76 0 R /Im63 70 0 R /Im53 60 0 R /Im130 137 0 R /Im135 142 0 R /Im132 139 0 R /Im86 93 0 R /Im205 212 0 R /Im86 93 0 R /Im62 69 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im60 67 0 R /Im61 68 0 R /Im193 200 0 R /Im194 201 0 R /Im195 202 0 R /Im195 202 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im197 204 0 R /Im198 205 0 R /Im199 206 0 R /Im200 207 0 R /Im197 204 0 R /Im194 201 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im61 68 0 R /Im56 63 0 R /Im60 67 0 R /Im58 65 0 R /Im66 73 0 R /Im60 67 0 R /Im63 70 0 R /Im63 70 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im53 60 0 R /Im119 126 0 R /Im55 62 0 R /Im58 65 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im55 62 0 R /Im65 72 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im59 66 0 R /Im74 81 0 R /Im53 60 0 R /Im57 64 0 R /Im60 67 0 R /Im61 68 0 R /Im115 122 0 R /Im55 62 0 R /Im66 73 0 R /Im78 85 0 R /Im79 86 0 R /Im65 72 0 R /Im56 63 0 R /Im60 67 0 R /Im69 76 0 R /Im59 66 0 R /Im67 74 0 R /Im78 85 0 R /Im59 66 0 R /Im60 67 0 R /Im63 70 0 R /Im53 60 0 R /Im67 74 0 R /Im65 72 0 R /Im53 60 0 R /Im86 93 0 R /Im81 88 0 R /Im86 93 0 R /Im233 242 0 R /Im65 72 0 R /Im55 62 0 R /Im64 71 0 R /Im59 66 0 R /Im71 78 0 R /Im63 70 0 R /Im53 60 0 R /Im57 64 0 R /Im57 64 0 R /Im60 67 0 R /Im66 73 0 R /Im60 67 0 R /Im58 65 0 R /Im54 61 0 R /Im69 76 0 R /Im57 64 0 R /Im53 60 0 R /Im56 63 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im73 80 0 R /Im53 60 0 R /Im56 63 0 R /Im74 81 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im73 80 0 R /Im55 62 0 R /Im59 66 0 R /Im60 67 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im60 67 0 R /Im61 68 0 R /Im60 67 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im63 70 0 R /Im63 70 0 R /Im60 67 0 R /Im71 78 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im73 80 0 R /Im53 60 0 R /Im56 63 0 R /Im74 81 0 R /Im76 83 0 R /Im60 67 0 R /Im69 76 0 R /Im74 81 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im54 61 0 R /Im76 83 0 R /Im55 62 0 R /Im79 86 0 R /Im115 122 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im75 82 0 R /Im55 62 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im205 212 0 R /Im206 215 0 R /Im233 242 0 R /Im117 124 0 R /Im55 62 0 R /Im56 63 0 R /Im57 64 0 R /Im60 67 0 R /Im61 68 0 R /Im190 197 0 R /Im55 62 0 R /Im66 73 0 R /Im78 85 0 R /Im65 72 0 R /Im56 63 0 R /Im60 67 0 R /Im69 76 0 R /Im59 66 0 R /Im67 74 0 R /Im318 331 0 R /Im59 66 0 R /Im60 67 0 R /Im63 70 0 R /Im53 60 0 R /Im67 74 0 R /Im65 72 0 R /Im53 60 0 R /Im86 93 0 R /Im150 157 0 R /Im143 150 0 R /Im152 159 0 R /Im153 160 0 R /Im145 152 0 R /Im162 169 0 R /Im142 149 0 R /Im144 151 0 R /Im152 159 0 R /Im148 155 0 R /Im152 159 0 R /Im222 231 0 R /Im150 157 0 R /Im146 153 0 R /Im142 149 0 R /Im158 165 0 R /Im142 149 0 R /Im144 151 0 R /Im145 152 0 R /Im151 158 0 R /Im158 165 0 R /Im319 332 0 R /Im320 333 0 R /Im321 334 0 R /Im322 335 0 R /Im214 223 0 R /Im251 260 0 R /Im323 336 0 R /Im215 224 0 R /Im323 336 0 R /Im145 152 0 R /Im148 155 0 R /Im324 337 0 R /Im152 159 0 R /Im143 150 0 R /Im151 158 0 R /Im164 171 0 R /Im325 338 0 R /Im326 339 0 R /Im214 223 0 R /Im251 260 0 R /Im323 336 0 R /Im216 225 0 R /Im170 177 0 R /Im251 260 0 R /Im323 336 0 R /Im217 226 0 R /Im215 224 0 R /Im323 336 0 R /Im216 225 0 R /Im327 340 0 R /Im323 336 0 R /Im217 226 0 R /Im164 171 0 R /Im328 341 0 R /Im322 335 0 R /Im325 338 0 R /Im322 335 0 R /Im321 334 0 R /Im212 221 0 R /Im322 335 0 R /Im329 342 0 R /Im212 221 0 R /Im326 339 0 R /Im330 343 0 R /Im331 344 0 R /Im332 345 0 R /Im212 221 0 R /Im326 339 0 R /Im333 346 0 R /Im321 334 0 R /Im334 347 0 R /Im214 223 0 R /Im251 260 0 R /Im335 348 0 R /Im170 177 0 R /Im336 349 0 R /Im337 350 0 R /Im215 224 0 R /Im337 350 0 R /Im145 152 0 R /Im148 155 0 R /Im162 169 0 R /Im151 158 0 R /Im146 153 0 R /Im151 158 0 R /Im143 150 0 R /Im151 158 0 R /Im159 166 0 R /Im142 149 0 R /Im150 157 0 R /Im145 152 0 R /Im152 159 0 R /Im162 169 0 R /Im152 159 0 R /Im144 151 0 R /Im151 158 0 R /Im154 161 0 R /Im152 159 0 R /Im150 157 0 R /Im146 153 0 R /Im142 149 0 R /Im162 169 0 R /Im152 159 0 R /Im153 160 0 R /Im145 152 0 R /Im158 165 0 R /Im154 161 0 R /Im151 158 0 R /Im142 149 0 R /Im143 150 0 R /Im153 160 0 R /Im335 348 0 R /Im145 152 0 R /Im158 165 0 R /Im144 151 0 R /Im155 162 0 R /Im145 152 0 R /Im148 155 0 R /Im144 151 0 R /Im149 156 0 R /Im143 150 0 R /Im158 165 0 R /Im164 171 0 R /Im328 341 0 R /Im322 335 0 R /Im325 338 0 R /Im322 335 0 R /Im321 334 0 R /Im212 221 0 R /Im322 335 0 R /Im329 342 0 R /Im212 221 0 R /Im338 351 0 R /Im334 347 0 R /Im322 335 0 R /Im326 339 0 R /Im330 343 0 R /Im320 333 0 R /Im321 334 0 R /Im212 221 0 R /Im326 339 0 R /Im333 346 0 R /Im321 334 0 R /Im334 347 0 R /Im214 223 0 R /Im251 260 0 R /Im335 348 0 R /Im170 177 0 R /Im336 349 0 R /Im337 350 0 R /Im215 224 0 R /Im337 350 0 R /Im145 152 0 R /Im148 155 0 R /Im162 169 0 R /Im151 158 0 R /Im146 153 0 R /Im151 158 0 R /Im143 150 0 R /Im151 158 0 R /Im159 166 0 R /Im142 149 0 R /Im150 157 0 R /Im145 152 0 R /Im152 159 0 R /Im162 169 0 R /Im152 159 0 R /Im144 151 0 R /Im151 158 0 R /Im154 161 0 R /Im152 159 0 R /Im150 157 0 R /Im146 153 0 R /Im142 149 0 R /Im162 169 0 R /Im152 159 0 R /Im153 160 0 R /Im145 152 0 R /Im158 165 0 R /Im154 161 0 R /Im151 158 0 R /Im142 149 0 R /Im143 150 0 R /Im153 160 0 R /Im335 348 0 R /Im145 152 0 R /Im158 165 0 R /Im144 151 0 R /Im155 162 0 R /Im145 152 0 R /Im148 155 0 R /Im144 151 0 R /Im149 156 0 R /Im143 150 0 R /Im158 165 0 R /Im164 171 0 R /Im334 347 0 R /Im333 346 0 R /Im339 352 0 R /Im340 353 0 R /Im320 333 0 R /Im321 334 0 R /Im212 221 0 R /Im322 335 0 R /Im329 342 0 R /Im212 221 0 R /Im341 354 0 R /Im331 344 0 R /Im320 333 0 R /Im328 341 0 R /Im320 333 0 R /Im332 345 0 R /Im214 223 0 R /Im251 260 0 R /Im337 350 0 R /Im170 177 0 R /Im251 260 0 R /Im335 348 0 R /Im170 177 0 R /Im336 349 0 R /Im323 336 0 R /Im215 224 0 R /Im323 336 0 R /Im145 152 0 R /Im148 155 0 R /Im144 151 0 R /Im155 162 0 R /Im152 159 0 R /Im158 165 0 R /Im149 156 0 R /Im160 167 0 R /Im154 161 0 R /Im152 159 0 R /Im143 150 0 R /Im151 158 0 R /Im159 166 0 R /Im150 157 0 R /Im145 152 0 R /Im152 159 0 R /Im162 169 0 R /Im152 159 0 R /Im148 155 0 R /Im151 158 0 R /Im159 166 0 R /Im162 169 0 R /Im151 158 0 R /Im146 153 0 R /Im151 158 0 R /Im143 150 0 R /Im337 350 0 R /Im151 158 0 R /Im158 165 0 R /Im144 151 0 R /Im155 162 0 R /Im152 159 0 R /Im154 161 0 R /Im151 158 0 R /Im142 149 0 R /Im143 150 0 R /Im153 160 0 R /Im335 348 0 R /Im164 171 0 R /Im321 334 0 R /Im320 333 0 R /Im339 352 0 R /Im338 351 0 R /Im331 344 0 R /Im334 347 0 R /Im212 221 0 R /Im341 354 0 R /Im325 338 0 R /Im338 351 0 R /Im328 341 0 R /Im320 333 0 R /Im332 345 0 R /Im214 223 0 R /Im251 260 0 R /Im335 348 0 R /Im170 177 0 R /Im336 349 0 R /Im323 336 0 R /Im215 224 0 R /Im323 336 0 R /Im145 152 0 R /Im148 155 0 R /Im144 151 0 R /Im155 162 0 R /Im152 159 0 R /Im158 165 0 R /Im149 156 0 R /Im160 167 0 R /Im154 161 0 R /Im152 159 0 R /Im143 150 0 R /Im151 158 0 R /Im159 166 0 R /Im150 157 0 R /Im146 153 0 R /Im142 149 0 R /Im162 169 0 R /Im152 159 0 R /Im148 155 0 R /Im158 165 0 R /Im151 158 0 R /Im144 151 0 R /Im151 158 0 R /Im162 169 0 R /Im162 169 0 R /Im149 156 0 R /Im150 157 0 R /Im145 152 0 R /Im152 159 0 R /Im153 160 0 R /Im154 161 0 R /Im147 154 0 R /Im142 149 0 R /Im158 165 0 R /Im147 154 0 R /Im150 157 0 R /Im145 152 0 R /Im152 159 0 R /Im162 169 0 R /Im152 159 0 R /Im170 177 0 R /Im151 158 0 R /Im158 165 0 R /Im144 151 0 R /Im155 162 0 R /Im152 159 0 R /Im154 161 0 R /Im151 158 0 R /Im142 149 0 R /Im143 150 0 R /Im153 160 0 R /Im335 348 0 R /Im164 171 0 R /Im328 341 0 R /Im322 335 0 R /Im321 334 0 R /Im334 347 0 R /Im320 333 0 R /Im321 334 0 R /Im214 223 0 R /Im251 260 0 R /Im342 355 0 R /Im215 224 0 R /Im342 355 0 R /Im145 152 0 R /Im148 155 0 R /Im142 149 0 R /Im144 151 0 R /Im142 149 0 R /Im162 169 0 R /Im151 158 0 R /Im143 150 0 R /Im158 165 0 R /Im152 159 0 R /Im143 150 0 R /Im322 335 0 R /Im334 347 0 R /Im212 221 0 R /Im320 333 0 R /Im343 356 0 R /Im344 357 0 R /Im320 333 0 R /Im214 223 0 R /Im251 260 0 R /Im342 355 0 R /Im215 224 0 R /Im342 355 0 R /Im145 152 0 R /Im148 155 0 R /Im151 158 0 R /Im158 165 0 R /Im142 149 0 R /Im158 165 0 R /Im152 159 0 R /Im153 160 0 R /Im169 176 0 R /Im152 159 0 R /Im339 352 0 R /Im338 351 0 R /Im334 347 0 R /Im345 358 0 R /Im212 221 0 R /Im322 335 0 R /Im341 354 0 R /Im341 354 0 R /Im322 335 0 R /Im334 347 0 R /Im320 333 0 R /Im334 347 0 R /Im326 339 0 R /Im346 359 0 R /Im332 345 0 R /Im212 221 0 R /Im341 354 0 R /Im331 344 0 R /Im320 333 0 R /Im328 341 0 R /Im320 333 0 R /Im332 345 0 R /Im214 223 0 R /Im251 260 0 R /Im335 348 0 R /Im170 177 0 R /Im251 260 0 R /Im342 355 0 R /Im170 177 0 R /Im251 260 0 R /Im337 350 0 R /Im215 224 0 R /Im347 360 0 R /Im155 162 0 R /Im152 159 0 R /Im143 150 0 R /Im152 159 0 R /Im142 149 0 R /Im143 150 0 R /Im152 159 0 R /Im160 167 0 R /Im142 149 0 R /Im158 165 0 R /Im147 154 0 R /Im214 223 0 R /Im160 167 0 R /Im151 158 0 R /Im143 150 0 R /Im152 159 0 R /Im144 151 0 R /Im155 162 0 R /Im142 149 0 R /Im158 165 0 R /Im142 149 0 R /Im144 151 0 R /Im155 162 0 R /Im143 150 0 R /Im152 159 0 R /Im148 155 0 R /Im155 162 0 R /Im151 158 0 R /Im146 153 0 R /Im153 160 0 R /Im215 224 0 R /Im151 158 0 R /Im150 157 0 R /Im150 157 0 R /Im151 158 0 R /Im212 221 0 R /Im158 165 0 R /Im152 159 0 R /Im158 165 0 R /Im144 151 0 R /Im170 177 0 R /Im148 155 0 R /Im150 157 0 R /Im145 152 0 R /Im152 159 0 R /Im162 169 0 R /Im152 159 0 R /Im148 155 0 R /Im214 223 0 R /Im167 174 0 R /Im143 150 0 R /Im144 151 0 R /Im164 171 0 R /Im162 169 0 R /Im151 158 0 R /Im146 153 0 R /Im151 158 0 R /Im143 150 0 R /Im337 350 0 R /Im215 224 0 R /Im142 149 0 R /Im143 150 0 R /Im151 158 0 R /Im149 156 0 R /Im158 165 0 R /Im153 160 0 R /Im342 355 0 R /Im151 158 0 R /Im158 165 0 R /Im335 348 0 R /Im164 171 0 R /Im331 344 0 R /Im334 347 0 R /Im334 347 0 R /Im320 333 0 R /Im321 334 0 R /Im212 221 0 R /Im326 339 0 R /Im330 343 0 R /Im338 351 0 R /Im334 347 0 R /Im214 223 0 R /Im251 260 0 R /Im342 355 0 R /Im216 225 0 R /Im170 177 0 R /Im251 260 0 R /Im342 355 0 R /Im217 226 0 R /Im215 224 0 R /Im342 355 0 R /Im216 225 0 R /Im145 152 0 R /Im148 155 0 R /Im142 149 0 R /Im158 165 0 R /Im145 152 0 R /Im158 165 0 R /Im158 165 0 R /Im152 159 0 R /Im143 150 0 R /Im150 157 0 R /Im146 153 0 R /Im142 149 0 R /Im162 169 0 R /Im152 159 0 R /Im144 151 0 R /Im155 162 0 R /Im142 149 0 R /Im158 165 0 R /Im342 355 0 R /Im217 226 0 R /Im214 223 0 R /Im342 355 0 R /Im216 225 0 R /Im145 152 0 R /Im148 155 0 R /Im158 165 0 R /Im152 159 0 R /Im142 149 0 R /Im143 150 0 R /Im152 159 0 R /Im143 150 0 R /Im144 151 0 R /Im151 158 0 R /Im144 151 0 R /Im155 162 0 R /Im152 159 0 R /Im162 169 0 R /Im152 159 0 R /Im158 165 0 R /Im144 151 0 R /Im152 159 0 R /Im143 150 0 R /Im151 158 0 R /Im159 166 0 R /Im144 151 0 R /Im155 162 0 R /Im152 159 0 R /Im154 161 0 R /Im151 158 0 R /Im142 149 0 R /Im143 150 0 R /Im153 160 0 R /Im144 151 0 R /Im155 162 0 R /Im142 149 0 R /Im158 165 0 R /Im342 355 0 R /Im217 226 0 R /Im164 171 0 R /Im215 224 0 R /Im75 82 0 R /Im55 62 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im81 88 0 R /Im206 215 0 R /Im68 75 0 R /Im63 70 0 R /Im55 62 0 R /Im69 76 0 R /Im74 81 0 R /Im53 60 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im55 62 0 R /Im59 66 0 R /Im62 69 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im131 138 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im117 124 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im86 93 0 R /Im254 263 0 R /Im348 361 0 R /Im38 45 0 R /Im30 37 0 R /Im255 264 0 R /Im51 58 0 R /Im256 265 0 R /Im193 200 0 R /Im194 201 0 R /Im195 202 0 R /Im195 202 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im197 204 0 R /Im198 205 0 R /Im199 206 0 R /Im200 207 0 R /Im197 204 0 R /Im194 201 0 R /Im130 137 0 R /Im349 362 0 R /Im350 363 0 R /Im71 78 0 R /Im349 362 0 R /Im203 210 0 R /Im71 78 0 R /Im349 362 0 R /Im204 211 0 R /Im132 139 0 R /Im206 215 0 R /Im285 296 0 R /Im197 204 0 R /Im199 206 0 R /Im351 364 0 R /Im199 206 0 R /Im196 203 0 R /Im79 86 0 R /Im199 206 0 R /Im352 365 0 R /Im79 86 0 R /Im195 202 0 R /Im198 205 0 R /Im200 207 0 R /Im353 366 0 R /Im79 86 0 R /Im195 202 0 R /Im354 367 0 R /Im196 203 0 R /Im355 368 0 R /Im130 137 0 R /Im349 362 0 R /Im350 363 0 R /Im71 78 0 R /Im349 362 0 R /Im356 369 0 R /Im132 139 0 R /Im71 78 0 R /Im197 204 0 R /Im199 206 0 R /Im351 364 0 R /Im199 206 0 R /Im196 203 0 R /Im79 86 0 R /Im199 206 0 R /Im352 365 0 R /Im79 86 0 R /Im357 370 0 R /Im355 368 0 R /Im199 206 0 R /Im195 202 0 R /Im198 205 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im195 202 0 R /Im354 367 0 R /Im196 203 0 R /Im355 368 0 R /Im130 137 0 R /Im349 362 0 R /Im350 363 0 R /Im71 78 0 R /Im349 362 0 R /Im358 371 0 R /Im132 139 0 R /Im71 78 0 R /Im199 206 0 R /Im355 368 0 R /Im79 86 0 R /Im194 201 0 R /Im359 372 0 R /Im360 373 0 R /Im194 201 0 R /Im130 137 0 R /Im349 362 0 R /Im203 210 0 R /Im132 139 0 R /Im71 78 0 R /Im355 368 0 R /Im354 367 0 R /Im361 374 0 R /Im193 200 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im199 206 0 R /Im352 365 0 R /Im79 86 0 R /Im362 375 0 R /Im200 207 0 R /Im194 201 0 R /Im197 204 0 R /Im194 201 0 R /Im353 366 0 R /Im130 137 0 R /Im349 362 0 R /Im356 369 0 R /Im71 78 0 R /Im349 362 0 R /Im350 363 0 R /Im71 78 0 R /Im349 362 0 R /Im363 376 0 R /Im132 139 0 R /Im71 78 0 R /Im355 368 0 R /Im354 367 0 R /Im361 374 0 R /Im193 200 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im199 206 0 R /Im352 365 0 R /Im79 86 0 R /Im362 375 0 R /Im200 207 0 R /Im194 201 0 R /Im197 204 0 R /Im194 201 0 R /Im353 366 0 R /Im130 137 0 R /Im349 362 0 R /Im358 371 0 R /Im71 78 0 R /Im349 362 0 R /Im350 363 0 R /Im71 78 0 R /Im349 362 0 R /Im364 377 0 R /Im132 139 0 R /Im71 78 0 R /Im351 364 0 R /Im195 202 0 R /Im130 137 0 R /Im349 362 0 R /Im363 376 0 R /Im71 78 0 R /Im349 362 0 R /Im364 377 0 R /Im132 139 0 R /Im71 78 0 R /Im200 207 0 R /Im355 368 0 R /Im355 368 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im195 202 0 R /Im198 205 0 R /Im357 370 0 R /Im355 368 0 R /Im130 137 0 R /Im349 362 0 R /Im204 211 0 R /Im71 78 0 R /Im349 362 0 R /Im203 210 0 R /Im132 139 0 R /Im86 93 0 R /Im365 378 0 R /Im366 379 0 R /Im367 380 0 R /Im348 361 0 R /Im38 45 0 R /Im35 42 0 R /Im38 45 0 R /Im43 50 0 R /Im32 39 0 R /Im28 35 0 R /Im35 42 0 R /Im368 381 0 R /Im120 127 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im58 65 0 R /Im60 67 0 R /Im56 63 0 R /Im53 60 0 R /Im54 61 0 R /Im64 71 0 R /Im53 60 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im60 67 0 R /Im54 61 0 R /Im54 61 0 R /Im60 67 0 R /Im79 86 0 R /Im59 66 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im71 78 0 R /Im74 81 0 R /Im66 73 0 R /Im60 67 0 R /Im63 70 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im59 66 0 R /Im60 67 0 R /Im69 76 0 R /Im56 63 0 R /Im74 81 0 R /Im60 67 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im115 122 0 R /Im60 67 0 R /Im55 62 0 R /Im56 63 0 R /Im67 74 0 R /Im71 78 0 R /Im55 62 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im66 73 0 R /Im53 60 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im59 66 0 R /Im53 60 0 R /Im67 74 0 R /Im65 72 0 R /Im53 60 0 R /Im64 71 0 R /Im74 81 0 R /Im54 61 0 R /Im56 63 0 R /Im53 60 0 R /Im61 68 0 R /Im53 60 0 R /Im56 63 0 R /Im56 63 0 R /Im53 60 0 R /Im67 74 0 R /Im57 64 0 R /Im60 67 0 R /Im55 62 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im59 66 0 R /Im53 60 0 R /Im56 63 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im66 73 0 R /Im53 60 0 R /Im86 93 0 R /Im254 263 0 R /Im348 361 0 R /Im38 45 0 R /Im30 37 0 R /Im255 264 0 R /Im51 58 0 R /Im257 266 0 R /Im193 200 0 R /Im194 201 0 R /Im195 202 0 R /Im195 202 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im197 204 0 R /Im198 205 0 R /Im199 206 0 R /Im200 207 0 R /Im197 204 0 R /Im194 201 0 R /Im130 137 0 R /Im349 362 0 R /Im350 363 0 R /Im71 78 0 R /Im349 362 0 R /Im203 210 0 R /Im71 78 0 R /Im349 362 0 R /Im204 211 0 R /Im132 139 0 R /Im206 215 0 R /Im285 296 0 R /Im197 204 0 R /Im199 206 0 R /Im351 364 0 R /Im199 206 0 R /Im196 203 0 R /Im79 86 0 R /Im199 206 0 R /Im352 365 0 R /Im79 86 0 R /Im195 202 0 R /Im198 205 0 R /Im200 207 0 R /Im353 366 0 R /Im79 86 0 R /Im195 202 0 R /Im354 367 0 R /Im196 203 0 R /Im355 368 0 R /Im130 137 0 R /Im349 362 0 R /Im350 363 0 R /Im71 78 0 R /Im349 362 0 R /Im356 369 0 R /Im132 139 0 R /Im71 78 0 R /Im196 203 0 R /Im194 201 0 R /Im361 374 0 R /Im357 370 0 R /Im200 207 0 R /Im355 368 0 R /Im79 86 0 R /Im362 375 0 R /Im351 364 0 R /Im357 370 0 R /Im197 204 0 R /Im194 201 0 R /Im353 366 0 R /Im130 137 0 R /Im349 362 0 R /Im350 363 0 R /Im71 78 0 R /Im349 362 0 R /Im369 382 0 R /Im132 139 0 R /Im71 78 0 R /Im199 206 0 R /Im355 368 0 R /Im79 86 0 R /Im194 201 0 R /Im359 372 0 R /Im360 373 0 R /Im194 201 0 R /Im130 137 0 R /Im349 362 0 R /Im203 210 0 R /Im132 139 0 R /Im71 78 0 R /Im355 368 0 R /Im199 206 0 R /Im195 202 0 R /Im79 86 0 R /Im199 206 0 R /Im355 368 0 R /Im79 86 0 R /Im194 201 0 R /Im359 372 0 R /Im360 373 0 R /Im194 201 0 R /Im130 137 0 R /Im349 362 0 R /Im204 211 0 R /Im132 139 0 R /Im71 78 0 R /Im355 368 0 R /Im354 367 0 R /Im361 374 0 R /Im193 200 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im199 206 0 R /Im352 365 0 R /Im79 86 0 R /Im362 375 0 R /Im200 207 0 R /Im194 201 0 R /Im197 204 0 R /Im194 201 0 R /Im353 366 0 R /Im130 137 0 R /Im349 362 0 R /Im356 369 0 R /Im71 78 0 R /Im349 362 0 R /Im350 363 0 R /Im71 78 0 R /Im349 362 0 R /Im363 376 0 R /Im132 139 0 R /Im71 78 0 R /Im351 364 0 R /Im195 202 0 R /Im130 137 0 R /Im349 362 0 R /Im363 376 0 R /Im71 78 0 R /Im349 362 0 R /Im369 382 0 R /Im132 139 0 R /Im86 93 0 R /Im365 378 0 R /Im366 379 0 R /Im367 380 0 R /Im348 361 0 R /Im38 45 0 R /Im35 42 0 R /Im38 45 0 R /Im43 50 0 R /Im32 39 0 R /Im28 35 0 R /Im35 42 0 R /Im368 381 0 R /Im120 127 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im69 76 0 R /Im58 65 0 R /Im115 122 0 R /Im53 60 0 R /Im56 63 0 R /Im60 67 0 R /Im61 68 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im59 66 0 R /Im60 67 0 R /Im57 64 0 R /Im60 67 0 R /Im66 73 0 R /Im66 73 0 R /Im69 76 0 R /Im79 86 0 R /Im54 61 0 R /Im64 71 0 R /Im53 60 0 R /Im67 74 0 R /Im115 122 0 R /Im73 80 0 R /Im55 62 0 R /Im59 66 0 R /Im73 80 0 R /Im54 61 0 R /Im64 71 0 R /Im53 60 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im64 71 0 R /Im74 81 0 R /Im63 70 0 R /Im55 62 0 R /Im56 63 0 R /Im65 72 0 R /Im53 60 0 R /Im56 63 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im57 64 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im69 76 0 R /Im58 65 0 R /Im115 122 0 R /Im53 60 0 R /Im56 63 0 R /Im60 67 0 R /Im61 68 0 R /Im54 61 0 R /Im64 71 0 R /Im53 60 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im60 67 0 R /Im69 76 0 R /Im56 63 0 R /Im66 73 0 R /Im60 67 0 R /Im63 70 0 R /Im60 67 0 R /Im56 63 0 R /Im60 67 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im115 122 0 R /Im60 67 0 R /Im55 62 0 R /Im56 63 0 R /Im67 74 0 R /Im71 78 0 R /Im55 62 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im66 73 0 R /Im53 60 0 R /Im59 66 0 R /Im60 67 0 R /Im57 64 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im59 66 0 R /Im53 60 0 R /Im67 74 0 R /Im65 72 0 R /Im53 60 0 R /Im64 71 0 R /Im74 81 0 R /Im54 61 0 R /Im56 63 0 R /Im53 60 0 R /Im61 68 0 R /Im53 60 0 R /Im56 63 0 R /Im56 63 0 R /Im53 60 0 R /Im67 74 0 R /Im57 64 0 R /Im60 67 0 R /Im55 62 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im66 73 0 R /Im53 60 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im59 66 0 R /Im53 60 0 R /Im67 74 0 R /Im65 72 0 R /Im53 60 0 R /Im86 93 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 322 0 R +>> +endobj +322 0 obj +<< +/Length 764 0 R +/Filter /FlateDecode +>> +stream +x¥½ËÎ4½¸×U|K{áWÉcfz9ð40õìÝ-zæWe4æî§XUdÉx0ÐRÉ_Æ3ãÄùÝÿõ/¿s¿þýwÿò»ýÇoÛ¯íg»ÿï?Áo¿öüã×ýýóïþò»ßÿ_yýÿå~÷ß¿¾O?{n¾Ï?GÜ~á'äòýùþy}¿çöûë ÿ8èûï¿úû3Hßëÿþ¹«þ¾@¿ôs¾ì¶ôbpüÄíl!øã)èÜN,ø&aê#8¿ gØ�2�IAþɯ]È7t!?�ôiý#Ä(ȱs�ã©> +)J� RÑ�9ÜDp�»þYâc~(sÝ«0èÓ`Ï*IêÂ! +Þ¸ÃLpzEéZDwfÁ$f=ý&b §ßD.<à~bl�¸íE}ï¶½8ß¿É+<lïÿï +Âþ³Ü)ð±Èú^§}�A=#ýË(-ù6eÑ'I}�@ /às´Z"b>¸þq®Iñ_3)þ »Þ3øã>Fðg\¼ç<¡ lN%˶w64_ÓGuî±ìZ|ÆýHÓÝßv¾Ò÷¿/jBxýÇqJßkBKÎDßCEê»Ö\k�3· �!ç¼�ðÍ.[yH4àP¹¦by > ꢼðºhlt@ +) ¨ãBÿÎôßw¦×½cxgê(.»+@ña (wIv6_�v:UII:Wùx®jÓy®ißÒ ü&UÍ.Qô¯Ë÷¹=EñqÁ¬Æ#8�þú}Aðçã0¿7_îSw½Fû 1Ryï»"ÝmͦܮÕ5Üîäý+hÂ%LÏ`}] H{R Ò Pc$ýõÝY$M: +TùHtE£¦ÓÂ&UlÔÛ¤°å t]²%Ó8 ò2m¦\ÚAi¨×ßÿ¾èsº�à¾Äwú{]:òÆÚö¶DsH"Íe즢A?Ú¹%A +@Õ[iÀ�D6áªõ�6ƬÄ>$ÉpgtéT±ñøÉIçn�ú#púdÂÆAJWÔfý½ýt'ö¬kÝ)áysºÒ<Ü&a¸öMÒ '¾cuf£Î�¢ LξÝokÅ{É¢<Õ±«>ê¨Wç.)iÑ7ú$vI²OQê'÷ÓqEÎ[ûù$AHî÷¥q?iD²ÂGZ1ü!ZæY:ÓÞ6Ñ´ëÂ\ºß²-ÎcþEgþõß×Ç8Ìêï76NÖߥéï«Dªfcc\c�86'HBù ÑPè¾»ÿ)+ïbqY�B¬è%�¯ÒµST)â Ì4pdIÞ+T¢<ÈfnÊt$¯{§ÐsêjÿÖw7ѯbm~MîêDû^Íé8ò$�H.ÒKðÌEöD}Ö§<7#MØ83u\èc6l¨èY`?0³¡8 8ê¬cÌEæ6m¤NÐOèªo }4SûÆ+LêA´H@ûE¹ùíD¹¹$,¢Üú{ Ê<Ä¿D©^úN¦6ßÚ&!�¤.ܶÈA·YHAªûðФzH.Ô\�r¡úhhT#ÉQ@tGp!Õ¿/¥@T¢F¨ñ »wµ7ÑXíuù|W{óéÆÕÞ¾:( Ú £+©täÌ&¥DÚO>ýl" +zôäf<ão6cõCâ£îÆS¤Sº3iîzlgGèGHtû¯dá¨G×lT¼h/gtgÔÏ)GQr +kÚä³hX]È:"öÚþí´çEA:tQNÿNú;ÛyXȲHý-PÙ{fº4`.fX¢ê©¿"µ_ÿiq(Ôü}`,ªðïVVÎë¶÷ÓØHw¥�HS¢�¤C÷P°¢ù$� ¢� $V!mÎQ¤¥Q´"ÚDè/½.ªÐ ºÄ»$ȨA·Ü[©ªápo=D ç `toívÓ¹<B Á³näÆ5pãÃtPtNGð¢EÒ³Ñû]ÅÆþM!dÈõ=ØEÇ¢õ|÷a`ðÒ¢=àQ¸ qº>w³Aa�§Õ7r¹pfïï5Û@5¶ú'Ü6±b£þ®Â =Øn[ÌÄ×÷¶;pÍ]¯r«ïmǹ Ȩ��(hâä,á)Æý¦%<Ò¶o'âQÞ%1:KcPÉÑ JÕÉAéXdcØÃ²qÁ¨ËM;¡Á<\±Z aÜI 1²MD¤¶q cd¢$ ÚEz_ýóNÞp*Ñ@Wá@Y4I@åJû³;þP9A6XçQ¦d!0SkÏ´÷fY÷ç eà i-¼(ݽø¢(ïQ2IÈ Ünå¡�ó`ý)Ê@Äó´ñ;ε:Gc3ë§K.Érá:¨ÊørÒ# +tc,®)T_b]a&_UêïõøSïM¿¾RÌ09ß-nÌyçâ}�Û¢«CnýµiFbiQÛ/ÇüºýÛ8¾Uת"äÔ¢±FÊ ©8î»è¿«þþà¶å$� WÊYO "Ü-À�D4L¼Â¥²7äÝ7ó[ªHFð7mw.µå9è§³#õμP~*àÊ$YVÞ×Þ¢½$À _¢£uV5�U/|¢9�îíÇ&`òq«ýL7¾Ãª $ gÒIB?HÝ +ý¤:û¦hn¿ÙU9h¿q,!í7:îÇÉ!ªÔapcÓ)ä ° *$°Ý-. +ó}å¡íM^$¤È7é@]ÓXµ�ªü¡iå£$û¹HÃLæÊgÓîÒF·aõHçµ¾åu&¥ ·FDI5¯|a±(Û¦Da±(»úßGþq0ëkwÑó¢H"òî! +ãÎÁêxa$Æ�Y�4àp_ëDúоÙû¬EIÔgóîÙÕIÖk�Hh �6f úì:}.O±ëÂ!ê«K&Ù°f°ôQqUîêÌDúúv¨¬ê :ãAB"uÑ&" /Ùud 3lvx5! `M8TDTwDmÔÐàZAì#/ZV3ÎqPÒ Â ¼ã²ÌÑ �²Q&&8T7ÓàØõùó¬ú|êÝÁ\S¹¦nb»4û¿/~Ôl¾§ü+;÷â寿¼¾9??»ú×§XþëýIsg,Í% ³ec +IX/|À"c®oàóÙmSús°o"|Îà7ÍíÚRåÂwo¨ßôK?Ë +· LfÄû%O´]�»%.,ÈV�D¸©hÐgdL:F +Jnî3xUw'¯9% �ËÝtoV=¨bº;[׸ìÓM¸jޥã©ÖµTw¸jÝKÅK\�kDäe3"Îã]3�/±È$ݹqëj,$6"G bUéfbm³ó®n:«ÖOI¦d7¬U¸jµ(w¸jµ(¼GÆ®N©é°hQIp �$YÄXME¨yJ»[?5{ÉQ2oM ³Ì;@(¹¬`xÊìýq0ÚJ]Puîs^4ãå 3{ÖåÔö&{mïYuAfV$¤ «v9H¢ 1Rº@Lv]Ø%6" =ßd+ÐÍ>(R#8Jª(H^TGÄi×úLqbRqa°z'ÈaÎ" � ÏJ j¹d5%ÙÊ´ÊÆ´ WÄ`ÄK |¾Í²\*½Ô2}eÄØIeR¦¡ªÙ3ðÆB»0¢YÅCU»0oCU0סj:Ý0T5'ë°5ëɼw#ÕÉÀz_JÇn!EzÉÓ·.x½v»p$Ä }i²ÂbìI±®£áU&i²c� /!FáÐÊ=*¥É°så^:.«øº[Wîe¥ÍøÀZyì¯d1RµçÅè_ö] rq:$F yQªXÍdi,F»Q¸:n#±!IM^e×æÑ¢yß_¸öÉ5l/)TÐIÒÛ!¤¯A�4ã÷<2zÃÆ9,0�É0åONÊm+Îôa®Sk}aàXg&}:%VæìÊ«Ôvå *#ë1E ÉêØi2(9xD1°SoNLÜö½»ªi2»=4&³�"ðG ÓdT³ïæiÃPÐza `¡ë©Læ]Ïx-(n¯<Å3*öÏ@Ãßi² ¢/ùÎð÷¡ÿëO¿ã=Cÿ~;À¾ +ùlÈHÃvG¼Q�íhf~ $ªqm9:Â7#{A "yÈí¤ ÷û~Ó¬£ô?ûvÅk¯ðùæ?ôs^åÅ··}â»Ièp ÞFdyÒÚÓdÁÊ�À¡rýXç¶lc7HyaêSPHÎ4B±ÿmWÌ;!$Ó-OùÄþ©@±?µÔv ýy©CÃä9:D½ÔÀðÕK_½TÀðÕG0|ÕN�eSÃõèÙã{»}ÿ(Ô,VÇk8à��KÇ[5ó(ÊH¬#Ñ@9Ð~E[ç-Ê÷æ7{#îPç àË5̨009n>Ø&LNÉ" ÕdNMMÐ3¶E}ä-µf},©%aöî\ÓGïõÑE}äí]f}ô¢MôÑG¥> +Êð +P +ÜZÃÏyCªvl~]wØâñÝO?»Üý׺/º°&Õ3*^XÌC°Ò÷ª16 `uO<µß�ÀÍMJh2÷7�°«h0H I@ïªæE.ÐQ&.\$#Q�×̪ÀûAêV2iÖ¡9a5wZV.C`°4¨h0è´:=«*)Ô¯ÓÆyéË2ýv®^Ô EÇ'Èë±fÒîTu üNåL8x,Jd#òXÎ" ú\ÛÕ¿i£ß7A¡Ò�¡î!:CÓD=Ff.\ÿhÀÛ=}#mjI~\néoZ!)ðã%±]2¼1-Ëz.¯ïüßÂazkÁ»ù½µjÈ>ÅG¹ÞRu^¢´é ¤ØÃËË)¶àyoÝ�Ï>eBy"¦°54�2@Iâr$ê"Ð[EeDWEU12!c!{PÙ³AÙõø[rÖ.n3sãì +ð*ë<7¡â�hÓ(uÔQú^õb6w K¹ÊÀ«^Ìú̯²·EâBÜT\×LáÅhã\à÷¦UêÉ×þ^É}~6m)@�Ju^ò u7f"Ï=aÁ)a�ôPM"pßá=ú0Þ{¢ï7ÚDB· IØÿä°úik:EôQ§oaüUr* +bõÓz&ÔvãêÌ<Ô0qðàT��»·¹EÐLNL�Ê»Nz" +Àêì´ß¢hJÝ¡r RàPyrA>wSiÓàÅ©(Ñ�¸oì2�NÄ44x±ßaxPn¿ +1HIK6ùÂã)å �$*#ÔwÍÚjVyÉÙ¬z¿hRîq«I)ûË%¼%òÞ 3pgJ¢k�¢uî[¶Z;§lµX-/0YAw (ÈôSåæIé Beɵ@¡²Däây\@¶ÄHr�¬PçµaöqóDÙÃm±¼Uâõ½É$ÄWÈk2ôìXó=ªïÒ÷H¤ì�Ê;çõÚP^;§ÅgLcõ�Oõ Õ"«WRô¼rö}Õ·]E9óqQîÞ «&q{¨I¯Ö·ÈêÝqaл!j#0½}\9¨FÞÎM""(G§Ë¿ 4`�¢I6¸¶îR§3ê8Y¢*¾Ñ~Ñ"!%wêÝh$Q_k,)e¶H¦Z£W´> m×+Ãñuû´½2%£ +%tóª,ïfRGêv°KfZÇ(Ñ�QÇCt(ÞõNj[½kª^(©ËSrRi¢þòÕ÷@ö¦&âËAî̧¿¿·íøñGvü¸ÀÈ«õ£Ê7�1&ÇÙ5�¤ùëx0³k& 1fp*)n£lÄ@We¼ÞÔÌ*62ÚnMyl¾¦4õNobí 2&@[²&H¯ûnVGNiÇ5{æQH=XEï +"@h°Il¤%uDÒÁ·ËòªQð:IÊ$!ï»EÃî£dØl.éÌÎͧ]eûõ^Ì\K¿yªlõ æ )@B(G8@{êB¬Á+;fçÆA¦N�tQf%3àb×»ä_WxsÃ;ÊÌ÷÷¦Bõ÷Uu^kè1 ÀQ&Å Î$�@bwJ Qt^EPòÀ ó" zu^( qjT 8û +¨óBdÐyuÚ4è¼ðVsÒ©5 ÎHçÅõ H,+PÓñæX+07G|Û�ݼ£ð=Àâ09Ë´éf ä®áD�ÈäɱFBæå!þ#ƹMEÁ¿QCè%]%G}Dg¥o`ÙT�5:$k_eu¹ù��vI%2»ÄF`®ö®ÑMö¯l²hÐéSÒhìCgRû!l+ç&r¹ùr�ÌÕº}Í"Ý5:Ëk7± ØÑN$Jl"@/.º¶»Äf5(>I /Yä°H,*ÓýýÐ9¨2P ;D]е\s#»PfìSñ©ðñ´ Ø)U +\eåa¬v ïÛvõÕäêØ=)£±3ÊÑXó§©Ùßmlþ>0L»®y£+c jíçy_$w°J/Ò� Ó Àvç¤ k; $GÈÍ?¤?4ã½KG@rND¬F&J)l� ±_2óSâ>�¬ +hR¡ë°ÊÇãP¡0}5ÎNÑ.#Ý+¤NH J3ÚfÏx7ÔÕ�=DN >ñ¢g@ÞÛרxwäMØØ_T¨,æa&nð ÕTqæçyb�PïM¢IBBD,20¼³fY?Ì¡Ì8öq\Ïhÿ2ûð¹³AP¨+Q5õD¥Ò¨ ºT¼ûá&Tì¦@øÒEwö±ûÙ¢±O¢±Fjüb³»½Ò¸Ø<öÃM[B×I,æF$"S½DD(Ôi�D'«O�²â§Jûrur0´ÔÞªØêf9È$În0ÒêI¥XÿTiãpFü X[¹Ü¡ãã T÷*eè'0è@|³Eç¯}L¢:³ÅîTùAZ\RG Å3â3£ØÍúøQS-e_ü³ËòÖÆÍ*ò¸RgµË÷ÜÅ3\¡¶èY>âZäïË?$q¤|H¤¿9ßum�ãT½gà8×[J"ùI'R?PN*úê&}¯ë³~Ohá�ÈH&ºV +:N¿ÌH8Hk(�q¦c¬Í\^â´__C «ÞÚÌDC·6sqǹ®�Èò:¥ú×ÝùéâDü$¥/�§ñ¾qH × Ce Xú?Þ@?îÉëgÙ«T4@2ÜåëmÂ[Ú¬D¼ÃÌZµ6"©DzgfaI#ðÝ{bT®hÒ(3kVÙó0Õ*ó.$³U¾e«UöYe f� õ¾{O¬rCçù\Ñ3éÙî°Õ*ß²Õ Üòä]Qæbg °ËÚ$%+9P¥þèIÑëïd}BãäúïãmÖÕ÷H69X@ºÖ8'�èðåþ«ÜÚ!t[ÎDuöj#ô{K£ÈdDD$Îær � AÙ¼¤u4'4èGú_æô)üWaÐg-bðå¾ ¢E«Y ʽÊÈjÒ¼hÇì$Íð|ó·4/ä=oIL&ïl¨ ÈdF3?ù` Qî¡Ò >³[ÓÆ»qÇ£\÷ÀítHfhîô§·:WÖ$×�Í,Ò¼íaBÄi»íÆg¬H +ßÌùê{`Ã/ͨ¿×±ðý½ø÷:éo¤)Wa ÊGsT,ìgи¯:2EÆ}5pp y*¶�k9�0@n;IÂ�i¼àf¼ZËJi�är¹íÁÌ^4¡A_öcÍñf{»ÒË +ûWÛ¶5Tú,Rå[²H;¹¬ÉûEeò<uQaಱS4øc© G ÌlhÂÜsî'2¹¼T"ÈÌ:0xÃ) ²|�úTÚ4ÅÈÉóÅ»�5¢wåO¿HѨ7®;Ûe^¸×DÊá6u¦ÅÍ÷zR:¸þ(.Q Ý|¯wî§ô÷iFéï# 4Îl,×o"ÏL½x Ý+îÚ½Ng«óòÚ»âdI +jtu]¤Æ½"ñÅö3¦í"ݽI4È"§:B_(y3Ó ÁºL§åA6x[äÂmÏÆ\¤ÏE{pzE�D©÷ y0F´HH"ÉfÚØ¯<ËÁ7g|5ÔwtrR±Ý¢gÖ§ø©A6ØI¢¼@. 7¶ì×ÔÙç¬RçA,i#R,h)¼.>�]ð Ü©ã NÏk~Á& XüÊùè`Ô«ße³Kn Ký0ÙIßÃï?ÕßB@éæ{ Lþ>¸`¾ÎaKn"åv åvQE>�q2+mQF ]EÅ~J^�¯ mîñTIò Lùl¥¯e`þãì > èUC5à® at]l7µ8»Â�)î ÚtJDDs7HB[çTùh§"â`ß ¨ÎÀ?í! +/ÿfñ÷I84ãD× +;Àe1E õEQDÃsãÅøæø¢DêKÏ¢(¥]R Äàæ7fعp Á©Ô¦Aã(ê30ÐiSi×@û e'|Ô)©0ìÑfÕ9ÿSý}àÎ{î÷ß7®ÖgD£g¥© ?u~Ô EJãkPÀ[?. ûñ+8RNÒôEJGï6¨¯qëÇÝ$o§«�EÊ;ÐèÒ ÐØyYÒFèÊ´ëPl¬8 Z4$!Ì5¶Ií"Í&Ek5ë3ïqa�@¤*{ �8 ^Â�YAìE×<b¥¤A¤,²Q_ª,¡ö»TùÒëQ©RÀ`ÿÙã;ºxÓûçõ}pR¥ÐíüøãÞ^b~ÿ¼�xÿpÒC;UN³ 8 ÷:ö!°\8ó²á¼ÆÃ(Cx0ã¥zgËNqHçz~rwá +%h I{CÝv¥SÊuº@(¿æA*Âá Åhê9íÝ=FÖf$¾±¸3J@°k@ Xpr&]¡àê¦BÑåG^åGÕã1XÔGb ø'®`úeÁô´DÀDêeù¾Nxøeà׸Ǩú)Ò÷HO ϲÝ-B~¼di00*�(¿ð§!_Èâ-¶/q¹Ö²Ãqp!Ù<·F¹ +sú½m¼¥A׬K.� 6Y2ȼ&»ë`^ f>" 6§}Qè$?rkxѦ©"%ͨMÀuFNABääýùBVsYíríè®øSí¼ñ·skùXSçc¼B©à¤M8ExæJá +2ý.»Â !BàÅ`Ãdçª&Z=*UhÔ9D�^hæ³¾Ð|faêÊó]ñÆÕw¯Õ=pd3n:(ëºÁÛ¨¤¿¯/Kse~/íêÃmüü×e ]Sy©é£H´ 5é;ÞÞà-A<<n7¼ì*"^'N�üub; Ân¥WPJç ÞÙÅB^Ààyeè`2õÙT@%C2@ ·o\`§s]³.|6¼¬É·äODy°°[´ÈÛ:¢6" (Ü2ÒÓ¯Ã`P}0@:©9`aãµáErзx(ÉBD2Â7)F6NwÌÌ,Ò LÄù`bÌ®o¼ãl«o¼; ¬¾ßÖ1ÛD~[Çly¢Ù7òèìLºµÀòßW¶ ^O{çe¸`û\ذs<�xýºNøÈYúH#Ñìê{}¼E5{�¶VhÚ9Þ�@VK4½ß%�H[Tq±ß]A;�ÍØÔÀ:cã ³}Ðk ,Ñ�!bÙ¼¤Éø �Jg 5W%i1�Rã{RiSÿÒ·À¥ïLÔ¿YõÓÙ®WW¾_n5±q)K AhÓfloVÇO«ÑÓ¢ ÍØAô@.4ÚÐ êh0Øz®ómX]Â@µÊðÔÖpaÓ# @!ÚDäÂ#ÚDDwÑ"µ ]tÏ�/pq9DÌH(�êÈÁzþ¼öÜ ×¨ ¤\|l{r®ì?ÆzúIõ(ý}½58Dü=;:ü»Äñ/¤´�òÈvm)ê0º®u¯í¯ÛV©TÛ{ùIj2ØÅà¥E;åÀÞQa&ÎßSì.�ùZäh»öß÷¯¹áºÂ®ÐOHÓbúÑb�Üð¦�rY *ã(yÐ %�À7KÜü©,`¤æ®2i�L:"Ná¬õyl¦íþMR&¤ÿc1@�HÊÝU$eRƨW�iãáôü¨!/²Q4(ÊÒ÷óF3uß*""éà,²¸-å]ÅÆA¾©�n +:¿Ð¯+ÐN�\2Ãq¾¨@aâ*Ï4Óuc -òuµëc$²u½µïÔ�õ%Ñu½ç´'�)i'À½�X·ípN{BÄAJÚß40îcä@p¶*Q H£îý$ºc«nÆ DÔWJïø�Üw8U�!u8Hi�$¥}¨´±kKù6Ôæ +DÞTÓØD`ìÚrЫ<q"Òà§Û""ozÉ&ºÈªs8aC?J£¶Q´ZoÂT¼hFTd%¤Î9öE1F¶3{ã±;%=ÅA(Éà¼h E3QvJêlZ_¹Êfå°éDy©&ÕºÍX¢?üÂô 2ÿ`óδg¥Á�è=ÝFi^ÔRìʨSºï\i§ÁÃ� >à@³ Ôý§ï@ÎÎ0È'D�²ºçEëÊ6ªÑºòó^ìði3~b4:s}§Â�it>têØçWhÌ\àÖ ùÄS¥ýÄEEÛ8ElII¢:"Mº¢:"SyIeV§]¾fmâ}ö#p ¢VG @"Ø@Q8ÎÜ+òJmY©ã ¡¸z,A9²~e$Eô¸øM7Îä`P ¹øoÆöyw¸g^d£hUÛs çD¼ëÆï¼ì©uPZ¢°{'Q��¾v�dZÝÂÆq6HBÖGÌ0¼x~H\DvoKDDêÖA¤²>ið @pÎ:6RQ¢"Öç+Px3C]³$q¡Ê,I»[¤]ÒgÀ¢Ým¾5 ý¦ÄàÂṩ&"²B$$ $ŧ>í¤Áúïc\{ÇiÀMoµëõéõX;J\ºtEïäÊô8B¿hË·÷�0MÓ=¸Kç3Ç0ÈJ(@IUɳ�í %Ô}^~ÚV ¸MÒ· øg¦+JÛy¬¢tWß'Dè&ôxùvé%ôº +Í¡jYëo±ëªKüR¨Z@ºÂ¸ø^@ÞáÙ üǶq.4'LsU é@«¹�Ì»Ór�èÍ£ÕÓ 8Q$}_y Ò`óÂ. ó6áÈÞç]eäÞGÛ|fr0� Érç9% å%Qßô}'ek6"¦(ÀðÏM0ÔÎãå_¦ÍÚyÿ~ìe«;ïÊ´ó~½þ§[ºØ¿&µwàºÁ [4^5�dÌXÁ�P] ź �$ Bm3¿±ë¬\hÜJ �Ù^)aN?T�ç¢i¡O!¢LÅií æ~iÁôM Ø +"§J¥¶¨ÒçQ&ÇTSpu$!©y¯Ó¦®U¿eµ]9lk _Þ2Ër©´-ÉrÉé¯É2¯ +7öûúoUO¯¬´g@O( qDYÔODñ+¹3ËÞ#I¼Ó+úW�À)yx \¿glqçÄù,Ñ@wó¤BU°,1ów¤Åðhy0æcR^ÆVá î¾/zÿħƨ0ÓNA±Úô42(YCÐ$©5æ,Ë¢f0C(PnV+^8èoLHÍ{/W¤_2or¼DókGÓ¦ØÞ8DY$uakú:-BÍQã¶8ù�ð$Nƾ]~«Á�)7ƲYDY8R6;D}#@ÉfG@&$AÒ!J£WsSIâ�@\eî03°ÃV¤ñ|V ³¨UeÕØ.`u¼E>h1ù´ID@¶gQµU6,ª#òèWIÒ`9N-f^ÅÓ«LÒ´ClÆÆþ(Åk²ëå&ͳu�,çÆÖc>Àa~òp| ß!s �ÈÑcõ� Ò! @ÁÇ3Æ÷öçüÂõÒU8Íù f²pä¥è�Hv2fHØ!q8¥º]0R¥îRWîïªàpª»ÍØ0]Ã8åA¤*RQ#¹íÇ¿¿¤«ü~ÒWÉF¿Ì ¤X/q¼niÄy½Ó"ñ|ß±»3ê<RV® +é©ÿ¹§|á7xgTɺ`Ë«Åk +ôWüeÏãu·,ÒMÛ*�· FÝ �ü1ðktR¹!" Ðlk�ÚHYæÀ4ÙS^¢ä0¢ýº�h¿®ÈF@ö°È¶Ë.ô18$"D¹?íxJ4ÞŸîÚ»MD}º´½¾=S�ISsßkÍG$Mí©^©¶4uÉX!Ð)BÒ¢¦.å³Ù¦.j×)¢-M]Úo¥CèÓÔe#$ú4uApЧ©ËÛoïH'Æ45ïϲÐ!H.ISóª\³å*ÞÌSO«x3G;ÏFLìc?¥s~üäÒ¼ÙÑz1äÒÔ<¯6§1k2®Úå¤d#îÖª<)ÐwrÔÕ`�ô;éPÌUGfÌ�ô¤# kÁLD*±syÁÖpÆQóäÓ÷Û"Ð-,b�iî¸Ó5 +ȤҦÁ¦VQ´Ô¡SAÙË/Ê2m© õM¤ÐlµVèXsI%˺îÝë/Ð*�lë)hVs¤jµÚ?ÀfVh~mÆÇAÙKdùSÜ+2õ÷5»ìEÜ!M¢Ê^YPáMAÑH4)À£§ä «ÝË gØ5¬xZùði±¢Ðlã¸tè¹1R� Væz�we«ZHÐrÝ*ÂÄHñ à)²î0kSq¡¿üVÖ� ZæìfMDäý1H¤(qA)ò¦Ô´¨L»Ä`ÅfY+ð®uÄñN÷ÜÛW±åxåiÅ'Û{l¿çØç_<ýøñùéP0r +28]yÂfpîjK&EUì=zrvجÜtäáðãÆÀöJJÔè4_ð4h{$ *Bj%5�C±dÁô-Áȵq��ºÀ!Z}ä-A³ ñ¥MÂ�zCTg`ã¯lç5tê<¿6Nlâà SP&dão1@�Hʽ%(ÉòJJ é¶<Ù·E6r&kÂÆÁQç5Ê7êERÞ[«êÂÄ ôïwóÍFhm²H½.¥E^ÝøñõAån�#1T²�©D �òd´��ùÅ.u +Û ßù,8ºó1¶%%´ã´>ôæô©âÂôy¬0ò¤#<¹ÐÖ3]Ù^ >-Al¤]tv6r*ÏÌF®OØ8E9@ÞK*6âÌ]eú®q#·PÞ1@ÙI zN2(ϧ{e*=9O<¯Ló¡«$ò.º6ª¢QERûkCRûIÂ�%*QÌÔVe"]ØE÷lEÜwÂDQ44 ¦¨½sæÕQ$ÊÐѧãès(%N4:EQÔ4òSy +e»¯Zôb ]-»7L¼1 â}ÀþF@ªÕ!ìtß6ÐxBḯªQð>/ÈCï%¥øðLÌv97I^¢¥¸í*aèr"l�è»Y¢Ë·,IºVk[C¤Å4>¢Å®JFJ¤4lx¾¡ÕgCtlRUÓ(ÍíﺿÆ/³b*ÔÄ,Ò@¨D*Í¡ÏѪ�UϸK�UÏxH¦Uõ^8�ÁéËñ->ZKN»!oÚXoÞ$Ú mv/É4Ðæä½]mJ~_Ó¦D»¬/{¦p½,¸»ÑY(·ãõüëýú˯î¿Ý?b|ýøúïßþõ§ +ÊæíïûÞ +ÿÛëwõíÆ¿Ë¿çßß°:³é(aÇuÚ_¶ßGrIã*Âû@a|!jD ÐdzÃcôMrïÝË¢õíA y±ÇÄë¢FºèÔºØâ9À7pHâp +â&%w·½3͵p ÛÀ;�kNÑÛÒù.¿óG¼é'K3ÿkµt.TF°Za¤Û{ W/ÄÃë4LÍ"Í.tGM@§8e�t8£x +M0tAH¹ÐKw¢g§ÒÝÕòÛµ<9ñIÓOÈ)í?ùK?Þµ£q)׿tãö®üòþñür&ïÊ/ Ì'týüúÌýþËño /"êÕÍçñþÍ&¾"tWh x1ôví-M~!"ù>^ô*Yë]7>ðg˱ê¾ýàKJZiéZ¼- J§áís$ß¼ÆÒ)^Þ!|"ö%ë²÷,XìHn_!ÊU÷,åi=AHMìEßRµHÅÀl7íc«!¯÷é^§kpPÅWì7$ÆôQ¦åïÚûAÞ¿9¾¢Ýd¹*6¥ß[nû*È[½=|ÅÞôû7ÉÞF²Ná<¤«t(}¼zðÙJ?[IØQa5ùý!hfrIWc¸q0Zxí[/8-Naµo øïÍ=è ðâõE9E&ëÿº|ÉÖ®¹ ò¹J=¯Òn -4©$Çq㠰ݬd¼Y=¶ü6ô°í¶S#ÆS'B¤F{b©¨õKzr~[<Ý`¦<ØÍ]íÝd¾ 's´¶¢_V¶Å²Å/»yýþM´£;Åo¼tî;ÒÒùÔ*^l hÖ }ìÞª%w1²ÞýâŦÆz¨-%åñ#]ºÈàÂáÔ¢»)û¶'%5K´èYy¾'¥³ywcO:È@I[´úµ_±{¸Ð¨[Ãç>%°JIzÝBI:ŹIRý,öõâ:½à°8h2 äI9º{EïÖÈ<à+º1F¼yþ~,<÷²õã"ö)ã"Á²n7ÓñÕàî±½x\ q>Å·^�QÍo¨½ 1ì¼ ç©âx|Å5;~úNZ ,ÞI_Òm½ ëy <¥»¥~ÄPVï¤3ÎÛâïÅ4]lÁèp:Á:Uus»(úwÚ²DeûuN'Õ̬ÌM½L&'Òj®qNqèç¸ÃvûO['»T_è¥V¢�¢HI/èîIE¢ÞzY&Íö3º ×¶´QØIîké ¯cfôÆÚhÜýMÉ¡nªhQ䦮æªELr ¬Å°ö§ÈMDÎS¢Ê_nnJnv£Âä¼.*ìÛjå!ÑPÊTv äìv'¶0 %:|Y[$vÛÉ4ĺtøØIlå®zd5@ü6¦7èc'Oyèg¹ +Ë=#fMcüwb#ü&åõó\¥ûæzÿüMÌz}²bxëåϳ\ C+Ljó,×y«`ÈrmkY®Ù)æY®,ýY<ÅóqÞ>ÚûÑBÐyáÝäêÕçÅ!Jµjã=çdÍú δ*Õ´q`*]JF%³Pò:EÜÄS�¹ºè6ú88Ñ>XruÞ^¥¬7Wÿ8Wç÷Õ\Ô0ç¹:Vsu~_ÍÕyU<0åæÈ»O^ÏÔü,M¦.쫺l/fêjL] Á©«(iÊÔÍpgêJ2uL]MK¦®9 !SשIõ<S×à`ÈÔ¥úÎÔÍpgê^Þs1Sg¨;S×H!SgàEsõª2uÞl8Sçq½h2uÞl'9SçqJ6ºLèæ<SשóV¼3uÞlíOLÇýE©qs©ÅóLYîLÝLæ:?±óL]CIC¦nFy¦ÎO"±y¦Îáth2u®ÆÁ©s©gêÜDæ:§êG£ÿ£ø¾IÚ}gôÄ<]zwV~uôû7)qw§õ <]9OªûþHô"W.2ºý ×ä�ev¶ï£W@sdÉ>t +$'B9²Tvrd-È,b¼¢üH¦fÎ,§¸D¤t n{ÎQçj} +¨m×ÉÃ4ËÖB�ògZÆá$^ÔLõÜöÁ<ÕCtZ¦zÞyÊ.¹iv)ÉÚ!Î S\³Iù> 1GF]ÓSôsd4 ^ÒçÈ®Iã$°*oGǧDÉ9²Ûû]i±Ûù=sfwB ïÒ_°¢ËòUMXõ#3zÜ=o¹Ònéu÷ÚZ +ê ËvJ§&óm©YÍÀ·|x.A>92BÖ-¹rdA¤$r{TRr0©D:ès iq�2;.Q.WH÷.z&½ÅÈôù¨ÓÍA-¯ò"l$ÓGY¶)ý»_8tfeq@2}§YøöHÑÔa¥d¤¥ ¤@÷Ï:2})èp@ èúhw¿2D3ÒÓhjZÏb`íOé@^·JxÌèõN'qñz´m¤= þ¶õ±ÕVè!»D[-@�²e¹J&ûtð|WlÀégýi®¯Ì¯Gj¢ëNfçKK:çJë<ÏW +HÎì¼ßùÊì\¿ûÎôì_)îßu|ÛÏHðö`Þ +Aþ« ¹qÔ)ªÜgf¼Ã³ï§ HtóÚ³5@Y¿MçvHÓKWº-+³ÙA¨èôÃÑ<ï(Q�C$+Âq~s +CV$çÕ¬HN=7µ·Å½5@=7Í) -é È'°Í¥|ÜOzaÿÚÙÒ±¸ÓBùÎQ$ÙQØoý°fdÎ(÷)±Õ¥1f8Ð@@2 +»É(ÐF»Q8EJ"bÔQrcJt�2 +ô8SpôW÷QK £àÅS�)Àý/H¬ý3 +Q)ÓjòÔÂjÁ¤y¢Û<Q2O$ªoåã0±r»ø©ÃaÚߨ@úÁ]ÜK¼PÕå\ñËÍz{½qx½Acyô/ÌÍ<¾lõqµÕÜßD^ès3¥¿Q °+3Ñúvn²¥µ[u +p.JTÉ®IT¢ &D±yÙê¤Ã¡ãÌ«*Æg^ÓÄÊ ¬=ITHÔÀV79"¥gS2G¤l«ÙÂÐÂÀãÐ:ú)/vr ½ G¸ dû"mné ÏöÌëûð»/eû¶«c(¥Míã[ã;ÛÇwFNýí_Å#çïüë®ï¿ò}×ïßÄüß'?Ï\˵6sÙB�æiæ² m¢ iÔ Ýâ�ôr¥Cw~V"S®-nÖmßKá4ïd¼:p_Z¢ÚY͹ó Ȱ|S2 Å[Hµ|21xnÅpº[£åV>e«¥ò(-ýäF¤çe\ï-ôbÁ¹©! ÷C¤$äÉÈ£7§�º9;Óà�póÜÅS ¹§9{Ö°·ëaýjÒ·ÇýÐö²°_Ñé÷o¢_úø-ÜYN°µé)®! õHwR¿§æ7ñúÜÝíÊÃàÛÇbi"¥ôsÆ«îäJ]ç®dÕ)jõÃj'ÛÉrû`ödTë¨<÷-6§èx2Ör]¬ cûø=ÜNÓx² +ɽäbÑÕ{!{²Ã.É~«8Ðdm¸`'t§ËNûÐÓN8Õ¬ì6Í)Ø»°~¼]kGã¾=èJÉÝè÷o¢_úøVÏú½\¥Ý²µ÷ó/ äFu8èr;ÝfÞ¼!¨t7ÈJs%N¢ò¡ª{¡9 &Þ#ܽ`À½"7¸'SÜd2H÷R¢ú;hN¨c¼9E|JîØ>ßÂ_ ²{e¤Øö9WnêK¢â¦ÉnGMtäÉk:�E»ïÌòéiÃÞFE/k7OfnÖ5¥Þ½ÖQSª0k5ï;U¬;jÊõ%mõÔQÓâMçN±ï§xÏ|ñ> qÏénóÿE®ÿEÀç~ D>ÿ¥a5O4Ï:ó öá§µ~>Æ«¸{Ïkȯ8½ÙâdÜê)8w5;Å /èpPõq¼¾ëè0¨ót@ê¼\)npÐëhéÉá8µú\¥õ«ä@}uwÔÌ$jº¡X\c ö3Ô³0%ËmÔxO.õ$âÁdIX¥$õ .P2Óí)�E³)-%.¯M榦˫n±Ó§[ÚSèg¶Êtê¦Âç8;3°rªHd8(JµÊFñ(jÆN2Ó¡î<´ps£Úãð²_,ÛÉÃla¨ó° X9%~L&6ªãów×Û(ÆïgißWs +U+H op'í>Nkßà®äæ´Ú@0ÔB§8ôyA5S^tmT¤¾ ¶H»[:�½[ <½ÞàíÓ¬Ôä<Ñ!úç¢<:$×£½gvCê¢T#QqPr³HÑ9¬9ÄÃêyùæ^ìñ¾IÝ- ã¸zðbº÷¬ÅáQ @8%ÈfÅLVnÄQýºé~myO2[KV)ɱýÓÞÅæPï"åçö¡¢ +ÜÙ*å¹;¯Õzr®ì¡øÚBG¿kwÚôô*¥_áK×±Yå7UJ§³6ã2²ý5U·Eý^D/â=b{uýáß(È|@öv·¼@&½îÇý> ±&qP6ÿEIc6ÿøèÚ+rY,Þ·«Wz ÷Å©ÚWò¿¶z@ÜÜ"âv.Ò!º«òÚÒAMD÷ÁAQQ`I6BáS{èw\Lgk,³ÊEG]HA�ÜÆ3yôê6ÎqIÒÑaÐ ¤Äaa?@Iä&ÌY˺>¦ô}lp�ft9çXyèæ³eD n¹ÒS^ôoÂ4W,®qoµO%ìméÔ¨8k9êþ^ èí$×füFtä?-qÄeíÙj³µOä/¢ÝÚJfkIÒÄÚO;FPǨTNâ)§t +¨VOÁ÷Øý4íº,½ÈÆ9®Q5§ÐÏðßÖ~à Fõj£s~üLÁðÌÁK Y§YÜ¢<á"%êfñÄõT&ûõBÚuÙJfzSËV©¾kùÑ*ÕwÎ1â¼àë]İÛGØ^�Ùji#.Q<õMÕа´ô&Í<2/°%Óv»DI$Û( +æX¶cÄ0åõ!ª }\ê×$ÜqbEàì-gÞÙ[Î!4©Üï<ï3{ûÎÖ󸡼üVlóº<Ä?ãåãÎî«ï%küÄnIS ©OÉeûõ5Ö¸gGl¯ùBÖ¨8!;é:óçÝÁG&M#:a@OÛÖøM³ïúÂáèaÖü³Ý².ò¦â¡£b_N(Q<YP A]ÿSIS>ìÅ�U�¥ft¹ioë ¼Á3z�8רiåùQöOh\a%ARÑ0 µ vo£vQÎA I1� §(÷i°i@�M2ìª á©¨àÎùõ¼k(··Ïz×ÂAÏLûG8%mzò±KEnoÝ£¦-çú8ÙH^ø~kf7ÄÌØÐÇÀA xQ;^X¨N%ÖeÃu1½<üöþM!BsP~.wÉÿÜ?»G]B>úÇôSñQÏ~ÙOó(ÿ¼×õ#ÚYCª<`|@¤ù[ Åá>�J¨6�4"I�0ðªCÈe¢áz®<ÝËJ1ñ})m_¶áÔÅ+ÉFbâç:tãÍ4<Qî{þ@Ð!f 3g§DúÃÌ5MzÛ6N:EúZ¥½ë<þêÇmQÐz¼â É®»ÃãÛß×,ÛW>×bô8f:êǵÃ+~÷ùº½Iù:FúÈäÓÀAÅÔáÙ²×ɸ±n¦o÷,¦ +Ì?[¾®3oóÒÑÏÙ&ª{¸«p$Õ!üö0QýCx¿xJ/Ûí!�*+ÖoÒLõ~.5öq »í¿ÔOrûç`hi¤D�Fݤ»ÆÂp¶R%áøf§Êñ6{Cß]d¢dp´£¿¸p£»8t軾h ©_áèÑ?Ã!x'Ù²=�týµ +Äcìóúë¸ò¹%&5z,ÚÿS³"¨*DÈÓ, DH¾§ÉÞFé º0¬S§æ¾ÎvÖ%qw¤µ@Ü gû;8²qÁèóhxcá·©¯¡1qÌøÑ,ÔçWÑaî°|ZuX Ãz]×Ö¹Ãj kv¹ÃjipXæCÐBÝú!a''7 È·`^f«Û=é~T±¹jõOÒ)³/Êt©ÖÅ6P9;!?÷#I�2ø #Cu"9ºÞ°}9¬n=VÜÇb +V·w²ÔÞèvi¯çô}^ä/ü:¦Ë¼ Åã-/�·æn×EØD}Üî[ \er¤Îm}:ÄChr££tËÃÒ¹¼«±`pªÚKÒbÛÉF\-vT×�»8½7W7ïcy¤Á1hª=^/x*8gÓâôTR=p4½èìqD²®pq%ÔÈØWÜDÊÑKb 9v8 Àù³Ã±Údû`hthì°DÓ ×Äe;ûl¶èæOÊÎ'V+[þän0ZöN ËcΫ8ÐdB« *ë°×-¯Ã¶Z^]ZáÞßN§²ýCiñ/Í!ô¡`Ù\µt2V°xîäªñìÈëT[syesÕË+¡à[¦·`tyw(Ø@л¼ + +�W"¹B2º¼;ýQá�Õ¨w/Êápú£s[ÓÒ!õÂ×r8Ôo8õ]( zhHز¹d A èEËãÎ2;Ôßj&âò8_ÿ"¥5_J ܹýD}CSCâ|=婷ͯϺCÌóõÍ!ìǹx8¯8îu||T)´çn³û¦¢C7áÿÞ-ä6NÿVÂÆWGyÅ¿ªXDzL¢L>#A,y¬É$OÚe2¹e,+H×d²,¥3Ê$¹¬xíc÷¯ØÚè²âò§·rÉ/C¸\V +¢¨ÖB@ +a×íÄ¿Â[Öfú3X«/;2ývHKÉÌQKT27Ù9"e´æ©?ÿÍÍí£ÜdwíÊòÇim²;ɾ´@â0¿Ýö5Q×Í0ú(Сmp4¦¿Y±W}zÏ1A[9©æ¾WþF7mñ¾Ð8dA³,*ÅS ÍñIÄ@âP�èHÃG3Duí#®vEªSp1apl_îê)ý#Ð^àúÏGuú�¯"â bq .(=oKïûMÆ/;ï²?Ew¼Â¹(cd`�è®ëï½5þCÏÔøÓSõi@kì4YE>¸I��èrgçBÙ¨ÀéX<ÕBgGèN`q~½ y.�Ò¥Ô7C$"@CÔÝLæõÒ¤(úÑ-~®¸Ö`1m:I�¹L#ê,Ò�Ä`J¼dÕD\Äý`,O#Î0è¯M¢6{¢h�"éyþ[cñÀUÝ�Ç¥ôy&�ØÌðwWvÃxkàû ÔñT�|ùF½$ò+Ûõ�eâÞÖ�`B0P ×vÒMDãúc¹£ÝZt ×áM%ý%,42×È~ÀR# Ë?â6rAdÆ ~ır �ÀÀÙØÄÊVe^Â�¡Ý&R´N ³$Þ±òD±²dPÅì* D`YR YT�,ª£~íoÿh¢Þ³hûò,ãÑ> Á²��»xøú=qý#:£8¶ÎñýܨBÁ²èõ¢¼È}Æo§=K +å%Å]¥L¢U}/PI>¹$dJ<ªPÿIξu!í¶cà,LJCßÖUç;X®��7@ó � Òd6Ö�tkâ®I0'¶£p.Ò ¯1ëØUw2(5uÊTËeÁé Déá¸�ØÄ@k© Á²HDMÅóÂY¥Î`Y$`ÍE¶½dP¬¬1ÐÅHï�#8Eês!ì�#4�âDZÜ2mr éð ²!MÇúäíeÃ7ðÝhkÙgUC°ì³òõ°4¾Ïªï³ªXöYÕTO«}öY]gÈÕ>+`í³ò/Õ^ÛgåËÞíßgåKÇMþ@À÷YY 4ÌbºÏª ï³ò¥·à¯áû¬Zð}V8àû¬Zð}VÞ»Å}V:Ôû¬,âÐì³*ÇXÛgU3òÏê-QgØgå]ZÛgµpÚgU²ÏÊ~ÚgµpÚgÕ°Ϫ(|Uêð¥Yø>«rµ}V~3ïãøgÃ7æÕëAüV5ÖLqwEnæõ´Äoæõî}wAëAZBâëA¨÷Yù _eYﳪaÙgåK_ÍcÑ>«}VvBrêÕ@ÈzU{|ÕT)8"}V kû¬µ0ì³zsÓæ¸iÕËŬí³Z8ÄmêëCöYµ¼À÷YÍèÐ?E:VeFlZÀ,é nG¥i¡ÑMuÎiÝÈÅC¶ú#<c0r4{æA5ø^JKÅ.ÄuwsÅ/vNE²ÁIB "-ùk6-ÚDk1ì6Ú´lhlh}^,Ú¤4´Ó;ñõªõØz Á²Áè¥ kÚCà^èâ£ÏjÉ43=Å|ÑB6½¹¹}\aQ{|;5yÑTªd¡D¶îâÅdÙí`ñß¾¦Y\|²èÓ¢ya[<DmÞ<ð +$»yà¥}vó£ÒÈ ûÍ?i7ekßuÚ<@£ïç¢y{X3¼íÅæí¦ì6ÉBÌé¶aÛ;êí¦ø¶Ë¶¾íÅËn¥CàÛ^jBZ¶½Qo{i¥ßöâcqÛËTNÓðm/8Ð%«ÕLöBʵm/DAÙ,&D½´XpFÛ^Üa]òê!øzrØwÝ m/ÈN:²à·½´ o{Ñaºí¥µqø¶wL¶HÏ·½,(Ö±,§(m/fäm/öC$'Ë$½pv¤·¤U +îD¬RpûVÑ_¥ÐBÀW)4§0¬RhpÀW)4�ðU +3Äøå{B!ÂÒ*÷úÏ¥U +õ«fD®RhE Z¥o2ZW)dA¡U +þ¦#ØùÌ�²�Y¥n"سhÃNê<±Ó �ÀÓ¾÷÷P~FSE/ãê}�»(�ùjXSQ?ùfXáyGNw5GÀ§»ðé®|º«!">ÝeÞ¥PP å�/ròMS +R±a¥â¥±i}Y @\e£l×ÄFUÌZïRp¯`Ü¥@Q +Ù¨e A¥È|Y0�æ¨u¼Á�¡§VÀ`×ûTLä«3ìÀB 6óØ$ �|aÖ#Ã/JÒq,JÒ¹©$i� �ìY¬Dö,yl×ûÎѹ5"òx/b�¸g/aÌFyºïÚVøhãçÚLíÞå5³DQôEJ¹`»1°kÊãÃ`sÈ]Gíû9ªÐ°»EìIE>EìR0uu%eBnM²IÓß×/fÞuìZµ´]Ñ1à㨿5%9JÈE¿æîhÙÌ (In§U9H6!;¯8Z.G±ÈÁ-'g\$ÀÁî~ Hà �`yZ0@ $ø* Ã@ ¸ë¸0� q!"Úåö~5�+ìÎmÞKãïÊ¥>°0ó²PBÏû56ÜEíúH¨)a, + Qñj]v1FEÉ £HDàÎE³Äiô +´Ål£lQPS²(È^Ñ¢�ÁHÃg32H«.jc- +°óÊéÔyÕÈËIWJ{н=§øÁÀt{NQT&ýΫÄé¸úÈ[É"!;¯8Pß3ÒÈÎ+NAÔ��6 7�WnÏq³ªÉ8iVtDì§¹Sª&"°ójßn.Øv^íQ8(z@rÓ²]èëÜPÈ®¢ Þyª¢=�ªZÙ¹àWc�dÈF½k»[&¢xÿ4 ÚøN§¶Äp%غ©Ñ?¤AYxÝ*ò¯½øññ×_~¥ºþöõ3¿~}þmùõç_zCù?þð»ßÿûå~ýáO¿Û +¯ÿwÿ?ü¥`èÏnéèÿáïýÿúO¿~û¿ûã?þÛÿó¯ÿö_þæ×?ÿë?ýýÿþ»?þý¯ÿõÿýúoÿã¯ÿðÛo¿þö?üÝßþÇ_óóëüÃÿï?þë_ý§_þë_ÿù?ÿþ÷ÿþïÿþó×?ÿÿýüãÿúû¿u{þÓ¿þÏüÿÏÿV¾ûùó_ÿòÛüõÿçwÿç^güÿç»Î +endstream +endobj +323 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 765 0 R +/Name /Im310 +/Width 24 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xM± ÐO09cÃA¨Ä1®$hïJ7 +#PR Ñ·»Ú|P&åg¢òÎÂ(¢ÇÀóB§PtDÊ·Í[òÑÕ/ÚowP7Ù^é +endstream +endobj +324 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 766 0 R +/Name /Im311 +/Width 8 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xsPPààà`?þü(`@@?� +q +endstream +endobj +325 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 767 0 R +/Name /Im312 +/Width 32 +/Height 43 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xu̱0DÑϸ�7pÃuÚ"ãèL¥¨ -^öwQðRç¾ÄÊ+¥JÞ·þØð¾$~µåv¦e¾¬Tþr]jêéH#é+<)N":C +endstream +endobj +326 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 768 0 R +/Name /Im313 +/Width 56 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]ϱ Â0á³\¸# d HY2]ÒQ²'A!eÈÇ;??ÉÅÿtdNdáØif`1nFFèÄÅX�ÒDÌ©!w(À6ì⮤EÕ²Ó«eµ¾´QÏ´$à³gøÒøtjFƵµ¢îu5OomÞÑh¯jÜöÇÉ?ÞX&_2 +endstream +endobj +327 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 769 0 R +/Name /Im314 +/Width 40 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUα !Àµ^²³§§Óö¥\ HNë=Aâö°Â/i`;:´P9kÂHh@\¨¤Mqt'Ð"R¯QäÀì*±9DõÕá) 3q;ã\͵øx´¼ÉJ¨®X`qúþ§Ù?âPÜ +endstream +endobj +328 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 770 0 R +/Name /Im315 +/Width 32 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xK`øÀ𱡹Û*Øôaæ `Ìø0È0P-ó3T pC;°``�Ä*o00?ÀÀ|ÚQ0ÐTüÙh$�n9&ë +endstream +endobj +329 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 771 0 R +/Name /Im316 +/Width 24 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc?À aÁ`ÀÃPÀÆPÀÌð±á1�Ñ$ôÿC C;c cÃ>ì20Ø1��ÂGk +endstream +endobj +330 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 772 0 R +/Name /Im317 +/Width 16 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc0f(døØ�ÀÁ +å +Ù ù�2>Âòø?0|��Yáu +endstream +endobj +331 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 773 0 R +/Name /Im318 +/Width 40 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=ȱ 0�Áãx2è�J ,¦3b!¡îo VuÕ¬àLÑèüK6ëÁKßh4AÜg'âÑØaóFúÁ´PC (@ÌÐC5PAUÃoþG+<c +endstream +endobj +332 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 774 0 R +/Name /Im319 +/Width 24 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÀ0ªa`°a`c`g`ào``o``>ÀÀüñU00�UØUðTÔÿ?�A�au +endstream +endobj +333 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 775 0 R +/Name /Im320 +/Width 24 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃÀþ¿ÿÿyæ6@TÀÀðþÿ?�AT�s {<?ÿö??�]ìú +endstream +endobj +334 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 776 0 R +/Name /Im321 +/Width 16 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÀðüð?Ãÿß|~ðá�ì'q +endstream +endobj +335 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 777 0 R +/Name /Im322 +/Width 24 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃÀþÿ<û;æ5*@èC*`(HÙ0>�*jjdüÃ��3 +endstream +endobj +336 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 778 0 R +/Name /Im323 +/Width 40 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xU̱ ÐÕ9aDz¤t,JKG¸�<bÎHóÊ×;Z�ÆôÃ0LQìýd/Á +y`§Y JÅm`=Ì@|Agaùp¹Ãh*Z¢ú�¼å"ù +endstream +endobj +337 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 779 0 R +/Name /Im324 +/Width 24 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ@ó6rü ü +ì +Ì00~``�¢ + ´HE?PÚýóûÿ�np +endstream +endobj +338 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 780 0 R +/Name /Im325 +/Width 8 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûð ��Ná Ñ +endstream +endobj +339 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 781 0 R +/Name /Im326 +/Width 16 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc~Àþý¿??nøÿ"�� +9 +endstream +endobj +340 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 782 0 R +/Name /Im327 +/Width 32 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``àc``°âÌ?ø00Ø7ÁeøÑæÄ�ÙÇ�2 w +endstream +endobj +341 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 783 0 R +/Name /Im328 +/Width 24 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÇÀþ¿ÿÿyæ6j*è×00Ø0g>Àÿÿ�P#ã?�Ù[ +endstream +endobj +342 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 784 0 R +/Name /Im329 +/Width 24 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xco``'ýÿE¸0ÑÆÿ@¥ ö �ª»Ó +endstream +endobj +343 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 785 0 R +/Name /Im330 +/Width 24 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÀÞðhôþð7ügøþáó??>0 �aº- +endstream +endobj +344 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 786 0 R +/Name /Im331 +/Width 8 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«¨À à��b) +endstream +endobj +345 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 787 0 R +/Name /Im332 +/Width 24 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x%¡ À0EÁ'|è²H%w¬ +,» §ÓÆ.ÒX[ÁiA£b&þáðÂs.ÃYhóÆÏ' +endstream +endobj +346 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 788 0 R +/Name /Im333 +/Width 24 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xoo¨ÞPÿ¿á}Ãþì$#�u !( +endstream +endobj +347 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 789 0 R +/Name /Im334 +/Width 24 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÀÞðhôþð7ügøþáó??�I!o +endstream +endobj +348 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 790 0 R +/Name /Im335 +/Width 40 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=α Ä á?¢ d²HtsQD +£1 +#PRDç<.4e=É~f7Y%¶Ô-Át +[çt>}ÿ¥âp +\ÖáØÐfª"¶½I¾ðUA¬?öªn_/8y�½ë, +endstream +endobj +349 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 791 0 R +/Name /Im336 +/Width 32 +/Height 3 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿ¿ÿP�M¯ò +endstream +endobj +350 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 792 0 R +/Name /Im337 +/Width 40 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmα Â0 áß\ahb&À2"%c¤@âFó(2¹R¤4tO:½Ç[!|ÄÖCÒn<@&§°ÀõÇÎðì×'![+iCíQqB3ì9z»ÅKµm÷ê+G´¬Ê +endstream +endobj +351 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 793 0 R +/Name /Im338 +/Width 24 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x?|Àþ÷úÿjø|`F æöÌäÿ`þý�3)00`o°áo°ÿÏ ÿù�F +endstream +endobj +352 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 794 0 R +/Name /Im339 +/Width 32 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÀ|ÿøó0þÃþAþÿ»ïÿçÿûüÿÏ?Ì�û[+· +endstream +endobj +353 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 795 0 R +/Name /Im340 +/Width 24 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûøáûÿÿþÈ3ü`oøÀ~à3=øÀ ¤�ýoøÿáó??>0 �õº2é +endstream +endobj +354 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 796 0 R +/Name /Im341 +/Width 24 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÀÀð7úøáûÿÿþÈ3üàoøÀ~à3=øÀ@)ö?ØþÉ7üÿÏðùÃ�0' +endstream +endobj +355 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 797 0 R +/Name /Im342 +/Width 40 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿá?`?�$Q ÆÃ,D¨ÿÔXÁµa¨r L4�9ì`â�Á²�±7�Õ±7ÈÝöÿøÁ��=#P +endstream +endobj +356 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 798 0 R +/Name /Im343 +/Width 24 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc~øÿçù¿ìùØ0?¨�"ư¡ ©F2yöòÿ°ÿ}Àüñ#Q�õ/8 +endstream +endobj +357 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 799 0 R +/Name /Im344 +/Width 24 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÈ¡ À ÐO*§k¸5*¬U`4Faä Â/iM§#<rdgÅÂçF*ShÊ®¬¸^§AP©Á×x´¿=û Ës9KÀ&? +endstream +endobj +358 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 800 0 R +/Name /Im345 +/Width 24 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«c`¨¢äÀPUÑ;@t¨½øÙøäÈã0ª`ø�D?*>0T��&k +endstream +endobj +359 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 801 0 R +/Name /Im346 +/Width 8 +/Height 10 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x{`` Q�Âù +endstream +endobj +360 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 802 0 R +/Name /Im347 +/Width 32 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÿ¿0P70`DÆ!Ðù�'0`«`> Wÿÿÿ?�_§'Ù +endstream +endobj +361 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 803 0 R +/Name /Im348 +/Width 16 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿç?ò þC�¡!% +endstream +endobj +362 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 804 0 R +/Name /Im349 +/Width 48 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x%αÂ0 áÂÐ`ÀÀqFavIÁP2¥]ÌÒ|§SóþVÑ6dwX:#àH¯�F$zthEYLQóé>ªysÏ?spûÝÕ?»b¿Ã×}ñãÌÔ»9=éÂ<@g´âÂ*µèÔJV*Yÿp*° +endstream +endobj +363 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 805 0 R +/Name /Im350 +/Width 16 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÀc`!c!SÀø±A û�ÂÊ\ +endstream +endobj +364 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 806 0 R +/Name /Im351 +/Width 8 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûð��¶ô#¡ +endstream +endobj +365 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 807 0 R +/Name /Im352 +/Width 24 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xco``§ýÿE¸0ÑÆÿ@¥ ö �Xîh +endstream +endobj +366 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 808 0 R +/Name /Im353 +/Width 24 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=ʱ � �Á!£d1AGs¤Å&påI`#%¢GòßE Q]ñ%<w£þ +endstream +endobj +367 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 809 0 R +/Name /Im354 +/Width 24 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x?|Àþóúÿ~ÈøÀFÌd"�/+a +endstream +endobj +368 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 810 0 R +/Name /Im355 +/Width 24 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÀ|àèýa?ð¿áûÏÿ>üa��[6+9 +endstream +endobj +369 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 811 0 R +/Name /Im356 +/Width 16 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã`` óAîßþ~~~>9ö62r`¨ #�Ca +endstream +endobj +370 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 812 0 R +/Name /Im357 +/Width 24 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x?|Àþ÷úÿjäü`?ð~0¨a>`ß|@þÿöÿ9°7$°7Ôð3ÔÿcÿÃÀþ�°K! +endstream +endobj +371 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 813 0 R +/Name /Im358 +/Width 24 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþßÀ`Áþÿ?pÀÁÁAÁÁÀAÀÃ,ÁaCÙ �¬} +endstream +endobj +372 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 814 0 R +/Name /Im359 +/Width 24 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüQÁü¯ÿ |ó;Æ6?** è6ªa¨°a¨cøÔÅÿÿóÿ +?D!�$k&b +endstream +endobj +373 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 815 0 R +/Name /Im360 +/Width 24 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]ȱ 0ÐX¤ÌÞÁ[ëQ2BÊ!_Q°^õ,ÊfÒ3²#5¬ÇîÆ¡ìÆj<7ÀGM¡ñLK¹¹Ô÷5¶HIéz$.b +endstream +endobj +374 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 816 0 R +/Name /Im361 +/Width 40 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÀøùÀ*??@??óöÿì÷ø¾ÿïÿÏðù?û?ÿÿ0��ÃB< +endstream +endobj +375 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 817 0 R +/Name /Im362 +/Width 24 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÀÀð/úøáû?ÿÿþñ7ü`?ðñÁÆ ¨K1~�ªüÃüàÿÿÿ>ÿgøð�86M +endstream +endobj +376 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 818 0 R +/Name /Im363 +/Width 16 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc~Àc!!cÁWÀWÀ_Àÿù~ðýùbñùACC 3Ã�·Ý\ +endstream +endobj +377 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 819 0 R +/Name /Im364 +/Width 24 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcl``>1"!J�#0bap`b¨ÿA �ºÏ[ +endstream +endobj +378 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 820 0 R +/Name /Im365 +/Width 40 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUα À DQ£+(Y']VÊñhÂ�éÀY¦yÅ¿æH²ÒA»M#9ò9ÏtqE² +z«íTàd£¯ÚÉÀ�ïÃWÜ +endstream +endobj +379 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 821 0 R +/Name /Im366 +/Width 32 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5ʱ �!DÑ/vpÛb[F²¥Y%ÞwÁã30wȹ ±û.êFQfÚ mÈdB4aX»mk±ÝÌ©°n=øíô.Ù¿Ï(ª +endstream +endobj +380 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 822 0 R +/Name /Im367 +/Width 32 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿá?ó `à¿ÿÿ|ÿþüØð`²@0ã¦ùX?üÿG¾á?ÐÜÿ0��ï<6 +endstream +endobj +381 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 823 0 R +/Name /Im368 +/Width 16 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xa¨gøß�õ2¨@C�¿5c +endstream +endobj +382 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 824 0 R +/Name /Im369 +/Width 16 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã? P ã ÷ïÿþ~äcà° Àòä?Èÿà�D + +endstream +endobj +383 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 449 0 R >> /XObject << /Im58 65 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im80 87 0 R /Im64 71 0 R /Im57 64 0 R /Im76 83 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im69 76 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im193 200 0 R /Im194 201 0 R /Im195 202 0 R /Im195 202 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im197 204 0 R /Im198 205 0 R /Im199 206 0 R /Im200 207 0 R /Im197 204 0 R /Im194 201 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im192 199 0 R /Im115 122 0 R /Im74 81 0 R /Im53 60 0 R /Im56 63 0 R /Im114 121 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im69 76 0 R /Im115 122 0 R /Im53 60 0 R /Im56 63 0 R /Im60 67 0 R /Im61 68 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im114 121 0 R /Im64 71 0 R /Im74 81 0 R /Im79 86 0 R /Im64 71 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im67 74 0 R /Im69 76 0 R /Im56 63 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im73 80 0 R /Im86 93 0 R /Im184 191 0 R /Im60 67 0 R /Im56 63 0 R /Im66 73 0 R /Im60 67 0 R /Im54 61 0 R /Im55 62 0 R /Im56 63 0 R /Im64 71 0 R /Im74 81 0 R /Im60 67 0 R /Im59 66 0 R /Im71 78 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im69 76 0 R /Im115 122 0 R /Im53 60 0 R /Im56 63 0 R /Im60 67 0 R /Im61 68 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im114 121 0 R /Im64 71 0 R /Im74 81 0 R /Im64 71 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im115 122 0 R /Im73 80 0 R /Im59 66 0 R /Im60 67 0 R /Im56 63 0 R /Im55 62 0 R /Im63 70 0 R /Im55 62 0 R /Im63 70 0 R /Im54 61 0 R /Im76 83 0 R /Im55 62 0 R /Im79 86 0 R /Im115 122 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im64 71 0 R /Im74 81 0 R /Im55 62 0 R /Im63 70 0 R /Im74 81 0 R /Im60 67 0 R /Im60 67 0 R /Im115 122 0 R /Im74 81 0 R /Im53 60 0 R /Im56 63 0 R /Im114 121 0 R /Im53 60 0 R /Im67 74 0 R /Im86 93 0 R /Im184 191 0 R /Im60 67 0 R /Im56 63 0 R /Im60 67 0 R /Im69 76 0 R /Im56 63 0 R /Im53 60 0 R /Im119 126 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im71 78 0 R /Im80 87 0 R /Im53 60 0 R /Im74 81 0 R /Im53 60 0 R /Im57 64 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im67 74 0 R /Im53 60 0 R /Im54 61 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im61 68 0 R /Im63 70 0 R /Im60 67 0 R /Im60 67 0 R /Im78 85 0 R /Im55 62 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im67 74 0 R /Im116 123 0 R /Im114 121 0 R /Im53 60 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im53 60 0 R /Im54 61 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im67 74 0 R /Im57 64 0 R /Im80 87 0 R /Im60 67 0 R /Im76 83 0 R /Im53 60 0 R /Im69 76 0 R /Im56 63 0 R /Im64 71 0 R /Im74 81 0 R /Im57 64 0 R /Im64 71 0 R /Im66 73 0 R /Im61 68 0 R /Im69 76 0 R /Im59 66 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im74 81 0 R /Im71 78 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im74 81 0 R /Im71 78 0 R /Im57 64 0 R /Im80 87 0 R /Im60 67 0 R /Im67 74 0 R /Im64 71 0 R /Im61 68 0 R /Im79 86 0 R /Im61 68 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im53 60 0 R /Im119 126 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im74 81 0 R /Im80 87 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im86 93 0 R /Im184 191 0 R /Im60 67 0 R /Im56 63 0 R /Im55 62 0 R /Im67 74 0 R /Im55 62 0 R /Im54 61 0 R /Im57 64 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im60 67 0 R /Im61 68 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im74 81 0 R /Im130 137 0 R /Im70 77 0 R /Im57 64 0 R /Im53 60 0 R /Im54 61 0 R /Im81 88 0 R /Im55 62 0 R /Im115 122 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im132 139 0 R /Im71 78 0 R /Im80 87 0 R /Im53 60 0 R /Im55 62 0 R /Im54 61 0 R /Im54 61 0 R /Im63 70 0 R /Im64 71 0 R /Im53 60 0 R /Im67 74 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im69 76 0 R /Im56 63 0 R /Im53 60 0 R /Im60 67 0 R /Im59 66 0 R /Im63 70 0 R /Im73 80 0 R /Im57 64 0 R /Im60 67 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im116 123 0 R /Im56 63 0 R /Im74 81 0 R /Im57 64 0 R /Im63 70 0 R /Im53 60 0 R /Im114 121 0 R /Im53 60 0 R /Im63 70 0 R /Im60 67 0 R /Im61 68 0 R /Im56 63 0 R /Im53 60 0 R /Im66 73 0 R /Im69 76 0 R /Im56 63 0 R /Im74 81 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im54 61 0 R /Im76 83 0 R /Im55 62 0 R /Im79 86 0 R /Im115 122 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im69 76 0 R /Im56 63 0 R /Im53 60 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im63 70 0 R /Im53 60 0 R /Im57 64 0 R /Im57 64 0 R /Im80 87 0 R /Im60 67 0 R /Im66 73 0 R /Im60 67 0 R /Im54 61 0 R /Im69 76 0 R /Im57 64 0 R /Im53 60 0 R /Im56 63 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im73 80 0 R /Im79 86 0 R /Im53 60 0 R /Im56 63 0 R /Im74 81 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im73 80 0 R /Im84 91 0 R /Im188 195 0 R /Im80 87 0 R /Im76 83 0 R /Im60 67 0 R /Im63 70 0 R /Im53 60 0 R /Im65 72 0 R /Im55 62 0 R /Im53 60 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im60 67 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im63 70 0 R /Im63 70 0 R /Im60 67 0 R /Im61 68 0 R /Im56 63 0 R /Im60 67 0 R /Im56 63 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im60 67 0 R /Im63 70 0 R /Im73 80 0 R /Im65 72 0 R /Im53 60 0 R /Im59 66 0 R /Im79 86 0 R /Im53 60 0 R /Im56 63 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im64 71 0 R /Im59 66 0 R /Im64 71 0 R /Im57 64 0 R /Im64 71 0 R /Im55 62 0 R /Im63 70 0 R /Im115 122 0 R /Im60 67 0 R /Im55 62 0 R /Im56 63 0 R /Im67 74 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im116 123 0 R /Im65 72 0 R /Im69 76 0 R /Im56 63 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im74 81 0 R /Im80 87 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im56 63 0 R /Im53 60 0 R /Im53 60 0 R /Im115 122 0 R /Im63 70 0 R /Im55 62 0 R /Im66 73 0 R /Im78 85 0 R /Im54 61 0 R /Im64 71 0 R /Im53 60 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im57 64 0 R /Im80 87 0 R /Im60 67 0 R /Im80 87 0 R /Im76 83 0 R /Im64 71 0 R /Im57 64 0 R /Im53 60 0 R /Im54 61 0 R /Im64 71 0 R /Im53 60 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im55 62 0 R /Im57 64 0 R /Im56 63 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im60 67 0 R /Im86 93 0 R /Im233 242 0 R /Im54 61 0 R /Im55 62 0 R /Im56 63 0 R /Im57 64 0 R /Im60 67 0 R /Im61 68 0 R /Im115 122 0 R /Im55 62 0 R /Im66 73 0 R /Im78 85 0 R /Im65 72 0 R /Im56 63 0 R /Im60 67 0 R /Im69 76 0 R /Im59 66 0 R /Im67 74 0 R /Im78 85 0 R /Im59 66 0 R /Im60 67 0 R /Im80 87 0 R /Im63 70 0 R /Im53 60 0 R /Im67 74 0 R /Im65 72 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im57 64 0 R /Im80 87 0 R /Im53 60 0 R /Im69 76 0 R /Im74 81 0 R /Im53 60 0 R /Im67 74 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im64 71 0 R /Im59 66 0 R /Im79 86 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im64 71 0 R /Im74 81 0 R /Im74 81 0 R /Im76 83 0 R /Im60 67 0 R /Im80 87 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im75 82 0 R /Im55 62 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im205 212 0 R /Im86 93 0 R /Im117 124 0 R /Im56 63 0 R /Im53 60 0 R /Im67 74 0 R /Im64 71 0 R /Im66 73 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im74 81 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im63 70 0 R /Im74 81 0 R /Im64 71 0 R /Im79 86 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im53 60 0 R /Im67 74 0 R /Im64 71 0 R /Im66 73 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im74 81 0 R /Im71 78 0 R /Im57 64 0 R /Im56 63 0 R /Im69 76 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im61 68 0 R /Im80 87 0 R /Im76 83 0 R /Im64 71 0 R /Im66 73 0 R /Im76 83 0 R /Im64 71 0 R /Im74 81 0 R /Im66 73 0 R /Im55 62 0 R /Im63 70 0 R /Im66 73 0 R /Im69 76 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im53 60 0 R /Im55 62 0 R /Im74 81 0 R /Im64 71 0 R /Im63 70 0 R /Im73 80 0 R /Im86 93 0 R /Im62 69 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im71 78 0 R /Im74 81 0 R /Im73 80 0 R /Im115 122 0 R /Im60 67 0 R /Im63 70 0 R /Im74 81 0 R /Im370 385 0 R /Im71 78 0 R /Im371 386 0 R /Im71 78 0 R /Im372 387 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im373 388 0 R /Im67 74 0 R /Im53 60 0 R /Im59 66 0 R /Im60 67 0 R /Im57 64 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im53 60 0 R /Im67 74 0 R /Im64 71 0 R /Im66 73 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im71 78 0 R /Im74 81 0 R /Im55 62 0 R /Im56 63 0 R /Im65 72 0 R /Im69 76 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im74 81 0 R /Im80 87 0 R /Im64 71 0 R /Im57 64 0 R /Im76 83 0 R /Im57 64 0 R /Im73 80 0 R /Im54 61 0 R /Im53 60 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im57 64 0 R /Im53 60 0 R /Im65 72 0 R /Im53 60 0 R /Im56 63 0 R /Im74 81 0 R /Im71 78 0 R /Im115 122 0 R /Im60 67 0 R /Im55 62 0 R /Im56 63 0 R /Im67 74 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im116 123 0 R /Im65 72 0 R /Im69 76 0 R /Im56 63 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im74 81 0 R /Im71 78 0 R /Im66 73 0 R /Im60 67 0 R /Im63 70 0 R /Im60 67 0 R /Im56 63 0 R /Im74 81 0 R /Im130 137 0 R /Im80 87 0 R /Im76 83 0 R /Im64 71 0 R /Im57 64 0 R /Im53 60 0 R /Im60 67 0 R /Im56 63 0 R /Im115 122 0 R /Im63 70 0 R /Im55 62 0 R /Im66 73 0 R /Im78 85 0 R /Im132 139 0 R /Im71 78 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im74 81 0 R /Im130 137 0 R /Im60 67 0 R /Im56 63 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im57 64 0 R /Im60 67 0 R /Im115 122 0 R /Im53 60 0 R /Im54 61 0 R /Im69 76 0 R /Im57 64 0 R /Im55 62 0 R /Im54 61 0 R /Im64 71 0 R /Im53 60 0 R /Im66 73 0 R /Im53 60 0 R /Im132 139 0 R /Im71 78 0 R /Im56 63 0 R /Im53 60 0 R /Im74 81 0 R /Im54 61 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im63 70 0 R /Im73 80 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im69 76 0 R /Im74 81 0 R /Im53 60 0 R /Im67 74 0 R /Im55 62 0 R /Im59 66 0 R /Im62 69 0 R /Im131 138 0 R /Im117 124 0 R /Im55 62 0 R /Im63 70 0 R /Im65 72 0 R /Im60 67 0 R /Im56 63 0 R /Im64 71 0 R /Im57 64 0 R /Im76 83 0 R /Im184 191 0 R /Im192 199 0 R /Im62 69 0 R /Im131 138 0 R /Im79 86 0 R /Im62 69 0 R /Im133 140 0 R /Im62 69 0 R /Im59 66 0 R /Im69 76 0 R /Im186 193 0 R /Im69 76 0 R /Im78 85 0 R /Im55 62 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im63 70 0 R /Im86 93 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im82 89 0 R /Im71 78 0 R /Im62 69 0 R /Im59 66 0 R /Im69 76 0 R /Im186 193 0 R /Im69 76 0 R /Im78 85 0 R /Im55 62 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im63 70 0 R /Im86 93 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im189 196 0 R /Im115 122 0 R /Im139 146 0 R /Im71 78 0 R /Im80 87 0 R /Im76 83 0 R /Im64 71 0 R /Im66 73 0 R /Im76 83 0 R /Im64 71 0 R /Im74 81 0 R /Im55 62 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im114 121 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im60 67 0 R /Im61 68 0 R /Im60 67 0 R /Im59 66 0 R /Im53 60 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im69 76 0 R /Im66 73 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im61 68 0 R /Im69 76 0 R /Im63 70 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im63 70 0 R /Im64 71 0 R /Im53 60 0 R /Im56 63 0 R /Im57 64 0 R /Im60 67 0 R /Im54 61 0 R /Im79 86 0 R /Im67 74 0 R /Im60 67 0 R /Im80 87 0 R /Im59 66 0 R /Im62 69 0 R /Im131 138 0 R /Im117 124 0 R /Im74 81 0 R /Im73 80 0 R /Im74 81 0 R /Im57 64 0 R /Im53 60 0 R /Im184 191 0 R /Im192 199 0 R /Im62 69 0 R /Im131 138 0 R /Im133 140 0 R /Im187 194 0 R /Im69 76 0 R /Im64 71 0 R /Im59 66 0 R /Im63 70 0 R /Im55 62 0 R /Im59 66 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im188 195 0 R /Im71 78 0 R /Im187 194 0 R /Im69 76 0 R /Im64 71 0 R /Im59 66 0 R /Im63 70 0 R /Im55 62 0 R /Im59 66 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im205 212 0 R /Im139 146 0 R /Im86 93 0 R /Im184 191 0 R /Im192 199 0 R /Im62 69 0 R /Im131 138 0 R /Im79 86 0 R /Im62 69 0 R /Im66 73 0 R /Im55 62 0 R /Im59 66 0 R /Im69 76 0 R /Im74 81 0 R /Im53 60 0 R /Im64 71 0 R /Im59 66 0 R /Im57 64 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im63 70 0 R /Im67 74 0 R /Im53 60 0 R /Im116 123 0 R /Im59 66 0 R /Im64 71 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im60 67 0 R /Im61 68 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im74 81 0 R /Im55 62 0 R /Im74 81 0 R /Im115 122 0 R /Im55 62 0 R /Im66 73 0 R /Im78 85 0 R /Im65 72 0 R /Im56 63 0 R /Im60 67 0 R /Im69 76 0 R /Im59 66 0 R /Im67 74 0 R /Im78 85 0 R /Im59 66 0 R /Im60 67 0 R /Im80 87 0 R /Im63 70 0 R /Im53 60 0 R /Im67 74 0 R /Im65 72 0 R /Im53 60 0 R /Im71 78 0 R /Im60 67 0 R /Im56 63 0 R /Im55 62 0 R /Im59 66 0 R /Im73 80 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im74 81 0 R /Im80 87 0 R /Im64 71 0 R /Im57 64 0 R /Im76 83 0 R /Im57 64 0 R /Im73 80 0 R /Im54 61 0 R /Im53 60 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im64 71 0 R /Im59 66 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im75 82 0 R /Im55 62 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im81 88 0 R /Im74 81 0 R /Im76 83 0 R /Im60 67 0 R /Im80 87 0 R /Im74 81 0 R /Im57 64 0 R /Im80 87 0 R /Im60 67 0 R /Im53 60 0 R /Im119 126 0 R /Im55 62 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im66 73 0 R /Im63 70 0 R /Im55 62 0 R /Im69 76 0 R /Im74 81 0 R /Im53 60 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im55 62 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im60 67 0 R /Im61 68 0 R /Im193 200 0 R /Im194 201 0 R /Im195 202 0 R /Im195 202 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im197 204 0 R /Im198 205 0 R /Im199 206 0 R /Im200 207 0 R /Im197 204 0 R /Im194 201 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im75 82 0 R /Im76 83 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im66 73 0 R /Im60 67 0 R /Im79 86 0 R /Im54 61 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im74 81 0 R /Im57 64 0 R /Im80 87 0 R /Im60 67 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im74 81 0 R /Im130 137 0 R /Im60 67 0 R /Im56 63 0 R /Im54 61 0 R /Im63 70 0 R /Im55 62 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im57 64 0 R /Im60 67 0 R /Im115 122 0 R /Im53 60 0 R /Im54 61 0 R /Im69 76 0 R /Im57 64 0 R /Im132 139 0 R /Im80 87 0 R /Im64 71 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im115 122 0 R /Im60 67 0 R /Im55 62 0 R /Im56 63 0 R /Im67 74 0 R /Im54 61 0 R /Im55 62 0 R /Im56 63 0 R /Im55 62 0 R /Im53 60 0 R /Im57 64 0 R /Im53 60 0 R /Im56 63 0 R /Im86 93 0 R /Im184 191 0 R /Im64 71 0 R /Im65 72 0 R /Im69 76 0 R /Im56 63 0 R /Im53 60 0 R /Im135 142 0 R /Im74 81 0 R /Im69 76 0 R /Im55 62 0 R /Im56 63 0 R /Im64 71 0 R /Im186 193 0 R /Im53 60 0 R /Im74 81 0 R /Im56 63 0 R /Im53 60 0 R /Im74 81 0 R /Im69 76 0 R /Im63 70 0 R /Im57 64 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im53 60 0 R /Im119 126 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im74 81 0 R /Im86 93 0 R /Im75 82 0 R /Im80 87 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im54 61 0 R /Im76 83 0 R /Im74 81 0 R /Im66 73 0 R /Im60 67 0 R /Im56 63 0 R /Im56 63 0 R /Im53 60 0 R /Im74 81 0 R /Im54 61 0 R /Im60 67 0 R /Im59 66 0 R /Im67 74 0 R /Im57 64 0 R /Im60 67 0 R /Im57 64 0 R /Im80 87 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im59 66 0 R /Im76 83 0 R /Im53 60 0 R /Im69 76 0 R /Im56 63 0 R /Im64 71 0 R /Im74 81 0 R /Im57 64 0 R /Im64 71 0 R /Im66 73 0 R /Im61 68 0 R /Im69 76 0 R /Im59 66 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im74 81 0 R /Im86 93 0 R /Im233 242 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im54 61 0 R /Im76 83 0 R /Im54 61 0 R /Im63 70 0 R /Im60 67 0 R /Im57 64 0 R /Im74 81 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im69 76 0 R /Im115 122 0 R /Im53 60 0 R /Im56 63 0 R /Im60 67 0 R /Im61 68 0 R /Im65 72 0 R /Im55 62 0 R /Im53 60 0 R /Im74 81 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im67 74 0 R /Im53 60 0 R /Im55 62 0 R /Im66 73 0 R /Im76 83 0 R /Im56 63 0 R /Im53 60 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im79 86 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im66 73 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im55 62 0 R /Im65 72 0 R /Im53 60 0 R /Im71 78 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im66 73 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im55 62 0 R /Im65 72 0 R /Im53 60 0 R /Im80 87 0 R /Im76 83 0 R /Im64 71 0 R /Im66 73 0 R /Im76 83 0 R /Im64 71 0 R /Im74 81 0 R /Im55 62 0 R /Im56 63 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im69 76 0 R /Im115 122 0 R /Im53 60 0 R /Im56 63 0 R /Im60 67 0 R /Im61 68 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im114 121 0 R /Im64 71 0 R /Im74 81 0 R /Im64 71 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im67 74 0 R /Im69 76 0 R /Im56 63 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im65 72 0 R /Im55 62 0 R /Im53 60 0 R /Im80 87 0 R /Im64 71 0 R /Im57 64 0 R /Im76 83 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im54 61 0 R /Im60 67 0 R /Im74 81 0 R /Im53 60 0 R /Im67 74 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im55 62 0 R /Im65 72 0 R /Im55 62 0 R /Im64 71 0 R /Im59 66 0 R /Im74 81 0 R /Im57 64 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im60 67 0 R /Im56 63 0 R /Im55 62 0 R /Im63 70 0 R /Im55 62 0 R /Im63 70 0 R /Im54 61 0 R /Im76 83 0 R /Im55 62 0 R /Im79 86 0 R /Im115 122 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im86 93 0 R /Im75 82 0 R /Im76 83 0 R /Im53 60 0 R /Im57 64 0 R /Im60 67 0 R /Im57 64 0 R /Im55 62 0 R /Im63 70 0 R /Im59 66 0 R /Im69 76 0 R /Im115 122 0 R /Im53 60 0 R /Im56 63 0 R /Im60 67 0 R /Im61 68 0 R /Im65 72 0 R /Im55 62 0 R /Im53 60 0 R /Im74 81 0 R /Im64 71 0 R /Im74 81 0 R /Im84 91 0 R /Im188 195 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im53 60 0 R /Im55 62 0 R /Im66 73 0 R /Im76 83 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im54 61 0 R /Im76 83 0 R /Im86 93 0 R /Im285 296 0 R /Im135 142 0 R /Im188 195 0 R /Im374 389 0 R /Im60 67 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im253 262 0 R /Im79 86 0 R /Im55 62 0 R /Im119 126 0 R /Im64 71 0 R /Im74 81 0 R /Im53 60 0 R /Im55 62 0 R /Im59 66 0 R /Im74 81 0 R /Im135 142 0 R /Im188 195 0 R /Im374 389 0 R /Im56 63 0 R /Im53 60 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im114 121 0 R /Im64 71 0 R /Im74 81 0 R /Im64 71 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im71 78 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im375 390 0 R /Im135 142 0 R /Im188 195 0 R /Im374 389 0 R /Im53 60 0 R /Im55 62 0 R /Im59 66 0 R /Im74 81 0 R /Im135 142 0 R /Im188 195 0 R /Im374 389 0 R /Im64 71 0 R /Im59 66 0 R /Im66 73 0 R /Im56 63 0 R /Im53 60 0 R /Im55 62 0 R /Im74 81 0 R /Im53 60 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im60 67 0 R /Im115 122 0 R /Im79 86 0 R /Im74 81 0 R /Im53 60 0 R /Im56 63 0 R /Im114 121 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im55 62 0 R /Im57 64 0 R /Im55 62 0 R /Im54 61 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im119 126 0 R /Im64 71 0 R /Im55 62 0 R /Im57 64 0 R /Im53 60 0 R /Im63 70 0 R /Im73 80 0 R /Im83 90 0 R /Im188 195 0 R /Im374 389 0 R /Im60 67 0 R /Im61 68 0 R /Im65 72 0 R /Im55 62 0 R /Im53 60 0 R /Im74 81 0 R /Im76 83 0 R /Im55 62 0 R /Im67 74 0 R /Im56 63 0 R /Im53 60 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im60 67 0 R /Im61 68 0 R /Im114 121 0 R /Im64 71 0 R /Im74 81 0 R /Im64 71 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im115 122 0 R /Im73 80 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im86 93 0 R /Im75 82 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im114 121 0 R /Im53 60 0 R /Im56 63 0 R /Im55 62 0 R /Im65 72 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im66 73 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im55 62 0 R /Im65 72 0 R /Im53 60 0 R /Im74 81 0 R /Im80 87 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im285 296 0 R /Im81 88 0 R /Im86 93 0 R /Im188 195 0 R /Im376 391 0 R /Im84 91 0 R /Im86 93 0 R /Im84 91 0 R /Im374 389 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im285 296 0 R /Im81 88 0 R /Im86 93 0 R /Im188 195 0 R /Im376 391 0 R /Im136 143 0 R /Im86 93 0 R /Im81 88 0 R /Im374 389 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im57 64 0 R /Im80 87 0 R /Im60 67 0 R /Im76 83 0 R /Im53 60 0 R /Im69 76 0 R /Im56 63 0 R /Im64 71 0 R /Im74 81 0 R /Im57 64 0 R /Im64 71 0 R /Im66 73 0 R /Im61 68 0 R /Im69 76 0 R /Im59 66 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im74 81 0 R /Im86 93 0 R /Im377 392 0 R /Im129 136 0 R /Im126 133 0 R /Im123 130 0 R /Im129 136 0 R /Im228 237 0 R /Im128 135 0 R /Im314 327 0 R /Im122 129 0 R /Im126 133 0 R /Im123 130 0 R /Im314 327 0 R /Im120 127 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im54 61 0 R /Im60 67 0 R /Im74 81 0 R /Im53 60 0 R /Im67 74 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im64 71 0 R /Im59 66 0 R /Im74 81 0 R /Im54 61 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im55 62 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im57 64 0 R /Im60 67 0 R /Im69 76 0 R /Im74 81 0 R /Im53 60 0 R /Im55 62 0 R /Im59 66 0 R /Im62 69 0 R /Im131 138 0 R /Im117 124 0 R /Im57 64 0 R /Im53 60 0 R /Im66 73 0 R /Im76 83 0 R /Im59 66 0 R /Im64 71 0 R /Im234 243 0 R /Im69 76 0 R /Im53 60 0 R /Im57 64 0 R /Im60 67 0 R /Im63 70 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im59 66 0 R /Im56 63 0 R /Im69 76 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im57 64 0 R /Im60 67 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im57 64 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im53 60 0 R /Im119 126 0 R /Im54 61 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im53 60 0 R /Im67 74 0 R /Im64 71 0 R /Im59 66 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im54 61 0 R /Im76 83 0 R /Im55 62 0 R /Im79 86 0 R /Im115 122 0 R /Im53 60 0 R /Im57 64 0 R /Im55 62 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im64 71 0 R /Im59 66 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im57 64 0 R /Im60 67 0 R /Im76 83 0 R /Im55 62 0 R /Im114 121 0 R /Im53 60 0 R /Im53 60 0 R /Im118 125 0 R /Im53 60 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im69 76 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im86 93 0 R /Im62 69 0 R /Im59 66 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im57 64 0 R /Im60 67 0 R /Im56 63 0 R /Im53 60 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im64 71 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im64 71 0 R /Im59 66 0 R /Im57 64 0 R /Im60 67 0 R /Im55 62 0 R /Im66 73 0 R /Im63 70 0 R /Im55 62 0 R /Im74 81 0 R /Im74 81 0 R /Im64 71 0 R /Im116 123 0 R /Im66 73 0 R /Im55 62 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im71 78 0 R /Im80 87 0 R /Im53 60 0 R /Im69 76 0 R /Im74 81 0 R /Im53 60 0 R /Im67 74 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im193 200 0 R /Im194 201 0 R /Im195 202 0 R /Im195 202 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im197 204 0 R /Im198 205 0 R /Im199 206 0 R /Im200 207 0 R /Im197 204 0 R /Im194 201 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im79 86 0 R /Im233 242 0 R /Im114 121 0 R /Im53 60 0 R /Im56 63 0 R /Im55 62 0 R /Im65 72 0 R /Im53 60 0 R /Im285 296 0 R /Im81 88 0 R /Im86 93 0 R /Im188 195 0 R /Im376 391 0 R /Im84 91 0 R /Im86 93 0 R /Im84 91 0 R /Im374 389 0 R /Im130 137 0 R /Im55 62 0 R /Im132 139 0 R /Im378 393 0 R /Im119 126 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im74 81 0 R /Im80 87 0 R /Im64 71 0 R /Im57 64 0 R /Im76 83 0 R /Im271 282 0 R /Im53 60 0 R /Im69 76 0 R /Im56 63 0 R /Im64 71 0 R /Im74 81 0 R /Im57 64 0 R /Im64 71 0 R /Im66 73 0 R /Im184 191 0 R /Im69 76 0 R /Im59 66 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im135 142 0 R /Im86 93 0 R /Im233 242 0 R /Im114 121 0 R /Im53 60 0 R /Im56 63 0 R /Im55 62 0 R /Im65 72 0 R /Im53 60 0 R /Im285 296 0 R /Im81 88 0 R /Im86 93 0 R /Im188 195 0 R /Im376 391 0 R /Im136 143 0 R /Im86 93 0 R /Im81 88 0 R /Im374 389 0 R /Im130 137 0 R /Im115 122 0 R /Im132 139 0 R /Im378 393 0 R /Im119 126 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im74 81 0 R /Im80 87 0 R /Im64 71 0 R /Im57 64 0 R /Im76 83 0 R /Im271 282 0 R /Im53 60 0 R /Im69 76 0 R /Im56 63 0 R /Im64 71 0 R /Im74 81 0 R /Im57 64 0 R /Im64 71 0 R /Im66 73 0 R /Im184 191 0 R /Im69 76 0 R /Im59 66 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im138 145 0 R /Im86 93 0 R /Im184 191 0 R /Im64 71 0 R /Im65 72 0 R /Im69 76 0 R /Im56 63 0 R /Im53 60 0 R /Im135 142 0 R /Im206 215 0 R /Im134 141 0 R /Im53 60 0 R /Im74 81 0 R /Im69 76 0 R /Im63 70 0 R /Im57 64 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im378 393 0 R /Im119 126 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im74 81 0 R /Im86 93 0 R /Im77 84 0 R /Im56 63 0 R /Im55 62 0 R /Im54 61 0 R /Im76 83 0 R /Im74 81 0 R /Im74 81 0 R /Im76 83 0 R /Im60 67 0 R /Im80 87 0 R /Im76 83 0 R /Im64 71 0 R /Im74 81 0 R /Im57 64 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im56 63 0 R /Im53 60 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im66 73 0 R /Im53 60 0 R /Im59 66 0 R /Im57 64 0 R /Im55 62 0 R /Im65 72 0 R /Im53 60 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im114 121 0 R /Im64 71 0 R /Im74 81 0 R /Im64 71 0 R /Im57 64 0 R /Im53 60 0 R /Im67 74 0 R /Im59 66 0 R /Im60 67 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im115 122 0 R /Im73 80 0 R /Im57 64 0 R /Im76 83 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im54 61 0 R /Im60 67 0 R /Im74 81 0 R /Im53 60 0 R /Im67 74 0 R /Im53 60 0 R /Im57 64 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im86 93 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 384 0 R +>> +endobj +384 0 obj +<< +/Length 825 0 R +/Filter /FlateDecode +>> +stream +x¥}]Ï6¹mÞùþç¤@ràÛ£frX¤)zТAô îAjol·k;±ý÷Fâ<£JâÅÁûî«ÕÍ(¼DRÔ¿ýð_ÿöùúëÿöÃö ~ùZ>ËBÿþÿ8»|íáãÂò]<þú«ßÿðóÿòûuûúû?þðßÎÌïÍâ9N@ |ÌA`û-Ø¿WñN`ýÄð °¥Icëöãï @ò)BjÀ:fá1 ø±?g*®#Ø#°mãGà¾x¯7/WÁ¯ÚU¨#Xýˬñ¥§åJ .(Y"Àm¦§$ìÜUØhú¸E$2ËX§°sL\wÑBÈÖÀº#Xïº*Ñ.¬Èu¢=5R'ZÞíkw{ÁÚõN´I¥ItbW¬ãD9Hä ðÜ»±+ÊÖËj +«y'ÊöTicQîRX_ +RØ_ +«Ò{áÁf>ûrÙej9sÍnÍ.ÑË 1v'ë¸' + +«BžÉfÁÈs¡à^+l)<¡°|V)^Z?ë÷íÉüIB64#xÈcW̲9ØrÎß4ËÊá1 óñwû?Ë7¢Ý¿ +ÚÇ`D!²�¬aýI +D`ã<öå�´V¬Ñ¬exèC¸ÈÕãzÓthÇ{n +À*øÈLAdg+Õr<H³ù,[&4ÍÜñ÷zöxÈsx)M&Ùçv0»#÷HÛ¡ÙÔF¦îådAÞËF�ûo¬,>Ø8ĽE®æ°¯Ú9T´°8Ñvè£ %2 #[>ä"à;Ù°³zpìj÷»ÁzVµË Ùúým°+·DY§X|§XEØ+'È (ráyê`s/qãxðÔ}&î^¦ºÒ-ì:Ê[¸eân5áfíNa¯¿OKåZÛ·ó÷#¥:ð°VÕ«´3@<¬«�AEÃL8Ë8HN.5Ñ*°¦ãF�¸¥ÜvPå"A8HféÊ®LÝrñ°¶äêÄ[FàÈ9I|úS´ +Wñ1>ÞÞLÁÛ êðv7n; Ü2 næ}mǾe¢Cx;À.B¦ÏMAÓ² X+åÒdÀ<^%É¢uQkÚ'.Ìc×T'ËØg¢çä@tüMÇÝÃÅêí@sàb]Þ©eü;µ|úhqµLP7Ø'°q94mì^�MäYl"phrkäh;ÍWJ¦°xÝÉ,ÕµÝéÍ3Óé×La4«´S�À2y5Û)�~ÒÊ àÌe®3Óél89&�/C/|Ì_NºCÏ*[ÇØÝEÔ'8Qd4Ê�*:FP±/J¤VÕûqãzÜ~ê´®b7;«R$ý[Uè³p²XGÃéedÝÏòcåD'Ð[Y~BA0^½ +ÅbázaúSðN¶çNMÜ4T¤GJ¥6Èà¶ã}XQ2S"»�â®å ó¹uDЮP§ ¢YOÓ½³Ï'RÔbCÖÎDH1ìëP# |o«P³%X¦ê$m.ÀªT(äÔ3Á-Ü:Ëà<G�:Ö¼Ñ�tôì� æ7fÛqÀvÇ >ìΡë2ÆÆ²�þ´ÍTJµæ÷ÈÁѾßW'÷{�f.Ü�T³p�¤lin #ÃX7;7$fÍa® &\æÓ´ü´K}°îXA.xúëèÙUEY®Yä#|ÒõR:LfèìçòÇâ3¿ÏÄ(Û!�%Ãp + ¹Ó±Ñ*ô ìVD oUvN©#0sñ`³1#@Âÿ5B¡Áql4^©´ +öl3 ÒÐ9 «Àj$À'j«/í¶ +í<H<FìÊÉràYwn�L`%Qæ »fëå ¾4,6²ÂæEÛypì´ 8aöÈäàÉ5yðÚ¥cÛÓ:>±¶)P¼¡P§kø<æÔe°\%!(ÎY+Xn/çá¾s¿°nMçQOà<:Of0�Ëì¯aG¤=Êá½Ú 0>4ö[O9¶Áͽ¸Ny>0<@d@é<¬(hìB;ààd©ä©! 7.¹UaeºH&ýË)lÜnåÒV^¹�qcr Lä`äa2¬»p$äA¹qéÞ-£5ñÝ2RæºBÖ2LtÜ{¡KãJ.M2ÐúdQ¢U¤!À"»ÊK_ÂKï|¾[Ƥß-ãä©«=ªÒ¸Z^'"A"N Ñ¢]Æ6Ê4ÓÊÓÄ÷zYóô¿O8c4î"Ð+ßPÀ>ÒwÜïåød`òý¾[Üp¿û"é¸]]08)øw Ò*-Ì+ή�NÌK! ®ôñÝ81F¼â7À+îd<xÅÙU�¼â~{)õi;§MéÖEä¸TSôÙíÈ¥ÁÆ1Hz7¬F bv«KiàV§xÔvCúí¤¿ixCúÚ½@ù`íü&ab×gm(�Íﺷ¥¼fHÈÛ²: ñj{^W¹�<ºkx)ËÝMòQº£ª°®´HnqVãÎfD#èw¶UdPUÀ¹yW[Wòª³z]¤Ê^u Òî2z ªËµzBHÇoY ØHû}¹n;ó}À(Ðaý=@Ã}ºa+c@¤Ë -Ë×SÉý®§pö*ÂÒç¤ð¹ýÃãxV¼á��zü.Z PçFd®¬.ç(Óßà¸T/´D·WÌò±¡TÉE¢BZ5ðÆIÖ¡Ö´IP=ûP2 ï6Q¶%,°»AwâÚ9. aBÊÁwC->·¬§R'7 a%@hÀÒ¨(çßrCê´WHÌnéβ/ÎÖm§0^ÅùQ`©ïÑõåÎyHTImÖG C×K@G`u3¶eû¡OÕK@ñ|ÍVbäXyygbéò è~õ Ðéö ÒÝd¿ús@ÔÛ-,JC-:2e·àÀ<õÝÒó{àäL 0Íï¿dÕØ()ý^uØØÙñ T(33a¤AÍÎ�qj{ííPÅñ¼xãm +ÀÇUmØPȱ<�G<ÇG`eÄ8]ðÜz8+·<¤ m¤zïa¢NNmµ>¼AíÉNmNDªýåfÊPû¹LnèÀ)mÞmk8Y¡¬ÙßÙke²<�ûêeøêÏÍ}Ù鿬uEÒÍÕ¦ Üâ<즫E1°àAà»ÈDnqûÎ6QE=6n?#Åë7v7)üêZãvúÕq wó«kEùÌÁE¹è4²m¹Æ²PLú½Ê°ÔÏI F+Ðþ^îÓ¥+Ûñ#è z;�yá +SoÊÏ88ÏuÇYP²¨åu¦?U +NÇz3Õ=óôR-~©cÂê^Äž xV×üÆ@Ý9A@\õ-äy!V#Wà6rä,#Wäx¬ÂÆ*¤zæZ<&(/ åFO¥Ü@:sX&$éÕX`�Ö£H#ô Xè{ɱÞLñ(;Î8úÌ@ÑnhËê¤çúå|Vv¤Am_oH×·\)«Û )OtRkZ�¨]«¤+`!eróê¨OCàéÅçOPÎÔ)³ó4«HN ö÷�RöÌïEêPÃ}_.ÖH]%Ò~ñiWl f+å#ÈfpöÊï+Bf{h³~°åæð4 st³ +#ÏEf}P8Óä`sWíFªÑ¹�¹áÜ(@,G�I�aêÍ1QS�e"ýͰ±ú@îD;}Ò +*ñò-ón3Ñc@³eÀd#ÚLþÝn´F¦úÎTË�p¦ZH(Þ3bM;PsÒ˦0ÏôÆ#`§� aAjù õW!Êê<wG(aùd¥Êm<aòD¡tåJ¼Ïä`Óo`òº+_®0ùö{ùVª0ùö{yºÿVb|ë>~N¶;þêÍ¿»ëõ£ü}]uÍ´¿@j§°+�DìÍ*Aß°M´DmûµÐÀL¦1ÝF$F º·Ìè%(¶RëVìeªÿÂ1y+!pÚñhGn3 L¬$Ázýè.²l¸ã¼´}3Aw^ªfíÆÀ©¾³à£ r«5µJ!¶B©Ð~¹ ©Ï$i�´9ÓÜpÎ@»ðàJ�ð^PîHËDäÀåYëçÌ$±O×i@\"$úú¬NCxß®BdWOÒZÇG G[ºL 4ïmä{Nä±ê[óøªÜ#LiS>|JP½ý>pTØß#w"Ý»ïUk~¼£´°�sMó¾�ÀEM¼-!Pd°z2]Á$m§TÍp+'ýx'Á�¥. +¹X¨µJo¢Uàd+Ú +ýàÙ.É8ù21ÓPíN(jèG@8[PvV�þ'^#áqµ YÃmg$TmY«v+ÓÊÍuádi³£H÷yàYhÔ4ï4=$5Äiéµq%¶Ú¸Úè´Æõ'¦mðæ(+HØ/ÃPrÎE[¡Q.c\ÏZØÇ�¢½\2Oò-Ö¤S2ý§o¿oæý¾ü*"½CµFeöÐñFÏ#è¦é½-Ù3ò»U05ÄwcàI$ØÌáyVê;Ñê;Ðyº²5íA!ID@&´Ï×0¦»|·)�ÇÀòb)y&Ë8pÇrLÞå9nìÕÆY¡}¤\ÓnL¼/»È]>n§Æ#Nj^n¦%N¦ÐÇ'ÖÔò Â]ä$yoTmê\MaPñÂ$qîŰ* piN4(z¶E¿äiöBqeZyîOA¨úvVÈý¶^¢ºMAÒ(ka¦§YkP^a"ÆÙ/ý¬:uÓ 2ÁÜö÷r¹WÆ©pýäÞõü½ÊûR¯ßÆ`zá¤%�%Øw38]¡«6£ÒrS&h!r{¹ ؤ¾Ú¹Bo W½«-ã4·w6QÙU�;eyM°ÓÙ� nÑ+7."¾P@®=EÇÂ5UÞ.9ô] ¥®uUV�>AfËF¤2ËÀg9³�ÕQ^Ev©oy§-¯SËçR|fbÛúSðja&Ê-#à?q.Ωþ¥$v×Y&÷5ÐHi¸J²sgË8À¹2Ô÷Dz0Iâ|ùë8;wò÷MÒò÷ã¬>ÎõÜ÷§ hüSê©/ô´¡j%=V@ßK@×+Ѩ´[;@£Ó'7È5ú4à9ÖTÚm¶ +¤Ì-#ðTNÏ=ÐI®{¢à©3ë@ͲjQ eÃÉòyMaà^½x'Hl$zn3O¡ +Qi(iÂ; vNØÊ«Â[«mç9P×êĨOtâ�¨³<�Ðãx�uVägw{QiºÌÏ¢EÖV©Ú]FàÀFHbÞç@uN³FäF�Õe!9ÒÇ.òEF+?/òÍóóþt>t ½x£ùÀ%Î"e¹u® ÝV7NÀvË¿WÙfJ88®z´vüéGîû~Ã�ÈG7ñÜ8mÔû(Õ×jWçPJ@Û0#�Ð)7)L&¼ñ@ä^2?6Ù:¶gðDûKA @ëd.[ÛÍîùÚG_]R߯N©·!<(ô°YíèÉýð¢¬n¿d£¹(×Êgê®U�«¤ÂS' +»ë@pß×É.5¢! jéµPäÔrÎs#¤91Os¤ó +£9"õ¡%\ã´;E4GNyiÀ²(94í2 Ð$ò)«\Z_á.jµAzràn3árJç3´æÄBÉíïå¤É)~¯º]ßök¿ÿ<8w1ÅJÛñÕ¤(y¢%½¢Í�\õÅÙÕF¥7BÍ× h6´JgÏ)è.a¹UÄR%9è|Ê»~Z_-ÃD!4(¸eD (p¢x/èµò?Þn&r¨7ÓÆ�¨°Ga¶FûµËh«ÕéD3*@'íÃ,Z;<mz`¶3ö´Ç'Jx¥Ùe�FàdË08+pL@Î +[Gä2ÝÎU3qeÍ3RZÍ0©àBû©DR¼ö¡BÚ,HCá"8ÈÞX´öÛíÈkEä¹Î:J-?Ã-QjÝT7^·©º[û{9J«O¾¬&(óO6Ñ÷»¿§Íï³DÐüzø7@~øwÍe¬Ã©Lÿö2¹¥1 !kJ i YÛ [E�jÓí´ $Ü:@ $þ `"IýU TëP||XÍ4¿PØÎ)Ç1¹ÖIÇ V% u´Byyø¾ä/ç'Gj +o û6V+!5æ6OÖÒì]@*è_|²ÕÑF«AÛnÈÅpÒ(wkL¹ìBÞa÷4ðÖùæ[@ôßÇwjÉzVµ§V¯AgvÈó~ÜFªË;yÖxÃ7ä·o^dúCØdFº/;»£{,\»rÎ|íÉ2L]ãøc¦¡ÏðÜï|ïêQLêYw/ÐrßÇK¬5¿Gj2Qnâd�#À½bë�²¤I A©ò÷þnåäÊÙD8ÀËîå7à-=|÷®*µ¢Í4¸]I»ñ:ãßß$Ì׸ 3 5/t~î&äy¼êà÷MY&äu¼4öxy®F©û¨tÆUWZû{ ÛÆÇÎù®i¯ñNÇ>ÝA¸�T÷ã 0ÄR\cÞ¦ I"ax`RU)r×Sê`±q V@¨VSÎ#ÐÅêó·?YzãàªúèÆÀüI@yfcáéNë¾+T¿ñ�HܸçËhýÌºÝ ÉÇíYgöÇêîÈð{µ#í©&;²{¹ÒC>¡»$H±Z«ìBÈÌÇ+Ø_¼·VÍGò °ÖA^%Ì:N-!±&Çiw#ºúO�ÙúÂä9aêÑñnºfFºïN«ÈðÒ¼Ø(3/ý[±äûhÇP¯ÃOHéI@xKó¼n±îÇx}ñÑÉÂ%êhOIºR_%¡¨¡[¸1lò, U|<.TÈN)ÕË(>Àîñ6¿TRÍòlh¤]6ÁmÁ8Ð1ÌÜXM½cy# WH'æJ_=Ê4ÂôQ¦gOWB=>BÊ9OB2Þ R!2m7 +ruBÇ5êõ¹| ¿/ÙJ¢Ùw¹µr¡§" m°å1Á]´ýP|Üë® ÝZ@nnK ·Ç=§ÙnÍ_WO"ê)ÐËLíò>#�Ü5¤»Û·) 7j6r&ÄÌjw`|Â0j÷Üss¹9Q®ï"Õgan5B1a·3/%aã\2øcÁPÐKò\�·pp ʳcäá]µª_W Íåéü{OÍ÷Â,tâXµÑÃqy +¥^s¼-PèÛ²kTãdGX_2±æÍØ'@V'@`3yb&[ÆéÛJ· J¢hé]ì^�N^�òxuDýê@6n3)Fñ oÛ/R}«TïÈÍtz?ÅpIAþéNÁè\8µ]FÄ'/VïtC@tà!J"veE3¬ÃD$òGÅ<o´§t{nèq~0µi¡{Ï22@2½Ü QÑùyØ@÷ʨÙfÄ¯Ê Y½ÑÒ�åzá6§(÷({W¥)ãUöã&l[°VÄðù½sD0c#5ÍÆ�©z^bÞF�`RÌízÑo6 g³rmgÓUQòjÏæv³Ö³é^S`ǰI\#§¢1²¿£røúÝ"zGmowõªe5ô;jg÷4RéǽÛQp¾ÚQÖø;n4è÷=¦ù7áKÅHå; EVØÓ_#ѬvC#Xß ì[|²kð\ ;S¼Ð?ÂÐIÔ/ʵ&ÜnC*þ°ªI®¨²ãL1LÓGs.g´{ó{Eúhó{ ¸,öÎéÿöû@} J5KP>ÉÉ�â2Ü@õvh +Ó+¸³E¸G' ÀSAõFÀÈÊ�JØ8�µü=í� H++ÀÈ»Ù)-Ñçbâ 6h%h÷²ÝKYæ5* ˬJE^Ý9@À(_Àex�ÝÈ*µS@ +î°ûxßÅXív¬#0¬aâ¿¥¨ÿZi8X_J"ÕæTK"U¡iwÅ*T¬RÞÑ;SgoJyú]-I�åζëj7s�Þ«¶2F {bw{«6N! ²¼³ÈDßw-Ä ÄYn÷ªÉ°Øñ*öóVëV°ÊÝLa7;^n¼²Ãß?Ã5}¨_«ôÒf?·tü©êª[å>:3&Sè;mMb7¶»L +yì*� ÒÓìX®º9ÑFè_;õ#ÉÏ× ¼e²Jø*TI¤°áDH}ç¦àdËMA^ÄDÈ-pò=L$q@àí*ì²U@}ja÷ÂcýWv7ÅzXëµµ~Ú®ÐkI +Q®Pß¹*CîÄÉiRèòf¥ÐÎ.Ri}«·m}¿Ma@|g,«Úqáþfb!²vnD0@ê¢ 8äfªÜ6Òí®tW9ti r C¹5[ÖsߤZg¨ý>è_;~ùîZ<íö{änç�r.ûÉA®ÖÀ%OÖ`àN6"!êßí²¥®_â0Ä×}X¥õÜÞäL¯Øú{E©§cDæûH=ÈÕ�n¬Ý&�TXì9Ë5U¤NÒÂ�ðQeÓÛðÒr#�ÜôAKàg5Nļ4Nb0Òý)Ô:Iú)Ôú}3&ZQ$à Ès +Æ�Á©ÀAÒé¬u# ËN<ÎZ'@é7JâQë*+¢PtT + �Òê+³)LÏZ +¥ÜµnS�üñò´mALB¦QQ[ ¤PýO·)�`Ïî`=kÛ·qWÖ¸"¹½�¾Bð´m@Õ.˪4è N²ªQ×){HÆéjHå@¶Æuöo¨¼n±"IgËØµL·&ÿ È?2ÜïáiÛßKPäß«<;÷}ÀX·ßТo÷Æ·B죯6ØÀv¤¶¶Ì.ÛyÕ({¨]E³Kݬ¥¹Í' +A¨¼QS¨³ð«l: +{ådKA²JN§!Ó¶Á9uk`'!ÒÈÆÂL¤1ÿAi;ÜvÍÏÍg$ñ"/2O^¡ÕBÝXÔÊ,7@ ¦Þt¹Eú±ï'ýoX~ÌÙéÔ0Q°T(Çñ�Hx7¥´ã÷Á3ô +WÜa`ñ�-úE$�· +H|de -òLúh1p*É +,hedÑäá"`a5rìØ¹Íô\ þvWjªM©ÏÌLìrÇq¤otû=ðB/û}àÙ¬ û=àöÌï§èR1NknÕã÷�s;f +RÂþ�êw !Çñ�*_ïY9<'0xb-×T]ôÊ'zNïô}ÁvÓ ÝNø¹y;è0ZMR+³q;)®CÎiµ(íÜ* #Ò)È ³hCRÆ=1q(=ð ËscYvß0+ò«Tâ]e¼ÚåËÍÌ»Jx\JìçCFdîåÛ00ÜË+#KO¸>�4#E·×ÒÌÂäØµËæ0ð²ûI~o2Öo Ï*#¤Ý~$¤àT)q.Mß9º¾ßÏÅY¹ß("- LòRÝa3@V;{w²Tòtº[Ç©4³kÎ7©,ÏËòýg˪ÇÃ1rn&/Y¦R衲}e~vî÷H*Nõ +û.AÇ PG/âaÿÀã¸<·òÀ&"0¸µ8Èó8F$Óê@#àxÀT¾VpY$Q$I}]ä¬ÀJ ÃÉ2²6n<äU÷pລ=§N¡DV© »;Ò¬JBòÝ)¦ÝM¢¼²z^rì�.:µi ·:;¤Rø&ÒI}w*¯ð*ãÁ ÆqCg½¥ßMÓªÏÝ4x[§¤;;¿(<»a@Ú3ÀÓ?ôîÜf�\¢g"F!dTCvÁ)#tÖqÊØY7t6Ü8>Õ/ÿXùç6ºÛ�±ÌçtÊÐÌyÖqpDÑp®LV�ò6/'ÈÛ¼ +3£AdðìN�©eÂ[Q^ó6çÊÈcþsKbA}±}6Ác2â5#@BL¬>ô©¹($Ý eB©N[7Pj3èý [G,á,SµZ¶¼JB`*§ RÜï Â`^G¢37Ù»¾WG + +°#?¾p¦Lä`ez½ÏÀZàuô/1n/Q¨UûLÜd +¥?]Óúg ³ ÁJn¤;j)|Öö +ÕµUh´EªãÕ[¨>¹j? êj}GaÉ�ú¦¹^vêú'Õ57®ïGºIÁ9TèÀÊFЩB ¤¹e/<+ÈÀÅFBÚvoï{Õ×ðZ99_¬6Îk»YìnRx5¡\Î\¹íÛßH£ v©ÄAV'n¼åå2ù/Z @#Õ +áô(ãzý´'«Ð[_NÁÛSð¬N?VnȳFDÄÌê4¼^äMàõ"ÕÅnyÊ=²ú�¸¹sƹ Êj$àØzÂÔÉ*Ìó´Í·Ï»ò*µuXê{ÂN[ @[ jL°taêÎþq(;�Rpâ6A4 AâÄ"ZÌ]ER8ÁÎ@fpBQÎD@Wdϱ#�n&|yj@ÂÇWCÙhH.mâU+HâËD`Q¶û< û>C^2âF¼Køv¦¼ ûN¥SewµN§j¥N¥áÕZýÄÙZµNï©EùÄÙZQ>óÔµjÝ:δ"ÓÉlëÀ£-ÄiewµZ?7´jý,2ab?ç TwpCà#àl+ÒÊr|·éíÏ$ÎóäÕS (z +;·@:ÜùKbiªîä£@ü@ôqîÂý^~ê®+ó¤*WfµJ·ï÷!#ó{ÄýDWäÓ`÷ÓµâäR}Õ²7#@àñpr9&BYngv ++4zÃDÈZUºZ©øÇl+Pª)ËaÉòà2#;drL!´ïR}ÏuD¢Ú9QTêk ÏÆÔ÷Ù[LæÆàý [GerL@ +ÝÕWÙ#¨ÍÈ´â�¦:R»íHÒ´.º�¡LVìóÀ³ZÀ7+kÜZ}«V!PÙo|å[~±Ö¼ÚøÒ¼Rau F©<Ø¢w0«Ó��ÁÔºÇê>^RVú×à\Õ©NÕ +°GÕCÕ¬öû@ÖBÒÎr{�áÌ@h¼ +SõS¨®Ùú,Ç$IÛ²«�xñN»MBçÖ²·�r=ÇDäRîêßíºG7Û +Ë 7ÄZ±7&^ý]Êt)l_ª)ÄAÒÃÊ��''ÊPÕU$iß2½þ£eÊOV("Àng$?[F@©Rm¹aécÏZ&ùÝbJzPï»Fn/ààô#v5®YA^ +%rƪW¡dd[ ^À+»]³&Ú)`UOÂ;ãèj!# F¹áä »»0y95ø zÄo¿s`«Ó/4*N*é÷*J8¹? jÚD;'6èWüXJ¹Ð¤ºMJI7ÈÀNo¬'JÕ +UsIÁ�¥®¢e ÔE+äe7�°jª !/¯°[pªGn§zä6âTßVF!§:ét\oÞØ�ò;'SÝ.¬ ÈóéÙ<ûDzûpÿØøÎª(S»T«¡%8¤ýÆRÁDáq¥ ̽à4Ë^� +ï4Ì&{ Rc¢H®LNÓÂÆ"RxIÒ´0Ýl3\ܬ·x}nnÙd ÞÜ�Ë¿ÁìØí÷ð °Ûïá`ùÐ4âß�¢gÄó± ,ÊVßyXÊyGÆsì8L¨6¸ªØ÷Ã!Ä ¡6`fR Ër<óx(¤°_u:ÄJQ÷f%EhpãDHЪã�9oA÷0 ¼ìnD6Ú {;+z'¢cM¤Êâɸhw4¨®¸�SÍià\.@¹(= yz ëÆüÖL¦OU¨Án?"Þ@Ë©v!È9°ª3/õuá¥^Ëõ +ÞéµüDÄBD(´OÔݶþDÝM5#OÔq<ê DjîCöͼS *y²<R?ÇM ½nSnÇ*%�p»%¼{xÏÍ «¶î"V]Äf�ÀÉ<ø÷aÊA÷=ÜøUPï,ÜÆx²ê=®Û�<2K ħJfi2 þ,7¨0Ø&¢þ%(gË!áÍÑ%¨A+7by@a0/[¨gôÃî&È/v8õ$z DIyê ß»AyêÉO³ØÆè ï)¦·�r0ô*ìïétjjuÂu'jàÔ/Eá«EÁÒx& +â\Qd\)ËË ð0"·±VvÒLµµfÒÜAàT#÷k"%wd©,g%³ÿ»¡PêBÙz_½¤8ähU +È̬(Éíü VÛ9<Ã=Óªù�? ZÑê1ïu@æ÷� ¬¶¿\«¬6¿G6�ÝFªp×¥CLºDcØ5g|ZÜ\1BV4~ª+ÅËZHZv +ÏìDû<7ȵYQ\äÛm$ ¨NõµnL�^ìnDòº&¢Ø_È +ð0ß[&Ê3˦V¥Ê4JI§B¸Ä=Ô0ÿ^O.I&A»íÐG«Æsë�dØoµ¨Ì`wàXÅd°J ypÛ ÂúÞ%`g,¯R +]t©¤B'^ªyªèd +óTÑv3$Ä7½[^\ügÕ*rñ_¦P¢,ÔÄ¡²S¾!C~]7~B¦u+ï#å��=Ã�àðO¾}üûµ¿' ,ÜÌ�¹DV)5à[&ÏîD +É®h +¤Ìâ[&«6£cve¦Àû²]Û! º6(®TYfP+I)UÙu¼²dpA¨L¤j&R²«»L§÷MûÂ�È~·K,°uo)Ïñ��Xö%ÏdW\«Ìe%@êõæ©i�eNBHSj#ë¼5aBÿ¼³~/®BVPïçÒð`´µöùDÚZûlY¦AÚ-Ò(Å9ÒÖ¼iãJñ´' §k i[å£R¯ÛþpJ³ßîT-ÌïíÉø»@ØþH¥:vüòÉ bãF¤ûº®«aGd@XÀ¥ößÔ²Õ(588C` +ÝO[-5Ñ6µ#h_õ>Êû^IýÕú85÷s×C©Æë#�VßJ@»ÌZç]ñ¦6ðCq sWaú\HféöE4KyÖ±KyEJeíËmièyµoQ�áq/¼ÜÖ¹wû!û_I=µv?d¬ün?X·_iÉ`WÍRgk-D?&.² Ñçyíø¶Xåô»È¥IX¤ Ý EB±0[8½p+Û¼»ï"¨ÞÞ¤p¡¹>À«ÍïM£}WVÀÀwÏÍ�É·eG ¯Úg(ÖØð�¹KC¡ô<Ø"¢þìÛ)Xn +À¦¾t"ãw" +Nç:E;5<(na÷r©²z·Ã»!»¦f"UÖì >Vk1Íé Þ6è|>fþÛ°JÆm¾¸÷í³ÚHç91³ðDùD-u'!qðW +V8 ¢7kPo0º'ïå¢VÏLûBulÞÇ`å¬ñõzV×ät=ûظA0è'ÍV¬Ó´t9³µ>Éq³õµ*§ç~ wî÷Xq!Z*¡nïf`Ç�sSUÏ�Tã¯P¡#$ +î"7änå w{dSê äÊ2`g· aôC;@¢Lp#@ðV}#¯.#dc·3°vûn/Ø e ˰¾w#�d² +8çÊñUVo ݵ^î%m¢eìó KRK"KRL¢¯, tYë§© ½DªØLDÝwcMrÿÜqjý559Q6Nr&ã(¹,Ê[Çuu×´òª|1zÛßõH'¯ãG¦úáOîûO!èç)î'ÿ@ÓNÑ2°�5Ôqc!~]±CJ-DT;þ6ùùJ³Há*âÁ�¦²B{V«]~r+'HÈȪL$±¿!¼\ÆðRÑS¢-Ä9»½Ý¼FÎ|;§Q3_MtTgÔHµøüÓèz/P±§0Õ1 ¹b_òsµr@×çÕ:1ß(Ëx%ÀÜRìW^_Ù!àO$ÍÔò�)³#�ò�)«!²» It`P+ÊkAAmÖ²�oÊî2: ýÎpbw(ô«Þ´nüJÔ¬ÒSÎÓR]5¥ÓNû}ùE½o¿¯�ÚøüKêmuÞ\¯~²^è¹MÀÉÆk¨K¬¡ãû÷8ê5ÕàcÅàÛ´< o¬ â�hsLL»Y9IBüÁÁr{8òv3!qWnIÞvòs;]1qîÅ%ñ'Sè2©¤(p²l9²½0ÀÉ2 2¬~_Ôòä9ÕÎeà\v3ÈkÓ »e�¼âU«È δ 7AêÃq3Y>Ó¤ÖI(¿ ãbÿ´Àj5 He#káwØ-OK²¼V»Pìî_®ãÎUù£²nùÖ«£ëÝW¯9æUÖ1ù´]óÞÄ/ßú´òÙ7ZÃæ÷qe¦nßÛV ++¸ñ Ë�0äÌ`ý¹:/y¹9!J9BÊ}D.éÉ2ÂÜÀçx�ÜM3«}9¨Wçgr0½:ß2ñX=rÊI|àx¸cã[QÞ^êªÉªW(µÕ +eíÆ¾Y\¼h§fFaÕµÛÙò* ydZÙnTt5ï6Óõ'{axû_²U¹U@2hVV`ÞéÄo}XUiȹ5ÊLÛÜ#ÞÎl;<ÒîB±¬JDùôH·Sû3É#mÆOmõ=ÒõÀgo0Yj¾`vó{À°Qü¾ú¸ù/mmÌïA½h§WïKpóhñK ÛTQÄÄN_8�wXÈ%Þò@£¤W7À<7ÅÕ{ȧ^¢<%:Hqö"e08*D @*J>i <¯t_¡HV-Ö³çè~ò;4#@8ðyºSiÈoçV*åÊ®¬&«fÆOD÷ s-P=SI Îm¨Æ«ä5y+0nÛqí¦ìs;SÍõU[³K²0&W-lÜ¿m +AM¡ÎâTKY0j©RX}ådKArê{ò'±æC¸è¥ëdMxÙãC\Ø1<fÁ(GzA¡TäÈæv9Ù¡|¼HÊóAa³j¡&ÌýÒÒÚ]¶µîùýhv¼Å_è +ô×àD°æ+ðñýúýËe±íÙð5ø¼"I:óÝòÛ¯ÿñõþã/~øù?/óõI¦;(ýsþÇ/~ÿCÆ>fùʯmîë¿þúåo¿~ñ~øO¿8&b¾þë.í =Ú¯5t¼9ÆÜÑZ~úú'ùöOH"¿dèK纰ÛvýBmÁí_Á~Öd.òìãùÐûò Ú}!-)_p÷/´¾»ÎZ. ÄØµ|Á_H¢È/GËZZ>KZè%1ò.í?óçÚ¹-ɹ7_ëb?1©Û4³%IÊ £q´i>û¶o¸óÞ¤=eãåß-È7ÂQ^çú ûý,èÆ_¿q¶ ßÈ»=6ß0ßß6AÊ+¯¾[o¬.mÎýúï/$³m §ÎäùÀ®_øÄjRWF}· ØÜÙë'¾× ýÝõ÷ü xPÿ¥SÛPú$ÚNmKéµ}fíÏÞqiÿn¡ô¶¥ôJ{qM¯¶¥ô +db^mKéÕß[^{ÒÍß[J¯$Íqmzµ-¥WüxÛ|ñÖ{ùeùØÐHÙ¥ôJ¦i]^mKé,`»'n-¥W.Õ~±m9zåK Wï-¥KÜi¾xk9z¹´Þ[J¯\(ªéÔ4}»þÚ+~Bû½[ËÑ+ÆÒHĽ¥ôêkï^kÎèi÷qÓPúä2[Ó©m)½ú*áÒË-I®ÚÒ'ÑÞ[J¯5ÉQó½[Ké#MëßÞ6ÿÒçÖRzùiVæÞ"SxIï¬Ö6¡ØÛ?ýøëÿÕ_~÷Ç?|ýòoþÃ/ÿlíK;lôãÏrýW¢ó³µ¬M3)ÐbóÏ¿ÿñÏWxMGîa¥%wuY?§B h Lÿ7_ÇÿùBeMj`ÌÔÑMØ0¤õ3û¥å·_ÿRfð2Ü7tÚñ$@ûíjæ)ätÙ¿'å3´l+;5t9ó I ]@Wm9ÔgMMé(UË$ãÔRôOÍ\¬MbÈ'ÄVµ-G¯´emcÎ+-®±I÷Ò+~öfW-WZÙuÕZ^É®F÷SKÓ+;ÑßZ63¬¸j³¶¥ôòi?¸¦Wm¹|ñø¿í^¾µ^ùé>Óôª- -måFn-G¯dZlqo)½\QóÅ[Kée¾ÑW·GÚsdKÃl¥>ûgo(-×^ëö±ö?[®½B~ȶY[K±ùTÚ¬5µ$ZÛ²Ö/®Ð`mit¯ßKÖºY³¥éµ\+ÍÔr{BK+¨åJ+çÂo/-!c²4 ehYZZ®Öü?Û ÖËéЧÿö-B¡\ÐÒ{'/ÉÆºÇâZZ=R[.ÃGÇ!ñ +doþg:/¦½xüë¥Þ¿NLMº²v·©¥%ϧoýìÅåë%OÑø·/ÊÉ(CeH^Õo' +«ê«/ª¥�d´øSs# Ýùê˺WõûzPÍ^vòÏY1fǦNYáv5ÄŨ«p»Zs}2öVå®5©¦RávMH!s£¥T¸ÍðåI¨ø¼úõ%jÞÙºn×ÕUøkÑ&2¯¤A4%põMÂ8 £ÂߪÁr÷1<r»\åú¦¢òw5]}¯¨rëÖÕ%¯-öäjÖ¥×{r<7ÅEb¸äV7ìê]¯ä6V�Oç5õiräÓÕ7ܼ¶ÌÛ¹�ÏdÏÎSñî2úe-c xÐ{²0rSÝ í-·¡í3¯ l7õ¡ãvà=;ùvô5¬XGÁ&ž ¬2AèOa}; ZÄï¶ +ò4l_hG`Vv{9¥\Oò[àjß¼ ýu¬¸ë×q·/×Õ@ÆÙ5ý@Ë^k^4_±JÇÁøÖNÙä訤ãw>î¶×ÏÌÙòÓÙbÍQàò£³ANÔ¯¿(ÈÓ¦q~/jÃ4ô1jX×Å¥, °¾=¤õ.çÅëjô dÖý®_Hª$,Íjò ôG69· pýB:ú¸]¿P[ /¤-fÌ%|ùB´d·É÷¨úBø,«¹/¤Ï®ùëi,¹K÷´C©úB:ì¦õM|Á$øgª×öh±ûg!Ú¯ì®J'Ö{ü;?ΡùF©ucZ.Ì$iü;ùÆ5þ½Ñµïo-Ð7^¾ùÆ5þ½¾ÞË7¨ùF:,fi¾q»c.ß èéÝõßÁé4c¯:[ /OÆòò kü{?Ü·OPôýÌzýÄ%þ×OÜ[JÔÚÛtjJ¬n¶¦SÛRzåXRû½¶¥D£6\I¿µ^ëÇøØôj[J¯xxݯ½Úîî¦ûøfÍï-¥W¸-Û½¥ôÚþµWÛR¢Ñæè_äøÖRz%%¶¯M¯¶¥ôGDÿÚ«´dc´oÿÞþµWÛRbFIe;×è¶¥ôZþµWÛRzuuεMrÙpõÞRz¹#¢íUZò©Âпvj[J¯ýè_{«eÍú~oZ®"[ÍnM¯ÒÒöGØíÚ«´4½²¸nÆÚÐöI¶§ÙÔÒöê*â+¹k)å¿7"KoMÚÒöòGRõWiqk~ÂñÓ¼4d$(5Zh;ÌU_Së|Îk¦¶4ß;.®5ëW[²Ê.Ö^I ÛmX[²ÏúÊ©íßJÌ¥ôꦦW2í6¬-Í +¦ÿ»´S[ÎoæZ]zÕ|ß+ñÒË¡´k¯¶¥ôJƵQ5·"]´K¯[Kéå+víÕ¶^kBª¹µ^Û¶ºö*-WNôö«9ßÅ{Ké�òµWiiiíG�ùÚ«m)áV{3÷Òk=p®½JKóEÓ9ukz¦W~еØbyÅXRmCé4·k§Òr®¹ÒJ»)-Õ¥SÛPúø#}íÔ¶^ñHr»öj[JÂÍòiÕ6>öHCºvj[î(LYã÷D!ä̰.·Ì^NKäij,a½æ ¦¥Ýܳå÷XO¹3Û¥åS©¤ytt¬ôikÝd-G¿[¸¤-[RNæýÃï/sH&ò8_-[R5ÑðY9j:\ðÔ6ÑÊ-Û¾³õÑ£Áç\Xô]ðùxÄýUð¹¥ >ßàÁç<ø ¼ +>Ïx0 >ç³ïÏùÑ«às¾çô*øÜ@|n) ÁgfÀóª}V±áD Ìb}¶ëäyÕyô9¿xFkȲFsÙeôî~e·AàáçvXø¹>4ë¶F½ááç"ü|#oððsËFEøù6<ü<ãÁ üÌò�?g¼ +?·#P[ðól§áç¦áçvPøyehÂÏjIòõ·"ü¬Þ~V¬#`â üìD0?ÇS Ç^ݸúÓ4ü|³OðóL¸ePgL÷븻ëÈjEEøY¥Ø)ü\PÆÒ >I©6üä諽վZzþyËbßB;z.<SËVkn£?O0}KZM[¬ÃùÈ�n³»Õpd *¬%!3MD ¤U%¡]$®ÈÝùt# +Ï´úl ³ c^×$ÜJ'¹Ôbñò;ÖÖ¬qL*Çø%p< ¨d8HµMľ ´E r·ì2÷neFß¼'Iº9¾y^-!rÜvBÜ[«L1öt`EI~|óõÛäÇ·/áÁÐËÈß²ñF8ÐE ÙÉXl¢Ö4ä¦ �Ë·¯6J¶SÖMAÜ(Ø9P}!äi ȺZÙ.N'¹ã Ø]ঠ|{úBØ^NÎͦ¥ëHÈu½Ðx:úSØvѾÚç�plÈ +Êe¬ú)ù6«J¬B?f`*fZ^mgodÛ¹o,»»à8QF`7úUh|)$þ¤pl9Í{K@^cи¼÷é +iø!xø!(8Ù}SßS+Ó2¤>7v3@sg ȧ°.¬>ÍuaG åÕ¨å¨÷B%@gÉ*t%1×tHbÓH@,yuá]XYÈrñWZy]7Vî#Uªí¿O®Ä<jµô¥®c; ·óvÕBEOÄsS�L¹änSï&WoÝF�xéuH¯Ç>%SÀuþ¸E$H¸)0¡øþ¹h wÈåÔq(öARnæ8£ÑËòa +�Ä BÊû¸FÆÀ¦åc +ôÜ©z +ãH±^çx�~Z^h?a¬ À +°¢¹¨x±z3m ZÕoÜ«0ð¦HK®Ï{Ó®i±ñþ9ÿã¿Ï´íþ¯½¬Öÿöǯ~÷«ÿðçÿîë¿ÿý?|ýëþøëÿÕ¿þúßÿïë¿ÿÓ_~÷ÓO_¿ü_ýòo¿þáóõO¿ûñ7?þé/_?ûúí_þò¯÷óÿõ¯ýüå·¿ûóç?þåç¿41üËþùÿ÷çÿúçü»Ïoÿòû(Köøÿ 1. +endstream +endobj +385 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 826 0 R +/Name /Im370 +/Width 48 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]ϱ EÑ÷Õ:Ü@'Q#úGsG°¤0Q*$6§¾÷h5khAåÓP8¥ÃOÉWlH#U¡½}±ÝÖìnU§ÉÎiQl&æ¾.Ù@%°^"ÌÆ¥õÄ17Ʋ" +endstream +endobj +386 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 827 0 R +/Name /Im371 +/Width 40 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]ÎÁ ÐO8xd1ºÆ(À±þÄË+MÉoE$á©°Õ\0QñKhX2±/¥töcû(ľdf0ÀË ¾"zëó\â?27J¬1 ck#,¼·`çåÛ;¹ +endstream +endobj +387 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 828 0 R +/Name /Im372 +/Width 40 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmα @Fá·*z¸ ç`h Öµ l)°¡p7#"óeÃÿh7àw@+(Y°øSjø0A¿HØ/Ì ¯LOe¼iåÜ] +NJTg¨È¦×¯m«V6=/a>2°1ù-!H +endstream +endobj +388 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 829 0 R +/Name /Im373 +/Width 40 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmα À @# +ÊÀ"Y+?ZFaJ:ǯTAèsãâIðsCÝP6djuJ2:Ãp¦S?Ò£ýBì+§tU#;.Ò^ù* +endstream +endobj +389 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 830 0 R +/Name /Im374 +/Width 40 +/Height 45 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmα0DÑ'[CHà)A!3n LHH®éJ¹(Á{¼H§¿& ÏéÄ4¢öÄ`Ø#[Äëp8³:O§8'ò,h%V{À¦¸ò¢¢§V0UÀÔÄLqùÁ:n°.4Ì¿müÛPxñþb¿éõjæöDÙ¬ú"/ +endstream +endobj +390 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 831 0 R +/Name /Im375 +/Width 40 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`(`�êÿà ¶ñ`�Æ=¥ +endstream +endobj +391 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 832 0 R +/Name /Im376 +/Width 40 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿÿáCÅÄZL$00��!¥+ +endstream +endobj +392 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 833 0 R +/Name /Im377 +/Width 32 +/Height 43 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]ͱ Ä0@.Tz¯N+ýÖhE#¨LaQðÅãâ:JÄL`m4ê#*.9jý±þñz_r²nüç¡ÆyXÀõ×k#¦|ÔrJé)Ùv°(¶qìK½ +endstream +endobj +393 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 834 0 R +/Name /Im378 +/Width 40 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿ?ÿ ùCì `D#`A" ÿÿÀ0"PÇÂ# 2¡lpî´sÿ@�Â4" +endstream +endobj +394 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 449 0 R >> /XObject << /Im57 64 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im71 78 0 R /Im80 87 0 R /Im76 83 0 R /Im64 71 0 R /Im66 73 0 R /Im76 83 0 R /Im80 87 0 R /Im55 62 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im56 63 0 R /Im60 67 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im76 83 0 R /Im53 60 0 R /Im69 76 0 R /Im56 63 0 R /Im64 71 0 R /Im74 81 0 R /Im64 71 0 R /Im66 73 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im79 86 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im76 83 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im53 60 0 R /Im114 121 0 R /Im64 71 0 R /Im60 67 0 R /Im69 76 0 R /Im74 81 0 R /Im54 61 0 R /Im55 62 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im86 93 0 R /Im75 82 0 R /Im76 83 0 R /Im53 60 0 R /Im53 60 0 R /Im119 126 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im58 65 0 R /Im53 60 0 R /Im59 66 0 R /Im74 81 0 R /Im74 81 0 R /Im76 83 0 R /Im60 67 0 R /Im80 87 0 R /Im53 60 0 R /Im67 74 0 R /Im76 83 0 R /Im55 62 0 R /Im76 83 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im54 61 0 R /Im60 67 0 R /Im74 81 0 R /Im53 60 0 R /Im67 74 0 R /Im58 65 0 R /Im53 60 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im80 87 0 R /Im60 67 0 R /Im56 63 0 R /Im78 85 0 R /Im74 81 0 R /Im60 67 0 R /Im76 83 0 R /Im55 62 0 R /Im114 121 0 R /Im53 60 0 R /Im53 60 0 R /Im119 126 0 R /Im54 61 0 R /Im53 60 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im56 63 0 R /Im69 76 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im86 93 0 R /Im233 242 0 R /Im63 70 0 R /Im76 83 0 R /Im60 67 0 R /Im69 76 0 R /Im65 72 0 R /Im76 83 0 R /Im115 122 0 R /Im73 80 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im67 74 0 R /Im114 121 0 R /Im55 62 0 R /Im59 66 0 R /Im55 62 0 R /Im65 72 0 R /Im53 60 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im62 69 0 R /Im131 138 0 R /Im117 124 0 R /Im61 68 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im80 87 0 R /Im60 67 0 R /Im56 63 0 R /Im78 85 0 R /Im71 78 0 R /Im80 87 0 R /Im53 60 0 R /Im66 73 0 R /Im55 62 0 R /Im59 66 0 R /Im69 76 0 R /Im74 81 0 R /Im53 60 0 R /Im55 62 0 R /Im59 66 0 R /Im73 80 0 R /Im54 61 0 R /Im56 63 0 R /Im53 60 0 R /Im67 74 0 R /Im64 71 0 R /Im66 73 0 R /Im55 62 0 R /Im53 60 0 R /Im74 81 0 R /Im67 74 0 R /Im53 60 0 R /Im74 81 0 R /Im66 73 0 R /Im56 63 0 R /Im64 71 0 R /Im115 122 0 R /Im53 60 0 R /Im67 74 0 R /Im64 71 0 R /Im59 66 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im74 81 0 R /Im71 78 0 R /Im80 87 0 R /Im53 60 0 R /Im74 81 0 R /Im76 83 0 R /Im60 67 0 R /Im69 76 0 R /Im63 70 0 R /Im67 74 0 R /Im69 76 0 R /Im74 81 0 R /Im53 60 0 R /Im64 71 0 R /Im59 66 0 R /Im53 60 0 R /Im119 126 0 R /Im54 61 0 R /Im53 60 0 R /Im59 66 0 R /Im74 81 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im53 60 0 R /Im67 74 0 R /Im64 71 0 R /Im66 73 0 R /Im55 62 0 R /Im53 60 0 R /Im74 81 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im74 81 0 R /Im60 67 0 R /Im55 62 0 R /Im78 85 0 R /Im53 60 0 R /Im66 73 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im60 67 0 R /Im61 68 0 R /Im56 63 0 R /Im53 60 0 R /Im66 73 0 R /Im69 76 0 R /Im56 63 0 R /Im74 81 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im74 81 0 R /Im86 93 0 R /Im62 69 0 R /Im61 68 0 R /Im80 87 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im63 70 0 R /Im60 67 0 R /Im80 87 0 R /Im55 62 0 R /Im59 66 0 R /Im62 69 0 R /Im131 138 0 R /Im117 124 0 R /Im74 81 0 R /Im73 80 0 R /Im74 81 0 R /Im53 60 0 R /Im58 65 0 R /Im60 67 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im66 73 0 R /Im69 76 0 R /Im56 63 0 R /Im74 81 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im71 78 0 R /Im64 71 0 R /Im58 65 0 R /Im55 62 0 R /Im73 80 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im55 62 0 R /Im74 81 0 R /Im55 62 0 R /Im67 74 0 R /Im53 60 0 R /Im116 123 0 R /Im59 66 0 R /Im64 71 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im60 67 0 R /Im61 68 0 R /Im193 200 0 R /Im194 201 0 R /Im195 202 0 R /Im195 202 0 R /Im194 201 0 R /Im196 203 0 R /Im79 86 0 R /Im197 204 0 R /Im198 205 0 R /Im199 206 0 R /Im200 207 0 R /Im197 204 0 R /Im194 201 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im63 70 0 R /Im60 67 0 R /Im60 67 0 R /Im78 85 0 R /Im55 62 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im67 74 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im86 93 0 R /Im75 82 0 R /Im76 83 0 R /Im64 71 0 R /Im74 81 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im64 71 0 R /Im74 81 0 R /Im59 66 0 R /Im60 67 0 R /Im60 67 0 R /Im69 76 0 R /Im56 63 0 R /Im55 62 0 R /Im64 71 0 R /Im58 65 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im69 76 0 R /Im56 63 0 R /Im53 60 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im74 81 0 R /Im76 83 0 R /Im60 67 0 R /Im69 76 0 R /Im63 70 0 R /Im67 74 0 R /Im56 63 0 R /Im53 60 0 R /Im74 81 0 R /Im56 63 0 R /Im64 71 0 R /Im66 73 0 R /Im54 61 0 R /Im56 63 0 R /Im53 60 0 R /Im67 74 0 R /Im64 71 0 R /Im66 73 0 R /Im55 62 0 R /Im53 60 0 R /Im74 81 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im60 67 0 R /Im74 81 0 R /Im76 83 0 R /Im55 62 0 R /Im63 70 0 R /Im63 70 0 R /Im60 67 0 R /Im80 87 0 R /Im54 61 0 R /Im56 63 0 R /Im53 60 0 R /Im67 74 0 R /Im64 71 0 R /Im66 73 0 R /Im55 62 0 R /Im53 60 0 R /Im74 81 0 R /Im71 78 0 R /Im64 71 0 R /Im86 93 0 R /Im53 60 0 R /Im86 93 0 R /Im71 78 0 R /Im54 61 0 R /Im56 63 0 R /Im53 60 0 R /Im67 74 0 R /Im79 86 0 R /Im64 71 0 R /Im66 73 0 R /Im55 62 0 R /Im53 60 0 R /Im74 81 0 R /Im60 67 0 R /Im59 66 0 R /Im63 70 0 R /Im73 80 0 R /Im67 74 0 R /Im53 60 0 R /Im54 61 0 R /Im53 60 0 R /Im59 66 0 R /Im67 74 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im60 67 0 R /Im59 66 0 R /Im115 122 0 R /Im60 67 0 R /Im55 62 0 R /Im56 63 0 R /Im67 74 0 R /Im64 71 0 R /Im59 66 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im58 65 0 R /Im55 62 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im80 87 0 R /Im64 71 0 R /Im76 83 0 R /Im60 67 0 R /Im69 76 0 R /Im63 70 0 R /Im60 67 0 R /Im60 67 0 R /Im78 85 0 R /Im55 62 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im67 74 0 R /Im86 93 0 R /Im62 69 0 R /Im59 66 0 R /Im76 83 0 R /Im64 71 0 R /Im74 81 0 R /Im54 61 0 R /Im55 62 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im80 87 0 R /Im53 60 0 R /Im64 71 0 R /Im59 66 0 R /Im74 81 0 R /Im54 61 0 R /Im53 60 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im60 67 0 R /Im59 66 0 R /Im63 70 0 R /Im73 80 0 R /Im55 62 0 R /Im115 122 0 R /Im55 62 0 R /Im74 81 0 R /Im64 71 0 R /Im66 73 0 R /Im61 68 0 R /Im69 76 0 R /Im59 66 0 R /Im66 73 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im55 62 0 R /Im63 70 0 R /Im64 71 0 R /Im73 80 0 R /Im60 67 0 R /Im61 68 0 R /Im76 83 0 R /Im53 60 0 R /Im64 71 0 R /Im67 74 0 R /Im53 60 0 R /Im55 62 0 R /Im71 78 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im76 83 0 R /Im53 60 0 R /Im61 68 0 R /Im60 67 0 R /Im63 70 0 R /Im63 70 0 R /Im60 67 0 R /Im80 87 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im80 87 0 R /Im60 67 0 R /Im64 71 0 R /Im74 81 0 R /Im74 81 0 R /Im69 76 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im76 83 0 R /Im60 67 0 R /Im69 76 0 R /Im63 70 0 R /Im67 74 0 R /Im115 122 0 R /Im53 60 0 R /Im55 62 0 R /Im78 85 0 R /Im53 60 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im60 67 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im74 81 0 R /Im64 71 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im55 62 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im53 60 0 R /Im59 66 0 R /Im76 83 0 R /Im55 62 0 R /Im59 66 0 R /Im66 73 0 R /Im53 60 0 R /Im58 65 0 R /Im53 60 0 R /Im59 66 0 R /Im60 67 0 R /Im61 68 0 R /Im76 83 0 R /Im53 60 0 R /Im58 65 0 R /Im53 60 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im206 215 0 R /Im135 142 0 R /Im86 93 0 R /Im62 69 0 R /Im59 66 0 R /Im76 83 0 R /Im53 60 0 R /Im53 60 0 R /Im119 126 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im58 65 0 R /Im53 60 0 R /Im59 66 0 R /Im80 87 0 R /Im53 60 0 R /Im55 62 0 R /Im54 61 0 R /Im54 61 0 R /Im63 70 0 R /Im64 71 0 R /Im53 60 0 R /Im67 74 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im56 63 0 R /Im69 76 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im60 67 0 R /Im59 66 0 R /Im63 70 0 R /Im73 80 0 R /Im60 67 0 R /Im76 83 0 R /Im53 60 0 R /Im116 123 0 R /Im56 63 0 R /Im74 81 0 R /Im67 74 0 R /Im53 60 0 R /Im54 61 0 R /Im76 83 0 R /Im60 67 0 R /Im61 68 0 R /Im63 70 0 R /Im60 67 0 R /Im60 67 0 R /Im78 85 0 R /Im55 62 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im67 74 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im74 81 0 R /Im76 83 0 R /Im60 67 0 R /Im69 76 0 R /Im63 70 0 R /Im67 74 0 R /Im64 71 0 R /Im59 66 0 R /Im74 81 0 R /Im54 61 0 R /Im53 60 0 R /Im66 73 0 R /Im76 83 0 R /Im53 60 0 R /Im53 60 0 R /Im118 125 0 R /Im53 60 0 R /Im66 73 0 R /Im80 87 0 R /Im76 83 0 R /Im53 60 0 R /Im59 66 0 R /Im80 87 0 R /Im53 60 0 R /Im55 62 0 R /Im54 61 0 R /Im54 61 0 R /Im63 70 0 R /Im73 80 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im56 63 0 R /Im69 76 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im61 68 0 R /Im69 76 0 R /Im56 63 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im54 61 0 R /Im76 83 0 R /Im71 78 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im55 62 0 R /Im63 70 0 R /Im74 81 0 R /Im60 67 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im55 62 0 R /Im67 74 0 R /Im53 60 0 R /Im60 67 0 R /Im118 125 0 R /Im115 122 0 R /Im53 60 0 R /Im80 87 0 R /Im53 60 0 R /Im53 60 0 R /Im59 66 0 R /Im53 60 0 R /Im118 125 0 R /Im53 60 0 R /Im66 73 0 R /Im60 67 0 R /Im61 68 0 R /Im67 74 0 R /Im53 60 0 R /Im54 61 0 R /Im76 83 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im66 73 0 R /Im60 67 0 R /Im58 65 0 R /Im54 61 0 R /Im69 76 0 R /Im55 62 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im60 67 0 R /Im114 121 0 R /Im53 60 0 R /Im56 63 0 R /Im76 83 0 R /Im53 60 0 R /Im55 62 0 R /Im67 74 0 R /Im86 93 0 R /Im138 145 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im67 74 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im80 87 0 R /Im64 71 0 R /Im76 83 0 R /Im55 62 0 R /Im63 70 0 R /Im63 70 0 R /Im60 67 0 R /Im61 68 0 R /Im53 60 0 R /Im119 126 0 R /Im55 62 0 R /Im58 65 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im66 73 0 R /Im60 67 0 R /Im63 70 0 R /Im63 70 0 R /Im53 60 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im61 68 0 R /Im56 63 0 R /Im60 67 0 R /Im58 65 0 R /Im56 63 0 R /Im55 62 0 R /Im64 71 0 R /Im59 66 0 R /Im79 86 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im74 81 0 R /Im55 62 0 R /Im74 81 0 R /Im55 62 0 R /Im69 76 0 R /Im59 66 0 R /Im64 71 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im58 65 0 R /Im74 81 0 R /Im55 62 0 R /Im58 65 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im53 60 0 R /Im71 78 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im67 74 0 R /Im56 63 0 R /Im69 76 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im61 68 0 R /Im56 63 0 R /Im60 67 0 R /Im58 65 0 R /Im76 83 0 R /Im53 60 0 R /Im53 60 0 R /Im119 126 0 R /Im55 62 0 R /Im58 65 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im86 93 0 R /Im271 282 0 R /Im60 67 0 R /Im80 87 0 R /Im53 60 0 R /Im114 121 0 R /Im53 60 0 R /Im56 63 0 R /Im71 78 0 R /Im76 83 0 R /Im53 60 0 R /Im73 80 0 R /Im64 71 0 R /Im59 66 0 R /Im66 73 0 R /Im63 70 0 R /Im69 76 0 R /Im67 74 0 R /Im53 60 0 R /Im53 60 0 R /Im119 126 0 R /Im55 62 0 R /Im58 65 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im64 71 0 R /Im118 125 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im59 66 0 R /Im74 81 0 R /Im55 62 0 R /Im65 72 0 R /Im53 60 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im74 81 0 R /Im71 78 0 R /Im64 71 0 R /Im86 93 0 R /Im53 60 0 R /Im86 93 0 R /Im71 78 0 R /Im76 83 0 R /Im53 60 0 R /Im115 122 0 R /Im53 60 0 R /Im65 72 0 R /Im64 71 0 R /Im59 66 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im71 78 0 R /Im58 65 0 R /Im64 71 0 R /Im67 74 0 R /Im67 74 0 R /Im63 70 0 R /Im53 60 0 R /Im71 78 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im76 83 0 R /Im53 60 0 R /Im116 123 0 R /Im59 66 0 R /Im55 62 0 R /Im63 70 0 R /Im74 81 0 R /Im55 62 0 R /Im65 72 0 R /Im53 60 0 R /Im74 81 0 R /Im60 67 0 R /Im61 68 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im74 81 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im58 65 0 R /Im55 62 0 R /Im73 80 0 R /Im59 66 0 R /Im53 60 0 R /Im53 60 0 R /Im67 74 0 R /Im67 74 0 R /Im64 71 0 R /Im118 125 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im59 66 0 R /Im66 73 0 R /Im56 63 0 R /Im64 71 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im55 62 0 R /Im71 78 0 R /Im60 67 0 R /Im56 63 0 R /Im56 63 0 R /Im69 76 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im60 67 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im116 123 0 R /Im65 72 0 R /Im69 76 0 R /Im56 63 0 R /Im55 62 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im74 81 0 R /Im71 78 0 R /Im67 74 0 R /Im53 60 0 R /Im54 61 0 R /Im53 60 0 R /Im59 66 0 R /Im67 74 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im60 67 0 R /Im59 66 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im55 62 0 R /Im65 72 0 R /Im53 60 0 R /Im74 81 0 R /Im86 93 0 R /Im120 127 0 R /Im53 60 0 R /Im74 81 0 R /Im76 83 0 R /Im60 67 0 R /Im69 76 0 R /Im63 70 0 R /Im67 74 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im74 81 0 R /Im64 71 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im76 83 0 R /Im64 71 0 R /Im74 81 0 R /Im61 68 0 R /Im55 62 0 R /Im66 73 0 R /Im60 67 0 R /Im56 63 0 R /Im60 67 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im53 60 0 R /Im56 63 0 R /Im69 76 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im86 93 0 R /Im75 82 0 R /Im60 67 0 R /Im74 81 0 R /Im53 60 0 R /Im53 60 0 R /Im76 83 0 R /Im53 60 0 R /Im53 60 0 R /Im118 125 0 R /Im53 60 0 R /Im66 73 0 R /Im60 67 0 R /Im61 68 0 R /Im76 83 0 R /Im53 60 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im54 61 0 R /Im60 67 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im58 65 0 R /Im53 60 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im80 87 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im74 81 0 R /Im60 67 0 R /Im59 66 0 R /Im53 60 0 R /Im53 60 0 R /Im67 74 0 R /Im60 67 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im119 126 0 R /Im54 61 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im58 65 0 R /Im53 60 0 R /Im59 66 0 R /Im74 81 0 R /Im60 67 0 R /Im66 73 0 R /Im60 67 0 R /Im58 65 0 R /Im54 61 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im60 67 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im58 65 0 R /Im53 60 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im79 86 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im86 93 0 R /Im75 82 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im58 65 0 R /Im55 62 0 R /Im64 71 0 R /Im59 66 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im61 68 0 R /Im69 76 0 R /Im69 76 0 R /Im56 63 0 R /Im53 60 0 R /Im80 87 0 R /Im60 67 0 R /Im56 63 0 R /Im78 85 0 R /Im86 93 0 R /Im233 242 0 R /Im54 61 0 R /Im54 61 0 R /Im63 70 0 R /Im64 71 0 R /Im66 73 0 R /Im55 62 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im60 67 0 R /Im60 67 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im65 72 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im74 81 0 R /Im55 62 0 R /Im59 66 0 R /Im67 74 0 R /Im74 81 0 R /Im69 76 0 R /Im67 74 0 R /Im73 80 0 R /Im60 67 0 R /Im59 66 0 R /Im53 60 0 R /Im118 125 0 R /Im53 60 0 R /Im66 73 0 R /Im60 67 0 R /Im61 68 0 R /Im115 122 0 R /Im55 62 0 R /Im66 73 0 R /Im78 85 0 R /Im65 72 0 R /Im56 63 0 R /Im60 67 0 R /Im69 76 0 R /Im59 66 0 R /Im67 74 0 R /Im78 85 0 R /Im59 66 0 R /Im60 67 0 R /Im80 87 0 R /Im63 70 0 R /Im79 86 0 R /Im53 60 0 R /Im67 74 0 R /Im65 72 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im74 81 0 R /Im60 67 0 R /Im56 63 0 R /Im53 60 0 R /Im58 65 0 R /Im55 62 0 R /Im64 71 0 R /Im59 66 0 R /Im74 81 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im61 68 0 R /Im69 76 0 R /Im69 76 0 R /Im56 63 0 R /Im53 60 0 R /Im80 87 0 R /Im60 67 0 R /Im56 63 0 R /Im78 85 0 R /Im86 93 0 R /Im125 132 0 R /Im379 396 0 R /Im380 397 0 R /Im379 396 0 R /Im111 118 0 R /Im379 396 0 R /Im381 398 0 R /Im113 120 0 R /Im379 396 0 R /Im109 116 0 R /Im133 140 0 R /Im190 197 0 R /Im55 62 0 R /Im64 71 0 R /Im59 66 0 R /Im191 198 0 R /Im70 77 0 R /Im56 63 0 R /Im64 71 0 R /Im59 66 0 R /Im64 71 0 R /Im114 121 0 R /Im55 62 0 R /Im74 81 0 R /Im55 62 0 R /Im59 66 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im84 91 0 R /Im139 146 0 R /Im190 197 0 R /Im55 62 0 R /Im64 71 0 R /Im59 66 0 R /Im71 78 0 R /Im137 144 0 R /Im86 93 0 R /Im191 198 0 R /Im70 77 0 R /Im56 63 0 R /Im64 71 0 R /Im59 66 0 R /Im64 71 0 R /Im114 121 0 R /Im55 62 0 R /Im74 81 0 R /Im55 62 0 R /Im59 66 0 R /Im71 78 0 R /Im233 242 0 R /Im86 93 0 R /Im130 137 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im84 91 0 R /Im132 139 0 R /Im62 69 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im131 138 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im117 124 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im58 65 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im120 127 0 R /Im64 71 0 R /Im76 83 0 R /Im131 138 0 R /Im55 62 0 R /Im56 63 0 R /Im65 72 0 R /Im53 60 0 R /Im79 86 0 R /Im70 77 0 R /Im66 73 0 R /Im55 62 0 R /Im63 70 0 R /Im53 60 0 R /Im382 399 0 R /Im59 66 0 R /Im74 81 0 R /Im56 63 0 R /Im69 76 0 R /Im66 73 0 R /Im69 76 0 R /Im56 63 0 R /Im53 60 0 R /Im67 74 0 R /Im52 59 0 R /Im55 62 0 R /Im55 62 0 R /Im86 93 0 R /Im62 69 0 R /Im59 66 0 R /Im383 400 0 R /Im384 401 0 R /Im385 402 0 R /Im315 328 0 R /Im295 306 0 R /Im296 307 0 R /Im316 329 0 R /Im386 403 0 R /Im296 307 0 R /Im300 311 0 R /Im316 329 0 R /Im317 330 0 R /Im317 330 0 R /Im295 306 0 R /Im297 308 0 R /Im316 329 0 R /Im296 307 0 R /Im385 402 0 R /Im316 329 0 R /Im387 404 0 R /Im388 405 0 R /Im130 137 0 R /Im54 61 0 R /Im54 61 0 R /Im86 93 0 R /Im138 145 0 R /Im205 212 0 R /Im84 91 0 R /Im389 406 0 R /Im138 145 0 R /Im189 196 0 R /Im81 88 0 R /Im132 139 0 R /Im68 75 0 R /Im63 70 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im59 66 0 R /Im67 74 0 R /Im60 67 0 R /Im59 66 0 R /Im117 124 0 R /Im56 63 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im192 199 0 R /Im119 126 0 R /Im61 68 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im130 137 0 R /Im192 199 0 R /Im382 399 0 R /Im117 124 0 R /Im132 139 0 R /Im86 93 0 R /Im133 140 0 R /Im52 59 0 R /Im53 60 0 R /Im134 141 0 R /Im55 62 0 R /Im53 60 0 R /Im67 74 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im84 91 0 R /Im139 146 0 R /Im52 59 0 R /Im53 60 0 R /Im134 141 0 R /Im55 62 0 R /Im53 60 0 R /Im67 74 0 R /Im71 78 0 R /Im131 138 0 R /Im86 93 0 R /Im130 137 0 R /Im53 60 0 R /Im67 74 0 R /Im86 93 0 R /Im132 139 0 R /Im130 137 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im84 91 0 R /Im132 139 0 R /Im233 242 0 R /Im67 74 0 R /Im79 86 0 R /Im114 121 0 R /Im55 62 0 R /Im59 66 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im58 65 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im86 93 0 R /Im62 69 0 R /Im192 199 0 R /Im70 77 0 R /Im117 124 0 R /Im56 63 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im286 297 0 R /Im192 199 0 R /Im76 83 0 R /Im58 65 0 R /Im69 76 0 R /Im74 81 0 R /Im76 83 0 R /Im55 62 0 R /Im86 93 0 R /Im133 140 0 R /Im184 191 0 R /Im185 192 0 R /Im69 76 0 R /Im56 63 0 R /Im59 66 0 R /Im78 85 0 R /Im56 63 0 R /Im55 62 0 R /Im59 66 0 R /Im186 193 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im82 89 0 R /Im139 146 0 R /Im184 191 0 R /Im185 192 0 R /Im69 76 0 R /Im56 63 0 R /Im59 66 0 R /Im78 85 0 R /Im56 63 0 R /Im55 62 0 R /Im59 66 0 R /Im186 193 0 R /Im71 78 0 R /Im85 92 0 R /Im86 93 0 R /Im130 137 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im82 89 0 R /Im132 139 0 R /Im137 144 0 R /Im55 62 0 R /Im66 73 0 R /Im76 83 0 R /Im64 71 0 R /Im59 66 0 R /Im53 60 0 R /Im131 138 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im64 71 0 R /Im59 66 0 R /Im68 75 0 R /Im60 67 0 R /Im58 65 0 R /Im54 61 0 R /Im69 76 0 R /Im53 60 0 R /Im56 63 0 R /Im68 75 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im206 215 0 R /Im75 82 0 R /Im76 83 0 R /Im53 60 0 R /Im72 79 0 R /Im53 60 0 R /Im119 126 0 R /Im77 84 0 R /Im53 60 0 R /Im59 66 0 R /Im53 60 0 R /Im56 63 0 R /Im79 86 0 R /Im55 62 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im86 93 0 R /Im386 403 0 R /Im296 307 0 R /Im300 311 0 R /Im316 329 0 R /Im390 407 0 R /Im296 307 0 R /Im384 401 0 R /Im300 311 0 R /Im295 306 0 R /Im299 310 0 R /Im296 307 0 R /Im384 401 0 R /Im317 330 0 R /Im391 408 0 R /Im299 310 0 R /Im392 409 0 R /Im298 309 0 R /Im393 410 0 R /Im300 311 0 R /Im316 329 0 R /Im390 407 0 R /Im391 408 0 R /Im315 328 0 R /Im316 329 0 R /Im394 411 0 R /Im394 411 0 R /Im395 412 0 R /Im394 411 0 R /Im394 411 0 R /Im299 310 0 R /Im385 402 0 R /Im295 306 0 R /Im384 401 0 R /Im300 311 0 R /Im295 306 0 R /Im299 310 0 R /Im296 307 0 R /Im396 413 0 R /Im299 310 0 R /Im393 410 0 R /Im390 407 0 R /Im296 307 0 R /Im384 401 0 R /Im317 330 0 R /Im387 404 0 R /Im397 414 0 R /Im71 78 0 R /Im135 142 0 R /Im81 88 0 R /Im189 196 0 R /Im389 406 0 R /Im135 142 0 R /Im82 89 0 R /Im135 142 0 R /Im86 93 0 R /Im133 140 0 R /Im62 69 0 R /Im59 66 0 R /Im69 76 0 R /Im186 193 0 R /Im69 76 0 R /Im78 85 0 R /Im55 62 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im86 93 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im82 89 0 R /Im139 146 0 R /Im62 69 0 R /Im59 66 0 R /Im69 76 0 R /Im186 193 0 R /Im69 76 0 R /Im78 85 0 R /Im55 62 0 R /Im71 78 0 R /Im72 79 0 R /Im86 93 0 R /Im71 78 0 R /Im318 331 0 R /Im55 62 0 R /Im58 65 0 R /Im60 67 0 R /Im71 78 0 R /Im137 144 0 R /Im86 93 0 R /Im71 78 0 R /Im62 69 0 R /Im74 81 0 R /Im76 83 0 R /Im64 71 0 R /Im64 71 0 R /Im71 78 0 R /Im72 79 0 R /Im86 93 0 R /Im71 78 0 R /Im70 77 0 R /Im53 60 0 R /Im78 85 0 R /Im64 71 0 R /Im71 78 0 R /Im271 282 0 R /Im86 93 0 R /Im191 198 0 R /Im62 69 0 R /Im60 67 0 R /Im76 83 0 R /Im71 78 0 R /Im271 282 0 R /Im86 93 0 R /Im130 137 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im82 89 0 R /Im132 139 0 R /Im75 82 0 R /Im60 67 0 R /Im54 61 0 R /Im79 86 0 R /Im67 74 0 R /Im60 67 0 R /Im80 87 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im79 86 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im60 67 0 R /Im61 68 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im74 81 0 R /Im61 68 0 R /Im56 63 0 R /Im60 67 0 R /Im58 65 0 R /Im64 71 0 R /Im59 66 0 R /Im66 73 0 R /Im60 67 0 R /Im58 65 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im53 60 0 R /Im74 81 0 R /Im55 62 0 R /Im58 65 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im86 93 0 R /Im398 415 0 R /Im390 407 0 R /Im299 310 0 R /Im385 402 0 R /Im316 329 0 R /Im316 329 0 R /Im399 416 0 R /Im295 306 0 R /Im296 307 0 R /Im297 308 0 R /Im394 411 0 R /Im299 310 0 R /Im400 417 0 R /Im300 311 0 R /Im315 328 0 R /Im316 329 0 R /Im401 418 0 R /Im295 306 0 R /Im402 419 0 R /Im300 311 0 R /Im315 328 0 R /Im386 403 0 R /Im296 307 0 R /Im300 311 0 R /Im316 329 0 R /Im390 407 0 R /Im296 307 0 R /Im384 401 0 R /Im300 311 0 R /Im295 306 0 R /Im299 310 0 R /Im296 307 0 R /Im384 401 0 R /Im317 330 0 R /Im386 403 0 R /Im296 307 0 R /Im399 416 0 R /Im393 410 0 R /Im385 402 0 R /Im300 311 0 R /Im295 306 0 R /Im403 420 0 R /Im316 329 0 R /Im404 421 0 R /Im299 310 0 R /Im297 308 0 R /Im295 306 0 R /Im385 402 0 R /Im398 415 0 R /Im390 407 0 R /Im299 310 0 R /Im297 308 0 R /Im390 407 0 R /Im384 401 0 R /Im392 409 0 R /Im392 409 0 R /Im295 306 0 R /Im296 307 0 R /Im297 308 0 R /Im405 422 0 R /Im299 310 0 R /Im390 407 0 R /Im406 423 0 R /Im394 411 0 R /Im315 328 0 R /Im299 310 0 R /Im298 309 0 R /Im407 424 0 R /Im386 403 0 R /Im404 421 0 R /Im398 415 0 R /Im408 425 0 R /Im397 414 0 R /Im409 426 0 R /Im410 427 0 R /Im130 137 0 R /Im54 61 0 R /Im54 61 0 R /Im86 93 0 R /Im138 145 0 R /Im82 89 0 R /Im84 91 0 R /Im389 406 0 R /Im138 145 0 R /Im83 90 0 R /Im138 145 0 R /Im132 139 0 R /Im75 82 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im60 67 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im66 73 0 R /Im76 83 0 R /Im60 67 0 R /Im64 71 0 R /Im66 73 0 R /Im53 60 0 R /Im74 81 0 R /Im60 67 0 R /Im58 65 0 R /Im55 62 0 R /Im78 85 0 R /Im53 60 0 R /Im55 62 0 R /Im131 138 0 R /Im53 60 0 R /Im66 73 0 R /Im79 86 0 R /Im69 76 0 R /Im56 63 0 R /Im53 60 0 R /Im72 79 0 R /Im60 67 0 R /Im53 60 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im233 242 0 R /Im56 63 0 R /Im64 71 0 R /Im116 123 0 R /Im66 73 0 R /Im64 71 0 R /Im55 62 0 R /Im63 70 0 R /Im62 69 0 R /Im59 66 0 R /Im53 60 0 R /Im63 70 0 R /Im63 70 0 R /Im64 71 0 R /Im65 72 0 R /Im53 60 0 R /Im59 66 0 R /Im66 73 0 R /Im53 60 0 R /Im135 142 0 R /Im205 212 0 R /Im135 142 0 R /Im81 88 0 R /Im71 78 0 R /Im70 77 0 R /Im54 61 0 R /Im56 63 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im53 60 0 R /Im56 63 0 R /Im79 86 0 R /Im411 428 0 R /Im53 60 0 R /Im56 63 0 R /Im63 70 0 R /Im55 62 0 R /Im65 72 0 R /Im86 93 0 R /Im133 140 0 R /Im62 69 0 R /Im59 66 0 R /Im69 76 0 R /Im186 193 0 R /Im69 76 0 R /Im78 85 0 R /Im55 62 0 R /Im55 62 0 R /Im55 62 0 R /Im63 70 0 R /Im86 93 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im189 196 0 R /Im55 62 0 R /Im139 146 0 R /Im62 69 0 R /Im59 66 0 R /Im69 76 0 R /Im186 193 0 R /Im69 76 0 R /Im78 85 0 R /Im55 62 0 R /Im71 78 0 R /Im72 79 0 R /Im86 93 0 R /Im71 78 0 R /Im70 77 0 R /Im53 60 0 R /Im78 85 0 R /Im64 71 0 R /Im71 78 0 R /Im271 282 0 R /Im86 93 0 R /Im191 198 0 R /Im62 69 0 R /Im60 67 0 R /Im76 83 0 R /Im71 78 0 R /Im271 282 0 R /Im86 93 0 R /Im130 137 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im189 196 0 R /Im132 139 0 R /Im233 242 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im53 60 0 R /Im63 70 0 R /Im63 70 0 R /Im64 71 0 R /Im65 72 0 R /Im53 60 0 R /Im59 66 0 R /Im74 81 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im66 73 0 R /Im76 83 0 R /Im58 65 0 R /Im53 60 0 R /Im76 83 0 R /Im60 67 0 R /Im67 74 0 R /Im69 76 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im62 69 0 R /Im59 66 0 R /Im79 86 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im131 138 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im117 124 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im79 86 0 R /Im58 65 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im86 93 0 R /Im398 415 0 R /Im390 407 0 R /Im299 310 0 R /Im385 402 0 R /Im316 329 0 R /Im316 329 0 R /Im399 416 0 R /Im295 306 0 R /Im296 307 0 R /Im297 308 0 R /Im394 411 0 R /Im299 310 0 R /Im400 417 0 R /Im386 403 0 R /Im396 413 0 R /Im391 408 0 R /Im395 412 0 R /Im386 403 0 R /Im408 425 0 R /Im397 414 0 R /Im412 429 0 R /Im405 422 0 R /Im299 310 0 R /Im390 407 0 R /Im406 423 0 R /Im394 411 0 R /Im315 328 0 R /Im299 310 0 R /Im298 309 0 R /Im413 430 0 R /Im390 407 0 R /Im299 310 0 R /Im296 307 0 R /Im414 431 0 R /Im300 311 0 R /Im295 306 0 R /Im316 329 0 R /Im390 407 0 R /Im394 411 0 R /Im299 310 0 R /Im400 417 0 R /Im386 403 0 R /Im296 307 0 R /Im399 416 0 R /Im393 410 0 R /Im385 402 0 R /Im300 311 0 R /Im295 306 0 R /Im403 420 0 R /Im316 329 0 R /Im404 421 0 R /Im299 310 0 R /Im297 308 0 R /Im295 306 0 R /Im385 402 0 R /Im398 415 0 R /Im390 407 0 R /Im299 310 0 R /Im297 308 0 R /Im390 407 0 R /Im384 401 0 R /Im392 409 0 R /Im392 409 0 R /Im295 306 0 R /Im296 307 0 R /Im297 308 0 R /Im130 137 0 R /Im54 61 0 R /Im54 61 0 R /Im86 93 0 R /Im135 142 0 R /Im135 142 0 R /Im84 91 0 R /Im79 86 0 R /Im135 142 0 R /Im138 145 0 R /Im188 195 0 R /Im132 139 0 R /Im130 137 0 R /Im69 76 0 R /Im56 63 0 R /Im63 70 0 R /Im283 294 0 R /Im99 106 0 R /Im101 108 0 R /Im101 108 0 R /Im95 102 0 R /Im415 432 0 R /Im416 433 0 R /Im416 433 0 R /Im417 434 0 R /Im417 434 0 R /Im417 434 0 R /Im104 111 0 R /Im98 105 0 R /Im96 103 0 R /Im104 111 0 R /Im92 99 0 R /Im90 97 0 R /Im418 435 0 R /Im105 112 0 R /Im90 97 0 R /Im419 436 0 R /Im105 112 0 R /Im89 96 0 R /Im104 111 0 R /Im93 100 0 R /Im98 105 0 R /Im104 111 0 R /Im420 437 0 R /Im105 112 0 R /Im416 433 0 R /Im421 438 0 R /Im418 435 0 R /Im90 97 0 R /Im98 105 0 R /Im422 439 0 R /Im423 440 0 R /Im416 433 0 R /Im424 441 0 R /Im88 95 0 R /Im418 435 0 R /Im95 102 0 R /Im104 111 0 R /Im99 106 0 R /Im101 108 0 R /Im425 442 0 R /Im418 435 0 R /Im132 139 0 R /Im86 93 0 R /Im133 140 0 R /Im62 69 0 R /Im59 66 0 R /Im69 76 0 R /Im186 193 0 R /Im69 76 0 R /Im78 85 0 R /Im55 62 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im86 93 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im189 196 0 R /Im115 122 0 R /Im139 146 0 R /Im62 69 0 R /Im59 66 0 R /Im69 76 0 R /Im186 193 0 R /Im69 76 0 R /Im78 85 0 R /Im55 62 0 R /Im71 78 0 R /Im72 79 0 R /Im86 93 0 R /Im71 78 0 R /Im70 77 0 R /Im53 60 0 R /Im78 85 0 R /Im64 71 0 R /Im71 78 0 R /Im271 282 0 R /Im86 93 0 R /Im191 198 0 R /Im62 69 0 R /Im60 67 0 R /Im76 83 0 R /Im71 78 0 R /Im271 282 0 R /Im86 93 0 R /Im130 137 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im189 196 0 R /Im132 139 0 R /Im378 393 0 R /Im270 281 0 R /Im66 73 0 R /Im64 71 0 R /Im53 60 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im60 67 0 R /Im61 68 0 R /Im53 60 0 R /Im119 126 0 R /Im53 60 0 R /Im66 73 0 R /Im69 76 0 R /Im55 62 0 R /Im115 122 0 R /Im63 70 0 R /Im53 60 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im74 81 0 R /Im61 68 0 R /Im56 63 0 R /Im60 67 0 R /Im58 65 0 R /Im53 60 0 R /Im119 126 0 R /Im55 62 0 R /Im58 65 0 R /Im54 61 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im86 93 0 R /Im398 415 0 R /Im390 407 0 R /Im299 310 0 R /Im385 402 0 R /Im316 329 0 R /Im316 329 0 R /Im399 416 0 R /Im295 306 0 R /Im296 307 0 R /Im297 308 0 R /Im394 411 0 R /Im299 310 0 R /Im400 417 0 R /Im300 311 0 R /Im315 328 0 R /Im316 329 0 R /Im426 443 0 R /Im315 328 0 R /Im295 306 0 R /Im390 407 0 R /Im399 416 0 R /Im395 412 0 R /Im394 411 0 R /Im295 306 0 R /Im384 401 0 R /Im296 307 0 R /Im391 408 0 R /Im299 310 0 R /Im392 409 0 R /Im298 309 0 R /Im393 410 0 R /Im300 311 0 R /Im295 306 0 R /Im296 307 0 R /Im297 308 0 R /Im401 418 0 R /Im385 402 0 R /Im295 306 0 R /Im316 329 0 R /Im296 307 0 R /Im385 402 0 R /Im316 329 0 R /Im391 408 0 R /Im299 310 0 R /Im296 307 0 R /Im400 417 0 R /Im316 329 0 R /Im390 407 0 R /Im316 329 0 R /Im296 307 0 R /Im385 402 0 R /Im316 329 0 R /Im130 137 0 R /Im54 61 0 R /Im54 61 0 R /Im86 93 0 R /Im138 145 0 R /Im135 142 0 R /Im138 145 0 R /Im79 86 0 R /Im138 145 0 R /Im138 145 0 R /Im81 88 0 R /Im132 139 0 R /Im131 138 0 R /Im53 60 0 R /Im66 73 0 R /Im69 76 0 R /Im56 63 0 R /Im53 60 0 R /Im72 79 0 R /Im60 67 0 R /Im53 60 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im68 75 0 R /Im60 67 0 R /Im58 65 0 R /Im54 61 0 R /Im69 76 0 R /Im53 60 0 R /Im56 63 0 R /Im70 77 0 R /Im66 73 0 R /Im64 71 0 R /Im53 60 0 R /Im59 66 0 R /Im66 73 0 R /Im53 60 0 R /Im135 142 0 R /Im205 212 0 R /Im81 88 0 R /Im84 91 0 R /Im71 78 0 R /Im70 77 0 R /Im54 61 0 R /Im56 63 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im53 60 0 R /Im56 63 0 R /Im79 86 0 R /Im411 428 0 R /Im53 60 0 R /Im56 63 0 R /Im63 70 0 R /Im55 62 0 R /Im65 72 0 R /Im86 93 0 R /Im133 140 0 R /Im62 69 0 R /Im59 66 0 R /Im69 76 0 R /Im186 193 0 R /Im69 76 0 R /Im78 85 0 R /Im55 62 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im86 93 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im83 90 0 R /Im139 146 0 R /Im62 69 0 R /Im59 66 0 R /Im69 76 0 R /Im186 193 0 R /Im69 76 0 R /Im78 85 0 R /Im55 62 0 R /Im71 78 0 R /Im72 79 0 R /Im86 93 0 R /Im71 78 0 R /Im72 79 0 R /Im55 62 0 R /Im78 85 0 R /Im55 62 0 R /Im59 66 0 R /Im60 67 0 R /Im71 78 0 R /Im75 82 0 R /Im86 93 0 R /Im191 198 0 R /Im62 69 0 R /Im60 67 0 R /Im76 83 0 R /Im71 78 0 R /Im271 282 0 R /Im86 93 0 R /Im130 137 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im83 90 0 R /Im132 139 0 R /Im233 242 0 R /Im66 73 0 R /Im234 243 0 R /Im69 76 0 R /Im64 71 0 R /Im56 63 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im76 83 0 R /Im53 60 0 R /Im69 76 0 R /Im56 63 0 R /Im64 71 0 R /Im74 81 0 R /Im64 71 0 R /Im66 73 0 R /Im114 121 0 R /Im55 62 0 R /Im63 70 0 R /Im69 76 0 R /Im53 60 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im74 81 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im66 73 0 R /Im76 83 0 R /Im56 63 0 R /Im53 60 0 R /Im53 60 0 R /Im74 81 0 R /Im86 93 0 R /Im398 415 0 R /Im390 407 0 R /Im299 310 0 R /Im385 402 0 R /Im316 329 0 R /Im316 329 0 R /Im399 416 0 R /Im295 306 0 R /Im296 307 0 R /Im297 308 0 R /Im394 411 0 R /Im299 310 0 R /Im400 417 0 R /Im387 404 0 R /Im387 404 0 R /Im300 311 0 R /Im315 328 0 R /Im386 403 0 R /Im296 307 0 R /Im300 311 0 R /Im316 329 0 R /Im390 407 0 R /Im296 307 0 R /Im384 401 0 R /Im300 311 0 R /Im295 306 0 R /Im299 310 0 R /Im296 307 0 R /Im384 401 0 R /Im317 330 0 R /Im391 408 0 R /Im299 310 0 R /Im296 307 0 R /Im400 417 0 R /Im316 329 0 R /Im390 407 0 R /Im316 329 0 R /Im296 307 0 R /Im385 402 0 R /Im316 329 0 R /Im299 310 0 R /Im296 307 0 R /Im395 412 0 R /Im298 309 0 R /Im298 309 0 R /Im317 330 0 R /Im295 306 0 R /Im385 402 0 R /Im384 401 0 R /Im300 311 0 R /Im295 306 0 R /Im299 310 0 R /Im296 307 0 R /Im394 411 0 R /Im299 310 0 R /Im400 417 0 R /Im398 415 0 R /Im390 407 0 R /Im299 310 0 R /Im317 330 0 R /Im299 310 0 R /Im297 308 0 R /Im407 424 0 R /Im386 403 0 R /Im427 444 0 R /Im395 412 0 R /Im398 415 0 R /Im397 414 0 R /Im428 445 0 R /Im410 427 0 R /Im71 78 0 R /Im54 61 0 R /Im54 61 0 R /Im86 93 0 R /Im135 142 0 R /Im84 91 0 R /Im189 196 0 R /Im79 86 0 R /Im135 142 0 R /Im82 89 0 R /Im138 145 0 R /Im86 93 0 R /Im133 140 0 R /Im72 79 0 R /Im55 62 0 R /Im78 85 0 R /Im55 62 0 R /Im59 66 0 R /Im60 67 0 R /Im53 60 0 R /Im55 62 0 R /Im63 70 0 R /Im86 93 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im83 90 0 R /Im139 146 0 R /Im72 79 0 R /Im55 62 0 R /Im78 85 0 R /Im55 62 0 R /Im59 66 0 R /Im60 67 0 R /Im71 78 0 R /Im75 82 0 R /Im86 93 0 R /Im71 78 0 R /Im62 69 0 R /Im59 66 0 R /Im69 76 0 R /Im186 193 0 R /Im69 76 0 R /Im78 85 0 R /Im55 62 0 R /Im71 78 0 R /Im72 79 0 R /Im86 93 0 R /Im71 78 0 R /Im70 77 0 R /Im53 60 0 R /Im78 85 0 R /Im64 71 0 R /Im71 78 0 R /Im271 282 0 R /Im86 93 0 R /Im191 198 0 R /Im62 69 0 R /Im60 67 0 R /Im76 83 0 R /Im71 78 0 R /Im271 282 0 R /Im86 93 0 R /Im130 137 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im83 90 0 R /Im132 139 0 R /Im62 69 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im74 81 0 R /Im76 83 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im76 83 0 R /Im53 60 0 R /Im69 76 0 R /Im56 63 0 R /Im64 71 0 R /Im74 81 0 R /Im64 71 0 R /Im66 73 0 R /Im74 81 0 R /Im69 76 0 R /Im74 81 0 R /Im79 86 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im58 65 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im86 93 0 R /Im398 415 0 R /Im390 407 0 R /Im299 310 0 R /Im385 402 0 R /Im316 329 0 R /Im316 329 0 R /Im399 416 0 R /Im295 306 0 R /Im296 307 0 R /Im297 308 0 R /Im299 310 0 R /Im400 417 0 R /Im300 311 0 R /Im315 328 0 R /Im316 329 0 R /Im429 446 0 R /Im295 306 0 R /Im297 308 0 R /Im315 328 0 R /Im300 311 0 R /Im315 328 0 R /Im386 403 0 R /Im296 307 0 R /Im399 416 0 R /Im393 410 0 R /Im385 402 0 R /Im300 311 0 R /Im295 306 0 R /Im403 420 0 R /Im316 329 0 R /Im404 421 0 R /Im299 310 0 R /Im297 308 0 R /Im295 306 0 R /Im385 402 0 R /Im398 415 0 R /Im390 407 0 R /Im299 310 0 R /Im297 308 0 R /Im390 407 0 R /Im384 401 0 R /Im392 409 0 R /Im392 409 0 R /Im295 306 0 R /Im296 307 0 R /Im297 308 0 R /Im391 408 0 R /Im299 310 0 R /Im296 307 0 R /Im400 417 0 R /Im316 329 0 R /Im390 407 0 R /Im316 329 0 R /Im296 307 0 R /Im385 402 0 R /Im316 329 0 R /Im130 137 0 R /Im54 61 0 R /Im54 61 0 R /Im86 93 0 R /Im135 142 0 R /Im84 91 0 R /Im84 91 0 R /Im79 86 0 R /Im135 142 0 R /Im82 89 0 R /Im81 88 0 R /Im132 139 0 R /Im131 138 0 R /Im53 60 0 R /Im66 73 0 R /Im69 76 0 R /Im56 63 0 R /Im53 60 0 R /Im72 79 0 R /Im60 67 0 R /Im53 60 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im68 75 0 R /Im60 67 0 R /Im58 65 0 R /Im54 61 0 R /Im69 76 0 R /Im53 60 0 R /Im56 63 0 R /Im70 77 0 R /Im66 73 0 R /Im64 71 0 R /Im53 60 0 R /Im59 66 0 R /Im66 73 0 R /Im53 60 0 R /Im135 142 0 R /Im81 88 0 R /Im81 88 0 R /Im82 89 0 R /Im71 78 0 R /Im70 77 0 R /Im54 61 0 R /Im56 63 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im53 60 0 R /Im56 63 0 R /Im79 86 0 R /Im411 428 0 R /Im53 60 0 R /Im56 63 0 R /Im63 70 0 R /Im55 62 0 R /Im65 72 0 R /Im86 93 0 R /Im133 140 0 R /Im137 144 0 R /Im60 67 0 R /Im56 63 0 R /Im55 62 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im138 145 0 R /Im139 146 0 R /Im137 144 0 R /Im60 67 0 R /Im56 63 0 R /Im55 62 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im71 78 0 R /Im378 393 0 R /Im86 93 0 R /Im130 137 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im138 145 0 R /Im132 139 0 R /Im131 138 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im68 75 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im117 124 0 R /Im55 62 0 R /Im53 60 0 R /Im56 63 0 R /Im59 66 0 R /Im74 81 0 R /Im86 93 0 R /Im62 69 0 R /Im59 66 0 R /Im70 77 0 R /Im86 93 0 R /Im137 144 0 R /Im69 76 0 R /Im65 72 0 R /Im65 72 0 R /Im63 70 0 R /Im53 60 0 R /Im60 67 0 R /Im59 66 0 R /Im130 137 0 R /Im53 60 0 R /Im67 74 0 R /Im86 93 0 R /Im132 139 0 R /Im386 403 0 R /Im296 307 0 R /Im399 416 0 R /Im393 410 0 R /Im385 402 0 R /Im300 311 0 R /Im295 306 0 R /Im403 420 0 R /Im316 329 0 R /Im404 421 0 R /Im299 310 0 R /Im297 308 0 R /Im295 306 0 R /Im385 402 0 R /Im398 415 0 R /Im390 407 0 R /Im299 310 0 R /Im297 308 0 R /Im390 407 0 R /Im384 401 0 R /Im392 409 0 R /Im392 409 0 R /Im295 306 0 R /Im296 307 0 R /Im297 308 0 R /Im71 78 0 R /Im233 242 0 R /Im66 73 0 R /Im55 62 0 R /Im67 74 0 R /Im53 60 0 R /Im58 65 0 R /Im64 71 0 R /Im66 73 0 R /Im117 124 0 R /Im56 63 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im86 93 0 R /Im133 140 0 R /Im137 144 0 R /Im60 67 0 R /Im56 63 0 R /Im55 62 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im189 196 0 R /Im139 146 0 R /Im137 144 0 R /Im60 67 0 R /Im56 63 0 R /Im55 62 0 R /Im63 70 0 R /Im53 60 0 R /Im74 81 0 R /Im71 78 0 R /Im378 393 0 R /Im86 93 0 R /Im130 137 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im189 196 0 R /Im132 139 0 R /Im117 124 0 R /Im233 242 0 R /Im131 138 0 R /Im206 215 0 R /Im233 242 0 R /Im54 61 0 R /Im55 62 0 R /Im53 60 0 R /Im56 63 0 R /Im59 66 0 R /Im79 86 0 R /Im115 122 0 R /Im55 62 0 R /Im74 81 0 R /Im53 60 0 R /Im67 74 0 R /Im116 123 0 R /Im56 63 0 R /Im74 81 0 R /Im79 86 0 R /Im60 67 0 R /Im56 63 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im64 71 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im74 81 0 R /Im73 80 0 R /Im74 81 0 R /Im53 60 0 R /Im58 65 0 R /Im86 93 0 R /Im383 400 0 R /Im384 401 0 R /Im385 402 0 R /Im315 328 0 R /Im295 306 0 R /Im296 307 0 R /Im316 329 0 R /Im404 421 0 R /Im316 329 0 R /Im384 401 0 R /Im390 407 0 R /Im296 307 0 R /Im414 431 0 R /Im295 306 0 R /Im296 307 0 R /Im297 308 0 R /Im430 447 0 R /Im409 426 0 R /Im138 145 0 R /Im138 145 0 R /Im189 196 0 R /Im389 406 0 R /Im138 145 0 R /Im84 91 0 R /Im138 145 0 R /Im86 93 0 R /Im133 140 0 R /Im137 144 0 R /Im69 76 0 R /Im65 72 0 R /Im65 72 0 R /Im63 70 0 R /Im53 60 0 R /Im60 67 0 R /Im59 66 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im138 145 0 R /Im139 146 0 R /Im137 144 0 R /Im69 76 0 R /Im65 72 0 R /Im65 72 0 R /Im63 70 0 R /Im53 60 0 R /Im60 67 0 R /Im59 66 0 R /Im71 78 0 R /Im70 77 0 R /Im86 93 0 R /Im130 137 0 R /Im53 60 0 R /Im67 74 0 R /Im86 93 0 R /Im132 139 0 R /Im130 137 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im138 145 0 R /Im132 139 0 R /Im62 69 0 R /Im59 66 0 R /Im67 74 0 R /Im69 76 0 R /Im66 73 0 R /Im79 86 0 R /Im64 71 0 R /Im114 121 0 R /Im53 60 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im66 73 0 R /Im54 61 0 R /Im56 63 0 R /Im60 67 0 R /Im65 72 0 R /Im56 63 0 R /Im55 62 0 R /Im58 65 0 R /Im58 65 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im86 93 0 R /Im233 242 0 R /Im66 73 0 R /Im55 62 0 R /Im67 74 0 R /Im53 60 0 R /Im58 65 0 R /Im64 71 0 R /Im66 73 0 R /Im117 124 0 R /Im56 63 0 R /Im53 60 0 R /Im74 81 0 R /Im74 81 0 R /Im86 93 0 R /Im133 140 0 R /Im187 194 0 R /Im69 76 0 R /Im64 71 0 R /Im59 66 0 R /Im63 70 0 R /Im55 62 0 R /Im59 66 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im188 195 0 R /Im139 146 0 R /Im187 194 0 R /Im69 76 0 R /Im64 71 0 R /Im59 66 0 R /Im63 70 0 R /Im55 62 0 R /Im59 66 0 R /Im71 78 0 R /Im85 92 0 R /Im86 93 0 R /Im134 141 0 R /Im86 93 0 R /Im130 137 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im188 195 0 R /Im132 139 0 R /Im131 138 0 R /Im53 60 0 R /Im55 62 0 R /Im56 63 0 R /Im59 66 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im63 70 0 R /Im60 67 0 R /Im65 72 0 R /Im64 71 0 R /Im79 86 0 R /Im66 73 0 R /Im55 62 0 R /Im63 70 0 R /Im67 74 0 R /Im53 60 0 R /Im116 123 0 R /Im59 66 0 R /Im64 71 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im74 81 0 R /Im61 68 0 R /Im56 63 0 R /Im60 67 0 R /Im58 65 0 R /Im56 63 0 R /Im53 60 0 R /Im63 70 0 R /Im55 62 0 R /Im64 71 0 R /Im60 67 0 R /Im59 66 0 R /Im74 81 0 R /Im86 93 0 R /Im383 400 0 R /Im384 401 0 R /Im385 402 0 R /Im315 328 0 R /Im295 306 0 R /Im296 307 0 R /Im316 329 0 R /Im404 421 0 R /Im316 329 0 R /Im384 401 0 R /Im390 407 0 R /Im296 307 0 R /Im295 306 0 R /Im296 307 0 R /Im297 308 0 R /Im431 448 0 R /Im138 145 0 R /Im205 212 0 R /Im136 143 0 R /Im389 406 0 R /Im138 145 0 R /Im82 89 0 R /Im82 89 0 R /Im86 93 0 R /Im133 140 0 R /Im187 194 0 R /Im69 76 0 R /Im64 71 0 R /Im59 66 0 R /Im63 70 0 R /Im55 62 0 R /Im59 66 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im205 212 0 R /Im139 146 0 R /Im187 194 0 R /Im69 76 0 R /Im64 71 0 R /Im59 66 0 R /Im63 70 0 R /Im55 62 0 R /Im59 66 0 R /Im71 78 0 R /Im85 92 0 R /Im86 93 0 R /Im134 141 0 R /Im86 93 0 R /Im191 198 0 R /Im68 75 0 R /Im55 62 0 R /Im58 65 0 R /Im53 60 0 R /Im56 63 0 R /Im60 67 0 R /Im59 66 0 R /Im79 86 0 R /Im85 92 0 R /Im60 67 0 R /Im59 66 0 R /Im53 60 0 R /Im74 81 0 R /Im71 78 0 R /Im134 141 0 R /Im86 93 0 R /Im137 144 0 R /Im86 93 0 R /Im130 137 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im205 212 0 R /Im132 139 0 R /Im184 191 0 R /Im192 199 0 R /Im62 69 0 R /Im131 138 0 R /Im206 215 0 R /Im233 242 0 R /Im58 65 0 R /Im64 71 0 R /Im67 74 0 R /Im53 60 0 R /Im56 63 0 R /Im58 65 0 R /Im56 63 0 R /Im53 60 0 R /Im54 61 0 R /Im60 67 0 R /Im56 63 0 R /Im86 93 0 R /Im398 415 0 R /Im390 407 0 R /Im299 310 0 R /Im385 402 0 R /Im316 329 0 R /Im316 329 0 R /Im399 416 0 R /Im295 306 0 R /Im296 307 0 R /Im297 308 0 R /Im394 411 0 R /Im299 310 0 R /Im400 417 0 R /Im300 311 0 R /Im315 328 0 R /Im316 329 0 R /Im401 418 0 R /Im295 306 0 R /Im402 419 0 R /Im300 311 0 R /Im315 328 0 R /Im429 446 0 R /Im393 410 0 R /Im390 407 0 R /Im299 310 0 R /Im298 309 0 R /Im316 329 0 R /Im384 401 0 R /Im296 307 0 R /Im391 408 0 R /Im299 310 0 R /Im296 307 0 R /Im400 417 0 R /Im316 329 0 R /Im390 407 0 R /Im316 329 0 R /Im296 307 0 R /Im385 402 0 R /Im316 329 0 R /Im299 310 0 R /Im296 307 0 R /Im383 400 0 R /Im384 401 0 R /Im385 402 0 R /Im315 328 0 R /Im295 306 0 R /Im296 307 0 R /Im316 329 0 R /Im404 421 0 R /Im316 329 0 R /Im384 401 0 R /Im390 407 0 R /Im296 307 0 R /Im414 431 0 R /Im295 306 0 R /Im296 307 0 R /Im297 308 0 R /Im130 137 0 R /Im54 61 0 R /Im54 61 0 R /Im86 93 0 R /Im205 212 0 R /Im389 406 0 R /Im138 145 0 R /Im188 195 0 R /Im132 139 0 R /Im131 138 0 R /Im53 60 0 R /Im66 73 0 R /Im69 76 0 R /Im56 63 0 R /Im53 60 0 R /Im72 79 0 R /Im60 67 0 R /Im53 60 0 R /Im74 81 0 R /Im64 71 0 R /Im59 66 0 R /Im233 242 0 R /Im56 63 0 R /Im64 71 0 R /Im116 123 0 R /Im66 73 0 R /Im64 71 0 R /Im55 62 0 R /Im63 70 0 R /Im62 69 0 R /Im59 66 0 R /Im53 60 0 R /Im63 70 0 R /Im63 70 0 R /Im64 71 0 R /Im79 86 0 R /Im65 72 0 R /Im53 60 0 R /Im59 66 0 R /Im66 73 0 R /Im53 60 0 R /Im82 89 0 R /Im82 89 0 R /Im189 196 0 R /Im71 78 0 R /Im70 77 0 R /Im54 61 0 R /Im56 63 0 R /Im64 71 0 R /Im59 66 0 R /Im65 72 0 R /Im53 60 0 R /Im56 63 0 R /Im79 86 0 R /Im411 428 0 R /Im53 60 0 R /Im56 63 0 R /Im63 70 0 R /Im55 62 0 R /Im65 72 0 R /Im86 93 0 R /Im133 140 0 R /Im72 79 0 R /Im64 71 0 R /Im63 70 0 R /Im74 81 0 R /Im74 81 0 R /Im60 67 0 R /Im59 66 0 R /Im71 78 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im83 90 0 R /Im139 146 0 R /Im72 79 0 R /Im64 71 0 R /Im63 70 0 R /Im74 81 0 R /Im74 81 0 R /Im60 67 0 R /Im59 66 0 R /Im71 78 0 R /Im72 79 0 R /Im86 93 0 R /Im85 92 0 R /Im86 93 0 R /Im130 137 0 R /Im135 142 0 R /Im136 143 0 R /Im136 143 0 R /Im83 90 0 R /Im132 139 0 R /Im233 242 0 R /Im56 63 0 R /Im64 71 0 R /Im116 123 0 R /Im66 73 0 R /Im64 71 0 R /Im55 62 0 R /Im63 70 0 R /Im62 69 0 R /Im59 66 0 R /Im53 60 0 R /Im63 70 0 R /Im63 70 0 R /Im64 71 0 R /Im79 86 0 R /Im65 72 0 R /Im53 60 0 R /Im59 66 0 R /Im66 73 0 R /Im53 60 0 R /Im206 215 0 R /Im55 62 0 R /Im59 66 0 R /Im53 60 0 R /Im80 87 0 R /Im74 81 0 R /Im73 80 0 R /Im59 66 0 R /Im76 83 0 R /Im53 60 0 R /Im74 81 0 R /Im64 71 0 R /Im74 81 0 R /Im86 93 0 R /Im137 144 0 R /Im60 67 0 R /Im56 63 0 R /Im65 72 0 R /Im55 62 0 R /Im59 66 0 R /Im318 331 0 R /Im55 62 0 R /Im69 76 0 R /Im61 68 0 R /Im58 65 0 R /Im55 62 0 R /Im59 66 0 R /Im59 66 0 R /Im117 124 0 R /Im69 76 0 R /Im115 122 0 R /Im79 86 0 R /Im63 70 0 R /Im64 71 0 R /Im74 81 0 R /Im76 83 0 R /Im53 60 0 R /Im56 63 0 R /Im74 81 0 R /Im86 93 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 395 0 R +>> +endobj +395 0 obj +<< +/Length 835 0 R +/Filter /FlateDecode +>> +stream +x¥}IÏ5ËmÞþþoi/ü©kêÁËÀ1M`ÃZzHr¬Dò¨@ȿϩÓdSÝ,øú½Ró°8ã¿ÿò÷?þýðãÏ¿üû/ùgËåç²ðÿý«õgxý«íõýõt¼ÿüÍùÕûcÙ~üÍ¿þò÷_ßÇûþø~ϯëûúçùýïß¿þ«=þLký~{ÿIß/÷ïËÏm¿ßïËqÿ>üÌùö}ú¹¼><ÒÏ!åËÎßoáþýö3.âï|þïßß-øôËJø&à¶Bã@YbÁþÂa:B!n^"T$)(väE�°=ØçBÞL\è!&Aî*r(ŤÉ}û�ÖäÕe"⺴>Ð'â&b`!"hðÔ >] $; v D9x8DI|X´î^Jjb£@ÔF×ëëÃ>BY.êÜÄ[á`ÿ¹Þo¥k©ìv$Ä$ÉÁÓ¨ö1ÈY7aÀ�ö9eEÄÀ~µÅb3ª}VYïÕ¸æ9÷(¾LÚܶ0gâ&i#pµÅIºÚâ.Ú õuás÷B<Ö9QNè¦ZDyùYrÀ~vùY>\°_ïì§Ç}ÎO}?å§ÇuÎOo¾Ê@¾Õøwÿ8L¿ßw¯ÃÄ�ÅK&Ï 9`ÐCØ¥#Ø®´n¶��x)$I1Þ#°ß�^/ÀQ_çárÔ½øZl�Nj0xZô¾ ¬6AûÙ-�Fl¢,\ØE¤�1xȲ8ïHA8â9é+r°[^½t«-A26"�ö9$�/7Ù«Ï_þ7}¶ùU¢l�+Ù̪âhÛ¬bßÁ2¤þkE4IÈk¥àã*ÒÀ~½Æu3]¯c?y`�Võôã¤:&éy³tãhñH6=ãh»ø]ýíæfÆèÅ·ûzÀ»¼,fâë{}7*¡¨[ÿc1áßÿþ;X�ý{q9$ +�^f�W{Ì�àq�ãï#¤4y$Ñ�¡ ,Ñ�°f!K4@â% +ôÔäî¥tE[ìR`>8BÿÉ6kL^O*hN8G>\è_ e+!ö�:÷ïU~÷¶\�¼(I"LÑkÕÙÇ\çä ºS÷Z¼ÔY¿Ø� HÂË[ Æ(�¶Ñ ôÏpöÀkcQ�Àq07 S<ù°Yűè½Z.'q`Ôºl¤KF- +9yðý3�Ó}°íi]Öoüí<d?¿Åßþý ïö¬ºxIÀ;r±4r±ý\>ô__Îîrý~Lô x¾SÖý@ xÊð¾^ß».öãö÷{ý(ô½³h%,Àö\®R®©�À)G£}�Q¤ØOK ðïÒ6'5<%µêãÉG$]V �ÀÇU:R2±J\îu%½g`�"Ü̽À~º }}<Iût�~hRø9ú#£&ÒàôÓ³dÕ- ' F @´{ÉqlRz T]DѪÙËojÙ +̵qõIûádÙ(®5¹ÿj]Á(!¯ÖM:òjÝE"¯Ö½HwËÝÂÔørRª¶îÎÊÔxìsDLäæ�6°5ñlØOo¿.fÁ¦'%ú5Ò÷H¢2|-�$·'�ü +¾¸IÈÑ\ ÙË#{ØÒ�''ñH(T#ÄË1�b©]7=+Ò/Z(LDoÑBTÅËÏRßG[×ë¾òäMd#ñß$6 >®9±Q ïG8Ò¤A96(^¢(@²{)&QV=´�ç0"íÖgH»õ9ÆÝK(l°°jÑRõ Ñø\xyçÏÍ¢=êàI£ÈU£HÑàU²ªH4ÎÞ«)Ê.À =¸ 8Ê" çÊaóòúÏÑM+i±YÕ®«ítÕ·äsÕ)/±®Î$_L«3©@åö{àfd¬î¢ �TW Ýr]{§=TªY Ùt>©ådÄEÁSÚÚ$i+Hi¬$HP@¶ª¤/Oyu¦¹:×MÄ�é0@º!÷eR8C´z³Í¯Søxl@ª¢UF|m· °L6©ïb ÕÄGÅÕ>$£x¢UÞ1×µkL6mê¦kc§{±F5_÷Ý@8¶µúãÉÇJ{HwÒ°ÆMºìËâVL7´â+KÉìdt¶ÏÒ`EÅWïG{ºk7nâ+à1á}cÂÍ÷@§?ÇÛïíFy?¤ïmIë¯>¶µ4µ#öôÐå*·JK@'p¯=p¹{?h ¶¯½IDD|ídã~84}äÀÕÏÉp#.£ÚAN¬±QqÖ%�F{z?(Ó&)ØDs¥E�ù]d#ÀÙ¢48$]@^²M¢¡=7 ÚÔÅÆGÅSNÒ�ïD4H$/~dÙOëE©®¶S¹O2ËÈ+K¢<¹²x1�\(ÑÄ >E¤ðbZEÄSWñzÊ?8Ñ60ýÏËS?x^ Ú½j' ÊJ¢>C¼]Å <ÅÔv´«JxÞ[;Q Õ k|ß÷m ÿ§&ö³1þIeÀ¸Fw@@@�ØÊyb@B{=\ 1H-�¤.PëÌ ©îæ)7T@°§Ü�\,êÏaÐ÷Õ©?»Á9YM¥Çú½t42âÀb¹ú¢La=LêØwò¶Uf¤ÌXÂ�y5òÓ¿Å�x5Wûm¶ `� ##Â$A²PDx1v A$¨DìM<ÙÆG¥d»ß¯2åEQ\í6ù<«èâ ÒÝ<x6QÑËCfNÚúV* ¸�ì¦Ûu\ÿµþ£?Ô9eTijÆ~}¯Ýî] +°¯]»ô¥³ô½½¦^´ß?]¼¾s±ì&*!é �p.8|Ób¤£â\ÐÔ�d84m1â©éÀ~ròâQ&6*~òæ%"ûÉQåx²PÅOw¯9 +ûj²G +ö´Em^ÿcO{A?$A@ÚéÂñóXtØ\´z_ů3|îöpXøpRö*t~y¼õo`± !E7:EZm§Ä ¼ÛIÉ}ükäʸ´ ã_ M<Ðøò·%q°Åuß8eTòò¸+9ÖT¾',¶°èUI >!ìn¡¾9Ýmp8ÝKBÉ\$Û�Tãì¢yʪ8gâyÛÄGèë6ñ<ÄáóµöxSh8#²ÆäoÂïnòÚéû~Õ7)Rÿ³H K@¼5ÚpÃ�©,b�¸¼ìµ»À(ØfXáqQ +:ñH{¤B¸¶_�|ÃH¤»q1±QvW$�MÞÎ=DkØ}ÓÃ.ê \2P&¥C´gÓ¾DREWW®è¶W®è¶W®è¶W®è¶W®è¶W"·ta8Ù-HWk!.Hïàõ·JFÕ(ßó+ óm¨¸MDò,û¤U(H@ãAêrZD{`Ë»~v_«@sañ¹x\Ø|Ø3£4ß%óðôâU;ãàµåâ/E{?n,tÛ#�³ÞØI}g½#8$.8ö~¸ÅèrRÝr%""Ám-·G@æ!9lå�ð $À¿ºuáæ¤hÐwR×ãtR_7_#RØ$mB.7up±9°iÊ�(H2çÙLÚп¤@·s`!5 ³ÚЧ7+{ ùò2½r$HÈThé®ÅMí2²o1ÝM}8_U¢AÙM4ÐðÞM<Ú/HÛäÍp9Ê]GsÝlÜ%ÔT~Þæt!É]Ó" ðæ£hn©ae ýÆÄ }o¯ à×Ò.)âèKû=0dðG¢xÔî^¸Ê±®"öÈ"k@9oØ»ñ_]r¯.ñs!Ù¸ ¸ê" X*ÅGÔ¥Rªó�XBv�iH[£Ix²2Ñx[.Óò$ID^\{2Q'K XYÁ5#A÷L¢2«n³©qøä²¾å´-�SùW³&§¸MZ¢:#°ãÜÍ(H<yñ^,@´U&í{ú#.(�$A¤Õx cõÉò*í¶Â ``j+ä§ÃÆÆ}"îÒDTØÚ]V â!:ÚÈúàµí.îòº´b¬Q¹v9=¡A4¥>Û<æ¯ææ{Àìû ¿Ë°´¿<5Vá{h,vôvÒ qEdK"ñ ¥¾®ÕEÕÅѥ̽I�Ê7·ÂJP?¨æ>L¦`8W{tþoýÐÀ÷àÛ$mDi·¡Ï #\@&:sµ¶ûÓwÔ6¦l9�Ís¢ÈÕÞ.Q<1X}$.�Ö(¤MÚ¢,Ûk¹ôÄ}7óTëÑå¬$ö9ï$& Q¦U²(OAê¿zÙÁj�<_½JD=yi@\ØWúê|,:#IBõçæú»°Ç >n²S¼å¯u7ç*~}ßÈ*oú~Wd~¨ æüæÝN·H@ü«Eâ�T #</µ~ÅA8+Ê}XצÌ2B dd` 驵]¿ïÛTI¶xuåt~䩵@Æ·P^îFA¤~*J�ò'ªa $eD(b`)îþ¼ÕN6~�¦IqýÔèʸI )åO AÓ"%AB$q1@³I9Ø$©¡[6Ýtá¤�$"ÏÍC4(@ñÓ$Q¶>âm4ÅnÈ·1içKk¸`[¾Ë=Qo²]JV&Ï]M×cÏ£Mg%Î={!OtÅ++ãµ(RÝ#¢deDynJ.òÜäT÷ÃN.¸FEàvÓ¸þjñûovØlZiDÙôZã´HÛ¼÷Äâ(E|?H³¬!¢W°õ]õtázXͦÛ÷ÀÍLyµÑ/o�zÔÍnp®¼-yC³üVXM(ý¼" Ñô<~RCcnÉAWkVEd`,{Øø´%JW0�;«xÀÕ_mGè?ù6>Â7� h(ÃÜò:]触ö ÀÔé_J]èñØMDTÒ:.�ÈsáG\èc 4dk ¿�Æy¡ÈÀÍÃkPØÓ0@h%QFz~²t¹"áü"qñr(À³×hû4X³éjë m§-�hs//<WS×ÁoWNËH|Dî¢m`1°»i<÷fd×yì¬f&&gqô¯ßwÁvé÷¼ ^ :©;Ú8ÙO�¤BëphGÓß��¯®KNÎÖËSOz!cI""ê¿\ý +AùÅÄÅÕHbÐåó°IG�Þ +«MÆQý(1õhDe`§dP ÉöQP&¤ÕB4È»ùµ/e¤©ÚÆ ~éÏ"Ú`íM HDI±õ§nÆ«�W¦¶Õ¡ÎmSõè§.],§n»XýIâ½�GÄñ«¸Íq%âî¾X>,þKdGý¨Öb[j¤/^G¨óRËK+ëôZIpæY¼²S³ÇË.¸jWhBfEÀU»B2KpÔs³s¶_(ÝÌè,»â¹A¯{�J@hÐ�öÁ'dúÎ>I,b�LöË$ö9ZWñGÐËj°J}Tê>)ÐÍ$!5<uÓ{¿^ÜåC$"Psl$I"ÒÒ+UdS¨hU0×DÆÙBÿÁÆÝ.(å'é}R0@BÊYÒä¹%6f ?SÔF|ÑçJDX4ë@\~µéÏ$ ìïÒÅÕwQ�"¢6Õd÷oi`÷öÓL7QµÑ>¬Õ:*Ñã'²£º¸Ýé�\èÞnÚl1®(ê!¡L~I�dK%{ª^.6Ê^¬¯ø o÷ |h@cü4 E~Qä$Ù7påÁ!â32\´y¯¤wýL £Èo\�6HãʬI\D$$Ê@ïMäÞEï½éOûäí?7³ÎÝDFÅÏ[MfµOF~ºº%¡H . +ûy-�ÄϳY%ó/iòdÙD£<Y8ÃÑÊ2|óËÁé¦I\§H@E9°×z_ ÛqäçåZU5áçÕï§ü¼\3ð²#�ý-á¸Hðí(¬8{x�&"j&±±ÉÊ�|cðdõo×<+ÅFD¥M""ТÎúF4P¼¬mòT]yDó�æG@¢yQÐ&¨«\�ÇÆP$æëI¥%AXl«1IF¥%QX%Úu V$6B>V2²KÕ¥Iêl |;i·#�ípä¤ù%q èf;âÂÃéÜ7;in6òk(_Yã÷÷/wª (×Ȩ+Ã'h�Qp4ëyç"ÐàÉÅ~#R<òK¢}Hl[�Ul[�@MåöGGPf£¾@eHZ9«$Ê@`pü¸Ù$qôicÿÔ::BCDdóîÕ OÒwʤÅEÄ�¸[à)HÝwcõòº ¼)ÈY Ô<DQ¿üHús½òN�¾1@Ú±(Èc `\2ÙeÅM³¡/JÛn%ÅÍ¥â.ªâ§¥9£D'H³p,ìfSl¿Ý¬mt³¶<éfµ�nÖ¶NºY ²s*D¹i×>$�'ÙÈO×h1Ý.xH²R['a`YÉsDIDfØJL¬NIä`¨@+ÎnÓ ¾³K#@nøª ÉâfE.(^$H¢mj |ÿòÈ(*�DA@Æð&ÖÇãû¸]¿Åóp£xó6øÍôúÝ^¸NóuÎ~~ïÊyû6tªÏe°&aée9Sµ~w@k&9ÕT[ +xlar³P¤¾£�xÀSEÑíÀÛBW�¾LuH¶G@`P;ÑíWÓÆ¹®ÕÛWD9�ØH#¾FlT�¯ðõ¼G�¼õF0�ºD9âV&¾ß�¶>¾%" {ÑÑ$Ù=®Iº@òuÇ ðàÃÆ÷{�$QÄ×YdY{8©µx~TTåçBؼÿóf²ªJGT& åÈøõ|KøyMÒðkl£²YÕ~£êf3(}6îeTè9¢2ERgdt#M9Ê4ñf±dÛmT¹8·Q±¯[í@ÏÞ 4|dx ¨�eìxàjI�TuÑ,�ÀE¢âû�0¥ë +D h0D¹1 B×JI¢0N7l"µ^MGõ� jhßo ì+p®²0¯.\é:¯ ñ$·:_næà}O&qÜ��r p±¢hÒ'O"¢cfvòÊEÍ;è/»ÌgBÎÅW g-ÞR9ÏN·Ù×héØÇä8[88ÂpdÞȬ÷%ñï¤(KTgdå¨]8[ôîÀÑ(ö{ <1p¡lò6 q Erv/\ñФ7`ô¯Ö¸HG�®VvòLP�lT]h�<¸W`$o#;yÉÛßÈn9XE <(vÐ�"qð\Ø$A@R®Ôu~�Ì_¤®s¿>³|<$`ÚNY¦åÜÞ^Ø/¹,Ê7 âÓ?P¢¢Yµé®4²4ñ»Ñ« W0ð¦ ør{·$ð(]ûy$øÈ;3ËY¼Ê¼f1®" Njû¾©ægr·X¢·XÞ´É>f*âiJFÍ@`?oä�ðóx[ØQÞ®° ¼¤�t;òZÛ1,�àvd³Ü�nG6ËÑÙsyz6ã �ÄÛÍtÀÛåx`HbW1:Q®x`Ô»ºÆë¨7çõ»u9qÝݺÄGhå¨MÈtaQ̵$Èä»ý¸¨èì ´ mÃûF(EMë¦(âMsìj oI Ì·¤Ï&Àyçä5IDÄLDì³1·#.¢:±íbÓFÅQ´Ñôl"gùõü};Ë1©Î²â(JFñiUû·m00Þ<Íû¼ÏúDÜ¥# /NºâéæiFw£©Í ·èê`~¢3q¼^�4{ l¡ {¡9²â3ÏAïæQ�&�«Z&À®ê�>R2q¡ß,HÞ,Û0ä,áaNÓè%â§Uõ©Àj£«b�@ñuWéH\UDQ%6nÙÄFÅÑ\$ü?GEqmä¨èbâBßÕ=¾@ç¾³ßǾب40l £,8g/Os J cS«ÕµÁ�yqäävUE³¼8J4eÅU1@\Ué~G^¢IB^42ý&ÀãË$ù^²I^hÇ!*2PDòqDM]Ìü¼<Ý8ËwC«gÉ*d��EÙ(¶�i[ÜLÓ�xø °b)G@öH�=QüünÁãf �(nÖ&"Rä¹o,C!E,÷°Qk 3EDe@B»WÛž¾ÂñEeh](Ë@²*H�tñf`? M`¤?^4{«Úä¤sËS^Èa?M¢&¹b^m¼f�g×µG@f×e§8+ÄÄ_çì·[8KâCxËDD�$ÚD`zÞÕñt·)¤^ÖÝ×ÇAÅ +ÀåmsDñ�¸ÉO¼@2ÇÒy 4?à�éÈLSÒ±ê~H1IAÈá@¯ç®kQ"ërQÑ7Q¬rËd¢Ye¿$m".Цï�ìªÝ0õzO~½+$Þù>H`LÓ!qOïw«ë6¼±lDDÅWÞM¢¬øâÅ`OrÔ~Eês!I Ltá»gzdP,Z.86Y¸/GN~ìA«ìh#Ýʤ í"Èð=ÉA@ +¯÷C0ªÐ^Cô"â«JÀë$SuÛ"ô/Ê¿§5}|äv �HâBs`·Mß��#åoG�H 1~"& GPt$HÊ!$Ò ?(p£2gù��EÖ cmÚ¨4nÆ®ê@D¦>0@ø)áÐFÊî&6*®ªM�¢:eB<B¸ð<°óÛaØ×µp×ÙU%wm»úDÌâÝxÐgQðåºîÛùrU·sÿÛ, 6é^@E*ôLûâëУ©¬iÍßVÝnÑhFª-£sB¹÷ö{ $KíDí÷º{¿'L]Û¾{ªn@ÖÚ9pÞ| pe{ÚJ¸& + +MCàbÍÁÄGÅK$ɤ yO4|Ä9Q\ã¤(®6mêGâ6QÍA$Þ%LÏî?&pØ0P<4MUfHfIñé@7�±@g¾�h!~MWhÔtEÀhæ´1^&Í©<Ò%Êo.U/µß{_øbøÆ�é½_× Ü<´�PçºIO²HÒÙèb û8´LzI´Há>#IìbÀnnnC/窽´{ Õ;Ú£ÌTÎU¿wé2³°Áqs³ô=J&ºzk5�lMïÜr.¢�\¬7ðñrTT:ÖK´UyH ö6ÉG®h�u #¨ +0�2T¡ì¬�·¬ß� çÅA_vÑ ãDeâdÄRE]@êKÓ=àU(î[%uîZ¹Ü\ï½Â«Pü4H¢ ÙgFÙ"zîvÄS/Ë$8»ãæÂ*ñÔ×"`J§6� HwؼZwÛåªx©¡êNÉ G8DTwF$§|øoü}ô½üù±SÓ¨wð^K¯ïÁFgÚJDu/£â +_5 ñp%»I�pnHLñÜ�ÈJ^®ärcÀwB�©9È&)�è%Ë¡ÍÊqN¸ßÝ¥Jßn�ã©VI!7We=<ö"½DDdí!f®øÖ(#ÚeRx¥ÐHúQ<êj Q¼(¹X£¨ÀÊ@~7·VÙ¾í®&ìÕãq¾=§÷ß'ñEÔ&[Ó @¼¼�»·êÀäûÀ(*^¦(I@ÍÀ&*½g»F¡O=MÒ`_MÚ¤ÄÅûÝnÍzÑ@fÙn8Ëê¾Ã¹É¹1ÝÔ¤/süáܨïdêºÙW׳ Lâ�44H�Hf¤!o¶n ËtxI$"ÐÆÁØä]`Z$"B±ÔìÕ$Æ`T §4èG2i¬óÈüÐÍd/5ä@ Tðåb£¯'.6�E¢"RWºDQ çNÜ*§*+`dYø§´0%MRâ¹¢>®6W´w£mÆ9t7ÝMý#&*¯B_©¸Qc�IA +7À�:b£2Év¹)ÑTÉ*>¹Ð·rTàùníºêiÉ>[Þ;·plÔ÷FýÜà\ÄY¾ïD¢pìç÷]ªÈ÷?}¿KßQ¸ [ѹãíòs`*·5� ZiL+&&(E�¦ÒâL?iÒþøæÍHĤ÷öÜ�Dc"H«H »ÓaY:åàKÔ×í;0`�Ǥ6"h,mi ÑØERg$D¸£½¨¾E?iæD(p{ôþ3î×ÅZ·ÑÄ@G»üÌËu3ÖXZ¾nÆô¼Ú�'äÝ´¤'»~N�\Ó×BÁ¢Ða·á H3Aùí)Ý ì�¼Ââd0Ív +A#½ºn8,D2úÈc9ãÓe½ <ÓýF.bÅö]Àû£ Reï9_K2e-Èó$ý¾EÎuóK8,W,AéÆÂøjt¤@4ÍGS¨ØÇ IR&�m¡/A¤"²&=� Eí %ªMlèOU*g_g\w|ûÅ;¿f2(éý7[¦ë¬Eù8yÂAù a7õÇvµR=ű5¬»Â±Ñ8iY¹RÕmZ¹!˱ny¬>E G$û|DÅdY5ÎN¤Æ|ýW1É¢Îwº 84é¾ êÄø9I RS÷©¬h}òHE B|9KÎUÝ/âô+äaSÈ~AÊe²^2:?RHA^Æù%5<ø¾£ÖÔØf[Æå=Í´è½ä¨ºê¸¢(o5!ÑâÂóëÓ±�8!´vâYiWqøÒê�Åñ¤fÕJ¦á¢£k$ +·6µ ±Ê\Ý� 3¶¾y¢%H\@FéýÐY5ͦn|&«ÀÇw|zø`· +<(ªð--ÛJ°DIY$*dÐÓ"1¯u³÷$Ø % Aa� c$Q|¦>î¦` ìY:æLB2!Û´IEIc�nÂ]«Ùä°&Ó¬$Ô% |ü) õh³Ïhf%£.J³½lçß»5çßnaF½Ö2õÓ~¹oO©Dß)áòN(�Òf +èE JJû0°DOu棴#ÎbP�\5ê0j u¥,Îb±@uR·#�Àv9ë5B»jÅ> ¨EiDá�~ÿVQSÅ$Ë·z²lqóP>@vÈ#L²ñhoº¬®æ;WtÛ4Ç77ɦÙÈ»ßGEòQ>ñÉóbh²ªi? éùïCx¥7=oìݧµzS8ųT¼^NoïÜÖT!|ñÀ6ÀÒð}x õI¢q»Éé/."7á¢Ùv +g§ÐrÊC£µâܦåáIezÕ~qó[v¥0á\ði(ïÆµ|sóÆà1|D%¦©2)ÕÕ÷5i·aÐw¼QX¾Xv!Ï'.Ü�XÞ³«\(fôí7l°ú#{#$oè^xµ÷è-I¯?êG¨b$^ ±JþØn'â¾ÃóºÈxVzÔký3¦Á_>Â�ìµÏ~2Ð[3rù», 8pª¾%ÃãY®Hta}ﮬùðy®ö(Q]ö;L{&8æ*ªPs±J^M�|ãé �²>]àë¦;$<#¦J^ä²* +GÂÆaWÈtÀGÕ~@æøÐ0é�¥PàÔ1À{3A +´þ[D2Ñü0öp¥À@¡TÙ¤O}ËZ®&_¡ÏÊmµ±²'ߥSØ¢]Dè +!ÝvÅ(ÉúhrYƪq¬PEt%Q_¶Ðå$5Í·¿]åØmpI.¶#(ë áÆ®w°&¾×B+Á¢~a"»¾qq&F£âÙàÚ PqÖYò ¨013'VoabP¨+üêÕ¨Ëkô«Ô>«RF« x}³*uLªÔ>¨ÔØë»±á¡Á »RÊU',I×àop <ItÄÉ>8öé§B&wãF N* ^¯I/!)à¶I×YûÈÛâg ¬&«Pr6f(5,«ch×ÙBL29NxÇ &¼ûm5 +ߣ÷j[ù5�^&Ap®¸¼¦�2-; #5��Ù@©æ987ª\>ÏJuÄËô/ZvW¾ÃAI7 éfHÆ«¾ÓEÓ¥I.ÐÞ¡:+Múg8²t@¸¦eRX/�®úÎ+ß<`CßWYDQ´ÅFÞ)-µ\�0¢:qº'¹6úd ¤¼3Û®¦~ufu(ïMRÞ¹N^£ ß®¼-}5±QÙUNâNøª?Ñ(ÚÓ'uÐÏÛÑ«ã�´ Fªê¤'gY`÷r£A7u¥/îNnÞcÔ<ê|u?·�ðI7-�Ǥ�ð0å»W3-~«xGîoyÕEßå �¨0ÐÆIÅS[L4.z{\?Á¾6¥®»V×y-j´ºKV׬âwbÙôþ<W¬Ôܰ?¨äáòÈÙ¤ö{àz¥xùí{À᧦Il$ + 5¶ä¦Ý��o×`£Aÿq�$sÀý,D«ùq_À=-¤ +»;à^.FzÃåË4 gN ¸Ó»I@^°³6¡¾@çBX%DnMHD©¶Y»°vA´ÈöY»`´ÃR¿]¨.Ó.Pp3HÒüEe C0Âå©·4ò=&[ÌyÒ4½Ë1ç §qÓ²§ã{§äD@5¸ÝLÓs@Çp(ÂH«úp³m@ÅÉ%ËÔKÝ»ï9ÑºÚ C}»ßÊ^ß¶9Û¯):÷^1!оDo�* À¼ �åT%Ñ ÓRÝ¥J"_�|-ìÔàæ?B¹�ÌcËgÍRíÆ×Zûr@l-Ïeÿ)Nl·#�KNiÖ �®ÏÒð§¾>E*«©³À¦}9 èÜHúV}ÉICÖk.¢6"^%6"%©A¤'�Á×âp?D�q±o6äxÿHoÙ1É,é3°¥ârZìOq¯&ûÝÆsZ�ÖºÞ³+,ºìÞA6 Â{@C¤"2Ùßâ$Xü¼¶ª¢æc½UoÖú8§PÍXãK$Óè +ÀÁ´üº=ÁórUܼ]"iä-Eûéù¸_Þ¨Nþ}kBC¤É³NKÝâýHç\k4yjúmq°5õ1]8EBTæh£sØ ¦ÐO#H6JvMkÖá<Å +7~Æ'/âa·Ú'(¹-<ãkå¢Ú²ÛwÙ^Nc~kÖöuÇ$Ó¤Lo)ÙwÞÉÊ{×X¼LÜò äëò±ßt¬Y¶bs)Qª×q´ï8²JCT°ÉZ+Øêç`Å{L³tÈCKÀ/Á¡_QJ îè°Nb3B°Ú´[qBÄÍgôY+P&}uçî¬Z¹2wgÕÒ¹SÔãÜã%@ ΪH¶F¹Kï WÜ÷îB6®´2Ô¿l"À +ÐÝÎÚÿÈÝOQn¬0"qäñ¸ÎàÐ#iEá9®£óf¶gÎ;gkZè@ÑÂs,�z£ÊYÌÔrBLЯPÓ)Ñ;_a!Ã÷|¬l ÏY¬FúïÄíÁST§M|¡`± W-Ð!Ù9c ÞæHßoÂ÷H%P¾Íýp ¥0ÈÎmW´¡%!ð´£S7�6x¿Oãr oÌZL~LQCûÀöZÇóÖ¤¤ÏiÛåÇ.çà5Hlo°G' H8@µH+eçn&É>'¾¸mÒ;v:c¸Äm¸u×oxïµß.QsÛ.ñÚëR+e<«I¥úI¥#Ø'Cð2=·U\¡è>BnôÜ>®tØØÐoäÈâõ�ì?g«ÒâãõЧb9LTìðp²º¡"´agÛ&%a_ü÷Ãû»ÍÓRRK«Ô¾GÙ"ØKjǯpû·N�t¹À{YÜúxYÕÅgQä!7ó �ciã¹ +ªáRð.ò#mÎÅÛWPÒW*y¤¯<VêÆ7ûãE¸ê»Á >!ôýMN+ A)!b*xc¿_£DFÛû5P`ø +pøá¡pí½(êÄVÙ- \1à:¥ÀuçË! FußÕÓ:!,ÞRáð1ÎBßëê% Rá¸^ÆÁþd¥DJ&&øuâÚcwµÏKC]¨ÄøÜÀ¤Å"Ñ�W úÀi_`¦MnQ""° +p+²F¯0P¼5ÉUfJ\î^ˤ^["â³f}\4Äî E^ªÇá*%:Êõ½«¹êVL9´�H/M�<1è; aH`ÌÎÚ*�OñðálòË�g½ø1'ܶ|;}$F(�`$wß� ÛDI.Ðúlæ¼=r5çµ�æ¼M�`\ÍÃ196ö18Ä# õâ6Ò&-MDÆÄ`ÒÆþ½E9� +4dÌ0@l¨8$DöñÒY¿Ä{Ò©Y.wÅËå�8Â&é²*y¹�f9{êC4ªÈ ¢è#Aï6.w5×À¡¨dNowuKß4HÏbÊþÊØÒ÷Â=h! eg©hË$@bZ77âÅvø¼óÂör«JÚVâÅáÜò¨*ãÎÛ)ªZ¦=DµìÆ-í�)dÌT<7(ûÏý !½ WË\/ªMÏT"\!¨EÝWp«¤@qmÑ&b `591û-/_¡Ú¼ØQUsÚl2Ù?E^yÈ%8F¼ÈeÔõêáA(Hç5Ùt³Ou·Ñ¡ÏmÖNæËF î>véÆA +2ó¾ÚûÂ^"`£d_/¨bB/hÇÊ +mðS²,û%«.:à¥o´u˯Y Æ|·Þd¼»û8$Y/ìÞdÉ¢nïÃÂ:)Õ%R]$¯û é íÖ»yÅqon»R½â7qÕu³ïGQ¡ñ}Cc*gY_= ³ aÂ)ê¿/¶E $ô¾ êÈûbNñ6UyÑÇáXfOq5w^<d²ûâNTÀqÇÁ2Lýj6Oì}ë bÉþívä £Q³¤µÂg@N/fìO8µÙ-A"M¤Ø%¢)ÚxÇÁ^× äÃï%»¤üzx/Õ:J(û_6¦þsߺ^úbgÆ^$B¼pØn®µÎÃ~E)åõnþµÐ"ÙÖBmF}!@|CÈEµ¥^ìGAD¶×!x]±,4¾K`!n¡Ünx±$¾1ôQÝÌYÉã[[(ÚßB0v*½ `n)ÉBvök]îdØTH´¥£ `ÚbϾ ¾@Wwò±;ÕÌU$\³ µ¿�´Ôܰï}��PÖbAßÿYÄ#�÷å2ylGPÂÒ ùwô +3ªM[tÑ¥eN2ÕÊùiI.ÀTÍL ~¬"¶`Áéû®â¼î&(ÁÈ8ÉÆMR&cYÄ[÷Í$ÊJЦLÝG]YDØ»tlìf½"I¢=FPDÕD�GÈI82µdÑ a¯lRnÉb¢¨OOëÊrõsÞ�}üY?ûÈÎÞ¿$£��¹©ØìÀ>Ì0QeF¥Öe£Ä»Dûåhسh �È�`¯^¢â×ȼæCÂÀ8åöàa£¸lúȱ"'³ýëê_T$�ÔßH²/Jêd²IGmJ2¿[6Ø+hs©h2Q#}�{Kw¢qêô[Í.«a>EP<=Q¡�"�Iº/è¼}ôÙU©3DľP ¯Chwy1°!òA ÆÅ;¹¦ðó·MwI-38¼! ç¡në^ ë]àAHçu¥¼ëɸØî-mzÙ®Ú-{I6 T|v·:pp²Ìit)Òå²ãD¼¹ì/wEsÙ»~»ìëñ½È:û»%ÖCßï®�È� 5Ðáy7ô½EêÙ»a`7«W�®eÕé¯a¥ùª½@{ôLg!κç4¬D®Öºë=Õ}2RkÀºÁmà� Ï?Òè�2z&e +ý5õ´TFÏ$ªÝ¨ðRPl@y@¦K|ÏøÝv¾FïEEûH¬´¹ñusΪàz�0+飷- wö¢´Lw<èÎì|ËÛ´C~¯&Yè[¶LMSwËfªã1gÙøé¶lõ9eÙrl+bÙr¶¡0̸-[.6ÃÔUJ.)e¿¾bk·#ØGàämÒ®dÚªí°+T¿ï¤Î8ùoiûL]O#9è{þ4 é¦ö8 «¹å IÉ'%J|fàjÄlùÌÀ)9¬Z÷/9îy%e!{WE)I%»:®æDyu= +Iª·ài ä*ÔZÙ¯ÎÞ ^0oëát6®Ì Ö½æ @oÑí¬²my!8 +)wòWn¤´Ô¨;?�=ð¯äÈëZõí~¨r9##-7-Fa ¤Ê /`DpmL �ë,ÃÄ ~¬3 ¾qZMDT\¾0)yö {Ïè¦í»ÀÊ�HĤPg[ ;êyKöËöiÓíöú|$útì&Aê{ +üÐ ï«,_%H�3©jÌ^ÀÀþäzà2)!÷8w±$©3r_¼6^Ñ*ÛòËßÎmÈ}]oÄÜårÝ'HW²¬>Aº"î-�{iB·ð¦A¥ ¢Îý�Íï¼Ñ�(ð ÒÁö!�zÏm! ï`¾K»YÝ:É9J|°ûý\P¸Æåbãr?(õÍ*îݨhjÿe³¸I®vÔ¼l($èlPÒÀ|0NeÞ�اñp*óÀÔ¹ÅÚ¶ªÅ~w"Ŭ¡*i@dçjôË,¶�}ºÉúv÷~,a=»#×ã|¶³Í£¥ÔnKÃZ"`í¶g,¦ �óÙ4ÎçHd Wð@àg<en¼°óÉçÌßM;P³ìrÜeC&j!`±'hOZlÕçÎq>-/q>}nfQ³L Ê¥åNÑÊ=f\ëøò]ß×Ù/k-ÌÞSÉut«ÝÑú>t@ZDëÖ,µETyRïxa!g&hé¶xàÖ_b@ÈncÍïê]`'Ò^ç·Ô[yYoH-à%Jæi¯Nä²<!<²SJ"%2¿ÅÏM ]ÐD lènñtOåüî"ÉÏYw +MõßwýjÊtq&÷úUß²¦ìu +q³ �ÍE$ºA�Þ¸4¡ \õü¾8Óê¼8ëüòLgJ3¿ÈMѼ¯È2ÝCÂÎt9-`:ÓåPºõâu;MêE¦Õéí)éLu.¢I³Ô¶§D!Ór4êEß-NAÐMd:SNÓ¼HM¢úõ0ytx.f¾/ÜV®öLòb5òBÉñ¬³§XÒÍöéLµ=DÂδ˼�¦3]Vn ýç!ÝzÐó8ÜÅ£W*¨Hwô +ux´H £W¸ìq�@)0DH}=r?(IógZ^Bm.ñpúÄù²/Úì~TÖW¬IïoPNi +yÎ�°áSaf¯ËÜôº¥4)QÒJÁZ +´Çï6 Gwv�êô z¨wzÞ¹k=qü£j×¥Uñ9HGTìÀ.õr¢ðqÂL·UùYÞr©Sè.Âs¢²a³Aßåññͧ¬Ó'Bû~4�²éɾýÜò¡=9Ñ6ÙÊÅN» ¥ÈÛ)ì©Ø_87Å{ô\¤@T<ÅqéÒnÅðÓ"0µ/gxFÓºzY³iøÒK¤ËºH:%*áÇðÅIÄ&w¼A!<CJµS0B°ât*lqöÛ&âYÚ¦=¹¥]éM8ðÚÏG4©TÿÇ1©uãó¦zY ¼¼ÛXÙµÑWpØaåÉäÞNa«ÓƽõR©Ü:¼¦�$íóë¦nT�êr;ZDxY7/Ûù@k½ó¾p°ÕÔ¾1ÓÌÛ +¡þM¦ÁæK$- +&a ß©0Ôz@Ìw:5»&ùß½NÍ®sO²×%§£ª'èA²¸TÈè2¥y·CN(O$2ýUÔ/¸àpÅrÌö]/Ëdßu9%Üw]½¤qØwÝpô]·�<}×#}×-}×7*"Ãòw ½H_õ¾¾ëM""Ôw%QDú®ÏñåС}×-�¨ïúLõÔ#xû®Ã%IÞ¾ëÕ ¡í»naë»þ,zêCx¾Ð ×7Ó7^»M7^»M7^»M7^ûM7^»M7ѸM7Ñì°ñz¤ÃÆëÛðÆk·aáÆka¹5^תÆëÑý0l¼ÉÁ°ñú¦xãµ[¸ñºÅÀÓx=qãuÃGOãõȪõ_¤9.úþ{R6)xãõMðÆk·$p¹wÙw§$pãuÙõåúDû·¯°V4ô½5Ýém$j/¼C@¯£7^Ñ®`ãu$w9�ͱnHOó&ä¿ÂÙp)ÀD³ã¶ëÝ,ÊÈÕ ôÓ$`ô»]�ôüRçu=oì,uh ølÅteYç"ÐaWëb9�¼ÆL¤$ÖI.Ðq¿$®Q:JؼÈy�Iô{h�4èm< +aж)"%Þ6�6:ôÀáUrwB1ɲ²`@Â�γ`Çpßuæl+J�¤NÀDºJi~ÉzÔw{2�W·iw:eJL±ÛôÌÐõº5-~@E5Ó K�\HLMo2TâÑt%RºJ�ìͦ<*è�kR|0n]9g MÙ6ßÍÀkürÀѨÛ<§È +n�Wìz@¸Üú¢]r,&"ôW?&AP¼ÝC$ R ê�Ôñ©ýØZ¡ûæì:æºP97oëS]µ<Ú§JÇ¿á�t×A=d_ÆÜØç=Ë~ï¼�ºw +ílî®c*~¹ó)§Ä "[¢�i*JT·yªV¿¬½§úÙc¸¸©¶ü¨®¯ Hseè ȤÒyü\ãíýÅôHµâ|úmû¿M7Õqýo:¬xÿ6ûTY¿ôBY+6ªÕKÉ+îÚâ`ÚÉÊ.(ñbXn FM³@IÀÜÎ;ÀÈ]: аÓϼ,íò ¤Ð¶¬N«p°=L϶D¯5lKJR½Ûä¡ãÐ;Kj$* +ûÙݲ¶M qR7k%¶RUOK£=¼øx´&:(ñ×Åv +eÖÆ6i2 Ú%j¤dîÉFÈÏ=ùaMT|Ú(Z�}I.+òËä!â�Èd¡eOÃS«PÎ56¶H8G�eÕ_ý0d$_põlSÿnl¼C�S¶á0ìl,«cÙ*w6N:' p0³ð\6nl¼K´Íj + J³¤ÃxÅtKöE`xp\�§Iëâ]Ë1Ý W[�ñL騮Û>"s÷U¢°8¶Î¸ Ätˤ $~«'ÍGðåÞQl/Ô·ß(X¾7®@(0&°x$&¼I��"f·6r3£Í(þ¯T.2ìÉÁ9@jqDÔâp9ý@×צÎJábR&Åñ0p,luÈA»°µqnak]Øúðô2ú(p5}ÑÇP÷µ2¹¯u¤ Ã}#¤Dq%³êØ×ê¾Zx_«CÚ}ÀÔ¾V·U,¢£çØ×ZÊä¾ÖJï&L|_k}?Ìy»Ù=ÅcÎàØ×zÃ�ß×ú~C)4Ü×ZûrçúëðñɾÁ4¹¯õ½WBQÈqß`tn5¼ú£w«áõv 0îLûZoTtô F}!_ÿÝÂNòîkÝ$"zú{_+e!âä¾Ö§o0ù÷µK&ûýÃs¼Òô¨ð8ù·Â�4ý±¯ãµKWQ×.]]n»³ ¥}³K¹H Me7©T¿,hMÒ¦¿0gò'Àqpu JÓ_Ãç-¢IÄÁ3¢£<¿âKÉîïÕ_¶Hb¿ë0f×½Ìj×M¸ºnBY²O>»ÓäºW· \É0»îµv²z»ÉÓþu¯Ë !ø×½Î®Ãõ °eÂÓWQ(¹ÓïD¶½òdÑ·½*!{(Çvdzg�ÄÄìE ³ô ðªSÂÝÎ $p0·=}PD?Ð?DÔBÊ:¸E0-ÀJÞ'w;²îu1ÉA,b�°±,T$Q66v}Û Á\ߤû«Û pÚ1h&<h(ÄG`-à.É|ÄIQÜE}Æ0Z$©Oã3IWâ7Iàð*(¥ÈVYÌ#qÙÍ%ìLÁkÉmN»É¢(nó, d³¤-DID�Hh1º÷׬:îoWoi¦C ¹`ùîÅöñ¯´Ø°h±á$È^"Ú äÀ;5¥Üxao1JåSï%HÁwuýÜD +¾kÌú¨Pî³h?Ó!É´ØpgoÃë~¦·ãX¢¾yvÂnÐo!ñ(_Sæ¢ÐV&MmNì¿o2Êd¹Øè ¸ð¢ Aʵ¹Íid'ÈóæÖMö¡YZ;iß!W«Lì·Rpðyd£ú§Ø÷ âÈûûÑe§¼\tøÖ¬v÷K_VîÝJQì~I½f¡b?GÉÚÌi¢¤ÒÌÝ}ÙeR7ëË9¦pÑ¥'NÊdõ¨ç¼ Bû±'(Y$ئÌÕFa3gë¨6söcåü³úÆÁ^ëZÑ&ýÜÿzÚÉgRíCߤfÎ +ÁÙPJ>m{ +ȯÞÎú°µt[ · }Ú :Ð(Ä;7*ĸC@°T»×}S£ç춺IÁV÷¿!Ò)Ü#-Â!Pj{Fnöïî¸ÛtS JyÑ}g±_}`Áò<uó¹å»I(/¶'ÊYM±Iì|:÷Ýá¼Ýç&RÑæ»×w¹W +*[(?5ñl¤ÔÍé +Mð4{¤;§ag°ä}%¹j¸ßâAÑáV(6HÅ<Ð-I8Ò¹¬# Êüði,^�pJt¡^Vmsc©FÌçÃÛË,(ow£®â»ôm×Ó[Òa q5qx©V÷¬Lrº*Õ̽^>aO rmÆ 7»1àðl� ñ] g âÈ®H-0)ÔÎZ`Zàtaà¬&ã¾mÎZ``Õjɨ¼àþh·8OC8X-p&V&½¸ï±PþÏmUòeV I» +WU¸JÎeΪä"að´*J%o1)İ÷FD{ýdiÒé:ÈÄÓgICÌRÉMlTgläà ©J/ ~6}Ô¦lÚ¤ÔOÊr¢,Û«ÒKåÚée*&Îä¸×pÏÇk¢ÀÙæf(¼Á$Ê(èURG %·Ø.ùa)pÍóÌ×¹®¢påü<úQh (¼ö ý~ ({Ç*�ßÌD©Ö+SßíßÀ (üò6 ÀÁ�·$TwÏ" ýRæÌ¯ùº=ùËÕBòøÁ~Âé´rÑÁérÒ<çHQxõK~RÒ¦§Ë¸Jñø ÐUHd Íÿ¸i%âsn� x"VjQ±¯Ûrpàæ¯gÕ[»dXpª×> ¨;aD%û/^0v~Çzipy E¬yNJ1�FgPGì +Ò%Å0ºæé³GH6¢ø¬Q5i#Ô" ©¤¼þQ7#iÑî~l¦Ô&QM|±¸?Ë ÔØ¹#Ш»ÑúçÊFuñ]®iKÈØ¾XZ�À¼Àý#.uæý'~.dP#M*J@øh_TK_ 3�-"r»òÕäUn{±A)2ØLÔÏcF�i� moyé0q¡A0�"ñ¬�`M,ÊsdaÀL�ayËAÈÍ,+îúnbcÿNÓôs{ôÙ]?ëù[@5?'"@õu+ñî"=&5Dû ª>$Hu%õx pmÅCn¼°÷ð¢è +Á×cRÝö'7± yjeòЯ[~ùÍëCª¡%4ù¸xá\BS¢¤YÈ"ÑYBsUÛæïFÀ®%ê «ÐúL®¶e6]qep +ë"·ï¸¦ùpr³)pè7ñÈÜ·y±9tótת Q|à à ¬NQ|`ª[n!~ËWÊòìjö£7y<q¾/Z:º> v/#¬ÒÕ¨ÝÊúm9Ø$JYæ·HºxAEl_åÊx¡D%bˤ-/2Ùwë¹#àÃ#Ѱ˼x@èË$û´#T +ö [ýö£lãfþÖë¥Iº=hÑ(?¹ÚèÐ÷åêXGÁÊïTlV Ë$R}ÝÖ!HR õ äÄéèÊüªL®Ø¤¾u>)Sü'5[Åíuì �J)wJ¾:öÚ?vawæ/´`ªcÿ4°�èökÄ;zRKÁ/*eì5"<I.OkÏ`/cO´*à�ØåSWZd<»|ò/¾ +]>WÑk+Ï+ú�ÄækHö ÝW]÷ +�¹û($$+a�ìò¹jf>»|²h×AásX4qAqb×IAZ�2j=®#Ì dÛ#�»|öx)´oÏ.iã}÷õÈÒìýÍe±ÝoJÉìîÕF 4'%êLo" ì»|®0f#H½i ¨&ª{,º øYGªHdO©p_,À-tó»½k¯«¨ïûë`"x�ñOKõ6Uò°¨·v¡¾}+CÜ}«|Mg|§^ÔÒZ©�`k¨Dôeÿiªù ÀßåÛ:¶iqälyjî $ù½D$c¸ÏõÖÕ~?ør\@VùdÚÅê'B$Þõp$`Phùh7IuãµEúic¹ÆéæÛ0h¾í¸oClÞ=@>Aoç)A4�"ënÞÆÑBRC '±Ëô®>�®¢h�Æ\òåB¹ÅÛyÊch·óôº]·oôº^\ÎPßoLñ¤S\_§}â nÊ´·ÂSõ§§tê2ð^Ê<_Á«SÕÀOéocuëT¦yc#RQôlVë_ùPÚ{|E�Un4ÑojÕñe¸ +nË9ñ?² +)9(q#%e<$¢xׯIZÙ0Rìþcp1�R(Aºë.|ÿIÎqÎÖ´�v>t ©píêæú)Ky¶K´øV¿®ér6X¤©ArÛIGæUMcY�Ƕ,ß!á9cL»r +Â{û9úx4*£^à&Vpx°ç¤# ®ç&�Üï-H�¦U��Ìx笺IÎç~qÁÕwÉQ (à½PÏÕØÒ¼hÐ3Ç_«MO¯UyQÆõù¢þHa�« @ßk¥Ug7A�N²ËuäAÜûAàܰ!ÚYV%] õ9ÛÒ}Ok¤ùÙj¥ÔôG>iîb¾TÚÙÎiíæÐ`øc£S|Ó)VþâÉˤøè²Lß8 Ū¼»ã(Vëdø¾bÕ«¨ùHrQ{ +¤XµfÃ:�Ūµê)QH±jàòÄ),Tæy`/V®ç$/¨j(Qâþ.ò«rQu>¾õ_ÓB@xh2ìæNb=çºÞ �Ūu½Xõò Gú-;[9oÓõßy,967û!¯ q×rjà\kɳ`ÚC [ìÂ!�@÷Eöáô6íþ(©rÃÀa�Y�4Uæ³év '!»¹ÀÅüI ¢ð8WYÈ.db`��!Ë�P¦®>zRõ="¬ù¹á{|ò$¦[�á �"làHÞ0ÀS-�G°fú¦Rs)Â;<EèðY¼\òC£ÃÇ)»Ná)B¿N]W§8EèÖ)¹uSnº.j¯NqÐS"éÔ°^¹¥"ܰa¯ EXöIËpÝÕnËp]ÖnËP'ý,BÊm¿Ú2)Â},qéÙûrÕ]per|ã[ÆRrÌ ò[±âb_QųÓ|§xÇ¢h4a-¤=;Thc¥£+;ÄÅÇ�´&tß\||�,ê ÑeïV©¦nQ°ú?ß¼Ìu�&ìüe�ðàâãvæÙe-L£ÇØu#Q¼QXÏÅi¾ö� À,B^VÏ�/£% /{avÛ}b<Ï# /¡ÃFÄ>Ã$ãYL¢¨�µ (ý « H{R1�¦ä²ãkÓ-BÔÊÐi$. Íyñê{®yÙø}dßêt¢hV%(ç°(as¼6-oÑÄG%FeÓgeÐ$ËÏ`¥j¥Ð9í¨ï¹Î$´ù±ÅôÞÝ÷s³È±=P Øß!ØãÎ 6?ÞNa°ôNr»_¼Ç(Òo7PRâ&¤\l8(Ò¬<ä] $²Í¼Ð>ô!/Då½!ßå¿&¶ÖÊÃgZ+S»Îï%ê3)â-7óº.Â)²1ÂÁΡ ´@RÝ@ +»Ç>?8¨ä.¼luý³>¶å£HÞ8xú`ºq3¢0®¶Ëûl^æ6²Â¹¬�Ê_9/ãé0?C¹�¸ +ö®Ü�%/sà¶Dò2»@dï!»Þ.{Þ¼£ +Ƹñ~fh#·¡¤dvº-'Èì0;3CötA8-Ù y¬ZSgf'{ûµúzÝzµúªãõjõõºõju}ÝNiuNZ}P¸§¸äIÎeR«y¢C«©&}ͤúðáîÅ4Ð¥åS6ñÒûb%!S D*i*°Ë4oÕq½oäßeÒÆ/Óæ³ñ%I_ß·&¯27úÇ 67²·ðJmPÚÇI¨¡4u¬´Iø`[^È3ùîí¸ÑJ7ç*¼]�|ÃL +=ªÐ*B +1ÃÑ?{¯1÷*a`Êh|ªï °¼Ò.Á¾Ê¤ô¸l¤ � 5vLr׸0N Ð÷w8-4ÇÒCsÅ@�XeBÓÊF�·5Ì:ÊTÀ�é ;LlTª¨Hp0¦_}Â/úfHT�Îýg¸:rNEä#P�Î-±-SÙ$ ¢¸OE^�é2gNfóE·U,hÆ3É.#=îA²@x I ÆÑ(A¥÷? aLͰ°#F¦v ²~<fïÈ^?¼C'uMy6³W$D +uA)�?çé'ÿ¨@¢äÅlðÏ +ÓDvhF]ô£Q}:Iº +À½:UÀ§têêÔòêÔU�îÕ©:qJ§®p¯NÕN-§N¿?òü¡Á³j@ñØVÈcK!]Jk0¡0pW(à³ÅIÛtù\þ)U´u{ÃÓ6iÁÂxY_ úUþíRu9^î)Uìx¹§T n9Ún[eõv3¯Åhú±Îô±®ÈJáw_½. ,QJ<B±qaf\vgÉ/ Zc;ï]!Uc×u0ÔFYýGQ Á0%H¥# åëp¡ú\I(�}¨TØà\½z1 ÐRè (á"�0»¾/ÈehL®0@ºÊD'8¥Ä glGInÉ#PñøH@§¤ãNQG6MÉÏosÊTÓëSÊM¿(2V.°Ulq0ãJ)¼Þ¨Dà6¡ +öRéP¼MâA"gáõïåüz{ + ð ¦ÑD"eJV ^àºÂ.Ñ)¼E TxMaÊ! +2)uJÖPá5=ê¼èâçeV¨ðÚ#ÔÿÏr¶;[û鿦d5§È¦à§|üÄ!èåýhÝåý6\cIáUÞ/z.gÑs¬+ML ²ë4VÆ-{gèU"i MYÝè¶Ø·Å0ë,î©TD 0[KEÄmKE´8R7ðTÄ <1:Â0·0¨4KEÜ!à©q§"î: §"ü:Å©·Nq*ÂSpë§"Ü:Å©·Nq*ÂSpèThiàHE´@©(`¥"? +gÑ3«d£ ÏuÝ}Ô¦ÕB0ÍöçÍ<+»+EóDQvZQÇhR�>D¯E À/m[D¿4Á&ÚÔIy +IB h <¥DWI�H�¶J¶9 +ý9BÓ&¥ÃdRúzXÃÞUç籸.Îk¢Nà¸zg|%ZTOáݾ]tpúKTW7AÂAð¸RÒ ;)í Vnv» Ä3ÆÑ½cj½/ãð}K³år¹L=`¥Ú>$¬z}§T{åÀ Sj~BR¯J%¾Jt´o±áÝ�û°:ª1p¶ª Ý$°XH°¸ ÂE6)˲è4èOáçäªOSÂØÏÛ^ ÄOÉ )nÅtMu§aÖ øiÖiÀP}<ØG_Çw»µJ¦¡úa Åó0î Àõ+ûußóÂö¦æúÅO«tC@Ap¾¬[ÈÅUdÑY¶I@ýçÏ@üúмØÖp³Û%ëP1D2NÔ¥Cõbßt(ød r{د/â£?Ïe0!©÷Í)^îÛ4/6#/úëKh9Q!GûZ^Wqã&°Ö'Ñr¢;àÊ[ Q6Í¢k{)ï?ï�×#H8 ¶ºV§:òáIIÁNöVñxßêf¥gØ«´ºyÁ~èb;E×NVWx}JõS³Wvå&MíjJ»zì$»ÃÑFIÕ¡p�|êQORrxIÔmt¼ZÇhÁ¡z+Ì^ÃÑÃs8ZÐ/5 êUv´àÝ@à£ýb].Wlv´àÐÄGy1-ËìhÁgGÆ<;ZðÁRGÈáÀ2Ñ9ëÕþø�¡Ð"aTO�h�ØRÚALú8;%¬J!¤Ï°ª2X0XrÜ)ý³p +¨ûæJ¦ß¤«î¾î«B¹dÛ!�@Kdzq¤A$)ÉðMÂ�$ 5Ò«ÊfUàãfÐߢª- l@~¤ 'iØøLÿõ£ëÛzÁW²I¢üLöSÜ3ñRhç<C"QQûMPKöRl�dùC ¢0Ûþ_éx¯$pCß @+5ôÝ0°ÍdçS�ým}äU¡©nP²Í**ýx +��IvVO<ÆïIojìθ&:9ÛkE$¸µH<¢ØÇŽõÐÅiS-rjÚ¤M© +v§`tt8Ë�(_:¡³ÿr໩eµ\D>Ë\RÇÈ OsòL½;\;êUÇÌ7.Ë {x`bx1êMÊ}/&µ\È ÿÚlR@¤,JÒ(J0÷¸d$õèßú CEØáv¬|úné·'$Æ S:,�H,ñc»êdÏ9�4· ð|»)7ô*�:,("z·p¦%iswX¤K¼Õzû,]Âá½W4jgqÞá+9â©ònº.Y¯F]A)¯Bð¶á �B�£¤HEÜLÕ¥l¥¿"´Üá± 7` ->Ä +ô´¦IÃtUºÍJ6mY4mOäPùÜ)ù'eS0«{Vë!Ù(¶/Ëäm¦ m�,¶%ÓĶ$ ØhÛØû¸Å¶Z�ØÖÀ<c[IǶ>-vÛqÛò°)Ã8¶UÇMŶ<ÛZòdl«àm5�<±ÁºµQæ}Ë6�ÆeÚÕ*¡�¤Ö¹ÑME¾[D.'@áöÀnÈr×Ë]²<vvu%/+Gå¶ffãw÷Û¤AmlT�H¤�iÖT{dPSÔÄe&³ðÊä6G�ÇØÖ&ʰJÊ`tÔÎùªÁdØLì¤IÊ»(öwøÕݰ! 3û/'dÊSøh³·ÚjÃãÚmµºú¢Û#ØipåQÝ4¶«eÜÖ๦ « éL:=ùØGA6 ¦Ì«¶èýéJõô6ÃQ|Þf¢û �f=îáHªeV&P|×ûz-ÀõV; �gq5Ñ@©Ý;2Ã˺ɷÓùõ/¿úÛð#üøõ?½cýþõëÿùõ+ìx¼ íõ¿ùí¿øïÿúã¿ÿÍïþå?÷×?þîoþöÇ¿ýÇ¿þöÿþæw¿ýñ?ÿß¿û?ýþøññüËûóÇ?üþwÿëwÿñ§õãÿô§ûë_ýêÏþóÏ?ýóïÿóç¿üîO¿úǰÿôÿã_þϯþí?ëw?ÿùOüÃ_þøõÿþå¿þú ÝÿãU +endstream +endobj +396 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 836 0 R +/Name /Im379 +/Width 32 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]̱ DÑÏRmÑÙQ¥P 8ÁÛdgl N8rOFhé쵱ݤÍÿ¹ÛBøÑ¤E¯ÒÓÏ+£Õ9:¡(Ø/A +endstream +endobj +397 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 837 0 R +/Name /Im380 +/Width 32 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿ¡0Ðÿÿÿq«cbùæö@ñ3üâzùùÿ@E�jî= +endstream +endobj +398 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 838 0 R +/Name /Im381 +/Width 40 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¿ÿÿÿpýC=Õ¨ÄñD<gøÇðÿqxøðÃÿÿ00??À��<t +endstream +endobj +399 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 839 0 R +/Name /Im382 +/Width 40 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`øÃÀÀÀþ¿¿ñ�C CÃÁÂÀ&� æLI°þÿÿþÿ��Æ¥*¶ +endstream +endobj +400 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 840 0 R +/Name /Im383 +/Width 56 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUϱ !áOÓ¶Çe KgH1X¦DÈZ)YÄ,¯80úKÐ+^úÍI«×Iåå'<�×ʱq©0öó [@0VË]±F|ÇÅq*ì5oA;|"qk:ÒA§Bü#;"BÜ ¾å¥ð&°ÏHéQ> +endstream +endobj +401 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 841 0 R +/Name /Im384 +/Width 24 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xão| á,``.Q ÏSÀFìmÀ¨½¡ù�Ù0>�"Ærø>°3~`füÀØøáQ�Få> +endstream +endobj +402 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 842 0 R +/Name /Im385 +/Width 24 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã?À aÁ`ÀÃPÀÆðácà b H¨,ddð1`g<ÀÜÐÀð°Á�· +endstream +endobj +403 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 843 0 R +/Name /Im386 +/Width 24 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿ?öÌ0Äø�> ¡ +$dä?bo@ Ñõÿ�bq +endstream +endobj +404 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 844 0 R +/Name /Im387 +/Width 24 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿæ0Äð U !$$ø{1o`üÞÀ ý�óÆ@s�Ü! +endstream +endobj +405 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 845 0 R +/Name /Im388 +/Width 24 +/Height 48 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMͱ Â0@ÑoY·(YÃ\ÒÅlv\6páP$K¯þÔ Ðî飷º¼ezIô2xñNÝSݪlÊÜ(\8Ã:`|ýqbvÍx×ÿ?É +endstream +endobj +406 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 846 0 R +/Name /Im389 +/Width 32 +/Height 1 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿ� ÛÞ +endstream +endobj +407 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 847 0 R +/Name /Im390 +/Width 24 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x``°a`CBüH½Ða0J|`ø "ñC á Á~ö�L¨ +endstream +endobj +408 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 848 0 R +/Name /Im391 +/Width 40 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmÎ!0 á¿!C]W@"ÎÂ1M£õ(=B%Þ Èn²æñyá*Ðëa¤u#AFmsfÎo>/ü%ýõeBOa9Y4N(èVgw"j£vúJµºlpU1åùæ%z +endstream +endobj +409 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 849 0 R +/Name /Im392 +/Width 48 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x`H`øÀ`Ãð±A¡¹L¶Höf0û0? óÁ8ÉøL>``o@IæüPò0|ÀßPÁ!?°°`HüÁ`Á`xÏ A°O¢ñû�#o&¢ +endstream +endobj +410 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 850 0 R +/Name /Im393 +/Width 32 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüaÃÀÜÄÀÎôña3|8Ø*àù�ÛñÁø@!á�b .ö6�Ûÿ +endstream +endobj +411 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 851 0 R +/Name /Im394 +/Width 24 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xȱ 0EÁgYÂ%-cPÒe°¥³ÙÅ#0�R�éª[c£/ô <oÏË´p¢É¦|¦Oâù#òQËBâL/?< +endstream +endobj +412 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 852 0 R +/Name /Im395 +/Width 40 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xE̱ EÑGH°!ÚÚ±#1¥%£1 +#XÒ}ÿ#òmNr+ý&$UÜØ xâêÍ(ä"$9 än®*hF1²qì$o¸IWðSð¥-Í +endstream +endobj +413 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 853 0 R +/Name /Im396 +/Width 32 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]ñ À �ÁR¤d0=£dJÍ£x6 H( }Òe (< +X ±Ê }åÂëõOõó¡uÏSIS?ï +endstream +endobj +414 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 854 0 R +/Name /Im397 +/Width 24 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x%̱ 0@Ñ^#É¢k¤gq)sYdp¥ QáÕoÊìU)Ú£*D1åE ;#X3gÇæX>cã_þ'¹Û1E¨sÇ0à/¬>E +endstream +endobj +415 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 855 0 R +/Name /Im398 +/Width 40 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmα 0@G_| µèøÑ2JFHIåñæÜؽðA´ùê´çÃYßq[ÁT +úÚÚLå# ¸½Üt<çÚ*' +endstream +endobj +416 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 856 0 R +/Name /Im399 +/Width 24 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xão| á,``.Q ÏSÀFìmÀ¨½¡ù�Ù0>�"Ærø>°3~`füÀØøáQMÙ !9$$ÏÀøø¡ +endstream +endobj +417 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 857 0 R +/Name /Im400 +/Width 32 +/Height 49 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³a``HâÇ Aø�C!3>`þ+а ,ócbÆÿÿ@½`bÆÇ@ü(ùÈy¤@� +endstream +endobj +418 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 858 0 R +/Name /Im401 +/Width 32 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÍ!Pá�ÑðlÅ;D%®WáHô=I/«E>AÉbÈæÛI;üÄÿ33²0ÐÑÓHÔ¼¨]#OJ7o0 MQ¦Ôi¦hÌ®½Ó\ç®[5 åâ¨`{Ó#l +endstream +endobj +419 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 859 0 R +/Name /Im402 +/Width 24 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³ãoHHx¸ÃàÃ8>ð0T°Á ¡02àgàçàççmg8Æø¡�ÒQr +endstream +endobj +420 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 860 0 R +/Name /Im403 +/Width 24 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÁÀÜÂÀÎÄÀÏD ü@tÁ!Ø ù�I�ÑÁ øÀ"á Á +* +�IáÜ +endstream +endobj +421 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 861 0 R +/Name /Im404 +/Width 32 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿ@Ì~ÿóf f�áÆ`l�Ä@,Áðyà¸àØ Ë¡a~4ÌÞqýÿ�É:!C +endstream +endobj +422 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 862 0 R +/Name /Im405 +/Width 56 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÏA +Â0Ð?ÒM%Û +W»'½x³x9BD.8ô6«·~(�<À°Q; +V!l$|;">Þ#^ùÀ£ XqÄéYÀ'ã¢,<^¹í8å¼CY8å0üI3!SÅm½6ײQ~Ô=m +endstream +endobj +423 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 863 0 R +/Name /Im406 +/Width 24 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xK`?ð/¡BÆ BF BF¢ÂFÂFälä,ä>0È70ð¿¿�{{5ó1ha>PÁ| Ã$ôÿû +�Ö +endstream +endobj +424 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 864 0 R +/Name /Im407 +/Width 24 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xΡ 0á¿¡$F@V ¥# Q軤äwóà¡ FØ$ϯÅ%Ave^h¤JÆÝÆV¢ÊA?:¨sà5¿û�Îy" +endstream +endobj +425 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 865 0 R +/Name /Im408 +/Width 16 +/Height 17 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x;À À ÀÀÁÀL@ÈÐÀÐÀ× ü ì�DÖ +endstream +endobj +426 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 866 0 R +/Name /Im409 +/Width 24 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x%± @Ñï¥ #p¸Î¢¤´°`4FÉV¨ï6æN)XÂ"[À¥º4Fï#ýoôÏïú]ØRmy¯y&B�©ï©E\1¥ ¹áz�P! +endstream +endobj +427 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 867 0 R +/Name /Im410 +/Width 24 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuα áI´1ÆÒÂ!,()í ¡4ùº»KÎ Â ì°WpUY ·² ßX×®v¯¤)Oáß#£Å¤½ pé +endstream +endobj +428 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 868 0 R +/Name /Im411 +/Width 40 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUͱ Eѱà tK+u0 +FcFÀNA?DoqÚt ¦?ªàg-ÃN»&#õèõHIdAÌ :q¡vT/Ì}àÐA¹ÛCúȪ:#ÿ +endstream +endobj +429 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 869 0 R +/Name /Im412 +/Width 32 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc8ÀÀÀø�> á ®b ¶b b>(æbv(fn`ÆÌð�0$�a�¡Ð8æõA±¿ÿ03ûƶzÆf9� +z +endstream +endobj +430 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 870 0 R +/Name /Im413 +/Width 40 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿá?`?�$Q ÆÃÁ#*Q v aÿ¿JØ0F !Ç4V8ÀÀÏÀN°7 è¢@ùCýÿÿ�×,)9 +endstream +endobj +431 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 871 0 R +/Name /Im414 +/Width 16 +/Height 4 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿàÿ�" +endstream +endobj +432 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 872 0 R +/Name /Im415 +/Width 8 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³¨ù÷ï_X@�mªÅ +endstream +endobj +433 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 873 0 R +/Name /Im416 +/Width 24 +/Height 43 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xK``øÀÀðjÀÈääÁ¿Øóbü�BP=¨ÚpêAÓÑcÃÀ �mð +endstream +endobj +434 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 874 0 R +/Name /Im417 +/Width 32 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc>ðù!³?üÁÀ¸½ [0ðË0ðÙC±3È0È! ÿ�Â`ò��±Lö +endstream +endobj +435 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 875 0 R +/Name /Im418 +/Width 24 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÏ0b¨` :úÿ�0Kô +endstream +endobj +436 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 876 0 R +/Name /Im419 +/Width 32 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcc``°GÂÅ üù�ÃCf|øñ�3øÀÀÜP�Æì ì`ÌÏ`ÃÀÇ ÃPÿðÃÿÿh�PÍ +endstream +endobj +437 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 877 0 R +/Name /Im420 +/Width 32 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcî?ÀÀ¾ÿûÿ?ì?êØÈ1?ûþöì ì`F¨�ªè2kÿöþì 8q=ÿÒ�®{' +endstream +endobj +438 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 878 0 R +/Name /Im421 +/Width 24 +/Height 6 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xK¨aøðáïû÷äàol��Yú g +endstream +endobj +439 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 879 0 R +/Name /Im422 +/Width 32 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüSßÀþ¯þ�ÿÿúùövÌ?l0T0@0üä@°È²b; >üÿ00ÿ¯``øÄx0ûþ`�Æ*8 +endstream +endobj +440 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 880 0 R +/Name /Im423 +/Width 32 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿá?×1ãâñ(þÅØÿñ70¾ïo¨þ¿áÿãÿõþ1��X!Î +endstream +endobj +441 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 881 0 R +/Name /Im424 +/Width 24 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³ÿÿ¡þÿûÿ*È@ÿÿÿ¢úÿPÅùjäìåäÿ3ðÿc`þ�D¸: +endstream +endobj +442 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 882 0 R +/Name /Im425 +/Width 32 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßÿøÇÿùÏüÒ2ìÈÁrì`,Ï~ð|ÿãÿÿýoøû§áÏ;�â%² +endstream +endobj +443 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 883 0 R +/Name /Im426 +/Width 40 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿ¡D0ü�b +TÂ! àÇB°7`ÌÌ06 0Áð±ÁDH�2 B¡ñ�CûþÿÿÿC�M@'A +endstream +endobj +444 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 884 0 R +/Name /Im427 +/Width 48 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]Î1 +0�Ñ b#Øn!9¥ ñ©Va/<Gª¶°´¢? ²i^70i£´«Í¡ÔÌ¥æó}õvE> ]såÿ:õå·mvPëñ²ÏúGëu×n¥é³o¢¤À$Å-Ý +endstream +endobj +445 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 885 0 R +/Name /Im428 +/Width 24 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x%± 0@ÑoEº4È5âV¸2«dt0Z6¸<K + +"xzÙù,3±t¸4Çö6¶¾°Ä ñI²Ë¿±¬°ÃÕ$ªøO¼HÚÓ»RS2Oä7Ì$2 +endstream +endobj +446 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 886 0 R +/Name /Im429 +/Width 40 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMα 0 áwL§dK«d;3ZFÉ)-ó"^ó?¿ª^PÕ±ÉÐI"3¤c""ÃCj!pdK`×,FB'å§`ÁºðÄêØ^,wráä4y�ñ1Ë +endstream +endobj +447 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 887 0 R +/Name /Im430 +/Width 32 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=̱ 0 áß82¤t!FHéUÈlËu£Ü(y¤@Oß+îtgØføé|üà¤ò¦¨³:+éHGhË!/Ñ-QÃ`÷"¶JÚWÒ22L·øè/-\¾=41Ùe¡dÈE?ÿà +endstream +endobj +448 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 888 0 R +/Name /Im431 +/Width 24 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xEÊ1 0@Ñ_ M°ÁHABpÒ''¡#[é@hòÆ·(»ç%lƦF]´598?º-·Êð ÚaP§®8ö ! +endstream +endobj +449 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F1 +/BaseFont /Times-Roman +/Encoding 450 0 R +/FirstChar 0 +/LastChar 255 +>> +endobj +450 0 obj +<< +/Type /Encoding +/BaseEncoding /MacRomanEncoding +/Differences [ 128 /.notdef /.notdef /quotesinglbase /florin /quotedblbase /ellipsis /dagger /daggerdbl /circumflex /perthousand /Scaron /guilsinglleft /OE /.notdef /.notdef /.notdef /.notdef /quoteleft /quoteright /quotedblleft /quotedblright /bullet /endash /emdash /tilde /trademark /scaron /guilsinglright /oe /.notdef /.notdef /Ydieresis /space /exclamdown 164 /currency /yen /brokenbar /section /dieresis 170 /ordfeminine /guillemotleft /logicalnot /hyphen /registered /overscore /degree 178 /twosuperior /threesuperior /acute /mu1 /paragraph /periodcentered /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf /threequarters /questiondown /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis ] +>> +endobj +451 0 obj +<< +/CreationDate (Sat Apr 06 10:25:08 2002) +/Producer (PStill 1.55 UNREGISTERED by F.Siegert frank@this.net) +/Title (paper_dvi) +>> +endobj +452 0 obj +21886 +endobj +453 0 obj +92 +endobj +454 0 obj +68 +endobj +455 0 obj +68 +endobj +456 0 obj +65 +endobj +457 0 obj +48 +endobj +458 0 obj +158 +endobj +459 0 obj +157 +endobj +460 0 obj +91 +endobj +461 0 obj +110 +endobj +462 0 obj +102 +endobj +463 0 obj +95 +endobj +464 0 obj +69 +endobj +465 0 obj +73 +endobj +466 0 obj +151 +endobj +467 0 obj +28 +endobj +468 0 obj +103 +endobj +469 0 obj +114 +endobj +470 0 obj +12 +endobj +471 0 obj +119 +endobj +472 0 obj +148 +endobj +473 0 obj +98 +endobj +474 0 obj +25 +endobj +475 0 obj +97 +endobj +476 0 obj +108 +endobj +477 0 obj +55 +endobj +478 0 obj +93 +endobj +479 0 obj +115 +endobj +480 0 obj +60 +endobj +481 0 obj +70 +endobj +482 0 obj +34 +endobj +483 0 obj +46 +endobj +484 0 obj +34 +endobj +485 0 obj +40 +endobj +486 0 obj +22 +endobj +487 0 obj +41 +endobj +488 0 obj +73 +endobj +489 0 obj +86 +endobj +490 0 obj +75 +endobj +491 0 obj +34 +endobj +492 0 obj +40 +endobj +493 0 obj +37 +endobj +494 0 obj +90 +endobj +495 0 obj +46 +endobj +496 0 obj +62 +endobj +497 0 obj +50 +endobj +498 0 obj +63 +endobj +499 0 obj +28 +endobj +500 0 obj +52 +endobj +501 0 obj +42 +endobj +502 0 obj +73 +endobj +503 0 obj +65 +endobj +504 0 obj +77 +endobj +505 0 obj +60 +endobj +506 0 obj +66 +endobj +507 0 obj +75 +endobj +508 0 obj +36 +endobj +509 0 obj +45 +endobj +510 0 obj +54 +endobj +511 0 obj +40 +endobj +512 0 obj +52 +endobj +513 0 obj +42 +endobj +514 0 obj +27 +endobj +515 0 obj +23 +endobj +516 0 obj +31 +endobj +517 0 obj +89 +endobj +518 0 obj +58 +endobj +519 0 obj +66 +endobj +520 0 obj +109 +endobj +521 0 obj +39 +endobj +522 0 obj +104 +endobj +523 0 obj +24 +endobj +524 0 obj +103 +endobj +525 0 obj +77 +endobj +526 0 obj +71 +endobj +527 0 obj +61 +endobj +528 0 obj +49 +endobj +529 0 obj +113 +endobj +530 0 obj +81 +endobj +531 0 obj +13 +endobj +532 0 obj +96 +endobj +533 0 obj +79 +endobj +534 0 obj +89 +endobj +535 0 obj +101 +endobj +536 0 obj +87 +endobj +537 0 obj +44 +endobj +538 0 obj +12 +endobj +539 0 obj +60 +endobj +540 0 obj +38 +endobj +541 0 obj +50 +endobj +542 0 obj +44 +endobj +543 0 obj +70 +endobj +544 0 obj +84 +endobj +545 0 obj +75 +endobj +546 0 obj +35 +endobj +547 0 obj +77 +endobj +548 0 obj +73 +endobj +549 0 obj +90 +endobj +550 0 obj +62 +endobj +551 0 obj +59 +endobj +552 0 obj +57 +endobj +553 0 obj +44 +endobj +554 0 obj +63 +endobj +555 0 obj +90 +endobj +556 0 obj +15 +endobj +557 0 obj +71 +endobj +558 0 obj +47 +endobj +559 0 obj +133 +endobj +560 0 obj +92 +endobj +561 0 obj +83 +endobj +562 0 obj +53 +endobj +563 0 obj +54 +endobj +564 0 obj +92 +endobj +565 0 obj +81 +endobj +566 0 obj +53 +endobj +567 0 obj +65 +endobj +568 0 obj +57 +endobj +569 0 obj +60 +endobj +570 0 obj +56 +endobj +571 0 obj +84 +endobj +572 0 obj +140 +endobj +573 0 obj +37 +endobj +574 0 obj +22 +endobj +575 0 obj +134 +endobj +576 0 obj +64 +endobj +577 0 obj +110 +endobj +578 0 obj +119 +endobj +579 0 obj +96 +endobj +580 0 obj +84 +endobj +581 0 obj +133 +endobj +582 0 obj +73 +endobj +583 0 obj +46 +endobj +584 0 obj +74 +endobj +585 0 obj +17 +endobj +586 0 obj +90 +endobj +587 0 obj +39 +endobj +588 0 obj +88 +endobj +589 0 obj +92 +endobj +590 0 obj +96 +endobj +591 0 obj +17 +endobj +592 0 obj +32 +endobj +593 0 obj +54 +endobj +594 0 obj +62 +endobj +595 0 obj +32 +endobj +596 0 obj +35 +endobj +597 0 obj +31 +endobj +598 0 obj +23 +endobj +599 0 obj +69 +endobj +600 0 obj +53 +endobj +601 0 obj +36 +endobj +602 0 obj +52 +endobj +603 0 obj +51 +endobj +604 0 obj +60 +endobj +605 0 obj +62 +endobj +606 0 obj +60 +endobj +607 0 obj +45 +endobj +608 0 obj +30 +endobj +609 0 obj +19 +endobj +610 0 obj +39 +endobj +611 0 obj +42 +endobj +612 0 obj +46 +endobj +613 0 obj +88 +endobj +614 0 obj +52 +endobj +615 0 obj +57 +endobj +616 0 obj +13 +endobj +617 0 obj +27 +endobj +618 0 obj +98 +endobj +619 0 obj +85 +endobj +620 0 obj +76 +endobj +621 0 obj +83 +endobj +622 0 obj +22 +endobj +623 0 obj +65 +endobj +624 0 obj +68 +endobj +625 0 obj +83 +endobj +626 0 obj +55 +endobj +627 0 obj +42 +endobj +628 0 obj +52 +endobj +629 0 obj +80 +endobj +630 0 obj +45 +endobj +631 0 obj +60 +endobj +632 0 obj +67 +endobj +633 0 obj +44 +endobj +634 0 obj +36 +endobj +635 0 obj +39 +endobj +636 0 obj +61 +endobj +637 0 obj +15 +endobj +638 0 obj +76 +endobj +639 0 obj +137 +endobj +640 0 obj +59 +endobj +641 0 obj +66 +endobj +642 0 obj +85 +endobj +643 0 obj +139 +endobj +644 0 obj +96 +endobj +645 0 obj +61 +endobj +646 0 obj +70 +endobj +647 0 obj +31 +endobj +648 0 obj +31 +endobj +649 0 obj +55 +endobj +650 0 obj +37 +endobj +651 0 obj +58 +endobj +652 0 obj +17 +endobj +653 0 obj +79 +endobj +654 0 obj +96 +endobj +655 0 obj +18 +endobj +656 0 obj +55 +endobj +657 0 obj +95 +endobj +658 0 obj +21748 +endobj +659 0 obj +18 +endobj +660 0 obj +52 +endobj +661 0 obj +74 +endobj +662 0 obj +57 +endobj +663 0 obj +18 +endobj +664 0 obj +33 +endobj +665 0 obj +13 +endobj +666 0 obj +80 +endobj +667 0 obj +61 +endobj +668 0 obj +63 +endobj +669 0 obj +20 +endobj +670 0 obj +49 +endobj +671 0 obj +79 +endobj +672 0 obj +88 +endobj +673 0 obj +87 +endobj +674 0 obj +110 +endobj +675 0 obj +74 +endobj +676 0 obj +72 +endobj +677 0 obj +83 +endobj +678 0 obj +108 +endobj +679 0 obj +38 +endobj +680 0 obj +92 +endobj +681 0 obj +50 +endobj +682 0 obj +75 +endobj +683 0 obj +14 +endobj +684 0 obj +105 +endobj +685 0 obj +130 +endobj +686 0 obj +93 +endobj +687 0 obj +69 +endobj +688 0 obj +79 +endobj +689 0 obj +107 +endobj +690 0 obj +72 +endobj +691 0 obj +100 +endobj +692 0 obj +27 +endobj +693 0 obj +40 +endobj +694 0 obj +44 +endobj +695 0 obj +84 +endobj +696 0 obj +26 +endobj +697 0 obj +80 +endobj +698 0 obj +88 +endobj +699 0 obj +116 +endobj +700 0 obj +25 +endobj +701 0 obj +43 +endobj +702 0 obj +57 +endobj +703 0 obj +64 +endobj +704 0 obj +25 +endobj +705 0 obj +46 +endobj +706 0 obj +131 +endobj +707 0 obj +99 +endobj +708 0 obj +72 +endobj +709 0 obj +32 +endobj +710 0 obj +93 +endobj +711 0 obj +66 +endobj +712 0 obj +25570 +endobj +713 0 obj +109 +endobj +714 0 obj +188 +endobj +715 0 obj +89 +endobj +716 0 obj +105 +endobj +717 0 obj +49 +endobj +718 0 obj +50 +endobj +719 0 obj +14 +endobj +720 0 obj +90 +endobj +721 0 obj +59 +endobj +722 0 obj +93 +endobj +723 0 obj +17 +endobj +724 0 obj +74 +endobj +725 0 obj +34 +endobj +726 0 obj +91 +endobj +727 0 obj +80 +endobj +728 0 obj +52 +endobj +729 0 obj +64 +endobj +730 0 obj +43 +endobj +731 0 obj +47 +endobj +732 0 obj +62 +endobj +733 0 obj +72 +endobj +734 0 obj +80 +endobj +735 0 obj +74 +endobj +736 0 obj +60 +endobj +737 0 obj +27 +endobj +738 0 obj +86 +endobj +739 0 obj +11 +endobj +740 0 obj +58 +endobj +741 0 obj +84 +endobj +742 0 obj +122 +endobj +743 0 obj +132 +endobj +744 0 obj +45 +endobj +745 0 obj +131 +endobj +746 0 obj +89 +endobj +747 0 obj +47 +endobj +748 0 obj +89 +endobj +749 0 obj +55 +endobj +750 0 obj +76 +endobj +751 0 obj +84 +endobj +752 0 obj +87 +endobj +753 0 obj +61 +endobj +754 0 obj +50 +endobj +755 0 obj +13 +endobj +756 0 obj +110 +endobj +757 0 obj +34 +endobj +758 0 obj +113 +endobj +759 0 obj +12 +endobj +760 0 obj +93 +endobj +761 0 obj +77 +endobj +762 0 obj +76 +endobj +763 0 obj +28 +endobj +764 0 obj +20957 +endobj +765 0 obj +90 +endobj +766 0 obj +31 +endobj +767 0 obj +97 +endobj +768 0 obj +158 +endobj +769 0 obj +132 +endobj +770 0 obj +98 +endobj +771 0 obj +69 +endobj +772 0 obj +48 +endobj +773 0 obj +106 +endobj +774 0 obj +59 +endobj +775 0 obj +61 +endobj +776 0 obj +29 +endobj +777 0 obj +52 +endobj +778 0 obj +95 +endobj +779 0 obj +66 +endobj +780 0 obj +12 +endobj +781 0 obj +28 +endobj +782 0 obj +47 +endobj +783 0 obj +53 +endobj +784 0 obj +32 +endobj +785 0 obj +36 +endobj +786 0 obj +17 +endobj +787 0 obj +63 +endobj +788 0 obj +27 +endobj +789 0 obj +32 +endobj +790 0 obj +104 +endobj +791 0 obj +15 +endobj +792 0 obj +113 +endobj +793 0 obj +62 +endobj +794 0 obj +41 +endobj +795 0 obj +57 +endobj +796 0 obj +63 +endobj +797 0 obj +81 +endobj +798 0 obj +56 +endobj +799 0 obj +84 +endobj +800 0 obj +77 +endobj +801 0 obj +16 +endobj +802 0 obj +50 +endobj +803 0 obj +19 +endobj +804 0 obj +135 +endobj +805 0 obj +33 +endobj +806 0 obj +12 +endobj +807 0 obj +32 +endobj +808 0 obj +61 +endobj +809 0 obj +27 +endobj +810 0 obj +33 +endobj +811 0 obj +54 +endobj +812 0 obj +67 +endobj +813 0 obj +56 +endobj +814 0 obj +60 +endobj +815 0 obj +87 +endobj +816 0 obj +52 +endobj +817 0 obj +65 +endobj +818 0 obj +52 +endobj +819 0 obj +43 +endobj +820 0 obj +81 +endobj +821 0 obj +83 +endobj +822 0 obj +71 +endobj +823 0 obj +24 +endobj +824 0 obj +48 +endobj +825 0 obj +16969 +endobj +826 0 obj +109 +endobj +827 0 obj +105 +endobj +828 0 obj +117 +endobj +829 0 obj +85 +endobj +830 0 obj +148 +endobj +831 0 obj +25 +endobj +832 0 obj +32 +endobj +833 0 obj +107 +endobj +834 0 obj +78 +endobj +835 0 obj +24187 +endobj +836 0 obj +84 +endobj +837 0 obj +54 +endobj +838 0 obj +56 +endobj +839 0 obj +69 +endobj +840 0 obj +135 +endobj +841 0 obj +65 +endobj +842 0 obj +62 +endobj +843 0 obj +47 +endobj +844 0 obj +64 +endobj +845 0 obj +102 +endobj +846 0 obj +12 +endobj +847 0 obj +47 +endobj +848 0 obj +111 +endobj +849 0 obj +104 +endobj +850 0 obj +66 +endobj +851 0 obj +74 +endobj +852 0 obj +91 +endobj +853 0 obj +73 +endobj +854 0 obj +96 +endobj +855 0 obj +84 +endobj +856 0 obj +82 +endobj +857 0 obj +77 +endobj +858 0 obj +111 +endobj +859 0 obj +59 +endobj +860 0 obj +65 +endobj +861 0 obj +70 +endobj +862 0 obj +128 +endobj +863 0 obj +93 +endobj +864 0 obj +91 +endobj +865 0 obj +35 +endobj +866 0 obj +91 +endobj +867 0 obj +86 +endobj +868 0 obj +98 +endobj +869 0 obj +96 +endobj +870 0 obj +85 +endobj +871 0 obj +14 +endobj +872 0 obj +20 +endobj +873 0 obj +57 +endobj +874 0 obj +57 +endobj +875 0 obj +22 +endobj +876 0 obj +69 +endobj +877 0 obj +72 +endobj +878 0 obj +27 +endobj +879 0 obj +77 +endobj +880 0 obj +52 +endobj +881 0 obj +49 +endobj +882 0 obj +51 +endobj +883 0 obj +83 +endobj +884 0 obj +113 +endobj +885 0 obj +99 +endobj +886 0 obj +103 +endobj +887 0 obj +110 +endobj +888 0 obj +83 +endobj +xref +0 889 +0000000000 65535 f +0000000015 00000 n +0000000112 00000 n +0000000158 00000 n +0000000283 00000 n +0000000322 00000 n +0000000344 00000 n +0000044744 00000 n +0000066706 00000 n +0000066987 00000 n +0000067244 00000 n +0000067502 00000 n +0000067757 00000 n +0000067995 00000 n +0000068343 00000 n +0000068690 00000 n +0000068971 00000 n +0000069271 00000 n +0000069564 00000 n +0000069850 00000 n +0000070110 00000 n +0000070374 00000 n +0000070716 00000 n +0000070935 00000 n +0000071229 00000 n +0000071534 00000 n +0000071736 00000 n +0000072046 00000 n +0000072385 00000 n +0000072674 00000 n +0000072890 00000 n +0000073178 00000 n +0000073477 00000 n +0000073723 00000 n +0000074007 00000 n +0000074313 00000 n +0000074564 00000 n +0000074825 00000 n +0000075050 00000 n +0000075287 00000 n +0000075512 00000 n +0000075743 00000 n +0000075956 00000 n +0000076188 00000 n +0000076452 00000 n +0000076729 00000 n +0000076995 00000 n +0000077220 00000 n +0000077451 00000 n +0000077679 00000 n +0000077960 00000 n +0000078197 00000 n +0000078450 00000 n +0000078691 00000 n +0000078945 00000 n +0000079164 00000 n +0000079407 00000 n +0000079640 00000 n +0000079904 00000 n +0000080160 00000 n +0000080428 00000 n +0000080679 00000 n +0000080936 00000 n +0000081202 00000 n +0000081429 00000 n +0000081665 00000 n +0000081910 00000 n +0000082141 00000 n +0000082384 00000 n +0000082617 00000 n +0000082835 00000 n +0000083049 00000 n +0000083271 00000 n +0000083551 00000 n +0000083800 00000 n +0000084057 00000 n +0000084357 00000 n +0000084587 00000 n +0000084882 00000 n +0000085096 00000 n +0000085390 00000 n +0000085658 00000 n +0000085920 00000 n +0000086172 00000 n +0000086412 00000 n +0000086716 00000 n +0000086988 00000 n +0000087191 00000 n +0000087478 00000 n +0000087748 00000 n +0000088028 00000 n +0000088320 00000 n +0000088598 00000 n +0000088833 00000 n +0000089034 00000 n +0000089285 00000 n +0000089514 00000 n +0000089755 00000 n +0000089990 00000 n +0000090251 00000 n +0000090526 00000 n +0000090793 00000 n +0000091020 00000 n +0000091289 00000 n +0000091554 00000 n +0000091836 00000 n +0000092090 00000 n +0000092341 00000 n +0000092591 00000 n +0000092828 00000 n +0000093084 00000 n +0000093367 00000 n +0000093573 00000 n +0000093837 00000 n +0000094077 00000 n +0000094403 00000 n +0000094688 00000 n +0000094964 00000 n +0000095210 00000 n +0000095457 00000 n +0000095742 00000 n +0000096016 00000 n +0000096262 00000 n +0000096520 00000 n +0000096770 00000 n +0000097023 00000 n +0000097272 00000 n +0000097549 00000 n +0000097882 00000 n +0000098112 00000 n +0000098327 00000 n +0000098654 00000 n +0000098911 00000 n +0000099214 00000 n +0000099526 00000 n +0000099815 00000 n +0000100092 00000 n +0000100418 00000 n +0000100684 00000 n +0000100923 00000 n +0000101190 00000 n +0000101399 00000 n +0000101682 00000 n +0000101914 00000 n +0000102195 00000 n +0000102480 00000 n +0000102769 00000 n +0000102978 00000 n +0000103203 00000 n +0000103450 00000 n +0000103705 00000 n +0000103930 00000 n +0000104158 00000 n +0000104382 00000 n +0000104598 00000 n +0000104860 00000 n +0000105106 00000 n +0000105335 00000 n +0000105580 00000 n +0000105824 00000 n +0000106077 00000 n +0000106332 00000 n +0000106585 00000 n +0000106823 00000 n +0000107046 00000 n +0000107258 00000 n +0000107490 00000 n +0000107725 00000 n +0000107964 00000 n +0000108245 00000 n +0000108490 00000 n +0000108740 00000 n +0000108944 00000 n +0000109164 00000 n +0000109455 00000 n +0000109733 00000 n +0000110002 00000 n +0000110278 00000 n +0000110492 00000 n +0000110750 00000 n +0000111011 00000 n +0000111287 00000 n +0000111535 00000 n +0000111770 00000 n +0000112015 00000 n +0000112288 00000 n +0000112526 00000 n +0000112779 00000 n +0000113039 00000 n +0000113276 00000 n +0000113505 00000 n +0000113737 00000 n +0000113991 00000 n +0000114198 00000 n +0000114467 00000 n +0000114797 00000 n +0000115049 00000 n +0000115308 00000 n +0000115586 00000 n +0000115918 00000 n +0000116207 00000 n +0000116461 00000 n +0000116724 00000 n +0000116948 00000 n +0000117172 00000 n +0000117420 00000 n +0000117650 00000 n +0000117901 00000 n +0000118110 00000 n +0000118382 00000 n +0000118671 00000 n +0000118882 00000 n +0000119130 00000 n +0000119418 00000 n +0000165089 00000 n +0000186915 00000 n +0000187125 00000 n +0000187370 00000 n +0000187637 00000 n +0000187887 00000 n +0000188097 00000 n +0000188323 00000 n +0000188528 00000 n +0000188801 00000 n +0000189055 00000 n +0000189311 00000 n +0000189524 00000 n +0000189766 00000 n +0000190038 00000 n +0000190319 00000 n +0000190599 00000 n +0000190902 00000 n +0000191169 00000 n +0000191434 00000 n +0000191710 00000 n +0000192011 00000 n +0000192242 00000 n +0000192527 00000 n +0000192770 00000 n +0000193038 00000 n +0000193244 00000 n +0000193542 00000 n +0000193865 00000 n +0000194151 00000 n +0000194413 00000 n +0000194685 00000 n +0000194985 00000 n +0000195250 00000 n +0000195543 00000 n +0000195762 00000 n +0000195995 00000 n +0000196232 00000 n +0000196509 00000 n +0000196728 00000 n +0000197001 00000 n +0000197282 00000 n +0000197591 00000 n +0000197808 00000 n +0000198044 00000 n +0000198294 00000 n +0000198551 00000 n +0000198769 00000 n +0000199008 00000 n +0000199332 00000 n +0000199624 00000 n +0000199889 00000 n +0000200114 00000 n +0000200400 00000 n +0000200659 00000 n +0000250808 00000 n +0000276456 00000 n +0000276758 00000 n +0000277139 00000 n +0000277421 00000 n +0000277719 00000 n +0000277961 00000 n +0000278204 00000 n +0000278410 00000 n +0000278693 00000 n +0000278945 00000 n +0000279231 00000 n +0000279440 00000 n +0000279707 00000 n +0000279934 00000 n +0000280218 00000 n +0000280491 00000 n +0000280736 00000 n +0000280993 00000 n +0000281229 00000 n +0000281469 00000 n +0000281724 00000 n +0000281989 00000 n +0000282262 00000 n +0000282529 00000 n +0000282782 00000 n +0000283002 00000 n +0000283281 00000 n +0000283484 00000 n +0000283735 00000 n +0000284012 00000 n +0000284327 00000 n +0000284652 00000 n +0000284890 00000 n +0000285214 00000 n +0000285496 00000 n +0000285736 00000 n +0000286018 00000 n +0000286266 00000 n +0000286535 00000 n +0000286812 00000 n +0000287092 00000 n +0000287346 00000 n +0000287589 00000 n +0000287794 00000 n +0000288098 00000 n +0000288325 00000 n +0000288632 00000 n +0000288836 00000 n +0000289122 00000 n +0000289392 00000 n +0000289661 00000 n +0000289882 00000 n +0000331801 00000 n +0000352836 00000 n +0000353119 00000 n +0000353342 00000 n +0000353632 00000 n +0000353983 00000 n +0000354308 00000 n +0000354599 00000 n +0000354861 00000 n +0000355102 00000 n +0000355401 00000 n +0000355653 00000 n +0000355907 00000 n +0000356129 00000 n +0000356374 00000 n +0000356662 00000 n +0000356921 00000 n +0000357125 00000 n +0000357346 00000 n +0000357586 00000 n +0000357832 00000 n +0000358057 00000 n +0000358286 00000 n +0000358495 00000 n +0000358751 00000 n +0000358971 00000 n +0000359196 00000 n +0000359493 00000 n +0000359700 00000 n +0000360006 00000 n +0000360261 00000 n +0000360495 00000 n +0000360745 00000 n +0000361001 00000 n +0000361275 00000 n +0000361524 00000 n +0000361801 00000 n +0000362071 00000 n +0000362279 00000 n +0000362522 00000 n +0000362734 00000 n +0000363062 00000 n +0000363288 00000 n +0000363492 00000 n +0000363717 00000 n +0000363971 00000 n +0000364191 00000 n +0000364417 00000 n +0000364664 00000 n +0000364924 00000 n +0000365173 00000 n +0000365426 00000 n +0000365706 00000 n +0000365951 00000 n +0000366209 00000 n +0000366454 00000 n +0000366690 00000 n +0000366964 00000 n +0000367240 00000 n +0000367504 00000 n +0000367721 00000 n +0000367962 00000 n +0000397237 00000 n +0000414284 00000 n +0000414586 00000 n +0000414884 00000 n +0000415194 00000 n +0000415472 00000 n +0000415813 00000 n +0000416031 00000 n +0000416256 00000 n +0000416556 00000 n +0000416827 00000 n +0000464443 00000 n +0000488708 00000 n +0000488985 00000 n +0000489232 00000 n +0000489481 00000 n +0000489743 00000 n +0000490071 00000 n +0000490329 00000 n +0000490584 00000 n +0000490824 00000 n +0000491081 00000 n +0000491376 00000 n +0000491580 00000 n +0000491820 00000 n +0000492124 00000 n +0000492421 00000 n +0000492680 00000 n +0000492947 00000 n +0000493231 00000 n +0000493497 00000 n +0000493786 00000 n +0000494063 00000 n +0000494338 00000 n +0000494608 00000 n +0000494912 00000 n +0000495164 00000 n +0000495422 00000 n +0000495685 00000 n +0000496006 00000 n +0000496292 00000 n +0000496576 00000 n +0000496804 00000 n +0000497088 00000 n +0000497367 00000 n +0000497658 00000 n +0000497947 00000 n +0000498225 00000 n +0000498431 00000 n +0000498643 00000 n +0000498893 00000 n +0000499143 00000 n +0000499358 00000 n +0000499620 00000 n +0000499885 00000 n +0000500104 00000 n +0000500374 00000 n +0000500619 00000 n +0000500861 00000 n +0000501105 00000 n +0000501381 00000 n +0000501687 00000 n +0000501979 00000 n +0000502275 00000 n +0000502578 00000 n +0000502854 00000 n +0000502983 00000 n +0000504310 00000 n +0000504458 00000 n +0000504481 00000 n +0000504501 00000 n +0000504521 00000 n +0000504541 00000 n +0000504561 00000 n +0000504581 00000 n +0000504602 00000 n +0000504623 00000 n +0000504643 00000 n +0000504664 00000 n +0000504685 00000 n +0000504705 00000 n +0000504725 00000 n +0000504745 00000 n +0000504766 00000 n +0000504786 00000 n +0000504807 00000 n +0000504828 00000 n +0000504848 00000 n +0000504869 00000 n +0000504890 00000 n +0000504910 00000 n +0000504930 00000 n +0000504950 00000 n +0000504971 00000 n +0000504991 00000 n +0000505011 00000 n +0000505032 00000 n +0000505052 00000 n +0000505072 00000 n +0000505092 00000 n +0000505112 00000 n +0000505132 00000 n +0000505152 00000 n +0000505172 00000 n +0000505192 00000 n +0000505212 00000 n +0000505232 00000 n +0000505252 00000 n +0000505272 00000 n +0000505292 00000 n +0000505312 00000 n +0000505332 00000 n +0000505352 00000 n +0000505372 00000 n +0000505392 00000 n +0000505412 00000 n +0000505432 00000 n +0000505452 00000 n +0000505472 00000 n +0000505492 00000 n +0000505512 00000 n +0000505532 00000 n +0000505552 00000 n +0000505572 00000 n +0000505592 00000 n +0000505612 00000 n +0000505632 00000 n +0000505652 00000 n +0000505672 00000 n +0000505692 00000 n +0000505712 00000 n +0000505732 00000 n +0000505752 00000 n +0000505772 00000 n +0000505792 00000 n +0000505812 00000 n +0000505832 00000 n +0000505853 00000 n +0000505873 00000 n +0000505894 00000 n +0000505914 00000 n +0000505935 00000 n +0000505955 00000 n +0000505975 00000 n +0000505995 00000 n +0000506015 00000 n +0000506036 00000 n +0000506056 00000 n +0000506076 00000 n +0000506096 00000 n +0000506116 00000 n +0000506136 00000 n +0000506157 00000 n +0000506177 00000 n +0000506197 00000 n +0000506217 00000 n +0000506237 00000 n +0000506257 00000 n +0000506277 00000 n +0000506297 00000 n +0000506317 00000 n +0000506337 00000 n +0000506357 00000 n +0000506377 00000 n +0000506397 00000 n +0000506417 00000 n +0000506437 00000 n +0000506457 00000 n +0000506477 00000 n +0000506497 00000 n +0000506517 00000 n +0000506537 00000 n +0000506557 00000 n +0000506577 00000 n +0000506597 00000 n +0000506617 00000 n +0000506638 00000 n +0000506658 00000 n +0000506678 00000 n +0000506698 00000 n +0000506718 00000 n +0000506738 00000 n +0000506758 00000 n +0000506778 00000 n +0000506798 00000 n +0000506818 00000 n +0000506838 00000 n +0000506858 00000 n +0000506878 00000 n +0000506899 00000 n +0000506919 00000 n +0000506939 00000 n +0000506960 00000 n +0000506980 00000 n +0000507001 00000 n +0000507022 00000 n +0000507042 00000 n +0000507062 00000 n +0000507083 00000 n +0000507103 00000 n +0000507123 00000 n +0000507143 00000 n +0000507163 00000 n +0000507183 00000 n +0000507203 00000 n +0000507223 00000 n +0000507243 00000 n +0000507263 00000 n +0000507283 00000 n +0000507303 00000 n +0000507323 00000 n +0000507343 00000 n +0000507363 00000 n +0000507383 00000 n +0000507403 00000 n +0000507423 00000 n +0000507443 00000 n +0000507463 00000 n +0000507483 00000 n +0000507503 00000 n +0000507523 00000 n +0000507543 00000 n +0000507563 00000 n +0000507583 00000 n +0000507603 00000 n +0000507623 00000 n +0000507643 00000 n +0000507663 00000 n +0000507683 00000 n +0000507703 00000 n +0000507723 00000 n +0000507743 00000 n +0000507763 00000 n +0000507783 00000 n +0000507803 00000 n +0000507823 00000 n +0000507843 00000 n +0000507863 00000 n +0000507883 00000 n +0000507903 00000 n +0000507923 00000 n +0000507943 00000 n +0000507963 00000 n +0000507983 00000 n +0000508003 00000 n +0000508023 00000 n +0000508043 00000 n +0000508063 00000 n +0000508083 00000 n +0000508103 00000 n +0000508123 00000 n +0000508143 00000 n +0000508163 00000 n +0000508183 00000 n +0000508203 00000 n +0000508223 00000 n +0000508244 00000 n +0000508264 00000 n +0000508284 00000 n +0000508304 00000 n +0000508325 00000 n +0000508345 00000 n +0000508365 00000 n +0000508385 00000 n +0000508405 00000 n +0000508425 00000 n +0000508445 00000 n +0000508465 00000 n +0000508485 00000 n +0000508505 00000 n +0000508525 00000 n +0000508545 00000 n +0000508565 00000 n +0000508585 00000 n +0000508605 00000 n +0000508628 00000 n +0000508648 00000 n +0000508668 00000 n +0000508688 00000 n +0000508708 00000 n +0000508728 00000 n +0000508748 00000 n +0000508768 00000 n +0000508788 00000 n +0000508808 00000 n +0000508828 00000 n +0000508848 00000 n +0000508868 00000 n +0000508888 00000 n +0000508908 00000 n +0000508928 00000 n +0000508949 00000 n +0000508969 00000 n +0000508989 00000 n +0000509009 00000 n +0000509030 00000 n +0000509050 00000 n +0000509070 00000 n +0000509090 00000 n +0000509110 00000 n +0000509130 00000 n +0000509151 00000 n +0000509172 00000 n +0000509192 00000 n +0000509212 00000 n +0000509232 00000 n +0000509253 00000 n +0000509273 00000 n +0000509294 00000 n +0000509314 00000 n +0000509334 00000 n +0000509354 00000 n +0000509374 00000 n +0000509394 00000 n +0000509414 00000 n +0000509434 00000 n +0000509455 00000 n +0000509475 00000 n +0000509495 00000 n +0000509515 00000 n +0000509535 00000 n +0000509555 00000 n +0000509575 00000 n +0000509596 00000 n +0000509616 00000 n +0000509636 00000 n +0000509656 00000 n +0000509676 00000 n +0000509696 00000 n +0000509719 00000 n +0000509740 00000 n +0000509761 00000 n +0000509781 00000 n +0000509802 00000 n +0000509822 00000 n +0000509842 00000 n +0000509862 00000 n +0000509882 00000 n +0000509902 00000 n +0000509922 00000 n +0000509942 00000 n +0000509962 00000 n +0000509982 00000 n +0000510002 00000 n +0000510022 00000 n +0000510042 00000 n +0000510062 00000 n +0000510082 00000 n +0000510102 00000 n +0000510122 00000 n +0000510142 00000 n +0000510162 00000 n +0000510182 00000 n +0000510202 00000 n +0000510222 00000 n +0000510242 00000 n +0000510262 00000 n +0000510282 00000 n +0000510302 00000 n +0000510323 00000 n +0000510344 00000 n +0000510364 00000 n +0000510385 00000 n +0000510405 00000 n +0000510425 00000 n +0000510445 00000 n +0000510465 00000 n +0000510485 00000 n +0000510505 00000 n +0000510525 00000 n +0000510545 00000 n +0000510565 00000 n +0000510585 00000 n +0000510606 00000 n +0000510626 00000 n +0000510647 00000 n +0000510667 00000 n +0000510687 00000 n +0000510707 00000 n +0000510727 00000 n +0000510747 00000 n +0000510770 00000 n +0000510790 00000 n +0000510810 00000 n +0000510830 00000 n +0000510851 00000 n +0000510872 00000 n +0000510892 00000 n +0000510912 00000 n +0000510932 00000 n +0000510953 00000 n +0000510973 00000 n +0000510993 00000 n +0000511013 00000 n +0000511033 00000 n +0000511053 00000 n +0000511073 00000 n +0000511093 00000 n +0000511113 00000 n +0000511133 00000 n +0000511153 00000 n +0000511173 00000 n +0000511193 00000 n +0000511213 00000 n +0000511233 00000 n +0000511253 00000 n +0000511273 00000 n +0000511294 00000 n +0000511314 00000 n +0000511335 00000 n +0000511355 00000 n +0000511375 00000 n +0000511395 00000 n +0000511415 00000 n +0000511435 00000 n +0000511455 00000 n +0000511475 00000 n +0000511495 00000 n +0000511515 00000 n +0000511535 00000 n +0000511555 00000 n +0000511576 00000 n +0000511596 00000 n +0000511616 00000 n +0000511636 00000 n +0000511656 00000 n +0000511676 00000 n +0000511696 00000 n +0000511716 00000 n +0000511736 00000 n +0000511756 00000 n +0000511776 00000 n +0000511796 00000 n +0000511816 00000 n +0000511836 00000 n +0000511856 00000 n +0000511876 00000 n +0000511896 00000 n +0000511916 00000 n +0000511936 00000 n +0000511956 00000 n +0000511976 00000 n +0000511999 00000 n +0000512020 00000 n +0000512041 00000 n +0000512062 00000 n +0000512082 00000 n +0000512103 00000 n +0000512123 00000 n +0000512143 00000 n +0000512164 00000 n +0000512184 00000 n +0000512207 00000 n +0000512227 00000 n +0000512247 00000 n +0000512267 00000 n +0000512287 00000 n +0000512308 00000 n +0000512328 00000 n +0000512348 00000 n +0000512368 00000 n +0000512388 00000 n +0000512409 00000 n +0000512429 00000 n +0000512449 00000 n +0000512470 00000 n +0000512491 00000 n +0000512511 00000 n +0000512531 00000 n +0000512551 00000 n +0000512571 00000 n +0000512591 00000 n +0000512611 00000 n +0000512631 00000 n +0000512651 00000 n +0000512672 00000 n +0000512692 00000 n +0000512712 00000 n +0000512732 00000 n +0000512753 00000 n +0000512773 00000 n +0000512793 00000 n +0000512813 00000 n +0000512833 00000 n +0000512853 00000 n +0000512873 00000 n +0000512893 00000 n +0000512913 00000 n +0000512933 00000 n +0000512953 00000 n +0000512973 00000 n +0000512993 00000 n +0000513013 00000 n +0000513033 00000 n +0000513053 00000 n +0000513073 00000 n +0000513093 00000 n +0000513113 00000 n +0000513133 00000 n +0000513153 00000 n +0000513173 00000 n +0000513194 00000 n +0000513214 00000 n +0000513235 00000 n +0000513256 00000 n +trailer +<< +/Size 889 +/Root 1 0 R +/Info 451 0 R +>> +startxref +513276 +%%EOF diff --git a/misc/Using Similar Positions to Search Game Trees.pdf b/misc/Using Similar Positions to Search Game Trees.pdf new file mode 100644 index 0000000..95c295e Binary files /dev/null and b/misc/Using Similar Positions to Search Game Trees.pdf differ diff --git a/misc/probcut.pdf b/misc/probcut.pdf new file mode 100644 index 0000000..802ed50 --- /dev/null +++ b/misc/probcut.pdf @@ -0,0 +1,12373 @@ +%PDF-1.2 +%ÐÓÔÌ +1 0 obj +<< +/Type /Catalog +/Pages 3 0 R +/Outlines 2 0 R +/Dests 5 0 R +/PageMode /UseNone +>> +endobj +2 0 obj +<< +/Type /Outlines +/Count 0 +>> +endobj +3 0 obj +<< +/Type /Pages +/MediaBox [ 0 0 595 842 ] +/Count 7 +/Kids [ 6 0 R 243 0 R 331 0 R 369 0 R 407 0 R 429 0 R 448 0 R ] +>> +endobj +4 0 obj +[ /PDF /Text /ImageC ] +endobj +5 0 obj +<< + +>> +endobj +6 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 545 0 R >> /XObject << /Im1 8 0 R /Im2 9 0 R /Im3 10 0 R /Im4 11 0 R /Im5 12 0 R /Im6 13 0 R /Im7 14 0 R /Im8 15 0 R /Im9 16 0 R /Im10 17 0 R /Im11 18 0 R /Im12 19 0 R /Im13 20 0 R /Im14 21 0 R /Im15 22 0 R /Im16 23 0 R /Im17 24 0 R /Im13 20 0 R /Im18 25 0 R /Im13 20 0 R /Im19 26 0 R /Im13 20 0 R /Im14 21 0 R /Im15 22 0 R /Im16 23 0 R /Im17 24 0 R /Im13 20 0 R /Im11 18 0 R /Im20 27 0 R /Im15 22 0 R /Im13 20 0 R /Im10 17 0 R /Im21 28 0 R /Im16 23 0 R /Im22 29 0 R /Im10 17 0 R /Im22 29 0 R /Im23 30 0 R /Im15 22 0 R /Im24 31 0 R /Im13 20 0 R /Im25 32 0 R /Im26 33 0 R /Im9 16 0 R /Im19 26 0 R /Im27 34 0 R /Im22 29 0 R /Im28 35 0 R /Im16 23 0 R /Im15 22 0 R /Im24 31 0 R /Im29 36 0 R /Im30 37 0 R /Im31 38 0 R /Im32 39 0 R /Im33 40 0 R /Im34 41 0 R /Im35 42 0 R /Im36 43 0 R /Im37 44 0 R /Im38 45 0 R /Im39 46 0 R /Im40 47 0 R /Im41 48 0 R /Im42 49 0 R /Im34 41 0 R /Im43 50 0 R /Im35 42 0 R /Im39 46 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im45 52 0 R /Im46 53 0 R /Im47 54 0 R /Im35 42 0 R /Im39 46 0 R /Im48 55 0 R /Im34 41 0 R /Im45 52 0 R /Im49 56 0 R /Im50 57 0 R /Im51 58 0 R /Im52 59 0 R /Im53 60 0 R /Im54 61 0 R /Im55 62 0 R /Im56 63 0 R /Im53 60 0 R /Im57 64 0 R /Im58 65 0 R /Im59 66 0 R /Im60 67 0 R /Im61 68 0 R /Im62 69 0 R /Im63 70 0 R /Im59 66 0 R /Im64 71 0 R /Im65 72 0 R /Im66 73 0 R /Im67 74 0 R /Im62 69 0 R /Im66 73 0 R /Im60 67 0 R /Im66 73 0 R /Im68 75 0 R /Im63 70 0 R /Im60 67 0 R /Im61 68 0 R /Im68 75 0 R /Im66 73 0 R /Im69 76 0 R /Im70 77 0 R /Im71 78 0 R /Im61 68 0 R /Im72 79 0 R /Im66 73 0 R /Im73 80 0 R /Im59 66 0 R /Im68 75 0 R /Im74 81 0 R /Im66 73 0 R /Im67 74 0 R /Im66 73 0 R /Im68 75 0 R /Im74 81 0 R /Im66 73 0 R /Im68 75 0 R /Im63 70 0 R /Im60 67 0 R /Im66 73 0 R /Im65 72 0 R /Im66 73 0 R /Im64 71 0 R /Im63 70 0 R /Im59 66 0 R /Im75 82 0 R /Im66 73 0 R /Im66 73 0 R /Im76 83 0 R /Im63 70 0 R /Im66 73 0 R /Im68 75 0 R /Im60 67 0 R /Im59 66 0 R /Im77 84 0 R /Im68 75 0 R /Im77 84 0 R /Im78 85 0 R /Im63 70 0 R /Im58 65 0 R /Im66 73 0 R /Im79 86 0 R /Im80 87 0 R /Im61 68 0 R /Im65 72 0 R /Im71 78 0 R /Im77 84 0 R /Im62 69 0 R /Im59 66 0 R /Im63 70 0 R /Im58 65 0 R /Im72 79 0 R /Im81 88 0 R /Im82 89 0 R /Im61 68 0 R /Im60 67 0 R /Im66 73 0 R /Im74 81 0 R /Im77 84 0 R /Im68 75 0 R /Im63 70 0 R /Im58 65 0 R /Im66 73 0 R /Im60 67 0 R /Im63 70 0 R /Im62 69 0 R /Im77 84 0 R /Im68 75 0 R /Im71 78 0 R /Im64 71 0 R /Im77 84 0 R /Im62 69 0 R /Im62 69 0 R /Im66 73 0 R /Im65 72 0 R /Im61 68 0 R /Im63 70 0 R /Im59 66 0 R /Im77 84 0 R /Im68 75 0 R /Im77 84 0 R /Im78 85 0 R /Im66 73 0 R /Im75 82 0 R /Im61 68 0 R /Im65 72 0 R /Im83 90 0 R /Im61 68 0 R /Im63 70 0 R /Im59 66 0 R /Im77 84 0 R /Im68 75 0 R /Im60 67 0 R /Im77 84 0 R /Im84 91 0 R /Im63 70 0 R /Im61 68 0 R /Im59 66 0 R /Im68 75 0 R /Im66 73 0 R /Im74 81 0 R /Im78 85 0 R /Im62 69 0 R /Im77 84 0 R /Im72 79 0 R /Im60 67 0 R /Im66 73 0 R /Im61 68 0 R /Im62 69 0 R /Im64 71 0 R /Im58 65 0 R /Im66 73 0 R /Im60 67 0 R /Im61 68 0 R /Im63 70 0 R /Im74 81 0 R /Im59 66 0 R /Im85 92 0 R /Im66 73 0 R /Im62 69 0 R /Im66 73 0 R /Im68 75 0 R /Im63 70 0 R /Im74 81 0 R /Im66 73 0 R /Im67 74 0 R /Im63 70 0 R /Im58 65 0 R /Im60 67 0 R /Im59 66 0 R /Im63 70 0 R /Im59 66 0 R /Im60 67 0 R /Im60 67 0 R /Im58 65 0 R /Im77 84 0 R /Im69 76 0 R /Im68 75 0 R /Im58 65 0 R /Im77 84 0 R /Im69 76 0 R /Im63 70 0 R /Im58 65 0 R /Im66 73 0 R /Im62 69 0 R /Im66 73 0 R /Im60 67 0 R /Im83 90 0 R /Im65 72 0 R /Im63 70 0 R /Im77 84 0 R /Im78 85 0 R /Im61 68 0 R /Im60 67 0 R /Im58 65 0 R /Im61 68 0 R /Im65 72 0 R /Im65 72 0 R /Im77 84 0 R /Im69 76 0 R /Im60 67 0 R /Im66 73 0 R /Im61 68 0 R /Im62 69 0 R /Im64 71 0 R /Im58 65 0 R /Im64 71 0 R /Im61 68 0 R /Im68 75 0 R /Im84 91 0 R /Im66 73 0 R /Im83 90 0 R /Im60 67 0 R /Im66 73 0 R /Im74 81 0 R /Im63 70 0 R /Im77 84 0 R /Im74 81 0 R /Im66 73 0 R /Im64 71 0 R /Im59 66 0 R /Im74 81 0 R /Im66 73 0 R /Im69 76 0 R /Im59 66 0 R /Im63 70 0 R /Im58 65 0 R /Im61 68 0 R /Im67 74 0 R /Im62 69 0 R /Im66 73 0 R /Im60 67 0 R /Im64 71 0 R /Im62 69 0 R /Im59 66 0 R /Im84 91 0 R /Im66 73 0 R /Im74 81 0 R /Im65 72 0 R /Im59 66 0 R /Im86 93 0 R /Im66 73 0 R /Im65 72 0 R /Im59 66 0 R /Im58 65 0 R /Im77 84 0 R /Im77 84 0 R /Im74 81 0 R /Im69 76 0 R /Im58 65 0 R /Im66 73 0 R /Im63 70 0 R /Im58 65 0 R /Im66 73 0 R /Im62 69 0 R /Im61 68 0 R /Im74 81 0 R /Im66 73 0 R /Im66 73 0 R /Im67 74 0 R /Im60 67 0 R /Im66 73 0 R /Im61 68 0 R /Im62 69 0 R /Im64 71 0 R /Im58 65 0 R /Im69 76 0 R /Im77 84 0 R /Im83 90 0 R /Im65 72 0 R /Im74 81 0 R /Im87 94 0 R /Im59 66 0 R /Im66 73 0 R /Im65 72 0 R /Im74 81 0 R /Im61 68 0 R /Im75 82 0 R /Im61 68 0 R /Im65 72 0 R /Im83 90 0 R /Im66 73 0 R /Im77 84 0 R /Im83 90 0 R /Im63 70 0 R /Im60 67 0 R /Im59 66 0 R /Im74 81 0 R /Im66 73 0 R /Im63 70 0 R /Im58 65 0 R /Im66 73 0 R /Im64 71 0 R /Im83 90 0 R /Im62 69 0 R /Im62 69 0 R /Im66 73 0 R /Im68 75 0 R /Im63 70 0 R /Im60 67 0 R /Im66 73 0 R /Im61 68 0 R /Im62 69 0 R /Im64 71 0 R /Im58 65 0 R /Im69 76 0 R /Im59 66 0 R /Im68 75 0 R /Im74 81 0 R /Im77 84 0 R /Im69 76 0 R /Im81 88 0 R /Im88 95 0 R /Im68 75 0 R /Im59 66 0 R /Im63 70 0 R /Im60 67 0 R /Im61 68 0 R /Im67 74 0 R /Im67 74 0 R /Im65 72 0 R /Im59 66 0 R /Im64 71 0 R /Im61 68 0 R /Im63 70 0 R /Im59 66 0 R /Im77 84 0 R /Im68 75 0 R /Im63 70 0 R /Im77 84 0 R /Im89 96 0 R /Im63 70 0 R /Im58 65 0 R /Im66 73 0 R /Im65 72 0 R /Im65 72 0 R /Im77 84 0 R /Im70 77 0 R /Im63 70 0 R /Im58 65 0 R /Im66 73 0 R /Im63 70 0 R /Im66 73 0 R /Im64 71 0 R /Im58 65 0 R /Im68 75 0 R /Im59 66 0 R /Im90 97 0 R /Im83 90 0 R /Im66 73 0 R /Im59 66 0 R /Im60 67 0 R /Im60 67 0 R /Im58 65 0 R /Im77 84 0 R /Im69 76 0 R /Im68 75 0 R /Im63 70 0 R /Im77 84 0 R /Im84 91 0 R /Im66 73 0 R /Im66 73 0 R /Im85 92 0 R /Im66 73 0 R /Im64 71 0 R /Im63 70 0 R /Im59 66 0 R /Im75 82 0 R /Im66 73 0 R /Im59 66 0 R /Im68 75 0 R /Im59 66 0 R /Im68 75 0 R /Im75 82 0 R /Im66 73 0 R /Im60 67 0 R /Im63 70 0 R /Im59 66 0 R /Im71 78 0 R /Im61 68 0 R /Im63 70 0 R /Im59 66 0 R /Im68 75 0 R /Im71 78 0 R /Im63 70 0 R /Im58 65 0 R /Im66 73 0 R /Im62 69 0 R /Im66 73 0 R /Im65 72 0 R /Im66 73 0 R /Im75 82 0 R /Im61 68 0 R /Im68 75 0 R /Im63 70 0 R /Im75 82 0 R /Im61 68 0 R /Im62 69 0 R /Im59 66 0 R /Im61 68 0 R /Im63 70 0 R /Im59 66 0 R /Im77 84 0 R /Im68 75 0 R /Im60 67 0 R /Im72 79 0 R /Im77 84 0 R /Im62 69 0 R /Im66 73 0 R /Im74 81 0 R /Im66 73 0 R /Im66 73 0 R /Im67 74 0 R /Im65 72 0 R /Im87 94 0 R /Im81 88 0 R /Im88 95 0 R /Im63 70 0 R /Im60 67 0 R /Im59 66 0 R /Im71 78 0 R /Im68 75 0 R /Im59 66 0 R /Im91 98 0 R /Im64 71 0 R /Im61 68 0 R /Im68 75 0 R /Im63 70 0 R /Im65 72 0 R /Im87 94 0 R /Im59 66 0 R /Im68 75 0 R /Im64 71 0 R /Im62 69 0 R /Im66 73 0 R /Im61 68 0 R /Im60 67 0 R /Im66 73 0 R /Im74 81 0 R /Im63 70 0 R /Im58 65 0 R /Im66 73 0 R /Im67 74 0 R /Im65 72 0 R /Im61 68 0 R /Im87 94 0 R /Im59 66 0 R /Im68 75 0 R /Im71 78 0 R /Im60 67 0 R /Im63 70 0 R /Im62 69 0 R /Im66 73 0 R /Im68 75 0 R /Im71 78 0 R /Im63 70 0 R /Im58 65 0 R /Im77 84 0 R /Im78 85 0 R /Im61 68 0 R /Im68 75 0 R /Im61 68 0 R /Im65 72 0 R /Im62 69 0 R /Im66 73 0 R /Im61 68 0 R /Im74 81 0 R /Im87 94 0 R /Im60 67 0 R /Im63 70 0 R /Im62 69 0 R /Im77 84 0 R /Im68 75 0 R /Im71 78 0 R /Im84 91 0 R /Im62 69 0 R /Im83 90 0 R /Im63 70 0 R /Im66 73 0 R /Im92 99 0 R /Im78 85 0 R /Im77 84 0 R /Im62 69 0 R /Im64 71 0 R /Im66 73 0 R /Im89 96 0 R /Im63 70 0 R /Im58 65 0 R /Im66 73 0 R /Im65 72 0 R /Im65 72 0 R /Im77 84 0 R /Im67 74 0 R /Im62 69 0 R /Im77 84 0 R /Im71 78 0 R /Im62 69 0 R /Im61 68 0 R /Im72 79 0 R /Im81 88 0 R /Im93 100 0 R /Im94 101 0 R /Im95 102 0 R /Im10 17 0 R /Im15 22 0 R /Im28 35 0 R /Im22 29 0 R /Im96 103 0 R /Im97 104 0 R /Im14 21 0 R /Im15 22 0 R /Im16 23 0 R /Im22 29 0 R /Im10 17 0 R /Im98 105 0 R /Im38 45 0 R /Im48 55 0 R /Im34 41 0 R /Im45 52 0 R /Im99 106 0 R /Im36 43 0 R /Im34 41 0 R /Im49 56 0 R /Im35 42 0 R /Im39 46 0 R /Im100 107 0 R /Im101 108 0 R /Im35 42 0 R /Im36 43 0 R /Im36 43 0 R /Im38 45 0 R /Im100 107 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im101 108 0 R /Im34 41 0 R /Im102 109 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im101 108 0 R /Im39 46 0 R /Im35 42 0 R /Im35 42 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im100 107 0 R /Im45 52 0 R /Im40 47 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im103 110 0 R /Im35 42 0 R /Im101 108 0 R /Im40 47 0 R /Im44 51 0 R /Im35 42 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im35 42 0 R /Im43 50 0 R /Im31 38 0 R /Im45 52 0 R /Im31 38 0 R /Im101 108 0 R /Im100 107 0 R /Im104 111 0 R /Im38 45 0 R /Im36 43 0 R /Im36 43 0 R /Im105 112 0 R /Im31 38 0 R /Im43 50 0 R /Im101 108 0 R /Im33 40 0 R /Im31 38 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im43 50 0 R /Im35 42 0 R /Im39 46 0 R /Im101 108 0 R /Im40 47 0 R /Im106 113 0 R /Im45 52 0 R /Im43 50 0 R /Im34 41 0 R /Im102 109 0 R /Im40 47 0 R /Im40 47 0 R /Im43 50 0 R /Im48 55 0 R /Im40 47 0 R /Im103 110 0 R /Im35 42 0 R /Im81 88 0 R /Im107 114 0 R /Im100 107 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im31 38 0 R /Im39 46 0 R /Im35 42 0 R /Im108 115 0 R /Im99 106 0 R /Im35 42 0 R /Im39 46 0 R /Im31 38 0 R /Im35 42 0 R /Im45 52 0 R /Im32 39 0 R /Im35 42 0 R /Im46 53 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im49 56 0 R /Im34 41 0 R /Im39 46 0 R /Im35 42 0 R /Im34 41 0 R /Im44 51 0 R /Im36 43 0 R /Im35 42 0 R /Im101 108 0 R /Im40 47 0 R /Im99 106 0 R /Im39 46 0 R /Im38 45 0 R /Im45 52 0 R /Im35 42 0 R /Im31 38 0 R /Im45 52 0 R /Im34 41 0 R /Im43 50 0 R /Im103 110 0 R /Im34 41 0 R /Im45 52 0 R /Im32 39 0 R /Im35 42 0 R /Im38 45 0 R /Im45 52 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im48 55 0 R /Im31 38 0 R /Im100 107 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im103 110 0 R /Im34 41 0 R /Im39 46 0 R /Im31 38 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im100 107 0 R /Im81 88 0 R /Im109 116 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im100 107 0 R /Im38 45 0 R /Im36 43 0 R /Im101 108 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im102 109 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im101 108 0 R /Im39 46 0 R /Im35 42 0 R /Im35 42 0 R /Im100 107 0 R /Im34 41 0 R /Im39 46 0 R /Im35 42 0 R /Im45 52 0 R /Im34 41 0 R /Im39 46 0 R /Im39 46 0 R /Im40 47 0 R /Im105 112 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im32 39 0 R /Im34 41 0 R /Im45 52 0 R /Im44 51 0 R /Im35 42 0 R /Im39 46 0 R /Im34 41 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im43 50 0 R /Im35 42 0 R /Im35 42 0 R /Im99 106 0 R /Im81 88 0 R /Im37 44 0 R /Im49 56 0 R /Im32 39 0 R /Im40 47 0 R /Im45 52 0 R /Im101 108 0 R /Im39 46 0 R /Im34 41 0 R /Im100 107 0 R /Im101 108 0 R /Im46 53 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im40 47 0 R /Im39 46 0 R /Im31 38 0 R /Im102 109 0 R /Im31 38 0 R /Im45 52 0 R /Im34 41 0 R /Im36 43 0 R /Im48 55 0 R /Im31 38 0 R /Im45 52 0 R /Im31 38 0 R /Im48 55 0 R /Im34 41 0 R /Im108 115 0 R /Im34 41 0 R /Im36 43 0 R /Im102 109 0 R /Im40 47 0 R /Im39 46 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im48 55 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im35 42 0 R /Im100 107 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im31 38 0 R /Im39 46 0 R /Im35 42 0 R /Im102 109 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im101 108 0 R /Im39 46 0 R /Im35 42 0 R /Im35 42 0 R /Im38 45 0 R /Im99 106 0 R /Im101 108 0 R /Im40 47 0 R /Im34 41 0 R /Im32 39 0 R /Im35 42 0 R /Im39 46 0 R /Im101 108 0 R /Im34 41 0 R /Im31 38 0 R /Im45 52 0 R /Im43 50 0 R /Im35 42 0 R /Im99 106 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im35 42 0 R /Im103 110 0 R /Im35 42 0 R /Im45 52 0 R /Im31 38 0 R /Im101 108 0 R /Im100 107 0 R /Im35 42 0 R /Im110 117 0 R /Im32 39 0 R /Im31 38 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im31 38 0 R /Im48 55 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im103 110 0 R /Im35 42 0 R /Im48 55 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im111 118 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im112 119 0 R /Im113 120 0 R /Im34 41 0 R /Im36 43 0 R /Im102 109 0 R /Im40 47 0 R /Im39 46 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im48 55 0 R /Im114 121 0 R /Im115 122 0 R /Im116 123 0 R /Im117 124 0 R /Im118 125 0 R /Im119 126 0 R /Im120 127 0 R /Im121 128 0 R /Im122 129 0 R /Im122 129 0 R /Im123 130 0 R /Im124 131 0 R /Im114 121 0 R /Im125 132 0 R /Im126 133 0 R /Im127 134 0 R /Im128 135 0 R /Im129 136 0 R /Im129 136 0 R /Im111 118 0 R /Im31 38 0 R /Im100 107 0 R /Im40 47 0 R /Im45 52 0 R /Im36 43 0 R /Im49 56 0 R /Im34 41 0 R /Im36 43 0 R /Im36 43 0 R /Im40 47 0 R /Im105 112 0 R /Im35 42 0 R /Im43 50 0 R /Im101 108 0 R /Im40 47 0 R /Im99 106 0 R /Im39 46 0 R /Im38 45 0 R /Im45 52 0 R /Im35 42 0 R /Im44 51 0 R /Im34 41 0 R /Im32 39 0 R /Im130 137 0 R /Im105 112 0 R /Im34 41 0 R /Im39 46 0 R /Im43 50 0 R /Im100 107 0 R /Im100 107 0 R /Im31 38 0 R /Im45 52 0 R /Im32 39 0 R /Im35 42 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im100 107 0 R /Im101 108 0 R /Im40 47 0 R /Im32 39 0 R /Im40 47 0 R /Im48 55 0 R /Im99 106 0 R /Im38 45 0 R /Im101 108 0 R /Im35 42 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im32 39 0 R /Im40 47 0 R /Im39 46 0 R /Im39 46 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im48 55 0 R /Im31 38 0 R /Im45 52 0 R /Im31 38 0 R /Im48 55 0 R /Im34 41 0 R /Im108 115 0 R /Im103 110 0 R /Im34 41 0 R /Im36 43 0 R /Im38 45 0 R /Im35 42 0 R /Im81 88 0 R /Im131 138 0 R /Im45 52 0 R /Im105 112 0 R /Im33 40 0 R /Im34 41 0 R /Im101 108 0 R /Im104 111 0 R /Im40 47 0 R /Im36 43 0 R /Im36 43 0 R /Im40 47 0 R /Im105 112 0 R /Im100 107 0 R /Im46 53 0 R /Im34 41 0 R /Im100 107 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im35 42 0 R /Im108 115 0 R /Im101 108 0 R /Im35 42 0 R /Im45 52 0 R /Im100 107 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im112 119 0 R /Im113 120 0 R /Im34 41 0 R /Im36 43 0 R /Im102 109 0 R /Im40 47 0 R /Im39 46 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im48 55 0 R /Im111 118 0 R /Im132 139 0 R /Im133 140 0 R /Im134 141 0 R /Im135 142 0 R /Im136 143 0 R /Im137 144 0 R /Im138 145 0 R /Im111 118 0 R /Im105 112 0 R /Im31 38 0 R /Im36 43 0 R /Im36 43 0 R /Im44 51 0 R /Im35 42 0 R /Im99 106 0 R /Im39 46 0 R /Im35 42 0 R /Im100 107 0 R /Im35 42 0 R /Im45 52 0 R /Im139 146 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im105 112 0 R /Im33 40 0 R /Im31 38 0 R /Im32 39 0 R /Im33 40 0 R /Im102 109 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im100 107 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im32 39 0 R /Im40 47 0 R /Im48 55 0 R /Im48 55 0 R /Im40 47 0 R /Im45 52 0 R /Im44 51 0 R /Im39 46 0 R /Im38 45 0 R /Im101 108 0 R /Im35 42 0 R /Im140 147 0 R /Im104 111 0 R /Im40 47 0 R /Im39 46 0 R /Im32 39 0 R /Im35 42 0 R /Im34 41 0 R /Im99 106 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im34 41 0 R /Im32 39 0 R /Im33 40 0 R /Im34 41 0 R /Im33 40 0 R /Im38 45 0 R /Im48 55 0 R /Im34 41 0 R /Im45 52 0 R /Im101 108 0 R /Im40 47 0 R /Im38 45 0 R /Im32 39 0 R /Im33 40 0 R /Im81 88 0 R /Im98 105 0 R /Im40 47 0 R /Im105 112 0 R /Im35 42 0 R /Im103 110 0 R /Im35 42 0 R /Im39 46 0 R /Im46 53 0 R /Im31 38 0 R /Im101 108 0 R /Im31 38 0 R /Im100 107 0 R /Im45 52 0 R /Im40 47 0 R /Im101 108 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im106 113 0 R /Im39 46 0 R /Im100 107 0 R /Im101 108 0 R /Im100 107 0 R /Im101 108 0 R /Im35 42 0 R /Im99 106 0 R /Im31 38 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im31 38 0 R /Im100 107 0 R /Im43 50 0 R /Im31 38 0 R /Im39 46 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im81 88 0 R /Im37 44 0 R /Im35 42 0 R /Im100 107 0 R /Im31 38 0 R /Im43 50 0 R /Im35 42 0 R /Im100 107 0 R /Im100 107 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im141 148 0 R /Im38 45 0 R /Im31 38 0 R /Im35 42 0 R /Im100 107 0 R /Im32 39 0 R /Im35 42 0 R /Im45 52 0 R /Im32 39 0 R /Im35 42 0 R /Im140 147 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im48 55 0 R /Im35 42 0 R /Im101 108 0 R /Im33 40 0 R /Im40 47 0 R /Im43 50 0 R /Im100 107 0 R /Im46 53 0 R /Im100 107 0 R /Im38 45 0 R /Im32 39 0 R /Im33 40 0 R /Im34 41 0 R /Im100 107 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im45 52 0 R /Im38 45 0 R /Im36 43 0 R /Im36 43 0 R /Im140 147 0 R /Im48 55 0 R /Im40 47 0 R /Im103 110 0 R /Im35 42 0 R /Im33 40 0 R /Im35 42 0 R /Im38 45 0 R /Im39 46 0 R /Im31 38 0 R /Im100 107 0 R /Im101 108 0 R /Im31 38 0 R /Im32 39 0 R /Im114 121 0 R /Im142 149 0 R /Im124 131 0 R /Im143 150 0 R /Im144 151 0 R /Im114 121 0 R /Im145 152 0 R /Im146 153 0 R /Im146 153 0 R /Im147 154 0 R /Im129 136 0 R /Im129 136 0 R /Im46 53 0 R /Im40 47 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im34 41 0 R /Im36 43 0 R /Im102 109 0 R /Im40 47 0 R /Im39 46 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im48 55 0 R /Im100 107 0 R /Im33 40 0 R /Im34 41 0 R /Im103 110 0 R /Im35 42 0 R /Im44 51 0 R /Im35 42 0 R /Im35 42 0 R /Im45 52 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im99 106 0 R /Im40 47 0 R /Im100 107 0 R /Im35 42 0 R /Im43 50 0 R /Im111 118 0 R /Im104 111 0 R /Im40 47 0 R /Im39 46 0 R /Im35 42 0 R /Im108 115 0 R /Im34 41 0 R /Im48 55 0 R /Im99 106 0 R /Im36 43 0 R /Im35 42 0 R /Im44 51 0 R /Im49 56 0 R /Im121 128 0 R /Im148 155 0 R /Im149 156 0 R /Im144 151 0 R /Im144 151 0 R /Im124 131 0 R /Im150 157 0 R /Im118 125 0 R /Im124 131 0 R /Im123 130 0 R /Im114 121 0 R /Im125 132 0 R /Im126 133 0 R /Im151 158 0 R /Im151 158 0 R /Im129 136 0 R /Im46 53 0 R /Im152 159 0 R /Im143 150 0 R /Im144 151 0 R /Im143 150 0 R /Im153 160 0 R /Im114 121 0 R /Im125 132 0 R /Im126 133 0 R /Im151 158 0 R /Im128 135 0 R /Im129 136 0 R /Im46 53 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im154 161 0 R /Im155 162 0 R /Im156 163 0 R /Im124 131 0 R /Im150 157 0 R /Im118 125 0 R /Im114 121 0 R /Im125 132 0 R /Im126 133 0 R /Im151 158 0 R /Im151 158 0 R /Im129 136 0 R /Im111 118 0 R /Im105 112 0 R /Im33 40 0 R /Im31 38 0 R /Im32 39 0 R /Im33 40 0 R /Im34 41 0 R /Im39 46 0 R /Im35 42 0 R /Im34 41 0 R /Im44 51 0 R /Im36 43 0 R /Im35 42 0 R /Im101 108 0 R /Im40 47 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im102 109 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im101 108 0 R /Im39 46 0 R /Im35 42 0 R /Im35 42 0 R /Im31 38 0 R /Im45 52 0 R /Im34 41 0 R /Im44 51 0 R /Im35 42 0 R /Im100 107 0 R /Im101 108 0 R /Im140 147 0 R /Im106 113 0 R /Im39 46 0 R /Im100 107 0 R /Im101 108 0 R /Im48 55 0 R /Im34 41 0 R /Im45 52 0 R /Im45 52 0 R /Im35 42 0 R /Im39 46 0 R /Im46 53 0 R /Im44 51 0 R /Im38 45 0 R /Im101 108 0 R /Im38 45 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im45 52 0 R /Im34 41 0 R /Im48 55 0 R /Im40 47 0 R /Im38 45 0 R /Im45 52 0 R /Im101 108 0 R /Im40 47 0 R /Im104 111 0 R /Im48 55 0 R /Im35 42 0 R /Im48 55 0 R /Im40 47 0 R /Im39 46 0 R /Im49 56 0 R /Im39 46 0 R /Im40 47 0 R /Im38 45 0 R /Im102 109 0 R /Im33 40 0 R /Im36 43 0 R /Im49 56 0 R /Im40 47 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im40 47 0 R /Im39 46 0 R /Im43 50 0 R /Im35 42 0 R /Im39 46 0 R /Im40 47 0 R /Im104 111 0 R /Im45 52 0 R /Im38 45 0 R /Im48 55 0 R /Im44 51 0 R /Im35 42 0 R /Im39 46 0 R /Im40 47 0 R /Im104 111 0 R /Im45 52 0 R /Im40 47 0 R /Im43 50 0 R /Im35 42 0 R /Im100 107 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im35 42 0 R /Im43 50 0 R /Im81 88 0 R /Im109 116 0 R /Im33 40 0 R /Im31 38 0 R /Im100 107 0 R /Im31 38 0 R /Im100 107 0 R /Im45 52 0 R /Im40 47 0 R /Im101 108 0 R /Im99 106 0 R /Im39 46 0 R /Im34 41 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im32 39 0 R /Im34 41 0 R /Im36 43 0 R /Im104 111 0 R /Im40 47 0 R /Im39 46 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im102 109 0 R /Im39 46 0 R /Im34 41 0 R /Im48 55 0 R /Im100 107 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im104 111 0 R /Im34 41 0 R /Im100 107 0 R /Im101 108 0 R /Im35 42 0 R /Im103 110 0 R /Im34 41 0 R /Im36 43 0 R /Im38 45 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im104 111 0 R /Im38 45 0 R /Im45 52 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im39 46 0 R /Im38 45 0 R /Im45 52 0 R /Im45 52 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im40 47 0 R /Im45 52 0 R /Im32 39 0 R /Im40 47 0 R /Im45 52 0 R /Im103 110 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im34 41 0 R /Im36 43 0 R /Im33 40 0 R /Im34 41 0 R /Im39 46 0 R /Im43 50 0 R /Im105 112 0 R /Im34 41 0 R /Im39 46 0 R /Im35 42 0 R /Im81 88 0 R /Im132 139 0 R /Im133 140 0 R /Im134 141 0 R /Im135 142 0 R /Im136 143 0 R /Im137 144 0 R /Im138 145 0 R /Im46 53 0 R /Im33 40 0 R /Im40 47 0 R /Im105 112 0 R /Im35 42 0 R /Im103 110 0 R /Im35 42 0 R /Im39 46 0 R /Im46 53 0 R /Im45 52 0 R /Im35 42 0 R /Im35 42 0 R /Im43 50 0 R /Im100 107 0 R /Im45 52 0 R /Im40 47 0 R /Im48 55 0 R /Im35 42 0 R /Im48 55 0 R /Im40 47 0 R /Im39 46 0 R /Im49 56 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im31 38 0 R /Im101 108 0 R /Im100 107 0 R /Im34 41 0 R /Im99 106 0 R /Im99 106 0 R /Im36 43 0 R /Im31 38 0 R /Im32 39 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im31 38 0 R /Im100 107 0 R /Im45 52 0 R /Im40 47 0 R /Im101 108 0 R /Im36 43 0 R /Im31 38 0 R /Im48 55 0 R /Im31 38 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im101 108 0 R /Im40 47 0 R /Im141 148 0 R /Im38 45 0 R /Im31 38 0 R /Im35 42 0 R /Im100 107 0 R /Im32 39 0 R /Im35 42 0 R /Im45 52 0 R /Im32 39 0 R /Im35 42 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im81 88 0 R /Im157 164 0 R /Im36 43 0 R /Im100 107 0 R /Im40 47 0 R /Im46 53 0 R /Im31 38 0 R /Im101 108 0 R /Im31 38 0 R /Im100 107 0 R /Im35 42 0 R /Im158 165 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im45 52 0 R /Im40 47 0 R /Im101 108 0 R /Im40 47 0 R /Im45 52 0 R /Im36 43 0 R /Im49 56 0 R /Im31 38 0 R /Im45 52 0 R /Im101 108 0 R /Im34 41 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im32 39 0 R /Im34 41 0 R /Im36 43 0 R /Im99 106 0 R /Im40 47 0 R /Im100 107 0 R /Im31 38 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im100 107 0 R /Im105 112 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im40 47 0 R /Im45 52 0 R /Im35 42 0 R /Im48 55 0 R /Im40 47 0 R /Im103 110 0 R /Im35 42 0 R /Im31 38 0 R /Im100 107 0 R /Im32 39 0 R /Im36 43 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im36 43 0 R /Im49 56 0 R /Im100 107 0 R /Im38 45 0 R /Im99 106 0 R /Im35 42 0 R /Im39 46 0 R /Im31 38 0 R /Im40 47 0 R /Im39 46 0 R /Im101 108 0 R /Im40 47 0 R /Im34 41 0 R /Im36 43 0 R /Im36 43 0 R /Im40 47 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im100 107 0 R /Im46 53 0 R /Im100 107 0 R /Im38 45 0 R /Im32 39 0 R /Im33 40 0 R /Im34 41 0 R /Im100 107 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im159 166 0 R /Im100 107 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im38 45 0 R /Im36 43 0 R /Im34 41 0 R /Im39 46 0 R /Im35 42 0 R /Im108 115 0 R /Im101 108 0 R /Im35 42 0 R /Im45 52 0 R /Im100 107 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im100 107 0 R /Im160 167 0 R /Im31 38 0 R /Im45 52 0 R /Im101 108 0 R /Im39 46 0 R /Im40 47 0 R /Im43 50 0 R /Im38 45 0 R /Im32 39 0 R /Im35 42 0 R /Im43 50 0 R /Im44 51 0 R /Im49 56 0 R /Im149 156 0 R /Im116 123 0 R /Im143 150 0 R /Im116 123 0 R /Im118 125 0 R /Im119 126 0 R /Im143 150 0 R /Im123 130 0 R /Im143 150 0 R /Im161 168 0 R /Im143 150 0 R /Im116 123 0 R /Im124 131 0 R /Im118 125 0 R /Im143 150 0 R /Im144 151 0 R /Im81 88 0 R /Im114 121 0 R /Im125 132 0 R /Im126 133 0 R /Im126 133 0 R /Im162 169 0 R /Im129 136 0 R /Im81 88 0 R /Im157 164 0 R /Im101 108 0 R /Im35 42 0 R /Im32 39 0 R /Im33 40 0 R /Im45 52 0 R /Im31 38 0 R /Im141 148 0 R /Im38 45 0 R /Im35 42 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im31 38 0 R /Im48 55 0 R /Im100 107 0 R /Im100 107 0 R /Im31 38 0 R /Im48 55 0 R /Im31 38 0 R /Im36 43 0 R /Im34 41 0 R /Im39 46 0 R /Im101 108 0 R /Im40 47 0 R /Im132 139 0 R /Im133 140 0 R /Im134 141 0 R /Im135 142 0 R /Im136 143 0 R /Im137 144 0 R /Im138 145 0 R /Im31 38 0 R /Im100 107 0 R /Im38 45 0 R /Im100 107 0 R /Im35 42 0 R /Im43 50 0 R /Im31 38 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im32 39 0 R /Im33 40 0 R /Im35 42 0 R /Im32 39 0 R /Im130 137 0 R /Im35 42 0 R /Im39 46 0 R /Im100 107 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im102 109 0 R /Im39 46 0 R /Im34 41 0 R /Im48 55 0 R /Im136 143 0 R /Im163 170 0 R /Im164 171 0 R /Im165 172 0 R /Im166 173 0 R /Im166 173 0 R /Im167 174 0 R /Im81 88 0 R /Im168 175 0 R /Im148 155 0 R /Im119 126 0 R /Im143 150 0 R /Im124 131 0 R /Im169 176 0 R /Im169 176 0 R /Im124 131 0 R /Im123 130 0 R /Im124 131 0 R /Im118 125 0 R /Im143 150 0 R /Im144 151 0 R /Im81 88 0 R /Im114 121 0 R /Im125 132 0 R /Im126 133 0 R /Im126 133 0 R /Im170 177 0 R /Im129 136 0 R /Im43 50 0 R /Im35 42 0 R /Im100 107 0 R /Im32 39 0 R /Im39 46 0 R /Im31 38 0 R /Im44 51 0 R /Im35 42 0 R /Im43 50 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im31 38 0 R /Im39 46 0 R /Im34 41 0 R /Im99 106 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im34 41 0 R /Im32 39 0 R /Im33 40 0 R /Im46 53 0 R /Im32 39 0 R /Im34 41 0 R /Im100 107 0 R /Im38 45 0 R /Im34 41 0 R /Im36 43 0 R /Im36 43 0 R /Im49 56 0 R /Im46 53 0 R /Im31 38 0 R /Im45 52 0 R /Im34 41 0 R /Im104 111 0 R /Im40 47 0 R /Im40 47 0 R /Im101 108 0 R /Im45 52 0 R /Im40 47 0 R /Im101 108 0 R /Im35 42 0 R /Im171 178 0 R /Im136 143 0 R /Im163 170 0 R /Im164 171 0 R /Im165 172 0 R /Im166 173 0 R /Im166 173 0 R /Im167 174 0 R /Im99 106 0 R /Im35 42 0 R /Im39 46 0 R /Im104 111 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im100 107 0 R /Im104 111 0 R /Im40 47 0 R /Im39 46 0 R /Im105 112 0 R /Im34 41 0 R /Im39 46 0 R /Im43 50 0 R /Im32 39 0 R /Im38 45 0 R /Im101 108 0 R /Im100 107 0 R /Im31 38 0 R /Im45 52 0 R /Im99 106 0 R /Im40 47 0 R /Im100 107 0 R /Im31 38 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im100 107 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im48 55 0 R /Im34 41 0 R /Im101 108 0 R /Im35 42 0 R /Im39 46 0 R /Im31 38 0 R /Im34 41 0 R /Im36 43 0 R /Im43 50 0 R /Im35 42 0 R /Im106 113 0 R /Im32 39 0 R /Im31 38 0 R /Im101 108 0 R /Im31 38 0 R /Im45 52 0 R /Im105 112 0 R /Im33 40 0 R /Im31 38 0 R /Im32 39 0 R /Im33 40 0 R /Im34 41 0 R /Im100 107 0 R /Im33 40 0 R /Im34 41 0 R /Im36 43 0 R /Im36 43 0 R /Im40 47 0 R /Im105 112 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im100 107 0 R /Im45 52 0 R /Im40 47 0 R /Im101 108 0 R /Im100 107 0 R /Im33 40 0 R /Im40 47 0 R /Im105 112 0 R /Im34 41 0 R /Im45 52 0 R /Im35 42 0 R /Im100 107 0 R /Im32 39 0 R /Im34 41 0 R /Im99 106 0 R /Im35 42 0 R /Im81 88 0 R /Im132 139 0 R /Im133 140 0 R /Im134 141 0 R /Im135 142 0 R /Im136 143 0 R /Im137 144 0 R /Im138 145 0 R /Im31 38 0 R /Im100 107 0 R /Im34 41 0 R /Im102 109 0 R /Im35 42 0 R /Im45 52 0 R /Im35 42 0 R /Im39 46 0 R /Im34 41 0 R /Im36 43 0 R /Im31 38 0 R /Im172 179 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im31 38 0 R /Im100 107 0 R /Im48 55 0 R /Im35 42 0 R /Im101 108 0 R /Im33 40 0 R /Im40 47 0 R /Im43 50 0 R /Im31 38 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im101 108 0 R /Im31 38 0 R /Im100 107 0 R /Im102 109 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im31 38 0 R /Im45 52 0 R /Im43 50 0 R /Im35 42 0 R /Im99 106 0 R /Im35 42 0 R /Im45 52 0 R /Im43 50 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im43 50 0 R /Im40 47 0 R /Im35 42 0 R /Im100 107 0 R /Im45 52 0 R /Im40 47 0 R /Im101 108 0 R /Im39 46 0 R /Im35 42 0 R /Im36 43 0 R /Im49 56 0 R /Im40 47 0 R /Im45 52 0 R /Im99 106 0 R /Im34 41 0 R /Im39 46 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im101 108 0 R /Im35 42 0 R /Im39 46 0 R /Im100 107 0 R /Im101 108 0 R /Im40 47 0 R /Im44 51 0 R /Im35 42 0 R /Im32 39 0 R /Im33 40 0 R /Im40 47 0 R /Im100 107 0 R /Im35 42 0 R /Im45 52 0 R /Im44 51 0 R /Im49 56 0 R /Im31 38 0 R /Im45 52 0 R /Im101 108 0 R /Im38 45 0 R /Im31 38 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im81 88 0 R /Im131 138 0 R /Im101 108 0 R /Im105 112 0 R /Im34 41 0 R /Im100 107 0 R /Im101 108 0 R /Im35 42 0 R /Im100 107 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im44 51 0 R /Im49 56 0 R /Im31 38 0 R /Im45 52 0 R /Im32 39 0 R /Im40 47 0 R /Im39 46 0 R /Im99 106 0 R /Im40 47 0 R /Im39 46 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im31 38 0 R /Im101 108 0 R /Im31 38 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im34 41 0 R /Im38 45 0 R /Im101 108 0 R /Im33 40 0 R /Im40 47 0 R /Im39 46 0 R /Im46 53 0 R /Im100 107 0 R /Im34 41 0 R /Im36 43 0 R /Im39 46 0 R /Im35 42 0 R /Im34 41 0 R /Im43 50 0 R /Im49 56 0 R /Im100 107 0 R /Im101 108 0 R /Im39 46 0 R /Im40 47 0 R /Im45 52 0 R /Im102 109 0 R /Im173 180 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im36 43 0 R /Im36 43 0 R /Im40 47 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im102 109 0 R /Im39 46 0 R /Im34 41 0 R /Im48 55 0 R /Im174 181 0 R /Im166 173 0 R /Im175 182 0 R /Im164 171 0 R /Im176 183 0 R /Im177 184 0 R /Im178 185 0 R /Im174 181 0 R /Im174 181 0 R /Im166 173 0 R /Im179 186 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im31 38 0 R /Im45 52 0 R /Im32 39 0 R /Im39 46 0 R /Im35 42 0 R /Im34 41 0 R /Im100 107 0 R /Im35 42 0 R /Im43 50 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im102 109 0 R /Im39 46 0 R /Im34 41 0 R /Im48 55 0 R /Im46 53 0 R /Im100 107 0 R /Im99 106 0 R /Im36 43 0 R /Im34 41 0 R /Im49 56 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im100 107 0 R /Im101 108 0 R /Im39 46 0 R /Im35 42 0 R /Im45 52 0 R /Im102 109 0 R /Im101 108 0 R /Im33 40 0 R /Im32 39 0 R /Im40 47 0 R /Im45 52 0 R /Im100 107 0 R /Im31 38 0 R /Im43 50 0 R /Im35 42 0 R /Im39 46 0 R /Im34 41 0 R /Im44 51 0 R /Im36 43 0 R /Im49 56 0 R /Im81 88 0 R /Im180 187 0 R /Im181 188 0 R /Im182 189 0 R /Im183 190 0 R /Im184 191 0 R /Im185 192 0 R /Im186 193 0 R /Im187 194 0 R /Im183 190 0 R /Im188 195 0 R /Im189 196 0 R /Im190 197 0 R /Im191 198 0 R /Im192 199 0 R /Im193 200 0 R /Im194 201 0 R /Im185 192 0 R /Im186 193 0 R /Im195 202 0 R /Im190 197 0 R /Im186 193 0 R /Im182 189 0 R /Im196 203 0 R /Im197 204 0 R /Im185 192 0 R /Im198 205 0 R /Im193 200 0 R /Im186 193 0 R /Im188 195 0 R /Im199 206 0 R /Im185 192 0 R /Im182 189 0 R /Im188 195 0 R /Im190 197 0 R /Im191 198 0 R /Im200 207 0 R /Im193 200 0 R /Im188 195 0 R /Im201 208 0 R /Im185 192 0 R /Im199 206 0 R /Im193 200 0 R /Im188 195 0 R /Im183 190 0 R /Im202 209 0 R /Im187 194 0 R /Im193 200 0 R /Im182 189 0 R /Im194 201 0 R /Im203 210 0 R /Im190 197 0 R /Im199 206 0 R /Im198 205 0 R /Im204 211 0 R /Im188 195 0 R /Im185 192 0 R /Im186 193 0 R /Im205 212 0 R /Im202 209 0 R /Im183 190 0 R /Im185 192 0 R /Im182 189 0 R /Im202 209 0 R /Im185 192 0 R /Im196 203 0 R /Im206 213 0 R /Im206 213 0 R /Im207 214 0 R /Im208 215 0 R /Im209 216 0 R /Im192 199 0 R /Im193 200 0 R /Im194 201 0 R /Im185 192 0 R /Im186 193 0 R /Im195 202 0 R /Im190 197 0 R /Im186 193 0 R /Im182 189 0 R /Im196 203 0 R /Im210 217 0 R /Im185 192 0 R /Im186 193 0 R /Im211 218 0 R /Im199 206 0 R /Im193 200 0 R /Im182 189 0 R /Im189 196 0 R /Im196 203 0 R /Im212 219 0 R /Im199 206 0 R /Im193 200 0 R /Im183 190 0 R /Im213 220 0 R /Im214 221 0 R /Im195 202 0 R /Im204 211 0 R /Im186 193 0 R /Im190 197 0 R /Im215 222 0 R /Im204 211 0 R /Im182 189 0 R /Im183 190 0 R /Im216 223 0 R /Im198 205 0 R /Im193 200 0 R /Im194 201 0 R /Im185 192 0 R /Im186 193 0 R /Im195 202 0 R /Im190 197 0 R /Im186 193 0 R /Im182 189 0 R /Im217 224 0 R /Im194 201 0 R /Im185 192 0 R /Im218 225 0 R /Im219 226 0 R /Im194 201 0 R /Im185 192 0 R /Im187 194 0 R /Im202 209 0 R /Im186 193 0 R /Im183 190 0 R /Im198 205 0 R /Im188 195 0 R /Im183 190 0 R /Im190 197 0 R /Im182 189 0 R /Im190 197 0 R /Im191 198 0 R /Im220 227 0 R /Im221 228 0 R /Im222 229 0 R /Im223 230 0 R /Im224 231 0 R /Im225 232 0 R /Im226 233 0 R /Im220 227 0 R /Im220 227 0 R /Im221 228 0 R /Im183 190 0 R /Im187 194 0 R /Im227 234 0 R /Im183 190 0 R /Im184 191 0 R /Im185 192 0 R /Im182 189 0 R /Im195 202 0 R /Im189 196 0 R /Im228 235 0 R /Im229 236 0 R /Im230 237 0 R /Im231 238 0 R /Im232 239 0 R /Im233 240 0 R /Im208 215 0 R /Im208 215 0 R /Im234 241 0 R /Im235 242 0 R /Im217 224 0 R /Im125 132 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 7 0 R +>> +endobj +7 0 obj +<< +/Length 548 0 R +/Filter /FlateDecode +>> +stream +x¥}Iõ¸Ý¾~E.»NIôÒÑV7îh-µ±¥RKvi.ÂÿÞ¸ÌpÎÃßæ2ÄtÇ;üõÿøëîã?üõísÝåsYìO÷øëñ#¿æOïãÇϼ¿ùã¿øïtÿúçþýÛøøüåïã×ÏxßöÏ-¶Ã};|ýÜ<¾Ï´´ÃC?<Õg÷÷v|lÇïníÆ§õ¯ñ[°ñ©ÿkä÷å%é×þðöføþ·}úµ¾µÃ[|W·wÃnúü¹ÇãöóðCú6>·ã{Ò9§w~ÃÝÒÏÎÃéCDã;Ò+W nßÅx_ý@}øú\+èÈ/}n+¿:4¾#¿þþÏ3qëÖß_èNðq�áøÀ7Ð ½Â . £@zû*`Ïþ ò~òO=¾#a6¿_6iþðzþÊÐ: pù- +ò LA>÷(ȸ<fA|òÒ2!ò["týZ¿ï½ÝK@÷¿#Üï®?CîÖ>5:?ß% à ìY�r ïd8;àt�tþDH?ÿcý"$Ä(¨»AFA!¡ñ=Qî!ÚÐ:BUa=ñ»;MÀzþnûçÞnÀæXÙ.ófK¾>Ð5d"T§Z b)´@^Ûù×ÇÑùÏ=]�BÓ`H*4XÆGH¥L#TC!{ELî= - §áÅ`"+#ÝVâoàÍ{Ò7G¤#þi¸ñ[9z<ð£Bs§dö[Bóh ÓðûæH«ÊüfÉÕã!V8>{4GþspýyCãiYð<ÿKÕã;ìÏï\ppý vx~á!BÀøþØùj¬;úëYØÆçS?Ôñ·ñýõt¡ßxߺÇïãýú)v\=¾§^ûO;hQBëiÇ5óCßßéÇû#ëßÐüìñ߯û'ëð¯¶~LÿæïÎÏ}Æfþð¨ÿÜú°Ó×xÁØ!,éI¿Çü_@LìøÝpïÝ¿ñïèürgCÿÁûïäåÿDþ!ò+ õ÷÷×Óïö¼Q³bûëöß#içx_õ¡È¿æOÀoõ÷Iø¿üV6Ï¿_ýøS£~ÈVóeAãùgãáüÝýõô_Æ7¬ßñÛp«´ÿÞ=ïß-åüÃþ}<àßÖ<ïß°Èf|Ç?Ð3þ¯Ç�Ó+Pl=~p2¾¸�Íx@¿ü°ñôÛ?oä�SÁú»û£çvéüúw²þèÐüý£ù÷oò§èÍÖ¿vôpþ]Jåü×ÏÝ]ã;ú¥÷WüÑýÑõ¯«´~J¿<@¿dþ ¿àñ;âÿØÏ~w¸äýçå=þͫĿl¼_ ÿwûgçï\?°<ßÁûëø×uãÏñÞö[Eÿp~Eÿ{ã¿õý°éç4ù¹uoa6ÉÏMæ?/ÊßXKÁ±ÃÃZrÐ]öë&Ë_ý#ùKÎ/Aý!ØÅþZýlÀÿ'çå,ý¶JòÎ_pø»òËïÛ{çÑüç5úcëKxKþ/ÙïÈßå¬.ÿkÈØ~¸ü¯öCðÐþçOÆHÝýÓóp~Y~hõò£§ß²þÎoÓÏ/j÷GÇCùäÇãW´ÿ ØOäüWíüéúEùGùwöà_ÂXþüд¿tývtÿàÿñ9ö Íßã?§üÿó©¿ëñ²üÐÿDôýßè4ÿÑ_Äòàç>¿üMÀË\ø²ÿ¾ô÷.Ûß1BýÛÙLþÇéÈ/l¿ÆÞ²_#?²ÿWÈÿýÊø7BùðB¿Ûô»iôËì÷¸#û¿·ß{ÿåüIÌ¡ø/ßÇïÂûG_ùïï;ðÿhøU5á?*ò«¯ûïnGãû»à/ÍìW²ÿ�ÇËòßÿV¯_ÇÒö/Ó¯K̯Ë_²tþôþWxàýìô#DÂþ³¡ó×éwïÝÿçôáßlûùMü¯Å£óéÿDTöÏÎß;D +þkãÕû#û÷èþtÿëdãýkóCþðóþ½áßú§øK@ü7¿Ä÷èßÇ»ôoøJØþõkÁ¯êñ:~¹Aù+èÐúuúÙþÖíÇëýü.ýî~wAÿþÞ¢ÿëýñ&ýñ3ïÐåHÿþ¤éO:¿×ÖÏì§Ðú÷ ü®_¦áùIôâGïÉ¿(¿þÎ_·_Ãôwo¿2ù6/É?¦/üæ¦ývÄ¿=ý1ÿ)ìhþÞ¢ü¡ý*ûþ2¸?ߨþñ]|ËþX~ö_ñý{þCôÿÆî/BÿKQ? øSÃoþíùâÿ{ù âWÖ?Üóÿ.ãßþ2¼?B¿²ü óCù1Á;´?tü3ÃýË÷ïÌ~©âWõ÷3·¬`üDüÅO-y2þ£øß?Tϯã%²ßËx¸ÿw!ñ:~xÅ öOçhýñ[öþ4Ø?àú¥øçý^º?¬h~¤ÿqüÇ ÿÔëí·¿éׯá/Ïýg4~bÿñ¾ÿ¿ìâö~s/üe¸¿Àûõþ&ð ÉOkøÇ4ÿØø¬¿÷©ÿàýøorÿéîýõ¯èþfðòþX×ñ þþàw$ÿuùwá7ùÿÂ?ë§ñ¤?ÄÆÃûñ�í]~YþÑX~ÿÍÃõëñ7ê?=~ÁòôGüç°¿%¿BòSößB|O~_øÅôüe<´ôøÓ#~EÑß?ÙÐù÷øÝÿéO§è§ÿCüâ&ý_øÅ´ÿð?¢ø/<~D³©ÿæüÐñËàxùþ#¶ÿåø¯PøúÿñÿføÃ{þç _öÏä\¡þíÖÏã?ýÎÄÀõëñ»æ¿RúÍh|/ÿ¨ÿ^â7R¾¿±¬eüÍü¿ß×ßÿKül3^ÿðp~AþØø$íúï>ùuþsÅ©ÇëúÇðÑùÓùýP×ðGóKöçóüü_ÉèüdùëJþôèüèþWtÿûßü{ûßýNà;âøtºþuí¿§¿þÑ¿|~Gþv~, í_Á/ÿ]âOñ:þRò/o¯?¨òá/üäøG@ãýWã#ú¡ûOü¤ãW(ÿôüâ¿õ7Á/¶í-ýiùCãý³øMº?J?é¿ ü.CþÓýßÅIüÃñÈ¿züCô7?ù_ÇæP?Åhö£ÿþªøùnÿ£ø±þdø¼?=ÿ +Ú/çý Ç[³yùiñþtüo×ä7=¿]³8~øÅûÏP~NÄohöï ý/Ä/~×/ãGÛòûiôýNñè?Íà/Ðí¯ý ÿ?"ý7ÿý'?ZáýÉòÃòoæéÏâ74ý=ÿ¸«ÿã®Éoÿçÿ¸ËÿªúEøG©Ó×ëW,EÔãõú-¥i3~?Êhý²ýfõgêñºýfõcùeüÑýRϯÇD´~ýýÂòêñùKf¿Ôãõøí_©¿qþäÀOüµz|¿Ö×0üdç·Oà^:zÿY»?!ÿNÔü£Ç,èütüÙòwÒã_ù¯||Æóüx~2þfõ[ÆüËðwS~5øÉ´ü-øQóëù?ßLþ:¿ü$þ£û7üe°¿²ÝgDºÅ¤ª~ã®Ç_íÿóøÄ¿ø_úOÏÃòg"þêøt~ýý±úOÁ-EÿøõhþCô¯ß_ðîû³üÑýñü¤ÿ'êDh¿êõO ü_Aö«þþ¿²þ·ú+#ùIñ/{ªè/ëù[Ûìú-ðþ%þ?ë§ ù¡Ç/ò¿2\¿¿t~ï÷Ë{östPËú7:è¿éþ«ò[¿ HÿNÄßDdëïß1ÂõëøIÒä'Ï9óçõëù3+¤}ý´ôø«MÓ_ÿÛ5ÿáÏÚ?zý¹)¿.üe{?Äñb¿n¯ãGõ{oÏ_âïGó³ó·ú'õxýüùOÛëø/ê¿4ÿDý�çÈ¿ñ7Ï߯û;Þa¾ÎO_=ðp²ÿçJý¦Ûû·÷§»ôWâwGôGÏÏäßàüxýíþ)~¸£õOÔ¿Ù7þ ~!ÿêïß%þ4?õßÌ~©ÇËüïD?õ/ ü¨aöÏèxÿÐ/¯¿ôÿiø:¿ý~<-?òG´ü¡»òã¨ßòü»ðòïÂî®C÷?m*ý±ü%Èÿþ¤õ£wÄ?¨~4Yô+Ç[ÿ¢»ò/,ýAã/¯¿?[þÑhþQþÑüú~Pòýy?Pþ(ñ+MüN5¿ÃÞü£'þVͯ¿ÿÒ?©¯×^ý7QÿyÓøâ'Ò¿ºý¶üývÈ:þ5ÿ õßyÒ_>ëoÕã³\¿.@ù3ÿå^ÿtöÇDýÜûöûY?÷=þµü©ÿRÿ?Üõ¾âw4ÿá?ÿäüë�yWÿXþÔXþý'¸9ùÿÈ?AúÓóÿ°ý£ãOØ~È¿Bç75ÿiõ¸Ç;ú×ê·¤´½äßaüN=^Ï3ÿ«Z¿ÎÿWþU5ÿ~PêG5ë×ñï>z0üiGç¯ãOfÿÔãõú³?X×ã§,~¹¯Ç´·Ïßì§áùó3ÿkp~¿ÙXÿü§j¼^¿âÈzÚ/õøú/^â_>~¿yß@úÓëúÝ#ùÅë÷Bú¨ßîo"ÅðiùYö ýÈùVf$yý¨?dùå<?Y~øvÿÉÿñø8¿,¿.üf ¿èýoHÿ*õO ô§ßçó¬ÿçXþ²ø!tJÿǹú»Où¹.ßZÈg?Nê>ìwä¯ÕË_9(uüÊCûaúS¨¿p"!|Ñßø5«?sWhÿÌÔóOäoAûO_[¡üÔã×V´~%~¢ào1ð?xý^~~¤âWÿ3m?þóþ Ø~û/^øQ½½;û·4òèV~¹òøsù;|Ö±ëþä°~ûá@ú´ÝÏîG¦|êáñ÷ÍÏÏv4vwÕp'ÄnåOçÏØ'íÔã Þßçôï\÷ìécÊxË}©Çwwßoß-Oqv%¯Ôç'4/°â!õx <ÚæUe|tèð´\. <»9࿺Ï4¢¯Êý¾2Þ²ßØ?ûÁç3VÉ_ßàæõÅ÷¬nxîd_¾áQý9R:ÿ6³Ï/ÞÈífzû,ò)ñß;eyµÆöìãò9Ö¬_@îÊú½÷OÖ_^îêõG|µ²³Ì_2Ïùó´¯û,·2¾DÔãÝ"¸:6à]H»tÖ Q�¿D8 ônñ/½(àõðúÈpBôÊù¿ ô<Ä6`Ý£ 8Uõîû3}ÇoðµNÐ÷÷Ñ÷{!ÎxÈG(üÍâwÐxpLy̲ô«&èø Î/¨¡ü.0ê,À%ëÏH+xaRÌ*Øõ8>� �£ÀàÑN1+AsW ÒqÞ(ã#¢çD%«As-é¶ +ÚA ,¥/¸eþ]ãaÊñ0ຬ !vqÑ´�¢qÑl¹øôÀxl¹�´f¡mi£v,óHûço÷~UÑmæDHY?dá^Òù´$˺ø %µ0æ¸Æ|£ØN¾ýìZ"ÑÈfÆxÜ¡;$óqóXJY?ÔÃni -p1¤RaÄÝ1&Tä½`P"!c¥ó`iÄ]×ÍGÖVÀ.^c<Ï®tqhfåç ¥ÔÓëXùQåSG²T1ÇOX4:þõÛÈÊ Ë)~è¾x@' Qe¥éèéwðædGÔêù·Q·i7ÀÇ#Ðm@K¤ su3^F3ýÇë·ñ²ÌÃÞ! Ôó0{ :"Y z|ÿ°è§#[:IǪÉC2¨6/HÚ�±ìXø®@×�Ë2¯ +¼ÆCYÑ&T¨e5' ÓÐOP¶A¼a `Îõæd$? C�R�òaù"W +ÔR@WÄÁ!+¦?@vÁÁùeHÝÂIÆ@À ¯©Qæ�Õ x'ëÚù»çmÈ ý~ÿQHǵt"dÎQ jZÕ$pI ÿòUBAR:qA97%Å÷OÖ_ò©ÇvA"°úa7J§i�$@0aÉ[Aßy;ÊöBaØ�Ì H@ò|LJ/pÕT ?eAB÷£ã®:2JC£±# MHL�ÙKrDô¸}i]&÷ +LØU¸Á0k¾Eÿ¥D=\ê0ïhkqûÍ~¬/k/{ήßÉ.ê.húÞe¼kͰåË(®3ÒYëp$Ù»bb (iáíÃbb×?@10÷[:V{:ÑêöõÓQ ½SÃ`8Ò&® yæÂ6zÈV$�&6�å²XPÍ* ª ÑÔûY þ�ÂaÚñå�-®®Y`Áa$4DA)$û°R5b:¿ëoðH©nâH.@~²ÊÍxÙôÍ?ÁVTù®¿°bÜb b|à"ÓøÂ1Hê6$Æ'ªv¨ô°ªõÄ]@ÖM&ã²cyQwØò¢&&¼Gbto`@zhIÐÕäßÛ [âuÓ+ÔãBh½Qh~ðO°k ½@èè/ÚèMÄô,ÐE¨uº»ëÌ}wÿÑÃñrPuvºkÆD¨ u¥²ø]K<BO`J ZzPÖúænª3N`C*@°ÒÀwUXÄ`eÄMxe0Gâ�¢GâLäìÀä@v^ÿÏS%¨`dÉM)Ý?æÇUÃu?Ð^"ëá²fÏÕð ûË¢êÍë@ÔÎND0~&3d÷ÏÒ+Ä{dèÝxHs¥¯àp45ÅBJë#ÔCªZþä"ßÓ/68@Áa +g|éq %ZDÓ_I +Ñì.(z/Á;"À 08CÖÏ/#Öcý¢ÍO]h(B&²ÌÜñHÃX²�E¸I@¾´¶Aì%sÄtEßA>A +EÐ6 a8Õ]pÁHÀQ ´)¹#È+ñØeàQ]G³#d°W8¿Wr CÝTâÁCÔQ(îÚQ! JN<¤@<¬ãx jAÆVnÈÂXø aMô�7x2n Îok`¹À`\à ÊP¸u¨çAH=C`O@¾Á4!2¢n²PÄ,,Ç´ÆË +\&«aСü¸iZ"¡R4ÐBÒ.`Z É %>q «a`ÉÔ4÷+r!ICW#æÉ=ê;@ $UÃuϤ#½áûü®f°�̬W¯´T(Ó³ù'£J«»wá8Ó·g8ÎÏZÅ4 hpÈAãu/ê( K¬ö²ãVí{ijGb³�Tè +«PN½�ÊÚ¡ÑeD$èF´·` p, ± ,È¡ ,`ïUÌBàúe8þª×¯'¬ô¬¨IAz QàD<ËúûõM +ÞDï®»³PðÚv +ðP°s:E9JѨ4é+¿ ôwp&ãíA¿£ì?àR,xlèÜD©E2F¤°.!Uë6~là3 ùPTVæz~_ qHoZ£VoxDÄL MD=<¨÷øëH{>,âãvve¾Å Y¶%Çíq¶ùPkàüÕüm?нÌ÷ÕÊ :uNHÒ°d¸÷®lõþl¤v`"vßÅ}%½1gÉ®Áðr 9®/ÞJ?°"Ï~ÀGø I3ç8l/Û %yAnl>â¾ÿÃ)c.ïôÍt«Ücþò¾S±huk"$%P¯àB7è2åÀ7K¨Oѵdí~Ѿ@íó4OêKói+æë×IÅPN +)WÃ'ÂmͶ©Æ#¡×K¹ZÎB½} Y1a?ÞJ{¶6TÍüz°9(õÓñ<Ü?Y@äÓß¶½@~dÜ%x:ÌdÚ Þ\ýÊÒl@Ï[ZÑ *.bY½U¨»¸�9ïùÂ(êñrÞ§Ëô:¬8�¼CØÃMÌ0&_jñ7ã Ìůò;�Ì>` +Ö¢&Ã(È¡ã}}Bó+,ü QH:�ÀL£ Ò°wµ©<Dhp7(?tùiñòAy»iXõ$f¼Ón@Ç'db9îö�Hn 3F)Å öjFìD/1h Å\¿^ÀÉð¥ñ*¦éBhjv͢ءࡠSf¨d!¨'ò +!CtW-ããá&hþp(&Î/h ÷"Ñ¡´ø|C¾©E¯ +:C_Ì¿jóÓýC¢>Ç)=ð9BO@*×Ä»4(¡£íy³i¾\Ì5a4@~íJÎ/âLÞ Z5¾ÏÜêY°`9E94ß\LWã{ μ=×ó#OäÞ/V}`"fÅmà�&x¼ q5ó«póÙ¼3ÕW�< çdt: LàAVJu°~JB Q� !tbÎ\óP $ ¥ãùµý,èl 7@1˪ C¢èH@íg¹õx½îXh*heG +ê7A+Í& +éÀè×(G`&oµÇr @E `1¤2HiÄ< I¥!©è�ôw+ip�tþMãL%EHIhGl*j! 3Ô¤zÔÌl©¨®4ÑLÔO*âQ3õ¨ËYîFÍ U¤»ä¨x�Q3¢*âU¡Ñ£fV¤ z¾.~{ÐâËçå>Tá*ÔCÛáùÉÇG=V@âóðÐ 48È÷ùFß|�¥#£gÐËÃ-´|4@ Ýz:~nÁxB ³qôPö-%Vh#Õ²çðÈÀ¬#²W͵áã¡0B¬, 2'êmB¢é\^©ÙñÑ>5«ÙdÉ¢ßî:FiQ¡CÐ7º/O ;ÆBáÊA%ù#¼eUÔz¼þR^!êáý3+�¯^=Ö¬^îæ +6ØGÜÒ-ÖSÒ-Rh´~fL9oãÓͺ*%¡it�<!*ÀH7¨C;1jw ×*/£;ä Mth¤T'Ó Ã¦v0¿þÈêv´þÞä½¶´ñÔ+]àxÝ+vôDï÷*§A$?2{ÌÂÓ¸Ìm b¸Ì¼ +)É4±X£þ9+¤Whw k%tºKiÀÌè +i¨ÍºJ,Ì;u©7@ö_àåf¼ðHh¸Ìz©¡×qd|öÒxzþØÐËÃ.H ÂÆC3@÷)±Ê6éLªñýù£:?+OE ¬BBòo©£¼ð½ýÛx¨Bõ0¨gµvx�²´FW£ ã{,Úñì<>ìø©Çkí*0CëÏz ×ÅA<ÚÿDÄ{J\ݱå·íxët5¶ã �Íð^³Ú£>ñIéå-Ó~ðDÓt y«-Í¥MסhT¡èÕÑ "#¦AJD*-aÀL4ÑsÒ Ì z$\*Ó<ÍØ#)õÛú%Dø åPW¤sxéÜN/_ Íx=k,½7¿éÑü¼ïyDç'c©ÎèïÀÄ^X±£~YÍüý²¯[!3:@H:Ñ&:ÅM£ QÞWsúJñHÚ)¡s( RÐö¯GÙ¸n>¤ ^² 7g:¬¾@=s4k,DÛ¦wÉz¼^eßpõfÿBö²aYHOt»ò¢ !.�O.Py¢¤Þ<x[ 60S¥7A GêYqf¼©çWMr,+¿%CüæÔÛÔÛÔBH·#|éÕSÛ.ʵëj çLE3DFíºî2¡µëxÀPM4~÷ê ÔLãzFuç)°ø<Øé¬¯yzi}O +,Åô~[+ZÀDò °^«|óëØî$S"¢¨³¼Àùõ:ËèÒ~SiGh !K5C"DÏ?=( B1%ÝdÏäDCdT)z¤Ehê`ro±@LÐÓ)@,óîM<$ªÞ=ì é,µÂ!¢AÖ¼^£ ¹í98Ï*MÆ35xàydRØe×ýÖ³ÔËuB «Oرö([W¨§)¯ÇÅùùËxCsëñ .1ö¨Z×á¼pÓ×Ñ,_¬àæþôȦ`1<o° +' +ªÇQÞ¥ÚQÇé©×ôº ÝÖ)Q+w}k %ê¹RÖ¯ù@_Tõs¢"}ÁØÐ +úø"~{þ«p='(Ã#BË÷K¬që>¯køë®äO.¶¾ù#Ê| CÖè)a^'ÊúEÎ5¾ÀLBïËçaÙ¼0 iägý ÎG$ÑgÒ¯"RIéW tùÙðF"àxq¢Ûׯ7q³7âÜkâ¶£D@p××t6ÁDÙllÓLÔtJ]÷«´�½[p«¦Ôy¨´*&B½DĄ̂PLX!j<L;'HÂrÆÍÏ©øY A [I¦åwb%Ã:=V2ßõJÊúó&ºõ:¥Ð¤ºKÀÑ£ôᬻ'òp/_fݱx飦ÒÒÛsz¼´¥íÝU#ViD¼<´#ôh7èOtsÐ(h·#!¨¦öN=`"¶¡ Óò¿uo,áÞ^HÁø<MñøÝ O¯Ìb¥êñý¢÷Ï´¹æï7À¼ÂR¥´ ñ*¤}:ÆÎ¡ôq/ìú@꫸ ;Õ@}È,Ö`´êÛ~�Ä1×<.¹{÷Æìçê%È÷×ñéûgÌSDHÂk±} k৸¥ÂMîc}Ä-§è_:Ö,lÇ. --Ëͬ'WË2Jt4åøÀê WÐW&)pé4*3ÐáH{à¡·Ácè[Ìp Ýe7¸½ýļÅÞ"éÌÀA¤Zôd+?¹!ÅÒ2jésV)Ú/fþ~BÓ k6yñ)+À-,û{ÊÙJWßVÎWFÚH9óÖL3ßG·ô·¤Aî=i03ëÒàÉo©Æ£V& h±µ8i»WãåÊM«ïA¯ñp!µ@£²/Ä¡/?c±0@ éÖÿ*E¨¼4<¿ÒpýzbPPL"T2ên%¤ùeg7&$Ë&b¡ql`¢å9òt& /«Ñ,@¼6dNPÀÔÉïèõh¼áü:g8¿ÜèÊLSÀ 3m°afÚôºÔL²°Ý{w2,ä[pij¸ÌÑp¯@j<Ll#$Ë §õ8'móëMÃ=¯'¦Y úþdñáÌOëô#?9àÓôÖÕ¯&gEòqn§÷ðO_F²±ÔÔ!y~ YjÅF<@Ï0#9CXFgH»^/èu¢ ¿Ø#) GczÈÅ=Õ,lÈ$v @.ÒqX¢Jè5.Á:ÁóÓÏßGêõëuìáxÌÄAP`ÁÆB<± qÀD¡üEå�òt]zß5CC0QfÆÃñz �/³£éaZ¦&" 2S¦&!%Ð�{¸>êô -¤ßàO@¶$¯àÐù!MPPÖ:R®MZO-õr±N³¨#u Ó-YáüKëK!âIb%(<E°Ü8Æ,] " é°BÖ±MA,§rS³C+`¢J¦¥ê�¹/j²§zþ $A³èú= 2áÓ- ²0»#0ýü®§mðV¯×¹3 »]²8^÷ ª/ßýUà¦?Ñ}ëò·nßY�üðú¡mǬÇOô7d¬`þên?ÀûX-Òè ìh:í2¢�vÎ/Û~7¨gP,g£i_^u«ñ¨Pc;Þ"4H@Bµd+0eüè#Ò�zVßÑ×\âQ©ÛX¶�C é"µ ´#-$¡MµaÞ«6|SÕDkK,ô +;ÁØGHÔFÃò,C!ÈpM:@Þ +Ú1àAÀÑ©vÙ@D7 ;!A-(»ñWu̻ˢÏÜpë~¬ÿ¥Î`45N7°kÈ˳@CRrã8qZpØ¡Ì4^òõz¹^âÄ÷HLDÕ(E 9Cbò{B &M PH¢%ÁKWÀÃB4§á =2ÑüH£yG\q%EÀ¤@1¢§ey\Éü +Lp1Û@bD´$Ð$s"vîCo/jÕxýAŰÄj¸^æÍH=»lÇñ5/ßФzz½ÖªE)×»×kÚ[Âàô8Æë}sG·§_þ3X?AÄ×çÕÑùODåDm~f93B2äVP[ß$ U# ^íxøcI'Ö¿«Dz¯et3 J!O4Ô¶!OÞ!)õEÞPÛ�é7h=ÕçYÈBb¢@½H"\°_¬Ô²ýu;¬×cQE8A#W4¿Þ}Ò¢·8e¥÷�Zzdè3à` +ÇæÇVã{86r>àèÞ�Ó9 ÑûL4rXè+¹ÍäFÎa¸ÕÈùÊtjV 7r±jäLBëÀ ç +dñd9ì]릱è#9LS %1Ñ>éjà5Ô¤*yÂwUqØ&ÒVÃ%¹\ö|À¤¡-Æê #[JqÔzQ{×h^U&ñ3Õv=¢ÀîKØKFì è£!ëq;:²j¦LÛ &Õ#ãö/oèV`UÖL)E©¦(òP$ÉAÖwAS~¢{Tòè�!ÒÈ¢cüQbîõ`(¯þH5{ñ¤ÂGÍÑpæ ³Y¼Üý®@IÍpùA¯54ÃuGzÑ'hm`ù3 n9Ú?Ý@yQÇO å1¥¯CAA[? Ë)ºíêð�ô°`¢ûªR�æÃî2ehn6Aßöê7ÎÒ8wîfetºæ Q°%-â8¤ *ñ&Äâ½®=¾XÍ Ê$àâA½kI£äMA"´sT)1R#£êÀc|à5b¼óU|oýÆBô¶¬^�C Mäw-¢gU ͯ7ÝYàüzÓÎ/7ùe]׺Pµ}!%¡H¹6A;@ît;�9©Á^r *·º8,d5ÒdÀvl joñ°I#F¶gã©3S¼¥A=E.CÔ{Îï< æiÄ - ½`\Ð Ì´RwPém{<?%¡Ôñ z7ÝîNÅi¹ fÀDÝjóÇXo¯I1ºÿ d·¿{ÙK�¯×³¿%¬<ñm ¢ "É©«BP~Nº2øÜgÅ`Ò +ÿ<Ò9Râ¢] HØÑôº``X3½WµJÓ³Ã+Ù£ÃãaU ×s¼Jáé³Ç8Ëòk? 7óðþô,7sëñz`Y@(×µù9pd?½\ÔªeÕóËO95Ü?ü?aY`Õè�(³ L¤hâìC¤HDyÍl DeXä@½¸woq/ >ÍxH( >#ÅUöO±ÀYëOT&ãuà�8)Xî/aMäG�o"P¯EÈD© ίÁ;"`dÁ°¸.h`)èþfÐì¬`ÈY4¤H(·n \<x4¿îÃhÌ4õ lèAØEÐÒ% +女\[#u,²ÄvÞ1rÿê`%J)`$¬ÅíÈ +ÐóÃBFëÈP̤èa;HÂÚ +ð¥ úÃÏñÛçö Ë zdGMx¢¤8ÖCÉ PÉ9÷`ÂÉzUÅA9.·ð¶zSwå¸%IÞµ#ô æ;-YâÁ¹jdXÊL&ô¦&Ðä°'Xííû<E( tw:-;MÓx�L%gÞ@%ÆVù Í{åwPI¬ëhr ¬OTÏ.)Íêe,2£é0á`öUJ¡q^6B\)×Öc +¬dW3^Ë1Úî÷¿UyD¦ãÓKOõÙsñl ÖPËm/°tæJ s 7iíµ" +�µè +Vtp_C«!Ú|@Èt-(iöíºCäíÍÍÅØN{¼½"`[çÎX{3V°vb®ÀgÀnáèu :P)t G&$_êÿ Yc£3 mîVȽ<¡ o{,v+èCtx{µíL9½î5©Ûcù@}zºýKÜkRÓ{¯]`ðekKµlE,ÇQ:jåÀ)ê¡V{ᥤøæ +)wr^¸¹þÀD¼¬ ¤êzõ_mÆËèUOhÆë½0Wã'BÖÍ0¨ç¸¹Päqr÷Âm]ØÑä8'µ¤Ï¤ªÖP~+ºïm`Þ¹bÞ$ÄÞùDÂBEy7 ÇÜïhýz.Wª÷´(Ç9xÙGàõ4 -M:A=ëÀêæ§ïlò Þjô¯)¿ÂùõgèÌ3å½Ô�¼Só<òïèù÷Oý¹÷óï[kû9ÿþxª{Íäüû£¨}àVþ½AhW çßûÉ@OÝ¥×¼(·×:hÎô¾`k@ Wäúhô¹K§8JzöÐÓW¯ç²¡9ÂZ«l94<¿«Ãøpâ½qÕ.¿!]6ñZ¶CU¦¯sýZ?!ÀæwAï±eüà{=Më2:ª!QÏGànXèôÔJȽåký·ÊF,Cô DdOêEecÒ¬9¦H +"¥E4¨ÞY;&~è[ü`lØHó½Uð!À +1ѯàyUÎ``+þÀQSü@Y«×·ÐY#IÞCÔj:FâV?lãïbÇÎ-mÅyÿÑÉh³ =Ôãu°Ù·ùEaRóêêñ=JÚ³qÁª}`ä@ùAÍãà8¯�½n÷ðz¸® lê +ZYT>`²´¡j¾*ÈAͱéXݶPsõ ¨ÙÔÒ=¨ùx·1V¾5»ýn!Å.§»(h¹AÍõ6�0À~)½>Åjæ-O?ëMw¼Gi"ÛC^B¾H l*lhz0n @½V¥2ñzÛ*´àc8(Ma®Us²owEC×Ð)pCÈgØ0FðÖ3#ÔK3ÂëÚLÁ"ãi,®ç§w°ª�õ`n¨Î'ΦK#Âc¡.FuXURW¡:ÿ>®?©ë'ç´óã¡ÌPõ2# ¨÷Ô�z4? z4¿¥SÆS¼Ðú2 +!¼¢è`Lã- ¶Ö3ò" ^%þìÐ Þ«ÄC,K +y0Ö¼Þ;=F¸�ý"¢ Økïh¼¾&$A¡Ò³2C_`ñKGV9íèý&:´·ªÆ@v´ tèÀ +&СÎ`ÚÕ0th[èСQfÿÑí )ÃÈз@j«rY³c9¶Ý{ëábÌ«ññêMVOã 8½o`Z Ù¾ÞÿÖíïßôsó�¯ÌþÁ Òæ¨×ï,²^ÞþÕüà |Ñ",D}pýr:ÏóS³Q®ÔþæôJ£¥çÊyÐ!zØ×nP©\NÀÞúú²ÊB,fhï�½Ó7mA8Ó´Å#18í£t47>,Ð" Ó®#m`"òï´î^aBR`J-@ï³""Ö_:¯ôþ&¥óÎkc5ÀÒóE1H9lJèÙÝPèlXàü2§éÑaz=^ö%Wõ(7ÒÎ9Cn,)*ÝGG|¯tSXÇÛR<@20Ðz)Ì[¾ ¨2u¥çd=]Âì{Ú³#¤Æ&ÊdHzûYÕ¡Õ<@½ù«Ó6@SÓ¡¡;3zj{мQÚÂ9@o07È1)x:¨43\ðåzÑ!2^u:Ì1/i1z~;2Ãz +¢÷¡×3ÛdL¼k\©õCg@r+@ëz$C'ÜY+³ä{2°4ªÇë"ÐTP5\ ö,Û¬^>~Ó õêåEW +\½|½N¡§§WºôâíQ4Ưè�ô¾7-@×v¦<¢`®³â.¤N±(UãõîÏB¾»�={å¨TÙ/`"{ÅYhFó9{Åm%ܳù½r$ÁÙne¯]ÑÈÙ+.#*È^ñk×d4_îr,E;oå.|#¿¯½üæ!^&:XÅÚðª79$@'BIª`1¸�àüòûü G (wnAÔm²$?Òè ÒypTÝ.¿Qðr`JP +6X}@Á¯B¼ùÙÓÖ-½*é¶( ² IÀrPêx<¬ç�z$e êÕ<¦¾½ñGj@OØÕo ÁLt!F@<@@ÉÝÀD"Ú¦ñ ½�ÈÃ3! O@RÐyøª7yWFwËÒã3ðïRÑß6¥, .h¦Gµ4§÷!NáDbÍ)¤7°¾Çq BDoD½iBî¦ü¾-Ôò¦O³¦xcÕ`}ß;¿í�}ý �]'hL(Ôys)vd=\?þR)®.#¢¥oÐx8¤Àâe<Ô�©æì&Z§,`ù3mtKß ñé³ø¬(� ï)¡íäL+ªÔà"å¥ m|#"_=ÐÜòÀDîtqwI£ÀQ|Ö<ûY|VëףܮIzÿ;<}~(�tëÁe(¾dëÁ/pý²ô¶LC¢pêã!éGJ²áPÑHÍD"D÷Â<3ÙAº%A}©8Þ×c«6´~EØø¬Q�ï"¬ ÕÓ53$ lÁ(é�êÆ;¸Ýw�&ÜxæÈ±à¨fz5« �Ý@@óÏÄ&E'Þ�Á!¢fFñØ&dFõ7H¦óI§ß¿«õhM#báX ÑY¢á§å°£-Ì4?MqÞüD$B^ÏI3ey|Õ8¾kD(ô¼ùè&ÔAº+Èã%Gî rkC|W[ï áIi- Åðüäl²ÆÆ<9ÿ 9Sº3bOn¯Gb|¢W)=/Êþ³h +óÎ'Ð 0A¤w²ð¬ã_Á´2öfd=d`Øí4 +|¸µw°t>©Ot>AÃ'ÞSJIÃfõ2Ñômhâ×ã'»64¿kæÞ<¾MßM«¯_Ïv44_®Zpô1~ûúïÞAï�ãú«9J+@ѸÙO +m:Ñ´$ E »Ë«¶í¹-`¼b�W8èpÉ_0�öU#�Ê]൤`ÆXH÷ĬíËHÓÈ0³¡7ðRömcÎbG²ãÞw,à[xߦBd&W/@5 PɼÕH >2±^#¾$)IµBv õâOÖ +ù6lêú "·ÊÚ^xÞÝ ìH M${B;aúe¡agqÃA¨EvàahÇóÞC!Ðñ«|rà:-j«áZVPÊ£·+�[ØH}õTÉêô+x~ â[Яñ0k¤(½îÓÁºjt>©nöDåÎlz!¸=¼eÉRZDz[êx¦²è'Rã¼_¯ðí5"jУHÈ ÈÙ¢AH7 Òhz)Í=ÔØ%ÐëVhÍèáU)Ü´&â®Q Ç´ A¬ÇÏÛÖÅwÝÝ@*ïZiAó÷ÖsÊ[ßrÊHKtÊ_ð:R^3§Í|Ðñkº´ìjË|0®¯#ò¥ìF3»¬>ôªáº3h½|ÕhÅypz3þ¸C;ñǽC'¨#*-@ÛwÍ?qö¤3åKÊãð)¨!é¼Ò8HÏ]ÑtDÄ2G7Àx%y¯Edbª \o@ÖàÖõoDÂCHkÀB<Ä-ß¡YÐüý«(ÅSr¤7X~ Ãi^_|Ùjþ6¸asG½?>áÃçzüç§oÿù|hì>Îß:ÿý»ØI û¬ëêâ{G»½|úF:!~w�ûÀ¾§Ä)L ªÜÀÞÓÚnæçüj> ÿ¹+¹ùÐR¢| dÈ´�ìÓ_Áù? 8Ñö~ C"è!zñýÓë¯?`ÝQÐ(Sûm!|._-)v¡pI9Sõ +20$Úk,gÏtÉö.Iã¥vLû2M¶"üÔå¹ á褼âkÔIy +èInÁB5-xFYÁÏ�ÐÙÂ.r#hnÇÜØÑAmìuÄ<ÕAÍ ±ãƳ|Aê`:¸b¾Gt@ÒFm¶ @enÓx]£'" <²`æ=ÖLÝN3�S"�6È-LHÂ-D|@¹3ôkLt©|1¤r¥=XWð½qN·°R"Hè±Lô;ºF\\BHD"Ê3$$1²X·1+ D`cÇMvÁá[�~6HWûÈJ£XÊܰì¢fbx ±¾´ÏvqGmáË]ð-DQ½3RD"Rƪ-¬^UmäVt¾¯ËAyÛH=/PRÞDõNIywªÔ^c¡}t�V@¶Ñ5n¤ò c^åA\ðÈÚ9 +YC+}@4÷¥zÔ,Õ9:o!rq-è(õâÞø�^°É"^àFö¼!¨ü4qF:o9qµ3Óûºã·71ëñ®ãyEÖßu<#öuÇ3î·}çòõìx½|DdzO±HÙ æþ¹ äðd:¸ÂëÇn_/Oo:¾`î!öüµÁá8W`ÿó©l¹¦ÍxÙÈ32¬Ç##qö}Ã+ Q.ÚõøP¯ë'xa®Bµï@|)¾�gÏÙwoà(¢*]SxàÞ }ÁÊ|yo>�"ÃWÚ +µg [7WÙz¨úÁá":ÉÆ´lpài£ÑN8ÕCJÔÏ`Et�Î iÌL K#ô:Ò®`9qù^}C>W÷u^=?<Ñ@gi¯ó±éÕæ:*±HÕQñW 'YåFb-'ktc_®DʽH;â}" À'ä=Ö2ø Äý·ûõÖú¤dWùk®c Ñ[«[ªñtq¾.à3`.ký NXÐ�Æ[: »ÞJ�qðVÚ|@GÕ[éã,^JDúØà5êX¨³üñ !P(¶qâ²þÜÖS±5âÆÊÖÁPS¢æEQâ®Jäãß%/Ôÿªl > TÓî©Í:(+¸$Z½.+Èè½}`[ñCµJ×È?°¿GVª}Hûßù[)dgåe¢<²@yÅþe%z9�Ŭä(O®Ü#>ý±Õ2{Ç"Ø'+iBÉûòиBÅÒ»î=%k,ZRh"nÁ{�e¶"í+1| Å2ã¾éûfz8 +©¥ØZþ§õ(#¦å¦óF@$õñ°L¢®(5KÿÆÏÚ8¥¹³S´¢yÍ) +OKyjº©7÷{.IGÇö¾kÿú«~ñK÷á>~õ»¶ÏcøÇ1¸üãW<¤»|¦íñ;¿ýø§ÿñçþðÿô÷ÿåãßþõùÛûóão?þ×ÿûø·ÿøù?ýôñëúͯÿùãÿñÿóÇ¿ýüñ_>~ÿóÏù_üâÿøÇçÏ¿ÿÃß?ÿôãÏ¿øµÛÖßýíþéÿüâ/?Æ}þþç?þôÏ¿úß?ü·_=V÷ÿ Ww* +endstream +endobj +8 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 549 0 R +/Name /Im1 +/Width 32 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿáÿÿÿøÿ�ãù?ÿØÿýo`bFþO�CÕô�õBÌù�5áE¸�`Ða\ +endstream +endobj +9 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 550 0 R +/Name /Im2 +/Width 17 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«cnøÏßð_¾á¿}Ãÿz0úÁðÿÃÿÿþ3ê�,v!j +endstream +endobj +10 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 551 0 R +/Name /Im3 +/Width 28 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨ÀÀüÿûÿòÿÿ7È?¨o°?` Ìbþÿø? u0= ýöêÌãÿÿl>Ð�;¥5 +endstream +endobj +11 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 552 0 R +/Name /Im4 +/Width 27 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«c``øO.fÿÀðßþÃÿúÿÿÿgøàÃúÿì¡XþIO}Ãÿ@s@æÌµÿÁPÇÿ�ªI± +endstream +endobj +12 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 553 0 R +/Name /Im5 +/Width 34 +/Height 44 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x±À KAÉÂhx4FÉ)r82mR¥ùNÒä'_ÐÝ R d·NYêE¦NÚBôñ*~ã«oíIcÒ8LBY~Ö¶äÝÁ.ÄâÖÅgOj +endstream +endobj +13 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 554 0 R +/Name /Im6 +/Width 25 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«c°gøÏPß@=üÿ7Ô7×7Øÿ«oÿSßÀþÃ�!5¨ +endstream +endobj +14 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 555 0 R +/Name /Im7 +/Width 20 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÀÀÿªÿàÿÿ@d`U@)ðÿxÀþÿ1ÿ?Àø�(R,» +endstream +endobj +15 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 556 0 R +/Name /Im8 +/Width 8 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³©ûu6`�[ +á +endstream +endobj +16 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 557 0 R +/Name /Im9 +/Width 45 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]Í1 + 0áY¦l-«Ø½Öo&Xx `¹ dß®Áâ+ç<lÙ.~·j8¿þ®êÁæ^¥õ.:J&ÒµÁRl±D3¨Æú' "çëNc|qgÓ1H½Aôêô<ÁGS£pöü7Õ +endstream +endobj +17 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 558 0 R +/Name /Im10 +/Width 32 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûàÃÿÃÿøñà?ÁþÿóþÌø@ñÊñÿ?öÿA�/5- +endstream +endobj +18 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 559 0 R +/Name /Im11 +/Width 38 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿÿAóyÁ"� FÁ�&°Ì?`ü@âÿæ"ÉBuð `B°@%*@Ä#?� þ ×C�DçL² +endstream +endobj +19 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 560 0 R +/Name /Im12 +/Width 42 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`üßøAþÿûÿõÿûþ0þ?Àøùüf0Éþùäo`Àøò?|Äë¢5YÿOþÿ( �á�^ +endstream +endobj +20 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 561 0 R +/Name /Im13 +/Width 25 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨o``üÿýÁþy;{0g¨àPüÿÿ0þÇÀÀë ¸í@X¾ÿ�ó ù?�qq +endstream +endobj +21 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 562 0 R +/Name /Im14 +/Width 24 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°ÿÀøÿû;þõò õö TÇ`WÇÀ�Dÿ°!T==³}³|ÿöÿ?0Ø��6X� +endstream +endobj +22 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 563 0 R +/Name /Im15 +/Width 20 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcH``£ ÄFÌØ0È?`øÿÿ±¹Ä!LÄü!ñÇÿ ö�)Ó& +endstream +endobj +23 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 564 0 R +/Name /Im16 +/Width 13 +/Height 43 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãgo?`òäøÐÁÿÿðÿÿøÿ�Gæ +endstream +endobj +24 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 565 0 R +/Name /Im17 +/Width 32 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xEÌ1 0@Ñß\BB% +H¨@�sR*¡cB9Úá¯W« Jè«Ï$ɨÔw|¸ æñ° °O°æùêBþYÔvV¼4«w +endstream +endobj +25 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 566 0 R +/Name /Im18 +/Width 28 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=ͱ Ã0@ +*TjG$@Vñîò£)<¾L!&d'ÅÄàvÏµÚæ7,þ@ìÒô~ÖqÙ¼LB<h¨ÜQH$Òtì +4©jÉѧôç'ù+÷!D±7¼µi-p�¶JB +endstream +endobj +26 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 567 0 R +/Name /Im19 +/Width 14 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûàÿ~*Âÿþÿ�7°&/ +endstream +endobj +27 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 568 0 R +/Name /Im20 +/Width 32 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xʱ EÑûC"ÒZ°¥+9a´? +#PRð[ÜW¼ÕÃ\&TQߤ¸æ¾!ãyA~ Ý«QVÿk¶;ìÎ O7AME4ª Î×Vë÷®O$ +endstream +endobj +28 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 569 0 R +/Name /Im21 +/Width 21 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x%¹ À Àµ®�àF,Ñ +%;£ÍH/$@¬¿ÑØxóÆ:âª(Ej»hrgæ×ßiËØU¯ Az( +endstream +endobj +29 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 570 0 R +/Name /Im22 +/Width 28 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°?ÀÀøÿû:þyùù{þ \ àìða:^9 Hd>Ð�['Ê +endstream +endobj +30 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 571 0 R +/Name /Im23 +/Width 23 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`ÿÀ`ÿáO ãÌþ1?øÇB5ì0Ñÿÿ @UTTÿ�Ë}/ +endstream +endobj +31 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 572 0 R +/Name /Im24 +/Width 32 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûá?ó ÿ1ðþßÀÿ�ÿ öüð`þÀÿ�Pÿÿ±ÿÂ�7AN +endstream +endobj +32 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 573 0 R +/Name /Im25 +/Width 38 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5ɱ FáÿBqv´DÖ À £1 +#PRNÀØ|ÉËj�¬D pUUvU¨ÎTNÔèËO çIý'N0èmæâàËfqx£c³%ë2Ê/«¼3½ +endstream +endobj +33 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 574 0 R +/Name /Im26 +/Width 37 +/Height 54 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmÎ1 +1FáR¤K.Ük¤ö*aK+ x±eÀ¤L!ê$»(â6Lóþ®}7£©°¢¢Ø¬8lÃ+®6´²L4ee§ á^ìfÊ?6kêq0(®0å/Ìxá?óÀ´ûv4Oô)6ÒËÒ9uÞ¾VCo +endstream +endobj +34 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 575 0 R +/Name /Im27 +/Width 29 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuË!Â@ á¿©¨@·×¨hè+ho¶kÌV® <fL>óÞ4ø¨g³ã-_Ùnûë][ì¨T¸ÎÀüµ¤Þ´ORI/o5Æð#òÞù++Süòp>É=8 +endstream +endobj +35 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 576 0 R +/Name /Im28 +/Width 23 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßüàÿþþÿø7üã_�Fjø0þÿ!�©ûà +endstream +endobj +36 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 577 0 R +/Name /Im29 +/Width 50 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûà}ÃÿÃÿþ?`à?ưùÿ öG?ø/0?a�Rÿ0üaàÀü:Àüa�¨ÿìÿóÿ?�¥�^¾R +endstream +endobj +37 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 578 0 R +/Name /Im30 +/Width 40 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûù??øÀ$°>`` ,8 +AdÂAcpüÈ{##2Á|F0>A!~ ø@<Cóÿìÿ�Å8H +endstream +endobj +38 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 579 0 R +/Name /Im31 +/Width 10 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xac°btÀÇPç#ÿ��\ + +endstream +endobj +39 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 580 0 R +/Name /Im32 +/Width 18 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÇÀÎÌÀÃÞ ÃÞ`ÁÌPÁÀPÀÀðW08X08È04ð02°³10þ`��µ B +endstream +endobj +40 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 581 0 R +/Name /Im33 +/Width 24 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãc`øÇÀ ÇÀÀGÉ7ð%àkxÀÏP�D|¤ ÿÏÿ�W¾S +endstream +endobj +41 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 582 0 R +/Name /Im34 +/Width 21 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÀ``ÁPÁÃPÁÇ`ÀÎÀ�GÿØ3ȱ3ذ3T°3°3|`ç"~ +qå ü��SR # +endstream +endobj +42 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 583 0 R +/Name /Im35 +/Width 19 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃÀÎÎÀÃÜ ÃxÀñ@ãüÿ$QCC;3Ã�ÉÈ +endstream +endobj +43 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 584 0 R +/Name /Im36 +/Width 11 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãcøÇ ÇÀGüÿ��м +endstream +endobj +44 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 585 0 R +/Name /Im37 +/Width 29 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ{2�âì ü~�gªãª·c`ÿÿI/LÿÀafAÌáoàgøÿÿ�Úk0þ +endstream +endobj +45 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 586 0 R +/Name /Im38 +/Width 24 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãc(øÇþAáCq¨òcsSÃz�ÈvÓ +endstream +endobj +46 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 587 0 R +/Name /Im39 +/Width 16 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã³ùç&×ÏÏÏÏÆÏÀò3üÿ��pN2 +endstream +endobj +47 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 588 0 R +/Name /Im40 +/Width 21 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃÀÎÎÀÃØ ÁpÀáAC}`¨ÀD@ñ +@52øºÿ0��ú +endstream +endobj +48 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 589 0 R +/Name /Im41 +/Width 13 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcl`oøìxáÿÿ��7¿Þ +endstream +endobj +49 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 590 0 R +/Name /Im42 +/Width 27 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ {?áöf~¨A ^ ì daþÿÿ00��hÄ! +endstream +endobj +50 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 591 0 R +/Name /Im43 +/Width 23 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`xÀÀÿñÄøã;˦2,T0<(`xð*�ËÕH0Ô³ó|`üð�®Õ* +endstream +endobj +51 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 592 0 R +/Name /Im44 +/Width 23 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãc`øÇÀ ÇÀÀGÉ3ð%àkHàg0àc°àc°ácácÃdÀ²ü< <8ì� µ +endstream +endobj +52 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 593 0 R +/Name /Im45 +/Width 24 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãoøp@®á?Cñþ?ÿ�ì +endstream +endobj +53 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 594 0 R +/Name /Im46 +/Width 6 +/Height 15 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øñçO pp(8��3u +endstream +endobj +54 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 595 0 R +/Name /Im47 +/Width 32 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuÎ! á |ÏJÂk8ØÇ"r@¤éúÜjøÚìÌF¤¬¾$×\õ3lpäO*æ(fÿö[3SÞH1Ùh·¼ºU]£Ò}Ò"að�· +endstream +endobj +55 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 596 0 R +/Name /Im48 +/Width 39 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã?PÏð/áas\Cã~`ÁZÄÿÇÿûÿ�o~ +endstream +endobj +56 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 597 0 R +/Name /Im49 +/Width 23 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßðO¡BÁAØ@¨á�sC1d�"G0TF0$�F +0äÀð>60830Ø00��Å£ +endstream +endobj +57 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 598 0 R +/Name /Im50 +/Width 34 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xU̱ ÐO.äZ:V°´s'QF»QÁäDÂØ¼òÀî¾Ü:á#ÆvuÖÝ8RHêµ°À©IöôÖªXà&hPaÁb& +endstream +endobj +58 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 599 0 R +/Name /Im51 +/Width 25 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏÀÀðåÅüäë0È?¨ao°Ù16àÁPhÖ#÷àLý þ� È" +endstream +endobj +59 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 600 0 R +/Name /Im52 +/Width 15 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã?cÿ§ÀæÌ<?þ7Ô°ÿ!ÿùݾ|ø¢2ÿ��o6 +endstream +endobj +60 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 601 0 R +/Name /Im53 +/Width 15 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcf`Cv äB{ÿþÿgÀÙ`¿ýó�Ýêê +endstream +endobj +61 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 602 0 R +/Name /Im54 +/Width 18 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû'ÏðϾA.ýÜñríää¢ÿ@�ßÕ +endstream +endobj +62 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 603 0 R +/Name /Im55 +/Width 23 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿà ÿ¿Áý=ó{Æ@ÄÃøì?°ÿý ßøÁñCã?pÄô¡çýüê�: +endstream +endobj +63 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 604 0 R +/Name /Im56 +/Width 19 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÇÀþ¿AÿÕ�3ÃtTÃÀPÇÀ`Ç`Ïp@¾ñ�ûÆ?�d: +endstream +endobj +64 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 605 0 R +/Name /Im57 +/Width 28 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿÿA?ã~~>ÀÏ`ÐÀÏ ø¨åÿÿa�� ¨ +endstream +endobj +65 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 606 0 R +/Name /Im58 +/Width 20 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xa`øÃÀ Õ0È´1È23È17�Ñèÿ�|ý +endstream +endobj +66 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 607 0 R +/Name /Im59 +/Width 9 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x`°a¨b d Ãð Áÿ �Ü +endstream +endobj +67 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 608 0 R +/Name /Im60 +/Width 15 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã?a` q0Ô0Ø?ÿÀþÁ¦¯í�²<à¹!Ñþ��*| +endstream +endobj +68 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 609 0 R +/Name /Im61 +/Width 20 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÀ``ÀP!ÁP!Ã`ÀÇÀ�GÿØûäø,ø*ø>ð @@ Eºó�=v +endstream +endobj +69 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 610 0 R +/Name /Im62 +/Width 14 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xùðWBÎ%dpÃÿ�°S +endstream +endobj +70 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 611 0 R +/Name /Im63 +/Width 14 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcb`B6 äB;ÿ?ø°Bdç`æ`ü��väc +endstream +endobj +71 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 612 0 R +/Name /Im64 +/Width 17 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃÀÎÆ ÃÏ`Dl0P(eÁÐ�D2 -?�_¾ +endstream +endobj +72 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 613 0 R +/Name /Im65 +/Width 9 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xaøÃ C6üß��¬FÄ +endstream +endobj +73 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 614 0 R +/Name /Im66 +/Width 17 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀÀ'à ÃÇ`ÁB@ÄÜðþÿoøÀÀ�A`dÁÐ�D2ìl?�Êú× +endstream +endobj +74 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 615 0 R +/Name /Im67 +/Width 21 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x©aøÛÎ ÇØ Çx@áà +T�z�T&ÇÜ ÛÎ Sà Ãýo`��~V +endstream +endobj +75 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 616 0 R +/Name /Im68 +/Width 20 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x©aøÓÆ ËÌ ÇÜ�D2D£ÿý�q +endstream +endobj +76 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 617 0 R +/Name /Im69 +/Width 30 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû?ÿáöæ Vàcnpàc>�Æì,ØY1sG"sG!3^0b+Ævd 8AÁ�gZ +endstream +endobj +77 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 618 0 R +/Name /Im70 +/Width 5 +/Height 14 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øðãG�/æ +endstream +endobj +78 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 619 0 R +/Name /Im71 +/Width 20 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`xÀüØÏÆ@FÆÀ¡Eddä,0(0Ùÿcÿß ÿÿãpÀ`Àp@¹ù�0ñ +endstream +endobj +79 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 620 0 R +/Name /Im72 +/Width 33 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x±c~Àðç0,ó9Æ2Bñ�ÿý?þ7��kþú +endstream +endobj +80 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 621 0 R +/Name /Im73 +/Width 12 +/Height 2 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿ� ¾ß +endstream +endobj +81 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 622 0 R +/Name /Im74 +/Width 21 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`<ÀÀbüx÷�ó Æ*0ø +À¨@¤¨ ñã�¾ë" +endstream +endobj +82 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 623 0 R +/Name /Im75 +/Width 21 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßüÃáÃ>bgd�¡fæ&b<FO^Q)0��ݼ r +endstream +endobj +83 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 624 0 R +/Name /Im76 +/Width 22 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßþCù�c3;sã Æ +*~00Ìa`äc`âc`cg`anàa>`Ãüàû�¸p@ +endstream +endobj +84 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 625 0 R +/Name /Im77 +/Width 20 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÁÀÎÇ ÃÜ`Áx� +�Ñh"QTÔÂø�Ïå¿ +endstream +endobj +85 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 626 0 R +/Name /Im78 +/Width 16 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨a<ÆÌÏÎÏÇÆÇÿ@åcõ�Ðò, +endstream +endobj +86 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 627 0 R +/Name /Im79 +/Width 25 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨c``<ÌÀÀÌØÐÀÇp AáAÃC ®�ãG@üá¿�b|ÀP� l Fìd�ܤ¥ +endstream +endobj +87 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 628 0 R +/Name /Im80 +/Width 24 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`øÁÀÌÆÀÂÆÀÁÌ ÀÌ ÀÌàÀB @ÄÆÈÀÇÈÀÃÈþ¥ýɱ !ª`(aø Âð@ñb;B 9 ¡�Dá +endstream +endobj +88 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 629 0 R +/Name /Im81 +/Width 5 +/Height 5 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øñãG�]É +endstream +endobj +89 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 630 0 R +/Name /Im82 +/Width 27 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ?Ë1³p窳aàÿÿB!Hù�3>À¡r u hÇð¨�ÉU +endstream +endobj +90 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 631 0 R +/Name /Im83 +/Width 20 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xanø#ß ÃL4boàao`n`~ü�¬î +endstream +endobj +91 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 632 0 R +/Name /Im84 +/Width 21 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xa`øÃÀ Õ0ȶ3È16È1ax ÃP�F(ø¨�¨L±A²A �Iå¯ +endstream +endobj +92 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 633 0 R +/Name /Im85 +/Width 28 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°g?ÀøàNsÃì>°1>HàcxÀÿÿÿ§©¸þø?�÷Ü%5 +endstream +endobj +93 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 634 0 R +/Name /Im86 +/Width 20 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}Ê; @�Á- +°|dP HÀÉY9)'á@0@2å7øo)Æe v8â¦Ê|â;=|?òêÔJ @ +endstream +endobj +94 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 635 0 R +/Name /Im87 +/Width 21 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßüÃáÃ>bgd�¡fæ&b<FO^Q)}h�¡I6�iÁ +endstream +endobj +95 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 636 0 R +/Name /Im88 +/Width 12 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ\øÿ�°~ +endstream +endobj +96 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 637 0 R +/Name /Im89 +/Width 30 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÀÀP`ÁÀx¹Hòy2l>X�e+*@¸Áâ !S ý s@æÌ²dÈ^ ý�Ö?7 +endstream +endobj +97 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 638 0 R +/Name /Im90 +/Width 21 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüàÀÎséóÆ +|À@`) 2Öì?``Äø��×Áá +endstream +endobj +98 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 639 0 R +/Name /Im91 +/Width 23 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°o`xàÀÜÀÎðá1 ¡ÿÿd úÃÿ�» +endstream +endobj +99 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 640 0 R +/Name /Im92 +/Width 22 +/Height 1 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ�úû +endstream +endobj +100 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 641 0 R +/Name /Im93 +/Width 22 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcàa`a`¨a`ÿÃðÿÃ?´Dÿÿÿ"�¯¬* +endstream +endobj +101 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 642 0 R +/Name /Im94 +/Width 8 +/Height 8 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³©ûu6�q +endstream +endobj +102 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 643 0 R +/Name /Im95 +/Width 19 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÁÿÿ0Ðý[ +�M/À +endstream +endobj +103 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 644 0 R +/Name /Im96 +/Width 32 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`°ÿÀ�ÆÌ¤cûæÿ?`ÿ`ýÿ�ÿùöö@q®CÂÿ`:^v°9üä?°?¨ÿø?C}ó�ÿµ? +endstream +endobj +104 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 645 0 R +/Name /Im97 +/Width 32 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÀþà æ?ÀL%ÌÅüØH`~`üñÿãÿõÍÿ3 +endstream +endobj +105 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 646 0 R +/Name /Im98 +/Width 32 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÇþ?ÿæì ÈÂÿÿ§Avÿº�>U5¤ +endstream +endobj +106 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 647 0 R +/Name /Im99 +/Width 23 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãgøx¯!¡ÁÁä°!HeÃ>Ç|ö|8Ñÿ�}öH +endstream +endobj +107 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 648 0 R +/Name /Im100 +/Width 14 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãï0¨H8 qã�Çõöø?0þ`°iiàià9À¸`Ð��NÕY +endstream +endobj +108 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 649 0 R +/Name /Im101 +/Width 14 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcb`C60äcc°cøÿ+dA@vfÆ�t +endstream +endobj +109 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 650 0 R +/Name /Im102 +/Width 21 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`(`þ8ONBOÂ*Øà""ÃÇ 'Ã`üA,ìÿ1Èÿ?ÀÿÿÃpäÃ>ææ�25 +endstream +endobj +110 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 651 0 R +/Name /Im103 +/Width 23 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßðO¡BÁAØ@¨á�sC1d�"G0TF0$À��ô c +endstream +endobj +111 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 652 0 R +/Name /Im104 +/Width 17 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°c`xÌÀx¼¹½½úÿ§ÔÀPÿ�(°¨ +endstream +endobj +112 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 653 0 R +/Name /Im105 +/Width 32 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßÿ£Þñã Æ|ø¸@©@Å�-[,;$XÆñLã æk`øÀÏÀðØ�Áq0 +endstream +endobj +113 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 654 0 R +/Name /Im106 +/Width 25 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc?ÀÀP ÀÀp@±Á¹¡ 'þÿÿTUpýÃÿ �? +endstream +endobj +114 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 655 0 R +/Name /Im107 +/Width 32 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿý?ÿì @¬@+ÌÜÀàÀ|�040<�âF6æ�yÙ +endstream +endobj +115 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 656 0 R +/Name /Im108 +/Width 23 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßüOáÃvöFæfÆCO*ÀÈÁÁ¡±¹ñ�ãvþ3ÿ�sª +endstream +endobj +116 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 657 0 R +/Name /Im109 +/Width 30 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿÿG{CE{{`oài`o`AÆì TÇüÿÿc��¬¸ +endstream +endobj +117 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 658 0 R +/Name /Im110 +/Width 39 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcà?PÏÀP`x á7cÃæ;Æì6 Bá�`ÀOübÚõÿÿ�5 &Ê +endstream +endobj +118 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 659 0 R +/Name /Im111 +/Width 48 +/Height 1 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ�ñû +endstream +endobj +119 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 660 0 R +/Name /Im112 +/Width 27 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°g``xØÀÀÜð@!Á¡ÀAÁÀÁÁ¢+, ØáÛ�±qÃf öì�8 +endstream +endobj +120 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 661 0 R +/Name /Im113 +/Width 27 +/Height 45 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]ÍÁ @@@Ñ?V ÁQDN²%©@Fg«(AÌâ´wø§p(@nJNßd|$})êT(¹l@ÜEfýÓ(OÔ|*3Ò3.nöÀ´a»Ohâw.8 +endstream +endobj +121 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 662 0 R +/Name /Im114 +/Width 11 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcP`p`h`d`f`c`aàB 4�Ã0|BT@uôÌ`ÆÌÀÈÀÐ�4]�ÃÕí +endstream +endobj +122 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 663 0 R +/Name /Im115 +/Width 35 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5α @áwtPR A0 +cP J +JFÈ(7Ê@Itñ_Ð|e;^Ö Ü[mÙbPÀ�p& +xC/Ö >øÂ6}¿Fø¹rÈ(Müp ´¦k³ÅËÅðI¤%+ +endstream +endobj +123 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 664 0 R +/Name /Im116 +/Width 24 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÇP/Ï #ßÀ!ÞÀ!|Cøà?8*8l8ì8ä8ø9Ø;@ù�ãbø!ÀPFÿ8�á2f +endstream +endobj +124 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 665 0 R +/Name /Im117 +/Width 24 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû ^AFÄÇ ÀÏ ÀÎ ÀÜàÀx°Á�JÊÌ +endstream +endobj +125 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 666 0 R +/Name /Im118 +/Width 25 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿ¡@!AÁÈ164È1À1EØñÿ�]© +endstream +endobj +126 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 667 0 R +/Name /Im119 +/Width 24 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûø¿C~$ÿÿA5@ôÿð�: +endstream +endobj +127 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 668 0 R +/Name /Im120 +/Width 34 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmÌ!1 á(TAV¬àÈ éY8Aee!lIH@®¬DÀL(&yzoèíFjýàþ±çËÁ8ÚâòãÊkàÎ¥F@2+& 5Ó^YD¡£¼²Y +ä¹ÒìasgEF¤F&zÂÅ~¦E÷àÉx1#° +endstream +endobj +128 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 669 0 R +/Name /Im121 +/Width 42 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûáÿ~ ùHþ``}ÀÀX%Y>00¡ÈÈcü +h${d>ÐF2>d0È$ÒHòIy ùáÿþÿ�'s,Ï +endstream +endobj +129 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 670 0 R +/Name /Im122 +/Width 25 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨g``<x¡ÁAmä,> +~ (;Ãö|¤Az@zAfÌ 2h�Tñ +endstream +endobj +130 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 671 0 R +/Name /Im123 +/Width 26 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿAù�à þ�ÄXð<P<X}ã$=X±C[4ü? Ï��#¥ +endstream +endobj +131 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 672 0 R +/Name /Im124 +/Width 22 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿC11@ü?a`!z Æÿÿ��ÈEd +endstream +endobj +132 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 673 0 R +/Name /Im125 +/Width 15 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xch`nàoø$Éìþÿ�k® +endstream +endobj +133 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 674 0 R +/Name /Im126 +/Width 19 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xM± ÐO.Í%ZbçEIy£1ÊwFM|yaB ¦È U¼=g_þ·UX 9Ò"õ \Doñµ÷®h3c/Øn<!* +endstream +endobj +134 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 675 0 R +/Name /Im127 +/Width 19 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmÊ» À @ÁÇGÅ£d<GÉ&` IéÊx`ÌwLsZ@]ÜÈPýð-`[¸ôQþ$X +È +endstream +endobj +135 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 676 0 R +/Name /Im128 +/Width 19 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]» 0@ÁgY"M@ED Á£e2QPpºrQNJgvÿcgäÀ¢Ôúöï!ÞÞ.Õ¤îú´-bF76ÙÐ +endstream +endobj +136 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 677 0 R +/Name /Im129 +/Width 11 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xk`p`P```àa`a`Bf dl�Ãø�«`<�ÑÒ2hÐT é �t +endstream +endobj +137 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 678 0 R +/Name /Im130 +/Width 23 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x ʱ 0��Á´z@2ãe´"¸@Ê®<¡CÅËP ÅpÄWܱ±lP^ÙX¾yHvýõía +endstream +endobj +138 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 679 0 R +/Name /Im131 +/Width 14 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ�{ùÿÀÿ?�ÚÜg +endstream +endobj +139 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 680 0 R +/Name /Im132 +/Width 22 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿÿÿÿ|`~ðáà +0²Á@ñ@e@Å -ÿ>0��0 +endstream +endobj +140 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 681 0 R +/Name /Im133 +/Width 11 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûðàóïþ3ücøÃð?à�O +endstream +endobj +141 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 682 0 R +/Name /Im134 +/Width 21 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃÀþÿ<ûƨ¡àCHÕ0~°c~�TÔÔÈø�Ê +endstream +endobj +142 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 683 0 R +/Name /Im135 +/Width 19 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÀÀðôáó?ÿÿþñ7ü`oøÀ|�`AÌ ²@eÿä¾ÿgøüáã�L¦3T +endstream +endobj +143 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 684 0 R +/Name /Im136 +/Width 25 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcàÿÀÀPÿáÿÆòìØØøäØm ¸ #«a5d>ÐöÌ ø@öÝt�ö- +endstream +endobj +144 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 685 0 R +/Name /Im137 +/Width 16 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÀÿÿa_ÿ¿þ¼<?�ùû0 +endstream +endobj +145 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 686 0 R +/Name /Im138 +/Width 14 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÃÿ@PäáÿÃÿý��P% +endstream +endobj +146 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 687 0 R +/Name /Im139 +/Width 13 +/Height 2 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿãÿ� Þï +endstream +endobj +147 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 688 0 R +/Name /Im140 +/Width 23 +/Height 1 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ�üý +endstream +endobj +148 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 689 0 R +/Name /Im141 +/Width 23 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcü¡ÀÎÀÇ Ã`Áø >`C) Æ<LØy0~xÀÀñÿ�ày$P +endstream +endobj +149 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 690 0 R +/Name /Im142 +/Width 31 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ;2>`o`ø�Ä?¸k°àÌTÇT/ßÀþÿ?}�"©µÃk æÍÚ}àÿÿ�ìø+¸ +endstream +endobj +150 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 691 0 R +/Name /Im143 +/Width 26 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcàa``�a9$lÄúPìÞ�Áí!ñ33~``bøÀÀüÿCs0ر´cøÇðÿ��à +endstream +endobj +151 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 692 0 R +/Name /Im144 +/Width 20 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿAT$�Cr +r räüÿÿ��W +/ +endstream +endobj +152 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 693 0 R +/Name /Im145 +/Width 16 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcp`<À~àçF² óúÿ�R> +endstream +endobj +153 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 694 0 R +/Name /Im146 +/Width 21 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÈ¡ À @Ñ¥Ã�PÉX'O2£ÜHDEIEÓä©'7)C;¤WºáôÇ>Ê4fe±¼YÚMV ¯¾\Òm Mg¤ó�À ¯ +endstream +endobj +154 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 695 0 R +/Name /Im147 +/Width 21 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÃÀÎÎÀÇÜ Ãx@áà *`( D"ú +F 4ñ�HB${ +endstream +endobj +155 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 696 0 R +/Name /Im148 +/Width 23 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°gb<pAANOÍ©�>00 !8Pqð1p0308À`Ï��$ +endstream +endobj +156 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 697 0 R +/Name /Im149 +/Width 34 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÍÁ DÑÁ%Ñ V`,Ëâ@¥Q +%ÐÁºhèÞq>P ªP¦KÂuû±{åôYLòÏ\`2UyöÁñÅ©p�8xAë +endstream +endobj +157 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 698 0 R +/Name /Im150 +/Width 17 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÈ !Í ÀÎÀÌàÀÌp00T00Ô70Ø`ÿÃÀþÈa`àg``n�¢F()ffxÀÄp¡ù�¢n* +endstream +endobj +158 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 699 0 R +/Name /Im151 +/Width 19 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÁÀÆÇÀÁÌ ÀØ ÀØÀp� +À¨±ÁÁAþÿæØê8ìøØ$0?8�B pÀà�4Á¡Aù�pÉä +endstream +endobj +159 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 700 0 R +/Name /Im152 +/Width 29 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ?{s{ãfø�Ä?pàu =@½@3âdaþÿÿ00��R#ñ +endstream +endobj +160 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 701 0 R +/Name /Im153 +/Width 27 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûý|ó~fö&öLÌXð00~à``ø ÀÀð+jìX®AùÃõ�+Ê( +endstream +endobj +161 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 702 0 R +/Name /Im154 +/Width 35 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ{{`>�$� â.âLXX/Èyì l(Âd¸ñèÄ4BH|�ø0|pøÿ¡¢A�@Ð/M +endstream +endobj +162 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 703 0 R +/Name /Im155 +/Width 10 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû@4øÿ��¨îO +endstream +endobj +163 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 704 0 R +/Name /Im156 +/Width 26 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßÀÀ½AùX ¸(ÊÆÌÀñP``øà�Á \Ķ,y �Ò$ +endstream +endobj +164 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 705 0 R +/Name /Im157 +/Width 32 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`l``aæÌú�9?00p@±@+Ø °g`hàcÆÿÿØÁ h ³00>a2@lÇÀøãÿ�´;: +endstream +endobj +165 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 706 0 R +/Name /Im158 +/Width 30 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc?ø¡À\á cC sC ;!üÿÿÿĨ#Û0Ô?ü��cþ +endstream +endobj +166 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 707 0 R +/Name /Im159 +/Width 15 +/Height 15 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã`àPPpPpPhpÀ1êþÔÕØYÈ��j, [ +endstream +endobj +167 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 708 0 R +/Name /Im160 +/Width 15 +/Height 15 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+°øQó§îO]r°p°pp(8(��|¯ +endstream +endobj +168 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 709 0 R +/Name /Im161 +/Width 31 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏÀøOñ70±ð8|ÀÆÈ°Bm X®ù áÿccÿ�)M +endstream +endobj +169 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 710 0 R +/Name /Im162 +/Width 19 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÀÀ.ÃÀÃÆ ÁÌ`ÁÜ�Dàèã"\Kó92ì c3~`��À(w +endstream +endobj +170 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 711 0 R +/Name /Im163 +/Width 23 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÀ ÷hôÿÿ?"^�Õ*µ +endstream +endobj +171 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 712 0 R +/Name /Im164 +/Width 4 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûð ��Ná Ñ +endstream +endobj +172 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 713 0 R +/Name /Im165 +/Width 23 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûà ÷¾Ñç0: ÷È}�¢`TFrlÀHøä>ðË}` yÁñ1ü¡:� k41 +endstream +endobj +173 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 714 0 R +/Name /Im166 +/Width 29 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x ± 0ÏJA È"3¥L £eà _ ÑQäÆwOêp:v_?Xz"¶ØÒ¼VBÏØü¥@q¨|vÌåÙC^ùÕQO]õµ¹çK.ê +endstream +endobj +174 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 715 0 R +/Name /Im167 +/Width 26 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-λ 0CÑ(RfX1E6a&AÁ0Y§ô{1ÑÛhUBu¶ µ ÞF+°Úv|ö®É"!q¸Sn?o|ÁºÿWcñ¼!Ì7I5ð +endstream +endobj +175 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 716 0 R +/Name /Im168 +/Width 22 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=É¡ Ñ"ðïXHðUÃ``Ç¡é@$`ðîµ§Y´§cwø8IÌP'v8 $BÃvtϪlElßoCbýe$ã®oâ¥Rzx8Ë +endstream +endobj +176 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 717 0 R +/Name /Im169 +/Width 21 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿC11@ü?aÀþ?`�� +endstream +endobj +177 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 718 0 R +/Name /Im170 +/Width 19 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-± @Ñg 17È(l"£Ý(@iøò¤³GNúžUZö¸¿Jc¶ÙW<!@«8XÐÝÐ@IäkØ=l{Aÿ +endstream +endobj +178 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 719 0 R +/Name /Im171 +/Width 5 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øñãGø�SE +endstream +endobj +179 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 720 0 R +/Name /Im172 +/Width 18 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x ± 0EÁ¥pHÁ.ð(òæQØÄpº«Ò»ÓnÜÄI8,xiÿ¤+ØANäèiZ¦*}ÕÆ1 +endstream +endobj +180 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 721 0 R +/Name /Im173 +/Width 31 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x ± À /¢ d¹\P0£xðR§¸ÂòûÏ�74rÏ=±'âÛÞ7hÂÁÄúrß:*Luª_È%§Üeÿ²�.p$Y +endstream +endobj +181 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 722 0 R +/Name /Im174 +/Width 18 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÀÀðèÿÿ�±&; +endstream +endobj +182 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 723 0 R +/Name /Im175 +/Width 26 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xuÍ¡À0ÐC Ù ä.kE2£tHT öj*~ ÌÐæ¢t² QÖÇþöX ×(½Hb%Ëϳåo±ã�ÕB)þ +endstream +endobj +183 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 724 0 R +/Name /Im176 +/Width 21 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xe˱ À @Ñ/)®t¸àJ)-B0Ý(p¥ pt!ðªgs·tÛÎa©_ç$%NÄ Þ(tÁ2~SU¬c#ôK´xë<³! +endstream +endobj +184 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 725 0 R +/Name /Im177 +/Width 28 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿPÌÀÏÀ0�« ¨ +endstream +endobj +185 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 726 0 R +/Name /Im178 +/Width 21 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃ0úÀÀ@ýÿÿ�QÓò�£:2§ +endstream +endobj +186 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 727 0 R +/Name /Im179 +/Width 13 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xão0xàPÐ`pÀâ C&0`l`f`càáàà°ÿPÿáÿ� # +endstream +endobj +187 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 728 0 R +/Name /Im180 +/Width 13 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xclàoøßð½'¬ÿQÿ�õ Ð +endstream +endobj +188 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 729 0 R +/Name /Im181 +/Width 28 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿAþ?s?#51;{ÐdÆ,$ +ø�!C +endstream +endobj +189 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 730 0 R +/Name /Im182 +/Width 20 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûSà ÓÎ ËÌ ÇÜ Cú?ÿ�J ~ +endstream +endobj +190 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 731 0 R +/Name /Im183 +/Width 9 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x`°B TðA�üß��kä +endstream +endobj +191 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 732 0 R +/Name /Im184 +/Width 19 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏþÀ¹Aø@;Àèãbx�C�ø| +endstream +endobj +192 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 733 0 R +/Name /Im185 +/Width 15 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÀc !aÀSÀÀöíÿ¿ÀPÀdÀ$ÁÂ#Áü��ÔÈ +þ +endstream +endobj +193 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 734 0 R +/Name /Im186 +/Width 13 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûó@ÖB®B®BÆ@;ü��8¹ +endstream +endobj +194 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 735 0 R +/Name /Im187 +/Width 13 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x Pà`p@àÀõ öø?0üh°h8�.$ô�� y¼ +endstream +endobj +195 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 736 0 R +/Name /Im188 +/Width 12 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xca`C a°aøÿ@ +À �ó�|E +endstream +endobj +196 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 737 0 R +/Name /Im189 +/Width 19 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏþÀ¹Aø@;Àèãbx�C`Ô�B>20|f`Hc`°``��"À +endstream +endobj +197 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 738 0 R +/Name /Im190 +/Width 18 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀÀ'à ÁÆ`ÀÌPÀÜÀØðñ� +¥ +Ê?0��ÁJK +endstream +endobj +198 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 739 0 R +/Name /Im191 +/Width 15 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÁØÃ.Ç&ÇÇÃÇÿ ó°Áú�̾[ +endstream +endobj +199 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 740 0 R +/Name /Im192 +/Width 23 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¿á?C? ??*WÔT2Dÿ?0��Ebi +endstream +endobj +200 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 741 0 R +/Name /Im193 +/Width 18 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x?À`PÀPaÁP!Ã` ÃÀ�Føe,d +ddÈ8@P_|;�$3� +endstream +endobj +201 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 742 0 R +/Name /Im194 +/Width 20 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xco``Æ?7ðq7H°70707$07<À@ `) 2>éæÇ�åî +endstream +endobj +202 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 743 0 R +/Name /Im195 +/Width 20 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÃÀ Õ0ȶ3È16È0ax à ÃPÀRÊ$Ùþ0��Ü « +endstream +endobj +203 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 744 0 R +/Name /Im196 +/Width 4 +/Height 12 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKøð¡@��¬ñ +endstream +endobj +204 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 745 0 R +/Name /Im197 +/Width 27 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ�?à ¶b> fbæ >ÀÏÀÃ`¨:^ö9 3e¸á?Ð.�Ü¢ +endstream +endobj +205 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 746 0 R +/Name /Im198 +/Width 20 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûSà ÛÎ ÇØ Ãx@á` °8ã 2Yv?2XÐÿ�×ÏÌ +endstream +endobj +206 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 747 0 R +/Name /Im199 +/Width 33 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûSÇþA¦¹ÃAqãÆÿûüo��Á¤L +endstream +endobj +207 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 748 0 R +/Name /Im200 +/Width 33 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßÀð¿¿áà>ÀXDp>`XP +ÂF� S@!ø`{ +ÁÌPÁ "þ7³ÿo��'G!n +endstream +endobj +208 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 749 0 R +/Name /Im201 +/Width 20 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÃÀ Õ0È´3È23È17ÈþÏÿ��½¿² +endstream +endobj +209 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 750 0 R +/Name /Im202 +/Width 15 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÁÃ#!g WÀÀð� &000I°ðH0?��¼Ê Û +endstream +endobj +210 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 751 0 R +/Name /Im203 +/Width 25 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}̱ áCL= +X²PZþ£9 +#8bmñu£HôSAY)µOAÕ]05÷�Ú×Õù!±`¬~Û Pn^I¢Ô +endstream +endobj +211 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 752 0 R +/Name /Im204 +/Width 20 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû#ß ÃLboàaoàn`~ü�c d +endstream +endobj +212 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 753 0 R +/Name /Im205 +/Width 18 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5± 0EѤ¬Á²«8.ö°p`ÊB'dÍb¯èµ9åï vHÆZXB *Fo8ÓßÚì¹:Σð4 +endstream +endobj +213 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 754 0 R +/Name /Im206 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc a £ S!WÁW!g!Ç ì$ÇÇÀÏÀ_Àÿ?ð9�UK°��E5$ +endstream +endobj +214 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 755 0 R +/Name /Im207 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc>Àc !aÀcÀSÀÀÀöÉðTJHð°?�� +endstream +endobj +215 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 756 0 R +/Name /Im208 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc>Àc !aÀSÀÀ÷ Ùa0½ß_BGý8òðTðTHH(ào��Íö +endstream +endobj +216 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 757 0 R +/Name /Im209 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x3à±ÿaÿÁþ*?Ð100QàcàcàÁþ`ØÀç ç £`!QÀ~��~6 +endstream +endobj +217 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 758 0 R +/Name /Im210 +/Width 28 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xmͱ 0á!D, @ÖÈ8º¥åÕ²>ÔÒâë*qnJZ2Ê#©ÙÝ:ðïêÉM¸}5+lÁèÇì×*ª¸öX +endstream +endobj +218 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 759 0 R +/Name /Im211 +/Width 11 +/Height 2 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿàÿ� ~¿ +endstream +endobj +219 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 760 0 R +/Name /Im212 +/Width 24 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=ÌQ +� PW±¯Àíþ§X<üQJ"M¬âÄxìB *cFX//÷$¤<± @ +endstream +endobj +220 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 761 0 R +/Name /Im213 +/Width 9 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûà Cüß��hp +endstream +endobj +221 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 762 0 R +/Name /Im214 +/Width 4 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKøð!<�1òA +endstream +endobj +222 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 763 0 R +/Name /Im215 +/Width 27 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xm¡07ÀÄåËËÓ %D"¡ ÊI))øxæfÍÝÍ êÁÈÆäX HĤiSÕtw.KrÿÐ{ߥÿ´*å1{pnÅý¡Q£_>N¤ +endstream +endobj +223 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 764 0 R +/Name /Im216 +/Width 20 +/Height 1 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ�îï +endstream +endobj +224 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 765 0 R +/Name /Im217 +/Width 4 +/Height 4 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKøð!�¡ +endstream +endobj +225 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 766 0 R +/Name /Im218 +/Width 12 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xgH8ð¡àAC&0`<ÀØÀÄÀÂÀ! Pÿàÿ�ìÈ +endstream +endobj +226 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 767 0 R +/Name /Im219 +/Width 28 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`c``a~$,Þ�Áæ¡Øù#7|cF +þÿÁYäÀAù,yÿÿ?��À?9 +endstream +endobj +227 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 768 0 R +/Name /Im220 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÀðø�4]M +endstream +endobj +228 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 769 0 R +/Name /Im221 +/Width 26 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°g``üÿùÿö?øjäÐAÁ¡½?00À�M©Ò2GH̲dÐ^�o$ý +endstream +endobj +229 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 770 0 R +/Name /Im222 +/Width 22 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°?Àðÿóö~9 +0úÿLY0ÈØ0ÈÈ0ÈÈ1�M4 h&ý�iú¥ +endstream +endobj +230 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 771 0 R +/Name /Im223 +/Width 4 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûð��ü1 +endstream +endobj +231 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 772 0 R +/Name /Im224 +/Width 18 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÁÀÿAÁ¡!áúÀÀPÁÀPÏÀ`ÿAþû?Æÿò ì Ì@06<`nøÀÎPÃVü�<«Ó +endstream +endobj +232 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 773 0 R +/Name /Im225 +/Width 25 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿà fc` �Á +% +endstream +endobj +233 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 774 0 R +/Name /Im226 +/Width 18 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÀÿÿ>00àGÿÿ7�Ae` % +endstream +endobj +234 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 775 0 R +/Name /Im227 +/Width 18 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`n`?r@¦â EC¹2ê@ÈÁþü jP`nH`<pdøØ0��qøÚ +endstream +endobj +235 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 776 0 R +/Name /Im228 +/Width 26 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ?Ë1²pÊÔT0ðÿÿ�¤m`ê¡j`bd½6ÿú�ÍÆw +endstream +endobj +236 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 777 0 R +/Name /Im229 +/Width 21 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßüCáá�C#sÃ�ße +endstream +endobj +237 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 778 0 R +/Name /Im230 +/Width 22 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿAA½AÀPHA(+Q�G@©ö#2Ìgþ7ü��Íhâ +endstream +endobj +238 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 779 0 R +/Name /Im231 +/Width 20 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÁÀÎÇÀÃÌ ÃÜ`Áx ñAÃ0P(TT)ÇÞ�ÔÅø�ü¿s +endstream +endobj +239 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 780 0 R +/Name /Im232 +/Width 9 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xch`d`b`càB 4�Ã(|Âä!ªAú@úÙ&1204��ºC +endstream +endobj +240 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 781 0 R +/Name /Im233 +/Width 13 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcd`g°g8$Iÿ��Hä§ +endstream +endobj +241 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 782 0 R +/Name /Im234 +/Width 18 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xeË;0�Á PP¤-"AbNH¼÷¦*<ýsÂ"³L²HUlÒåÌx×Oɸen +u +endstream +endobj +242 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 783 0 R +/Name /Im235 +/Width 9 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xk`p`P`0`�B dCflÀ¡òÕ } ý@� +endstream +endobj +243 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 545 0 R >> /XObject << /Im236 245 0 R /Im94 101 0 R /Im237 246 0 R /Im28 35 0 R /Im22 29 0 R /Im238 247 0 R /Im239 248 0 R /Im238 247 0 R /Im16 23 0 R /Im19 26 0 R /Im16 23 0 R /Im21 28 0 R /Im15 22 0 R /Im16 23 0 R /Im14 21 0 R /Im23 30 0 R /Im22 29 0 R /Im28 35 0 R /Im240 249 0 R /Im239 248 0 R /Im28 35 0 R /Im96 103 0 R /Im14 21 0 R /Im97 104 0 R /Im15 22 0 R /Im21 28 0 R /Im109 116 0 R /Im33 40 0 R /Im35 42 0 R /Im100 107 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im35 42 0 R /Im108 115 0 R /Im101 108 0 R /Im35 42 0 R /Im45 52 0 R /Im100 107 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im99 106 0 R /Im39 46 0 R /Im35 42 0 R /Im100 107 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im99 106 0 R /Im35 42 0 R /Im39 46 0 R /Im48 55 0 R /Im31 38 0 R /Im101 108 0 R /Im100 107 0 R /Im35 42 0 R /Im108 115 0 R /Im32 39 0 R /Im36 43 0 R /Im38 45 0 R /Im43 50 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im44 51 0 R /Im34 41 0 R /Im44 51 0 R /Im36 43 0 R /Im49 56 0 R /Im31 38 0 R /Im39 46 0 R /Im39 46 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im103 110 0 R /Im34 41 0 R /Im45 52 0 R /Im101 108 0 R /Im100 107 0 R /Im38 45 0 R /Im44 51 0 R /Im101 108 0 R /Im39 46 0 R /Im35 42 0 R /Im35 42 0 R /Im100 107 0 R /Im104 111 0 R /Im39 46 0 R /Im40 47 0 R /Im48 55 0 R /Im44 51 0 R /Im35 42 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im35 42 0 R /Im43 50 0 R /Im43 50 0 R /Im35 42 0 R /Im35 42 0 R /Im99 106 0 R /Im36 43 0 R /Im49 56 0 R /Im81 88 0 R /Im109 116 0 R /Im33 40 0 R /Im35 42 0 R /Im101 108 0 R /Im31 38 0 R /Im48 55 0 R /Im35 42 0 R /Im100 107 0 R /Im40 47 0 R /Im100 107 0 R /Im34 41 0 R /Im103 110 0 R /Im35 42 0 R /Im43 50 0 R /Im31 38 0 R /Im100 107 0 R /Im38 45 0 R /Im100 107 0 R /Im35 42 0 R /Im43 50 0 R /Im101 108 0 R /Im40 47 0 R /Im34 41 0 R /Im45 52 0 R /Im34 41 0 R /Im36 43 0 R /Im49 56 0 R /Im172 179 0 R /Im35 42 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im103 110 0 R /Im34 41 0 R /Im45 52 0 R /Im101 108 0 R /Im103 110 0 R /Im34 41 0 R /Im39 46 0 R /Im31 38 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im100 107 0 R /Im48 55 0 R /Im40 47 0 R /Im39 46 0 R /Im35 42 0 R /Im43 50 0 R /Im35 42 0 R /Im35 42 0 R /Im99 106 0 R /Im36 43 0 R /Im49 56 0 R /Im46 53 0 R /Im102 109 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im45 52 0 R /Im100 107 0 R /Im40 47 0 R /Im48 55 0 R /Im35 42 0 R /Im32 39 0 R /Im40 47 0 R /Im45 52 0 R /Im100 107 0 R /Im101 108 0 R /Im34 41 0 R /Im45 52 0 R /Im101 108 0 R /Im34 41 0 R /Im103 110 0 R /Im34 41 0 R /Im31 38 0 R /Im36 43 0 R /Im34 41 0 R /Im44 51 0 R /Im36 43 0 R /Im35 42 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im101 108 0 R /Im31 38 0 R /Im48 55 0 R /Im35 42 0 R /Im81 88 0 R /Im241 250 0 R /Im31 38 0 R /Im102 109 0 R /Im38 45 0 R /Im39 46 0 R /Im35 42 0 R /Im125 132 0 R /Im100 107 0 R /Im33 40 0 R /Im40 47 0 R /Im105 112 0 R /Im100 107 0 R /Im34 41 0 R /Im45 52 0 R /Im40 47 0 R /Im38 45 0 R /Im101 108 0 R /Im36 43 0 R /Im31 38 0 R /Im45 52 0 R /Im35 42 0 R /Im40 47 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im45 52 0 R /Im35 42 0 R /Im102 109 0 R /Im34 41 0 R /Im48 55 0 R /Im34 41 0 R /Im108 115 0 R /Im112 119 0 R /Im113 120 0 R /Im34 41 0 R /Im36 43 0 R /Im102 109 0 R /Im40 47 0 R /Im39 46 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im48 55 0 R /Im32 39 0 R /Im40 47 0 R /Im48 55 0 R /Im99 106 0 R /Im38 45 0 R /Im101 108 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im34 41 0 R /Im99 106 0 R /Im40 47 0 R /Im100 107 0 R /Im31 38 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im46 53 0 R /Im100 107 0 R /Im103 110 0 R /Im34 41 0 R /Im36 43 0 R /Im38 45 0 R /Im35 42 0 R /Im104 111 0 R /Im39 46 0 R /Im40 47 0 R /Im48 55 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im99 106 0 R /Im40 47 0 R /Im31 38 0 R /Im45 52 0 R /Im101 108 0 R /Im40 47 0 R /Im104 111 0 R /Im103 110 0 R /Im31 38 0 R /Im35 42 0 R /Im105 112 0 R /Im40 47 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im100 107 0 R /Im31 38 0 R /Im43 50 0 R /Im35 42 0 R /Im101 108 0 R /Im40 47 0 R /Im48 55 0 R /Im40 47 0 R /Im103 110 0 R /Im35 42 0 R /Im81 88 0 R /Im241 250 0 R /Im40 47 0 R /Im39 46 0 R /Im32 39 0 R /Im36 43 0 R /Im34 41 0 R /Im39 46 0 R /Im31 38 0 R /Im101 108 0 R /Im49 56 0 R /Im46 53 0 R /Im34 41 0 R /Im102 109 0 R /Im36 43 0 R /Im40 47 0 R /Im44 51 0 R /Im34 41 0 R /Im36 43 0 R /Im103 110 0 R /Im34 41 0 R /Im39 46 0 R /Im31 38 0 R /Im34 41 0 R /Im44 51 0 R /Im36 43 0 R /Im35 42 0 R /Im242 251 0 R /Im243 252 0 R /Im244 253 0 R /Im31 38 0 R /Im100 107 0 R /Im34 41 0 R /Im100 107 0 R /Im100 107 0 R /Im38 45 0 R /Im48 55 0 R /Im35 42 0 R /Im43 50 0 R /Im101 108 0 R /Im40 47 0 R /Im32 39 0 R /Im40 47 0 R /Im45 52 0 R /Im101 108 0 R /Im34 41 0 R /Im31 38 0 R /Im45 52 0 R /Im34 41 0 R /Im36 43 0 R /Im36 43 0 R /Im99 106 0 R /Im40 47 0 R /Im100 107 0 R /Im31 38 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im34 41 0 R /Im36 43 0 R /Im31 38 0 R /Im45 52 0 R /Im104 111 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im81 88 0 R /Im109 116 0 R /Im33 40 0 R /Im35 42 0 R /Im48 55 0 R /Im40 47 0 R /Im43 50 0 R /Im31 38 0 R /Im106 113 0 R /Im32 39 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im31 38 0 R /Im100 107 0 R /Im44 51 0 R /Im34 41 0 R /Im100 107 0 R /Im35 42 0 R /Im43 50 0 R /Im40 47 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im104 111 0 R /Im40 47 0 R /Im36 43 0 R /Im36 43 0 R /Im40 47 0 R /Im105 112 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im31 38 0 R /Im43 50 0 R /Im35 42 0 R /Im34 41 0 R /Im171 178 0 R /Im31 38 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im43 50 0 R /Im35 42 0 R /Im39 46 0 R /Im101 108 0 R /Im40 47 0 R /Im35 42 0 R /Im103 110 0 R /Im34 41 0 R /Im36 43 0 R /Im38 45 0 R /Im34 41 0 R /Im101 108 0 R /Im35 42 0 R /Im34 41 0 R /Im99 106 0 R /Im40 47 0 R /Im100 107 0 R /Im31 38 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im38 45 0 R /Im100 107 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im34 41 0 R /Im43 50 0 R /Im35 42 0 R /Im35 42 0 R /Im99 106 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im40 47 0 R /Im104 111 0 R /Im43 50 0 R /Im35 42 0 R /Im99 106 0 R /Im101 108 0 R /Im33 40 0 R /Im245 254 0 R /Im46 53 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im99 106 0 R /Im40 47 0 R /Im100 107 0 R /Im31 38 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im32 39 0 R /Im34 41 0 R /Im45 52 0 R /Im106 113 0 R /Im39 46 0 R /Im100 107 0 R /Im101 108 0 R /Im44 51 0 R /Im35 42 0 R /Im35 42 0 R /Im108 115 0 R /Im34 41 0 R /Im48 55 0 R /Im31 38 0 R /Im45 52 0 R /Im35 42 0 R /Im43 50 0 R /Im44 51 0 R /Im49 56 0 R /Im34 41 0 R /Im100 107 0 R /Im33 40 0 R /Im34 41 0 R /Im36 43 0 R /Im36 43 0 R /Im40 47 0 R /Im105 112 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im40 47 0 R /Im104 111 0 R /Im43 50 0 R /Im35 42 0 R /Im99 106 0 R /Im101 108 0 R /Im33 40 0 R /Im245 254 0 R /Im246 255 0 R /Im247 256 0 R /Im245 254 0 R /Im81 88 0 R /Im109 116 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im100 107 0 R /Im38 45 0 R /Im36 43 0 R /Im101 108 0 R /Im248 257 0 R /Im246 255 0 R /Im32 39 0 R /Im34 41 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im45 52 0 R /Im44 51 0 R /Im35 42 0 R /Im38 45 0 R /Im100 107 0 R /Im35 42 0 R /Im43 50 0 R /Im101 108 0 R /Im40 47 0 R /Im35 42 0 R /Im100 107 0 R /Im101 108 0 R /Im31 38 0 R /Im48 55 0 R /Im34 41 0 R /Im101 108 0 R /Im35 42 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im101 108 0 R /Im39 46 0 R /Im38 45 0 R /Im35 42 0 R /Im103 110 0 R /Im34 41 0 R /Im36 43 0 R /Im38 45 0 R /Im35 42 0 R /Im248 257 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im101 108 0 R /Im40 47 0 R /Im43 50 0 R /Im35 42 0 R /Im32 39 0 R /Im31 38 0 R /Im43 50 0 R /Im35 42 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im99 106 0 R /Im39 46 0 R /Im35 42 0 R /Im100 107 0 R /Im32 39 0 R /Im39 46 0 R /Im31 38 0 R /Im44 51 0 R /Im35 42 0 R /Im43 50 0 R /Im36 43 0 R /Im31 38 0 R /Im130 137 0 R /Im35 42 0 R /Im36 43 0 R /Im31 38 0 R /Im33 40 0 R /Im40 47 0 R /Im40 47 0 R /Im43 50 0 R /Im105 112 0 R /Im33 40 0 R /Im35 42 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im248 257 0 R /Im36 43 0 R /Im31 38 0 R /Im35 42 0 R /Im100 107 0 R /Im40 47 0 R /Im38 45 0 R /Im101 108 0 R /Im100 107 0 R /Im31 38 0 R /Im43 50 0 R /Im35 42 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im32 39 0 R /Im38 45 0 R /Im39 46 0 R /Im39 46 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im249 258 0 R /Im250 259 0 R /Im251 260 0 R /Im242 251 0 R /Im252 261 0 R /Im250 259 0 R /Im253 262 0 R /Im254 263 0 R /Im255 264 0 R /Im256 265 0 R /Im250 259 0 R /Im257 266 0 R /Im105 112 0 R /Im31 38 0 R /Im45 52 0 R /Im43 50 0 R /Im40 47 0 R /Im105 112 0 R /Im81 88 0 R /Im131 138 0 R /Im104 111 0 R /Im100 107 0 R /Im40 47 0 R /Im46 53 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im99 106 0 R /Im40 47 0 R /Im100 107 0 R /Im31 38 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im31 38 0 R /Im100 107 0 R /Im45 52 0 R /Im40 47 0 R /Im101 108 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im35 42 0 R /Im43 50 0 R /Im48 55 0 R /Im40 47 0 R /Im39 46 0 R /Im35 42 0 R /Im43 50 0 R /Im35 42 0 R /Im35 42 0 R /Im99 106 0 R /Im36 43 0 R /Im49 56 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im31 38 0 R /Im102 109 0 R /Im33 40 0 R /Im101 108 0 R /Im140 147 0 R /Im33 40 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im44 51 0 R /Im40 47 0 R /Im38 45 0 R /Im45 52 0 R /Im43 50 0 R /Im31 38 0 R /Im100 107 0 R /Im39 46 0 R /Im35 42 0 R /Im101 108 0 R /Im38 45 0 R /Im39 46 0 R /Im45 52 0 R /Im35 42 0 R /Im43 50 0 R /Im81 88 0 R /Im173 180 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im105 112 0 R /Im31 38 0 R /Im100 107 0 R /Im35 42 0 R /Im46 53 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im31 38 0 R /Im100 107 0 R /Im99 106 0 R /Im35 42 0 R /Im39 46 0 R /Im104 111 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im35 42 0 R /Im43 50 0 R /Im101 108 0 R /Im40 47 0 R /Im43 50 0 R /Im35 42 0 R /Im99 106 0 R /Im101 108 0 R /Im33 40 0 R /Im245 254 0 R /Im46 53 0 R /Im49 56 0 R /Im31 38 0 R /Im35 42 0 R /Im36 43 0 R /Im43 50 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im101 108 0 R /Im39 46 0 R /Im38 45 0 R /Im35 42 0 R /Im103 110 0 R /Im34 41 0 R /Im36 43 0 R /Im38 45 0 R /Im35 42 0 R /Im81 88 0 R /Im98 105 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im46 53 0 R /Im34 41 0 R /Im100 107 0 R /Im33 40 0 R /Im34 41 0 R /Im36 43 0 R /Im36 43 0 R /Im40 47 0 R /Im105 112 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im33 40 0 R /Im34 41 0 R /Im100 107 0 R /Im44 51 0 R /Im35 42 0 R /Im35 42 0 R /Im45 52 0 R /Im31 38 0 R /Im45 52 0 R /Im103 110 0 R /Im35 42 0 R /Im100 107 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im44 51 0 R /Im38 45 0 R /Im101 108 0 R /Im39 46 0 R /Im35 42 0 R /Im36 43 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im101 108 0 R /Im40 47 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im43 50 0 R /Im35 42 0 R /Im35 42 0 R /Im99 106 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im35 42 0 R /Im158 165 0 R /Im40 47 0 R /Im39 46 0 R /Im101 108 0 R /Im31 38 0 R /Im45 52 0 R /Im103 110 0 R /Im40 47 0 R /Im36 43 0 R /Im103 110 0 R /Im35 42 0 R /Im43 50 0 R /Im31 38 0 R /Im100 107 0 R /Im45 52 0 R /Im35 42 0 R /Im102 109 0 R /Im36 43 0 R /Im31 38 0 R /Im102 109 0 R /Im31 38 0 R /Im44 51 0 R /Im36 43 0 R /Im35 42 0 R /Im81 88 0 R /Im157 164 0 R /Im45 52 0 R /Im34 41 0 R /Im101 108 0 R /Im38 45 0 R /Im39 46 0 R /Im34 41 0 R /Im36 43 0 R /Im105 112 0 R /Im34 41 0 R /Im49 56 0 R /Im101 108 0 R /Im40 47 0 R /Im35 42 0 R /Im100 107 0 R /Im101 108 0 R /Im31 38 0 R /Im48 55 0 R /Im34 41 0 R /Im101 108 0 R /Im35 42 0 R /Im248 257 0 R /Im44 51 0 R /Im49 56 0 R /Im48 55 0 R /Im35 42 0 R /Im34 41 0 R /Im45 52 0 R /Im100 107 0 R /Im40 47 0 R /Im104 111 0 R /Im248 257 0 R /Im246 255 0 R /Im31 38 0 R /Im100 107 0 R /Im101 108 0 R /Im40 47 0 R /Im38 45 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im36 43 0 R /Im31 38 0 R /Im45 52 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im48 55 0 R /Im40 47 0 R /Im43 50 0 R /Im35 42 0 R /Im36 43 0 R /Im40 47 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im104 111 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im248 257 0 R /Im258 267 0 R /Im259 268 0 R /Im81 88 0 R /Im248 257 0 R /Im246 255 0 R /Im260 269 0 R /Im261 270 0 R /Im260 269 0 R /Im262 271 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im259 268 0 R /Im46 53 0 R /Im261 270 0 R /Im263 272 0 R /Im131 138 0 R /Im264 273 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im34 41 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im34 41 0 R /Im36 43 0 R /Im36 43 0 R /Im49 56 0 R /Im140 147 0 R /Im43 50 0 R /Im31 38 0 R /Im100 107 0 R /Im101 108 0 R /Im39 46 0 R /Im31 38 0 R /Im44 51 0 R /Im38 45 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im35 42 0 R /Im39 46 0 R /Im39 46 0 R /Im40 47 0 R /Im39 46 0 R /Im103 110 0 R /Im34 41 0 R /Im39 46 0 R /Im31 38 0 R /Im34 41 0 R /Im44 51 0 R /Im36 43 0 R /Im35 42 0 R /Im262 271 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im48 55 0 R /Im35 42 0 R /Im34 41 0 R /Im45 52 0 R /Im162 169 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im103 110 0 R /Im34 41 0 R /Im39 46 0 R /Im31 38 0 R /Im34 41 0 R /Im45 52 0 R /Im32 39 0 R /Im35 42 0 R /Im265 274 0 R /Im179 186 0 R /Im81 88 0 R /Im131 138 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im35 42 0 R /Im103 110 0 R /Im34 41 0 R /Im36 43 0 R /Im38 45 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im104 111 0 R /Im38 45 0 R /Im45 52 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im31 38 0 R /Im100 107 0 R /Im39 46 0 R /Im35 42 0 R /Im36 43 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im36 43 0 R /Im49 56 0 R /Im100 107 0 R /Im101 108 0 R /Im34 41 0 R /Im44 51 0 R /Im36 43 0 R /Im35 42 0 R /Im46 53 0 R /Im31 38 0 R /Im101 108 0 R /Im32 39 0 R /Im34 41 0 R /Im45 52 0 R /Im44 51 0 R /Im35 42 0 R /Im35 42 0 R /Im108 115 0 R /Im99 106 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im101 108 0 R /Im259 268 0 R /Im266 275 0 R /Im125 132 0 R /Im46 53 0 R /Im261 270 0 R /Im266 275 0 R /Im162 169 0 R /Im46 53 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im265 274 0 R /Im179 186 0 R /Im31 38 0 R /Im100 107 0 R /Im100 107 0 R /Im48 55 0 R /Im34 41 0 R /Im36 43 0 R /Im36 43 0 R /Im46 53 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im100 107 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im34 41 0 R /Im32 39 0 R /Im32 39 0 R /Im38 45 0 R /Im39 46 0 R /Im34 41 0 R /Im32 39 0 R /Im49 56 0 R /Im40 47 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im38 45 0 R /Im45 52 0 R /Im44 51 0 R /Im31 38 0 R /Im34 41 0 R /Im100 107 0 R /Im35 42 0 R /Im43 50 0 R /Im35 42 0 R /Im100 107 0 R /Im101 108 0 R /Im31 38 0 R /Im48 55 0 R /Im34 41 0 R /Im101 108 0 R /Im40 47 0 R /Im39 46 0 R /Im267 276 0 R /Im248 257 0 R /Im258 267 0 R /Im259 268 0 R /Im81 88 0 R /Im248 257 0 R /Im246 255 0 R /Im260 269 0 R /Im261 270 0 R /Im268 277 0 R /Im269 278 0 R /Im270 279 0 R /Im271 280 0 R /Im272 281 0 R /Im273 282 0 R /Im274 283 0 R /Im275 284 0 R /Im276 285 0 R /Im277 286 0 R /Im270 279 0 R /Im275 284 0 R /Im278 287 0 R /Im268 277 0 R /Im269 278 0 R /Im270 279 0 R /Im274 283 0 R /Im277 286 0 R /Im268 277 0 R /Im279 288 0 R /Im274 283 0 R /Im270 279 0 R /Im280 289 0 R /Im268 277 0 R /Im269 278 0 R /Im270 279 0 R /Im275 284 0 R /Im272 281 0 R /Im273 282 0 R /Im274 283 0 R /Im275 284 0 R /Im280 289 0 R /Im268 277 0 R /Im269 278 0 R /Im270 279 0 R /Im281 290 0 R /Im277 286 0 R /Im270 279 0 R /Im275 284 0 R /Im282 291 0 R /Im283 292 0 R /Im268 277 0 R /Im269 278 0 R /Im270 279 0 R /Im268 277 0 R /Im280 289 0 R /Im284 293 0 R /Im275 284 0 R /Im285 294 0 R /Im280 289 0 R /Im286 295 0 R /Im275 284 0 R /Im272 281 0 R /Im287 296 0 R /Im288 297 0 R /Im289 298 0 R /Im290 299 0 R /Im291 300 0 R /Im292 301 0 R /Im293 302 0 R /Im294 303 0 R /Im271 280 0 R /Im295 304 0 R /Im277 286 0 R /Im272 281 0 R /Im270 279 0 R /Im275 284 0 R /Im287 296 0 R /Im268 277 0 R /Im296 305 0 R /Im278 287 0 R /Im293 302 0 R /Im277 286 0 R /Im275 284 0 R /Im296 305 0 R /Im278 287 0 R /Im297 306 0 R /Im273 282 0 R /Im298 307 0 R /Im299 308 0 R /Im280 289 0 R /Im274 283 0 R /Im277 286 0 R /Im268 277 0 R /Im279 288 0 R /Im274 283 0 R /Im270 279 0 R /Im282 291 0 R /Im282 291 0 R /Im300 309 0 R /Im301 310 0 R /Im272 281 0 R /Im277 286 0 R /Im275 284 0 R /Im296 305 0 R /Im302 311 0 R /Im273 282 0 R /Im298 307 0 R /Im299 308 0 R /Im268 277 0 R /Im270 279 0 R /Im268 277 0 R /Im298 307 0 R /Im269 278 0 R /Im303 312 0 R /Im301 310 0 R /Im300 309 0 R /Im304 313 0 R /Im277 286 0 R /Im270 279 0 R /Im305 314 0 R /Im304 313 0 R /Im269 278 0 R /Im292 301 0 R /Im286 295 0 R /Im275 284 0 R /Im272 281 0 R /Im278 287 0 R /Im297 306 0 R /Im273 282 0 R /Im298 307 0 R /Im299 308 0 R /Im282 291 0 R /Im287 296 0 R /Im300 309 0 R /Im301 310 0 R /Im306 315 0 R /Im277 286 0 R /Im299 308 0 R /Im307 316 0 R /Im308 317 0 R /Im277 286 0 R /Im286 295 0 R /Im275 284 0 R /Im272 281 0 R /Im305 314 0 R /Im275 284 0 R /Im270 279 0 R /Im277 286 0 R /Im268 277 0 R /Im270 279 0 R /Im301 310 0 R /Im300 309 0 R /Im300 309 0 R /Im301 310 0 R /Im272 281 0 R /Im298 307 0 R /Im309 318 0 R /Im275 284 0 R /Im270 279 0 R /Im268 277 0 R /Im298 307 0 R /Im269 278 0 R /Im298 307 0 R /Im296 305 0 R /Im270 279 0 R /Im274 283 0 R /Im277 286 0 R /Im299 308 0 R /Im277 286 0 R /Im272 281 0 R /Im277 286 0 R /Im309 318 0 R /Im270 279 0 R /Im268 277 0 R /Im286 295 0 R /Im277 286 0 R /Im277 286 0 R /Im285 294 0 R /Im270 279 0 R /Im277 286 0 R /Im269 278 0 R /Im299 308 0 R /Im268 277 0 R /Im298 307 0 R /Im269 278 0 R /Im301 310 0 R /Im300 309 0 R /Im284 293 0 R /Im275 284 0 R /Im285 294 0 R /Im307 316 0 R /Im275 284 0 R /Im272 281 0 R /Im273 282 0 R /Im274 283 0 R /Im275 284 0 R /Im287 296 0 R /Im300 309 0 R /Im301 310 0 R /Im268 277 0 R /Im269 278 0 R /Im268 277 0 R /Im270 279 0 R /Im268 277 0 R /Im275 284 0 R /Im272 281 0 R /Im268 277 0 R /Im310 319 0 R /Im277 286 0 R /Im284 293 0 R /Im275 284 0 R /Im285 294 0 R /Im268 277 0 R /Im284 293 0 R /Im305 314 0 R /Im284 293 0 R /Im301 310 0 R /Im300 309 0 R /Im296 305 0 R /Im298 307 0 R /Im304 313 0 R /Im278 287 0 R /Im268 277 0 R /Im307 316 0 R /Im311 320 0 R /Im287 296 0 R /Im268 277 0 R /Im312 321 0 R /Im273 282 0 R /Im298 307 0 R /Im299 308 0 R /Im81 88 0 R /Im284 293 0 R /Im298 307 0 R /Im286 295 0 R /Im277 286 0 R /Im269 278 0 R /Im305 314 0 R /Im284 293 0 R /Im287 296 0 R /Im268 277 0 R /Im313 322 0 R /Im313 322 0 R /Im282 291 0 R /Im283 292 0 R /Im300 309 0 R /Im301 310 0 R /Im296 305 0 R /Im298 307 0 R /Im304 313 0 R /Im275 284 0 R /Im272 281 0 R /Im272 281 0 R /Im284 293 0 R /Im298 307 0 R /Im286 295 0 R /Im277 286 0 R /Im299 308 0 R /Im81 88 0 R /Im81 88 0 R /Im81 88 0 R /Im301 310 0 R /Im300 309 0 R /Im314 323 0 R /Im298 307 0 R /Im286 295 0 R /Im277 286 0 R /Im278 287 0 R /Im297 306 0 R /Im273 282 0 R /Im298 307 0 R /Im299 308 0 R /Im280 289 0 R /Im273 282 0 R /Im298 307 0 R /Im299 308 0 R /Im81 88 0 R /Im284 293 0 R /Im298 307 0 R /Im286 295 0 R /Im277 286 0 R /Im315 324 0 R /Im268 277 0 R /Im316 325 0 R /Im280 289 0 R /Im297 306 0 R /Im295 304 0 R /Im277 286 0 R /Im272 281 0 R /Im270 279 0 R /Im275 284 0 R /Im282 291 0 R /Im287 296 0 R /Im300 309 0 R /Im301 310 0 R /Im284 293 0 R /Im275 284 0 R /Im317 326 0 R /Im277 286 0 R /Im284 293 0 R /Im298 307 0 R /Im286 295 0 R /Im277 286 0 R /Im275 284 0 R /Im269 278 0 R /Im295 304 0 R /Im299 308 0 R /Im275 284 0 R /Im286 295 0 R /Im277 286 0 R /Im301 310 0 R /Im300 309 0 R /Im300 309 0 R /Im301 310 0 R /Im309 318 0 R /Im274 283 0 R /Im275 284 0 R /Im269 278 0 R /Im279 288 0 R /Im277 286 0 R /Im299 308 0 R /Im268 277 0 R /Im269 278 0 R /Im295 304 0 R /Im277 286 0 R /Im272 281 0 R /Im270 279 0 R /Im275 284 0 R /Im301 310 0 R /Im300 309 0 R /Im286 295 0 R /Im275 284 0 R /Im272 281 0 R /Im307 316 0 R /Im302 311 0 R /Im271 280 0 R /Im272 281 0 R /Im273 282 0 R /Im274 283 0 R /Im275 284 0 R /Im276 285 0 R /Im277 286 0 R /Im270 279 0 R /Im275 284 0 R /Im278 287 0 R /Im274 283 0 R /Im277 286 0 R /Im268 277 0 R /Im279 288 0 R /Im274 283 0 R /Im270 279 0 R /Im302 311 0 R /Im318 327 0 R /Im280 289 0 R /Im302 311 0 R /Im281 290 0 R /Im277 286 0 R /Im270 279 0 R /Im275 284 0 R /Im280 289 0 R /Im302 311 0 R /Im284 293 0 R /Im275 284 0 R /Im285 294 0 R /Im282 291 0 R /Im287 296 0 R /Im300 309 0 R /Im301 310 0 R /Im269 278 0 R /Im277 286 0 R /Im279 288 0 R /Im275 284 0 R /Im284 293 0 R /Im275 284 0 R /Im285 294 0 R /Im301 310 0 R /Im300 309 0 R /Im319 328 0 R /Im269 278 0 R /Im295 304 0 R /Im298 307 0 R /Im278 287 0 R /Im297 306 0 R /Im273 282 0 R /Im298 307 0 R /Im299 308 0 R /Im280 289 0 R /Im297 306 0 R /Im295 304 0 R /Im277 286 0 R /Im272 281 0 R /Im270 279 0 R /Im275 284 0 R /Im282 291 0 R /Im287 296 0 R /Im300 309 0 R /Im301 310 0 R /Im304 313 0 R /Im277 286 0 R /Im299 308 0 R /Im270 279 0 R /Im298 307 0 R /Im304 313 0 R /Im277 286 0 R /Im298 307 0 R /Im272 281 0 R /Im295 304 0 R /Im273 282 0 R /Im298 307 0 R /Im299 308 0 R /Im301 310 0 R /Im300 309 0 R /Im268 277 0 R /Im296 305 0 R /Im278 287 0 R /Im286 295 0 R /Im275 284 0 R /Im272 281 0 R /Im308 317 0 R /Im284 293 0 R /Im275 284 0 R /Im285 294 0 R /Im282 291 0 R /Im283 292 0 R /Im268 277 0 R /Im296 305 0 R /Im278 287 0 R /Im286 295 0 R /Im275 284 0 R /Im272 281 0 R /Im308 317 0 R /Im307 316 0 R /Im281 290 0 R /Im277 286 0 R /Im270 279 0 R /Im275 284 0 R /Im282 291 0 R /Im304 313 0 R /Im277 286 0 R /Im270 279 0 R /Im305 314 0 R /Im304 313 0 R /Im269 278 0 R /Im286 295 0 R /Im275 284 0 R /Im272 281 0 R /Im287 296 0 R /Im300 309 0 R /Im301 310 0 R /Im309 318 0 R /Im305 314 0 R /Im270 279 0 R /Im298 307 0 R /Im296 305 0 R /Im296 305 0 R /Im301 310 0 R /Im300 309 0 R /Im284 293 0 R /Im275 284 0 R /Im285 294 0 R /Im307 316 0 R /Im286 295 0 R /Im275 284 0 R /Im272 281 0 R /Im287 296 0 R /Im300 309 0 R /Im301 310 0 R /Im269 278 0 R /Im277 286 0 R /Im320 329 0 R /Im284 293 0 R /Im275 284 0 R /Im285 294 0 R /Im268 277 0 R /Im284 293 0 R /Im305 314 0 R /Im284 293 0 R /Im301 310 0 R /Im300 309 0 R /Im321 330 0 R /Im321 330 0 R /Im304 313 0 R /Im277 286 0 R /Im270 279 0 R /Im305 314 0 R /Im304 313 0 R /Im269 278 0 R /Im284 293 0 R /Im275 284 0 R /Im285 294 0 R /Im287 296 0 R /Im321 330 0 R /Im241 250 0 R /Im31 38 0 R /Im102 109 0 R /Im38 45 0 R /Im39 46 0 R /Im35 42 0 R /Im125 132 0 R /Im171 178 0 R /Im157 164 0 R /Im45 52 0 R /Im35 42 0 R /Im102 109 0 R /Im34 41 0 R /Im48 55 0 R /Im34 41 0 R /Im108 115 0 R /Im31 38 0 R /Im48 55 0 R /Im99 106 0 R /Im36 43 0 R /Im35 42 0 R /Im48 55 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im112 119 0 R /Im113 120 0 R /Im34 41 0 R /Im36 43 0 R /Im102 109 0 R /Im40 47 0 R /Im39 46 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im48 55 0 R /Im170 177 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 244 0 R +>> +endobj +244 0 obj +<< +/Length 784 0 R +/Filter /FlateDecode +>> +stream +x¥]Ë%¹qÝ÷WÔÒZøNò- Y7ÍR{4²ÆÑ³ÿÞɼEòÄåÌMu£PdÁxFÿöå·ûâ>~þò·/óÃÇéczLüÜa>÷XbüXÒôØù㻾|óo?ù0üê/_~ûi¼{l¾üfÞ·ã·Øßη_÷Û#Mýçv|z¤füüë>¿¶ÃçÇ»iFã};~yÌk³ûý<pÝ +à +|lüÂÄ-!tg°Ï|QÑu<\·}q¥VSTL®ëÔ²a^KÛÃÏÝ÷¿9Xf¸A'G½È¬ìÀZVN4At< ÷å¶GpL°ÚÀ~ܤ$yç8IÒ¶à§LTIô1ÁF3ÇrØ1A¿2>¢3Ü:eªIOM +ýO Âþ×;lÑsx??lé·>âþs)B\캪~lhMh8Ð<o3\}Ç¿ÚçÝä¨ïûÇÑîÝ´ ñ÷©ßwõýøTxh|éé·<bïÑ÷wªô}Øïå¿lÀ¯p4¹I +*ã#7^Ý@Âriæ@ÝÁÌñP/Á2- Ò2èÏ ¡ÊC"ÀC +,Xz#¦`åг@9ÁMxx×¥/�<±®ßO»ñø ê`ú�=T"-øôP0xHDÈÎõpÓ¨ß]é;VÔ'oràÌ2� Jð{ R¿¿B ÂïóÔþ7M6¨A: iÀ0¡ñ½Ô @7¦ÔWU@ð÷Ìh¤Õ<¡+Ø{B'"ô8¢|ûÝú5§BTJ¬UÖ?£ý##ØáåI y9Ex?ó�`¶ððrÏJ@{aE:yÊnÐ4?NÈ +q|?ÂP¤ÿ¾&�ÑA�_t8¿ØÑ_càè¡ *×ÇC¢mPÄ +%c¼JFð8&Ä¿ SxF10Ö@qL{qAl0q TwÝÚÄ í ai¢Ý�,éf$ÈHDï8/B;Á¬¬3è÷òÍ[«ñà0"CÕxÞ V ïMæ®è뽪±ß¿Þí]ÇÒf´y �À94ö`0O½~Úq^¾?¿÷`T $ØpFÈ>ÄËBè5°Æ½NLÐ}U42ÁïÁ'Vç±ÀÙôÃàæ¬ ñÊø ¯® +°Ëܦû +ðÎ×\?A ¦]H?¡ï÷.¤ëî2ßø=ÞÖöû+}r^F5L_xÇqRaý+7Àùkn¼ +$Ľ Ò$U(sÆ'\8¬Bý(Ø`uâC^^Àt + XÈp¡¦«J¤ÄÁS¢ +d8¨ PÍ +"WRõA¢â=7 äN ¢ô' ¢ �Ð"*8?V¥$tÃOP ÎR±ÄjQÚÓ¿·*º¡ï»¥sÄT,aâ)5®<ä lH#V´z"ô @p<¼A%ÌAs$T0(" ¶A Y g( +@b¡À:Ý +Æâ +!OÝØpZYÿ¬Zÿ�ºê`ÔÅ ¤ Ùqd 0&]A;5ò4gz)¸Óá=÷¿ÂáÀÅü'6¬ÎkÀ }ÝO xõêùPzËçCiç/®¿Òrou.Ò9E|v!GßG¡tl¾sþ~ðG(]'&>ì>þ-¦¢1!ðeqã-e) ¥UMHþiUH¤[Ðx4ùL«è!5AM:z<@Hzâö¯f%¹{èÝÌ æx¤C qØ]SvÂμ*3$/)aË""¡IH8j*6C5| QÜÌ¡Ðà,¤Dø¤¿ -Ì'xèðq_¡àePتK±¡P -TBüÌØ5T¢8îÇZ¿! +aPñV,DÎÔî$B +Åú<¾¿8ª9Àþ%«¢ï#OÀ9BLU»Ïyr:�ðT-±r�]C2O�Û +NÐyZ Åie=9 ÁE8t½'Ô×8 NÀM<¿çËÆ¤À�'A)æáàx>3ûtHC5ª�0è ±&-P ÒÉt<~¢aípÜÐøþ�µÄ 4Ì æ�py8á¨Ðs«XO`A£æ]^9ÀÂ?õpæü%¼ú2|!;TpóyP2¯ÔF´ysÅ}^3 +óÔãAv|ïEµ8×ѯ O }6B.pG "b +D*.÷XÈ" h@UêÝ Ð¾Ñ÷ù"7#4h U@¯T@ ê�äkCÄ`±£T[&Oj%½Éy B=&¬Rh'BÊì ¢.v|D¶{"ì#§ÔL+yÊ÷ghGøì¢ç´'HÚ +sUø" VNééQ«,¸Aá<¾ÉxPçÝ#XÞܨÉA¥Êgxj¡\Ú h; +,}Õ(h(Z¨×bzv´BÀÅ|ÓÓo ÈCrØáÍ"!Þ Ä9£*$7¯÷ü�AF~zZ�·Ö{Z8`oV¢qB"h 'ÎêÙUXð©�g<!5¹Ê0PbêÈBtÁ¿ëXPEÄ"2C�Ó¥G0G WËá#àSô°+Á§èPð"¾Pá�a Õz(¦æSTÒ H«)»¬©ùIóÎW@§!q«áüq«ñü½N¹¨ó×:Ò±®uÔ`¶À#ò©hõþùZ/¿ ðý\@ëço¶]@´ÔºÁóçÑêñ<S*eZþ%ÔLPÄ ×2¼æ©pp0fxI~d�¢ßAÁã Ú¿?ÈS8h 'Èo�jFïC Â7|Èm£êÕvÜ¿ã¶$Ç8Ô®;þJµÝHÕõzÝ1+É12XñÉ1}ÅQ~m%0»µÒz²À}Uôæ£qkÄ ÆFÄÏÈzDB ÏZ/jaXÊõ¶½sµ�PB°»Zï sãT8ªCGã ÕnÐ1T»¤E,ÕnsdÕÕ jKç§±Ó:?A;FÇ!aF¤ K ¡á´@Wo} C¹àæoò°A%r3ÜuÎMr»\y<çH©¼Gô³DòBÚôÅu8 +ºb< ð"# hgÅTLÐðÙEPÕr }' i ðÍÛV´b?ÎÖpıÅDèXýÐúMÅ~«XÖl�/AÉ!F÷JÞSxÐ û<W]àÍmØëñæ6ìÍðn÷jznIãùHÜ!êñ-'�¡õö7uãb½#9°==Éi`Ú +6`Èl §Å×D�Kx1@ +ªPvÈJ±])ôiÆó½Çf4#su$¿</Px0iE"ÀÇ¡n]¸ èÕ~|ÁïD�õÞRñ i@¼À׺yÄÁû4/NèE~¢QÐ| &!%F³ Ü ¨pXFÎä¬Áx=9êºJÂK~eC@Z ù ^�Czx;!/Õl{èð7ª^nT:@o]Ź1zj§D{'ðZõtkXøZ-¨DH¿Êe!Ä1qæ5(i>ÝcDoû°�zH+P\ q°^ëÆ5»pÃà³7äG �]'H�>vþ'a(ax$zÖÒ $n*(R»¸^ +ÆQCGTÇ Å3 +e,` ô` T"0ºÈ¼ïb>!=1+Þ<ÁÇU,êÞÆQC?HO¬B~±,`ÐnM¯XAI¬¨ó×$çæ&oôú¢ßönzÑ/Ë×°(´�C^Äõx>¯ÊÁïó=´Kv3ÞP¦Ö<FæäÏ0²9@ù]D0tþJð�øÎ]b?ÌÜÙ5°Ù OP!àê=_ãâÖQQ©q6âó= +ȳ´# +èâ¡#ͨHG*÷¼ÀÁ#%¨â*A¾Ì+<¬÷<lhü´ÍKÐ L°¡÷àÁ+¢C9ºõk7¹Ìia ÃJn^i22c£ÆKCVYpC òc¥ùHH?g4¤´°!æCq @²ò"ÞÕÄ.(ÃG «0r¾ã¼hg?Â@Pù×@ôÃÑVæê¼u( %'RÕ +!(¶EÚ%yèFðyUXé è!ðm ·´]`*B3j�£§Ô´Æ¢t0±¦©H»âÊþa,ÍSq÷ÄoSg^ÏÅ`êR.zÒiZ(OzXãv58kÜ.SÅ7¥¶füq¦b²Cí^ã;²¯®YÿüXrߣxbû÷÷³<Ç/ìúåüÇëÇyMnòç^ðyMNðôj¼!±É¯&0¼ &WjõxúJÈ8î>è"\?ß:¢4ä÷ fõ§YÉZ=Gfô}x#²Npå5»h2xæÖPÅäVÄÄô,I®©ÇÓÑ +ïÖã ¹)R)6:Yo ¡wh|ï¹³óÑ�z¥âA>ôX ðëp<}¥ûXSJ@Ý�bs�àläY5@eAÈ_ûr°¡4" Ï@°4BW¬ÞßyB<È'éÆJLÍ:¯±Ð�tñ¥Ðë¦á<]Ý@"7 ¦·$¸º]Z7ÍH 1¨,Ù)k¤xX¯Ô¾ßû +rgç¡5W*N¤+¥C2hCf(ü!Åc¼:³[®Ú¡-9ºP6;Ïä }±ËÇ#WVï ¿Ï7ÍY+lØÿÊí_ÅÔ6Ì�tnÂ"H_¥»¾x"}ñarÊP1¤#XvÞ":Ø âKá´�jõpÚ@¬ýh,>Ré[¼7¿qW«T&¸{ZøÎ:«j<É£h#êëuZ+ ªÓÒE[Ñ÷é2S'mç®Ò/ ú¹À''E¸�úYгLê*$9sH�Øõx>¹(¡ï#ë©!ª¬Åõp+:?ØöO!à +G37È�$oÀ¡° A¨y �ØìËhõxà«UFPð"èÔatìI¢4*XT°°nïb>## +£`6R¦&Úù2§ò2ðHéXÖM%°A3fPÛ=-vBQ 5¹azÔD² £xN ©ã±Â¿h u G¨C"-®9Àíaö(xËÃvm¾|ÒÂ�j[½r{Çj5O츩ÌM°Ñ@pó´PTÊqÐÛæi(z®`ELè@¡Á®(ô÷bǹ]¸õ8ÿº\NÀëiðÜÔ>BãÜh×ãº>D1î)"j¬¶µcåÔÝг|F>¥ +É`o#°ô@èçTëIBHô JÀ$ ã³|#ü<AãЫÃr�Ð;äÓii>¥w³>Uo#]õ`\ÑV2$M¤B ø³}ÏUD^G»êÈëhvh£FÅr7Æ7¨F¹ØÈd|C~Ö*þP5ÜàÑ®èó<¦)jóyújSoðyxb ÄS³+$¤Çó½c·|5ÃÇOÜé©ð�|É[ ¯¶OTktþ*IaÍW}<f´�CÑßY/ú´Ïý-ðû<¬´" 6�»«×Ä¿·AýG_KùICÖP¥Hj! 4¤×HÁ×~z~\?]*á%IѼþ(ÄD?½uÒ |S/Õ÷ùR ?'Jþõr-´~C~ÚÂÉè@nBt à +°¡ñ +`þf,ûgv!Êß§ ¬7¯¢ ¨gGÑ'زÐ.ºOL¨TüíÞÌÎ 7¨Énì@Í÷d($¤xʽÒ˽ ¡ÛÐE7ôÄjú¨G>~á8 þ*´A´«Å('P-Â~8mÄ£FÍ£ïSJX ¸�Rµ= !fx£=rF@PÛs ãÈ6ÕxT«ÒëÓ/Ët`ûøåe>»lAn åMµ1>;jãü86Gu¤gWa²«®"ã @ÊI&¬DèÞgèÚ¥°âH¦Üã +Rz¼¡4ú<¹\`Èvõ4õ4ú¼ÆOèû0¾T+6ã ½{<ú>Æ;ø}¾uq"ñ<ÈóS{ç82í¾È»8PÏàõJèñ*Ív2;Ñ-ø6Ì3 i´HúÇ +@fÀA| ë6Ä�:¡;�5"l@bAIñ ½sÏtÏ4ÒA*KX7tÊXP¶ 5л´ +öXÝEOÐ7T,l@ì_Ư«û_á÷ù.Ô+�Cê-ç÷Q¡ mÀRç5AæÓ¤ ^ãÉ èùIù:¯Ðx¾Î+"%d¨óJXñXTBJÈPç͸¡ÎkÀqþqâ°ÌE~"á6+pj¹Ï©ÇoüúIG^C¡7@9÷}Íå´"Î)饯fh/¢¡ñÖK´W6§[$er#ÒÇC Æ@B¬wU #!`i½´Ü ¥óÕX8®÷baé}5Û½X8ÂH�qðû2¹«JñUNIáE 1»;øî:Bm½á&ЮÀ}O©ÙàâiTêäF×ü7¡ïÿC/ùF)Aíø`h¶pBICÐJå"Øç"Ú�º{ßõ¨Y?]e"]ÔÀCaÜ�_*¸ÀïÓÔ-8@Ãr+É* uSe#9EH Xk!CÝÌQ@Ųb&jO¡ñ,jËdÈÒ¢"R0.¢0¤E¥«ë(J¿ôB.u£ÌºÉ�ïDJ^ÒX h]¤¡A;Kß§H¿ÁïóY9o±@I¦÷Lâ�µo<ÒÊ HMdhB í¸áE1hù¹ ai»à ºX#Äû¢ÒsihÆÔ<zp*¶@#@àÑeÝt¦ô$}¼WäÉð¸T¹8@Ol +Wórù¼ÈÇSøÑ»Z#mèIñÏèÅèìλ÷%vv_Tà,.Q £ÐÀTëãÍY¶Æsxr^¿ñ<Í'+ºk}QÕ +Ò÷¬ofÊ£NÍøÔ>W +Щ}ÒŸO'¸»0QP£É�¿ß1 Ú8%bò'µ53En sð[a$sO# +ôfXÏÌ'ÀCJÇ6à!¥ -Àò&\êÔ; Jã| º2lÀÔÎpzpjï6�»7jñ4:BþE/éU!ROpæNPg9êá,gôÔ(Ã&ÂAÕ"ÎoËáè3k@7lÈu2j½Øä7exô]/vÕÑÎ @!2èÁ3¢¼j BDz¤?D=¹�"¾xTiD=;ÁßÃü°Ñg$lP ð,$WÒßRÈÇcü>µë8úé 2+åLjjüç.âàx¾nD"lè! �ÑW+1qΰºlùWv_ÒâjÊJ;³Z +@sÊØÂHã( Þîc_% E(ÁyBØKvÉV½5Ã}©¬ë³n®tJqÿæaÝ-¡ï§nÿú³BGפ×Gx(¨oÂ8�ê0e]ðÎAÅbGE($û>ÍD+áW3Y° *W;¹Ò+h¥Hbê¹LP¯ ÅÔ¨^R¥« å^Núj¾ñ+ݤÛð m¥Þ¡^�ßÐV¢ê± (o-oYÛó]¦¡ÆE¾<Ò8ä¢Çßc»FJ¯ ;²Öû¬�t¿Z:Q¬_ä ^eùTذ."e`ë"â"C÷Á¦êñ4å°øÖúZ®_ù~éþÒç»§¬~¼1æÍ÷ù;Æ ¡!àúédÕà ¡+VÎzZ�pWiýà?¸ÓAëå°áLêÌj\br¨B&CLNÀR1úHH1 Þ¼B>ÝíÄêïÓénA±äüãLþváXP¿$2Ì7 :ÈÐÒwCä/hNLá¢X:D0Ì�|Åç°ºÏm`xG<@ @î8sÁ$ <@CÅg Æ@�´` 7ϸÄ-ÀÒǶtϸDèÆP (Ãt»³daàÇè-s:L5òCy?RÞJùýúP"LÛ§ô¤}¿²|±�ÕpÞ/íáDº¤Dðy=sÛWSRªÇóI¶p=¿àöGn¥hup~jó Qàõ÷;î½ÍÓï¾?Wþ÷§ñ¥i=ÞÏÀi;Ëå^&TúkáAµùè=S¯ïcív`ècÛ>FìEÍ<gEhÈùG0dK¢Ò`¼¦EüÀ EÎ$ªÝ° +Ïþõx>I# )2$i¤-Y*ñô¿ÝõUXsûJõ÷yØÔÆßÓã^"Á×{¡"=náRVH� â'ÃÄ_Ec #bhÄòÄÏÛH¾ñ@ªxß§ïgÃM$Yò*Z))÷ôEÕHpü $È<"*å÷ùjà "ª§¸¬,+G¸ %hIòÊ©¡7¬-@3ÂcÚP ñp 8@»×Ê96O_´>A>åÿ²+`ÀAh*ý<@:ÍEw¡3Éæb8´Btÿ³ÇEO8b@{ÂqF*ÈMD²káòN`Í|/ÂUá¥íÆó´ÙXH*ÆB<m(à{ù%1¿t= +æt< Ô ÀXÈ`sóûä�©æçÊÖÉîª(~ºÍdç©Ý@¾kßÊÕ~õ}çi%.¹ rä&ÔûG.xÿÎ�"éÊk¯yo!I5=#8*(V@(&\5·'(UïDHµfÈÂPK<1_ÉPjé)B ¡§í(@¹2ÁÆM ?nз ©`Jõx:½ÁWßGãÕn¦dHoc¾ojc1£ ðZà@ǤVn:&7À¿xµ!òÜz3C'ò°¡òÓÃz# +dÊÐå6)þÅâªÇó/KzA=NOÈÒúìÚ¿"%/=ð +è19µp*øUmÇÒ¹*AzN" -ÀðftÈ?O#ý°.z2gQ=XAS[ +ãQݰB¦û-UG:XGd Þ÷A0TÍL|GL¬¨ÁeKWÍh_±1Ô=qJT%@D`Gc2È'%ÎôäQ÷h">!PÅs]õ½ð̨¡î%î~ÄQ®× +_"TÊ\útxÃÛ¥ÊüR3Eò%IsÌüÜÕÊË4L×*_§Øã=îaýèãó6x5w·Ìæ¼�HÙçf ¨ä>®À¾Èµ(¤j' �ê£ð#Wÿ<iqÊOOe³GD\ºr +h' ",øª¬`Ù BRø Ü_à²Ò`HCÕÂ4ÇãÅ¥L0½Äy!BCütSòã»·É;Z0'æÆ'j|³N(>Ps¶8"öÒx¼ {Ö,¯U¾ÇÉTÄ ¥r +<סµ½Ï'ÛÓ#½¶°îE!â¼ÝäÄ%ÝäÄ;rY}©$TVëù!Ý[j=·¬¼¥ÖsúÇ-µ\âh 1RÎÿ¸ÅH9Z¿ÅH!@aâ)ÄþA.+@~"Via&Uº RtYÂBÊ|Cvß¶Hé-¶±ÜÁÇÝÑø<¸ÂTÍpÜ åþy×ÍP©w4KÈÖLк 4s[ФÑÍáÆ\åúNU,Ñ`åýÄrÞÒ@Ëå*½]²FÒ@±mW@\$ÊGÕ°»Ôvâ*t~VæögDð^¼ubÒú ðA3%LGÐÐ\-µ@`dN@¨´WÐ ¶@\fÉ+\!tE4A¹ª»vDfÄLÅ´Å¡iSbçmP§ðÔ +Ci'0èÑ�ùH4ÆCãô^¦Í ìÂ;i|Ò `÷ÊJäܹî¼\Õ¤ +kW� m æ£ N3AÏHCà µ²²A0.1ç1DÔ¥1Á4(8Òvôbο8z8ãc|г<Æ>ÕO\§bÚÙÅãZ x�ÂGu�bâÄY ð¿ +@8R-ÐíT§úG¼PËB/èlÜèø±'¾&qÏü +< Òc¯ hX8_"F"2$j[îéDéîxY'JêúP'öLGø_Ws +÷«JèÛ½k*-NÓ=ß¼¥Òò)¦é¼÷Ëæý¹-xæ7,/® Ð DZà}# Pð )çÀ÷§Pri¾*ÎB3PÚ¥×Ò+3³ôç-Ðé¼gª&°\HÈÓLÀãrÏÔl¸&j¼´ F½ Þ <}ا_Mh?8¬æxü@¬f`\±§¯²KêyMÔöT31lë5µîK:y»ÞS Pzµ®z(»à}GÄÞCQãÆx yùQ3pqª\qq&÷^'ª7ñ@0êc}ë±uR¥)[ÉcìéP*Câ.TëöÚ¡Tü:)/ÌD\À + Ö£êæmP¥ñ)¼¥²Ei$Õ?p3,êÜÂnaàdl£vÙÉ¢QõÒBñÒÓÆûrA1ÞÂÀGé¡d×H¯k¢<A.ú½¤Òr:Ñ1A¼µe,MV`$ÅÍ;,S3²Lïݼz0.L0£ð²Ý¼§Zo&àoºv7/³r3pdd"¢î'£Ya^ny +XÚ¶±³ Ûw +: P[¡,ÐÖY¬Ä«£2AººF³²¸°+P&Hg=h½'û`NÕ+ÒO° w0T,óM"®äï²Ðhè7òT7oìLVi¯ì 0ñHVðîZÏí`n©u)þ¹N®ú%èç¡èy(E+Ç*åÚQîÞ 9ÅOlW@ÈÂ3Fîrý.fÒ/ënª¶cl&àS®Å?ñbÊõÐ1R®ÅÁÑ@Ãrºñ?Èçü ¯à~vùVT XÓÀXróÚ x6OÜ +F¹yí1ògi %÷ݦ|MD º ucaá°!|OÜm\¸¬¸¬¥$n¨õ[ÂoyH¼¿åi¡8ÚP©ö+!C4B0¨åâ8Ò3ñÙö5潦¨&�w,z6ÐQÇòt¶®Ô±H÷ÛfR-F¹&Ê/DAÙ�hà:>Pë:Æ5¸I]¥¸ð \9ç©[ø\¡íâáî¡xéÅ,'*áI¥i' +4ý>ÐuDì3ïÕ*0ø>QHG5î,4í +øÐYàzÞ²IÚl¢2ÁÁîË#ÃSPoÊå0føà¢0ÖÅDY?ÙÇËÒ¶r¨¹£ï2_!µ@íDE.T\ j0mô£Z^¶ÙY¿e[¥fh[Îz#Îvg½H{åtQ¨NÚD³ Rå¯ËJ5;ëRUýLO·lq·LeSÇïéÞø ?t´Ç²<p´GÚdT¶\ýt4ÍÒ¯ÀÀNÕLÀ³¡$½7ôl¨zê¹FÙµóôÞÒO9-¿WÌ£Q§ ÞønO9?q´ìîÚ*Ê£=-÷hàK?Ë48/êÆ4Pm_ÔQ5ÅÑ.6¡ÞÑ.ï^F©Ú¿,çEßHûþ²N~ÒhpUûÝ!�/U]ÁüRW�úC*Õ»* +åºu §Àè�ó]=uêGeÿítEZa²TkWÚ øjíÜ¢ÏwfOM²ÿìW5'öÖ}+äfµïS¸rI= ¹SPûH´Ò8(ô¥wV(VVi°,÷´²\ÖÊR@rY+çÜFZn#ô/Ð1nLg7c¦¤uWi.³²Lpó3°Q+7ñÆHã »FjTÚÎP÷TÚ4¶ð¾H^Á 1Pé'38´ÀÒOFàfZNTOÀSiÞZcɽuÞÖFêÙÖ ¢%ã|KhC=Øt4¨jiÀßÓF²±h$w²Nd'bYApÚÉ:5R3ídE¹%±òP#Åy F +EÏã9Íìò¾ÕÊ:q Í4Bvâå¢o)+0_ô¦Òfg^ki]ÖnO/-04Ыöì·Á=ç;ù2¿¦Ö¥Á-,^×µðÁ·Û éÒÆ\VÀ· ¤,¨Euá¸5ϰ8j<Æ1$¢@H JgòÌÊ×:»F +Tå!h +EÞ¼*þ¥A0ü3ø®W°GÒ4³®ÏàÛoî=£n¡Ü5^ÖÒ¸°5,¼§:ÝçànsNU¦ÄYï|¸Ü; ìî§ !øxo=n ÞA ÈÁà¨Ù²p ñ)ð@TÁê¢6É,ôÛà¢kä·JXä²r(LVÌBB+k©+ËHï3/³ò³·ÖVÚÈ!+Üý!Üý!'ªç±qY+ÃB'òdw¿ÀÒ;¡äý7 ¸Q¹ì+-óÚ :Û8ºðÌܺðlW`¾ð|ú w.<4]x¶/<sZÕµ[Rx¯xd¤÷Í[ØNÀ÷¢%àÂÄßòäxÁûN, (Vȼq¯S¸&9 m¤T|¬ÑÐSGt]`¤¢II£êê®P#1ËÑ$V}ïñôÆDT2ÂÊdtâë ç$:ÔHj£2qq®Ú ècT<rÇBpâÀÅKãÀÅé5i>Ê~@ãzÒ¢ë M<çp8s²:¯ÒF°([J ,µ%øÍØúQy ~W®o;Úèϧ¡Ñ@@�Éf¼quGÿÉøtëOl&àÞnñ> ^Nx×úIz,,ñ 4xÏæ]·x°,þÔÍYp>ÛK×U8>ùQw'|Ãq²r +ÖZ麡mKD;]ÝtñùÓÕMW[l×öÇ8tuÓðù ìâäãëW`pqr{D,¹yßWÑ´[ {/æ'y(¨+XâD?xåæÝÒ'²}UddÒ* éºÀç;Îb& 8*V¶ÄLpì,})äô> q¤ì+¨õZ[9Yõ£mMmc*kÎtLØ ÎöøÎöt8°Ü;õv¢ya`¼ëÙÿ$b³¾ÜþïÇyIiæÚ®ÀÜÌuH½kÑa¹ª(ÎTPpÅY^+¸§Â nToºÖq"ErÞò�ñ®fÏùcÖ[«Â$Y¢ é¼å Ó¨D{ +æþ Þ÷hNÁÞ?b¸¡V±òP+ Iy(t >¤ùÀE²ePðçF`?Q&x^\ñ¥ f=¥Oy1®íÓv0R»¾Oy¹éÒ`Ô)½Ù_u/Î ìOµµD4?ÕÖ®ÀÐ ê¨&zÚÈ÷éý£n ïYy~ÄNÝüJpÌM>m!ÒïÔ»Ò{± §¡ÂÛqe|útõîPÈÒáS|ÁÍV,e|y"¬OÜNÈxH�`TÚl¨Bõxü¢ï<`¢¶2±,`h>?sén;'ÎÁi&HÀ7ÀGß÷êI 'µ÷EBrm&ÉCíeQ td{¼x°æ^ý~\¨ï÷ª°/Ï!7'ØcpûMÐK±Jy& Ðn ¤E.¯|Ý qO <YxõhýD°ZÖ¿¢õ÷¨îsÔþµï�,9ÅÀп8D?ǼsPàfÕxrOßßC¥@yltê÷#O_eqèò'� 9de3Aâz·P`æiïÊñR¢®oÖOà¦e' \ßH=ÄMÅSc!Ì S·¡ôq¡æLåq¦4)}¿b£GRd`âÕ@ÏÄ!X ¸2Ûq±~~ Â}ëþåÛ/ßüÚ}¸oÿ¸{tyøG\þóíO9ØðÛG®Ùÿæÿôïùøñï¾ÿó?¾ÿåÇo~õë¿þý/øßï¾ÿÃÇþßÇo~÷õüøý?}÷û_|üúññ»¾ÿ¯ïÿþõã?þôõë_ùÍ7?ÿüóãë~øÇãÏßýæ÷nÿø÷ÿøóÿ|ó×äq?}ýéÇ_||ûß_þõÛ}uÿ +øB +endstream +endobj +245 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 785 0 R +/Name /Im236 +/Width 26 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-Ê» 0 áß²wÐ¦Ä +)"±DøvGaJÈ7Gâ+Î0JùäIc¦òÆbÑy0]6ù(ÓYWMü w(ºÍ£ê¼eÅÙñäx¶d d²6É"5¸ý62É +endstream +endobj +246 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 786 0 R +/Name /Im237 +/Width 38 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿÿÿÿc`þÁPß�$ä� ö0ùø«Cè4l<È" êÄÿÿ �ôªG¤ +endstream +endobj +247 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 787 0 R +/Name /Im238 +/Width 32 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûá?óþcà?þ¿ÿûþÌø0þ�ÿâ:(®'ë0D/È @ódøð±ÿoàaüÃ��þ7A +endstream +endobj +248 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 788 0 R +/Name /Im239 +/Width 30 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþßÀÀÿÿ<ãû?@\ÅöòöèØþ?ã?{þ@y ¬âÌÀñ<õóyìåÈÿãÿÀüý��< +endstream +endobj +249 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 789 0 R +/Name /Im240 +/Width 45 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=Ä» 0Fa#$Ü\p.+¤¼¬ÂPFó(!¥üï´Ó"vEE|Ë µ%X^ÛÊ¥R¡õu ÆzûÁ�iÜiýmiKpq§yÝÉÕX¢F},ù2z¼�¾r1¢ +endstream +endobj +250 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 790 0 R +/Name /Im241 +/Width 27 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿþöì @Ì�ÂP�Ä +¬�Â�ÄØÿ?Ð`¾f ù00üÿÇÀ��5r +endstream +endobj +251 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 791 0 R +/Name /Im242 +/Width 22 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«³cø÷¿¡þÿþø +ø,ø@H¥ø*ø>ð|Àÿÿ�ßÿ>;>ì¨þ�Ãÿ �Âî{ +endstream +endobj +252 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 792 0 R +/Name /Im243 +/Width 19 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÀÀþAþ? {CóÆ ¡â@Y J z .Æ�Kn +endstream +endobj +253 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 793 0 R +/Name /Im244 +/Width 18 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÝ ÿ¿¡þC{Ãf(ª``¨?À ÿý}{Cã`ôùÀöÿÿÞÿcxü�rà +endstream +endobj +254 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 794 0 R +/Name /Im245 +/Width 23 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`c`øÃÀ CH¨� =`¨xÀxä3Ó6Æ|dØ0°`n¨¡ì0ÄñO �äÔ$)ð3��&GQ +endstream +endobj +255 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 795 0 R +/Name /Im246 +/Width 8 +/Height 17 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcãçç±±°0((HxpÀ�> +endstream +endobj +256 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 796 0 R +/Name /Im247 +/Width 29 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`````¨```|ÀÀÀÞÀÀ á2¹ü@® ûÈ=�ä2À¹`bÄ@r^`³@f2Â$�(U +endstream +endobj +257 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 797 0 R +/Name /Im248 +/Width 20 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcx ÌøÀ¹ñsÃæævv>ap�£bd�!&6 æ�/Ñ +endstream +endobj +258 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 798 0 R +/Name /Im249 +/Width 13 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc°`¨`øÀøù�{?Z�a>À!2 5 µ|üì Ì0ü�d�A¥ +endstream +endobj +259 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 799 0 R +/Name /Im250 +/Width 22 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÿÀ`ÿ¡þC?;sÕ7°ÿoÿß`ßÜPÁÜPÀÜð� +Ø*øìÿÿÿûýÃ�µ`K +endstream +endobj +260 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 800 0 R +/Name /Im251 +/Width 19 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÀðÿCý*¡úÿþÿ�$o? ø +endstream +endobj +261 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 801 0 R +/Name /Im252 +/Width 23 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«c`øÇÀPÇÀÀìøþ7ðÿ?Àð�Ã~|D úÃþ?ÿ$§dl +endstream +endobj +262 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 802 0 R +/Name /Im253 +/Width 8 +/Height 13 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x°««·gçãùó#�;E +endstream +endobj +263 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 803 0 R +/Name /Im254 +/Width 22 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«c`øÇÀPÇÀÀìøþ7ðÿÀðC?É`" ?CÃþøÿ�êb³c��±$ +endstream +endobj +264 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 804 0 R +/Name /Im255 +/Width 20 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÁÀþÿûÆ +<`(�¢ÿÿ?@Ð0ª`(°a(güÀÿÿóÿ�øT +endstream +endobj +265 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 805 0 R +/Name /Im256 +/Width 20 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcl``Æ@õÿü#L)TT�G0þÀð¿Á�äØ +endstream +endobj +266 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 806 0 R +/Name /Im257 +/Width 13 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xK`øÀPÁ`à ÇÀÏÀÞÀÜÀxñ�à ,�C,"TRËÜÀÞÀÔm4åC�ÌxË +endstream +endobj +267 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 807 0 R +/Name /Im258 +/Width 31 +/Height 12 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿ¿ÿ@Ì@�üª�[í +endstream +endobj +268 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 808 0 R +/Name /Im259 +/Width 21 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨H`<òéã>Æ2lX07TÀÐvâøÀ'P�Drj +Çø��{õã +endstream +endobj +269 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 809 0 R +/Name /Im260 +/Width 31 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`l`` �ÿÿÿÿSb�jØ +endstream +endobj +270 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 810 0 R +/Name /Im261 +/Width 18 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc>À`ßÀÀCìÄd¨A¶AÁ¹Á�QzÀÞ�Eüød@ÈÀAâ�J +endstream +endobj +271 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 811 0 R +/Name /Im262 +/Width 17 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨c`nd`ghàchah°`h¨`d(`cøÿá=@A @TÀÌ`À aÁÀ�úñ8 +endstream +endobj +272 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 812 0 R +/Name /Im263 +/Width 24 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÏPÿñs%ÀÐ0ú6\ +¢R¬¨hÐ( òÿÄO +endstream +endobj +273 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 813 0 R +/Name /Im264 +/Width 33 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ {`o�3x8�SÖÖ2d{C°�2 Bn<?6¢�É d<f>Èðÿã# ¨a��H+)/ +endstream +endobj +274 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 814 0 R +/Name /Im265 +/Width 25 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨ÿßÀøÿ3³7`àc<À ÃðÁð 37�1C;ó10H00H00°``�� nÉ +endstream +endobj +275 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 815 0 R +/Name /Im266 +/Width 32 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÀÀ(ÿÑþc <s{óÆl~È50Ôÿi`ÿÑÀÀþ +ØT�\xq +endstream +endobj +276 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 816 0 R +/Name /Im267 +/Width 11 +/Height 8 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcaàcgf0lH8p ¡A�ÞÞ +endstream +endobj +277 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 817 0 R +/Name /Im268 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcl`>À|±êü?Pü�ïN +endstream +endobj +278 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 818 0 R +/Name /Im269 +/Width 23 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«³gøWßP÷ÿ�ÿÁüª?þçÿó@�ØK +endstream +endobj +279 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 819 0 R +/Name /Im270 +/Width 19 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcl``FBõÿü#fTqTäÀÜð�`üßÀð¡�DN +endstream +endobj +280 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 820 0 R +/Name /Im271 +/Width 21 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc(``øF7@ñõ00÷!;; +âÿß�A|Ì 2 ¨ýÃö@�<<{ +endstream +endobj +281 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 821 0 R +/Name /Im272 +/Width 17 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûá?1Rþÿo �yN +endstream +endobj +282 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 822 0 R +/Name /Im273 +/Width 21 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«gøWßP÷ÿ�ÿÁüø +ø*ø,0PP¿áPßÿ|õ |r|XPýÿ@$�[ù! +endstream +endobj +283 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 823 0 R +/Name /Im274 +/Width 23 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«c`øÇÀPÇÀÀìøêøþà?xáñBõÇÿüþH�$x +endstream +endobj +284 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 824 0 R +/Name /Im275 +/Width 21 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãÿÀ ÿÁþ ?;s1þoàÿß`ßÜPÁÜð� Uð7Øÿÿ!ÿóÿ�@æV +endstream +endobj +285 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 825 0 R +/Name /Im276 +/Width 20 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMA À0Ä®ê£$" â$ÐJ @µ«òÚ$¿lÇPÚ¤ êcTEWºàb?¶áù±[Î +QÊxqbÐ Ò +endstream +endobj +286 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 826 0 R +/Name /Im277 +/Width 18 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÀÀþAþ?{C3=`<�DÿÿCÑ b<`ÁxÀýüÿöÿ?�ò` +endstream +endobj +287 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 827 0 R +/Name /Im278 +/Width 12 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc(`øÀx¹A-°�`Z>væÆ +�# +endstream +endobj +288 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 828 0 R +/Name /Im279 +/Width 21 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc|øý÷þÿ?äädø,ØQPDNAþüÉ $ÿÿÿûÿ*?0<`°# ×ùüÿüÿÿ0��ç +endstream +endobj +289 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 829 0 R +/Name /Im280 +/Width 7 +/Height 11 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³¨©«³ã©ø��]ÿ +endstream +endobj +290 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 830 0 R +/Name /Im281 +/Width 21 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«c`øÇÀPÇÀÀäøêøþà?øá?CC*�Jñ7|�**jac��~/Ê +endstream +endobj +291 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 831 0 R +/Name /Im282 +/Width 11 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x;Àð¡ÁA PBd@j@jùº,º0`��á�S +endstream +endobj +292 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 832 0 R +/Name /Im283 +/Width 19 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`À`ÿ¡þÃãúÿ d�¹µ[Áþ��7!i +endstream +endobj +293 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 833 0 R +/Name /Im284 +/Width 23 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûùðÁïÏþÿ`ggaccAøgg÷¯®H�`± +endstream +endobj +294 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 834 0 R +/Name /Im285 +/Width 21 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ïÿP?ÿC}ÿ~vö>æyw00�QÃ(gîc`ggàco�*þßÿH�α +endstream +endobj +295 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 835 0 R +/Name /Im286 +/Width 21 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ïÿð¿ÿG}ÿÆ|Ì ÄÎÎ�EýÌ}PÄx~Q�O} +endstream +endobj +296 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 836 0 R +/Name /Im287 +/Width 6 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³¨©©±`�CÖÉ +endstream +endobj +297 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 837 0 R +/Name /Im288 +/Width 20 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿÿÿÿÈ0a| Ã�D¨èHùü jÿÇ Ãýo"� + +endstream +endobj +298 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 838 0 R +/Name /Im289 +/Width 19 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãÿÇ`ÿ¿¡þÿ +æ>0>xÀ@jj¬a?�4hÿ?�¹a. +endstream +endobj +299 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 839 0 R +/Name /Im290 +/Width 19 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5ɱ ÑïBAÉÂ*@iaÁhâ"7¥ rÒ¼îå¡òªÎ¢äöTØyB@é$aõ¾ã¾Ó{1¹n>½ß#{ +endstream +endobj +300 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 840 0 R +/Name /Im291 +/Width 20 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÁðÿCýþæ Äø@>È0à@ jÁºøúÁ��w¬ +endstream +endobj +301 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 841 0 R +/Name /Im292 +/Width 21 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃ0a(@B ÄEòÿ .UÀ`þÿÿA�qeD +endstream +endobj +302 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 842 0 R +/Name /Im293 +/Width 19 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûá?É0dÀÑÿÿP�rÊ� +endstream +endobj +303 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 843 0 R +/Name /Im294 +/Width 21 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿã?=(°#2ó?öÿ �xIk +endstream +endobj +304 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 844 0 R +/Name /Im295 +/Width 21 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xco`°o`�Ì(ùqÿçùß 6ò ì Ì ô�ÄÙ*øAÊäàÿüýð�CÅ« +endstream +endobj +305 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 845 0 R +/Name /Im296 +/Width 19 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcào`°?ÀPÿáãÆ0@PýÿÿÁ.BÕÿ"�qüE +endstream +endobj +306 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 846 0 R +/Name /Im297 +/Width 21 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc<ÀÀþÿ_*þ!óùÌãüðnàonàgngg°og¨îc(<ÇððÃ?jT�QÁ¿úÿì?àg>��!@ +endstream +endobj +307 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 847 0 R +/Name /Im298 +/Width 19 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÀÀÿAþ?sCã zÀð�}`|�¬`>`ÃÞ�TTÔÂø�íϰ +endstream +endobj +308 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 848 0 R +/Name /Im299 +/Width 17 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãÿÌ`ÿ¡þ?C?Ãv(ª``°À ÿñ?CsÃæ`ôáÿ?÷`��kÇ +endstream +endobj +309 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 849 0 R +/Name /Im300 +/Width 17 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`f``o�!~ b`g`#; +0úÁÀð00Ñb?Ð× +Ñ× +ÖB �`. +endstream +endobj +310 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 850 0 R +/Name /Im301 +/Width 17 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc<ÀÀC>oøy¾Áþüö d�¹@A P#z�ÕC« +endstream +endobj +311 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 851 0 R +/Name /Im302 +/Width 19 +/Height 4 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿàÿÿ@Tÿÿ��B4 +9 +endstream +endobj +312 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 852 0 R +/Name /Im303 +/Width 17 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÀ ÿÁþC?Ãæ`ÀÞÀÀÏÀ`ÇÀPÁÀðáãTÔÀ"Ì@È��¼Âj +endstream +endobj +313 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 853 0 R +/Name /Im304 +/Width 20 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏ~à¿üÿöØ+>°?H`?ÀÀÞ�F8Ñÿ?ÿÿH�A° +endstream +endobj +314 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 854 0 R +/Name /Im305 +/Width 23 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«cðÿAû>"ã~æìÿÿ0ÿûÇøã�¤· +endstream +endobj +315 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 855 0 R +/Name /Im306 +/Width 21 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ïÿð¿ÿG}ÿ9Æ|Ì @ÄDì@ÄÜF}çÀèÝa`¨¡z�Bª0Ô70Ø30È10��µÍJ +endstream +endobj +316 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 856 0 R +/Name /Im307 +/Width 19 +/Height 12 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿàÿÿÄàõÿ��£± +endstream +endobj +317 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 857 0 R +/Name /Im308 +/Width 19 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xK``øÁÀð¡Á¾ÿûF ÿ/ý@î?PPWÖÔÀÀ��Ú0ñ +endstream +endobj +318 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 858 0 R +/Name /Im309 +/Width 18 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÇÀþÿ{3C=À@@Á +Æ6äøÿ3°ÿc`üÁ��ýÜè +endstream +endobj +319 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 859 0 R +/Name /Im310 +/Width 20 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³ÿÿ¡ +0(`o`àg`c`°a`øÁÀøù�L¬À¡ ¡àÿÿ�ß + +endstream +endobj +320 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 860 0 R +/Name /Im311 +/Width 19 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÀÀþÿ¼<;sCóFzÀð�úÀø�¢¨¨¨¨hÐ(Æ�yb! +endstream +endobj +321 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 861 0 R +/Name /Im312 +/Width 19 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`8ÀÀüýüûØ?0ð?�ñêþäR@@e >PP#P;Ã�é£ +endstream +endobj +322 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 862 0 R +/Name /Im313 +/Width 19 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcH``øÕÿ?ðÿÿ 2°*`H`��Þò +endstream +endobj +323 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 863 0 R +/Name /Im314 +/Width 21 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÃøã3Y³=@ >²ì£;Pdq~<°(�#t1�j:,b +endstream +endobj +324 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 864 0 R +/Name /Im315 +/Width 13 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿã?>` þ��z5& +endstream +endobj +325 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 865 0 R +/Name /Im316 +/Width 13 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿã?2XÿM��[ +endstream +endobj +326 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 866 0 R +/Name /Im317 +/Width 21 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«c`øÇÀPÇÀÀì?@{? _ßþüøç0ðó1¤ØøøÔÿñÿø �w*L +endstream +endobj +327 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 867 0 R +/Name /Im318 +/Width 15 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcl`Böþûÿ ¿Á||°þÏÿõ� l= +endstream +endobj +328 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 868 0 R +/Name /Im319 +/Width 23 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßüï?É0øð3>`o>Àü¿ñ?C �tÿ +endstream +endobj +329 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 869 0 R +/Name /Im320 +/Width 21 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏþãÿÿì?,ÀãÂ2?ÁèæÙ»xï6P/ñ÷;;�x +endstream +endobj +330 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 870 0 R +/Name /Im321 +/Width 19 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«a`øßÀðÿ�ã¨Áþ�ü2 +k4hE �!S +endstream +endobj +331 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 545 0 R >> /XObject << /Im40 47 0 R /Im104 111 0 R /Im248 257 0 R /Im31 38 0 R /Im100 107 0 R /Im33 40 0 R /Im31 38 0 R /Im102 109 0 R /Im33 40 0 R /Im81 88 0 R /Im37 44 0 R /Im49 56 0 R /Im38 45 0 R /Im100 107 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im104 111 0 R /Im36 43 0 R /Im36 43 0 R /Im105 112 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im35 42 0 R /Im141 148 0 R /Im38 45 0 R /Im31 38 0 R /Im103 110 0 R /Im34 41 0 R /Im36 43 0 R /Im35 42 0 R /Im45 52 0 R /Im32 39 0 R /Im35 42 0 R /Im100 107 0 R /Im31 38 0 R /Im101 108 0 R /Im32 39 0 R /Im34 41 0 R /Im45 52 0 R /Im44 51 0 R /Im35 42 0 R /Im101 108 0 R /Im35 42 0 R /Im100 107 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im105 112 0 R /Im33 40 0 R /Im35 42 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im248 257 0 R /Im322 333 0 R /Im113 120 0 R /Im33 40 0 R /Im36 43 0 R /Im43 50 0 R /Im100 107 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im102 109 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im45 52 0 R /Im99 106 0 R /Im39 46 0 R /Im44 51 0 R /Im34 41 0 R /Im44 51 0 R /Im31 38 0 R /Im36 43 0 R /Im31 38 0 R /Im101 108 0 R /Im49 56 0 R /Im171 178 0 R /Im248 257 0 R /Im322 333 0 R /Im113 120 0 R /Im323 334 0 R /Im324 335 0 R /Im267 276 0 R /Im248 257 0 R /Im260 269 0 R /Im262 271 0 R /Im322 333 0 R /Im113 120 0 R /Im323 334 0 R /Im324 335 0 R /Im114 121 0 R /Im267 276 0 R /Im248 257 0 R /Im325 336 0 R /Im113 120 0 R /Im129 136 0 R /Im326 337 0 R /Im265 274 0 R /Im322 333 0 R /Im325 336 0 R /Im262 271 0 R /Im326 337 0 R /Im265 274 0 R /Im81 88 0 R /Im327 338 0 R /Im31 38 0 R /Im45 52 0 R /Im32 39 0 R /Im35 42 0 R /Im325 336 0 R /Im262 271 0 R /Im326 337 0 R /Im265 274 0 R /Im31 38 0 R /Im100 107 0 R /Im45 52 0 R /Im39 46 0 R /Im48 55 0 R /Im34 41 0 R /Im36 43 0 R /Im36 43 0 R /Im49 56 0 R /Im140 147 0 R /Im43 50 0 R /Im31 38 0 R /Im100 107 0 R /Im101 108 0 R /Im39 46 0 R /Im31 38 0 R /Im44 51 0 R /Im38 45 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im48 55 0 R /Im35 42 0 R /Im34 41 0 R /Im45 52 0 R /Im162 169 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im103 110 0 R /Im34 41 0 R /Im39 46 0 R /Im31 38 0 R /Im34 41 0 R /Im45 52 0 R /Im32 39 0 R /Im35 42 0 R /Im125 132 0 R /Im114 121 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im43 50 0 R /Im31 38 0 R /Im100 107 0 R /Im101 108 0 R /Im39 46 0 R /Im31 38 0 R /Im44 51 0 R /Im38 45 0 R /Im101 108 0 R /Im31 38 0 R /Im45 52 0 R /Im104 111 0 R /Im38 45 0 R /Im45 52 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im45 52 0 R /Im328 339 0 R /Im129 136 0 R /Im46 53 0 R /Im31 38 0 R /Im101 108 0 R /Im104 111 0 R /Im36 43 0 R /Im36 43 0 R /Im105 112 0 R /Im100 107 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im101 108 0 R /Im248 257 0 R /Im322 333 0 R /Im113 120 0 R /Im33 40 0 R /Im36 43 0 R /Im43 50 0 R /Im100 107 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im99 106 0 R /Im39 46 0 R /Im44 51 0 R /Im34 41 0 R /Im44 51 0 R /Im31 38 0 R /Im36 43 0 R /Im31 38 0 R /Im101 108 0 R /Im49 56 0 R /Im104 111 0 R /Im34 41 0 R /Im101 108 0 R /Im36 43 0 R /Im35 42 0 R /Im34 41 0 R /Im100 107 0 R /Im101 108 0 R /Im329 340 0 R /Im31 38 0 R /Im104 111 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im45 52 0 R /Im36 43 0 R /Im49 56 0 R /Im31 38 0 R /Im104 111 0 R /Im114 121 0 R /Im267 276 0 R /Im248 257 0 R /Im325 336 0 R /Im113 120 0 R /Im129 136 0 R /Im326 337 0 R /Im265 274 0 R /Im322 333 0 R /Im328 339 0 R /Im330 341 0 R /Im331 342 0 R /Im114 121 0 R /Im329 340 0 R /Im129 136 0 R /Im81 88 0 R /Im109 116 0 R /Im33 40 0 R /Im31 38 0 R /Im100 107 0 R /Im32 39 0 R /Im45 52 0 R /Im43 50 0 R /Im31 38 0 R /Im101 108 0 R /Im31 38 0 R /Im45 52 0 R /Im31 38 0 R /Im100 107 0 R /Im35 42 0 R /Im141 148 0 R /Im38 45 0 R /Im31 38 0 R /Im103 110 0 R /Im34 41 0 R /Im36 43 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im101 108 0 R /Im248 257 0 R /Im246 255 0 R /Im322 333 0 R /Im114 121 0 R /Im328 339 0 R /Im330 341 0 R /Im331 342 0 R /Im114 121 0 R /Im329 340 0 R /Im129 136 0 R /Im81 88 0 R /Im265 274 0 R /Im260 269 0 R /Im113 120 0 R /Im325 336 0 R /Im261 270 0 R /Im129 136 0 R /Im326 337 0 R /Im259 268 0 R /Im81 88 0 R /Im157 164 0 R /Im45 52 0 R /Im34 41 0 R /Im36 43 0 R /Im102 109 0 R /Im38 45 0 R /Im100 107 0 R /Im36 43 0 R /Im49 56 0 R /Im46 53 0 R /Im31 38 0 R /Im101 108 0 R /Im32 39 0 R /Im34 41 0 R /Im45 52 0 R /Im44 51 0 R /Im35 42 0 R /Im100 107 0 R /Im33 40 0 R /Im105 112 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im101 108 0 R /Im248 257 0 R /Im332 343 0 R /Im112 119 0 R /Im33 40 0 R /Im36 43 0 R /Im43 50 0 R /Im100 107 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im99 106 0 R /Im39 46 0 R /Im44 51 0 R /Im34 41 0 R /Im44 51 0 R /Im31 38 0 R /Im36 43 0 R /Im31 38 0 R /Im101 108 0 R /Im49 56 0 R /Im104 111 0 R /Im34 41 0 R /Im101 108 0 R /Im36 43 0 R /Im35 42 0 R /Im34 41 0 R /Im100 107 0 R /Im101 108 0 R /Im329 340 0 R /Im31 38 0 R /Im104 111 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im45 52 0 R /Im36 43 0 R /Im49 56 0 R /Im31 38 0 R /Im104 111 0 R /Im248 257 0 R /Im246 255 0 R /Im332 343 0 R /Im114 121 0 R /Im325 336 0 R /Im328 339 0 R /Im330 341 0 R /Im331 342 0 R /Im114 121 0 R /Im329 340 0 R /Im129 136 0 R /Im81 88 0 R /Im265 274 0 R /Im260 269 0 R /Im112 119 0 R /Im325 336 0 R /Im261 270 0 R /Im129 136 0 R /Im326 337 0 R /Im259 268 0 R /Im81 88 0 R /Im109 116 0 R /Im33 40 0 R /Im38 45 0 R /Im100 107 0 R /Im46 53 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im45 52 0 R /Im36 43 0 R /Im49 56 0 R /Im48 55 0 R /Im34 41 0 R /Im101 108 0 R /Im101 108 0 R /Im35 42 0 R /Im39 46 0 R /Im104 111 0 R /Im31 38 0 R /Im45 52 0 R /Im101 108 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im100 107 0 R /Im101 108 0 R /Im31 38 0 R /Im100 107 0 R /Im105 112 0 R /Im33 40 0 R /Im35 42 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im248 257 0 R /Im246 255 0 R /Im31 38 0 R /Im100 107 0 R /Im102 109 0 R /Im39 46 0 R /Im35 42 0 R /Im34 41 0 R /Im101 108 0 R /Im35 42 0 R /Im39 46 0 R /Im39 46 0 R /Im36 43 0 R /Im35 42 0 R /Im100 107 0 R /Im100 107 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im45 52 0 R /Im34 41 0 R /Im103 110 0 R /Im34 41 0 R /Im36 43 0 R /Im38 45 0 R /Im35 42 0 R /Im105 112 0 R /Im33 40 0 R /Im31 38 0 R /Im32 39 0 R /Im33 40 0 R /Im43 50 0 R /Im35 42 0 R /Im99 106 0 R /Im35 42 0 R /Im45 52 0 R /Im43 50 0 R /Im100 107 0 R /Im45 52 0 R /Im112 119 0 R /Im46 53 0 R /Im113 120 0 R /Im46 53 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im32 39 0 R /Im45 52 0 R /Im100 107 0 R /Im101 108 0 R /Im34 41 0 R /Im45 52 0 R /Im101 108 0 R /Im100 107 0 R /Im259 268 0 R /Im46 53 0 R /Im261 270 0 R /Im46 53 0 R /Im265 274 0 R /Im46 53 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im329 340 0 R /Im44 51 0 R /Im49 56 0 R /Im34 41 0 R /Im100 107 0 R /Im31 38 0 R /Im48 55 0 R /Im99 106 0 R /Im36 43 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im36 43 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im45 52 0 R /Im81 88 0 R /Im109 116 0 R /Im33 40 0 R /Im31 38 0 R /Im100 107 0 R /Im44 51 0 R /Im100 107 0 R /Im35 42 0 R /Im39 46 0 R /Im103 110 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im45 52 0 R /Im31 38 0 R /Im48 55 0 R /Im48 55 0 R /Im35 42 0 R /Im43 50 0 R /Im31 38 0 R /Im34 41 0 R /Im101 108 0 R /Im35 42 0 R /Im36 43 0 R /Im49 56 0 R /Im36 43 0 R /Im35 42 0 R /Im34 41 0 R /Im43 50 0 R /Im100 107 0 R /Im101 108 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im31 38 0 R /Im48 55 0 R /Im99 106 0 R /Im36 43 0 R /Im35 42 0 R /Im48 55 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im45 52 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im132 139 0 R /Im133 140 0 R /Im134 141 0 R /Im135 142 0 R /Im136 143 0 R /Im137 144 0 R /Im138 145 0 R /Im35 42 0 R /Im108 115 0 R /Im101 108 0 R /Im35 42 0 R /Im45 52 0 R /Im100 107 0 R /Im31 38 0 R /Im45 52 0 R /Im100 107 0 R /Im33 40 0 R /Im105 112 0 R /Im45 52 0 R /Im31 38 0 R /Im45 52 0 R /Im241 250 0 R /Im31 38 0 R /Im102 109 0 R /Im38 45 0 R /Im39 46 0 R /Im35 42 0 R /Im170 177 0 R /Im81 88 0 R /Im333 344 0 R /Im43 50 0 R /Im35 42 0 R /Im100 107 0 R /Im34 41 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im31 38 0 R /Im102 109 0 R /Im33 40 0 R /Im101 108 0 R /Im245 254 0 R /Im114 121 0 R /Im258 267 0 R /Im334 345 0 R /Im129 136 0 R /Im34 41 0 R /Im39 46 0 R /Im35 42 0 R /Im106 113 0 R /Im39 46 0 R /Im100 107 0 R /Im101 108 0 R /Im35 42 0 R /Im103 110 0 R /Im34 41 0 R /Im36 43 0 R /Im38 45 0 R /Im34 41 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im44 51 0 R /Im49 56 0 R /Im48 55 0 R /Im35 42 0 R /Im34 41 0 R /Im45 52 0 R /Im100 107 0 R /Im104 111 0 R /Im34 41 0 R /Im172 179 0 R /Im35 42 0 R /Im39 46 0 R /Im140 147 0 R /Im105 112 0 R /Im31 38 0 R /Im45 52 0 R /Im43 50 0 R /Im105 112 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im104 111 0 R /Im43 50 0 R /Im35 42 0 R /Im99 106 0 R /Im101 108 0 R /Im33 40 0 R /Im245 254 0 R /Im246 255 0 R /Im114 121 0 R /Im258 267 0 R /Im334 345 0 R /Im335 346 0 R /Im129 136 0 R /Im101 108 0 R /Im43 50 0 R /Im35 42 0 R /Im32 39 0 R /Im31 38 0 R /Im43 50 0 R /Im35 42 0 R /Im105 112 0 R /Im33 40 0 R /Im35 42 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im248 257 0 R /Im332 343 0 R /Im250 259 0 R /Im251 260 0 R /Im242 251 0 R /Im252 261 0 R /Im250 259 0 R /Im39 46 0 R /Im248 257 0 R /Im322 333 0 R /Im254 263 0 R /Im255 264 0 R /Im256 265 0 R /Im250 259 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im99 106 0 R /Im39 46 0 R /Im44 51 0 R /Im34 41 0 R /Im44 51 0 R /Im31 38 0 R /Im36 43 0 R /Im31 38 0 R /Im101 108 0 R /Im49 56 0 R /Im104 111 0 R /Im34 41 0 R /Im101 108 0 R /Im36 43 0 R /Im35 42 0 R /Im34 41 0 R /Im100 107 0 R /Im101 108 0 R /Im329 340 0 R /Im81 88 0 R /Im131 138 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im31 38 0 R /Im100 107 0 R /Im32 39 0 R /Im34 41 0 R /Im100 107 0 R /Im35 42 0 R /Im46 53 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im32 39 0 R /Im39 46 0 R /Im39 46 0 R /Im35 42 0 R /Im100 107 0 R /Im99 106 0 R /Im45 52 0 R /Im43 50 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im44 51 0 R /Im38 45 0 R /Im45 52 0 R /Im43 50 0 R /Im31 38 0 R /Im100 107 0 R /Im39 46 0 R /Im35 42 0 R /Im101 108 0 R /Im38 45 0 R /Im39 46 0 R /Im45 52 0 R /Im35 42 0 R /Im43 50 0 R /Im81 88 0 R /Im336 347 0 R /Im94 101 0 R /Im337 348 0 R /Im13 20 0 R /Im15 22 0 R /Im13 20 0 R /Im28 35 0 R /Im29 36 0 R /Im16 23 0 R /Im10 17 0 R /Im239 248 0 R /Im15 22 0 R /Im16 23 0 R /Im22 29 0 R /Im10 17 0 R /Im22 29 0 R /Im23 30 0 R /Im15 22 0 R /Im24 31 0 R /Im13 20 0 R /Im338 349 0 R /Im239 248 0 R /Im28 35 0 R /Im239 248 0 R /Im29 36 0 R /Im13 20 0 R /Im15 22 0 R /Im13 20 0 R /Im28 35 0 R /Im21 28 0 R /Im131 138 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im102 109 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im101 108 0 R /Im39 46 0 R /Im35 42 0 R /Im35 42 0 R /Im31 38 0 R /Im100 107 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im35 42 0 R /Im43 50 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im43 50 0 R /Im35 42 0 R /Im99 106 0 R /Im101 108 0 R /Im33 40 0 R /Im245 254 0 R /Im246 255 0 R /Im246 255 0 R /Im322 333 0 R /Im245 254 0 R /Im46 53 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im44 51 0 R /Im39 46 0 R /Im38 45 0 R /Im101 108 0 R /Im35 42 0 R /Im140 147 0 R /Im104 111 0 R /Im39 46 0 R /Im32 39 0 R /Im35 42 0 R /Im43 50 0 R /Im35 42 0 R /Im99 106 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im32 39 0 R /Im33 40 0 R /Im31 38 0 R /Im35 42 0 R /Im103 110 0 R /Im35 42 0 R /Im43 50 0 R /Im44 51 0 R /Im49 56 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im45 52 0 R /Im35 42 0 R /Im105 112 0 R /Im34 41 0 R /Im36 43 0 R /Im102 109 0 R /Im39 46 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im48 55 0 R /Im31 38 0 R /Im100 107 0 R /Im245 254 0 R /Im246 255 0 R /Im246 255 0 R /Im325 336 0 R /Im114 121 0 R /Im245 254 0 R /Im325 336 0 R /Im245 254 0 R /Im246 255 0 R /Im129 136 0 R /Im81 88 0 R /Im173 180 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im33 40 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im48 55 0 R /Im34 41 0 R /Im108 115 0 R /Im31 38 0 R /Im48 55 0 R /Im38 45 0 R /Im48 55 0 R /Im43 50 0 R /Im35 42 0 R /Im99 106 0 R /Im101 108 0 R /Im33 40 0 R /Im31 38 0 R /Im100 107 0 R /Im45 52 0 R /Im101 108 0 R /Im102 109 0 R /Im39 46 0 R /Im35 42 0 R /Im34 41 0 R /Im101 108 0 R /Im35 42 0 R /Im39 46 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im45 52 0 R /Im245 254 0 R /Im246 255 0 R /Im246 255 0 R /Im260 269 0 R /Im114 121 0 R /Im245 254 0 R /Im325 336 0 R /Im245 254 0 R /Im246 255 0 R /Im129 136 0 R /Im31 38 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im100 107 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im101 108 0 R /Im31 38 0 R /Im48 55 0 R /Im35 42 0 R /Im31 38 0 R /Im100 107 0 R /Im38 45 0 R /Im100 107 0 R /Im35 42 0 R /Im43 50 0 R /Im105 112 0 R /Im33 40 0 R /Im31 38 0 R /Im32 39 0 R /Im33 40 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im99 106 0 R /Im36 43 0 R /Im34 41 0 R /Im31 38 0 R /Im45 52 0 R /Im112 119 0 R /Im113 120 0 R /Im34 41 0 R /Im36 43 0 R /Im102 109 0 R /Im39 46 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im48 55 0 R /Im45 52 0 R /Im35 42 0 R /Im35 42 0 R /Im43 50 0 R /Im100 107 0 R /Im104 111 0 R /Im39 46 0 R /Im34 41 0 R /Im43 50 0 R /Im35 42 0 R /Im99 106 0 R /Im101 108 0 R /Im33 40 0 R /Im245 254 0 R /Im246 255 0 R /Im246 255 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im46 53 0 R /Im100 107 0 R /Im31 38 0 R /Im45 52 0 R /Im32 39 0 R /Im35 42 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im43 50 0 R /Im35 42 0 R /Im99 106 0 R /Im101 108 0 R /Im33 40 0 R /Im245 254 0 R /Im246 255 0 R /Im246 255 0 R /Im31 38 0 R /Im100 107 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im35 42 0 R /Im43 50 0 R /Im32 39 0 R /Im48 55 0 R /Im99 106 0 R /Im36 43 0 R /Im35 42 0 R /Im101 108 0 R /Im35 42 0 R /Im36 43 0 R /Im49 56 0 R /Im46 53 0 R /Im101 108 0 R /Im81 88 0 R /Im339 350 0 R /Im33 40 0 R /Im100 107 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im34 41 0 R /Im36 43 0 R /Im34 41 0 R /Im39 46 0 R /Im102 109 0 R /Im35 42 0 R /Im103 110 0 R /Im34 41 0 R /Im36 43 0 R /Im38 45 0 R /Im35 42 0 R /Im104 111 0 R /Im39 46 0 R /Im335 346 0 R /Im340 351 0 R /Im341 352 0 R /Im342 353 0 R /Im340 351 0 R /Im343 354 0 R /Im344 355 0 R /Im345 356 0 R /Im346 357 0 R /Im340 351 0 R /Im36 43 0 R /Im35 42 0 R /Im34 41 0 R /Im43 50 0 R /Im100 107 0 R /Im101 108 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im31 38 0 R /Im102 109 0 R /Im31 38 0 R /Im45 52 0 R /Im34 41 0 R /Im36 43 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im44 51 0 R /Im35 42 0 R /Im33 40 0 R /Im34 41 0 R /Im103 110 0 R /Im31 38 0 R /Im38 45 0 R /Im39 46 0 R /Im38 45 0 R /Im99 106 0 R /Im101 108 0 R /Im34 41 0 R /Im100 107 0 R /Im48 55 0 R /Im34 41 0 R /Im36 43 0 R /Im36 43 0 R /Im101 108 0 R /Im31 38 0 R /Im48 55 0 R /Im35 42 0 R /Im103 110 0 R /Im35 42 0 R /Im39 46 0 R /Im33 40 0 R /Im35 42 0 R /Im34 41 0 R /Im43 50 0 R /Im43 50 0 R /Im38 45 0 R /Im35 42 0 R /Im101 108 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im347 358 0 R /Im295 304 0 R /Im277 286 0 R /Im296 305 0 R /Im268 277 0 R /Im269 278 0 R /Im277 286 0 R /Im288 297 0 R /Im292 301 0 R /Im348 359 0 R /Im349 360 0 R /Im292 301 0 R /Im350 361 0 R /Im294 303 0 R /Im351 362 0 R /Im293 302 0 R /Im292 301 0 R /Im318 327 0 R /Im81 88 0 R /Im352 363 0 R /Im300 309 0 R /Im301 310 0 R /Im268 277 0 R /Im81 88 0 R /Im277 286 0 R /Im81 88 0 R /Im273 282 0 R /Im309 318 0 R /Im275 284 0 R /Im81 88 0 R /Im311 320 0 R /Im81 88 0 R /Im353 364 0 R /Im354 365 0 R /Im301 310 0 R /Im300 309 0 R /Im347 358 0 R /Im295 304 0 R /Im277 286 0 R /Im296 305 0 R /Im268 277 0 R /Im269 278 0 R /Im277 286 0 R /Im291 300 0 R /Im288 297 0 R /Im355 366 0 R /Im300 309 0 R /Im301 310 0 R /Im295 304 0 R /Im277 286 0 R /Im273 282 0 R /Im270 279 0 R /Im274 283 0 R /Im298 307 0 R /Im296 305 0 R /Im299 308 0 R /Im274 283 0 R /Im275 284 0 R /Im272 281 0 R /Im272 281 0 R /Im298 307 0 R /Im320 329 0 R /Im299 308 0 R /Im277 286 0 R /Im275 284 0 R /Im304 313 0 R /Im309 318 0 R /Im274 283 0 R /Im301 310 0 R /Im300 309 0 R /Im347 358 0 R /Im295 304 0 R /Im277 286 0 R /Im296 305 0 R /Im268 277 0 R /Im269 278 0 R /Im277 286 0 R /Im291 300 0 R /Im356 367 0 R /Im300 309 0 R /Im301 310 0 R /Im309 318 0 R /Im274 283 0 R /Im277 286 0 R /Im309 318 0 R /Im317 326 0 R /Im274 283 0 R /Im277 286 0 R /Im268 277 0 R /Im279 288 0 R /Im274 283 0 R /Im270 279 0 R /Im301 310 0 R /Im300 309 0 R /Im268 277 0 R /Im269 278 0 R /Im270 279 0 R /Im271 280 0 R /Im272 281 0 R /Im273 282 0 R /Im274 283 0 R /Im275 284 0 R /Im276 285 0 R /Im277 286 0 R /Im270 279 0 R /Im275 284 0 R /Im278 287 0 R /Im268 277 0 R /Im269 278 0 R /Im270 279 0 R /Im274 283 0 R /Im277 286 0 R /Im268 277 0 R /Im279 288 0 R /Im274 283 0 R /Im270 279 0 R /Im280 289 0 R /Im268 277 0 R /Im269 278 0 R /Im270 279 0 R /Im275 284 0 R /Im272 281 0 R /Im273 282 0 R /Im274 283 0 R /Im275 284 0 R /Im280 289 0 R /Im268 277 0 R /Im269 278 0 R /Im270 279 0 R /Im281 290 0 R /Im277 286 0 R /Im270 279 0 R /Im275 284 0 R /Im282 291 0 R /Im283 292 0 R /Im81 88 0 R /Im81 88 0 R /Im81 88 0 R /Im268 277 0 R /Im296 305 0 R /Im278 287 0 R /Im274 283 0 R /Im277 286 0 R /Im268 277 0 R /Im279 288 0 R /Im274 283 0 R /Im270 279 0 R /Im307 316 0 R /Im307 316 0 R /Im291 300 0 R /Im282 291 0 R /Im283 292 0 R /Im268 277 0 R /Im269 278 0 R /Im270 279 0 R /Im281 290 0 R /Im298 307 0 R /Im305 314 0 R /Im269 278 0 R /Im295 304 0 R /Im287 296 0 R /Im300 309 0 R /Im301 310 0 R /Im286 295 0 R /Im308 317 0 R /Im307 316 0 R /Im281 290 0 R /Im277 286 0 R /Im270 279 0 R /Im275 284 0 R /Im320 329 0 R /Im268 277 0 R /Im270 279 0 R /Im274 283 0 R /Im273 282 0 R /Im304 313 0 R /Im298 307 0 R /Im281 290 0 R /Im81 88 0 R /Im298 307 0 R /Im296 305 0 R /Im275 284 0 R /Im270 279 0 R /Im272 281 0 R /Im277 286 0 R /Im275 284 0 R /Im299 308 0 R /Im270 279 0 R /Im273 282 0 R /Im303 312 0 R /Im306 315 0 R /Im277 286 0 R /Im299 308 0 R /Im307 316 0 R /Im308 317 0 R /Im309 318 0 R /Im305 314 0 R /Im270 279 0 R /Im298 307 0 R /Im296 305 0 R /Im296 305 0 R /Im301 310 0 R /Im300 309 0 R /Im281 290 0 R /Im298 307 0 R /Im305 314 0 R /Im269 278 0 R /Im295 304 0 R /Im307 316 0 R /Im304 313 0 R /Im298 307 0 R /Im305 314 0 R /Im269 278 0 R /Im295 304 0 R /Im278 287 0 R /Im278 287 0 R /Im313 322 0 R /Im288 297 0 R /Im292 301 0 R /Im348 359 0 R /Im349 360 0 R /Im292 301 0 R /Im350 361 0 R /Im294 303 0 R /Im351 362 0 R /Im293 302 0 R /Im292 301 0 R /Im301 310 0 R /Im299 308 0 R /Im268 277 0 R /Im279 288 0 R /Im284 293 0 R /Im275 284 0 R /Im313 322 0 R /Im281 290 0 R /Im277 286 0 R /Im270 279 0 R /Im275 284 0 R /Im302 311 0 R /Im281 290 0 R /Im282 291 0 R /Im300 309 0 R /Im275 284 0 R /Im282 291 0 R /Im287 296 0 R /Im268 277 0 R /Im296 305 0 R /Im278 287 0 R /Im271 280 0 R /Im272 281 0 R /Im273 282 0 R /Im274 283 0 R /Im275 284 0 R /Im276 285 0 R /Im277 286 0 R /Im270 279 0 R /Im275 284 0 R /Im278 287 0 R /Im291 300 0 R /Im288 297 0 R /Im280 289 0 R /Im281 290 0 R /Im298 307 0 R /Im305 314 0 R /Im269 278 0 R /Im295 304 0 R /Im302 311 0 R /Im318 327 0 R /Im280 289 0 R /Im281 290 0 R /Im298 307 0 R /Im305 314 0 R /Im269 278 0 R /Im295 304 0 R /Im282 291 0 R /Im308 317 0 R /Im307 316 0 R /Im281 290 0 R /Im298 307 0 R /Im305 314 0 R /Im269 278 0 R /Im295 304 0 R /Im282 291 0 R /Im304 313 0 R /Im277 286 0 R /Im270 279 0 R /Im305 314 0 R /Im304 313 0 R /Im269 278 0 R /Im281 290 0 R /Im277 286 0 R /Im270 279 0 R /Im275 284 0 R /Im287 296 0 R /Im300 309 0 R /Im301 310 0 R /Im286 295 0 R /Im312 321 0 R /Im307 316 0 R /Im275 284 0 R /Im272 281 0 R /Im273 282 0 R /Im274 283 0 R /Im275 284 0 R /Im320 329 0 R /Im268 277 0 R /Im270 279 0 R /Im274 283 0 R /Im273 282 0 R /Im304 313 0 R /Im298 307 0 R /Im281 290 0 R /Im81 88 0 R /Im298 307 0 R /Im296 305 0 R /Im275 284 0 R /Im270 279 0 R /Im272 281 0 R /Im277 286 0 R /Im275 284 0 R /Im299 308 0 R /Im270 279 0 R /Im273 282 0 R /Im303 312 0 R /Im306 315 0 R /Im277 286 0 R /Im299 308 0 R /Im307 316 0 R /Im308 317 0 R /Im309 318 0 R /Im305 314 0 R /Im270 279 0 R /Im298 307 0 R /Im296 305 0 R /Im296 305 0 R /Im301 310 0 R /Im300 309 0 R /Im281 290 0 R /Im298 307 0 R /Im305 314 0 R /Im269 278 0 R /Im295 304 0 R /Im307 316 0 R /Im304 313 0 R /Im298 307 0 R /Im305 314 0 R /Im269 278 0 R /Im295 304 0 R /Im278 287 0 R /Im278 287 0 R /Im302 311 0 R /Im288 297 0 R /Im292 301 0 R /Im348 359 0 R /Im349 360 0 R /Im292 301 0 R /Im350 361 0 R /Im294 303 0 R /Im351 362 0 R /Im293 302 0 R /Im292 301 0 R /Im301 310 0 R /Im299 308 0 R /Im268 277 0 R /Im279 288 0 R /Im284 293 0 R /Im275 284 0 R /Im313 322 0 R /Im275 284 0 R /Im272 281 0 R /Im273 282 0 R /Im274 283 0 R /Im275 284 0 R /Im302 311 0 R /Im281 290 0 R /Im282 291 0 R /Im300 309 0 R /Im275 284 0 R /Im282 291 0 R /Im287 296 0 R /Im268 277 0 R /Im296 305 0 R /Im278 287 0 R /Im271 280 0 R /Im272 281 0 R /Im273 282 0 R /Im274 283 0 R /Im275 284 0 R /Im276 285 0 R /Im277 286 0 R /Im270 279 0 R /Im275 284 0 R /Im278 287 0 R /Im291 300 0 R /Im288 297 0 R /Im280 289 0 R /Im281 290 0 R /Im298 307 0 R /Im305 314 0 R /Im269 278 0 R /Im295 304 0 R /Im280 289 0 R /Im281 290 0 R /Im298 307 0 R /Im305 314 0 R /Im269 278 0 R /Im295 304 0 R /Im313 322 0 R /Im318 327 0 R /Im282 291 0 R /Im312 321 0 R /Im307 316 0 R /Im281 290 0 R /Im298 307 0 R /Im305 314 0 R /Im269 278 0 R /Im295 304 0 R /Im282 291 0 R /Im304 313 0 R /Im277 286 0 R /Im270 279 0 R /Im305 314 0 R /Im304 313 0 R /Im269 278 0 R /Im275 284 0 R /Im272 281 0 R /Im273 282 0 R /Im274 283 0 R /Im275 284 0 R /Im287 296 0 R /Im321 330 0 R /Im81 88 0 R /Im81 88 0 R /Im81 88 0 R /Im321 330 0 R /Im241 250 0 R /Im31 38 0 R /Im102 109 0 R /Im38 45 0 R /Im39 46 0 R /Im35 42 0 R /Im170 177 0 R /Im171 178 0 R /Im109 116 0 R /Im33 40 0 R /Im35 42 0 R /Im132 139 0 R /Im133 140 0 R /Im134 141 0 R /Im135 142 0 R /Im136 143 0 R /Im137 144 0 R /Im138 145 0 R /Im35 42 0 R /Im108 115 0 R /Im101 108 0 R /Im35 42 0 R /Im45 52 0 R /Im100 107 0 R /Im31 38 0 R /Im45 52 0 R /Im357 368 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 332 0 R +>> +endobj +332 0 obj +<< +/Length 871 0 R +/Filter /FlateDecode +>> +stream +x¥]K¯4¹mÝϯ¸ËxÒ«^l¥7Éx;ñÛù÷)uÕ]ÒaëPµùî+DR|éüë7¿üúë7îëßüõôâô5=¦Iþ=~³¸ãצǶÌ_ßÿñoÿíûïöço~ù6<>¦õ:|}ÄýßeyL¾î¦Ø_'ôù5=ÒT÷qÇûç×®ßwóôµÍ`ùÁÕÃÃ#ÌèóÛ>ï¦fûé±ÌhûnZÑ÷»|çµþ{Ëcóy|ù~\!¼6àé øHm`jÇo\pmÇ¯ÍæÇÖ|ÿIèÂÒ®?ù�q'ÛÇ ÒK~·þþºÉhäO 7/©°xR ,Hb¢%hõµ(ØÐÜDì >ÃÆGðS@ã +h*Ì;Ïé0M z6ÐêPÿ#\"0óã¡iÆ«ë÷Hµë_ó +ǤCÜÔp@;>Þ;>BÐgÀ'ò¨"8à `-æçõÐ"-æ"OªqÚúu"9Po |Å"ÐbUWdCsÕ3°qg@åà 9à f@Z� ÜöOK`ÀDó}ÍïîÙ±8 ÒÌHH3¢R{ÀÂâJI *öfhÈ'H�v$ (X' ,` vÁAuÐ0ì`gà ?X§ì 6JP3¤Ñ-!Õ\©=ÚzôÅ7@û1Âðhh+T1ÁCÔZ8g$à ]xj{Ò4î§øOÅíá·kÔØüí$/*Ê1¼úb ØÒ¦<aSH»ÃÉÁSÜY| +Ô)ÔôÐ>+§´c,)ÆÜáeãyKºøyú®ú<ÍþÄ×áD0UâÑI>>ûâzJíweDsýhä$».v%G`_ +`kt¦]hý ¥ÀÅäÔðùu }¿uÔïîJ òý @û}=£Ã ¦ÿܾÒÚ÷ïéÇ+E�W$mN®Í)ná°×,ÀÃVøLÊ97f ݲ+ȦhÈ +»µ0aÚ>[áýïëxf~,9)±+Â%ok0ÌàðDPí¼Èîż ·Kf:é87ÙY>N,#bsÌÐZ¶0=×3q?!é¤ÁÛ +æ(øy») +^2¬ã¢°m7E!LxFüóGÅ1ÖÇ^» )õ0íÞÀ詼 1VÆÇì^Dh,«ÊÊ:÷(ÿÉ+=0jÞ·0VîkÞXÙØùB7:. ÑqnÈ °&îH¨Ø#Ú©oºñã©V©w/ñ£[9*j7g9V?ð>A{sÖõ)\{70ïáÞ^he¢ÇäÜK¶è:Ïw® ®¾N§;ËS5àC�wgæIûy·ÒCèÜtRL�sqÌÇÐm½:Ìt¾;w!Pç(Jô@cCãA¾P tRBhTñ¦ÞýNèû=Ò úÎC®~«ñô½¡ +½ñº/;wïõønÏñëóâ5Â7[h·ØfzÔ[¯ 1?~Bß7d¬ý8�B-M½CG¨a?Ò·ÞC3@_ÈÕsõ}~QX®»Tïý\�ò÷Aõî<!ZîÎgÄ>Ú÷3R"taÀ +hZÔ/U9¸²Tn¡1ÜûA%<¡zýåâtzY#çZWB½¸,èð<:CË0QG@K¸ qÎqC�MDö#|óTÂ#lÀ,È4`J²wÃc®èw¤ü%¬ õÆõ¨z?ÃÇásrBeÁvïÅéÞnôÉÅ/7^áè!iO(B`ðb ÍzsµcDä=!¹yõbß§=¡@@�3K�|âí8 Æ ;B3îgÿ&®à9°Â3�Â9eüÆ ³447Ad£^C ^FZ)ívýË7ú¤bF#³:ÏÛçܬkn+Ó¶+´Lïñ0}q'IëúiO¾ ¯Ãa(Ð~TTMÀ_¼Ç× xàÜÜWàóåæ¾7^]¿¨õk±ó4Î TÐVǫ̂õd@Åâ»vÅ] +`ÈW66Vµ«ß,Àtõ»CìF¯~Ïs<°¼(òA&xÇɱ¥vHy�wàÀÊï¨cÐ{Ð=ú¨ø¤JDÈTI H´È ò3Rå<È/ÈñÝ3)tÏ?ÉY&å1@~GÆ�ù "t&º¦PIIL÷8L´�c ºPrI,wHsf_î93! %Ä[²Ñ 7®�Vô ÐyÑ3+e&d¥n:3a&}V å±4þxhýyõPÒu~ÑpO7zZ +YrKZÊQ\Í xÖ(ë÷ÐÁ²þ0êÉHVj¥´TB"ÌP~@ Òæ´Ðӽƴ<l+Îó¶5ïÁñl+ÎH`[91txäi¶ufvz¹NÆ-p©p´%;1á=Òô©¶\b#Ïù´|ί´p0òL¯ÄÇ|Ò0".)¡¯>1aQ·úI±wK Ê{RÏ(ȸ£±aRÊ-ì~Ù± w´ ±V^õ&Btï&¢^µ^D%|ÁòL´o�E¸àâ,«¨¥Îp× ×ñ¼Isâ]ÇÓ&9Úõó7=òºÁΡ¯¬b�ev :Ëì¸8Êcºþ 7Hpy EH°Vïr/6 NÝEY 8ÄC±¬Cøb}ßRl ¤øbé�C±Rï¢ÏAÞ<ô3]u¼lÕ@Ch04S8�µ +ï%Ë8ÊÃ}àðÐäQÆ<ï¤p¯ ªïBÖXâù³7¥&Ϲ#? + +~Ø!ËE#nydûvoºd»|Ï'Ëè£{NYË=§,Ä ì¦9|pÊÔÉ!aF=~%Ê#§,_Ié[$_{µ m¤>éXÃI¢¾öË$W<S?ó¢«7P|Ôc´© +c45ßásæ-J¹çß×7BzÑ%POMɸHƤë*HyÓ¡iãïpcBñòëñ-¦ù<zFCÊk¾].gK(÷RåÀ|CÎlEª½þÅ ¸ÊHC(¸! æ)Ñõm´3MÈÁç#Ì£aPF3aòs¯¾4çVnî.Ãù*@ò0ì2ÜPS.߯ç«W Õ ru_-/þàÐúy×Þù�À#@$¸$ Øê:G³·Rêx]'° @RñìsöòÚÜzS¡@$Ø9Kó`M÷x°Á#̱äöúú}�2M��H©£ÕU*�Ä¡ X� c�"�$ � bÈþØ�$¢ch�$¤�¾o�ÌH�Ò +ªÍ }ûïWÈÚü¢õ� ~Ch�L�©wïSy\Zm¿{wÈ1�@<²ä�V<�$@+Â@"Òâ�H$µ¸JAåìJT&ØÜÐE-�À��YÂM!\©Æ§a+²C·}re�è¢a`�8èÍòÁ¬@Â;ZL Fñæ !r¤¢/亳ç kòÂï=Gå9£B¹Ó0,âOsÄ]É®:iÏoÁ+ùL{ÜJ¢|§æP¦ýÄë½;MSਨiÓ× µ©¶'dÆ2íÉ»#vyèê·±DûZà~µæÙKv!ïÀP¯[S <ÁeÙ85x1rråãçÁ,{Î03,cYö3ÅpÝeÏ9'/P4iB|4 h$º¹L¢;kIBãù®%ð �×LKÒæIZ½Æ$Ú%MµrT´n|Õ ç/øøëxÚ±91×õÓÍY¸åÊ@ºöâQ×õÓµ¼ø%×õÓÑÕ è @°T¢éOlÐ,Ol&JÕ¶7û~ºø¤®àaDbèú¾ Z�ÏAéùÑã Oì÷�ÛAw¢ÕâjíÐX¾àáh,\NqP;нç+jºcB÷ìÈYûÅÌCyäN±Áì +ðX âÁÕ Ý1!3ǨAùÑç§�Uâ �_ûdBî(¼²T0rç·ÛâN6¥ö <Ǽ"ri8èåg:wy75ùùNgPc m±´ éÙb½íÇ@5Í5Ãñtª8ÒJ@ °²De4:jtçô®'UQÚµ1!^%ytßý>Uì>Å;ýèý ÷2Ç} hè:3J5âÓ57øuÒPx´â$Í}]¡ìÆÓ%'åîã ]d!ýéòeg)áËøöAæ#b�ÿ$ÂI½½úp[®~_n»»ß×`¼åQG¿n>¨` G5Hùt~R 7R? ³ª%´¼dÇ/Ð:zIè\&@]´¸ZðHxt"NeÐeP%£Î©f +Ôâ|axQa¬DýÀã>ý!¥¸pJDE]H,Õ¬%'Ûç B¹á³jUÕÞô²£=Ä»L�¯6° ¥«DO¨Ï0Gh/Ô T¤¯ +D$°¯²äoéѳîɨÎ)S!Ð#È zY˨ËþÁ5ù$¤ ë,!üÓJ1@%ohe|V-éxÓÚÝÈYL÷J@p7¢Uá¼Qý LéMT¡7oh¢Ñx>i¿¯gCà÷ù7Dó¨�þACn)Å+OÜ;¨n` 'G]PùÖF8Óïãùûõ3R¾_O7ãéDÆÓ½²Ã~dc¦Ï-tÕ'<Nkе$´§N\í�ËÅÞ4ÖY +,L{0k¬ }ÝÉrÚ¾áQ:M°{l«ð2d?ý»74âÖ¯öU +pýýTÇGn¼Í)ùÕ³1¥D<? +)èûêÃps6êP}´¢Sêi[;¨]\#qdçûz x�à¢b ^7Q¨àuÐÛ2!Z2r#ØQaz2)±PI)qK2 -�OëPuH2ézøä!ÒP÷Þúk©(H>åý'èì +5hήP£^Ì ´bçó§A/&`/Âðü rÊÛ<fD�4ú1hgÆwM )ÝÌËcÊ 5ª (Wþ9Ô®=¨9Û+5+« ÀÅÔÔu}+)Ó¼°="DÁPÞB!4]Z1:^³à jZF½1Âp#7ñèxxP¼§Ì#V<<&EÎRB z#ÞL0¢³¥%ÀZCU¸Bòï7ä¶Ð':¨Ú�-Bgs¦Á:9Îì é|¿½ß>kÿf¦Üªïu+ÓÖT»wò2à"YÊ´A§*HÉHE4Nhi5èzlÞëx·×:Ê{'w¼¼NÀU{&$|¶¢0-ø|f~°Õ.ÀJT|LyðUq�é/ �3ÀÑ,ï¥(Â<À§GA5§U®F¼÷Ð�RÓ�O)?ZRg|§ÞOåûÞ;èújÜ?ÑÊÎhZ÷¿xAåÈ +ÔýqU#i|?§²ÿùù¨HðÍ~%13ªË¥0Mï @Úeç°°#* 8`>ð$Ê>ÌÔe:ÌÔEú»+(Et@á¡=µ4%Cje!VäNÏQ×ïïYà8g ôá3eÏÕñmÀ�QIá´&#¯_Ãý>»¸ ñÒ<ò-ea�òñ\ØnúCa>¹Ó*HÒ u¢Õf½qÐ-tÓtimÔwIµ~×\L¢ ï3.ù~ôãÑ/ûàÀúnÈ !uB:ÄP£OMõ]J-©á©C 6ÇÑ!4ÔF.¹Ð%7´ÍEi¨S¬ÊpAúª±4qP;Ò°ºïË)z± c +IªôbÊ'í?Gàr´8¼:péY} åý2sSj¦Ýþ\ RCÙxðyKD\ÀÞÕúù7KnäñöpY`6);ô.«µxû4¯caÎË<£±Ý +]D\�!ë 6@ÅÀ`E©µW"´¥[ ¬$iÉ :Ǫ$-HÙm¸âÖñ�\Ó}îT§3#Òitÿ·éí_¯U ý|Ó{¨ +ù x¨øJ(á¦.ôÓ ½Fý hÕÑ âHä¤ÒÅtÍïýã&ÍEu>)l¡de¢I/+H/URk»5F�¶ª8˵´¬Îõ!Ý9Ãäç +6$>Ñ4È (è$F"Uk?6(FÁcNQ.¹Ä¨m +¥ÙSÔ$¤ë}Åz. iê @rK< jMÉ¡!0 ìØ#5=¶"&X7öX×8oÛõÜÀÄOÉ;MtÏ'g<Rç<þUªîö¾¯Wí æ®Ü#ú>_¼=çVîpæÔP¼]êÙ\Ððo¾ÙÆmõÜ +#A*W¤ ÅÛ#Ô!7xX ð% OÍ?¢<S3è["©g3 DËîè¶|AðµW,øºõÐîà +yÉõ«_àóK±Bñ<xEà FHÜÁËxþ 8×á|ÛÒ¦^>ß§Y@/×ð}%·wO�W^âP¢ò ®@¿c?;<ø¾Än@´$È"'A:èf¡ J@ïI¡ë¤£3sý>í ¹}G¸A´´BÖJ°úJ0; lÝPbÃ:Pß!= ª·¡�ü;<)éÓÓzg¤æIj4gúw0OZIxø&J�¾à®+ì²6~»'�P`¾gsfêêXt`¥2O,®èû ¨R<ðöút ?Ãâ +ÔpÐò@ò³'jkiïð>5¼ðýÔr4¬HáhöêøM|=~kH6Îõ÷3G×âDUßo¯´h¹¹4¼p`¶¨ZÍÚ®@§ü»'Ðzåû¥Ävïû-ÿËxÖßö)wYhM�W3pzúU.B +ö=u6®, &4dój .㢠g² âÆuX¨S`F$l)Ð6ÿ);X AÓ :-Õï\½ï·2¸ çWNèrŧÔá@K�Y\_ШíJiÃÞ)lPnwJi´TogZ3¤ ±pLM2>üf(íTEqÇ"Qy°ÞÓħ+1¨¥6à¨&дh}a¿¢ñælÒµ"ß n)Ǫ¢ÑOp´ºf)É:T°PDÃéPÈÉÿ.ßPHEKIÔ©é¥Ö)ïïR§¦ BãyOÜD@XRÉF¾Úi°(HGl2~@$hÏÁ\R§& ]¢ÞáÜNÐÍçÏ@Ïé¥S$�a-é6DACðí +9a>æ"ßZÁúÛXL ! 65aù¸{:ܨhÈãé i +ÍvJÏ®õ´#Q?JT%à9ÈpAVÈ=ß^eYüÕ'X¹ T¤ÔV .#ð⢤Dà14P +üÊkæN_ýõÓMW(ø{,VimjASl!@à £AMf´TßòsϪ%ÔOÁõÓM¾oy·!KÀðx¼¶¹DËçÇ;úû+Ï #*>aþ4ß1ÉA +ÐÎLtȵÎþ|k/ÒSzBM©Ô5¥ñ®¤Ñ!FòU»Ao6./¥b¼V(@|M£(ÕªLÒaàµPbÃ|¤Èsï¨ãr&ù7ÀçãNzíÛý¸ 6+òsÏÛÐ}÷! +÷¯Ãù{±ÂûÞ×õY ˽Lµ�ú¿óhÿLø*>dÙå£üÀSJ>¨Ú�¨Ï©ÕhFßçcQI ¿ zò¯&äZ@Ó,Ãïóù¤b?j^}m`ËûA±�ÙÏPo6ÊÍT¹Þóì^6ÔPÒf:b¹lL>¾`Ô:$µ=äFêÔÔø|<³2=6èTÜÂ|Í_QÊæ÷[Þ÷ +Õ!ùú\Sn¦~,`{¯r¹MkJfhæìÙYÐxKfgúOmÑöXZ¬=С#wÂB >¦8@» H·ü[¿úö¬Ü1÷< +=)ÖohûTñtûÀÜ7ë8ÂËXV,Ýôg¥ú°�ÍÜ Rkò@*+°"Î7ФNM@Ú#Wc=D%�T�J= 2n»á fJÎÚ#Þ>= óéÓ¥DpPçD"T¡|J!Áñ|#ûvi? îë@íÕ`¾ 84ÂT%#¬§îujZACë3l u8+¦¾Úr¤¥m@êº ææ¬ÌhTÀÁ>å>Öe+Y¬HUÞü]["ÊIbêi0¢<MHgH¯ò 1WCxmaÒÕ8Ç«¿Ø+ªÆå¥@jT'¶®c¥@nÇùxúr6|(ª:eZõôG»¹ù¸¡ª²¡U¸§ ¤VOôªòÄn?%ÁTà6õøÓPð7?!ò7)«c'@ i=©Ëu¼ Tæ|¥×&@@ã = Äì¬_}~Tª¤deÜ�qÏ-YÈ-@¥`¹èïQPÇÛ Mj|H,¡ +îµ§DÔ°t¢ë«Q|ËÊ3þj<}Ë)m¬zë×ÛX¡ñ&¬ T"|VÁJPÙ@+ú �ß<rJ\ ¿O?à é ¦odu7å\#í»+Ó¿sÀ!ä¿ØAZÈPí{g¾+§è¶.P6°!6`e&hi_.:N ©a¹»éEǹbzCv¤ ±ÀÅe½þS=%¤¿g¥ÿTÏê!ÖB;®ÕóÙ8o^ÏA_?´c|A£©1CEª çs úâ¼j<=3¦ç Ð 2á9]_dÔÖPH,Á\¯Ö®:~ãÆ«-Õ°~',wK¯ß }ÞðtDC×ñüÓù®ÆóOGü>}9ù<S2ój¼´Z¿¡´&Å|®ãR=Å�ýõÖJÊÂÀÇóÉòr£÷}½ÏF +°övû¾ÒôÊ?~ÿâ¿/Ñ8nç¬w¿BòkLH /g:ø£@4w'PÓ9ÊÎ ¤ Q'7¼ßµB>Ý3C~¾gü|Ïù 3C*ý¨ øtEýÚÝ¿BÕ÷ùQ +â ^ÇÓMéÄ-¦Fòò.Ê<TbüÃ+èúnqгQ(¡0 "3ÒbæURý0)!7ÂЪ!ÌëãÑÚñj=§¥Ü ^Æ£zNu-hAFÏ{¹å½x0ÀäÄèÚaíݧôñPÐ6Lúv {âÒ}Ô_=O\ øÊæÆ]ÕSC#Dg¤óÃ;F<âPHÅÐ# Mñ�ÿr +ZqCûɹÅAÐí'ãQú^3M\0¢e3Èè ¬HgÏlTWt@F"µ¸$£ªÂ¸@peAãmKcçñ,¨ÆS0·<¾to¬ÇÓ]*Äì¯w9UP V8xýYàré^O@³Ð¨& ÚdȤ¨OØÄ¼N@;³ç°niK^"(¥Nm5%Ð)â/%\B4T¨êõ¾_/#%4ÞQÂÀ�Qº):¼ö¥:kìTwU3*\? ÷=J½Ëz h¨øò¸Pði/yéÎÔtPè¼xîæNA½q:6e´&¨D %è +ð¥~ßPPGvP{¶-1oZá ]a©êh7"2«PÀ +2O(@ĸre¼.°Â²ñP ò)¹ÓùÜ#@¯EèoÉè6Ò}hVhà7NêïÖ´¼[ãÄN�Ò¨ ) aæ'¸�æ{¦¤:Pó 7´jòH0Ñ$Ð °TrÁß>B#Bç$#Ô¼+ÝÊ8/JoN _ÉFõÇ+ù �Ï+Ë߷ݤ"T| 6¡îRÉqT;þHôçVàO ðá"M2Á +&ð9 +vK'ðj¥YºI'T+�v Ö";Íæ#ðLÉ\' W¤l!¹#XM@8ó2ÁÌÒ�÷N=kÊ\'X©"ãÏ ä¹"" cÌÊ®& r£eIN÷· M0£-0] N¬JµàÒ͹Pp+¡mŬÑË%Uµ", ðaï-äjÍY®m<¢U ËÃ54h/*U¶#5 Á-M{Ið,)³ºó0N¯W_ÝNpO/W¥>>¶×U)S1ýPH~Cb�zÙ;%XåØÒGêÇDí ãêÞ;ßõQw°}_ý "<I})$ØÂ9>ÃÃê 5¨×{X kßD&XàÄ]ÉÁȤå8{ö(wÜ£i»é]&q®¸GÕ +ìîÑu÷¨ÀîõiÐq*�AR&÷è:ï_y ¯¨«ëUÚ'¸gÜôù0©[Ønr~J±Qµ +SyÌ3-=«Ð izËyV+ 2E¥y(Êö»ÊNZZ©,ÊàöËÁî#. æª + Räh V±lÕÄYÓõáâ½L9ÂF1m=6ª4XBÉçeã96j§1NÓèi ËÆZ© CƵEã¨[pØtò°(?ýî8w<Ríz(}µþÙCÉ õoy(× <j»R¯Àì¡TØ=z³BÐà³RÓ{Ãä váê`<;4Üq0¶ôÎ&bv0Z"sv0�Ñqþ÷lT&Ørø4Êj5ÇY¡Að7iP"ç. ´Ó#gò4¶nÞ{lâ^à¿<ÄÒ@ñKQàzú,ÄD Ïv¡{UXú7ç[â1¸Û 'çnÔè +ħ�9ÛeN@±L§È¨d :&¹ "ï+»òp¬p²®k=°i[6HDʼ?å 2²Íq4ð¦\l)¼_¬KIÈN7SNìß:LÞÑ Kb~ JI¢j>L´]ÈÕæI"b»à˲|ìB~JÒ@áB"¹à²^¾«ß>¸ë×VZçºd÷$±´óÄÕÝ;ξ$TVë§8ªÖO?qTK"jXg?¢&H¹:Ù-AÊ~â-AÊ~â-AeÃþ$¢ª ×\3©Òt?q¾wä 0m-î)¹¼oLÛJd²müAöß&�Nð5Ç]cÈ<>\3©ã£»9~¡Æ«r(áÊîï~<ÝôÅu6}¡º'¹ÉtLðÑ=Q½LqS¯+àm»h£¶íÙM¥¨ÙöÓMõómÏn*IZM@dâÆºò8-ìÒúêO;ÚäÀ¾tÄØ×?ÄJ k'úÃ7Èk3UM�ÞVi©¼ãy\¸ö赤ò¦Cª ø°µ<̨&0óVÀ\¼KÄu@ª ÐåB9רx¬2Á8"~Âb¡-çgز=ýhzóoÀYÀ lײJÛ¥3sþã`µÞJ^ü°yïr@½ÌhQWåÄôZaFJs`û¬Pz¢\oö°²(Æ$¢!yP` õF[²3X¸©ÓG_jñdfy&@Ð@{]@ldÂ#`äA®JݹxÇW}b*"¢«>¬sò�°¹p}Á)QÖ;ÕmO?ó:¯Õ}Áúww ÞðJtõDýWèO ^èßD=r÷P�ÿâóQW¨W)KNÐ@¹w/WD5ø°·`P4ÚIFýSF¤¬ Dî×Î)çÒ,(\(]B¸pF©Þ5q¥a¬È4R·2Á +4ðòTIÜ Ba"äJ²Ì¤Là FâÑPñt;^zQçWÎÏütËõdã<õ|,%\7ñ:!\(éëp¡ÜrU+0å«Þ!ÊÅÓ--ý¾cè,^"¢ÁAèÙM¼Å ì&Þâ<érAKdy?=Yy,}ÄM »ÂF÷~Û j +¥¼HO£ÁÏôhþ!/íÉ+9àRùØhxH/©È-(§z]á!Ué¨Z¯HµÌGÌUS~zõ +øT+b# ¢ +§W÷*Êeª<Õj BrEä ¢ÈSªåÐÇÔ-[ðÈ2ù¿g+pëj&ä¹>ê*Þ%aÞ?_RÕ[0_RÕ/©8´ +Ã[O¿ÀT,DÜH"jígñPߨVÜ<çN.ݼ£IQÝ߸-h)Õñy»zÿRíåæ³ »)+Sª 7e»�=ý¸ônÊô&XR& ÍØÉ`¨²Ïõ§Æ e%7_¯«»)R&Ñj:üÏp*DDZ¥ùR ±Ç «Û£A×ÕíI¢êhÚ+õY ¤É²jÖSU±Há¸bÉÍ?BHtWwFhIzÄCÌV°KÌ4G´CÌ´ÀÃÄD®m<²»nühUW7RkiÜ+rS·ä`C\0ÈÁÁc ËAvuoÉAÆíSr yrunß(æê½$$KoOW7Þ®î°Ìø0ñr0#dÅße¹)kdå�g²B)lXÓUW[géúHXgÌ ìlSlÔ_".�¨+(å ú,(\ÛM.DJÄ JCU%àHذØ1¾tu1¾Céb8ü5ð´c8ö¼iå¶mÃá;mýI9¾½wBj{ÈãÖ!Oµ{ÈÓ£/æ#× L å}'Ö{�RoÁ�YGX@ {ÀA±Q$À¤vª¶`,H:ÀÎ× O)ØØÝ +É�Y! - ÄÞó®>éÕ©'0@¶Qx}æ[sx¤O, òÌ8d[0@Jæ²D0=6ª\̸%âG϶ê YwD2ãÕôq¥¥q5È|O¥JÓ'XØ 4é&ª·!rjâ¶ðÙ0õ@ ÕvÈuHµ;¤Þ[ÎÞÔ40@¹ a.dïr¡ÏÜt'PSªAØ8N©ö@ õi4@j"A ØA õf± Ï jvH½3¤^R¯Àé±q¹æR¯À©«8ÜÔ§Ñ©&°@*.0 «K®@«x7!6¼ÏBÄNA]õÉûÍ»áÉ{ñ¸ (SëjNvwu)'KGÌÏÜ|e,(ådã úHIHÜÔ¤nI]«8ÜAdoí¤À"yæ%ï HªØQ$õæª[Fj½sJµÀ"©'0£Hê Ì(z3¤K®¯ÜĤ>fI5EâN!¤^ERÓÀ"¹N0"©UERo.ótuoqa½Ë í.¶\Øãô{\´pªXªú¸uúì'jK®êã[´XE²ÜBä-ÝW¾ò;ÝBK¢ H%ñô%Q|åaI_¹'= !Q$5 Ì(aë,(Â:FtÙØCtiÐCÈ@q£ HÍ"¹åhƸ`p4cgÁ�CÙÝ}d I,ñB(*m~/<_¢ªÈré^¬ññ5¾W#Ì õ3æGlüÜ£[uc÷¾�éNùî©.úmì¦Ïý¶Õ~ÙÁ¡ÐÝr}iÛP'®*Ëø @¸& �ÌuïPåÊZÊÒ`©'hX°4Î �]u*K»Út«D_UöHØæäË÷s9ßl m¹ÝåcJ¿Í\Ïê<AÐ\Û/ägÇÜé(K]OÐÐ`~*<½;çÏ ×9B=wÛsðÜB¾£4�é£ºã¦¸È Òî9#¹ñZ@{ç¯7;@9}ei^Æ'´Ht]-ãg¨K¦F¨ÏËD»6 D¾õùÂ�£§*ÛU¶+×!éMÿå»o¾ý¹ûr_ßývWyøWfùÏwÌÎßöIÓ®@¿ûÍ×?ýû¿þðûïøÓßøé×/~öó¯¿üíÏ¿ùßïøÍ×þß×/~õãïÿð¯_ÿÓ÷¿þÉ×Ï_¿úýÿõÃß~üúç¯ßýøã_~úí·ÿøÇ??þî÷üé¿ýµ[æßþí?þô?ßþåïyÜãw?þñ?ùúî¿¿ù×ïöÕý?dG +endstream +endobj +333 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 872 0 R +/Name /Im322 +/Width 30 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x;ÀÀÀðm 4��@,Äì@FñAâr.H=H ÄyüPã +d<!Pÿÿÿÿÿÿÿ�T¯ +endstream +endobj +334 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 873 0 R +/Name /Im323 +/Width 43 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`8À� A²I0)&íÿÿÿÿá?dkeÛÉ`ÒLòC ±¡¬bÉlH6BHd÷5�>°á +endstream +endobj +335 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 874 0 R +/Name /Im324 +/Width 43 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``H`�$Räl`á?4É`¡0)&ùÀÀì`¶XÜL&u�1 n2½Èîº�ë;Ö +endstream +endobj +336 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 875 0 R +/Name /Im325 +/Width 30 +/Height 2 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿ@�#Òó +endstream +endobj +337 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 876 0 R +/Name /Im326 +/Width 17 +/Height 49 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`h``#f(b!!J¡PÄØ@Ä��.ßu +endstream +endobj +338 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 877 0 R +/Name /Im327 +/Width 20 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþ Àà Á`Àø áACÂ(R @TÁÀPÏÀ`ÿAþÿæÿ öØ00>�ËQA:Àp�dÈN06cghüÃ��Q$T +endstream +endobj +339 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 878 0 R +/Name /Im328 +/Width 28 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÿA¾Û``|_ÁÀÞ/ÇÀÇÏÎ ÇÏÞ`ÃÏ| ùA?ãü°aH H-HH/ÈY 31ìÚÍt�Þz!1 +endstream +endobj +340 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 879 0 R +/Name /Im329 +/Width 24 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc>ð%Y¥££ø ã9²an°�¡Ì°+6°Ë1°3¡ÿ �,«X +endstream +endobj +341 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 880 0 R +/Name /Im330 +/Width 20 +/Height 2 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÃÿÿ�¦Ý +endstream +endobj +342 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 881 0 R +/Name /Im331 +/Width 11 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xccàcøÄàÿ�>à +endstream +endobj +343 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 882 0 R +/Name /Im332 +/Width 30 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``àa``°âÌø\v WȬ```|�ä600ÈA¸ 4g ÔôôÍÇ,�²/¨ÿÿÿÇÿÿÿÿ��is +endstream +endobj +344 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 883 0 R +/Name /Im333 +/Width 32 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-Í1 À ÐO ¹8�j©R)H9 lô'0¼ùÍ*S="¹¾z)S H¤.¶%gtA§A 2]Èoò9X]Ì=;Òäûö +endstream +endobj +345 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 884 0 R +/Name /Im334 +/Width 22 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÇðÿ?Cýÿö2d>È0È0TÈ0XdSSÖò¤ý@ýÿ ÿ1��¯ +endstream +endobj +346 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 885 0 R +/Name /Im335 +/Width 21 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿÿÿÿÈ0?aø ÃP ÃP!Ã`*À +äÿÿß ÿA'úß�E�<áò +endstream +endobj +347 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 886 0 R +/Name /Im336 +/Width 26 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xEα EÑKeé&®aad14GqJ>cÈi^~n C.1Ø8úóöñ¢ÝÐÚdIàn.PãåbÛÕiwÞº³Z%HùYu»Ë¢î¬fýOí=N-s +endstream +endobj +348 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 887 0 R +/Name /Im337 +/Width 44 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿ@ÀÀÀüÁþdÿ�"H?`²LÚCÈ)! Hþ8Ȧ!Û!!î¸Lþ»ÿÂ/òÀ~l�@y�ÐU +endstream +endobj +349 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 888 0 R +/Name /Im338 +/Width 32 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûðÃÿãÿøïñ?àÿÀüÿãþø0ð?(®'ëÔþëóýÿ ¹ óþa�Ê ÿÿ`�jD;¾ +endstream +endobj +350 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 889 0 R +/Name /Im339 +/Width 28 +/Height 36 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}Í! FáÎHsÇáD# æQöD£ëH6|igÿGܲs27º ¾B9Ô! '¸:ÜÀúqïOtËë¦×í¬¬¦M ¢^ð�¡óË +endstream +endobj +351 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 890 0 R +/Name /Im340 +/Width 22 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÇ0a°@BPÄEòÿ .Pà þÿÿA�H4 +endstream +endobj +352 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 891 0 R +/Name /Im341 +/Width 24 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿ ja? Ãø@áCú�d? ÿ¿Aþ?<TÙ¨èÃsúßPF�2Ù#> +endstream +endobj +353 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 892 0 R +/Name /Im342 +/Width 21 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨±`üoÁþÿó92 dQ�Ep ©±�#9üÍØÿ`üßÀPÃ��Æjm +endstream +endobj +354 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 893 0 R +/Name /Im343 +/Width 23 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÇüï?É6Ðz�F 2`dP cF22`ÄS ÃFl`Ä^ ÃBÿ?PÃ�Iä!ã +endstream +endobj +355 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 894 0 R +/Name /Im344 +/Width 23 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿï?=°à#²óÿ�õ¤ó +endstream +endobj +356 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 895 0 R +/Name /Im345 +/Width 17 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÏðÿCýÆÔAõ0-Y +endstream +endobj +357 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 896 0 R +/Name /Im346 +/Width 22 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÀðÿCý>²2ªÿÿçÿÿ?@�ûh +endstream +endobj +358 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 897 0 R +/Name /Im347 +/Width 19 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcfc`ïGGõÿüÿÿ�~94,+gÃx$�¯-L +endstream +endobj +359 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 898 0 R +/Name /Im348 +/Width 22 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÁðÿCýþf : ÃC@6P¿Aþ?ü?ágag�+CFs ¨ñÇÿÆõ�Z°- +endstream +endobj +360 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 899 0 R +/Name /Im349 +/Width 19 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÀüïûÿüíäØ0>°`xP�Ep ©*jc<ÀßÜÀþùÃ�ZÖ +endstream +endobj +361 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 900 0 R +/Name /Im350 +/Width 21 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«cÿðÿG=ûÙÆPtð=£D0*#C0²#I0= ÃEõìþ·¨g>��Ó%" +endstream +endobj +362 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 901 0 R +/Name /Im351 +/Width 15 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿï?27ÿu��Ò1 +endstream +endobj +363 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 902 0 R +/Name /Im352 +/Width 19 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³ÿß`FXõûöÿlØ0�à J`xð0(`>PÃ4Aþó�Ué +endstream +endobj +364 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 903 0 R +/Name /Im353 +/Width 19 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5̱ À Dѳ\¸dVȰ¥KæQnJ +Ezíÿ:aõ ¸ÆÐ äסûaÝ´Eü<nðÛ6ôû(ÂK × +endstream +endobj +365 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 904 0 R +/Name /Im354 +/Width 19 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÿÁ ÿÁþ?C{Có +Æøÿ10ÿ@6H(Åð�|�"ÆÔð7� Åü�N +endstream +endobj +366 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 905 0 R +/Name /Im355 +/Width 21 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcg`°g`(£ç@t¹ØøØäØlØ,Ø*Ø>°3üÿÿØÐQý�éî +endstream +endobj +367 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 906 0 R +/Name /Im356 +/Width 19 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÁÀÿAþ?sCã8rmØRìÀjä\ øÆ(RÁ|�¨¨¨ù�òV +endstream +endobj +368 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 907 0 R +/Name /Im357 +/Width 19 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÁÀ#Ç ÀÏ ÀÞàÀ~ A¤ûö0b`àg`àa`°``þÀÀ æB¤ÑæÌ~Ñæ@ÄÞ�4h,H�¥ +endstream +endobj +369 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 545 0 R >> /XObject << /Im100 107 0 R /Im33 40 0 R /Im34 41 0 R /Im36 43 0 R /Im36 43 0 R /Im40 47 0 R /Im105 112 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im35 42 0 R /Im46 53 0 R /Im44 51 0 R /Im35 42 0 R /Im32 39 0 R /Im34 41 0 R /Im38 45 0 R /Im35 42 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im35 42 0 R /Im40 47 0 R /Im45 52 0 R /Im36 43 0 R /Im49 56 0 R /Im103 110 0 R /Im35 42 0 R /Im39 46 0 R /Im49 56 0 R /Im104 111 0 R /Im35 42 0 R /Im105 112 0 R /Im104 111 0 R /Im40 47 0 R /Im39 46 0 R /Im105 112 0 R /Im34 41 0 R /Im39 46 0 R /Im43 50 0 R /Im32 39 0 R /Im38 45 0 R /Im101 108 0 R /Im81 88 0 R /Im131 138 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im40 47 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im108 115 0 R /Im101 108 0 R /Im39 46 0 R /Im35 42 0 R /Im48 55 0 R /Im35 42 0 R /Im32 39 0 R /Im34 41 0 R /Im35 42 0 R /Im46 53 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im35 42 0 R /Im48 55 0 R /Im34 41 0 R /Im45 52 0 R /Im49 56 0 R /Im114 121 0 R /Im35 42 0 R /Im39 46 0 R /Im39 46 0 R /Im40 47 0 R /Im45 52 0 R /Im35 42 0 R /Im40 47 0 R /Im38 45 0 R /Im129 136 0 R /Im32 39 0 R /Im38 45 0 R /Im101 108 0 R /Im111 118 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im43 50 0 R /Im35 42 0 R /Im99 106 0 R /Im101 108 0 R /Im33 40 0 R /Im140 147 0 R /Im245 254 0 R /Im246 255 0 R /Im246 255 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im45 52 0 R /Im43 50 0 R /Im35 42 0 R /Im102 109 0 R /Im35 42 0 R /Im45 52 0 R /Im35 42 0 R /Im39 46 0 R /Im34 41 0 R /Im101 108 0 R /Im35 42 0 R /Im31 38 0 R /Im45 52 0 R /Im101 108 0 R /Im40 47 0 R /Im34 41 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im43 50 0 R /Im35 42 0 R /Im99 106 0 R /Im101 108 0 R /Im33 40 0 R /Im245 254 0 R /Im246 255 0 R /Im246 255 0 R /Im325 336 0 R /Im114 121 0 R /Im245 254 0 R /Im325 336 0 R /Im245 254 0 R /Im246 255 0 R /Im129 136 0 R /Im81 88 0 R /Im98 105 0 R /Im35 42 0 R /Im45 52 0 R /Im32 39 0 R /Im35 42 0 R /Im46 53 0 R /Im34 41 0 R /Im99 106 0 R /Im36 43 0 R /Im34 41 0 R /Im49 56 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im101 108 0 R /Im39 46 0 R /Im35 42 0 R /Im45 52 0 R /Im102 109 0 R /Im101 108 0 R /Im33 40 0 R /Im31 38 0 R /Im48 55 0 R /Im31 38 0 R /Im36 43 0 R /Im34 41 0 R /Im39 46 0 R /Im101 108 0 R /Im40 47 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im101 108 0 R /Im40 47 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im45 52 0 R /Im40 47 0 R /Im45 52 0 R /Im140 147 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im102 109 0 R /Im39 46 0 R /Im34 41 0 R /Im48 55 0 R /Im32 39 0 R /Im34 41 0 R /Im45 52 0 R /Im44 51 0 R /Im35 42 0 R /Im35 42 0 R /Im108 115 0 R /Im99 106 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im31 38 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im31 38 0 R /Im32 39 0 R /Im34 41 0 R /Im35 42 0 R /Im46 53 0 R /Im101 108 0 R /Im40 47 0 R /Im40 47 0 R /Im46 53 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im103 110 0 R /Im31 38 0 R /Im43 50 0 R /Im35 42 0 R /Im43 50 0 R /Im31 38 0 R /Im101 108 0 R /Im35 42 0 R /Im39 46 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im43 50 0 R /Im35 42 0 R /Im35 42 0 R /Im99 106 0 R /Im35 42 0 R /Im45 52 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im31 38 0 R /Im38 45 0 R /Im35 42 0 R /Im43 50 0 R /Im81 88 0 R /Im37 44 0 R /Im35 42 0 R /Im104 111 0 R /Im40 47 0 R /Im39 46 0 R /Im35 42 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im99 106 0 R /Im34 41 0 R /Im39 46 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im101 108 0 R /Im35 42 0 R /Im39 46 0 R /Im259 268 0 R /Im46 53 0 R /Im261 270 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im265 274 0 R /Im32 39 0 R /Im34 41 0 R /Im45 52 0 R /Im44 51 0 R /Im35 42 0 R /Im35 42 0 R /Im101 108 0 R /Im31 38 0 R /Im48 55 0 R /Im34 41 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im44 51 0 R /Im49 56 0 R /Im34 41 0 R /Im36 43 0 R /Im31 38 0 R /Im45 52 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im39 46 0 R /Im35 42 0 R /Im102 109 0 R /Im39 46 0 R /Im35 42 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im46 53 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im43 50 0 R /Im35 42 0 R /Im99 106 0 R /Im101 108 0 R /Im33 40 0 R /Im245 254 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im245 254 0 R /Im246 255 0 R /Im48 55 0 R /Im38 45 0 R /Im101 108 0 R /Im44 51 0 R /Im35 42 0 R /Im32 39 0 R /Im33 40 0 R /Im40 47 0 R /Im35 42 0 R /Im45 52 0 R /Im81 88 0 R /Im131 138 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im43 50 0 R /Im31 38 0 R /Im158 165 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im45 52 0 R /Im32 39 0 R /Im35 42 0 R /Im245 254 0 R /Im325 336 0 R /Im245 254 0 R /Im246 255 0 R /Im31 38 0 R /Im36 43 0 R /Im34 41 0 R /Im39 46 0 R /Im102 109 0 R /Im35 42 0 R /Im46 53 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im103 110 0 R /Im34 41 0 R /Im39 46 0 R /Im31 38 0 R /Im34 41 0 R /Im45 52 0 R /Im32 39 0 R /Im35 42 0 R /Im40 47 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im35 42 0 R /Im39 46 0 R /Im39 46 0 R /Im40 47 0 R /Im39 46 0 R /Im103 110 0 R /Im34 41 0 R /Im39 46 0 R /Im31 38 0 R /Im34 41 0 R /Im44 51 0 R /Im36 43 0 R /Im35 42 0 R /Im31 38 0 R /Im36 43 0 R /Im34 41 0 R /Im39 46 0 R /Im102 109 0 R /Im35 42 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im101 108 0 R /Im33 40 0 R /Im31 38 0 R /Im39 46 0 R /Im35 42 0 R /Im43 50 0 R /Im38 45 0 R /Im32 39 0 R /Im35 42 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im45 52 0 R /Im38 45 0 R /Im48 55 0 R /Im44 51 0 R /Im35 42 0 R /Im39 46 0 R /Im40 47 0 R /Im104 111 0 R /Im32 39 0 R /Im38 45 0 R /Im101 108 0 R /Im81 88 0 R /Im173 180 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im40 47 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im33 40 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im46 53 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im43 50 0 R /Im31 38 0 R /Im158 165 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im45 52 0 R /Im32 39 0 R /Im35 42 0 R /Im48 55 0 R /Im38 45 0 R /Im101 108 0 R /Im45 52 0 R /Im40 47 0 R /Im101 108 0 R /Im44 51 0 R /Im35 42 0 R /Im101 108 0 R /Im40 47 0 R /Im40 47 0 R /Im48 55 0 R /Im34 41 0 R /Im36 43 0 R /Im36 43 0 R /Im46 53 0 R /Im44 51 0 R /Im35 42 0 R /Im32 39 0 R /Im34 41 0 R /Im38 45 0 R /Im35 42 0 R /Im31 38 0 R /Im101 108 0 R /Im31 38 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im34 41 0 R /Im38 45 0 R /Im39 46 0 R /Im35 42 0 R /Im40 47 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im34 41 0 R /Im103 110 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im101 108 0 R /Im34 41 0 R /Im39 46 0 R /Im35 42 0 R /Im34 41 0 R /Im32 39 0 R /Im33 40 0 R /Im31 38 0 R /Im35 42 0 R /Im103 110 0 R /Im34 41 0 R /Im44 51 0 R /Im36 43 0 R /Im35 42 0 R /Im81 88 0 R /Im241 250 0 R /Im38 45 0 R /Im39 46 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im48 55 0 R /Im40 47 0 R /Im39 46 0 R /Im35 42 0 R /Im46 53 0 R /Im105 112 0 R /Im33 40 0 R /Im31 38 0 R /Im36 43 0 R /Im35 42 0 R /Im32 39 0 R /Im33 40 0 R /Im40 47 0 R /Im40 47 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im245 254 0 R /Im40 47 0 R /Im45 52 0 R /Im35 42 0 R /Im33 40 0 R /Im34 41 0 R /Im101 108 0 R /Im40 47 0 R /Im101 108 0 R /Im34 41 0 R /Im130 137 0 R /Im35 42 0 R /Im31 38 0 R /Im45 52 0 R /Im101 108 0 R /Im40 47 0 R /Im34 41 0 R /Im32 39 0 R /Im32 39 0 R /Im40 47 0 R /Im38 45 0 R /Im45 52 0 R /Im101 108 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im101 108 0 R /Im101 108 0 R /Im33 40 0 R /Im31 38 0 R /Im43 50 0 R /Im35 42 0 R /Im99 106 0 R /Im101 108 0 R /Im33 40 0 R /Im105 112 0 R /Im31 38 0 R /Im36 43 0 R /Im36 43 0 R /Im44 51 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im34 41 0 R /Im32 39 0 R /Im33 40 0 R /Im35 42 0 R /Im43 50 0 R /Im31 38 0 R /Im45 52 0 R /Im101 108 0 R /Im40 47 0 R /Im38 45 0 R /Im39 46 0 R /Im45 52 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im102 109 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im34 41 0 R /Im38 45 0 R /Im110 117 0 R /Im32 39 0 R /Im31 38 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im36 43 0 R /Im49 56 0 R /Im36 43 0 R /Im34 41 0 R /Im39 46 0 R /Im102 109 0 R /Im35 42 0 R /Im45 52 0 R /Im38 45 0 R /Im48 55 0 R /Im44 51 0 R /Im35 42 0 R /Im39 46 0 R /Im40 47 0 R /Im104 111 0 R /Im35 42 0 R /Im103 110 0 R /Im34 41 0 R /Im36 43 0 R /Im38 45 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im99 106 0 R /Im34 41 0 R /Im31 38 0 R /Im39 46 0 R /Im32 39 0 R /Im34 41 0 R /Im45 52 0 R /Im44 51 0 R /Im35 42 0 R /Im43 50 0 R /Im35 42 0 R /Im101 108 0 R /Im35 42 0 R /Im39 46 0 R /Im48 55 0 R /Im31 38 0 R /Im45 52 0 R /Im35 42 0 R /Im43 50 0 R /Im31 38 0 R /Im45 52 0 R /Im34 41 0 R /Im39 46 0 R /Im35 42 0 R /Im34 41 0 R /Im40 47 0 R /Im45 52 0 R /Im34 41 0 R /Im44 51 0 R /Im36 43 0 R /Im35 42 0 R /Im101 108 0 R /Im31 38 0 R /Im48 55 0 R /Im35 42 0 R /Im81 88 0 R /Im358 371 0 R /Im108 115 0 R /Im99 106 0 R /Im35 42 0 R /Im39 46 0 R /Im31 38 0 R /Im48 55 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im106 113 0 R /Im45 52 0 R /Im34 41 0 R /Im36 43 0 R /Im36 43 0 R /Im49 56 0 R /Im36 43 0 R /Im35 42 0 R /Im43 50 0 R /Im101 108 0 R /Im40 47 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im32 39 0 R /Im33 40 0 R /Im40 47 0 R /Im31 38 0 R /Im32 39 0 R /Im35 42 0 R /Im245 254 0 R /Im246 255 0 R /Im258 267 0 R /Im359 372 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im245 254 0 R /Im258 267 0 R /Im151 158 0 R /Im104 111 0 R /Im40 47 0 R /Im39 46 0 R /Im174 181 0 R /Im166 173 0 R /Im175 182 0 R /Im164 171 0 R /Im176 183 0 R /Im177 184 0 R /Im178 185 0 R /Im174 181 0 R /Im174 181 0 R /Im166 173 0 R /Im81 88 0 R /Im131 138 0 R /Im101 108 0 R /Im101 108 0 R /Im38 45 0 R /Im39 46 0 R /Im45 52 0 R /Im35 42 0 R /Im43 50 0 R /Im40 47 0 R /Im38 45 0 R /Im101 108 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im101 108 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im103 110 0 R /Im34 41 0 R /Im39 46 0 R /Im31 38 0 R /Im34 41 0 R /Im45 52 0 R /Im32 39 0 R /Im35 42 0 R /Im40 47 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im35 42 0 R /Im39 46 0 R /Im39 46 0 R /Im40 47 0 R /Im39 46 0 R /Im103 110 0 R /Im34 41 0 R /Im39 46 0 R /Im31 38 0 R /Im34 41 0 R /Im44 51 0 R /Im36 43 0 R /Im35 42 0 R /Im31 38 0 R /Im45 52 0 R /Im32 39 0 R /Im39 46 0 R /Im35 42 0 R /Im34 41 0 R /Im35 42 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im45 52 0 R /Im38 45 0 R /Im48 55 0 R /Im44 51 0 R /Im35 42 0 R /Im39 46 0 R /Im40 47 0 R /Im104 111 0 R /Im43 50 0 R /Im31 38 0 R /Im32 39 0 R /Im40 47 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im44 51 0 R /Im40 47 0 R /Im34 41 0 R /Im39 46 0 R /Im43 50 0 R /Im46 53 0 R /Im105 112 0 R /Im33 40 0 R /Im31 38 0 R /Im32 39 0 R /Im33 40 0 R /Im31 38 0 R /Im34 41 0 R /Im45 52 0 R /Im34 41 0 R /Im101 108 0 R /Im38 45 0 R /Im39 46 0 R /Im34 41 0 R /Im36 43 0 R /Im48 55 0 R /Im35 42 0 R /Im34 41 0 R /Im38 45 0 R /Im39 46 0 R /Im35 42 0 R /Im40 47 0 R /Im104 111 0 R /Im101 108 0 R /Im31 38 0 R /Im48 55 0 R /Im35 42 0 R /Im31 38 0 R /Im45 52 0 R /Im173 180 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im36 43 0 R /Im36 43 0 R /Im40 47 0 R /Im81 88 0 R /Im109 116 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im104 111 0 R /Im40 47 0 R /Im39 46 0 R /Im35 42 0 R /Im46 53 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im99 106 0 R /Im34 41 0 R /Im39 46 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im101 108 0 R /Im35 42 0 R /Im39 46 0 R /Im259 268 0 R /Im46 53 0 R /Im261 270 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im265 274 0 R /Im105 112 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im35 42 0 R /Im101 108 0 R /Im31 38 0 R /Im48 55 0 R /Im34 41 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im104 111 0 R /Im40 47 0 R /Im39 46 0 R /Im35 42 0 R /Im34 41 0 R /Im32 39 0 R /Im33 40 0 R /Im102 109 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im99 106 0 R /Im33 40 0 R /Im34 41 0 R /Im35 42 0 R /Im81 88 0 R /Im131 138 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im43 50 0 R /Im35 42 0 R /Im39 46 0 R /Im101 108 0 R /Im40 47 0 R /Im43 50 0 R /Im40 47 0 R /Im101 108 0 R /Im33 40 0 R /Im31 38 0 R /Im46 53 0 R /Im35 42 0 R /Im103 110 0 R /Im34 41 0 R /Im36 43 0 R /Im38 45 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im99 106 0 R /Im34 41 0 R /Im31 38 0 R /Im39 46 0 R /Im114 121 0 R /Im248 257 0 R /Im246 255 0 R /Im46 53 0 R /Im248 257 0 R /Im129 136 0 R /Im105 112 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im43 50 0 R /Im35 42 0 R /Im101 108 0 R /Im35 42 0 R /Im39 46 0 R /Im48 55 0 R /Im31 38 0 R /Im45 52 0 R /Im35 42 0 R /Im43 50 0 R /Im104 111 0 R /Im39 46 0 R /Im40 47 0 R /Im48 55 0 R /Im99 106 0 R /Im40 47 0 R /Im31 38 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im105 112 0 R /Im33 40 0 R /Im31 38 0 R /Im32 39 0 R /Im33 40 0 R /Im40 47 0 R /Im32 39 0 R /Im32 39 0 R /Im38 45 0 R /Im39 46 0 R /Im39 46 0 R /Im35 42 0 R /Im43 50 0 R /Im35 42 0 R /Im108 115 0 R /Im34 41 0 R /Im32 39 0 R /Im101 108 0 R /Im36 43 0 R /Im49 56 0 R /Im34 41 0 R /Im101 108 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im43 50 0 R /Im35 42 0 R /Im99 106 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im101 108 0 R /Im105 112 0 R /Im33 40 0 R /Im31 38 0 R /Im32 39 0 R /Im33 40 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im101 108 0 R /Im35 42 0 R /Im101 108 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im33 40 0 R /Im34 41 0 R /Im36 43 0 R /Im36 43 0 R /Im40 47 0 R /Im105 112 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im101 108 0 R /Im34 41 0 R /Im130 137 0 R /Im35 42 0 R /Im99 106 0 R /Im36 43 0 R /Im34 41 0 R /Im32 39 0 R /Im35 42 0 R /Im81 88 0 R /Im131 138 0 R /Im45 52 0 R /Im99 106 0 R /Im39 46 0 R /Im35 42 0 R /Im32 39 0 R /Im35 42 0 R /Im43 50 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im101 108 0 R /Im35 42 0 R /Im101 108 0 R /Im31 38 0 R /Im101 108 0 R /Im101 108 0 R /Im38 45 0 R /Im39 46 0 R /Im45 52 0 R /Im35 42 0 R /Im43 50 0 R /Im40 47 0 R /Im38 45 0 R /Im101 108 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im101 108 0 R /Im46 53 0 R /Im38 45 0 R /Im45 52 0 R /Im43 50 0 R /Im35 42 0 R /Im39 46 0 R /Im101 108 0 R /Im40 47 0 R /Im38 45 0 R /Im39 46 0 R /Im45 52 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im32 39 0 R /Im40 47 0 R /Im45 52 0 R /Im43 50 0 R /Im31 38 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im46 53 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im34 41 0 R /Im36 43 0 R /Im36 43 0 R /Im49 56 0 R /Im39 46 0 R /Im35 42 0 R /Im34 41 0 R /Im32 39 0 R /Im33 40 0 R /Im35 42 0 R /Im43 50 0 R /Im35 42 0 R /Im99 106 0 R /Im101 108 0 R /Im33 40 0 R /Im125 132 0 R /Im357 368 0 R /Im40 47 0 R /Im39 46 0 R /Im125 132 0 R /Im359 372 0 R /Im31 38 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im40 47 0 R /Im99 106 0 R /Im35 42 0 R /Im45 52 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im48 55 0 R /Im31 38 0 R /Im43 50 0 R /Im102 109 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im99 106 0 R /Im33 40 0 R /Im34 41 0 R /Im35 42 0 R /Im40 47 0 R /Im45 52 0 R /Im34 41 0 R /Im327 338 0 R /Im38 45 0 R /Im45 52 0 R /Im327 338 0 R /Im42 49 0 R /Im157 164 0 R /Im264 273 0 R /Im339 350 0 R /Im140 147 0 R /Im125 132 0 R /Im162 169 0 R /Im326 337 0 R /Im30 37 0 R /Im357 368 0 R /Im162 169 0 R /Im105 112 0 R /Im40 47 0 R /Im39 46 0 R /Im130 137 0 R /Im101 108 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im31 38 0 R /Im45 52 0 R /Im32 39 0 R /Im40 47 0 R /Im45 52 0 R /Im101 108 0 R /Im39 46 0 R /Im34 41 0 R /Im101 108 0 R /Im101 108 0 R /Im40 47 0 R /Im43 50 0 R /Im35 42 0 R /Im99 106 0 R /Im101 108 0 R /Im33 40 0 R /Im125 132 0 R /Im125 132 0 R /Im40 47 0 R /Im39 46 0 R /Im125 132 0 R /Im170 177 0 R /Im104 111 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im35 42 0 R /Im39 46 0 R /Im36 43 0 R /Im49 56 0 R /Im34 41 0 R /Im32 39 0 R /Im33 40 0 R /Im31 38 0 R /Im35 42 0 R /Im103 110 0 R /Im35 42 0 R /Im43 50 0 R /Im44 51 0 R /Im49 56 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im44 51 0 R /Im39 46 0 R /Im38 45 0 R /Im101 108 0 R /Im35 42 0 R /Im140 147 0 R /Im104 111 0 R /Im40 47 0 R /Im39 46 0 R /Im32 39 0 R /Im35 42 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im102 109 0 R /Im39 46 0 R /Im34 41 0 R /Im48 55 0 R /Im81 88 0 R /Im109 116 0 R /Im33 40 0 R /Im38 45 0 R /Im46 53 0 R /Im99 106 0 R /Im40 47 0 R /Im31 38 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im39 46 0 R /Im35 42 0 R /Im34 41 0 R /Im32 39 0 R /Im33 40 0 R /Im35 42 0 R /Im43 50 0 R /Im104 111 0 R /Im39 46 0 R /Im40 47 0 R /Im48 55 0 R /Im101 108 0 R /Im40 47 0 R /Im38 45 0 R /Im39 46 0 R /Im45 52 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im99 106 0 R /Im40 47 0 R /Im31 38 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im34 41 0 R /Im101 108 0 R /Im43 50 0 R /Im35 42 0 R /Im99 106 0 R /Im101 108 0 R /Im33 40 0 R /Im360 373 0 R /Im44 51 0 R /Im49 56 0 R /Im34 41 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im34 41 0 R /Im36 43 0 R /Im112 119 0 R /Im113 120 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im105 112 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im38 45 0 R /Im35 42 0 R /Im43 50 0 R /Im101 108 0 R /Im40 47 0 R /Im35 42 0 R /Im101 108 0 R /Im31 38 0 R /Im48 55 0 R /Im34 41 0 R /Im101 108 0 R /Im35 42 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im99 106 0 R /Im34 41 0 R /Im39 46 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im101 108 0 R /Im35 42 0 R /Im39 46 0 R /Im81 88 0 R /Im241 250 0 R /Im31 38 0 R /Im102 109 0 R /Im38 45 0 R /Im39 46 0 R /Im35 42 0 R /Im357 368 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im359 372 0 R /Im33 40 0 R /Im40 47 0 R /Im105 112 0 R /Im32 39 0 R /Im34 41 0 R /Im81 88 0 R /Im170 177 0 R /Im46 53 0 R /Im162 169 0 R /Im162 169 0 R /Im162 169 0 R /Im35 42 0 R /Im103 110 0 R /Im34 41 0 R /Im36 43 0 R /Im38 45 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im99 106 0 R /Im34 41 0 R /Im31 38 0 R /Im39 46 0 R /Im361 374 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im32 39 0 R /Im40 47 0 R /Im39 46 0 R /Im39 46 0 R /Im35 42 0 R /Im99 106 0 R /Im40 47 0 R /Im45 52 0 R /Im43 50 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im99 106 0 R /Im34 41 0 R /Im39 46 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im101 108 0 R /Im35 42 0 R /Im39 46 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im36 43 0 R /Im31 38 0 R /Im45 52 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im34 41 0 R /Im99 106 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im108 115 0 R /Im31 38 0 R /Im48 55 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im34 41 0 R /Im101 108 0 R /Im170 177 0 R /Im151 158 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im359 372 0 R /Im359 372 0 R /Im43 50 0 R /Im31 38 0 R /Im32 39 0 R /Im46 53 0 R /Im39 46 0 R /Im35 42 0 R /Im99 106 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im36 43 0 R /Im49 56 0 R /Im81 88 0 R /Im109 116 0 R /Im33 40 0 R /Im35 42 0 R /Im102 109 0 R /Im40 47 0 R /Im40 47 0 R /Im43 50 0 R /Im45 52 0 R /Im35 42 0 R /Im40 47 0 R /Im104 111 0 R /Im106 113 0 R /Im101 108 0 R /Im31 38 0 R /Im45 52 0 R /Im40 47 0 R /Im101 108 0 R /Im40 47 0 R /Im45 52 0 R /Im36 43 0 R /Im49 56 0 R /Im103 110 0 R /Im31 38 0 R /Im38 45 0 R /Im34 41 0 R /Im36 43 0 R /Im36 43 0 R /Im49 56 0 R /Im40 47 0 R /Im44 51 0 R /Im103 110 0 R /Im31 38 0 R /Im40 47 0 R /Im38 45 0 R /Im44 51 0 R /Im38 45 0 R /Im101 108 0 R /Im34 41 0 R /Im36 43 0 R /Im40 47 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im102 109 0 R /Im39 46 0 R /Im35 42 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im46 53 0 R /Im32 39 0 R /Im40 47 0 R /Im35 42 0 R /Im110 117 0 R /Im32 39 0 R /Im31 38 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im40 47 0 R /Im104 111 0 R /Im43 50 0 R /Im35 42 0 R /Im101 108 0 R /Im35 42 0 R /Im39 46 0 R /Im48 55 0 R /Im31 38 0 R /Im45 52 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im111 118 0 R /Im267 276 0 R /Im362 375 0 R /Im179 186 0 R /Im111 118 0 R /Im40 47 0 R /Im104 111 0 R /Im34 41 0 R /Im44 51 0 R /Im40 47 0 R /Im38 45 0 R /Im101 108 0 R /Im162 169 0 R /Im81 88 0 R /Im126 133 0 R /Im127 134 0 R /Im31 38 0 R /Im45 52 0 R /Im43 50 0 R /Im31 38 0 R /Im32 39 0 R /Im34 41 0 R /Im101 108 0 R /Im35 42 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im101 108 0 R /Im40 47 0 R /Im45 52 0 R /Im36 43 0 R /Im49 56 0 R /Im40 47 0 R /Im48 55 0 R /Im35 42 0 R /Im357 368 0 R /Im363 376 0 R /Im40 47 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im103 110 0 R /Im34 41 0 R /Im39 46 0 R /Im31 38 0 R /Im34 41 0 R /Im45 52 0 R /Im32 39 0 R /Im35 42 0 R /Im31 38 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im43 50 0 R /Im34 41 0 R /Im101 108 0 R /Im34 41 0 R /Im31 38 0 R /Im34 41 0 R /Im32 39 0 R /Im39 46 0 R /Im31 38 0 R /Im44 51 0 R /Im34 41 0 R /Im44 51 0 R /Im36 43 0 R /Im35 42 0 R /Im101 108 0 R /Im40 47 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im40 47 0 R /Im48 55 0 R /Im35 42 0 R /Im39 46 0 R /Im39 46 0 R /Im40 47 0 R /Im39 46 0 R /Im81 88 0 R /Im109 116 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im104 111 0 R /Im40 47 0 R /Im39 46 0 R /Im35 42 0 R /Im46 53 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im36 43 0 R /Im31 38 0 R /Im45 52 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im48 55 0 R /Im40 47 0 R /Im43 50 0 R /Im35 42 0 R /Im36 43 0 R /Im31 38 0 R /Im32 39 0 R /Im36 43 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im36 43 0 R /Im49 56 0 R /Im38 45 0 R /Im31 38 0 R /Im101 108 0 R /Im34 41 0 R /Im44 51 0 R /Im36 43 0 R /Im35 42 0 R /Im81 88 0 R /Im325 336 0 R /Im125 132 0 R /Im360 373 0 R /Im325 336 0 R /Im125 132 0 R /Im170 177 0 R /Im325 336 0 R /Im151 158 0 R /Im325 336 0 R /Im359 372 0 R /Im162 169 0 R /Im359 372 0 R /Im151 158 0 R /Im125 132 0 R /Im170 177 0 R /Im125 132 0 R /Im360 373 0 R /Im248 257 0 R /Im246 255 0 R /Im325 336 0 R /Im125 132 0 R /Im360 373 0 R /Im325 336 0 R /Im125 132 0 R /Im170 177 0 R /Im325 336 0 R /Im151 158 0 R /Im325 336 0 R /Im359 372 0 R /Im162 169 0 R /Im359 372 0 R /Im151 158 0 R /Im125 132 0 R /Im170 177 0 R /Im125 132 0 R /Im360 373 0 R /Im248 257 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im365 378 0 R /Im366 379 0 R /Im367 380 0 R /Im368 381 0 R /Im81 88 0 R /Im369 382 0 R /Im370 383 0 R /Im371 384 0 R /Im365 378 0 R /Im372 385 0 R /Im367 380 0 R /Im373 386 0 R /Im369 382 0 R /Im81 88 0 R /Im369 382 0 R /Im369 382 0 R /Im374 387 0 R /Im365 378 0 R /Im375 388 0 R /Im367 380 0 R /Im369 382 0 R /Im81 88 0 R /Im376 389 0 R /Im377 390 0 R /Im378 391 0 R /Im365 378 0 R /Im379 392 0 R /Im179 186 0 R /Im367 380 0 R /Im369 382 0 R /Im81 88 0 R /Im374 387 0 R /Im380 393 0 R /Im368 381 0 R /Im241 250 0 R /Im31 38 0 R /Im102 109 0 R /Im38 45 0 R /Im39 46 0 R /Im35 42 0 R /Im357 368 0 R /Im171 178 0 R /Im264 273 0 R /Im35 42 0 R /Im36 43 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im44 51 0 R /Im35 42 0 R /Im101 108 0 R /Im105 112 0 R /Im35 42 0 R /Im35 42 0 R /Im45 52 0 R /Im248 257 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im248 257 0 R /Im246 255 0 R /Im34 41 0 R /Im101 108 0 R /Im170 177 0 R /Im151 158 0 R /Im43 50 0 R /Im31 38 0 R /Im32 39 0 R /Im381 394 0 R /Im220 227 0 R /Im221 228 0 R /Im222 229 0 R /Im223 230 0 R /Im224 231 0 R /Im225 232 0 R /Im226 233 0 R /Im220 227 0 R /Im220 227 0 R /Im221 228 0 R /Im382 395 0 R /Im187 194 0 R /Im185 192 0 R /Im184 191 0 R /Im193 200 0 R /Im213 220 0 R /Im204 211 0 R /Im193 200 0 R /Im188 195 0 R /Im183 190 0 R /Im190 197 0 R /Im182 189 0 R /Im191 198 0 R /Im204 211 0 R /Im182 189 0 R /Im202 209 0 R /Im188 195 0 R /Im183 190 0 R /Im190 197 0 R /Im182 189 0 R /Im193 200 0 R /Im198 205 0 R /Im198 205 0 R /Im186 193 0 R /Im190 197 0 R /Im383 396 0 R /Im183 190 0 R /Im199 206 0 R /Im193 200 0 R /Im188 195 0 R /Im185 192 0 R /Im187 194 0 R /Im188 195 0 R /Im201 208 0 R /Im185 192 0 R /Im213 220 0 R /Im190 197 0 R /Im227 234 0 R /Im190 197 0 R /Im194 201 0 R /Im194 201 0 R /Im187 194 0 R /Im190 197 0 R /Im191 198 0 R /Im384 397 0 R /Im183 190 0 R /Im182 189 0 R /Im182 189 0 R /Im183 190 0 R /Im182 189 0 R /Im227 234 0 R /Im385 398 0 R /Im213 220 0 R /Im190 197 0 R /Im227 234 0 R /Im386 399 0 R /Im232 239 0 R /Im387 400 0 R /Im388 401 0 R /Im232 239 0 R /Im233 240 0 R /Im389 402 0 R /Im387 400 0 R /Im235 242 0 R /Im235 242 0 R /Im385 398 0 R /Im384 397 0 R /Im183 190 0 R /Im188 195 0 R /Im201 208 0 R /Im193 200 0 R /Im186 193 0 R /Im185 192 0 R /Im187 194 0 R /Im190 197 0 R /Im213 220 0 R /Im204 211 0 R /Im188 195 0 R /Im183 190 0 R /Im190 197 0 R /Im182 189 0 R /Im190 197 0 R /Im191 198 0 R /Im207 214 0 R /Im217 224 0 R /Im207 214 0 R /Im207 214 0 R /Im207 214 0 R /Im233 240 0 R /Im217 224 0 R /Im390 403 0 R /Im190 197 0 R /Im186 193 0 R /Im183 190 0 R /Im182 189 0 R /Im187 194 0 R /Im188 195 0 R /Im193 200 0 R /Im182 189 0 R /Im202 209 0 R /Im185 192 0 R /Im196 203 0 R /Im184 191 0 R /Im193 200 0 R /Im213 220 0 R /Im204 211 0 R /Im185 192 0 R /Im391 404 0 R /Im187 194 0 R /Im188 195 0 R /Im193 200 0 R /Im182 189 0 R /Im194 201 0 R /Im187 194 0 R /Im191 198 0 R /Im190 197 0 R /Im186 193 0 R /Im384 397 0 R /Im183 190 0 R /Im182 189 0 R /Im182 189 0 R /Im183 190 0 R /Im182 189 0 R /Im227 234 0 R /Im198 205 0 R /Im186 193 0 R /Im190 197 0 R /Im195 202 0 R /Im193 200 0 R /Im195 202 0 R /Im183 190 0 R /Im213 220 0 R /Im183 190 0 R /Im188 195 0 R /Im189 196 0 R /Im387 400 0 R /Im392 405 0 R /Im207 214 0 R /Im217 224 0 R /Im393 406 0 R /Im393 406 0 R /Im217 224 0 R /Im359 372 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 370 0 R +>> +endobj +370 0 obj +<< +/Length 908 0 R +/Filter /FlateDecode +>> +stream +xÝ}I,9rÞ½Å;Õ¶XxQ4ÓEFçÈ49ÒkC¶lLÿ^pdEÄçÿÒ,³ßeºêMÁpø_þüÓ?|ûóOáÛ_~úóOé#÷ácäËÇoSø(Cþ6ácÆo¿ûù§ßü÷Ãúÿí¿ýôÖé°~þÈëÿNå#Çõ)o;~àó)Ç1£¯Ïúúh]¾ÓrmóKËó uÓÇ8£å+Áú0#�íîB@Ø?`D8m@C@¶ëK³²~Fß_ÎûO®OðûÑJ¼!Aú9Q¯¿(à?õób»ÀðLãv?yçò A@Á%BóéU'¨8Y/P!Ài2à�êú9¡ýÏæ¨"ÊM7:@âÀ±@à�XÄ`Ê÷£íûE,BÌ",bbßÜþÒag%¤q@,HäÓ÷5Gª<Öïï%Ø çõuÿÚì<Û.@%�lP°DòÇ0£HCøâfh 1)Íõ«a:Æ)B>ñv )A;ðt*¦A3§Õ`P*è +,4Xo ïgÀCX§±8í°º~û7¨á;%E´ ¦ÇÓ<X ±8ìÜÿ%Íåní�Ì Ì«ö--èB2èñzéѳ×P´¾ÃÈÊQ³ÎØ0óPH#! ¡ý÷ t&ræ,©9K*CK�]�ÖÄyÄ4sq$¨b`$hÇÀdófEdhJäÔï/6SDÃe@RÌîMq ðùK04c<BsK&wX£À©Ú©øDÃvëí`F·yDËÍԿؾ®ºâC½üýz{,HQçöC°í_cÞ-u^f^õüâH^_ E$tþ³×üJéK?âìÈûö%K£þ` ¢ß0fèëá÷¬º³+&ôýó ªø¡ø°s äàý/Pa[,êÌ@ü«$¸£¦|"ÁhÇ0!&4;" +»#% }¥ATU{@ÁêCÕÒÍNó [¨glÜRu1$aýþ´�"oVA>0KâØøð³$^S.`A ã¶åθPZ}A@BH(ñÁ ij(\͵{håî[O�N Ú�¨4ØQ «%N§6ÐÊVsPéhÏßÖRß?¡ÓY.Ö¼]¥ ¤àÌ J³k!!§Ëò¼ÜMÓ©²Ä W1ÒãN Gt¬F`ìöTÆÊÜPÊÜnOf£G G¤ÆQ²"@gln´Í Ë÷¨f. ÌAÍ<BÖÔ´Ëå +¡APY?{IࢴP¶]hÓÛµPl>Ò +ðûf-TäáÕväþ·ÀÒW/;K¸[f�%=áðy³·Éýç `ͪü¿[n×@aÈèóöOX\tKoò¢/êÄ_H °ÃnA¡í Óc´Ø�L§á#o�r}Øùc4$´¸Òtæ¯ãJzR´aQ=ÃlgPw0gòÁv :WMpì±xh/a©×°;Ãù ò, ïlÍq°7"dF»5ØB3{ad~ÙB3çý5ºÿd±ým"®xgå"UOIôYý9°IXg2 ÓËDý÷íûÉýËãÞ`ÿXÇi6©bþfýiîTç¶ÿ/Ý)54µ1°Uz0ZjHaæù&Â: ïÛ¯ Åì½Á̹" u4.HÙfj¯d© _ÉÔïc)rú¾& ÒµY +mF)¤²<ñ^°JA32;<Ò4#1vöHÕ ,$ g(EìyX7 øôÄ`ÀZºb^ À-:~Ø@\Ç}ÊÑL#¨ +í¹âÃÖ±Ýúý ¹eÈêý}#Oc½ÁüõûGÒÁ¹9ëºe +]A=,ÅXG¦rlÏÆ´Æe0zæ)zæ p²ZQ¤ + cXÚR®¾m`=$o«Eæ M-»[n kÞ )ÑAëæ/ì(¼û%Q»Cx¿ü$ÕL KíO<Y¥h)ÀïÛb2í_ÍÓ+t¿{4#Áõö<yYÜïßçRi½Æ»hm·$ªqEy¸`>õ�¤ßª·ÅD@j\sFÜñ0÷Þ@¥ yÜSÐIxª¾8äÀ_|@âÏþ.Zßâ:^@GP�� %&ÙNŽaêù�J8®ØkLx'ì©ÂqD7Øá´xV·õhçõ*ælBÀeÝÓd³Ð¢YøÃZ$ øÍ<UiIRȰ¿®µhS·'§ß|2¬F"2ºÀ-²MéUsÊäádDL^Ù jRW,p"å%ÁiX 6[¢i±)MæÁ&õ-«¦eHAOÆ£ ÕïCdÈç44ü}éHª®ÝÚjîLf +hÎÏ)H"vÜî,,¨=+ç©æìÖÇådIo78ß??®ÖħíOÖã×ô¦ÃrséùJj·Hà~}Géy¨¬=�ITjVjäá�UOèûöþ!!°¾+EfA°ç%Ûô²'9Àð¥V/°:"ïÛËÖ +¤@û÷krËÕ÷Õ`VõChNËôXD²°n@¹ê\]ÚÂgÀ@ 8bµjv £xbáîîIøì}ùG0l`´»¢Õ¸¢A5yØÜJÎß?ë ñÓÊ}, AØsÆ`À IáÎðÌݸ &î°£ÈæDó4yPu¥Ú@+ õ¨=/¢ZÒWbXõ%,¨" õ¸^®õ¸ÝËH +yXoAYÀÆ�ì�ÔGJK±éa51e,�<Ñù;ú¿ÌèþìÅ2iß·¿éVVm !m/þWØkHç`¥Å¹ÑëMT|a÷ è)öAhÁ�I®j!{bOAZE5_ÞÆBÇb²ãÔ¼ ÉhJ«yAØ·çA[¾$CÕJ^!$ÕJ^!$ÕJ×<øuµÒµùuµÒÕjJ´6s§ÙNòÙ-·»â¢§ÑU# +l÷õêv¿{sjí²�ÜA7Pyf��Ô¨�ô¤ d´ÁD=êú¨¯§H&WúÛÄÐWE2j,¤ @F¸Á½ðh¤!52¡+< *E{jdÂÌÒ°Y�J;ã+&Öc1hÿ(«¤%b»A½ñ`¡ZS11±ßÚßlÝz{JÉ9 àliõ-1äQ?`ÐìÉÆH¸'7§f\ÑÞ~m §ýM_*¾ +õ$ Á n Ø+õf¸{Gd¬í-±Û÷UW +{¥àÖÐØ"Äô2'ÄámT«wݪnB`¥W½kæxUyªÏ¢ª\ ¨Å1¡©AMØQhLÖ^h`gÕZ7ñåVkÜÕ½%MÍÞÚ×Ü5Ñèók+·þ5^= ûÙX#ðìRq¤HH:_\ýA{<Úv&g¤Èír<HÉñePGÂßÙUÍVBR«. YhFþH-ìïJe°YÓz<�sPYªú °¬.¹9;¤`oÂ<£æ÷«_ë@S@»õv$Îè~¹YþHbÀ~¹Yü,iójï|ýìIköCàáÍzAHw¿ÞÚê\+ìé³Å&¾ª £. Ã"Ú@GbN0P¡Vé«%é2 ¤!óÕ ^f&]°Í*:âcß?û±z0]@OjÙÙn©I^, §&A +°'÷#|IAJ$bȦTQ¢þöß7Jn-�Û[îD(CÍïQxlLè{bQUqAÂút0Ч{!@2@[÷¢�-"G´×biè:fdõ÷BVÝ�l¡°ýþÍ.@\î½& IJê-w íá="Ò=V/úØ@}ÏqùfÙ¤Ul×¶õÓÃÌRTê®xPEaAR°§éPDl¯²¡µw²nåQf?ÝËê1;°'b/4[lºÿŦEôܬBY +»%¡/jLÄXC[P×JLèþ»F{AC®£á$@;k#æ+êUÐ0?)m0 ìOJÚ¸'ÀÉ^¡éEÎ%±±O&ÄÑ£ºÍ� ¡ówXâ-ÖÏÂûPX^.D ÐróöÅÝ-ïÈëXàîÍf°ø»å5>:}G¯ O)èû*5ÊþC,ép�5³(ÁØI ËþìÑÄoÐÐ>¸®/Îë¯æÌyrÎç¸U¹]P°Þq'!üwÌM÷w5gþ°ÞY&Áì+ÖCIÅÀ«=õö¡RV¢n ÀØ;æÅAÕ2Ä^¨)â¯D +M7¨î¿ØDÞ±±@G©|Ë«ºä%#ûõö´¢ ò ³M©±¹ÑÚ3ã ÷D#A»<ØHPåÔ±`nL-ozLBR¬§çOzÔ^¥Ð::X#¹êaWñT»È_^Â(ìFÙP¥:k¾_I4iàÙ4ÙPÍPÚ»¨ÏöpÜb³eT_v@\lÏñÎ�Ô`Ѹ¬ô»Ä×e"j8.!cÎÐ*ý.iµyp¶9z4ËfKª-c¶éÞóq=já$-;ÆÁ- ö&ðyBz´+/ɰB?«"W�ãgèá(ô}»;] !âZ^4EÍ"XæÔ_s6§>Üé©dãjM|¦C8³Ö .`½]õìg8Ìðëfñ#¡Ðýr{( ¶.?¬7«¯Öñéy±°ÝzG,ìb½ËàüeÚãÓÅõëî!Ì6pKÌZá|ië À@O¥fA$®P«3´aà2vÁzbIÂsB,d%iúvEj@zAèi¾+ÅÝL$á,Ä=í6`p©£P±hHÇ'ë-vÁê HV û2Ü=XFÓ ê=§¢IéëëèY5YõÖ³ + +!óbuÀ {HzAèdбG2ê$¤~1*¹UH ѦHôpÄ =9,!ìhÚ2Òd 3´ Ì-3Z׫mTx[oïѺ^¹opjÀ<Yæ¡]º"zß+$Ç;ÂÍHÛ_FÓ,T¦ P4Eì/2Níô¾Wzú^Ùì�5¡;e&F«ÓR³lBXoeµ¥µÔ,dÈõ¤fÙè_oZéϬFóHÒ-5ËiGdìØq3$�Cr¥¬·¢êù3tµÿ¾ù]¸@WÄÚV a' ÕO@w^Ya¾rçÕÔ¬þ×}xð/ä³[nGÿÛDå-f·¼ãE4HjïÅéÕP¨ýñíEba)û÷ý«¡ÎßäEu¿C î³$æIL¡@G ´Ôªýz{ÿm±�/(XEàh-u¸A³fxæAF2Mm@_W¾E½Ðu±²3@0ºF h_ `5l2Pïye£ }=¢ "µdSzûr(CíEjÜy©C²�$÷oOl¡DEjY_ä[(ê°{Û¸9XPq± �{÷pi¾ÜEka@: §}º¡JHOìB°;) +°1 °OÙòºlôõ,µ+ü©9EÙ&ô´0£ªÖhøÖ¯ËiǦé�» bá-Õ-Âa(·o~È~Ù¥ÐãXP wı aO) ðO"T ÷oÃ$£Ç¡løÓãPzâP6 ¤Ç¡²0tqZÁy²Ñ^!hÅ¿²ÿ9Rl#Ý ÈÐ éÃ-VªådÙT FÀ×Ö Öl°=¨hÂ%¨±V9è2¡ä!e·Þ>FLàÝr{kFËí)Òëq·Ü>pku£Ãç .Á}ûHx¡¿0�Õ(<¥^ Pmá{¥µ¤*'ù´1|Nú ï"Ä>Q$ivuÅ~zïö�HÈßó2)q¬Z�ÌN`] @ÏÊLd¯1Å2À^cº +ìÃI·¬ÚãpDñâûjb°É@=%+üÛû¥Ål$¬F1 9[�z·+´¾§¾,C!ÔÑíÊvjJTÈ}Xo>0Úö¯Òl w~|0åüíüz·,«S©×y%CUPø@Oßqqc·g¯ú»=Åù`¾w{Zÿ�%£é)B)xª×KjDKBj¤g°{½r+®àLÆ56¶O»yÅV¡T¹y*tªIba9TRb·ªó¦ÓA¾ÝAnl°Cáxâ£ÖNÊø LÀt¢ìàvXKFÃÔÄQÁ0©ev@M§ÙähnÁÐ?SÚ.Û5ê�&/^Ð>><CmM J±7ÈP§u$ÉfhÖvtÊôìÍ NeZÙàÔå.Av©Ý..]¡=E¤VÊz¸VíÜ´_no`Yãúûåä³ Ý÷Lµ+hûöüZívXo~ÖOîóÐÓºÆå®0 Gf ÍËÒGüx�û¤ÅxJh(ÃØCC5²XooÞU º«ýë¡töÞy¡6|8|ßÞ}ç·ÇU&¸szDËÍ<kdßÏB5GÝËBq@°ñ>âWëÕ�÷oã! FWëõÀ +â@»9Rö1ÒEÜ-bMR÷ EYÅE=²U;>\ %®0ftöü,Bì¡Å ébË2 ½Ørl¬ÕÁÎW"X0{Ë2½åÍ09 GzÒy}Gû=ÉOºZtãÔ:-(zê´ ²ûa)J,eHCæðºtA÷o`B £:<}¬ådcbuýÈ&+AÃ÷Íi² +J9$Ä;2HÁf+ ¸û8·mv â#Ñâ e~"ÍÐéHÌØ17¯ËÙ¸õ +í +õÆQHwÛA; §ñft4~²"* BWäÌÃz!æ$#¯![°'b°Ä% ¾odPâ=Zæ iüTV2øR_4~Ú¯ïnütXn~+ûîgë£wóaëí"ößS«Wà6`¤DþLßWã5?à�{ç§¥~Ø92$_³ßº[ wQß?q¯d%àþíIVä¿î¡~õfP@Ô�è,HöÐíßnÆpo}D ½4=mÔkúÔkå{ºÛn@$A +²GB$u!Cµi`[Ûö ºÿrzÚ@OQëI>hè¾®u»úz¨Íå²-tÁê<¸UÜL°Ýz4î<é +Aû4¯h#@Ð1,!#²#lßW³kr° A5!Û³k +¼�; ±wÝIw +,®qf =¬ +Q;NÈìèz5˯Úr±ÙqzzgGJô«ïëµj�íJ4c bCD£Ò7�hÅ%¨Ìåª-åuÅrm»ÏYêHÂL<¬gf¡ÄÑÞviD¶xÇLÇ röHÐ<ï#!çr ¡õq ÁÑó¬\¤Å èh"nc"m½ÄÆèzRj0b·¼£ï>ßáºß¾Ù©MÄ÷ËíäkߥÃ×;Ò¢²íôª+_M®nOï»ÁP½¸ÓÝ;Àlµ`Ô~f#L +Ö°Ü%D�±\L ·m +h½½|Aø³$öÕ.è£ðÏàk&x�³ÓQ¨^à`6"¥\lCÀ×F¤âGP~Úsj$§ [H,)Ù°U5¨9Â[½ÙÍÙ·§foYMà�=-À +°Ç³cëíiYâ^ 5«¨ bïÙ!}®5¸6r¹y°]*1õ&¤ÄÐkÀ±=3¼ . @k{tPWpWjjjý¤ç%85!ï;!Ü-eAê@>htd6¦d3äÔöϽsWËJÚ¯·wî*ÈëèÜUÔÓ¹k´ z!�É�-« Q@Gç.I¼4ýÏVRðePGç®=R[g\3xûÏu+)Í¥AÀ¸èij)¨Uí¶xÖFK_UíªÑfÊ\1å8ÄïïB{$ÆÓ=já±$´7ÂÖ=&W Cno 4Ú¾¯Ftvk*Ck¦#(:%©[eÝÖÈz´Cõ$·w@+0¦a7çË�5Aw¡Jì LõY*ÏWoóøþäaw·Þþ¨ ä·[~Ö£j<}Ý+ʽÛ|`muÛWSKÄ>`ß>. ØóÓCíÛpÜÙjuÐj³ úX½ÖãÁ¡6¼¼Mµ:Ã�ûXºX #Áo´Ý^h8tô&t=cõ Û;É/èíŤyÿù%"ÑùÍÙ]ÒéJêeÉ´þ2 ¶_oo�ëAîh1Ñ!ØGÚh" 5 UÐthµýÌ-È¢Ô î´à¹+&ªJèj(Þ%�5*¾@jO à Ø»$Ã:ú »yX'¤ÔC:¬'¤ ³Ä2GIÑâ ?N©4I3 P تØ7iâÌ�i~µõ öÐb³£ôB;@»'¸ÌoêÞ¬G<ÐÛ Í¼ÝLæ<ç!Ø»R´póhÔåz©Ô$ñ &¸jÈ}IDêh%y^ ²7Ä 9iNÔ.Ð¥·'j·üªwFMð®W<¤f8USbÕ¨®vIpØ·gÌèóö$UÉÝ/7´�¬ NðëöZ;xv3÷·ô¦îíÑMØÓó£àìóÑCÌÆÛWjâÌmY_j8sûïÛ§IõÕ`ÔZ_?ÑøÓ²S$ÉïÖÛ³S¨#;%@ö·?LÆÀ_^ë Ð · èh¦<@²7vÝ$µr|ßÞí J@wÿ}{v�ì¤:VOÊlÖÿ~ §úò ÃÙ¦ÀÔµbT z<m £)ÛôÚPÚã)%ßèè `ªÅ>û«ó ØsÄögátÅO$Éh7']Ør)JìEÒÕôz¹\MðevÇeÑÅêëm, ðlÓdúl7¨ÉìØ7Ç4e´ÛoõnNÙn^#$�ûx(:fIãR3;â zÁl5žívu~=d¶dÆQRöéyBJ¨�g¨D:å&Êm©=N3&/;Z±Ý¥1ÄHAæ(XMÙÐt$J·ÆM:èb:Ü£äRâBÀ»õö`è>o÷¤Vó°{s0e»7·Ü¾9K½Uë]|_ 8¿ý]{+Ö3ݾܴ �êQz<l £úLPHGA!£ôû¡ t4a¯3ÖëÍáØPà÷í¹E#<?0âµhÚGï° QàY«ø¡0'·é:³ÿ¾9µeëe¹}¸Ü¿½ëÍ�9Ø"§6Eö8GtH?öÜ()÷uò_LÑ5)u>Nþi}§ +4fx±´lzó�ôÚ $7îС Ò%xãnñØå>Pê°hdÕ¼¥²x´þJÅ0Jr +ì2´å6]ð°q ZH»u:Ðy@ÂZÜm.´Bë==Àb$MÐ@~V-7¸XÝÿIÐÞ|Ap¾@½ÚÎj+ü`û¾ÆYÞµWü¹º.ä�õ½mOD®DG$"!Wî¬FÔPT2Ì\dÔòº=IKBzÔòP/PBQîmÀ R =7[!,dÝг 0¿&´Þɾx'Y 3n·äV´Z-9 ðÂ$m¿ÜTåÏn9²Ã²÷þ§«ü½¹®Ë?Ù@Ø@*~Ôþûæ· ö÷¿õ=2`üȧ*Á{×OòãÕVù4õálEN§biI* ÀãNN'8Ï5½¡ dKßá6íuEÜ*%és32d±!ºZÝÑ=ì¦øViuÆÁº¯3cçJ?ÓxgܰeyÐèå}<CÝÂ\#ÄP]¿àÀÐ�D)ü¿Â_ÙB +û[@úOmLIHØûï$ô}ã§:å<`Ààá::èd$ : +qz?mxÙJÅé»C'ëþïOpÿѺ@³9´;þZ£ýë-féA ´{Ù{ +;F³IÑ¥[Ï5´#�PXú($ö DA4ÐQ3'-6ä &IÒ»F ÖÏ:£C[ÉQ,Á@õ*1Uill n³ÍYÙp²OGKµ!é죥 v P^.P¨GFà÷í}Aë;ÚÇ6A¬½PµýzóUn\]µÓyÔüBghJ_Z¹Ö Ñst ³µ[M·õX Õ@ë¿Ó½é¿B(4×׸ÈÖüÓrCÅOͰ¹?o/HvÖøzZÐîíú|G;è¢y <õy¾ÞýáûæIé¾sXoÎ}¿§vMPéG`iTõ³eÚ}ÓPj§¥|úK2\WhϰÈ*w ~XßQðå½J#bàz©j^°áö¬pü²jû·mÿõ>ZÁ×À NE9¬7¿LÄ}uqTúI{ÅÞ~½}°R¬úãÈAöÞ +!sÌ6ëb²~0'Æ|/t8è0{P]±Ì±±^® (°§\«&©n £\ÉÐpØôhG8l<dÕ$Ãz{Ñm7 s è5 t$8Ôr¯+!¦6o©±¯´>³ãAöZ¡´°½åac2CTÈìñ¼ÍxsËTÏZè*d0ä¿N±ñ²p"À^¬ 'b7Å%ÅæJ¨ç_îHpÖ Ð³+¤C:"ºH@J ḐÎÙ¦CÔÆ5À-,¤½ZXÊÅÜZ8cW¢c6ÍRIh2ÈÞ:h2ÚAz,©qû³`¶G34«ÑýI¡èìÎ ³®A HG8§HÜI¸öÚ +?½îæ7åµ÷Ãæºû)¹b±µXbÿõAõµØá°{{±I÷=¬·B"Â^G±Iß·Ô+üé½àþO~à9GIB1ø~'+ø`5¿·Ä© VØB04ª[ õ|I8gY÷_3¢pÚ¿o/øª5õ§P³{´ÿy1Ø.@ÏîÔ*¬ Esàz{4'¥ýÎõ´ñbhg¬CF$EzĺÃ*&´¾£fjN¶ÐkfÔpбyHiLlW$[4Å&Äg¸fË^"@o§¥=½2qOjGD¦DG<&Ù æ¶äaÇx)ÈÄ£Êä!û÷GÛ÷Õpfo>¹eÀ~¼gë´æ96[RÍO[-ð³Jî¹E{�çg-a=×Nûõ«v3{ãXÔÈ#5HXè¢äF«y2ÀÞþË�ûd«`d$ÅMÄC +ò&í§y´9$ú°x¤G:ªÎjKõ+SF%¡RÀ¹ðT¯Ñù +ÔxÀ�I{ÙS@4t¶¥®!ÌyìH@bÕ_»#xÿuZüaù4!¶JñÛ-?Ë0-»p^À×Ar¡ö°ºÔwÕ²tN9½óDÄ×Ï_T(µCb,^�Q©´¿?srtC>Ü}N«M]¾_oîÒÖÛC:"Ã/ö¯&8ILý@{ `o¨]ì1ñ0" +èh,ñvxÎ%)øxÎþôxä ³jÙ90Í �¹À}PÐ<¢E;°×Ú ªîx@$ØÓDâºû Ø#" ïÙ@DÔÑEÀ^mT8-.Õ^WB@8÷oïB4BüÙcb^àO(A3ÆÔ gßÅÆ+ÅZDÊ) ¥s¿õHÚQ&(C:¸¤íý7Á+þ/|Im¾W¡.0Õ>V×vN¨U*W ~?Û¾¯Æs2$@{<ñZ+v)õ:öxÎda +§É*B!`÷ÅÓbe!E,H" Ô a�:á)á$(:ZøDAöôÙì +)±hõ´hÔaöô 4éGIOÊVC\Y/ÌÅz}μÍÐcYH bW6C¦¤ª<!´? +å afWT +ݼ®¨º¹]ѼX�å�â@»TäØÓK¶ä %}y-%±¸<}ÎR¦¶þS4¨/@h÷}»úÙ-·+ ¦ícÁ2Zì°ûs,X ×�b»M'PCuºäaæ©8Ûh1@?gDÍMIè +,ý¬%fÜÝjÕnÙ-ªöE@VïÆ\í³±j×# 0ôb7Ù@qõaádWP)`F"¨££¹¼ª`gJ½ì¨é1qGµs«v»À ÞÐÞ½Vk@pNÑÔ«íêÆîûÕv1B¶WÛa)Ö1íůý|%3cý¯«c«Ûq³#'Óê¯×ÝÑùZjÐØ¡h!zz4cÎBPìWº¥W]ÜZ,µÊ[±Ôa Þpb¢;0IÐé£)"cÌnKl=¡w #:AG¹Q¶q¡> QqO½W°#`´±¡¦HZ@Ë©HZÁÛ "Ñ4i«W»Ò¤* ÎPØIP2¥Ý$mûÛn 1d~ÎíÕõjR{ç]RÑJ"kùYûõÔ!?ËKÊDæD@] V&¯;!½ "ìÏïê>ô~B>yÏ@cHBe!8³zÙ¡»i9ÕXÐú®5ÄÄvs¼«K]r¡ ]¹]ïy]}WïQaÎÝ/ððöñjøwË;é +ì +êðüöä"¡ÞÝz»� ]ÿÙRãI±æ®>åôe<I+ø+6êµ�Ø3B²!PfãóD i®¾ðÍÙ# Ø0"<#@¥ÀÑF*F@{µXKO» @= D@lùe ô[5¸AÔL G;LÛ-%;pϸû`#½`ò¹j8FxæwÅe@G+ëÚÀôÕhJ^wô"G,ÔÕÜ�å�æÔBqmZ((MãTÃA«Có©`�8±¡Î(?òmËGn�âhíÈ¡:'§£ ÆÝÛä9.!aKñ2!A ÈD¤ +:¢z)Z%¡L fØ@e¼1-"ÅÑqËÑÚïßÞBi42²:)ozPáå +ÚãFjÏ}Þ¥^DBR mà<ݸ]á|rpbÄ«Ae^a. Á¯ ¹0ï8µ1²ÇnÌ*û=É*ãk"'ÄE ! £x=gÄÅŽdmëÂD]U¨ AcËMÐ 3GæóyÀdïmæÞqY=(e$!5ÑiN¹_&½=Y¸-ò«&Jaþºìõþ××ß§6MÓ]ou'åqf°ÎºÞc,ÓÝÙ-R¢2�f äþv�ì1ÁÖi¿¾£jÀ^5(Ùöû ØøHÁ~½y^mkÄ´_owê¥jðbÿjT¢@ +´§ùßß^6*Ùú âoëÍVPKsº8¿IZ Ø9hAèè4 ´$KJL$Hñé# ==¢mzP¤(è²'÷á�öYÈ<J¿_n@¯ù³ñ°^s)Ø¢"<¬ðXÈî ÇÉvê÷gtþó÷ÕD¿*Q+)!Õ'´¡õ= .Rö§ÉH!ÚrB´õºÄ Vs×wÔÜ%J§¾ßQ±UaWihoÉ=B²×Îðþí÷µ¸½ê8a%n¿ÿÅÊ@Úp6Û÷õP÷álûõöTß90°}æwf´[Gl'äd#�½íûêlº<Û<9=bã@½fD��ghïë¹lÎÛt ®÷uÉ"=Ù<slm¬_×Û^¨ÌPF=×»¥]ú!J$)ØYô#ìo«]´¢á+ ¤mËí͸kzÞ~¹}¶[_·Ó¸ûåfÒR-¹_o¯6ÝúÜÐRCÖOâÏl·(Ôþ/PûõýA¨ýzó`κ8¿Zk&Ï[#Äü¼"�½uÔ`Nh¹AÝ|(¶;ÀÆ÷Ì +PF'´»ÚzWy9`FßGê AúçíÖ Ð0oqß~^qEüíï~ùXö÷oõÏî¿üq·:,Óºzýiû?·_¾Ë/qHmiÚ¯[ÿ¬®[ÍôǺû/uÝúOÇuq«¾Ûb\m]ýåþ×ÛßÖr¿®[ÊǺû/uÝú7§u£oyÿX7~:ßö7§uó,ëV7è±îþK]7ϧu)ºnkÝÖÕ_î½ýÍi]óm£¨ëÒ§ómsZWFY·]x[wÿ¥®[ÿ渹-ÃíÖqn£º-;Þ0OåÞØö`×3Ó2ÔZzÆÝA6�_NñP0OäV»ÓyZ%9ÄvÏù<æ#ÄlGÐ( ¦{$nêR±í@KJÑ=@Á¿zZ©y8Â9EÝÁLî ÕwK$ªêãÌRªÎ¤î 7n¢ÄÄù6Âä¬cÍQÞ^µ;hÂérÐã÷ÈD¸á`<+´´)Âíï~y(ÂöËÁêªûî«åe¥·ö°®»ë¾º®þr_·ýÍaݦäîëªî»¯_n}ûãºUÉÕuwÝW×Õ_îë¶¿9®å|U÷Õuã§óÝþæ¸neÝ]÷Õuõûºy>Û\½»î«·Q¹ýõíoë¯ê¾º.}:ßíoëV%÷éöçÏ·ßÖms¼¿jÜü|²y*x>QMÞ¯j|v°´ê¨mûçëºõ§ïòÓ§uòËaÝúouÝòËó§uòËaÝdÝúÓwùéÓ:ùå°nI²niæà>_öëÒʪ÷uÛOßå§ÇºöËa]óm?}>Kð|[OÖºnómsëFx¾Æõÿ$-îp\÷ íQ ÇÕíóÙ¥OËì4Æj>-³Ó|#ÄÌ!ÆàÓzr�»ùªÖyòOm+.\æSÛÁª´\æ¸ï[óVñÒ°%ÕzÌ'ÙÁ&³©lFË|BÚÆ±Pt�`7Ú¶Ôh7�.ó)Ä{/îF"Ì'qò~>ù~;=VÕäQÝWß+}ÔÂý§»è«p·¾é±Û_ßôXýéÓº³»ýóMÝþúþ§÷>;ë±Û?ßôØí¯oz¬þôiÝYÝþù¦Çn}Ócõ§OëÎzì®Ûþú®ÇêOu@Ýþ9Éùîz¬þôiÝYÝþyóÝõXýéÓº³ûdýl}7}î?}ZÞ/ZÕäOZþ³ÊßÛw;ÆSv4WMÏ#Íýù§ác:Õ²lÿ²U$äúx;EîT�¹òL�æ»ãBr+aðî ÕdïDü»qëFïDry ;ðã ÒâÅÁ´Txé UÚöv�+�ï-4BòAp¼Gfò³È÷'QâàHµk×QrظðnKyIyÌ^: ¼8 ¼·0 + °Gp#q!ÅzÞ[¨-S¶ä&ï-TJ^4âH¬vBn¡ë¼Øp_uµªk÷X¼�j?Û8yXë<6ñÎÙRÝÁèæ T®óÈHe·©;²Êu&I¹æêûMÝf¥¹e"k#5íìå fµ3yo¡öcÛHc¦Á{5çfﯲ¼ìÜxÁMH3ÉÎÍ{÷ÞBS®^f¢ Ö [FÛ~2Ëã¥Äæxº}&Öý/4)WÇ3 ¬zn"ìì=Â(Hô^c%å'øLn#+8h�ܱ´@òIfR=é|׿'6±îVm#)Ö[¼?/´ûy-åV®3ÉL½B +±Ýmæ5:pa`Åz`õ(,35: oÁ«Þ1qܼ HtÇTY$ÎÉ nT®è%¤E,÷yâµ¹)i´Èº¾ôKõXü¥´ïìÖLÊ´ÇGó$ IÛ$ø=×öêë`ëëvÿ È*"~HÅBÇPÏD?\³U~ µ/¸ã,%ÎôûæÚ·÷Ø[Y:È$"òÀKÊuàTÌ^�µ£ÓÆÖÎçêp^:,É+ÖùT$Nîx"ûP%Gpï ÅäÂÈÐèÀKíµÏ«Úb=BöZ(i$©e/Ér¿¹JÄRv#±p'yåÇÁBâ@bëîg¢:Ä-·×H´8{ô[û@Qk,cñARôc½ ìegPXõ>¹óT'R¤¥ÀÞB¥LgÐ÷4%¶#Ð M^Ö�¸é Gh®¯;BgÇâd&>ÙwØgãB +Õæò¸ÓÎ? óPÜ89JLµ ÔÖJû#Û5�é÷F:_ÊÒ)×t²¯;88 t5Q3÷ܸmýÎn[Y®ÑËAÊYÌô`gwH½Æäd¦-F -ïàÀýÖ¶p×j_»½ªvNn�U;{ ÍÇH|ÁMHw�Níü`g^Wøú§óÀiç;»ih~¬£SªÈ'ÓTfËÒx+Í\3à Vu,nv~3¯±3ÍtѸÛå!ëRm|çÖC&$ºÖ×ÍLBHl±°_¨ÎÜ Mn4qÌ´½úßm$Z/¸í)Otw¡¨�ÜUeuÎæ½qÑ} !ɦÞÝa BæÐ×t38³Ñ}6®Ü$ÜçOæIäZ;º_ßüÕÆF¯@io®îK꺫#¹TíâªòÆâ~*frs£<Ö¹_¾©Xäý ó#Kd4¯»X¸)WºÚØ}É`Ú `!´|$÷$#Ê]ª»;hNûÕW,¹eâÈòÂLòBS®îG1óÜùHU&ºsóèoÑÎþo:½¶ +ÉLü뿤T¹I9³ 6q&éþ| + H$wd"o¡Õúº¯5qnt¿xJ£;ÑUDÆ&ûú³DËDßȬnH:hµ}î|å@î60;»Í}6±- ¸Ý>q8¼ª-Ví\hÕæÊ#ÞN¤oÜñÄæ/¸Í}ÁZGt'¢ïDÊ&Ý/òÖÆf¸ß2hå4!¹3ã$®LGóܦ¸]3 ²»+ÆÝn¼7Òq$÷CUæìÇ'õÂØ(Z3ѤÜÂ@te;åZ2eÙ×>(l +]ËÓÞ_Õm&ëtùï±×íÝÙýd*ºÑ-ÄÌcÉí/4+ÎKs3S!G"û¾ÐÔ»E¨²ª;Gg MtÓz6ÕYÜ6� ;ºÒ%Ût3R7!Í,/ÐU¦lýBËaÛæ»}ù*6ágçÈ[pgÆM¤vnï4/¸óòTF·Év+WÑLn&1U·IÖºPÐ#e^ßÍÔMt¿õ'õ&ºTÑ YöÂL¯k"Ávî£5·.&[<ùUmdµ#¸ó#+ÙÈvSï´÷þ²íM ¸+N4WÃÝé&åÁpkgÖo¤T7Íô²Æý¼<I4$º å~l¦îë¥Wh5]t?UwDÝAtë6�As#=%æÑ¥y´÷Þp@µq×öäåöÚ¤£ëëd"Û_¹9]lrßBIÕö¬a&¯¬¼$ºIírMûtM[ð %Ò8p¥Õ×˦â4ÐC,^ÖH£Ùn¡ÊÖ/´¸UTÚÒïôÊ l�ÜÚ¡ð±4±Ü(N»Ò¶°}ñä¾±¼ÐȦÚúQE¦é /C"¯ØSô³qóÚ^6¶ÅTÝHL$!Ñ/]ôÈzúy 她;óP¥ÓÜHç#±Ã¤òÞ]§Gtí¿¬g3¦_×@¡=ѱu÷³1Ýù!Aë6ÍV,íÙÊ:L5H×7ÒõL|\M#¡ëXè$ÚZ§Ç+ñµ¾lé~+}YÅ5ýÞÈÇV;³&ýÚGwhj ¢I?¹oaf ixÖèT:oÝÍl ͤÛo¤0¥ÖN¤®éx"}í-óËD¶èyïL/3óèé´vYkuÎ[ªl+P¾Ýݾ 5¤+]~@þs÷b{ÊJÅ=ü®à³ÆÙgc:ÃeI-O~ [Ó¼Àf¸q Å_ÇBL³ýÒÚ``wj¶û@k¤ñ:�ìÜ>úÂü¬[`mùçÂãx©ü´@GrO[±N·7rÛH$¤öòͦùH°³Hèjãf'ÒÞ;ýîü²\ÖÕ}°ô_#;³y,n±Î¶Á¤»ÒH[\w+º¨å¸y¶*;»Ç3óy«fr·ÍçßÚX¯náÐr÷éFts!vª.-ü9ôD@^c£Dzê˦©ò4ld»=»Ýq}Ý&;Q¶rËA¢ûåê¶òD·<HÍÔ$üï.Á©ì~caÓLËã~k[xYdïB1×ȧ\Ó/ßÀøN³³Ìér¿x²¾¼¬Hî-,ïþIaÂÎ/ëFçlÓs<é·wºªg&:#µÇ{·#6]�áî(D8ØÎ~ànNÜ +¢è¤.ºÚ,¦DûOv<3ðL+:E¿µÑ^? Z¦»Í<¶ÿµNw`p3ÙnùÊ´çêî"«t/ÑEbët,zDµÛV¦;y.r}l#ÎfdÑ÷ÜìL7ùLtFºyÀëbªOyïÖÂL¤Atæa4¯ÍOdIf¦V¦êæÆ@ÊDº*ÝOx¦{D%_vîfRqàЮÑKH©ÊÄB'}» *Ñä=öÁ²e@¸må U®l¾2= ÎÂywDK£í·PY�´Ã ù#,¤DjÅ9_X:Åò²dÖÂÁF"QîTºz@FÐ Ýe(ÒÈ=Ï5³�ØÐIünÜ2 èì@ú¡Nâ`û'úãHì0ÖÿÀ}Êt +ï|³LO? m±Ó¼zÙXöhKûÎt#ÝÖÆÄDÒÝê·é~i©Zæe-ã/ÐöÝT.٦㬠â7qÄùv@X7²Ø<Õç þ#Sªø¦´nÐíÒù!43±íL¥JGóXøëèy,O+q@ØÍB¡ûæC0 �¬Awömu®/sÿi+mzZ-iÏÕ}yù¦ºç½³ìL{ï-0íÞAyfò³3;rEwh¢y¡=³³ÎyCÌä+(ü8Ù~iÍé¢ ºT÷e£ ø²uI½§CãnRfýºb+»³ é)¦]ß×½/лz®o¬Tܱ4v'}ô$úX§k<éªs¶Åo#eR±ÐåÏëzïil©To¡¸ÊÄJ£GÐ5]´ÓõútüÀ-ÖÙv&- Âmâ°Y ÍF¢ÙÙK- bá~{gû¥5~í£û#£ÊN¬×Æ@Ûwçe³[8ÐG¢Uû^*³;ÉSd¢[½Ë|&¯Ó%8»1o½Fw*:S¶µCeµ³ß_ 6Eê)ÒÐΦéÚ>÷C;-l·Ü}÷¥Ìsu7Xª».GjmÖcñw` ³ÂäÜHd²ÍReÇîù_ûØÜ<z²0]]Hòóèu©Ú¤;û½±ºn½ êN¡ ûâ¸(D3yebkéâNú~Lt«wQ,Þv&«s×LîêÄ)íúHÝø´fcôs¡l}cSï^$J +{£ä6óÄÜg{¸+,é`~:@ÕÆt§o·@ ¤@i%ÛîÞ@¬Û×Ì}Z/xª<Èô\M +Ø +ËKs+W:åM#¡ëiï ñ UØ<ú}¿Fz) Ó²î¨P"=MÎO¤èiªn±.fbù²74.¥ûnELÝ×u±dçx¶tc·ç*ÍDÜ6R54³{,/´Ä67° UZ8ÐÚØÏÍápçâÈI²êxõS×ÉbÛÚ;»}çÕur!qÐw0M` G¶L²Q7ÑdªKÛt¥-[²MwlkêÝnÌ>Þ§zîùLtîç6÷Ååqçdeèä>µîÊ $¤æú²Ñ<ÿà?ycqÂ$,ÌÆTùÇU·ò¶ÿÛ_osâ§UÑýTÝu,lhÃÉ×tÉCûtÍ7-TÙ\])rçâÐ5ßtó�Q,nÎ[çX°íøæì°ôæúº®Åk{Y&Üòçék¤ËéQ"|ÿÚgbûlÓaa> ~"¨ÙÊÍByÝKMt#Nö ÎÕ¥c(Íý§[@ÒÿÝ=ø®¬cû+7�nÂæ©¶zgº[~à÷\%¦êô P©"qGuR¨6K¬óG0&öì# ßò-¥çp4ÎyYw¢}& +)ÖÛ¬2·¥*¯<¯+Gbm:WÄÇØ#4$Òmmè"z=eÛíx²ºZ¢«Ïê¯ì7óضù,/l¬{hÜm¥EV¤=ÍReÇ3û¾E3¹«éÜ})q+Wve{"¡§dÑ÷/F×pð)#©øº6vP8mhÒõÎô\ßZG¿ö¹ó(ü{cÓíªòî"Í-Äåqç¡dtÓ¹Vñº&ÛÅæÆæ|ÓMçÜF»,¦ÛRe¾zwûì0T~â<ÛÍ´ Ý�è$[8ßÒLÝ0"ÙÎ}þGúé¤o¶»1?mØN?·H[°9t2-ÒÄéòGóØ[ I¹É73±1Õ¶oK¨·àcy+{H©®ÛÐ\*){»P<0t`õÜò'$Q®î Û¨E²ØQånÒnÁm#±Cï;» íL¼n_dy»@InÅ"¤L×7º0Ë%eiî¦l_]wÖx«ù¦Ü)×,T#ÛþÆ{ìg;Úèt":~àv¾é¶U.qeúÅKHÿÁË:<K>Òè¾¶³okÍΨò7Ò 'H²Ya|£n¶'LøF³³{ôTºa;],ÌÒOçØFïÀ_Ãf¶º6z¬À¦PøD%?sõO kºÄÐtyRÓå~_ {³G S(Ü21ìÜ2eéAán¡Êj¦TEZq×þÜm®* +nLWÐ}0Ü%IÊô5¦5uYû Õþ~¥ åæÑûZ§Ûgbsqè4ÅBuºÛ¹;0ÍfÓ +=%îH?X6©ìEb£DºÕÎn;ÍJ$>�I©ÜnÁm¡R¨¶[±ruËDöh¡9ß4ÐAºå×ܧ²ÒmzHS®nÅBwö¥k¾Ù¦sm/sûZÆÍrlj7éçBº¿2ÝêîvNï-Dæµ#¼¬½]ïØ^aôSY*¤^h4nJ$%¶¢0Úk£ËÝt ãéÄw÷-°¦XÜòàõM(enI®ÑÉJlD3ìܺÒs8^ÖÁâ°@ù×tKV¹Òoï¼ÁHt`míÓvàÀî E¶Ý�Øn$t&X(î7&TÙ*~ï]4-Òèv&tìMѤGÎñm0Ù2U¶ho_Ð4³uïþ2ñ²gãÖÄí|ÓÆR;·fc/)CÆé´²Ö¾îbù²^¢tÃö9ÿªÁ$c÷Ð.tWÊX^úÍÕmÓ YÙW_Z±Ðeª|§oéàÑé¹<,çÝûí}a jd *[uÞ*ªÜÞûBÊDZ½óªî>@w;gëÚøzg²XøÀÝldoa&wÀöÅá)ÇÊô´4º îÆÏ IåÚæ/Ð ÝÌĺ¾-~àn¤!H¤½w7�v&C¤ekºø1Ýl(î!Ù´Pü2qI� tfÜËÜÞÔM¤P¥;²Ð}uÛ-Ð-¢ÝÓR¢Iç+»µ3+§@2S3¶i;Ñ=9P¯ÏLúÛo�7ºß:ó¸ ªò˪Î[PeJÛHî� ]£T¹ð»ÁÒÈQ"?Ä¢=ÖÑ#ii¶ÒÜGH,i òïÝý[gwc^¶KCÏÕ¯ÚX+u©¢(Ü*Û#ªEqØ4SwCËÁpWb³@bPÜ©4U¬n�w0®*ÙkdËT%ÈD~bÝÍÕmYaî2¶[Y»Æ×¥T±·@·ÉôB·< ëìîR%Ón¡*ÜèÎÕeËÒZy¢;ÉSĺ[¨ò<pØstë¿fêL³ Ïô-´(Ø(Zµ@ñ§D*§#ô¤06çfÂöÁ ÛXбu:4ÞF¸cªOK'")ñ ùÊô +·L|Úà?vª¿âí^H¦Ù6Ù-0ݼ Cmܪ¥D©ùö{,¢X^6vÆW\³ÓÖéÇ:~®/;Ox¦Ó鶪M½³f¿ ª°ÌÄ +z<sn¡J8¬óÝv@w7v¿pdlÅcîüvBTîã±ÎÎí£uc@ÏsuÏå"/Ù)W_÷v=Ð¥õÕ%k< ·ñ¤5S³PØt"©$²Ð%4Ð I÷(¬¡IϨ¢ÚðÃPéùÎO+%óT´2¶U¸èvD5Á¬×HÇPÜÌIn|µÎdyõÂÃB¡Cãî�·þ´¡wþ +KR¹>!?EÊÖúÒaax3dç3ÑÚÙí7²Þ{ËɢǹßÞ¥zÀgßèÖ>S×ËQ ôÐ;zx=§¶TÝÌô´Ñîk¤{ÊÊó�]¢éÎ?YfJ| Òè>tw"z\;ÝúÏD&ºwÀÎéâ8È-¸_¾åÇÍôÔ<9»P}{çGÊÈ«ÛÀ`]ùiilefÂ/ð÷ÙfÒO¦´^héeyëüfR"ñÃP#KHR=@wþgúÛØ(]ÒpàÎv¦{¸må¥Ìu|^ËÎè2îiè©8m6àH¿þÓ4h±îÆÑ®t/Q¶Ö?7² +)ÒèjcàwûF´rmò$êVï)Ò÷î¾¶t7u q#-_!ïî¶w|©D¶éü·T¦ëöpíné"¯<nB¢;8²yZªä^W#/]n°ùH �]ó²OtgùV_t@í«Ûx¡¸C¢ÍJsKe:_YΧqà=Bzç>VÖ(Ð-Ü;Iaî÷R,ìh²ÃP¥fÛTæF>"Ûé¢ÇpJÉ]YÇN¢-汸ÓHÄgr¿òÌ,@"±u¥q?Ò°R/cÎKs×3µî.Õy(Ém`ÐÏÆllÓE¢èïôäÀÖåUmþ°)mî²ui{ç½ V׿`HÝ»Ûý¯ììïä)8xYÿÚØn<¼íPùj¢ëm6[çÎoYã/×&ºÑÉ"ÛX<ÊÝt°º(érez¬h�RAAß;s>²· òÀݨ»î »qb¸EØnDr!J«6vûBÊnBª;pL³Óä¦ ³PÛÀ÷·Ç" îK6s¾IezZ=ZÈ]ºØ÷F¡¼l8r{ý''ÂøM]:é»Yn©ÌöÙæYèQⱸs¶g[K//´ç:~àNîj":åuuÀMu¿pHL>G«6º»±ût[\¶�° h¯±³[°%ÀD7ºµ³p#-ÒÜyª ¤Ä¦me7")T[m·H¼õ'¶·w7R;Kl½¸ß\Ùà|3óÜEïÝ ¾ÆX©¸Tyà^@«6yõu] I#®íko®¯£DÉݧïÝ×(v"=Áíx²×òHã}¬{¼ò¸£yÒÅýÒEöÙrtïÑ<÷CýDB[#ß\Á ãH¬<`}¦PãÑ|"�§@y�áY�Ü×HoÀÉ¡F¶ßS<@~�§j{ò.�¼ieO�0>Sµ½éY�FÖ;�Àid=Àò,�nãå�ª¿½÷ï� <×>x�ÕBñºÿ?j¡x3aÞ@~�¯ñ�ª â¿ð�ªáÍø!�TÃó�ªá ýP�ÜÆò6�¼aáÑüU¨»å�xCüõ¨;[ø�x(j%Í� y³@ò6�¼<ñm�x_<keÝ;�ð¾tñ�ægð¾µñ�·à¶X�ax�^Àkð�âÛ�ð<ô,�^ûÀ]óý�ʳ�xíÀø6�¼`z�¯ñ�ægð<åY�ÜöÁËÄj`¸ë\ß�@x�¯}ð�â³�x 7�P-ì50Þ@ñÚ1ÿúHî¾×>x#�^û åîÿTÃ]ñ�ægp×±¼�·±¼ �w åðã�p·à.oÀkð�Ò¯@50F¶âú �x Öãõ�èVn�ãÛ�pw;Þ×>àÌÏà®°¤,?�wám�°µÿ~�áY�èѯàe³LÛøå}�ÒkÜݤúõ�Øyï|ó�Àø6�Ü#$^íFò�Ø~i?�ºS×ËÐÝ~�ÒdÊ=Bâõ�ØN]üÏ× ç½¿�÷l¢üëÀ¶|#�î~it'Ï×±:îV_?�§µÅ}=�·Á¶É~�·}Àx^(�= úõ�^6»PÚ`¾�=ö �Ð-ã��/ërÍ7'�în¦4ñm�¸ûêÒ�¦gp£ÌoÀÝõ°<Û>`´q¬¯@ϼ§çtÑ�¼öÁ�¬îÉ@¯Àk¼ü,�î94ò,�îÕ¯À3¡'¾�9çµÞ{T9;ní �Ôfåþag¿~�mr {æëHçz(îë�Ä'pϼ#�ôë×p%'@¼�÷°³òëP ÿë÷à(;½ �÷4ÕùÇÀμ�nûÐû¼�;ù�àm këw�àQÞ×>àä·@Ϩr(Ïàvöz�ÕBq7æ}�ÓÛ�ðµIõ;�pϬ£,Ïà¶H�Oø4�Nûà�TÅÛÙ÷�TÅÛ÷�À=ÇÀi`¼j`x;û¾ñY�öÁ;�¨·³ï;pÚm,ï¯vÛ¿~�µËuò¶~�ÕÀðvö}'�^õ^»\ÿ�¼öAmý�¼ö ¿ �¯}PÛdÿªTÃÛø�x Úåú�xíÚåú�à¶h�˳�¸í@mý�¼}� ¼ �¯Q»\¿�¯ÁHÏàµx�ùm�xí@y�¯}ð�Ægð<éY�¼öÁ�Àk`ð�gpÛ/'ðvö}�ÕBñvöý!�TÅÛÙ÷�TÅÛÙ÷�ägðo� ÞÆ¼ï� ÞÆ¼?�¯}PÛdÿªTÅÛÙ÷�¸íåW v¹NÞÖÀïÀkÔ.×ï�ÀkÔ.×?�¯}P»\ÿ�¼Fmý�¼FmýC�ðµËõ;�ðÚµËõ;�ðÚ<ùm�¸íÀò.�¼Í�âGö�ÂGÎ+yýÆskr?æû¿¤YzíËx0}Äø1Ï+ELð Àt>Æ;ȼUNÌçÌG�á´û¿ä-Kø`g¤xÜÀÃ,C²ÖõSzl`±Xi0È8á}8Od>æ|ÜÁ8"=+L±V@_Áøóò + oÕ©ó½?sú´dF¢]ðå5^ÒÑ:ºÚN �S¿89¸':Z¿sØm´3p¦K:§¯éH'ÒvÀÁî2Øo`:IÔ³H®q'q<ãÐ\à%$ªNÃÊ 8ÉÃÉ`I¨;m:]Bú#á¶îüÙÊg�tT2IGë8:ÚáÀAGû yý³ñKµ´0Ôªs'�y¼IðÏ�æ°î)ÔWaZ³A¯U�s¹±Â@:¿ÍþKÜÖÏuýªT +ÂpRk+«ÃÑN8ëÕûúh=èÇ;õëï5?u[ÿÊ ÎT\7°5gÓäðý¶K¹Îûij«¢ M&Ä1à ¬wÖÄñê÷«4=¬?í?}$ÈÛó÷Ã`fmð êÊÖçÐx`ëK Ölz\o'!ðL�êÌ£íî¦0ØÀoÐÀ `qrqÕBàð nu3<[$u}Í)=ÊñÔHP.®xH=@B,`'AÖßBA@ctpw)5\o"<�¥P9)´½�YÛĤ;*àäbU$&Ý^ärK6]¢&Gó�åÈéûgÞ¯ èûa0¸ù�rÁÉQ7LXusX ãçݶÙíï~Yµõ÷û_Ýþã¿_è\EоIÄÙ=[Bëmýênßßµ|ñ¼s|àNÀrùñ³1# 8£õ¡¥°?ܶ{>@غcÎ硽wpâáñÓÒÝBµ;�rü¸ +`kVpBÚ%h¼EÀ*È)25FrIgöî<ULCy2à£kzGk(¸ 0�]ãêê\KÒ +`�°¨t �ÆÄO� Jæ ) J Zw 6áÀ`?Â<X0ÏÇ#l¤Õ\ËADÁø�yP° $èËw�HùH÷#¬øþâyÀ(À;Hè�!y �Ð-ij¯ÑÁª8:XÅ'G1.Ä QÝAM¸d¦ó*³ÜBø$TÃrB¢ + $�M*7'÷uUp jÇ-ÒTB0%�C-uiáý 3'T£"Á5*ì¼`�g_¡+×vÖ°uþ1òvIÀRÆ8ØZp Òæ®µ3¦e"â ³¡y{×ác~¸»Ñ}¯;H ÜXq±r5h&�ÅúF[ÌÀD*Q/hê}K&7©÷sü¾î`B¦n:*%NÍvâöeTm�læû@9¶Ò:°¸µse&^1ÓrrºHË«DºÓAùÃãÍ%Gt%G(Tí%ÇÙó+À?sgis¶Î8Ã-øÿç·¤xß§dzvMÈq<ÞãýfsÍÚvP>0ªrÖr³P«g( ¤%c5ÍcI÷�@ù%O6Å Ù(�:æØÐø vhF#W3ÇÄd.k¹(ÙÔ+»=f;©`+E¤±P©SíÂnÜ 0V5=Õïï×%f§Í ®7ªb+ÖíQLódªF=Øïá,À÷W#0BÃØ#0Æ =(T#0á°ÃóÞiÒp$�æ¸|¨gOÕáDç¸øý_B¾ç¹éÈ Öêj^ÿåt� wÕb(ÂÁY-ªH³ ççº( ÅÂìd¥D%.>G<ÕªX ÛÊÞ=´¿E²ÿ @AJQÀÔµJM¨VhU¨ÎU@Ä;8éÅ3/ÜÑcå aÙÅA(¿Äw`~\Éxj(/£tèÖ-"kR®ê-dÌLð»@Ù2/@EÄIÚFÌvfªCýÌe¢%úPé�ËD{)ZDõg)6û@E"v½ÐªWzABAÖ +f;Q á("Í F;Q=BÂÅ~¹Ñ ¶Ý!]üÄäè ÖÍO<© I¨M5&<bv6$`Ô³W"I@Õ¸="käÀ(¨6�¦Dsä!ÍX*½p´*e@hA¥]#AEÚýP-lsú-ÀÈÂK®.Ý^Tݹ½¶\[¡íwPøE¢ z È^ûL¸:`Óì/Ë'2ø¯¿ýé7¾ o¿ýãOÓǶüÛ¶¸þðÛ +9.ß¶pìú7¿ÿöWÿãß¾}ÿÓïþð¯ÿù¿ùö÷ûwßþý?þí÷ÿ÷wøý·ÿõÿ¾ýý?þò§ïß¿ýÓ_ýîþúÛß}|ûÇ?ýáÿð¿|û/ßþå_þýo~ó¿üå/¿üËþóã_ÿðËoþ)LãÿãþëÿùÍ¿ÿç¶îã_~ùùû_ûíÿþé¿ývÝÝÿtã±Ó +endstream +endobj +371 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 909 0 R +/Name /Im358 +/Width 29 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿþöì @Ì�ÂP�Ä +¬�Â�ÄØÿ?Ð`>²¼P a(.�âü Ìþÿÿÿ��¼À#í +endstream +endobj +372 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 910 0 R +/Name /Im359 +/Width 21 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]Ì¡ 0EÑKKx¸ÃâX×Q:Fq]¸Òü H>DèäV·C¡ALb³[ÄæqÖoø±r¿? +endstream +endobj +373 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 911 0 R +/Name /Im360 +/Width 19 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xM± 0@ÑÄæ°È +¥Ühç&0EJ£ øxìÈâIÂ4²Æ*^`Þ ¾Ûà2z¢+C}H´çù_¿Eb^Õ³bÅÆ J5!! +endstream +endobj +374 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 912 0 R +/Name /Im361 +/Width 15 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã`` Q S à à Á`ÁÀþÁ�Èâaàcà{�x$ø��¾B R +endstream +endobj +375 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 913 0 R +/Name /Im362 +/Width 18 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³ágp38àîx ½Úø²@B�Ã] + +endstream +endobj +376 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 914 0 R +/Name /Im363 +/Width 34 +/Height 40 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=α Â0áßz(¦HaÆ#xQ&ñá±#8° ôôuw÷¢3×ÁLI4Úõö©¼¯tü!¦jÊÐ%T5X+DïÐ7¾ §0w&ã@ÓQä2¨']·:e µhz××l\`áÏêÜ +endstream +endobj +377 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 915 0 R +/Name /Im364 +/Width 3 +/Height 3 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xsxà��Ãa +endstream +endobj +378 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 916 0 R +/Name /Im365 +/Width 10 +/Height 6 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãac0fHl8p Á�¦ +endstream +endobj +379 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 917 0 R +/Name /Im366 +/Width 20 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøØÀÜy½¹A¹Á¹Á¡>ðÁÀ *°Q(q0èqàgo��öÁ +endstream +endobj +380 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 918 0 R +/Name /Im367 +/Width 30 +/Height 12 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿÿÇÿÿÿÿ0� 5õ@µ�jëÝ +endstream +endobj +381 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 919 0 R +/Name /Im368 +/Width 15 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xch`nàoø$Iìêÿ� +endstream +endobj +382 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 920 0 R +/Name /Im369 +/Width 18 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀÀ'à ÃÇ ÁÆ`ÁÎPÀÜ�Gàê+Ø&�Í4ù�Î! +endstream +endobj +383 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 921 0 R +/Name /Im370 +/Width 18 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀÀ#à ÀÇ ÀÎPÁÞ�Aì ÄÀÀÏÀÀÇÀ ÃÀ`ÀÀþÌ�râ@Yf : À|à}`np`">Ì�÷ +endstream +endobj +384 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 922 0 R +/Name /Im371 +/Width 18 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMË!À @ÑOPCÐÒc!'&#±e9²L,yö±4ÅzQ7Á`ö:WåLe/Cú_û¬è¦%eb%ª +endstream +endobj +385 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 923 0 R +/Name /Im372 +/Width 16 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xco°o`g@>(Á²<V|6|üüPø@eØ<°H(Hx`x@�Yn +endstream +endobj +386 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 924 0 R +/Name /Im373 +/Width 26 +/Height 2 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿ@�"j{ +endstream +endobj +387 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 925 0 R +/Name /Im374 +/Width 18 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀÀ'Á ÃÃ`ÁÆ`ÁÎP�DÌ è�2*`!öÜø0?>ÀÀÜ�Eììl|< +ü�0|3 +endstream +endobj +388 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 926 0 R +/Name /Im375 +/Width 23 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨ÿÇøÿûÿüì rÌ 2,ÀÐæ(bg�!> þ�ÛßÀ +endstream +endobj +389 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 927 0 R +/Name /Im376 +/Width 18 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x`fÿÇ ÿAþ�$øALAA!è�0ø�FAAÃý�Ó[ +endstream +endobj +390 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 928 0 R +/Name /Im377 +/Width 20 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`c`�">0c`Ð#?>bäc`#>0àcP�#>|ÿÿêECÿ��*& ? +endstream +endobj +391 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 929 0 R +/Name /Im378 +/Width 18 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5± EÑk~",íd7ñÆHv_-<96 ¨$Ó°~ÿ«uÞAߨa:0i¶Ð2:\Ë]ÕA¬ +endstream +endobj +392 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 930 0 R +/Name /Im379 +/Width 17 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcPSdpwnpoopgopgfèc`à!$d +�ÿ4 +endstream +endobj +393 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 931 0 R +/Name /Im380 +/Width 19 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xs``¨ÿÿ þÿ r`hh`d�!&0â``�#0J�£36ÄØÀ��4G +endstream +endobj +394 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 932 0 R +/Name /Im381 +/Width 14 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã?`PP`ø0�Y2 2d>H<°H(?��Ó² +endstream +endobj +395 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 933 0 R +/Name /Im382 +/Width 5 +/Height 12 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xKøð#C@@Á¡�ÌÉ +endstream +endobj +396 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 934 0 R +/Name /Im383 +/Width 20 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏÿ@A yóÆ@ô,dXdxø$ØlØþÉ��ð +¿ +endstream +endobj +397 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 935 0 R +/Name /Im384 +/Width 27 +/Height 18 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûoü ;óvÆ fáfdàãn`Á&vÁ#¬pyÁ>ÁÀx ��|ÄJ +endstream +endobj +398 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 936 0 R +/Name /Im385 +/Width 41 +/Height 1 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ�r| +endstream +endobj +399 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 937 0 R +/Name /Im386 +/Width 11 +/Height 13 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcop0PHp8àð¿á�CP8àØ`Ç��w +endstream +endobj +400 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 938 0 R +/Name /Im387 +/Width 28 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÿÁù�à þ�Ä`\�d#ð@T÷áãÿà¹U¡`~ þÿ�Ên +endstream +endobj +401 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 939 0 R +/Name /Im388 +/Width 16 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`d`f`C0�C0L�Â ÈØ�ÌÌPÅØB�2 G +endstream +endobj +402 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 940 0 R +/Name /Im389 +/Width 25 +/Height 2 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿà � êû +endstream +endobj +403 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 941 0 R +/Name /Im390 +/Width 22 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ?C??ñð3°#1@3ÿ0ɰ£ÿ?�¢:9 +endstream +endobj +404 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 942 0 R +/Name /Im391 +/Width 16 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc? a ãÀãÀ÷ÿÿöììü|@( Øy%ìÿÕÿûÿ�l¨ +endstream +endobj +405 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 943 0 R +/Name /Im392 +/Width 27 +/Height 12 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿÿÀÿÿÿ0� 5õ@µ�[Ó5 +endstream +endobj +406 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 944 0 R +/Name /Im393 +/Width 16 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc~Àc À¡À£À�@XÃc'a¿Aþûöêäø°`À¦ö�ËQ +endstream +endobj +407 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 545 0 R >> /XObject << /Im325 336 0 R /Im125 132 0 R /Im360 373 0 R /Im125 132 0 R /Im170 177 0 R /Im151 158 0 R /Im359 372 0 R /Im162 169 0 R /Im359 372 0 R /Im151 158 0 R /Im125 132 0 R /Im170 177 0 R /Im125 132 0 R /Im360 373 0 R /Im248 257 0 R /Im246 255 0 R /Im125 132 0 R /Im360 373 0 R /Im125 132 0 R /Im170 177 0 R /Im151 158 0 R /Im359 372 0 R /Im162 169 0 R /Im359 372 0 R /Im151 158 0 R /Im125 132 0 R /Im170 177 0 R /Im125 132 0 R /Im360 373 0 R /Im248 257 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im364 377 0 R /Im365 378 0 R /Im366 379 0 R /Im367 380 0 R /Im369 382 0 R /Im81 88 0 R /Im374 387 0 R /Im376 389 0 R /Im371 384 0 R /Im365 378 0 R /Im372 385 0 R /Im367 380 0 R /Im373 386 0 R /Im369 382 0 R /Im81 88 0 R /Im369 382 0 R /Im371 384 0 R /Im380 393 0 R /Im365 378 0 R /Im375 388 0 R /Im367 380 0 R /Im369 382 0 R /Im81 88 0 R /Im394 409 0 R /Im394 409 0 R /Im377 390 0 R /Im365 378 0 R /Im379 392 0 R /Im179 186 0 R /Im367 380 0 R /Im369 382 0 R /Im81 88 0 R /Im374 387 0 R /Im371 384 0 R /Im370 383 0 R /Im241 250 0 R /Im31 38 0 R /Im102 109 0 R /Im38 45 0 R /Im39 46 0 R /Im35 42 0 R /Im359 372 0 R /Im171 178 0 R /Im264 273 0 R /Im35 42 0 R /Im36 43 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im44 51 0 R /Im35 42 0 R /Im101 108 0 R /Im105 112 0 R /Im35 42 0 R /Im35 42 0 R /Im45 52 0 R /Im248 257 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im248 257 0 R /Im246 255 0 R /Im34 41 0 R /Im101 108 0 R /Im359 372 0 R /Im359 372 0 R /Im43 50 0 R /Im31 38 0 R /Im100 107 0 R /Im32 39 0 R /Im100 107 0 R /Im131 138 0 R /Im101 108 0 R /Im39 46 0 R /Im35 42 0 R /Im48 55 0 R /Im34 41 0 R /Im31 38 0 R /Im45 52 0 R /Im100 107 0 R /Im101 108 0 R /Im40 47 0 R /Im32 39 0 R /Im33 40 0 R /Im40 47 0 R /Im40 47 0 R /Im100 107 0 R /Im35 42 0 R /Im335 346 0 R /Im340 351 0 R /Im341 352 0 R /Im342 353 0 R /Im340 351 0 R /Im343 354 0 R /Im344 355 0 R /Im345 356 0 R /Im346 357 0 R /Im340 351 0 R /Im100 107 0 R /Im38 45 0 R /Im31 38 0 R /Im101 108 0 R /Im34 41 0 R /Im44 51 0 R /Im36 43 0 R /Im49 56 0 R /Im81 88 0 R /Im241 250 0 R /Im40 47 0 R /Im39 46 0 R /Im101 108 0 R /Im33 40 0 R /Im31 38 0 R /Im100 107 0 R /Im99 106 0 R /Im38 45 0 R /Im39 46 0 R /Im99 106 0 R /Im40 47 0 R /Im100 107 0 R /Im35 42 0 R /Im46 53 0 R /Im100 107 0 R /Im40 47 0 R /Im48 55 0 R /Im35 42 0 R /Im101 108 0 R /Im40 47 0 R /Im38 45 0 R /Im39 46 0 R /Im45 52 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im100 107 0 R /Im44 51 0 R /Im35 42 0 R /Im101 108 0 R /Im105 112 0 R /Im35 42 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im45 52 0 R /Im40 47 0 R /Im45 52 0 R /Im140 147 0 R /Im100 107 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im103 110 0 R /Im35 42 0 R /Im39 46 0 R /Im100 107 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im100 107 0 R /Im40 47 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im100 107 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im102 109 0 R /Im39 46 0 R /Im34 41 0 R /Im48 55 0 R /Im105 112 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im99 106 0 R /Im36 43 0 R /Im34 41 0 R /Im49 56 0 R /Im35 42 0 R /Im43 50 0 R /Im46 53 0 R /Im105 112 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im31 38 0 R /Im101 108 0 R /Im31 38 0 R /Im100 107 0 R /Im38 45 0 R /Im45 52 0 R /Im43 50 0 R /Im35 42 0 R /Im39 46 0 R /Im100 107 0 R /Im101 108 0 R /Im40 47 0 R /Im40 47 0 R /Im43 50 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im101 108 0 R /Im395 410 0 R /Im396 411 0 R /Im396 411 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im102 109 0 R /Im39 46 0 R /Im34 41 0 R /Im48 55 0 R /Im103 110 0 R /Im35 42 0 R /Im39 46 0 R /Im100 107 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im100 107 0 R /Im34 41 0 R /Im39 46 0 R /Im35 42 0 R /Im100 107 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im31 38 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im31 38 0 R /Im39 46 0 R /Im141 148 0 R /Im38 45 0 R /Im31 38 0 R /Im35 42 0 R /Im100 107 0 R /Im32 39 0 R /Im35 42 0 R /Im45 52 0 R /Im32 39 0 R /Im35 42 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im81 88 0 R /Im327 338 0 R /Im101 108 0 R /Im34 41 0 R /Im39 46 0 R /Im101 108 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im357 368 0 R /Im128 135 0 R /Im44 51 0 R /Im34 41 0 R /Im36 43 0 R /Im34 41 0 R /Im45 52 0 R /Im32 39 0 R /Im35 42 0 R /Im43 50 0 R /Im40 47 0 R /Im99 106 0 R /Im35 42 0 R /Im45 52 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im99 106 0 R /Im40 47 0 R /Im100 107 0 R /Im31 38 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im100 107 0 R /Im397 412 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im101 108 0 R /Im105 112 0 R /Im35 42 0 R /Im36 43 0 R /Im103 110 0 R /Im35 42 0 R /Im43 50 0 R /Im31 38 0 R /Im100 107 0 R /Im32 39 0 R /Im100 107 0 R /Im46 53 0 R /Im35 42 0 R /Im34 41 0 R /Im32 39 0 R /Im33 40 0 R /Im102 109 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im31 38 0 R /Im101 108 0 R /Im100 107 0 R /Im39 46 0 R /Im35 42 0 R /Im101 108 0 R /Im38 45 0 R /Im39 46 0 R /Im45 52 0 R /Im102 109 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im105 112 0 R /Im34 41 0 R /Im100 107 0 R /Im99 106 0 R /Im36 43 0 R /Im34 41 0 R /Im49 56 0 R /Im35 42 0 R /Im43 50 0 R /Im38 45 0 R /Im45 52 0 R /Im43 50 0 R /Im35 42 0 R /Im39 46 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im34 41 0 R /Im36 43 0 R /Im101 108 0 R /Im40 47 0 R /Im38 45 0 R /Im39 46 0 R /Im45 52 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im32 39 0 R /Im40 47 0 R /Im45 52 0 R /Im43 50 0 R /Im31 38 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im100 107 0 R /Im111 118 0 R /Im357 368 0 R /Im162 169 0 R /Im48 55 0 R /Im31 38 0 R /Im45 52 0 R /Im38 45 0 R /Im101 108 0 R /Im35 42 0 R /Im100 107 0 R /Im99 106 0 R /Im35 42 0 R /Im39 46 0 R /Im99 106 0 R /Im36 43 0 R /Im34 41 0 R /Im49 56 0 R /Im35 42 0 R /Im39 46 0 R /Im99 106 0 R /Im35 42 0 R /Im39 46 0 R /Im102 109 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im111 118 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im103 110 0 R /Im31 38 0 R /Im35 42 0 R /Im105 112 0 R /Im40 47 0 R /Im104 111 0 R /Im100 107 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im103 110 0 R /Im34 41 0 R /Im36 43 0 R /Im38 45 0 R /Im35 42 0 R /Im40 47 0 R /Im104 111 0 R /Im335 346 0 R /Im340 351 0 R /Im341 352 0 R /Im342 353 0 R /Im340 351 0 R /Im343 354 0 R /Im344 355 0 R /Im345 356 0 R /Im346 357 0 R /Im340 351 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im33 40 0 R /Im31 38 0 R /Im102 109 0 R /Im33 40 0 R /Im35 42 0 R /Im100 107 0 R /Im101 108 0 R /Im105 112 0 R /Im31 38 0 R /Im45 52 0 R /Im45 52 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im100 107 0 R /Im32 39 0 R /Im40 47 0 R /Im39 46 0 R /Im35 42 0 R /Im81 88 0 R /Im109 116 0 R /Im34 41 0 R /Im44 51 0 R /Im36 43 0 R /Im35 42 0 R /Im125 132 0 R /Im100 107 0 R /Im33 40 0 R /Im40 47 0 R /Im105 112 0 R /Im100 107 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im101 108 0 R /Im40 47 0 R /Im38 45 0 R /Im39 46 0 R /Im45 52 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im39 46 0 R /Im35 42 0 R /Im100 107 0 R /Im38 45 0 R /Im36 43 0 R /Im101 108 0 R /Im100 107 0 R /Im104 111 0 R /Im39 46 0 R /Im40 47 0 R /Im48 55 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im99 106 0 R /Im40 47 0 R /Im31 38 0 R /Im45 52 0 R /Im101 108 0 R /Im40 47 0 R /Im104 111 0 R /Im103 110 0 R /Im31 38 0 R /Im35 42 0 R /Im105 112 0 R /Im40 47 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im100 107 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im102 109 0 R /Im39 46 0 R /Im34 41 0 R /Im48 55 0 R /Im100 107 0 R /Im81 88 0 R /Im109 116 0 R /Im33 40 0 R /Im35 42 0 R /Im32 39 0 R /Im38 45 0 R /Im39 46 0 R /Im39 46 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im103 110 0 R /Im35 42 0 R /Im39 46 0 R /Im100 107 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im104 111 0 R /Im174 181 0 R /Im166 173 0 R /Im175 182 0 R /Im164 171 0 R /Im176 183 0 R /Im177 184 0 R /Im178 185 0 R /Im174 181 0 R /Im174 181 0 R /Im166 173 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im35 42 0 R /Im100 107 0 R /Im100 107 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im36 43 0 R /Im49 56 0 R /Im38 45 0 R /Im100 107 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im335 346 0 R /Im340 351 0 R /Im341 352 0 R /Im342 353 0 R /Im340 351 0 R /Im343 354 0 R /Im344 355 0 R /Im345 356 0 R /Im346 357 0 R /Im340 351 0 R /Im258 267 0 R /Im125 132 0 R /Im81 88 0 R /Im128 135 0 R /Im81 88 0 R /Im131 138 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im43 50 0 R /Im35 42 0 R /Im39 46 0 R /Im101 108 0 R /Im40 47 0 R /Im102 109 0 R /Im34 41 0 R /Im31 38 0 R /Im45 52 0 R /Im34 41 0 R /Im104 111 0 R /Im38 45 0 R /Im39 46 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im31 38 0 R /Im48 55 0 R /Im99 106 0 R /Im39 46 0 R /Im35 42 0 R /Im100 107 0 R /Im100 107 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im104 111 0 R /Im132 139 0 R /Im133 140 0 R /Im134 141 0 R /Im135 142 0 R /Im136 143 0 R /Im137 144 0 R /Im138 145 0 R /Im46 53 0 R /Im100 107 0 R /Im35 42 0 R /Im158 165 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im45 52 0 R /Im35 42 0 R /Im100 107 0 R /Im100 107 0 R /Im46 53 0 R /Im109 116 0 R /Im34 41 0 R /Im44 51 0 R /Im36 43 0 R /Im35 42 0 R /Im170 177 0 R /Im36 43 0 R /Im31 38 0 R /Im100 107 0 R /Im101 108 0 R /Im100 107 0 R /Im100 107 0 R /Im40 47 0 R /Im48 55 0 R /Im35 42 0 R /Im100 107 0 R /Im101 108 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im100 107 0 R /Im101 108 0 R /Im31 38 0 R /Im32 39 0 R /Im100 107 0 R /Im34 41 0 R /Im44 51 0 R /Im40 47 0 R /Im38 45 0 R /Im101 108 0 R /Im125 132 0 R /Im170 177 0 R /Im140 147 0 R /Im99 106 0 R /Im36 43 0 R /Im49 56 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im35 42 0 R /Im100 107 0 R /Im34 41 0 R /Im101 108 0 R /Im103 110 0 R /Im34 41 0 R /Im39 46 0 R /Im31 38 0 R /Im40 47 0 R /Im38 45 0 R /Im100 107 0 R /Im100 107 0 R /Im101 108 0 R /Im34 41 0 R /Im102 109 0 R /Im35 42 0 R /Im100 107 0 R /Im40 47 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im102 109 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im34 41 0 R /Im103 110 0 R /Im35 42 0 R /Im39 46 0 R /Im34 41 0 R /Im102 109 0 R /Im35 42 0 R /Im43 50 0 R /Im40 47 0 R /Im103 110 0 R /Im35 42 0 R /Im39 46 0 R /Im128 135 0 R /Im162 169 0 R /Im39 46 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im40 47 0 R /Im48 55 0 R /Im99 106 0 R /Im40 47 0 R /Im100 107 0 R /Im31 38 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im100 107 0 R /Im104 111 0 R /Im39 46 0 R /Im40 47 0 R /Im48 55 0 R /Im174 181 0 R /Im166 173 0 R /Im175 182 0 R /Im164 171 0 R /Im176 183 0 R /Im177 184 0 R /Im178 185 0 R /Im174 181 0 R /Im174 181 0 R /Im166 173 0 R /Im46 53 0 R /Im100 107 0 R /Im40 47 0 R /Im99 106 0 R /Im35 42 0 R /Im45 52 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im44 51 0 R /Im40 47 0 R /Im40 47 0 R /Im130 137 0 R /Im81 88 0 R /Im327 338 0 R /Im38 45 0 R /Im39 46 0 R /Im99 106 0 R /Im39 46 0 R /Im31 38 0 R /Im100 107 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im36 43 0 R /Im49 56 0 R /Im46 53 0 R /Im31 38 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im40 47 0 R /Im99 106 0 R /Im35 42 0 R /Im45 52 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im48 55 0 R /Im31 38 0 R /Im43 50 0 R /Im102 109 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im99 106 0 R /Im33 40 0 R /Im34 41 0 R /Im100 107 0 R /Im35 42 0 R /Im100 107 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im34 41 0 R /Im32 39 0 R /Im32 39 0 R /Im38 45 0 R /Im39 46 0 R /Im34 41 0 R /Im32 39 0 R /Im49 56 0 R /Im395 410 0 R /Im398 413 0 R /Im399 414 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im100 107 0 R /Im99 106 0 R /Im35 42 0 R /Im35 42 0 R /Im43 50 0 R /Im140 147 0 R /Im38 45 0 R /Im99 106 0 R /Im34 41 0 R /Im39 46 0 R /Im35 42 0 R /Im102 109 0 R /Im39 46 0 R /Im35 42 0 R /Im34 41 0 R /Im101 108 0 R /Im35 42 0 R /Im39 46 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im45 52 0 R /Im31 38 0 R /Im45 52 0 R /Im35 42 0 R /Im45 52 0 R /Im43 50 0 R /Im102 109 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im99 106 0 R /Im33 40 0 R /Im34 41 0 R /Im100 107 0 R /Im35 42 0 R /Im81 88 0 R /Im131 138 0 R /Im45 52 0 R /Im48 55 0 R /Im34 41 0 R /Im45 52 0 R /Im49 56 0 R /Im99 106 0 R /Im40 47 0 R /Im100 107 0 R /Im31 38 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im100 107 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im36 43 0 R /Im34 41 0 R /Im39 46 0 R /Im102 109 0 R /Im35 42 0 R /Im100 107 0 R /Im99 106 0 R /Im35 42 0 R /Im35 42 0 R /Im43 50 0 R /Im140 147 0 R /Im38 45 0 R /Im99 106 0 R /Im35 42 0 R /Im45 52 0 R /Im34 41 0 R /Im44 51 0 R /Im36 43 0 R /Im35 42 0 R /Im100 107 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im100 107 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im102 109 0 R /Im39 46 0 R /Im34 41 0 R /Im48 55 0 R /Im101 108 0 R /Im40 47 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im103 110 0 R /Im34 41 0 R /Im45 52 0 R /Im101 108 0 R /Im36 43 0 R /Im31 38 0 R /Im45 52 0 R /Im35 42 0 R /Im100 107 0 R /Im40 47 0 R /Im45 52 0 R /Im35 42 0 R /Im40 47 0 R /Im39 46 0 R /Im101 108 0 R /Im105 112 0 R /Im40 47 0 R /Im99 106 0 R /Im36 43 0 R /Im49 56 0 R /Im288 297 0 R /Im292 301 0 R /Im348 359 0 R /Im349 360 0 R /Im292 301 0 R /Im350 361 0 R /Im294 303 0 R /Im351 362 0 R /Im293 302 0 R /Im292 301 0 R /Im400 415 0 R /Im66 73 0 R /Im60 67 0 R /Im83 90 0 R /Im65 72 0 R /Im63 70 0 R /Im401 416 0 R /Im59 66 0 R /Im68 75 0 R /Im68 75 0 R /Im59 66 0 R /Im68 75 0 R /Im71 78 0 R /Im402 417 0 R /Im403 418 0 R /Im404 419 0 R /Im368 381 0 R /Im369 382 0 R /Im369 382 0 R /Im405 420 0 R /Im406 421 0 R /Im402 417 0 R /Im401 416 0 R /Im59 66 0 R /Im68 75 0 R /Im373 386 0 R /Im407 422 0 R /Im62 69 0 R /Im61 68 0 R /Im69 76 0 R /Im373 386 0 R /Im408 423 0 R /Im77 84 0 R /Im60 67 0 R /Im60 67 0 R /Im406 421 0 R /Im409 424 0 R /Im66 73 0 R /Im62 69 0 R /Im64 71 0 R /Im66 73 0 R /Im68 75 0 R /Im63 70 0 R /Im61 68 0 R /Im71 78 0 R /Im66 73 0 R /Im368 381 0 R /Im81 88 0 R /Im378 391 0 R /Im369 382 0 R /Im402 417 0 R /Im394 409 0 R /Im394 409 0 R /Im81 88 0 R /Im376 389 0 R /Im405 420 0 R /Im406 421 0 R /Im377 390 0 R /Im368 381 0 R /Im373 386 0 R /Im371 384 0 R /Im373 386 0 R /Im378 391 0 R /Im370 383 0 R /Im371 384 0 R /Im378 391 0 R /Im81 88 0 R /Im374 387 0 R /Im405 420 0 R /Im368 381 0 R /Im81 88 0 R /Im370 383 0 R /Im376 389 0 R /Im402 417 0 R /Im374 387 0 R /Im368 381 0 R /Im81 88 0 R /Im378 391 0 R /Im405 420 0 R /Im406 421 0 R /Im377 390 0 R /Im376 389 0 R /Im373 386 0 R /Im378 391 0 R /Im373 386 0 R /Im378 391 0 R /Im370 383 0 R /Im371 384 0 R /Im376 389 0 R /Im81 88 0 R /Im380 393 0 R /Im405 420 0 R /Im368 381 0 R /Im81 88 0 R /Im376 389 0 R /Im369 382 0 R /Im402 417 0 R /Im374 387 0 R /Im370 383 0 R /Im81 88 0 R /Im370 383 0 R /Im405 420 0 R /Im406 421 0 R /Im376 389 0 R /Im369 382 0 R /Im373 386 0 R /Im377 390 0 R /Im373 386 0 R /Im368 381 0 R /Im371 384 0 R /Im380 393 0 R /Im377 390 0 R /Im81 88 0 R /Im378 391 0 R /Im405 420 0 R /Im368 381 0 R /Im81 88 0 R /Im371 384 0 R /Im376 389 0 R /Im402 417 0 R /Im374 387 0 R /Im376 389 0 R /Im81 88 0 R /Im368 381 0 R /Im405 420 0 R /Im406 421 0 R /Im377 390 0 R /Im380 393 0 R /Im373 386 0 R /Im377 390 0 R /Im373 386 0 R /Im368 381 0 R /Im374 387 0 R /Im380 393 0 R /Im369 382 0 R /Im81 88 0 R /Im369 382 0 R /Im405 420 0 R /Im368 381 0 R /Im81 88 0 R /Im394 409 0 R /Im369 382 0 R /Im402 417 0 R /Im374 387 0 R /Im371 384 0 R /Im81 88 0 R /Im377 390 0 R /Im405 420 0 R /Im406 421 0 R /Im377 390 0 R /Im374 387 0 R /Im373 386 0 R /Im368 381 0 R /Im373 386 0 R /Im378 391 0 R /Im369 382 0 R /Im380 393 0 R /Im369 382 0 R /Im81 88 0 R /Im380 393 0 R /Im405 420 0 R /Im378 391 0 R /Im81 88 0 R /Im369 382 0 R /Im369 382 0 R /Im402 417 0 R /Im374 387 0 R /Im380 393 0 R /Im81 88 0 R /Im380 393 0 R /Im405 420 0 R /Im406 421 0 R /Im370 383 0 R /Im374 387 0 R /Im373 386 0 R /Im371 384 0 R /Im373 386 0 R /Im378 391 0 R /Im376 389 0 R /Im371 384 0 R /Im369 382 0 R /Im81 88 0 R /Im369 382 0 R /Im405 420 0 R /Im109 116 0 R /Im34 41 0 R /Im44 51 0 R /Im36 43 0 R /Im35 42 0 R /Im125 132 0 R /Im171 178 0 R /Im109 116 0 R /Im40 47 0 R /Im38 45 0 R /Im39 46 0 R /Im45 52 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im39 46 0 R /Im35 42 0 R /Im100 107 0 R /Im38 45 0 R /Im36 43 0 R /Im101 108 0 R /Im100 107 0 R /Im171 178 0 R /Im100 107 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im103 110 0 R /Im100 107 0 R /Im81 88 0 R /Im45 52 0 R /Im40 47 0 R /Im45 52 0 R /Im140 147 0 R /Im100 107 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im114 121 0 R /Im39 46 0 R /Im35 42 0 R /Im99 106 0 R /Im40 47 0 R /Im39 46 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im104 111 0 R /Im39 46 0 R /Im40 47 0 R /Im48 55 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im99 106 0 R /Im40 47 0 R /Im31 38 0 R /Im45 52 0 R /Im101 108 0 R /Im40 47 0 R /Im104 111 0 R /Im103 110 0 R /Im31 38 0 R /Im35 42 0 R /Im105 112 0 R /Im40 47 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im100 107 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im103 110 0 R /Im35 42 0 R /Im39 46 0 R /Im100 107 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im129 136 0 R /Im81 88 0 R /Im410 425 0 R /Im220 227 0 R /Im221 228 0 R /Im222 229 0 R /Im223 230 0 R /Im224 231 0 R /Im225 232 0 R /Im226 233 0 R /Im220 227 0 R /Im220 227 0 R /Im221 228 0 R /Im382 395 0 R /Im187 194 0 R /Im233 240 0 R /Im207 214 0 R /Im216 223 0 R /Im198 205 0 R /Im213 220 0 R /Im189 196 0 R /Im185 192 0 R /Im184 191 0 R /Im193 200 0 R /Im213 220 0 R /Im204 211 0 R /Im193 200 0 R /Im188 195 0 R /Im183 190 0 R /Im190 197 0 R /Im182 189 0 R /Im190 197 0 R /Im191 198 0 R /Im188 195 0 R /Im201 208 0 R /Im185 192 0 R /Im187 194 0 R /Im185 192 0 R /Im198 205 0 R /Im190 197 0 R /Im187 194 0 R /Im183 190 0 R /Im188 195 0 R /Im183 190 0 R /Im190 197 0 R /Im182 189 0 R /Im187 194 0 R /Im213 220 0 R /Im183 190 0 R /Im185 192 0 R /Im187 194 0 R /Im183 190 0 R /Im182 189 0 R /Im188 195 0 R /Im201 208 0 R /Im185 192 0 R /Im186 193 0 R /Im193 200 0 R /Im182 189 0 R /Im227 234 0 R /Im185 192 0 R /Im411 426 0 R /Im389 402 0 R /Im207 214 0 R /Im217 224 0 R /Im391 404 0 R /Im196 203 0 R /Im412 427 0 R /Im207 214 0 R /Im217 224 0 R /Im391 404 0 R /Im413 428 0 R /Im384 397 0 R /Im201 208 0 R /Im183 190 0 R /Im202 209 0 R /Im201 208 0 R /Im202 209 0 R /Im190 197 0 R /Im186 193 0 R /Im186 193 0 R /Im185 192 0 R /Im187 194 0 R /Im198 205 0 R /Im190 197 0 R /Im182 189 0 R /Im194 201 0 R /Im187 194 0 R /Im188 195 0 R /Im190 197 0 R /Im384 397 0 R /Im183 190 0 R /Im182 189 0 R /Im182 189 0 R /Im183 190 0 R /Im182 189 0 R /Im227 234 0 R /Im198 205 0 R /Im186 193 0 R /Im190 197 0 R /Im195 202 0 R /Im193 200 0 R /Im195 202 0 R /Im183 190 0 R /Im213 220 0 R /Im183 190 0 R /Im188 195 0 R /Im183 190 0 R /Im185 192 0 R /Im187 194 0 R /Im183 190 0 R /Im182 189 0 R /Im188 195 0 R /Im201 208 0 R /Im185 192 0 R /Im186 193 0 R /Im193 200 0 R /Im182 189 0 R /Im227 234 0 R /Im185 192 0 R /Im411 426 0 R /Im207 214 0 R /Im217 224 0 R /Im234 241 0 R /Im209 216 0 R /Im196 203 0 R /Im207 214 0 R /Im217 224 0 R /Im209 216 0 R /Im209 216 0 R /Im413 428 0 R /Im217 224 0 R /Im128 135 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 408 0 R +>> +endobj +408 0 obj +<< +/Length 945 0 R +/Filter /FlateDecode +>> +stream +xå}˲ìJnÝü~ÅJïf>øÒÐ!+Âê¡&v?Ôm+©»¯£Ãïb1IäNp¨:Gõ®«`>x%°ð§þéãO? ¿þÆñ£§?R?}æ|ÿñíáÇg^~¶þøýat¼¾ýµü?ß¶C÷ãæYÆÍóÃ8ù1?NãbeÜí¯mþÖçq¹q¹'?¦õÇyÜ ë»ýõ0nxXßúoãæNÆÍÝÃ8ù1?NãRHeÜí¯mþÖçqIÖwûëa\zXßúoãúIÆõÓÃ8ùQXá4îO?±ë>ºÏîáÿæ©ûÃð9O7ÎâçßüüÓ¯þûÏ)öÿï?ýÓô9s¼~þG!Îòg?ì Láö_Â>ûn%0&Áíÿs P]Â4K't +Øe]Âѽzßjc661ôÁ=4úfÐvÙÜ|#=÷ õ³{ ¹!ºg03H¡ómbRê8FJið1Ru}änã"J\·1N¬ç´HÓÃâM<û äÏnáÄa^1çÏ6ÃÀ¢¦ÆÛÙª"\~|{ø±)Býñ{ctÑ}ëhù1ô2ôþ×^q«î+ãÊuÜòoã%·+ºo'?îÿúþoãnJ®[u_W~¬ãs7Èúî+ãõÝÿÍqÜMÉq«î+ãÊuÜòoã%WNcÕ}å4Êû¿¾ÿã¸$ë+º¯Kë»ÿã¸~z<ýéñôu\?ÏOͧ£ÍS,ÌóÀ5ù0:l£÷æp[°Í®ð±Ü×uÜò×7ùk§?ãbq·¿¾É_ãäÇaÜ+ʸ,Ü<¬lSÆÉøAÖ·üõMþz7Øë»ýõMþz'?öãÆË¸å¯oò×6NÆÝSwûëüõ0N~ÆÉß®ü£´´øÂöÈÅú¹YAíÑO7 }·7ù$K¸É0n ói=]Âß| +Eë 4dC�Í'ÁMiAæÓ2Eë 9`Æ.aHù¤3ncOÂHc#øÍ'A¹Û¸Ì§çrýWæ8y?|¿+jò¨ÇFAÂååàòW=¶üëU¿¶q»ÿç»»ÿë»+=;ë±û¾ë±û¿¾ë±ò×ø³»ÿçAÖ·ê±ò×ø³»ÿç»»ÿë»+=;ë±û6ßõØò¯W=VþÚÆzìþïzìþ¯ïz¬üõ0î¬Ç¬A ßáÁêÕs?[½e_V3¹lþØlfcw$pòó)²ã¹bzyîO?uc<ÊÎå¿Ä¾°|ÿxkõîL@q~ñÈ«ã7¤$0Ì#º±Ð%$@_äHäB(J¸ +ìÑÜîYøB3Ac¹#J Ë:t a%1ô('æ2îÁ8S91X¢Ã4H¸)¬waàRÈÅP8ð5HÁM,"mFgË"¨b eåXÏ@.SB ¡ÀM\k«@AåÚ°@nbä)F"¬Ê1èr9ÆJ¤^ §0tä)ô @F7q,Ç8 z¡HÍ4EÒ>È»rèDµ ð¬HNË&Nè&Î gp ©Eµ¡8õ䦲=ÆY\t£D¼@¾Î©l¥õ¡¿Î¢Ú`8q|°¼sâLºÅcíD5uj#ÅHª÷ÔÔFB=Q¤2ìòä]xÕ&AJ¤®Ì ÍýrªÐ%H�"ÁdaS× +¡_:ÆDc¤Ï¤Ê¡ôä&=(É4Cm¤HÚÂHpF96÷GòظòOd.ô.lÊ]\gå2M°jãUê + 1¶aÅ2°®¯:¨LT%0HT>ÆL G`À®ï@²²*ØÈ¸2¬ÞËeʰTçBØJë¹Êp@RB¢°µ.ÆöîDuas_61Ábv<Gò:ëc¬ÙWH¬Úä6¢)Ëਮ801²P(ô:§nà+ïtõ3²Ä;ö7uI'¹Õ®ãl3�÷ Ès!| +à*2EM<%en[@êJÀ êH"TñÄTÑÛXpN¤«ÈD8É|¤í:Ã/©õ¶aN$´Í{G=×PHºrÒ±Oe}í%ÀÊD¾/¨ßD{é¬ÍÕW_øÁRt#l©Þu8àoV¹j, âøR¨ªvFåA9ͤ×6uç|*ÓXl'öDâ3ãtàØzÙ ÎÁõ28§É}ðmMßÞå6ÂÛÄJú�ü"èºE÷Q#+Eö2 £ä`ÀJ>»¯yëpt_<úÑ'Rµé`Ku$ +M@Rªà¨®Hå% §�K¤]¦ÀïLì)ÌzÛB�VmØ/VוּN§Ú +ÜodYYÝ>ØØS@5SG:ß)̤ë+B¤õ?%Î>Ø:MæËÒX*à¨î@ê:Ds÷aN +ØýïÉôÍL%¶ÎûpúÆÒ`½IH'ºj6qzr {E"ÁùF§³v",Taç;pǸÀf^"¥²Yð$AFÚÞ\aVn#Ø6°ïRAûê7¯ÿ#ùh«å°ã)Æ6yð¨äæÁǨfl¡Hvà˲èÉAmY ÎOÔTø©LïymBÞ>?QÞq( ®:¤.¸Mâ(Yaxý>£¯¾Rè7W6_v}õ±Î?À4¬Xä öX`å*¬g³'ÿxÏÆ5 ~wfkûØ®ÍÀÍ}¹°PZ_ØBÎ +8INTÅ;B�æDöG¦á÷FÁ¢yàH¢ÐSÐM¶Ê74Y[9"|$®k&d±¶=l°M À{ ·~kP¬X"©èMIlÃÅ:KjcôÉtÒk}YEleÔéJ±¼tEX½^ýÉÁ �§ÚláÀ¦PÀiÙDØc¡óPÀ7ÂÆ¶øp0.3(ç�gDÑÕDèM×tÑ(ÊCbªða\]dEo£n"lh²xªß\¥$ÞQ,pR+ys_+L@¤2¬ÞÙËÄælo¾3ûî Õõeßá(õ\ám ÆÁV<²/8ÖxO^ghö%C Ã;òÎ4¶(°6 Ò +\á=Ç:b&o£Cã9ÛÊì�óÂò@ßÞa(áD®ùSóÒ$G¾,j½Zdö§g²êú¯ÿly¢fÎÃ/]¼Î ëÞµâ>ÆDêFúa£#E¤À&^gxGR3)0/ ";]âµÁÈZi:ø¹XÊ$#ñE¢t�FòÔ�Ö§sØw&ß\S'õLð$©.`A$ø»À²¯<ø ,PD¨²ºvy4?ò»�§²Z>§(h$¨LÔm´(LK¶é¼uø¡ÆÑ¸»À÷ÐwgºdN¹f«Htp�Fú¤@QcDlÃá´Öάà +Õ-gMlCmå CÎg² QªÛ?g ø¢ÃUçbdÁÈ<§l,ÀÅl´ #Ái$R×FÃæÃ2D|ßpóÐÛ¨6üÖ&Ó0æ|Çn" °´5Á¥²èFôidmw©ûºvN×;ÃÊ5uS8VØÈ±²,¡3Ø´3ì/0¼vV+ ÎË+ÈJ"}?!ªËVÒôl >ÀXÎÑô¶dd±ý\ùǺ=F£yl>Îâ;Ãî 7Q]_8!§@w êHʺ±`Óá7W½LlÙ:üL$om4ÈÔëﵪÊËl{%ºê~áPÕ¿½³yª<ø`"%¾;ÃÙëü]`±DU¬ÓPtã?¶÷�n©²¦.]ߨ¬ü²â@M'½6yw_}YÄ66�±Å`mUNwÙÖc¤¡}àPÄÒàú9FXµPek8èjcø:ëckæÑ9xªØ°È&¾kPNîKäðÏÆ$èÜó|&¸BÅ:]'4±o,tÕ¹¦²0pLUá²4:áY@à»Ðb]UAh>-#[×§HùìòDÒ>ÏÕ Mé#l&5/ ÎaËTÕñÍ}Yìµv¦1ãØÄ6| lî¾"uÁ3`ñÖé +¤4¯´ ¤DÒ=_}Yc[\Á 2컾ʩ�mÁ 2[î>Ô%ùHhú&0 õAêàíB ÒðÈ´n-å +Ûç»ã�#ºò slE °o®xý§þÛaGl£ñGÎØüD¢Ù¢z34á<UÉÊM±¼*½P Øé¢Aiµ%¬Úd`j«÷§eÂÚîaIªwþ +!9pwA}á + +ÙD4wë4UÒ{ßbip�-Ö2U8Ç©ç +G4gòèMú4�§PÈøN¼ú²½ÔFb;âqeBÓLéêB¸¾Qi·6uÙ´2 |cÑÎá´2MïHÌC#²ÀI|&ÔõEO!)z +2ï=ÐH'ÿ#o«£ë L^&}ca»¥Ái$j¥Áo2ÇÖåõN¥a¡}ô½Ý½Î0'Ë·¬û�ÎaLé*: 645ø²ÌyÝø.¤'Éø£ ¾£z¡Ô7ðó@fÑÊhHÃ=ª¤c9RYºhÂØj`ÐQ0#-äÁ702)Öéˤ ÎígÆEò6ÒÄÊÄ-H·Ñ`;à68ßl3T.]yà7¶ÙCÑt"x'r -ÇØo5ó`õ.M¥Á °OçÚ«vyXì@OUÓp2<Ö±Ù@ø«o$ µ<°Ã!î?| +å6ÂÕD=[÷.zöµÙÕkr_ÞBo�/A¤2.¶2ll³½ÎÕíëØ×>ºûjg¸ÿå! àä54I'¹OºlM0ïg!qÀÙ@4 +EIò$úµF;ÂèCÛª+³ø_¦>À}ûD¤ÁêV®¬û/¯¾h5ÑN4¶ºp`1Iw$X°=(èÉÁH%G& Ç§Ö *Jf m>ìt²Z7É&!ã·¡J¢+"a ØÀNµä8?±U[X}g¸ ÒÀÊÍÒIKT]ñd_é=�k&ÒÐܺlÃQÝ+³E¢J ¾µªµh&É<0¼êÀ@4Ý@f ª,N¥PÜARìD6åÏWf3e5¿xN䩸ÎðËwb±@¤$üÂØLY ƱÐ>p¢«n"¦'r ¯a¤-/ûÒ;]Æââàé Ñ +Ú³a ½Îp²oáØ>Ð8bsóè*QmxBÓLÂ4W\NsqTµ¡|а¿ U¦p^=R gFÉû)õ¤ hâ;J#þÂË ã¥övÿ5[-ÃÁ¥NhM¤ÓàúÑpº±ØHè)Ð/´@áû/È ñßF¡ï²Í6ä>^"±h$x:D0Xm8Å?i4'ÝÄíËCmÁ§ o®pbÛÀéÆ-0MlÃI]â7ÂÖºØÊ°Ã!Q°Ã!ÍãHj¡À(>]¦ +º»o¢ÄPàg"6Bg�?ï['¼ÉÊ|Ê5ÅV}g>UÀ9Yb+ÃÖzdM]úy@]_8º/KEÄ©AY6ºí±¬÷NXôI'Âq¬} º³wA-ØñÕFçlÓô+,h©,z}&Âyéªs8& Mp³x,lg &wA-\6²`¡:wAßáM|ç©FÖ>`zÖÐÌ# #ÁùÊ=)4¦Ê6xHèr$Ú>Ðre8CÍWmäAw +à MyåXßYóô[ø +þgB§wR§Jr\"øÊ( k'¬p¶° dÎÑLäu.ÍqiM3 gPT§Ê¾±À2Q_}ál ¶3POÉ`>Õö²æR £±ÓaëÚàÏ}*SÅBûP¬nñÖ;©g¢ëá4lCNÄ:ÌÊ¢XàÊ:ºhgÙ|$mëFÖÐÔêÂÕ7j[u- Í<¹ô)ÀVÚÄnbOPåJV\KÏ +Õ;ÆT²Dakï8¯tü�N#SYÈ®8J ÷°¹=PFÂáØó,Íõ A(éÖÄlÆ4ýê[Rª¸PVýFÎL¶E5l#Ñ!ÑEh¢±Âô½NµJ:3ÎÁ>kûØ(-ͼ±Ð}¾Ùgc`}.Ô,xä.À±4³içxê½0Z×KP¤®%8fºÞYrqàçBûh×öERµi$M�f$:ݸ'wÈèÛ;ül<<KÐVÝrvº¤öYT[º]»¾öÁ±4é$ +Ç$Ï g@¢ñO¦4 «ò R CºH¶Òävû$7Æ?íi46ÐÀBy°ÏD¼Hc(4cÆÍä4Cm¿x²À{Ú9î8O¿¹Â6R�ð Uº];ÝFÖÎômË'u±¤{@ç#ÁQ]ywièoiï[§ÎåµNlÛ�ãÀãûdò2±ªM7F¥Ø50àw&á8Af�»},(ó2)Öéæê|uPÛ?\KFngÈ+|åáöÞa¿|>Ò<KP[6óD*³P 8@³0Sö¡ +~gR 8®ÌÆTÙ¨Íc4ØÀ´FuéÀ±õ% Ñ}öív¾%ºßUm°HINÔDØBaëÞ5{,d+ÒÍíu:/XR&ö©Çy@/ëòæ +GóX@ºË¶ÖþÃ{ é0ø [Ë£)×/ljÃ! #©¥g$1q`ÍDgV;³xë-Wæ³X +HpëAZ èÀ(.lhD Ìä),ö MV7âí²p$K"0y"8ä©ÎÝ'V[-ÍÓre4$Z HTX²õhHÏ×Z84.Up:Q"åÄðKöõÚâ Hü�`H)ÌHlU#¤!ª ~¨¢8$¦ +W²ÝÒÔo£ºRyO§³he°ÓXkÆWÄwÜk'§l ìµé)ÀÕlbÝà)³>Fq`ÅIͤñ*âìeÉS »`ÐM,$÷ÄýåÁ³ZLá|Àv×.8~ É}°ÛÇ"²H$²¸ûê3Á|@3§JcÎ++³5p§>Ða éÇ£ºb#Á*m°)±ébã}8Øz&tYÝ>~"/ÓÓ¢ûtº1rÍH(40ì±ÈÐp@RÞÞIhþP+û`ǸeLÓÝÖáT[tnË[S(Ø÷ ÁNAWÒ(`;ÝÌ ÀñD¨[Qp<Q¾á÷¹ðuÒN$Ú¥ÁÄÍ`+ÓéÆpæ|$Õ»Bÿ¡Êµ4tѦ6ÊðÇ,`Dö2eî.lÇß ¢ÚÐÞÆÛ]@Ö§(ÏÆðe"Q,7 nep y7#6uéËÔsªm3¶YÔ:ô·ë/aâÊëOá åeñÒ¼U®$'ì8ð1Ò¶]ÂÄ)Mµ¡¥º*áZߪOÈÝIû@ß`KÌR8TZ¨ÂÊUUÙB( +ÌÏÚDØéb'ÒÐÛXºh¨ûÏg²0Ù± ¢&�í;óÝfea î,KÛ¥Ópì;V¨Jv ¬Iû¾ÎÛ] êL.¡dhǸÍõ m¤Ì2ìûæ +?Þ³!êÂ9ty¢VÀ,¬§÷ðÃ5[,¬&GzUûÍ_k8aÐ9)ݧËè=@Is÷iLKå¡ÿmüÆÙS= {°6ü+»/M0aø14é¨.Ýjm-×3 'Ò°6´<xU«±íµæpmd+»itÖ8NL·*íDþEäÁËàδ(È"Ealn¡`Fä¸$K N3»@#0ÀYã4ê=Jê÷ ®åaÑÊ´½Lx?×¼4f¿,Ô+üβ0#©@IÚ9zÏJåÌÖ;«fY.[gû;ký`ä¶K^g¸-O¤Ñ׺°©Ë6½Ó¾<pPVøàe-$h#«g ªº}l+÷D&ÂöJÙ¸²*µSV,ZÓ J$I|3k# ú�z/µ<ðØ'þ'"MëÚ` {(ú�|�Z'KÀù@*iàl ûTã#ÑÀ:Újî~�o¢Ì�~áõD±V¶¢ÛhÐ�K0'=i¶(Ⱦ|+84öÑvkll¯ù}gáD|ðiÈ}lFÝAÎSÕU/©Ê[\ª«1xè¾<3)s~kc è]÷ ÚyfY4(Ëb@ÀAYXüDµPàSIFÒ¼uØF·NlYõ.KíDÂÊtåziÝH7G~Xl`ÐØö²F_º´Ë¥î.Ð�ÍtÊí.À mðDwÁ Õ~´åAªaåÊ6ÅÕÈ6>Ⱥÿ´Ç¢ØPÇ÷+(-dáyHÃ�Í ê!�÷gRGôJä�×±¢+¼cZQðl"ì½³aa}c-UÑl0ÏÁYÅÂæ#i¢+AïD4áÏ|o¤óPèh*wíÛZÒí`Ô³ªm OA�áDW¥ \É1²}8ð|¤À^&ÑLp¶°èX"I(ýæ +Nd}áVÆo¢dÃÍÑ,eë\QE·áT#N/ÈÛÈçl³RY[À6+Ö5G.Yª-ÝX/\²-qtGØå¯ÍÂÓLY¼uÝDø2ì1²¸ºt¿wµiT[6îö²gõØ,¼�BÛî0]j¾.=±{ ùʨf¢;LÓÉ<øJeø¤@ÅCy<PÅÏNêÊ$¨Óï,°ýèNaúH·ÕÉì&J(~_(]Û?ÚJJÛY¤aSëèLý§Ú²ÍP5'ÆÉo#[I£Ð>pBS 9Q ÐÓlOúI>ÐL8B(xIXið)°BUÛèGxRÛGWXÒ,8"ǧ äôÍæhjVÝ£ +& U$tv ZO`±qt!¯XXÐ9ÕÎp2ÏHòà(§@«wx =yø>4سÍï ÃÖºä+Ã&ÄÖiôB:[ìÃ_g>ùÍÑÔm6µ/"1¦yv}¶ÙSÐwg8~ ÞÛi^jÎ6©)qiëoâÓ0çáÛ8³2T,*XvÎÖ7êmq÷¥ée½LùPØÌÉD¹D+5Nëí\ìDÜ_sê²ÕDx@2êýyEãl,ÜgÙc|Z Í3| +rð í±ÐÄz®#ñ$X 8 ]]H³2íú÷ÎF4q¼4&Út¶Ø2ì¶S`[àÁ8V;«÷Nv%ÜÿªB�*M£ºrà%Nl ß`¸%l3 Oð\Ik}k9Ƕ"Å0I£y°ëË>+#Á ExVcnìCûðXÇs̤DR¿°b¡ÝÚÌc/¾|úW_&:&bc(¬rÝX|¬#°@èsÝËgÀææÑ}¤Ùóp*dÎÃ¥8lº1]�¡u®t5\Ë#ÓlÉ6CyÐ{ `å°©+o,p÷DÑÎl)n¥±mðÏ@L]ØkÎOdáÒéêBõàòyù-I±Ûê>À+ïYdº¶/Je\U& ]ØBY¸\YD^×VNmÍC}i®.[ç +ÃækÅ5mdÁ(!ù2AdK²Òre8õ~&ù@9®õSF` *Ra ÛÜD-Xº_Ûp&¬C·WXX;ë] °ÈWXJ/Fëö H>íµ¯2¥meæÑ-eàM·¾Î°HcÂäÙêêu¦íDXµ±e ³Ù¤.54Q> G` Aç¤[P*#Áiçì;SÏ&¾k³3Gî+{�Ã`*^ñÈЧ0²ªM]ÕÃV´¬ðÐAG]@d£8Ùf¡q¤.¶¥@µ³xé<(/«:WóJå=ÞSâpE.O¤0"TYÀ5ø2ÑǨf {÷*ðÁP®õ\Cñ\{4Ýø¤g�/Ó;È �Èï@ P<Àð.Ьñ'ß�,TiÓ³VÚÌoC�ÔΡdƽÐÄyð,¨Á?ÔB)Óï@�µPxùm JÉ}¨1? +Mö ·þPCòÖÿS(ñ4Góõb'ïhãG PâH0¸Ð(Áy\è¤g@(Þ@æulÌï@y¤{P¼áYÐÀôkôå LÏ">Öñæg ¦6<ÔÀxáYP 'ß�j¡ô6à4ü6P%ôoC�50Âðã@-- +ûþ DÔB ÓÛkûæï@¢0ÔBy#p¦løþ H'Ü÷>PN7þHÒ7)ûzÒî,ü:óÀà¯' ö·þzÓÀóo@íëûz)K+ë^O xRtå=L{Wtå=L ½ ¸(&E�®&z=þYà.Àð6àBYÀø6à*é]¼7ï}À@ÝÛë\iámÀp&ñû' P paÜ@@`mPç (j¡¼ÍôG"ð2ÉçAç¦ï�[,¬ slÕùëÐoo@ <�@Ï"�m½@zøõöy=þmÀ(UÃÛÁDhãÛ4¦·!�ÊÐæw!�cÑ6&�ã'ÒÂÛºãC�µPô6`LÙüã@ ÅÕ}=ÔÀØÆÀoDÆWþ HCÔByó³À<^NF7þH{%öõnÇúzéY`äÿ×ÈÏ"�·O ôÏ"�·¤¥ °G�©~=Å ¾½Àô,pï�ÛD Ð=m_F@[¼ÀwC oC�nÏpCô6àÞÆ4º»òÓ ôåypWáÇ!Z(Úfë;& ÆQåÀ¾æ�Üãº{(L¶¶éþ û�ÅÙþ!H»vÔByùYPå HëAÔByó Ê(³ý¦g@-Àü6P %W'�Z(ï@ <Àu?@|ÐÀxéY@ã ò³Æô?ÐBIW÷ÊoC�´PRæ} +®îA�µP +®î;@ ¾ñIP îw"Z(÷ Jæý® û�ÅÙ~'¨Qy¿kÅ>@q¶ßÀô,¨ òæg@-×(À¼#³ý³ O >�³ýÒ³ +O ¿ ÔBá ôoC�5q +®î;@-Àø6P¥àê¾ÔÀ(¸ºï@�60XW÷ Z(÷ J?¨;`Þw W÷»&Pìgû FÁÕýÏM (P÷;( +Ôýæg@M×(¸º#³ý³ +O >�j`üâl¿ü,¨ ÂèE�µPÞÀð,¨ÁE�50xÓÛ@ Àü6` %Pyß�j¡`Þw Z(W·I ~ænO |æ|#0åÏ<±@ú#ü9¬ÿ%Iµñ¡i8?ã@ü¦I¹»Ïð@`<Ï ö`¼/!K˹Ûn»ÂiëÉ×>0÷¤§Í~ã骤ÅÀiëÌ-OKh²ÁýðÄésÊÇÓJà>=¸ñ/³A?|ÍÃgÌÇ«ËSërýøf.óÑm ¥2ÌñQku63ÜÎjøön»{BýÄG7[ð°'Òeg«'M>ºí'Nn3àÄÉn �ì'0_'mG¾îêÂq8ÂiëlW6H q?»Éféͼã£ñté3ö ÿìî3>cS8hòQH>º-ã£Ý�|´� ü3Èæ'q2Ü%ø#Û¦ß$T(øPý.(f^+¦þÎÉ{é4~eý +æ¸Êøá3é +BwRkýç8X|ælM`jëÕuü¬ñJ8Jton!í Áïàâ2¢÷ÂÖïíp9T馻Ø(MÜê¤ÑµñsÈænÄ2ÎÎ[X¾_ñ§ù§Ïd*å¥Èùû¡s_¥åv ÊúÉO·¸vHec¼Ã&(0ãý0YxfêÜtë�VSØÀl ¡++g× +jãR>°Op)¼ñàÙ (ãKVëQÄ`%é¤uªHÖð³ ¼EƾEeÞÜp«äÆÛI[ +¥B7í»5Mr3Þ|¤J`rª¢ê!ÈÖ!Öäèbzäèy×%åÎú~èNôlO óêsgë伫Xh\oáaüjÖÐñ~chá'!0W¶o¶¾îa¡Tµ>ïÕ[¶¬é°b`Íß¡eüd¾{ÖÓ1û¿ºq¶Và¾?¡¤gvÐa̯$dÿN¤:ÿl eHUÆ÷ÖÇWO°ti`í ÁºÀ>obqBAß>n A N6Ù¼C[´(¶ÜKÝ Ìö-6¨²ÙºFæjl%;ÒYU Î$`ÔÇèï>ÝûcLæk¦FÀɵ«MQ`\ ªScË6¨:e¦,ð«Ò¥£"%L¥ \KU½²ÁT':«¸Õ¹¹ø¾£|ÿvÛ÷Ýáµ>ýÌÄçðZ-6%µûñFlªz�³¹WBC³iÎ!ÒEoÊlulÄmO§` +2·=¼I ¢3ÍCQó*ô÷\KÏ Vç¯2¨5ÿO}öTõ�J/MظuÙë«Âãøô9t«S»Þá8ÉêFKTÙÁÑ2'Î;Xs)éÑ}ê>?´f.hl +l0wÖüW(Ós_á}NQuýÑt)NZ°Æ�Ë1Ã�9;²mÄÍ@ÙtIL¾²=,ÄW-MÄÎ#w òh©áÑá<Y,x!:g÷zu6õõ}?õ¦¸`ôÁ¼FtÖÞ>BȽbîzøe0Ð~¸[NÉùõãýéî47æéâ2|üzÝ|¿P@÷¿SîÙwZp?Ï òÂyoäNÕ¾?»¾_ * êa¼#([¢bÁúþ ç= «í'`Ü#HTÍâ¿Ð¹¯OHz¢Bë¬t?î<7 pPy9wÄS$*É W¸±5#h «ã |w¸faíÿ Y£r ³õý¡íÙ¹U_ÞBVdúQ+ÁÞOÀ$ìKìÖ¡1ZJ̯C4 ×r¤¹é2JDSøõHÌ=§GbOêIÓ@õÈÒ¯Ñc9.yÂñËpH5 6Y°|ÉF@¯)Å*¹VлÍÿËd³j<©óéj4£Àä¶q5LSôäÌÖ<¡äÆâ K2YØHÂ_ÏV¿}߯ô$¨ßàà,«'§%Vÿ0ó?Çä«ûK²~ylXrÕxâTâûùµ,6%ÁÀ5-mgÈ-Bsg*1÷ÈÁ´Ü¨á¸¦®¤Ø8}j0¦â˸`¶%?Üd- gº³FIe|ï FTÂi½¥¬L· +¾+\åÀÁ'« )¨Çó,z%$n:C3@Æ[°ÆWNp¶Éó ÖÃqÖ¸ëL-äNéíÛºmoµlÍ%"¼8cã®üev»cI8?©Úø¥°g|M Oå + dÏE>ïvæEíÆûÍà :ì6}È!r(pÒñn38DëûV¢`%T +öã¯ÄäQh¿�<I X §H@í°�<©·vàB<IrS,X' Ö¸O%ÔÚz@ÌÚAKVNp27ÐmÇi@ÉAhNçäzݹ�4ÇþhNè]߯Fs +ôa¼?-¼ÍI¾ÍCBk`-Anv. ×RØ_õ3XBôJDu0Yøz8ÝÀÑ·õpWVÂq¥YïÞ V\ågsÝ)àÖØzÕOÕóÓÜBÐ"Ò¢%Dª0 e_Ѳ¬²¯Êü²'<ÿdr°ÿ� +È ¬ Rorûe3õÖüj< ¦r�BÈxóûî4ë7âivíRÆöd¬ö£#6ÝõúOó:þ¡<ðëùm¶)}!¿3ÄrÒ%aÚ1WZÁôæÜB8GÓsçèôæªéQɶü1Ål^"LÑô.Ù´D<@YÀ°y· 7 (jf@´¬À4%Î9võÏ£®YóÙvGÜïY߯g¸þ¤[ö§È{Ûqu{ÉßÏß·þ®Î,eå÷éËxTµl3_÷[1NÝOÞ->$9rÿu·ü}_¯Ã²î]ÄÞû lcó«±!g_ øýø+± d¿[|Ñ øóëÄmr@-½-;oO%Õ[ß¿B¯Ö ¬o ¦ {æ¤j*<Ö +.¨ð úåÉbâ*\Ôöp¿©±C[¨Btö +ü"Áäâ5S:Þ$äû ¼OÖ5òëÀ(Îèþ¹«Õ¢STC¢Ùúþ h@ov?7ú&µ&PËXpîÞÜN³#ª'8XÀïMG©ÖÚwàÉxKù½áh"+Jò»Üº¼Õ¹6 ÕYRìBµY0¥ ?R¹µæß¬·lSô )úEÖKjHÓ»ZZ ^pi-ÀTåµy´¬¸Po8:±*L¦öÜN¦òüΦ9ìH&*#r0QÁ¡S ×Ã9Öx3E®²Ù§ª BÙéÔ<ª,Ó ªÌÌô3Kø4óùû4³mû3Ì&!VHΦsgÈõ¦)í×"½yýr½mI»³34½ a"ÂwD®W+î»5ØPûF&§É×Äsö_wcpÍåêì¿îCνo@1Ñ+øv¿KÖüêS¸ÇWý¾Hù´T°qÕÔ,)òiðO5/¦·ÆûcJi¬¿Ê@uþfjc¥Zu4oÛüÐH +Êöö×jJrë~¼ßטּ�»ÔY|%/§³6à¯)Büm âÏìÖXQP)8_1÷ZÇ+Î#/Cð£Nz9±#Ó-¨8Xbð,F©9M&¨¢©E[To~ßP[ "m1ô5 qKVá®÷qaµRI°¥Õ#ð&lEê¯4Ö5¼�ý$9ÂùW+Ųϩr²ÏªWº%cþ*Åz/Õ!¿°ÿòÏdê!ÿü'Óñ)u?%M=x!L=z«©¡|3e]j¨É0mÉ+)½%E/$¦ôÖ\ILL!æNÈ£exÀb-ÀÈ=p«! %4¨Æ½iM^fi, aÍÕp#úXp#pGÃÑ{×cæB¤Äs÷}zܯ"÷ÃÝ/J¾õõ34wÆâý9úböÎí + ´ÿ¼Ï[âX»ñWRKäû¹UgUÃóî|P}Uæù]�²&àDJ4Àb?CþÔÃÅAþxRo¡e ÕRC,<Ûñuà!óûþp÷,è_ðÐ]|ÀX(pÞ£u��Å%p8A7 ¸4h:pÇÎæ!7 x2öjxঠº�(M6¼�(JøP\Ü¡? xvòA5A§·dÙkPëê ^¯d©â+õJ£ÉÉî''0Æ?Ch6wÐ ¾¡ð9ï×ñ¬Í ôwÈøB®.À¾Èî Lö=öGeeP]À^6MMª°dû&óû²Ô[ÈK¦ðg+'ûûçokt·Q)]�£R,ÜI¥æIrýV}=°a þN àÙÿéè¶¡a0t鹿êÜøT xfó�Üã96»±DΦ_ã/ɦt;Ù6Ê )xL.)>C2 D·Õ°Jë +Tã:£OTOp²¤¨ßR@ê®îÀló [(¤4j(¤4¨J{[»z%I#ÄÖü+Y½1ÞÿJ8Y÷§ HÝ~¸;K@¢zûÉ»½RsÝÝ# O¼ûÏûê`¿# ¬ÓX~=,3øx§äÌøÁC¤Icª+âàO2ÈæçÙZXƺ=Ò|zëûò|¸kê>ðÈäÒh2±»14în]ÂzÁõý+Ψ8û ð;£5`¶ò¾us*º=É4 ³¿?EÁ"àW²õý+ýͲ«Ü}ö]¡:²¥Æ.¼ni´ÆÔdL-î~Ý£¥Æ/¼ni z7WÎ)Åj-Îì#¸ÐâÌÒ¥"*ÁÀ Jt+ZHÇ\û.%sngJ#:ïW½yIøÜw¿Q¥ì4ê!¯´¥&º´¤@3ÓT$ið)j¦É賫BNK QGÞÛü1TôÙ<Aÿ$ úPºlÊl!¨G +ªõ?"4þÔ¥ÓÙB´Ô>ïÇ_xå-Øaü =Ñ¿§ìSÆOÖ÷/äÌgk¼ûJÎ}k|«=Okÿê9ûÖú/ø£%&ä¢ÞZÀ<ÔÞÜA?êà=Á;77È1ðÖôÂdÀ ²Ùïwgç5Wï¸Òoñæ¦;¤óÀx"0|Î'6M;îHdÇñ!4Ü 7KÎ 0ö°3f°6èïRü°Á+Qfráã%ÇSÞ½5µÅ} +FhrK`ÆsUKý ÅÃàãjýÄèU¯n2eß)+YoñîÈäþ·ÕQÅ¢ïÌïû¹;óû\²àT5TÏÑwu®ç8 ÐLkuÎÜÁ>OÖ}ºìâºOg}ÿOçU§5ÎR§W|ºÁgUOp0MRw�q¸»6>ö£ Lær»4irÞ¡ê '¢ö Ö`Ð ¨x±|b,>éøs°¼²ÙvKü9Ùĸ(%ØyÒüúHÀ¸MIr!qñ^2Ê.$.J Æ;qñ®íÙÄñêïÍÒ¿zµhæÏ@ìË\Éw;Ë0=ç;Tãó`°P+ð¦ól¶gxÓÚúÎ:ÅóÎâl4¬9ì_õfá&CÇ77í+÷ªfÒw¸î© Ó"ûê÷_w+ÃÉüºÛ9ײ1ùjtB$ùnüHòDÐÚü* AƬ/7ÃùRµþÑæøëPÉ}0,þ±`Ý*Á~}ë> ¿tyî?LÀà,ºÀÅAWêhJÒçaþøØhMàB|lòm@gsþ§õWLài¸´uX® Ô86ówGh[³½ÿ5LθA\Ò(.i@+[ -C*Ad ÕB\RPI²@ëûõdÞ+f¦òÚ8;Ågp%¹ToÜmWÒçJ [RÈÃg3l-ßèVCò@àtÃÃP!pMx°ã¬¼«ó=¼/aNæ8ÚE¬1O¥80,ÉJÙNf0}¹£Ò¹yëÑ-(±Þúî h*Ó³7PO8ðsõ1ɲüÁ!yj)Ó:ȧ©ÌüÁ¡lkóþæü%$½uV³Fp +ÔFÒtÖFi´XàPq§rC£³ýུ¶&p!eÀgWjg/@t,¿PÑYß·.ñq| S=QY-Eªµ6Î>{¤ÞÆ9£<\°9¼b¨Sê¼U½åV]èA{c[Í{1Ý¢/fTÃ/ò[Åå'K^êmIB#ã<;'PÇG±ìÿ5è; ¥ÇºÇV oZ+¨vÞ (÷æ÷^×êÐÜ}üM)"@<óÝpã%ÉÛØ÷ÍÆp?L°ïn¸)íÈòRs×ã{çÈrM лoè¡óö¯ QKpînñ$Ê÷Dó¸Ðæ/BÕRÒñpî> Îí¾~é«×âDkýIÈ£µ�t°O®TMõæºÓÂ`~ß®óûbsÙµÕÌ+à`AXó�j8Ö.¤ÿitî@À]κâ0,¤á¹Uc'é0Þã\ë},Ôj}b kWR¤öH%ô&F¿|¤©÷¾1yÈâÉk' /D8§á<LÀ-¢_T*òfN&Sx4Ñ¥ÉÕ¨@ðÉ¡jûhñÐ ö=ÉÇÕùר÷(¥4MA^YÖðÐ×àäÕ J,V$%EÒè5¦*q¥Éþ> ɼÃkXÆÛrÜ͹óÑ +8Kðq@5Õ$nbøËT:Þ"p¯® wÀÎ-EâïÁ%¨·ðwé-ÂϹ·XèJTÊ'DëÝs6K�©ËÌÛÖüëÐ(N¬2eg®ïl)îéØzØmËõeøÍá>æ´Ûë£Ó«RaÉBnXRtÂÁ»ñ~ ¼î¿@õu˱+0ÂÂ>çÕû+0ÂMÜ_o JÅ à¯Ä qE«<,Á_D fà®ÄY¢:BàqÝ8÷ÆÆ)øq ëx±J`)ê£ø ||P{%\zé¬Ç8CoõA\²Ã=öGV7±ÛÓ«¡a ñ&ÙÏßx* ½ûïû!F$ó²ñýªS/à¶{«KI^´&àÎk`¦É�µ¬)S;Hêñ,É]YóhHB+s{:qÀpËÆNÑc¬ð§nJ#¶.dÉu«ß¨LãûÕ+$Å+T +ImKU'0wxæî° ¼4ïpµJ¬Éýü¥T!p~`©æª¹BñË\jºRôq@5[(úx=ßÊbÇBÂzÙ<@T«79ÐßIj°àB' [ùÓ½F. Û"èBGfß÷«7X¿ÛZ¸âQwv!¢ÑZÔÑR¾ýøW#¶án&©ïkeþ©wÍ¿v×`¶ÐÞÒAS¹òè�u¸^S]ëÍ®ý«L½ðGTÌÀýÂJHcB ¸_T IÐÍ-ÿêkI +¥©ëa¸ñ¬`¢kx5K¨X�ûán\ÞöÃÝá¬önÝcä[|Å ÖKS£áÑ*ßä°|G±MFDÛ.=¹Ãýüõkð´#p¥~M÷÷3¸ï4Xãý92ò®wX?#x;&¸Í+äNÙ×¼ÆøjWåɺD:ú&7¯X©KWÑF\-Ó¹dH½op@5|R¤êÇG«¦H_ó�+¡,I7¿ý/¸¤èP°¯°¿�¯7Ű?»d°èJGâÁÜ�÷˲FX]Àh¿Ô=)¹h=Ahv@=ci~hg +q¿,¸Pökkþ~7rAÚõÉàf¨§÷ô.¨¦'õæøÓÌ+|èÖ©«([ ûc$¹æ²ñÖ¼Rû9ÀòdçÜC»ñ~,Ùöûø¯p>R¤Wа"*t²ìÀ+¹1æ%'-X®ÊøÞòE.䦿þûsSL7öJnÊèÓõ-§PÀdZ*¾,â·³y ý¹) + Ô:f$5C4úrIi±Ú{ ƾñS Ä3t?Üíÿí;.àªÃ ûbÂòCgóó~?Xâp»ñWüàn[�äóôü~°`)5ÆWý`RÚ¿àǵqºý/äKë¥ÃÜ~pÈw�½ï�êPJÖ\À¬ðKjµÕþûþÜ£¹ÿîÂy ä 7PlÈÖ ¬W[Yx%'nÜ~úEjbévÐÜ:OÔX F©rLr ÄÒó0Þ ¢IA-¨c9ÍÖüõzÙâIþ1[øBë,@iÁz('Z\ÆBȨHL-3 ºÑ<Aÿ&Tóâiø·i¥V[U\ñÎwuïB),äOJÖüvh²í?H{2¿ïiÏæúݽä¡Uc©7eÈn¯wMòÉz¥OVÓÚ&óû~÷ µ¤%eÛ!JÍF§%XËê±6À×;Kj´aLSÐadÛ!þ`iøãá +¡rLk;µ´ sþXJoj!ÿ¾_k4©*~v(Ãý¢Í`ÁÁÕ6Þ-ý;0[ u¶!׫/ñµ!W»½iøs{{ G¤¹káN(B4Î×âäHefľ Éó(S1Ôów åQà0Þ!G +¿qaLaÀOãm¹(O{Ç8¡|xF4\/w, 7[¡E¶ÚcÍâÊÜòº»Õöè¸ëøÔY0ß?^%-^ºá$ ×áÃ÷Úl=8?}iRy%÷ Û>aOW°>oZ¤w£²¥ñÔa$¨/ ñÕùÿlqgþbÐ <öAaXcsk÷²¥-r7o'xºçªÍ-6w_Á¸/\6ÄÀ9ÕoÖØZV<äd«`KÐé8dmâ¥+¹,á¡`kp8 @L>k(d¯Ó×>z³ý¶<r1Éöçè°Ì B?ú8¡* $]éxni ½½÷'é¿M±<tíÇá\DÝ}æi-\»sÒ?ÓÆIãÏå»eÓd^V·h¤ÑZñVVÓ(Öm]qeü`Àk;Böí`5ßåá*=î _¢§ÎXÁ¹¼ªÓK¤ù°S?»ÆWï¡�5oòù¤v«3·Ð¸F¶Y´ KpÔRN&®|4ÐÑ;Eº%FÎó¯KTÍ*qpöã0]Í(0¿ï(@£@Ö?~iÔö/wóã|ûýÇÏ÷ P÷ß~ÜÂí÷Ðm?ïPèÀ]ék ^Ëù +¥y×UÁ}Vdëø"öð�IQ4+/ º6.½}Þ®_jãºQ)Ä:ÑG ZG| +«U5X ÄûUU�EîO_UUp¥§à%Å6-°6GNr¨£B` +¾»P·i¦B`øZ#WÁæå³8©ÚÝÏàÂ)ö9zrrk £^!0ßT0¾%TÓX§H]&ut+8ÝæÚeJ³ó25¥zn¸iM©¾#àßêyƸ@¥úÀK¤znøXM©~ÂgyäNA¥:p +ëøAWðåMhJõûÊ"ÕsÃÂnJõÃNR½zSðqRSª÷ ?«z¼üå14¥::ê4¥:zUªø ªHõÖ16¥zó2[ì¤ú~Ñ'·!Õ[©)ÕSOJõ@ªßÆyM©¾'Øê)Rý°ë¶úóJ¤:x +*Õ[hJõ%üÂIõÃ)¸aê'©ToqRSª/Õn_ËÔb*PÄÛxVLM©ÞAM,RÝ%Rýp +~8§pµM¹æ&6¥:pÖñ#B&JõÖejJõI©¾#�Hõ1Õ¬Rý@�°ÕcGJõîKõÖR½q +UgArZlÐê'Õ§pÝV߯Á²Õmy¢R} +gyÒê±'¥zk M©ÞASª·¡)ÕÛw¡!Õ[§Ð´Õ÷Îʹ)ÕA¦R½5¦To]¦¦TïØLGF`ºùërSªwö¶TïØL×À4¥z×ð:R½y +qR +Êlp'M©ÞÑÀ´ÖдÕ[ÇØê¡ÿ¨*×LмM©ÞA3Ó±ÖulJõ®¿hJõÖR½yÖ +R½uªeK#ô´ R}OàºT_ÆCéS"ÕR} +%ÕSðÛ'"ÕÎ|ÐêíS¨L D`hIõ{,%Õ§p9s<·8©Þ<ÆTs3óõkéq_K¡<Jõ¦<hIõãÜÇ(R½¹-©Þ-©´4xÝVo^¦s"ÞZ(%[8>:áÃU üñ~ÈR$³îG(¥²¯»ëô +^Ìa¸ËÏY;,ÓßoÞ¹Ãò}2d²¸vzA´z|!prÃ<7|m(�øñر2¾àßæïÌÈ>þkÞb!?l[|,X]©o¿xQü#¡»ÊNæü)É�~Ì1 +ðsðlNÀ¨Ì¨ ^tÖ :Ë *âDg}ß<¯1?;PBæK +Ug ¼5:êÇìbê$ßT¿¬[tu$[Lxu$[ß¿:b¡¨#¥Z÷8?êHéãÑc 1&Poñ< · ì ÷Φ\ÁuòIâ*lÈlIb¿&Áö÷môÅXзð%úVöÃ)«¨ Áw«¨ Ѽ~Ôh]¿HÉÄ~)L[èH¦1ä)[bôRiÓt`÷ÿYº Þ/á0?2aðC·¦&¸ÐOÈÇu]áÁ~B-)P]ÿdò°ö Õ$ðd1? ô#:lÁv{Ø¥Gõ*ÆöpsP>ªÂ6Ë9`×Ônø§lÚ2À÷°þ.ãÙgÌÕqx'ê +eS £k +1?tÌh~ßcø]Ù¶DÜséGѼB5=Òw2ôH½Éµ) ÝBH GZ,XÃném_éHtceäÆbí2Ìf!ªÆ»E0Ðn¼_ +Ø¿�¤[ÉÃôÝdèÌù» ɬý»cZÀ«Z߯vU*@ºñnC2DëûÉPâ&à6$C²8à!©a½ÆV' (<q<\ æv|w z£µ~,vÁòm°jXm²¾o54©¸üÓÒÝ8ô;4ºßfÀ»/±ÁÑ¡Ãýñó½¾dùÜíÇ·k5ñú¯¬ÊâseúÂP"¼ÆmñÁaƯӼ®}£#p�í%ìRÀb4Nÿ"PäÑ$pAÝ b]¾lVà~ßÕ<ÌÀxaí:s"3pHáB@ÊÈ®}7^õbÀYΰAòïP¼?/Ò¢|Ñ(^Â4ª(ÄãEX¶Uñn a2ê +[o2ZÙÄ!Y{pJ9§Xúa ¥7ÇlJ 8rÈÖs áaùÇ஦,¡Àö 8´YAª8Ì`2ÔÑlä~³}8H!MlF!0ë1>8£ÀÕ6QßiÚxFËHñá¡fOàl× ¹?í%L'<Â×ÜkÝ$èìG©\ !ÖÃ\Ht+ÃY TgÌ=8ÏÀÂ#¼ïAå:ï Æqå$¾Ñ:KÜgÐGåezëÔÊúZÓÊWØ2QPÚ2±Ê),>¨ìÁÔûö z&ü×y¶OÁgûü×y6à¿ÎɪÆu®BêìMtB +Öb½NÀyµ»¢}îÛ¢}ý{ìSp«¶dÕó1ÖX9eÝ21BõLÌ{üSµMlD!0øÔ{õFº±àrÝç´YªÑ-ÖÓädåp +Îwó;Iw|Ýç`d¥½¶:§âòôá!»ØÑ~de¤Ü~ãÙÜ?{®]!0XG06ñ<år7|ÎÆyëõÊÛð¨ ÐlâVç°Í Û)8Z M¹)²okÓ\̼='ÇM\ï�èf`y,¶HË^3¯&ÖsÅÌsk¦<X6R´ª*KLÉ/óh Us¶PÍ£ÛÜ·Åz®4#S#`«6x÷×w®Î`vZª5c;ÏâtÆvoy~;±¯ynNì¹½½}t¢j&<é ®eáØ{(Ï~üykòHòlwã qT& ù»Ùú¾ëËøÉ7¾ëÌ ô/ Hü¦½Û¼ +¡ÿÒ¼ª o·áË{X¦JÚa nUÓõ[\X»ú²w àªHHú@ÀqeÙ9*#õöMv{¡·8ñË©íØ²(VÕMaTÁ`ßf·i{ n¥¦ïn§W âò`²gàvzÃä< *+K�hÏH~ó*Tª?ØÉ/Pjbð:KPÜën©%~ÓÊÕXf´gàvz5wg§¾vzkîÖ$¹[KAì}ä@)(-y=-%ª>K8ùí5§w©`X7qþÚéÎ ·gàßÄ!ù6±: �µö J@1[ª8«Ó{àÄÓm¬îÁ8yéøÎW +Qæ§Çø ÿë¯úÕ?ðñëßÿ4~.Ã?çêòǯ¾-.ÇùcñÚoÿæ·ó?þýãÛó»ûËïþîãÿþ>þãÏÿþÛÿûßýöãý¿üç_þøíÛÇ¿üÍoþåo?þáóãÿø»ýÝùø/øåÿø»_ýê¯ýëç/øã_>ÿíw¿üê_Â8üþÏÿóßþϯþã/˸Ï?üòó·¿ýøõÿþé¿ýú6»ÿqZ¤ +endstream +endobj +409 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 946 0 R +/Name /Im394 +/Width 18 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÀÀÃà ÀÆ`ÀÌ ÀØ�C ÌvÌölò'ø?00ÿ``ÿÃÀSÇ `Ï`ÀßÀTvà�1ÀH£#�ÈLæ�ò$o +endstream +endobj +410 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 947 0 R +/Name /Im395 +/Width 20 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøq±õ�;ë>æ an°an°`g¨¡|p$ðAF¡�lbzøÙ�0° +endstream +endobj +411 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 948 0 R +/Name /Im396 +/Width 11 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc|À ù P +- °�Aa +P�æ +endstream +endobj +412 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 949 0 R +/Name /Im397 +/Width 15 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc0`0`(`øÀø±©¥£@¢@ @¡À¡à@Áÿ@(dþ�ý4 ' +endstream +endobj +413 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 950 0 R +/Name /Im398 +/Width 22 +/Height 21 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x³àoð18àçÐ×PÐÏPÐF2àÈñ�1·0w0s°s0<`H`|��u± +endstream +endobj +414 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 951 0 R +/Name /Im399 +/Width 22 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`°a`þÁÀ`CHè1`øy±õ�;ë>æ an°an°`g¨¡|p$ðAF¡�lbzøÙ�¥ºò +endstream +endobj +415 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 952 0 R +/Name /Im400 +/Width 30 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¿áË�1 ;7 a¨T-P\oÛ�±>ÌÁ|@ÌÏñÿ;ã�Yÿ +endstream +endobj +416 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 953 0 R +/Name /Im401 +/Width 43 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUÎÍ 0àøh¤BÇò øFë(on ñÐB ù.¹äÕ'9uXÅEÇ®ÒRS4Üz:Ål§8Ò]³îºÑ#Ó/R¸Ú+Ü/zñ°EÇ�²Ìj?;µ& +endstream +endobj +417 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 954 0 R +/Name /Im402 +/Width 10 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcp`h`d`f`c`aàa�B ,`HÂ8 L¾�¬Þ¬h +Ð4F�<%¥ +endstream +endobj +418 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 955 0 R +/Name /Im403 +/Width 28 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÿA¾×?``>oÃÀÎÏÇ ÃÏÜ`ÁÏx ñA?ÃüÐ1H$RRÒÒ2Ãl }Ì@{.8z +endstream +endobj +419 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 956 0 R +/Name /Im404 +/Width 22 +/Height 24 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xs``9ÀÀÀ aÀ` ÁÀÃp±±áCU¸@A PPP1PP#P»� 7i +endstream +endobj +420 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 957 0 R +/Name /Im405 +/Width 33 +/Height 37 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=͹ Ã0DÑ¿¦A* ef¨¶Â2®ÆRT)yÑ%h´ð Ç'ý:}ù ÎÅâ"!òME&Vá«£)Qb�»øÒcb¨yòB׿éqa¡\¢LÔÍh¥bOØùS +endstream +endobj +421 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 958 0 R +/Name /Im406 +/Width 10 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xk`p`P`0``à`àa`Bvfl`Á8 T¹¤¬hÐ4 © � Å +endstream +endobj +422 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 959 0 R +/Name /Im407 +/Width 29 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ?ó1;37ð30`Pü¸\�Å z@Ì˵Çá?Ð^�d < +endstream +endobj +423 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 960 0 R +/Name /Im408 +/Width 23 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¿<ÄØøXÀA¡æÿÿ?�?ß +endstream +endobj +424 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 961 0 R +/Name /Im409 +/Width 26 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ? ó1;7ð30ð4Ü�cªêëe ÿÿÀÀ��VÆ" +endstream +endobj +425 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 962 0 R +/Name /Im410 +/Width 14 +/Height 19 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcH`xÀð1)-'#A A!!!á@Âÿ? 0Èü�Ù¢È +endstream +endobj +426 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 963 0 R +/Name /Im411 +/Width 7 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû÷ï�1àß?�_¹ +endstream +endobj +427 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 964 0 R +/Name /Im412 +/Width 27 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`c`` ÿÿÿÿªØ%W +endstream +endobj +428 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 965 0 R +/Name /Im413 +/Width 7 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xû÷ðï�e·× +endstream +endobj +429 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 545 0 R >> /XObject << /Im407 422 0 R /Im59 66 0 R /Im60 67 0 R /Im64 71 0 R /Im82 89 0 R /Im62 69 0 R /Im83 90 0 R /Im63 70 0 R /Im66 73 0 R /Im92 99 0 R /Im414 431 0 R /Im77 84 0 R /Im62 69 0 R /Im64 71 0 R /Im66 73 0 R /Im415 432 0 R /Im63 70 0 R /Im74 81 0 R /Im81 88 0 R /Im416 433 0 R /Im417 434 0 R /Im418 435 0 R /Im419 436 0 R /Im420 437 0 R /Im421 438 0 R /Im422 439 0 R /Im402 417 0 R /Im368 381 0 R /Im81 88 0 R /Im376 389 0 R /Im406 421 0 R /Im415 432 0 R /Im63 70 0 R /Im74 81 0 R /Im81 88 0 R /Im415 432 0 R /Im67 74 0 R /Im66 73 0 R /Im66 73 0 R /Im74 81 0 R /Im92 99 0 R /Im415 432 0 R /Im61 68 0 R /Im72 79 0 R /Im66 73 0 R /Im415 432 0 R /Im61 68 0 R /Im72 79 0 R /Im66 73 0 R /Im423 440 0 R /Im424 441 0 R /Im75 82 0 R /Im71 78 0 R /Im81 88 0 R /Im68 75 0 R /Im77 84 0 R /Im74 81 0 R /Im66 73 0 R /Im423 440 0 R /Im66 73 0 R /Im75 82 0 R /Im81 88 0 R /Im424 441 0 R /Im75 82 0 R /Im71 78 0 R /Im81 88 0 R /Im68 75 0 R /Im77 84 0 R /Im74 81 0 R /Im66 73 0 R /Im423 440 0 R /Im66 73 0 R /Im75 82 0 R /Im81 88 0 R /Im425 442 0 R /Im67 74 0 R /Im426 443 0 R /Im77 84 0 R /Im75 82 0 R /Im66 73 0 R /Im427 444 0 R /Im61 68 0 R /Im65 72 0 R /Im83 90 0 R /Im66 73 0 R /Im368 381 0 R /Im378 391 0 R /Im376 389 0 R /Im70 77 0 R /Im369 382 0 R /Im368 381 0 R /Im378 391 0 R /Im70 77 0 R /Im371 384 0 R /Im377 390 0 R /Im374 387 0 R /Im368 381 0 R /Im70 77 0 R /Im370 383 0 R /Im380 393 0 R /Im376 389 0 R /Im70 77 0 R /Im369 382 0 R /Im369 382 0 R /Im370 383 0 R /Im380 393 0 R /Im376 389 0 R /Im378 391 0 R /Im70 77 0 R /Im368 381 0 R /Im371 384 0 R /Im374 387 0 R /Im378 391 0 R /Im370 383 0 R /Im380 393 0 R /Im70 77 0 R /Im370 383 0 R /Im369 382 0 R /Im377 390 0 R /Im371 384 0 R /Im81 88 0 R /Im371 384 0 R /Im368 381 0 R /Im369 382 0 R /Im369 382 0 R /Im405 420 0 R /Im394 409 0 R /Im377 390 0 R /Im405 420 0 R /Im378 391 0 R /Im369 382 0 R /Im368 381 0 R /Im368 381 0 R /Im70 77 0 R /Im369 382 0 R /Im368 381 0 R /Im370 383 0 R /Im70 77 0 R /Im369 382 0 R /Im370 383 0 R /Im369 382 0 R /Im376 389 0 R /Im70 77 0 R /Im378 391 0 R /Im377 390 0 R /Im394 409 0 R /Im70 77 0 R /Im374 387 0 R /Im394 409 0 R /Im380 393 0 R /Im368 381 0 R /Im70 77 0 R /Im394 409 0 R /Im378 391 0 R /Im370 383 0 R /Im70 77 0 R /Im380 393 0 R /Im369 382 0 R /Im378 391 0 R /Im368 381 0 R /Im70 77 0 R /Im378 391 0 R /Im378 391 0 R /Im374 387 0 R /Im70 77 0 R /Im370 383 0 R /Im370 383 0 R /Im374 387 0 R /Im371 384 0 R /Im81 88 0 R /Im369 382 0 R /Im374 387 0 R /Im369 382 0 R /Im405 420 0 R /Im380 393 0 R /Im378 391 0 R /Im405 420 0 R /Im378 391 0 R /Im394 409 0 R /Im374 387 0 R /Im70 77 0 R /Im378 391 0 R /Im371 384 0 R /Im377 390 0 R /Im70 77 0 R /Im369 382 0 R /Im376 389 0 R /Im377 390 0 R /Im376 389 0 R /Im70 77 0 R /Im369 382 0 R /Im376 389 0 R /Im376 389 0 R /Im70 77 0 R /Im376 389 0 R /Im370 383 0 R /Im370 383 0 R /Im368 381 0 R /Im70 77 0 R /Im377 390 0 R /Im377 390 0 R /Im371 384 0 R /Im70 77 0 R /Im394 409 0 R /Im380 393 0 R /Im370 383 0 R /Im368 381 0 R /Im70 77 0 R /Im369 382 0 R /Im369 382 0 R /Im368 381 0 R /Im70 77 0 R /Im369 382 0 R /Im370 383 0 R /Im376 389 0 R /Im371 384 0 R /Im81 88 0 R /Im377 390 0 R /Im368 381 0 R /Im369 382 0 R /Im369 382 0 R /Im405 420 0 R /Im374 387 0 R /Im369 382 0 R /Im405 420 0 R /Im370 383 0 R /Im371 384 0 R /Im377 390 0 R /Im70 77 0 R /Im368 381 0 R /Im370 383 0 R /Im378 391 0 R /Im70 77 0 R /Im374 387 0 R /Im374 387 0 R /Im368 381 0 R /Im368 381 0 R /Im70 77 0 R /Im371 384 0 R /Im369 382 0 R /Im371 384 0 R /Im70 77 0 R /Im374 387 0 R /Im374 387 0 R /Im377 390 0 R /Im380 393 0 R /Im371 384 0 R /Im394 409 0 R /Im70 77 0 R /Im368 381 0 R /Im394 409 0 R /Im378 391 0 R /Im377 390 0 R /Im378 391 0 R /Im377 390 0 R /Im70 77 0 R /Im376 389 0 R /Im370 383 0 R /Im368 381 0 R /Im376 389 0 R /Im81 88 0 R /Im377 390 0 R /Im374 387 0 R /Im377 390 0 R /Im405 420 0 R /Im394 409 0 R /Im377 390 0 R /Im405 420 0 R /Im377 390 0 R /Im377 390 0 R /Im380 393 0 R /Im380 393 0 R /Im394 409 0 R /Im70 77 0 R /Im374 387 0 R /Im378 391 0 R /Im376 389 0 R /Im376 389 0 R /Im368 381 0 R /Im394 409 0 R /Im70 77 0 R /Im377 390 0 R /Im378 391 0 R /Im374 387 0 R /Im368 381 0 R /Im394 409 0 R /Im368 381 0 R /Im70 77 0 R /Im374 387 0 R /Im380 393 0 R /Im371 384 0 R /Im368 381 0 R /Im369 382 0 R /Im394 409 0 R /Im70 77 0 R /Im376 389 0 R /Im368 381 0 R /Im374 387 0 R /Im377 390 0 R /Im81 88 0 R /Im370 383 0 R /Im394 409 0 R /Im377 390 0 R /Im405 420 0 R /Im380 393 0 R /Im394 409 0 R /Im405 420 0 R /Im109 116 0 R /Im34 41 0 R /Im44 51 0 R /Im36 43 0 R /Im35 42 0 R /Im170 177 0 R /Im171 178 0 R /Im339 350 0 R /Im40 47 0 R /Im48 55 0 R /Im99 106 0 R /Im34 41 0 R /Im39 46 0 R /Im31 38 0 R /Im100 107 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im104 111 0 R /Im125 132 0 R /Im170 177 0 R /Im99 106 0 R /Im36 43 0 R /Im49 56 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im35 42 0 R /Im100 107 0 R /Im114 121 0 R /Im128 135 0 R /Im162 169 0 R /Im34 41 0 R /Im101 108 0 R /Im35 42 0 R /Im34 41 0 R /Im32 39 0 R /Im33 40 0 R /Im45 52 0 R /Im38 45 0 R /Im48 55 0 R /Im44 51 0 R /Im35 42 0 R /Im39 46 0 R /Im40 47 0 R /Im104 111 0 R /Im43 50 0 R /Im31 38 0 R /Im100 107 0 R /Im32 39 0 R /Im100 107 0 R /Im31 38 0 R /Im45 52 0 R /Im103 110 0 R /Im35 42 0 R /Im100 107 0 R /Im101 108 0 R /Im31 38 0 R /Im102 109 0 R /Im34 41 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im129 136 0 R /Im81 88 0 R /Im109 116 0 R /Im33 40 0 R /Im35 42 0 R /Im428 445 0 R /Im327 338 0 R /Im99 106 0 R /Im35 42 0 R /Im35 42 0 R /Im43 50 0 R /Im140 147 0 R /Im107 114 0 R /Im99 106 0 R /Im46 53 0 R /Im31 38 0 R /Im100 107 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im40 47 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im45 52 0 R /Im38 45 0 R /Im48 55 0 R /Im44 51 0 R /Im35 42 0 R /Im39 46 0 R /Im40 47 0 R /Im104 111 0 R /Im45 52 0 R /Im40 47 0 R /Im43 50 0 R /Im35 42 0 R /Im100 107 0 R /Im103 110 0 R /Im31 38 0 R /Im100 107 0 R /Im31 38 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im429 446 0 R /Im428 445 0 R /Im327 338 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im30 37 0 R /Im40 47 0 R /Im103 110 0 R /Im35 42 0 R /Im46 53 0 R /Im100 107 0 R /Im101 108 0 R /Im34 41 0 R /Im101 108 0 R /Im35 42 0 R /Im100 107 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im99 106 0 R /Im35 42 0 R /Im39 46 0 R /Im32 39 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im34 41 0 R /Im102 109 0 R /Im35 42 0 R /Im40 47 0 R /Im104 111 0 R /Im32 39 0 R /Im34 41 0 R /Im100 107 0 R /Im35 42 0 R /Im100 107 0 R /Im31 38 0 R /Im45 52 0 R /Im105 112 0 R /Im33 40 0 R /Im31 38 0 R /Im32 39 0 R /Im33 40 0 R /Im44 51 0 R /Im40 47 0 R /Im101 108 0 R /Im33 40 0 R /Im103 110 0 R /Im35 42 0 R /Im39 46 0 R /Im100 107 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im100 107 0 R /Im100 107 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im100 107 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im48 55 0 R /Im40 47 0 R /Im103 110 0 R /Im35 42 0 R /Im429 446 0 R /Im428 445 0 R /Im327 338 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im103 110 0 R /Im34 41 0 R /Im36 43 0 R /Im38 45 0 R /Im35 42 0 R /Im46 53 0 R /Im39 46 0 R /Im35 42 0 R /Im104 111 0 R /Im35 42 0 R /Im39 46 0 R /Im100 107 0 R /Im101 108 0 R /Im40 47 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im104 111 0 R /Im39 46 0 R /Im35 42 0 R /Im141 148 0 R /Im38 45 0 R /Im35 42 0 R /Im45 52 0 R /Im32 39 0 R /Im49 56 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im105 112 0 R /Im33 40 0 R /Im31 38 0 R /Im32 39 0 R /Im33 40 0 R /Im44 51 0 R /Im40 47 0 R /Im101 108 0 R /Im33 40 0 R /Im103 110 0 R /Im35 42 0 R /Im39 46 0 R /Im100 107 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im100 107 0 R /Im39 46 0 R /Im35 42 0 R /Im99 106 0 R /Im40 47 0 R /Im39 46 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im100 107 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im39 46 0 R /Im40 47 0 R /Im40 47 0 R /Im101 108 0 R /Im140 147 0 R /Im99 106 0 R /Im40 47 0 R /Im100 107 0 R /Im31 38 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im103 110 0 R /Im34 41 0 R /Im36 43 0 R /Im38 45 0 R /Im35 42 0 R /Im81 88 0 R /Im48 55 0 R /Im40 47 0 R /Im39 46 0 R /Im35 42 0 R /Im43 50 0 R /Im35 42 0 R /Im35 42 0 R /Im99 106 0 R /Im36 43 0 R /Im49 56 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im44 51 0 R /Im39 46 0 R /Im38 45 0 R /Im101 108 0 R /Im35 42 0 R /Im140 147 0 R /Im104 111 0 R /Im40 47 0 R /Im39 46 0 R /Im32 39 0 R /Im35 42 0 R /Im103 110 0 R /Im35 42 0 R /Im39 46 0 R /Im100 107 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im46 53 0 R /Im100 107 0 R /Im31 38 0 R /Im45 52 0 R /Im32 39 0 R /Im35 42 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im34 41 0 R /Im103 110 0 R /Im35 42 0 R /Im39 46 0 R /Im34 41 0 R /Im102 109 0 R /Im35 42 0 R /Im48 55 0 R /Im31 38 0 R /Im43 50 0 R /Im140 147 0 R /Im102 109 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im44 51 0 R /Im39 46 0 R /Im34 41 0 R /Im45 52 0 R /Im32 39 0 R /Im33 40 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im104 111 0 R /Im34 41 0 R /Im32 39 0 R /Im101 108 0 R /Im40 47 0 R /Im39 46 0 R /Im104 111 0 R /Im40 47 0 R /Im39 46 0 R /Im132 139 0 R /Im133 140 0 R /Im134 141 0 R /Im135 142 0 R /Im136 143 0 R /Im137 144 0 R /Im138 145 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im35 42 0 R /Im100 107 0 R /Im35 42 0 R /Im100 107 0 R /Im101 108 0 R /Im31 38 0 R /Im48 55 0 R /Im34 41 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im104 111 0 R /Im39 46 0 R /Im40 47 0 R /Im48 55 0 R /Im109 116 0 R /Im34 41 0 R /Im44 51 0 R /Im36 43 0 R /Im35 42 0 R /Im170 177 0 R /Im31 38 0 R /Im100 107 0 R /Im36 43 0 R /Im35 42 0 R /Im100 107 0 R /Im100 107 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im45 52 0 R /Im357 368 0 R /Im81 88 0 R /Im357 368 0 R /Im81 88 0 R /Im339 350 0 R /Im36 43 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im36 43 0 R /Im49 56 0 R /Im46 53 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im31 38 0 R /Im45 52 0 R /Im32 39 0 R /Im40 47 0 R /Im39 46 0 R /Im99 106 0 R /Im40 47 0 R /Im39 46 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im104 111 0 R /Im132 139 0 R /Im133 140 0 R /Im134 141 0 R /Im135 142 0 R /Im136 143 0 R /Im137 144 0 R /Im138 145 0 R /Im34 41 0 R /Im36 43 0 R /Im36 43 0 R /Im40 47 0 R /Im105 112 0 R /Im100 107 0 R /Im101 108 0 R /Im40 47 0 R /Im106 113 0 R /Im45 52 0 R /Im43 50 0 R /Im43 50 0 R /Im35 42 0 R /Im32 39 0 R /Im31 38 0 R /Im100 107 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im48 55 0 R /Im40 47 0 R /Im103 110 0 R /Im35 42 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im36 43 0 R /Im31 38 0 R /Im35 42 0 R /Im39 46 0 R /Im81 88 0 R /Im109 116 0 R /Im33 40 0 R /Im35 42 0 R /Im32 39 0 R /Im40 47 0 R /Im45 52 0 R /Im100 107 0 R /Im31 38 0 R /Im43 50 0 R /Im35 42 0 R /Im39 46 0 R /Im34 41 0 R /Im44 51 0 R /Im36 43 0 R /Im35 42 0 R /Im31 38 0 R /Im45 52 0 R /Im32 39 0 R /Im39 46 0 R /Im35 42 0 R /Im34 41 0 R /Im100 107 0 R /Im35 42 0 R /Im40 47 0 R /Im104 111 0 R /Im174 181 0 R /Im166 173 0 R /Im175 182 0 R /Im164 171 0 R /Im176 183 0 R /Im177 184 0 R /Im178 185 0 R /Im174 181 0 R /Im174 181 0 R /Im166 173 0 R /Im46 53 0 R /Im100 107 0 R /Im99 106 0 R /Im36 43 0 R /Im34 41 0 R /Im49 56 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im100 107 0 R /Im101 108 0 R /Im39 46 0 R /Im35 42 0 R /Im45 52 0 R /Im102 109 0 R /Im101 108 0 R /Im33 40 0 R /Im32 39 0 R /Im34 41 0 R /Im45 52 0 R /Im34 41 0 R /Im36 43 0 R /Im100 107 0 R /Im40 47 0 R /Im44 51 0 R /Im35 42 0 R /Im102 109 0 R /Im34 41 0 R /Im38 45 0 R /Im102 109 0 R /Im35 42 0 R /Im43 50 0 R /Im44 51 0 R /Im49 56 0 R /Im31 38 0 R /Im45 52 0 R /Im100 107 0 R /Im99 106 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im100 107 0 R /Im38 45 0 R /Im36 43 0 R /Im101 108 0 R /Im40 47 0 R /Im104 111 0 R /Im34 41 0 R /Im101 108 0 R /Im40 47 0 R /Im38 45 0 R /Im39 46 0 R /Im45 52 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im44 51 0 R /Im35 42 0 R /Im101 108 0 R /Im105 112 0 R /Im35 42 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im100 107 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im102 109 0 R /Im39 46 0 R /Im34 41 0 R /Im48 55 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im357 368 0 R /Im162 169 0 R /Im48 55 0 R /Im31 38 0 R /Im45 52 0 R /Im38 45 0 R /Im101 108 0 R /Im35 42 0 R /Im100 107 0 R /Im101 108 0 R /Im33 40 0 R /Im31 38 0 R /Im45 52 0 R /Im130 137 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im101 108 0 R /Im31 38 0 R /Im48 55 0 R /Im35 42 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im45 52 0 R /Im40 47 0 R /Im45 52 0 R /Im140 147 0 R /Im100 107 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im102 109 0 R /Im39 46 0 R /Im34 41 0 R /Im48 55 0 R /Im33 40 0 R /Im34 41 0 R /Im103 110 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im360 373 0 R /Im162 169 0 R /Im48 55 0 R /Im31 38 0 R /Im45 52 0 R /Im38 45 0 R /Im101 108 0 R /Im35 42 0 R /Im100 107 0 R /Im99 106 0 R /Im35 42 0 R /Im39 46 0 R /Im102 109 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im81 88 0 R /Im241 250 0 R /Im40 47 0 R /Im39 46 0 R /Im101 108 0 R /Im33 40 0 R /Im31 38 0 R /Im100 107 0 R /Im101 108 0 R /Im40 47 0 R /Im38 45 0 R /Im39 46 0 R /Im139 146 0 R /Im45 52 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im46 53 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im104 111 0 R /Im34 41 0 R /Im32 39 0 R /Im31 38 0 R /Im36 43 0 R /Im31 38 0 R /Im101 108 0 R /Im49 56 0 R /Im35 42 0 R /Im45 52 0 R /Im34 41 0 R /Im44 51 0 R /Im36 43 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im48 55 0 R /Im34 41 0 R /Im32 39 0 R /Im33 40 0 R /Im31 38 0 R /Im45 52 0 R /Im35 42 0 R /Im428 445 0 R /Im101 108 0 R /Im40 47 0 R /Im101 108 0 R /Im33 40 0 R /Im31 38 0 R /Im45 52 0 R /Im130 137 0 R /Im31 38 0 R /Im45 52 0 R /Im31 38 0 R /Im101 108 0 R /Im46 53 0 R /Im100 107 0 R /Im40 47 0 R /Im99 106 0 R /Im99 106 0 R /Im40 47 0 R /Im45 52 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im46 53 0 R /Im100 107 0 R /Im101 108 0 R /Im31 38 0 R /Im48 55 0 R /Im35 42 0 R /Im46 53 0 R /Im105 112 0 R /Im34 41 0 R /Im100 107 0 R /Im43 50 0 R /Im31 38 0 R /Im100 107 0 R /Im34 41 0 R /Im44 51 0 R /Im36 43 0 R /Im35 42 0 R /Im43 50 0 R /Im81 88 0 R /Im109 116 0 R /Im33 40 0 R /Im35 42 0 R /Im38 45 0 R /Im45 52 0 R /Im35 42 0 R /Im141 148 0 R /Im38 45 0 R /Im31 38 0 R /Im103 110 0 R /Im40 47 0 R /Im32 39 0 R /Im34 41 0 R /Im36 43 0 R /Im39 46 0 R /Im35 42 0 R /Im100 107 0 R /Im38 45 0 R /Im36 43 0 R /Im101 108 0 R /Im105 112 0 R /Im34 41 0 R /Im100 107 0 R /Im359 372 0 R /Im125 132 0 R /Im325 336 0 R /Im151 158 0 R /Im325 336 0 R /Im170 177 0 R /Im125 132 0 R /Im46 53 0 R /Im34 41 0 R /Im105 112 0 R /Im31 38 0 R /Im45 52 0 R /Im45 52 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im99 106 0 R /Im35 42 0 R /Im39 46 0 R /Im32 39 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im34 41 0 R /Im102 109 0 R /Im35 42 0 R /Im40 47 0 R /Im104 111 0 R /Im360 373 0 R /Im359 372 0 R /Im81 88 0 R /Im357 368 0 R /Im363 376 0 R /Im81 88 0 R /Im430 447 0 R /Im94 101 0 R /Im337 348 0 R /Im16 23 0 R /Im21 28 0 R /Im14 21 0 R /Im97 104 0 R /Im21 28 0 R /Im21 28 0 R /Im16 23 0 R /Im22 29 0 R /Im10 17 0 R /Im131 138 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im31 38 0 R /Im100 107 0 R /Im34 41 0 R /Im39 46 0 R /Im101 108 0 R /Im31 38 0 R /Im32 39 0 R /Im36 43 0 R /Im35 42 0 R /Im34 41 0 R /Im45 52 0 R /Im35 42 0 R /Im34 41 0 R /Im100 107 0 R /Im49 56 0 R /Im101 108 0 R /Im40 47 0 R /Im31 38 0 R /Im48 55 0 R /Im99 106 0 R /Im36 43 0 R /Im35 42 0 R /Im48 55 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im48 55 0 R /Im35 42 0 R /Im48 55 0 R /Im40 47 0 R /Im39 46 0 R /Im49 56 0 R /Im35 42 0 R /Im110 117 0 R /Im32 39 0 R /Im31 38 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im100 107 0 R /Im35 42 0 R /Im36 43 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im35 42 0 R /Im108 115 0 R /Im101 108 0 R /Im35 42 0 R /Im45 52 0 R /Im100 107 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im112 119 0 R /Im113 120 0 R /Im34 41 0 R /Im36 43 0 R /Im102 109 0 R /Im40 47 0 R /Im39 46 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im48 55 0 R /Im111 118 0 R /Im132 139 0 R /Im133 140 0 R /Im134 141 0 R /Im135 142 0 R /Im136 143 0 R /Im137 144 0 R /Im138 145 0 R /Im111 118 0 R /Im33 40 0 R /Im34 41 0 R /Im100 107 0 R /Im44 51 0 R /Im35 42 0 R /Im35 42 0 R /Im45 52 0 R /Im99 106 0 R /Im39 46 0 R /Im35 42 0 R /Im100 107 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im105 112 0 R /Im33 40 0 R /Im31 38 0 R /Im32 39 0 R /Im33 40 0 R /Im33 40 0 R /Im34 41 0 R /Im100 107 0 R /Im36 43 0 R /Im35 42 0 R /Im43 50 0 R /Im101 108 0 R /Im40 47 0 R /Im34 41 0 R /Im100 107 0 R /Im31 38 0 R /Im102 109 0 R /Im45 52 0 R /Im31 38 0 R /Im106 113 0 R /Im32 39 0 R /Im34 41 0 R /Im45 52 0 R /Im101 108 0 R /Im31 38 0 R /Im45 52 0 R /Im32 39 0 R /Im39 46 0 R /Im35 42 0 R /Im34 41 0 R /Im100 107 0 R /Im35 42 0 R /Im40 47 0 R /Im104 111 0 R /Im99 106 0 R /Im36 43 0 R /Im34 41 0 R /Im49 56 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im100 107 0 R /Im101 108 0 R /Im39 46 0 R /Im35 42 0 R /Im45 52 0 R /Im102 109 0 R /Im101 108 0 R /Im33 40 0 R /Im40 47 0 R /Im104 111 0 R /Im34 41 0 R /Im104 111 0 R /Im40 47 0 R /Im39 46 0 R /Im48 55 0 R /Im35 42 0 R /Im39 46 0 R /Im44 51 0 R /Im39 46 0 R /Im38 45 0 R /Im101 108 0 R /Im35 42 0 R /Im140 147 0 R /Im104 111 0 R /Im40 47 0 R /Im39 46 0 R /Im32 39 0 R /Im35 42 0 R /Im173 180 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im36 43 0 R /Im36 43 0 R /Im40 47 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im102 109 0 R /Im39 46 0 R /Im34 41 0 R /Im48 55 0 R /Im81 88 0 R /Im109 116 0 R /Im33 40 0 R /Im35 42 0 R /Im31 38 0 R /Im43 50 0 R /Im35 42 0 R /Im34 41 0 R /Im35 42 0 R /Im36 43 0 R /Im34 41 0 R /Im44 51 0 R /Im40 47 0 R /Im39 46 0 R /Im34 41 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im31 38 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im31 38 0 R /Im100 107 0 R /Im32 39 0 R /Im40 47 0 R /Im45 52 0 R /Im101 108 0 R /Im39 46 0 R /Im31 38 0 R /Im44 51 0 R /Im38 45 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im31 38 0 R /Im100 107 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im101 108 0 R /Im40 47 0 R /Im104 111 0 R /Im35 42 0 R /Im100 107 0 R /Im101 108 0 R /Im31 38 0 R /Im48 55 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im103 110 0 R /Im34 41 0 R /Im36 43 0 R /Im38 45 0 R /Im35 42 0 R /Im100 107 0 R /Im39 46 0 R /Im35 42 0 R /Im101 108 0 R /Im38 45 0 R /Im39 46 0 R /Im45 52 0 R /Im35 42 0 R /Im43 50 0 R /Im44 51 0 R /Im49 56 0 R /Im43 50 0 R /Im35 42 0 R /Im35 42 0 R /Im99 106 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im35 42 0 R /Im100 107 0 R /Im44 51 0 R /Im49 56 0 R /Im48 55 0 R /Im35 42 0 R /Im34 41 0 R /Im45 52 0 R /Im100 107 0 R /Im40 47 0 R /Im104 111 0 R /Im100 107 0 R /Im33 40 0 R /Im34 41 0 R /Im36 43 0 R /Im36 43 0 R /Im40 47 0 R /Im105 112 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im39 46 0 R /Im35 42 0 R /Im100 107 0 R /Im38 45 0 R /Im36 43 0 R /Im101 108 0 R /Im100 107 0 R /Im100 107 0 R /Im40 47 0 R /Im34 41 0 R /Im100 107 0 R /Im101 108 0 R /Im40 47 0 R /Im39 46 0 R /Im35 42 0 R /Im34 41 0 R /Im32 39 0 R /Im33 40 0 R /Im34 41 0 R /Im45 52 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im36 43 0 R /Im49 56 0 R /Im43 50 0 R /Im35 42 0 R /Im32 39 0 R /Im31 38 0 R /Im100 107 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im105 112 0 R /Im33 40 0 R /Im35 42 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im43 50 0 R /Im35 42 0 R /Im35 42 0 R /Im99 106 0 R /Im103 110 0 R /Im34 41 0 R /Im36 43 0 R /Im38 45 0 R /Im35 42 0 R /Im100 107 0 R /Im104 111 0 R /Im34 41 0 R /Im36 43 0 R /Im36 43 0 R /Im40 47 0 R /Im38 45 0 R /Im101 108 0 R /Im100 107 0 R /Im31 38 0 R /Im43 50 0 R /Im35 42 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im32 39 0 R /Im38 45 0 R /Im39 46 0 R /Im39 46 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im105 112 0 R /Im31 38 0 R /Im45 52 0 R /Im43 50 0 R /Im40 47 0 R /Im105 112 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im100 107 0 R /Im101 108 0 R /Im34 41 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im44 51 0 R /Im34 41 0 R /Im44 51 0 R /Im31 38 0 R /Im36 43 0 R /Im31 38 0 R /Im101 108 0 R /Im49 56 0 R /Im81 88 0 R /Im333 344 0 R /Im35 42 0 R /Im32 39 0 R /Im35 42 0 R /Im100 107 0 R /Im100 107 0 R /Im34 41 0 R /Im39 46 0 R /Im49 56 0 R /Im104 111 0 R /Im40 47 0 R /Im39 46 0 R /Im34 41 0 R /Im100 107 0 R /Im38 45 0 R /Im32 39 0 R /Im32 39 0 R /Im35 42 0 R /Im100 107 0 R /Im100 107 0 R /Im104 111 0 R /Im38 45 0 R /Im36 43 0 R /Im34 41 0 R /Im99 106 0 R /Im99 106 0 R /Im36 43 0 R /Im31 38 0 R /Im32 39 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im104 111 0 R /Im132 139 0 R /Im133 140 0 R /Im134 141 0 R /Im135 142 0 R /Im136 143 0 R /Im137 144 0 R /Im138 145 0 R /Im31 38 0 R /Im100 107 0 R /Im34 41 0 R /Im39 46 0 R /Im35 42 0 R /Im36 43 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im36 43 0 R /Im49 56 0 R /Im100 107 0 R /Im101 108 0 R /Im34 41 0 R /Im44 51 0 R /Im36 43 0 R /Im35 42 0 R /Im35 42 0 R /Im103 110 0 R /Im34 41 0 R /Im36 43 0 R /Im38 45 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im104 111 0 R /Im38 45 0 R /Im45 52 0 R /Im32 39 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im34 41 0 R /Im141 148 0 R /Im38 45 0 R /Im31 38 0 R /Im35 42 0 R /Im100 107 0 R /Im32 39 0 R /Im35 42 0 R /Im45 52 0 R /Im100 107 0 R /Im35 42 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im81 88 0 R /Im109 116 0 R /Im33 40 0 R /Im35 42 0 R /Im100 107 0 R /Im35 42 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im99 106 0 R /Im35 42 0 R /Im39 46 0 R /Im101 108 0 R /Im31 38 0 R /Im35 42 0 R /Im100 107 0 R /Im35 42 0 R /Im45 52 0 R /Im100 107 0 R /Im38 45 0 R /Im39 46 0 R /Im35 42 0 R /Im34 41 0 R /Im100 107 0 R /Im48 55 0 R /Im34 41 0 R /Im36 43 0 R /Im36 43 0 R /Im103 110 0 R /Im34 41 0 R /Im39 46 0 R /Im31 38 0 R /Im34 41 0 R /Im45 52 0 R /Im32 39 0 R /Im35 42 0 R /Im40 47 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im43 50 0 R /Im31 38 0 R /Im158 165 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im45 52 0 R /Im32 39 0 R /Im35 42 0 R /Im44 51 0 R /Im35 42 0 R /Im101 108 0 R /Im105 112 0 R /Im35 42 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im101 108 0 R /Im39 46 0 R /Im38 45 0 R /Im35 42 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im35 42 0 R /Im100 107 0 R /Im101 108 0 R /Im31 38 0 R /Im48 55 0 R /Im34 41 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im35 42 0 R /Im103 110 0 R /Im34 41 0 R /Im36 43 0 R /Im38 45 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im81 88 0 R /Im109 116 0 R /Im33 40 0 R /Im31 38 0 R /Im100 107 0 R /Im48 55 0 R /Im34 41 0 R /Im130 137 0 R /Im35 42 0 R /Im100 107 0 R /Im31 38 0 R /Im101 108 0 R /Im99 106 0 R /Im40 47 0 R /Im100 107 0 R /Im100 107 0 R /Im31 38 0 R /Im44 51 0 R /Im36 43 0 R /Im35 42 0 R /Im101 108 0 R /Im40 47 0 R /Im32 39 0 R /Im38 45 0 R /Im101 108 0 R /Im105 112 0 R /Im33 40 0 R /Im40 47 0 R /Im36 43 0 R /Im35 42 0 R /Im100 107 0 R /Im38 45 0 R /Im44 51 0 R /Im101 108 0 R /Im39 46 0 R /Im35 42 0 R /Im35 42 0 R /Im100 107 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im32 39 0 R /Im40 47 0 R /Im45 52 0 R /Im106 113 0 R /Im43 50 0 R /Im35 42 0 R /Im45 52 0 R /Im32 39 0 R /Im35 42 0 R /Im103 110 0 R /Im35 42 0 R /Im39 46 0 R /Im49 56 0 R /Im40 47 0 R /Im104 111 0 R /Im101 108 0 R /Im35 42 0 R /Im45 52 0 R /Im81 88 0 R /Im132 139 0 R /Im133 140 0 R /Im134 141 0 R /Im135 142 0 R /Im136 143 0 R /Im137 144 0 R /Im138 145 0 R /Im46 53 0 R /Im100 107 0 R /Im34 41 0 R /Im99 106 0 R /Im99 106 0 R /Im36 43 0 R /Im31 38 0 R /Im32 39 0 R /Im139 146 0 R /Im34 41 0 R /Im44 51 0 R /Im31 38 0 R /Im36 43 0 R /Im31 38 0 R /Im101 108 0 R /Im49 56 0 R /Im31 38 0 R /Im100 107 0 R /Im105 112 0 R /Im31 38 0 R /Im43 50 0 R /Im35 42 0 R /Im39 46 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im101 108 0 R /Im40 47 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im102 109 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im40 47 0 R /Im104 111 0 R /Im173 180 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im36 43 0 R /Im36 43 0 R /Im40 47 0 R /Im46 53 0 R /Im100 107 0 R /Im31 38 0 R /Im45 52 0 R /Im32 39 0 R /Im35 42 0 R /Im34 41 0 R /Im36 43 0 R /Im36 43 0 R /Im102 109 0 R /Im34 41 0 R /Im48 55 0 R /Im35 42 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im102 109 0 R /Im39 46 0 R /Im34 41 0 R /Im48 55 0 R /Im100 107 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im44 51 0 R /Im39 46 0 R /Im38 45 0 R /Im101 108 0 R /Im35 42 0 R /Im140 147 0 R /Im104 111 0 R /Im40 47 0 R /Im39 46 0 R /Im32 39 0 R /Im35 42 0 R /Im130 137 0 R /Im35 42 0 R /Im39 46 0 R /Im45 52 0 R /Im35 42 0 R /Im36 43 0 R /Im101 108 0 R /Im35 42 0 R /Im45 52 0 R /Im43 50 0 R /Im101 108 0 R /Im40 47 0 R /Im35 42 0 R /Im108 115 0 R /Im34 41 0 R /Im48 55 0 R /Im31 38 0 R /Im45 52 0 R /Im35 42 0 R /Im44 51 0 R /Im34 41 0 R /Im43 50 0 R /Im48 55 0 R /Im40 47 0 R /Im103 110 0 R /Im35 42 0 R /Im100 107 0 R /Im101 108 0 R /Im40 47 0 R /Im34 41 0 R /Im45 52 0 R /Im38 45 0 R /Im45 52 0 R /Im48 55 0 R /Im35 42 0 R /Im39 46 0 R /Im31 38 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im43 50 0 R /Im35 42 0 R /Im99 106 0 R /Im101 108 0 R /Im33 40 0 R /Im81 88 0 R /Im37 44 0 R /Im35 42 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im34 41 0 R /Im105 112 0 R /Im34 41 0 R /Im39 46 0 R /Im35 42 0 R /Im40 47 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im31 38 0 R /Im48 55 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im103 110 0 R /Im35 42 0 R /Im48 55 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im100 107 0 R /Im34 41 0 R /Im36 43 0 R /Im39 46 0 R /Im35 42 0 R /Im34 41 0 R /Im43 50 0 R /Im49 56 0 R /Im34 41 0 R /Im32 39 0 R /Im33 40 0 R /Im31 38 0 R /Im35 42 0 R /Im103 110 0 R /Im35 42 0 R /Im43 50 0 R /Im46 53 0 R /Im40 47 0 R /Im45 52 0 R /Im35 42 0 R /Im31 38 0 R /Im43 50 0 R /Im35 42 0 R /Im34 41 0 R /Im101 108 0 R /Im40 47 0 R /Im31 38 0 R /Im45 52 0 R /Im32 39 0 R /Im39 46 0 R /Im35 42 0 R /Im34 41 0 R /Im100 107 0 R /Im35 42 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im99 106 0 R /Im36 43 0 R /Im34 41 0 R /Im49 56 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im100 107 0 R /Im101 108 0 R /Im39 46 0 R /Im35 42 0 R /Im45 52 0 R /Im102 109 0 R /Im101 108 0 R /Im33 40 0 R /Im104 111 0 R /Im38 45 0 R /Im39 46 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im31 38 0 R /Im100 107 0 R /Im34 41 0 R /Im100 107 0 R /Im104 111 0 R /Im40 47 0 R /Im36 43 0 R /Im36 43 0 R /Im40 47 0 R /Im105 112 0 R /Im100 107 0 R /Im171 178 0 R /Im173 180 0 R /Im45 52 0 R /Im35 42 0 R /Im105 112 0 R /Im35 42 0 R /Im34 41 0 R /Im130 137 0 R /Im45 52 0 R /Im35 42 0 R /Im100 107 0 R /Im100 107 0 R /Im40 47 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im99 106 0 R /Im39 46 0 R /Im35 42 0 R /Im100 107 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im34 41 0 R /Im99 106 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im34 41 0 R /Im32 39 0 R /Im33 40 0 R /Im31 38 0 R /Im100 107 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im101 108 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im43 50 0 R /Im35 42 0 R /Im99 106 0 R /Im101 108 0 R /Im33 40 0 R /Im100 107 0 R /Im245 254 0 R /Im246 255 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im245 254 0 R /Im34 41 0 R /Im39 46 0 R /Im35 42 0 R /Im32 39 0 R /Im40 47 0 R /Im45 52 0 R /Im100 107 0 R /Im101 108 0 R /Im34 41 0 R /Im45 52 0 R /Im101 108 0 R /Im81 88 0 R /Im157 164 0 R /Im100 107 0 R /Im34 41 0 R /Im39 46 0 R /Im35 42 0 R /Im100 107 0 R /Im38 45 0 R /Im36 43 0 R /Im101 108 0 R /Im46 53 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im34 41 0 R /Im103 110 0 R /Im35 42 0 R /Im39 46 0 R /Im34 41 0 R /Im102 109 0 R /Im35 42 0 R /Im44 51 0 R /Im39 46 0 R /Im34 41 0 R /Im45 52 0 R /Im32 39 0 R /Im33 40 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im104 111 0 R /Im34 41 0 R /Im32 39 0 R /Im101 108 0 R /Im40 47 0 R /Im39 46 0 R /Im35 42 0 R /Im103 110 0 R /Im35 42 0 R /Im45 52 0 R /Im105 112 0 R /Im33 40 0 R /Im35 42 0 R /Im45 52 0 R /Im38 45 0 R /Im100 107 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im132 139 0 R /Im133 140 0 R /Im134 141 0 R /Im135 142 0 R /Im136 143 0 R /Im137 144 0 R /Im138 145 0 R /Im101 108 0 R /Im35 42 0 R /Im45 52 0 R /Im43 50 0 R /Im100 107 0 R /Im101 108 0 R /Im40 47 0 R /Im32 39 0 R /Im39 46 0 R /Im35 42 0 R /Im35 42 0 R /Im99 106 0 R /Im38 45 0 R /Im99 106 0 R /Im101 108 0 R /Im40 47 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im101 108 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im40 47 0 R /Im38 45 0 R /Im101 108 0 R /Im101 108 0 R /Im33 40 0 R /Im31 38 0 R /Im100 107 0 R /Im31 38 0 R /Im48 55 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im103 110 0 R /Im35 42 0 R /Im48 55 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im46 53 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im45 52 0 R /Im40 47 0 R /Im48 55 0 R /Im40 47 0 R /Im39 46 0 R /Im35 42 0 R /Im104 111 0 R /Im38 45 0 R /Im39 46 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im31 38 0 R /Im48 55 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im103 110 0 R /Im35 42 0 R /Im48 55 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im100 107 0 R /Im32 39 0 R /Im34 41 0 R /Im45 52 0 R /Im44 51 0 R /Im35 42 0 R /Im35 42 0 R /Im108 115 0 R /Im99 106 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im31 38 0 R /Im45 52 0 R /Im32 39 0 R /Im40 47 0 R /Im48 55 0 R /Im99 106 0 R /Im34 41 0 R /Im39 46 0 R /Im31 38 0 R /Im100 107 0 R /Im40 47 0 R /Im45 52 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im99 106 0 R /Im36 43 0 R /Im34 41 0 R /Im31 38 0 R /Im45 52 0 R /Im112 119 0 R /Im113 120 0 R /Im34 41 0 R /Im36 43 0 R /Im102 109 0 R /Im40 47 0 R /Im39 46 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im48 55 0 R /Im44 51 0 R /Im49 56 0 R /Im31 38 0 R /Im45 52 0 R /Im32 39 0 R /Im39 46 0 R /Im35 42 0 R /Im34 41 0 R /Im100 107 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im100 107 0 R /Im35 42 0 R /Im34 41 0 R /Im39 46 0 R /Im32 39 0 R /Im33 40 0 R /Im43 50 0 R /Im35 42 0 R /Im99 106 0 R /Im101 108 0 R /Im33 40 0 R /Im81 88 0 R /Im109 116 0 R /Im40 47 0 R /Im40 47 0 R /Im103 110 0 R /Im35 42 0 R /Im39 46 0 R /Im32 39 0 R /Im40 47 0 R /Im48 55 0 R /Im35 42 0 R /Im101 108 0 R /Im33 40 0 R /Im31 38 0 R /Im100 107 0 R /Im43 50 0 R /Im35 42 0 R /Im104 111 0 R /Im35 42 0 R /Im32 39 0 R /Im101 108 0 R /Im46 53 0 R /Im31 38 0 R /Im101 108 0 R /Im31 38 0 R /Im100 107 0 R /Im100 107 0 R /Im38 45 0 R /Im102 109 0 R /Im102 109 0 R /Im35 42 0 R /Im100 107 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im101 108 0 R /Im40 47 0 R /Im31 38 0 R /Im45 52 0 R /Im32 39 0 R /Im39 46 0 R /Im35 42 0 R /Im34 41 0 R /Im100 107 0 R /Im35 42 0 R /Im245 254 0 R /Im325 336 0 R /Im245 254 0 R /Im246 255 0 R /Im48 55 0 R /Im40 47 0 R /Im43 50 0 R /Im35 42 0 R /Im39 46 0 R /Im34 41 0 R /Im101 108 0 R /Im35 42 0 R /Im36 43 0 R /Im49 56 0 R /Im43 50 0 R /Im35 42 0 R /Im99 106 0 R /Im35 42 0 R /Im45 52 0 R /Im43 50 0 R /Im35 42 0 R /Im45 52 0 R /Im101 108 0 R /Im40 47 0 R /Im45 52 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im100 107 0 R /Im101 108 0 R /Im35 42 0 R /Im99 106 0 R /Im40 47 0 R /Im104 111 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im31 38 0 R /Im101 108 0 R /Im35 42 0 R /Im39 46 0 R /Im34 41 0 R /Im101 108 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im43 50 0 R /Im35 42 0 R /Im35 42 0 R /Im99 106 0 R /Im35 42 0 R /Im45 52 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im32 39 0 R /Im35 42 0 R /Im100 107 0 R /Im100 107 0 R /Im31 38 0 R /Im45 52 0 R /Im40 47 0 R /Im39 46 0 R /Im43 50 0 R /Im35 42 0 R /Im39 46 0 R /Im101 108 0 R /Im40 47 0 R /Im99 106 0 R /Im39 46 0 R /Im38 45 0 R /Im45 52 0 R /Im35 42 0 R /Im100 107 0 R /Im38 45 0 R /Im44 51 0 R /Im101 108 0 R /Im39 46 0 R /Im35 42 0 R /Im35 42 0 R /Im100 107 0 R /Im40 47 0 R /Im104 111 0 R /Im31 38 0 R /Im45 52 0 R /Im32 39 0 R /Im39 46 0 R /Im35 42 0 R /Im34 41 0 R /Im100 107 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im43 50 0 R /Im35 42 0 R /Im99 106 0 R /Im101 108 0 R /Im33 40 0 R /Im101 108 0 R /Im40 47 0 R /Im130 137 0 R /Im35 42 0 R /Im35 42 0 R /Im99 106 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im34 41 0 R /Im103 110 0 R /Im35 42 0 R /Im39 46 0 R /Im34 41 0 R /Im102 109 0 R /Im35 42 0 R /Im44 51 0 R /Im39 46 0 R /Im34 41 0 R /Im45 52 0 R /Im32 39 0 R /Im33 40 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im104 111 0 R /Im34 41 0 R /Im32 39 0 R /Im101 108 0 R /Im40 47 0 R /Im39 46 0 R /Im100 107 0 R /Im48 55 0 R /Im34 41 0 R /Im36 43 0 R /Im36 43 0 R /Im81 88 0 R /Im360 373 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 430 0 R +>> +endobj +430 0 obj +<< +/Length 966 0 R +/Filter /FlateDecode +>> +stream +x¥}I³4¹uݾÅ[J?&´tÈðÆ! ¸äÆ&"íæÜÿ½+³p³*çÎEn¤~ÀÅîð×þýë¯?¯üðצïu¾ïa°ÿ;ç<|Ë÷8ä¯yßë<}ýæ?üâ¿ÿ1ó׿þù[¿\ù;Nõk½>}OÃy}þ^ÿ7¬|ªZ¿¯Ïh}>¯qüóòõǯÇ}?þcûã§ã)|Oåï׿;Q//ðô)ò-ñzú4ÁÝç¬.ëÿÑ÷SûûÓ÷ëGHýËzJýqDë§zýã_UëßÝè7®ßCÜÖ?~o´õëåüã÷¹oBçÏ!Ë8À|azó$^ !à¾_³ï§õt×óÏßëbxíN/*Å%¿\o`Z¶õè�ó �2Uxþ/1Åïu¹H@8¯c*òÿø¯üÛ&òû?Còåß²ûi�_ÏáBÿø!ÿÅiþóõ.¿GÈqFÃrýávpÑàI«~`ÙmB|°°ýÀÅ +OßKGX´®?bÍkB4)¼ÞB;_ÆÊ}´¾Ì Päµw6LC�¦Ë50>N;Úæc|&La�f ©².I9ßÓ%I´FL$ht]&tõ¤yêǽtýaêcÿgHPò-F¾ëñÎ]ZóqK8ÈT ¶%¾m [¯:øú2t¯×ÇÚçr}ÿz]ýa7¶ÿ3Ïõå7Wðãõ1W$§¹ ðüX}ÁYvEò=iYüóúGy¾G9ã¬Ð¹àúýu·la(òÆ7ù˱Ò_{ò[,òøãäù-±?~wú|âRq%Ó|²@~jù+¾ä¯?0÷Wñ\äÿqþñµþrLýnÁÈ®~OßG&øòcáÓú« ¦ë§ÎÑL iAëu_~Î`½ÿÿ?óÇbÀN#¢ bl=¤à y0Ú½ü]�Íÿßðæ·`À#qDòãÀHÀ8§[çõ�Æñ.qELÀ¸Î·0 û2L!ÜÀÓ=L#¢ .in `¢ÀA»k¼ 9Í»�îôüæA#DäÛýÿõe�Þ#QÙ~;àkzw ÷íÓ¸oÿp'ç7mù.ì»ÝþáAVúCðÀÌì5`¶^Õ? ²)?XfÃ2ªûìÏ<È) C`ö¾*�Ý]&ðý+Ûô@?p5éÀî;þû{gÿæùßï¼Çð0Ëù°àñ?< D/ç«Ø½ÚǼßÇ/ç÷!/ç×þø]ãóO þõùðÇUs=ÑÍy} ¼þÞ!Èò60 ! á¹w£tH0Ý$ÁIpõ?ÿ²Àüê@þÉfÌ]BÄK`4Ãz1Dxð5l?�/aÑwÓ=Iñ& $ÁUøÌ7 cTGØ]Yè°ë²#¨HoqÖeä +gH�ÇÎ�×+dª$.é*Ù } ¨®±_î$X1 t<}À<� LÃ&tù¦*HÒàÊGìÓnIòM' ?0U±EIÓ¬X=ÒØ%Ùb]è$½$¯$¢EdñTnþ*t47°*ûù-ÙÏ7é-¢AçgbÓ ¯òA®«òloR¸ÆôË÷² ãpü@<ò�b²î`R +çUóèé9û¡OÁÁã>ÜÂîõó[pðøã§·Há-8°?¤à&·Õóþ¯lH GíxtQìá°ô¹ÖcPø)º´pç>¢\À£ù æA#ÿI;ýE¼êØQµÝµ¶è¢»[¢*ÈXmÑÅ®ª#´#º8ઠÑE'ÑEu_w.Z' î}$¨Ý²=lØ¡»2| oÑ Gn·tÙöÊpë°"²èDæb²Ë´èÕe[ÂFÂ+$áméFݪÈÒ$Ò§tÓ$¦Ôoö äÐÏÏî±QEUÂã«{&ññ÷,ZnÄ4C>¬I°N».³j×e¯`ë-¾Bº¬_U÷ÇW'è¯>Ëá8íç·j?ÿ+Øz¯<çÏ ßlÌrõ-òK4b¬ +ð¨GZx$q3<jásx4=´úðhûq{¦5½Â£íWxô`ÅWxdxÞNªÏëzÌÞN¦5w©r{;é'àá ôºQïàâ×¶ÞNzHðþvRÀÝ$H)}ïùø" Ý4wÐnzihÑM7 ííD áçè¦ñ& $ã%º©@ßAÆ$�ÑÍSæ©ËPgzn.kE7û£ö yT1"?°Är¸`.¢stÓÍ%ºi³%º©~À\ÜnºÙÈ¢^ZtÓË,ºiþ�%ÁxãMè¦$?ºihÓ-lyê²Ð<uÙêLoÑÇ/³è¦CÏÑÍù +|ÎâZ.ÛÂçùK@ó<ÿêLoÑGÛëQ[¯GÝd¯GÍh½m?pëõ¨éóiÐ +ºpGKç+ð-1÷ðhyK-Ûþøé-Vz GÇÂçëQqÆû[3<Zú!ìñ¨ÚãíÆÂ£xO-«IàN-k -Ù§ð¨õôJn|óZ©eÍhG4<£Ïb$GKo^UÄ {¦ñ& &ûñGøâÝí2Ùãå-µì©Ë^±Ò+<"ºìsjYµjY?-ËrKZjY·6µÔ²æ øÛKÒ´)ÍjJføÓG¼¹<ß³ZÖ+ÉZVó¡tXjYÓ&Òø¨ä34øh·Ô²§$¿" Wp@$¹´ÐVjY#8øÌ{p°¼¥=Ïÿ^ÁëüöôÑ·§ [OÛÜóíÛäsfXÿÌ·oøÆ¥bnÖ>´kóí Øöizóí¼|û^¾½ý¡ØÃ`Þãó {È~`Uùæ#úÝÒfzè£>×:¡ èÎaz ïõfà�Eûê¢ÏGpø²')·HüÊR9-"IªIéÞ-ÆIPóÑî²îlÎì.Éö ïþÏ$Ó+ãÍ+4϶u tÈDM϶S7ÏVdIàÁݱ.î>Ý»Åó=ïÀlÐôl;oñðl{u1ê§áIzlÎì.Éö ïþϰM&±Å*ª²¦g{úRO}þê +wu?¿9³ûùí;òþÏðùmmMÏöñ·zºÉZ·hÐôl[G/LôìjgO?ùݵ~x«õúk-ýó)èçõ ´¹6ÕÛú³-ÏJúóò|Y/Ë×,OÀ¡ªïï¹ùÒO¯Z.]ÿvâ&_ûü~0¨³ú?ûÆÏ¿Q$<ü±¥àöoüäëqFp9ÁzieWÖ'DÂ|ÑÁ×û·¸ÂÖ·V.«¾{xjðßµ'£\¾í&ø-*ë#@è7e( (½tZxí,[ÖÏP V"eýxýþµÄSÃöfv5$wtÂÊе +â#«%Å·vR +3%c´ý~Ìàûd@`iÔx©Ñ¡È<-£Sã (øÂ¶~_èÎ\.pßíPý&¤¯ô£8C;t½À+¸ÿ¿-ë)DÃ[KÉúK×G°æ¸/¾QÀ'?`AÝù®¦¥!LTÑb:¤HÃ�Üi|)h·Hµ0.Nºb2'hʯ\Ì,ÉÖW³$dýµÈ +b=½ü®H9ÿ×"P¾?GQ±K3b@ÝKÜ¿lÓC%K̸õÕ½2`¾0ó¥ò�Hö¥r@ßvKPÈ^%n «D&B9!D"Xß Gß9ªäÝiÙeèÎ +2-¡?´8½Q½koƽ;ðg,½ìصÃ:ã<i5¥�tèv,c=$0QQò§ ÎH~DõÏ öäÄ&¤ÀØ:à +1LdÄE°)fJÙ2!hOY7|FIósRÁò÷üºäÕÈÚVx°Ð¾>P©kBaS?DìøK±qýxúªÓXÎø×N˯ì{]^F½ãÓ>tñ÷^íð³#ͨ®ÍQ)¦bÜÓ ?ãËãÄ} 1+t¾�1`ø´Þay¢Õv´\AiZ@ßUj° E¥&ÈÂ:*6!Öm5(l²À (XQCXP-²ÞáÆzJ=G,Ô)S Ô1 d�iAìJÚ¼£õähn¥À÷åh.B Gs¦Ô)ÂÑ¢ÑN~¬½ÅÁÛ¼$éÎu`8.Úè®dé®ðäPä(ÎkY!L¥t¦Ýݱ£)" +:ÂÑ¡6P 5¨<ö$dW.%Í»$Q²NTFv¥¶>õ·<ñ4Ê®8A &ÄWW¢jb«æ¨&ëåy§ð Eçõ²'VhGd)βHr9Ë!JÞ8GÅÖ{Þt²+CxÏÍIÜ�½}²ZÿnBgÂá fPèL8õ*RÌõEô:º7¸ù //3bA02ìUéGÙUs¦mÔ-M¬9áÄüÖlBZM +<£"Aaìrü·{çåÀfdÕ\§õèm ïÞZU° Z,w<Я+ ®ÿlà[óûm@~×aq¾}äVCjåÖkÌ »òGmu�ýBVù¯h5öÏémä¸�A}TVC|) 5!úy½Y»@æw¸aQe@kFëå$-MêÇn@¶@ Õ`GÈBzL @ N÷´pLÈ]YæY9ìy½íz¤i5¾OÓ¤ÊàÕ¢è¾ïðããÔ¸D Ï,taz»Z(Z`¾gÈ£¹Á-¦BlYZ G¢º+²C4*&4;�Uf9Zp½ Bà0#[¿- �Ñ*hÂCö!Zy)ÔÐhHìq>DkÔih!CæA´ ËI6iyàS¢B�fGÒ +½qoLõVhdæ~_GÄÒàÌ�#`ô$@ö 3-,`NLj0J65%@ àȾdN¢¡xXF"èa<£ÇÆ3@n¾Ó®òÐ<j<Dy�»º,0ÐÅÅÜñwC²ë¸BgPÖB£¨ Ø÷GÏÈÞô#¦ ô v¶ä ߯DPhÇÆ?§õúÛ ÅÓÕçe´±óç/òÇN¿¢å@h¥ï7±ù( d©Êçõ: iÿJ}PBà�òMþ Yc +ÜzÞ#G + Yíru�Ô<9^Ht@(@ Ba @S|(ò =±ðºÃç÷Ç-cõã æâ $äüê@n}ß%M(d\ÎÐñ ,âA#ÒbÂA¨Åu<hBðàAVyxÞA/BÅã ¥·B¦×\At[¾¯Á@ÄÙêéËîqÄ>g«3%d9b½J(aGBFåÅ¢½flCÄî8²)#-èÈNPèv4A%¢ÛÑ4BÔñ,èxð¬ú²:µ ràY4#: ¸jZ+mxÚgÖ_Ë-Ü8Mu(ÍMËe/ xaç庴¢¯ë&<,Ýj÷º>Àí˵FÇù÷oµ:KY»zGS¿çï˽#¬ÿËùûJ冀ï»â0H@YyØLj½æ¾õì/gfmßï ¨Ï(Ûn ZЮ<OL(ÔJÚz¸Ðoþs¥MóZaOjÃ6j|\äGj¬>¦XN¯ +QÕá$1 ´¯Ö˹1õÞ%& õ,Æâ°Öx±Ò:KoÚú�zrÎ7 'ç`BOÎÑ \µ({Ò³¢ÜãÜ�±_#â´¸þJ/Æ^JAó£x©Zï0cÑkÆ,lë�DdÄJ#B[À1j mÿ"êJ *a9Ã;M/O´+Ã;ÍÐÕssè]G¯ðûbi³J0?`kÇ*ùìò°j7@_ÅË£PØ d¨t4.Ë2L:Å^W4CÖEh+Ó¹KXVA¯ÈÐ Ðõ2öôL3Ôáúü¾¯84@S¬u¼çIç%Ýâ�ú¨_*%Z7Hë|�OOJTÆ6BRgóìæ9nC5{.ÀlÈi½Àr¤�"ÜýöpÝýõú®hÌóW¯ÀmýÃaûÿ®]pØ´'WÖ?pÁéd¾?°õÞð,û·æ3W@ ÝÀ~°B\Ò;¯"ðlrlµ:õ¥-Zñ §`Zg.Ò[âf´GOâò Ðâb2Âïë¹!#<¿#³Ý £Üln^à¬] Ý@©9onÚ§jçÈO¨vÖ£ò@´p´É³p´E�Þ¾Àñ´8�z \ ²dþ/ )«%¤/ë áX¼X²ìk8ØÑé£Hêü}½ZjAß×ÄàZðÚVCRÐèí_JC䦣ïªPu +ZrB¯NRPQÃåâM=nýgj÷TjLÏèõ4edPD»r§7-ðV¬3Ê3j¶b«;fÔ =ý´6acósuÁ ^mc]J;Ë^o4Hto4ÐÏ ZóÓB`ç>¾Póþ9KaÁù´`íoóÄ{îtN;MQÕ°êddH¨0TNó(Oª'FÐèO¤g¸åúâúþ±#¢¹çËgxZjÃ`DÌÐÒ'G¨ÁôNcëå÷ý1Ê ¥¶ÁÛú4÷ÁRsÑÕz*úõzZ%ÃõzZó±¾"$IYHõr<BÁÓè)Á^fÎëAKf¶~ÖÓý ;¿�mÀcÑð×z+ +É#\ýÉæõèå*#"áy^åm¢Ú¦fÄJ®µÀ ÷MK[¤õ[èíG¬MµhÁÏ lªõr<mÓ,H7`lc4ÍÉ0±jzSD\¡·6è¨bëåî1ß%À¨²À(²�/ØA'pLJ+ã:[v¢32dz0¡+ìÚ!^òÔû@ OÙê ®>YÄThì,RÊÏë/3+?ÏáUÇ ì_ål÷øyD5ÇÏóøÓ`ô×k^-é@¬lzpØÐ¿¯ t^ï·:"A}Z_÷'(�2fx~K \¯7²\�êXJ(Mñ[Èõ!ÿÈÕ:ÁBñýø»¢Æ?¼(ÀÍwÅÞDD@8Þ«F6×bxç¨ÖoqÈz1![0½9Q{4Ï6/24íYàJKúêæ °g¾0 IBeÓÞw�põo±Ñur<ÚÁÓ +ð@ª$¹ÆÍQ®þÀæÉÜâuÕøv/®ÆôIe^zlʸoîr1¡/+ *cÁÚëâö}ÙhU.÷£ =]óÈxQ&(W ï³Ð� ¹nÙCnÑ6'¬ô}ßqV}ë¿BÁ9$n9$!¯Cò¯C!BH^·"ôHe ÃBGvsÒM£ Çñ<ØÉHÒþµÞÌpZLOE-Äßçæ{}zåmÀ²ÞWí�|8 ²ÄB:0<t¨ëd·Ü²¦Ã7¤ÃZÊùi¹),EþOË^!b[Æå'öOèðr@i5Oçå²ùú¼'ÑÕ^Ö://XÁDãöðäï2 ÇËX|´¼AJhHȲÍÏëuHÀj§ß'ܸªDX`�uS)ø<,Uà�ª-ètLa-±c +ÕôfeäqEG¶7¢ 6¬´E>l^!(i4@hÈ�ý~B&È1+3iÀ½!émÔD¦çÒ¨D«i3KG?àöºhf`AÀ$â8$Hðq§PËëÓ(èdECÌo@0ݲ£ Ûa=[ݪ¾Zvn kÂYXõDãPoa1!OX÷%0§×Lr @Z@ÀHÀÓbfHn%ð9 hÖª1 CoaÉ˱ÿ3ýy2C÷Â=;zäz7ì(Óâ9!%ìhª±QÚ Ñn-z 9n-Z0½Êõôæ~ L¢w¸@W@n#r )i^5_g+#Ôû¡ª3Î'uj�3c;Þ4ìEç5÷ñpñÏëõ.ú¼~ÿúº¥¹ÂÃ_ç]³Ýлû0 ï;ðÁ¾;ñàA¢v´t:Âc)Ku®¾ïîP×Z<§-ŧZ/7E%ű[| iÉo«!fûX*ÁMh½gAV.°ô£| ÚfNìCÅlÀ®$Mhi nõïÓ~e`}µ^t UCÅé¶µ8KÆ&TOÎÐè£)Æé0=Là :@#Ô)1h´°ã�f("¸@+�% 2ÀÐ×˳~ÛX< %8¢@ñ¬dØhå{~iá·Hj´°ýÀ~ÀI¥RGCFè 8®�:z$°# GRiAÜIm:-J!Å2m·iiéò0HjOêÔÌ�Çs-X�¥( +âtKÚ¤ÌÞ` gH�y4ÄV{¿åX×£îùò4¸#:DS 'ÍåÅ÷ÐçäY) Ãy½'æ¢Ô4?«t¦nÊ0/¿GÜÓrÌQ>]ùquPxfãê O²x&½A"òë¬áI¬'+éaçåº +)ûÕ×e ²¢åz0[ÀÈÖÙy~Oëó±$ñ0<ÛAîIv¯ èÉÆ< ´]VÔÑ6 ê izrou�ǤÌUâ?Z2G´^.¶±j=eIzÍXH/ ¥©rëûBâ/å'¼T,¬'HÝ)ÂVsÖ«¿BéÿÒb +uþ¾^³u£fx@èÍ0 úëõ²Üî¿ÒQæ@2&2BÒÑ)¨×ýgÈzÝÿ8ÜRaq,7´Pè> MWéæ@Ñ¡÷7Cè®ò,ùÛú«¿UjE}Æ¡Im&°"# @Ò%WýgÁ+Ôá¤�eÍ£Ã)"$þ.Ô!úv�^¬¦ÉåY!'º¡Y»'z½\qBJÌQh AqÉ3ðCP:²þð#ZëÉþ¤ ô82ÁPF×iEJH÷£2Ô!z,²ÜƳÜá@Ënjr oenÐÓÉ;òÛzJȧA-,ÂüpD ù]0ù]NÁÜÿ þ?"ÕzÒb××}ÁpØÝÔ¢t'èËÊÑÌÛ¨D34»jPµ+¶Ct½@(oEvO@æ}½ÞÁÈðÁÈï÷'w0²wÑÓz=±ÜórË WÑ*;ê´^7aGvTsûlZpyÚE½¨à|V.É/?éÉQçõrbUËÕì£ûµÔó GQ ¬ìQõ¼^CFÄAZ+Óýû#" £ZÏ+H«õ¦Ê¿Ý4à èÕzæÅ6 ÈF³ ï;*uÂnÐáXËñ>£zÐB2Fð"3 ðbq£Î;\ÈóIgK°zþÀò= Ês â¿å6+;Èkï + &h¯ã=(§I#"EuæX~ }|Z¡Ì¬ñ!-Y[-q;Äê21_¬±ÒÀräÀ´ïÓ#ÃÐÈ` Òñ=é!)C]¬¼ÍÐ¥Q3æ¼âí7&t~GÍ£%Hµl d 7îùkÀrxS)H�)rçðëêVñ¶¿®VZÓïñì1ýeGS¹¥lÈèrrD¦T\=ÿùû¬OPäáÓï¯Û;çø"Rn¨rk7¾'NdLÎíå +ÂNðó÷·ÿeyvD<¯_/,°eµ_°)¦2¨ë¼>¡é�uÊã'S| ×_%~æm 2mï¼> +¤¬·°ðü}ÁÛzDUèXÖ[¾|sÿd}ÊÒz~Y»+ XÄy5H XFÜTßÙ3¨NsFÅ ¾Ú{ÃôBgÑhpu^¯¿Y½KðÖ¼¾@@=%2Pd�?à×ùõÇ#E©EÊd1ù +÷iLn~äy½Þ9!ôÌMÒRLÂÞòÓUz÷?AúË@³*W4T6LS(C ài´"¾ú<G ü0-= |.§õNö¼>wnàoPohÿÉ ²*$C&CúëýwFD?OÊn©8Ò>50º~ÿú¬Ãë½ +u\઩`Z+dXLSH àz¹ÎàÀR6÷luòÓÏÅ@öÌÀWb!ym8³ Ô'³XJ§Hd��¶&<#'ÂÓ¿iA'pôo"ìèß´ äèß´"¤W=Åf½nì Ó`Aö¸¡wT=ç�7 û9ªV�Zñ0Èy9fÏÕxÏ ~ü¼G9ôd¬ôz·ÚqùyÓͶý�ò}ÊËèVîìÈ¥,µ§àn B áÕZ<õ0á¢Ç®?ðX¹l¿søï¾@rÁ9C_KxåïXùC÷åýÐÍ ûÁ3OÌýáóD +¡¯;ª}{ÎyGÅÛðymЮð6ü¶oÙRlv ¦÷ö-�OÞíxøú¸à`oãÕÈó%týòÀà'ôþ$Qý<1x«Ù²è<'H}dð¼@8aYTF e/4XÆÄAÓc¼ÐÖ;UcªHïêêþÜѧ±£H( ¡ã¡ÊûºèDI·¦¶ÎO Ùj2�/|Ò6@/`ApÀJbÝ+¼*Ù«\Dåè$Ë6® P°¥£ 4§òÓÄ6£è ¹ôïÀe:¬"ìèdM§MVúØ!*`ÖQ qÎÁÉÞ&Ìð ý{rdVèéÃ=+¨iH`< j¢ÓØ,hõ¦ÆXA~ÈÕ{È*-* +&3Æ2ºÇ±´°cBôgÔÐÀB¬÷4µÐ°TÓÆÐ.BÔÂz«EUbV¤Ät`¶º¡»òò¬§sK 2Xi«B"(Ïø*ð[ iÏûhD6ÛHãIþj¹¼ùbÎ×ç°úº,|ë{:2Çc÷]S:mèûy²Sú^ÿ<¥3DHA½è%BöÑ;°$ô}Ǥ¥÷ + +Ú¤ Eµ2ºÝµ¹íôUÓÓ×л 7²%Â|FÖxsÅ´(À'¯£+¼ò0ÅWø}ý@ëõ\}+jíc9 í_N² q gDÜ¿Þ%MyÌ(*!ÒÖûIîü0'ÛzÓÑóãM¢àp¤\îghÆåbÖºùRpµìnµÑÙÖ¿cÙ¸¢ xAA%àq5h `BBZy±õPõër˳,xrKXè-T2à +Qêu? éHªepfiV!×GRj²µÞeÎëõî[½òeåöV°Ô-«æò¸^Ò¡W8§È¨®4¤#º�åeÐT¡k°%P×@%ùCÉòý5ló4n3@ǵIS�¼3ú¾'Ci*XÆ£3Ä p°p(cÖ¦Û± `í[hkÂ Ì ,Ù5iîëàQÏË &ã½"Z®Z-`¹ +)ÉUÕáu(jFËeëaýoªÓë 6ü¾ó[ä£RÑ_O´áb½Üs Q ö¡ûOÚþ)ðx°<s [7@¨]¡â/ O&!Q£ÄzBéõdè@¢æÏ5÷Jw?¬hñVäGµ"½qILêå¡ð�ªGCá¤ÐÑÒ:¸; ¥HÏ-51¦s#¤ ðãY½¢àÕñÔ(ø}wj L#·kA7èx¿"K(KǤA#@«ûOKh$ +¦'ƦÕ÷õXÈéM|zÕ¤ß/E×ýó1~|=t ôaëSçGX «ËÓ̧XÜ6 ·-°Ä¨¶ù\/ÖÄH¡È�¿¯CQC¯;'f5/B ñZ^UKy7eÍ âÝ5Ʊ(D@OZ`G±Ø$:²ô�3RAº+¿¥5I®<=ÁQ©¦[A#(»a¹ä÷ºa#öäå¡2{YdùÑU]ÌF=ÜÉ.#`hÔi½.ú¼nJGÿj¹lVøuÙ�¬ðìà5dTrßöîI]S¶hÏó¢íî97 ·Â+Z¯·ÂMèûùoDG?@ÁÒNùüʪ¡IQ Öyî¥uÞA"è£</ 2¡.E+Ô!²v4)d@Rè ea\CÑýÇ,í¿ åïO¯QËèþôÏuGH?½óÑùx�¤F®ô ÙÂÁ0ö�bÎô×g«ÍÐ +É©ñ6è½Å¿J\à÷eWt~GyJÄ +@¯Ï �èc äF\Ȭõ¹2¡¥AZü~9² a5nP èÈ àII +áD?`Ò<Qäh7H¡´å²Î?mÄrçþËØÐI+ÉAèxMØ;uFfaO\~MÈXèHL· +x!AbJül?Vÿ#/IDé Pe áÈkjÞ ËkBfT·BGZRxÛ´G,äzÊL±Ñ3¡#áÈ,\5G'F¡ý»£´HÖèUÎkzÄľ@æ$ËÏie,Nµ\Î6$©±N¹h¹>Ö}Ý3åÞtwÐÆÜ· Àó�óè-¬£z¤tÌk¤á÷å>!£õY4¡´Z©6 V+}ãZ,H3ëì-ã¼^O²Ûóz?p¨é,�B¬wþ²1ñM!nµKjñ Ï*BWèhdHRKð´$|zä:OP6Ä ´ÚH·Õ sJ£¶±KÅɹ³ád!9»>Zv|C?uëõ +¿ªq¹º!B7� WeXRt�±QéV4 ú;hÿPI$= ¼¢´>*<ÛÖ7ê£j-ní á³ õ&Äö¤Ôp$8 ¬IYM~%l`è +R<tÐÓz&H½ºa ¤#¹æRf\@VBG^TC R,÷ð6§þßz¤ÀÕ/è��M"Ývr$±õë-Ìjq5ÜÁm 8,*³>ØÐösF2à³D%BSÓRo8B|½æHÑóÏ dCg(BrÛÁ¼¨`¡ÿ¢*qB@ÄÓñk Þ}Õ0SztkXÕú~«a Á¸òö¤³Oá}½ÞDy~N8®×Ë=-½¿Z/·P^g¯j½ÜAùáÛú¾ÊCÐ([j`õú¬zc¡Ó8jåÌ7 {r¡ô.6 r¡^¯§æ/|^/×Ê¿/¡Pz¶ÏÏj Ñzª= kp�{´¹nõäh(Lpú lÞ�ëVd(®Î¹nêMðRAÄ®Áp£ÄCÐ"A¨ Ù,A¹Á|½ÆA´P/bÒQͤ 1% Vbz¡^Ðk=3ba¦9L1@e¡Ó=±<¯HÚÍãÓª g8/Þ¼AÖÄ)A½ùl´4õó÷åæG¡b/¨b'¨b'$¨t_<E¸^d òtÍÊ6 Z¹�2'+øðdfMñÙz +ॠ䨣åÊÖ^! ý}8à¢q0%êÇð9Íæ ²¢ d¨µzAõÅIߨ Æ"Pðûz±(Ö!7=lv×pTo÷Ð#ðåÆq9C+¨§GÁ`ÈÁÓ]~$z@z'-¬¿f¨Ëèɽ#³K7öÏóÛ`$!gIBô,éã)º3¨e+6b<FæàªOeÙ»%Øë6Èê<N˯Bö´~Þ½ßg/ëçåzÞ"ÒñV¥u^¯×Ù´P¶Ï¶öÓçÛÃÈÐõéaðѸë¼^Îo9Jë)e.lE@=ÁlÅ$`¦%h7byf~Îëu iÒ8&øÍHô(4ØÒùû²¤~¸Bõ¥wÊJÅ@:xòóTaz¥^¨'ÅÜ Þ9ô@Â\Ð'¶¢õUYc!^ê ¨ÞrjTY!Yèû «�GÿxdC´ îg¹ îiÙ H Ëñ=ÚÏW? ÐqôÜVPDzÂz¡@h½§Ò0Á8Òë4? hÖj6t�½Qscù8Bht,sÖü8ºÿç¿%§)F^ 4ãñì´®[÷Dø�Ül@ò£OG×ù8CHA¹{iNÐCsg,U@B½;ÖzöQs¤8¥ÙAZn<£PÂSnl=ä;Á}y½Ü;:Ó-äy ¤As ivØ�µ°\µ8C·ì²M>×Ñd+õÜr¤zÀd3B§õzc¿ór91jYáîe,ÆÐÓz3ÌàûzJH°:ßóþ£X_of ^-ò.ð±óñ×( ©KoÞµ>`á2Ã�è}Ã,½¹EAÞ·K ~&C¼Þñtt¡?_ÎK +X è%ÓbWbâaG±¾_èõrù8ÀÔç´O08úå +À3»]ofvet�Gj 3ëT£[ç1I)Eð 4Ò°Ð9@Æã)¨r¢àÔÍ\í9 µh2ÄS³z]¡ñ +) A,D2s /¡ª$¨DtO:a%"Xï±Ô®(<lÙ,�6ôs@P/x+ãI +âþq0 pä¸åM%ÀÚÐÃèõª6Tõä¢$43Hk*�q°Ç@àÁcÒ:õ æ¹Ue(çiý5f¥V[µe¼RP¯µÊ[×eb«ãGµÕVo¹KU? [mö]õV(h ×[eQz«p¾§áÙ ÿ¹ù{~±ÐÚP¨úsÖ!^ôjØz3ªÅëÇAy3|èÉE¯#Iô¢×1h¦(}Ëò¼¯ËFMo$«âm-m{ u^®7)Ъ¯Ë½GôuýòJvaëë̬hóD§`rÛT¨OFÂ!<½^k9¬àê@3$Þ~ª$·N@¸è~¨arÕ÷e7*dÈ@rz¨uP8 vh3D@GÖDÀÑpE`Ft d¶À!¹U=Àç±±¸ëÿz: Rt_r+hU[¶ðJÁ2W1¾Ôhc®"Ãä¢Ät2fBÔGBÅÖ;¦ 7Yh +Í'tÙíòãµùÑÛ¼ùѳ`¡{xpÑô Õ kÆ#tôLãµ^õoIb-`aÄæ=naDåÈaD +Èt<í¤ ù2<É@Gât%ÈzTB¾Ý2ôddLX øTÂèu+áTJ¥z°uPëUÂiÖ\AÌÔUip,âh % À.ÐRÔHKÅp4¢Cád¨A®ÀsÜpDCbÖ å)9ÍPxÒGÈzÖ¨)1£6!+ÞöÎèô<Yk`VwÌ/Ê0PÐãâv0-?=¹5|/ã±ÝZ@ry¦xÁ%¤\ò<6½v|7àÁïx®^.9õ: Qªå²�,èëúX4sg>HyW®ëËRE{]úñ^cÿ hvô%˺Z/GQ!Aæs`¥XªÚ£ôgÑͪ g)3 îCpÖ�z÷»J>Ð` `Àò¯sà.@oe¾PèÏ%I(S^u[÷GÃè×í +l=Ò w}KkëBTgAÆ'ptÎ"$¿'nù]±zEt�¤Yã,h³4#@YxE"ìcMÐ8tü(eÕ-È»nZñ êÔ[ã,EÑõI[ßj¦ïß¿U \�`OvÝ9Hî¦ç8 óúkfËô½^¾¿?)'G0úöùKJubËîÏËõ'M¿ózÝ0å´^é÷ÄqlÀúgÛÄmÒýÀc�y.åºçõ0Å{¡Êø£,¼G_¸ +oPÁ·ñè{^P´ ´úÇ£ê( ?«/hZáz¹Ø3z¾!ÇÜDó!C]Ü¿>( ú{ÜPÌ�®ðQ$Q¨EXOK8Øñ2è0GZ]4%Hg¨¥ÌƧU^åPÇõ*ÑXJö[ç§dIK¬8@Jv¸sWs r[É{¤áçõrëÆÃn¨pêÆGxÿºá÷õùT¸'C>«ÈJ^¾¨ÏÞÉ/úiBûG6<OÙ¯ÞkÃÓ¢úÁ{v´èßjÛ«Ò4¸£áÃLHÉи2�}M÷5Q#ô÷ä}½õ'ôæ½¹ì14i.�ïø)½ZøxMí 2#]kfí�´4`A6Ø1ÏjE^c¨Z¥ -7ì6Tà1@/\ưûo¤`°Ò)í£ÍÖË¥ºæÖë¤ÚVËõùèèë:õ-#0'/ñí94jÔ£(!Qçóñ'8F8Fµ=¹<Âû»ïÚ|õÖý7ßS»);p®ÐS 5½Z¯X>PKP(mÁ8:ÆsÍ P^¢ÊÃä"!òâHËñ £ ñ +>NÌ2û§ÍÌVÔ_4hD®Ï öÏ:ÕêfÐ3d·?á=»ýñ³Ûù4%tz(f=?ZjÞ½é¶î÷ zDs&$0g¸fUñG]( P +u&^s´N:à¬^MjãZrLL£¦ù».V¦ u@ ¢ 8ÞU ÓÞu< +¤X÷FSÖöϬƸմ£×¶¦-!¤4á�´4=J!©yD2ÁwÔ:|ÏÈ×Ï·8ØÆ!µ8ÆÓæKpD,KôkCªÖ»Ç!µ4ïa*ÙÎI`^ .ÀU �GÀÒéϤ%úóÍ 8ÏjPÌ2üµH@GÀÑÆúóº<0¦a]l±/*_Àýë´ Íðß×oýwõ5îY«õOßÊ2ü7e^ëålÉàûz~¤Uë9ê¥qµ\NÛ0%z4 £t| p~GrPid^×'Ò$¸=;ËbÁóÈoÝ?t"Ø¿g8µÅÕ8f +!ô´¬@èhYÑ:�Ëoóò$N?úX×á¼aRHtïpE<èIN±4ýN!Ð\Ð:Âñöïibá@ÏÑz¹Ô)&QXvÂ`µóàÖ@çCvB³L -ŤaÃY@ÏPÑ<Ô"jbG´~Y;�¡²cXÊ· §bé�¹qÐÇ÷)^¨,# '#+¡£ãD'9v(AOÂѱ"A%¬gY×ÒÐ1ß}_=à¨6HóLîf%ÂòÛN²×©Ðµ¤Ø(èp¥ gÐYH4WÍÓ2öÄÝ«Dª¹#+Ó[¹}N8+�Y#�]Ý�½iǰ£ïPîi±<ÝÓbGË£}|·æ«sôñ]G<}|ͨ~@îã»M6ÚX«ûønS¶íºúøn]# ä>¾cDÎèãKS +,±=V÷¼mØçi½.Ç)uZ®£Bö¼y^.crkË=Ùõ(¦`©NçÈsQ¶T§ë ô\×Ñ<¨Ô,]?ï +¿/£ÂÁâÑí æãËC¥ô}¹`+/Øø>e f(@:Cô¤Y8x¦ ÞÕÞÎëõÃIg2ϯ@.88@¥ó ä§¡Tê½£ê®ó +"bÚ @®d +-pPI±jHö=¢è¬q!¢f\/\Ð; +W-Û°© ¨´Âýë Ô IÕ×Ý =ÉgÐ!í":ºo`C®çÈ` çÈ@à�7Th÷Oä([³²¹áIB£GÍåesHéï K°<¦3-ª ß_µïóMpDEDø`gX1°Ì@6§m "<ìJæ(ZQé@3®C:¹úÃÂÑE´A�¨ÐÕ'uPÊ6ð@d:màÈtÚÀ<#Ðm`¼Ô\5 UlGQð²5 )FAE)B-7Á"ôÐ¥=9óë>Å9-wdø´\�ó +³å$ÂÆzÚB2 ÓÃJ(ö#¬ëGõÁ¡Q$�K$æi® wAµ0Ð}0ðÌ@rw`9çïë ´Ì~4ø^½êuJo¡üÉ`éö/,s$(KêÆö®^/ûÔ¸ÄÛT«J�ôì&HqH1 KP:pt'CÖÇÁè\@Òì¢ @ÆÃûRKy÷&hEõq0ô@ä©|Ç8NWÄAh@q"°s¼Êp¸(áë<ÇexAçA/Ö HB2P%BÒªÄ×úª$Mñz5Èz#ؾïhºú"Oöª( yRýQnÖð¤i¹V)59³°Þ>ä: 8-£éM+r DG¢ E58 äôÄõ@ÅqÜØÑÁ © GnJéÑTA¡Ã:DBFÈBr¢øQ¯ÖºBº 4+Ô³2DJ&gø}½drÑ.»E)äXXo0kåjYrä8uÓTbr3ím<ôþsZMêõOT ¬ðpß÷¯O.Áèi=¥ðòbÚË1TÔ»×ðtþGfUëeñÅUëu,¢pO~(¨Z/CÁÖA©M?6Ñßè6¦Zïè¡üÈÕ¦¡´N©n@çà Iþ·µßÞãêÈxpÀ.<ªÇxXã¶NN^Ä9ÕËBçfäÍðÄ((: V<ÌËí&UXf$¡ð(^jJzâv ÎXºü@ñC?À[8ibÈûzCj¢pH,I'øÔÃIQdô�l +&Äàj©Èz01è +éáô0Õ»A_F/ÖÁjDÏÐÃé¤j>¢YsæxGpt�лàêK;L¹u`Ú-É:|Oáuú&ä;zO¤É@Åø¹ùÅÄfèPêéIæR +¬®àó-Þ*ÎZBDãùÙRG´°gÂlÐ@{*GH��kì8ôó\$¤@û×{Rçì_O°ì¨ö÷YÁõþAÓMúÍ*ýØeÄzrJÝn@^Ñô×Ý,ñV¤îv*@ÇDmÂq¯+jк<Q³ ÕzYxZ¯° yèÊ( îç¯_¹Óóp}z½Î& ã{sãÎôÓ ¨Ñ"* ®ÃáP5»ù'wÍÖxSm´Ýe®Dµ^çQ$�Ç´féhÝàÜaV$+!t§Ò÷ùúÞý[\tý~yÔhD¢RWÆ%Ä�Hª ý]Ò +í6ú5àt4Å-AÐˤ2b@dE0°Ú¢£QP xÐ(ô}"h¨vëx¡aghÇãé\oÚ©F·CFÄ*°)ÑPéC2ÂÖ5Q¡V7ï^`ݼÛȺÁǧ¹Qñn#�G7ñ Ù`¦oÙQm°ì*(Áz?úEt£xó#Íp(êr@Y7Qóü(Õ±R¿E x~äaG~aÏ;$·ý(Ç;J;FÊ{&Ü!#äj¾tÏç ÀÓ|©Û´ô&DAv3ÈѲbMÂ~üª7ÂPÀáÐÐíÛ÷¯ehߥ¬×¸E¢å̲¯O]׿¢Í»&ÄÁí;Ò«ñø,½©( óz¹«µ]ª à�ôP,©ô®ÖëXRZD`x¤G=¨+¯!êfàÂAöqZ¯7qµÆMݤØÐ¼ÐóþÙM}_ί= ¨R,p ¨[BârÌ~´;[±ÞîDV",7q¢¡XLé%ÞºA×U'¯%!%æ"Ôa10j�^ mz4"¬çDËhÜ -¶ É#ãuàe=KÑÞZïi!§õ×mÔ>Ó¶ó/ïÍ/7Rëÿë¯~øÅ/ÃWøúÕï~¿·å_ûÿøÕ·ÜǸ~m>äãßüöëþÇ¿~úÃo~üÓßü¯û×_~ýåoþíÿýÍ¿ýú_ÿïëßþãç?üôÓׯÿé7¿þç¯_~ýÇ~üÏÿöó×ùúýÏ?ÿå_~ñüãß?ÿþÿþÓ?ÿâ× ù»¿ýÏ?ý_üåïÛºïßÿüÇþùëWÿûÿö«Çîþ?$vC +endstream +endobj +431 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 967 0 R +/Name /Im414 +/Width 24 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ??1ñ30ó30"¡blàÿ&°£ÿ?�© Û +endstream +endobj +432 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 968 0 R +/Name /Im415 +/Width 20 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xM̱ �ÑC +°c7QLÄÍ~åJ +ÄØ¼òr¶Fïed1è+~*4Ø`/¬Ðq½Ð XÅ($! :&)§ã¸y�æ$ + +endstream +endobj +433 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 969 0 R +/Name /Im416 +/Width 22 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿáÿÿÿÿ|`þð*>0X|`°AE`ñ@5@ õÿ>0 �ÛÅ-e +endstream +endobj +434 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 970 0 R +/Name /Im417 +/Width 10 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûxàóïþ1üaøpB�ãù6 +endstream +endobj +435 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 971 0 R +/Name /Im418 +/Width 19 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÀÀþAþ? {Có úÀø� AÄ +Êùÿ10~`��ü5! +endstream +endobj +436 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 972 0 R +/Name /Im419 +/Width 18 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÀÀðúøáûÿÿþÈ3üàoøÀFÌÐXü?Ã{b F�r±+Õ +endstream +endobj +437 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 973 0 R +/Name /Im420 +/Width 23 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc?Àðÿãÿ?ÌlØxøäìlj*`èWPÖbÖÎÏÀÄÞÀÇüÀh,Ãÿò�.Ü +endstream +endobj +438 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 974 0 R +/Name /Im421 +/Width 16 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÀÿÿ`ÿÿý{{~�§Ëê +endstream +endobj +439 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 975 0 R +/Name /Im422 +/Width 13 +/Height 26 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcÃÿ@P'àÿÁÿý�'+ +endstream +endobj +440 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 976 0 R +/Name /Im423 +/Width 33 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`l0``@#°l°< õÿÿÿg�âÿ Ì Hà`Å`m$0\Aº{�%L# +endstream +endobj +441 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 977 0 R +/Name /Im424 +/Width 31 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`d```n@`öÌù�> °B'Ô008Ø@pË1ãÿÿü`ÌÄÀÞ�Ã,Ì@åüoÿ�M +endstream +endobj +442 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 978 0 R +/Name /Im425 +/Width 29 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ?ó~Z`vFöFf0fb`<ÀÂÀðÁÂÿ��ÆÚ° +endstream +endobj +443 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 979 0 R +/Name /Im426 +/Width 36 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßÀ ÿH0 îúó?Áñ¡¨`ä6L( +ÁÏB°OÌPÆPÂDüohøÿ�Îòf +endstream +endobj +444 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 980 0 R +/Name /Im427 +/Width 31 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿñ|C?+°708À0ó0~ÀÐÀø>0!p×ð00Øp@°�Ë1¿?```?�ÁÌ 4�Ú24 +endstream +endobj +445 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 981 0 R +/Name /Im428 +/Width 6 +/Height 15 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãPPpph�þÔX��$s= +endstream +endobj +446 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 982 0 R +/Name /Im429 +/Width 5 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+øñãG�ù@ àà��¢g +endstream +endobj +447 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 983 0 R +/Name /Im430 +/Width 28 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x ̱ Dá#$Øj +°´0qG`� +GsFp�ß§¡·øºw'eIÛPÑ%7xL°¢àÀÕåàO°ÈHXPÐ`f÷ëûÿ³ÓáÙb0à +endstream +endobj +448 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 545 0 R >> /XObject << /Im431 450 0 R /Im94 101 0 R /Im9 16 0 R /Im14 21 0 R /Im432 451 0 R /Im10 17 0 R /Im22 29 0 R /Im240 249 0 R /Im19 26 0 R /Im13 20 0 R /Im96 103 0 R /Im27 34 0 R /Im13 20 0 R /Im29 36 0 R /Im13 20 0 R /Im10 17 0 R /Im15 22 0 R /Im21 28 0 R /Im131 138 0 R /Im105 112 0 R /Im31 38 0 R /Im100 107 0 R /Im33 40 0 R /Im101 108 0 R /Im40 47 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im45 52 0 R /Im130 137 0 R /Im34 41 0 R /Im36 43 0 R /Im36 43 0 R /Im173 180 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im36 43 0 R /Im36 43 0 R /Im40 47 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im102 109 0 R /Im39 46 0 R /Im34 41 0 R /Im48 55 0 R /Im48 55 0 R /Im35 42 0 R /Im39 46 0 R /Im100 107 0 R /Im105 112 0 R /Im33 40 0 R /Im40 47 0 R /Im100 107 0 R /Im35 42 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im102 109 0 R /Im39 46 0 R /Im34 41 0 R /Im48 55 0 R /Im100 107 0 R /Im102 109 0 R /Im34 41 0 R /Im103 110 0 R /Im35 42 0 R /Im114 121 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im102 109 0 R /Im31 38 0 R /Im103 110 0 R /Im35 42 0 R /Im129 136 0 R /Im174 181 0 R /Im166 173 0 R /Im175 182 0 R /Im164 171 0 R /Im176 183 0 R /Im177 184 0 R /Im178 185 0 R /Im174 181 0 R /Im174 181 0 R /Im166 173 0 R /Im34 41 0 R /Im33 40 0 R /Im34 41 0 R /Im39 46 0 R /Im43 50 0 R /Im36 43 0 R /Im31 38 0 R /Im104 111 0 R /Im35 42 0 R /Im81 88 0 R /Im30 37 0 R /Im34 41 0 R /Im45 52 0 R /Im49 56 0 R /Im43 50 0 R /Im31 38 0 R /Im100 107 0 R /Im32 39 0 R /Im38 45 0 R /Im100 107 0 R /Im100 107 0 R /Im31 38 0 R /Im40 47 0 R /Im45 52 0 R /Im100 107 0 R /Im105 112 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im100 107 0 R /Im35 42 0 R /Im40 47 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im99 106 0 R /Im39 46 0 R /Im40 47 0 R /Im102 109 0 R /Im39 46 0 R /Im34 41 0 R /Im48 55 0 R /Im46 53 0 R /Im100 107 0 R /Im34 41 0 R /Im38 45 0 R /Im101 108 0 R /Im33 40 0 R /Im40 47 0 R /Im39 46 0 R /Im100 107 0 R /Im104 111 0 R /Im34 41 0 R /Im103 110 0 R /Im40 47 0 R /Im38 45 0 R /Im39 46 0 R /Im34 41 0 R /Im44 51 0 R /Im36 43 0 R /Im49 56 0 R /Im31 38 0 R /Im45 52 0 R /Im433 452 0 R /Im38 45 0 R /Im35 42 0 R /Im45 52 0 R /Im32 39 0 R /Im35 42 0 R /Im43 50 0 R /Im48 55 0 R /Im49 56 0 R /Im105 112 0 R /Im40 47 0 R /Im39 46 0 R /Im130 137 0 R /Im81 88 0 R /Im241 250 0 R /Im38 45 0 R /Im39 46 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im48 55 0 R /Im40 47 0 R /Im39 46 0 R /Im35 42 0 R /Im46 53 0 R /Im101 108 0 R /Im33 40 0 R /Im34 41 0 R /Im45 52 0 R /Im130 137 0 R /Im100 107 0 R /Im102 109 0 R /Im40 47 0 R /Im101 108 0 R /Im40 47 0 R /Im434 453 0 R /Im34 41 0 R /Im39 46 0 R /Im39 46 0 R /Im35 42 0 R /Im45 52 0 R /Im435 454 0 R /Im81 88 0 R /Im327 338 0 R /Im48 55 0 R /Im31 38 0 R /Im101 108 0 R /Im33 40 0 R /Im105 112 0 R /Im33 40 0 R /Im40 47 0 R /Im99 106 0 R /Im40 47 0 R /Im31 38 0 R /Im45 52 0 R /Im101 108 0 R /Im35 42 0 R /Im43 50 0 R /Im40 47 0 R /Im38 45 0 R /Im101 108 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im159 166 0 R /Im136 143 0 R /Im163 170 0 R /Im164 171 0 R /Im165 172 0 R /Im166 173 0 R /Im166 173 0 R /Im167 174 0 R /Im104 111 0 R /Im40 47 0 R /Im40 47 0 R /Im101 108 0 R /Im45 52 0 R /Im40 47 0 R /Im101 108 0 R /Im35 42 0 R /Im160 167 0 R /Im34 41 0 R /Im104 111 0 R /Im101 108 0 R /Im35 42 0 R /Im39 46 0 R /Im39 46 0 R /Im35 42 0 R /Im34 41 0 R /Im43 50 0 R /Im31 38 0 R /Im45 52 0 R /Im102 109 0 R /Im48 55 0 R /Im49 56 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im100 107 0 R /Im31 38 0 R /Im100 107 0 R /Im114 121 0 R /Im142 149 0 R /Im117 124 0 R /Im123 130 0 R /Im122 129 0 R /Im114 121 0 R /Im125 132 0 R /Im126 133 0 R /Im126 133 0 R /Im359 372 0 R /Im129 136 0 R /Im129 136 0 R /Im34 41 0 R /Im45 52 0 R /Im43 50 0 R /Im101 108 0 R /Im40 47 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im104 111 0 R /Im35 42 0 R /Im39 46 0 R /Im35 42 0 R /Im35 42 0 R /Im100 107 0 R /Im104 111 0 R /Im40 47 0 R /Im39 46 0 R /Im101 108 0 R /Im33 40 0 R /Im35 42 0 R /Im31 38 0 R /Im39 46 0 R /Im33 40 0 R /Im35 42 0 R /Im36 43 0 R /Im99 106 0 R /Im104 111 0 R /Im38 45 0 R /Im36 43 0 R /Im39 46 0 R /Im35 42 0 R /Im48 55 0 R /Im34 41 0 R /Im39 46 0 R /Im130 137 0 R /Im100 107 0 R /Im81 88 0 R /Im436 455 0 R /Im94 101 0 R /Im437 456 0 R /Im13 20 0 R /Im23 30 0 R /Im13 20 0 R /Im28 35 0 R /Im13 20 0 R /Im10 17 0 R /Im14 21 0 R /Im13 20 0 R /Im21 28 0 R /Im438 457 0 R /Im439 458 0 R /Im440 459 0 R /Im439 458 0 R /Im441 460 0 R /Im442 461 0 R /Im440 459 0 R /Im443 462 0 R /Im440 459 0 R /Im444 463 0 R /Im440 459 0 R /Im439 458 0 R /Im70 77 0 R /Im445 464 0 R /Im81 88 0 R /Im70 77 0 R /Im446 465 0 R /Im440 459 0 R /Im444 463 0 R /Im447 466 0 R /Im448 467 0 R /Im449 468 0 R /Im450 469 0 R /Im450 469 0 R /Im70 77 0 R /Im451 470 0 R /Im81 88 0 R /Im452 471 0 R /Im81 88 0 R /Im70 77 0 R /Im453 472 0 R /Im454 473 0 R /Im455 474 0 R /Im70 77 0 R /Im456 475 0 R /Im81 88 0 R /Im140 147 0 R /Im453 472 0 R /Im81 88 0 R /Im457 476 0 R /Im458 477 0 R /Im459 478 0 R /Im459 478 0 R /Im460 479 0 R /Im461 480 0 R /Im81 88 0 R /Im462 481 0 R /Im463 482 0 R /Im464 483 0 R /Im465 484 0 R /Im466 485 0 R /Im467 486 0 R /Im468 487 0 R /Im469 488 0 R /Im470 489 0 R /Im471 490 0 R /Im472 491 0 R /Im473 492 0 R /Im464 483 0 R /Im474 493 0 R /Im463 482 0 R /Im475 494 0 R /Im464 483 0 R /Im474 493 0 R /Im476 495 0 R /Im477 496 0 R /Im478 497 0 R /Im478 497 0 R /Im463 482 0 R /Im464 483 0 R /Im465 484 0 R /Im462 481 0 R /Im473 492 0 R /Im467 486 0 R /Im473 492 0 R /Im479 498 0 R /Im472 491 0 R /Im463 482 0 R /Im480 499 0 R /Im463 482 0 R /Im472 491 0 R /Im481 500 0 R /Im472 491 0 R /Im475 494 0 R /Im482 501 0 R /Im469 488 0 R /Im466 485 0 R /Im472 491 0 R /Im473 492 0 R /Im216 223 0 R /Im483 502 0 R /Im475 494 0 R /Im469 488 0 R /Im479 498 0 R /Im473 492 0 R /Im462 481 0 R /Im473 492 0 R /Im468 487 0 R /Im469 488 0 R /Im479 498 0 R /Im484 503 0 R /Im463 482 0 R /Im464 483 0 R /Im465 484 0 R /Im70 77 0 R /Im88 95 0 R /Im485 504 0 R /Im485 504 0 R /Im424 441 0 R /Im486 505 0 R /Im77 84 0 R /Im83 90 0 R /Im62 69 0 R /Im68 75 0 R /Im61 68 0 R /Im65 72 0 R /Im70 77 0 R /Im427 444 0 R /Im77 84 0 R /Im65 72 0 R /Im81 88 0 R /Im368 381 0 R /Im368 381 0 R /Im70 77 0 R /Im487 506 0 R /Im77 84 0 R /Im81 88 0 R /Im377 390 0 R /Im70 77 0 R /Im67 74 0 R /Im67 74 0 R /Im81 88 0 R /Im368 381 0 R /Im370 383 0 R /Im376 389 0 R /Im92 99 0 R /Im368 381 0 R /Im377 390 0 R /Im370 383 0 R /Im81 88 0 R /Im400 415 0 R /Im66 73 0 R /Im67 74 0 R /Im83 90 0 R /Im84 91 0 R /Im65 72 0 R /Im59 66 0 R /Im60 67 0 R /Im58 65 0 R /Im66 73 0 R /Im74 81 0 R /Im402 417 0 R /Im368 381 0 R /Im374 387 0 R /Im374 387 0 R /Im369 382 0 R /Im406 421 0 R /Im424 441 0 R /Im62 69 0 R /Im63 70 0 R /Im59 66 0 R /Im91 98 0 R /Im64 71 0 R /Im59 66 0 R /Im61 68 0 R /Im65 72 0 R /Im88 95 0 R /Im68 75 0 R /Im63 70 0 R /Im66 73 0 R /Im65 72 0 R /Im65 72 0 R /Im59 66 0 R /Im71 78 0 R /Im66 73 0 R /Im68 75 0 R /Im64 71 0 R /Im66 73 0 R /Im70 77 0 R /Im427 444 0 R /Im77 84 0 R /Im65 72 0 R /Im81 88 0 R /Im377 390 0 R /Im370 383 0 R /Im70 77 0 R /Im67 74 0 R /Im67 74 0 R /Im81 88 0 R /Im374 387 0 R /Im374 387 0 R /Im92 99 0 R /Im368 381 0 R /Im369 382 0 R /Im374 387 0 R /Im81 88 0 R /Im488 507 0 R /Im449 468 0 R /Im440 459 0 R /Im450 469 0 R /Im70 77 0 R /Im407 422 0 R /Im81 88 0 R /Im456 475 0 R /Im81 88 0 R /Im457 476 0 R /Im458 477 0 R /Im459 478 0 R /Im459 478 0 R /Im460 479 0 R /Im461 480 0 R /Im81 88 0 R /Im477 496 0 R /Im489 508 0 R /Im473 492 0 R /Im464 483 0 R /Im473 492 0 R /Im469 488 0 R /Im468 487 0 R /Im467 486 0 R /Im463 482 0 R /Im490 509 0 R /Im473 492 0 R /Im478 497 0 R /Im491 510 0 R /Im466 485 0 R /Im463 482 0 R /Im473 492 0 R /Im474 493 0 R /Im479 498 0 R /Im473 492 0 R /Im464 483 0 R /Im479 498 0 R /Im473 492 0 R /Im462 481 0 R /Im473 492 0 R /Im468 487 0 R /Im469 488 0 R /Im479 498 0 R /Im484 503 0 R /Im477 496 0 R /Im467 486 0 R /Im465 484 0 R /Im475 494 0 R /Im469 488 0 R /Im463 482 0 R /Im472 491 0 R /Im484 503 0 R /Im492 511 0 R /Im70 77 0 R /Im424 441 0 R /Im62 69 0 R /Im63 70 0 R /Im59 66 0 R /Im91 98 0 R /Im64 71 0 R /Im59 66 0 R /Im61 68 0 R /Im65 72 0 R /Im88 95 0 R /Im68 75 0 R /Im63 70 0 R /Im66 73 0 R /Im65 72 0 R /Im65 72 0 R /Im59 66 0 R /Im71 78 0 R /Im66 73 0 R /Im68 75 0 R /Im64 71 0 R /Im66 73 0 R /Im70 77 0 R /Im427 444 0 R /Im77 84 0 R /Im65 72 0 R /Im81 88 0 R /Im377 390 0 R /Im370 383 0 R /Im70 77 0 R /Im67 74 0 R /Im67 74 0 R /Im81 88 0 R /Im394 409 0 R /Im376 389 0 R /Im92 99 0 R /Im374 387 0 R /Im394 409 0 R /Im81 88 0 R /Im488 507 0 R /Im455 474 0 R /Im443 462 0 R /Im493 512 0 R /Im70 77 0 R /Im451 470 0 R /Im81 88 0 R /Im457 476 0 R /Im458 477 0 R /Im459 478 0 R /Im459 478 0 R /Im494 513 0 R /Im461 480 0 R /Im81 88 0 R /Im495 514 0 R /Im473 492 0 R /Im479 498 0 R /Im484 503 0 R /Im464 483 0 R /Im463 482 0 R /Im496 515 0 R /Im473 492 0 R /Im464 483 0 R /Im497 516 0 R /Im498 517 0 R /Im466 485 0 R /Im469 488 0 R /Im478 497 0 R /Im463 482 0 R /Im473 492 0 R /Im482 501 0 R /Im473 492 0 R /Im499 518 0 R /Im473 492 0 R /Im469 488 0 R /Im472 491 0 R /Im466 485 0 R /Im464 483 0 R /Im465 484 0 R /Im480 499 0 R /Im475 494 0 R /Im464 483 0 R /Im462 481 0 R /Im500 519 0 R /Im463 482 0 R /Im473 492 0 R /Im467 486 0 R /Im474 493 0 R /Im463 482 0 R /Im472 491 0 R /Im466 485 0 R /Im468 487 0 R /Im472 491 0 R /Im463 482 0 R /Im475 494 0 R /Im464 483 0 R /Im473 492 0 R /Im464 483 0 R /Im468 487 0 R /Im464 483 0 R /Im484 503 0 R /Im468 487 0 R /Im464 483 0 R /Im478 497 0 R /Im480 499 0 R /Im475 494 0 R /Im464 483 0 R /Im482 501 0 R /Im473 492 0 R /Im463 482 0 R /Im474 493 0 R /Im500 519 0 R /Im463 482 0 R /Im473 492 0 R /Im467 486 0 R /Im473 492 0 R /Im464 483 0 R /Im70 77 0 R /Im409 424 0 R /Im58 65 0 R /Im81 88 0 R /Im407 422 0 R /Im81 88 0 R /Im63 70 0 R /Im58 65 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im60 67 0 R /Im70 77 0 R /Im425 442 0 R /Im68 75 0 R /Im59 66 0 R /Im75 82 0 R /Im66 73 0 R /Im62 69 0 R /Im60 67 0 R /Im59 66 0 R /Im63 70 0 R /Im87 94 0 R /Im77 84 0 R /Im78 85 0 R /Im409 424 0 R /Im61 68 0 R /Im74 81 0 R /Im66 73 0 R /Im62 69 0 R /Im84 91 0 R /Im77 84 0 R /Im62 69 0 R /Im68 75 0 R /Im70 77 0 R /Im501 520 0 R /Im66 73 0 R /Im62 69 0 R /Im72 79 0 R /Im61 68 0 R /Im68 75 0 R /Im87 94 0 R /Im81 88 0 R /Im502 521 0 R /Im439 458 0 R /Im455 474 0 R /Im441 460 0 R /Im442 461 0 R /Im70 77 0 R /Im407 422 0 R /Im81 88 0 R /Im503 522 0 R /Im81 88 0 R /Im70 77 0 R /Im451 470 0 R /Im493 512 0 R /Im493 512 0 R /Im443 462 0 R /Im449 468 0 R /Im70 77 0 R /Im504 523 0 R /Im81 88 0 R /Im505 524 0 R /Im81 88 0 R /Im457 476 0 R /Im458 477 0 R /Im459 478 0 R /Im506 525 0 R /Im507 526 0 R /Im461 480 0 R /Im81 88 0 R /Im477 496 0 R /Im464 483 0 R /Im477 496 0 R /Im464 483 0 R /Im468 487 0 R /Im467 486 0 R /Im481 500 0 R /Im474 493 0 R /Im463 482 0 R /Im474 493 0 R /Im475 494 0 R /Im497 516 0 R /Im477 496 0 R /Im467 486 0 R /Im500 519 0 R /Im484 503 0 R /Im468 487 0 R /Im216 223 0 R /Im482 501 0 R /Im473 492 0 R /Im472 491 0 R /Im468 487 0 R /Im508 527 0 R /Im469 488 0 R /Im466 485 0 R /Im464 483 0 R /Im463 482 0 R /Im464 483 0 R /Im465 484 0 R /Im70 77 0 R /Im424 441 0 R /Im62 69 0 R /Im63 70 0 R /Im59 66 0 R /Im91 98 0 R /Im64 71 0 R /Im59 66 0 R /Im61 68 0 R /Im65 72 0 R /Im88 95 0 R /Im68 75 0 R /Im63 70 0 R /Im66 73 0 R /Im65 72 0 R /Im65 72 0 R /Im59 66 0 R /Im73 80 0 R /Im71 78 0 R /Im66 73 0 R /Im68 75 0 R /Im64 71 0 R /Im66 73 0 R /Im70 77 0 R /Im427 444 0 R /Im77 84 0 R /Im65 72 0 R /Im81 88 0 R /Im371 384 0 R /Im70 77 0 R /Im67 74 0 R /Im67 74 0 R /Im81 88 0 R /Im378 391 0 R /Im374 387 0 R /Im370 383 0 R /Im92 99 0 R /Im370 383 0 R /Im378 391 0 R /Im371 384 0 R /Im81 88 0 R /Im451 470 0 R /Im509 528 0 R /Im438 457 0 R /Im450 469 0 R /Im450 469 0 R /Im449 468 0 R /Im454 473 0 R /Im441 460 0 R /Im449 468 0 R /Im443 462 0 R /Im70 77 0 R /Im407 422 0 R /Im81 88 0 R /Im438 457 0 R /Im81 88 0 R /Im457 476 0 R /Im458 477 0 R /Im459 478 0 R /Im510 529 0 R /Im510 529 0 R /Im461 480 0 R /Im81 88 0 R /Im511 530 0 R /Im475 494 0 R /Im464 483 0 R /Im474 493 0 R /Im500 519 0 R /Im463 482 0 R /Im469 488 0 R /Im468 487 0 R /Im479 498 0 R /Im481 500 0 R /Im512 531 0 R /Im466 485 0 R /Im492 511 0 R /Im513 532 0 R /Im473 492 0 R /Im469 488 0 R /Im474 493 0 R /Im497 516 0 R /Im475 494 0 R /Im469 488 0 R /Im514 533 0 R /Im463 482 0 R /Im464 483 0 R /Im514 533 0 R /Im468 487 0 R /Im471 490 0 R /Im462 481 0 R /Im473 492 0 R /Im468 487 0 R /Im469 488 0 R /Im479 498 0 R /Im484 503 0 R /Im70 77 0 R /Im424 441 0 R /Im62 69 0 R /Im63 70 0 R /Im59 66 0 R /Im91 98 0 R /Im64 71 0 R /Im59 66 0 R /Im61 68 0 R /Im65 72 0 R /Im88 95 0 R /Im68 75 0 R /Im63 70 0 R /Im66 73 0 R /Im65 72 0 R /Im65 72 0 R /Im59 66 0 R /Im71 78 0 R /Im66 73 0 R /Im68 75 0 R /Im64 71 0 R /Im66 73 0 R /Im70 77 0 R /Im427 444 0 R /Im77 84 0 R /Im65 72 0 R /Im81 88 0 R /Im370 383 0 R /Im376 389 0 R /Im70 77 0 R /Im67 74 0 R /Im67 74 0 R /Im81 88 0 R /Im378 391 0 R /Im394 409 0 R /Im380 393 0 R /Im92 99 0 R /Im370 383 0 R /Im368 381 0 R /Im369 382 0 R /Im81 88 0 R /Im515 534 0 R /Im440 459 0 R /Im450 469 0 R /Im440 459 0 R /Im516 535 0 R /Im70 77 0 R /Im438 457 0 R /Im81 88 0 R /Im517 536 0 R /Im81 88 0 R /Im457 476 0 R /Im458 477 0 R /Im459 478 0 R /Im510 529 0 R /Im507 526 0 R /Im461 480 0 R /Im81 88 0 R /Im462 481 0 R /Im473 492 0 R /Im468 487 0 R /Im469 488 0 R /Im479 498 0 R /Im484 503 0 R /Im463 482 0 R /Im464 483 0 R /Im465 484 0 R /Im499 518 0 R /Im463 482 0 R /Im472 491 0 R /Im484 503 0 R /Im508 527 0 R /Im469 488 0 R /Im475 494 0 R /Im513 532 0 R /Im468 487 0 R /Im513 532 0 R /Im463 482 0 R /Im467 486 0 R /Im463 482 0 R /Im472 491 0 R /Im463 482 0 R /Im473 492 0 R /Im474 493 0 R /Im70 77 0 R /Im409 424 0 R /Im59 66 0 R /Im63 70 0 R /Im72 79 0 R /Im61 68 0 R /Im68 75 0 R /Im409 424 0 R /Im83 90 0 R /Im84 91 0 R /Im65 72 0 R /Im59 66 0 R /Im60 67 0 R /Im58 65 0 R /Im59 66 0 R /Im68 75 0 R /Im71 78 0 R /Im70 77 0 R /Im89 96 0 R /Im62 69 0 R /Im59 66 0 R /Im71 78 0 R /Im59 66 0 R /Im68 75 0 R /Im61 68 0 R /Im65 72 0 R /Im65 72 0 R /Im87 94 0 R /Im402 417 0 R /Im368 381 0 R /Im374 387 0 R /Im394 409 0 R /Im370 383 0 R /Im406 421 0 R /Im67 74 0 R /Im83 90 0 R /Im84 91 0 R /Im73 80 0 R /Im65 72 0 R /Im59 66 0 R /Im60 67 0 R /Im58 65 0 R /Im66 73 0 R /Im74 81 0 R /Im61 68 0 R /Im60 67 0 R /Im409 424 0 R /Im58 65 0 R /Im81 88 0 R /Im407 422 0 R /Im81 88 0 R /Im63 70 0 R /Im58 65 0 R /Im66 73 0 R /Im60 67 0 R /Im59 66 0 R /Im60 67 0 R /Im70 77 0 R /Im485 504 0 R /Im61 68 0 R /Im62 69 0 R /Im68 75 0 R /Im66 73 0 R /Im71 78 0 R /Im59 66 0 R /Im66 73 0 R /Im92 99 0 R /Im426 443 0 R /Im66 73 0 R /Im65 72 0 R /Im65 72 0 R /Im77 84 0 R /Im68 75 0 R /Im425 442 0 R /Im68 75 0 R /Im59 66 0 R /Im75 82 0 R /Im66 73 0 R /Im62 69 0 R /Im60 67 0 R /Im59 66 0 R /Im63 70 0 R /Im87 94 0 R /Im81 88 0 R /Im504 523 0 R /Im518 537 0 R /Im519 538 0 R /Im449 468 0 R /Im454 473 0 R /Im441 460 0 R /Im70 77 0 R /Im504 523 0 R /Im81 88 0 R /Im520 539 0 R /Im81 88 0 R /Im457 476 0 R /Im458 477 0 R /Im459 478 0 R /Im510 529 0 R /Im510 529 0 R /Im461 480 0 R /Im81 88 0 R /Im489 508 0 R /Im468 487 0 R /Im492 511 0 R /Im473 492 0 R /Im495 514 0 R /Im469 488 0 R /Im473 492 0 R /Im473 492 0 R /Im462 481 0 R /Im473 492 0 R /Im468 487 0 R /Im469 488 0 R /Im479 498 0 R /Im484 503 0 R /Im463 482 0 R /Im464 483 0 R /Im465 484 0 R /Im513 532 0 R /Im481 500 0 R /Im514 533 0 R /Im463 482 0 R /Im464 483 0 R /Im514 533 0 R /Im468 487 0 R /Im471 490 0 R /Im477 496 0 R /Im500 519 0 R /Im500 519 0 R /Im469 488 0 R /Im475 494 0 R /Im471 490 0 R /Im463 482 0 R /Im492 511 0 R /Im468 487 0 R /Im472 491 0 R /Im463 482 0 R /Im475 494 0 R /Im464 483 0 R /Im70 77 0 R /Im424 441 0 R /Im62 69 0 R /Im63 70 0 R /Im59 66 0 R /Im91 98 0 R /Im64 71 0 R /Im59 66 0 R /Im61 68 0 R /Im65 72 0 R /Im88 95 0 R /Im68 75 0 R /Im63 70 0 R /Im66 73 0 R /Im65 72 0 R /Im65 72 0 R /Im59 66 0 R /Im71 78 0 R /Im66 73 0 R /Im68 75 0 R /Im64 71 0 R /Im66 73 0 R /Im70 77 0 R /Im427 444 0 R /Im77 84 0 R /Im65 72 0 R /Im81 88 0 R /Im370 383 0 R /Im377 390 0 R /Im70 77 0 R /Im487 506 0 R /Im77 84 0 R /Im81 88 0 R /Im368 381 0 R /Im70 77 0 R /Im67 74 0 R /Im67 74 0 R /Im81 88 0 R /Im380 393 0 R /Im380 393 0 R /Im92 99 0 R /Im374 387 0 R /Im371 384 0 R /Im81 88 0 R /Im452 471 0 R /Im509 528 0 R /Im442 461 0 R /Im440 459 0 R /Im449 468 0 R /Im521 540 0 R /Im521 540 0 R /Im449 468 0 R /Im443 462 0 R /Im70 77 0 R /Im517 536 0 R /Im81 88 0 R /Im70 77 0 R /Im446 465 0 R /Im455 474 0 R /Im450 469 0 R /Im448 467 0 R /Im449 468 0 R /Im443 462 0 R /Im454 473 0 R /Im493 512 0 R /Im439 458 0 R /Im70 77 0 R /Im517 536 0 R /Im81 88 0 R /Im70 77 0 R /Im445 464 0 R /Im443 462 0 R /Im449 468 0 R /Im450 469 0 R /Im493 512 0 R /Im440 459 0 R /Im443 462 0 R /Im70 77 0 R /Im487 506 0 R /Im81 88 0 R /Im70 77 0 R /Im502 521 0 R /Im439 458 0 R /Im518 537 0 R /Im522 541 0 R /Im442 461 0 R /Im441 460 0 R /Im70 77 0 R /Im488 507 0 R /Im81 88 0 R /Im70 77 0 R /Im520 539 0 R /Im455 474 0 R /Im70 77 0 R /Im515 534 0 R /Im81 88 0 R /Im70 77 0 R /Im452 471 0 R /Im523 542 0 R /Im440 459 0 R /Im521 540 0 R /Im443 462 0 R /Im493 512 0 R /Im439 458 0 R /Im70 77 0 R /Im407 422 0 R /Im81 88 0 R /Im457 476 0 R /Im458 477 0 R /Im459 478 0 R /Im459 478 0 R /Im524 543 0 R /Im461 480 0 R /Im81 88 0 R /Im477 496 0 R /Im525 544 0 R /Im475 494 0 R /Im469 488 0 R /Im467 486 0 R /Im478 497 0 R /Im511 530 0 R /Im484 503 0 R /Im468 487 0 R /Im492 511 0 R /Im500 519 0 R /Im463 482 0 R /Im475 494 0 R /Im464 483 0 R /Im474 493 0 R /Im484 503 0 R /Im463 482 0 R /Im500 519 0 R /Im511 530 0 R /Im468 487 0 R /Im467 486 0 R /Im463 482 0 R /Im513 532 0 R /Im473 492 0 R /Im469 488 0 R /Im511 530 0 R /Im484 503 0 R /Im473 492 0 R /Im479 498 0 R /Im496 515 0 R /Im473 492 0 R /Im469 488 0 R /Im474 493 0 R /Im508 527 0 R /Im469 488 0 R /Im475 494 0 R /Im465 484 0 R /Im469 488 0 R /Im468 487 0 R /Im492 511 0 R /Im70 77 0 R /Im424 441 0 R /Im62 69 0 R /Im63 70 0 R /Im59 66 0 R /Im91 98 0 R /Im64 71 0 R /Im59 66 0 R /Im61 68 0 R /Im65 72 0 R /Im88 95 0 R /Im68 75 0 R /Im63 70 0 R /Im66 73 0 R /Im65 72 0 R /Im65 72 0 R /Im59 66 0 R /Im71 78 0 R /Im66 73 0 R /Im68 75 0 R /Im64 71 0 R /Im66 73 0 R /Im70 77 0 R /Im427 444 0 R /Im77 84 0 R /Im65 72 0 R /Im81 88 0 R /Im376 389 0 R /Im370 383 0 R /Im70 77 0 R /Im67 74 0 R /Im67 74 0 R /Im81 88 0 R /Im378 391 0 R /Im380 393 0 R /Im370 383 0 R /Im92 99 0 R /Im378 391 0 R /Im394 409 0 R /Im374 387 0 R /Im81 88 0 R /Im127 134 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 449 0 R +>> +endobj +449 0 obj +<< +/Length 984 0 R +/Filter /FlateDecode +>> +stream +x¥]M¯,¹mÝϯ¸Ëx;¥oc ÀgéM2ÇNüí üûª¨¾-é°uT½y÷¡ª(¢¨#úë7¿üøë7æãßüõøiýö±}n[ýwÿtqûHæ3yÿÂö¹§øñý¿ùößþèùøÙ¿ùå½ùÜmKý·Ok{úÝäÛgÞúï磼m ïÉÃg-uüôùàa3ÜO¶ûúÁÐvÀ�ÞÙq!& ¶>~&éôvø> àì§Ã�~àÀúF2ðMaPB|"m8ðÑ»¹+!"##{ìm(a¢ÈЧÏ"Hô¥&`¬6À± +y îªîhFèÁ"4YÚ-2a\Gß·ñàDFÌærB'¹k§?Ðó¿8*N(ôÛÀ¿ýôú~Î~üüÈþõùª½îóøG/Oö>?hü|úôþòahúÿ£ú®_1`�ÆÖ²`ËI@CpÃ60~¿Ò#ðÀþ ü{à(ý2ÝàAuz4þÒwK_F,ô#úäH¼ g4Ê2¡ÃQaØ ;àB îhò8â^³ »! kx4áKÖ¸Þù×<laîÚÀ÷-äDr +ÿå¿§OgjÝöàß}Yà6RêôAüüF-á]ÙD¬Gß÷¦½¶�ló*¿]0 ÿ¹]T,ô� +Ð\ÝÝ[»=¢°{ÛèEï6´ � h*t®Ab»|³Û[>Àám^BÎqqæKïù�çá&ÀOÀ§·|ÈÇ5¬ZPtl$ªH0YNªR&#±Þ ># ÞÇ]FÙÇåtçU¼ç"çä1M~CJàQ¿A7B£Þ 7â 7vÙ¯«xfÚiÊ;¸@(mÀÃxÁ<^Ƽ øcálkãÞ:¬.X¬B`4òg>¶7a@&Òãz2@öº|Â88§d´SÄ:òסì0 2ò%& ¸âà`ÇZ�1Vc(A5£Fu�³½gÁDÎ4oT¡Ã)¬9£kõXÖÓ!QÕàäëÚ~\²lÇØîèë£#TtÕ·G:ìì~Ð (øþ¡ûÍöôfÖ§ik<×20¸�3¢ãç/ÆË4ôyÀ ¸ÔÏ£">Þ4ÞªX0f'P",t(ò+ö´ý¸¨P +iá Ièûð@Ñ»/ ;¤� * +ÈpÑñ¬Ù ¨ÊmãÐT`7N:, аÐO°*�K +@=U[¤ÂlÝ:$ÆòhZ@*¤¡É°rÝ0ÎÚ(7®#+u +c@]Ñó÷Æ+ØáøCåwrsÐ0�3mD+Àò"¸t+ÀðKhÈ0¾?3f¸qglt* ÂÆÑ¡¤ìxn ë¸ÜÉéPªà:÷vr±à,pa ;JÐ'·£]�ù l~'!ÞöÊh§ëP§2(ä¡9eT\Dt,ôÀ ¦6¨¨Ð£ã�ïD|EwXA!x¡/y}àΣÚ.R0%æ8£âz;ϪúKHc,;fÉT<ÈàP #*®¸C$..ú�}È(�í86hÃ.ªñ0 A#ËÁp¶ÖÂC¯6QÍ~%Ùé ùj'}^âå_o÷Zîé ÄÔdCÏY4ªåDST4ÇÓ0¢9WJ׸ütj¿¡?g4PïZ Ðþû¥3 câ´�>ÇÄ'Ä�cü1Âd£�´õg"ú>Z + =¿Ç¿*¿DNä§Eá*+ ó D.Týÿ]z$ùLHG"X|o ZüÕ¢5¤Òá(äC.¨$ +o]P[T°ED¿li2â 6~ ðu%ä($ÎÔLvRä5z´x7`w¸è0ÌÂe<®ìX6BWð¿Wq&R;ñ®}e[:ë®KÁÆÜð®Â.a#ÐN."ÓuïîÄܵXÐJ,ä¹m#ôÄtºfÍi·²T¿¹hVµF³t,èv¤�æ^Cβ0¤å`8Í |-yè� &X40:aó @u�ÿf0äáNÊGÓg M÷·Ó×/>9éã&{ÄØq¥ØXà ÈT@C²CZÆAjNN`#9: +%ëp�0%Oéð?@(OIIpÙ;Àèt NaØ5`5UGTrWM6ôÌݤÈl¹¶%ê¹§± "ÝçyP$½Å½µ)ûêpCðN äè79<9Èç¨HýfÇ�ÈÑQ|P2?UÙßVP9Õ{¤Cþ8PQ½ªpü«¤égY>ÝXÈòAK¥*ª²¾¯#uÙ¿>R«°v4®kkØ¿vÕ#¹A°ËHýb§>Aò+HAEò!+YJ�(f½eP2¦m°´vK^fÍkj®8 cÁ¹fWdPêÀ¨ï !?`ì`¨û@ªÀû@â¼&ÅÝqR·3ÇcÕ5@˸bêM¹b_Bx +ÇìéìÜ�j® p1kJÃ1%÷:{ÿÅA=^;déy$¨uÒa¶'©�MDQéÊé"«ÀMq)_Í`!åÖ)_pS䣿Á= ,d%]äØT©¸ReÀ@Òð +徯ӳ +TváöDUþÍ¥÷Èò×m`æ +ÂÑÙpáÐóOB :.-a®A)Ä>èNTÑ÷|PÍ7Ï'Õ|N +[�ù2k+ z( 38�÷�,'�Í�ªý%{Ë IùFG>¨O;Weôuþ¶~h´ý:_{©¹ëé*û «âÚ«`ô¿z¾¹báf�ïò²3Zô® ¡ãtFkéAg43è¯éÖïj%µ/í�cS©QÞhr¬màÎCWk4{Ú MÀ@ý¾Ô÷Õ®ZÎ!zâ¦öEóµ +ÿY�_o@BèªÕð%)Ö7Ðè½ýB¶;zbûúè¹+²B/U#Ä÷ÇçòÙืk�<ª~îÀÀ)ð"¨ ý�TÊì5�©±Ã¢àð¨à@ê¿îËÀgÎÆäÚJ{ÂÓ[ûM ý ôñJ×ègÀ×á&+ø;:ÄN Ïü¬±¿vÒãûOGcâªi®uß$ùvjEcÊÌ5Àcî z È�ÊR¤Â±k�<*<n@ñ8¸Æ4;².QvtÝì¡TbV;zf0äëµF+x4ìÈÃØmUc r¨,'7\MJ�{=@,6ÚÔí-^Êpfܶ"è£"A7,ëÙwǰ`;O +î±æ0£3Óè,^c¿Ym.P3�ø¶xÙ=t°í_ÞÝ3=uàÀ¢Fd¾öÄçHxÃ:Àþæ�1 Æ]I#íÎ\â¼ Z +çUINp +Ä È Þ7µjÆMír±np�ã¼VÇæn¼F~ýâ±;óFð:åx£3?ÔWe iÑG°zL°NT6õw§5ÔF:®áÀe$<J¿³_ͼ@wïPìPƲ%úz=³De@g~WRIµ6&?¶ìRe°!ñ2HÁyÉ�T|"z~Éj^Úý�`5!^<ó 7ÈXÚ�hshvPz~½åTKæ[N5<"SÕ6 +}íõ¾¢ÙQÅl¶×YóÉÙ>¾ÿÒ%kßÏûþ}_ôûéAv»;zz_®YÝü'Á[RßÁ�mj^fä8Ð$PªU)[Òeæ.c²aä*XÇrݱ± Z¨êûgíh´à¨@_h�)B¤%k+ñ,Yeâ8 ë´UÀ³çTkó¾e¨z[>»°1v 7N;2?(ZPq#àßÛìFºdÍ¥Ù eNjoiáð-h ²½Þé³äR^Y,¬³p�:²¨ÍÜ:¯<F*�æ[O*£Cú*¿=ãÃfÜ ñå �úý!g)DË k§$¹iu`²2@¶9�)xW°òÜMËbýîäÂJ¿úÑhßwGôD_éá÷Ada¥(à¡ÚÒó¨ÉÔÐ,ÈÙ`,ÿUà,e�ª�2 F�{y¡Ý+ôq¤w£¨À° ª°^$LT¨BÀ5Y½Û +xÖª³ +UÀ»I¹èø¾c îÜF ²4ôãQ§½&@oÐVÊÛpéÆF ÚN¸IZi´^À!ÐOÀmp�p«Û7¢¸BóÒíLïkBó EÐ @`#ô4BUmæ@ªäF+@GÄî Ed\;¸Õ²2·Tø=#G6ƨÚãÂû¢!1ÞüL`Üý⢱ñI;×ZÀÚ~xy±¢ÌÝ£aý×nëúïù÷H\IjJØÃóêì@ºîBáÇ[n0_öSèW0MKýô[ôWwôã©RàdVÄÓ{<üÖJ'´p¼@· £}O/Iâ%h$I»¥ ÊRòîf{úxfAæ/Íp:þ)tÁ|â_é\Fò§#µþº£.©©[úñHò ýH*ƸSö£ê/ÂùS_̤üúìßLB±J_×_xªÒïnuxÒRòSõ¥õû;ÔÑA¡ÒCýù@ImN¶ pë8n·/û½u·R)×N?×òõªImíÁüY°æv{8¼B´ óÞR*TaMÉ´oéùÃdEgôzZáFj@`Ĥ£Zû>@;ÄÄó,xÄÓwÎVRoÇ6ï\ ¦ oÍLE B*§Deí¯b³<5qܸk ÆÒ¤£G¯)åÒÓéÅÚÑóÙÅû4Òë5¬ÞómÉo£aé|10Óß6ðÉI>1õ¬µ PÏZá´Î³ÐÀÁBZgEËWàVVf©yzoÐ�iå-õKá^Z§$ñ¹!ᨨÕ¸"Téª×gg»Nyá¾Ø#;à³ñd°tðhõ¾xÊ~Ý»Aý �9w$-©ÜWK|Ť_÷Z8^6 vP«hÁm¬+oÕHÜ×^E°Ö{1åç]Á£Ó½\¸¢ã¡¢ �Ýú¨UÑpBÔj#5s!a5ÒþÀ&r5ªò,á)d´7®La'MYK±Óo,t +ã]öHNR`¦IóNR`¦>QÓ3>¦v®î\P÷ÆruMíWvôÊÚY¯¶fê<ªXP´àaÅçÚJjÙëÒ´´ÀúY?" C´=gcmz½ÿNõþ9åGw+ xØÝIM;�»×S= »×ÍZzv÷Àî =»×þRÿ4ìî R�»{y̨û> »{ëÿ4ì^¯ß»S »{íݽCxÁBµó§aw/eùsù)ôÙ/»{ycÝ~*}zìw`÷úÛL~ªþ+æ7Ñ¿9�õGÃî>AýѰ{yÍí\sëâ1v¯ÝµÚ ð°{Ø iØýPØÂxؽt׿¿�»tvê=Ø]Ìho¡î)Qäü«ýÅY/%q@ðæø\{ëÆþNjâ@@ô|öUéNsî¿1½DܵïIë 'PúkQÐ×Di`ûöM^º?QÌ[ú±Á¤?QGzëàþB5u¤¥ß6�ÒÖEJñßiÇa¤tº�tÚÊ@x©@jµù1µ¬�ÖRù\¸ X{n�uN¡¦_tf@T T)(ztwkCéQ½z)¡)¯0Ô«©/Ø4ÚLi¥Ð;¢2æ+,&tQJ.÷@tyMaÝ.5Ì=sZPQ>ÉÊ`ÜÓíµÇâ{æwàÌÐsñJe8\Z±ÄòÔòÓ�ô©ÊÚ§�ÂrswX|·Ptý¹õx +<Þ;�v ¾ZéÍÒ/&¾Z08oZ[תd´µÜ?Õh[©Ò0[E¼±%¹Áu�È_-èjjj»Tª Þ:Õ±]G¼ñÆB·Ôp«hâ)=zFoôo8¿bØèZ~÷®?p\*æ<ò|?àîÌ÷fqVïðÞjt/&°±(k¡ÞÁu}ABßÂeâÐ>ñ,{k5*.N+p;hª-v62ÌÓ»EjT908N$ZaVà:p¡®:# )8ìø)xîÙÂAÄo,¥ðë-Sö4$-È:¼ß{AVíÕD¸u¥áU~sc)ï#Pn]ÛSò{{£g]zýoo,`oí'üK\SxCö8Þ ¸ö%\úÄ2 ! ¯!çÁZýÐqOÃÐÒAqöyµz¦ÞB4ôhOV +O¤§V_ø}txTµô`OªÇZþùTGë©ï« ¬rü]M[>åïÂCþÏ×XtÌr;* �ýN P¾2 îHò|çÜòEiÈÒÑóªâXTpH½òp6J«÷°ò$LFóoGèUxw×ÜÒOìý4r¸áþ+l<ð~k%Ðz0t¦e¿gÀ¥-cÀ*ÿÍ óü2@d� +ÿn§øW¿ï=åÀÔ⯰QXË·!ÐÊD¸y�µ\¸GñV«@^zP>Å:£�9Jõ\-�x0µz®âj|ç§½G6ÏïD ± Áä~åèÑ=´rìýÊ35pã35úE´Ív¯tË Ò-+ =õ5f_A¤à ÐùK«OUn§$¨^åû$8^å«oYÃí�c2:@ì�&ê�À¿ó¥µGE'7:!¦ÜàRV4>W¯ýC Ïð¥àÒË~Æ`k cyCîNFÇYL>p°Ña¥ën+ G1y'Dâ ì:@ÑéRþtùöÛñ4¤ÝÁê?9$to¦pPqÛìã@/·È�º-]¾,{`×§nZz`«×Æ#îÍLBäïå-ö)êöhÇ9%å±3§¤âS¢yÏY¢~ý e]+à 0w3�sëå6â¿òqÅ7°ô¬ç@MzÙáuoíº£<¦Àße#B¤^¹?Í;Zè¥qwÕ+ÍKó_¢;f°S¥sJÊ«îWVol,ÞXø\Õ¸ðdQí÷Õ:¾ÿï1 àÖ*<tùÒ3_f�¾ôÌGt`\(=«IkÇ|éYLâéJÏ:1/ÁÆBéYmZØ~/=«ç-=_zVKÛè/=ÛQlÆÕ¦3ûQ^n1áKÏAGM¾ô¬>Kþ*¼áìgÔßvæ;gí/ûæqÀàº2àU>_ + îT®¥(äù¥ô5ëãïÈé=Lв'¥KÑyµIÑ ³ÑÝÄòËço©mùçÖÊã"죯2ÒµºOGÊ¥õºLz͵ô|ÑY½nÑ«ô÷xD°|úTßÃ1P|ÝWLp� ¥r-ÙË}ì[kð1e@avoÊPÿnX±X3+Ðð^9MùÒùîÅX©Üø´ôa¼s¯ä¶è½#@:¹²'ÞñO÷«Y/ÓT°xËh,ÖR6Æ# À\éë9 ux¶c¦ "î +qDÜg·åÙÈ[÷>rkÑ1°pï#ï· ?lÆ¥õ0eÇzåÜN1 ×î¥ôá½ +HÉâìí¯Ê·2À½ +ÈÝÃ-?ÀÎ ãåÒû±â^.IsCRrÜÇq +|E´O\²8ÀZZè¸ç·^"µJYò8¶Á,$ãÚuSàk®¤1R?�ßóO²ºûÀÉViST#±D1=,ù%ä5!JWnk7Ù + µJ:Ê®ðuoc0ü¥tZëµÀªlØé¬Òzñrc1É µçEgã :¶Æ.cªqÁ¯º3dù$]S Ò'ªSÈ')èE[çP´ÙKÕ2$ª+ñY=ÚÞÚîh5®´-Ü#+®ÝHKÔ¼ryëôÊJ½{ãx¦Bþ&�·¾�ù[ª/@þÎmaòKü:í,@þÞJpñL¿�ù{tÞ[ü£øW!ó +Û´ßç!ÿhÿ<äÑ}òO1Xè6 üùns- ns!Ýæöí6ýuåø_è6·×õnaöaöCöaö»ðNÔ ÛÀ·/W&ï8àzeã=ܾÿA¶Ïó¨½j¶ä<h/× íä^Ü3¤§g¤S^¹7¾ ùMð÷0i7£×Óímù_ôûC÷ðjçP³:ËÕë¥UÌßkÿû=Ì?ÎU, 5°ðÀL3ë8£ÐWÏB0Vð¢ÝÝúgò`èvuÕ5ôï»TÔÒ#È¿î ³ï«ôÐ1ì9OþµQÁbéwØM`,¶rò37|RÕjÏ #ïÇÀföï¡ÕÞÙn¼ÓG«£A,dw?A+Å ~}ÉQzÔ0rg�¸P3w¤F¨Ìt¬<Eí�4&`7È XiÜÐ .VZinÕOa¡Ý^ÐõáÀÖ#LFµÍ4»ë8Û¬©2p;'µKð/nyõfwlI¹6b;�¨ ¡)í7E �¸«÷& rà Lr RÆþîÃRn-,¼ÖTS:nrÍ-²WtÆÁôÞdæÖõv$Dæ EyÃøÇÖx§L)71ÚØ¢á4Îî(ʤ»98yµ¥U ¾kâ7Yh3'Å*Ý÷éZn'Ý;zºC¹1¡ 2P³ËÚØØåòPá;z +è½èð@«@åÔ^©ßçK}jjZû}ºÛÑ÷y ÛU°gb@*йùGLò +èToZêÕíô39¼ù²¿¯Ø=¨\´X´ÇÐZ¿(AÇä Ø9J~Óú/5÷ô_éÑú_¸(©57ÖïE`^ +;©Çfc"§C_¯ÛÓáØB;cê1X@º +Æ>. á#zFðocÛÄH%Ò¤(ÏkôR$ +Õ.=:À+ÌW¿0A~ßÇJm·½®ñ~Y#¢záq¸;Û 4µjÉù]0%ôuz¬%&í×KLÚ¯¦s}½^õ5ähõ(%RåÙ}.ú6'<-3Õòú ~庿ÊY®¡_x¡ﯤKæµ¥H|OÆß´_à÷ù.~¾%^o~3õ}é¯;àq{}+þO|´nÇ÷ßÏæ{2JóùVzÖ×>~¤jÚÄ´ ÔÖêut#-Ð(c@zK>nh·¶nÇiüÕm¥kü£=ÇM@Û½¿¿}_ôhÿF7(IÄíAèi: >À=À¸«ª`¾«jy2a@µàÈwUµ ¹@>{×f¨@¾'aÞ)¤?· =½ ~Ü¢àpÒÓn¶ëO»ÓðA> !^ääÆ7õxÛîTy~Z/úm¼,êëè ûm/ûú òº=þWªëj¾[Ç�_g,= ½±÷*½kÆïLz,W"æõ룿zVTh(ªfý[^i("¼-+ÙAJÓ%,eì`¥lÀ ð¢B°º{7[ QzÔÑÒÑÇA#$:½ìoÕúáKÇe;�SQTãYhHè=1|¤,}ÓèÆõú>¦ÀWYKNAÀ9V´G`k1G¸5R¢BÊôÁÈjA«ï3p +|ÖÈ?¸5òÜËIÀg亷Û×Y#êeÿ¾!Ât¥H²^µ·.MëÚÐÂJiÁË/M3ØùÒ4k¹)¨eYØ,¦¹L¦i +òPÏ×}[;�Çê�qãP$#éPÔv(`cδ ¿ê¶q¦¬¦,dèPÜîzeLZ¢ÚÇ|æLi¬HÉ@/QõWݰ*#ð+èÄw§Â°`¥Â0*=:r®T:ñÏô+;â½ÂpÂÿ´Â°ýþB ¡Eü¯W¶Çõ +ÃöûëûV¶ôëSùM*oÐ7ËöÓUä +Ãü¦ýO+'ëoZa8áZaxÓ×÷m{¯Âð ¸Ï*òõ +Ã|½Â°<¬0÷|DMÞ³UHâÞ&ÛcÏǺ ¾;¥¾Wh!£�j«Ý>Z ò¯0yÓu&ÁY_Å~¥/c¦èõVb�_+$õ"7À¬by¢ø^[Å!ß2ãUÌ#5ªÑ³@#.7O)â%µG äiB¹yÉoL|Q/M.ÚÒwÔ +Géé¦ÒU±§'BziâÀ�ÇÆÆ°s¨= ¥³òt +jOCeÈ÷4µä¿òcj¦»Îã®iÊI; §¤|¤&ÊO¸_¨u«Èä Eª`|ÏLmî)é?ý�|sÏ"ñ" ç}3íS3TÛîø¢PIêàßã²âø¬ú.£±o$kö÷VR}êîJª=ç+I¹4¨z# +öÇÞ~Íì ûÏ:�ÜRÐRÄfXß3ö ¶5çö`³{Ïö¯°äåÙ@Ï%1oÙ±RçÙ´÷1AXx ó9W¢e³8LgÁfèܰüÀ� +ïI¼¹½¯_Ý34C:-»Tæ½eRØ2Ðrç -ª3t§c`¢Î`çv4Uû6ÐÂES<»*ðôX^^°FíRçzÒÛwäI;¢xKxDQ8ðè7eì |@¾haK¬%j·#³óý¥7v4àÆX;V¢|þ +Ín¥ù²RËΧèt!µì0û)iJÚ[2Ä RrgØIO-ÖRzÔ2�Ò åe�J8AëðiòEÿtB@YÞÊc@Wcÿ}^ÜaK?ÞþkM'Lµn�6®$8êIÁó´oÒÜ×5®×½ÿ´¤qÂBv t¾ïO-ÄÈͯá^ãúú¦O?úî±`.!jé¦wt÷¡%2Ub1sv +1A5¢*E)qjÔ]éµ %ºB¿\_Âú5;PY¦BTsó$¥`¡÷~}I£7$þI:Uý-ÿK+OS¦¬§ÚfNj©·p�*6xîjÕûDº´¦ÚÞW£¤ÚNÕ¨r¡F¤6æ;.Vs%r +z^t3 [O¬K©¶*ûÆNAI¹f]¸AÆÝYG¯êÖnåU¸z¥Ô2À'¶9ëñmçK|b[m)ÕÙ1Øæ}ñOlsX×ñO'¶9°ÐQ¨Þì·ß§ÛJ0àNl«-Zz>±ÍEø§Û\EÀ'ö£§;DO'¶9É,ËO¡ÏÈ~W:j!ýñm.§½Øæ$±n&?½#V¢ô¯çCýÑm~ú£Û¼Ô:ÜuÀÞ~ù[m:P>µÍ;¨@uu("åÛjK¬V� ÿ½>@Ð 1|àTøª©ÕÅ@¸åc èU TÀñ.z´a}íËi�ewi-±2§B-»Ëï²§m9»ë<Q4¼ð@ØßÔ+ ®~ÀS+èÏóveË"?§§g?ô/ß}óíÏÍùøî·;+ä {ùÏw<Xóv? ÇöñÝo>þéßÿüñßÿÃþþÃO?~ñ³üåoþÍÿ~ÿÃo>þóÿ>~ñ«ÿ?|üú¾ÿõO>~þùñ«ßÿð_?üíÇþøÝ?þå§ß~ûüãóÇßýþïúáÇomRüíßþãOÿóí_þ^è>÷ãÿðïþûýîàîÿJð¤h +endstream +endobj +450 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 985 0 R +/Name /Im431 +/Width 26 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x}Í1@@á_C©]!ö +NÀUC!¼£9#(·]#¡Ð(¾f2qäxëñé ìbø«Q©_[ eQ6(½y{l¯YâéÑ&µéèi)³@¡\«1'M +endstream +endobj +451 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 986 0 R +/Name /Im432 +/Width 30 +/Height 42 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûá?ó å@0{ù|@,Ä@ÀÀð�ÿáþã@|ȾÄß0ð?þ�â?êþ�q ×±=ÈÌÃÿÿØÿa�78× +endstream +endobj +452 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 987 0 R +/Name /Im433 +/Width 25 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¿ÁÀP`ÁÀp ±¡Ù,âÿÿ¥X\ÿù�Ð +endstream +endobj +453 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 988 0 R +/Name /Im434 +/Width 47 +/Height 35 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUα !áã"tÜÈ(`y%¥¥#1#0¥ Qÿ»¢ÍS}Éû}Úù¥ßk6§C®Á¡*Ád1uu#é25òuÞ,Dº6*h6NÃÅÛâçapbÎ/î>ûX÷0NBÃýUº'%ù«.Z +endstream +endobj +454 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 989 0 R +/Name /Im435 +/Width 31 +/Height 34 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ{;37°70`o`x�ĸkØ ÛajkÌù�1ìÙýè�{#Ñ +endstream +endobj +455 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 990 0 R +/Name /Im436 +/Width 26 +/Height 39 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMα 0DÑ(ÜÁÞ$a°<£dÊCM']aÝy V¨KäV¶wJ´øé 8'>hƯ ·@ë µÁ÷ìßèî;ÊN@,±æÂÒÆOÆ:0 + +endstream +endobj +456 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 991 0 R +/Name /Im437 +/Width 46 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿÿÿÿÿÿa``þÁPß�"åHþ ýDAðH¢bÄLù»þÿÿ�²j/´Ø&ùÜüäÙþBÊÝfòèÿ Rþ�ûÈYç +endstream +endobj +457 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 992 0 R +/Name /Im438 +/Width 33 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xUͱ 0Ñoa +$�1BÒ£eàÎ8 ¥yå �(wÒ`uâÏtu¬Gc?+[#-f>8;ác�¤b®xã <òÇå +endstream +endobj +458 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 993 0 R +/Name /Im439 +/Width 24 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÃP/Ç #ÎÀD 8Q��;�s�ã bx!ÀP!À`Dÿ8�¾W +endstream +endobj +459 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 994 0 R +/Name /Im440 +/Width 24 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc``�"ò¡vbdn &Æ@Äþÿq0�C CÅ?Æÿ�N7 Ï +endstream +endobj +460 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 995 0 R +/Name /Im441 +/Width 23 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿ§ÀBÆÁX°5X0Aù� Éõ +endstream +endobj +461 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 996 0 R +/Name /Im442 +/Width 24 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßø_Áÿÿ¿ÿÿÚ· ¥ +endstream +endobj +462 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 997 0 R +/Name /Im443 +/Width 24 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿA½AñÃHèH½A¨AA¬ÑCÆ2þ7Ø��òf¦ +endstream +endobj +463 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 998 0 R +/Name /Im444 +/Width 30 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÇÀøGñ87°±à0Á¶p`ægc6ÿØØÿ��ÔH +endstream +endobj +464 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 999 0 R +/Name /Im445 +/Width 29 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x«ÿÿÿC{Ãöö>ÀÞ ÑÀÞÀبù00þÿÇ��©f +endstream +endobj +465 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1000 0 R +/Name /Im446 +/Width 27 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x Ì¡À �Áû .X2B ÈHJ£/!%ä3ÄG¬»9fzl2÷æÆ¦Ñ4-,ù2ÝÜÀëxûòIKµoõ0ÜdFÊß? +endstream +endobj +466 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1001 0 R +/Name /Im447 +/Width 20 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿA¹AñÃHèH¹A¨úßÀ��Ò +endstream +endobj +467 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1002 0 R +/Name /Im448 +/Width 21 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿA¹Añ}@ óùÿ òÿe2HèHóÿÿ�Tè +endstream +endobj +468 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1003 0 R +/Name /Im449 +/Width 21 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ%È0(È0È01ü ærI@Ôøÿÿ�¹&x +endstream +endobj +469 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1004 0 R +/Name /Im450 +/Width 19 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûAH¤�C `ä Ãp@ùÀÿÿ�îZ +endstream +endobj +470 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1005 0 R +/Name /Im451 +/Width 37 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßÀÀÿH4 îâó:ÁñÁJT0´#6ìPB àgA!Ø;`óñ`8ÀÞ`"þ7¨ÿ�¹)¡ +endstream +endobj +471 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1006 0 R +/Name /Im452 +/Width 20 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÊ¡ 0@ÑßT``qt6`H86;ÅÈ¡²¤@0$O¾XrJ2Dpy¿ò§@ 6e®®ihFïD'8<eÑCwìzDöJQ"' +endstream +endobj +472 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1007 0 R +/Name /Im453 +/Width 29 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¡þ?{ÉøÿÒõ áÿ@{?A +endstream +endobj +473 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1008 0 R +/Name /Im454 +/Width 15 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xã?b ãÀs00Ô3Ø?àÿÁøA27Ú��Nó +endstream +endobj +474 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1009 0 R +/Name /Im455 +/Width 24 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûßP/à #ÃÀAâc`c`fH`<ØÀPÇ��ü¡Î +endstream +endobj +475 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1010 0 R +/Name /Im456 +/Width 25 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ??2C1#7ð30 áÌÄÿ¡4º~ÜÀÀðÿ�n@ +endstream +endobj +476 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1011 0 R +/Name /Im457 +/Width 11 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcP`p`h`d`b`càB 4�Ã0|Bd ªAú@úÙ&1204�MU��$# +endstream +endobj +477 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1012 0 R +/Name /Im458 +/Width 15 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcl`nàoø$Iìþÿ�N +endstream +endobj +478 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1013 0 R +/Name /Im459 +/Width 19 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÀÀÆÃ ÃÆ ÁÌ`ÁÜP�D>@Ñ8*�"æ`$ÃúOòóÃ@**Ø +ødø0��Ùª +endstream +endobj +479 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1014 0 R +/Name /Im460 +/Width 19 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÀÀÆÃÀÃÆ ÁÌ`ÁÜ�D èãb\=D;ÐvvÆ�$2 +endstream +endobj +480 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1015 0 R +/Name /Im461 +/Width 11 +/Height 46 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xk`p`P``à`àa`Bf dl�Ãø�Ë2¨ééç$�4Ñ¡�éµ +endstream +endobj +481 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1016 0 R +/Name /Im462 +/Width 25 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xU̱ 0CѤH =ÀHÂfW1GF L"!ëvabÉ,sf!EðyÀò@øáãR¥5V`½5¯£Ûº¤q9ejkS_S +endstream +endobj +482 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1017 0 R +/Name /Im463 +/Width 11 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc8Àø�0 �>aeçwwv eÀÐÂÁ¢Á¢¡ ÁÁÈ�(ã 5 +endstream +endobj +483 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1018 0 R +/Name /Im464 +/Width 21 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xágP3lPw8àÞðÀúðÁs±sX°Bs�ÿ» +endstream +endobj +484 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1019 0 R +/Name /Im465 +/Width 21 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcà7`0ØÁðá@cC3=`g">ÆÄÜ�Dlì lü ÌâÏØÁø*d>X0$0Ø`��å +endstream +endobj +485 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1020 0 R +/Name /Im466 +/Width 20 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãc8 Ìð@ñsãwFjgnà!váS�#95öà �Áy +endstream +endobj +486 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1021 0 R +/Name /Im467 +/Width 10 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc< ¹Ù +e Ð +À°á>aH�J8 +endstream +endobj +487 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1022 0 R +/Name /Im468 +/Width 18 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÌÀÌÝÀÆÏÀÃÎ ÁÎ`D|0ô@X4�QBECÂCI9>�jÎ +endstream +endobj +488 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1023 0 R +/Name /Im469 +/Width 17 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcPKdPonpoopgopgfèc`à!$d +�Ãú +endstream +endobj +489 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1024 0 R +/Name /Im470 +/Width 31 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÿÿó�1Û á + f`ÿ@h f| 0(@±³704°700{;?<ÈZ�x +endstream +endobj +490 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1025 0 R +/Name /Im471 +/Width 19 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcnnà9â ñ@ ðpxÀÀ�CàÈ!¹¡á352<mdh9ÆPQÁ��°ÿ +endstream +endobj +491 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1026 0 R +/Name /Im472 +/Width 12 +/Height 28 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcl`<ÀÜ�ììÿ?°3ðA¡Z@ B642È1��4u + +endstream +endobj +492 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1027 0 R +/Name /Im473 +/Width 15 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÁÜÂÆÄÃ$ÃdÁdÁR Qþ á&0%°pHð7��ÕV +ö +endstream +endobj +493 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1028 0 R +/Name /Im474 +/Width 15 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÁÌÂÆÄÃÆÃÇÃ#ÃÀßÀÿýó$8$o��°¦ +ó +endstream +endobj +494 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1029 0 R +/Name /Im475 +/Width 17 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÁÀÜÆÀÆÆÀÃÌ ÃÌ ÁÜ`ÁÜP�CØ áCCÁþ�¬ m +endstream +endobj +495 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1030 0 R +/Name /Im476 +/Width 8 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcççc?><�� +endstream +endobj +496 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1031 0 R +/Name /Im477 +/Width 28 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-ɱ 0ÅP'q1 «$0#tÅC¿I6wºÛ=½èÒ.,2Ëár K-Fh0¢KXé˪VòûêBy +endstream +endobj +497 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1032 0 R +/Name /Im478 +/Width 20 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`øÀÀþá1@ æúÜÀÌÝÀÆÏÀÃÎ ÁÎ`D|0ô@X4�QBECÂCI9>�s¦¿ +endstream +endobj +498 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1033 0 R +/Name /Im479 +/Width 16 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÃØÄÆÈÃ/Ã/ÁgÁRÀ�à0)ÅC ¿�¾% ì +endstream +endobj +499 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1034 0 R +/Name /Im480 +/Width 18 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãclf> ÌxÀ¹ñ;µ34ðÁ#1q0ð00`�� + +endstream +endobj +500 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1035 0 R +/Name /Im481 +/Width 19 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãc8 Ìð@ñsãwFjgnà!vâc�#9ö;2`dÁð +$08ÀàÜÀ`ÇÀ��> +endstream +endobj +501 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1036 0 R +/Name /Im482 +/Width 30 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xeȱ À �ÁG.½s¤È`)<£0'1 ½®y" O=]éþÕON/#^p5¼2ËvÚçcÕ´SÄÊCÄdo& +endstream +endobj +502 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1037 0 R +/Name /Im483 +/Width 29 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÿÿC�±�Û á + +8þ �Äÿ?iÆ +(ù� +fo@Åü@´�¶'X +endstream +endobj +503 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1038 0 R +/Name /Im484 +/Width 20 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc|ÀÀÿñ�17 ;É1°'3ð56ð3à#æ8²`g">>Q(àqxÀÓÀÎ��¦e +endstream +endobj +504 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1039 0 R +/Name /Im485 +/Width 28 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x Ì¡ Eá«GàD"#ÿhâàã`7|í-&úmõqAKÊKhRe à:f?úܾEÿâ£;E'øÁ°ý +endstream +endobj +505 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1040 0 R +/Name /Im486 +/Width 18 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÁA"¤ Çð>È08Ø0$X00ð`��·/f +endstream +endobj +506 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1041 0 R +/Name /Im487 +/Width 29 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-ñ EÑO(ÀXü `â\o4FaJ;¼&älóǧÓÉcrò·ófca¥3C92L.eûvÞl,¬t¦dÐÅ-Óà ¸ +endstream +endobj +507 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1042 0 R +/Name /Im488 +/Width 27 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ? ó1;7ð30À r hÇÀÿÿT?ÆX0T¦_á?P?�³� +endstream +endobj +508 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1043 0 R +/Name /Im489 +/Width 30 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]Í1 + �@Ñ +.akCH'GéLBè8 Ct ÖTÃd-ÀIhvØJÕ ±ò@~ÒãJ _ËÁ=s©&4bá¼ñ +endstream +endobj +509 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1044 0 R +/Name /Im490 +/Width 17 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xɱ ��°$280:z 1ñÁÏ8EãÆ® ½ ñ6U9),¬t¡ DRü·$u¶¿¶Çqú�` +endstream +endobj +510 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1045 0 R +/Name /Im491 +/Width 28 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x]α 1 áßD ÊÑÍI!%eBÃZåFpIïÄUW|ü,[Æ>à%uMVÖªW¢I˲ì®ñ8lÝÍ mzà½áZÈ´ÛB}ê¨q'¿û¤$'9ËEôSzK ü�®R'µ +endstream +endobj +511 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1046 0 R +/Name /Im492 +/Width 33 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xáoøÀ fpXÁÝ! Á½!Á¡�Jô1<aàC%dX Ì 0â!Hb(`gHa0`f°`�� +endstream +endobj +512 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1047 0 R +/Name /Im493 +/Width 23 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÇÀÜÜÀÇð@¡À¡ÂÁ¢Á¦Aæ&ej*êºzþ1��¡µ' +endstream +endobj +513 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1048 0 R +/Name /Im494 +/Width 21 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xeË¡@�À 098l6%à( 2´¸ÏµëACSEÏè¢1Þñ%>QÊußûù@x +endstream +endobj +514 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1049 0 R +/Name /Im495 +/Width 29 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãÿÿÿó æ@¬�Âì @ì�Å ü +üp,mÐpþ¸þ�»G +endstream +endobj +515 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1050 0 R +/Name /Im496 +/Width 19 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc|ÀÀÿñ�17 ;1`gQàãxÀ'øOñÃY9ù, +ÀÈ¡ 2$È1��R +endstream +endobj +516 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1051 0 R +/Name /Im497 +/Width 22 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc`¨``ÃÀlBìì Äþ?`a@ TT Æ0ÔÀ`ØÀPÍÀð!Á�Nu +endstream +endobj +517 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1052 0 R +/Name /Im498 +/Width 13 +/Height 5 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x+(øñáÇ��)Ù +endstream +endobj +518 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1053 0 R +/Name /Im499 +/Width 27 +/Height 20 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xãc8p@ááeÆ<pg<�ÂíÌ |HX¡À ùxøYø9~`��ÌZµ +endstream +endobj +519 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1054 0 R +/Name /Im500 +/Width 22 +/Height 29 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc<ø)É¥F¥B¥@8È0Àã*`n�¢æÌØØmØ@ ÉÑÿ�úM~ +endstream +endobj +520 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1055 0 R +/Name /Im501 +/Width 30 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcà ÀP Àx%¹é;ã>2`Á +@\�Äpcû?�ͨ�b(b> ²dÐ^þ�@´!D +endstream +endobj +521 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1056 0 R +/Name /Im502 +/Width 32 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x-ͱ 0á"X\a/¸X8eFË(ÒÊøòøàã^«ñ¶BµTɲ:ô°bGäD<ò½Êù¢s`Ãü{/±Øç÷+\º=ó% +endstream +endobj +522 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1057 0 R +/Name /Im503 +/Width 28 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMͱ� @¬,ãÅQÕQ² ¢)LñÇÑ�ÉmèÒ×%þù ´$`Ì×½À(ÊÆÛüéú=0Ú +endstream +endobj +523 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1058 0 R +/Name /Im504 +/Width 31 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¿áË�1 ;7 a¨T-P\oÛ�±>ÌÁ|@ÌÏòÿsã�[rq +endstream +endobj +524 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1059 0 R +/Name /Im505 +/Width 46 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x=α!ÐEûDBÜÂ(¥XÁ/Á, R(Ðàftíìî»_wÙWHǰ 7ÚQ¾Ò6UQ7hsè=dÚWÚ}µ0ôDc¦#æ n¾¦uK@ïÓ\B¤*à2M*O`=æÎ[8Ãü]``¡âÜ*? +endstream +endobj +525 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1060 0 R +/Name /Im506 +/Width 19 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xeÂË �@ÁçpTR¶ØÒ¢¬Ädú}SPu¨·DÈwz7ÖJx¦o :_ +endstream +endobj +526 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1061 0 R +/Name /Im507 +/Width 19 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x`lÿÏ ÿAþ�$øAAA¹A¹ñ�= ÆÀèãf jP`f`càa`þÀ��P£© +endstream +endobj +527 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1062 0 R +/Name /Im508 +/Width 30 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcøÿÿ�à ®�b ¶Ápø0|`<Àðáÿ ãTÌ|�³7 b~ þÔ�@ +endstream +endobj +528 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1063 0 R +/Name /Im509 +/Width 21 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨ã`nÁÎPÁÃ`!à aÁ QÁÀQÀÀñŲ2<ì Ì u�÷ Û +endstream +endobj +529 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1064 0 R +/Name /Im510 +/Width 19 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcüÁÀÂÇ ÁÌ`ÀØ Àp +T06Ø12Ø71Èa`ÿÁÀDÿxê$äø$0H`|p`ȨQ¡A ¤�Æ´ +endstream +endobj +530 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1065 0 R +/Name /Im511 +/Width 30 +/Height 33 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xeÍ¡ 0@ÁWÚ¤Ò 0BeÃ0²²lÁ8Â@ý +§.Õ =ÈAT;A'¼°à]6À(&@ÄóG±Õ+`è¨sÕâÑk9â +endstream +endobj +531 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1066 0 R +/Name /Im512 +/Width 36 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMͱ EÑ'`a"kPàV4Fa7ÀG¢æT7¹ÈpÀæÊuËÈòPËþÜoÑÁodmQB%¡ËV£ÿsd!/Ba +endstream +endobj +532 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1067 0 R +/Name /Im513 +/Width 15 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xco°o`g@>(Á²v<6<||Pø@-Ð !!áa�Y +endstream +endobj +533 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1068 0 R +/Name /Im514 +/Width 41 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xMÎ1@@ÐÏHD¡P¸NáR k(°GPêXW?\ÀÅ(áP c×Z³o>ÃÇDì8Õêg+Nܱ:©CðêÐúZ]Ú +uÿiDL£ÎÖXÌ ½|Ç@Ê7¥*n +endstream +endobj +534 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1069 0 R +/Name /Im515 +/Width 27 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ?³1sàg`áhø�D¤¢¬,ÔÊ��½X +endstream +endobj +535 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1070 0 R +/Name /Im516 +/Width 24 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏ`oÇ 'Ç ÁÇ ÀD +Ì 40|l`(d`¨b`°c`Áþ7��° +ç +endstream +endobj +536 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1071 0 R +/Name /Im517 +/Width 19 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xcþÿA"¤ÀÏð>È18È1(Ø00ð`��fÚ +endstream +endobj +537 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1072 0 R +/Name /Im518 +/Width 9 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûß Ã@,üß��~K +endstream +endobj +538 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1073 0 R +/Name /Im519 +/Width 24 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÏ`oà #ÃÀD|@ÄÎ �B +Ì @Äx 60<d�¡"0²! �¯d +endstream +endobj +539 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1074 0 R +/Name /Im520 +/Width 24 +/Height 31 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿ¿<ÄùøØÀÁîÿÿ�<ß +endstream +endobj +540 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1075 0 R +/Name /Im521 +/Width 20 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xûÿÿ%È0(È0È01ü å:ú�¨ Ù +endstream +endobj +541 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1076 0 R +/Name /Im522 +/Width 23 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xc¨ã`nÁÎPÁÃ`!à aÁ QÁÀQÀÀñ1ÿûÀ`QÀ`QÁ`aRiTÏÎ`ÁÜp¡�'Ñ, +endstream +endobj +542 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1077 0 R +/Name /Im523 +/Width 17 +/Height 23 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xÊ10�Áˤø.`ÐA¨'-R"afËÍô f0¸ã7tKTÀ Û_®o{µ¾Í) +endstream +endobj +543 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1078 0 R +/Name /Im524 +/Width 19 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +x5± 0�Á7F +B�!AGFa6 £y@Ig àtz1.äi-êEüvÿMoõoª$`Ø¡"Ða=6`² áþ�M° +endstream +endobj +544 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 1079 0 R +/Name /Im525 +/Width 41 +/Height 32 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter /FlateDecode +>> +stream +xM̱ EÑ¡°0@ia>LbÄQIÅQÜ@Í©nnyÊ}æ +.TàÆî×$8Õ^M8%MMµ¡i8§¾iì&Â]Í4;a35].ñ½õ +endstream +endobj +545 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F1 +/BaseFont /Times-Roman +/Encoding 546 0 R +/FirstChar 0 +/LastChar 255 +>> +endobj +546 0 obj +<< +/Type /Encoding +/BaseEncoding /MacRomanEncoding +/Differences [ 128 /.notdef /.notdef /quotesinglbase /florin /quotedblbase /ellipsis /dagger /daggerdbl /circumflex /perthousand /Scaron /guilsinglleft /OE /.notdef /.notdef /.notdef /.notdef /quoteleft /quoteright /quotedblleft /quotedblright /bullet /endash /emdash /tilde /trademark /scaron /guilsinglright /oe /.notdef /.notdef /Ydieresis /space /exclamdown 164 /currency /yen /brokenbar /section /dieresis 170 /ordfeminine /guillemotleft /logicalnot /hyphen /registered /overscore /degree 178 /twosuperior /threesuperior /acute /mu1 /paragraph /periodcentered /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf /threequarters /questiondown /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis ] +>> +endobj +547 0 obj +<< +/CreationDate (Mon Dec 17 23:29:17 2001) +/Producer (PStill 1.55 UNREGISTERED by F.Siegert frank@this.net) +/Title (haupt_dvi) +>> +endobj +548 0 obj +16796 +endobj +549 0 obj +62 +endobj +550 0 obj +42 +endobj +551 0 obj +67 +endobj +552 0 obj +68 +endobj +553 0 obj +97 +endobj +554 0 obj +40 +endobj +555 0 obj +44 +endobj +556 0 obj +20 +endobj +557 0 obj +118 +endobj +558 0 obj +46 +endobj +559 0 obj +87 +endobj +560 0 obj +75 +endobj +561 0 obj +78 +endobj +562 0 obj +64 +endobj +563 0 obj +52 +endobj +564 0 obj +36 +endobj +565 0 obj +85 +endobj +566 0 obj +112 +endobj +567 0 obj +20 +endobj +568 0 obj +95 +endobj +569 0 obj +76 +endobj +570 0 obj +59 +endobj +571 0 obj +47 +endobj +572 0 obj +53 +endobj +573 0 obj +100 +endobj +574 0 obj +136 +endobj +575 0 obj +110 +endobj +576 0 obj +38 +endobj +577 0 obj +71 +endobj +578 0 obj +84 +endobj +579 0 obj +28 +endobj +580 0 obj +52 +endobj +581 0 obj +39 +endobj +582 0 obj +59 +endobj +583 0 obj +60 +endobj +584 0 obj +19 +endobj +585 0 obj +68 +endobj +586 0 obj +34 +endobj +587 0 obj +27 +endobj +588 0 obj +51 +endobj +589 0 obj +22 +endobj +590 0 obj +55 +endobj +591 0 obj +61 +endobj +592 0 obj +60 +endobj +593 0 obj +28 +endobj +594 0 obj +22 +endobj +595 0 obj +92 +endobj +596 0 obj +41 +endobj +597 0 obj +67 +endobj +598 0 obj +90 +endobj +599 0 obj +57 +endobj +600 0 obj +49 +endobj +601 0 obj +36 +endobj +602 0 obj +35 +endobj +603 0 obj +59 +endobj +604 0 obj +49 +endobj +605 0 obj +49 +endobj +606 0 obj +35 +endobj +607 0 obj +26 +endobj +608 0 obj +44 +endobj +609 0 obj +55 +endobj +610 0 obj +22 +endobj +611 0 obj +34 +endobj +612 0 obj +45 +endobj +613 0 obj +17 +endobj +614 0 obj +51 +endobj +615 0 obj +56 +endobj +616 0 obj +27 +endobj +617 0 obj +71 +endobj +618 0 obj +22 +endobj +619 0 obj +76 +endobj +620 0 obj +40 +endobj +621 0 obj +12 +endobj +622 0 obj +56 +endobj +623 0 obj +46 +endobj +624 0 obj +69 +endobj +625 0 obj +42 +endobj +626 0 obj +29 +endobj +627 0 obj +68 +endobj +628 0 obj +90 +endobj +629 0 obj +13 +endobj +630 0 obj +60 +endobj +631 0 obj +29 +endobj +632 0 obj +54 +endobj +633 0 obj +46 +endobj +634 0 obj +73 +endobj +635 0 obj +61 +endobj +636 0 obj +16 +endobj +637 0 obj +79 +endobj +638 0 obj +55 +endobj +639 0 obj +38 +endobj +640 0 obj +11 +endobj +641 0 obj +34 +endobj +642 0 obj +14 +endobj +643 0 obj +23 +endobj +644 0 obj +70 +endobj +645 0 obj +41 +endobj +646 0 obj +34 +endobj +647 0 obj +50 +endobj +648 0 obj +50 +endobj +649 0 obj +35 +endobj +650 0 obj +82 +endobj +651 0 obj +48 +endobj +652 0 obj +39 +endobj +653 0 obj +82 +endobj +654 0 obj +49 +endobj +655 0 obj +55 +endobj +656 0 obj +69 +endobj +657 0 obj +49 +endobj +658 0 obj +60 +endobj +659 0 obj +11 +endobj +660 0 obj +73 +endobj +661 0 obj +97 +endobj +662 0 obj +58 +endobj +663 0 obj +113 +endobj +664 0 obj +78 +endobj +665 0 obj +37 +endobj +666 0 obj +44 +endobj +667 0 obj +26 +endobj +668 0 obj +129 +endobj +669 0 obj +89 +endobj +670 0 obj +65 +endobj +671 0 obj +55 +endobj +672 0 obj +52 +endobj +673 0 obj +23 +endobj +674 0 obj +80 +endobj +675 0 obj +64 +endobj +676 0 obj +80 +endobj +677 0 obj +58 +endobj +678 0 obj +71 +endobj +679 0 obj +20 +endobj +680 0 obj +46 +endobj +681 0 obj +26 +endobj +682 0 obj +53 +endobj +683 0 obj +56 +endobj +684 0 obj +77 +endobj +685 0 obj +22 +endobj +686 0 obj +29 +endobj +687 0 obj +12 +endobj +688 0 obj +11 +endobj +689 0 obj +52 +endobj +690 0 obj +71 +endobj +691 0 obj +69 +endobj +692 0 obj +34 +endobj +693 0 obj +23 +endobj +694 0 obj +83 +endobj +695 0 obj +56 +endobj +696 0 obj +62 +endobj +697 0 obj +94 +endobj +698 0 obj +71 +endobj +699 0 obj +91 +endobj +700 0 obj +54 +endobj +701 0 obj +72 +endobj +702 0 obj +90 +endobj +703 0 obj +16 +endobj +704 0 obj +64 +endobj +705 0 obj +80 +endobj +706 0 obj +49 +endobj +707 0 obj +34 +endobj +708 0 obj +34 +endobj +709 0 obj +58 +endobj +710 0 obj +51 +endobj +711 0 obj +23 +endobj +712 0 obj +12 +endobj +713 0 obj +64 +endobj +714 0 obj +90 +endobj +715 0 obj +96 +endobj +716 0 obj +92 +endobj +717 0 obj +45 +endobj +718 0 obj +85 +endobj +719 0 obj +18 +endobj +720 0 obj +69 +endobj +721 0 obj +85 +endobj +722 0 obj +19 +endobj +723 0 obj +79 +endobj +724 0 obj +83 +endobj +725 0 obj +21 +endobj +726 0 obj +30 +endobj +727 0 obj +49 +endobj +728 0 obj +23 +endobj +729 0 obj +49 +endobj +730 0 obj +26 +endobj +731 0 obj +23 +endobj +732 0 obj +43 +endobj +733 0 obj +40 +endobj +734 0 obj +24 +endobj +735 0 obj +44 +endobj +736 0 obj +33 +endobj +737 0 obj +62 +endobj +738 0 obj +44 +endobj +739 0 obj +29 +endobj +740 0 obj +42 +endobj +741 0 obj +54 +endobj +742 0 obj +48 +endobj +743 0 obj +48 +endobj +744 0 obj +18 +endobj +745 0 obj +56 +endobj +746 0 obj +46 +endobj +747 0 obj +39 +endobj +748 0 obj +66 +endobj +749 0 obj +31 +endobj +750 0 obj +35 +endobj +751 0 obj +78 +endobj +752 0 obj +26 +endobj +753 0 obj +83 +endobj +754 0 obj +57 +endobj +755 0 obj +40 +endobj +756 0 obj +57 +endobj +757 0 obj +52 +endobj +758 0 obj +80 +endobj +759 0 obj +12 +endobj +760 0 obj +55 +endobj +761 0 obj +15 +endobj +762 0 obj +17 +endobj +763 0 obj +93 +endobj +764 0 obj +11 +endobj +765 0 obj +12 +endobj +766 0 obj +45 +endobj +767 0 obj +68 +endobj +768 0 obj +15 +endobj +769 0 obj +77 +endobj +770 0 obj +72 +endobj +771 0 obj +12 +endobj +772 0 obj +79 +endobj +773 0 obj +21 +endobj +774 0 obj +30 +endobj +775 0 obj +74 +endobj +776 0 obj +52 +endobj +777 0 obj +34 +endobj +778 0 obj +48 +endobj +779 0 obj +50 +endobj +780 0 obj +44 +endobj +781 0 obj +21 +endobj +782 0 obj +67 +endobj +783 0 obj +43 +endobj +784 0 obj +11939 +endobj +785 0 obj +108 +endobj +786 0 obj +62 +endobj +787 0 obj +69 +endobj +788 0 obj +77 +endobj +789 0 obj +108 +endobj +790 0 obj +61 +endobj +791 0 obj +63 +endobj +792 0 obj +52 +endobj +793 0 obj +64 +endobj +794 0 obj +75 +endobj +795 0 obj +25 +endobj +796 0 obj +67 +endobj +797 0 obj +56 +endobj +798 0 obj +56 +endobj +799 0 obj +63 +endobj +800 0 obj +28 +endobj +801 0 obj +48 +endobj +802 0 obj +21 +endobj +803 0 obj +62 +endobj +804 0 obj +63 +endobj +805 0 obj +38 +endobj +806 0 obj +57 +endobj +807 0 obj +21 +endobj +808 0 obj +58 +endobj +809 0 obj +25 +endobj +810 0 obj +66 +endobj +811 0 obj +56 +endobj +812 0 obj +59 +endobj +813 0 obj +86 +endobj +814 0 obj +65 +endobj +815 0 obj +55 +endobj +816 0 obj +24 +endobj +817 0 obj +30 +endobj +818 0 obj +36 +endobj +819 0 obj +41 +endobj +820 0 obj +50 +endobj +821 0 obj +21 +endobj +822 0 obj +62 +endobj +823 0 obj +47 +endobj +824 0 obj +55 +endobj +825 0 obj +67 +endobj +826 0 obj +58 +endobj +827 0 obj +48 +endobj +828 0 obj +80 +endobj +829 0 obj +19 +endobj +830 0 obj +60 +endobj +831 0 obj +50 +endobj +832 0 obj +47 +endobj +833 0 obj +34 +endobj +834 0 obj +61 +endobj +835 0 obj +44 +endobj +836 0 obj +26 +endobj +837 0 obj +50 +endobj +838 0 obj +45 +endobj +839 0 obj +78 +endobj +840 0 obj +53 +endobj +841 0 obj +39 +endobj +842 0 obj +27 +endobj +843 0 obj +30 +endobj +844 0 obj +58 +endobj +845 0 obj +41 +endobj +846 0 obj +84 +endobj +847 0 obj +53 +endobj +848 0 obj +61 +endobj +849 0 obj +68 +endobj +850 0 obj +45 +endobj +851 0 obj +19 +endobj +852 0 obj +59 +endobj +853 0 obj +40 +endobj +854 0 obj +36 +endobj +855 0 obj +71 +endobj +856 0 obj +24 +endobj +857 0 obj +62 +endobj +858 0 obj +50 +endobj +859 0 obj +55 +endobj +860 0 obj +58 +endobj +861 0 obj +63 +endobj +862 0 obj +30 +endobj +863 0 obj +43 +endobj +864 0 obj +20 +endobj +865 0 obj +20 +endobj +866 0 obj +71 +endobj +867 0 obj +33 +endobj +868 0 obj +37 +endobj +869 0 obj +51 +endobj +870 0 obj +47 +endobj +871 0 obj +11852 +endobj +872 0 obj +77 +endobj +873 0 obj +78 +endobj +874 0 obj +74 +endobj +875 0 obj +15 +endobj +876 0 obj +40 +endobj +877 0 obj +91 +endobj +878 0 obj +82 +endobj +879 0 obj +62 +endobj +880 0 obj +14 +endobj +881 0 obj +18 +endobj +882 0 obj +82 +endobj +883 0 obj +87 +endobj +884 0 obj +62 +endobj +885 0 obj +57 +endobj +886 0 obj +94 +endobj +887 0 obj +86 +endobj +888 0 obj +72 +endobj +889 0 obj +95 +endobj +890 0 obj +39 +endobj +891 0 obj +61 +endobj +892 0 obj +62 +endobj +893 0 obj +62 +endobj +894 0 obj +28 +endobj +895 0 obj +24 +endobj +896 0 obj +32 +endobj +897 0 obj +38 +endobj +898 0 obj +62 +endobj +899 0 obj +60 +endobj +900 0 obj +57 +endobj +901 0 obj +20 +endobj +902 0 obj +63 +endobj +903 0 obj +78 +endobj +904 0 obj +76 +endobj +905 0 obj +63 +endobj +906 0 obj +65 +endobj +907 0 obj +84 +endobj +908 0 obj +23299 +endobj +909 0 obj +72 +endobj +910 0 obj +71 +endobj +911 0 obj +80 +endobj +912 0 obj +48 +endobj +913 0 obj +39 +endobj +914 0 obj +125 +endobj +915 0 obj +11 +endobj +916 0 obj +20 +endobj +917 0 obj +53 +endobj +918 0 obj +24 +endobj +919 0 obj +23 +endobj +920 0 obj +49 +endobj +921 0 obj +76 +endobj +922 0 obj +77 +endobj +923 0 obj +51 +endobj +924 0 obj +15 +endobj +925 0 obj +76 +endobj +926 0 obj +54 +endobj +927 0 obj +69 +endobj +928 0 obj +59 +endobj +929 0 obj +78 +endobj +930 0 obj +42 +endobj +931 0 obj +56 +endobj +932 0 obj +43 +endobj +933 0 obj +20 +endobj +934 0 obj +60 +endobj +935 0 obj +61 +endobj +936 0 obj +12 +endobj +937 0 obj +33 +endobj +938 0 obj +69 +endobj +939 0 obj +41 +endobj +940 0 obj +15 +endobj +941 0 obj +46 +endobj +942 0 obj +62 +endobj +943 0 obj +24 +endobj +944 0 obj +59 +endobj +945 0 obj +20358 +endobj +946 0 obj +81 +endobj +947 0 obj +54 +endobj +948 0 obj +39 +endobj +949 0 obj +44 +endobj +950 0 obj +55 +endobj +951 0 obj +72 +endobj +952 0 obj +60 +endobj +953 0 obj +103 +endobj +954 0 obj +56 +endobj +955 0 obj +75 +endobj +956 0 obj +66 +endobj +957 0 obj +115 +endobj +958 0 obj +55 +endobj +959 0 obj +61 +endobj +960 0 obj +36 +endobj +961 0 obj +47 +endobj +962 0 obj +40 +endobj +963 0 obj +15 +endobj +964 0 obj +24 +endobj +965 0 obj +15 +endobj +966 0 obj +17051 +endobj +967 0 obj +46 +endobj +968 0 obj +90 +endobj +969 0 obj +49 +endobj +970 0 obj +24 +endobj +971 0 obj +47 +endobj +972 0 obj +50 +endobj +973 0 obj +69 +endobj +974 0 obj +22 +endobj +975 0 obj +27 +endobj +976 0 obj +64 +endobj +977 0 obj +75 +endobj +978 0 obj +51 +endobj +979 0 obj +71 +endobj +980 0 obj +80 +endobj +981 0 obj +22 +endobj +982 0 obj +28 +endobj +983 0 obj +84 +endobj +984 0 obj +9979 +endobj +985 0 obj +95 +endobj +986 0 obj +89 +endobj +987 0 obj +43 +endobj +988 0 obj +125 +endobj +989 0 obj +66 +endobj +990 0 obj +97 +endobj +991 0 obj +97 +endobj +992 0 obj +87 +endobj +993 0 obj +68 +endobj +994 0 obj +50 +endobj +995 0 obj +34 +endobj +996 0 obj +24 +endobj +997 0 obj +57 +endobj +998 0 obj +55 +endobj +999 0 obj +49 +endobj +1000 0 obj +83 +endobj +1001 0 obj +39 +endobj +1002 0 obj +51 +endobj +1003 0 obj +53 +endobj +1004 0 obj +30 +endobj +1005 0 obj +76 +endobj +1006 0 obj +88 +endobj +1007 0 obj +27 +endobj +1008 0 obj +48 +endobj +1009 0 obj +34 +endobj +1010 0 obj +47 +endobj +1011 0 obj +54 +endobj +1012 0 obj +23 +endobj +1013 0 obj +79 +endobj +1014 0 obj +49 +endobj +1015 0 obj +55 +endobj +1016 0 obj +90 +endobj +1017 0 obj +49 +endobj +1018 0 obj +51 +endobj +1019 0 obj +72 +endobj +1020 0 obj +49 +endobj +1021 0 obj +39 +endobj +1022 0 obj +51 +endobj +1023 0 obj +42 +endobj +1024 0 obj +79 +endobj +1025 0 obj +52 +endobj +1026 0 obj +43 +endobj +1027 0 obj +41 +endobj +1028 0 obj +49 +endobj +1029 0 obj +56 +endobj +1030 0 obj +21 +endobj +1031 0 obj +78 +endobj +1032 0 obj +68 +endobj +1033 0 obj +38 +endobj +1034 0 obj +47 +endobj +1035 0 obj +70 +endobj +1036 0 obj +77 +endobj +1037 0 obj +63 +endobj +1038 0 obj +65 +endobj +1039 0 obj +83 +endobj +1040 0 obj +39 +endobj +1041 0 obj +79 +endobj +1042 0 obj +56 +endobj +1043 0 obj +93 +endobj +1044 0 obj +65 +endobj +1045 0 obj +115 +endobj +1046 0 obj +70 +endobj +1047 0 obj +54 +endobj +1048 0 obj +70 +endobj +1049 0 obj +60 +endobj +1050 0 obj +76 +endobj +1051 0 obj +63 +endobj +1052 0 obj +19 +endobj +1053 0 obj +64 +endobj +1054 0 obj +64 +endobj +1055 0 obj +83 +endobj +1056 0 obj +92 +endobj +1057 0 obj +63 +endobj +1058 0 obj +60 +endobj +1059 0 obj +127 +endobj +1060 0 obj +59 +endobj +1061 0 obj +72 +endobj +1062 0 obj +64 +endobj +1063 0 obj +58 +endobj +1064 0 obj +83 +endobj +1065 0 obj +89 +endobj +1066 0 obj +93 +endobj +1067 0 obj +49 +endobj +1068 0 obj +107 +endobj +1069 0 obj +47 +endobj +1070 0 obj +52 +endobj +1071 0 obj +39 +endobj +1072 0 obj +16 +endobj +1073 0 obj +53 +endobj +1074 0 obj +36 +endobj +1075 0 obj +46 +endobj +1076 0 obj +63 +endobj +1077 0 obj +66 +endobj +1078 0 obj +82 +endobj +1079 0 obj +99 +endobj +xref +0 1080 +0000000000 65535 f +0000000015 00000 n +0000000112 00000 n +0000000158 00000 n +0000000291 00000 n +0000000330 00000 n +0000000352 00000 n +0000033074 00000 n +0000049946 00000 n +0000050197 00000 n +0000050428 00000 n +0000050685 00000 n +0000050943 00000 n +0000051230 00000 n +0000051460 00000 n +0000051694 00000 n +0000051903 00000 n +0000052211 00000 n +0000052448 00000 n +0000052726 00000 n +0000052992 00000 n +0000053261 00000 n +0000053516 00000 n +0000053759 00000 n +0000053986 00000 n +0000054262 00000 n +0000054565 00000 n +0000054776 00000 n +0000055062 00000 n +0000055329 00000 n +0000055579 00000 n +0000055817 00000 n +0000056061 00000 n +0000056352 00000 n +0000056679 00000 n +0000056980 00000 n +0000057209 00000 n +0000057471 00000 n +0000057746 00000 n +0000057965 00000 n +0000058208 00000 n +0000058438 00000 n +0000058688 00000 n +0000058939 00000 n +0000059149 00000 n +0000059408 00000 n +0000059633 00000 n +0000059851 00000 n +0000060093 00000 n +0000060306 00000 n +0000060552 00000 n +0000060804 00000 n +0000061055 00000 n +0000061274 00000 n +0000061486 00000 n +0000061769 00000 n +0000062001 00000 n +0000062259 00000 n +0000062540 00000 n +0000062788 00000 n +0000063028 00000 n +0000063255 00000 n +0000063481 00000 n +0000063731 00000 n +0000063971 00000 n +0000064211 00000 n +0000064437 00000 n +0000064653 00000 n +0000064888 00000 n +0000065134 00000 n +0000065347 00000 n +0000065572 00000 n +0000065808 00000 n +0000066015 00000 n +0000066257 00000 n +0000066504 00000 n +0000066722 00000 n +0000066984 00000 n +0000067196 00000 n +0000067463 00000 n +0000067694 00000 n +0000067896 00000 n +0000068143 00000 n +0000068380 00000 n +0000068640 00000 n +0000068873 00000 n +0000069093 00000 n +0000069352 00000 n +0000069633 00000 n +0000069835 00000 n +0000070086 00000 n +0000070306 00000 n +0000070551 00000 n +0000070788 00000 n +0000071052 00000 n +0000071304 00000 n +0000071511 00000 n +0000071781 00000 n +0000072027 00000 n +0000072256 00000 n +0000072457 00000 n +0000072683 00000 n +0000072887 00000 n +0000073102 00000 n +0000073364 00000 n +0000073597 00000 n +0000073823 00000 n +0000074065 00000 n +0000074308 00000 n +0000074536 00000 n +0000074811 00000 n +0000075052 00000 n +0000075284 00000 n +0000075559 00000 n +0000075801 00000 n +0000076049 00000 n +0000076311 00000 n +0000076553 00000 n +0000076806 00000 n +0000077009 00000 n +0000077275 00000 n +0000077565 00000 n +0000077816 00000 n +0000078122 00000 n +0000078393 00000 n +0000078623 00000 n +0000078860 00000 n +0000079079 00000 n +0000079401 00000 n +0000079683 00000 n +0000079941 00000 n +0000080189 00000 n +0000080434 00000 n +0000080650 00000 n +0000080923 00000 n +0000081180 00000 n +0000081453 00000 n +0000081704 00000 n +0000081968 00000 n +0000082181 00000 n +0000082420 00000 n +0000082639 00000 n +0000082885 00000 n +0000083134 00000 n +0000083404 00000 n +0000083619 00000 n +0000083841 00000 n +0000084045 00000 n +0000084248 00000 n +0000084493 00000 n +0000084757 00000 n +0000085019 00000 n +0000085246 00000 n +0000085462 00000 n +0000085738 00000 n +0000085987 00000 n +0000086242 00000 n +0000086529 00000 n +0000086793 00000 n +0000087077 00000 n +0000087324 00000 n +0000087589 00000 n +0000087872 00000 n +0000088081 00000 n +0000088338 00000 n +0000088611 00000 n +0000088853 00000 n +0000089080 00000 n +0000089307 00000 n +0000089558 00000 n +0000089802 00000 n +0000090018 00000 n +0000090222 00000 n +0000090479 00000 n +0000090762 00000 n +0000091051 00000 n +0000091336 00000 n +0000091574 00000 n +0000091852 00000 n +0000092062 00000 n +0000092324 00000 n +0000092602 00000 n +0000092814 00000 n +0000093086 00000 n +0000093362 00000 n +0000093576 00000 n +0000093799 00000 n +0000094041 00000 n +0000094257 00000 n +0000094499 00000 n +0000094718 00000 n +0000094933 00000 n +0000095169 00000 n +0000095402 00000 n +0000095619 00000 n +0000095856 00000 n +0000096082 00000 n +0000096337 00000 n +0000096574 00000 n +0000096796 00000 n +0000097031 00000 n +0000097278 00000 n +0000097519 00000 n +0000097760 00000 n +0000097970 00000 n +0000098219 00000 n +0000098458 00000 n +0000098690 00000 n +0000098949 00000 n +0000099173 00000 n +0000099401 00000 n +0000099672 00000 n +0000099891 00000 n +0000100167 00000 n +0000100417 00000 n +0000100650 00000 n +0000100900 00000 n +0000101145 00000 n +0000101418 00000 n +0000101622 00000 n +0000101870 00000 n +0000102077 00000 n +0000102286 00000 n +0000102572 00000 n +0000102775 00000 n +0000102978 00000 n +0000103216 00000 n +0000103477 00000 n +0000103685 00000 n +0000103955 00000 n +0000104220 00000 n +0000104424 00000 n +0000104696 00000 n +0000104910 00000 n +0000105133 00000 n +0000105400 00000 n +0000105645 00000 n +0000105872 00000 n +0000106113 00000 n +0000106356 00000 n +0000106592 00000 n +0000106806 00000 n +0000107066 00000 n +0000107301 00000 n +0000131194 00000 n +0000143211 00000 n +0000143512 00000 n +0000143767 00000 n +0000144029 00000 n +0000144299 00000 n +0000144600 00000 n +0000144854 00000 n +0000145110 00000 n +0000145355 00000 n +0000145612 00000 n +0000145880 00000 n +0000146097 00000 n +0000146357 00000 n +0000146606 00000 n +0000146855 00000 n +0000147111 00000 n +0000147332 00000 n +0000147573 00000 n +0000147786 00000 n +0000148041 00000 n +0000148297 00000 n +0000148528 00000 n +0000148778 00000 n +0000148992 00000 n +0000149243 00000 n +0000149461 00000 n +0000149720 00000 n +0000149969 00000 n +0000150221 00000 n +0000150500 00000 n +0000150758 00000 n +0000151006 00000 n +0000151222 00000 n +0000151445 00000 n +0000151674 00000 n +0000151908 00000 n +0000152151 00000 n +0000152365 00000 n +0000152620 00000 n +0000152860 00000 n +0000153108 00000 n +0000153368 00000 n +0000153619 00000 n +0000153860 00000 n +0000154133 00000 n +0000154344 00000 n +0000154597 00000 n +0000154840 00000 n +0000155080 00000 n +0000155307 00000 n +0000155561 00000 n +0000155798 00000 n +0000156016 00000 n +0000156259 00000 n +0000156497 00000 n +0000156768 00000 n +0000157014 00000 n +0000157246 00000 n +0000157466 00000 n +0000157689 00000 n +0000157940 00000 n +0000158174 00000 n +0000158451 00000 n +0000158697 00000 n +0000158951 00000 n +0000159212 00000 n +0000159450 00000 n +0000159661 00000 n +0000159913 00000 n +0000160146 00000 n +0000160375 00000 n +0000160639 00000 n +0000160856 00000 n +0000161111 00000 n +0000161354 00000 n +0000161602 00000 n +0000161853 00000 n +0000162109 00000 n +0000162332 00000 n +0000162568 00000 n +0000162781 00000 n +0000162994 00000 n +0000163258 00000 n +0000163484 00000 n +0000163714 00000 n +0000163958 00000 n +0000164198 00000 n +0000186638 00000 n +0000198568 00000 n +0000198838 00000 n +0000199109 00000 n +0000199376 00000 n +0000199583 00000 n +0000199816 00000 n +0000200100 00000 n +0000200375 00000 n +0000200630 00000 n +0000200836 00000 n +0000201047 00000 n +0000201322 00000 n +0000201602 00000 n +0000201857 00000 n +0000202107 00000 n +0000202394 00000 n +0000202673 00000 n +0000202938 00000 n +0000203226 00000 n +0000203458 00000 n +0000203712 00000 n +0000203967 00000 n +0000204222 00000 n +0000204443 00000 n +0000204660 00000 n +0000204885 00000 n +0000205116 00000 n +0000205371 00000 n +0000205624 00000 n +0000205874 00000 n +0000206087 00000 n +0000206343 00000 n +0000206614 00000 n +0000206883 00000 n +0000207139 00000 n +0000207397 00000 n +0000207674 00000 n +0000273185 00000 n +0000296562 00000 n +0000296827 00000 n +0000297091 00000 n +0000297364 00000 n +0000297605 00000 n +0000297837 00000 n +0000298155 00000 n +0000298357 00000 n +0000298569 00000 n +0000298815 00000 n +0000299032 00000 n +0000299248 00000 n +0000299490 00000 n +0000299759 00000 n +0000300029 00000 n +0000300273 00000 n +0000300480 00000 n +0000300749 00000 n +0000300996 00000 n +0000301258 00000 n +0000301510 00000 n +0000301781 00000 n +0000302016 00000 n +0000302265 00000 n +0000302501 00000 n +0000302713 00000 n +0000302966 00000 n +0000303220 00000 n +0000303424 00000 n +0000303650 00000 n +0000303912 00000 n +0000304146 00000 n +0000304353 00000 n +0000304592 00000 n +0000304847 00000 n +0000305064 00000 n +0000305316 00000 n +0000364403 00000 n +0000384839 00000 n +0000385113 00000 n +0000385360 00000 n +0000385592 00000 n +0000385829 00000 n +0000386077 00000 n +0000386342 00000 n +0000386595 00000 n +0000386891 00000 n +0000387140 00000 n +0000387408 00000 n +0000387667 00000 n +0000387975 00000 n +0000388223 00000 n +0000388477 00000 n +0000388706 00000 n +0000388946 00000 n +0000389179 00000 n +0000389386 00000 n +0000389603 00000 n +0000389810 00000 n +0000423780 00000 n +0000440909 00000 n +0000441148 00000 n +0000441431 00000 n +0000441673 00000 n +0000441890 00000 n +0000442130 00000 n +0000442373 00000 n +0000442635 00000 n +0000442850 00000 n +0000443070 00000 n +0000443327 00000 n +0000443595 00000 n +0000443839 00000 n +0000444103 00000 n +0000444376 00000 n +0000444590 00000 n +0000444810 00000 n +0000445087 00000 n +0000463537 00000 n +0000473594 00000 n +0000473882 00000 n +0000474164 00000 n +0000474400 00000 n +0000474718 00000 n +0000474977 00000 n +0000475267 00000 n +0000475557 00000 n +0000475837 00000 n +0000476098 00000 n +0000476341 00000 n +0000476568 00000 n +0000476785 00000 n +0000477035 00000 n +0000477283 00000 n +0000477525 00000 n +0000477802 00000 n +0000478035 00000 n +0000478280 00000 n +0000478527 00000 n +0000478751 00000 n +0000479021 00000 n +0000479303 00000 n +0000479524 00000 n +0000479766 00000 n +0000479994 00000 n +0000480235 00000 n +0000480483 00000 n +0000480700 00000 n +0000480973 00000 n +0000481216 00000 n +0000481465 00000 n +0000481749 00000 n +0000481992 00000 n +0000482237 00000 n +0000482503 00000 n +0000482746 00000 n +0000482979 00000 n +0000483224 00000 n +0000483460 00000 n +0000483733 00000 n +0000483979 00000 n +0000484216 00000 n +0000484451 00000 n +0000484694 00000 n +0000484944 00000 n +0000485158 00000 n +0000485430 00000 n +0000485692 00000 n +0000485924 00000 n +0000486165 00000 n +0000486429 00000 n +0000486700 00000 n +0000486957 00000 n +0000487216 00000 n +0000487493 00000 n +0000487726 00000 n +0000487999 00000 n +0000488249 00000 n +0000488536 00000 n +0000488795 00000 n +0000489104 00000 n +0000489368 00000 n +0000489616 00000 n +0000489880 00000 n +0000490134 00000 n +0000490404 00000 n +0000490661 00000 n +0000490873 00000 n +0000491131 00000 n +0000491389 00000 n +0000491666 00000 n +0000491952 00000 n +0000492209 00000 n +0000492463 00000 n +0000492784 00000 n +0000493037 00000 n +0000493303 00000 n +0000493561 00000 n +0000493813 00000 n +0000494090 00000 n +0000494373 00000 n +0000494660 00000 n +0000494903 00000 n +0000495204 00000 n +0000495445 00000 n +0000495691 00000 n +0000495924 00000 n +0000496133 00000 n +0000496380 00000 n +0000496610 00000 n +0000496850 00000 n +0000497107 00000 n +0000497367 00000 n +0000497643 00000 n +0000497936 00000 n +0000498065 00000 n +0000499392 00000 n +0000499540 00000 n +0000499563 00000 n +0000499583 00000 n +0000499603 00000 n +0000499623 00000 n +0000499643 00000 n +0000499663 00000 n +0000499683 00000 n +0000499703 00000 n +0000499723 00000 n +0000499744 00000 n +0000499764 00000 n +0000499784 00000 n +0000499804 00000 n +0000499824 00000 n +0000499844 00000 n +0000499864 00000 n +0000499884 00000 n +0000499904 00000 n +0000499925 00000 n +0000499945 00000 n +0000499965 00000 n +0000499985 00000 n +0000500005 00000 n +0000500025 00000 n +0000500045 00000 n +0000500066 00000 n +0000500087 00000 n +0000500108 00000 n +0000500128 00000 n +0000500148 00000 n +0000500168 00000 n +0000500188 00000 n +0000500208 00000 n +0000500228 00000 n +0000500248 00000 n +0000500268 00000 n +0000500288 00000 n +0000500308 00000 n +0000500328 00000 n +0000500348 00000 n +0000500368 00000 n +0000500388 00000 n +0000500408 00000 n +0000500428 00000 n +0000500448 00000 n +0000500468 00000 n +0000500488 00000 n +0000500508 00000 n +0000500528 00000 n +0000500548 00000 n +0000500568 00000 n +0000500588 00000 n +0000500608 00000 n +0000500628 00000 n +0000500648 00000 n +0000500668 00000 n +0000500688 00000 n +0000500708 00000 n +0000500728 00000 n +0000500748 00000 n +0000500768 00000 n +0000500788 00000 n +0000500808 00000 n +0000500828 00000 n +0000500848 00000 n +0000500868 00000 n +0000500888 00000 n +0000500908 00000 n +0000500928 00000 n +0000500948 00000 n +0000500968 00000 n +0000500988 00000 n +0000501008 00000 n +0000501028 00000 n +0000501048 00000 n +0000501068 00000 n +0000501088 00000 n +0000501108 00000 n +0000501128 00000 n +0000501148 00000 n +0000501168 00000 n +0000501188 00000 n +0000501208 00000 n +0000501228 00000 n +0000501248 00000 n +0000501268 00000 n +0000501288 00000 n +0000501308 00000 n +0000501328 00000 n +0000501348 00000 n +0000501368 00000 n +0000501388 00000 n +0000501408 00000 n +0000501428 00000 n +0000501448 00000 n +0000501468 00000 n +0000501488 00000 n +0000501508 00000 n +0000501528 00000 n +0000501548 00000 n +0000501568 00000 n +0000501588 00000 n +0000501608 00000 n +0000501628 00000 n +0000501648 00000 n +0000501668 00000 n +0000501688 00000 n +0000501708 00000 n +0000501728 00000 n +0000501748 00000 n +0000501768 00000 n +0000501788 00000 n +0000501808 00000 n +0000501828 00000 n +0000501848 00000 n +0000501869 00000 n +0000501889 00000 n +0000501909 00000 n +0000501929 00000 n +0000501949 00000 n +0000501970 00000 n +0000501990 00000 n +0000502010 00000 n +0000502030 00000 n +0000502050 00000 n +0000502070 00000 n +0000502090 00000 n +0000502110 00000 n +0000502130 00000 n +0000502150 00000 n +0000502170 00000 n +0000502190 00000 n +0000502210 00000 n +0000502230 00000 n +0000502250 00000 n +0000502270 00000 n +0000502290 00000 n +0000502310 00000 n +0000502330 00000 n +0000502350 00000 n +0000502370 00000 n +0000502390 00000 n +0000502410 00000 n +0000502430 00000 n +0000502450 00000 n +0000502470 00000 n +0000502490 00000 n +0000502510 00000 n +0000502530 00000 n +0000502550 00000 n +0000502570 00000 n +0000502590 00000 n +0000502610 00000 n +0000502630 00000 n +0000502650 00000 n +0000502670 00000 n +0000502690 00000 n +0000502710 00000 n +0000502730 00000 n +0000502750 00000 n +0000502770 00000 n +0000502790 00000 n +0000502810 00000 n +0000502830 00000 n +0000502850 00000 n +0000502870 00000 n +0000502890 00000 n +0000502910 00000 n +0000502930 00000 n +0000502950 00000 n +0000502970 00000 n +0000502990 00000 n +0000503010 00000 n +0000503030 00000 n +0000503050 00000 n +0000503070 00000 n +0000503090 00000 n +0000503110 00000 n +0000503130 00000 n +0000503150 00000 n +0000503170 00000 n +0000503190 00000 n +0000503210 00000 n +0000503230 00000 n +0000503250 00000 n +0000503270 00000 n +0000503290 00000 n +0000503310 00000 n +0000503330 00000 n +0000503350 00000 n +0000503370 00000 n +0000503390 00000 n +0000503410 00000 n +0000503430 00000 n +0000503450 00000 n +0000503470 00000 n +0000503490 00000 n +0000503510 00000 n +0000503530 00000 n +0000503550 00000 n +0000503570 00000 n +0000503590 00000 n +0000503610 00000 n +0000503630 00000 n +0000503650 00000 n +0000503670 00000 n +0000503690 00000 n +0000503710 00000 n +0000503730 00000 n +0000503750 00000 n +0000503770 00000 n +0000503790 00000 n +0000503810 00000 n +0000503830 00000 n +0000503850 00000 n +0000503870 00000 n +0000503890 00000 n +0000503910 00000 n +0000503930 00000 n +0000503950 00000 n +0000503970 00000 n +0000503990 00000 n +0000504010 00000 n +0000504030 00000 n +0000504050 00000 n +0000504070 00000 n +0000504090 00000 n +0000504110 00000 n +0000504130 00000 n +0000504150 00000 n +0000504170 00000 n +0000504190 00000 n +0000504210 00000 n +0000504230 00000 n +0000504250 00000 n +0000504270 00000 n +0000504293 00000 n +0000504314 00000 n +0000504334 00000 n +0000504354 00000 n +0000504374 00000 n +0000504395 00000 n +0000504415 00000 n +0000504435 00000 n +0000504455 00000 n +0000504475 00000 n +0000504495 00000 n +0000504515 00000 n +0000504535 00000 n +0000504555 00000 n +0000504575 00000 n +0000504595 00000 n +0000504615 00000 n +0000504635 00000 n +0000504655 00000 n +0000504675 00000 n +0000504695 00000 n +0000504715 00000 n +0000504735 00000 n +0000504755 00000 n +0000504775 00000 n +0000504795 00000 n +0000504815 00000 n +0000504835 00000 n +0000504855 00000 n +0000504875 00000 n +0000504895 00000 n +0000504915 00000 n +0000504935 00000 n +0000504955 00000 n +0000504975 00000 n +0000504995 00000 n +0000505015 00000 n +0000505035 00000 n +0000505055 00000 n +0000505075 00000 n +0000505095 00000 n +0000505115 00000 n +0000505135 00000 n +0000505155 00000 n +0000505175 00000 n +0000505195 00000 n +0000505215 00000 n +0000505235 00000 n +0000505255 00000 n +0000505275 00000 n +0000505295 00000 n +0000505315 00000 n +0000505335 00000 n +0000505355 00000 n +0000505375 00000 n +0000505395 00000 n +0000505415 00000 n +0000505435 00000 n +0000505455 00000 n +0000505475 00000 n +0000505495 00000 n +0000505515 00000 n +0000505535 00000 n +0000505555 00000 n +0000505575 00000 n +0000505595 00000 n +0000505615 00000 n +0000505635 00000 n +0000505655 00000 n +0000505675 00000 n +0000505695 00000 n +0000505715 00000 n +0000505735 00000 n +0000505755 00000 n +0000505775 00000 n +0000505795 00000 n +0000505815 00000 n +0000505835 00000 n +0000505855 00000 n +0000505875 00000 n +0000505895 00000 n +0000505915 00000 n +0000505935 00000 n +0000505955 00000 n +0000505975 00000 n +0000505995 00000 n +0000506015 00000 n +0000506038 00000 n +0000506058 00000 n +0000506078 00000 n +0000506098 00000 n +0000506118 00000 n +0000506138 00000 n +0000506158 00000 n +0000506178 00000 n +0000506198 00000 n +0000506218 00000 n +0000506238 00000 n +0000506258 00000 n +0000506278 00000 n +0000506298 00000 n +0000506318 00000 n +0000506338 00000 n +0000506358 00000 n +0000506378 00000 n +0000506398 00000 n +0000506418 00000 n +0000506438 00000 n +0000506458 00000 n +0000506478 00000 n +0000506498 00000 n +0000506518 00000 n +0000506538 00000 n +0000506558 00000 n +0000506578 00000 n +0000506598 00000 n +0000506618 00000 n +0000506638 00000 n +0000506658 00000 n +0000506678 00000 n +0000506698 00000 n +0000506718 00000 n +0000506738 00000 n +0000506758 00000 n +0000506781 00000 n +0000506801 00000 n +0000506821 00000 n +0000506841 00000 n +0000506861 00000 n +0000506881 00000 n +0000506902 00000 n +0000506922 00000 n +0000506942 00000 n +0000506962 00000 n +0000506982 00000 n +0000507002 00000 n +0000507022 00000 n +0000507042 00000 n +0000507062 00000 n +0000507082 00000 n +0000507102 00000 n +0000507122 00000 n +0000507142 00000 n +0000507162 00000 n +0000507182 00000 n +0000507202 00000 n +0000507222 00000 n +0000507242 00000 n +0000507262 00000 n +0000507282 00000 n +0000507302 00000 n +0000507322 00000 n +0000507342 00000 n +0000507362 00000 n +0000507382 00000 n +0000507402 00000 n +0000507422 00000 n +0000507442 00000 n +0000507462 00000 n +0000507482 00000 n +0000507502 00000 n +0000507525 00000 n +0000507545 00000 n +0000507565 00000 n +0000507585 00000 n +0000507605 00000 n +0000507625 00000 n +0000507645 00000 n +0000507665 00000 n +0000507686 00000 n +0000507706 00000 n +0000507726 00000 n +0000507746 00000 n +0000507767 00000 n +0000507787 00000 n +0000507807 00000 n +0000507827 00000 n +0000507847 00000 n +0000507867 00000 n +0000507887 00000 n +0000507907 00000 n +0000507927 00000 n +0000507950 00000 n +0000507970 00000 n +0000507990 00000 n +0000508010 00000 n +0000508030 00000 n +0000508050 00000 n +0000508070 00000 n +0000508090 00000 n +0000508110 00000 n +0000508130 00000 n +0000508150 00000 n +0000508170 00000 n +0000508190 00000 n +0000508210 00000 n +0000508230 00000 n +0000508250 00000 n +0000508270 00000 n +0000508290 00000 n +0000508312 00000 n +0000508332 00000 n +0000508352 00000 n +0000508372 00000 n +0000508393 00000 n +0000508413 00000 n +0000508433 00000 n +0000508453 00000 n +0000508473 00000 n +0000508493 00000 n +0000508513 00000 n +0000508533 00000 n +0000508553 00000 n +0000508573 00000 n +0000508593 00000 n +0000508613 00000 n +0000508634 00000 n +0000508655 00000 n +0000508676 00000 n +0000508697 00000 n +0000508718 00000 n +0000508739 00000 n +0000508760 00000 n +0000508781 00000 n +0000508802 00000 n +0000508823 00000 n +0000508844 00000 n +0000508865 00000 n +0000508886 00000 n +0000508907 00000 n +0000508928 00000 n +0000508949 00000 n +0000508970 00000 n +0000508991 00000 n +0000509012 00000 n +0000509033 00000 n +0000509054 00000 n +0000509075 00000 n +0000509096 00000 n +0000509117 00000 n +0000509138 00000 n +0000509159 00000 n +0000509180 00000 n +0000509201 00000 n +0000509222 00000 n +0000509243 00000 n +0000509264 00000 n +0000509285 00000 n +0000509306 00000 n +0000509327 00000 n +0000509348 00000 n +0000509369 00000 n +0000509390 00000 n +0000509411 00000 n +0000509432 00000 n +0000509453 00000 n +0000509474 00000 n +0000509495 00000 n +0000509516 00000 n +0000509537 00000 n +0000509558 00000 n +0000509580 00000 n +0000509601 00000 n +0000509622 00000 n +0000509643 00000 n +0000509664 00000 n +0000509685 00000 n +0000509706 00000 n +0000509727 00000 n +0000509748 00000 n +0000509769 00000 n +0000509790 00000 n +0000509811 00000 n +0000509832 00000 n +0000509853 00000 n +0000509875 00000 n +0000509896 00000 n +0000509917 00000 n +0000509938 00000 n +0000509959 00000 n +0000509980 00000 n +0000510001 00000 n +0000510022 00000 n +0000510043 00000 n +0000510065 00000 n +0000510086 00000 n +0000510107 00000 n +0000510128 00000 n +0000510149 00000 n +0000510170 00000 n +0000510191 00000 n +0000510212 00000 n +0000510233 00000 n +0000510254 00000 n +0000510275 00000 n +trailer +<< +/Size 1080 +/Root 1 0 R +/Info 547 0 R +>> +startxref +510296 +%%EOF diff --git a/misc/vrfd_null.html b/misc/vrfd_null.html new file mode 100644 index 0000000..173cf22 --- /dev/null +++ b/misc/vrfd_null.html @@ -0,0 +1,1268 @@ +<html dir="ltr"> + +<head> +<meta http-equiv="Content-Language" content="en-us"> +<meta name="GENERATOR" content="Microsoft FrontPage 5.0"> +<meta name="ProgId" content="FrontPage.Editor.Document"> +<meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> +<title>Verified Null-Move Pruning</title> +</head> + +<body bgcolor="#FFFFFF" topmargin="50" leftmargin="100"> + +<div align="center"> + <center> + <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="580" id="AutoNumber5"> + <tr> + <td> + <div align="center"> + <center> + <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber2"> + <tr> + <td width="33%"> + <p align="left"> </td> + <td width="33%"> + <p align="center"><font face="Times New Roman" size="2">Verified + Null-Move Pruning</font></td> + <td width="34%"> + <p align="right"><font face="Times New Roman" size="2">153</font></td> + </tr> + </table> + </center> + </div> + <font FACE="Times New Roman"><b> + <p ALIGN="center"> </p> + <p ALIGN="center">VERIFIED NULL-MOVE PRUNING</p> + </b><font FACE="Times New Roman" SIZE="2"><i> + <p ALIGN="center">Omid David Tabibi </i><sup>1</sup><i> + Nathan S. Netanyahu </i><sup>2</sup></p> + <p ALIGN="center">Ramat-Gan, Israel</p> + <p ALIGN="center">ABSTRACT</p> + </font></font> + <div align="center"> + <center> + <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" dir="ltr" id="AutoNumber1" width="520"> + <tr> + <td><font FACE="Times New Roman" SIZE="2"> + <p ALIGN="justify">In this article we review standard null-move + pruning and introduce our extended version of it, which we call <i> + verified null-move pruning</i>. In verified null-move pruning, + whenever the shallow null-move search indicates a fail-high, instead + of cutting off the search from the current node, the search is + continued with reduced depth.</p> + <p ALIGN="justify">Our experiments with verified null-move pruning + show that on average, it constructs a smaller search tree with + greater tactical strength in comparison to standard null-move + pruning. Moreover, unlike standard null-move pruning, which fails + badly in zugzwang positions, verified null-move pruning manages to + detect most zugzwangs and in such cases conducts a re-search to + obtain the correct result. In addition, verified null-move pruning + is very easy to implement, and any standard null-move pruning + program can use verified null-move pruning by modifying only a few + lines of code.</font></td> + </tr> + </table> + </center> + </div> + <p ALIGN="justify"><b><font size="2">1. INTRODUCTION</font></b></p> + <font FACE="Times New Roman" SIZE="2"> + <p ALIGN="justify">Until the mid-1970s most chess programs were trying to + search the same way humans think, by generating plausible moves. By + using extensive chess knowledge at each node, these programs selected a + few moves which they considered plausible, and thus pruned large parts of + the search tree. However, plausible move generating programs had serious + tactical shortcomings, and as soon as brute-force search programs like + TECH (Gillogy, 1972) and CHESS 4.X (Slate and Atkin, 1977) managed to + reach depths of 5 plies and more, plausible-move generating programs + frequently lost to brute-force searchers due to their tactical weaknesses.</p> + <p ALIGN="justify">Brute-force searchers rapidly dominated the + computer-chess field. Most brute-force searchers of that time used no + selectivity in their full-width search tree, except for some extensions, + consisting mostly of check extensions and recaptures. The most successful + of these brute-force programs were BELLE (Condon and Thompson, 1983a,b), + DEEP THOUGHT (Hsu, Anantharaman, Campbell, and Nowatzyk, 1990), HITECH + (Berliner and Ebeling, 1990; Berliner, 1987; Ebeling, 1986), and CRAY + BLITZ (Hyatt, Gower, and Nelson, 1990), which for the first time managed + to compete successfully against humans.</font></p> + <p ALIGN="justify"><font FACE="Times New Roman" SIZE="2">The introduction + of null-move pruning (Beal, 1989; Goetsch and Campbell, 1990; Donninger, + 1993) in the early 1990s marked the end of an era, as far as the + domination of brute-force programs in computer chess is concerned. Unlike + other forward-pruning methods (e.g., <i>razoring </i>(Birmingham and Kent, + 1977), GAMMA (Newborn, 1975), and <i>marginal forward pruning </i>(Slagle, + 1971)), which had great tactical weaknesses, null-move pruning enabled + programs to search more deeply with minor tactical risks. Forward-pruning + programs frequently outsearched brute-force searchers, and started their + own reign which has continued ever since; they have won all World + Computer-Chess Championships since 1992 (van den Herik and Herschberg, + 1992; Tsang and Beal, 1995; Feist, 1999). DEEP BLUE (Hammilton and Garber, + 1997; Hsu, 1999) (the direct descendant of DEEP THOUGHT (Hsu <i>et al.</i>, + 1990)) was probably the last brute-force searcher. Today almost all top + tournament playing programs use forward-pruning methods, null-move pruning + being the most popular of them (Feist, 1999).</font></p> + <font FACE="Times New Roman" SIZE="1"> + <hr noshade color="#000000" align="justify" width="35%" size="1"> + <p ALIGN="justify"><sup>1</sup> Department of Computer Science, Bar-Ilan + University, Ramat-Gan 52900, Israel, Email: + <a href="mailto:davoudo@cs.biu.ac.il">davoudo@cs.biu.ac.il</a>. + <a href="Http://www.cs.biu.ac.il/~davoudo"> + Http://www.cs.biu.ac.il/~davoudo</a><sup><br> + 2</sup> Department of Computer Science, Bar-Ilan University, Ramat-Gan + 52900, Israel, Email: <a href="mailto:nathan@cs.biu.ac.il"> + nathan@cs.biu.ac.il</a>, and Center for Automation Research, University of + Maryland, College Park, MD 20742, USA, Email: + <a href="mailto:nathan@cfar.umd.edu">nathan@cfar.umd.edu</a>.</font></p> + <font FACE="Times New Roman" SIZE="1"><hr> + <p> </p> + <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber2"> + <tr> + <td width="33%"> + <p align="left"><font face="Times New Roman" size="2">154</font></td> + <td width="33%"><font FACE="Times New Roman" SIZE="2"> + <p ALIGN="center">ICGA Journal</font></td> + <td width="34%"> + <p align="right"><font size="2">September 2002</font></td> + </tr> + </table> + </font><font FACE="Times New Roman" SIZE="2"> + <p align="justify">In this article we introduce our new <i>verified + null-move pruning </i>method, and demonstrate empirically its improved + performance in comparison with standard null-move pruning. This is + reflected in its reduced search tree size, as well as its greater tactical + strength. In Section 2 we review standard null-move pruning, and in + Section 3 we introduce verified null-move pruning. Section 4 presents our + experimental results, and Section 5 contains concluding remarks.</p> + <b> + <p align="justify">2. STANDARD NULL-MOVE PRUNING</p> + </b> + <p align="justify">As mentioned earlier, brute-force programs refrained + from pruning any nodes in the full-width part of the search tree, deeming + the risks of doing so as being too high. Null-move (Beal, 1989; Goetsch + and Campbell, 1990; Donninger, 1993) introduced a new pruning scheme which + based its cutoff decisions on dynamic criteria, and thus gained greater + tactical strength in comparison with the static forward pruning methods + that were in use at that time.</p> + <div align="center"> + <center> + <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" id="AutoNumber3"> + <tr> + <td><font FACE="Times New Roman" SIZE="2"> + <p ALIGN="LEFT">/* the depth reduction factor */</font><font FACE="Courier" SIZE="2"><br> + #define R 2<br> + int search (alpha, beta, depth) {<br> + if (depth </font><font FACE="CMMI10" SIZE="2"><</font><font FACE="Courier" SIZE="2">= + 0)<br> + return evaluate(); </font> + <font FACE="Times New Roman" SIZE="2">/* in practice, quiescence() + is called here */<br> + <font FACE="Courier" SIZE="2"> </font>/* conduct a null-move search if it is legal and desired */<br> + </font><font FACE="Courier" SIZE="2"> if (</font><font FACE="CMR10" SIZE="2">!</font><font FACE="Courier" SIZE="2">in_check() + && null_ok()) {<br> + make_null_move();<br> + </font>/* null-move search with + minimal window around beta */<br> + <font FACE="Courier" SIZE="2"> + value = -search(-beta, -beta + 1, depth - R - 1);<br> + if (value </font> + <font FACE="CMMI10" SIZE="2">></font><font FACE="Courier" SIZE="2">= + beta) </font><font FACE="Times New Roman" SIZE="2">/* cutoff in case + of fail-high */<br> + <font FACE="Courier" SIZE="2"> + </font></font><font FACE="Courier" SIZE="2"> + return value;<br> + }<br> + </font><font FACE="Times New Roman" SIZE="2">/* continue + regular NegaScout/PVS search */<br> + <font FACE="Courier" SIZE="2"> </font>. . .<br> + <font FACE="Courier" SIZE="2">}</font></font></td> + </tr> + </table> + <p><b>Figure 1</b>: Standard null-move pruning.</p> + </center> + </div> + <p ALIGN="justify">There are positions in chess where any move will + deteriorate the position, so that not making a move is the best option. + These positions are called <i>zugzwang </i>positions. While zugzwang + positions are rare in the middle game, they are not an exception in + endgames, especially endgames in which one or both sides are left with + King and Pawns. Null-move pruning will fail badly in zugzwang positions + since the basic assumption behind the method does not hold. In fact, the + null-move searchs value is an upper bound in such cases. As a result, + null-move pruning is avoided in such endgame positions.</p> + </font><font FACE="Times New Roman" SIZE="1"><hr> + <p ALIGN="justify"> </p> + <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber2"> + <tr> + <td width="33%"> + <p align="left"> </td> + <td width="33%"> + <p align="center"><font face="Times New Roman" size="2">Verified + Null-Move Pruning</font></td> + <td width="34%"> + <p align="right"><font face="Times New Roman" size="2">155</font></td> + </tr> + </table> + </font><font FACE="Times New Roman" SIZE="2"> + <p ALIGN="justify">As previously noted, the major benefit of null-move + pruning stems from the depth reduction in the null-move searches. However, + these reduced-depth searches are liable to tactical weaknesses due to the + <i>horizon effect </i>(Berliner, 1974). A horizon effect results whenever + the reduced-depth search misses a tactical threat. Such a threat would not + have been missed, had we conducted a search without any depth reduction. + The greater the depth reduction </font><font FACE="CMMI10" SIZE="2">R</font><font FACE="Times New Roman" SIZE="2">, + the greater the tactical risk due to the horizon effect. So, the saving + resulting from null-move pruning depends on the depth reduction factor, + since a shallower search (i.e., a greater </font> + <font FACE="CMMI10" SIZE="2">R</font><font FACE="Times New Roman" SIZE="2">) + will result in faster null-move searches and an overall smaller search + tree.</p> + <p ALIGN="justify">In the early days of null-move pruning, most programs + used </font><font FACE="CMMI10" SIZE="2">R </font> + <font FACE="CMR10" SIZE="2">= 1</font><font FACE="Times New Roman" SIZE="2">, + which ensures the least tactical risk, but offers the least saving in + comparison with other </font><font FACE="CMMI10" SIZE="2">R </font> + <font FACE="Times New Roman" SIZE="2">values. Other reduction factors that + were experimented with were </font><font FACE="CMMI10" SIZE="2">R </font> + <font FACE="CMR10" SIZE="2">= 2 </font> + <font FACE="Times New Roman" SIZE="2">and </font> + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 3</font><font FACE="Times New Roman" SIZE="2">. + Research conducted over the years, most extensively by Heinz (1999), + showed that overall, </font><font FACE="CMMI10" SIZE="2">R </font> + <font FACE="CMR10" SIZE="2">= 2 </font> + <font FACE="Times New Roman" SIZE="2">performs better than the too + conservative </font><font FACE="CMMI10" SIZE="2">R </font> + <font FACE="CMR10" SIZE="2">= 1 </font> + <font FACE="Times New Roman" SIZE="2">and the too aggressive </font> + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 3</font><font FACE="Times New Roman" SIZE="2">. + Today, almost all null-move pruning programs, use at least </font> + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 2 + </font><font FACE="Times New Roman" SIZE="2">(Feist, 1999). However, using + </font><font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= + 3 </font><font FACE="Times New Roman" SIZE="2">is tempting, considering + the reduced search effort resulting from shallower null-move searches. + (This will be demonstrated in Section 4.) Donninger (1993) was the first + to suggest an adaptive rather than a fixed value for </font> + <font FACE="CMMI10" SIZE="2">R</font><font FACE="Times New Roman" SIZE="2">. + Experiments conducted by Heinz (1999), in his article on adaptive + null-move pruning, suggest that using </font><font FACE="CMMI10" SIZE="2"> + R </font><font FACE="CMR10" SIZE="2">= 3 </font> + <font FACE="Times New Roman" SIZE="2">in upper parts of the search tree + and </font><font FACE="CMMI10" SIZE="2">R </font> + <font FACE="CMR10" SIZE="2">= 2 </font> + <font FACE="Times New Roman" SIZE="2">in its lower parts can save 10 to 30 + percent of the search effort in comparison with a fixed </font> + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 2</font><font FACE="Times New Roman" SIZE="2">, + while maintaining overall tactical strength.</p> + <p align="justify">In the next section we present a new null-move pruning + method which allows the use of </font><font FACE="CMMI10" SIZE="2">R + </font><font FACE="CMR10" SIZE="2">= 3 </font> + <font FACE="Times New Roman" SIZE="2">in all parts of the search tree, + while alleviating to a significant extent the main disadvantage of + standard null-move pruning.</p> + <b> + <p align="justify">3. VERIFIED NULL-MOVE PRUNING</p> + </b> + <p align="justify">Cutoffs based on a shallow null-move search can be too + risky at some points, especially in zugzwang positions. Goetsch and + Campbell (1990) hinted at continuing the search with reduced depth, in + case the null-move search indicates a fail-high, in order to substantiate + that the value returned from the null-move search is indeed a lower bound + on the position. Plenkner (1995) showed that this idea can help prevent + errors due to zugzwangs. However, verifying the search in the middle game + seems wasteful, as it appears to undermine the basic benefit of null-move + pruning, namely that a cutoff is determined by a shallow null-move search.</p> + <p ALIGN="justify">In addition to helping in detecting zugzwangs, the idea + of not immediately pruning the search tree (based on the value returned + from the shallow null-move search) can also help to reduce the tactical + weaknesses caused by the horizon effect, since by continuing the search we + may be able to detect threats which the shallow null-move search has + failed to detect. Based on these ideas, we developed our own + reformulation, which we call<i> verified null-move pruning</i>. At each + node, we conduct a null-move search with a depth reduction of </font> + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 3</font><font FACE="Times New Roman" SIZE="2">. + If the returned value from that null-move search indicates a fail-high + (i.e., </font><i><font FACE="CMMI10" SIZE="2">value ≥ β</font></i><font SIZE="2" face="Times New Roman">), + we then reduce the depth by one ply and continue the search in order to + verify the cutoff. However, for that nodes subtree, we use standard + null-move pruning (cutoff takes place upon fail-highs). See Figure 2, for + an illustration.</font></p> + <div align="center"> + <center> + <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" id="AutoNumber4"> + <tr> + <td><img border="0" src="example.gif" width="414" height="171"></td> + </tr> + </table> + <font FACE="Times New Roman" SIZE="2"><b> + <p>Figure 2</b>: Illustration of verified null-move pruning.</p> + </font></center> + </div> + <font FACE="Times New Roman" SIZE="2"> + <p align="justify">The basic idea behind verified null-move pruning is + that null-move search with </font><font FACE="CMMI10" SIZE="2">R </font> + <font FACE="CMR10" SIZE="2">= 3 </font> + <font FACE="Times New Roman" SIZE="2">constructs a considerably smaller + search tree. However, because of its tactical deficiencies, a cutoff based + on it is too risky. So upon a fail-high, we reduce the depth and continue + the search, using standard null-move pruning</font></p> + <font FACE="Times New Roman" SIZE="1"><hr> + <p> </p> + <div align="center"> + <center> + <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber6"> + <tr> + <td width="33%"> + <p align="left"><font size="2">156</font></td> + <td width="33%"> + <p align="center"><font FACE="Times New Roman" SIZE="2">ICGA Journal</font></td> + <td width="34%"> + <p align="right"><font size="2">September 2002</font></td> + </tr> + </table> + </center> + </div> + </font> + <p align="justify"><font FACE="Times New Roman" SIZE="2">(with </font> + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 3</font><font FACE="Times New Roman" SIZE="2">) + in that nodes subtree. The search at a node is thus cut off (based on its + null-move search) only if there has been another null-move search + fail-high indication in one of the nodes ancestors (see Figure 2). As the + experimental results in the next section show, verified null-move pruning + constructs a search tree which is close in size to that of standard + null-move pruning with <font FACE="CMMI10" SIZE="2">R </font> + <font FACE="CMR10" SIZE="2">= 3</font>, and whose tactical strength is + greater on average than that of standard null-move pruning with + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 2</font>. + This is a smaller search tree with greater tactical strength, in + comparison with standard null-move pruning with + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 2</font>, + which is commonly used nowadays.</font></p> + <p align="justify"><font FACE="Times New Roman" SIZE="2">Since upon a + fail-high indication we do not cut off the search at once, we have the + ability to check whether the returned value is indeed a lower bound on the + position. If the null-move search indicates a cutoff, but the search shows + that the best value is smaller than </font><i> + <font FACE="CMMI10" SIZE="2">β</font></i><font FACE="Times New Roman" SIZE="2">, + this implies that the position is a zugzwang, as the value from the null + move is greater than or equal to the value from the best move. In such + cases, we restore the original depth (which was reduced by one ply after + the fail-high indication), and conduct a re-search to obtain the correct + value.</p> + <p align="justify">Implementation of verified null-move search is a matter + of adding a few lines of code to standard null-move search, as shown in + Figure 3. Regarding the pseudo-code presented, when the search starts at + the root level, the flag <font FACE="Courier" SIZE="2">verify </font>is + initialized to <font FACE="Courier" SIZE="2">true</font>. When the + null-move search indicates a fail-high, the remaining depth is reduced by + one ply, and <font FACE="Courier" SIZE="2">verify </font>is given the + value <font FACE="Courier" SIZE="2">false</font>, which will be passed to + the children of the current node, indicating that standard null-move + pruning will be conducted with respect to the children. Upon a fail-high + indication due to the standard null-move search of these childrens + subtrees, cutoff takes place immediately.</p> + <b> + <p align="justify">4. EXPERIMENTAL RESULTS</p> + </b> + <p align="justify">In this section we examine the performance of verified + null-move pruning, focusing on its tactical strength and smaller + search-tree size in comparison with standard null-move pruning. We + conducted our experiments using the G<font FACE="Times New Roman" SIZE="1">ENESIS<sup>3</sup> + </font>engine. G<font FACE="Times New Roman" SIZE="1">ENESIS </font>is + designed especially for research, emphasizing accurate implementation of + algorithms and detailed statistics. For our experiments we used the N<font FACE="Times New Roman" SIZE="1">EGA</font>S<font FACE="Times New Roman" SIZE="1">COUT</font>/PVS + (Campbell and Marsland, 1983; Reinefeld, 1983) search algorithm, with + history heuristic (Schaeffer, 1983, 1989) and transposition table (Slate + and Atkin, 1977; Nelson, 1985). To demonstrate the tactical strength + differences between the different methods even better, we used one-ply + check extensions on leaf nodes; the quiescence search consisted only of + captures/recaptures. In all test suites used, we discarded positions in + which at least one side had no more than King and Pawns. This was done to + avoid dealing with zugzwang positions, for which verified null-move + pruning obviously fares much better tactically, as explained before.</p> + <p ALIGN="justify">In order to obtain an estimate of the search tree, we + searched 138 test positions from <i>Test Your Tactical Ability </i>by + Yakov Neishtadt (see the Appendix) to depths of 9 and 10 plies, using + standard <font FACE="CMMI10" SIZE="2">R </font> + <font FACE="CMR10" SIZE="2">= 1</font>, <font FACE="CMMI10" SIZE="2">R + </font><font FACE="CMR10" SIZE="2">= 2</font>, + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 3</font>, + and verified <font FACE="CMMI10" SIZE="2">R </font> + <font FACE="CMR10" SIZE="2">= 3</font>. Table 1 gives the total node count + for each method and the size of the tree in comparison with verified + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 3</font>. + Table 2 gives the number of positions that each method solved correctly + (i.e., found the correct variation for). Later we will further examine the + tactical strength, using additional test suites.</p> + <div align="center"> + <center> + <table border="1" cellpadding="3" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" id="AutoNumber7" height="88"> + <tr> + <td align="center" valign="top" height="8"> + <font FACE="Times New Roman" SIZE="2">Depth</font></td> + <td align="right" valign="top" height="8"> + <font FACE="Times New Roman" SIZE="2">Std + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= + 1</font></font></td> + <td align="right" valign="top" height="8"> + <font FACE="Times New Roman" SIZE="2">Std + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= + 2</font></font></td> + <td align="right" valign="top" height="8"> + <font FACE="Times New Roman" SIZE="2">Std + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= + 3 </font></font></td> + <td align="right" valign="top" height="8"> + <font FACE="Times New Roman" SIZE="2">Vrfd + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= + 3</font></font></td> + </tr> + <tr> + <td align="center" valign="top" height="30"> + <font FACE="Times New Roman" SIZE="2">9</font></td> + <td align="right" valign="top" height="30"> + <font FACE="Times New Roman" SIZE="2"> 1,652,668,804<br> + (+267.46%)</font></td> + <td align="right" valign="top" height="30"> + <font FACE="Times New Roman" SIZE="2"> 603,549,66<br> + (+34.19%)</font></td> + <td align="right" valign="top" height="30"> + <font FACE="Times New Roman" SIZE="2">267,208,422<br> + (-40.58%)</font></td> + <td align="right" valign="top" height="30"> + <font FACE="Times New Roman" SIZE="2">449,744,588<br> + -</font></td> + </tr> + <tr> + <td align="center" valign="top" height="30"> + <font FACE="Times New Roman" SIZE="2">10</font></td> + <td align="right" valign="top" height="30"> + <font FACE="Times New Roman" SIZE="2">11,040,766,367<br> + (+661.64%)</font></td> + <td align="right" valign="top" height="30"> + <font FACE="Times New Roman" SIZE="2">1,892,829,685<br> + (+30.57%)</font></td> + <td align="right" valign="top" height="30"> + <font FACE="Times New Roman" SIZE="2">862,153,828<br> + (-40.52%)</font></td> + <td align="right" valign="top" height="30"> + <font FACE="Times New Roman" SIZE="2">1,449,589,289<br> + -</font></td> + </tr> + </table> + </center><b> + <p align="justify">Table 1</b>: Total node count of standard + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 1</font><font FACE="CMMI10" SIZE="2">; + </font><font FACE="CMR10" SIZE="2">2</font><font FACE="CMMI10" SIZE="2">; + </font><font FACE="CMR10" SIZE="2">3 </font>and verified + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 3 + </font>at depths 9 and 10, for 138 Neishtadt test positions.</div> + <p ALIGN="justify">The results in Tables 1 and 2 reveal that the size of + the tree constructed by verified null-move pruning is between those of + standard <font FACE="CMMI10" SIZE="2">R </font> + <font FACE="CMR10" SIZE="2">= 2 </font>and <font FACE="CMMI10" SIZE="2">R + </font><font FACE="CMR10" SIZE="2">= 3</font>, and that its tactical + strength is greater on average than that of standard + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 2</font>. + These results also show that the use of <font FACE="CMMI10" SIZE="2">R + </font><font FACE="CMR10" SIZE="2">= 1 </font>is impractical due to its + large tree size in comparison with other depth-reduction values. Focusing + on the practical alternatives (i.e., standard <font FACE="CMMI10" SIZE="2"> + R </font><font FACE="CMR10" SIZE="2">= 2 </font>and<font FACE="CMMI10" SIZE="2"> + R </font><font FACE="CMR10" SIZE="2">= 3</font>, and verified + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 3</font>), + we would like to examine the behavior of verified + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 3 + </font>and find out whether its tree size remains between the tree sizes + associated with <font FACE="CMMI10" SIZE="2">R </font> + <font FACE="CMR10" SIZE="2">= 2 </font>and <font FACE="CMMI10" SIZE="2">R + </font><font FACE="CMR10" SIZE="2">= 3</font>, or whether it approaches + the size of one</p> + <font FACE="Times New Roman" SIZE="1"> + <hr noshade color="#000000" align="justify" width="35%" size="1"> + <p ALIGN="LEFT"><sup>3</sup> + <a href="http://www.cs.biu.ac.il/~davoudo/genesis"> + http://www.cs.biu.ac.il/~davoudo/genesis</a></p> + </font></font><font FACE="Times New Roman" SIZE="1"><hr> + <p ALIGN="LEFT"> </p> + <div align="center"> + <center> + <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber8"> + <tr> + <td width="33%"> + <p align="left"> </td> + <td width="33%"> + <p align="center"><font size="2">Verified Null-Move Pruning</font></td> + <td width="34%"> + <p align="right"><font size="2">157</font></td> + </tr> + </table> + </center> + </div> + </font> + <p ALIGN="LEFT"> </p> + <div align="center"> + <center> + <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" id="AutoNumber9"> + <tr> + <td><font FACE="Courier" SIZE="2"> + <p ALIGN="LEFT">#define R 3 </font> + <font FACE="Times New Roman" SIZE="2">/* the depth reduction factor + */<br> + /* at the root level, verify = true */</font><font FACE="Courier" SIZE="2"><br> + int search (alpha, beta, depth, verify) {<br> + if (depth </font><font FACE="CMMI10" SIZE="2"><</font><font FACE="Courier" SIZE="2">= + 0)<br> + return evaluate(); </font> + <font FACE="Times New Roman" SIZE="2">/* in practice, quiescence() + is called here */<br> + </font><font FACE="Courier" SIZE="2"> </font> + <font FACE="Times New Roman" SIZE="2">/* if verify = true, and depth + = 1, null-move search is not conducted, since<br> + </font><font FACE="Courier" SIZE="2"> </font> + <font FACE="Times New Roman" SIZE="2"> * verification will not + be possible */<br> + </font><font FACE="Courier" SIZE="2"> if (</font><font FACE="CMR10" SIZE="2">!</font><font FACE="Courier" SIZE="2">in_check() + && null_ok() && (</font><font FACE="CMR10" SIZE="2">!</font><font FACE="Courier" SIZE="2">verify + || depth </font><font FACE="CMMI10" SIZE="2">> </font> + <font FACE="Courier" SIZE="2">1)) {<br> + make_null_move();</font><font FACE="Times New Roman" SIZE="2"><br> + </font><font FACE="Courier" SIZE="2"> + </font><font FACE="Times New Roman" SIZE="2">/* null-move search + with minimal window around beta */<br> + </font><font FACE="Courier" SIZE="2"> + value = -search(-beta, -beta + 1, depth - R - 1,<br> + + verify);<br> + if (value </font> + <font FACE="CMMI10" SIZE="2">></font><font FACE="Courier" SIZE="2">= + beta)</font><font FACE="CMSY10" SIZE="2"> { </font> + <font FACE="Times New Roman" SIZE="2">/* fail-high */<br> + </font><font FACE="Courier" SIZE="2"> + if (verify) {<br> + + depth--; </font><font FACE="Times New Roman" SIZE="2">/* reduce the + depth by one ply */<br> + </font><font FACE="Courier" SIZE="2"> + </font><font FACE="Times New Roman" SIZE="2">/* turn verification + off for the sub-tree */<br> + </font><font FACE="Courier" SIZE="2"> + verify = false;<br> + + </font><font FACE="Times New Roman" SIZE="2">/* mark a fail-high + flag, to detect zugzwangs later*/<br> + </font><font FACE="Courier" SIZE="2"> + fail high = true;<br> + }<br> + else </font> + <font FACE="Times New Roman" SIZE="2">/* cutoff in a sub-tree with + fail-high report */<br> + </font><font FACE="Courier" SIZE="2"> + return value;<br> + }<br> + }<br> + re search: </font><font FACE="Times New Roman" SIZE="2">/* if a + zugzwang is detected, return here for re-search */<br> + </font><font FACE="Courier" SIZE="2"> </font> + <font FACE="Times New Roman" SIZE="2">/* do regular NegaScout/PVS + search */<br> + </font><font FACE="Courier" SIZE="2"> </font> + <font FACE="Times New Roman" SIZE="2">/* search() is called with + current value of verify */<br> + </font><font FACE="Courier" SIZE="2"> </font> + <font FACE="Times New Roman" SIZE="2">. . .<br> + </font><font FACE="Courier" SIZE="2"> </font> + <font FACE="Times New Roman" SIZE="2">/* if there is a fail-high + report, but no cutoff was found, the position<br> + </font><font FACE="Courier" SIZE="2"> </font> + <font FACE="Times New Roman" SIZE="2"> * is a zugzwang and has + to be re-searched with the original depth */<br> + </font><font FACE="Courier" SIZE="2"> if(fail_high + && best </font><font FACE="CMMI10" SIZE="2">< </font> + <font FACE="Courier" SIZE="2">beta) {<br> + depth++;<br> + fail high = false;<br> + verify = true;<br> + goto re search;<br> + }<br> + }</font></td> + </tr> + </table> + <font FACE="Times New Roman" SIZE="2"><b> + <p>Figure 3</b>: Verified null-move pruning.</p> + </font></center> + </div> + <font FACE="Times New Roman" SIZE="2"> + <p ALIGN="justify"> </p> + <p ALIGN="justify"> </p> + <div align="center"> + <center> + <table border="1" cellpadding="3" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" id="AutoNumber10"> + <tr> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">Depth</font></td> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">Std + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= + 1</font></font></td> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">Std + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= + 2</font></font></td> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">Std + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= + 3</font></font></td> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2"><font FACE="CMR10" SIZE="2"> </font>Vrfd + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= + 3</font></font></td> + </tr> + <tr> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">9</font></td> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">64</font></td> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">62</font></td> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">53</font></td> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">60</font></td> + </tr> + <tr> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">10</font></td> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">71</font></td> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">66</font></td> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">65</font></td> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">71</font></td> + </tr> + </table> + </center><b> + <p ALIGN="justify">Table 2</b>: Number of solved positions using + standard <font FACE="CMMI10" SIZE="2">R </font> + <font FACE="CMR10" SIZE="2">= 1</font><font FACE="CMMI10" SIZE="2">; + </font><font FACE="CMR10" SIZE="2">2</font><font FACE="CMMI10" SIZE="2">; + </font><font FACE="CMR10" SIZE="2">3 </font>and verified + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 3 + </font>at depths 9 and 10, for 138 Neishtadt test positions.</div> + <font FACE="Times New Roman" SIZE="1"><hr> + <p ALIGN="LEFT"> </p> + <div align="center"> + <center> + <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber11"> + <tr> + <td width="33%"><font size="2">158</font></td> + <td width="33%"> + <p align="center"><font FACE="Times New Roman" SIZE="2">ICGA Journal</font></td> + <td width="34%"> + <p align="right"><font size="2">September 2002</font></td> + </tr> + </table> + </center> + </div> + </font> + <p> </p> + <div align="center"> + <center> + <table border="1" cellpadding="3" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" id="AutoNumber12"> + <tr> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">Depth </font></td> + <td align="right" valign="top"> + <font FACE="Times New Roman" SIZE="2">Std + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= + 2 </font></font></td> + <td align="right" valign="top"> + <font FACE="Times New Roman" SIZE="2">Std + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= + 3 </font></font></td> + <td align="right" valign="top"> + <font FACE="Times New Roman" SIZE="2">Vrfd + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= + 3</font></font></td> + </tr> + <tr> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">9</font></td> + <td align="right" valign="top"> + <font FACE="Times New Roman" SIZE="2">5,374,275,763<br> + (+10.84%) </font></td> + <td align="right" valign="top"> + <font FACE="Times New Roman" SIZE="2">2,483,951,601<br> + (-48.76%)</font></td> + <td align="right" valign="top"> + <font FACE="Times New Roman" SIZE="2">4,848,596,820<br> + -</font></td> + </tr> + <tr> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">10</font></td> + <td align="right" valign="top"> + <font FACE="Times New Roman" SIZE="2">16,952,333,579<br> + (+17.40%)</font></td> + <td align="right" valign="top"> + <font FACE="Times New Roman" SIZE="2">7,920,812,800<br> + (-45.14%)</font></td> + <td align="right" valign="top"> + <font FACE="Times New Roman" SIZE="2">14,439,185,304<br> + -</font></td> + </tr> + <tr> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">11</font></td> + <td align="right" valign="top"> + <font FACE="Times New Roman" SIZE="2">105,488,197,524<br> + (+106.51%) </font></td> + <td align="right" valign="top"> + <font FACE="Times New Roman" SIZE="2">24,644,668,194<br> + (-51.75%)</font></td> + <td align="right" valign="top"> + <font FACE="Times New Roman" SIZE="2">51,080,338,048<br> + -</font></td> + </tr> + </table> + </center><b> + <p ALIGN="justify">Table 3</b>: Total node count of standard + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 2</font>, + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 3</font>, + and verified <font FACE="CMMI10" SIZE="2">R </font> + <font FACE="CMR10" SIZE="2">= 3 </font>at depths 9, 10, and 11, for 869 + ECM test positions.</div> + <div align="center"> + <center> + <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" id="AutoNumber13"> + <tr> + <td><img border="0" src="graph.gif" width="420" height="311"></td> + </tr> + </table> + </center><b> + <p align="justify">Figure 4</b>: Tree sizes of standard + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 2</font>, + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 3</font>, + and verified <font FACE="CMMI10" SIZE="2">R </font> + <font FACE="CMR10" SIZE="2">= 3 </font>at depths 9, 10, and 11, for 869 + ECM test positions.</div> + <p ALIGN="justify">of these trees. We therefore conducted a search to a + depth of 11 plies, using 869 positions from the<i> Encyclopedia of Chess + Middlegames </i>(ECM)<sup><font FACE="Times New Roman" SIZE="1">4</font></sup>. + Table 3 provides the total node counts at depths 9, 10, and 11, using + standard <font FACE="CMMI10" SIZE="2">R </font> + <font FACE="CMR10" SIZE="2">= 2</font>, <font FACE="CMMI10" SIZE="2">R + </font><font FACE="CMR10" SIZE="2">= 3</font>, and verified + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 3</font>. + See also Figure 4. As Figure 4 clearly indicates, for depth 11 the size of + the tree constructed by verified null-move pruning with<font FACE="CMMI10" SIZE="2"> + R </font><font FACE="CMR10" SIZE="2">= 3 </font>is closer to standard + null-move pruning with <font FACE="CMMI10" SIZE="2">R </font> + <font FACE="CMR10" SIZE="2">= 3</font>. This implies that the saving from + verified null-move pruning will be greater as we search more deeply. This + can be explained by the fact that the saving from the use of + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 3 + </font>in the shallow null-move search far exceeds the verification cost + of verified null-move pruning.</p> + <p ALIGN="justify">Having studied the effect of verified null-move pruning + on the search tree size, we now take a closer look at the resulting + tactical strength in comparison with standard null-move pruning with + different depth reductions.</p> + <p ALIGN="justify">For this purpose we used 999 positions from the <i> + Winning Chess Sacrifices </i>(WCS) test suite, and 434 positions of mate + in 4 and 353 positions of mate in 5 from the test suites of the <i> + Chess Analysis Project </i>(CAP); see the Appendix. The WCS positions were + searched to depths of 8, 9, and 10 plies, using standard + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 2</font>, + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 3</font>, + and verified <font FACE="CMMI10" SIZE="2">R </font> + <font FACE="CMR10" SIZE="2">= 3</font>. Table 4 provides the total node + counts, and Table 5 gives the number of correctly solved positions for the + WCS test suite. For each position of mate in 4 we conducted a search to + a depth of 8 plies, and for each mate in 5 position a search to a depth + of 10 plies. The search was conducted using standard<font FACE="CMMI10" SIZE="2"> + R </font><font FACE="CMR10" SIZE="2">= 1</font>, + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 2</font>, + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 3</font>, + and verified <font FACE="CMMI10" SIZE="2">R </font> + <font FACE="CMR10" SIZE="2">= 3</font>. Table 6 provides the number of + positions that each method solved (i.e., found the checkmating sequence).</p> + <font FACE="Times New Roman" SIZE="1"> + <hr noshade color="#000000" align="justify" width="35%" size="1"> + <p ALIGN="LEFT"><sup>4</sup> Because of the large number of errors in + ECMs suggested best moves, we did not check here for number of solved + positions.</p> + <font FACE="Times New Roman" SIZE="1"><hr> + <p ALIGN="LEFT"> </p> + <div align="center"> + <center> + <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber14"> + <tr> + <td width="33%"> </td> + <td width="33%"><font FACE="Times New Roman" SIZE="2"> + <p ALIGN="center">Verified Null-Move Pruning</font></td> + <td width="34%"> + <p align="right"><font size="2">159</font></td> + </tr> + </table> + </center> + </div> + </font> + <p> </p> + <div align="center"> + <center> + <table border="1" cellpadding="3" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" id="AutoNumber15"> + <tr> + <td align="left" valign="top"><font FACE="Times New Roman" SIZE="2"> + <p ALIGN="center">Depth </font><font FACE="CMR10" SIZE="2"> + </font></td> + <td align="right" valign="top"> + <font FACE="Times New Roman" SIZE="1"> + <font FACE="Times New Roman" SIZE="2">Std </font> + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= + 2</font></font></td> + <td align="right" valign="top"> + <font FACE="Times New Roman" SIZE="1"> + <font FACE="Times New Roman" SIZE="2">Std </font> + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= + 3</font></font></td> + <td align="right" valign="top"> + <font FACE="Times New Roman" SIZE="1"> + <font FACE="Times New Roman" SIZE="2">Vrfd </font> + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= + 3</font></font></td> + </tr> + <tr> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">8</font></td> + <td align="right" valign="top"> + <font FACE="Times New Roman" SIZE="2">783,461,647<br> + (-13.55%)</font></td> + <td align="right" valign="top"> + <font FACE="Times New Roman" SIZE="2">533,282,695<br> + (-41.15%)</font></td> + <td align="right" valign="top"> + <font FACE="Times New Roman" SIZE="2">906,225,552<br> + -</font></td> + </tr> + <tr> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">9</font></td> + <td align="right" valign="top"> + <font FACE="Times New Roman" SIZE="2">3,742,064,688<br> + (+47.38%)</font></td> + <td align="right" valign="top"> + <font FACE="Times New Roman" SIZE="2">1,316,719,980<br> + (-48.14%)</font></td> + <td align="right" valign="top"> + <font FACE="Times New Roman" SIZE="2">2,539,057,043<br> + -</font></td> + </tr> + <tr> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">10</font></td> + <td align="right" valign="top"><font size="2">11,578,143,939</font><font FACE="Times New Roman" SIZE="2"><br> + (+46.75%) </font></td> + <td align="right" valign="top"> + <font FACE="Times New Roman" SIZE="2">4,871,295,877<br> + (-38.26%)</font></td> + <td align="right" valign="top"> + <font FACE="Times New Roman" SIZE="2">7,889,544,754<br> + -</font></td> + </tr> + </table> + </center><font FACE="Times New Roman" SIZE="2"><b> + <p ALIGN="justify">Table 4</b>: Total node count of standard </font> + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 2</font><font FACE="Times New Roman" SIZE="2">, + </font><font FACE="CMMI10" SIZE="2">R </font> + <font FACE="CMR10" SIZE="2">= 3 </font> + <font FACE="Times New Roman" SIZE="2">and verified </font> + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 3 + </font><font FACE="Times New Roman" SIZE="2">at depths 8, 9, and 10, for + 999 WCS test positions.</font></div> + <div align="center"> + <center> + <table border="1" cellpadding="3" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" id="AutoNumber16"> + <tr> + <td valign="top"><font FACE="Times New Roman" SIZE="2"> + <p ALIGN="center">Depth</font></td> + <td valign="top"><font FACE="Times New Roman" SIZE="1"> + <font FACE="Times New Roman" SIZE="2">Std </font> + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= + 2</font></font></td> + <td valign="top"><font FACE="Times New Roman" SIZE="1"> + <font FACE="Times New Roman" SIZE="2">Std </font> + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= + 3</font></font></td> + <td valign="top"><font FACE="Times New Roman" SIZE="1"> + <font FACE="Times New Roman" SIZE="2">Vrfd </font> + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= + 3</font></font></td> + </tr> + <tr> + <td valign="top"><font FACE="Times New Roman" SIZE="2"> + <p ALIGN="center">8</font></td> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">762</font></td> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">760</font></td> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">782</font></td> + </tr> + <tr> + <td valign="top"><font FACE="Times New Roman" SIZE="2"> + <p ALIGN="center">9</font></td> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">838</font></td> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">812</font></td> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">838</font></td> + </tr> + <tr> + <td valign="top"><font FACE="Times New Roman" SIZE="2"> + <p ALIGN="center">10</font></td> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">850</font></td> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">849</font></td> + <td valign="top" align="center"> + <font FACE="Times New Roman" SIZE="2">866</font></td> + </tr> + </table> + </center><font FACE="Times New Roman" SIZE="2"><b> + <p ALIGN="justify">Table 5</b>: Number of solved positions using </font> + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 2</font><font FACE="Times New Roman" SIZE="2">, + </font><font FACE="CMMI10" SIZE="2">R </font> + <font FACE="CMR10" SIZE="2">= 3 </font> + <font FACE="Times New Roman" SIZE="2">and verified </font> + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 3 + </font><font FACE="Times New Roman" SIZE="2">at depths 8, 9, and 10 for + 999 WCS test positions.</font></div> + <div align="center"> + <center> + <table border="1" cellpadding="3" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" id="AutoNumber17"> + <tr> + <td align="center" valign="top"> + <font FACE="Times New Roman" SIZE="2">Test Suite</font></td> + <td align="center" valign="top"> + <font FACE="Times New Roman" SIZE="1"> + <font FACE="Times New Roman" SIZE="2">Std </font> + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= + 1</font></font></td> + <td align="center" valign="top"> + <font FACE="Times New Roman" SIZE="1"> + <font FACE="Times New Roman" SIZE="2">Std </font> + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= + 2</font></font></td> + <td align="center" valign="top"> + <font FACE="Times New Roman" SIZE="1"> + <font FACE="Times New Roman" SIZE="2">Std </font> + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= + 3</font></font></td> + <td align="center" valign="top"> + <font FACE="Times New Roman" SIZE="1"> + <font FACE="Times New Roman" SIZE="2">Vrfd </font> + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= + 3</font></font></td> + </tr> + <tr> + <td align="center" valign="top"> + <font FACE="Times New Roman" SIZE="2">Mate in 4<br> + Depth 8 plies</font></td> + <td align="center" valign="top"> + <font FACE="Times New Roman" SIZE="1"> + <font FACE="Times New Roman" SIZE="2">433</font></font></td> + <td align="center" valign="top"> + <font FACE="Times New Roman" SIZE="1"> + <font FACE="Times New Roman" SIZE="2">385</font></font></td> + <td align="center" valign="top"> + <font FACE="Times New Roman" SIZE="1"> + <font FACE="Times New Roman" SIZE="2">379</font></font></td> + <td align="center" valign="top"> + <font FACE="Times New Roman" SIZE="1"> + <font FACE="Times New Roman" SIZE="2">431</font></font></td> + </tr> + <tr> + <td align="center" valign="top"> + <font FACE="Times New Roman" SIZE="2">Mate in 5<font FACE="Times New Roman" SIZE="2"><br> + Depth 10 plies</font> </font></td> + <td align="center" valign="top"> + <font FACE="Times New Roman" SIZE="1"> + <font FACE="Times New Roman" SIZE="2">347</font></font></td> + <td align="center" valign="top"> + <font FACE="Times New Roman" SIZE="1"> + <font FACE="Times New Roman" SIZE="2">292</font></font></td> + <td align="center" valign="top"> + <font FACE="Times New Roman" SIZE="1"> + <font FACE="Times New Roman" SIZE="2">286</font></font></td> + <td align="center" valign="top"> + <font FACE="Times New Roman" SIZE="1"> + <font FACE="Times New Roman" SIZE="2">340</font></font></td> + </tr> + </table> + </center><font FACE="Times New Roman" SIZE="2"><b> + <p align="justify">Table 6</b>: Numbers of solved positions using + standard </font><font FACE="CMMI10" SIZE="2">R </font> + <font FACE="CMR10" SIZE="2">= 1</font><font FACE="CMMI10" SIZE="2">; + </font><font FACE="CMR10" SIZE="2">2</font><font FACE="CMMI10" SIZE="2">; + </font><font FACE="CMR10" SIZE="2">3 </font> + <font FACE="Times New Roman" SIZE="2">and verified </font> + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 3 + </font><font FACE="Times New Roman" SIZE="2">for 434 mate in 4 and 353 + mate in 5 test suites.</font></div> + <font FACE="Times New Roman" SIZE="2"> + <p ALIGN="justify">The results in Tables 5 and 6 indicate that verified + null-move pruning solved far more positions than standard null-move + pruning with depth reductions of </font><font FACE="CMMI10" SIZE="2">R + </font><font FACE="CMR10" SIZE="2">= 2 </font> + <font FACE="Times New Roman" SIZE="2">and </font> + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 3</font><font FACE="Times New Roman" SIZE="2">. + This demonstrates that not only does verified null-move pruning result in + a reduced search effort (the constructed search tree is closer in size to + that of standard </font><font FACE="CMMI10" SIZE="2">R </font> + <font FACE="CMR10" SIZE="2">= 3</font><font FACE="Times New Roman" SIZE="2">), + but its tactical strength is greater than that of standard </font> + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 2</font><font FACE="Times New Roman" SIZE="2">, + which is the common depth reduction value.</p> + <p ALIGN="justify">Finally, to study the overall advantage of verified + null-move pruning over standard null-move pruning in practice, we + conducted 100 self-play games, using two versions of the G</font><font FACE="Times New Roman" SIZE="1">ENESIS + </font><font FACE="Times New Roman" SIZE="2">engine, one with verified + </font><font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= + 3</font><font FACE="Times New Roman" SIZE="2"> and the other with standard + </font><font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= + 2</font><font FACE="Times New Roman" SIZE="2">. The time control was set + to 60 minutes per game. The version using verified </font> + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 3 + </font><font FACE="Times New Roman" SIZE="2">scored 68.5 out of 100 (see + the Appendix), which demonstrates the superiority of verified null-move + pruning over the standard version.</font></p> + <font FACE="Times New Roman" SIZE="2"><b> + <p ALIGN="justify">5. CONCLUSION</p> + </b> + <p ALIGN="justify">In this article we introduced a new null-move pruning + method which outperforms standard null-move pruning, techniques, in terms + of reducing the search tree size as well as gaining greater tactical + strength. The idea of not cutting off the search as soon as the shallow + null-move search indicates a fail-high allows verification of the cutoff, + which results in greater tactical accuracy and prevents errors due to + zugzwangs. We showed empirically that verified null-move pruning with a + depth reduction of </font><font FACE="CMMI10" SIZE="2">R </font> + <font FACE="CMR10" SIZE="2">= 3 </font> + <font FACE="Times New Roman" SIZE="2">constructs a search tree which is + closer in size to that of the tree constructed by standard </font> + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 3</font><font FACE="Times New Roman" SIZE="2">, + and that the saving from the reduced search effort in comparison with + standard </font><font FACE="CMMI10" SIZE="2">R </font> + <font FACE="CMR10" SIZE="2">= 2 </font> + <font FACE="Times New Roman" SIZE="2">becomes greater as we search more + deeply. We also showed that on average, the tactical strength of verified + null-move pruning is greater than that of standard null-move pruning with</font><font FACE="CMMI10" SIZE="2"> + R </font><font FACE="CMR10" SIZE="2">= 2</font><font FACE="Times New Roman" SIZE="2">. + Moreover, verified null-move pruning can be implemented within any + standard null-move pruning framework by merely adding a few lines of code.</font></p> + <font FACE="Times New Roman" SIZE="2"> + <p ALIGN="justify">We considered a number of variants of standard + null-move pruning. The first variant was not to cut off at all upon + fail-high reports, but rather reduce the depth by 2 plies. We obtained + good results with this idea, but its tactical strength was sometimes + smaller than that of standard </font><font FACE="CMMI10" SIZE="2">R </font> + <font FACE="CMR10" SIZE="2">= 2</font><font FACE="Times New Roman" SIZE="2">. + We concluded that in order to improve the results, the depth should not be + reduced by more than one ply at a time upon fail-high reports. An + additional variant was not to cut off at any node, not even in the subtree + of a node with a fail-high report, but</p> + <font FACE="Times New Roman" SIZE="1"><hr> + <p ALIGN="LEFT"> </p> + <div align="center"> + <center> + <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber18"> + <tr> + <td width="33%"><font size="2">160</font></td> + <td width="33%"> + <p align="center"><font FACE="Times New Roman" SIZE="2">ICGA Journal</font></td> + <td width="34%"> + <p align="right"><font size="2">September 2002</font></td> + </tr> + </table> + </center> + </div> + </font></font></font><font FACE="Times New Roman"> + <font FACE="Times New Roman" SIZE="2"> + <p ALIGN="justify">merely to reduce the depth by one ply upon a fail-high + report. Unfortunately, the size of the resulting search tree exceeded the + size of the tree constructed by standard </font> + <font FACE="CMMI10" SIZE="2">R </font><font FACE="CMR10" SIZE="2">= 2</font><font FACE="Times New Roman" SIZE="2">. + Still, another variant was to reduce the depth by one ply upon fail-high + reports, and to reduce the depth by two plies upon fail-high reports in + that nodes subtree, rather than cutting off.</p> + <p ALIGN="justify">Our empirical studies showed that cutting off the + search at the subtree of a fail-high reported node does not decrease + tactical strength. Indeed, this is the verified null-move pruning version + that we studied in this article. In contrast to the standard approach + which advocates the use of immediate cutoff, the novel approach taken here + uses depth reduction, and delays cutting off the search until further + verification. This yields greater tactical strength and a smaller search + tree.</p> + <b> + <p align="justify">6. REFERENCES</p> + </b> + <p align="justify">Beal, D.F. (1989). Experiments with the null move. <i> + Advances in Computer Chess 5</i>, (Ed. D.F. Beal) , pp. 6579. Elsevier + Science Publishers, Amsterdam, The Netherlands. ISBN 0-444-87-159-4.</p> + <p align="justify">Berliner, H.J. (1974). <i>Chess as Problem Solving: The + Development of a Tactics Analyzer</i>. Ph.D. thesis, Carnegie-Mellon + University, Pittsburgh, PA.</p> + <p align="justify">Berliner, H.J. (1987). Some innovations introduced by H</font><font FACE="Times New Roman" SIZE="1">ITECH</font><font FACE="Times New Roman" SIZE="2">. + <i>ICCA Journal</i>, Vol. 10, No. 3, pp. 111117.</font></p> + <p align="justify"><font FACE="Times New Roman" SIZE="2">Berliner, H.J. + and Ebeling, C. (1990). H</font><font FACE="Times New Roman" SIZE="1">ITECH</font><font FACE="Times New Roman" SIZE="2">. + <i>Computers, Chess and Cognition </i>(Eds. T.A. Marsland and J. + Schaeffer), pp. 79109. Springer-Verlag, New York, N.Y. ISBN + 0-387-97415-6/3-540-97415-6.</p> + <p align="justify">Birmingham, J.A. and Kent, P. (1977). Tree-searching + and tree-pruning techniques. <i>Advances in Computer Chess 1</i>, (Ed. + M.R.B. Clarke), pp. 89107. Edinburgh University Press, Edinburgh. ISBN + 0-852-24292-1.</p> + <p align="justify">Campbell, M.S. and Marsland, T.A. (1983). A comparison + of minimax tree search algorithms. <i>Artificial Intelligence</i>, Vol. + 20, No. 4, pp. 347367. ISSN 0004-3702.</p> + <p align="justify">Condon, J.H. and Thompson, K. (1983a). B</font><font FACE="Times New Roman" SIZE="1">ELLE</font><font FACE="Times New Roman" SIZE="2">. + <i>Chess Skill in Man and Machine</i>, (Ed. P.W. Frey), pp. 201210. + Springer-Verlag, New York, N.Y., 2nd ed., ISBN + 0-387-90790-4/3-540-90790-4.</p> + <p align="justify">Condon, J.H. and Thompson, K. (1983b), B</font><font FACE="Times New Roman" SIZE="1">ELLE + </font><font FACE="Times New Roman" SIZE="2">chess hardware. <i>Advances + in Computer Chess 3</i>, (Ed. M.R.B. Clarke), pp. 4554. Pergamon Press, + Oxford, ISBN 0-080-26898-6.</p> + <p align="justify">Donninger, C. (1993). Null move and deep search: + Selective search heuristics for obtuse chess programs.<i> ICCA Journal</i>, + Vol. 16, No. 3, pp. 137143.</p> + <p align="justify">Ebeling, C. (1986). <i>All the Right Moves: A VLSI + Architecture for Chess</i>. MIT Press, Cambridge, MA., ISBN 0-262-05035-8.</p> + <p align="justify">Feist, M. (1999). The 9th World Computer-Chess + Championship: Report on the tournament. <i>ICCA Journal</i>, Vol. 22, No. + 3, pp. 155164.</p> + <p align="justify">Goetsch, G. and Campbell, M.S. (1990). Experiments with + the null-move heuristic. <i>Computers, Chess, and Cognition</i>, (Eds. T.A. + Marsland and J. Schaeffer), pp. 159168. Springer-Verlag, New York, N.Y., + ISBN 0-387-97415-6/3-540-97415-6.</p> + <p align="justify">Gillogy, J.J. (1972). The technology chess program. <i> + Artificial Intelligence</i>, Vol. 3, No. 1-3, pp. 145163. ISSN 0004-3702.</p> + <p align="justify">Hammilton, S. and Garber, L. (1997). D</font><font FACE="Times New Roman" SIZE="1">EEP + </font><font FACE="Times New Roman" SIZE="2">B</font><font FACE="Times New Roman" SIZE="1">LUE</font><font FACE="Times New Roman" SIZE="2">s + hardware-software synergy. <i>IEEE Computer</i>, Vol. 30, No. 10, pp. + 2935.</p> + <p align="justify">Heinz, E.A. (1999). Adaptive null-move pruning, <i>ICCA + Journal</i>, Vol. 22, No. 3, pp. 123132.</p> + <p align="justify">Herik, H.J. van den and Herschberg, I.S. (1992). The + 7th World Computer-Chess Championship: Report on the tournament. <i>ICCA + Journal</i>, Vol. 15, No. 4, pp. 208209.</p> + <p align="justify">Hsu, F.-h. (1999). IBMs D</font><font FACE="Times New Roman" SIZE="1">EEP + </font><font FACE="Times New Roman" SIZE="2">B</font><font FACE="Times New Roman" SIZE="1">LUE + </font><font FACE="Times New Roman" SIZE="2">chess grandmaster chips. <i> + IEEE Micro</i>, Vol. 19, No. 2, pp. 7080.</font></p> + <font FACE="Times New Roman" SIZE="2"></font> + <font FACE="Times New Roman" SIZE="1"><hr> + <p ALIGN="justify"> </p> + <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber19"> + <tr> + <td width="33%"> + <p align="left"> </td> + <td width="33%"> + <p align="center"><font face="Times New Roman" size="2">Verified + Null-Move Pruning</font></td> + <td width="34%"> + <p align="right"><font size="2">161</font></td> + </tr> + </table> + </font><font FACE="Times New Roman" SIZE="2"> + <p ALIGN="justify">Hsu, F.-h., Anantharaman, T.S., Campbell, M.S., and + Nowatzyk, A. (1990). D</font><font FACE="Times New Roman" SIZE="1">EEP + </font><font FACE="Times New Roman" SIZE="2">T</font><font FACE="Times New Roman" SIZE="1">HOUGHT</font><font FACE="Times New Roman" SIZE="2">. + <i>Computers, Chess, and Cognition</i>, (Eds. T.A. Marsland and J. + Schaeffer), pp. 5578. Springer-Verlag, New York, N.Y. ISBN + 0-387-97415-6/3-540-97415-6.</p> + <p ALIGN="justify">Hyatt, R.M., Gower, A.E., and Nelson, H.L. (1990). C</font><font FACE="Times New Roman" SIZE="1">RAY + </font><font FACE="Times New Roman" SIZE="2">B</font><font FACE="Times New Roman" SIZE="1">LITZ</font><font FACE="Times New Roman" SIZE="2">, + <i>Computers, Chess, and Cognition</i>, (Eds. T.A. Marsland and J. + Schaeffer), pp. 111130. Springer-Verlag, New York, N.Y. ISBN + 0-387-97415-6/3-540- 97415-6.</p> + <p ALIGN="justify">Nelson, H.L. (1985). Hash tables in C</font><font FACE="Times New Roman" SIZE="1">RAY + </font><font FACE="Times New Roman" SIZE="2">B</font><font FACE="Times New Roman" SIZE="1">LITZ</font><font FACE="Times New Roman" SIZE="2">. + <i>ICCA Journal</i>, Vol. 8, No. 1, pp. 313.</p> + <p ALIGN="justify">Newborn, M.M. (1975). <i>Computer Chess</i>. Academic + Press. New York, N.Y. ISBN 0-125-17250-8.</p> + <p ALIGN="justify">Plenkner, S. (1995). A null-move technique impervious + to zugzwang. <i>ICCA Journal</i>, Vol. 18, No. 2, pp. 8284.</p> + <p ALIGN="justify">Reinefeld, A. (1983). An improvement to the S</font><font FACE="Times New Roman" SIZE="1">COUT + </font><font FACE="Times New Roman" SIZE="2">tree-search algorithm. <i> + ICCA Journal</i>, Vol. 6, No. 4, pp. 414.</p> + <p ALIGN="justify">Schaeffer, J. (1983). The history heuristic. <i>ICCA + Journal</i>, Vol. 6, No. 3, pp. 1619.</p> + <p ALIGN="justify">Schaeffer, J. (1989). The history heuristic and + alpha-beta search enhancements in practice. <i>IEEE Transactions on + Pattern Analysis and Machine Intelligence</i>, Vol. 11, No. 11, pp. + 12031212. ISSN 0162-8828.</p> + <p ALIGN="justify">Slagle, J.R. (1971). <i>Artificial Intelligence: The + Heuristic Programming Approach</i>. McGraw-Hill, New York, N.Y.</p> + <p ALIGN="justify">Slate, D.J. and Atkin, L.R. (1977). C</font><font FACE="Times New Roman" SIZE="1">HESS + </font><font FACE="Times New Roman" SIZE="2">4.5 The Northwestern + University chess program. <i>Chess Skill in Man and Machine</i>, (Ed. P.W. + Frey), pp. 82118. Springer-Verlag, New York, N.Y., 2nd ed. 1983, ISBN + 0-387-90790-4/3-540-90790-4.</p> + <p ALIGN="justify">Tsang, H.K. and Beal, D.F. (1995). The 8thWorld + Computer-Chess Championship: Report on the tournament and the contestants + programs described. <i>ICCA Journal</i>, Vol. 18, No. 2, pp. 93101.</p> + <b> + <p ALIGN="justify">7. ACKNOWLEDGEMENTS</p> + </b> + <p ALIGN="justify">We would like to thank Shay Bushinsky for his interest + in our research, and for promoting the discipline of Computer Chess in our + department. We would also like to thank Dann Corbit for providing the CAP + test positions for our empirical studies, and Azriel Rosenfeld for his + editorial comments. Finally, we are indebted to Jonathan Schaeffer and + Christian Donninger for their enlightening remarks and suggestions.</p> + <b> + <p ALIGN="justify">8. APPENDIX</p> + <p ALIGN="justify">EXPERIMENTAL SETUP</p> + </b> + <p ALIGN="justify">Our experimental setup consisted of the following + resources:</p> + <ul> + <li> + <p ALIGN="justify">138 positions (Diagrams 241 to 378) from: Yakov + Neishtadt (1993). <i>Test Your Tactical Ability</i>, pp. 110135. + Batsford, ISBN 0-7134-4013-9.<br> + </li> + <li> + <p ALIGN="justify"><font FACE="Times New Roman" SIZE="2">869 positions + from <i>Encyclopedia of Chess Middlegames</i>, and 999 positions from <i> + Winning Chess Sacrifices</i>, as available on the Internet.<font FACE="Times New Roman" SIZE="2"><br> + </font></font></li> + <li> + <p ALIGN="justify"><font FACE="Times New Roman" SIZE="2">434 Mate in 4 + and 353 Mate in 5 positions from <i>Chess Analysis Project</i>, + available at <a href="ftp://cap.connx.com/">ftp://cap.connx.com/</a><br> + </font></li> + <li> + <p ALIGN="justify"><font FACE="Times New Roman" SIZE="2">G<font FACE="Times New Roman" SIZE="1">ENESIS + </font>chess engine, with <font FACE="CMR10" SIZE="2">2</font><sup>22</sup><font FACE="CMR7" SIZE="1"> + </font>transposition table entries (64MB), running on a 733 MHz Pentium + III with 256MB RAM, with the Windows 98 operating system.</font></li> + </ul> + <p ALIGN="justify">The webpage + <a href="http://www.cs.biu.ac.il/~davoudo/pubs.html"> + http://www.cs.biu.ac.il/~davoudo/pubs.html</a> contains additional + information about the test suites, move lists of self-play games, and + detailed experimental results.</font></font></font></td> + </tr> + </table> + </center> +</div> + +</body> + +</html> \ No newline at end of file diff --git a/parallel/214-92.pdf b/parallel/214-92.pdf new file mode 100755 index 0000000..2721d39 Binary files /dev/null and b/parallel/214-92.pdf differ diff --git a/parallel/214-92.ps b/parallel/214-92.ps new file mode 100755 index 0000000..23b1a28 --- /dev/null +++ b/parallel/214-92.ps @@ -0,0 +1,11579 @@ +%!PS-Adobe-1.0 +%%Creator: vivaldi.ms.uky.edu:raphael (Raphael Finkel,POT959,7 6743,2660206) +%%Title: stdin (ditroff) +%%CreationDate: Wed Oct 14 11:38:59 1992 +%%EndComments +% Start of psdit.pro -- prolog for ditroff translator +% Copyright (c) 1985,1987 Adobe Systems Incorporated. All Rights Reserved. +% GOVERNMENT END USERS: See Notice file in TranScript library directory +% -- probably /usr/lib/ps/Notice +% RCS: $Header: psdit.pro,v 2.2 87/11/17 16:40:42 byron Rel $ +/$DITroff 140 dict def $DITroff begin +/fontnum 1 def /fontsize 10 def /fontheight 10 def /fontslant 0 def +/xi {0 72 11 mul translate 72 resolution div dup neg scale 0 0 moveto + /fontnum 1 def /fontsize 10 def /fontheight 10 def /fontslant 0 def F + /pagesave save def}def +/PB{save /psv exch def currentpoint translate + resolution 72 div dup neg scale 0 0 moveto}def +/PE{psv restore}def +/m1 matrix def /m2 matrix def /m3 matrix def /oldmat matrix def +/tan{dup sin exch cos div}bind def +/point{resolution 72 div mul}bind def +/dround {transform round exch round exch itransform}bind def +/xT{/devname exch def}def +/xr{/mh exch def /my exch def /resolution exch def}def +/xp{}def +/xs{docsave restore end}def +/xt{}def +/xf{/fontname exch def /slotno exch def fontnames slotno get fontname eq not + {fonts slotno fontname findfont put fontnames slotno fontname put}if}def +/xH{/fontheight exch def F}bind def +/xS{/fontslant exch def F}bind def +/s{/fontsize exch def /fontheight fontsize def F}bind def +/f{/fontnum exch def F}bind def +/F{fontheight 0 le {/fontheight fontsize def}if + fonts fontnum get fontsize point 0 0 fontheight point neg 0 0 m1 astore + fontslant 0 ne{1 0 fontslant tan 1 0 0 m2 astore m3 concatmatrix}if + makefont setfont .04 fontsize point mul 0 dround pop +%raphael.ms.uky.edu 7/89: changed 'setlinewidth' to pop right here: + pop}bind def +/X{exch currentpoint exch pop moveto show}bind def +/N{3 1 roll moveto show}bind def +/Y{exch currentpoint pop exch moveto show}bind def +/S /show load def +/ditpush{}def/ditpop{}def +/AX{3 -1 roll currentpoint exch pop moveto 0 exch ashow}bind def +/AN{4 2 roll moveto 0 exch ashow}bind def +/AY{3 -1 roll currentpoint pop exch moveto 0 exch ashow}bind def +/AS{0 exch ashow}bind def +/MX{currentpoint exch pop moveto}bind def +/MY{currentpoint pop exch moveto}bind def +/MXY /moveto load def +/cb{pop}def % action on unknown char -- nothing for now +/n{}def/w{}def +/p{pop showpage pagesave restore /pagesave save def}def +/abspoint{currentpoint exch pop add exch currentpoint pop add exch}def +/dstroke{currentpoint stroke moveto}bind def +/Dl{2 copy gsave rlineto stroke grestore rmoveto}bind def +/arcellipse{oldmat currentmatrix pop + currentpoint translate 1 diamv diamh div scale /rad diamh 2 div def + rad 0 rad -180 180 arc oldmat setmatrix}def +/Dc{gsave dup /diamv exch def /diamh exch def arcellipse dstroke + grestore diamh 0 rmoveto}def +/De{gsave /diamv exch def /diamh exch def arcellipse dstroke + grestore diamh 0 rmoveto}def +/Da{currentpoint /by exch def /bx exch def /fy exch def /fx exch def + /cy exch def /cx exch def /rad cx cx mul cy cy mul add sqrt def + /ang1 cy neg cx neg atan def /ang2 fy fx atan def cx bx add cy by add + 2 copy rad ang1 ang2 arcn stroke exch fx add exch fy add moveto}def +/Barray 200 array def % 200 values in a wiggle +/D~{mark}def +/D~~{counttomark Barray exch 0 exch getinterval astore /Bcontrol exch def pop + /Blen Bcontrol length def Blen 4 ge Blen 2 mod 0 eq and + {Bcontrol 0 get Bcontrol 1 get abspoint /Ycont exch def /Xcont exch def + Bcontrol 0 2 copy get 2 mul put Bcontrol 1 2 copy get 2 mul put + Bcontrol Blen 2 sub 2 copy get 2 mul put + Bcontrol Blen 1 sub 2 copy get 2 mul put + /Ybi /Xbi currentpoint 3 1 roll def def 0 2 Blen 4 sub + {/i exch def + Bcontrol i get 3 div Bcontrol i 1 add get 3 div + Bcontrol i get 3 mul Bcontrol i 2 add get add 6 div + Bcontrol i 1 add get 3 mul Bcontrol i 3 add get add 6 div + /Xbi Xcont Bcontrol i 2 add get 2 div add def + /Ybi Ycont Bcontrol i 3 add get 2 div add def + /Xcont Xcont Bcontrol i 2 add get add def + /Ycont Ycont Bcontrol i 3 add get add def + Xbi currentpoint pop sub Ybi currentpoint exch pop sub rcurveto + }for dstroke}if}def +end +/ditstart{$DITroff begin + /nfonts 60 def % NFONTS makedev/ditroff dependent! + /fonts[nfonts{0}repeat]def + /fontnames[nfonts{()}repeat]def +/docsave save def +}def + +% character outcalls +/oc {/pswid exch def /cc exch def /name exch def + /ditwid pswid fontsize mul resolution mul 72000 div def + /ditsiz fontsize resolution mul 72 div def + ocprocs name known{ocprocs name get exec}{name cb} + ifelse}def +/fractm [.65 0 0 .6 0 0] def +/fraction + {/fden exch def /fnum exch def gsave /cf currentfont def + cf fractm makefont setfont 0 .3 dm 2 copy neg rmoveto + fnum show rmoveto currentfont cf setfont(\244)show setfont fden show + grestore ditwid 0 rmoveto} def +/oce {grestore ditwid 0 rmoveto}def +/dm {ditsiz mul}def +/ocprocs 50 dict def ocprocs begin +(14){(1)(4)fraction}def +(12){(1)(2)fraction}def +(34){(3)(4)fraction}def +(13){(1)(3)fraction}def +(23){(2)(3)fraction}def +(18){(1)(8)fraction}def +(38){(3)(8)fraction}def +(58){(5)(8)fraction}def +(78){(7)(8)fraction}def +(sr){gsave .05 dm .16 dm rmoveto(\326)show oce}def +(is){gsave 0 .15 dm rmoveto(\362)show oce}def +(->){gsave 0 .02 dm rmoveto(\256)show oce}def +(<-){gsave 0 .02 dm rmoveto(\254)show oce}def +(==){gsave 0 .05 dm rmoveto(\272)show oce}def +end +% DIThacks fonts for some special chars +50 dict dup begin +/FontType 3 def +/FontName /DIThacks def +/FontMatrix [.001 0.0 0.0 .001 0.0 0.0] def +/FontBBox [-220 -280 900 900] def% a lie but ... +/Encoding 256 array def +0 1 255{Encoding exch /.notdef put}for +Encoding + dup 8#040/space put %space + dup 8#110/rc put %right ceil + dup 8#111/lt put %left top curl + dup 8#112/bv put %bold vert + dup 8#113/lk put %left mid curl + dup 8#114/lb put %left bot curl + dup 8#115/rt put %right top curl + dup 8#116/rk put %right mid curl + dup 8#117/rb put %right bot curl + dup 8#120/rf put %right floor + dup 8#121/lf put %left floor + dup 8#122/lc put %left ceil + dup 8#140/sq put %square + dup 8#141/bx put %box + dup 8#142/ci put %circle + dup 8#143/br put %box rule + dup 8#144/rn put %root extender + dup 8#145/vr put %vertical rule + dup 8#146/ob put %outline bullet + dup 8#147/bu put %bullet + dup 8#150/ru put %rule + dup 8#151/ul put %underline + pop +/DITfd 100 dict def +/BuildChar{0 begin + /cc exch def /fd exch def + /charname fd /Encoding get cc get def + /charwid fd /Metrics get charname get def + /charproc fd /CharProcs get charname get def + charwid 0 fd /FontBBox get aload pop setcachedevice + 40 setlinewidth + newpath 0 0 moveto gsave charproc grestore + end}def +/BuildChar load 0 DITfd put +%/UniqueID 5 def +/CharProcs 50 dict def +CharProcs begin +/space{}def +/.notdef{}def +/ru{500 0 rls}def +/rn{0 750 moveto 500 0 rls}def +/vr{20 800 moveto 0 -770 rls}def +/bv{20 800 moveto 0 -1000 rls}def +/br{20 770 moveto 0 -1040 rls}def +/ul{0 -250 moveto 500 0 rls}def +/ob{200 250 rmoveto currentpoint newpath 200 0 360 arc closepath stroke}def +/bu{200 250 rmoveto currentpoint newpath 200 0 360 arc closepath fill}def +/sq{80 0 rmoveto currentpoint dround newpath moveto + 640 0 rlineto 0 640 rlineto -640 0 rlineto closepath stroke}def +/bx{80 0 rmoveto currentpoint dround newpath moveto + 640 0 rlineto 0 640 rlineto -640 0 rlineto closepath fill}def +/ci{355 333 rmoveto currentpoint newpath 333 0 360 arc + 50 setlinewidth stroke}def + +/lt{20 -200 moveto 0 550 rlineto currx 800 2cx s4 add exch s4 a4p stroke}def +/lb{20 800 moveto 0 -550 rlineto currx -200 2cx s4 add exch s4 a4p stroke}def +/rt{20 -200 moveto 0 550 rlineto currx 800 2cx s4 sub exch s4 a4p stroke}def +/rb{20 800 moveto 0 -500 rlineto currx -200 2cx s4 sub exch s4 a4p stroke}def +/lk{20 800 moveto 20 300 -280 300 s4 arcto pop pop 1000 sub + currentpoint stroke moveto + 20 300 4 2 roll s4 a4p 20 -200 lineto stroke}def +/rk{20 800 moveto 20 300 320 300 s4 arcto pop pop 1000 sub + currentpoint stroke moveto + 20 300 4 2 roll s4 a4p 20 -200 lineto stroke}def +/lf{20 800 moveto 0 -1000 rlineto s4 0 rls}def +/rf{20 800 moveto 0 -1000 rlineto s4 neg 0 rls}def +/lc{20 -200 moveto 0 1000 rlineto s4 0 rls}def +/rc{20 -200 moveto 0 1000 rlineto s4 neg 0 rls}def +end + +/Metrics 50 dict def Metrics begin +/.notdef 0 def +/space 500 def +/ru 500 def +/br 0 def +/lt 250 def +/lb 250 def +/rt 250 def +/rb 250 def +/lk 250 def +/rk 250 def +/rc 250 def +/lc 250 def +/rf 250 def +/lf 250 def +/bv 250 def +/ob 350 def +/bu 350 def +/ci 750 def +/bx 750 def +/sq 750 def +/rn 500 def +/ul 500 def +/vr 0 def +end + +DITfd begin +/s2 500 def /s4 250 def /s3 333 def +/a4p{arcto pop pop pop pop}def +/2cx{2 copy exch}def +/rls{rlineto stroke}def +/currx{currentpoint pop}def +/dround{transform round exch round exch itransform} def +end +end +/DIThacks exch definefont pop +%raphael.ms.uky.edu 7/89: for splines from gremlin: next 3 lines +/Dg{gsave}def +/Dgi{rlineto}def +/Dgl{lineto currentpoint stroke grestore moveto}def +ditstart +(psc)xT +576 1 1 xr +1(Times-Roman)xf 1 f +2(Times-Italic)xf 2 f +3(Times-Bold)xf 3 f +4(Times-BoldItalic)xf 4 f +5(Helvetica)xf 5 f +6(Helvetica-Bold)xf 6 f +7(Courier)xf 7 f +8(Courier-Bold)xf 8 f +9(Symbol)xf 9 f +10(DIThacks)xf 10 f +10 s +1 f +xi +%%EndProlog + +%%Page: 1 1 +10 s 0 xH 0 xS 1 f +15 s +867 807(A)N +983(comparison)X +1574(of)X +1704(some)X +1988(parallel)X +2379(game-tree)X +2889(search)X +3225(algorithms)X +1878 942(\(Revised)N +2335(version\))X +14 s +1553 1203(Jaleh)N +1812(Rezaie)X +12 s +2201(\(jrezaie@ms.uky.edu\))X +14 s +1482 1329(Raphael)N +1877(Finkel)X +12 s +2247(\(raphael@ms.uky.edu\))X +13 s +1606 1572(Department)N +2123(of)X +2236(Computer)X +2678(Science)X +1812 1689(University)N +2278(of)X +2391(Kentucky)X +1725 1806(Lexington,)N +2204(KY)X +2380(40506-0027)X +8 f +14 s +576 2127(Abstract)N +1 f +12 s +776 2268(This)N +1002(paper)X +1271 0.2404(experimentally)AX +1905(compares)X +2329(several)X +2658(sequential)X +3105(and)X +3300(parallel)X +3646(game-tree)X +576 2376(search)N +850(methods:)X +1231(alpha-beta,)X +1685(mandatory)X +2125(work)X +2350(\256rst,)X +2550 0.1979(principal-variation)AX +3295(splitting,)X +3662(tree)X +3834(split-)X +576 2484(ting,)N +775(ER,)X +947(and)X +1111(delay)X +1345(splitting.)X +1734(All)X +1882(have)X +2089(been)X +2296(implemented)X +2826(in)X +2927(a)X +2996(common)X +3359(environment)X +3872(pro-)X +576 2592(vided)N +814(by)X +934(the)X +1076(DIB)X +1265(package.)X +8 f +14 s +576 2796(Key)N +844(words:)X +1 f +12 s +1326(game)X +1559(trees,)X +1789(heuristic)X +2145(search,)X +2439(alpha-beta)X +8 f +14 s +576 3000(1.)N +844(Introduction)X +1 f +12 s +776 3141(In)N +892(this)X +1067(paper)X +1318(we)X +1467(compare)X +1836(some)X +2076(of)X +2193(the)X +2348(parallel)X +2675(methods)X +3038(for)X +3187(searching)X +3593(large)X +3823(game)X +576 3249(trees.)N +831(These)X +1086(trees)X +1293(arise)X +1500(in)X +1600(the)X +1743(area)X +1929(of)X +2034(arti\256cial)X +2381 0.2784(intelligence)AX +2857(and)X +3021(are)X +3164(closely)X +3462(related)X +3750(to)X +3850(trees)X +576 3357(searched)N +946(in)X +1054(other)X +1285(application)X +1748(areas.)X +2028(Exhaustive)X +2490(search)X +2770(of)X +2884(a)X +2961(tree)X +3140(is)X +3238(prohibitively)X +3770(expen-)X +576 3465(sive.)N +803(There)X +1052(are)X +1194(several)X +1491(ways)X +1712(to)X +1811(ameliorate)X +2243(the)X +2385(problem.)X +10 f +624 3606(g)N +1 f +706(Search)X +992(only)X +1187(to)X +1286(a)X +1353(given)X +1591(depth.)X +10 f +624 3714(g)N +1 f +706(Apply)X +970(heuristics,)X +1387(such)X +1587(as)X +1691(the)X +1833(alpha-beta)X +2259(method,)X +2596(to)X +2695(cut)X +2837(off)X +2973(fruitless)X +3307(search.)X +10 f +624 3822(g)N +1 f +706(Apply)X +970(many)X +1208(computers)X +1633(simultaneously)X +2240(in)X +2339(pursuing)X +2699(the)X +2841(search.)X +576 3963(We)N +734(concentrate)X +1203(on)X +1323(distributed)X +1759(variants)X +2088(of)X +2192(the)X +2334(alpha-beta)X +2760(heuristic)X +3116(that)X +3285(try)X +3416(to)X +3515(avoid)X +3754(search-)X +576 4071(ing)N +723(unnecessary)X +1217(parts)X +1428(of)X +1532(the)X +1674(tree)X +1843(while)X +2081(keeping)X +2410(many)X +2648(processors)X +3077(fruitfully)X +3449(busy.)X +776 4212(The)N +987(algorithms)X +1460(we)X +1633(compare)X +2026(are)X +2205(alpha-beta,)X +2692(mandatory)X +3165(work)X +3423(\256rst,)X +3657(principal-)X +576 4320(variation)N +947(splitting,)X +1315(tree)X +1488(splitting,)X +1856(ER,)X +2031(and)X +2198(delay)X +2434(splitting.)X +2825(To)X +2959(be)X +3077(able)X +3265(to)X +3367(make)X +3603(a)X +3673(fair)X +3834(com-)X +576 4428(parison)N +884(between)X +1230(the)X +1373(above)X +1628(algorithms,)X +2089(we)X +2226(have)X +2433(extended)X +2806(the)X +2949(DIB)X +3139(package)X +3479([1])X +3617(to)X +3718(use)X +3872(it)X +3952(as)X +576 4536(a)N +643(framework)X +1089(for)X +1225(implementing)X +1785(all)X +1906(the)X +2048(algorithms)X +2484(we)X +2620(compare.)X +776 4677(Section)N +1097(2)X +1177(describes)X +1567(the)X +1717(DIB)X +1914(package.)X +2310(Section)X +2632(3)X +2713(introduces)X +3147(the)X +3298(alpha-beta)X +3733(pruning)X +576 4785(and)N +749(brie\257y)X +1034(describes)X +1426(the)X +1578(algorithms)X +2024(used)X +2234(in)X +2342(the)X +2493(experiment.)X +3008(Section)X +3330(4)X +3411(presents)X +3759(experi-)X +576 4893(mental)N +876(results)X +1164(that)X +1346(compare)X +1716(the)X +1872(algorithms.)X +2370(Section)X +2697(5)X +2783(compares)X +3190(the)X +3346(effects)X +3641(of)X +3759(several)X +576 5001(sorting)N +872(strategies)X +1264(on)X +1388(the)X +1534(above)X +1792(algorithms.)X +2280(Section)X +2597(6)X +2673(illustrates)X +3076(the)X +3222(new)X +3410(results)X +3689(achieved)X +576 5109(by)N +703(adjustments)X +1195(made)X +1436(to)X +1543(MWF)X +1804(algorithm.)X +2259(Section)X +2580(7)X +2660(summarizes)X +3152(the)X +3302(results,)X +3609(and)X +3780(details)X +576 5217(remaining)N +991(parts)X +1202(of)X +1306(this)X +1469(experiment.)X +8 f +14 s +576 5439(2.)N +840(DIB)X +1104(\320)X +1234(A)X +1364(distributed)X +2164(implementation)X +3165(of)X +3362(backtrack-)X +576 5547(ing)N +1 f +12 s +776 5688(In)N +892(this)X +1067(section)X +1376(we)X +1524(describe)X +1881(how)X +2082(DIB)X +2283(works)X +2553(and)X +2728(how)X +2929(we)X +3077(use)X +3241(it)X +3331(to)X +3443(implement)X +3893(dif-)X +576 5796(ferent)N +825(tree-search)X +1272(algorithms.)X + +2 p +%%Page: 2 2 +12 s 0 xH 0 xS 1 f +10 s +3 f +576 474(Game-tree)N +963(search)X +3992(2)X +8 f +14 s +576 780(2.1.)N +978(Description)X +1782(of)X +1983(DIB)X +1 f +12 s +776 921(DIB)N +971(is)X +1065(a)X +1138(multi-purpose)X +1708(package)X +2054(developed)X +2480(by)X +2606(Finkel)X +2882(and)X +3051(Manber)X +3380(for)X +3523(tree-traversal)X +576 1029(problems)N +958([1].)X +1168(It)X +1277(allows)X +1578(applications)X +2094(such)X +2320(as)X +2450(backtrack)X +2875(and)X +3063(branch-and-bound)X +3817(to)X +3941(be)X +576 1137(implemented)N +1122(on)X +1260(a)X +1345(multicomputer.)X +2003(DIB's)X +2279(requirements)X +2824(from)X +3053(the)X +3213(distributed)X +3668(operating)X +576 1245(system)N +886(are)X +1047(minimal.)X +1460(The)X +1653(machines)X +2060(must)X +2289(be)X +2422(connected)X +2855(by)X +2993(a)X +3078(network)X +3435(that)X +3622(supports)X +3989(a)X +576 1353(message-passing)N +1263(mechanism;)X +1770(each)X +1988(machine)X +2356(must)X +2584(be)X +2716(able)X +2918(to)X +3035(communicate,)X +3621(not)X +3786(neces-)X +576 1461(sarily)N +817(directly,)X +1163(with)X +1361(all)X +1485(other)X +1710(machines.)X +2149(Our)X +2325 0.2548(implementation)AX +2958(of)X +3065(DIB)X +3257(is)X +3348(programmed)X +3867(in)X +3968(C)X +576 1569(and)N +741(runs)X +932(in)X +1033(the)X +1177(Unix)X +1395(environment)X +1908(across)X +2174(machines)X +2564(connected)X +2981(by)X +3103(an)X +3220(internet)X +3541(or)X +3647(on)X +3770(a)X +3840(Unix)X +576 1677(multiprocessor.)N +776 1818(The)N +953(application)X +1409(program)X +1762(must)X +1976(specify)X +2281(the)X +2426(root)X +2609(of)X +2717(the)X +2863(problem)X +3212(tree,)X +3409(how)X +3602(to)X +3705(generate)X +576 1926(children,)N +955(and)X +1133(calculations)X +1633(needed)X +1945(at)X +2054(each)X +2270(node.)X +2544(It)X +2642(can)X +2815(also)X +3009(optionally)X +3438(specify)X +3754(how)X +3957(to)X +576 2034(generate)N +937(values)X +1217(of)X +1331(a)X +1408(tree)X +1587(node)X +1808(from)X +2029(combining)X +2475(its)X +2600(children's)X +3019(values)X +3299(and)X +3472(how)X +3671(to)X +3781(spread)X +576 2142(information)N +1055(either)X +1299(globally)X +1639(or)X +1743(locally)X +2030(throughout)X +2476(the)X +2618(tree.)X +776 2283(DIB)N +969(divides)X +1276(the)X +1423(problem)X +1773(into)X +1952(subproblems)X +2472(and)X +2640(assigns)X +2946(them)X +3168(to)X +3272(any)X +3440(number)X +3763(of)X +3872(pro-)X +576 2391(cessors)N +879(\(potentially)X +1349(nonhomogeneous)X +2052(machines)X +2441(in)X +2541(a)X +2609(network\))X +2981(dynamically.)X +3531(Each)X +3749(proces-)X +576 2499(sor)N +723(maintains)X +1128(a)X +1201(table)X +1419(of)X +1530(explicit)X +1851(work,)X +2103(recording)X +2503(all)X +2631(the)X +2780(problems)X +3169(that)X +3345(have)X +3558(been)X +3771(sent)X +3957(to)X +576 2607(the)N +721(processor,)X +1140(have)X +1349(been)X +1558(generated)X +1960(by)X +2083(the)X +2227(processor)X +2621(itself,)X +2864(and/or)X +3136(have)X +3344(been)X +3552(sent)X +3733(to)X +3834(other)X +576 2715(processors.)N +1062(Each)X +1288(processor)X +1689(is)X +1786(responsible)X +2257(for)X +2402(the)X +2553(work)X +2784(in)X +2893(its)X +3018(table.)X +3288(Each)X +3515(item)X +3721(of)X +3835(work)X +576 2823(\(represented)N +1079(by)X +1202(a)X +1272(node)X +1486(in)X +1588(the)X +1733(backtrack)X +2135(tree,)X +2331(which)X +2593(stands)X +2859(as)X +2965(well)X +3157(for)X +3295(all)X +3418(its)X +3535(descendents\))X +576 2931(is)N +664(labeled)X +967(by)X +1087(which)X +1346(processor,)X +1762(if)X +1845(any,)X +2032(has)X +2184(been)X +2390(assigned)X +2745(that)X +2914(work.)X +776 3072(When)N +1030(a)X +1097(processor)X +2 f +1489(A)X +1 f +1588(is)X +1676(\256nished)X +2004(with)X +2199(a)X +2266(problem)X +2611(and)X +2775(has)X +2928(reported)X +3274(its)X +3390(result)X +3629(to)X +3729(the)X +3872(pro-)X +576 3180(cessor)N +848(that)X +1025(gave)X +1239(it)X +1324(that)X +1500(problem,)X +1876(it)X +1961(will)X +2142(take)X +2334(the)X +2483(\256rst)X +2663(\(in)X +2801(an)X +2923(inorder)X +3232(traversal)X +3595(of)X +3706(the)X +3855(tree\))X +576 3288(unassigned)N +1042(problem)X +1402(from)X +1629(its)X +1760(table.)X +2036(If)X +2140(no)X +2276(unassigned)X +2743(problem)X +3104(is)X +3208(available,)X +2 f +3621(A)X +1 f +3736(sends)X +3989(a)X +3 f +576 3396(work)N +815(request)X +1 f +1145(message)X +1496(to)X +1596(another)X +1910(processor)X +2303(\(or)X +2440(processors\),)X +2926(selected)X +3262(at)X +3357(random)X +3676(from)X +2 f +3888(A)X +1 f +3963('s)X +576 3504(peers,)N +827(repeatedly)X +1253(\(with)X +1480(some)X +1707(delay\))X +1972(until)X +2173(new)X +2357(work)X +2578(arrives.)X +776 3645(A)N +878(processor)X +2 f +1279(B)X +1 f +1387(that)X +1565(receives)X +1914(a)X +1990(work)X +2220(request)X +2531(message)X +2890(interrupts)X +3292(its)X +3416(own)X +3614(search)X +3893(and)X +576 3753(trys)N +754(to)X +863(respond)X +1201(by)X +1331(sending)X +1664(some)X +1901(work)X +2132(to)X +2240(the)X +2391(requesting)X +2825(processor)X +3226(from)X +3446(its)X +3570(table.)X +3839(If)X +3936(no)X +576 3861(unassigned)N +1031(problem)X +1380(is)X +1472(available)X +1849(in)X +1952(the)X +2098(table,)X +2338(then)X +2532(the)X +2678(problem)X +2 f +3028(B)X +1 f +3132(is)X +3225(working)X +3574(on)X +3699(is)X +3792(subdi-)X +576 3969(vided)N +815(and)X +979(its)X +1095(children)X +1436(are)X +1579(put)X +1727(in)X +1827(the)X +1970(table.)X +2231(Until)X +2454(work)X +2676(is)X +2765(subdivided,)X +3236(DIB)X +3426(maintains)X +3826(a)X +3893(fast)X +576 4077(representation)N +1163(of)X +1284(the)X +1443(current)X +1758(search)X +2046(\(just)X +2259(a)X +2344(recursion)X +2744(stack;)X +3011(we)X +3165(call)X +3347(it)X +3443(the)X +3603(``implicit'')X +576 4185(representation\);)N +1206(subdivided)X +1653(work)X +1875(is)X +1964(explicit)X +2278(in)X +2377(the)X +2519(table.)X +2779(After)X +3006(subdivision,)X +2 f +3497(B)X +1 f +3596(can)X +3754(usually)X +576 4293(send)N +791(some)X +1033(unassigned)X +1499(work)X +1735(to)X +1849(the)X +2006(requesting)X +2446(processor.)X +2901(Subdivision)X +3399(may)X +3604(have)X +3826(to)X +3941(be)X +576 4401(repeated)N +944(several)X +1258(times)X +1508(before)X +1795(an)X +1927(unassigned)X +2395(problem)X +2757(is)X +2862(generated,)X +3302(but)X +3466(if)X +3566(it)X +3660(reaches)X +3989(a)X +576 4509(trivial)N +844(problem)X +1202(\(not)X +1394(worth)X +1655(subdividing\),)X +2202(or)X +2319(if)X +2416(it)X +2508(reaches)X +2835(the)X +2991(depth)X +3243(at)X +3351(which)X +2 f +3624(B)X +1 f +3737(itself)X +3968(is)X +576 4617(searching,)N +998(the)X +1144(request)X +1450(is)X +1542(not)X +1693(granted.)X +2 f +2058(B)X +1 f +2161(resumes)X +2504(its)X +2623(search)X +2897(after)X +3102(dealing)X +3414(with)X +3613(the)X +3759(incom-)X +576 4725(ing)N +723(request.)X +776 4866(DIB)N +972(is)X +1067(fault)X +1275(tolerant,)X +1625(in)X +1731(that)X +1907(work)X +2135(that)X +2 f +2311(B)X +1 f +2417(has)X +2576(given)X +2822(to)X +2 f +2929(A)X +1 f +3036(can)X +3202(still)X +3379(be)X +3502(accomplished)X +576 4974(by)N +2 f +702(B)X +1 f +807(if)X +896(there)X +1119(is)X +1213(nothing)X +1537(else)X +1717(worth)X +1971(doing)X +2220(and)X +2389(if)X +2 f +2478(A)X +1 f +2582(has)X +2739(not)X +2891(yet)X +3038(reported)X +3388(the)X +3535(result)X +3778(of)X +3887(that)X +576 5082(work.)N +845(This)X +1040(mechanism)X +1503(does)X +1703(not)X +1850(need)X +2056(timeouts)X +2412(or)X +2516(``heartbeats'')X +3059(to)X +3158(detect)X +3413(failure.)X +776 5223(We)N +938(have)X +1148(enhanced)X +1540(the)X +1686(DIB)X +1879(package)X +2223(so)X +2336(that)X +2509(it)X +2591(can)X +2753(achieve)X +3076(high)X +3275(ef\256ciency)X +3683(for)X +3823(game)X +576 5331(tree)N +748(search.)X +1069(The)X +1246(principal)X +1616(enhancement)X +2152(is)X +2243(added)X +2500(\257exibility)X +2902(given)X +3143(to)X +3245(the)X +3389(application)X +3844(level)X +576 5439(for)N +719(delaying)X +1082(evaluation)X +1515(of)X +1626(a)X +1700(game-tree)X +2117(node.)X +2383(That)X +2591(is,)X +2710(the)X +2860(application)X +3321(can)X +3487(refuse)X +3754(to)X +3861(gen-)X +576 5547(erate)N +792(additional)X +1206(children)X +1549(for)X +1688(a)X +1758(node)X +1972(but)X +2122(indicate)X +2455(that)X +2627(in)X +2729(the)X +2874(future)X +3131(it)X +3212(may)X +3405(again)X +3641(be)X +3759(willing)X +576 5655(to)N +688(do)X +821(so.)X +991(DIB)X +1194(does)X +1408(not)X +1569(attempt)X +1897(to)X +2010(generate)X +2375(children)X +2729(of)X +2847(such)X +3061(a)X +3142(node)X +3367(again)X +3614(until)X +3829(some)X +576 5763(other)N +798(child)X +1015(of)X +1119(that)X +1288(node)X +1499(has)X +1651(completed)X +2077(or)X +2181(a)X +2248(data)X +2433(update)X +2714(message)X +3064(has)X +3216(arrived)X +3513(at)X +3607(that)X +3776(node.)X + +3 p +%%Page: 3 3 +12 s 0 xH 0 xS 1 f +10 s +3 f +576 474(Game-tree)N +963(search)X +3992(3)X +1 f +12 s +776 780(To)N +913(experiment)X +1377(with)X +1578(game)X +1817(playing,)X +2160(we)X +2302(have)X +2514(designed)X +2886(a)X +2959(two-level)X +3353(application)X +3813(struc-)X +576 888(ture.)N +817(The)X +3 f +1010(game)X +1 f +1272(level)X +1503(is)X +1610(game-speci\256c,)X +2212(knowing)X +2591(the)X +2752(rules)X +2982(for)X +3137(tic-tac-toe,)X +3596(Othello,)X +3952(or)X +576 996(checkers.)N +989(The)X +3 f +1167(control)X +1 f +1489(level)X +1705(communicates)X +2290(both)X +2489(with)X +2688(DIB)X +2881(and)X +3048(the)X +3194(game)X +3431(level.)X +3695(It)X +3782(knows)X +576 1104(the)N +734(pattern)X +1042(of)X +1162(evaluation)X +1604(for)X +1756(one)X +1935(of)X +2055(the)X +2213(algorithms)X +2665(we)X +2816(compared,)X +3259(namely,)X +3606(alpha-beta,)X +576 1212(mandatory)N +1023(work)X +1255(\256rst,)X +1463 0.1979(principal-variation)AX +2216(splitting,)X +2591(tree)X +2772(splitting,)X +3148(ER,)X +3331(or)X +3447(delay)X +3692(splitting.)X +576 1320(Any)N +769(of)X +877(the)X +1022(game)X +1258(modules)X +1611(we)X +1750(implemented)X +2281(can)X +2442(be)X +2560(used)X +2763(with)X +2961(any)X +3127(of)X +3234(the)X +3379(control)X +3679(modules;)X +576 1428(any)N +739(such)X +939(combination)X +1445(can)X +1603(be)X +1718(used)X +1918(with)X +2113(our)X +2265(enhanced)X +2653(DIB.)X +776 1569(Since)N +1043(DIB)X +1261(distributes)X +1715(work,)X +1989(collects)X +2337(and)X +2529(reports)X +2849(results,)X +3177(and)X +3370(passes)X +3669(messages)X +576 1677(between)N +929(processors)X +1365(in)X +1471(a)X +1545(similar)X +1844(way)X +2035(for)X +2178(all)X +2306(the)X +2455(combinations,)X +3029(we)X +3172(can)X +3337(compare)X +3700(different)X +576 1785(control)N +882(modules)X +1241(in)X +1349(a)X +1425(fairly)X +1668 0.2050(implementation-independent)AX +2811(fashion.)X +3176(Previous)X +3546(comparisons)X +576 1893(are)N +719(questionable)X +1231(because)X +1561(each)X +1763(algorithm)X +2163(was)X +2337(implemented)X +2866(in)X +2966(a)X +3034(different)X +3391(parallel)X +3706(environ-)X +576 2001(ment.)N +8 f +14 s +576 2205(3.)N +844(Parallel)X +1447(tree)X +1782(search)X +2251(algorithms)X +1 f +12 s +776 2346(The)N +953(best)X +1135(way)X +1323(to)X +1426(evaluate)X +1776(a)X +1847(parallel)X +2165(algorithm)X +2568(for)X +2708(a)X +2779(given)X +3021(problem)X +3370(is)X +3462(to)X +3565(measure)X +3914(the)X +576 2454(extent)N +844(in)X +951(which)X +1217(it)X +1302(takes)X +1531(advantage)X +1953(of)X +2064(available)X +2444(processors.)X +2928(This)X +3130(idea)X +3322(can)X +3487(be)X +3609(formulated)X +576 2562(as)N +680(follows:)X +2 f +1161 2754(speedup)N +1516(S)X +9 f +1604(=)X +2 f +1848 2823(time)N +2054(required)X +2425(by)X +2556(parallel)X +2901(algorithm)X +1705 2700(time)N +1911(required)X +2282(by)X +2413(best)X +2608(sequential)X +3044(algorithm)X +10 f +1690 2727(h)N +1709(hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh)X +2 f +1442 3045(ef\256ciency)N +1847(E)X +9 f +1946(=)X +2 f +2047 3114(number)N +2380(of)X +2511(processors)X +2966(used)X +2571 2991(S)N +10 f +2033 3018(h)N +2053(hhhhhhhhhhhhhhhhhhhhhhh)X +1 f +776 3285(It)N +866(is)X +961(not)X +1115(easy)X +1317(to)X +1423(achieve)X +1749(a)X +1823(``perfect'')X +2250(ef\256ciency)X +2661(of)X +2772(1.0.)X +2971(For)X +3136(a)X +3211(given)X +3457(sized)X +3687(problem,)X +576 3393(ef\256ciency)N +990(tends)X +1227(to)X +1335(decrease)X +1700(as)X +1813(the)X +1964(number)X +2291(of)X +2404(processors)X +2842(increases.)X +3276(This)X +3480(relationship)X +3968(is)X +576 3501(explained)N +975(by)X +1095(Kumar)X +1386(and)X +1549(Rao)X +1728([2])X +1864(as)X +1968(resulting)X +2329(from)X +2540(an)X +2655(increase)X +2995(in)X +3094(the)X +3236(communication)X +3860(time)X +576 3609(\(sum)N +798(of)X +908(the)X +1056(time)X +1258(spent)X +1491(by)X +1616(all)X +1742(processors)X +2176(in)X +2280(communicating)X +2909(with)X +3109(neighboring)X +3603(processors,)X +576 3717(waiting)N +894(for)X +1035(messages,)X +1451(time)X +1652(in)X +1756(starvation,)X +2189(and)X +2357(so)X +2471(forth\),)X +2743(while)X +2986(there)X +3208(is)X +3301(no)X +3426(change)X +3729(in)X +3834(com-)X +576 3825(putation)N +926(time)X +1132(\(sum)X +1358(of)X +1471(the)X +1622(time)X +1827(spent)X +2063(by)X +2192(all)X +2322(the)X +2473(processors)X +2911(in)X +3019(useful)X +3287(computation\).)X +3882(The)X +576 3933(relationship)N +1060(between)X +1411(communication)X +2041(time)X +2243(\()X +2 f +2275(T)X +9 s +2328 3957(cm)N +1 f +12 s +2428 3933(\),)N +2514(computation)X +3026(time)X +3228(\()X +2 f +3260(T)X +9 s +3313 3957(cp)N +1 f +12 s +3397 3933(\),)N +3483(and)X +3652(ef\256ciency)X +576 4047(\(E\))N +723(is)X +811(described)X +1204(as)X +1308(follows:)X +2 f +2045 4263(E)N +9 f +2120(=)X +2 f +2197 4332(T)N +9 s +2250 4356(cp)N +12 s +9 f +2334 4332(+)N +2 f +2387(T)X +9 s +2440 4356(cm)N +12 s +2300 4185(T)N +9 s +2353 4209(cp)N +12 s +10 f +2182 4236(h)N +2218(hhhhhhh)X +1 f +776 4527(Kumar)N +1080(and)X +1256(Rao)X +1435([2])X +1584(de\256ne)X +1856(an)X +3 f +1984(isoef\256ciency)X +2518(function)X +1 f +2896(that)X +3078(shows)X +3354(how)X +3556(the)X +3711(problem)X +576 4635(must)N +790(grow)X +1013(with)X +1210(number)X +1530(of)X +1636(processors)X +2067(to)X +2168(achieve)X +2489(the)X +2633(same)X +2857(ef\256ciency.)X +3311(They)X +3535(also)X +3716(mention)X +576 4743(that)N +759(since)X +995(most)X +1220(problems)X +1616(have)X +1836(a)X +1917(sequential)X +2346(component)X +2812(\(in)X +2957(depth-\256rst)X +3390(search,)X +3698(it)X +3790(is)X +3893(one)X +576 4851(node)N +813(expansion\),)X +1309(problem)X +1680(size)X +1880(must)X +2117(grow)X +2364(at)X +2484(least)X +2711(linearly)X +3056(to)X +3181(maintain)X +3569(a)X +3662(particular)X +576 4959(ef\256ciency.)N +776 5100(Steinberg)N +1177(and)X +1348(Solomon)X +1719([3])X +1863(blame)X +2131(the)X +2281(failure)X +2565(to)X +2672(achieve)X +2999(perfect)X +3299(ef\256ciency)X +3711(on)X +3839(three)X +576 5208(types)N +803(of)X +907(``loss''.)X +10 f +624 5349(g)N +3 f +706(Starvation)X +1162(loss)X +1 f +1311(:)X +1362(processors)X +1791(sitting)X +2056(idle)X +2225(while)X +2463(awaiting)X +2819(work)X +3040(to)X +3139(be)X +3254(given)X +3492(to)X +3591(them.)X +10 f +624 5457(g)N +3 f +706(Interference)X +1240(loss)X +1 f +1389(:)X +1442(time)X +1640(spent)X +1869(waiting)X +2184(for)X +2322(access)X +2594(to)X +2695(shared)X +2973(resources)X +3363(such)X +3566(as)X +3673(the)X +3818(set)X +3952(of)X +706 5565(un\256nished)N +1130(subproblems.)X +10 f +624 5673(g)N +3 f +706(Speculative)X +1201(loss)X +1 f +1350(:)X +1402(time)X +1599(spent)X +1828(performing)X +2287(unnecessary)X +2783(work,)X +3030(such)X +3232(as)X +3338(that)X +3509(performed)X +3936(by)X +706 5781(a)N +792(parallel)X +1125(algorithm)X +1543(before)X +1832(it)X +1929(is)X +2036(possible)X +2394(to)X +2512(determine)X +2941(that)X +3129(the)X +3289(work)X +3528(is)X +3634(necessary.)X + +4 p +%%Page: 4 4 +12 s 0 xH 0 xS 1 f +10 s +3 f +576 474(Game-tree)N +963(search)X +3992(4)X +1 f +12 s +706 780(Because)N +1059(a)X +1134(parallel)X +1456(algorithm)X +1863(must)X +2082(evaluate)X +2436(different)X +2800(nodes)X +3056(simultaneously,)X +3695(informa-)X +706 888(tion)N +893(gained)X +1187(by)X +1319(evaluation)X +1757(of)X +1873(one)X +2048(node)X +2271(could)X +2521(come)X +2766(too)X +2925(late)X +3101(to)X +3212(cut)X +3366(off)X +3514(evaluation)X +3952(of)X +706 996(other)N +928(nodes.)X +8 f +14 s +576 1200(3.1.)N +978(Alpha-beta)X +1 f +12 s +776 1341(The)N +966(alpha-beta)X +1408(algorithm)X +1823(is)X +1927(a)X +2010(sequential)X +2441(technique)X +2857(used)X +3074(to)X +3190(evaluate)X +3553(a)X +3637(game)X +3887(tree)X +576 1449(ef\256ciently.)N +1050(The)X +1235(nodes)X +1494(corresponding)X +2079(to)X +2189(the)X +2342(\256rst)X +2526(player's)X +2871(moves)X +3157(are)X +3309(called)X +3 f +3574(max)X +1 f +3784(nodes,)X +576 1557(and)N +744(the)X +891(other)X +1119(nodes)X +1373(are)X +1521(called)X +3 f +1782(min)X +1 f +1972(nodes.)X +2274(The)X +2454(value)X +2693(of)X +2803(a)X +2876(max)X +3072(node)X +3289(is)X +3383(the)X +3531(maximum)X +3952(of)X +576 1665(the)N +719(value)X +953(of)X +1058(its)X +1174(children,)X +1539(where)X +1799(as)X +1904(the)X +2047(value)X +2281(of)X +2386(a)X +2454(min)X +2629(node)X +2841(is)X +2930(the)X +3073(minimum)X +3473(of)X +3577(the)X +3719(value)X +3952(of)X +576 1773(its)N +714(children.)X +1125(The)X +1322(value)X +1578(of)X +1705(a)X +1795(leaf)X +1987(is)X +2098(determined)X +2579(by)X +2723(a)X +2814(game-speci\256c)X +3397(static)X +3649(evaluator.)X +576 1881(Alpha-beta)N +1034(ignores)X +1347(branches)X +1719(that)X +1894(are)X +2042(certain)X +2335(not)X +2488(to)X +2593(contribute)X +3014(to)X +3118(the)X +3265(value)X +3503(of)X +3612(the)X +3759(current)X +576 1989(node.)N +835(Figure)X +1110(1)X +1183(shows)X +1447(a)X +1515(sample)X +1813(game)X +2047(tree)X +2217(with)X +2413(a)X +2481(cutoff.)X +2784(In)X +2889(this)X +3053(\256gure,)X +3326(node)X +2 f +3538(z)X +1 f +3591(,)X +3640(which)X +3900(is)X +3989(a)X +576 2097(max)N +766(node,)X +1001(has)X +1153(two)X +1321(children,)X +1685(and)X +1848(its)X +1963(\256rst)X +2136(child)X +2353(is)X +2441(evaluated)X +2835(to)X +2934(9.)X +3054(Therefore,)X +1184 2238(value\()N +2 f +1425(z)X +1 f +1478(\))X +1534(=)X +1612(max{9,)X +1920(value\()X +2 f +2161(y)X +1 f +2220(\)})X +576 2379(where)N +2 f +845(y)X +1 f +939(is)X +1038(the)X +1191(other)X +1424(child)X +1652(of)X +2 f +1767(z)X +1 f +1820(.)X +1903(Now)X +2124(if)X +2218(the)X +2371(\256rst)X +2555(child)X +2783(\(we)X +2962(will)X +3147(often)X +3380(call)X +3555(it)X +3644(the)X +3 f +3797(eldest)X +1 f +576 2487(child\))N +825(of)X +2 f +929(y)X +1 f +1012(is)X +1100(evaluated)X +1494(to)X +1593(7)X +1665(then)X +1184 2628(value\()N +2 f +1425(y)X +1 f +1484(\))X +1540(=)X +1618(min{7,)X +1910(...})X +576 2769(so)N +688(the)X +833(value)X +1069(of)X +2 f +1176(z)X +1 f +1256(is)X +1347(9)X +1423(regardless)X +1841(of)X +1949(the)X +2095(value)X +2332(of)X +2 f +2440(y)X +1 f +2499(.)X +2575(It)X +2662(follows)X +2978(that)X +3151(the)X +3297(remaining)X +3716(children)X +576 2877(of)N +680(the)X +822(node)X +2 f +1033(y)X +1 f +1116(need)X +1322(not)X +1469(be)X +1584(evaluated.)X +2026(Ignoring)X +2381(those)X +2608(children)X +2948(is)X +3036(called)X +3 f +3291(shallow)X +3624(cutoff)X +1 f +3864(.)X +776 3018(Figure)N +1073(2)X +1167(illustrates)X +1588(another)X +1923(type)X +2135(of)X +2261(cutoff.)X +2585(After)X +2834(the)X +2998(eldest)X +3269(child)X +3508(of)X +3634(node)X +2 f +3868(z)X +1 f +3968(is)X +576 3126(evaluated,)N +1009(we)X +1160(see)X +1322(that)X +2 f +1506(z)X +1 f +1559('s)X +1667(value)X +1915(will)X +2104(be)X +2234(greater)X +2540(than)X +2744(or)X +2862(equal)X +3109(to)X +3222(9.)X +3356(This)X +3565(value)X +3812(is)X +3914(the)X +576 3234(current)N +876(lower)X +1122(bound)X +1389(in)X +1491(the)X +1636(alpha-beta)X +2065(algorithm.)X +2515(The)X +2692(value)X +2928(of)X +3035(a)X +3 f +3105(min)X +1 f +3292(node)X +3506(in)X +3608(the)X +3754(subtree)X +576 3342(rooted)N +853(at)X +954(node)X +2 f +1172(y)X +1 f +1262(must)X +1479(be)X +1600(greater)X +1898(than)X +2094(9)X +2172(in)X +2277(order)X +2510(for)X +2652(the)X +2800(lower)X +3049(bound)X +3319(to)X +3424(change.)X +3775(There-)X +576 3450(fore,)N +779(when)X +1011(the)X +1154(algorithm)X +1554(reaches)X +1868(node)X +2 f +2080(w)X +1 f +2185(\(a)X +2285(min)X +2460(node\))X +2704(and)X +2868(its)X +2984(\256rst)X +3158(child)X +3376(is)X +3465(evaluated)X +3860(to)X +3960(7,)X +576 3558(the)N +719(evaluation)X +1146(of)X +1250(the)X +1392(remaining)X +1807(children)X +2147(can)X +2305(be)X +2420(avoided.)X +2797(This)X +2992(cutoff)X +3246(is)X +3334(called)X +3589(a)X +3 f +3656(deep)X +3872(cut-)X +576 3666(off)N +1 f +712(because)X +1041(the)X +1183(node)X +2 f +1394(w)X +1 f +1498(is)X +1586(more)X +1808(than)X +1998(one)X +2161(ply)X +2308(below)X +2567(the)X +2709(node)X +2 f +2920(z)X +1 f +2973(.)X +776 3807(Following)N +1198(Fishburn)X +1563([4],)X +1726(we)X +1865(present)X +2170(the)X +2315(following)X +2716(Pascal-like)X +3166(code)X +3376(of)X +3484(the)X +3630(alpha-beta)X +576 3915(algorithm,)N +999(as)X +1103(adapted)X +1427(from)X +1638(Knuth)X +1902(and)X +2065(Moore)X +2345([5]:)X +1584 4399 MXY +1 setlinewidth +2023 4462 MXY +125 Dc +1584 4775 MXY +125 Dc +2524 MX +125 Dc +2023 5150 MXY +125 Dc +2899 MX +125 Dc +1695 4735 MXY +346 -229 Dl +2140 4491 MXY +396 246 Dl +2540 4817 MXY +-415 285 Dl +1584 4817 MXY +[64 32] 0 setdash +2635 4813 MXY +296 283 Dl +5 f +2061 4502(z)N +2562 4815(y)N +1621 4940(9)N +2059 5316(7)N +1584 5276 MXY +3 setlinewidth +[] 0 setdash +3 f +1821 5448(Figure)N +1 f +2118(1:)X +2217(Shallow)X +2556(cutoff)X + +5 p +%%Page: 5 5 +12 s 0 xH 0 xS 1 f +10 s +3 f +576 474(Game-tree)N +963(search)X +3992(5)X +1 f +12 s +1440 876 MXY +1 setlinewidth +1951 955 MXY +157 Dc +1519 1269 MXY +157 Dc +2540 MX +157 Dc +2147 1740 MXY +157 Dc +3011 MX +157 Dc +1794 2094 MXY +157 Dc +2501 MX +157 Dc +1440 2604 MXY +157 Dc +2147 MX +157 Dc +1636 1201 MXY +336 -193 Dl +2092 1002 MXY +458 229 Dl +2661 1335 MXY +369 355 Dl +2572 1333 MXY +-311 337 Dl +2281 1796 MXY +233 254 Dl +2179 1803 MXY +-266 223 Dl +1440 1803 MXY +[64 32] 0 setdash +1904 2166 MXY +273 377 Dl +1440 2166 MXY +[] 0 setdash +1833 2162 MXY +-291 367 Dl +5 f +2006 995(z)N +2595 1309(y)N +2202 1780(x)N +1838 2134(w)N +1572 1466(9)N +1493 2801(7)N +1440 2761 MXY +3 setlinewidth +3 f +1877 2933(Figure)N +1 f +2174(2:)X +2273(Deep)X +2500(cutoff)X +3 f +10 s +576 3119(function)N +7 f +908(alphabeta\(z)X +1484(:)X +1580(position;)X +2 f +12 s +9 f +2060(a)X +7 f +10 s +2120(,)X +2 f +12 s +9 f +2216(b)X +7 f +10 s +2317(:)X +2413(integer\):integer;)X +3 f +864 3209(var)N +7 f +1152 3299(Answer,)N +1536(Child,)X +1872(t,)X +2016(d)X +2112(:)X +2208(integer;)X +3 f +864 3389(begin)N +7 f +1152 3479(determine)N +1632(the)X +1824(child)X +2112(positions)X +2 f +12 s +2592(z)X +1 f +9 s +2641 3503(1)N +7 f +10 s +3479(,...,)Y +2 f +12 s +2965(z)X +9 s +3002 3503(d)N +3 f +10 s +1152 3575(if)N +7 f +1249(d)X +1345(=)X +1441(0)X +3 f +1537(then)X +1440 3665(return)N +7 f +1663(\(StaticValue\(z\)\))X +3 f +1152 3755(else)N +1440 3845(begin)N +7 f +1440 3935(Answer)N +1776(:=)X +2 f +12 s +9 f +1920(a)X +7 f +10 s +2028(;)X +3 f +1440 4025(for)N +7 f +1591(Child)X +1879(:=)X +2023(1)X +3 f +2119(to)X +7 f +2234(d)X +3 f +2330(do)X +1728 4115(begin)N +7 f +1728 4205(t)N +1824(:=)X +1968(-alphabeta\()X +2 f +12 s +(z)S +9 s +2533 4229(Child)N +7 f +10 s +2709 4205(,)N +2805(-)X +2 f +12 s +9 f +(b)S +7 f +10 s +2906(,)X +3002(-Answer\);)X +3 f +1728 4301(if)N +7 f +1825(t)X +1921(>)X +2017(Answer)X +3 f +2353(then)X +7 f +2016 4391(Answer)N +2352(:=)X +2496(t;)X +3 f +1728 4481(if)N +7 f +1825(Answer)X +2 f +12 s +9 f +2161(\263)X +2238(b)X +3 f +10 s +2339(then)X +2016 4571(return)N +7 f +2239(\(Answer\);)X +2719({cutoff})X +3 f +1728 4661(end)N +7 f +1852(;)X +3 f +1440 4751(return)N +7 f +1663(\(Answer\);)X +3 f +1440 4841(end)N +7 f +1564(;)X +3 f +864 4931(end)N +7 f +988(.)X +1 f +12 s +576 5105(The)N +750(alpha-beta)X +1176(algorithm)X +1575(satis\256es)X +1903(the)X +2045(following)X +2443(conditions)X +2868([5]:)X +896 5246(if)N +979(negamax\()X +2 f +1359(z)X +1 f +1412(\))X +2 f +9 f +1468(\243)X +1545(a)X +1 f +2048(then)X +2238(alphabeta\()X +2 f +2640(z)X +1 f +2693(,)X +2 f +9 f +2741(a)X +1 f +2801(,)X +2 f +9 f +2849(b)X +1 f +2902(\))X +2 f +9 f +2958(\243)X +3035(a)X +1 f +3095(,)X +896 5354(if)N +2 f +9 f +979(a)X +1 f +1063(<)X +1141(negamax\()X +2 f +1521(z)X +1 f +1574(\))X +1630(<)X +2 f +9 f +1708(b)X +1 f +2048(then)X +2238(alphabeta\()X +2 f +2640(z)X +1 f +2693(,)X +2 f +9 f +2741(a)X +1 f +2801(,)X +2 f +9 f +2849(b)X +1 f +2902(\))X +2958(=)X +3036(negamax\()X +2 f +3416(z)X +1 f +3469(\),)X +896 5462(if)N +979(negamax\()X +2 f +1359(z)X +1 f +1412(\))X +2 f +9 f +1468(\263)X +1545(b)X +1 f +2048(then)X +2238(alphabeta\()X +2 f +2640(z)X +1 f +2693(,)X +2 f +9 f +2741(a)X +1 f +2825(,)X +2 f +9 f +2873(b)X +1 f +2926(\))X +2 f +9 f +2982(\263)X +3059(b)X +1 f +3112(.)X +576 5603(These)N +830(conditions)X +1255(imply)X +1504(that)X + +6 p +%%Page: 6 6 +12 s 0 xH 0 xS 1 f +10 s +3 f +576 474(Game-tree)N +963(search)X +3992(6)X +1 f +12 s +896 780(alphabeta\()N +2 f +1298(z)X +1 f +1351(,)X +2 f +9 f +1399(-\245)X +1 f +1521(,)X +2 f +9 f +1569(\245)X +1 f +1638(\))X +1694(=)X +1772(negamax\()X +2 f +2152(z)X +1 f +2205(\))X +2261(,)X +576 921(which)N +839(means)X +1113(that)X +1287(if)X +1375(the)X +1522(initial)X +1777(window)X +2115([alpha,)X +2409(beta])X +2631(is)X +2724(\()X +2 f +9 f +2756(-\245)X +1 f +2878(,)X +2 f +9 f +2931(\245)X +1 f +3000(\))X +3061(then)X +3256(the)X +3403(alpha-beta)X +3834(algo-)X +576 1029(rithm)N +818(returns)X +1118(the)X +1269(same)X +1500(value)X +1742(as)X +1855(the)X +2006(negamax)X +2387(algorithm)X +2795(\(straightforward)X +3453 0.2321(tree-evaluation)AX +576 1137(algorithm)N +975(that)X +1144(never)X +1382(cuts)X +1561(work)X +1782(off\))X +1950([5].)X +776 1278(The)N +959(performance)X +1479(of)X +1593(the)X +1745(alpha-beta)X +2181(algorithm)X +2590(depends)X +2939(a)X +3016(great)X +3243(deal)X +3438(on)X +3568(the)X +3720(order)X +3957(in)X +576 1386(which)N +838(children)X +1181(of)X +1288(a)X +1358(node)X +1572(are)X +1717(expanded.)X +2161(If)X +2252(the)X +2397(children)X +2740(of)X +2847(each)X +3050(node)X +3263(in)X +3364(the)X +3508(game)X +3743(tree)X +3914(are)X +576 1494(expanded)N +972(in)X +1074(increasing)X +1497(order)X +1727(of)X +1834(their)X +2038(negamax)X +2413(values,)X +2710(then)X +2904(the)X +3050(largest)X +3335(number)X +3657(of)X +3765(cutoffs)X +576 1602(will)N +750(occur.)X +776 1743(Knuth)N +1049(and)X +1221(Moore)X +1501([5])X +1646(introduced)X +2091(the)X +2242(idea)X +2436(of)X +3 f +2549(critical)X +2872(nodes)X +1 f +3139(in)X +3247(their)X +3457(analysis)X +3800(of)X +3914(the)X +576 1851(best)N +764(case)X +963(of)X +1075(the)X +1225(alpha-beta)X +1659(algorithm,)X +2090(and)X +2261(Steinberg)X +2662(and)X +2833(Solomon)X +3204([3])X +3348(use)X +3508(the)X +3658(following)X +576 1959(rules)N +787(to)X +886(determine)X +1296(the)X +1438(critical)X +1731(nodes:)X +10 f +624 2100(g)N +1 f +706(The)X +880(root)X +1059(of)X +1163(the)X +1305(game)X +1538(tree)X +1707(is)X +1795(a)X +1862(type-1)X +2132(node.)X +10 f +624 2208(g)N +1 f +706(The)X +880(eldest)X +1129(child)X +1346(of)X +1450(a)X +1517(type-1)X +1787(node)X +1998(is)X +2086(also)X +2265(type-1.)X +2583(The)X +2757(remaining)X +3172(children)X +3512(are)X +3654(type-2.)X +10 f +624 2316(g)N +1 f +706(The)X +880(eldest)X +1129(child)X +1346(of)X +1450(a)X +1517(type-2)X +1787(node)X +1998(is)X +2086(a)X +2153(type-3)X +2423(node.)X +10 f +624 2424(g)N +1 f +706(All)X +853(children)X +1193(of)X +1297(a)X +1364(type-3)X +1634(node)X +1845(are)X +1987(type-2.)X +10 f +624 2532(g)N +1 f +706(A)X +799(node)X +1010(is)X +1098(critical)X +1391(iff)X +1506(it)X +1584(is)X +1672(assigned)X +2027(a)X +2094(number)X +2412(by)X +2532(the)X +2674(above)X +2928(rules.)X +776 2673(The)N +954(critical)X +1251(nodes)X +1503(form)X +1718(a)X +1789(minimal)X +2139(subtree)X +2441([3])X +2581(of)X +2689(the)X +2835(game)X +3072(tree)X +3245(which,)X +3533(regardless)X +3952(of)X +576 2781(the)N +743(values)X +1038(of)X +1167(the)X +1333(terminal)X +1703(nodes,)X +1999(will)X +2197(always)X +2512(be)X +2651(examined)X +3074(by)X +3218(the)X +3384(alpha-beta)X +3834(algo-)X +576 2889(rithm)N +809([5].)X +995(The)X +1171(number)X +1491(of)X +1598(terminal)X +1947(nodes)X +2198(in)X +2300(the)X +2445(minimal)X +2794(subtree)X +3099(of)X +3206(a)X +3276(complete)X +2 f +3657(d)X +1 f +(-ary)S +3887(tree)X +576 2997(of)N +680(height)X +2 f +945(h)X +1 f +1017(is)X +2 f +2147 3153(d)N +9 s +10 f +2219 3114(R)N +2 f +(h)S +2285(/)X +1 f +(2)S +2 f +10 f +2353(H)X +12 s +9 f +3153(+)Y +2 f +2424(d)X +9 s +10 f +2496 3114(Q)N +2 f +(h)S +2562(/)X +1 f +(2)S +2 f +10 f +2630(P)X +12 s +9 f +3153(-)Y +1 f +2701(1)X +576 3309(If)N +673(the)X +824(tree)X +1002(is)X +1099(examined)X +1507(in)X +1615(increasing)X +2044(order)X +2280(of)X +2394(value,)X +2661(the)X +2813(alpha-beta)X +3249(procedure)X +3668(examines)X +576 3417(precisely)N +949(the)X +1092(minimal)X +1438(subtree)X +1740(of)X +1844(the)X +1986(game)X +2219(tree.)X +2436(In)X +2540(short,)X +2780(alpha-beta)X +3206(examines)X +3594(about)X +3832(2)X +2 f +(n)S +1 f +9 s +3940 3378(1)N +2 f +(/)S +1 f +(2)S +12 s +576 3525(nodes,)N +848(where)X +1107(negamax)X +1479(would)X +1743(examine)X +2 f +2094(n)X +1 f +2182(nodes.)X +8 f +14 s +576 3729(3.2.)N +978(Mandatory)X +1648(work)X +1983(first)X +2385(\(MWF\))X +1 f +12 s +776 3870(This)N +974(algorithm)X +1376(was)X +1552(proposed)X +1931(by)X +2054(Akl,)X +2250(Barnard,)X +2612(and)X +2779(Doran)X +3047(as)X +3155(a)X +3226(parallel)X +3544(implementa-)X +576 3978(tion)N +762(of)X +878(alpha-beta)X +1316(without)X +1646(deep)X +1864(cutoffs.)X +2215(The)X +2401(name)X +2646(MWF)X +2910(was)X +3094(coined)X +3386(by)X +3517(Fishburn)X +3893(and)X +576 4086(Finkel.)N +908(MWF)X +1175(evaluates)X +1573(critical)X +1881(nodes)X +2144(concurrently)X +2670(and)X +2848(then)X +3053(returns)X +3359(to)X +3473(evaluate)X +3834(other)X +576 4194(nodes)N +838(if)X +935(needed)X +1232([6,)X +1352(7].)X +1518(When)X +1786(deep)X +2006(cutoffs)X +2311(are)X +2467(not)X +2628(considered)X +3083(in)X +3195(the)X +3350(search)X +3633(algorithm,)X +576 4302(only)N +771(type-1)X +1041(and)X +1204(type-2)X +1474(nodes)X +1722(are)X +1864(critical,)X +2181(as)X +2285(shown)X +2559(in)X +2658(Figure)X +2933(3.)X +776 4443(MWF)N +1032(evaluates)X +1418(type-1)X +1691(nodes)X +1942(completely,)X +2423(but)X +2574(only)X +2773(evaluates)X +3160(type-2)X +3434(nodes)X +3686(partially.)X +576 4551(After)N +814(the)X +967(eldest)X +1227(child)X +1455(of)X +1570(a)X +1648(type-1)X +1929(node)X +2150(\(also)X +2371(type-1\))X +2683(has)X +2845(been)X +3061(evaluated,)X +3489(the)X +3641(remaining)X +576 4659(children)N +916(\(all)X +1069(type-2\))X +1371(are)X +1513(completely)X +1966(evaluated)X +2360(only)X +2555(if)X +2639(the)X +2782(result)X +3021(of)X +3126(the)X +3269(partial)X +3541(evaluation)X +3968(is)X +576 4767(not)N +727(suf\256cient)X +1113(to)X +1216(cut)X +1361(them)X +1581(off.)X +1768(All)X +1918(evaluations)X +2384(currently)X +2759(allowed)X +3091(by)X +3214(MWF)X +3470(may)X +3663(be)X +3781(under-)X +576 4875(taken)N +809(simultaneously.)X +776 5016(Akl,)N +971(Barnard,)X +1332(and)X +1498(Doran)X +1762([6])X +1901(tested)X +2153(MWF)X +2409(with)X +2607(game)X +2844(trees)X +3054(of)X +3162(depth)X +3404(4)X +3480(and)X +3647(branching)X +576 5124(factors)N +875(of)X +992(5,)X +1101(10,)X +1258(15)X +1391(and)X +1567(20.)X +1748(They)X +1983(noticed)X +2304(that)X +2486(MWF)X +2752(has)X +2917(a)X +2997(better)X +3254(ef\256ciency)X +3670(when)X +3914(the)X +576 5232(game)N +818(tree)X +996(has)X +1157(a)X +1233(larger)X +1491(fanout,)X +1794(but)X +1950(found)X +2207(that)X +2385(the)X +2536(speedup)X +2884(reaches)X +3206(a)X +3282(plateau)X +3595(around)X +3896(six.)X +576 5340(The)N +765(total)X +976(number)X +1309(of)X +1428(nodes)X +1691(visited)X +1987(as)X +2106(well)X +2311(as)X +2429(the)X +2585(number)X +2917(of)X +3035(terminal)X +3395(nodes)X +3657(examined)X +576 5448(showed)N +903(an)X +1028(increase)X +1378(with)X +1584(increasing)X +2015(number)X +2344(of)X +2459(processors,)X +2923(but)X +3081(the)X +3234(plateau)X +3548(was)X +3732(reached)X +576 5556(much)N +814(faster.)X +776 5697(Fishburn)N +1141([4])X +1282(analyzed)X +1654(MWF)X +1912(for)X +2053(best-\256rst)X +2418(and)X +2586(worst-\256rst)X +3010(ordering)X +3366(of)X +3476(the)X +3624(game)X +3863(tree.)X +576 5805(In)N +688(the)X +838(best-\256rst)X +1206(ordering,)X +1588(MWF)X +1849(is)X +1945(almost)X +2234(optimal,)X +2585(since)X +2815(its)X +2938(ef\256ciency)X +3350(is)X +3446(very)X +3649(close)X +3878(to)X +3984(1)X + +7 p +%%Page: 7 7 +12 s 0 xH 0 xS 1 f +10 s +3 f +576 474(Game-tree)N +963(search)X +3992(7)X +1 f +12 s +577 876 MXY +1 setlinewidth +2284 MY +127 Dc +831 MX +127 Dc +703 MX +127 Dc +703 1836 MXY +127 Dc +959 2284 MXY +127 Dc +1215 MX +127 Dc +1087 MX +127 Dc +1343 MX +127 Dc +1599 MX +127 Dc +1471 MX +127 Dc +1727 MX +127 Dc +1983 MX +127 Dc +1855 MX +127 Dc +1855 1836 MXY +127 Dc +2111 2284 MXY +127 Dc +2367 MX +127 Dc +2239 MX +127 Dc +2495 MX +127 Dc +2751 MX +127 Dc +2623 MX +127 Dc +2623 1836 MXY +127 Dc +2239 MX +127 Dc +2879 2284 MXY +127 Dc +3135 MX +127 Dc +3007 MX +127 Dc +3007 1836 MXY +127 Dc +3263 2284 MXY +127 Dc +3519 MX +127 Dc +3391 MX +127 Dc +3647 MX +127 Dc +3903 MX +127 Dc +3775 MX +127 Dc +3775 1836 MXY +127 Dc +3391 MX +127 Dc +2239 940 MXY +127 Dc +3400 1357 MXY +-1046 -377 Dl +1207 1357 MXY +1046 -377 Dl +1087 1388 MXY +127 Dc +1119 1443 MXY +-325 335 Dl +1151 1452 MXY +0 320 Dl +1184 1443 MXY +325 335 Dl +2271 1443 MXY +-325 335 Dl +577 1443 MXY +[16] 0 setdash +2303 1452 MXY +0 320 Dl +2336 1443 MXY +325 335 Dl +577 1443 MXY +[] 0 setdash +3423 MX +-325 335 Dl +577 1443 MXY +[16] 0 setdash +3455 1452 MXY +0 320 Dl +3488 1443 MXY +325 335 Dl +577 1443 MXY +[] 0 setdash +2303 1324 MXY +0 -320 Dl +767 1900 MXY +0 320 Dl +753 1899 MXY +-101 323 Dl +782 1899 MXY +101 323 Dl +1137 1899 MXY +-101 323 Dl +577 1899 MXY +[16] 0 setdash +1166 MX +101 323 Dl +577 1899 MXY +[] 0 setdash +1521 MX +-101 323 Dl +577 1899 MXY +[16] 0 setdash +1550 MX +101 323 Dl +577 1899 MXY +[] 0 setdash +1905 MX +-101 323 Dl +1934 1899 MXY +101 323 Dl +577 1899 MXY +[16] 0 setdash +2289 MX +-101 323 Dl +2318 1899 MXY +101 323 Dl +2673 1899 MXY +-101 323 Dl +2702 1899 MXY +101 323 Dl +577 1899 MXY +[] 0 setdash +3057 MX +-101 323 Dl +3086 1899 MXY +101 323 Dl +577 1899 MXY +[16] 0 setdash +3441 MX +-101 323 Dl +3470 1899 MXY +101 323 Dl +3825 1899 MXY +-101 323 Dl +3854 1899 MXY +101 323 Dl +577 1899 MXY +[] 0 setdash +1471 1836 MXY +127 Dc +1087 MX +127 Dc +577 MX +[16] 0 setdash +1151 1900 MXY +0 320 Dl +1535 1900 MXY +0 320 Dl +2303 1900 MXY +0 320 Dl +2687 1900 MXY +0 320 Dl +3455 1900 MXY +0 320 Dl +3839 1900 MXY +0 320 Dl +577 1900 MXY +[] 0 setdash +2239 1388 MXY +127 Dc +3391 MX +127 Dc +1919 1900 MXY +0 320 Dl +5 f +2277 980(1)N +1125 1428(1)N +741 1876(1)N +614 2324(1)N +997(1)X +1765(1)X +1893 1876(1)N +3045(1)X +2917 2324(1)N +2277 1428(2)N +3429(2)X +1125 1876(2)N +1509(2)X +741 2324(2)N +869(2)X +1893(2)X +2021(2)X +3045(2)X +3173(2)X +1381(1)X +3071 1900 MXY +0 320 Dl +577 2348 MXY +3 setlinewidth +3 f +1059 2520(Figure)N +1 f +1356(3:)X +1455(Minimal)X +1811(subtree)X +2113(when)X +2345(deep)X +2551(cutoffs)X +2842(are)X +2984(not)X +3131(considered)X +576 2724(when)N +808(a)X +875(large)X +1092(number)X +1410(of)X +1514(processors)X +1943(is)X +2031(used.)X +2279(For)X +2437(the)X +2580(worst-\256rst)X +2999(ordering,)X +3374(Fishburn)X +3740(used)X +3941(an)X +576 2832(example)N +929(game)X +1163(tree)X +1333(of)X +1438(degree)X +1720(38)X +1841(and)X +2005(processor)X +2398(tree)X +2568(of)X +2673(fanout)X +2944(2)X +3017(to)X +3117(predict)X +3410(that)X +3580(speedup)X +3920(for)X +576 2940(MWF)N +829(will)X +1003(satisfy)X +2 f +1985 3096(p)N +1 f +9 s +2045 3057(0.93)N +2 f +12 s +9 f +2195 3096(\243)N +2 f +2272(S)X +9 f +2360(\243)X +2 f +2437(p)X +1 f +9 s +2497 3057(0.96)N +12 s +576 3252(where)N +2 f +835(p)X +1 f +923(is)X +1011(the)X +1153(number)X +1471(of)X +1575(processors.)X +2052(This)X +2247(result)X +2485(is)X +2573(almost)X +2854(as)X +2958(good)X +3174(as)X +3278(tree-splitting.)X +8 f +14 s +576 3456(3.3.)N +978(The)X +1246(tree-splitting)X +2251(algorithm)X +1 f +12 s +776 3597(Fishburn)N +1154(proposed)X +1543(this)X +1719(method)X +2045(as)X +2162(a)X +2242(natural)X +2547(parallel)X +2874(way)X +3071(to)X +3184(implement)X +3635(the)X +3791(alpha-)X +576 3705(beta)N +771(algorithm.)X +1228(The)X +1412(tree-splitting)X +1939(algorithm)X +2348(splits)X +2585(the)X +2736(game)X +2978(tree)X +3156(into)X +3339(its)X +3463(subtrees)X +3811(at)X +3914(the)X +576 3813(root)N +765(node,)X +1010(and)X +1183(each)X +1394(subtree)X +1706(is)X +1804(assigned)X +2169(to)X +2278(a)X +2355(pool)X +2560(of)X +2674(processors)X +3114(for)X +3261(evaluation)X +3687([4].)X +3882(The)X +576 3921(pool)N +788(will)X +979(evaluate)X +1342(the)X +1501(subtree)X +1820(in)X +1936(parallel)X +2267(if)X +2367(it)X +2462(has)X +2631(more)X +2870(than)X +3077(one)X +3257(processor.)X +3714(In)X +3834(other)X +576 4029(words,)N +860(the)X +1004(game)X +1239(tree)X +1410(is)X +1500(mapped)X +1831(to)X +1932(a)X +2001(processor)X +2395(tree.)X +2614(as)X +2720(shown)X +2996(in)X +3097(Figure)X +3374(4.)X +3497(Here)X +3711(we)X +3850(have)X +576 4137(a)N +646(binary)X +919(tree)X +1090(of)X +1196(processors)X +1627(with)X +1824(height)X +2091(two)X +2261(\(connected)X +2710(by)X +2832(heavy)X +3088(arcs\))X +3301(mapped)X +3632(onto)X +3829(a)X +3898(ter-)X +576 4245(nary)N +772(game)X +1006(tree.)X +1224(When)X +1479(there)X +1697(are)X +1840(more)X +2063(branches)X +2430(in)X +2530(the)X +2673(game)X +2907(tree)X +3077(than)X +3268(there)X +3486(are)X +3629(in)X +3729(the)X +3872(pro-)X +576 4353(cessor)N +851(tree,)X +1055(the)X +1208(extra)X +1436(game)X +1679(tree)X +1858(branches)X +2234(are)X +2386(queued)X +2698(and)X +2871(assigned)X +3236(to)X +3345(a)X +3422(processor)X +3824(when)X +576 4461(one)N +739(becomes)X +1100(available.)X +776 4602(All)N +930(interior)X +1245(processors)X +1681(in)X +1787(the)X +1937(tree)X +2114(of)X +2226(processors)X +2663(are)X +2813(both)X +3016(masters)X +3342(and)X +3513(slaves)X +3780(except)X +576 4710(the)N +728(root)X +917(processor,)X +1343(which)X +1612(is)X +1710(only)X +1915(a)X +1992(master.)X +2331(All)X +2488(the)X +2640(leaf)X +2819(processors)X +3258(are)X +3410(slaves.)X +3726(When)X +3989(a)X +576 4818(slave)N +804(processor)X +1202(\256nishes)X +1526(the)X +1675(search)X +1952(of)X +2063(its)X +2185(assigned)X +2547(subtree,)X +2880(it)X +2965(reports)X +3263(the)X +3412(value)X +3652(computed)X +576 4926(to)N +690(its)X +820(master.)X +1164(When)X +1433(a)X +1515(master)X +1811(processor)X +2218(receives)X +2573(a)X +2655(response)X +3030(from)X +3256(one)X +3434(of)X +3552(its)X +3681(slaves,)X +3978(it)X +576 5034(updates)N +896(its)X +1013(alpha-beta)X +1441(window)X +1776(and)X +1941(informs)X +2266(the)X +2410(other)X +2634(working)X +2980(slaves)X +3241(of)X +3347(this)X +3512(new)X +3699(window.)X +576 5142(The)N +752(new)X +938(window)X +1273(may)X +1465(allow)X +1705(the)X +1849(remaining)X +2266(work)X +2489(under)X +2734(the)X +2878(master)X +3161(to)X +3261(be)X +3377(cutoff.)X +3680(When)X +3935(all)X +576 5250(the)N +723(slaves)X +987(have)X +1198(\256nished,)X +1555(either)X +1804(by)X +1929(cutoff)X +2188(or)X +2298(by)X +2424(reporting)X +2807(their)X +3014(values,)X +3314(the)X +3462(master)X +3749(proces-)X +576 5358(sor)N +717(can)X +875(compute)X +1231(the)X +1373(value)X +1606(of)X +1710(its)X +1825(own)X +2014(position.)X +776 5499(Fishburn)N +1141([4])X +1280(calculates)X +1689(the)X +1835(speedup)X +2178(for)X +2318(the)X +2464(tree-splitting)X +2985(algorithm)X +3388(for)X +3528(two)X +3700(different)X +576 5607(orderings)N +978(of)X +1097(the)X +1254(game)X +1502(tree.)X +1734(Worst-\256rst)X +2189(ordering)X +2554(produces)X +2940(no)X +3075(alpha-beta)X +3516(cutoffs.)X +3870(It)X +3968(is)X +576 5715(achieved)N +947(by)X +1071(sorting)X +1366(all)X +1491(children)X +1835(of)X +1943(all)X +2068(nodes)X +2320(so)X +2433(that)X +2607(whenever)X +3010(the)X +3157(call)X +3326(alphabeta\()X +2 f +3728(z)X +1 f +3781(,)X +2 f +9 f +3834(a)X +1 f +3894(,)X +2 f +9 f +3947(b)X +1 f +4000(\))X + +8 p +%%Page: 8 8 +12 s 0 xH 0 xS 1 f +10 s +3 f +576 474(Game-tree)N +963(search)X +3992(8)X +1 f +12 s +577 876 MXY +1 setlinewidth +1215 2284 MXY +127 Dc +1087 MX +127 Dc +1343 MX +127 Dc +1599 MX +127 Dc +1471 MX +127 Dc +2111 MX +127 Dc +2367 MX +127 Dc +2239 MX +127 Dc +2495 MX +127 Dc +2751 MX +127 Dc +2623 MX +127 Dc +2623 1836 MXY +127 Dc +2239 MX +127 Dc +3263 2284 MXY +127 Dc +3519 MX +127 Dc +3391 MX +127 Dc +3647 MX +127 Dc +3903 MX +127 Dc +3775 MX +127 Dc +3775 1836 MXY +127 Dc +3391 MX +127 Dc +3400 1357 MXY +-1046 -377 Dl +577 1357 MXY +10 setlinewidth +1207 MX +1046 -377 Dl +1119 1443 MXY +-325 335 Dl +1151 1452 MXY +0 320 Dl +577 1452 MXY +1 setlinewidth +1184 1443 MXY +325 335 Dl +577 1443 MXY +10 setlinewidth +2271 MX +-325 335 Dl +2303 1452 MXY +0 320 Dl +577 1452 MXY +1 setlinewidth +2336 1443 MXY +325 335 Dl +3423 1443 MXY +-325 335 Dl +3455 1452 MXY +0 320 Dl +3488 1443 MXY +325 335 Dl +577 1443 MXY +10 setlinewidth +2303 1324 MXY +0 -320 Dl +577 1324 MXY +1 setlinewidth +767 1900 MXY +0 320 Dl +753 1899 MXY +-101 323 Dl +782 1899 MXY +101 323 Dl +1137 1899 MXY +-101 323 Dl +1166 1899 MXY +101 323 Dl +1521 1899 MXY +-101 323 Dl +1550 1899 MXY +101 323 Dl +1905 1899 MXY +-101 323 Dl +1934 1899 MXY +101 323 Dl +2289 1899 MXY +-101 323 Dl +2318 1899 MXY +101 323 Dl +2673 1899 MXY +-101 323 Dl +2702 1899 MXY +101 323 Dl +3057 1899 MXY +-101 323 Dl +3086 1899 MXY +101 323 Dl +3441 1899 MXY +-101 323 Dl +3470 1899 MXY +101 323 Dl +3825 1899 MXY +-101 323 Dl +3854 1899 MXY +101 323 Dl +1151 1900 MXY +0 320 Dl +1535 1900 MXY +0 320 Dl +2303 1900 MXY +0 320 Dl +2687 1900 MXY +0 320 Dl +3455 1900 MXY +0 320 Dl +3839 1900 MXY +0 320 Dl +1919 1900 MXY +0 320 Dl +1087 1388 MXY +127 Dc +2239 940 MXY +127 Dc +2239 1388 MXY +127 Dc +703 1836 MXY +127 Dc +1087 MX +127 Dc +1471 MX +127 Dc +1855 MX +127 Dc +1855 2284 MXY +127 Dc +1983 MX +127 Dc +1727 MX +127 Dc +959 MX +127 Dc +831 MX +127 Dc +703 MX +127 Dc +577 MX +127 Dc +3007 MX +127 Dc +3135 MX +127 Dc +3007 1836 MXY +127 Dc +3391 1388 MXY +127 Dc +2879 2284 MXY +127 Dc +577 2348 MXY +3 setlinewidth +3 f +1372 2520(Figure)N +1 f +1669(4:)X +1768(Processor)X +2165(tree)X +2334(mapped)X +2663(onto)X +2858(game)X +3091(tree)X +576 2724(is)N +664(made,)X +921(the)X +1063(following)X +1461(relation)X +1780(holds)X +2012(among)X +2298(the)X +2440(children)X +2 f +2780(z)X +1 f +9 s +2829 2748(1)N +12 s +2889 2724(,...,)N +2 f +3033(z)X +9 s +3070 2748(d)N +1 f +12 s +3122 2724(:)N +2 f +9 f +1445 2886(a)N +2 f +1529(<)X +9 f +1618(-)X +1 f +1671(negamax\()X +2 f +2051(z)X +1 f +9 s +2100 2910(1)N +12 s +2886(\))Y +2 f +2192(<)X +1 f +2257(...)X +2 f +2353(<)X +9 f +2442(-)X +1 f +2495(negamax\()X +2 f +2875(z)X +9 s +2912 2910(d)N +1 f +12 s +2964 2886(\))N +2 f +3020(<)X +9 f +3109(b)X +1 f +576 3048(Since)N +822(there)X +1047(are)X +1197(no)X +1325(cutoffs,)X +1648(there)X +1873(is)X +1969(no)X +2097(speculative)X +2564(loss,)X +2770(so)X +2888(tree)X +3066(splitting)X +3415(achieves)X +3780(practi-)X +576 3156(cally)N +788(perfect)X +1080(speedup.)X +776 3297(Best-\256rst)N +1178(ordering)X +1554(produces)X +1952(the)X +2121(maximum)X +2563(number)X +2908(of)X +3039(alpha-beta)X +3492(cutoffs.)X +3858(It)X +3968(is)X +576 3405(achieved)N +943(by)X +1063(sorting)X +1354(all)X +1475(children)X +1815(of)X +1919(all)X +2040(nodes)X +2288(so)X +2397(that:)X +1121 3561(negamax\()N +2 f +1501(z)X +1 f +1554(\))X +2 f +9 f +1610(=)X +1687(-)X +1 f +1740(negamax\()X +2 f +2120(z)X +1 f +9 s +2169 3585(1)N +12 s +3561(\))Y +2261(for)X +2397(all)X +2518(nodes)X +2 f +2766(z)X +1 f +2843(in)X +2942(the)X +3084(game)X +3317(tree.)X +576 3723(Using)N +829(this)X +992(ordering,)X +1366(the)X +1508(tree-splitting)X +2025(algorithm)X +2424(gives)X +2 f +2651(S)X +9 f +2739(=)X +1 f +2816(O\()X +2 f +2917(p)X +1 f +9 s +2977 3684(1)N +2 f +(/)S +1 f +(2)S +12 s +3723(\))Y +3125(with)X +2 f +3320(p)X +1 f +3408(processors.)X +776 3864(The)N +950(tree-splitting)X +1467(algorithm)X +1866(gives)X +2 f +2093(S)X +9 f +2181(=)X +1 f +2258(O\()X +2 f +2359(p)X +1 f +9 s +2419 3825(1)N +2 f +(/)S +1 f +(2)S +12 s +3864(\))Y +2567(with)X +2 f +2762(p)X +1 f +2850(processors)X +3279(when)X +3511(best-\256rst)X +3872(ord-)X +576 3972(ering)N +798([4])X +934(of)X +1038(the)X +1180(game)X +1413(tree)X +1582(is)X +1670(used.)X +8 f +14 s +576 4176(3.4.)N +978 -0.1979(Principal-variation)AX +2318(\(PV\))X +2653(splitting)X +1 f +12 s +776 4317(PV)N +931(splitting)X +1281(is)X +1379(a)X +1456(re\256nement)X +1902(of)X +2016(the)X +2168(tree-splitting)X +2695(algorithm)X +3094([8].)X +3288(It)X +3381(assumes)X +3735(that)X +3914(the)X +576 4425(search)N +860(tree)X +1043(is)X +1145(mapped)X +1488(onto)X +1697(an)X +1826(underlying)X +2281(tree)X +2464(of)X +2582(processors)X +3025(and)X +3202(that)X +3385(the)X +3540(game)X +3786(tree)X +3968(is)X +576 4533(strongly)N +921(ordered,)X +1269(that)X +1444(is,)X +1562(the)X +1710(\256rst)X +1889(branch)X +2181(of)X +2292(each)X +2500(node)X +2718(is)X +2813(the)X +2962(best)X +3148(branch)X +3441(at)X +3542(least)X +3750(70)X +3877(per-)X +576 4641(cent)N +780(of)X +903(the)X +1064(time)X +1279(and)X +1461(that)X +1649(the)X +1810(best)X +2007(move)X +2263(is)X +2369(in)X +2486(the)X +2646(\256rst)X +2837(quarter)X +3152(of)X +3274(the)X +3434(branches)X +3818(being)X +576 4749(searched)N +937(90)X +1057(percent)X +1365(of)X +1469(the)X +1611(time.)X +776 4890(The)N +962(type-1)X +1244(nodes)X +1504(are)X +1658(recursively)X +2122(evaluated)X +2528(until)X +2741(a)X +2820(given)X +3070(ply)X +3229(is)X +3329(reached,)X +3690(at)X +3797(which)X +576 4998(point)N +813(tree)X +997(splitting)X +1351(is)X +1453(used.)X +1715(After)X +1956(the)X +2112(value)X +2359(of)X +2477(the)X +2633(principal)X +3014(variation)X +3395(\(type-1\))X +3743(node)X +3968(is)X +576 5106(backed)N +874(up)X +995(the)X +1138(tree,)X +1332(tree)X +1503(splitting)X +1845(is)X +1935(used)X +2137(to)X +2238(evaluate)X +2586(the)X +2730(remaining)X +3147(siblings)X +3472(if)X +3557(they)X +3749(can)X +3909(not)X +576 5214(be)N +691(cut)X +833(off.)X +776 5355(There)N +1049(are)X +1215(two)X +1407(differences)X +1883(between)X +2252(PV)X +2422(splitting)X +2786(and)X +2973(MWF.)X +3298(First,)X +3546(PV)X +3716(splitting)X +576 5463(requires)N +918(a)X +993(particular)X +1395(underlying)X +1844(processor)X +2244(structure,)X +2637(in)X +2744(contrast)X +3081(with)X +3284(the)X +3434(pool)X +3637(of)X +3749(proces-)X +576 5571(sors)N +757(used)X +960(in)X +1062(MWF.)X +1366(Second,)X +1700(it)X +1781(waits)X +2011(for)X +2150(the)X +2295(search)X +2569(of)X +2677(type-1)X +2951(nodes)X +3203(to)X +3306(end)X +3473(before)X +3747(it)X +3829(starts)X +576 5679(evaluating)N +1015(the)X +1170(other)X +1405(nodes.)X +1714(This)X +1922(aspect)X +2200(of)X +2317(PV)X +2476(splitting)X +2829(ensures)X +3154(that)X +3336(the)X +3491(best)X +3683(available)X +576 5787(value)N +809(of)X +2 f +9 f +913(a)X +1 f +997(is)X +1085(passed)X +1365(to)X +1464(the)X +1606(other)X +1828(nodes)X +2076(of)X +2180(the)X +2322(tree.)X + +9 p +%%Page: 9 9 +12 s 0 xH 0 xS 1 f +10 s +3 f +576 474(Game-tree)N +963(search)X +3992(9)X +1 f +12 s +776 780(PV)N +935(splitting)X +1288(was)X +1474(compared)X +1892 0.2404(experimentally)AX +2509(with)X +2718(the)X +2874(tree)X +3057(splitting)X +3411(algorithm)X +3824(using)X +576 888(trees)N +790(of)X +901(depth)X +1146(4)X +1225(and)X +1395(width)X +1645(24.)X +1820(Experimental)X +2371(results)X +2653(show)X +2886(that)X +3062(PV)X +3215(splitting)X +3562(outperforms)X +576 996(tree)N +755(splitting,)X +1129(especially)X +1549(when)X +1791(a)X +1868(wider)X +2121(processor)X +2523(tree)X +2702(is)X +2800(used)X +3000([8].)X +3194(For)X +3361(example,)X +3746(when)X +3989(a)X +576 1104(processor)N +986(tree)X +1173(with)X +1386(both)X +1599(depth)X +1855(and)X +2036(width)X +2297(of)X +2418(2)X +2507(was)X +2697(used,)X +2938(tree-splitting)X +3472(examined)X +3888(912)X +576 1212(nodes,)N +855(and)X +1025(PV)X +1178(splitting)X +1526(examined)X +1933(648)X +2109(nodes.)X +2413(But)X +2584(when)X +2824(the)X +2974(width)X +3225(of)X +3337(the)X +3487(processor)X +3887(tree)X +576 1320(was)N +761(changed)X +1118(to)X +1229(8,)X +1337(tree-splitting)X +1866(and)X +2041(PV)X +2199(splitting)X +2551(examined)X +2962(772)X +3142(and)X +3316(277)X +3495(nodes)X +3754(respec-)X +576 1428(tively.)N +8 f +14 s +576 1632(3.5.)N +978(The)X +1246(ER)X +1447(algorithm)X +1 f +12 s +776 1773(This)N +977(algorithm)X +1382(was)X +1561(developed)X +1987(by)X +2113(Steinberg)X +2512(and)X +2681(Solomon)X +3058(for)X +3200(parallel)X +3520(evaluation)X +3952(of)X +576 1881(game)N +812(trees.)X +1069(It)X +1155(is)X +1246(a)X +1315(sequential)X +1732(algorithm)X +2133(with)X +2330(a)X +2399(parallel)X +2715 0.2548(implementation)AX +3345([3].)X +3531(The)X +3707(nodes)X +3957(in)X +576 1989(the)N +728(game)X +971(tree)X +1150(are)X +1302(divided)X +1626(into)X +1811(two)X +1990(groups,)X +2310(e-nodes)X +2644(and)X +2818(r-nodes.)X +3189(E-nodes)X +3539(will)X +3724(be)X +3850(fully)X +576 2097(evaluated,)N +997(and)X +1163(r-nodes)X +1478(will)X +1655(be)X +1773(refuted,)X +2097(that)X +2269(is,)X +2384(will)X +2561(have)X +2770(an)X +2888(estimated)X +3284(value.)X +3567(All)X +3716(children)X +576 2205(of)N +688(an)X +811(e-node)X +1105(are)X +1255(evaluated,)X +1681(but)X +1836(as)X +1948(few)X +2124(as)X +2236(one)X +2407(child)X +2632(of)X +2744(an)X +2867(r-node)X +3150(needs)X +3401(to)X +3509(be)X +3633(examined.)X +576 2313(Therefore)N +985(e-nodes)X +1313(are)X +1460(more)X +1687(``costly'')X +2074(than)X +2269(r-nodes.)X +2634(Every)X +2892(internal)X +3215(node)X +3430(has)X +3586(exactly)X +3893(one)X +576 2421(e-node)N +862(child)X +1079(\(e-child\).)X +776 2562(Any)N +980(child)X +1212(of)X +1331(a)X +1413(node)X +1639(can)X +1812(be)X +1942(chosen)X +2248(as)X +2368(the)X +2526(e-child,)X +2858(but)X +3021(the)X +3179(child)X +3412(with)X +3623(the)X +3781(lowest)X +576 2670(negamax)N +948(value)X +1181(is)X +1269(the)X +1411(best)X +1590(choice)X +1866([3].)X +776 2811(To)N +907(choose)X +1198(the)X +1340(e-child)X +1633(of)X +1738(a)X +1806(node)X +2 f +2018(z)X +1 f +2071(,)X +2120(ER)X +2268(evaluates)X +2652(the)X +2795(elder)X +3013(grandchildren)X +3573(\(eldest)X +3855(chil-)X +576 2919(dren)N +778(of)X +2 f +889(z)X +1 f +942('s)X +1042(children\))X +1421(in)X +1527(parallel,)X +1872(and)X +2042(chooses)X +2377(the)X +2525(child)X +2748(whose)X +3023(elder)X +3246(child)X +3469(has)X +3627(the)X +3775(largest)X +576 3027(value.)N +874(The)X +1066(e-child)X +1376(is)X +1482(then)X +1690(evaluated)X +2102(while)X +2358(avoiding)X +2737(re-evaluation)X +3288(of)X +3410(its)X +3543(oldest)X +3815(child,)X +576 3135(since)N +798(we)X +934(just)X +1097(got)X +1244(its)X +1359(value.)X +1640(The)X +1814(remaining)X +2229(children)X +2569(are)X +2711(refuted)X +3008(in)X +3107(order.)X +776 3276(In)N +890(the)X +1043(parallel)X +1368 0.2548(implementation)AX +2009(of)X +2124(ER,)X +2306(the)X +2459(elder)X +2687(grandchildren)X +3257(can)X +3426(be)X +3552(evaluated)X +3957(in)X +576 3384(parallel)N +906(because)X +1251(they)X +1457(represent)X +1850(mandatory)X +2302(work.)X +2586(Since)X +2839(these)X +3076(grandchildren)X +3650(are)X +3807(them-)X +576 3492(selves)N +849(e-nodes,)X +1210(their)X +1425(elder)X +1657(grandchildren)X +2231(can)X +2404(also)X +2598(be)X +2728(recursively)X +3195(evaluated)X +3604(in)X +3718(parallel.)X +576 3600(These)N +836(parallel)X +1156(evaluations)X +1625(are)X +1773(mandatory)X +2215(work,)X +2466(but)X +2619(if)X +2708(ER)X +2860(is)X +2953(to)X +3057(perform)X +3396(only)X +3596(the)X +3743(manda-)X +576 3708(tory)N +758(work,)X +1006(the)X +1151(remaining)X +1569(siblings)X +1895(of)X +2002(an)X +2120(e-node)X +2409(must)X +2623(be)X +2741(examined)X +3143(sequentially.)X +3684(To)X +3818(avoid)X +576 3816(these)N +798(sequential)X +1213(evaluations)X +1676(and)X +1839(thus)X +2023(starvation)X +2427(loss,)X +2624(ER)X +2771(uses)X +2960(the)X +3102(following)X +3500(two)X +3668(methods:)X +10 f +624 3957(g)N +1 f +706(Parallel)X +1030(refutation:)X +1461(After)X +1693(an)X +1813(e-child)X +2 f +2110(y)X +1 f +2198(of)X +2307(an)X +2427(e-node)X +2 f +2719(z)X +1 f +2802(is)X +2896(evaluated,)X +3320(refute)X +2 f +3575(y)X +1 f +3634('s)X +3733(siblings)X +706 4065(in)N +822(parallel.)X +1201(This)X +1413(parallel)X +1744(evaluation)X +2187(is)X +2291(likely)X +2551(to)X +2666(encounter)X +3086(lots)X +3265(of)X +3385(speculative)X +3859(loss.)X +706 4173(This)N +915(work)X +1150(is)X +1252(similar)X +1558(to)X +1671(the)X +1827(speculative)X +2299(work)X +2534(performed)X +2974(by)X +3109(MWF)X +3377(and)X +3555(PV)X +3716(splitting)X +706 4281(algorithms.)N +10 f +624 4389(g)N +1 f +706(Multiple)X +1064(e-children:)X +1508(After)X +1737(an)X +1854(e-child)X +2148(of)X +2254(an)X +2371(e-node)X +2 f +2659(z)X +1 f +2738(is)X +2828(evaluated,)X +3248(choose)X +3541(the)X +3685(next)X +3877(best)X +706 4497(child)N +933(of)X +2 f +1047(z)X +1 f +1134(as)X +1248(a)X +1325(second)X +1626(e-child.)X +1976(If)X +2074(it)X +2162(happens)X +2510(that)X +2688(the)X +2839(\256rst)X +3021(e-child)X +3322(is)X +3419(not)X +3575(actually)X +3914(the)X +706 4605(best)N +892(child)X +1116(of)X +2 f +1227(z)X +1 f +1311(\(other)X +1572(children)X +1919(cannot)X +2207(be)X +2329(immediately)X +2843(refuted\),)X +3203(we)X +3347(will)X +3529(have)X +3743(another)X +706 4713(e-child)N +1001(that)X +1173(will)X +1350(hopefully)X +1746(help)X +1939(us)X +2051(cut)X +2196(off)X +2 f +2334(z)X +1 f +2387('s)X +2482(other)X +2706(children.)X +3096(In)X +3202(general,)X +3536(after)X +3739(the)X +3883(\256rst)X +706 4821(e-child)N +998(has)X +1150(been)X +1356(evaluated,)X +1774(ensure)X +2049(that)X +2 f +2218(z)X +1 f +2295(always)X +2586(has)X +2738(one)X +2901(active)X +3156(e-child.)X +776 4962(Steinberg)N +1189(and)X +1372(Solomon)X +1764(compared)X +2189(ER)X +2357(to)X +2477(PV)X +2644(splitting.)X +3053(Sequential)X +3505(ER)X +3673(evaluates)X +576 5070(more)N +811(nodes)X +1072(than)X +1275(alpha-beta,)X +1737(but)X +1896(sequential)X +2323(PV)X +2481(splitting)X +2833(is)X +2933(identical)X +3302(to)X +3413(alpha-beta.)X +3899(For)X +576 5178(this)N +751(reason)X +1038(Steinberg)X +1444(and)X +1620(Solomon)X +1991([3])X +2140(used)X +2353(relative)X +2680(ef\256ciency)X +3097(and)X +3273(relative)X +3600(speedup)X +3952(as)X +576 5286(shown)N +850(below)X +1109(to)X +1208(compare)X +1564(the)X +1706(two)X +1874(algorithms.)X +2 f +1435 5478(relative)N +1770(ef\256ciency)X +9 f +2151(=)X +2 f +2228 5547(no.)N +2388(of)X +2519(processors)X +2974(used)X +2364 5424(relative)N +2699(speedup)X +10 f +2213 5451(h)N +2252(hhhhhhhhhhhhhhhhhhh)X + +10 p +%%Page: 10 10 +12 s 0 xH 0 xS 10 f +10 s +3 f +576 474(Game-tree)N +963(search)X +3952(10)X +2 f +12 s +857 816(relative)N +1192(speedup)X +9 f +1523(=)X +2 f +1948 885(time)N +2154(required)X +2525(by)X +2656(parallel)X +3001(algorithm)X +1600 762(time)N +1806(required)X +2177(by)X +2308(parallel)X +2653(algorithm)X +3072(with)X +1 f +3278(1)X +2 f +3350(processor)X +10 f +1585 789(hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh)N +1 f +576 1023(Experiments)N +1091(show)X +1321(that)X +1494(ER)X +1645(achieves)X +2005(twice)X +2242(the)X +2388(ef\256ciency)X +2797(and)X +2965(speedup)X +3309(of)X +3418(the)X +3565(PV)X +3716(splitting)X +576 1131(algorithm)N +983(when)X +1223(used)X +1431(on)X +1559(suf\256ciently)X +2024(deep)X +2238(trees)X +2444([3].)X +2636(The)X +2818(average)X +3150(ef\256ciency)X +3562(achieved)X +3936(by)X +576 1239(ER)N +725(using)X +959(16)X +1082(processors)X +1514(for)X +1653(7,)X +1752(8,)X +1851(9,)X +1950(and)X +2116(10)X +2239(ply)X +2389(trees)X +2598(are)X +2743(respectively)X +3236(0.44,)X +3455(0.52,)X +3674(0.68,)X +3893(and)X +576 1347(0.58.)N +820(The)X +997(corresponding)X +1574(ef\256ciencies)X +2040(for)X +2179(PV)X +2328(splitting)X +2671(are)X +2816(0.28,)X +3035(0.31,)X +3254(0.31,)X +3473(and)X +3639(0.31.)X +3882(The)X +576 1455(range)N +817(of)X +924(speedup)X +1266(for)X +1405(7)X +1480(to)X +1582(9)X +1657(ply)X +1807(trees)X +2016(using)X +2251(16)X +2374(processors)X +2806(are)X +2951(7.1)X +3098(to)X +3201(10.9)X +3397(for)X +3537(the)X +3683(ER)X +3834(algo-)X +576 1563(rithm)N +821(and)X +995(4.5)X +1150(to)X +1260(5.0)X +1415(for)X +1562(the)X +1715(PV)X +1872(splitting)X +2223(algorithm.)X +2681(Steinberg)X +3085(and)X +3259(Solomon)X +3641(contribute)X +576 1671(ER's)N +792(higher)X +1062(ef\256ciency)X +1466(to)X +1565(low)X +1733(starvation)X +2137(loss.)X +8 f +14 s +576 1875(3.6.)N +978(Delay)X +1380(splitting)X +1 f +12 s +776 2016(This)N +984(algorithm)X +1396(delays)X +1679(the)X +1834(evaluation)X +2273(of)X +2390(each)X +2604(node)X +2828(until)X +3042(its)X +3170(eldest)X +3432(sibling)X +3732(is)X +3834(com-)X +576 2124(pletely)N +868(evaluated.)X +1315(Starvation)X +1740(loss)X +1918(is)X +2011(accepted)X +2378(in)X +2482(order)X +2714(to)X +2818(increase)X +3163(the)X +3310(number)X +3633(of)X +3741(cutoffs.)X +576 2232(Evaluation)N +1031(delay)X +1278(occurs)X +1567(at)X +1675(every)X +1927(level)X +2153(for)X +2303(each)X +2518(node,)X +2767(thus)X +2965(making)X +3292(delay)X +3539(splitting)X +3893(dif-)X +576 2340(ferent)N +839(from)X +1064(PV)X +1224(splitting,)X +1601(in)X +1713(which)X +1985(delay)X +2231(of)X +2348(evaluation)X +2787(occurs)X +3075(only)X +3283(along)X +3534(the)X +3689(principle)X +576 2448(variation)N +943(route.)X +776 2589(The)N +950(following)X +1348(is)X +1436(Pascal-like)X +1883(code)X +2089(for)X +2225(delay)X +2458(splitting:)X +3 f +10 s +896 2712(function)N +7 f +1228(DelaySplit\(z)X +1852(:)X +1948(position;)X +2 f +12 s +9 f +2428(a)X +7 f +10 s +2488(,)X +2 f +12 s +9 f +2584(b)X +7 f +10 s +2637(\):)X +2781(integer;)X +3 f +1184 2802(var)N +7 f +1348(d,)X +1492(i)X +1588(:)X +1684(integer;)X +1472 2892(value)N +1760(:)X +3 f +1856(array)X +7 f +2048([1..MAXWIDTH])X +2720(of)X +2864(integer;)X +3 f +1184 2982(begin)N +1472 3072(if)N +7 f +1569(\(I)X +1713(am)X +1857(a)X +1953(leaf)X +2193(processor\))X +3 f +2721(then)X +1760 3162(return)N +7 f +1983(\(alphabeta\(z,)X +2 f +12 s +9 f +2655(a)X +7 f +10 s +2715(,)X +2 f +12 s +9 f +2811(b)X +7 f +10 s +2864(\)\);)X +1472 3252(determine)N +1952(the)X +2144(child)X +2432(positions)X +2 f +12 s +2912(z)X +1 f +9 s +2961 3276(1)N +7 f +10 s +3252(,)Y +3093(...,)X +2 f +12 s +3333(z)X +9 s +3370 3276(d)N +12 s +9 f +1472 3348(a)N +7 f +10 s +1580(=)X +1676(-DelaySplit\()X +2 f +12 s +(z)S +1 f +9 s +2301 3372(1)N +7 f +10 s +3348(,)Y +2 f +12 s +9 f +2433(-b)X +7 f +10 s +2539(,)X +2 f +12 s +9 f +2635(-a)X +7 f +10 s +2748(\);)X +3 f +1472 3444(if)N +2 f +12 s +9 f +1569(a)X +1653(\263)X +1730(b)X +3 f +10 s +1831(then)X +1760 3534(return)N +7 f +1983(\()X +2 f +12 s +9 f +(a)S +7 f +10 s +2091(\);)X +3 f +1472 3624(for)N +7 f +1623(i)X +1719(:=)X +1863(2)X +3 f +1959(to)X +7 f +2074(d)X +3 f +2170(do)X +2274(in)X +2360(parallel)X +1760 3714(begin)N +7 f +1760 3804(value[i])N +2192(:=)X +2336(-DelaySplit\()X +2 f +12 s +(z)S +9 s +2949 3828(i)N +7 f +10 s +2985 3804(,)N +2 f +12 s +9 f +3081(-b)X +7 f +10 s +3187(,)X +2 f +12 s +9 f +3283(-a)X +7 f +10 s +3396(\);)X +3 f +1760 3900(begincrit)N +7 f +2115({critical)X +2595(region)X +2931(})X +3 f +2048 3990(if)N +7 f +2145(value[i])X +2577(>)X +2 f +12 s +9 f +2673(a)X +3 f +10 s +2781(then)X +2 f +12 s +9 f +2336 4080(a)N +7 f +10 s +2444(:=)X +2588(value[i];)X +3 f +1760 4170(endcrit)N +7 f +2005(;)X +3 f +1760 4260(if)N +2 f +12 s +9 f +1857(a)X +1941(\263)X +2018(b)X +3 f +10 s +2119(then)X +2048 4350(return)N +7 f +2271(\()X +2 f +12 s +9 f +(a)S +7 f +10 s +2379(\);)X +2523({)X +2619(cutoff)X +2955(})X +3 f +1760 4440(end)N +7 f +1884(;)X +3 f +1184 4530(end)N +7 f +1308(.)X +1404({)X +1500(DelaySplit)X +2028(})X +8 f +14 s +576 4767(4.)N +844(Experimental)X +1715(results)X +1 f +12 s +776 4908(We)N +935(have)X +1143(tested)X +1394(the)X +1538(above)X +1794(algorithms)X +2232(on)X +2354(a)X +2423(Sequent)X +2759(Symmetry)X +3186(with)X +3383(26)X +3505(cpus)X +3707(using)X +3941(an)X +576 5016(unsorted)N +941(tree)X +1120(of)X +1234(depth)X +1482(9)X +1564(and)X +1737(fanout)X +2017(of)X +2131(at)X +2235(most)X +2456(15)X +2586(\(the)X +2770(fanout)X +3049(decreases)X +3451(by)X +3580(one)X +3752(at)X +3855(each)X +576 5124(level\))N +825(generated)X +1229(by)X +1354(the)X +1501(game)X +1739(tic-tac-toe.)X +2208(The)X +2387(algorithms)X +2828(tend)X +3023(to)X +3127(have)X +3338(more)X +3565(cutoffs)X +3861(with)X +576 5232(a)N +647(sorted)X +910(tree,)X +1107(but)X +1258(are)X +1404(likely)X +1652(to)X +1755(have)X +1965(a)X +2036(higher)X +2310(ef\256ciency)X +2717(with)X +2915(a)X +2985(worst-\256rst)X +3406(sorted)X +3668(tree.)X +3888(Not)X +576 5340(sorting)N +871(at)X +969(all)X +1094(gives)X +1325(us)X +1438(a)X +1509(comparison)X +1986(with)X +2185(a)X +2256(reasonable)X +2696(amount)X +3013(of)X +3121(cutoff)X +3380(and)X +3548(a)X +3620(reasonable)X +576 5448(amount)N +914(of)X +1043(parallelism.)X +1569(The)X +1768(relative)X +2107(ef\256ciency)X +2536(comparisons)X +3071(are)X +3238(shown)X +3537(in)X +3661(Figure)X +3960(5.)X +576 5556(\(Relative)N +954(ef\256ciency)X +1358(compares)X +1751(the)X +1893(parallel)X +2207(execution)X +2606(time)X +2802(to)X +2901(the)X +3044(sequential)X +3460(execution)X +3860(time)X +576 5664(of)N +692(the)X +846(same)X +1079(algorithm)X +1489(in)X +1599(the)X +1752(same)X +1985(environment.)X +2555(The)X +2740(sequential)X +3166(execution)X +3576(times)X +3820(of)X +3935(all)X +576 5772(algorithms)N +1031(we)X +1186(tested)X +1455(are)X +1617(quite)X +1854(similar.\))X +2246(For)X +2423(this)X +2606(particular)X +3020(test,)X +3222(the)X +3384(MWF)X +3657(algorithm)X + +11 p +%%Page: 11 11 +12 s 0 xH 0 xS 1 f +10 s +3 f +576 474(Game-tree)N +963(search)X +3952(11)X +1 f +12 s +576 780(achieved)N +961(an)X +1094(almost)X +1393(perfect)X +1703(ef\256ciency,)X +2149(followed)X +2532(by)X +2669(delay)X +2919(splitting)X +3276(and)X +3456(ER)X +3620(algorithms)X +576 888(with)N +772(speedup)X +1112(of)X +1217(over)X +1413(12)X +1534(and)X +1698(9)X +1772(respectively,)X +2288(using)X +2522(20)X +2644(processors.)X +3123(We)X +3283(attribute)X +3631(our)X +3785(ability)X +576 996(to)N +685(exceed)X +987(a)X +1064(speedup)X +1413(of)X +1527(6)X +1609(with)X +1814(MWF)X +2077(to)X +2186(DIB's)X +2454 0.2723(parallelization)AX +3041(environment)X +3562(and)X +3735(the)X +3887(tree)X +576 1104(structure)N +937(used)X +1137(in)X +1236(this)X +1399(experiment.)X +776 1245(Figure)N +1056(6)X +1133(shows)X +1402(the)X +1550(ratio)X +1757(of)X +1867(the)X +2015(number)X +2339(of)X +2449(nodes)X +2703(examined)X +3108(by)X +3234(the)X +3382(algorithms)X +3824(using)X +576 1353(different)N +932(numbers)X +1287(of)X +1391(machines)X +1779(verses)X +2043(using)X +2275(one)X +2438(machine)X +2789(\(sequential)X +3236(algorithm\).)X +977 1537 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1090 1717 MXY +0 29 Dl +0 -14 Dl +15 0 Dl +-29 0 Dl +1316 2412 MXY +0 29 Dl +0 -14 Dl +15 0 Dl +-29 0 Dl +1542 2591 MXY +0 29 Dl +0 -15 Dl +15 0 Dl +-29 0 Dl +1768 2800 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1994 2919 MXY +0 29 Dl +0 -15 Dl +14 0 Dl +-28 0 Dl +2220 2856 MXY +0 29 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +2446 2935 MXY +0 29 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +2672 3097 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +2898 3176 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-29 0 Dl +3124 3238 MXY +0 29 Dl +0 -15 Dl +14 0 Dl +-29 0 Dl +920 3238 MXY +[16] 0 setdash +1 setlinewidth +977 1551 MXY +113 181 Dl +226 695 Dl +226 178 Dl +226 209 Dl +226 119 Dl +226 -62 Dl +226 79 Dl +226 161 Dl +226 79 Dl +226 62 Dl +5 f +3125 3292(alphabeta)N +920 1551 MXY +[] 0 setdash +3 setlinewidth +977 1537 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1090 1560 MXY +0 28 Dl +0 -14 Dl +15 0 Dl +-29 0 Dl +1316 1669 MXY +0 29 Dl +0 -14 Dl +15 0 Dl +-29 0 Dl +1542 1593 MXY +0 29 Dl +0 -14 Dl +15 0 Dl +-29 0 Dl +1768 1653 MXY +0 29 Dl +0 -15 Dl +14 0 Dl +-28 0 Dl +1994 1537 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +2220 1726 MXY +0 29 Dl +0 -15 Dl +14 0 Dl +-28 0 Dl +2446 1605 MXY +0 29 Dl +0 -15 Dl +14 0 Dl +-28 0 Dl +2672 1613 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +2898 1834 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-29 0 Dl +3124 1633 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-29 0 Dl +977 1551 MXY +113 23 Dl +226 110 Dl +226 -76 Dl +226 59 Dl +226 -116 Dl +226 189 Dl +226 -121 Dl +226 8 Dl +226 221 Dl +226 -201 Dl +3163 1737(MWF)N +977 1537 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1090 1596 MXY +0 29 Dl +0 -14 Dl +15 0 Dl +-29 0 Dl +1316 1732 MXY +0 28 Dl +0 -14 Dl +15 0 Dl +-29 0 Dl +1542 1816 MXY +0 29 Dl +0 -14 Dl +15 0 Dl +-29 0 Dl +1768 1870 MXY +0 29 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1994 1984 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +2220 2065 MXY +0 29 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +2446 2209 MXY +0 29 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +2672 2178 MXY +0 29 Dl +0 -15 Dl +14 0 Dl +-28 0 Dl +2898 2376 MXY +0 29 Dl +0 -15 Dl +14 0 Dl +-29 0 Dl +3124 2495 MXY +0 29 Dl +0 -15 Dl +14 0 Dl +-29 0 Dl +920 2495 MXY +1 setlinewidth +977 1551 MXY +113 60 Dl +226 135 Dl +226 85 Dl +226 54 Dl +226 113 Dl +226 82 Dl +226 144 Dl +226 -32 Dl +226 198 Dl +226 119 Dl +3135 2585(delaysplit)N +920 1551 MXY +3 setlinewidth +977 1537 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1090 1895 MXY +0 29 Dl +0 -14 Dl +15 0 Dl +-29 0 Dl +1316 2664 MXY +0 29 Dl +0 -14 Dl +15 0 Dl +-29 0 Dl +1542 2887 MXY +0 29 Dl +0 -14 Dl +15 0 Dl +-29 0 Dl +1768 3037 MXY +0 29 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1994 3151 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +2220 3142 MXY +0 29 Dl +0 -15 Dl +14 0 Dl +-28 0 Dl +2446 3376 MXY +0 29 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +2672 3229 MXY +0 29 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +2898 3439 MXY +0 29 Dl +0 -15 Dl +14 0 Dl +-29 0 Dl +3124 3498 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-29 0 Dl +920 3498 MXY +[64 32 32 32] 0 setdash +1 setlinewidth +977 1551 MXY +113 359 Dl +226 769 Dl +226 223 Dl +226 150 Dl +226 113 Dl +226 -9 Dl +226 235 Dl +226 -147 Dl +226 209 Dl +226 59 Dl +3433(TreeSplit10)Y +920 1551 MXY +[] 0 setdash +3 setlinewidth +977 1537 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1090 1783 MXY +0 28 Dl +0 -14 Dl +15 0 Dl +-29 0 Dl +1316 2159 MXY +0 28 Dl +0 -14 Dl +15 0 Dl +-29 0 Dl +1542 2297 MXY +0 29 Dl +0 -15 Dl +15 0 Dl +-29 0 Dl +1768 2514 MXY +0 29 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1994 2517 MXY +0 29 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +2220 2684 MXY +0 29 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +2446 2783 MXY +0 29 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +2672 2794 MXY +0 29 Dl +0 -15 Dl +14 0 Dl +-28 0 Dl +2898 2882 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-29 0 Dl +3124 2970 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-29 0 Dl +920 2970 MXY +[64 32] 0 setdash +1 setlinewidth +977 1551 MXY +113 246 Dl +226 376 Dl +226 138 Dl +226 218 Dl +226 3 Dl +226 167 Dl +226 99 Dl +226 10 Dl +226 88 Dl +226 88 Dl +3178 3009(ER)N +920 1551 MXY +[] 0 setdash +3 setlinewidth +977 1537 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1090 1876 MXY +0 29 Dl +0 -15 Dl +15 0 Dl +-29 0 Dl +1316 2610 MXY +0 29 Dl +0 -14 Dl +15 0 Dl +-29 0 Dl +1542 2904 MXY +0 29 Dl +0 -14 Dl +15 0 Dl +-29 0 Dl +1768 3097 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1994 3232 MXY +0 29 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +2220 3413 MXY +0 29 Dl +0 -15 Dl +14 0 Dl +-28 0 Dl +2446 3413 MXY +0 29 Dl +0 -15 Dl +14 0 Dl +-28 0 Dl +2672 3422 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +2898 3549 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-29 0 Dl +3124 3546 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-29 0 Dl +977 1551 MXY +113 339 Dl +226 735 Dl +226 294 Dl +226 192 Dl +226 136 Dl +226 180 Dl +226 0 Dl +226 9 Dl +226 127 Dl +226 -3 Dl +3151 3574(PVS10)N +977 4377 MXY +2259 0 Dl +977 MX +0 -2826 Dl +4377 MY +0 29 Dl +951 4530(1)N +1203 4377 MXY +0 29 Dl +1177 4530(3)N +1429 4377 MXY +0 29 Dl +1403 4530(5)N +1655 4377 MXY +0 29 Dl +1629 4530(7)N +1881 4377 MXY +0 29 Dl +1855 4530(9)N +2107 4377 MXY +0 29 Dl +2054 4530(11)N +2333 4377 MXY +0 29 Dl +2280 4530(13)N +2559 4377 MXY +0 29 Dl +2506 4530(15)N +2784 4377 MXY +0 29 Dl +2731 4530(17)N +3010 4377 MXY +0 29 Dl +2957 4530(19)N +3236 4377 MXY +0 29 Dl +3183 4530(21)N +977 4377 MXY +-29 0 Dl +734 4401(0.00)N +977 4094 MXY +-29 0 Dl +734 4118(0.10)N +977 3812 MXY +-29 0 Dl +734 3835(0.20)N +977 3529 MXY +-29 0 Dl +734 3553(0.30)N +977 3247 MXY +-29 0 Dl +734 3270(0.40)N +977 2964 MXY +-29 0 Dl +734 2988(0.50)N +977 2681 MXY +-29 0 Dl +734 2705(0.60)N +977 2399 MXY +-29 0 Dl +734 2422(0.70)N +977 2116 MXY +-29 0 Dl +734 2140(0.80)N +977 1834 MXY +-29 0 Dl +734 1857(0.90)N +977 1551 MXY +-29 0 Dl +734 1575(1.00)N +3 f +1448 4721(Figure)N +1 f +1745(5:)X +1844(Ef\256ciency)X +2264(vs)X +2373(number)X +2691(of)X +2795(machines)X + +12 p +%%Page: 12 12 +12 s 0 xH 0 xS 1 f +10 s +3 f +576 474(Game-tree)N +963(search)X +3952(12)X +1 f +12 s +911 2908 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +1024 2842 MXY +0 31 Dl +0 -16 Dl +16 0 Dl +-31 0 Dl +1252 2474 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +1478 2341 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +1705 2157 MXY +0 31 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +1932 1986 MXY +0 31 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +2158 2093 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-31 0 Dl +2385 2032 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +2612 1784 MXY +0 31 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +2839 1684 MXY +0 31 Dl +0 -15 Dl +16 0 Dl +-32 0 Dl +3065 1753 MXY +0 31 Dl +0 -15 Dl +16 0 Dl +-32 0 Dl +848 1753 MXY +[16] 0 setdash +1 setlinewidth +911 2924 MXY +113 -67 Dl +228 -367 Dl +226 -133 Dl +227 -185 Dl +227 -171 Dl +226 108 Dl +227 -61 Dl +227 -249 Dl +227 -99 Dl +226 69 Dl +5 f +3118 1810(alphabeta)N +848 2924 MXY +[] 0 setdash +3 setlinewidth +911 2908 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +1024 2908 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-31 0 Dl +1252 2903 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +1478 2939 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +1705 2990 MXY +0 31 Dl +0 -15 Dl +16 0 Dl +-32 0 Dl +1932 2970 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +2158 3002 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-31 0 Dl +2385 2991 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +2612 3026 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +2839 3069 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +3065 2988 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +911 2924 MXY +113 0 Dl +228 -5 Dl +226 36 Dl +227 51 Dl +227 -20 Dl +226 32 Dl +227 -11 Dl +227 35 Dl +227 43 Dl +226 -81 Dl +3128 3038(delaysplit)N +911 2908 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +1024 2755 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-31 0 Dl +1252 2268 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +1478 2042 MXY +0 31 Dl +0 -15 Dl +16 0 Dl +-32 0 Dl +1705 1837 MXY +0 31 Dl +0 -15 Dl +16 0 Dl +-32 0 Dl +1932 1685 MXY +0 31 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +2158 1760 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-31 0 Dl +2385 1263 MXY +0 31 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +2612 1663 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +2839 1179 MXY +0 31 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +3065 1090 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +848 1090 MXY +[64 32 32 32] 0 setdash +1 setlinewidth +911 2924 MXY +113 -153 Dl +228 -487 Dl +226 -226 Dl +227 -205 Dl +227 -153 Dl +226 76 Dl +227 -498 Dl +227 401 Dl +227 -485 Dl +226 -88 Dl +3196 1093(TreeSplit10)N +848 2924 MXY +[] 0 setdash +3 setlinewidth +911 2908 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +1024 2766 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-31 0 Dl +1252 2365 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +1478 2093 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +1705 1926 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +1932 1742 MXY +0 31 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +2158 1298 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-31 0 Dl +2385 1404 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +2612 1449 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +2839 1195 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +3065 1143 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +911 2924 MXY +113 -142 Dl +228 -401 Dl +226 -272 Dl +227 -167 Dl +227 -185 Dl +226 -443 Dl +227 106 Dl +227 45 Dl +227 -254 Dl +226 -52 Dl +3121 1197(PVS10)N +911 2908 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +1024 2903 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-31 0 Dl +1252 2880 MXY +0 31 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +1478 2929 MXY +0 31 Dl +0 -15 Dl +16 0 Dl +-32 0 Dl +1705 2917 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +1932 2998 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +2158 2935 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-31 0 Dl +2385 3002 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +2612 3019 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +2839 3006 MXY +0 31 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +3065 3051 MXY +0 31 Dl +0 -15 Dl +16 0 Dl +-32 0 Dl +848 3051 MXY +[16] 0 setdash +1 setlinewidth +911 2924 MXY +113 -5 Dl +228 -24 Dl +226 50 Dl +227 -12 Dl +227 81 Dl +226 -63 Dl +227 67 Dl +227 17 Dl +227 -14 Dl +226 46 Dl +3121 3121(MWF)N +848 2924 MXY +[] 0 setdash +3 setlinewidth +911 2908 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +1024 2823 MXY +0 31 Dl +0 -16 Dl +16 0 Dl +-31 0 Dl +1252 2677 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +1478 2617 MXY +0 31 Dl +0 -15 Dl +16 0 Dl +-32 0 Dl +1705 2501 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +1932 2523 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +2158 2438 MXY +0 31 Dl +0 -15 Dl +16 0 Dl +-31 0 Dl +2385 2317 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +2612 2347 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +2839 2329 MXY +0 32 Dl +0 -16 Dl +16 0 Dl +-32 0 Dl +3065 2210 MXY +0 31 Dl +0 -15 Dl +16 0 Dl +-32 0 Dl +848 2210 MXY +[64 32 32 32] 0 setdash +1 setlinewidth +911 2924 MXY +113 -86 Dl +228 -145 Dl +226 -60 Dl +227 -116 Dl +227 22 Dl +226 -85 Dl +227 -121 Dl +227 30 Dl +227 -18 Dl +226 -119 Dl +3124 2267(ER)N +848 2924 MXY +[] 0 setdash +3 setlinewidth +911 3964 MXY +2495 0 Dl +911 MX +0 -3120 Dl +3964 MY +0 31 Dl +885 4124(1)N +1138 3964 MXY +0 31 Dl +1112 4124(3)N +1365 3964 MXY +0 31 Dl +1339 4124(5)N +1591 3964 MXY +0 31 Dl +1565 4124(7)N +1818 3964 MXY +0 31 Dl +1792 4124(9)N +2045 3964 MXY +0 31 Dl +1992 4124(11)N +2272 3964 MXY +0 31 Dl +2219 4124(13)N +2499 3964 MXY +0 31 Dl +2446 4124(15)N +2726 3964 MXY +0 31 Dl +2673 4124(17)N +2952 3964 MXY +0 31 Dl +2899 4124(19)N +3179 3964 MXY +0 31 Dl +3126 4124(21)N +3406 3964 MXY +0 31 Dl +3353 4124(23)N +911 3964 MXY +-31 0 Dl +662 3981(0.00)N +911 2924 MXY +-31 0 Dl +662 2942(1.00)N +911 1883 MXY +-31 0 Dl +662 1901(2.00)N +911 844 MXY +-31 0 Dl +662 861(3.00)N +3 f +1026 4326(Figure)N +1 f +1323(6:)X +1422(Relative)X +1768(no.)X +1912(of)X +2016(nodes)X +2264(examined)X +2663(vs.)X +2796(number)X +3114(of)X +3218(machines)X +776 4500(We)N +938(have)X +1148(also)X +1331(tested)X +1584(the)X +1730(algorithms)X +2170(using)X +2406(Othello)X +2723(with)X +2922(a)X +2994(6)X +9 f +(\264)S +1 f +3095(6)X +3172(board.)X +3468(All)X +3620(algorithms)X +576 4608(have)N +783(almost)X +1065(the)X +1208(same)X +1431(relative)X +1746(ef\256ciency,)X +2175(with)X +2371(delay)X +2605(splitting)X +2946(leading)X +3255(when)X +3487(fewer)X +3730(than)X +3920(six)X +576 4716(processors)N +1005(are)X +1147(used.)X +1395(In)X +1499(this)X +1662(experiment,)X +2144(the)X +2286(speedup)X +2625(did)X +2772(not)X +2919(exceed)X +3211(7)X +3283(\(Figure)X +3590(7\).)X + +13 p +%%Page: 13 13 +12 s 0 xH 0 xS 1 f +10 s +3 f +576 474(Game-tree)N +963(search)X +3952(13)X +1 f +12 s +977 823 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1089 1360 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1313 1872 MXY +0 29 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1537 2223 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1761 2298 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1985 2446 MXY +0 29 Dl +0 -14 Dl +14 0 Dl +-29 0 Dl +2208 2472 MXY +0 28 Dl +0 -14 Dl +15 0 Dl +-29 0 Dl +2432 2581 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +2656 2699 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +2880 2699 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +3104 2760 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +920 2760 MXY +[16] 0 setdash +1 setlinewidth +977 837 MXY +112 537 Dl +224 513 Dl +224 350 Dl +224 75 Dl +224 149 Dl +223 25 Dl +224 109 Dl +224 118 Dl +224 0 Dl +224 61 Dl +5 f +3159 2702(alphabeta)N +920 837 MXY +[] 0 setdash +3 setlinewidth +977 823 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1089 1229 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1313 1707 MXY +0 29 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1537 1968 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1761 2105 MXY +0 29 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1985 2175 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-29 0 Dl +2208 2396 MXY +0 28 Dl +0 -14 Dl +15 0 Dl +-29 0 Dl +2432 2503 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +2656 2556 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +2880 2724 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +3104 2858 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +977 837 MXY +112 406 Dl +224 479 Dl +224 260 Dl +224 138 Dl +224 69 Dl +223 221 Dl +224 107 Dl +224 53 Dl +224 168 Dl +224 134 Dl +3197 2982(MWF)N +977 823 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1089 1069 MXY +0 29 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1313 1643 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1537 2044 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1761 2262 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1985 2536 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-29 0 Dl +2208 2547 MXY +0 29 Dl +0 -14 Dl +15 0 Dl +-29 0 Dl +2432 2693 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +2656 2741 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +2880 2539 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +3104 2908 MXY +0 29 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +920 2908 MXY +[64 32 32 32] 0 setdash +1 setlinewidth +977 837 MXY +112 247 Dl +224 573 Dl +224 401 Dl +224 218 Dl +224 274 Dl +223 12 Dl +224 145 Dl +224 48 Dl +224 -202 Dl +224 370 Dl +3169 3122(delaysplit)N +920 837 MXY +[] 0 setdash +3 setlinewidth +977 823 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1089 1445 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1313 1918 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1537 2110 MXY +0 29 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1761 2284 MXY +0 29 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1985 2383 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-29 0 Dl +2208 2461 MXY +0 28 Dl +0 -14 Dl +15 0 Dl +-29 0 Dl +2432 2631 MXY +0 29 Dl +0 -15 Dl +14 0 Dl +-28 0 Dl +2656 2628 MXY +0 29 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +2880 2702 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +3104 2752 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +977 837 MXY +112 622 Dl +224 473 Dl +224 193 Dl +224 174 Dl +224 98 Dl +223 78 Dl +224 170 Dl +224 -2 Dl +224 73 Dl +224 50 Dl +3068 2562(TreeSplit10)N +977 823 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1089 1237 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1313 1713 MXY +0 29 Dl +0 -15 Dl +14 0 Dl +-28 0 Dl +1537 1979 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1761 2110 MXY +0 29 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1985 2259 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-29 0 Dl +2208 2332 MXY +0 28 Dl +0 -14 Dl +15 0 Dl +-29 0 Dl +2432 2475 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +2656 2472 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +2880 2643 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +3104 2628 MXY +0 29 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +920 2628 MXY +[64 32] 0 setdash +1 setlinewidth +977 837 MXY +112 414 Dl +224 476 Dl +224 266 Dl +224 132 Dl +224 148 Dl +223 73 Dl +224 143 Dl +224 -3 Dl +224 171 Dl +224 -14 Dl +3213 2422(ER)N +920 837 MXY +[] 0 setdash +3 setlinewidth +977 823 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1089 1315 MXY +0 29 Dl +0 -15 Dl +14 0 Dl +-28 0 Dl +1313 1892 MXY +0 29 Dl +0 -15 Dl +14 0 Dl +-28 0 Dl +1537 2178 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1761 2444 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +1985 2530 MXY +0 29 Dl +0 -14 Dl +14 0 Dl +-29 0 Dl +2208 2581 MXY +0 28 Dl +0 -14 Dl +15 0 Dl +-29 0 Dl +2432 2685 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +2656 2771 MXY +0 29 Dl +0 -15 Dl +14 0 Dl +-28 0 Dl +2880 2819 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +3104 2914 MXY +0 28 Dl +0 -14 Dl +14 0 Dl +-28 0 Dl +977 837 MXY +112 492 Dl +224 577 Dl +224 286 Dl +224 266 Dl +224 87 Dl +223 50 Dl +224 104 Dl +224 86 Dl +224 48 Dl +224 95 Dl +3219 2842(PVS10)N +977 3637 MXY +2238 0 Dl +977 MX +0 -2800 Dl +3637 MY +0 28 Dl +951 3789(1)N +1201 3637 MXY +0 28 Dl +1175 3789(3)N +1425 3637 MXY +0 28 Dl +1399 3789(5)N +1648 3637 MXY +0 28 Dl +1622 3789(7)N +1872 3637 MXY +0 28 Dl +1846 3789(9)N +2096 3637 MXY +0 28 Dl +2043 3789(11)N +2320 3637 MXY +0 28 Dl +2267 3789(13)N +2544 3637 MXY +0 28 Dl +2491 3789(15)N +2768 3637 MXY +0 28 Dl +2715 3789(17)N +2992 3637 MXY +0 28 Dl +2939 3789(19)N +3215 3637 MXY +0 28 Dl +3162 3789(21)N +977 3637 MXY +-28 0 Dl +734 3661(0.00)N +977 3357 MXY +-28 0 Dl +734 3381(0.10)N +977 3077 MXY +-28 0 Dl +734 3101(0.20)N +977 2797 MXY +-28 0 Dl +734 2821(0.30)N +977 2517 MXY +-28 0 Dl +734 2541(0.40)N +977 2237 MXY +-28 0 Dl +734 2261(0.50)N +977 1957 MXY +-28 0 Dl +734 1981(0.60)N +977 1677 MXY +-28 0 Dl +734 1701(0.70)N +977 1397 MXY +-28 0 Dl +734 1421(0.80)N +977 1117 MXY +-28 0 Dl +734 1141(0.90)N +977 837 MXY +-28 0 Dl +734 861(1.00)N +3 f +1448 3979(Figure)N +1 f +1745(7:)X +1844(Ef\256ciency)X +2264(vs)X +2373(number)X +2691(of)X +2795(machines)X +8 f +14 s +576 4216(5.)N +844(Sorting)X +1380(methods)X +1 f +12 s +776 4357(We)N +934(have)X +1141(compared)X +1546(the)X +1689(effects)X +1971(of)X +2076(four)X +2261(different)X +2618(sorting)X +2910(strategies)X +3299(on)X +3420(the)X +3563(search)X +3834(algo-)X +576 4465(rithms.)N +902(In)X +1014(all)X +1143(the)X +1293(strategies,)X +1712(an)X +3 f +1834(expansion)X +2275(depth)X +2540(parameter)X +1 f +3004(speci\256es)X +3366(how)X +3562(many)X +3807(levels)X +576 4573(below)N +843(a)X +918(node)X +1138(are)X +1289(expanded)X +1691(in)X +1799(order)X +2035(to)X +2143(sort)X +2320(that)X +2498(node's)X +2787(children.)X +3184(We)X +3351(set)X +3491(the)X +3642(expansion)X +576 4681(depth)N +828(parameter)X +1252(to)X +1364(3)X +1449(for)X +1598(the)X +1753(experiments)X +2261(reported)X +2619(here.)X +2870(That)X +3084(is,)X +3209(to)X +3321(sort)X +3502(a)X +3582(node)X +2 f +3806(z)X +1 f +3859(,)X +3920(we)X +576 4789(expand)N +880(the)X +1024(tree)X +1195(to)X +1296(three)X +1515(levels)X +1766(below)X +2 f +2027(z)X +1 f +2080(,)X +2130(evaluate)X +2478(the)X +2622(leaves)X +2889(statically,)X +3288(apply)X +3528(alpha-beta)X +3957(to)X +576 4897(those)N +803(values)X +1073(to)X +1172(back)X +1378(them)X +1595(up)X +1715(to)X +1814(node)X +2 f +2025(z)X +1 f +2078('s)X +2171(children,)X +2535(then)X +2725(sort)X +2893(those)X +3120(children)X +3460(accordingly.)X +776 5038(Another)N +1122(adjustable)X +1545(parameter)X +1963(is)X +2059(the)X +3 f +2209(sorting)X +2529(depth)X +2795(parameter)X +1 f +3228(,)X +3284(which)X +3551(speci\256es)X +3914(the)X +576 5146(maximum)N +996(depth)X +1239(of)X +1348(a)X +1420(node)X +1636(to)X +1740(which)X +2004(sorting)X +2300(may)X +2495(be)X +2615(applied.)X +2976(For)X +3138(some)X +3369(applications,)X +3887(like)X +576 5254(tic-tac-toe)N +998(with)X +1199(a)X +1272(4)X +9 f +(\264)S +1 f +1373(4)X +1451(board,)X +1724(every)X +1968(level)X +2186(of)X +2296(the)X +2444(search)X +2720(tree)X +2895(may)X +3092(be)X +3214(pro\256tably)X +3619(sorted,)X +3909(but)X +576 5362(in)N +688(other)X +923(applications,)X +1450(sorting)X +1754(nodes)X +2015(beyond)X +2335(some)X +2575(level)X +2799(increases)X +3188(the)X +3342(total)X +3550(computation)X +576 5470(time;)N +807(sorting)X +1106(time)X +1310(outweighs)X +1737(cutoff)X +1999(bene\256ts.)X +2378(For)X +2543(example,)X +2926(in)X +3033(Othello)X +3354(with)X +3557(a)X +3632(6)X +9 f +(\264)S +1 f +3733(6)X +3813(board)X +576 5578(and)N +752(a)X +832(search)X +1114(tree)X +1295(of)X +1411(nine)X +1613(levels,)X +1898(the)X +2052(best)X +2243(overall)X +2547(results)X +2834(are)X +2988(achieved)X +3367(when)X +3611(the)X +3765(sorting)X +576 5686(depth)N +814(parameter)X +1224(is)X +1312(set)X +1443(to)X +1542(six)X +1678(levels.)X + +14 p +%%Page: 14 14 +12 s 0 xH 0 xS 1 f +10 s +3 f +576 474(Game-tree)N +963(search)X +3952(14)X +1 f +12 s +776 780(Our)N +967(\256rst)X +1158(attempt)X +1490(at)X +1602(sorting)X +1911(was)X +2102(to)X +2219(sort)X +2405(only)X +2618(the)X +2778(children)X +3136(of)X +3258(the)X +3418(top)X +3583(node.)X +3861(This)X +576 888(regime,)N +899(called)X +1161(``TN)X +1384(\(top-node\))X +1821(sorting'',)X +2207(applies)X +2511(to)X +2617(all)X +2745(the)X +2894(algorithms)X +3337(except)X +3620(ER,)X +3797(which)X +576 996(has)N +734(its)X +855(own)X +1051(internal)X +1377(sorting)X +1675(mechanism.)X +2193(There)X +2449(is)X +2544(no)X +2671(noticeable)X +3099(difference)X +3521(in)X +3627(number)X +3952(of)X +576 1104(nodes,)N +858(total)X +1064(time,)X +1294(or)X +1407(ef\256ciency)X +1820(for)X +1965(any)X +2137(of)X +2250(the)X +2401(algorithms)X +2846(between)X +3200(TN)X +3361(and)X +3533(no)X +3662(sorting)X +3962(at)X +576 1212(all.)N +776 1353(Next)N +995(we)X +1139(extended)X +1519(the)X +1669(sorting)X +1968(to)X +2075(include)X +2391(all)X +2521(nodes)X +2778(on)X +2907(the)X +3058(principal)X +3434(variation)X +3810(route.)X +576 1461(We)N +745(call)X +920(this)X +1094(sorting)X +1395(regime)X +1697(``PVR)X +1981(sorting''.)X +2394(Our)X +2577(tests)X +2782(of)X +2896(PVR)X +3116(sorting)X +3417(for)X +3563(PV)X +3719(spitting,)X +576 1569(MWF,)N +853(and)X +1016(delay)X +1249(splitting)X +1589(show)X +1815(no)X +1935(signi\256cant)X +2360(improvement)X +2898(in)X +2997(total)X +3193(computation)X +3699(time.)X +776 1710(In)N +889(the)X +1040(third)X +1255(sorting)X +1555(regime,)X +1881(we)X +2027(sort)X +2205(at)X +2309(the)X +2461(top)X +2618(node)X +2839(and)X +3012(at)X +3116(every)X +3364(eldest)X +3623(child.)X +3898(We)X +576 1818(call)N +754(this)X +931(sorting)X +1236(regime)X +1542(``EC)X +1767(\(eldest)X +2062(child\))X +2325(sorting''.)X +2741(EC)X +2901(sorting)X +3205(applies)X +3515(to)X +3627(MWF)X +3893(and)X +576 1926(delay)N +812(splitting,)X +1179(since)X +1404(only)X +1603(in)X +1706(these)X +1932(two)X +2104(algorithms)X +2544(do)X +2668(we)X +2808(suspend)X +3145(evaluation)X +3575(of)X +3683(all)X +3808(nodes)X +576 2034(that)N +751(are)X +899(not)X +1052(eldest)X +1307(children)X +1653(until)X +1859(their)X +2065(eldest)X +2319(sibling)X +2610(is)X +2703(fully)X +2914(evaluated.)X +3361(Therefore)X +3770(having)X +576 2142(the)N +718(best)X +897(child)X +1114(evaluated)X +1508(\256rst)X +1681(should)X +1961(result)X +2199(in)X +2298(more)X +2520(cutoffs.)X +776 2283(As)N +916(expected,)X +1317(the)X +1469(results)X +1755(are)X +1908(much)X +2157(better)X +2412(for)X +2559(EC)X +2717(sorting)X +3019(than)X +3220(PRV)X +3441(sorting,)X +3767(as)X +3882(evi-)X +576 2391(denced)N +875(by)X +997(tests)X +1194(with)X +1391(our)X +1545(tic-tac-toe)X +1963(and)X +2128(Othello)X +2442(applications.)X +2981(The)X +3156(total)X +3353(computation)X +3860(time)X +576 2499(is)N +664(almost)X +945(reduced)X +1274(by)X +1394(half)X +1568(when)X +1800(fewer)X +2043(machines)X +2431(are)X +2573(used.)X +2821(The)X +2996(reduction)X +3385(in)X +3485(the)X +3628(ef\256ciency,)X +576 2607(expected)N +948(due)X +1116(to)X +1220(the)X +1367(improvement)X +1910(in)X +2014(the)X +2161(sequential)X +2581(performance)X +3097(of)X +3206(the)X +3353(algorithms,)X +3817(is)X +3909(not)X +576 2715(too)N +725(bad.)X +938(Figures)X +1252(8,)X +1350(9)X +1424(and)X +1589(10)X +1711(show)X +1939(the)X +2083(number)X +2403(of)X +2509(nodes)X +2759(examined)X +3160(\(in)X +3293(multiples)X +3678(of)X +3784(1000\),)X +576 2823(total)N +772(time)X +968(and)X +1131(ef\256ciency)X +1535(comparisons)X +2045(for)X +2181(MWF)X +2434(using)X +2666(the)X +2808(4)X +9 f +(\264)S +1 f +2909(4)X +2981(tic-tac-toe)X +3397(game.)X +1377 4346 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 4329 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1614 4313 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 4287 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 4316 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 4235 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2243 4295 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2400 4295 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2557 4278 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 4299 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 4339 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1337 4339 MXY +[16] 0 setdash +1 setlinewidth +1377 4356 MXY +79 -17 Dl +158 -16 Dl +157 -26 Dl +157 29 Dl +157 -81 Dl +158 60 Dl +157 0 Dl +157 -17 Dl +158 21 Dl +157 40 Dl +5 f +2527 4242(MWF\(EC-sorting\))N +1337 4356 MXY +[] 0 setdash +3 setlinewidth +1377 3093 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 3086 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1614 3043 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 3130 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 3110 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 3255 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2243 3143 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2400 3264 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2557 3293 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 3269 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 3349 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1377 3103 MXY +79 -7 Dl +158 -43 Dl +157 87 Dl +157 -20 Dl +157 145 Dl +158 -112 Dl +157 121 Dl +157 29 Dl +158 -24 Dl +157 80 Dl +2541 3533(MWF\(NoSorting\))N +1377 4971 MXY +1573 0 Dl +1377 MX +0 -1967 Dl +4971 MY +0 20 Dl +1351 5102(1)N +1535 4971 MXY +0 20 Dl +1509 5102(3)N +1692 4971 MXY +0 20 Dl +1666 5102(5)N +1849 4971 MXY +0 20 Dl +1823 5102(7)N +2007 4971 MXY +0 20 Dl +1981 5102(9)N +2164 4971 MXY +0 20 Dl +2111 5102(11)N +2321 4971 MXY +0 20 Dl +2268 5102(13)N +2478 4971 MXY +0 20 Dl +2425 5102(15)N +2636 4971 MXY +0 20 Dl +2583 5102(17)N +2793 4971 MXY +0 20 Dl +2740 5102(19)N +2950 4971 MXY +0 20 Dl +2897 5102(21)N +1377 4971 MXY +-20 0 Dl +1151 5012(0.00)N +1377 4820 MXY +-20 0 Dl +1098 4861(50.00)N +1377 4669 MXY +-20 0 Dl +1045 4710(100.00)N +1377 4518 MXY +-20 0 Dl +1045 4559(150.00)N +1377 4366 MXY +-20 0 Dl +1045 4407(200.00)N +1377 4215 MXY +-20 0 Dl +1045 4256(250.00)N +1377 4064 MXY +-20 0 Dl +1045 4105(300.00)N +1377 3912 MXY +-20 0 Dl +1045 3953(350.00)N +1377 3761 MXY +-20 0 Dl +1045 3802(400.00)N +1377 3609 MXY +-20 0 Dl +1045 3650(450.00)N +1377 3458 MXY +-20 0 Dl +1045 3499(500.00)N +1377 3307 MXY +-20 0 Dl +1045 3348(550.00)N +1377 3155 MXY +-20 0 Dl +1045 3196(600.00)N +1377 3004 MXY +-20 0 Dl +1045 3045(650.00)N +3 f +1312 5263(Figure)N +1 f +1609(8:)X +1708(Nodes)X +1977(examined)X +2376(vs.)X +2509(number)X +2827(of)X +2931(machines)X + +15 p +%%Page: 15 15 +12 s 0 xH 0 xS 1 f +10 s +3 f +576 474(Game-tree)N +963(search)X +3952(15)X +1 f +12 s +1377 1091 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 1066 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1614 997 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 1057 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 1021 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 1123 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2243 974 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2400 1054 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2557 1049 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 900 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 1040 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1377 1101 MXY +79 -25 Dl +158 -69 Dl +157 60 Dl +157 -36 Dl +157 102 Dl +158 -149 Dl +157 80 Dl +157 -5 Dl +158 -149 Dl +157 140 Dl +5 f +2541 861(MWF\(NoSorting\))N +1377 1772 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 1689 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1614 1583 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 1450 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 1403 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 1240 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2243 1278 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2400 1299 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2557 1147 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 1141 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 1145 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1337 1145 MXY +[16] 0 setdash +1 setlinewidth +1377 1782 MXY +79 -83 Dl +158 -106 Dl +157 -133 Dl +157 -47 Dl +157 -163 Dl +158 38 Dl +157 21 Dl +157 -152 Dl +158 -6 Dl +157 4 Dl +2527 1266(MWF\(EC-sorting\))N +1337 1782 MXY +[] 0 setdash +3 setlinewidth +1377 2416 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 2379 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1614 2335 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 2290 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 2275 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 2210 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2243 2252 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2400 2279 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2557 2204 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 2239 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 2239 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1337 2239 MXY +[16] 0 setdash +1 setlinewidth +1377 2426 MXY +79 -37 Dl +158 -44 Dl +157 -45 Dl +157 -15 Dl +157 -65 Dl +158 42 Dl +157 27 Dl +157 -75 Dl +158 35 Dl +157 0 Dl +2370 2164(SortTime\(EC-sorting\))N +1337 2426 MXY +[] 0 setdash +3 setlinewidth +1377 2802 MXY +1573 0 Dl +1377 MX +0 -1967 Dl +2802 MY +0 20 Dl +1351 2933(1)N +1535 2802 MXY +0 20 Dl +1509 2933(3)N +1692 2802 MXY +0 20 Dl +1666 2933(5)N +1849 2802 MXY +0 20 Dl +1823 2933(7)N +2007 2802 MXY +0 20 Dl +1981 2933(9)N +2164 2802 MXY +0 20 Dl +2111 2933(11)N +2321 2802 MXY +0 20 Dl +2268 2933(13)N +2478 2802 MXY +0 20 Dl +2425 2933(15)N +2636 2802 MXY +0 20 Dl +2583 2933(17)N +2793 2802 MXY +0 20 Dl +2740 2933(19)N +2950 2802 MXY +0 20 Dl +2897 2933(21)N +1377 2802 MXY +-20 0 Dl +1151 2843(0.00)N +1377 2606 MXY +-20 0 Dl +1098 2647(40.00)N +1377 2409 MXY +-20 0 Dl +1098 2450(80.00)N +1377 2212 MXY +-20 0 Dl +1045 2253(120.00)N +1377 2015 MXY +-20 0 Dl +1045 2057(160.00)N +1377 1819 MXY +-20 0 Dl +1045 1860(200.00)N +1377 1622 MXY +-20 0 Dl +1045 1663(240.00)N +1377 1425 MXY +-20 0 Dl +1045 1466(280.00)N +1377 1229 MXY +-20 0 Dl +1045 1270(320.00)N +1377 1032 MXY +-20 0 Dl +1045 1073(360.00)N +1377 835 MXY +-20 0 Dl +1045 876(400.00)N +3 f +1532 3094(Figure)N +1 f +1829(9:)X +1928(Time)X +2156(vs.)X +2289(number)X +2607(of)X +2711(machines)X +1377 3298 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 3449 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1614 3611 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 3772 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 3823 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 3975 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2243 3943 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2400 3924 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2557 4050 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 4054 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 4054 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1377 3308 MXY +79 151 Dl +158 162 Dl +157 161 Dl +157 51 Dl +157 152 Dl +158 -32 Dl +157 -19 Dl +157 126 Dl +158 4 Dl +157 0 Dl +5 f +2527 4033(MWF\(EC-sorting\))N +1377 3298 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 3314 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1614 3390 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 3338 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 3379 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 3300 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2243 3430 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2400 3346 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2557 3351 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 3505 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 3365 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1337 3365 MXY +[16] 0 setdash +1 setlinewidth +1377 3308 MXY +79 16 Dl +158 76 Dl +157 -52 Dl +157 41 Dl +157 -79 Dl +158 130 Dl +157 -84 Dl +157 5 Dl +158 154 Dl +157 -140 Dl +2541 3364(MWF\(NoSorting\))N +1337 3308 MXY +[] 0 setdash +3 setlinewidth +1377 5275 MXY +1573 0 Dl +1377 MX +0 -1967 Dl +5275 MY +0 20 Dl +1351 5406(1)N +1535 5275 MXY +0 20 Dl +1509 5406(3)N +1692 5275 MXY +0 20 Dl +1666 5406(5)N +1849 5275 MXY +0 20 Dl +1823 5406(7)N +2007 5275 MXY +0 20 Dl +1981 5406(9)N +2164 5275 MXY +0 20 Dl +2111 5406(11)N +2321 5275 MXY +0 20 Dl +2268 5406(13)N +2478 5275 MXY +0 20 Dl +2425 5406(15)N +2636 5275 MXY +0 20 Dl +2583 5406(17)N +2793 5275 MXY +0 20 Dl +2740 5406(19)N +2950 5275 MXY +0 20 Dl +2897 5406(21)N +1377 5275 MXY +-20 0 Dl +1151 5316(0.00)N +1377 5079 MXY +-20 0 Dl +1151 5120(0.10)N +1377 4882 MXY +-20 0 Dl +1151 4923(0.20)N +1377 4685 MXY +-20 0 Dl +1151 4726(0.30)N +1377 4488 MXY +-20 0 Dl +1151 4530(0.40)N +1377 4292 MXY +-20 0 Dl +1151 4333(0.50)N +1377 4095 MXY +-20 0 Dl +1151 4136(0.60)N +1377 3898 MXY +-20 0 Dl +1151 3939(0.70)N +1377 3702 MXY +-20 0 Dl +1151 3743(0.80)N +1377 3505 MXY +-20 0 Dl +1151 3546(0.90)N +1377 3308 MXY +-20 0 Dl +1151 3349(1.00)N +3 f +1412 5567(Figure)N +1 f +1709(10:)X +1856(Ef\256ciency)X +2276(vs.)X +2409(number)X +2727(of)X +2831(machines)X + +16 p +%%Page: 16 16 +12 s 0 xH 0 xS 1 f +10 s +3 f +576 474(Game-tree)N +963(search)X +3952(16)X +1 f +12 s +776 780(The)N +953(last)X +1114(sorting)X +1408(regime)X +1703(is)X +1794(motivated)X +2207(by)X +2330(considering)X +2806(the)X +2951(type-2)X +3224(nodes)X +3475(in)X +3577(MWF.)X +3882(The)X +576 888(eldest)N +830(child)X +1052(of)X +1161(a)X +1233(type-2)X +1508(node)X +1724(is)X +1817(evaluated)X +2215(before)X +2489(its)X +2608(other)X +2834(children)X +3178(are)X +3324(generated.)X +3775(There-)X +576 996(fore,)N +784(if)X +872(we)X +1013(also)X +1197(sort)X +1370(the)X +1517(children)X +1862(of)X +1971(a)X +2044(type-2)X +2320(node)X +2537(there)X +2760(should)X +3046(be)X +3167(even)X +3379(more)X +3607(cutoffs.)X +3952(In)X +576 1104(this)N +748(sorting)X +1048(regime,)X +1373(in)X +1481(addition)X +1830(to)X +1938(sorting)X +2238(children)X +2587(of)X +2700(every)X +2947(eldest)X +3205(child,)X +3455(we)X +3599(also)X +3786(sort)X +3962(at)X +576 1212(every)N +814(type-2)X +1084(node.)X +1343(We)X +1501(call)X +1665(this)X +1828(regime)X +2120(``TT)X +2326(\(type-two\))X +2756(sorting''.)X +776 1353(TT)N +919(sorting)X +1211(resulted)X +1541(in)X +1641(a)X +1709(vast)X +1889(improvement)X +2428(in)X +2528(total)X +2725(computation)X +3232(time)X +3429(and)X +3594(the)X +3738(number)X +576 1461(of)N +688(nodes)X +944(generated.)X +3 f +1398(Unfortunately,)X +2034(a)X +2113(subtle)X +2389(bug)X +2574(in)X +2685(our)X +2860(implementation)X +3537(\(since)X +3803(\256xed\))X +576 1569(renders)N +920(all)X +1051(our)X +1224(conclusions)X +1722(about)X +1985(this)X +2163(sorting)X +2480(method)X +2819(inaccurate;)X +3314(previous)X +3696(versions)X +576 1677(of)N +681(this)X +855(report)X +1142(should)X +1438(not)X +1596(be)X +1717(trusted)X +2035(in)X +2139(this)X +2312(regard.)X +2662(In)X +2776(fact,)X +2979(what)X +3205(we)X +3341(implemented)X +3899(did)X +576 1785(not)N +760(evaluate)X +1153(type-2)X +1460(nodes)X +1745(as)X +1881(deeply)X +2199(as)X +2336(type-1)X +2644(nodes,)X +2954(so)X +3091(far)X +3266(fewer)X +3548(nodes)X +3834(were)X +576 1893(evaluated.)N +1053(So)X +1188(TT)X +1349(sorting)X +1670(\(in)X +1815(this)X +1997(report\))X +2324(implies)X +2651(a)X +2732(different)X +3123(evaluation)X +3583(strategy)X +3947(as)X +576 2001(well.)N +1 f +824(The)X +1008(computation)X +1524(time)X +1731(is)X +1830(almost)X +2122(30)X +2253(times)X +2497(faster)X +2746(than)X +2947(the)X +3100(computation)X +3617(time)X +3824(using)X +576 2109(EC)N +735(sorting)X +1038(for)X +1186(a)X +1265(4)X +9 f +(\264)S +1 f +1366(4)X +1450(tic-tac-toe)X +1877(game,)X +2145(even)X +2362(though)X +2664(about)X +2913(95%)X +3124(of)X +3239(the)X +3392(time)X +3599(is)X +3698(spent)X +3936(on)X +576 2217(sorting)N +868(in)X +968(the)X +1111(1-machine)X +1543(\(sequential\))X +2023(case.)X +2262(These)X +2517(results)X +2793(are)X +2936(shown)X +3211(in)X +3311(Figures)X +3625(11)X +3747(and)X +3912(12.)X +576 2325(The)N +771(ef\256ciency)X +1196(is)X +1305(drastically)X +1752(reduced)X +2102(because)X +2452(the)X +2615(work)X +2857(does)X +3078(not)X +3246(seem)X +3489(to)X +3608(be)X +3743(divided)X +576 2433(evenly)N +857(between)X +1202(the)X +1344(machines.)X +1780(Our)X +1953(assumption)X +2415(is)X +2503(that)X +2673(a)X +2741(better)X +2986(distribution)X +3455(of)X +3560(work)X +3782(can)X +3941(be)X +576 2541(achieved)N +948(by)X +1073(some)X +1305(adjustments)X +1794(to)X +1898(DIB)X +2092(itself)X +2314(so)X +2428(that)X +2602(this)X +2770(great)X +2992(speed)X +3240(can)X +3403(be)X +3523(accompanied)X +576 2649(by)N +696(a)X +763(better)X +1007(ef\256ciency.)X +1377 4770 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 4752 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1614 4667 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 4618 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 4590 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 4541 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2243 4493 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2400 4446 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2557 4431 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 4314 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 4395 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1377 4780 MXY +79 -18 Dl +158 -85 Dl +157 -49 Dl +157 -28 Dl +157 -49 Dl +158 -48 Dl +157 -47 Dl +157 -15 Dl +158 -77 Dl +157 41 Dl +5 f +2457 4358(MWF\(TT-sorting\))N +1377 3612 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 3514 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1614 3389 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 3233 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 3178 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 2985 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2243 3031 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2400 3055 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2557 2876 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 2870 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 2874 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1337 2874 MXY +[16] 0 setdash +1 setlinewidth +1377 3622 MXY +79 -98 Dl +158 -125 Dl +157 -156 Dl +157 -55 Dl +157 -193 Dl +158 46 Dl +157 24 Dl +157 -179 Dl +158 -6 Dl +157 4 Dl +2449 2871(MWF\(EC-sorting\))N +1337 3622 MXY +[] 0 setdash +3 setlinewidth +1377 4370 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 4326 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1614 4274 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 4221 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 4204 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 4128 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2243 4176 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2400 4208 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2557 4120 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 4162 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 4161 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1337 4161 MXY +[16] 0 setdash +1 setlinewidth +1377 4380 MXY +79 -44 Dl +158 -52 Dl +157 -53 Dl +157 -17 Dl +157 -76 Dl +158 48 Dl +157 32 Dl +157 -88 Dl +158 42 Dl +157 -1 Dl +2206 4115(SortTime\(EC-sorting\))N +3137(........)X +1337 4380 MXY +[] 0 setdash +3 setlinewidth +1377 4777 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 4777 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1614 4773 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 4772 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 4771 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 4770 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2243 4770 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2400 4771 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2557 4771 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 4768 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 4771 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1377 4787 MXY +79 0 Dl +158 -4 Dl +157 -1 Dl +157 -1 Dl +157 -1 Dl +158 0 Dl +157 1 Dl +157 0 Dl +158 -3 Dl +157 3 Dl +2337 4712(SortTime\(TT-sorting\))N +1377 4822 MXY +1573 0 Dl +1377 MX +0 -1967 Dl +4822 MY +0 20 Dl +1351 4953(1)N +1535 4822 MXY +0 20 Dl +1509 4953(3)N +1692 4822 MXY +0 20 Dl +1666 4953(5)N +1849 4822 MXY +0 20 Dl +1823 4953(7)N +2007 4822 MXY +0 20 Dl +1981 4953(9)N +2164 4822 MXY +0 20 Dl +2111 4953(11)N +2321 4822 MXY +0 20 Dl +2268 4953(13)N +2478 4822 MXY +0 20 Dl +2425 4953(15)N +2636 4822 MXY +0 20 Dl +2583 4953(17)N +2793 4822 MXY +0 20 Dl +2740 4953(19)N +2950 4822 MXY +0 20 Dl +2897 4953(21)N +1377 4822 MXY +-20 0 Dl +1151 4863(0.00)N +1377 4707 MXY +-20 0 Dl +1098 4748(20.00)N +1377 4591 MXY +-20 0 Dl +1098 4632(40.00)N +1377 4475 MXY +-20 0 Dl +1098 4516(60.00)N +1377 4360 MXY +-20 0 Dl +1098 4401(80.00)N +1377 4244 MXY +-20 0 Dl +1045 4285(100.00)N +1377 4128 MXY +-20 0 Dl +1045 4169(120.00)N +1377 4013 MXY +-20 0 Dl +1045 4054(140.00)N +1377 3897 MXY +-20 0 Dl +1045 3938(160.00)N +1377 3781 MXY +-20 0 Dl +1045 3822(180.00)N +1377 3665 MXY +-20 0 Dl +1045 3706(200.00)N +1377 3550 MXY +-20 0 Dl +1045 3591(220.00)N +1377 3434 MXY +-20 0 Dl +1045 3475(240.00)N +1377 3318 MXY +-20 0 Dl +1045 3359(260.00)N +1377 3202 MXY +-20 0 Dl +1045 3243(280.00)N +1377 3087 MXY +-20 0 Dl +1045 3128(300.00)N +1377 2971 MXY +-20 0 Dl +1045 3012(320.00)N +1377 2855 MXY +-20 0 Dl +1045 2896(340.00)N +3 f +1508 5114(Figure)N +1 f +1805(11:)X +1952(Time)X +2180(vs.)X +2313(number)X +2631(of)X +2735(machines)X + +17 p +%%Page: 17 17 +12 s 0 xH 0 xS 1 f +10 s +3 f +576 474(Game-tree)N +963(search)X +3952(17)X +1 f +12 s +1377 1179 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 1133 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1614 1092 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 1023 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 1099 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 888 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2243 1044 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2400 1044 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2557 1000 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 1055 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 1158 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1337 1158 MXY +[16] 0 setdash +1 setlinewidth +1377 1189 MXY +79 -46 Dl +158 -41 Dl +157 -69 Dl +157 76 Dl +157 -211 Dl +158 156 Dl +157 0 Dl +157 -44 Dl +158 55 Dl +157 103 Dl +5 f +2449 1348(MWF\(EC-sorting\))N +1337 1189 MXY +[] 0 setdash +3 setlinewidth +1377 2739 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 2741 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1614 2732 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 2729 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 2728 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 2722 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2243 2721 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2400 2725 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2557 2724 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 2718 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 2720 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1377 2749 MXY +79 2 Dl +158 -9 Dl +157 -3 Dl +157 -1 Dl +157 -6 Dl +158 -1 Dl +157 4 Dl +157 -1 Dl +158 -6 Dl +157 2 Dl +2457 2669(MWF\(TT-sorting\))N +1377 2787 MXY +1573 0 Dl +1377 MX +0 -1967 Dl +2787 MY +0 20 Dl +1351 2918(1)N +1535 2787 MXY +0 20 Dl +1509 2918(3)N +1692 2787 MXY +0 20 Dl +1666 2918(5)N +1849 2787 MXY +0 20 Dl +1823 2918(7)N +2007 2787 MXY +0 20 Dl +1981 2918(9)N +2164 2787 MXY +0 20 Dl +2111 2918(11)N +2321 2787 MXY +0 20 Dl +2268 2918(13)N +2478 2787 MXY +0 20 Dl +2425 2918(15)N +2636 2787 MXY +0 20 Dl +2583 2918(17)N +2793 2787 MXY +0 20 Dl +2740 2918(19)N +2950 2787 MXY +0 20 Dl +2897 2918(21)N +1377 2787 MXY +-20 0 Dl +1151 2828(0.00)N +1377 2591 MXY +-20 0 Dl +1098 2632(25.00)N +1377 2394 MXY +-20 0 Dl +1098 2435(50.00)N +1377 2197 MXY +-20 0 Dl +1098 2238(75.00)N +1377 2000 MXY +-20 0 Dl +1045 2042(100.00)N +1377 1804 MXY +-20 0 Dl +1045 1845(125.00)N +1377 1607 MXY +-20 0 Dl +1045 1648(150.00)N +1377 1410 MXY +-20 0 Dl +1045 1451(175.00)N +1377 1214 MXY +-20 0 Dl +1045 1255(200.00)N +1377 1017 MXY +-20 0 Dl +1045 1058(225.00)N +1377 820 MXY +-20 0 Dl +1045 861(250.00)N +3 f +1288 3079(Figure)N +1 f +1585(12:)X +1732(Nodes)X +2001(examined)X +2400(vs.)X +2533(number)X +2851(of)X +2955(machines)X +776 3253(We)N +958(also)X +1161(used)X +1385(three-level)X +1846(sort)X +2038(for)X +2198(TT)X +2364(sorting.)X +2727(The)X +2925(great)X +3166(speed)X +3433(in)X +3556(this)X +3743(method)X +576 3361(allowed)N +912(us)X +1028(to)X +1134(build)X +1363(a)X +1437(complete)X +1822(game)X +2062(tree)X +2238(for)X +2381(our)X +2540(experiments.)X +3090(In)X +3200(previous)X +3561(experiments)X +576 3469(with)N +771(tic-tac-toe,)X +1211(we)X +1347(built)X +1548(a)X +1615(search)X +1885(tree)X +2054(with)X +2249(nine)X +2439(levels;)X +2715(the)X +2858(complete)X +3237(search)X +3508(tree)X +3678(for)X +3815(a)X +3883(4)X +9 f +(\264)S +1 f +3984(4)X +576 3577(board)N +819(has)X +971(16)X +1091(levels.)X +8 f +14 s +576 3781(6.)N +844(New)X +1112(results)X +1 f +12 s +776 3922(We)N +939(have)X +1150(new)X +1339(results)X +1619(based)X +1867(on)X +1992(adjustments)X +2481(made)X +2719(to)X +2824(MWF)X +3083(concerning)X +3541(the)X +3689(selection)X +576 4030(of)N +682(type-1)X +954(nodes.)X +1252(In)X +1358(dynamic)X +1716(MWF)X +1971(\(DMWF\),)X +2383(we)X +2521(decide)X +2799(which)X +3060(children)X +3401(of)X +3506(a)X +3574(type-1)X +3845(node)X +576 4138(to)N +687(fully)X +905(investigate)X +1359(not)X +1518(by)X +1650(taking)X +1927(the)X +2081(\256rst)X +2266(\(as)X +2414(in)X +2525(MWF\),)X +2846(but)X +3005(by)X +3137(taking)X +3414(all)X +3547(those)X +3787(whose)X +576 4246(static)N +815(value)X +1059(is)X +1158(above)X +1423(the)X +1576(90th)X +1782(percentile)X +2198(of)X +2312(its)X +2437(siblings.)X +2818(To)X +2959(our)X +3121(knowledge,)X +3601(no)X +3731(one)X +3904(has)X +576 4354(tried)N +781(algorithms)X +1221(that)X +1394(dynamically)X +1900(adjust)X +2159(their)X +2365(width)X +2613(of)X +2722(full)X +2885(evaluation)X +3316(based)X +3564(on)X +3689(evidence)X +576 4462(provided)N +955(in)X +1067(the)X +1221(tree.)X +1450(This)X +1657(adjustment)X +2116(can)X +2286(also)X +2477(be)X +2604(made)X +2849(to)X +2960(other)X +3194(algorithms)X +3642(like)X +3823(delay)X +576 4570(splitting)N +916(and)X +1079(ER.)X +776 4711(We)N +939(compared)X +1348(MWF)X +1606(and)X +1774(DMWF)X +2101(under)X +2349(EC)X +2501(sorting)X +2797(for)X +2939(a)X +3012(tic-tac-toe)X +3434(tree)X +3609(with)X +3810(a)X +3883(4)X +9 f +(\264)S +1 f +3984(4)X +576 4819(board.)N +873(Figure)X +1154(13)X +1280(shows)X +1549(the)X +1697(comparison)X +2176(of)X +2286(the)X +2434(total)X +2636(time)X +2838(\(including)X +3264(communication)X +3893(and)X +576 4927(idle)N +745(time\))X +973(between)X +1318(MWF)X +1571(and)X +1734(DMWF.)X +2104(DMWF)X +2426(is)X +2514(about)X +2752(one-third)X +3129(faster)X +3368(than)X +3559(MWF.)X +3861(This)X +576 5035(speed)N +843(is)X +955(achieved)X +1346(with)X +1565(even)X +1795(less)X +1987(sorting)X +2302(time)X +2522(because)X +2875(it)X +2977(generates)X +3389(fewer)X +3656(nodes,)X +3952(as)X +576 5143(demonstrated)N +1124(in)X +1228(Figure)X +1508(14)X +1633(\(number)X +1989(of)X +2099(nodes)X +2353(are)X +2501(in)X +2606(multiples)X +2995(of)X +3105(1000\).)X +3407(There)X +3662(is)X +3756(also)X +3941(an)X +576 5251(improvement)N +1114(in)X +1213(the)X +1355(ef\256ciency)X +1759(\(Figure)X +2066(15\).)X + +18 p +%%Page: 18 18 +12 s 0 xH 0 xS 1 f +10 s +3 f +576 474(Game-tree)N +963(search)X +3952(18)X +1 f +12 s +1377 1867 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 1852 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1614 1809 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 1762 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 1708 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 1607 MXY +0 19 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2243 1618 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2400 1533 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2557 1494 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 1393 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 1305 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1337 1305 MXY +[16] 0 setdash +1 setlinewidth +1377 1877 MXY +79 -15 Dl +158 -43 Dl +157 -47 Dl +157 -54 Dl +157 -102 Dl +158 12 Dl +157 -85 Dl +157 -39 Dl +158 -101 Dl +157 -88 Dl +5 f +2428 1286(TotalTime\(DMWF\))N +1337 1877 MXY +[] 0 setdash +3 setlinewidth +1377 2296 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 2296 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1614 2303 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 2306 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 2303 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 2296 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2243 2304 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2400 2280 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2557 2293 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 2284 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 2260 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1337 2260 MXY +[16] 0 setdash +1 setlinewidth +1377 2306 MXY +79 0 Dl +158 7 Dl +157 3 Dl +157 -3 Dl +157 -7 Dl +158 8 Dl +157 -24 Dl +157 13 Dl +158 -9 Dl +157 -24 Dl +2446 2458(SortTime\(DMWF\))N +1337 2306 MXY +[] 0 setdash +3 setlinewidth +1377 1611 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 1517 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1614 1395 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 1244 MXY +0 19 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 1190 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 1002 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2243 1047 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2400 1071 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2557 896 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 890 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 894 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1377 1621 MXY +79 -94 Dl +158 -122 Dl +157 -152 Dl +157 -53 Dl +157 -188 Dl +158 45 Dl +157 24 Dl +157 -175 Dl +158 -6 Dl +157 4 Dl +2383 893(TotalTime\(MWF\))N +1377 2348 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 2305 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1614 2254 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 2203 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 2186 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 2112 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2243 2159 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2400 2190 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2557 2105 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 2145 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 2145 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1377 2358 MXY +79 -43 Dl +158 -51 Dl +157 -51 Dl +157 -17 Dl +157 -74 Dl +158 47 Dl +157 31 Dl +157 -85 Dl +158 40 Dl +157 0 Dl +2481 2089(SortTime\(MWF\))N +1377 2787 MXY +1573 0 Dl +1377 MX +0 -1967 Dl +2787 MY +0 20 Dl +1351 2918(1)N +1535 2787 MXY +0 20 Dl +1509 2918(3)N +1692 2787 MXY +0 20 Dl +1666 2918(5)N +1849 2787 MXY +0 20 Dl +1823 2918(7)N +2007 2787 MXY +0 20 Dl +1981 2918(9)N +2164 2787 MXY +0 20 Dl +2111 2918(11)N +2321 2787 MXY +0 20 Dl +2268 2918(13)N +2478 2787 MXY +0 20 Dl +2425 2918(15)N +2636 2787 MXY +0 20 Dl +2583 2918(17)N +2793 2787 MXY +0 20 Dl +2740 2918(19)N +2950 2787 MXY +0 20 Dl +2897 2918(21)N +1377 2787 MXY +-20 0 Dl +1151 2828(0.00)N +1377 2506 MXY +-20 0 Dl +1098 2547(50.00)N +1377 2225 MXY +-20 0 Dl +1045 2266(100.00)N +1377 1944 MXY +-20 0 Dl +1045 1985(150.00)N +1377 1663 MXY +-20 0 Dl +1045 1704(200.00)N +1377 1382 MXY +-20 0 Dl +1045 1423(250.00)N +1377 1101 MXY +-20 0 Dl +1045 1142(300.00)N +1377 820 MXY +-20 0 Dl +1045 861(350.00)N +3 f +1508 3079(Figure)N +1 f +1805(13:)X +1952(Time)X +2180(vs.)X +2313(number)X +2631(of)X +2735(machines)X +1377 3652 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 3606 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1614 3565 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 3496 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 3572 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 3361 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2243 3517 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2400 3517 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2557 3473 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 3528 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 3631 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1337 3631 MXY +[16] 0 setdash +1 setlinewidth +1377 3662 MXY +79 -46 Dl +158 -41 Dl +157 -69 Dl +157 76 Dl +157 -211 Dl +158 156 Dl +157 0 Dl +157 -44 Dl +158 55 Dl +157 103 Dl +5 f +2785 3821(MWF)N +1337 3662 MXY +[] 0 setdash +3 setlinewidth +1377 4212 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 4211 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1614 4218 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 4249 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 4232 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 4248 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2243 4282 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2400 4262 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2557 4281 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 4306 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 4258 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1377 4222 MXY +79 -1 Dl +158 7 Dl +157 31 Dl +157 -17 Dl +157 16 Dl +158 34 Dl +157 -20 Dl +157 19 Dl +158 25 Dl +157 -48 Dl +2751 4293(DMWF)N +1377 5260 MXY +1573 0 Dl +1377 MX +0 -1967 Dl +5260 MY +0 20 Dl +1351 5391(1)N +1535 5260 MXY +0 20 Dl +1509 5391(3)N +1692 5260 MXY +0 20 Dl +1666 5391(5)N +1849 5260 MXY +0 20 Dl +1823 5391(7)N +2007 5260 MXY +0 20 Dl +1981 5391(9)N +2164 5260 MXY +0 20 Dl +2111 5391(11)N +2321 5260 MXY +0 20 Dl +2268 5391(13)N +2478 5260 MXY +0 20 Dl +2425 5391(15)N +2636 5260 MXY +0 20 Dl +2583 5391(17)N +2793 5260 MXY +0 20 Dl +2740 5391(19)N +2950 5260 MXY +0 20 Dl +2897 5391(21)N +1377 5260 MXY +-20 0 Dl +1151 5301(0.00)N +1377 5064 MXY +-20 0 Dl +1098 5105(25.00)N +1377 4867 MXY +-20 0 Dl +1098 4908(50.00)N +1377 4670 MXY +-20 0 Dl +1098 4711(75.00)N +1377 4473 MXY +-20 0 Dl +1045 4515(100.00)N +1377 4277 MXY +-20 0 Dl +1045 4318(125.00)N +1377 4080 MXY +-20 0 Dl +1045 4121(150.00)N +1377 3883 MXY +-20 0 Dl +1045 3924(175.00)N +1377 3687 MXY +-20 0 Dl +1045 3728(200.00)N +1377 3490 MXY +-20 0 Dl +1045 3531(225.00)N +1377 3293 MXY +-20 0 Dl +1045 3334(250.00)N +3 f +1288 5552(Figure)N +1 f +1585(14:)X +1732(Nodes)X +2001(examined)X +2400(vs.)X +2533(number)X +2851(of)X +2955(machines)X + +19 p +%%Page: 19 19 +12 s 0 xH 0 xS 1 f +10 s +3 f +576 474(Game-tree)N +963(search)X +3952(19)X +1 f +12 s +1377 810 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 961 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1614 1123 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 1284 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 1335 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 1487 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2243 1455 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2400 1436 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2557 1562 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 1566 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 1566 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1377 820 MXY +79 151 Dl +158 162 Dl +157 161 Dl +157 51 Dl +157 152 Dl +158 -32 Dl +157 -19 Dl +157 126 Dl +158 4 Dl +157 0 Dl +5 f +2785 1712(MWF)N +1377 810 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 832 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1614 928 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 1024 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 1115 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 1239 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2243 1251 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2400 1349 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2557 1369 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 1550 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 1497 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1337 1497 MXY +[16] 0 setdash +1 setlinewidth +1377 820 MXY +79 22 Dl +158 96 Dl +157 96 Dl +157 91 Dl +157 124 Dl +158 12 Dl +157 98 Dl +157 20 Dl +158 181 Dl +157 -53 Dl +2751 1506(DMWF)N +1337 820 MXY +[] 0 setdash +3 setlinewidth +1377 2787 MXY +1573 0 Dl +1377 MX +0 -1967 Dl +2787 MY +0 20 Dl +1351 2918(1)N +1535 2787 MXY +0 20 Dl +1509 2918(3)N +1692 2787 MXY +0 20 Dl +1666 2918(5)N +1849 2787 MXY +0 20 Dl +1823 2918(7)N +2007 2787 MXY +0 20 Dl +1981 2918(9)N +2164 2787 MXY +0 20 Dl +2111 2918(11)N +2321 2787 MXY +0 20 Dl +2268 2918(13)N +2478 2787 MXY +0 20 Dl +2425 2918(15)N +2636 2787 MXY +0 20 Dl +2583 2918(17)N +2793 2787 MXY +0 20 Dl +2740 2918(19)N +2950 2787 MXY +0 20 Dl +2897 2918(21)N +1377 2787 MXY +-20 0 Dl +1151 2828(0.00)N +1377 2591 MXY +-20 0 Dl +1151 2632(0.10)N +1377 2394 MXY +-20 0 Dl +1151 2435(0.20)N +1377 2197 MXY +-20 0 Dl +1151 2238(0.30)N +1377 2000 MXY +-20 0 Dl +1151 2042(0.40)N +1377 1804 MXY +-20 0 Dl +1151 1845(0.50)N +1377 1607 MXY +-20 0 Dl +1151 1648(0.60)N +1377 1410 MXY +-20 0 Dl +1151 1451(0.70)N +1377 1214 MXY +-20 0 Dl +1151 1255(0.80)N +1377 1017 MXY +-20 0 Dl +1151 1058(0.90)N +1377 820 MXY +-20 0 Dl +1151 861(1.00)N +3 f +1424 3079(Figure)N +1 f +1721(15:)X +1868(Ef\256ciency)X +2288(vs)X +2397(number)X +2715(of)X +2819(machines)X +776 3253(We)N +952(also)X +1149(compared)X +1571(MWF)X +1842(and)X +2023(DMWF)X +2363(under)X +2624(EC)X +2789(sorting)X +3098(for)X +3252(Othello)X +3583(with)X +3797(a)X +3883(6)X +9 f +(\264)S +1 f +3984(6)X +576 3361(board.)N +887(Since)X +1145(Othello)X +1478(is)X +1585(a)X +1671(more)X +1912(complicated)X +2427(game)X +2679(than)X +2888(tic-tac-toe,)X +3347(the)X +3508(sorting)X +3818(depth)X +576 3469(parameter)N +986(was)X +1160(set)X +1292(to)X +1392(6)X +1465(levels,)X +1739(as)X +1844(mentioned)X +2276(above.)X +2579(The)X +2754(results)X +3030(of)X +3135(this)X +3299(experiment,)X +3782(shown)X +576 3577(in)N +675(Figures)X +987(16,)X +1131(17)X +1251(and)X +1414(18,)X +1558(are)X +1700(similar)X +1992(to)X +2091(the)X +2233(results)X +2508(from)X +2719(tic-tac-toe.)X + +20 p +%%Page: 20 20 +12 s 0 xH 0 xS 1 f +10 s +3 f +576 474(Game-tree)N +963(search)X +3952(20)X +1 f +12 s +1377 2410 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 2337 MXY +0 19 Dl +0 -9 Dl +10 0 Dl +-20 0 Dl +1614 2219 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 2139 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 2043 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 1982 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2243 1901 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2400 1792 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2557 1764 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 1617 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 1568 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1337 1568 MXY +[16] 0 setdash +1 setlinewidth +1377 2420 MXY +79 -73 Dl +158 -118 Dl +157 -80 Dl +157 -96 Dl +157 -61 Dl +158 -81 Dl +157 -109 Dl +157 -28 Dl +158 -147 Dl +157 -49 Dl +5 f +2349 1624(TotalTime\(DMWF\))N +1337 2420 MXY +[] 0 setdash +3 setlinewidth +1377 2732 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 2721 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1614 2722 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 2718 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 2711 MXY +0 19 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 2712 MXY +0 19 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2243 2709 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2400 2701 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2557 2699 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 2704 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 2687 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1337 2687 MXY +[16] 0 setdash +1 setlinewidth +1377 2742 MXY +79 -11 Dl +158 1 Dl +157 -4 Dl +157 -8 Dl +157 1 Dl +158 -2 Dl +157 -8 Dl +157 -2 Dl +158 5 Dl +157 -17 Dl +2367 2652(SortTime\(DMWF\))N +1337 2742 MXY +[] 0 setdash +3 setlinewidth +1377 2167 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 2087 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1614 1968 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 1859 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 1825 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 1738 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2243 1648 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2400 1511 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2557 1361 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 1145 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 827 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1377 2177 MXY +79 -80 Dl +158 -119 Dl +157 -109 Dl +157 -34 Dl +157 -87 Dl +158 -90 Dl +157 -137 Dl +157 -150 Dl +158 -216 Dl +157 -318 Dl +2383 883(TotalTime\(MWF\))N +1377 2719 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 2714 MXY +0 19 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1614 2703 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 2706 MXY +0 19 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 2707 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 2702 MXY +0 19 Dl +0 -9 Dl +10 0 Dl +-20 0 Dl +2243 2696 MXY +0 19 Dl +0 -9 Dl +10 0 Dl +-20 0 Dl +2400 2698 MXY +0 19 Dl +0 -9 Dl +10 0 Dl +-20 0 Dl +2557 2692 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 2679 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 2670 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1377 2729 MXY +79 -6 Dl +158 -10 Dl +157 2 Dl +157 2 Dl +157 -5 Dl +158 -6 Dl +157 2 Dl +157 -6 Dl +158 -13 Dl +157 -9 Dl +2402 2559(SortTime\(MWF\))N +1377 2787 MXY +1573 0 Dl +1377 MX +0 -1967 Dl +2787 MY +0 20 Dl +1351 2918(1)N +1535 2787 MXY +0 20 Dl +1509 2918(3)N +1692 2787 MXY +0 20 Dl +1666 2918(5)N +1849 2787 MXY +0 20 Dl +1823 2918(7)N +2007 2787 MXY +0 20 Dl +1981 2918(9)N +2164 2787 MXY +0 20 Dl +2111 2918(11)N +2321 2787 MXY +0 20 Dl +2268 2918(13)N +2478 2787 MXY +0 20 Dl +2425 2918(15)N +2636 2787 MXY +0 20 Dl +2583 2918(17)N +2793 2787 MXY +0 20 Dl +2740 2918(19)N +2950 2787 MXY +0 20 Dl +2897 2918(21)N +1377 2787 MXY +-20 0 Dl +1151 2828(0.00)N +1377 2656 MXY +-20 0 Dl +1045 2697(100.00)N +1377 2525 MXY +-20 0 Dl +1045 2566(200.00)N +1377 2394 MXY +-20 0 Dl +1045 2435(300.00)N +1377 2263 MXY +-20 0 Dl +1045 2304(400.00)N +1377 2132 MXY +-20 0 Dl +1045 2173(500.00)N +1377 2000 MXY +-20 0 Dl +1045 2042(600.00)N +1377 1869 MXY +-20 0 Dl +1045 1910(700.00)N +1377 1738 MXY +-20 0 Dl +1045 1779(800.00)N +1377 1607 MXY +-20 0 Dl +1045 1648(900.00)N +1377 1476 MXY +-20 0 Dl +992 1517(1000.00)N +1377 1345 MXY +-20 0 Dl +992 1386(1100.00)N +1377 1214 MXY +-20 0 Dl +992 1255(1200.00)N +1377 1082 MXY +-20 0 Dl +992 1123(1300.00)N +1377 951 MXY +-20 0 Dl +992 992(1400.00)N +1377 820 MXY +-20 0 Dl +992 861(1500.00)N +3 f +1508 3079(Figure)N +1 f +1805(16:)X +1952(Time)X +2180(vs.)X +2313(number)X +2631(of)X +2735(machines)X +1377 4199 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 4080 MXY +0 19 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1614 3953 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 3825 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 3803 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 3756 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2243 3631 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2400 3510 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2557 3430 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 3413 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 3349 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1337 3349 MXY +[16] 0 setdash +1 setlinewidth +1377 4209 MXY +79 -120 Dl +158 -126 Dl +157 -128 Dl +157 -22 Dl +157 -47 Dl +158 -125 Dl +157 -121 Dl +157 -80 Dl +158 -17 Dl +157 -64 Dl +5 f +2785 3389(MWF)N +1337 4209 MXY +[] 0 setdash +3 setlinewidth +1377 4662 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1456 4559 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1614 4419 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1771 4366 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1928 4258 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2085 4262 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2243 4186 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2400 4112 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2557 4133 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2715 4068 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +2872 4003 MXY +0 20 Dl +0 -10 Dl +10 0 Dl +-20 0 Dl +1377 4672 MXY +79 -103 Dl +158 -140 Dl +157 -53 Dl +157 -108 Dl +157 4 Dl +158 -76 Dl +157 -74 Dl +157 21 Dl +158 -65 Dl +157 -65 Dl +2751 4018(DMWF)N +1377 5260 MXY +1573 0 Dl +1377 MX +0 -1967 Dl +5260 MY +0 20 Dl +1351 5391(1)N +1535 5260 MXY +0 20 Dl +1509 5391(3)N +1692 5260 MXY +0 20 Dl +1666 5391(5)N +1849 5260 MXY +0 20 Dl +1823 5391(7)N +2007 5260 MXY +0 20 Dl +1981 5391(9)N +2164 5260 MXY +0 20 Dl +2111 5391(11)N +2321 5260 MXY +0 20 Dl +2268 5391(13)N +2478 5260 MXY +0 20 Dl +2425 5391(15)N +2636 5260 MXY +0 20 Dl +2583 5391(17)N +2793 5260 MXY +0 20 Dl +2740 5391(19)N +2950 5260 MXY +0 20 Dl +2897 5391(21)N +1377 5260 MXY +-20 0 Dl +1151 5301(0.00)N +1377 5064 MXY +-20 0 Dl +1098 5105(50.00)N +1377 4867 MXY +-20 0 Dl +1045 4908(100.00)N +1377 4670 MXY +-20 0 Dl +1045 4711(150.00)N +1377 4473 MXY +-20 0 Dl +1045 4515(200.00)N +1377 4277 MXY +-20 0 Dl +1045 4318(250.00)N +1377 4080 MXY +-20 0 Dl +1045 4121(300.00)N +1377 3883 MXY +-20 0 Dl +1045 3924(350.00)N +1377 3687 MXY +-20 0 Dl +1045 3728(400.00)N +1377 3490 MXY +-20 0 Dl +1045 3531(450.00)N +1377 3293 MXY +-20 0 Dl +1045 3334(500.00)N +3 f +1288 5552(Figure)N +1 f +1585(17:)X +1732(Nodes)X +2001(examined)X +2400(vs.)X +2533(number)X +2851(of)X +2955(machines)X + +21 p +%%Page: 21 21 +12 s 0 xH 0 xS 1 f +10 s +3 f +576 474(Game-tree)N +963(search)X +3952(21)X +1 f +12 s +981 826 MXY +0 30 Dl +0 -15 Dl +15 0 Dl +-30 0 Dl +1101 1169 MXY +0 30 Dl +0 -15 Dl +15 0 Dl +-30 0 Dl +1340 1560 MXY +0 30 Dl +0 -15 Dl +15 0 Dl +-31 0 Dl +1578 1826 MXY +0 30 Dl +0 -15 Dl +15 0 Dl +-30 0 Dl +1817 1897 MXY +0 31 Dl +0 -16 Dl +15 0 Dl +-30 0 Dl +2056 2059 MXY +0 30 Dl +0 -15 Dl +15 0 Dl +-30 0 Dl +2294 2199 MXY +0 30 Dl +0 -15 Dl +16 0 Dl +-31 0 Dl +2533 2373 MXY +0 30 Dl +0 -15 Dl +15 0 Dl +-30 0 Dl +2772 2513 MXY +0 30 Dl +0 -15 Dl +15 0 Dl +-30 0 Dl +3011 2698 MXY +0 30 Dl +0 -15 Dl +15 0 Dl +-30 0 Dl +3249 2880 MXY +0 31 Dl +0 -16 Dl +16 0 Dl +-31 0 Dl +981 841 MXY +120 343 Dl +239 391 Dl +238 266 Dl +239 71 Dl +239 162 Dl +238 140 Dl +239 174 Dl +239 140 Dl +239 185 Dl +238 182 Dl +5 f +3178 2885(MWF)N +981 826 MXY +0 30 Dl +0 -15 Dl +15 0 Dl +-30 0 Dl +1101 1318 MXY +0 31 Dl +0 -16 Dl +15 0 Dl +-30 0 Dl +1340 1844 MXY +0 31 Dl +0 -16 Dl +15 0 Dl +-31 0 Dl +1578 2092 MXY +0 30 Dl +0 -15 Dl +15 0 Dl +-30 0 Dl +1817 2319 MXY +0 30 Dl +0 -15 Dl +15 0 Dl +-30 0 Dl +2056 2432 MXY +0 31 Dl +0 -15 Dl +15 0 Dl +-30 0 Dl +2294 2560 MXY +0 31 Dl +0 -15 Dl +16 0 Dl +-31 0 Dl +2533 2701 MXY +0 30 Dl +0 -15 Dl +15 0 Dl +-30 0 Dl +2772 2731 MXY +0 30 Dl +0 -15 Dl +15 0 Dl +-30 0 Dl +3011 2868 MXY +0 31 Dl +0 -16 Dl +15 0 Dl +-30 0 Dl +3249 2907 MXY +0 30 Dl +0 -15 Dl +16 0 Dl +-31 0 Dl +920 2907 MXY +[16] 0 setdash +1 setlinewidth +981 841 MXY +120 492 Dl +239 526 Dl +238 248 Dl +239 227 Dl +239 114 Dl +238 128 Dl +239 140 Dl +239 30 Dl +239 137 Dl +238 39 Dl +3144 3034(DMWF)N +920 841 MXY +[] 0 setdash +3 setlinewidth +981 3827 MXY +2387 0 Dl +981 MX +0 -2986 Dl +3827 MY +0 30 Dl +955 3984(1)N +1220 3827 MXY +0 30 Dl +1194 3984(3)N +1459 3827 MXY +0 30 Dl +1433 3984(5)N +1697 3827 MXY +0 30 Dl +1671 3984(7)N +1936 3827 MXY +0 30 Dl +1910 3984(9)N +2175 3827 MXY +0 30 Dl +2122 3984(11)N +2413 3827 MXY +0 30 Dl +2360 3984(13)N +2652 3827 MXY +0 30 Dl +2599 3984(15)N +2891 3827 MXY +0 30 Dl +2838 3984(17)N +3130 3827 MXY +0 30 Dl +3077 3984(19)N +3368 3827 MXY +0 30 Dl +3315 3984(21)N +981 3827 MXY +-30 0 Dl +734 3847(0.00)N +981 3528 MXY +-30 0 Dl +734 3549(0.10)N +981 3230 MXY +-30 0 Dl +734 3250(0.20)N +981 2931 MXY +-30 0 Dl +734 2951(0.30)N +981 2632 MXY +-30 0 Dl +734 2653(0.40)N +981 2334 MXY +-30 0 Dl +734 2354(0.50)N +981 2035 MXY +-30 0 Dl +734 2056(0.60)N +981 1737 MXY +-30 0 Dl +734 1757(0.70)N +981 1438 MXY +-30 0 Dl +734 1458(0.80)N +981 1139 MXY +-30 0 Dl +734 1160(0.90)N +981 841 MXY +-30 0 Dl +734 861(1.00)N +3 f +1424 4181(Figure)N +1 f +1721(18:)X +1868(Ef\256ciency)X +2288(vs)X +2397(number)X +2715(of)X +2819(machines)X +8 f +14 s +576 4418(7.)N +844(Future)X +1313(work)X +1 f +12 s +776 4559(With)N +996(enhancements)X +1569(made)X +1805(to)X +1907(DIB)X +2099(for)X +2239(achieving)X +2642(high)X +2841(ef\256ciency)X +3249(in)X +3352(game)X +3589(tree)X +3762(search,)X +576 4667(we)N +722(have)X +938(developed)X +1368(an)X +1492(environment)X +2012(in)X +2120(which)X +2388(we)X +2533(can)X +2700(test)X +2867(different)X +3232(algorithms)X +3677(in)X +3785(a)X +3861(con-)X +576 4775(sistent)N +853(way.)X +1092(These)X +1353(algorithms)X +1796(have)X +2009(been)X +2222(examined)X +2628(using)X +2867(a)X +2941(test)X +3107(suite)X +3321(of)X +3433(problems)X +3823(taken)X +576 4883(from)N +793(game)X +1032(trees)X +1244(for)X +1386(checkers,)X +1776(tic-tac-toe,)X +2221(and)X +2389(Othello.)X +2755(These)X +3014(games)X +3289(are)X +3436(coded)X +3695(indepen-)X +576 4991(dently)N +841(from)X +1052(the)X +1194(search)X +1464(algorithms,)X +1924(thus)X +2108(contributing)X +2603(to)X +2702(the)X +2844(consistency)X +3317(of)X +3421(the)X +3563(experiment.)X +776 5132(We)N +954(are)X +1116(currently)X +1508(testing)X +1809(these)X +2051(algorithms)X +2507(on)X +2647(a)X +2735(26-processor)X +3276(Sequent)X +3631(Symmetry)X +576 5240(machine.)N +992(Our)X +1182(future)X +1453(plans)X +1697(include)X +2022(the)X +2181(use)X +2350(of)X +2471(a)X +2555(KSR)X +2782(multicomputer)X +3391(with)X +3603(64)X +3740(cpus)X +3957(to)X +576 5348(examine)N +927(the)X +1069(search)X +1339(algorithms)X +1775(with)X +1970(a)X +2037(larger)X +2286(number)X +2604(of)X +2708(processors.)X +776 5489(We)N +944(will)X +1128(also)X +1317(experiment)X +1785(with)X +1990(worst-case)X +2435(sorting,)X +2760(not)X +2917(because)X +3256(it)X +3345(would)X +3620(be)X +3746(used)X +3957(in)X +576 5597(practice,)N +930(but)X +1077(to)X +1176(see)X +1323(how)X +1512(each)X +1713(algorithm)X +2112(is)X +2200(sensitive)X +2561(to)X +2660(sorting.)X + +22 p +%%Page: 22 22 +12 s 0 xH 0 xS 1 f +10 s +3 f +576 474(Game-tree)N +963(search)X +3952(22)X +8 f +14 s +576 780(References)N +1 f +12 s +576 921(1.)N +776(Raphael)X +1122(Finkel)X +1399(and)X +1569(Udi)X +1744(Manber,)X +2098(``DIB)X +2358(\320)X +2485(A)X +2585(Distributed)X +3049 0.2356(Implementation)AX +3691(of)X +3802(Back-)X +776 1029(tracking,'')N +2 f +1223(ACM)X +1469(Transactions)X +2013(on)X +2152(Programming)X +2733(Languages)X +3196(and)X +3382(Systems)X +3 f +3728(9)X +1 f +(\(2\))S +3912(pp.)X +776 1137(235-256)N +1120(\(April)X +1379(1987\).)X +576 1278(2.)N +776(Vipin)X +1024(Kumar)X +1320(and)X +1488(V.)X +1610(Nageshwara)X +2115(Rao,)X +2 f +2324(Scalable)X +2686(Parallel)X +3032(Formation)X +3473(of)X +3578(Depth-First)X +776 1386(Search)N +1 f +1043(.)X +576 1527(3.)N +776(Igor)X +960(Steinberg)X +1353(and)X +1516(Marvin)X +1823(Solomon,)X +2 f +2218(Searching)X +2632(Game)X +2885(tree)X +3059(in)X +3158(Parallel)X +1 f +3474(.)X +576 1668(4.)N +776(John)X +1000(Philip)X +1273(Fishburn,)X +1681(``Analysis)X +2124(of)X +2247(speed)X +2509(up)X +2648(in)X +2767(Distributed)X +3244(Algorithms,'')X +3814(Ph.D.)X +776 1776(Thesis,)N +1140(Department)X +1660(of)X +1805(Computer)X +2255(Science,)X +2644(University)X +3114(of)X +3258(Wisconsin-Madison)X +776 1884(\(1981\).)N +576 2025(5.)N +776(D.)X +907(V.)X +1038(Knuth)X +1316(and)X +1493(R.)X +1619(W.)X +1772(Moore,)X +2090(``An)X +2309(analysis)X +2657(of)X +2775(alpha-beta)X +3215(prunning,'')X +2 f +3689(Arti\256cial)X +776 2133(Intelligence)N +3 f +1256(6)X +1 f +1328(pp.)X +1472(293-326)X +1816(\(1975\).)X +576 2274(6.)N +776(Selim)X +1048(G.)X +1188(Akl,)X +1403(David)X +1685(T.)X +1815(Barnard,)X +2196(and)X +2382(Ralph)X +2659(J.)X +2767(Doran,)X +3078(``Desing,)X +3485(Analysis,)X +3893(and)X +776 2382 0.2356(Implementation)AN +1432(of)X +1557(a)X +1645(Parallel)X +1985(Tree)X +2207(Search)X +2514(Algorithm,'')X +2 f +3048(IEEE)X +3 f +3301(PAMI-4)X +1 f +3637(\(2\)\(March)X +776 2490(1982\).)N +576 2631(7.)N +776(R.)X +891(A.)X +1011(Finkel)X +1284(and)X +1450(J.)X +1538(P.)X +1642(Fishburn,)X +2034(``Parallelism)X +2559(in)X +2661(alpha-beta)X +3090(search,'')X +2 f +3452(Arti\256cial)X +3823(Intel-)X +776 2739(ligence)N +3 f +1079(19)X +1 f +1199(pp.)X +1343(89-106)X +1639(\(1982\).)X +576 2880(8.)N +776(T.)X +903(A.)X +1040(Marsland)X +1448(and)X +1632(M.)X +1786(Campbell,)X +2230(``Parallel)X +2634(Search)X +2941(of)X +3066(Strongly)X +3442(Ordered)X +3802(Game)X +776 2988(Trees,'')N +2 f +1102(Computing)X +1553(Surveys)X +3 f +1876(14)X +1 f +(\(4\))S +2108(pp.)X +2252(533-551)X +2596(\(December)X +3048(1982\).)X + +22 p +%%Trailer +xt + +xs diff --git a/parallel/acm.ps b/parallel/acm.ps new file mode 100755 index 0000000..f87e7b1 --- /dev/null +++ b/parallel/acm.ps @@ -0,0 +1,12754 @@ +%!PS-Adobe-2.0 +%%Creator: dvipsk 5.58f Copyright 1986, 1994 Radical Eye Software +%%Title: acm.dvi +%%Pages: 8 +%%PageOrder: Ascend +%%BoundingBox: 0 0 612 792 +%%EndComments +%DVIPSCommandLine: dvips -f acm.dvi +%DVIPSParameters: dpi=600, comments removed +%DVIPSSource: TeX output 1995.12.14:1155 +%%BeginProcSet: tex.pro +/TeXDict 250 dict def TeXDict begin /N{def}def /B{bind def}N /S{exch}N +/X{S N}B /TR{translate}N /isls false N /vsize 11 72 mul N /hsize 8.5 72 +mul N /landplus90{false}def /@rigin{isls{[0 landplus90{1 -1}{-1 1} +ifelse 0 0 0]concat}if 72 Resolution div 72 VResolution div neg scale +isls{landplus90{VResolution 72 div vsize mul 0 exch}{Resolution -72 div +hsize mul 0}ifelse TR}if Resolution VResolution vsize -72 div 1 add mul +TR[matrix currentmatrix{dup dup round sub abs 0.00001 lt{round}if} +forall round exch round exch]setmatrix}N /@landscape{/isls true N}B +/@manualfeed{statusdict /manualfeed true put}B /@copies{/#copies X}B +/FMat[1 0 0 -1 0 0]N /FBB[0 0 0 0]N /nn 0 N /IE 0 N /ctr 0 N /df-tail{ +/nn 8 dict N nn begin /FontType 3 N /FontMatrix fntrx N /FontBBox FBB N +string /base X array /BitMaps X /BuildChar{CharBuilder}N /Encoding IE N +end dup{/foo setfont}2 array copy cvx N load 0 nn put /ctr 0 N[}B /df{ +/sf 1 N /fntrx FMat N df-tail}B /dfs{div /sf X /fntrx[sf 0 0 sf neg 0 0] +N df-tail}B /E{pop nn dup definefont setfont}B /ch-width{ch-data dup +length 5 sub get}B /ch-height{ch-data dup length 4 sub get}B /ch-xoff{ +128 ch-data dup length 3 sub get sub}B /ch-yoff{ch-data dup length 2 sub +get 127 sub}B /ch-dx{ch-data dup length 1 sub get}B /ch-image{ch-data +dup type /stringtype ne{ctr get /ctr ctr 1 add N}if}B /id 0 N /rw 0 N +/rc 0 N /gp 0 N /cp 0 N /G 0 N /sf 0 N /CharBuilder{save 3 1 roll S dup +/base get 2 index get S /BitMaps get S get /ch-data X pop /ctr 0 N ch-dx +0 ch-xoff ch-yoff ch-height sub ch-xoff ch-width add ch-yoff +setcachedevice ch-width ch-height true[1 0 0 -1 -.1 ch-xoff sub ch-yoff +.1 sub]{ch-image}imagemask restore}B /D{/cc X dup type /stringtype ne{]} +if nn /base get cc ctr put nn /BitMaps get S ctr S sf 1 ne{dup dup +length 1 sub dup 2 index S get sf div put}if put /ctr ctr 1 add N}B /I{ +cc 1 add D}B /bop{userdict /bop-hook known{bop-hook}if /SI save N @rigin +0 0 moveto /V matrix currentmatrix dup 1 get dup mul exch 0 get dup mul +add .99 lt{/QV}{/RV}ifelse load def pop pop}N /eop{SI restore userdict +/eop-hook known{eop-hook}if showpage}N /@start{userdict /start-hook +known{start-hook}if pop /VResolution X /Resolution X 1000 div /DVImag X +/IE 256 array N 0 1 255{IE S 1 string dup 0 3 index put cvn put}for +65781.76 div /vsize X 65781.76 div /hsize X}N /p{show}N /RMat[1 0 0 -1 0 +0]N /BDot 260 string N /rulex 0 N /ruley 0 N /v{/ruley X /rulex X V}B /V +{}B /RV statusdict begin /product where{pop product dup length 7 ge{0 7 +getinterval dup(Display)eq exch 0 4 getinterval(NeXT)eq or}{pop false} +ifelse}{false}ifelse end{{gsave TR -.1 .1 TR 1 1 scale rulex ruley false +RMat{BDot}imagemask grestore}}{{gsave TR -.1 .1 TR rulex ruley scale 1 1 +false RMat{BDot}imagemask grestore}}ifelse B /QV{gsave newpath transform +round exch round exch itransform moveto rulex 0 rlineto 0 ruley neg +rlineto rulex neg 0 rlineto fill grestore}B /a{moveto}B /delta 0 N /tail +{dup /delta X 0 rmoveto}B /M{S p delta add tail}B /b{S p tail}B /c{-4 M} +B /d{-3 M}B /e{-2 M}B /f{-1 M}B /g{0 M}B /h{1 M}B /i{2 M}B /j{3 M}B /k{ +4 M}B /w{0 rmoveto}B /l{p -4 w}B /m{p -3 w}B /n{p -2 w}B /o{p -1 w}B /q{ +p 1 w}B /r{p 2 w}B /s{p 3 w}B /t{p 4 w}B /x{0 S rmoveto}B /y{3 2 roll p +a}B /bos{/SS save N}B /eos{SS restore}B end +%%EndProcSet +%%BeginProcSet: special.pro +TeXDict begin /SDict 200 dict N SDict begin /@SpecialDefaults{/hs 612 N +/vs 792 N /ho 0 N /vo 0 N /hsc 1 N /vsc 1 N /ang 0 N /CLIP 0 N /rwiSeen +false N /rhiSeen false N /letter{}N /note{}N /a4{}N /legal{}N}B +/@scaleunit 100 N /@hscale{@scaleunit div /hsc X}B /@vscale{@scaleunit +div /vsc X}B /@hsize{/hs X /CLIP 1 N}B /@vsize{/vs X /CLIP 1 N}B /@clip{ +/CLIP 2 N}B /@hoffset{/ho X}B /@voffset{/vo X}B /@angle{/ang X}B /@rwi{ +10 div /rwi X /rwiSeen true N}B /@rhi{10 div /rhi X /rhiSeen true N}B +/@llx{/llx X}B /@lly{/lly X}B /@urx{/urx X}B /@ury{/ury X}B /magscale +true def end /@MacSetUp{userdict /md known{userdict /md get type +/dicttype eq{userdict begin md length 10 add md maxlength ge{/md md dup +length 20 add dict copy def}if end md begin /letter{}N /note{}N /legal{} +N /od{txpose 1 0 mtx defaultmatrix dtransform S atan/pa X newpath +clippath mark{transform{itransform moveto}}{transform{itransform lineto} +}{6 -2 roll transform 6 -2 roll transform 6 -2 roll transform{ +itransform 6 2 roll itransform 6 2 roll itransform 6 2 roll curveto}}{{ +closepath}}pathforall newpath counttomark array astore /gc xdf pop ct 39 +0 put 10 fz 0 fs 2 F/|______Courier fnt invertflag{PaintBlack}if}N +/txpose{pxs pys scale ppr aload pop por{noflips{pop S neg S TR pop 1 -1 +scale}if xflip yflip and{pop S neg S TR 180 rotate 1 -1 scale ppr 3 get +ppr 1 get neg sub neg ppr 2 get ppr 0 get neg sub neg TR}if xflip yflip +not and{pop S neg S TR pop 180 rotate ppr 3 get ppr 1 get neg sub neg 0 +TR}if yflip xflip not and{ppr 1 get neg ppr 0 get neg TR}if}{noflips{TR +pop pop 270 rotate 1 -1 scale}if xflip yflip and{TR pop pop 90 rotate 1 +-1 scale ppr 3 get ppr 1 get neg sub neg ppr 2 get ppr 0 get neg sub neg +TR}if xflip yflip not and{TR pop pop 90 rotate ppr 3 get ppr 1 get neg +sub neg 0 TR}if yflip xflip not and{TR pop pop 270 rotate ppr 2 get ppr +0 get neg sub neg 0 S TR}if}ifelse scaleby96{ppr aload pop 4 -1 roll add +2 div 3 1 roll add 2 div 2 copy TR .96 dup scale neg S neg S TR}if}N /cp +{pop pop showpage pm restore}N end}if}if}N /normalscale{Resolution 72 +div VResolution 72 div neg scale magscale{DVImag dup scale}if 0 setgray} +N /psfts{S 65781.76 div N}N /startTexFig{/psf$SavedState save N userdict +maxlength dict begin /magscale true def normalscale currentpoint TR +/psf$ury psfts /psf$urx psfts /psf$lly psfts /psf$llx psfts /psf$y psfts +/psf$x psfts currentpoint /psf$cy X /psf$cx X /psf$sx psf$x psf$urx +psf$llx sub div N /psf$sy psf$y psf$ury psf$lly sub div N psf$sx psf$sy +scale psf$cx psf$sx div psf$llx sub psf$cy psf$sy div psf$ury sub TR +/showpage{}N /erasepage{}N /copypage{}N /p 3 def @MacSetUp}N /doclip{ +psf$llx psf$lly psf$urx psf$ury currentpoint 6 2 roll newpath 4 copy 4 2 +roll moveto 6 -1 roll S lineto S lineto S lineto closepath clip newpath +moveto}N /endTexFig{end psf$SavedState restore}N /@beginspecial{SDict +begin /SpecialSave save N gsave normalscale currentpoint TR +@SpecialDefaults count /ocount X /dcount countdictstack N}N /@setspecial +{CLIP 1 eq{newpath 0 0 moveto hs 0 rlineto 0 vs rlineto hs neg 0 rlineto +closepath clip}if ho vo TR hsc vsc scale ang rotate rwiSeen{rwi urx llx +sub div rhiSeen{rhi ury lly sub div}{dup}ifelse scale llx neg lly neg TR +}{rhiSeen{rhi ury lly sub div dup scale llx neg lly neg TR}if}ifelse +CLIP 2 eq{newpath llx lly moveto urx lly lineto urx ury lineto llx ury +lineto closepath clip}if /showpage{}N /erasepage{}N /copypage{}N newpath +}N /@endspecial{count ocount sub{pop}repeat countdictstack dcount sub{ +end}repeat grestore SpecialSave restore end}N /@defspecial{SDict begin} +N /@fedspecial{end}B /li{lineto}B /rl{rlineto}B /rc{rcurveto}B /np{ +/SaveX currentpoint /SaveY X N 1 setlinecap newpath}N /st{stroke SaveX +SaveY moveto}N /fil{fill SaveX SaveY moveto}N /ellipse{/endangle X +/startangle X /yrad X /xrad X /savematrix matrix currentmatrix N TR xrad +yrad scale 0 0 1 startangle endangle arc savematrix setmatrix}N end +%%EndProcSet +TeXDict begin 40258437 52099154 1000 600 600 (acm.dvi) +@start /Fa 47 123 df<3C007E00FF00FF00FF80FF807F803D80018001800180018003 +0003000300070006000E000C0018003800700020000917788718>44 +D<FFFFF0FFFFF0FFFFF0FFFFF014047E911C>I<3C7EFFFFFFFF7E3C0808788718>I<0000 +0060000000000000F0000000000000F0000000000000F0000000000001F8000000000001 +F8000000000001F8000000000003FC000000000003FC000000000007FE000000000006FE +000000000006FE00000000000EFF00000000000C7F00000000000C7F0000000000187F80 +00000000183F8000000000183F8000000000301FC000000000301FC000000000701FE000 +000000600FE000000000600FE000000000C00FF000000000C007F000000000C007F00000 +00018003F8000000018003F8000000018003F8000000030001FC000000030001FC000000 +070001FE000000060000FE000000060000FE0000000FFFFFFF0000000FFFFFFF0000000F +FFFFFF0000001800003F8000001800003F8000001800003F8000003000001FC000003000 +001FC000007000001FE000006000000FE000006000000FE00000C000000FF00000C00000 +07F00001C0000007F00001C0000003F80003E0000003F8000FF000000FFC00FFFE0000FF +FFF0FFFE0000FFFFF0FFFE0000FFFFF034367CB53D>65 D<FFFFFFFFC00000FFFFFFFFF8 +0000FFFFFFFFFF000001FE0000FF800000FE00001FE00000FE00000FF00000FE000007F8 +0000FE000003F80000FE000003FC0000FE000001FC0000FE000001FE0000FE000001FE00 +00FE000001FE0000FE000001FE0000FE000001FE0000FE000001FE0000FE000001FC0000 +FE000003FC0000FE000003F80000FE000007F00000FE00000FE00000FE00003FC00000FE +0000FF000000FFFFFFFC000000FFFFFFF8000000FE0001FF000000FE00001FC00000FE00 +000FF00000FE000003F80000FE000001FC0000FE000001FE0000FE000000FE0000FE0000 +00FF0000FE0000007F0000FE0000007F8000FE0000007F8000FE0000007F8000FE000000 +7F8000FE0000007F8000FE0000007F8000FE0000007F0000FE000000FF0000FE000000FF +0000FE000001FE0000FE000003FC0000FE000007F80000FE00001FF00001FE00007FE000 +FFFFFFFFFF8000FFFFFFFFFE0000FFFFFFFFF0000031337DB23A>I<000003FF00010000 +1FFFE0030000FFFFF8070003FF807C070007F8000E0F001FE000031F003F800001BF007F +000000FF00FE0000007F01FC0000003F03F80000003F07F00000001F07E00000001F0FE0 +0000000F1FC00000000F1FC0000000073FC0000000073F80000000073F80000000037F80 +000000037F80000000037F0000000003FF0000000000FF0000000000FF0000000000FF00 +00000000FF0000000000FF0000000000FF0000000000FF0000000000FF0000000000FF00 +00000000FF00000000007F00000000007F80000000037F80000000033F80000000033F80 +000000033FC0000000031FC0000000061FC0000000060FE00000000607E00000000C07F0 +0000000C03F80000001801FC0000003800FE00000030007F00000060003F800000C0001F +E00003800007F8000F000003FF803E000000FFFFF80000001FFFE000000003FF00003037 +7BB43B>I<FFFFFFFFC00000FFFFFFFFF80000FFFFFFFFFE000001FE0001FF800000FE00 +003FE00000FE00000FF00000FE000003F80000FE000001FC0000FE000000FE0000FE0000 +007F0000FE0000003F0000FE0000003F8000FE0000001FC000FE0000001FC000FE000000 +0FE000FE0000000FE000FE0000000FE000FE0000000FF000FE00000007F000FE00000007 +F000FE00000007F000FE00000007F800FE00000007F800FE00000007F800FE00000007F8 +00FE00000007F800FE00000007F800FE00000007F800FE00000007F800FE00000007F800 +FE00000007F800FE00000007F000FE00000007F000FE00000007F000FE0000000FF000FE +0000000FE000FE0000000FE000FE0000001FC000FE0000001FC000FE0000001F8000FE00 +00003F8000FE0000007F0000FE000000FE0000FE000001FC0000FE000003F80000FE0000 +07F00000FE00001FE00001FE0000FF8000FFFFFFFFFE0000FFFFFFFFF80000FFFFFFFFC0 +000035337DB23E>I<FFFFFFFFFFE0FFFFFFFFFFE0FFFFFFFFFFE003FC00003FE001FC00 +0007E001FC000001F001FC000000F001FC000000F001FC0000007001FC0000007001FC00 +00003001FC0000003001FC0000003001FC0000003001FC0006001801FC0006001801FC00 +06001801FC0006001801FC0006000001FC000E000001FC000E000001FC001E000001FC00 +7E000001FFFFFE000001FFFFFE000001FFFFFE000001FC007E000001FC001E000001FC00 +0E000001FC000E000001FC0006000001FC0006000601FC0006000601FC0006000601FC00 +06000C01FC0000000C01FC0000000C01FC0000000C01FC0000000C01FC0000001C01FC00 +00001C01FC0000003801FC0000003801FC0000007801FC000000F801FC000001F801FC00 +0007F803FC00003FF8FFFFFFFFFFF0FFFFFFFFFFF0FFFFFFFFFFF02F337CB237>I<FFFF +FFFFFFE0FFFFFFFFFFE0FFFFFFFFFFE001FE00003FE000FE000007E000FE000001F000FE +000000F000FE000000F000FE0000007000FE0000007000FE0000003000FE0000003000FE +0000003000FE0000003000FE0000001800FE0003001800FE0003001800FE0003001800FE +0003000000FE0003000000FE0007000000FE0007000000FE000F000000FE003F000000FF +FFFF000000FFFFFF000000FFFFFF000000FE003F000000FE000F000000FE0007000000FE +0007000000FE0003000000FE0003000000FE0003000000FE0003000000FE0003000000FE +0000000000FE0000000000FE0000000000FE0000000000FE0000000000FE0000000000FE +0000000000FE0000000000FE0000000000FE0000000000FE0000000001FF00000000FFFF +FF000000FFFFFF000000FFFFFF0000002D337DB235>I<000003FE00020000003FFFC006 +000000FFFFF00E000003FF00780E00000FF8001E1E00001FE000073E00003F800003FE00 +007F000001FE0000FC000000FE0001F80000007E0003F80000007E0007F00000003E000F +E00000001E000FE00000001E001FC00000001E001FC00000000E003FC00000000E003F80 +0000000E003F8000000006007F8000000006007F8000000006007F000000000600FF0000 +00000000FF000000000000FF000000000000FF000000000000FF000000000000FF000000 +000000FF000000000000FF000000000000FF000000000000FF000000000000FF000003FF +FFF07F000003FFFFF07F800003FFFFF07F80000001FF003F80000000FE003F80000000FE +003FC0000000FE001FC0000000FE001FC0000000FE000FE0000000FE000FE0000000FE00 +07F0000000FE0003F8000000FE0001FC000000FE0000FC000000FE00007F000001FE0000 +3F800003BE00001FE000073E00000FF8000E1E000003FF007C06000000FFFFF802000000 +3FFFE00000000003FF00000034377BB440>I<FFFFFE01FFFFFCFFFFFE01FFFFFCFFFFFE +01FFFFFC01FF000003FE0000FE000001FC0000FE000001FC0000FE000001FC0000FE0000 +01FC0000FE000001FC0000FE000001FC0000FE000001FC0000FE000001FC0000FE000001 +FC0000FE000001FC0000FE000001FC0000FE000001FC0000FE000001FC0000FE000001FC +0000FE000001FC0000FE000001FC0000FE000001FC0000FE000001FC0000FE000001FC00 +00FFFFFFFFFC0000FFFFFFFFFC0000FFFFFFFFFC0000FE000001FC0000FE000001FC0000 +FE000001FC0000FE000001FC0000FE000001FC0000FE000001FC0000FE000001FC0000FE +000001FC0000FE000001FC0000FE000001FC0000FE000001FC0000FE000001FC0000FE00 +0001FC0000FE000001FC0000FE000001FC0000FE000001FC0000FE000001FC0000FE0000 +01FC0000FE000001FC0000FE000001FC0000FE000001FC0001FF000003FE00FFFFFE01FF +FFFCFFFFFE01FFFFFCFFFFFE01FFFFFC36337DB23D>I<FFFFFEFFFFFEFFFFFE01FF0000 +FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000 +FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000 +FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000 +FE0000FE0000FE0000FE0000FE0000FE0000FE0001FF00FFFFFEFFFFFEFFFFFE17337DB2 +1E>I<003FFFFF80003FFFFF80003FFFFF8000001FF00000000FE00000000FE00000000F +E00000000FE00000000FE00000000FE00000000FE00000000FE00000000FE00000000FE0 +0000000FE00000000FE00000000FE00000000FE00000000FE00000000FE00000000FE000 +00000FE00000000FE00000000FE00000000FE00000000FE00000000FE00000000FE00000 +000FE00000000FE00000000FE00000000FE00000000FE00000000FE00000000FE0000000 +0FE00000000FE00000000FE0001C000FE0007F000FE000FF800FE000FF800FE000FF800F +E000FF800FE000FF801FC000FF001FC0007C003F800070003F800038007F00001C00FC00 +000F81F8000003FFE00000007F00000021357CB22A>I<FFFFFE0003FFFCFFFFFE0003FF +FCFFFFFE0003FFFC01FF000000FF8000FE0000007E0000FE000000780000FE000000F000 +00FE000001C00000FE000003800000FE000007000000FE00000E000000FE00001C000000 +FE000038000000FE000070000000FE0000E0000000FE0003C0000000FE000700000000FE +000E00000000FE001C00000000FE003800000000FE007800000000FE00FC00000000FE01 +FE00000000FE03FF00000000FE0FFF00000000FE1C7F80000000FE383FC0000000FE703F +C0000000FEE01FE0000000FFC00FF0000000FF800FF8000000FF0007F8000000FE0003FC +000000FE0001FE000000FE0001FE000000FE0000FF000000FE00007F800000FE00007F80 +0000FE00003FC00000FE00001FE00000FE00000FF00000FE00000FF00000FE000007F800 +00FE000003FC0000FE000003FC0000FE000001FE0000FE000001FF0001FF000003FFC0FF +FFFE001FFFFEFFFFFE001FFFFEFFFFFE001FFFFE37337DB23F>I<FFFFFF000000FFFFFF +000000FFFFFF00000001FF0000000000FE0000000000FE0000000000FE0000000000FE00 +00000000FE0000000000FE0000000000FE0000000000FE0000000000FE0000000000FE00 +00000000FE0000000000FE0000000000FE0000000000FE0000000000FE0000000000FE00 +00000000FE0000000000FE0000000000FE0000000000FE0000000000FE0000000000FE00 +00000000FE0000000000FE0000000000FE0000000000FE0000000000FE0000000000FE00 +00006000FE0000006000FE0000006000FE0000006000FE000000E000FE000000C000FE00 +0000C000FE000000C000FE000001C000FE000001C000FE000001C000FE000003C000FE00 +0007C000FE00000FC000FE00001FC000FE00007F8001FE0003FF80FFFFFFFFFF80FFFFFF +FFFF80FFFFFFFFFF802B337DB233>I<FFFE000000003FFF80FFFF000000007FFF80FFFF +000000007FFF8001FF000000007FC00000DF80000000DF800000DF80000000DF800000CF +C00000019F800000CFC00000019F800000CFC00000019F800000C7E00000031F800000C7 +E00000031F800000C3F00000061F800000C3F00000061F800000C3F00000061F800000C1 +F800000C1F800000C1F800000C1F800000C0FC0000181F800000C0FC0000181F800000C0 +FC0000181F800000C07E0000301F800000C07E0000301F800000C03F0000601F800000C0 +3F0000601F800000C03F0000601F800000C01F8000C01F800000C01F8000C01F800000C0 +0FC001801F800000C00FC001801F800000C00FC001801F800000C007E003001F800000C0 +07E003001F800000C003F006001F800000C003F006001F800000C003F006001F800000C0 +01F80C001F800000C001F80C001F800000C000FC18001F800000C000FC18001F800000C0 +00FC18001F800000C0007E30001F800000C0007E30001F800000C0003F60001F800000C0 +003F60001F800000C0003F60001F800000C0001FC0001F800000C0001FC0001F800001E0 +000F80001F800007F8000F80003FC000FFFFC00F801FFFFF80FFFFC007001FFFFF80FFFF +C007001FFFFF8041337CB24A>I<FFFE00000FFFFCFFFF00000FFFFCFFFF80000FFFFC00 +FFC000007F8000FFC000001E0000DFE000000C0000CFF000000C0000CFF800000C0000C7 +F800000C0000C3FC00000C0000C1FE00000C0000C1FF00000C0000C0FF00000C0000C07F +80000C0000C03FC0000C0000C03FC0000C0000C01FE0000C0000C00FF0000C0000C00FF8 +000C0000C007F8000C0000C003FC000C0000C001FE000C0000C001FF000C0000C000FF00 +0C0000C0007F800C0000C0003FC00C0000C0003FE00C0000C0001FE00C0000C0000FF00C +0000C00007F80C0000C00007F80C0000C00003FC0C0000C00001FE0C0000C00000FF0C00 +00C00000FF0C0000C000007F8C0000C000003FCC0000C000003FEC0000C000001FEC0000 +C000000FFC0000C0000007FC0000C0000007FC0000C0000003FC0000C0000001FC0000C0 +000000FC0000C0000000FC0001E00000007C0007F80000003C00FFFFC000001C00FFFFC0 +00001C00FFFFC000000C0036337DB23D>I<000007FE00000000003FFFC000000001FC03 +F800000007E0007E0000000FC0003F0000003F00000FC000007E000007E00000FC000003 +F00001F8000001F80003F8000001FC0003F0000000FC0007E00000007E000FE00000007F +000FC00000003F001FC00000003F801FC00000003F803F800000001FC03F800000001FC0 +7F800000001FE07F800000001FE07F000000000FE07F000000000FE0FF000000000FF0FF +000000000FF0FF000000000FF0FF000000000FF0FF000000000FF0FF000000000FF0FF00 +0000000FF0FF000000000FF0FF000000000FF0FF000000000FF0FF000000000FF07F0000 +00000FE07F800000001FE07F800000001FE07F800000001FE03F800000001FC03FC00000 +003FC01FC00000003F801FC00000003F800FE00000007F000FE00000007F0007F0000000 +FE0003F0000000FC0003F8000001FC0001FC000003F80000FC000003F000007E000007E0 +00003F80001FC000000FC0003F00000007F000FE00000001FC03F8000000003FFFC00000 +000007FE00000034377BB43F>I<FFFFFFFF0000FFFFFFFFE000FFFFFFFFF80003FC0003 +FE0001FC0000FF0001FC00003F8001FC00001FC001FC00000FE001FC00000FF001FC0000 +07F001FC000007F001FC000007F801FC000007F801FC000007F801FC000007F801FC0000 +07F801FC000007F801FC000007F001FC000007F001FC00000FE001FC00000FE001FC0000 +1FC001FC00003F8001FC0000FF0001FC0003FC0001FFFFFFF00001FFFFFFC00001FC0000 +000001FC0000000001FC0000000001FC0000000001FC0000000001FC0000000001FC0000 +000001FC0000000001FC0000000001FC0000000001FC0000000001FC0000000001FC0000 +000001FC0000000001FC0000000001FC0000000001FC0000000001FC0000000001FC0000 +000001FC0000000003FE00000000FFFFF8000000FFFFF8000000FFFFF80000002D337CB2 +37>I<FFFFFFFC000000FFFFFFFFC00000FFFFFFFFF8000001FE0007FC000000FE0000FF +000000FE00003F800000FE00001FC00000FE00000FE00000FE00000FF00000FE000007F0 +0000FE000007F00000FE000007F80000FE000007F80000FE000007F80000FE000007F800 +00FE000007F80000FE000007F00000FE00000FF00000FE00000FE00000FE00000FE00000 +FE00001FC00000FE00003F000000FE0000FE000000FE0007F8000000FFFFFFE0000000FF +FFFF80000000FE000FE0000000FE0003F0000000FE0001FC000000FE0000FE000000FE00 +007E000000FE00007F000000FE00003F000000FE00003F800000FE00003F800000FE0000 +3F800000FE00003F800000FE00003F800000FE00003FC00000FE00003FC00000FE00003F +C00000FE00003FC00000FE00003FC00000FE00003FC00600FE00003FE00600FE00003FE0 +0600FE00001FE00E01FF00001FE00CFFFFFE000FF00CFFFFFE0007F01CFFFFFE0003F838 +0000000000FFF000000000001FC037357DB23C>82 D<001FF00080007FFE018001FFFF83 +8003F00FC38007C001E7800F00007F801E00003F803C00001F803C00000F807800000F80 +7800000780F800000380F800000380F800000380F800000380FC00000180FC00000180FE +000001807E000000007F800000007FC00000003FF80000003FFF8000001FFFF800000FFF +FF800007FFFFE00003FFFFF80000FFFFFC00003FFFFE000003FFFF0000003FFF00000003 +FF800000007F800000003FC00000001FC00000000FE000000007E0C0000007E0C0000003 +E0C0000003E0C0000003E0C0000003E0E0000003E0E0000003C0F0000003C0F0000007C0 +F800000780FC00000F80FE00000F00FF80001E00F3E0007C00E1FC01F800E07FFFF000C0 +1FFFC0008003FE000023377BB42E>I<7FFFFFFFFFFF807FFFFFFFFFFF807FFFFFFFFFFF +807F8003F8007F807C0003F8000F80780003F8000780700003F8000380700003F8000380 +600003F8000180E00003F80001C0E00003F80001C0E00003F80001C0C00003F80000C0C0 +0003F80000C0C00003F80000C0C00003F80000C0C00003F80000C0C00003F80000C00000 +03F8000000000003F8000000000003F8000000000003F8000000000003F8000000000003 +F8000000000003F8000000000003F8000000000003F8000000000003F8000000000003F8 +000000000003F8000000000003F8000000000003F8000000000003F8000000000003F800 +0000000003F8000000000003F8000000000003F8000000000003F8000000000003F80000 +00000003F8000000000003F8000000000003F8000000000003F8000000000003F8000000 +000003F8000000000003F8000000000003F8000000000007FC000000001FFFFFFF000000 +1FFFFFFF0000001FFFFFFF000032337CB23B>I<FFFFF00001FFFCFFFFF00001FFFCFFFF +F00001FFFC07FE0000003FE003FC0000000F8001FC0000000F0001FE0000000E0000FE00 +00000C0000FE0000000C00007F0000001800007F0000001800007F8000003800003F8000 +003000003F8000003000001FC000006000001FC000006000001FE00000E000000FE00000 +C000000FE00000C0000007F0000180000007F0000180000007F8000380000003F8000300 +000003F8000300000001FC000600000001FC000600000001FE000600000000FE000C0000 +0000FE000C000000007F0018000000007F0018000000007F8018000000003F8030000000 +003F8030000000001FC060000000001FC060000000001FE060000000000FE0C000000000 +0FE0C00000000007F1800000000007F1800000000007F9800000000003FB000000000003 +FB000000000001FE000000000001FE000000000001FE000000000000FC000000000000FC +0000000000007800000000000078000000000000780000000000003000000036357DB23D +>86 D<FFFFF803FFFFC003FFFCFFFFF803FFFFC003FFFCFFFFF803FFFFC003FFFC03FF00 +001FF800007FC001FC00000FF000001F0001FC00000FF000000E0000FE000007F000000E +0000FE000007F000000C0000FE000007F800000C00007F000003F800001800007F000003 +F800001800007F800003FC00001800003F800007FC00003000003F800007FC0000300000 +3FC00007FE00003000001FC0000CFE00006000001FC0000CFE00006000001FE0001CFF00 +006000000FE000187F0000C000000FE000187F0000C000000FF000387F8001C0000007F0 +00303F800180000007F000303F800180000007F800703FC00380000003F800601FC00300 +000003F800601FC00300000003FC00E01FE00700000001FC00C00FE00600000001FC00C0 +0FE00600000001FE01C00FF00E00000000FE018007F00C00000000FE018007F00C000000 +00FF038007F81C000000007F030003F818000000007F030003F818000000007F860001FC +38000000003F860001FC30000000003F860001FC30000000001FCC0000FE60000000001F +CC0000FE60000000001FCC0000FE60000000000FF800007FC0000000000FF800007FC000 +0000000FF800007FC00000000007F000003F800000000007F000003F800000000007F000 +003F800000000003E000001F000000000003E000001F000000000003E000001F00000000 +0001C000000E000000000001C000000E000000000001C000000E0000004E357EB253>I< +000018000000003C000000003C000000003C000000007E000000007E00000000FF000000 +00FF00000000FF000000019F800000019F800000039FC00000030FC00000030FC0000006 +0FE000000607E000000607E000000C03F000000C03F000001C03F800001801F800001801 +F800003000FC00003000FC00007000FE00007FFFFE00007FFFFE0000C0003F0000C0003F +0001C0003F800180001F800180001F800380001FC00300000FC00780000FE00F80000FE0 +1FC0001FF0FFF000FFFFFFF000FFFF28277EA62E>97 D<FFFFFF8000FFFFFFE0000FE001 +F80007E000FC0007E0007E0007E0003F0007E0003F0007E0003F8007E0003F8007E0003F +8007E0003F8007E0003F8007E0003F0007E0007F0007E0007E0007E000FC0007E003F800 +07FFFFE00007FFFFF00007E001FC0007E0007E0007E0003F0007E0001F8007E0001FC007 +E0000FC007E0000FE007E0000FE007E0000FE007E0000FE007E0000FE007E0000FE007E0 +001FC007E0001FC007E0003F8007E0007F000FE001FE00FFFFFFF800FFFFFFC00023267D +A52B>I<0000FF00100007FFE030001FC07870007E001CF000F80007F001F00003F003E0 +0001F007C00001F00FC00000F01F800000F01F800000703F000000703F000000707F0000 +00307E000000307E00000030FE00000000FE00000000FE00000000FE00000000FE000000 +00FE00000000FE00000000FE000000007E000000007E000000307F000000303F00000030 +3F000000301F800000601F800000600FC000006007C00000C003E000018001F000038000 +F8000700007E000E00001FC078000007FFE0000000FF800024287DA62C>I<FFFFFF8000 +FFFFFFF0000FE001FC0007E0007E0007E0001F0007E0000FC007E00007C007E00003E007 +E00003F007E00001F007E00001F807E00001F807E00000FC07E00000FC07E00000FC07E0 +0000FE07E00000FE07E00000FE07E00000FE07E00000FE07E00000FE07E00000FE07E000 +00FE07E00000FE07E00000FC07E00000FC07E00000FC07E00001F807E00001F807E00003 +F007E00003E007E00007E007E0000FC007E0001F8007E0007E000FE001FC00FFFFFFF000 +FFFFFF800027267DA52F>I<FFFFFFFF80FFFFFFFF800FE0003F8007E000078007E00003 +8007E000038007E000018007E00001C007E00001C007E00000C007E00000C007E00300C0 +07E00300C007E003000007E003000007E007000007E00F000007FFFF000007FFFF000007 +E00F000007E007000007E003000007E003000007E003006007E003006007E000006007E0 +0000E007E00000C007E00000C007E00000C007E00001C007E00001C007E00003C007E000 +03C007E0000F800FE0003F80FFFFFFFF80FFFFFFFF8023267DA52A>I<FFFFFFFF00FFFF +FFFF000FE0007F0007E0000F0007E000070007E000070007E000030007E000038007E000 +038007E000018007E000018007E000018007E006018007E006000007E006000007E00600 +0007E00E000007E01E000007FFFE000007FFFE000007E01E000007E00E000007E0060000 +07E006000007E006000007E006000007E000000007E000000007E000000007E000000007 +E000000007E000000007E000000007E000000007E00000000FF0000000FFFFC00000FFFF +C0000021267DA528>I<0000FF00100007FFE030001FC07870007E001CF000F80007F001 +F00003F003E00001F007C00001F00FC00000F01F800000F01F800000703F000000703F00 +0000707F000000307E000000307E00000030FE00000000FE00000000FE00000000FE0000 +0000FE00000000FE00000000FE0001FFFFFE0001FFFF7E000007F87E000003F07F000003 +F03F000003F03F000003F01F800003F01F800003F00FC00003F007C00003F003E00003F0 +01F00007F000FC0007F0007E000CF0001FC038700007FFF0100000FF800028287DA630> +I<FFFF03FFFCFFFF03FFFC0FF0003FC007E0001F8007E0001F8007E0001F8007E0001F80 +07E0001F8007E0001F8007E0001F8007E0001F8007E0001F8007E0001F8007E0001F8007 +E0001F8007E0001F8007E0001F8007FFFFFF8007FFFFFF8007E0001F8007E0001F8007E0 +001F8007E0001F8007E0001F8007E0001F8007E0001F8007E0001F8007E0001F8007E000 +1F8007E0001F8007E0001F8007E0001F8007E0001F8007E0001F8007E0001F800FF0003F +C0FFFF03FFFCFFFF03FFFC26267DA52E>I<FFFFFFFF0FF007E007E007E007E007E007E0 +07E007E007E007E007E007E007E007E007E007E007E007E007E007E007E007E007E007E0 +07E007E007E007E007E007E007E007E00FF0FFFFFFFF10267DA517>I<FFFF000FFEFFFF +000FFE0FF00007F807E00007E007E000078007E0000F0007E0001C0007E000380007E000 +700007E000E00007E001C00007E003800007E007000007E00E000007E03C000007E07C00 +0007E0FE000007E1FE000007E3FF000007E73F800007EE1F800007FC1FC00007F80FE000 +07F007F00007E007F00007E003F80007E001FC0007E000FE0007E000FE0007E0007F0007 +E0003F8007E0001F8007E0001FC007E0000FE007E0000FF00FF0001FF8FFFF003FFFFFFF +003FFF28267DA52F>107 D<FFFF8000FFFF80000FF0000007E0000007E0000007E00000 +07E0000007E0000007E0000007E0000007E0000007E0000007E0000007E0000007E00000 +07E0000007E0000007E0000007E0000007E0000007E0000007E0000007E0000007E00006 +07E0000607E0000607E0000607E0000607E0000E07E0000E07E0000E07E0001C07E0001C +07E0003C07E0007C0FE003FCFFFFFFFCFFFFFFFC1F267DA526>I<FFE0000007FFFFF000 +000FFF0FF000000FF007F000000FE006F800001BE006F800001BE0067C000033E0067C00 +0033E0067C000033E0063E000063E0063E000063E0061F0000C3E0061F0000C3E0060F80 +0183E0060F800183E0060F800183E00607C00303E00607C00303E00603E00603E00603E0 +0603E00603E00603E00601F00C03E00601F00C03E00600F81803E00600F81803E00600F8 +1803E006007C3003E006007C3003E006003E6003E006003E6003E006003E6003E006001F +C003E006001FC003E00F000F8003E00F000F8003E03FC00F8007F0FFF007007FFFFFF007 +007FFF30267DA538>I<FFE0003FFCFFF0003FFC07F8000FF007F80003C007FC00038006 +FE000180067E000180067F000180063F800180061FC00180061FC00180060FE001800607 +F001800603F801800603F801800601FC01800600FE018006007E018006007F018006003F +818006001FC18006001FC18006000FE180060007F180060003F180060003F980060001FD +80060000FF80060000FF800600007F800600003F800600001F800600001F800700000F80 +0F000007803FC0000380FFF0000380FFF000018026267DA52E>I<0001FF0000000FFFE0 +00003F01F800007C007C0001F8003F0003E0000F8007E0000FC00FC00007E00F800003E0 +1F800003F03F000001F83F000001F87F000001FC7F000001FC7E000000FC7E000000FCFE +000000FEFE000000FEFE000000FEFE000000FEFE000000FEFE000000FEFE000000FEFE00 +0000FEFE000000FE7F000001FC7F000001FC7F000001FC3F000001F83F800003F81F8000 +03F01FC00007F00FC00007E007E0000FC003F0001F8001F8003F0000FC007E00003F01F8 +00000FFFE0000001FF000027287DA62F>I<FFFFFF0000FFFFFFE0000FE003F80007E000 +FC0007E0003E0007E0003F0007E0001F8007E0001F8007E0001FC007E0001FC007E0001F +C007E0001FC007E0001FC007E0001F8007E0001F8007E0003F0007E0003E0007E000FC00 +07E003F80007FFFFE00007FFFF000007E000000007E000000007E000000007E000000007 +E000000007E000000007E000000007E000000007E000000007E000000007E000000007E0 +00000007E000000007E00000000FF0000000FFFF000000FFFF00000022267DA52A>I<FF +FFFC0000FFFFFFC0000FE007F00007E001F80007E000FC0007E0007E0007E0003F0007E0 +003F8007E0003F8007E0003F8007E0003F8007E0003F8007E0003F8007E0003F0007E000 +7E0007E000FC0007E001F80007E007F00007FFFFC00007FFFF000007E00FC00007E003F0 +0007E001F00007E001F80007E000FC0007E000FC0007E000FC0007E000FC0007E000FE00 +07E000FE0007E000FE0007E000FE0007E000FE0307E000FF0307E0007F030FF0007F07FF +FF003F8EFFFF000FFC00000003F028277DA52D>114 D<00FE010003FFC3000F01E7001E +007F0038001F0038000F0070000F0070000700F0000700F0000700F0000300F8000300F8 +000300FC0000007F0000007FE000003FFE00003FFFE0001FFFF80007FFFC0003FFFE0000 +7FFF000007FF0000007F8000001F8000000FC0000007C0C00007C0C00003C0C00003C0C0 +0003C0E00003C0E0000380F0000780F0000700FC000E00FE001E00E7C07800C1FFF00080 +3FC0001A287DA622>I<7FFFFFFFF87FFFFFFFF87E00FC01F87800FC00787000FC003860 +00FC00186000FC0018E000FC001CC000FC000CC000FC000CC000FC000CC000FC000CC000 +FC000C0000FC00000000FC00000000FC00000000FC00000000FC00000000FC00000000FC +00000000FC00000000FC00000000FC00000000FC00000000FC00000000FC00000000FC00 +000000FC00000000FC00000000FC00000000FC00000000FC00000000FC00000000FC0000 +0000FC00000001FE0000007FFFF800007FFFF80026267EA52C>I<FFFF003FFCFFFF003F +FC0FF0000FF007E00003C007E000038007E000018007E000018007E000018007E0000180 +07E000018007E000018007E000018007E000018007E000018007E000018007E000018007 +E000018007E000018007E000018007E000018007E000018007E000018007E000018007E0 +00018007E000018007E000018007E000018007E000018007E000038003E000030003F000 +030003F000070001F800060000F8000E00007C001C00003E007800001F81E0000007FFC0 +000000FE000026277DA52E>I<FFFF0001FFC0FFFF0001FFC00FF80000FE0007F000007C +0007F00000780003F00000700003F80000700001F80000600001FC0000600000FC0000C0 +0000FC0000C000007E00018000007E00018000007F00038000003F00030000003F000300 +00001F80060000001F80060000001FC00E0000000FC00C0000000FE00C00000007E01800 +000007E01800000007F03800000003F03000000003F83000000001F86000000001F86000 +000000FCC000000000FCC000000000FFC0000000007F80000000007F80000000003F0000 +0000003F00000000003F00000000001E00000000001E00000000000C0000002A277FA52E +>I<FFFE03FFF803FFC0FFFE03FFF803FFC00FF0007FC000FF000FE0003F80007C0007E0 +001F8000380007F0001F8000380003F0000FC000300003F0000FC000300003F8000FC000 +700001F8001FE000600001F8001FE000600001FC003FF000E00000FC0033F000C00000FC +0033F000C00000FE0073F801C000007E0061F8018000007E0061F8018000003F00E1FC03 +0000003F00C0FC030000003F00C0FC030000001F81807E060000001F81807E060000001F +81807E060000000FC3003F0C0000000FC3003F0C0000000FC3003F0C00000007E6001F98 +00000007E6001F9800000007E6001F9800000003FC000FF000000003FC000FF000000003 +FC000FF000000001F80007E000000001F80007E000000001F80007E000000000F00003C0 +00000000F00003C000000000F00003C0000000006000018000003A277FA53E>I<FFFF00 +01FFC0FFFF0001FFC00FF80000FE0007F800007C0003F80000700001FC0000700001FC00 +00E00000FE0000C000007F00018000007F00038000003F80030000001FC0060000001FC0 +0E0000000FE00C00000007E01800000007F03800000003F83000000001F86000000001FC +E000000000FEC000000000FF80000000007F80000000003F00000000003F00000000003F +00000000003F00000000003F00000000003F00000000003F00000000003F00000000003F +00000000003F00000000003F00000000003F00000000003F00000000007F8000000007FF +F800000007FFF800002A267FA52E>121 D<3FFFFFFC3FFFFFFC3FC001FC3F0003F83C00 +07F0380007F038000FE070001FC070001FC070003F8060007F0060007F006000FE000001 +FC000001FC000003F8000007F0000007F000000FE000001FC000003F8000003F8000007F +000000FE000C00FE000C01FC000C03F8000C03F8000C07F0001C0FE0001C0FE000181FC0 +00383F8000383F8000787F0001F8FE0007F8FFFFFFF8FFFFFFF81E267DA526>I +E /Fb 8 118 df<FFFFFF8000FFFFFFF800FFFFFFFE000FE000FF800FE0003FC00FE000 +0FE00FE00007F00FE00003F00FE00003F80FE00001F80FE00001F80FE00001FC0FE00001 +FC0FE00001FC0FE00001FC0FE00001FC0FE00001FC0FE00001FC0FE00001F80FE00003F8 +0FE00003F00FE00007F00FE0000FE00FE0001FC00FE000FF80FFFFFFFE00FFFFFFF800FF +FFFF8000261C7B9B2F>68 D<01FF838007FFF7801FFFFF803F007F807C001F807C000F80 +F8000F80F8000780FC000780FE000000FF8000007FFC00007FFFE0003FFFFC001FFFFE00 +07FFFF8000FFFFC00003FFC000001FE000000FE0000007E0F00003E0F00003E0F00003E0 +F80007C0FC000FC0FF001F80FFFFFF00FFFFFC00E1FFE0001B1E7C9C23>83 +D<00007FC000007FC000007FC000000FC000000FC000000FC000000FC000000FC000000F +C000000FC000000FC000FF8FC007FFFFC01FFFFFC03F807FC07F001FC07E000FC0FC000F +C0FC000FC0FC000FC0FC000FC0FC000FC0FC000FC07E000FC07F003FC03F80FFC01FFFFF +F807FFEFF801FF0FF81D1D7D9C23>100 D<00FF8007FFE01FFFF83F80FC7E007C7E003E +FC001EFFFFFEFFFFFEFFFFFEFC0000FE00007E001E7F003E3FC07C0FFFF803FFF000FF80 +17127D911D>I<FF800000FF800000FF8000001F8000001F8000001F8000001F8000001F +8000001F8000001F8000001F8000001F83FC001F9FFF001FBFFF801FF81FC01FE00FC01F +C00FC01F800FC01F800FC01F800FC01F800FC01F800FC01F800FC01F800FC01F800FC01F +800FC0FFF07FF8FFF07FF8FFF07FF81D1D7C9C23>104 D<FF8FFC00FFFFFF00FFFFFFC0 +1FF01FE01FC007F01F8003F01F8003F81F8001F81F8001F81F8001F81F8001F81F8003F8 +1F8003F01FC007F01FF01FE01FFFFFC01FBFFF001F8FF8001F8000001F8000001F800000 +1F8000001F800000FFF00000FFF00000FFF000001D1A7D9123>112 +D<03C00003C00003C00007C00007C0000FC0000FC0003FC000FFFFC0FFFFC0FFFFC00FC0 +000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC1E00FC1E00FC1E00FE3E007FF +C003FF8000FC00131A7E9919>116 D<FF807FC0FF807FC0FF807FC01F800FC01F800FC0 +1F800FC01F800FC01F800FC01F800FC01F800FC01F800FC01F800FC01F800FC01F801FC0 +1F803FC01FFFFFF807FFEFF801FF0FF81D127C9123>I E /Fc 1 +124 df<FFFFFFFFF8FFFFFFFFF8FFFFFFFFF82503809126>123 D +E /Fd 1 106 df<0038007C007C00780070000000000000000000000000000007801FC0 +38E030E060F0C1E0C1E0C1E003C003C003C0078007800F000F040F061E0C1E0C1E181C18 +1E700FE007800F237DA116>105 D E /Fe 6 118 df<0003FF8000001FFFF000007FFFFC +0001FF83FE0003FE007F8007FC003F800FF8003FC01FF8001FE01FF0001FE03FF0000FF0 +3FF0000FF07FE0000FF07FE0000FF87FE00007F8FFE00007F8FFE00007F8FFFFFFFFF8FF +FFFFFFF8FFFFFFFFF8FFE0000000FFE0000000FFE0000000FFE00000007FE00000007FE0 +0000007FE00000003FF00000003FF00000781FF00000780FF80000F80FFC0000F007FC00 +03F001FF000FE000FFC07FC0007FFFFF00000FFFFC000001FFE00025257DA42C>101 +D<00FE007FC000FFFE03FFF800FFFE0FFFFE00FFFE1F03FF00FFFE3C01FF8007FE7801FF +8003FEF000FF8003FFE000FFC003FFC000FFC003FFC000FFC003FF8000FFC003FF8000FF +C003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FF +C003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FF +C003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FF +C003FF0000FFC003FF0000FFC003FF0000FFC0FFFFFC3FFFFFFFFFFC3FFFFFFFFFFC3FFF +FFFFFFFC3FFFFF30257DA435>110 D<00FE03F000FFFE0FFE00FFFE3FFF00FFFE7C7F80 +FFFEF8FFC007FEF0FFC003FFE0FFC003FFC0FFC003FFC0FFC003FF807F8003FF803F0003 +FF800C0003FF80000003FF00000003FF00000003FF00000003FF00000003FF00000003FF +00000003FF00000003FF00000003FF00000003FF00000003FF00000003FF00000003FF00 +000003FF00000003FF00000003FF00000003FF00000003FF00000003FF00000003FF0000 +00FFFFFE0000FFFFFE0000FFFFFE0000FFFFFE000022257EA427>114 +D<003FF03803FFFEF80FFFFFF81FC00FF83F0003F87E0001F87C0000F8FC0000F8FC0000 +78FE000078FF000078FF800000FFFC0000FFFFE0007FFFFC007FFFFF803FFFFFC01FFFFF +F00FFFFFF803FFFFF800FFFFFC001FFFFC00007FFE000007FEF00001FEF00000FEF80000 +FEF800007EFC00007EFC00007CFE0000FCFF0000F8FF8001F8FFF007F0FFFFFFC0F8FFFF +00E01FF8001F257DA426>I<000F0000000F0000000F0000000F0000000F0000001F0000 +001F0000001F0000001F0000003F0000003F0000007F000000FF000000FF000001FF0000 +07FF00001FFFFFE0FFFFFFE0FFFFFFE0FFFFFFE003FF000003FF000003FF000003FF0000 +03FF000003FF000003FF000003FF000003FF000003FF000003FF000003FF000003FF0000 +03FF000003FF000003FF000003FF000003FF000003FF007803FF007803FF007803FF0078 +03FF007803FF007803FF007803FF007803FF00F801FF80F001FF81F000FFC3E0003FFFC0 +001FFF800003FE001D357EB425>I<00FF00003FC0FFFF003FFFC0FFFF003FFFC0FFFF00 +3FFFC0FFFF003FFFC007FF0001FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF00 +00FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF00 +00FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF00 +00FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF00 +01FFC003FF0001FFC003FF0003FFC003FF0003FFC001FF0007FFC001FF800FFFE000FFC0 +3EFFFF007FFFFCFFFF001FFFF0FFFF0003FF80FFFF30257DA435>I +E /Ff 4 112 df<007FFFFFFFF00000007FFFFFFFFE0000007FFFFFFFFF80000000FFC0 +00FFC00000007F80001FE00000007F800007F0000000FF800003F8000000FF000001FC00 +0000FF000000FE000000FF000000FF000000FF0000007F000000FF0000003F800001FF00 +00003F800001FE0000003F800001FE0000003FC00001FE0000001FC00001FE0000001FC0 +0001FE0000001FE00003FE0000001FE00003FC0000001FE00003FC0000001FE00003FC00 +00001FE00003FC0000001FE00003FC0000001FE00007FC0000001FE00007F80000003FE0 +0007F80000003FE00007F80000003FE00007F80000003FE00007F80000003FE0000FF800 +00003FC0000FF00000007FC0000FF00000007FC0000FF00000007FC0000FF00000007F80 +000FF00000007F80001FF0000000FF80001FE0000000FF00001FE0000000FF00001FE000 +0001FE00001FE0000001FE00001FE0000003FC00003FE0000003F800003FC0000007F800 +003FC0000007F000003FC000000FE000003FC000001FC000003FC000003FC000007FC000 +007F8000007F800000FE0000007F800001FC0000007F800007F80000007F80001FF00000 +01FF8000FFC00000FFFFFFFFFF000000FFFFFFFFFC000000FFFFFFFFC00000003B397DB8 +3F>68 D<00007F00000003FFE000000F81F000003E00FC00007C007C0001F8003E0003F0 +003F0007F0001F0007E0001F000FC0001F801FC0001F801F80001F803F80001F803F8000 +1F807F00001F807F00001F807F00001F80FFFFFFFF00FFFFFFFF00FE00000000FE000000 +00FE00000000FE00000000FE00000000FE00000000FC00000000FE00000000FE00000000 +7E00000E007E00000E007E00001C003F000018001F000038001F800070000FC001E00007 +E003800001F01F0000007FFC0000001FE0000021277BA525>101 +D<000FC03FC00003FFC0FFF00007FFC3C0F80007FFCF007C00003FDC007E00001FB8007E +00001FF0003E00001FE0003F00001FC0003F00001FC0007F00003F80007E00003F80007E +00003F00007E00003F00007E00003F00007E00003F0000FE00007F0000FE00007E0000FC +00007E0000FC00007E0000FC00007E0000FC00007E0001FC0000FE0001FC0000FC0001F8 +0000FC0001F80000FC0001F80000FC0001F80000FC0003F80001FC0003F80001F80003F0 +0001F80003F00001F80003F00001F80003F00003F80007F000FFFFE1FFFFC0FFFFE1FFFF +C0FFFFC1FFFF802A257EA42E>110 D<00003FC0000001FFF8000007C07C00001F001F00 +007C000F8000F80007C001F00007C003E00003E007E00003E007C00001F00F800001F01F +800001F81F800001F83F000001F83F000001F87F000001F87F000001F87E000003F8FE00 +0003F8FE000003F8FE000003F8FE000003F8FE000003F0FE000007F0FC000007F0FC0000 +07E0FC00000FE0FC00000FC0FE00000FC07E00001F807E00001F003E00003E003F00007C +001F0000F8000F8001F00007C007E00001F81F800000FFFE0000001FF0000025277BA52A +>I E /Fg 5 119 df<00003FC000000000FFF800000007E07C0000000F801F0000003F00 +1F800C007E000F800C00FC0007C01C01F80007E01803F00007E01807E00003E0380FE000 +03F0300FC00003F0301FC00003F0703F800003F0603F800003F0E07F800003F0C07F0000 +03F1C07F000003F1807F000003F380FF000003F300FE000003F700FE000003FE00FE0000 +03FC00FE000003FC00FC000003F800FC000003F000FC000003F000FC000003F000FC0000 +03F0007E000007F0007E00000FF0003E00001DF8183F000079F8181F0000E1F8380F8007 +C0F83007E03F007CF001FFF8003FC0003FC0000F802E267DA435>11 +D<00000001FC0000000007FF800000001E07C00000007801E0000000E001F0000001C000 +F80000038000F80000070000F800000E0000FC00001C0000FC0000380000FC0000300000 +FC0000700001FC0000600001F80000E00001F80000C00001F80001C00003F80001800003 +F00003800003F00003000007E00003000007C0000700000FC0000600001F80000600FFBF +00000E01FFFC00000C0381F800000C03FFFE00000C00FF1F00001C00001F80001800000F +80001800000FC0001800000FC0003800000FC00030000007E00030000007E0003000000F +E0007000000FE0006000000FE0006000000FE0006000000FE000E000001FE000C000001F +C000C000001FC000C000001FC001C000003FC001C000003F8001C000003F8001C000007F +0003C000007F0003C00000FE0003C00000FC0003E00001F80007600003F00006700007E0 +000638000FC000061C001F80000E0E003F00000C0780FC00000C01FFF000000C007F8000 +001C00000000001800000000001800000000001800000000003800000000003000000000 +003000000000003000000000007000000000006000000000006000000000006000000000 +00E00000000000C00000000000C000000000002E4B7EBA2F>I<1C007F00FF80FF80FFC0 +FFC0FFC07FC01CC000C000C000C000C001C00180018003800300070006000E001C003800 +700060000A19798817>59 D<0003FFFFFFFF00000007FFFFFFFFE0000007FFFFFFFFF800 +000007F80007FC00000007F00000FE00000007F000007F0000000FF000003F8000000FF0 +00001FC000000FE000001FC000000FE000001FC000001FE000001FE000001FE000001FE0 +00001FC000001FE000001FC000001FE000003FC000001FE000003FC000003FC000003F80 +00003FC000003F8000003FC000007F8000007F8000007F8000007F8000007F0000007F00 +00007F000000FE000000FF000001FC000000FF000001F8000000FE000007F0000000FE00 +000FE0000001FE00003FC0000001FE0001FF00000001FFFFFFFC00000001FFFFFFE00000 +0003FC00000000000003FC00000000000003F800000000000003F800000000000007F800 +000000000007F800000000000007F000000000000007F00000000000000FF00000000000 +000FF00000000000000FE00000000000000FE00000000000001FE00000000000001FE000 +00000000001FC00000000000001FC00000000000003FC00000000000003FC00000000000 +003F800000000000003F800000000000007F800000000000007F800000000000007F0000 +0000000000FF800000000000FFFFFF0000000000FFFFFF0000000000FFFFFF0000000000 +3B397DB835>80 D<00F80003C003FE0007E0070F000FE00E0F800FF01C0F800FF0180F80 +0FF0380F8007F0300F8003F0701F8001F0601F8001F0601F8000F0E03F8000E0C03F0000 +E0C07F0000E0007E0000E0007E0000C000FE0000C000FC0000C000FC0001C001FC000180 +01F800018001F800038001F800030003F800030003F000070003F000060003F0000E0003 +F0000C0003F0001C0003F000180003F000380003F000700001F000E00001F801C00000FC +038000007E0F0000001FFE00000007F0000024267EA428>118 D +E /Fh 3 70 df<0000400001F00003F00007F80007F80007F00007F00007F00007F0000F +F0000FF0000FE0000FE0000FE0000FE0001FE0001FE0001FC0001FC0001FC0001FC0003F +C0003FC0003F80003F80003F80003F80007F80007F80007F00007F00007F00007F0000FF +0000FF0000FE0000FE0000FE0000FE0001FE0001FE0001FC0001FC0001FC0003FC0003FC +0003F80003F80003F80003F80007F80007F80007F00007F00007F00007F0000FF0000FF0 +000FE0000FE0000FE0000FE0001FE0001FE0001FC0001FC0001FC0001FC0003FC0003FC0 +003F80003F80003F80003F80007F80007F80007F00007F00007F00007F0000FF0000FF00 +00FE0000FE0000FE0000FE0000FE0000FE0000FC00007C0000155A83D60E>5 +D<10000000007C00000000FC00000000FE00000000FE00000000FE00000000FF00000000 +FF000000007F000000007F800000007F800000003F800000003FC00000003FC00000001F +C00000001FE00000001FE00000000FE00000000FF00000000FF000000007F000000007F8 +00000007F800000003F800000003FC00000003FC00000001FC00000001FE00000001FE00 +000000FE00000000FF00000000FF000000007F000000007F800000007F800000003F8000 +00003FC00000003FC00000001FC00000001FE00000001FE00000000FE00000000FF00000 +000FF000000007F000000007F800000007F800000003FC00000003FC00000001FC000000 +01FE00000001FE00000000FE00000000FF00000000FF000000007F000000007F80000000 +7F800000003F800000003FC00000003FC00000001FC00000001FE00000001FE00000000F +E00000000FF00000000FF000000007F000000007F800000007F800000003F800000003FC +00000003FC00000001FC00000001FE00000001FE00000000FE00000000FF00000000FF00 +0000007F000000007F800000007F800000003F800000003FC00000003FC00000001FC000 +00001FE00000001FE00000000FC000000007C0235A83D61C>66 D<1000007C0000FC0000 +FE0000FE0000FE0000FE0000FE0000FE0000FF0000FF00007F00007F00007F00007F0000 +7F80007F80003F80003F80003F80003F80003FC0003FC0001FC0001FC0001FC0001FC000 +1FE0001FE0000FE0000FE0000FE0000FE0000FF0000FF00007F00007F00007F00007F000 +07F80007F80003F80003F80003F80003F80003FC0003FC0001FC0001FC0001FC0001FE00 +01FE0000FE0000FE0000FE0000FE0000FF0000FF00007F00007F00007F00007F00007F80 +007F80003F80003F80003F80003F80003FC0003FC0001FC0001FC0001FC0001FC0001FE0 +001FE0000FE0000FE0000FE0000FE0000FF0000FF00007F00007F00007F00007F00007F8 +0007F80003F00001F0155A83D60E>69 D E /Fi 3 106 df<000FE00000003FF8000000 +F83E000001E01F006003C00F80C007800780C00F0007C0C01E0007C1803E0007C1803C00 +07E3007C0003E3007C0003E600F80003E600F80003EC00F80003EC00F80003F800F00003 +F000F00003E000F00003E000F00003E000F00003E00078000FE00078001DE0C03C0079F1 +801E03E0F3800FFF807F0003FC003C00231B7C992B>11 D<000000FE00000007FF800000 +1F03C000003801E000006001E00000C001F000018001F000030001F000060001F0000C00 +01F0000C0001F000180003E000380003E000300003C000300007800060000F8000601FFE +0000603FFC0000603FFC0000C01FDE0000C0000F0000C0000F0000C00007800180000780 +0180000780018000078001800007800300000F800300000F800300000F800300000F8007 +00001F000700001F000700001E000700003E000F00003C000D800078000DC000F0000CE0 +01E000187007C000183FFF0000180FFC0000180000000030000000003000000000300000 +000030000000006000000000600000000060000000006000000000C00000000024347FA8 +26>I<000E00001F00003F00003F00003E00001C00000000000000000000000000000000 +00000000000003E00007F0000C7800187C00307C00307C00607C0060F800C0F800C0F800 +01F00001F00001F00003E00003E00007C00007C00007C1800F81800F81801F03001F0300 +1F06000F0C000F1C0007F00003E00011287DA617>105 D E /Fj +37 123 df<000007FF0007FF000000007FFFC07FFFE0000003FFFFF3FFFFF000000FFE01 +FFFE01FC00001FF000FFF000FC00007FE003FFE001FE0000FFC007FFC003FE0000FF8007 +FF8003FE0001FF8007FF8007FF0001FF0007FF0003FE0001FF0007FF0003FE0001FF0003 +FF0003FE0001FF0001FF0001FC0001FF0001FF0000700001FF0001FF0000000001FF0001 +FF0000000001FF0001FF0000000001FF0001FF0000000001FF0001FF003FFF00FFFFFFFF +FFFFFFFF00FFFFFFFFFFFFFFFF00FFFFFFFFFFFFFFFF00FFFFFFFFFFFFFFFF0001FF0001 +FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001 +FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001 +FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001 +FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001 +FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001 +FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001FF0001 +FF0001FF003FFFF83FFFF83FFFF83FFFF83FFFF83FFFF83FFFF83FFFF83FFFF83FFFF83F +FFF83FFFF845347FB34A>14 D<0000700000F00003E00007C0000F80001F80003F00003E +00007E0000FC0001F80001F80003F00003F00007F00007E0000FE0000FE0001FC0001FC0 +001FC0003F80003F80003F80007F80007F80007F80007F00007F00007F0000FF0000FF00 +00FF0000FF0000FF0000FF0000FF0000FF0000FF0000FF0000FF0000FF0000FF0000FF00 +00FF00007F00007F00007F00007F80007F80007F80003F80003F80003F80001FC0001FC0 +001FC0000FE0000FE00007E00007F00003F00003F00001F80001F80000FC00007E00003E +00003F00001F80000F800007C00003E00000F0000070144B78B722>40 +D<E00000F000007C00003E00001F00001F80000FC00007C00007E00003F00001F80001F8 +0000FC0000FC0000FE00007E00007F00007F00003F80003F80003F80001FC0001FC0001F +C0001FE0001FE0001FE0000FE0000FE0000FE0000FF0000FF0000FF0000FF0000FF0000F +F0000FF0000FF0000FF0000FF0000FF0000FF0000FF0000FF0000FF0000FE0000FE0000F +E0001FE0001FE0001FE0001FC0001FC0001FC0003F80003F80003F80007F00007F00007E +0000FE0000FC0000FC0001F80001F80003F00007E00007C0000FC0001F80001F00003E00 +007C0000F00000E00000144B7BB722>I<0F003FC07FE0FFF0FFF0FFF0FFF0FFF0FFF07F +E03FC00F000000000000000000000000000000000000000F003FC07FE0FFF0FFF0FFF0FF +F0FFF0FFF07FE03FC00F000C217AA019>58 D<0000001F800000000000001F8000000000 +00003FC00000000000003FC00000000000007FE00000000000007FE00000000000007FE0 +000000000000FFF0000000000000FFF0000000000001FFF8000000000001FFF800000000 +0001FFF8000000000003FFFC000000000003FFFC000000000007FFFE000000000007CFFE +000000000007CFFE00000000000FCFFF00000000000F87FF00000000001F87FF80000000 +001F03FF80000000003F03FFC0000000003E01FFC0000000003E01FFC0000000007E01FF +E0000000007C00FFE000000000FC00FFF000000000F8007FF000000000F8007FF0000000 +01F8007FF800000001F0003FF800000003F0003FFC00000003E0001FFC00000003E0001F +FC00000007FFFFFFFE00000007FFFFFFFE0000000FFFFFFFFF0000000FFFFFFFFF000000 +1F800007FF8000001F000003FF8000001F000003FF8000003F000003FFC000003E000001 +FFC000007E000001FFE000007C000000FFE000007C000000FFE00000FC000000FFF00000 +F80000007FF000FFFFF0003FFFFFF0FFFFF0003FFFFFF0FFFFF0003FFFFFF0FFFFF0003F +FFFFF03C347DB343>65 D<FFFFFFFFFE0000FFFFFFFFFFC000FFFFFFFFFFF800FFFFFFFF +FFFE0000FFC0001FFF0000FFC00007FF8000FFC00001FFC000FFC00001FFC000FFC00000 +FFE000FFC00000FFE000FFC000007FF000FFC000007FF000FFC000007FF000FFC000007F +F000FFC000007FF000FFC000007FF000FFC00000FFE000FFC00000FFE000FFC00001FFC0 +00FFC00001FFC000FFC00003FF8000FFC0000FFE0000FFC0003FFC0000FFFFFFFFF00000 +FFFFFFFFC00000FFFFFFFFF80000FFC00007FE0000FFC00003FF8000FFC00000FFC000FF +C00000FFE000FFC000007FF000FFC000007FF800FFC000003FF800FFC000003FF800FFC0 +00003FFC00FFC000003FFC00FFC000003FFC00FFC000003FFC00FFC000003FFC00FFC000 +003FFC00FFC000003FF800FFC000003FF800FFC000007FF800FFC00000FFF000FFC00001 +FFE000FFC00003FFE000FFC0000FFFC0FFFFFFFFFFFF00FFFFFFFFFFFE00FFFFFFFFFFF0 +00FFFFFFFFFF800036337DB23F>I<000000FFE0003800001FFFFE00780000FFFFFF80F8 +0003FFFFFFE1F8000FFFE00FF7F8001FFE0001FFF8007FF800007FF800FFE000003FF801 +FFC000001FF803FF8000000FF807FF00000007F80FFE00000007F80FFE00000003F81FFC +00000003F81FFC00000001F83FFC00000001F83FF800000001F87FF800000000F87FF800 +000000F87FF800000000F87FF00000000000FFF00000000000FFF00000000000FFF00000 +000000FFF00000000000FFF00000000000FFF00000000000FFF00000000000FFF0000000 +0000FFF00000000000FFF00000000000FFF000000000007FF000000000007FF800000000 +007FF800000000787FF800000000783FF800000000783FFC00000000781FFC00000000F8 +1FFC00000000F00FFE00000000F00FFF00000001F007FF00000003E003FF80000003E001 +FFC0000007C000FFE000000F80007FF800003F00001FFE0000FE00000FFFE007FC000003 +FFFFFFF0000000FFFFFFC00000001FFFFE0000000000FFF0000035357BB340>I<FFFFFF +FFFC000000FFFFFFFFFFC00000FFFFFFFFFFF80000FFFFFFFFFFFE000000FFE0003FFF00 +0000FFE00003FFC00000FFE00000FFE00000FFE000007FF00000FFE000001FF80000FFE0 +00000FFC0000FFE000000FFE0000FFE0000007FE0000FFE0000007FF0000FFE0000003FF +0000FFE0000003FF8000FFE0000001FF8000FFE0000001FFC000FFE0000001FFC000FFE0 +000001FFC000FFE0000001FFC000FFE0000001FFE000FFE0000001FFE000FFE0000001FF +E000FFE0000001FFE000FFE0000001FFE000FFE0000001FFE000FFE0000001FFE000FFE0 +000001FFE000FFE0000001FFE000FFE0000001FFE000FFE0000001FFE000FFE0000001FF +C000FFE0000001FFC000FFE0000001FFC000FFE0000001FFC000FFE0000001FF8000FFE0 +000003FF8000FFE0000003FF8000FFE0000003FF0000FFE0000007FE0000FFE000000FFE +0000FFE000000FFC0000FFE000001FF80000FFE000003FF00000FFE00000FFE00000FFE0 +0003FFC00000FFE0001FFF8000FFFFFFFFFFFE0000FFFFFFFFFFF80000FFFFFFFFFFC000 +00FFFFFFFFFC0000003B337DB244>I<FFFFFFFFFFFE00FFFFFFFFFFFE00FFFFFFFFFFFE +00FFFFFFFFFFFE0000FFE0000FFE0000FFE00001FF0000FFE00000FF0000FFE000007F00 +00FFE000003F0000FFE000001F0000FFE000001F0000FFE000000F0000FFE000000F0000 +FFE000000F0000FFE001E00F8000FFE001E0078000FFE001E0078000FFE001E0078000FF +E001E0078000FFE003E0000000FFE003E0000000FFE007E0000000FFE01FE0000000FFFF +FFE0000000FFFFFFE0000000FFFFFFE0000000FFFFFFE0000000FFE01FE0000000FFE007 +E0000000FFE003E0000000FFE003E000F000FFE001E000F000FFE001E000F000FFE001E0 +01E000FFE001E001E000FFE001E001E000FFE0000001E000FFE0000001E000FFE0000003 +E000FFE0000003E000FFE0000007C000FFE0000007C000FFE000000FC000FFE000001FC0 +00FFE000003FC000FFE00000FFC000FFE00007FFC0FFFFFFFFFFFF80FFFFFFFFFFFF80FF +FFFFFFFFFF80FFFFFFFFFFFF8034337DB23A>I<000003FF80000000007FFFFC00000001 +FFFFFF00000007FF01FFC000001FF8003FF000003FE0000FF80000FFC00007FE0001FF80 +0003FF0003FF000001FF8003FE000000FF8007FE000000FFC00FFC0000007FE00FFC0000 +007FE01FF80000003FF01FF80000003FF03FF80000003FF83FF80000003FF87FF8000000 +3FFC7FF00000001FFC7FF00000001FFC7FF00000001FFCFFF00000001FFEFFF00000001F +FEFFF00000001FFEFFF00000001FFEFFF00000001FFEFFF00000001FFEFFF00000001FFE +FFF00000001FFEFFF00000001FFEFFF00000001FFEFFF00000001FFE7FF00000001FFC7F +F00000001FFC7FF80000003FFC7FF80000003FFC3FF80000003FF83FF80000003FF83FF8 +0000003FF81FFC0000007FF01FFC0000007FF00FFE000000FFE007FE000000FFC007FF00 +0001FFC003FF000001FF8001FF800003FF0000FFC00007FE00007FF0001FFC00001FF800 +3FF0000007FF01FFC0000001FFFFFF000000007FFFFC0000000007FFC0000037357BB342 +>79 D<FFFFFFFFE0000000FFFFFFFFFE000000FFFFFFFFFFC00000FFFFFFFFFFF0000000 +FFE000FFFC000000FFE0001FFE000000FFE00007FF000000FFE00003FF800000FFE00003 +FF800000FFE00001FFC00000FFE00001FFC00000FFE00001FFE00000FFE00001FFE00000 +FFE00001FFE00000FFE00001FFE00000FFE00001FFE00000FFE00001FFE00000FFE00001 +FFC00000FFE00001FFC00000FFE00003FF800000FFE00003FF000000FFE00007FE000000 +FFE0001FFC000000FFE000FFF8000000FFFFFFFFC0000000FFFFFFFF00000000FFFFFFFF +80000000FFE003FFC0000000FFE000FFE0000000FFE0003FF0000000FFE0003FF8000000 +FFE0001FFC000000FFE0001FFC000000FFE0000FFE000000FFE0000FFE000000FFE0000F +FE000000FFE0000FFE000000FFE0000FFE000000FFE0000FFF000000FFE0000FFF000000 +FFE0000FFF000000FFE0000FFF000000FFE0000FFF003C00FFE0000FFF003C00FFE0000F +FF803C00FFE00007FF803C00FFE00007FFC07CFFFFFFE003FFC078FFFFFFE001FFE1F0FF +FFFFE000FFFFE0FFFFFFE0003FFFC0000000000003FF803E347DB242>82 +D<000FFC0070007FFF80F001FFFFE1F007FFFFFBF00FF803FFF01FE0007FF03FC0003FF0 +3F80000FF07F800007F07F000007F07F000003F0FF000001F0FF000001F0FF000001F0FF +800000F0FF800000F0FFC00000F0FFE0000000FFF80000007FFFC000007FFFFC00007FFF +FFE0003FFFFFF8001FFFFFFE001FFFFFFF000FFFFFFF8003FFFFFFC001FFFFFFE0007FFF +FFF0001FFFFFF00000FFFFF800000FFFF80000007FFC0000003FFC0000001FFC0000000F +FCF0000007FCF0000007FCF0000003FCF0000003FCF8000003FCF8000003FCF8000003F8 +FC000007F8FE000007F0FF000007F0FF80000FE0FFE0001FE0FFFE007FC0FDFFFFFF00F8 +7FFFFE00F01FFFF800E001FFC00026357BB331>I<3FFFFFFFFFFFF83FFFFFFFFFFFF83F +FFFFFFFFFFF83FFFFFFFFFFFF83FF003FF801FF87F8003FF8003FC7F0003FF8001FC7E00 +03FF8000FC7C0003FF80007C7C0003FF80007C780003FF80003C780003FF80003C780003 +FF80003C780003FF80003CF80003FF80003EF00003FF80001EF00003FF80001EF00003FF +80001EF00003FF80001E000003FF800000000003FF800000000003FF800000000003FF80 +0000000003FF800000000003FF800000000003FF800000000003FF800000000003FF8000 +00000003FF800000000003FF800000000003FF800000000003FF800000000003FF800000 +000003FF800000000003FF800000000003FF800000000003FF800000000003FF80000000 +0003FF800000000003FF800000000003FF800000000003FF800000000003FF8000000000 +03FF800000000003FF800000000003FF800000001FFFFFFFF000001FFFFFFFF000001FFF +FFFFF000001FFFFFFFF00037327DB13E>I<FFFFFF80FFFFFF800FFFFCFFFFFF80FFFFFF +800FFFFCFFFFFF80FFFFFF800FFFFCFFFFFF80FFFFFF800FFFFC01FFC00001FFC000001F +0001FFC00001FFC000001E0001FFE00001FFE000003E0000FFE00000FFE000003C0000FF +E00000FFE000003C0000FFF000007FF000007C00007FF000007FF000007800007FF80000 +FFF80000F800003FF80000FFF80000F000003FF80000FFF80000F000003FFC0001FFFC00 +01F000001FFC0001FFFC0001E000001FFE0003FFFE0001E000000FFE0003CFFE0003C000 +000FFE0003CFFE0003C000000FFF0007CFFF0007C0000007FF000787FF000780000007FF +000787FF000780000007FF800F03FF800F80000003FF800F03FF800F00000003FFC01F03 +FFC01F00000001FFC01E01FFC01E00000001FFC01E01FFC01E00000001FFE03E01FFE03E +00000000FFE03C00FFE03C00000000FFF07C00FFF03C000000007FF078007FF078000000 +007FF078007FF078000000007FF8F8007FF8F8000000003FF8F0003FF8F0000000003FF8 +F0003FF8F0000000003FFDE0001FFDF0000000001FFDE0001FFDE0000000001FFFE0001F +FFE0000000000FFFC0000FFFC0000000000FFFC0000FFFC0000000000FFFC0000FFFC000 +00000007FF800007FF800000000007FF800007FF800000000003FF000003FF0000000000 +03FF000003FF000000000003FF000003FF000000000001FE000001FE000000000001FE00 +0001FE000000000001FC000000FE000000000000FC000000FC000000000000FC000000FC +000000000000780000007800000056347EB25B>87 D<FFFFFFC0001FFFFCFFFFFFC0001F +FFFCFFFFFFC0001FFFFCFFFFFFC0001FFFFC00FFF0000000FE0000FFF8000000FC00007F +FC000001F800003FFE000003F800003FFE000003F000001FFF000007E000000FFF80000F +C000000FFF80000FC0000007FFC0001F80000003FFE0003F00000001FFF0003F00000001 +FFF0007E00000000FFF800FC000000007FFC01FC000000007FFC01F8000000003FFE03F0 +000000001FFF07F0000000000FFF07E0000000000FFF8FC00000000007FFDF8000000000 +03FFFF800000000003FFFF000000000001FFFE000000000000FFFE0000000000007FFC00 +00000000007FF80000000000003FF80000000000003FF80000000000003FF80000000000 +003FF80000000000003FF80000000000003FF80000000000003FF80000000000003FF800 +00000000003FF80000000000003FF80000000000003FF80000000000003FF80000000000 +003FF80000000000003FF80000000000003FF80000000000003FF80000000000003FF800 +000000003FFFFFF8000000003FFFFFF8000000003FFFFFF8000000003FFFFFF800003E33 +7EB243>89 D<007FFE000003FFFFE00007FFFFF8000FF00FFC001FF803FF001FF801FF00 +1FF800FF801FF800FFC01FF8007FC00FF0007FC007E0007FC00180007FC00000007FC000 +007FFFC0000FFFFFC000FFFFFFC003FFF07FC00FFF007FC01FF8007FC03FF0007FC07FE0 +007FC0FFC0007FC0FF80007FC0FF80007FC0FF80007FC0FF8000FFC0FFC000FFC07FC001 +FFC07FE003FFE03FF80FBFFF0FFFFF1FFF03FFFC0FFF007FE007FF28217EA02B>97 +D<01FC00000000FFFC00000000FFFC00000000FFFC00000000FFFC000000000FFC000000 +0007FC0000000007FC0000000007FC0000000007FC0000000007FC0000000007FC000000 +0007FC0000000007FC0000000007FC0000000007FC0000000007FC0000000007FC000000 +0007FC0000000007FC07FC000007FC7FFF800007FDFFFFE00007FFF00FF80007FFC007FC +0007FF0003FE0007FE0001FF0007FC0000FF8007FC0000FF8007FC0000FFC007FC00007F +C007FC00007FC007FC00007FE007FC00007FE007FC00007FE007FC00007FE007FC00007F +E007FC00007FE007FC00007FE007FC00007FE007FC00007FE007FC00007FC007FC00007F +C007FC0000FFC007FC0000FF8007FC0000FF8007FE0001FF0007FF0003FE0007FFC007FC +0007F3F01FF80007E1FFFFE00007C07FFF800007800FF800002B347EB331>I<0007FF80 +00003FFFF00000FFFFFC0003FE01FE0007FC03FF000FF803FF001FF003FF003FE003FF00 +3FE003FF007FE001FE007FC000FC007FC0003000FFC0000000FFC0000000FFC0000000FF +C0000000FFC0000000FFC0000000FFC0000000FFC0000000FFC00000007FC00000007FE0 +0000007FE00000003FE00007803FF00007801FF8000F800FF8001F0007FE003E0003FF80 +FC0000FFFFF800003FFFE0000007FF000021217DA027>I<00000001FC00000000FFFC00 +000000FFFC00000000FFFC00000000FFFC000000000FFC0000000007FC0000000007FC00 +00000007FC0000000007FC0000000007FC0000000007FC0000000007FC0000000007FC00 +00000007FC0000000007FC0000000007FC0000000007FC0000000007FC000007FE07FC00 +003FFFC7FC0000FFFFF7FC0003FF01FFFC0007FC003FFC000FF8001FFC001FF0000FFC00 +3FE00007FC003FE00007FC007FE00007FC007FC00007FC007FC00007FC00FFC00007FC00 +FFC00007FC00FFC00007FC00FFC00007FC00FFC00007FC00FFC00007FC00FFC00007FC00 +FFC00007FC00FFC00007FC007FC00007FC007FC00007FC007FE00007FC003FE00007FC00 +3FE0000FFC001FF0001FFC000FF8003FFC0007FC007FFE0003FE03FFFFE000FFFFE7FFE0 +003FFF87FFE00007FC07FFE02B347DB331>I<0003FF8000003FFFF00000FFFFFC0001FF +03FE0007FC007F000FF8003F801FF0001FC01FE0001FC03FE0000FE07FE0000FE07FC000 +0FE07FC0000FF0FFC0000FF0FFC00007F0FFFFFFFFF0FFFFFFFFF0FFFFFFFFF0FFC00000 +00FFC0000000FFC0000000FFC00000007FC00000007FE00000003FE00000003FE00000F0 +1FF00000F00FF00001F007F80003E003FE000FC001FF807F80007FFFFF00001FFFFC0000 +03FFE00024217EA029>I<00000000F8000FFC07FE007FFF9FFE01FFFFFF7F07FC0FFC7F +0FF003FC7F1FF003FE7F1FE001FE3E3FE001FF1C3FE001FF003FE001FF003FE001FF003F +E001FF003FE001FF003FE001FF001FE001FE001FF003FE000FF003FC0007FC0FF80007FF +FFE0000F7FFF80000F0FFC00001F000000001F000000001F000000001F800000001FC000 +00001FFFFFF0001FFFFFFE000FFFFFFF800FFFFFFFE007FFFFFFF003FFFFFFF807FFFFFF +FC1FFFFFFFFC3F80001FFC7F000003FEFF000001FEFE000000FEFE000000FEFE000000FE +FE000000FEFF000001FE7F800003FC3FC00007F81FE0000FF00FFC007FE003FFFFFF8000 +FFFFFE00000FFFE00028327EA12C>103 D<01FC00000000FFFC00000000FFFC00000000 +FFFC00000000FFFC000000000FFC0000000007FC0000000007FC0000000007FC00000000 +07FC0000000007FC0000000007FC0000000007FC0000000007FC0000000007FC00000000 +07FC0000000007FC0000000007FC0000000007FC0000000007FC03FF000007FC0FFFC000 +07FC3FFFF00007FCFC0FF80007FDE007FC0007FFC007FC0007FF8003FE0007FF0003FE00 +07FF0003FE0007FE0003FE0007FE0003FE0007FC0003FE0007FC0003FE0007FC0003FE00 +07FC0003FE0007FC0003FE0007FC0003FE0007FC0003FE0007FC0003FE0007FC0003FE00 +07FC0003FE0007FC0003FE0007FC0003FE0007FC0003FE0007FC0003FE0007FC0003FE00 +07FC0003FE0007FC0003FE0007FC0003FE00FFFFE07FFFF0FFFFE07FFFF0FFFFE07FFFF0 +FFFFE07FFFF02C347DB331>I<03F00007F8000FFC001FFE001FFE001FFE001FFE001FFE +001FFE000FFC0007F80003F0000000000000000000000000000000000000000000000000 +0001FC00FFFC00FFFC00FFFC00FFFC000FFC0007FC0007FC0007FC0007FC0007FC0007FC +0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC +0007FC0007FC0007FC0007FC0007FC00FFFFC0FFFFC0FFFFC0FFFFC012357DB418>I<01 +FC00000000FFFC00000000FFFC00000000FFFC00000000FFFC000000000FFC0000000007 +FC0000000007FC0000000007FC0000000007FC0000000007FC0000000007FC0000000007 +FC0000000007FC0000000007FC0000000007FC0000000007FC0000000007FC0000000007 +FC0000000007FC007FFF0007FC007FFF0007FC007FFF0007FC007FFF0007FC001FC00007 +FC003F800007FC007E000007FC00FC000007FC03F8000007FC07E0000007FC0FC0000007 +FC3F80000007FC7F00000007FCFF80000007FFFF80000007FFFFC0000007FFFFE0000007 +FFBFF0000007FF3FF8000007FC1FFC000007F80FFC000007F807FE000007F803FF000007 +F801FF800007F801FFC00007F800FFC00007F8007FE00007F8003FF00007F8001FF800FF +FFC07FFFC0FFFFC07FFFC0FFFFC07FFFC0FFFFC07FFFC02A347DB32F>107 +D<01FC00FFFC00FFFC00FFFC00FFFC000FFC0007FC0007FC0007FC0007FC0007FC0007FC +0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC +0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC +0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC +00FFFFE0FFFFE0FFFFE0FFFFE013347DB318>I<03F803FE0003FE0000FFF81FFFC01FFF +C000FFF87FFFE07FFFE000FFF8F81FF0F81FF000FFF9E00FF9E00FF8000FFBC00FFBC00F +F80007FF8007FF8007FC0007FF0007FF0007FC0007FE0007FE0007FC0007FE0007FE0007 +FC0007FE0007FE0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007 +FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007 +FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007 +FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007 +FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC0007FC00FFFFE0FFFFE0FF +FFE0FFFFE0FFFFE0FFFFE0FFFFE0FFFFE0FFFFE0FFFFE0FFFFE0FFFFE043217CA04A>I< +01F803FF0000FFF80FFFC000FFF83FFFF000FFF8FC0FF800FFF9E007FC000FFBC007FC00 +07FF8003FE0007FF0003FE0007FF0003FE0007FE0003FE0007FE0003FE0007FC0003FE00 +07FC0003FE0007FC0003FE0007FC0003FE0007FC0003FE0007FC0003FE0007FC0003FE00 +07FC0003FE0007FC0003FE0007FC0003FE0007FC0003FE0007FC0003FE0007FC0003FE00 +07FC0003FE0007FC0003FE0007FC0003FE0007FC0003FE0007FC0003FE00FFFFE07FFFF0 +FFFFE07FFFF0FFFFE07FFFF0FFFFE07FFFF02C217DA031>I<0003FF8000001FFFF00000 +FFFFFE0001FF01FF0007FC007FC00FF0001FE01FF0001FF01FE0000FF03FE0000FF83FC0 +0007F87FC00007FC7FC00007FC7FC00007FCFFC00007FEFFC00007FEFFC00007FEFFC000 +07FEFFC00007FEFFC00007FEFFC00007FEFFC00007FE7FC00007FC7FC00007FC7FE0000F +FC3FE0000FF81FE0000FF01FF0001FF00FF8003FE007FC007FC001FF01FF0000FFFFFE00 +003FFFF8000003FF800027217EA02C>I<01FC07FC0000FFFC7FFF8000FFFDFFFFE000FF +FFF01FF800FFFFC007FC0007FF0003FE0007FE0003FF0007FC0001FF8007FC0001FF8007 +FC0000FFC007FC0000FFC007FC0000FFC007FC00007FE007FC00007FE007FC00007FE007 +FC00007FE007FC00007FE007FC00007FE007FC00007FE007FC00007FE007FC00007FE007 +FC0000FFC007FC0000FFC007FC0000FFC007FC0001FF8007FC0001FF8007FE0003FF0007 +FF0007FE0007FFC00FFC0007FFF03FF80007FDFFFFE00007FC7FFF800007FC0FF8000007 +FC0000000007FC0000000007FC0000000007FC0000000007FC0000000007FC0000000007 +FC0000000007FC0000000007FC0000000007FC0000000007FC00000000FFFFE0000000FF +FFE0000000FFFFE0000000FFFFE00000002B307EA031>I<01F81F80FFF87FF0FFF8FFF8 +FFF9E3FCFFFBC7FE0FFF87FE07FF07FE07FF07FE07FE07FE07FE03FC07FE01F807FE0060 +07FC000007FC000007FC000007FC000007FC000007FC000007FC000007FC000007FC0000 +07FC000007FC000007FC000007FC000007FC000007FC000007FC000007FC0000FFFFF000 +FFFFF000FFFFF000FFFFF0001F217EA024>114 D<00FFE1C007FFFFC00FFFFFC03F803F +C07E000FC07E0007C0FC0007C0FC0003C0FE0003C0FE0003C0FF800000FFFC0000FFFFE0 +007FFFFC007FFFFE003FFFFF800FFFFFC007FFFFE000FFFFE0000FFFF000007FF000000F +F0F00007F0F00003F0F80003F0F80003F0FC0003E0FE0007E0FF000FC0FFC01F80FFFFFF +00F9FFFC00E03FE0001C217DA023>I<003C0000003C0000003C0000003C0000003C0000 +007C0000007C0000007C000000FC000000FC000001FC000001FC000003FC000007FC0000 +1FFFFF80FFFFFF80FFFFFF80FFFFFF8007FC000007FC000007FC000007FC000007FC0000 +07FC000007FC000007FC000007FC000007FC000007FC000007FC000007FC000007FC0000 +07FC000007FC000007FC03C007FC03C007FC03C007FC03C007FC03C007FC03C007FC03C0 +07FE078003FE078001FF0F0000FFFE00003FFC00000FF0001A2F7EAE22>I<01FC0000FE +00FFFC007FFE00FFFC007FFE00FFFC007FFE00FFFC007FFE000FFC0007FE0007FC0003FE +0007FC0003FE0007FC0003FE0007FC0003FE0007FC0003FE0007FC0003FE0007FC0003FE +0007FC0003FE0007FC0003FE0007FC0003FE0007FC0003FE0007FC0003FE0007FC0003FE +0007FC0003FE0007FC0003FE0007FC0003FE0007FC0003FE0007FC0003FE0007FC0007FE +0007FC0007FE0007FC000FFE0007FC001FFE0003FE003FFF0001FF00FBFFF000FFFFF3FF +F0003FFFC3FFF00007FE03FFF02C217DA031>I<FFFFC007FFC0FFFFC007FFC0FFFFC007 +FFC0FFFFC007FFC007FE0000F80003FE0000F00003FF0001F00001FF0001E00001FF8001 +E00000FF8003C00000FF8003C00000FFC007C000007FC0078000007FE00F8000003FE00F +0000003FF01F0000001FF01E0000001FF83E0000000FF83C0000000FFC7C00000007FC78 +00000007FEF800000003FEF000000003FFF000000001FFE000000001FFE000000000FFC0 +00000000FFC0000000007F80000000007F80000000003F00000000003F00000000001E00 +00002A217EA02F>I<FFFF83FFFC03FFE0FFFF83FFFC03FFE0FFFF83FFFC03FFE0FFFF83 +FFFC03FFE007FC001FE0003E0007FC001FE0003C0007FE001FE0007C0003FE001FF00078 +0003FE003FF000F80001FF003FF800F00001FF007FF800F00001FF807BFC01F00000FF80 +7BFC01E00000FFC0FBFC03E000007FC0F1FE03C000007FC1F1FE03C000007FE1E0FF07C0 +00003FE1E0FF078000003FF3C07F0F8000001FF3C07F8F0000001FF7C07F8F0000000FFF +803FDE0000000FFF803FDE0000000FFF001FFE00000007FF001FFC00000007FF001FFC00 +000003FE000FF800000003FE000FF800000003FC0007F800000001FC0007F000000001FC +0007F000000000F80003E000000000F00001E000003B217EA040>I<FFFFC007FFC0FFFF +C007FFC0FFFFC007FFC0FFFFC007FFC007FE0000F80003FE0000F00003FF0001F00001FF +0001E00001FF8001E00000FF8003C00000FF8003C00000FFC007C000007FC0078000007F +E00F8000003FE00F0000003FF01F0000001FF01E0000001FF83E0000000FF83C0000000F +FC7C00000007FC7800000007FEF800000003FEF000000003FFF000000001FFE000000001 +FFE000000000FFC000000000FFC0000000007F80000000007F80000000003F0000000000 +3F00000000001E00000000001E00000000003C00000000003C00000000007C0000003E00 +780000007F00F8000000FF80F0000000FF81F0000000FF83E0000000FF87C0000000FF0F +800000007F3F000000003FFE000000001FF80000000007E0000000002A307EA02F>121 +D<1FFFFFFF1FFFFFFF1FFFFFFF1FE007FE1F800FFC1F001FFC1E003FF83E003FF03E007F +E03C00FFE03C01FFC03C01FF803C03FF000007FF00000FFE00001FFC00001FF800003FF8 +00007FF00F00FFE00F00FFC00F01FF800F03FF800F07FF001F07FE001F0FFC001E1FFC00 +3E3FF8007E3FF000FE7FE003FEFFFFFFFEFFFFFFFEFFFFFFFE20217EA027>I +E /Fk 4 118 df<007FFFFFE000007FFFFFF8000003F0007E000003E0003F000003E000 +1F800007E0000F800007E0000FC00007C0000FC00007C0000FC0000FC0000FC0000FC000 +0F80000F80001F80000F80001F00001F80003F00001F80007E00001F0000FC00001F0001 +F800003F000FE000003FFFFF8000003FFFFF8000003E0007E000007E0001F000007E0000 +F800007C0000FC00007C00007C0000FC00007E0000FC00007E0000F800007E0000F80000 +7E0001F800007E0001F80000FC0001F00000FC0001F00001F80003F00001F00003F00003 +F00003E0000FE00003E0001F800007E0007F0000FFFFFFFC0000FFFFFFE000002A287AA7 +30>66 D<0001F0000007FC00001E0EE0003C07E0007807E000F007E001E003E001E003E0 +03E007C003C007C007C007C007C007C00F800F800F800F800F800F800F800F800F001F00 +0F001F000F001F000F003F000F003E0007807E000780FE0003C3FE0001FF7C00007C7C00 +00007C0000007C000000F8000000F8000000F8003001F0007801F000F803E000F807C000 +F01F80007FFE00001FF000001B267C9920>103 D<001FC0007FF000F07801C03C03C03C +07807C07807C0780780F80300FE00007FF0007FF8007FFC003FFE000FFF0001FF00003F0 +3801F07800F07C00F0F801E0F001E07003C07003803C0F001FFE0007F000161B7B991C> +115 D<03E0000007F000700C7800F8187C00F8387C01F0307C01F0707C01F070F801F0E0 +F803E0E0F803E001F003E001F003E001F007C003E007C003E007C003E007C007C00F8007 +C00F8707C00F8707C00F8707C01F0E07C01F0E07C03F0E03C07F1C01E0EF1800FF87F800 +3F01E0201B7B9925>117 D E /Fl 16 118 df<1F003F807FC0FFE0FFE0FFE0FFE0FFE0 +7FC03F801F000B0B7A8A17>46 D<FFFFFFFFE00000FFFFFFFFFE0000FFFFFFFFFF8000FF +FFFFFFFFE00001FF8000FFF80001FF80001FFC0001FF800007FE0001FF800003FF0001FF +800001FF8001FF800000FFC001FF8000007FE001FF8000003FE001FF8000003FF001FF80 +00003FF001FF8000001FF001FF8000001FF801FF8000001FF801FF8000001FF801FF8000 +001FFC01FF8000001FFC01FF8000001FFC01FF8000001FFC01FF8000001FFC01FF800000 +1FFC01FF8000001FFC01FF8000001FFC01FF8000001FFC01FF8000001FFC01FF8000001F +F801FF8000001FF801FF8000001FF801FF8000001FF801FF8000003FF001FF8000003FF0 +01FF8000003FE001FF8000007FE001FF800000FFC001FF800000FF8001FF800001FF8001 +FF800007FF0001FF80001FFC0001FF8000FFF800FFFFFFFFFFF000FFFFFFFFFFC000FFFF +FFFFFE0000FFFFFFFFE00000362E7DAD3E>68 D<001FF8038000FFFF078003FFFFCF8007 +FFFFFF801FF00FFF801FC001FF803F80007F807F00003F807E00001F807E00001F80FE00 +000F80FE00000F80FE00000780FF00000780FF80000780FFC0000000FFF00000007FFF00 +00007FFFF000007FFFFF80003FFFFFE0001FFFFFF8000FFFFFFE0007FFFFFF0003FFFFFF +8000FFFFFFC0001FFFFFC00001FFFFE000000FFFE0000000FFF00000003FF00000001FF0 +0000000FF0F000000FF0F0000007F0F0000007F0F0000007F0F8000007F0F8000007E0FC +00000FE0FE00000FC0FF00001FC0FFC0003F80FFFC00FF00FFFFFFFE00F9FFFFFC00F03F +FFF000E003FF800024307CAE2D>83 D<007FF8000003FFFF00000FFFFFC0001FE01FF000 +1FF007F8001FF003FC001FF003FC001FF001FE000FE001FE0007C001FE00000001FE0000 +0001FE000000FFFE00003FFFFE0001FFFFFE0007FFC1FE001FFC01FE003FE001FE007FC0 +01FE00FF8001FE00FF0001FE00FF0001FE00FF0001FE00FF0003FE00FF8003FE007FC007 +FF003FF03FFFF81FFFFEFFF807FFF87FF800FFC01FF8251E7E9D28>97 +D<0000000FC0000003FFC0000003FFC0000003FFC0000003FFC00000003FC00000003FC0 +0000003FC00000003FC00000003FC00000003FC00000003FC00000003FC00000003FC000 +00003FC00000003FC0000FF83FC0007FFF3FC001FFFFFFC007FC07FFC00FF001FFC01FE0 +007FC03FE0003FC03FC0003FC07FC0003FC07F80003FC07F80003FC0FF80003FC0FF8000 +3FC0FF80003FC0FF80003FC0FF80003FC0FF80003FC0FF80003FC0FF80003FC0FF80003F +C07F80003FC07FC0003FC03FC0003FC03FC0007FC01FE000FFC00FF003FFC007FC0FFFFC +01FFFFBFFC00FFFE3FFC001FF03FFC262E7DAD2D>100 D<000FFC00007FFF8001FFFFE0 +07FC0FF00FF003F81FE001FC1FE000FC3FC000FE7FC0007E7F80007E7F80007FFF80007F +FF80007FFFFFFFFFFFFFFFFFFFFFFFFFFF800000FF800000FF8000007F8000007FC00000 +7FC000003FC0000F1FE0000F0FF0001F07F8007E03FE01FC01FFFFF8007FFFE00007FF00 +201E7E9D25>I<0000FF800007FFE0001FFFF0007FC7F000FF0FF801FE0FF801FE0FF803 +FC0FF803FC0FF803FC07F003FC008003FC000003FC000003FC000003FC000003FC0000FF +FFFC00FFFFFC00FFFFFC00FFFFFC0003FC000003FC000003FC000003FC000003FC000003 +FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC000003 +FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC00003FFFE0003F +FFE0003FFFE0003FFFE0001D2E7EAD19>I<03F0000000FFF0000000FFF0000000FFF000 +0000FFF00000000FF00000000FF00000000FF00000000FF00000000FF00000000FF00000 +000FF00000000FF00000000FF00000000FF00000000FF00000000FF01FF0000FF07FFC00 +0FF1FFFF000FF7E0FF800FFF807F800FFE007FC00FFC003FC00FFC003FC00FF8003FC00F +F8003FC00FF0003FC00FF0003FC00FF0003FC00FF0003FC00FF0003FC00FF0003FC00FF0 +003FC00FF0003FC00FF0003FC00FF0003FC00FF0003FC00FF0003FC00FF0003FC00FF000 +3FC00FF0003FC00FF0003FC0FFFF03FFFCFFFF03FFFCFFFF03FFFCFFFF03FFFC262E7CAD +2D>104 D<07C00FE01FF03FF83FF83FF83FF83FF81FF00FE007C0000000000000000000 +00000003F0FFF0FFF0FFF0FFF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00F +F00FF00FF00FF00FF00FF00FF00FF00FF00FF0FFFFFFFFFFFFFFFF102F7CAE17>I<03F0 +000000FFF0000000FFF0000000FFF0000000FFF00000000FF00000000FF00000000FF000 +00000FF00000000FF00000000FF00000000FF00000000FF00000000FF00000000FF00000 +000FF00000000FF003FFF00FF003FFF00FF003FFF00FF003FFF00FF000FC000FF003F800 +0FF007F0000FF00FC0000FF03F80000FF07F00000FF0FC00000FF1F800000FF7FC00000F +FFFE00000FFFFF00000FFFFF00000FFEFF80000FF87FC0000FF03FE0000FE01FF0000FE0 +0FF8000FE00FF8000FE007FC000FE003FE000FE001FF000FE000FF80FFFE03FFFCFFFE03 +FFFCFFFE03FFFCFFFE03FFFC262E7DAD2B>107 D<03F0FFF0FFF0FFF0FFF00FF00FF00F +F00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00F +F00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF0FFFFFF +FFFFFFFFFF102E7CAD17>I<03F03FE000FFF1FFFC00FFF7FFFF00FFFFC0FF80FFFE007F +C00FFC003FE00FF8001FF00FF0001FF00FF0000FF80FF0000FF80FF0000FFC0FF00007FC +0FF00007FC0FF00007FC0FF00007FC0FF00007FC0FF00007FC0FF00007FC0FF00007FC0F +F0000FF80FF0000FF80FF0000FF80FF0001FF00FF8001FF00FFC003FE00FFE007FC00FFF +81FF800FF7FFFE000FF1FFF8000FF07FC0000FF00000000FF00000000FF00000000FF000 +00000FF00000000FF00000000FF00000000FF00000000FF0000000FFFF000000FFFF0000 +00FFFF000000FFFF000000262B7D9D2D>112 D<07E07E00FFE1FF80FFE3FFE0FFE78FE0 +FFEF1FF00FFE1FF00FFC1FF00FFC1FF00FF80FE00FF807C00FF800000FF000000FF00000 +0FF000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000FF00000 +0FF000000FF000000FF000000FF00000FFFF8000FFFF8000FFFF8000FFFF80001C1E7D9D +22>114 D<01FF8E0007FFFE001FFFFE003F00FE007C007E0078003E00F8001E00F8001E +00FC001E00FF000000FFF00000FFFF80007FFFE0003FFFF8001FFFFE000FFFFE0003FFFF +00003FFF800000FF8000003F80F0001F80F0000F80F8000F80F8000F80FC001F00FE001F +00FF807E00FFFFFC00FBFFF000E0FF8000191E7D9D20>I<003C0000003C0000003C0000 +003C0000007C0000007C0000007C000000FC000000FC000001FC000003FC000007FC0000 +1FFFFF00FFFFFF00FFFFFF00FFFFFF0003FC000003FC000003FC000003FC000003FC0000 +03FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC0000 +03FC03C003FC03C003FC03C003FC03C003FC03C003FC03C003FC07C001FE078001FF0F80 +00FFFF00003FFC00000FF0001A2A7FA920>I<03F0000FC0FFF003FFC0FFF003FFC0FFF0 +03FFC0FFF003FFC00FF0003FC00FF0003FC00FF0003FC00FF0003FC00FF0003FC00FF000 +3FC00FF0003FC00FF0003FC00FF0003FC00FF0003FC00FF0003FC00FF0003FC00FF0003F +C00FF0003FC00FF0003FC00FF0003FC00FF0003FC00FF0007FC00FF0007FC00FF000FFC0 +07F001FFC007F807FFFC03FFFFBFFC00FFFE3FFC003FF03FFC261E7C9D2D>I +E /Fm 12 96 df<FFFFFFFFFFC0FFFFFFFFFFC0FFFFFFFFFFC02A037A9137>0 +D<007F800001FFE00007FFF8000FFFFC001FFFFE003FFFFF003FFFFF007FFFFF807FFFFF +80FFFFFFC0FFFFFFC0FFFFFFC0FFFFFFC0FFFFFFC0FFFFFFC0FFFFFFC0FFFFFFC0FFFFFF +C07FFFFF807FFFFF803FFFFF003FFFFF001FFFFE000FFFFC0007FFF80001FFE000007F80 +001A1B7C9D23>15 D<FFFFFFFFFFFCFFFFFFFFFFFC7FFFFFFFFFFC000000000000000000 +000000000000000000000000000000000000000000000000000000000000000000000000 +000000000000000000000000000000000000000000000000000000FFFFFFFFFFFCFFFFFF +FFFFFCFFFFFFFFFFFC000000000000000000000000000000000000000000000000000000 +000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000007FFFFFFFFFFCFFFFFFFFFFFCFFFFFFFFFFFC2E217CA037>17 +D<0000000001C00000000007C0000000001FC0000000007F0000000001FC0000000007F0 +000000001FC0000000007F0000000001FC0000000007F0000000001FC0000000007F0000 +000001FC0000000007F0000000001FC0000000007F0000000001FC0000000007F0000000 +001FC0000000007F0000000000FC0000000000FC00000000007F00000000001FC0000000 +0007F00000000001FC00000000007F00000000001FC00000000007F00000000001FC0000 +0000007F00000000001FC00000000007F00000000001FC00000000007F00000000001FC0 +0000000007F00000000001FC00000000007F00000000001FC00000000007C00000000001 +C00000000000000000000000000000000000000000000000000000000000000000000000 +000000000000000000000000000000000000000000000000000000000000000000000000 +007FFFFFFFFF80FFFFFFFFFFC0FFFFFFFFFFC02A397AAB37>20 D<E00000000000F80000 +000000FE00000000003F80000000000FE00000000003F80000000000FE00000000003F80 +000000000FE00000000003F80000000000FE00000000003F80000000000FE00000000003 +F80000000000FE00000000003F80000000000FE00000000003F80000000000FE00000000 +003F80000000000FC0000000000FC0000000003F8000000000FE0000000003F800000000 +0FE0000000003F8000000000FE0000000003F8000000000FE0000000003F8000000000FE +0000000003F8000000000FE0000000003F8000000000FE0000000003F8000000000FE000 +0000003F80000000007E0000000000F80000000000E00000000000000000000000000000 +000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000007FFFFFFFFF80FFFFFF +FFFFC0FFFFFFFFFFC02A397AAB37>I<0001C000000000000001C000000000000001C000 +000000000003C00000000000000380000000000000078000000000000007000000000000 +000F000000000000000E000000000000001E000000000000003C00000000000000780000 +0000000000F800000000000001F000000000000003C00000000000000F80000000000000 +7FFFFFFFFFFFFFFCFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFC0F8000000000000003C00000 +0000000001F000000000000000F80000000000000078000000000000003C000000000000 +001E000000000000000E000000000000000F000000000000000700000000000000078000 +0000000000038000000000000003C000000000000001C000000000000001C00000000000 +0001C000000000003E237CA147>32 D<003F80000007F00000FFF000003FFC0003FFFC00 +00FFFF0007FFFF0001F807800F80FF8007C001C01E003FC00F8000E03C001FE01F000070 +38000FF03E000030700007F83C000038700003FC78000018600001FEF0000018E00000FF +E000001CC000007FE000000CC000007FC000000CC000003FC000000CC000001FE000000C +C000000FF000000CC000000FF800000CC000001FF800000CE000001FFC00001C6000003D +FE00001860000078FF000038700000F07F800038300001F03FC00070380003E01FE000F0 +1C0007C00FF001E00E000F8007FC07C007807E0003FFFF8003FFFC0000FFFF0000FFF000 +003FFC00003F80000007F0003E1F7C9D47>49 D<00000001C000000001C000000003C000 +00000380000000078000000007000000000F000000000E000000001E000000003C000000 +00380000000078000000007000000000F000000000E000000001E000000001C000000003 +C00000000380000000078000000007000000000F000000000E000000001E000000003C00 +000000380000000078000000007000000000F000000000E000000001E000000001C00000 +0003C00000000380000000078000000007000000000F000000001E000000001C00000000 +3C00000000380000000078000000007000000000F000000000E000000001E000000001C0 +00000003C00000000380000000078000000007000000000F000000001E000000001C0000 +00003C00000000380000000078000000007000000000F000000000E00000000060000000 +00223D76AE00>54 D<FFFFFFFFFCFFFFFFFFFCFFFFFFFFFC000000001C000000001C0000 +00001C000000001C000000001C000000001C000000001C000000001C000000001C000000 +001C000000001C000000001C000000001C000000001C000000001C000000000826137C97 +2F>58 D<0000000000001C0000000000003C0007FFFFFFFFF8001FFFFFFFFFF000FFFFFF +FFFFC001FFFFFFFFFF000780007C0000000F0000FC0000001E0000FC0000003E0000FC00 +00007E0001F80000007C0001F8000000FC0001F8000000F00001F8000000E00003F00000 +00000003F0000000000003F0000000000003F0000000000007E0000000000007E0000000 +000007E0000000000007E000000000000FC000000000000FC000000000000FC000000000 +000FC000000000001F8000000000001F8000000000001F8000000000001F800000000000 +3F8000000000003F0000000000003F0000000000003F0000000000003F0000000000007E +0000000000007E0000000000007E0000000000007C000000000000FC000000000000FC00 +0000000000F8000000000001F8000000000001F8000000000001F0000000000003F00000 +00000003E0000000000003E0000000000007C00000000000078000000000000F00000000 +000008000000000036347DAE27>84 D<0000300000000078000000007800000000FC0000 +0000FC00000001FE00000001CE00000001CE00000003CF00000003870000000787800000 +07038000000F03C000000E01C000001E01E000001C00E000003C00F00000380070000078 +0078000070003800007000380000F0003C0000E0001C0001E0001E0001C0000E0003C000 +0F000380000700078000078007000003800F000003C00E000001C01E000001E01C000000 +E01C000000E03C000000F0380000007078000000787000000038F00000003CE00000001C +E00000000C26297CA72F>94 D<E00000000CE00000001CF00000003C7000000038780000 +007838000000703C000000F01C000000E01C000000E01E000001E00E000001C00F000003 +C007000003800780000780038000070003C0000F0001C0000E0001E0001E0000E0001C00 +00F0003C000070003800007000380000780078000038007000003C00F000001C00E00000 +1E01E000000E01C000000F03C0000007038000000787800000038700000003CF00000001 +CE00000001CE00000001FE00000000FC00000000FC000000007800000000780000000030 +000026297CA72F>I E /Fn 12 122 df<0001FC0000000FFF0000003F07C000007C03E0 +0001F801F00C03F001F00C07E000F80C0FC000F81C0F8000FC181F80007C183F00007C38 +3F00007C307F00007C707E00007C607E00007CE07E00007CC0FE00007DC0FC00007F80FC +00007F00FC00007E00FC00007E00FC00007C00FC00007C007C00007C007C0000FE007C00 +03FE0C3E00073E0C1F001E3E1C0F81F81F3803FFE00FF000FE0003C0261F7D9D2D>11 +D<0000007E00000001FFC000000781E000001E00F000003800F000007000F80000E00078 +0001C0007800038000F800030000F800070000F800060000F8000E0001F8000C0001F000 +1C0001F000180003E000180007C0003800078000301FEF0000303FFE0000703FFE000060 +1FEF000060000F8000600007C000E00007C000C00007E000C00007E000C00007E001C000 +07E001800007E001800007E001800007E00380000FE00300000FC00300000FC00300000F +C00700001F800700001F800700003F000700003F000F80007E000D80007C000DC000F800 +0CE001F0001C7003E000183C0F8000181FFE00001803F800003800000000300000000030 +0000000030000000007000000000600000000060000000006000000000E000000000C000 +000000C000000000C000000000253C7EAE28>I<3C7EFFFFFFFF7E3C08087A8714>58 +D<3C007E00FF00FF00FF80FF807F803D80018001800180038003000300070006000E001C +0038007000600009157A8714>I<0000000000800000000003C0000000000FC000000000 +3F8000000000FE0000000003F8000000000FE0000000003F8000000000FE0000000003F8 +000000000FE0000000003F8000000000FE0000000003F8000000000FE0000000003F8000 +000000FE0000000003F8000000000FE0000000003F8000000000FE0000000000F8000000 +0000FE00000000003F80000000000FE00000000003F80000000000FE00000000003F8000 +0000000FE00000000003F80000000000FE00000000003F80000000000FE00000000003F8 +0000000000FE00000000003F80000000000FE00000000003F80000000000FE0000000000 +3F80000000000FC00000000003C00000000000802A2B7AA537>I<400000000000F00000 +000000FC00000000007F00000000001FC00000000007F00000000001FC00000000007F00 +000000001FC00000000007F00000000001FC00000000007F00000000001FC00000000007 +F00000000001FC00000000007F00000000001FC00000000007F00000000001FC00000000 +007F00000000001FC00000000007C0000000001FC0000000007F0000000001FC00000000 +07F0000000001FC0000000007F0000000001FC0000000007F0000000001FC0000000007F +0000000001FC0000000007F0000000001FC0000000007F0000000001FC0000000007F000 +0000001FC0000000007F0000000000FC0000000000F000000000004000000000002A2B7A +A537>62 D<003FFE00000001FFF0003FFE00000003FFF00000FF00000003F8000000FF00 +000007F8000000DF0000000DF0000000DF0000000DF0000001DF0000001BF0000001DF00 +000033E00000018F80000033E00000018F80000063E00000038F800000C7E00000038F80 +0000C7C00000030F80000187C00000030F80000307C000000707C000030FC000000707C0 +00060F8000000607C0000C0F8000000607C0000C0F8000000E07C000181F8000000E07C0 +00301F0000000C03E000301F0000000C03E000601F0000001C03E000C03F0000001C03E0 +00C03E0000001803E001803E0000001803E003003E0000003801F003007E0000003801F0 +06007C0000003001F00C007C0000003001F00C007C0000007001F01800FC0000007001F0 +3000F80000006001F03000F80000006000F86000F8000000E000F8C001F8000000E000F8 +C001F0000000C000F98001F0000000C000FB0001F0000001C000FB0003F0000001C0007E +0003E000000180007C0003E0000003C0007C0003E000000FE000780007E00000FFFE0070 +01FFFF8000FFFE003001FFFF8000442D7CAC44>77 D<0003F800000FFE00003E078000F8 +038001F003C003E001C007C001C00FC003C01F8003801F8007803F000F003F001E007F01 +FC007FFFF0007FFF00007E000000FE000000FC000000FC000000FC000000FC0000007C00 +00007C0000607C0000E07C0001C03E0003803E000F001F001C000F81F80003FFE00000FE +00001B1F7D9D21>101 D<07C007E0001FE03FF80018F8783E003879E01E00307B801F00 +707F001F00607F001F0060FE001F00E0FC001F00C0FC001F00C0F8001F0081F8003F0001 +F8003E0001F0003E0001F0003E0003F0007E0003F0007C0003E0007C0003E000FC0007E0 +00F80807E000F81807C001F81807C001F0180FC001F0380FC003E0300F8003E0700F8003 +E0E01F8001E0C01F8001E3C01F0000FF000E00003E00251F7E9D2B>110 +D<07C01F000FF07FC01CF8E0E03879C1E0307B87E0707F07E0607E07E060FC07E0E0FC03 +80C0F80000C0F8000081F8000001F8000001F0000001F0000003F0000003F0000003E000 +0003E0000007E0000007E0000007C0000007C000000FC000000FC000000F8000000F8000 +001F8000001F8000001F0000000E0000001B1F7E9D20>114 D<000E00001F00001F0000 +3F00003F00003E00003E00007E00007E00007C00007C0000FC0000FC00FFFFF8FFFFF801 +F80001F80001F00001F00003F00003F00003E00003E00007E00007E00007C00007C0000F +C0000FC0000F80000F80001F80101F80301F00301F00701F00601F00E01E01C01E03801F +07000F0E0007FC0001F000152B7EA919>116 D<01E0000007F8000E0E3C001F1C3E003F +383E003E303E003E703E003E607E007EE07C007CC07C007CC0FC007C80F800FC00F800F8 +01F800F801F000F801F001F803F001F003E001F003E001F003E003F007E003E007C003E0 +07C003E007C007E007C007C003C00FC003E01FC003E03FC001F07F80007FEF80001F8F80 +00001F8000001F0000001F003E003E003E003E007E007C007E00F8007C01F0007003E000 +3007C0003C0F80000FFE000003F00000202C7E9D23>121 D E /Fo +49 122 df<0000FF807E000007FFE1FF80001F807FC3C0003E007F87E0007C00FF07E000 +F800FE07E001F000FE07E003F000FC018003E0007C000003E0007C000003E0007C000003 +E0007C000003E0007C000003E0007C000003E0007C000003E0007C000003E0007C000003 +E0007C0000FFFFFFFFFC00FFFFFFFFFC0003E0007C000003E0007C000003E0007C000003 +E0007C000003E0007C000003E0007C000003E0007C000003E0007C000003E0007C000003 +E0007C000003E0007C000003E0007C000003E0007C000003E0007C000003E0007C000003 +E0007C000003E0007C000003E0007C000003E0007C000003E0007C000003E0007C000003 +E0007C000003E0007C000003E0007C000007F000FE00007FFF0FFFF0007FFF0FFFF0002B +2F7FAE29>11 D<0000FF00000007FFE000001F80F000003E003800007C007C0000F800FC +0001F000FC0003F000FC0003E000780003E000300003E000000003E000000003E0000000 +03E000000003E000000003E000000003E000000003E0007C00FFFFFFFC00FFFFFFFC0003 +E000FC0003E0007C0003E0007C0003E0007C0003E0007C0003E0007C0003E0007C0003E0 +007C0003E0007C0003E0007C0003E0007C0003E0007C0003E0007C0003E0007C0003E000 +7C0003E0007C0003E0007C0003E0007C0003E0007C0003E0007C0003E0007C0003E0007C +0003E0007C0003E0007C0007F000FE007FFF0FFFE07FFF0FFFE0232F7FAE27>I<0001F0 +0000000007FC000000001F0C000000003E0E000000003C06000000007807000000007803 +00000000F80300000000F80300000000F80300000000F80300000000F80700000000F806 +00000000F80E00000000F81C00000000F838000000007C30000000007C70000000007CE0 +003FFF007FC0003FFF007F80000FF8003F000007E0003F00000380001F00000380003F80 +000700007F8000060000EFC0000E0001CFC0001C000387E00018000707F00038000F03F0 +0070001E01F80060003E01FC00E0007C00FE01C0007C007E018000FC003F038000FC003F +870000FC001FCE0000FC000FDC0000FC0007F80006FE0003F000067E0001F800067E0001 +FC000C3F0007FE001C1F800E1F80380FC07C07E0F003FFF001FFE0007F80007F8030307D +AE37>38 D<00030007000E001C0038007000F001E001C003C0078007800F000F001E001E +001E003C003C003C003C0078007800780078007800F800F800F000F000F000F000F000F0 +00F000F000F000F000F000F800F800780078007800780078003C003C003C003C001E001E +001E000F000F000780078003C001C001E000F000700038001C000E0007000310437AB11B +>40 D<C000E000700038001C000E000F000780038003C001E001E000F000F00078007800 +78003C003C003C003C001E001E001E001E001E001F001F000F000F000F000F000F000F00 +0F000F000F000F000F001F001F001E001E001E001E001E003C003C003C003C0078007800 +7800F000F001E001E003C0038007800F000E001C0038007000E000C00010437CB11B>I< +000003800000000003800000000003800000000003800000000003800000000003800000 +000003800000000003800000000003800000000003800000000003800000000003800000 +000003800000000003800000000003800000000003800000000003800000000003800000 +000003800000000003800000000003800000000003800000FFFFFFFFFFFCFFFFFFFFFFFC +FFFFFFFFFFFC000003800000000003800000000003800000000003800000000003800000 +000003800000000003800000000003800000000003800000000003800000000003800000 +000003800000000003800000000003800000000003800000000003800000000003800000 +0000038000000000038000000000038000000000038000000000038000002E2F7CA737> +43 D<3C007E00FF00FF00FF80FF807F803D80018001800180038003000300070006000E +001C0038007000600009157A8714>I<3C7EFFFFFFFF7E3C08087A8714>46 +D<003FC00000FFF00003E07C0007C03E000F801F000F000F001E0007801E0007803E0007 +C03E0007C07C0003E07C0003E07C0003E07C0003E07C0003E0FC0003F0FC0003F0FC0003 +F0FC0003F0FC0003F0FC0003F0FC0003F0FC0003F0FC0003F0FC0003F0FC0003F0FC0003 +F0FC0003F0FC0003F0FC0003F0FC0003F07C0003E07C0003E07C0003E07E0007E03E0007 +C03E0007C03E0007C01F000F800F000F000F801F0007C03E0003F0FC0000FFF000003FC0 +001C2D7DAB23>48 D<000C00003C00007C0003FC00FFFC00FC7C00007C00007C00007C00 +007C00007C00007C00007C00007C00007C00007C00007C00007C00007C00007C00007C00 +007C00007C00007C00007C00007C00007C00007C00007C00007C00007C00007C00007C00 +007C00007C00007C00007C00007C00007C00007C00007C0000FE007FFFFE7FFFFE172C7A +AB23>I<007F800001FFF0000780FC000E003F001C001F8038000FC070000FC0600007E0 +F00007E0FC0007F0FE0007F0FE0003F0FE0003F0FE0003F07C0007F0000007F0000007F0 +000007E000000FE000000FC000001FC000001F8000003F0000007E0000007C000000F800 +0001F0000003E0000007C000000F8000001E0000003C00000078000000F0003000E00030 +01C0003003800060070000600E0000E01FFFFFE03FFFFFE07FFFFFC0FFFFFFC0FFFFFFC0 +1C2C7DAB23>I<003FC00001FFF00007C0FC000E007E001C003F001C001F803F001FC03F +001FC03F800FC03F000FC03F000FC00C001FC000001FC000001F8000001F8000003F0000 +003E0000007C000000F8000003F00000FFC00000FFF0000000FC0000003F0000001F8000 +001FC000000FC000000FE000000FE0000007F0000007F0380007F07C0007F0FE0007F0FE +0007F0FE0007F0FE000FE0F8000FE060000FC070001FC038001F801E003F000780FC0001 +FFF000007FC0001C2D7DAB23>I<00000E0000000E0000001E0000003E0000003E000000 +7E000000FE000000FE000001BE000003BE0000033E0000063E00000E3E00000C3E000018 +3E0000383E0000303E0000603E0000E03E0000C03E0001803E0003803E0003003E000600 +3E000E003E000C003E0018003E0038003E0030003E0060003E00E0003E00FFFFFFFCFFFF +FFFC00003E0000003E0000003E0000003E0000003E0000003E0000003E0000003E000000 +3E0000007F00001FFFFC001FFFFC1E2D7EAC23>I<0C0001800FC01F800FFFFF000FFFFE +000FFFFC000FFFF0000FFFC0000C7E00000C0000000C0000000C0000000C0000000C0000 +000C0000000C0000000C0000000C1FC0000C7FF8000DE07C000F801F000F001F800E000F +800C0007C0000007E0000007E0000003E0000003F0000003F0000003F0000003F0780003 +F0FC0003F0FC0003F0FC0003F0FC0003F0F80007E0E00007E0600007C070000FC038000F +801C001F000E003E000780F80001FFE000007F80001C2D7DAB23>I<0003F800000FFE00 +003E078000F8018001F007C003E00FC007C00FC00F800FC00F800FC01F0007801F000000 +3E0000003E0000007E0000007E0000007C0000007C0FC000FC3FF000FCF07C00FDC01E00 +FF800F00FF000F80FF0007C0FE0007E0FE0007E0FE0003E0FC0003F0FC0003F0FC0003F0 +FC0003F07C0003F07C0003F07C0003F07E0003F07E0003F03E0003E03E0007E01E0007E0 +1F0007C00F000F8007801F0003C03E0001E07C00007FF000001FC0001C2D7DAB23>I<30 +0000003C0000003FFFFFF83FFFFFF83FFFFFF07FFFFFF07FFFFFE0700001C06000018060 +000380C0000700C0000E00C0000C0000001C000000380000003000000070000000E00000 +01C0000001C00000038000000380000007000000070000000F0000000E0000001E000000 +1E0000003E0000003E0000003E0000003C0000007C0000007C0000007C0000007C000000 +FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC000000 +7800001D2E7CAC23>I<001FC00000FFF00003E07C0007801E000F000F001E0007801E00 +07803C0003C03C0003C03C0003C03C0003C03E0003C03E0007C03F0007801FC00F801FE0 +0F001FF81E000FFC3C0007FFF80003FFE00000FFE000003FF80000FFFC0003C7FF000783 +FF801F00FFC01E003FC03C001FE07C0007E0780003F0F80003F0F00001F0F00000F0F000 +00F0F00000F0F00000F0F80000E0780001E07C0001C03C0003C01E0007800F800F0007E0 +3C0001FFF000003FC0001C2D7DAB23>I<003F800000FFF00003E0780007C03E000F801F +001F000F003E000F803E0007807E0007C07C0007C0FC0007E0FC0003E0FC0003E0FC0003 +E0FC0003F0FC0003F0FC0003F0FC0003F0FC0003F07C0007F07E0007F07E0007F03E000F +F01F000FF00F001FF007803BF003E0F3F000FFC3F0003F03E0000003E0000007E0000007 +E0000007C0000007C000000FC01E000F803F000F003F001F003F003E003F003C003E0078 +001C00F0000E03E00007FF800001FE00001C2D7DAB23>I<3C7EFFFFFFFF7E3C00000000 +0000000000000000003C7EFEFFFFFF7F3F0303030706060E0C1C18387060082A7A9C14> +59 D<7FFFFFFFFFF8FFFFFFFFFFFCFFFFFFFFFFFC000000000000000000000000000000 +000000000000000000000000000000000000000000000000000000000000000000000000 +000000000000000000000000000000000000000000000000000000FFFFFFFFFFFCFFFFFF +FFFFFC7FFFFFFFFFF82E137C9937>61 D<00001FF000C00000FFFE01C00003F00F83C000 +0F8001E3C0003F000077C0007C00003FC001F800001FC003F000000FC007E0000007C007 +E0000007C00FC0000003C01FC0000003C01F80000001C03F80000001C03F00000001C07F +00000000C07F00000000C07F00000000C0FE0000000000FE0000000000FE0000000000FE +0000000000FE0000000000FE0000000000FE0000000000FE0000000000FE0000000000FE +00001FFFFEFE00001FFFFE7F0000001FE07F0000000FC07F0000000FC03F0000000FC03F +8000000FC01F8000000FC01FC000000FC00FC000000FC007E000000FC007E000000FC003 +F000000FC001F800001FC0007C00001FC0003F00003FC0000F8000F3C00003F007C1C000 +00FFFF00C000001FF800002F2F7CAD37>71 D<FFFFF0FFFFF003FC0001F80001F80001F8 +0001F80001F80001F80001F80001F80001F80001F80001F80001F80001F80001F80001F8 +0001F80001F80001F80001F80001F80001F80001F80001F80001F80001F80001F80001F8 +0001F80001F80001F80001F80001F80001F80001F80001F80001F80001F80001F80001F8 +0003FC00FFFFF0FFFFF0142D7EAC19>73 D<FFF800000007FFC0FFFC0000000FFFC003FC +0000000FF00001FC0000000FE00001BE0000001BE00001BE0000001BE000019F00000033 +E000019F00000033E000019F00000033E000018F80000063E000018F80000063E0000187 +C00000C3E0000187C00000C3E0000183E0000183E0000183E0000183E0000183E0000183 +E0000181F0000303E0000181F0000303E0000180F8000603E0000180F8000603E0000180 +F8000603E00001807C000C03E00001807C000C03E00001803E001803E00001803E001803 +E00001803E001803E00001801F003003E00001801F003003E00001800F806003E0000180 +0F806003E000018007C0C003E000018007C0C003E000018007C0C003E000018003E18003 +E000018003E18003E000018001F30003E000018001F30003E000018001F30003E0000180 +00FE0003E000018000FE0003E0000180007C0003E00003C0007C0003E0000FF0007C0007 +F000FFFF003801FFFFC0FFFF003801FFFFC03A2D7DAC41>77 D<FFF80003FFFCFFFC0003 +FFFC01FC00003FC001FE00000F0001FF0000060001BF8000060001BF80000600019FC000 +0600018FE00006000187E00006000187F00006000183F80006000181F80006000181FC00 +06000180FE00060001807E00060001807F00060001803F80060001801FC0060001800FC0 +060001800FE00600018007F00600018003F00600018003F80600018001FC0600018000FC +0600018000FE06000180007F06000180003F86000180001F86000180001FC6000180000F +E60001800007E60001800007F60001800003FE0001800001FE0001800001FE0001800000 +FE00018000007E00018000003E00018000003E0003C000001E000FF000000E00FFFF0000 +0E00FFFF000006002E2D7DAC35>I<00003FF000000001FFFE00000007E01F8000001F80 +07E000003E0001F00000FC0000FC0001F800007E0003F000003F0007E000001F8007C000 +000F800FC000000FC01F80000007E01F80000007E03F00000003F03F00000003F07F0000 +0003F87F00000003F87E00000001F87E00000001F8FE00000001FCFE00000001FCFE0000 +0001FCFE00000001FCFE00000001FCFE00000001FCFE00000001FCFE00000001FCFE0000 +0001FCFE00000001FC7F00000003F87F00000003F87F00000003F83F00000003F03F8000 +0007F01F80000007E01F80000007E00FC000000FC00FE000001FC007E000001F8003F000 +003F0001F800007E0000FC0000FC00007E0001F800001F8007E0000007E01F80000001FF +FE000000003FF000002E2F7CAD37>I<7FFFFFFFFFF87FFFFFFFFFF87F000FC003F87C00 +0FC000F870000FC0003870000FC0003860000FC0001860000FC00018E0000FC0001CE000 +0FC0001CC0000FC0000CC0000FC0000CC0000FC0000CC0000FC0000CC0000FC0000C0000 +0FC0000000000FC0000000000FC0000000000FC0000000000FC0000000000FC000000000 +0FC0000000000FC0000000000FC0000000000FC0000000000FC0000000000FC000000000 +0FC0000000000FC0000000000FC0000000000FC0000000000FC0000000000FC000000000 +0FC0000000000FC0000000000FC0000000000FC0000000000FC0000000000FC000000000 +0FC0000000000FC0000000000FC0000000001FE00000001FFFFFE000001FFFFFE0002E2D +7EAC33>84 D<00FF000007FFC0000F01F0001C00F8003F007C003F003E003F003E003F00 +3F001E001F0000001F0000001F0000001F0000001F000007FF00007FFF0001FE1F0007F0 +1F001FC01F003F801F007F001F007E001F00FE001F06FC001F06FC001F06FC001F06FC00 +3F06FE003F067E007F067F00EF8C1F83C7FC0FFF03F801FC01E01F207D9E23>97 +D<07C0000000FFC0000000FFC00000000FC000000007C000000007C000000007C0000000 +07C000000007C000000007C000000007C000000007C000000007C000000007C000000007 +C000000007C000000007C0FE000007C7FF800007CF03E00007DC01F00007F8007C0007F0 +007E0007E0003E0007C0001F0007C0001F8007C0001F8007C0000F8007C0000FC007C000 +0FC007C0000FC007C0000FC007C0000FC007C0000FC007C0000FC007C0000FC007C0000F +C007C0001F8007C0001F8007C0001F0007C0003F0007E0003E0007F0007C0007B000F800 +07BC01F000070E07E0000607FF80000001FC0000222F7EAD27>I<001FE000007FFC0001 +F01E0003E0070007C01F800F801F801F001F803F001F803E000F007E0000007E0000007C +000000FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC +0000007E0000007E0000007E0000C03F0000C01F0001C01F8001800FC0038007E0070001 +F03E00007FF800001FC0001A207E9E1F>I<000000F80000001FF80000001FF800000001 +F800000000F800000000F800000000F800000000F800000000F800000000F800000000F8 +00000000F800000000F800000000F800000000F800000000F800000FE0F800007FF8F800 +01F81EF80003E007F80007C003F8000F8001F8001F0001F8003F0000F8003E0000F8007E +0000F8007E0000F800FC0000F800FC0000F800FC0000F800FC0000F800FC0000F800FC00 +00F800FC0000F800FC0000F800FC0000F8007C0000F8007E0000F8007E0000F8003E0001 +F8001F0001F8001F8003F8000F8007F80003E00EFC0001F03CFFC0007FF0FFC0001FC0F8 +00222F7EAD27>I<001F800000FFF00003E0780007C03E000F801E001F001F001F000F80 +3E000F807E0007807E0007C07C0007C0FC0007C0FC0007C0FC0007C0FFFFFFC0FFFFFFC0 +FC000000FC000000FC000000FC000000FC0000007E0000007E0000003E0000C03F0000C0 +1F0001C00F8003800FC0030003E00F0001F03C00007FF800001FC0001A207E9E1F>I<00 +03F0000FFC003E1E007C3F00F83F01F03F01F03F03E00C03E00003E00003E00003E00003 +E00003E00003E00003E00003E00003E000FFFFE0FFFFE003E00003E00003E00003E00003 +E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003 +E00003E00003E00003E00003E00003E00003E00003E00007F0007FFF807FFF80182F7FAE +16>I<003F00F800FFC3FE03E1FF1E07807C1E0F807C0C1F003E001F003E003E001F003E +001F003E001F003E001F003E001F003E001F003E001F001F003E001F003E000F807C0007 +8078000FE1F0000CFFC0001C3F00001C0000001C0000001C0000001E0000001F0000000F +FFF8000FFFFF0007FFFFC00FFFFFF01E0007F83C0000F87800007CF800007CF000003CF0 +00003CF000003CF000003CF800007C7C0000F83E0001F01F0003E007E01F8001FFFE0000 +3FF0001F2D7E9D23>I<07C0000000FFC0000000FFC00000000FC000000007C000000007 +C000000007C000000007C000000007C000000007C000000007C000000007C000000007C0 +00000007C000000007C000000007C000000007C0FE000007C3FF800007C703E00007DE01 +F00007F801F00007F000F80007F000F80007E000F80007E000F80007C000F80007C000F8 +0007C000F80007C000F80007C000F80007C000F80007C000F80007C000F80007C000F800 +07C000F80007C000F80007C000F80007C000F80007C000F80007C000F80007C000F80007 +C000F80007C000F8000FE001FC00FFFE1FFFC0FFFE1FFFC0222E7EAD27>I<07800FC01F +E01FE01FE01FE00FC007800000000000000000000000000000000007C0FFC0FFC00FC007 +C007C007C007C007C007C007C007C007C007C007C007C007C007C007C007C007C007C007 +C007C007C007C007C00FE0FFFCFFFC0E2E7EAD14>I<07C0FFC0FFC00FC007C007C007C0 +07C007C007C007C007C007C007C007C007C007C007C007C007C007C007C007C007C007C0 +07C007C007C007C007C007C007C007C007C007C007C007C007C007C007C007C007C007C0 +0FE0FFFEFFFE0F2E7EAD14>108 D<07C07F0007F000FFC3FFC03FFC00FFC783F0783F00 +0FCE01F8E01F8007DC00F9C00F8007F800FF800FC007F0007F0007C007E0007E0007C007 +E0007E0007C007C0007C0007C007C0007C0007C007C0007C0007C007C0007C0007C007C0 +007C0007C007C0007C0007C007C0007C0007C007C0007C0007C007C0007C0007C007C000 +7C0007C007C0007C0007C007C0007C0007C007C0007C0007C007C0007C0007C007C0007C +0007C007C0007C0007C007C0007C0007C007C0007C0007C00FE000FE000FE0FFFE0FFFE0 +FFFEFFFE0FFFE0FFFE371E7E9D3C>I<07C0FE0000FFC3FF8000FFC703E0000FDE01F000 +07F801F00007F000F80007F000F80007E000F80007E000F80007C000F80007C000F80007 +C000F80007C000F80007C000F80007C000F80007C000F80007C000F80007C000F80007C0 +00F80007C000F80007C000F80007C000F80007C000F80007C000F80007C000F80007C000 +F80007C000F8000FE001FC00FFFE1FFFC0FFFE1FFFC0221E7E9D27>I<001FE000007FF8 +0001F03E0003C00F00078007800F0003C01F0003E03E0001F03E0001F07C0000F87C0000 +F87C0000F8FC0000FCFC0000FCFC0000FCFC0000FCFC0000FCFC0000FCFC0000FCFC0000 +FCFC0000FC7C0000F87C0000F83E0001F03E0001F01F0003E01F0003E00F8007C007C00F +8001F03E00007FF800001FE0001E207E9E23>I<07C0FE0000FFC7FF8000FFCF03E0000F +DC01F00007F800FC0007F0007E0007E0003E0007C0003F0007C0001F8007C0001F8007C0 +001F8007C0000FC007C0000FC007C0000FC007C0000FC007C0000FC007C0000FC007C000 +0FC007C0000FC007C0001FC007C0001F8007C0001F8007C0003F0007C0003F0007E0007E +0007F0007C0007F000F80007FC01F00007CE07E00007C7FF800007C1FC000007C0000000 +07C000000007C000000007C000000007C000000007C000000007C000000007C000000007 +C00000000FE0000000FFFE000000FFFE000000222B7E9D27>I<000FE01800007FF83800 +01F81C380003E00E780007C00778000F8003F8001F8001F8003F0001F8003F0001F8007E +0000F8007E0000F800FE0000F800FC0000F800FC0000F800FC0000F800FC0000F800FC00 +00F800FC0000F800FC0000F800FC0000F8007E0000F8007E0000F8007E0000F8003F0001 +F8001F0001F8001F8003F8000FC007F80003E00EF80001F03CF800007FF0F800001FC0F8 +00000000F800000000F800000000F800000000F800000000F800000000F800000000F800 +000000F800000000F800000001FC0000001FFFC000001FFFC0222B7E9D25>I<0781F8FF +87FEFF8E3F0F9C3F07B83F07B03F07F01E07E00007E00007E00007E00007C00007C00007 +C00007C00007C00007C00007C00007C00007C00007C00007C00007C00007C00007C00007 +C00007C0000FE000FFFF00FFFF00181E7E9D1C>I<01FE1807FFB81E01F83C00F8780078 +F00038F00038F00018F00018F80018FC0018FF00007FF0003FFF001FFFC00FFFF001FFF8 +001FFC0001FCC0007EC0003EC0003EE0001EE0001EF0001EF0001EF8003CF8003CFC0078 +FF01F0E3FFC0C0FF0017207E9E1C>I<00600000600000600000600000E00000E00000E0 +0001E00003E00003E00007E0001FE000FFFFF0FFFFF003E00003E00003E00003E00003E0 +0003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E01803E0 +1803E01803E01803E01803E01803E01803E03801F03001F07000F860003FE0000F80152A +7FA81B>I<07C000F800FFC01FF800FFC01FF8000FC001F80007C000F80007C000F80007 +C000F80007C000F80007C000F80007C000F80007C000F80007C000F80007C000F80007C0 +00F80007C000F80007C000F80007C000F80007C000F80007C000F80007C000F80007C000 +F80007C000F80007C001F80007C001F80007C001F80007C003F80003E007F80003E00EFC +0001F81CFFC0007FF8FFC0001FE0F800221F7E9D27>I<FFFC01FFC0FFFC01FFC00FE000 +7E0007E0007C0007E000380003E000300003E000700001F000600001F000600000F800C0 +0000F800C00000F800C000007C018000007C018000003E030000003E030000003F070000 +001F060000001F060000000F8C0000000F8C0000000FDC00000007D800000007D8000000 +03F000000003F000000003F000000001E000000001E000000000C00000221E7F9C25>I< +FFFC3FFE07FFFFFC3FFE07FF0FE003F001F80FC003E000F007C001E000E007C001F000E0 +03E003F000C003E003F000C003E007F801C001F00678018001F00678018001F80E7C0380 +00F80C3C030000F80C3C0300007C181E0600007C181E0600007C181F0600003E300F0C00 +003E300F0C00003E300F8C00001F60079800001F60079800001F6007D800000FC003F000 +000FC003F000000FC003F00000078001E00000078001E00000078001E00000030000C000 +301E7F9C33>I<FFFC07FF80FFFC07FF800FF003FC0003F001F00001F001C00001F80380 +0000F8030000007C060000003E0E0000001F1C0000001FB80000000FB000000007E00000 +0003E000000001F000000003F800000007F8000000067C0000000C3E0000001C1F000000 +381F800000700F800000E007C00000E003E00003C003F00007C001F8001FE003FC00FFF0 +07FFC0FFF007FFC0221D7F9C25>I<FFFC01FFC0FFFC01FFC00FE0007E0007E0007C0007 +E000380003E000300003F000700001F000600001F000600000F800C00000F800C00000FC +01C000007C018000007E038000003E030000003E030000001F060000001F060000001F8E +0000000F8C0000000F8C00000007D800000007D800000003F000000003F000000003F000 +000001E000000001E000000000C000000000C00000000180000000018000000003800000 +00030000007803000000FC06000000FC06000000FC0C000000FC1C000000783800000070 +700000003FE00000000F80000000222B7F9C25>I E /Fp 44 122 +df<000F807E003FE07E007FE07E00FFE07E01FFE07E03F8607E03F0000003E0000007E0 +000007E0000007E0000007E0000007E0000007E0000007E0000007E0000007E00000FFFF +E07EFFFFE07EFFFFE07EFFFFE07E07E0007E07E0007E07E0007E07E0007E07E0007E07E0 +007E07E0007E07E0007E07E0007E07E0007E07E0007E07E0007E07E0007E07E0007E07E0 +007E07E0007E07E0007E07E0007E07E0007E07E0007E07E0007E07E0007E07E0007E07E0 +007E07E0007E07E0007E1F2F7FAE26>12 D<000F8000003FE07E007FE07E00FFE07E01FF +E07E03F8607E03F0007E03E0007E07E0007E07E0007E07E0007E07E0007E07E0007E07E0 +007E07E0007E07E0007E07E0007EFFFFE07EFFFFE07EFFFFE07EFFFFE07E07E0007E07E0 +007E07E0007E07E0007E07E0007E07E0007E07E0007E07E0007E07E0007E07E0007E07E0 +007E07E0007E07E0007E07E0007E07E0007E07E0007E07E0007E07E0007E07E0007E07E0 +007E07E0007E07E0007E07E0007E07E0007E07E0007E07E0007E1F2F7FAE26>I<FCFCFC +FCFCFC0606798514>46 D<FCFCFCFCFCFC000000000000000000000000000000000000FC +FCFCFCFCFC061E799D14>58 D<00003F00000000007F80000000007F8000000000FFC000 +000000FFC000000000F7C000000001F7E000000001E7E000000003E7F000000003E3F000 +000003E3F000000007C3F800000007C3F80000000FC1FC0000000F81FC0000000F81FC00 +00001F80FE0000001F00FE0000001F007E0000003F007F0000003E007F0000007E003F80 +00007E003F8000007C003F800000FC001FC00000F8001FC00001F8001FE00001F8000FE0 +0001F0000FE00003FFFFFFF00003FFFFFFF00003FFFFFFF00007FFFFFFF80007C00003F8 +000FC00003FC000FC00001FC000F800001FC001F800000FE001F800000FE003F000000FF +003F0000007F003E0000007F007E0000007F807E0000003F807C0000003F80FC0000001F +C02A2E7EAD2F>65 D<FFFFFC0000FFFFFF8000FFFFFFF000FFFFFFF800FE000FFC00FE00 +01FE00FE00007F00FE00003F80FE00001F80FE00001FC0FE00000FC0FE00000FC0FE0000 +0FC0FE00000FC0FE00001F80FE00003F80FE00007F00FE0000FF00FE0003FE00FE007FF8 +00FFFFFFF000FFFFFFC000FFFFFFE000FFFFFFF800FFFFFFFE00FE0003FF00FE00007F80 +FE00003FC0FE00001FE0FE00000FE0FE000007F0FE000007F0FE000003F0FE000003F0FE +000003F0FE000007F0FE000007E0FE00000FE0FE00001FE0FE00003FC0FE0000FF80FE00 +07FF00FFFFFFFE00FFFFFFF800FFFFFFE000FFFFFF0000242E7AAD2F>I<FFFFFE0000FF +FFFFC000FFFFFFF000FFFFFFFC00FE0007FE00FE0000FF80FE00007FC0FE00001FC0FE00 +000FE0FE000007F0FE000003F8FE000003F8FE000001FCFE000001FCFE000000FCFE0000 +00FEFE000000FEFE0000007EFE0000007FFE0000007FFE0000007FFE0000007FFE000000 +7FFE0000007FFE0000007FFE0000007FFE0000007FFE0000007FFE0000007EFE000000FE +FE000000FEFE000000FEFE000001FCFE000001FCFE000003F8FE000003F8FE000007F0FE +00000FE0FE00001FE0FE00003FC0FE0000FF80FE0007FF00FFFFFFFC00FFFFFFF800FFFF +FFC000FFFFFE0000282E7AAD33>68 D<FFFFFFFEFFFFFFFEFFFFFFFEFFFFFFFEFFFFFFFE +FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE000000 +FE000000FE000000FE000000FE000000FE000000FE000000FFFFFFF8FFFFFFF8FFFFFFF8 +FFFFFFF8FFFFFFF8FE000000FE000000FE000000FE000000FE000000FE000000FE000000 +FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE000000FFFFFFFF +FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF202E7AAD2A>I<FFFFFFFCFFFFFFFCFF +FFFFFCFFFFFFFCFFFFFFFCFE000000FE000000FE000000FE000000FE000000FE000000FE +000000FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE000000FF +FFFFE0FFFFFFE0FFFFFFE0FFFFFFE0FFFFFFE0FE000000FE000000FE000000FE000000FE +000000FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE +000000FE000000FE000000FE000000FE000000FE000000FE000000FE0000001E2E7AAD28 +>I<00003FF8000001FFFF800007FFFFE0001FFFFFF8003FFFFFF800FFE00FF801FF8001 +F003FE00007003FC00001007F00000000FF00000001FE00000001FC00000003FC0000000 +3F800000003F800000007F000000007F000000007F00000000FE00000000FE00000000FE +00000000FE00000000FE00000000FE00000000FE00000000FE0001FFF8FE0001FFF8FE00 +01FFF87F0001FFF87F0001FFF87F000001F83F800001F83F800001F83FC00001F81FC000 +01F81FE00001F80FF00001F807F00001F803FC0001F803FE0001F801FF8001F800FFE007 +F8003FFFFFF8001FFFFFF80007FFFFE00001FFFF8000003FF80025307CAE2F>I<FE0000 +03F8FE000003F8FE000003F8FE000003F8FE000003F8FE000003F8FE000003F8FE000003 +F8FE000003F8FE000003F8FE000003F8FE000003F8FE000003F8FE000003F8FE000003F8 +FE000003F8FE000003F8FE000003F8FE000003F8FE000003F8FFFFFFFFF8FFFFFFFFF8FF +FFFFFFF8FFFFFFFFF8FFFFFFFFF8FE000003F8FE000003F8FE000003F8FE000003F8FE00 +0003F8FE000003F8FE000003F8FE000003F8FE000003F8FE000003F8FE000003F8FE0000 +03F8FE000003F8FE000003F8FE000003F8FE000003F8FE000003F8FE000003F8FE000003 +F8FE000003F8FE000003F8252E7AAD32>I<FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE +FEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE072E7AAD14>I<FE +000000FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE +000000FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE +000000FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE +000000FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE +000000FE000000FE000000FE000000FE000000FFFFFFF0FFFFFFF0FFFFFFF0FFFFFFF0FF +FFFFF01C2E7AAD26>76 D<FF00000003FEFF80000007FEFF80000007FEFF80000007FEFF +C000000FFEFDC000000F7EFDE000001F7EFDE000001F7EFCE000001E7EFCF000003E7EFC +F000003E7EFCF000003E7EFC7800007C7EFC7800007C7EFC7C0000FC7EFC3C0000F87EFC +3C0000F87EFC3E0001F87EFC1E0001F07EFC1F0003F07EFC1F0003F07EFC0F0003E07EFC +0F8007E07EFC0F8007E07EFC078007C07EFC07C00FC07EFC07C00FC07EFC03E01F807EFC +03E01F807EFC01E01F007EFC01F03F007EFC01F03F007EFC00F03E007EFC00F87E007EFC +00F87E007EFC00787C007EFC007CFC007EFC003CF8007EFC003CF8007EFC003CF8007EFC +001FF0007EFC001FF0007EFC000FE0007EFC000FE0007EFC000FE0007EFC000000007E2F +2E79AD3E>I<FF800007E0FFC00007E0FFC00007E0FFE00007E0FFE00007E0FDF00007E0 +FDF00007E0FCF80007E0FCF80007E0FCFC0007E0FC7C0007E0FC7E0007E0FC3E0007E0FC +3F0007E0FC1F0007E0FC1F8007E0FC0F8007E0FC0FC007E0FC0FC007E0FC07E007E0FC07 +E007E0FC03F007E0FC03F007E0FC01F807E0FC01F807E0FC00FC07E0FC00FC07E0FC007E +07E0FC007E07E0FC003E07E0FC003F07E0FC001F07E0FC001F87E0FC000F87E0FC000FC7 +E0FC0007C7E0FC0007E7E0FC0003E7E0FC0003E7E0FC0001F7E0FC0001F7E0FC0000FFE0 +FC0000FFE0FC00007FE0FC00007FE0FC00003FE0232E79AD32>I<00007FC000000003FF +F80000000FFFFE0000003FFFFF8000007FFFFFC00000FFC07FE00001FF001FF00003FC00 +07F80007F80003FC000FF00001FE000FE00000FE001FC000007F001FC000007F003F8000 +003F803F8000003F807F0000001FC07F0000001FC07F0000001FC07E0000000FC0FE0000 +000FE0FE0000000FE0FE0000000FE0FE0000000FE0FE0000000FE0FE0000000FE0FE0000 +000FE0FE0000000FE0FE0000000FE0FE0000000FE07F0000001FC07F0000001FC07F0000 +001FC07F8000003FC03F8000003F803F8000003F801FC000007F001FE00000FF000FE000 +00FE000FF00001FE0007F80003FC0003FC0007F80001FF001FF00000FFC07FE000007FFF +FFC000003FFFFF8000000FFFFE00000003FFF8000000007FC000002B307CAE34>I<FFFF +FC0000FFFFFF8000FFFFFFE000FFFFFFF800FE000FFC00FE0001FE00FE0000FF00FE0000 +7F00FE00003F80FE00001F80FE00001FC0FE00001FC0FE00000FC0FE00000FC0FE00000F +C0FE00001FC0FE00001FC0FE00001F80FE00003F80FE00007F00FE0000FF00FE0001FE00 +FE000FFC00FFFFFFF800FFFFFFF000FFFFFFC000FFFFFF0000FE00000000FE00000000FE +00000000FE00000000FE00000000FE00000000FE00000000FE00000000FE00000000FE00 +000000FE00000000FE00000000FE00000000FE00000000FE00000000FE00000000FE0000 +0000FE00000000FE00000000222E7AAD2D>I<FFFFFE0000FFFFFFC000FFFFFFF000FFFF +FFFC00FE0007FE00FE0000FF00FE00003F80FE00001FC0FE00000FC0FE00000FE0FE0000 +07E0FE000007E0FE000007E0FE000007E0FE00000FE0FE00000FC0FE00001FC0FE00003F +80FE0000FF80FE0007FF00FFFFFFFE00FFFFFFF800FFFFFFF000FFFFFFC000FFFFFF0000 +FE003F0000FE003F8000FE001FC000FE000FC000FE000FE000FE0007F000FE0007F000FE +0003F800FE0001F800FE0001FC00FE0000FE00FE0000FE00FE00007F00FE00003F00FE00 +003F80FE00001FC0FE00001FC0FE00000FE0FE000007E0FE000007F0FE000003F8252E7A +AD2E>82 D<000FFC00007FFF8001FFFFE003FFFFF807FFFFF80FF807F81FC000F03F8000 +303F0000103F0000007E0000007E0000007E0000007E0000007E0000007F0000003F8000 +003FC000003FF000001FFF00000FFFF00007FFFE0003FFFF0001FFFFC0007FFFE0000FFF +F00000FFF800000FF8000003FC000001FC000000FC000000FE0000007E0000007E000000 +7E0000007E0000007E4000007E600000FC700000FCFC0001F8FF0007F8FFE01FF07FFFFF +E01FFFFFC007FFFF0001FFFE00001FF0001F307DAE27>I<FFFFFFFFFFE0FFFFFFFFFFE0 +FFFFFFFFFFE0FFFFFFFFFFE0FFFFFFFFFFE000003F80000000003F80000000003F800000 +00003F80000000003F80000000003F80000000003F80000000003F80000000003F800000 +00003F80000000003F80000000003F80000000003F80000000003F80000000003F800000 +00003F80000000003F80000000003F80000000003F80000000003F80000000003F800000 +00003F80000000003F80000000003F80000000003F80000000003F80000000003F800000 +00003F80000000003F80000000003F80000000003F80000000003F80000000003F800000 +00003F80000000003F80000000003F80000000003F80000000003F80000000003F800000 +00003F80000000003F8000002B2E7EAD30>I<FE000007E0FE000007E0FE000007E0FE00 +0007E0FE000007E0FE000007E0FE000007E0FE000007E0FE000007E0FE000007E0FE0000 +07E0FE000007E0FE000007E0FE000007E0FE000007E0FE000007E0FE000007E0FE000007 +E0FE000007E0FE000007E0FE000007E0FE000007E0FE000007E0FE000007E0FE000007E0 +FE000007E0FE000007E0FE000007E0FE000007E0FE000007E0FE000007E0FE000007E0FE +000007E0FE000007E0FE000007E07F00000FC07F00000FC03F80001F803F80001F801FC0 +003F000FE0007F000FF001FE0003FC07FC0001FFFFF00000FFFFE000003FFF80000007FC +0000232F7AAD30>I<FE00000003F07F00000007E07F00000007E07F80000007E03F8000 +000FC03F8000000FC01FC000001F801FC000001F801FE000001F800FE000003F000FE000 +003F0007F000007E0007F000007E0007F800007E0003F80000FC0003F80000FC0001FC00 +01F80001FC0001F80001FE0001F80000FE0003F00000FE0003F000007F0003E000007F00 +07E000007F8007E000003F800FC000003F800FC000001FC00F8000001FC01F8000001FC0 +1F8000000FE01F0000000FE03F00000007F03E00000007F07E00000003F07C00000003F8 +7C00000003F8FC00000001F8F800000001FCF800000000FCF000000000FDF000000000FD +F0000000007FE0000000007FE0000000003FC0000000003FC0000000003FC000002C2E7F +AD2F>I<00FF000007FFE0001FFFF0003FFFF8003FFFFC003F00FE0038007F0020003F00 +00003F0000001F8000001F8000001F8000001F8000001F8000001F80000FFF8000FFFF80 +07FFFF801FFFFF803FFC1F807FC01F80FE001F80FC001F80FC001F80FC003F80FC003F80 +FE007F807F83FF807FFFFF803FFFFF803FFF9F801FFE1F8007F0000019217D9F22>97 +D<FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC0000 +00FC000000FC000000FC000000FC000000FC000000FC000000FC07F000FC3FF800FCFFFE +00FFFFFF00FFFFFF80FFC0FF80FF003FC0FE001FC0FC000FE0FC0007E0FC0007E0FC0007 +F0FC0003F0FC0003F0FC0003F0FC0003F0FC0003F0FC0003F0FC0003F0FC0003F0FC0007 +E0FC0007E0FC000FE0FE000FC0FE001FC0FF003F80FFC0FF80FFFFFF00FFFFFE00FCFFFC +00FC7FF000000FC0001C2F7BAD24>I<001FF000007FFE0001FFFF8003FFFFC007FFFFC0 +0FF00FC01FC003801F8000803F0000003F0000007E0000007E0000007E000000FC000000 +FC000000FC000000FC000000FC000000FC000000FC000000FC0000007E0000007E000000 +7F0000003F0000003F8000401FC001C00FF00FC007FFFFC003FFFFC001FFFF80007FFE00 +001FF0001A217E9F1F>I<000003F0000003F0000003F0000003F0000003F0000003F000 +0003F0000003F0000003F0000003F0000003F0000003F0000003F0000003F0000003F000 +7F03F001FFE3F003FFFBF007FFFFF00FFFFFF01FF03FF03FC00FF03F8007F07F0003F07E +0003F07E0003F0FE0003F0FC0003F0FC0003F0FC0003F0FC0003F0FC0003F0FC0003F0FC +0003F0FC0003F0FE0003F07E0003F07E0003F07F0007F03F800FF03FC01FF01FF03FF00F +FFFFF007FFFBF003FFF3F001FFC3F0007F00001C2F7EAD24>I<001F800000FFF00001FF +F80007FFFC000FFFFE000FE07F001FC03F003F801F003F000F807E0007807E0007807C00 +07C0FFFFFFC0FFFFFFC0FFFFFFC0FFFFFFC0FFFFFFC0F8000000F8000000FC000000FC00 +00007C0000007E0000007E0000003F0000003F8000401FC001C00FF01FC007FFFFC003FF +FFC001FFFF80007FFE00001FE0001A217E9F1F>I<0003F8000FFE003FFE007FFE00FFFE +00FE0601F80001F00003F00003F00003F00003F00003F00003F00003F00003F00003F000 +FFFFE0FFFFE0FFFFE0FFFFE003F00003F00003F00003F00003F00003F00003F00003F000 +03F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003F000 +03F00003F00003F00003F00003F00003F000172F7FAE16>I<003F007C00FFC7FC03FFFF +FE07FFFFFE0FFFFFFE0FC0FC001F807E001F003E003E001F003E001F003E001F003E001F +003E001F003E001F003E001F001F003E001F807E000FC0FC000FFFFC001FFFF8001FFFF0 +003EFFC0003E3F00003E0000003E0000003F0000003FFFF8001FFFFF001FFFFFC00FFFFF +E03FFFFFF03FFFFFF87F000FF87E0001FCFC0000FCFC0000FCFC0000FCFC0000FCFE0001 +FC7F0003F83FE01FF01FFFFFE00FFFFFC007FFFF8001FFFE00003FF0001F2E7E9E23>I< +FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC000000 +FC000000FC000000FC000000FC000000FC000000FC000000FC0FE000FC3FF800FCFFFC00 +FDFFFE00FFFFFF00FFC0FF00FF803F00FF003F80FE001F80FE001F80FE001F80FC001F80 +FC001F80FC001F80FC001F80FC001F80FC001F80FC001F80FC001F80FC001F80FC001F80 +FC001F80FC001F80FC001F80FC001F80FC001F80FC001F80FC001F80FC001F80FC001F80 +FC001F80192E7BAD24>I<FEFEFEFEFEFEFE000000000000000000007E7E7E7E7E7E7E7E +7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E7E072F7CAE11>I<FC000000FC0000 +00FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC0000 +00FC000000FC000000FC000000FC000000FC000000FC003F80FC007F00FC00FE00FC01FC +00FC03F800FC07F000FC0FE000FC1FC000FC3F8000FC7F0000FCFE0000FDFC0000FFFE00 +00FFFE0000FFFF0000FFDF8000FFDFC000FF8FC000FF07E000FE03F000FC03F000FC01F8 +00FC00FC00FC00FC00FC007E00FC003F00FC003F80FC001F80FC000FC0FC0007E01B2E7B +AD22>107 D<FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC +FCFCFCFCFCFCFCFCFCFCFCFCFCFCFCFC062E7BAD11>I<000FE000FC3FF800FCFFFC00FD +FFFE00FFFFFF00FFC0FF00FF803F00FF003F80FE001F80FE001F80FE001F80FC001F80FC +001F80FC001F80FC001F80FC001F80FC001F80FC001F80FC001F80FC001F80FC001F80FC +001F80FC001F80FC001F80FC001F80FC001F80FC001F80FC001F80FC001F80FC001F80FC +001F80191F7B9E24>110 D<001FE000007FF80001FFFE0003FFFF0007FFFF800FF03FC0 +1FC00FE01F8007E03F0003F03F0003F07E0001F87E0001F87C0000F8FC0000FCFC0000FC +FC0000FCFC0000FCFC0000FCFC0000FCFC0000FCFC0000FC7E0001F87E0001F87F0003F8 +3F0003F03F8007F01FC00FE00FF03FC007FFFF8003FFFF0001FFFE00007FF800001FE000 +1E217E9F23>I<0007F000FC3FF800FCFFFE00FFFFFF00FFFFFF80FFC0FF80FF003FC0FE +001FC0FC000FE0FC000FE0FC0007E0FC0007F0FC0003F0FC0003F0FC0003F0FC0003F0FC +0003F0FC0003F0FC0003F0FC0003F0FC0007E0FC0007E0FC000FE0FE000FC0FE001FC0FF +007F80FFC1FF80FFFFFF00FFFFFE00FCFFFC00FC7FF000FC0FC000FC000000FC000000FC +000000FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC +0000001C2C7B9E24>I<000780F81F80F87F80F8FF80F9FF80FBF800FFE000FFC000FF80 +00FF0000FF0000FE0000FE0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC00 +00FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000111F7B9E18 +>114 D<01FF0007FFE01FFFF83FFFFC7FFFFC7F00FCFE0038FC0008FC0000FC0000FC00 +00FE00007F80007FFC003FFF801FFFE00FFFF003FFF800FFFC0007FC0001FE0000FE0000 +7E00007E00007E40007E7000FCFE01FCFFFFF8FFFFF87FFFF00FFFC001FF0017217E9F1B +>I<07E00007E00007E00007E00007E00007E00007E00007E000FFFFF0FFFFF0FFFFF0FF +FFF007E00007E00007E00007E00007E00007E00007E00007E00007E00007E00007E00007 +E00007E00007E00007E00007E00007E00007E00007E00007E00007F01003F07003FFF803 +FFF801FFF800FFE0007F0015277FA519>I<FC001F80FC001F80FC001F80FC001F80FC00 +1F80FC001F80FC001F80FC001F80FC001F80FC001F80FC001F80FC001F80FC001F80FC00 +1F80FC001F80FC001F80FC001F80FC001F80FC001F80FC001F80FC001F80FC001F80FC00 +1F80FC003F80FC007F80FE01FF80FFFFFF807FFFFF807FFFDF803FFE1F800FF00000191F +7B9D24>I<FC0000FC7E0000F87E0001F87E0001F83F0003F03F0003F03F8003F01F8007 +E01F8007E00FC00FC00FC00FC00FC00FC007E01F8007E01F8003F01F0003F03F0003F03F +0001F83E0001F87E0000F87C0000FC7C0000FCFC00007CF800007CF800007CF800003EF0 +00003FF000001FE000001FE000001FE0001E1E7F9D21>I<FC001FC001F8FC003FC001F8 +7E003FC001F07E003FE003F07E003DE003F03F007DE003E03F0079F007E03F0079F007E0 +1F00F9F007C01F80F8F00FC01F80F8F80FC01F80F0F80FC00FC1F0F80F800FC1F0781F80 +0FC1F07C1F8007C1E07C1F0007E3E07C1F0007E3E03E3F0003E3E03E3E0003E3C03E3E00 +03E3C03E3E0003F7C01E7E0001F7801F7C0001F7801F7C0001F7800F7C0000F7800F7800 +00FF000FF80000FF0007F800007F0007F000007E0007F0002D1E7F9D30>I<7E0000FC3F +0001FC1F8003F81FC007F00FE007E007F00FC003F01F8001F83F0000FC7F00007E7E0000 +3FFC00001FF800001FF000000FE0000007C000000FE000000FF000001FF800003EFC0000 +7C7E0000FC3F0001F81F8003F00F8003E00FC007E007E00FC003F01F8001F83F0001FC7F +0000FEFE00007F201E809D21>I<FC0000FC7E0001F87E0001F87F0001F83F0003F03F80 +03F01F8007E01FC007E00FC007E00FC00FC007E00FC007E00F8007F01F8003F01F0003F0 +3F0001F83F0001F83E0000F83E0000FC7C00007C7C00007C7C00007C7800003EF800003E +F000001EF000001EF000000FE000000FE0000007C0000007C0000007800000078000000F +8000000F0000001F0000001E0000003E0000003E0000307C00003FF800003FF800003FF0 +00003FE000000FC000001E2C7F9D21>I E /Fq 11 58 df<70F8F8F87005057A8411>46 +D<01FC0007FF000F07801C01C03800E03800E07800F0700070700070F00078F00078F000 +78F00078F00078F00078F00078F00078F00078F00078F000787000707000707800F03800 +E03800E01C01C00F078007FF0001FC00151D7D9B1C>48 D<00600001E0000FE000FFE000 +F1E00001E00001E00001E00001E00001E00001E00001E00001E00001E00001E00001E000 +01E00001E00001E00001E00001E00001E00001E00001E00001E00001E0007FFF807FFF80 +111C7B9B1C>I<03FC000FFF003C0FC07003E07801F0FC00F0FC00F8FC00F8FC00787800 +780000F80000F00000F00001E00003C0000780000F00001C0000380000E00001C0180380 +180600180C00383FFFF07FFFF0FFFFF0FFFFF0151C7D9B1C>I<01FC000FFF801E07C030 +01E07C01F07C00F07E00F07C01F03801E00003E00007C0001F8003FE0003FC0000078000 +03C00001E00000F00000F83000F87800F8FC00F8FC00F8FC00F07801F07003E03C07C00F +FF0003FC00151D7D9B1C>I<0001C00003C00007C0000FC0000FC0001BC00033C00073C0 +00E3C001C3C00383C00303C00603C00C03C01C03C03803C07003C0E003C0FFFFFEFFFFFE +0003C00003C00003C00003C00003C00003C0007FFE007FFE171C7E9B1C>I<1C00E01FFF +E01FFFC01FFF001FFC0018000018000018000018000018000018FC001BFF001F07C01C01 +E01801E01800F00000F00000F80000F87000F8F800F8F800F8F800F0F801F06001E07003 +C03C0F800FFF0003F800151D7D9B1C>I<003F8000FFC003C0E00700F00E01F01C01F038 +00E038000078000070000070FF00F3FF80F601C0F400E0F800F0F80070F00078F00078F0 +0078F000787000787000787800703800703800E01C01C00F038007FF0001FC00151D7D9B +1C>I<6000007FFFF87FFFF87FFFF07FFFE0E000C0C000C0C00180C00300000600000C00 +00180000180000300000700000700000F00000E00001E00001E00001E00001E00003E000 +03E00003E00003E00003E00003E00001C000151D7C9B1C>I<01FC0007FF801E03C03800 +E03000707000707000707800707E00707F00E03FC1C01FF7800FFE0003FF0007FF800F7F +E03C1FE07807F07001F8E000F8E00078E00038E00038E000307000703800E01E03C00FFF +0001FC00151D7D9B1C>I<01FC0007FF000F07801C01C03800E07800E07000F0F00070F0 +0070F00078F00078F00078F000787000F87800F83801781C03780FFE7807F87800007000 +00F00000E03800E07C01C07C0380780700381E001FFC0007F000151D7D9B1C>I +E /Fr 73 122 df<0001FE01F8000FFF8FFC003F03DF1E007803FC3F01F007F83F01E007 +F83F03E007F01E07C003F00C07C001F00007C001F00007C001F00007C001F00007C001F0 +0007C001F00007C001F00007C001F000FFFFFFFFE0FFFFFFFFE007C001F00007C001F000 +07C001F00007C001F00007C001F00007C001F00007C001F00007C001F00007C001F00007 +C001F00007C001F00007C001F00007C001F00007C001F00007C001F00007C001F00007C0 +01F00007C001F00007C001F00007C001F0000FE003F8007FFC1FFF807FFC1FFF8028297F +A827>11 D<0000FF0000000FFFC000003F01E000007C00F00000F001F00001E001F00003 +E001F00007C001F00007C000E00007C000000007C000000007C000000007C000000007C0 +00000007C000000007C00FF800FFFFFFF800FFFFFFF80007C000F80007C000F80007C000 +F80007C000F80007C000F80007C000F80007C000F80007C000F80007C000F80007C000F8 +0007C000F80007C000F80007C000F80007C000F80007C000F80007C000F80007C000F800 +07C000F80007C000F80007C000F8000FE001FC007FFC0FFF807FFC0FFF8021297FA826> +I<0000FF003FC000000FFFC1FFF000003F01E7E07800007C00FF803C0000F001FE007C00 +01E003FC007C0003E003FC007C0007C001F8007C0007C001F800380007C000F800000007 +C000F800000007C000F800000007C000F800000007C000F800000007C000F800000007C0 +00F803FE00FFFFFFFFFFFE00FFFFFFFFFFFE0007C000F8003E0007C000F8003E0007C000 +F8003E0007C000F8003E0007C000F8003E0007C000F8003E0007C000F8003E0007C000F8 +003E0007C000F8003E0007C000F8003E0007C000F8003E0007C000F8003E0007C000F800 +3E0007C000F8003E0007C000F8003E0007C000F8003E0007C000F8003E0007C000F8003E +0007C000F8003E0007C000F8003E000FE001FC007F007FFC0FFF83FFE07FFC0FFF83FFE0 +33297FA838>14 D<01E003E007E00FE00FC01F803E007C00F000E00040000B0B73A721> +19 D<3803807C07C0FE0FE0FF0FF0FF0FF07F07F03B03B0030030030030030030060060 +0600600E00E00C00C018018038038070070020020014127EA721>34 +D<387CFEFFFF7F3B0303030606060C1838702008127BA713>39 D<0006000C0018003000 +6000E001C00380038007000F000E001E001E001C003C003C003C00780078007800780078 +00F800F000F000F000F000F000F000F000F000F000F000F000F800780078007800780078 +003C003C003C001C001E001E000E000F0007000380038001C000E0006000300018000C00 +060F3B7AAB1A>I<C0006000300018000C000E0007000380038001C001E000E000F000F0 +0070007800780078003C003C003C003C003C003E001E001E001E001E001E001E001E001E +001E001E001E003E003C003C003C003C003C007800780078007000F000F000E001E001C0 +0380038007000E000C00180030006000C0000F3B7DAB1A>I<387CFEFFFF7F3B03030306 +06060C1838702008127B8613>44 D<FFFFFFFFFFFFFFFF10047F8E16>I<387CFEFEFE7C +3807077B8613>I<003F800001FFF00003E0F80007803C000F001E001E000F003E000F80 +3E000F803C0007807C0007C07C0007C07C0007C07C0007C0FC0007E0FC0007E0FC0007E0 +FC0007E0FC0007E0FC0007E0FC0007E0FC0007E0FC0007E0FC0007E0FC0007E0FC0007E0 +FC0007E0FC0007E07C0007C07C0007C07C0007C03E000F803E000F803E000F801F001F00 +0F001E0007803C0003E0F80001FFF000003F80001B277EA521>48 +D<00380000780001F8001FF800FEF800E0F80000F80000F80000F80000F80000F80000F8 +0000F80000F80000F80000F80000F80000F80000F80000F80000F80000F80000F80000F8 +0000F80000F80000F80000F80000F80000F80000F80000F80000F80000F80000F80001FC +00FFFFF8FFFFF815267BA521>I<00FF000003FFE0000E03F0001800F80030007C006000 +7E0078003F00FC003F00FE001F80FE001F80FE001F80FE001F807C001F8000001F800000 +1F0000003F0000003E0000007E0000007C000000F8000001F0000003E0000003C0000007 +8000000E0000001C0000003800000070018000E001800180018003000300060003000C00 +03001FFFFF003FFFFF007FFFFE00FFFFFE00FFFFFE0019267DA521>I<00FF000003FFE0 +000F01F8001C007C0030007E003C003E007E003F007E003F007E003F007E003F003C003F +0000003E0000007E0000007C000000F8000001F0000007E00001FF800001FF00000001E0 +000000F00000007C0000003E0000003F0000001F0000001F8000001F8038001F807C001F +80FE001F80FE001F80FE001F00FC003F0078003E0070007C003800F8001F01F00007FFC0 +0000FF000019277DA521>I<0000380000003800000078000000F8000001F8000001F800 +0003F8000007F8000006F800000CF800001CF8000018F8000030F8000070F8000060F800 +00C0F80001C0F8000180F8000300F8000700F8000E00F8000C00F8001C00F8003800F800 +3000F8006000F800E000F800FFFFFFE0FFFFFFE00000F8000000F8000000F8000000F800 +0000F8000000F8000000F8000001FC00003FFFE0003FFFE01B277EA621>I<18000C001F +007C001FFFF8001FFFF0001FFFE0001FFF800019FC000018000000180000001800000018 +000000180000001800000018000000187F000019FFE0001F81F0001E0078001C003C0018 +003E0000003E0000001F0000001F0000001F8000001F8030001F807C001F80FC001F80FC +001F80FC001F80FC001F00F0001F0060003E0070003E0030007C001C00F8000F03E00003 +FFC00000FE000019277DA521>I<000FE000003FF80000F81C0001E0060003C01F000780 +3F000F003F001F003F001E003F003E001E003E0000007C0000007C0000007C0400007C3F +C000FCFFF000FDC07800FF003C00FF003E00FE001E00FE001F00FE001F00FC001F80FC00 +1F80FC001F80FC001F807C001F807C001F807C001F807C001F803C001F003E001F001E00 +1E001E003E000F003C000780780003C1F00001FFC000007F000019277DA521>I<300000 +003C0000003FFFFFE03FFFFFE03FFFFFC07FFFFF807FFFFF807000070060000E0060000C +00C0001C00C0003800C00070000000E0000000C0000001C0000003800000038000000700 +00000F0000000E0000001E0000001E0000001E0000003E0000003C0000003C0000007C00 +00007C0000007C0000007C000000FC000000FC000000FC000000FC000000FC000000FC00 +0000FC000000FC0000007800001B287DA621>I<007F000003FFE0000781F8000E007C00 +1C001E0038001E0038000F0078000F0078000F0078000F007C000F007E001E003F801E00 +3FE03C001FF078000FFCF00007FFC00003FF800000FFE00001FFF000079FFC000F07FE00 +1E03FE003C00FF0078003F0078001F80F0000F80F0000F80F0000780F0000780F0000780 +F00007007800070078000E003C001C001E0038000F80F00003FFE000007F000019277DA5 +21>I<007F000001FFC00007C1E0000F0070001E0078003E003C003C003E007C001E007C +001E00FC001F00FC001F00FC001F00FC001F00FC001F80FC001F80FC001F80FC001F807C +003F807C003F803C003F803E007F801E007F800F01DF8007FF9F8001FE1F8000101F0000 +001F0000001F0000003E003C003E007E003C007E003C007E0078007E00F0007C00E00030 +03C0001C0780000FFF000003F8000019277DA521>I<387CFEFEFE7C3800000000000000 +00000000387CFEFEFE7C3807197B9813>I<00000E00000000000E00000000001F000000 +00001F00000000001F00000000003F80000000003F80000000003F80000000006FC00000 +00006FC000000000EFE000000000C7E000000000C7E00000000183F00000000183F00000 +000183F00000000301F80000000301F80000000601FC0000000600FC0000000600FC0000 +000C007E0000000C007E0000001C007F00000018003F00000018003F00000030003F8000 +003FFFFF8000003FFFFF80000060000FC0000060000FC00000E0000FE00000C00007E000 +00C00007E00001800003F00001800003F00003800003F80003800001F80007800001F800 +1FC00003FC00FFF8003FFFE0FFF8003FFFE02B2A7EA931>65 D<FFFFFFE000FFFFFFFC00 +07F0003F0003F0000FC003F00007E003F00003E003F00001F003F00001F803F00001F803 +F00001F803F00001F803F00001F803F00001F803F00003F003F00003E003F00007E003F0 +001FC003F0007F0003FFFFFC0003FFFFFE0003F0003F8003F00007E003F00003F003F000 +01F803F00000FC03F00000FC03F000007E03F000007E03F000007E03F000007E03F00000 +7E03F000007E03F00000FC03F00000FC03F00001F803F00003F003F00007E007F0003FC0 +FFFFFFFF00FFFFFFF80027287EA72E>I<00007FC0020003FFF806000FE01E0E003F0007 +0E007C00019E01F00000FE03E000007E07C000003E078000003E0F8000001E1F0000001E +3F0000000E3E0000000E3E0000000E7E000000067E000000067C00000006FC00000000FC +00000000FC00000000FC00000000FC00000000FC00000000FC00000000FC000000007C00 +0000007E000000067E000000063E000000063E000000063F0000000C1F0000000C0F8000 +000C078000001807C000003803E000003001F0000060007C0001C0003F000380000FE01E +000003FFF80000007FC000272A7DA82F>I<FFFFFFF00000FFFFFFFE000007F0003F8000 +03F00007C00003F00001F00003F00000F80003F000007C0003F000003E0003F000003E00 +03F000001F0003F000000F8003F000000F8003F000000F8003F0000007C003F0000007C0 +03F0000007C003F0000007E003F0000007E003F0000007E003F0000007E003F0000007E0 +03F0000007E003F0000007E003F0000007E003F0000007E003F0000007C003F0000007C0 +03F000000FC003F000000F8003F000000F8003F000001F0003F000001F0003F000003E00 +03F000007C0003F00000F80003F00001F00003F00007E00007F0003F8000FFFFFFFE0000 +FFFFFFF000002B287EA732>I<FFFFFFFFF0FFFFFFFFF007F00007F003F00000F803F000 +007803F000003803F000003803F000001803F000001803F000001803F000000C03F00060 +0C03F000600C03F000600003F000600003F000E00003F000E00003F003E00003FFFFE000 +03FFFFE00003F003E00003F000E00003F000E00003F000600003F000600003F000600603 +F000600603F000000C03F000000C03F000000C03F000000C03F000001C03F000001803F0 +00003803F000003803F000007803F00001F807F00007F0FFFFFFFFF0FFFFFFFFF027287E +A72D>I<FFFFFFFFC0FFFFFFFFC007F0001FC003F00003E003F00001E003F00000E003F0 +0000E003F000006003F000006003F000006003F000003003F000003003F000C03003F000 +C00003F000C00003F000C00003F001C00003F001C00003F007C00003FFFFC00003FFFFC0 +0003F007C00003F001C00003F001C00003F000C00003F000C00003F000C00003F000C000 +03F000000003F000000003F000000003F000000003F000000003F000000003F000000003 +F000000003F000000007F8000000FFFFE00000FFFFE0000024287EA72B>I<FFFFC07FFF +E0FFFFC07FFFE007F80003FC0003F00001F80003F00001F80003F00001F80003F00001F8 +0003F00001F80003F00001F80003F00001F80003F00001F80003F00001F80003F00001F8 +0003F00001F80003F00001F80003F00001F80003F00001F80003F00001F80003FFFFFFF8 +0003FFFFFFF80003F00001F80003F00001F80003F00001F80003F00001F80003F00001F8 +0003F00001F80003F00001F80003F00001F80003F00001F80003F00001F80003F00001F8 +0003F00001F80003F00001F80003F00001F80003F00001F80003F00001F80003F00001F8 +0007F80003FC00FFFFC07FFFE0FFFFC07FFFE02B287EA731>72 D<FFFFC0FFFFC007F800 +03F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003F000 +03F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003F000 +03F00003F00003F00003F00003F00003F00003F00003F00003F00003F00007F800FFFFC0 +FFFFC012287EA718>I<00FFFFC000FFFFC00001FE000000FC000000FC000000FC000000 +FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC000000 +FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC000000 +FC000000FC000000FC000000FC000000FC000000FC003800FC00FE00FC00FE00FC00FE00 +FC00FE01FC00FC01F8007803F0007003E0003C0FC0000FFF000003FC00001A297EA722> +I<FFFFC001FFF0FFFFC001FFF007F800007F8003F000007C0003F00000780003F00000E0 +0003F00001C00003F00003800003F00007000003F0001E000003F00038000003F0007000 +0003F000E0000003F001C0000003F00380000003F00F00000003F01F00000003F03F8000 +0003F07FC0000003F0EFE0000003F1CFE0000003F787F0000003FE03F8000003FC01FC00 +0003F801FC000003F000FE000003F0007F000003F0003F800003F0003F800003F0001FC0 +0003F0000FE00003F00007F00003F00007F00003F00003F80003F00001FC0003F00000FE +0003F00000FF0007F80001FF80FFFFC007FFF8FFFFC007FFF82D287EA733>I<FFFFE000 +00FFFFE0000007F800000003F000000003F000000003F000000003F000000003F0000000 +03F000000003F000000003F000000003F000000003F000000003F000000003F000000003 +F000000003F000000003F000000003F000000003F000000003F000000003F000000003F0 +00000003F000000003F000000003F00000C003F00000C003F00000C003F00001C003F000 +018003F000018003F000018003F000038003F000038003F000078003F0000F8003F0003F +0007F000FF00FFFFFFFF00FFFFFFFF0022287EA729>I<FFF0000000FFF0FFF8000001FF +F007F8000001FE0003F8000001FC00037C0000037C00037C0000037C00033E0000067C00 +033E0000067C00031F00000C7C00031F00000C7C00031F00000C7C00030F8000187C0003 +0F8000187C000307C000307C000307C000307C000307C000307C000303E000607C000303 +E000607C000301F000C07C000301F000C07C000301F000C07C000300F801807C000300F8 +01807C0003007C03007C0003007C03007C0003003E06007C0003003E06007C0003003E06 +007C0003001F0C007C0003001F0C007C0003000F98007C0003000F98007C0003000F9800 +7C00030007F0007C00030007F0007C00030003E0007C00078003E0007C000FC003E000FE +00FFFC01C01FFFF0FFFC01C01FFFF034287DA73C>I<FFF00007FFE0FFF80007FFE003FC +00007E0003FE00003C0003FE00001800037F00001800033F80001800031FC0001800031F +C0001800030FE00018000307F00018000303F80018000303F80018000301FC0018000300 +FE00180003007F00180003007F00180003003F80180003001FC0180003000FE018000300 +0FF01800030007F01800030003F81800030001FC1800030000FE1800030000FE18000300 +007F18000300003F98000300001FD8000300001FD8000300000FF80003000007F8000300 +0003F80003000003F80003000001F80003000000F8000780000078000FC000007800FFFC +00003800FFFC000018002B287EA731>I<00007FC000000003FFF80000001FC07F000000 +3E000F800000F80003E00001F00001F00003E00000F80007C000007C000F8000003E000F +8000003E001F0000001F003F0000001F803E0000000F807E0000000FC07E0000000FC07C +00000007C07C00000007C0FC00000007E0FC00000007E0FC00000007E0FC00000007E0FC +00000007E0FC00000007E0FC00000007E0FC00000007E0FC00000007E07E0000000FC07E +0000000FC07E0000000FC03F0000001F803F0000001F801F0000001F001F8000003F000F +C000007E0007C000007C0003E00000F80001F00001F00000FC0007E000003E000F800000 +1FC07F00000007FFFC000000007FC000002B2A7DA833>I<FFFFFFE000FFFFFFFC0007F0 +003F0003F0000FC003F00003E003F00001F003F00001F803F00000F803F00000FC03F000 +00FC03F00000FC03F00000FC03F00000FC03F00000FC03F00000F803F00001F803F00001 +F003F00003E003F0000FC003F0003F0003FFFFFC0003FFFFE00003F000000003F0000000 +03F000000003F000000003F000000003F000000003F000000003F000000003F000000003 +F000000003F000000003F000000003F000000003F000000003F000000007F8000000FFFF +C00000FFFFC0000026287EA72D>I<00007FC000000003FFF80000001FC07F0000003E00 +0F800000F80003E00001F00001F00003E00000F80007C000007C000F8000003E000F8000 +003E001F0000001F003F0000001F803E0000000F807E0000000FC07E0000000FC07E0000 +000FC07C00000007C0FC00000007E0FC00000007E0FC00000007E0FC00000007E0FC0000 +0007E0FC00000007E0FC00000007E0FC00000007E0FC00000007E07C00000007C07E0000 +000FC07E0000000FC03E0000000F803F0000001F801F0000001F001F801F003F000F803F +C03E0007C070E07C0003E0E060F80001F0C071F00000F8C03BE000003EE03F8000001FF0 +7F00000007FFFC006000007FDC00600000001E00600000000F00E00000000F01E0000000 +0F83C00000000FFFC000000007FFC000000007FF8000000003FF0000000001FE00000000 +0078002B347DA833>I<FFFFFF800000FFFFFFF0000007F000FC000003F0003F000003F0 +000F800003F00007C00003F00007E00003F00003E00003F00003F00003F00003F00003F0 +0003F00003F00003F00003F00003F00003F00003E00003F00007E00003F00007C00003F0 +000F800003F0003F000003F000FC000003FFFFF0000003FFFFF0000003F001FC000003F0 +007F000003F0003F800003F0001F800003F0001FC00003F0000FC00003F0000FC00003F0 +000FC00003F0000FC00003F0000FC00003F0000FC00003F0000FC00003F0000FC03003F0 +000FC03003F0000FC03003F00007E07007F80007E060FFFFC003F0E0FFFFC000FFC00000 +00003F002C297EA730>I<007F802003FFF060078078E00E000EE01C0007E0380003E078 +0001E0700000E0F00000E0F00000E0F0000060F0000060F8000060F80000007C0000007F +0000003FE000003FFF00001FFFF0000FFFFC0003FFFF0000FFFF80000FFFC00000FFE000 +000FF0000003F0000001F0000000F8000000F8C0000078C0000078C0000078C0000078E0 +000070E0000070F00000F0F80000E0FC0001C0EF000780E3E01F00C0FFFC00801FF0001D +2A7DA825>I<7FFFFFFFFF007FFFFFFFFF007E003F003F0078003F000F0070003F000700 +60003F00030060003F000300E0003F000380C0003F000180C0003F000180C0003F000180 +C0003F000180C0003F00018000003F00000000003F00000000003F00000000003F000000 +00003F00000000003F00000000003F00000000003F00000000003F00000000003F000000 +00003F00000000003F00000000003F00000000003F00000000003F00000000003F000000 +00003F00000000003F00000000003F00000000003F00000000003F00000000003F000000 +00003F00000000003F00000000007F800000003FFFFF0000003FFFFF000029287EA72F> +I<FFFF8000FFF8FFFF8000FFF807F800001FC003F000000F0003F000000E0001F800000E +0001F800000C0001FC00001C0000FC0000180000FC00001800007E00003000007E000030 +00007F00007000003F00006000003F80006000001F8000C000001F8000C000000FC00180 +00000FC0018000000FE00380000007E00300000007F00300000003F00600000003F00600 +000003F80E00000001F80C00000001FC1C00000000FC1800000000FC18000000007E3000 +0000007E30000000007F70000000003F60000000003FE0000000001FC0000000001FC000 +0000000F80000000000F80000000000F8000000000070000000000070000002D297FA731 +>86 D<FFFF00FFFF003FFEFFFF00FFFF003FFE0FF8000FF80007F007F00007F00003E003 +F00007F00001C003F00003F000018003F00003F000018001F80003F800030001F80003F8 +00030001F80003F800030000FC0006FC00060000FC0006FC00060000FE0006FC000E0000 +7E000C7E000C00007E000C7E000C00007F000C7F001C00003F00183F001800003F00183F +001800001F80383F803000001F80301F803000001F80301F803000000FC0701FC0600000 +0FC0600FC06000000FC0600FC060000007E0C007E0C0000007E0C007E0C0000007F0C007 +E0C0000003F18003F180000003F18003F180000003F98003F380000001FB0001FB000000 +01FB0001FB00000001FF0001FF00000000FE0000FE00000000FE0000FE000000007E0000 +FC000000007C00007C000000007C00007C00000000380000380000000038000038000000 +003800003800003F297FA743>I<FFFF80007FF8FFFF80007FF807FC00001FC003F80000 +0F0001FC00000E0001FC00001C0000FE00001800007F00003800007F00007000003F8000 +6000001FC000E000001FC000C000000FE00180000007F00380000007F80300000003F806 +00000001FC0E00000000FE0C00000000FE18000000007F38000000003FB0000000003FE0 +000000001FE0000000000FC0000000000FC0000000000FC0000000000FC0000000000FC0 +000000000FC0000000000FC0000000000FC0000000000FC0000000000FC0000000000FC0 +000000000FC0000000000FC0000000000FC0000000001FE000000003FFFF00000003FFFF +00002D287FA731>89 D<FFC0FFC0FFC0E000E000E000E000E000E000E000E000E000E000 +E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000 +E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000 +E000E000E000E000E000E000E000FFC0FFC0FFC00A3B7AAB13>91 +D<0400400E00E01C01C0180180300300700700600600600600C00C00C00C00C00C00DC0D +C0FE0FE0FF0FF0FF0FF07F07F03E03E01C01C0141277A721>I<FFC0FFC0FFC001C001C0 +01C001C001C001C001C001C001C001C001C001C001C001C001C001C001C001C001C001C0 +01C001C001C001C001C001C001C001C001C001C001C001C001C001C001C001C001C001C0 +01C001C001C001C001C001C001C001C001C001C001C001C001C001C001C0FFC0FFC0FFC0 +0A3B7FAB13>I<0100038007C00FE01EF03C78701CE00EC0060F0978A721>I<00FE000007 +FFC0000F03E0001C00F0003E0078003F007C003F003C003F003E001E003E0000003E0000 +003E0000003E00003FFE0001FFFE0007F03E001FC03E003F003E007E003E007E003E00FC +003E18FC003E18FC003E18FC007E187E007E187E00DF383F838FF00FFE0FE003F807C01D +1C7E9A21>97 D<0F800000FF800000FF8000001F8000000F8000000F8000000F8000000F +8000000F8000000F8000000F8000000F8000000F8000000F8000000F81FC000F8FFF000F +BC0FC00FF003E00FC001F00F8000F00F8000F80F8000FC0F80007C0F80007C0F80007E0F +80007E0F80007E0F80007E0F80007E0F80007E0F80007E0F80007C0F80007C0F8000FC0F +8000F80FC001F00FC001E00F7003C00E3C0F800C0FFF000003F8001F297EA725>I<003F +C000FFF803E03C07C00E0F801F1F003F3E003F3E003F7E001E7C00007C0000FC0000FC00 +00FC0000FC0000FC0000FC0000FC00007C00007E00007E00033E00031F00060F800607C0 +0C03F03800FFE0003F80181C7E9A1E>I<000003E000003FE000003FE0000007E0000003 +E0000003E0000003E0000003E0000003E0000003E0000003E0000003E0000003E0000003 +E0003F83E001FFE3E003E03BE007800FE00F0007E01F0003E03E0003E07E0003E07C0003 +E07C0003E0FC0003E0FC0003E0FC0003E0FC0003E0FC0003E0FC0003E0FC0003E07C0003 +E07C0003E07E0003E03E0003E01E0007E01F000FE00F801FF003E073FE01FFE3FE007F03 +E01F297EA725>I<003F0001FFE003E1F00F80F81F007C1F003E3E003E7E001E7E001F7C +001FFC001FFC001FFFFFFFFFFFFFFC0000FC0000FC0000FC00007C00007E00007E00033E +00031F00070F800E07C01C03E07800FFE0003F80181C7E9A1E>I<0007E0003FF0007C78 +00F0FC01E0FC03E0FC03C07807C03007C00007C00007C00007C00007C00007C00007C000 +07C000FFFF80FFFF8007C00007C00007C00007C00007C00007C00007C00007C00007C000 +07C00007C00007C00007C00007C00007C00007C00007C00007C00007C00007C0000FE000 +7FFE007FFE0016297FA815>I<007E03E001FF9FF007C3FCF00F00F0F01F00F8001E0078 +003E007C003E007C003E007C003E007C003E007C003E007C001E0078001F00F8000F00F0 +000FC3E0000DFF80001C7E00001C0000001C0000001C0000001E0000000FFFF0000FFFFC +0007FFFF001FFFFF803E001FC0780007C0780003E0F00001E0F00001E0F00001E0F00001 +E0780003C07C0007C03E000F800FC07E0003FFF800007FC0001C277E9921>I<0F800000 +FF800000FF8000001F8000000F8000000F8000000F8000000F8000000F8000000F800000 +0F8000000F8000000F8000000F8000000F81FC000F8FFF000F9C0F800FB007C00FE007C0 +0FC003E00FC003E00FC003E00F8003E00F8003E00F8003E00F8003E00F8003E00F8003E0 +0F8003E00F8003E00F8003E00F8003E00F8003E00F8003E00F8003E00F8003E00F8003E0 +1FC007F0FFF83FFEFFF83FFE1F287EA725>I<0E003F803F803F803F803F800E00000000 +00000000000000000000000780FF80FF801F800F800F800F800F800F800F800F800F800F +800F800F800F800F800F800F800F800F800F800F801F80FFF8FFF80D287EA713>I<000E +00003F80003F80003F80003F80003F80000E000000000000000000000000000000000000 +00000000000F8001FF8001FF80001F80000F80000F80000F80000F80000F80000F80000F +80000F80000F80000F80000F80000F80000F80000F80000F80000F80000F80000F80000F +80000F80000F80000F80000F80000F80000F80000F80780F80FC0F80FC1F00FC1F00FC3E +00707C003FF8000FE000113483A715>I<0F800000FF800000FF8000001F8000000F8000 +000F8000000F8000000F8000000F8000000F8000000F8000000F8000000F8000000F8000 +000F8000000F803FF80F803FF80F801FC00F801F000F803C000F8078000F80E0000F81C0 +000F8380000F8F00000F9F80000FBF80000FF7C0000FC3E0000F81F0000F81F8000F80F8 +000F807C000F803E000F803F000F801F800F800FC01FC00FE0FFF83FFCFFF83FFC1E287E +A723>I<0F80FF80FF801F800F800F800F800F800F800F800F800F800F800F800F800F80 +0F800F800F800F800F800F800F800F800F800F800F800F800F800F800F800F800F800F80 +0F800F800F801FC0FFF8FFF80D287EA713>I<0F81FC007F0000FF8FFF03FFC000FF9C0F +8703E0001FB007CC01F0000FE007D801F0000FC003F000F8000FC003F000F8000FC003F0 +00F8000F8003E000F8000F8003E000F8000F8003E000F8000F8003E000F8000F8003E000 +F8000F8003E000F8000F8003E000F8000F8003E000F8000F8003E000F8000F8003E000F8 +000F8003E000F8000F8003E000F8000F8003E000F8000F8003E000F8000F8003E000F800 +1FC007F001FC00FFF83FFE0FFF80FFF83FFE0FFF80311A7E9937>I<0F81FC00FF8FFF00 +FF9C0F801FB007C00FE007C00FC003E00FC003E00FC003E00F8003E00F8003E00F8003E0 +0F8003E00F8003E00F8003E00F8003E00F8003E00F8003E00F8003E00F8003E00F8003E0 +0F8003E00F8003E00F8003E01FC007F0FFF83FFEFFF83FFE1F1A7E9925>I<003F800000 +FFE00003E0F80007803C000F001E001E000F003E000F803E000F807C0007C07C0007C07C +0007C0FC0007E0FC0007E0FC0007E0FC0007E0FC0007E0FC0007E0FC0007E07C0007C07C +0007C07E000FC03E000F801E000F001F001F000F803E0003E0F80001FFF000003F80001B +1C7E9A21>I<0F81FC00FF8FFF00FFBC0FC01FF007E00FC003F00F8001F00F8001F80F80 +00FC0F8000FC0F80007C0F80007E0F80007E0F80007E0F80007E0F80007E0F80007E0F80 +007E0F80007C0F8000FC0F8000FC0F8001F80FC001F00FC003E00FF007C00FBC1F800F8F +FF000F83F8000F8000000F8000000F8000000F8000000F8000000F8000000F8000001FC0 +0000FFF80000FFF800001F257E9925>I<003F806001FFE0E003F070E007C019E00F800D +E01F0007E03F0007E07E0003E07E0003E07C0003E0FC0003E0FC0003E0FC0003E0FC0003 +E0FC0003E0FC0003E0FC0003E07C0003E07E0003E07E0003E03F0003E01F0007E01F800F +E00FC01BE003E073E001FFE3E0007F03E0000003E0000003E0000003E0000003E0000003 +E0000003E0000003E0000007F000003FFE00003FFE1F257E9923>I<0F07C0FF1FF0FF38 +F81F71F80F61F80FC1F80FC0F00FC0000F80000F80000F80000F80000F80000F80000F80 +000F80000F80000F80000F80000F80000F80000F80000F80001FC000FFFC00FFFC00151A +7E991A>I<03F8400FFEC03C07C07803C07001C0F000C0F000C0F000C0F800C0FC00007F +C0007FFC003FFF001FFF8007FFC000FFE00007E0C003F0C001F0C000F0E000F0E000F0F0 +00E0F001E0F801C0EE0780C7FF0081FC00141C7E9A1A>I<00C00000C00000C00000C000 +01C00001C00001C00003C00007C0000FC0001FC000FFFFE0FFFFE007C00007C00007C000 +07C00007C00007C00007C00007C00007C00007C00007C00007C00007C03007C03007C030 +07C03007C03007C03007C03003E06003E06001F0C000FF80003F0014257FA31A>I<0F80 +03E0FF803FE0FF803FE01F8007E00F8003E00F8003E00F8003E00F8003E00F8003E00F80 +03E00F8003E00F8003E00F8003E00F8003E00F8003E00F8003E00F8003E00F8003E00F80 +03E00F8003E00F8007E00F8007E007800FE007C01BF003E073FE01FFE3FE007F83E01F1B +7E9925>I<FFF807FEFFF807FE0FE001F00FC001E007C001C007E001C003E0018003F003 +8001F0030001F0030000F8060000F80600007C0C00007C0C00007E1C00003E1800003E18 +00001F3000001F3000000FE000000FE000000FE0000007C0000007C00000038000000380 +001F1A7F9823>I<FFF8FFF07FE0FFF8FFF07FE01FC01FC01F800FC00F800E000FC00F80 +0E0007C00F800C0007C01FC00C0003E01BC0180003E01BE0180003E03BE0180001F031E0 +300001F031F0300001F860F0700000F860F0600000F860F8600000FCC078E000007CC07C +C000007DC07CC000003F803D8000003F803F8000003F001F8000001F001F0000001F001F +0000001E000F0000000E000E0000000E000E00002B1A7F982F>I<FFF81FFCFFF81FFC0F +F00FE007E00F8003F00F0001F80E0000F81C00007C3800003E7000003FE000001FC00000 +0FC0000007C0000007E000000FF000001DF8000038FC0000707E0000E03E0001C01F0003 +C00F8007C00FC01FC00FE0FFE01FFEFFE01FFE1F197F9823>I<FFF807FEFFF807FE0FE0 +01F00FC001E007C001C003E001C003E0018003F0038001F0030001F8070000F8060000FC +0600007C0C00007C0C00003E1800003E1800001F3000001F3000001FF000000FE000000F +E0000007C0000007C000000380000003800000030000000300000006000030060000780E +0000FC0C0000FC1C0000FC180000F830000070E000003FC000001F0000001F257F9823> +I E /Fs 71 123 df<00000007F8003E000000001FFF00FF800000007E0783E3C0000000 +F803C7C1E0000001F00FC787E0000003E00FCF87E0000003E00FCF87E0000007C00F9F07 +C0000007C0071F0380000007C0001F000000000F80001F000000000F80003E000000000F +80003E000000000F80003E000000001F80003E000000001F00007E000000001F00007C00 +0000001F00007C000000001F00007C000000003F00007C000000003E00007C0000001FFF +FFFFFFF800001FFFFFFFFFF800001FFFFFFFFFF80000007E0000F8000000007C0000F800 +0000007C0001F8000000007C0001F0000000007C0001F000000000FC0001F000000000F8 +0001F000000000F80003F000000000F80003E000000000F80003E000000001F80003E000 +000001F00003E000000001F00007E000000001F00007C000000001F00007C000000001F0 +0007C000000003F00007C000000003E0000FC000000003E0000F8000000003E0000F8000 +000003E0000F8000000007E0000F8000000007C0001F8000000007C0001F0000000007C0 +001F000000000FC0001F000000000FC0001F000000000F80003F000000000F80003E0000 +00000F80003E000000001F80003E000000001F00007E000000001F00007C000000001F00 +007C000000003E00007C000000003E0000F8000000383E1C00F80000007E3C3F00F00000 +007E3C3F01F0000000FE787F03E0000000FC787E03C0000000F8F03C078000000078E03C +1F000000003FC01FFC000000000F0003F0000000003B4582B42F>11 +D<00000003FF800000001FFFF00000003F00F8000000F8003C000001F0003E000003E000 +7E000003E000FE000007C000FE000007C000FC000007C0003800000F80000000000F8000 +0000000F80000000001F80000000001F00000000001F00000000001F00000000001F0000 +0000001F00000000003F00000000003E000000001FFFFFFFE0001FFFFFFFE0001FFFFFFF +C000007E0007C000007C0007C000007C000FC000007C000F8000007C000F800000FC000F +800000F8001F800000F8001F000000F8001F000000F8001F000001F8003F000001F0003E +000001F0003E000001F0003E000001F0007E000003F0007C000003E0007C000003E0007C +180003E000FC1C0003E000F83C0007E000F8380007C000F8380007C000F8780007C000F8 +700007C000F070000FC000F0F0000F8000F8E0000F800079E0000F80003FC0001F80000F +00001F80000000001F00000000001F00000000001F00000000003E00000000003E000000 +00383E000000007E3C000000007E7C00000000FE7800000000FC7800000000F8F0000000 +0079E0000000003FC0000000000F00000000002F4582B42B>I<3800F800FC00FC007E00 +3E003F001F000F800F80078003C003C001C000800A0F6AB327>18 +D<000E001F003F007E00FC01F803F007E00F801F003E007C00F800F000100E67B327>I< +03800FE01FE01FE01FE01FE01FE00760006000E000C000C001C001800380070006000E00 +1C0038007000E000C0000B176FB318>39 D<00000060000001E0000003C0000007000000 +0E0000001C0000003C00000078000000F0000001E0000003C0000007C00000078000000F +0000001F0000001E0000003C0000007C00000078000000F8000000F0000001F0000001E0 +000003E0000003C0000007C0000007C00000078000000F8000000F8000000F0000001F00 +00001F0000001E0000003E0000003E0000003E0000003C0000007C0000007C0000007C00 +00007800000078000000F8000000F8000000F8000000F0000000F0000000F0000000F000 +0000F0000000F0000000F0000000F0000000F0000000F0000000F0000000F0000000F000 +0000F0000000F000000070000000780000007800000038000000380000003C0000001C00 +00001C0000000E0000000E0000000700000003800000018000001B4A75B71F>I<000030 +00000038000000380000001C0000000E0000000E0000000F000000070000000780000007 +8000000380000003C0000003C0000003C0000003C0000001C0000001E0000001E0000001 +E0000001E0000001E0000001E0000001E0000001E0000003E0000003E0000003E0000003 +E0000003C0000003C0000003C0000007C0000007C0000007C00000078000000F8000000F +8000000F8000000F0000001F0000001F0000001F0000001E0000003E0000003E0000003C +0000007C0000007C000000F8000000F8000000F0000001F0000001E0000003E0000003C0 +000007C00000078000000F8000000F0000001E0000003E0000003C00000078000000F000 +0001E0000001E0000003C00000078000000F0000001E0000003C00000070000000E00000 +00C00000001B4A7EB71F>I<03800FE01FE01FE01FE01FE01FE00760006000E000C000C0 +01C001800380070006000E001C0038007000E000C0000B177A8718>44 +D<FFFF80FFFF80FFFF80FFFF807FFF00110579911B>I<1C7FFFFFFFFFFE380808778718> +I<00001FC000007FF00001E0F80007C03C000F003C001E001E003E001E003C001F007800 +1F00F8001F00F0001F01F0001F01F0001F03E0001F03E0001F07E0003F07C0003F07C000 +3F0FC0003F0FC0003E0F80007E1F80007E1F80007E1F80007E3F0000FC3F0000FC3F0000 +FC3F0000FC7E0001F87E0001F87E0001F87E0001F87C0003F0FC0003F0FC0003F0FC0007 +E0FC0007E0F80007C0F80007C0F8000F80F8000F80F8001F00F8001F00F8001E00F8003C +0078007C007800F8007C01F0003C03E0001F0F80000FFE000003F80000203477B127>48 +D<0000018000000380000003800000078000000F8000001F0000003F000000FF000001FF +00001FFE00007FBE00007E7E0000207E0000007C0000007C000000FC000000FC000000F8 +000000F8000001F8000001F8000001F0000001F0000003F0000003F0000003E0000003E0 +000007E0000007E0000007C0000007C000000FC000000FC000000F8000000F8000001F80 +00001F8000001F0000001F0000003F0000003F0000003E0000003E0000007E0000007E00 +00007C000000FC0000FFFFFC00FFFFFC00FFFFFC00193277B127>I<00000FE00000003F +F8000000F03E000003C01F000007800F80000F000F80001E0007C0001C0007C000380007 +C00078C007E00070E007E000F06007E000E06007E001E06007E001C06007E001C0E00FE0 +03C0C00FC00380C00FC00381C00FC00381801FC00383801F800387003F80038E003F0001 +FC007E0000F000FC00000001F800000003F000000007E00000000FC00000001F00000000 +7E00000000F800000003E00000000FC00000001F000000003E000000007800000001F000 +038003E000038003C000078007800007000F00000F001E00000F001C00001E003F00003E +003FF8007C007DFF80F800781FFFF800F00FFFF000E003FFE000E001FF8000E0007E0000 +23347AB127>I<000007F00000003FFC000000F81E000003E00F000007800780000F0007 +C0001E0003C0003C0003C000380003E000798003E00071C003E00070C007E000F0C007C0 +00E0C007C000E0C007C000E1C00FC000E3800F80007F001F80003C001F000000003E0000 +00007C00000000F800000001F00000001FE0000007FF80000007FE00000003FF00000000 +07C000000003E000000003E000000001F000000001F000000001F000000001F000000001 +F000000003F000180003F0007E0003F0007E0003F0007E0007F000FC0007E000F80007E0 +00E0000FC000E0000FC000F0001F800070003F000070007E00007800FC00003C01F00000 +1E07E0000007FF80000001FC000000233479B127>I<0000000E0000001F0000001F0000 +003F0000003E0000003E0000003E0000007E0000007C0000007C000000FC000000F80000 +00F8000001F8000001F0000001F0000003E0000003E0000003E0000007C0000007C00000 +0F8000000F8000001F0000001F0000003E0000003E0000007C00000078000000F8000000 +F0000001F0000003E0E00003C1F0000781F0000F83F0000F03E0001E03E0003C03E0007C +07E000F807C001F007C003E007C007C00FC00F800F801FFC0F803FFFCF807FFFFF82F003 +FFFF60003FFF00001FF800003F0000003E0000003E0000003E0000007E0000007C000000 +7C0000007C000000FC000000F8000000F8000000F8000000F8000000600020417DB127> +I<00060000C0000FC00FC0000FFFFF80000FFFFF00000FFFFC00001FFFF000001FFFC000 +001CFE0000001C000000003C000000003800000000380000000038000000007800000000 +700000000070000000007000000000F000000000E0FE000000E3FF800000EF03C00001FC +01E00001F801F00001F000F00001E000F80003C000F800038000F800000000F800000000 +F800000000F800000000F800000001F800000001F800000001F800000001F8003C0003F8 +00FC0003F000FC0003F000FC0003F000FC0007E000F80007E000E0000FC000E0000FC000 +E0001F8000E0003F0000F0007E00007000FC00007801F800003E07F000001FFFC000000F +FF00000003F8000000223478B127>I<000001F80000000FFE0000003FFF000000FE0F00 +0001F807800003E00F800007C01F80000F803F80001F003F00003E003F00007C000E0000 +FC00000000F800000001F800000003F000000003F000000007E000000007E00000000FC1 +F800000FC7FF00000FDE0780001FB803C0001FF003E0001FE001E0003FE001F0003FC001 +F0003F8001F0003F8001F0007F0001F8007F0001F8007E0001F8007E0003F0007E0003F0 +00FC0003F000FC0003F000FC0007F000FC0007E000FC0007E000F80007E000F8000FC000 +F8000FC000F8000F8000F8001F8000F8003F000078003E00007C007C00007C00F800003E +01F000001F07E000001FFFC0000007FF00000001F8000000213477B127>I<00E0F80038 +00E3FC003801EFFE007801FFFE00F003FFFE01E003FE0E03E007F80E03C007F0060F800F +C0071F800F8003FF001F0001EF001E00001E003E00003C003C00003C0078000078007800 +00F800F00000F000E00001F000E00001E000000003E000000007C000000007C00000000F +800000000F800000001F800000001F000000003F000000003E000000007E000000007E00 +000000FC00000000FC00000001F800000001F800000001F800000003F000000003F00000 +0007F000000007E000000007E00000000FE00000000FC00000000FC00000001FC0000000 +1FC00000001F800000003F800000003F800000003F800000003F000000003F000000001C +000000253476B127>I<000007E00000003FFC0000007FFE000001F81F000003E00F8000 +07800780000F0007C0001F0003C0001E0003C0003C0003C0003C0003C0003C0007C0007C +000780007C000780007C000F80007C000F00007E001E00007F003E00007F807C00003FC0 +F800003FE1E000001FFBC000000FFF00000007FE00000003FF00000007FF8000001EFFC0 +00007C7FE00000F01FF00001E00FF80007C007F800078003F8000F0001F8001E0000F800 +3E0000F8003C000078007C0000780078000078007800007800780000F800F80000F000F0 +0000F000F80001E000780003E000780003C0007C000780003C001F00003E003E00001F81 +FC00000FFFF0000003FFC0000000FE000000223479B127>I<00000FC00000007FF00000 +00FFFC000003F07E000007C03E00000F801F00001F001F00003E000F00007E000F8000FC +000F8000FC000F8001F8000F8001F8000F8003F0000F8003F0001F8003F0001F8007F000 +1F8007E0001F8007E0001F8007E0003F0007E0003F000FC0003F000FC0007F000FC0007F +0007C000FE0007C000FE0007C001FE0007C003FE0003C003FC0003E007FC0001E00EFC00 +00F03DF800007FF1F800000FC1F800000003F000000003F000000007E000000007E00000 +0007C00000000F800000001F800038001F00007E003E0000FE007E0000FE00FC0000FC01 +F80000F803F00000F007E00000781F8000007FFF0000001FFC00000007E0000000213478 +B127>I<007001FC03FC03FC03FC03FC03F800E000000000000000000000000000000000 +000000000000000000000000000000001C007F00FF00FF00FF00FF00FE0038000E20779F +18>I<000000001C00000000003C00000000003C00000000007C0000000000FC00000000 +00FC0000000001FC0000000001FE0000000003FE0000000003FE00000000077E00000000 +0F7E000000000E7E000000001C7E000000001C7E00000000387E00000000387E00000000 +707E00000000F07E00000000E07E00000001C07E00000001C07E00000003807F00000003 +803F00000007003F00000007003F0000000E003F0000001E003F0000001C003F00000038 +003F00000038003F00000070003F00000070003F000000E0003F000001FFFFFF000001FF +FFFF000003FFFFFF00000380003F00000700001F80000700001F80000E00001F80001E00 +001F80001C00001F80003C00001F80003800001F80007000001F8000F000001F8000E000 +001F8001E000001F8003E000001F800FF000003FC0FFFE0007FFFEFFFE0007FFFEFFFE00 +07FFFE2F367BB539>65 D<0007FFFFFFC000000FFFFFFFF000000FFFFFFFFC0000003F80 +00FE0000003F80007F0000003F80003F8000003F00001F8000003F00001F8000007F0000 +1FC000007F00001FC000007E00001FC000007E00001FC00000FE00001FC00000FE00001F +800000FC00003F800000FC00003F800001FC00007F000001FC00007E000001F80000FC00 +0001F80001FC000003F80003F0000003F80007E0000003F0001FC0000003FFFFFF000000 +07FFFFFE00000007F0007F80000007E0000FC0000007E00007E000000FE00003F000000F +E00003F800000FC00001F800000FC00001F800001FC00001FC00001FC00001FC00001F80 +0001FC00001F800001FC00003F800001FC00003F800001F800003F000003F800003F0000 +03F800007F000007F000007F000007F000007E00000FE000007E00001FC00000FE00003F +800000FE00007F000000FC0001FE000001FC0007FC00007FFFFFFFF00000FFFFFFFFC000 +00FFFFFFFE00000032337BB236>I<0000001FF000C0000000FFFC01C0000003FFFF03C0 +00000FF00F878000003F8003CF800000FE0001EF800001FC0000FF800003F00000FF0000 +0FE000007F00001FC000007F00003F8000003F00003F0000003E00007E0000003E0000FE +0000003E0001FC0000003E0003F80000003C0003F80000003C0007F00000003C0007F000 +00003C000FE000000038000FE000000038001FC000000038001FC000000000003FC00000 +0000003F8000000000003F8000000000003F8000000000007F8000000000007F00000000 +00007F0000000000007F0000000000007F000000000000FE000000000000FE0000000000 +00FE00000003C000FE00000003C000FE0000000380007E0000000380007E000000078000 +7E0000000700007E0000000F00007E0000000E00007F0000001E00003F0000003C00003F +0000007800001F8000007000001F800000F000000FC00001E0000007E00007C0000003F0 +000F00000001F8003E00000000FF00FC000000007FFFF0000000001FFFC00000000003FE +00000000323775B437>I<0007FFFFFFC000000FFFFFFFF000000FFFFFFFFC0000003F80 +01FE0000003F80007F0000003F80001F8000003F00000FC000003F000007E000007F0000 +07E000007F000003F000007E000003F000007E000001F00000FE000001F80000FE000001 +F80000FC000001F80000FC000001F80001FC000001F80001FC000001F80001F8000001F8 +0001F8000001F80003F8000001F80003F8000003F80003F0000003F80003F0000003F800 +07F0000003F80007F0000003F00007E0000007F00007E0000007F0000FE0000007F0000F +E0000007E0000FC000000FE0000FC000000FC0001FC000001FC0001FC000001F80001F80 +00001F80001F8000003F00003F8000003F00003F8000007E00003F000000FC00003F0000 +00FC00007F000001F800007F000003F000007E000007E000007E00000FC00000FE00001F +800000FE00007E000000FC0001FC000001FC000FF800007FFFFFFFE00000FFFFFFFF0000 +00FFFFFFF800000035337BB23A>I<0007FFFFFFFFF0000FFFFFFFFFF0000FFFFFFFFFE0 +00003F80001FE000003F800007E000003F800003E000003F000003E000003F000001E000 +007F000001E000007F000001C000007E000001C000007E000001C00000FE000001C00000 +FE000001C00000FC000E01C00000FC000E01C00001FC001E03C00001FC001C03800001F8 +001C00000001F8003C00000003F8003C00000003F8007800000003F001F800000003FFFF +F800000007FFFFF800000007FFFFF000000007E001F000000007E000F00000000FE000F0 +0000000FE000E00000000FC000E00000000FC000E00700001FC001E00F00001FC001C00E +00001F8001C01E00001F8000001C00003F8000001C00003F8000003C00003F0000003800 +003F0000007800007F000000F000007F000000F000007E000001F000007E000003E00000 +FE000007E00000FE00000FC00000FC00001FC00001FC0001FF80007FFFFFFFFF8000FFFF +FFFFFF8000FFFFFFFFFF000034337CB234>I<0007FFFFFFFFE0000FFFFFFFFFE0000FFF +FFFFFFC000003F80003FC000003F80000FC000003F800007C000003F000007C000003F00 +0003C000007F000003C000007F0000038000007E0000038000007E000003800000FE0000 +03800000FE000003800000FC000003800000FC001C03800001FC003C07800001FC003807 +000001F8003800000001F8003800000003F8007800000003F8007000000003F000F00000 +0003F003F000000007FFFFF000000007FFFFF000000007FFFFE000000007E003E0000000 +0FE003E00000000FE001C00000000FC001C00000000FC001C00000001FC003C00000001F +C003800000001F8003800000001F8003800000003F8000000000003F8000000000003F00 +00000000003F0000000000007F0000000000007F0000000000007E0000000000007E0000 +00000000FE000000000000FE000000000000FC000000000001FC00000000007FFFFC0000 +0000FFFFFC00000000FFFFFC0000000033337CB232>I<0000001FE00180000000FFF803 +80000007FFFE078000001FF01F0F0000003F80079F000000FE0003DF000001F80001FF00 +0007F00001FE00000FE00000FE00001FC00000FE00003F8000007E00007F0000007C0000 +7E0000007C0000FE0000007C0001FC0000007C0003F8000000780003F8000000780007F0 +000000780007F000000078000FE000000070000FE000000070001FC000000070001FC000 +000000003FC000000000003F8000000000003F8000000000003F8000000000007F800000 +0000007F0000000000007F0000000000007F0000000000007F000000000000FE00003FFF +FC00FE00003FFFFC00FE00003FFFF800FE0000003F8000FE0000003F0000FE0000003F00 +007E0000007F00007E0000007F00007E0000007E00007E0000007E00007F000000FE0000 +3F000000FE00003F000000FC00001F800001FC00001F800001FC00000FC00003F800000F +E00007F8000007F0000F78000003F8003E78000000FF01FC300000007FFFF0300000001F +FFC00000000003FE00000000313775B43B>I<0007FFFF01FFFFC0000FFFFF03FFFFC000 +0FFFFF03FFFFC000003FC0000FF00000003F80000FE00000003F80000FE00000003F0000 +0FC00000003F00000FC00000007F00001FC00000007F00001F800000007E00001F800000 +007E00001F80000000FE00003F80000000FE00003F00000000FC00003F00000000FC0000 +3F00000001FC00007F00000001FC00007E00000001F800007E00000001F800007E000000 +03F80000FE00000003F80000FC00000003F00000FC00000003FFFFFFFC00000007FFFFFF +FC00000007FFFFFFF800000007E00001F800000007E00001F80000000FE00003F8000000 +0FE00003F00000000FC00003F00000000FC00003F00000001FC00007F00000001FC00007 +E00000001F800007E00000001F800007E00000003F80000FE00000003F80000FC0000000 +3F00000FC00000003F00000FC00000007F00001FC00000007F00001F800000007E00001F +800000007E00001F80000000FE00003F80000000FE00003F00000000FC00003F00000001 +FC00007F0000007FFFF01FFFFC0000FFFFF03FFFFC0000FFFFF03FFFFC00003A337BB239 +>I<000FFFFF80000FFFFF80000FFFFF0000003FC00000003F800000003F800000003F00 +0000003F000000007F000000007F000000007E000000007E00000000FE00000000FE0000 +0000FC00000000FC00000001FC00000001FC00000001F800000001F800000003F8000000 +03F800000003F000000003F000000007F000000007F000000007E000000007E00000000F +E00000000FE00000000FC00000000FC00000001FC00000001FC00000001F800000001F80 +0000003F800000003F800000003F000000003F000000007F000000007F000000007E0000 +00007E00000000FE00000000FE00000000FC00000001FC000000FFFFF80000FFFFF80000 +FFFFF0000021337BB21E>I<00001FFFFE00003FFFFE00003FFFFC0000003F800000003F +800000003F800000003F000000003F000000007F000000007E000000007E000000007E00 +000000FE00000000FC00000000FC00000000FC00000001FC00000001F800000001F80000 +0001F800000003F800000003F000000003F000000003F000000007F000000007E0000000 +07E000000007E00000000FE00000000FC00000000FC00000000FC00000001FC00000001F +800000001F800000001F800000003F800000003F000000003F00001C003F00007E007F00 +00FE007E0000FE007E0000FE00FE0000FC00FC0000F801FC0000E001F80000E003F00000 +7007E00000780FC000003C1F0000001FFC00000007F0000000273579B228>I<0007FFFF +000FFFF0000FFFFF000FFFF0000FFFFF000FFFE000003FC00003FE0000003F800003F800 +00003F800003E00000003F000007C00000003F00000F000000007F00001E000000007F00 +007C000000007E0000F8000000007E0001E000000000FE0003C000000000FE0007800000 +0000FC001F0000000000FC003E0000000001FC00780000000001FC00F00000000001F801 +E00000000001F807C00000000003F80F800000000003F81FC00000000003F03FC0000000 +0003F07FC00000000007F1FFE00000000007F3E7E00000000007E787F00000000007EF07 +F0000000000FFE03F0000000000FFC03F8000000000FF801F8000000000FE001F8000000 +001FC001FC000000001FC000FC000000001F8000FE000000001F8000FE000000003F8000 +7E000000003F80007F000000003F00003F000000003F00003F800000007F00003F800000 +007F00001F800000007E00001FC00000007E00000FC0000000FE00000FC0000000FE0000 +0FE0000000FC00000FE0000001FC00000FF000007FFFF000FFFF8000FFFFF001FFFF8000 +FFFFF001FFFF00003C337BB23B>I<0007FFFFC000000FFFFFC000000FFFFFC00000003F +C0000000003F80000000003F80000000003F00000000003F00000000007F00000000007F +00000000007E00000000007E0000000000FE0000000000FE0000000000FC0000000000FC +0000000001FC0000000001FC0000000001F80000000001F80000000003F80000000003F8 +0000000003F00000000003F00000000007F00000000007F00000000007E00000000007E0 +000000000FE0000000000FE0000000000FC0000000000FC00000E0001FC00001E0001FC0 +0001C0001F800001C0001F800003C0003F80000380003F80000780003F00000780003F00 +000F00007F00000F00007F00001F00007E00003E00007E00003E0000FE00007C0000FE00 +01FC0000FC0003FC0001FC001FF8007FFFFFFFF800FFFFFFFFF800FFFFFFFFF0002B337C +B230>I<0007FFC00000007FFC000FFFC0000000FFFC000FFFE0000000FFFC00003FE000 +0001FF0000003FE0000001FE0000003FE0000003FE0000003BE00000077C0000003BE000 +00077C0000007BE000000EFC0000007BE000000EF800000073E000001CF800000073E000 +0038F8000000F1F0000039F8000000F1F0000071F0000000E1F0000071F0000000E1F000 +00E1F0000001E1F00001C3F0000001E1F00001C3E0000001C1F0000383E0000001C1F000 +0703E0000003C1F0000707E0000003C1F0000E07C000000380F8000E07C000000380F800 +1C07C000000780F800380FC000000780F800380F8000000700F800700F8000000700F800 +700F8000000F00F800E01F8000000F00F801C01F0000000E00F801C01F0000000E00F803 +801F0000001E007C03803F0000001E007C07003E0000001C007C0E003E0000001C007C0E +003E0000003C007C1C007E0000003C007C1C007C00000038007C38007C00000038007C70 +007C00000078007C7000FC00000078003EE000F800000070003EE000F800000070003FC0 +00F8000000F0003F8001F8000000F0003F8001F0000001F0003F0001F0000007F8003F00 +03F000007FFF803E00FFFFC000FFFF803C01FFFFC000FFFF801C01FFFFC00046337BB245 +>I<0007FF80003FFFC0000FFFC0007FFFC0000FFFC0007FFFC000001FC00003F8000000 +3FE00001F00000003FE00001E00000003FE00001C00000003BF00001C00000007BF00003 +C00000007BF000038000000071F800038000000071F8000380000000F1F8000780000000 +F0FC000700000000E0FC000700000000E0FC000700000001E07E000F00000001E07E000E +00000001C07E000E00000001C03F000E00000003C03F001E00000003C03F801C00000003 +801F801C00000003801F801C00000007801FC03C00000007800FC03800000007000FC038 +00000007000FE0380000000F0007E0780000000F0007E0700000000E0007F0700000000E +0003F0700000001E0003F0F00000001E0003F8E00000001C0001F8E00000001C0001F8E0 +0000003C0001FDE00000003C0000FDC0000000380000FDC0000000380000FFC000000078 +00007FC00000007800007F800000007000003F800000007000003F80000000F000003F80 +000000F000001F00000001F000001F00000007F800001F0000007FFF80000F000000FFFF +80000E000000FFFF80000E0000003A337BB239>I<0000001FE000000001FFFC00000007 +E03F0000001F800FC000003E0003E00000F80001F00001F00001F00003E00000F80007C0 +0000FC000F8000007C001F0000007E003E0000007E007E0000003E00FC0000003F01F800 +00003F01F80000003F03F00000003F07F00000003F07E00000003F0FE00000003F0FC000 +00003F1FC00000003F1FC00000007F1F800000007F3F800000007F3F800000007F3F8000 +00007F7F00000000FE7F00000000FE7F00000000FE7F00000000FE7F00000001FCFE0000 +0001FCFE00000003F8FE00000003F8FE00000003F0FE00000007F0FE00000007E0FE0000 +000FE07E0000000FC07E0000001F807E0000001F807E0000003F003F0000007E003F0000 +00FC003F000000F8001F800001F0000F800003E0000FC00007C00007C0001F800003E000 +3E000001F800FC0000007E07F00000003FFF8000000007FC000000303775B43B>I<0007 +FFFFFFC000000FFFFFFFF800000FFFFFFFFC0000003F8001FE0000003F80003F0000003F +80001F8000003F00001FC000003F00000FC000007F00000FC000007F00000FE000007E00 +000FE000007E00000FE00000FE00000FE00000FE00001FC00000FC00001FC00000FC0000 +1FC00001FC00001F800001FC00003F800001F800003F000001F800007E000003F80000FE +000003F80000FC000003F00003F8000003F00007E0000007F0003FC0000007FFFFFF0000 +0007FFFFF800000007E000000000000FE000000000000FE000000000000FC00000000000 +0FC000000000001FC000000000001FC000000000001F8000000000001F8000000000003F +8000000000003F8000000000003F0000000000003F0000000000007F0000000000007F00 +00000000007E0000000000007E000000000000FE000000000000FE000000000000FC0000 +00000001FC00000000007FFFF000000000FFFFF000000000FFFFF00000000033337CB234 +>I<0007FFFFFE0000000FFFFFFFC000000FFFFFFFF00000003F8007F80000003F8001FC +0000003F80007E0000003F00007F0000003F00003F0000007F00003F0000007F00003F80 +00007E00003F8000007E00003F800000FE00003F800000FE00007F000000FC00007F0000 +00FC00007F000001FC0000FE000001FC0000FC000001F80001FC000001F80001F8000003 +F80003F0000003F8000FC0000003F0001F80000003F000FE00000007FFFFF000000007FF +FFC000000007E003E000000007E001F80000000FE000FC0000000FE0007C0000000FC000 +7E0000000FC0007E0000001FC0007E0000001FC0007E0000001F80007E0000001F80007E +0000003F8000FE0000003F8000FE0000003F0000FE0000003F0000FE0000007F0001FE00 +00007F0001FC0000007E0001FC0000007E0001FC01C000FE0001FC03C000FE0001FC0380 +00FC0001FC038001FC0001FC07807FFFF000FC0700FFFFF000FE0E00FFFFF0007E1C0000 +0000001FF8000000000007E00032357BB238>82 D<000001FC018000000FFF038000003F +FFC78000007E07EF800001F801FF000003F000FF000003E0007F000007C0007F00000F80 +003E00001F80003E00001F00003E00003F00003E00003E00003C00003E00003C00003E00 +003C00007E00003C00007E00003800007E00003800007E00000000007F00000000007F00 +000000003F80000000003FE0000000003FFE000000001FFFC00000000FFFF800000007FF +FC00000001FFFE000000007FFF000000000FFF8000000000FF80000000003F8000000000 +1FC0000000000FC0000000000FC0000000000FC0000000000FC0000E00000FC0000E0000 +0FC0001E00000F80001C00000F80001C00000F80001C00001F80003C00001F00003C0000 +1F00003E00003E00003E00007C00007E00007C00007F0000F800007F8001F000007FC007 +E00000F3F80FC00000F0FFFF000000E03FFC000000C00FF000000029377AB42B>I<03FF +FFFFFFFFC007FFFFFFFFFFC007FFFFFFFFFF8007F800FC003F800FC001FC001F800F8001 +FC000F800F0001F8000F801E0001F80007001E0003F80007001C0003F80007003C0003F0 +000F003C0003F0000F00380007F0000E00780007F0000E00700007E0000E00700007E000 +0E0070000FE0001E00F0000FE0001C0000000FC000000000000FC000000000001FC00000 +0000001FC000000000001F8000000000001F8000000000003F8000000000003F80000000 +00003F0000000000003F0000000000007F0000000000007F0000000000007E0000000000 +007E000000000000FE000000000000FE000000000000FC000000000000FC000000000001 +FC000000000001FC000000000001F8000000000001F8000000000003F8000000000003F8 +000000000003F0000000000003F0000000000007F0000000000007F0000000000007E000 +000000000FF0000000001FFFFFF00000003FFFFFF00000003FFFFFF0000000323374B237 +>I<3FFFF801FFFE7FFFF803FFFE7FFFF803FFFE01FE00001FC001FC00000F8001FC0000 +0F0001F800000E0001F800000E0001F800001E0003F800001E0003F000001C0003F00000 +1C0003F000003C0007F000003C0007E00000380007E00000380007E0000078000FE00000 +78000FC0000070000FC0000070000FC00000F0001FC00000F0001F800000E0001F800000 +E0001F800001E0003F800001E0003F000001C0003F000001C0003F000003C0007F000003 +C0007E00000380007E00000380007E0000078000FE0000078000FC0000070000FC000007 +0000FC00000F0000FC00000E0000F800001E0000F800001C0000F800003C0000F8000038 +0000F80000780000FC0000F00000FC0000E000007C0001E000007E0003C000003E000F80 +00001F001E0000000FC0FC00000007FFF800000001FFE0000000007F000000002F3570B2 +39>I<FFFFC0003FFF80FFFFC0003FFF80FFFFC0003FFF8007F8000007F80007F0000003 +E00007F0000003C00003F0000007800003F0000007000003F000000F000003F000000E00 +0003F000001C000003F000001C000003F0000038000003F0000078000003F00000700000 +03F00000E0000003F80000E0000001F80001C0000001F80003C0000001F8000380000001 +F8000700000001F8000700000001F8000E00000001F8001E00000001F8001C00000001F8 +003800000001FC003800000001FC007000000000FC00F000000000FC00E000000000FC01 +C000000000FC01C000000000FC038000000000FC038000000000FC070000000000FC0E00 +00000000FC0E0000000000FE1C00000000007E1C00000000007E3800000000007E780000 +0000007E7000000000007EE000000000007EE000000000007FC000000000007FC0000000 +00007F8000000000007F0000000000007F0000000000003E0000000000003E0000000000 +003C000000000000380000000000313570B239>I<FFFFC03FFFF003FFF8FFFFC03FFFF0 +07FFF8FFFF803FFFF007FFF80FF00001FC00007F8007E00001F800003E0007E00001F800 +003C0007E00001F800003C0007E00001F80000380007E00001F80000700007E00003F800 +00700007E00003F80000E00007E00007F80000E00007E00007F80001C00007E0000FF800 +03C00007E0000FF80003800007E0001DF80007000007E0001DF80007000007E00038FC00 +0E000007E00038FC000E000007E00070FC001C000007E000F0FC001C000003F000E0FC00 +38000003F001E0FC0038000003F001C0FC0070000003F00380FC00F0000003F00380FC00 +E0000003F00700FC01E0000003F00700FC01C0000003F00E00FC0380000003F00E00FC03 +80000003F01C00FC0700000003F01C00FC0700000003F03800FC0E00000003F07800FC0E +00000003F07000FC1C00000003F0E000FC1C00000003F0E000FC3800000003F1C000FC78 +00000003F1C000FC7000000003F38000FCE000000003F38000FCE000000003F700007FC0 +00000003F700007FC000000003FE00007F8000000003FE00007F8000000001FC00007F00 +00000001FC00007F0000000001F800007E0000000001F000007E0000000001F000007C00 +00000001E000007C0000000001E00000780000000001C000007000000000453570B24D> +I<FFFFE0001FFFE0FFFFE0001FFFE0FFFFE0001FFFC003FC000003FC0001F8000003F000 +01FC000003C00001FC000007800000FC000007000000FE00000E000000FE00001C000000 +7E00003C0000007F0000780000007F0000F00000003F0000E00000003F8001C00000003F +8003800000001F8007800000001F800F000000001FC01E000000001FC01C000000000FC0 +38000000000FE070000000000FE0F00000000007E1E00000000007F3C00000000007F380 +0000000003F7000000000003FE000000000003FE000000000001FC000000000001F80000 +00000001F8000000000001F0000000000003F0000000000003F0000000000003F0000000 +000003E0000000000007E0000000000007E0000000000007E0000000000007C000000000 +000FC000000000000FC000000000000FC000000000000F8000000000001F800000000000 +1F8000000000003F80000000000FFFFE000000001FFFFE000000001FFFFE000000003333 +71B239>89 D<00001FFE00003FFE00003FFE00003FFC00003C0000007C00000078000000 +7800000078000000F8000000F0000000F0000000F0000001F0000001E0000001E0000001 +E0000003E0000003C0000003C0000003C0000007C000000780000007800000078000000F +8000000F0000000F0000000F0000001F0000001E0000001E0000001E0000003E0000003C +0000003C0000003C0000007C000000780000007800000078000000F8000000F0000000F0 +000000F0000001F0000001E0000001E0000001E0000003E0000003C0000003C0000003C0 +000007C000000780000007800000078000000F8000000F0000000F0000000F0000001F00 +00001E0000001E0000001E0000003E0000003C0000003C0000003C0000007C0000007800 +00007FF800007FF80000FFF80000FFF800001F4B7DB718>91 D<00001FFE00003FFE0000 +3FFE00003FFC0000003C0000007C0000007C0000007800000078000000F8000000F80000 +00F0000000F0000001F0000001F0000001E0000001E0000003E0000003E0000003C00000 +03C0000007C0000007C0000007800000078000000F8000000F8000000F0000000F000000 +1F0000001F0000001E0000001E0000003E0000003E0000003C0000003C0000007C000000 +7C0000007800000078000000F8000000F8000000F0000000F0000001F0000001F0000001 +E0000001E0000003E0000003E0000003C0000003C0000007C0000007C000000780000007 +8000000F8000000F8000000F0000000F0000001F0000001F0000001E0000001E0000003E +0000003E0000003C0000003C0000007C0000007C00007FF800007FF80000FFF80000FFF8 +00001F4B82B718>93 D<0003F000000FF800003E1C60007C0FF000F807F001F007F003E0 +07F007E003E00FC003E00FC003E01F8007E01F8007C03F0007C03F0007C03F000FC07F00 +0F807E000F807E000F807E001F80FE001F00FC001F00FC001F06FC003F07FC003E0FFC00 +3E0EFC007E0E7C007E1E7C00FE1C7C01FC1C3C03FC3C3E07BE381F0E1E7807FC0FF001F0 +03C0202278A027>97 D<007E00000FFE00001FFE00001FFC000000FC000000FC000000FC +000000F8000000F8000001F8000001F8000001F0000001F0000003F0000003F0000003E0 +000003E0000007E0000007E0000007C3E00007CFF8000FDC3E000FF81F000FF00F000FE0 +0F801FC00F801F800F801F800FC01F000FC03F000FC03F000FC03E000FC03E000FC07E00 +1FC07E001F807C001F807C001F807C003F80FC003F00F8003F00F8003F00F8007E00F800 +7E00F800FC00F800FC007801F8007801F0007803E0003C07C0003C0F80001E1F00000FFC +000003F000001A3578B323>I<0000FC000007FF00001F0780003E03C000FC01C001F803 +C003F007C007E00FC007C00FC00FC00FC01F8007001F8000003F0000003F0000003F0000 +007F0000007E0000007E0000007E000000FE000000FC000000FC000000FC000000FC0000 +007C0000C07C0001E07C0001E07C0003C03E000F803E001F001F007C000F81F00003FFC0 +0000FE00001B2278A023>I<0000000FC0000003FFC0000003FFC0000003FF800000001F +800000001F800000001F800000001F000000001F000000003F000000003F000000003E00 +0000003E000000007E000000007E000000007C000000007C00000000FC00000000FC0000 +03F0F800000FF8F800003E1DF800007C0FF80000F807F00001F007F00003E007F00007E0 +03F0000FC003E0000FC003E0001F8007E0001F8007E0003F0007C0003F0007C0003F000F +C0007F000FC0007E000F80007E000F80007E001F8000FE001F8000FC001F0000FC001F06 +00FC003F0700FC003F0F00FC003E0E00FC007E0E007C007E1E007C00FE1C007C01FC1C00 +3C03FC3C003E07BE38001F0E1E780007FC0FF00001F003C000223578B327>I<0003F800 +000FFE00003E0F0000F8078001F0038003E0038007C003800FC003801F8003801F800780 +3F0007003F000F007E003E007E03F8007FFFE000FFFE0000FC000000FC000000FC000000 +FC000000F8000000F8000000F8000000F8000000F8000180F80003C0F80003C07C000780 +7C001F003C003E001E00F8000F03E00007FF800001FC00001A2277A023>I<0000001F00 +0000007FC0000000F0E0000001F0F0000003E3F0000003E3F0000007C3F0000007C3E000 +0007C1C000000FC00000000F800000000F800000000F800000000F800000001F80000000 +1F000000001F000000001F000000001F000000003F000000003E0000001FFFFE00001FFF +FE00001FFFFE0000007E000000007C000000007C000000007C000000007C00000000FC00 +000000F800000000F800000000F800000000F800000000F800000001F800000001F00000 +0001F000000001F000000001F000000003F000000003E000000003E000000003E0000000 +03E000000007E000000007C000000007C000000007C00000000FC00000000FC00000000F +800000000F800000000F800000001F800000001F000000001F000000001F000000003F00 +0000003E000000383E0000007E3C0000007E3C000000FE78000000FC78000000F8F00000 +0078E00000003FC00000000F00000000244582B418>I<00003F000000FF800003E1E600 +07C0FF000F807F001F007F003E007F007E003F00FC003E00FC003E01F8007E01F8007E03 +F0007C03F0007C03F000FC07F000FC07E000F807E000F807E001F807E001F80FC001F00F +C001F00FC003F007C003F007C003E007C007E007C00FE007C01FE003E03FC001E07FC001 +F0FFC0007FCFC0001F0F8000000F8000001F8000001F8000001F0000001F0000003F0000 +003E0038003E007E007E007E00FC00FE00F800FC01F0007803E0007C0F80001FFF000007 +F8000020317CA023>I<000FC0000003FFC0000003FFC0000003FF800000001F80000000 +1F800000001F800000001F000000001F000000003F000000003F000000003E000000003E +000000007E000000007E000000007C000000007C00000000FC00000000FC00000000F83F +800000F8FFE00001FBE0F00001FF80F80001FF00780001FE007C0003FC007C0003F8007C +0003F0007C0003F0007C0007E000FC0007E000F80007C000F80007C000F8000FC001F800 +0FC001F0000F8001F0000F8001F0001F8003F0001F8003E0001F0007E0001F0007C0C03F +0007C1E03F000FC1C03E000F81C03E000F81C07E000F83C07E000F03807C000F07807C00 +0F0700FC000F0E00FC000F1E00F80007F800700001F00023357BB327>I<0001800007E0 +0007E0000FE00007C0000380000000000000000000000000000000000000000000000000 +00000000000000000001F00003FC000F1E000E1E001C1E003C1E00381E00783E00703E00 +703E00707E00F07C0060FC0000F80000F80001F80001F00001F00003F00003E00003E000 +07E0C007C1E00FC1C00F81C00F81C00F83C00F03800F07800F07000F0E000F1E0007F800 +01F00013337AB118>I<000FC00001FFC00003FFC00003FF8000001F8000001F8000001F +8000001F0000001F0000003F0000003F0000003E0000003E0000007E0000007E0000007C +0000007C000000FC000000FC000000F8007800F801FE01F8078F01F80E0F01F01C3F01F0 +383F03F0703F03F0E03E03E1C01C03E3800007E7000007EE000007DC000007F800000FF8 +00000FFF00000F9FC0000F83F0001F81F0001F80F8001F00F8001F00F80C3F00F81E3F00 +F81C3E00F81C3E00F81C7E00F83C7E00F8387C00F8387C00F878FC007870FC0078E0F800 +3FC070000F8020357BB323>107 D<003F07FF0FFF0FFE007E007E007E007C007C00FC00 +FC00F800F801F801F801F001F003F003F003E003E007E007E007C007C00FC00FC00F800F +801F801F801F001F003F003F003E003E007E007E007C007C18FC1CFC3CF838F838F878F8 +70F070F0F0F8E079E03FC00F00103579B314>I<03C003F8007F00000FF00FFE01FFC000 +1E783C1F07C1E0001C7CF00F8F01F0003C3DE0079E00F000383FC007FC00F800387F8007 +F800F800707F0007F000F800707F0007E000F800707E0007E000F800F0FC000FC001F800 +E0FC000FC001F00060F8000F8001F00000F8000F8001F00001F8001F8003F00001F8001F +8003E00001F0001F0003E00001F0001F0003E00003F0003F0007E00003F0003F0007C000 +03E0003E000FC00003E0003E000F818007E0007E000F83C007E0007E001F838007C0007C +001F038007C0007C001F03800FC000FC001F07800FC000FC003E07000F8000F8003E0F00 +0F8000F8001E0E001F8001F8001E1C001F8001F8001E3C001F0001F0000FF0000E0000E0 +0003E0003A227AA03F>I<03C007F0000FF01FFC001E787C1E001C7CF01F003C3DE00F00 +383FC00F80387F800F80787F000F80707E000F80707E000F80F0FC001F80E0FC001F0060 +F8001F0000F8001F0001F8003F0001F8003E0001F0003E0001F0003E0003F0007E0003F0 +007C0003E000FC0003E000F81807E000F83C07E001F83807C001F03807C001F0380FC001 +F0780FC001E0700F8001E0F00F8001E0E01F8001E1C01F8001E3C01F0000FF000E00003E +0026227AA02B>I<0000FC000007FF00001F07C0003E03E000FC01F001F801F003F000F8 +07E000F807C000F80FC000F81F8000FC1F8000FC3F0000FC3F0000FC3F0001FC7F0001F8 +7E0001F87E0001F87E0003F8FE0003F0FC0003F0FC0003F0FC0007E0FC0007E07C000FC0 +7C000F807C001F807C003F003E007E003E00FC001F01F0000F83E00003FF800000FC0000 +1E2278A027>I<001E007C00007F81FF0000F3C387C000E3EF03E001E1FE01E001C1FC01 +F001C3F801F003C3F001F00383F001F80383E001F80787E001F80707E001F80307C001F8 +0007C001F8000FC003F8000FC003F0000F8003F0000F8003F0001F8007F0001F8007E000 +1F0007E0001F0007E0003F000FC0003F000FC0003E001F80003E001F80007E003F00007F +003E00007F007C00007F00F80000FF81F00000FDC3E00000F8FF800000F87E000001F800 +000001F800000001F000000001F000000003F000000003F000000003E000000003E00000 +0007E000000007E000000007C0000000FFFF000000FFFF000000FFFF00000025307FA027 +>I<0003F018000FF838003E1C78007C0EF800F807F001F007F003E007F007E003F00FC0 +03E00FC003E01F8003E01F8007E03F0007C03F0007C03F0007C07F000FC07E000F807E00 +0F807E000F80FE001F80FC001F00FC001F00FC001F00FC003F00FC003E00FC007E007C00 +7E007C00FE007C01FC003C03FC003E07FC001F0EFC0007FCF80001F0F8000000F8000001 +F8000001F0000001F0000001F0000003F0000003E0000003E0000007E0000007E0000007 +C00001FFFF0001FFFF0001FFFE001D3078A023>I<03C00FC00FF03FF01E78F0781C7DE0 +3C3C3FC0FC383F80FC387F00FC787F00F8707E0070707E0000F0FC0000E0FC000060F800 +0000F8000001F8000001F8000001F0000001F0000003F0000003F0000003E0000003E000 +0007E0000007E0000007C0000007C000000FC000000FC000000F8000000F8000001F8000 +001F8000001F0000000E0000001E227AA020>I<0003F0001FFC003C1E00780F00F00701 +E00701E00F03E01F03C01F03C01F03E00403E00003F00003FF8003FFE001FFF000FFF800 +7FFC0007FC0000FE00007E00003E38003EFC003CFC003CFC003CFC007CF00078E000F0F0 +01F07803E03C0F801FFE0003F80018227AA01F>I<000300000F80000F80000F80001F80 +001F80001F00001F00003F00003F00003E00003E00007E00007E00007C007FFFF87FFFF8 +FFFFF800F80000F80001F80001F80001F00001F00003F00003F00003E00003E00007E000 +07E00007C00007C0000FC0000FC0000F80000F80601F80F01F80E01F00E01F01E01F01C0 +1F03C01E03801E07001E0F000F1E0007F80001E00015307AAE19>I<01F000000003FC00 +07000F1E000F000E1E001F001C1E001F003C1E001F00381E003F00783E003E00703E003E +00703E003E00707E007E00F07C007C0060FC007C0000F8007C0000F800FC0001F800F800 +01F000F80001F000F80001F001F80003F001F00003E001F00003E001F06003E003F07003 +E003E0F007C003E0E007C003E0E003C007E1E003C007E1C003E00FC1C003E01FC3C001E0 +3FE38001F071E780007FE0FF00001F803C0024227AA029>I<00F0003803FC00FC0F1E00 +FC0E1E00FC1C1E00FC3C1E00FC381E007C783E007C703E003C703E003C707E003CF07C00 +3860FC003800F8003800F8007801F8007001F0007001F0007001F000F003F000E003E000 +E003E000E003E001C003E001C003C003C003C0038003C0078003C0070003E00E0003E00E +0001F01C0000F87800007FE000001F80001E227AA023>I<01F00000003803FC000E00FC +0F1E001E00FC0E1E003E00FC1C1E003E00FC3C1E003E00FC381E007E007C783E007C007C +703E007C003C703E007C003C707E00FC003CF07C00F8003860FC00F8003800F800F80038 +00F801F8007801F801F0007001F001F0007001F001F0007001F003F000F003F003F000E0 +03E003E000E003E003E000E003E003E001E003E003E001C003C003C001C003C007C00380 +03C007C0038003E00FE0078003E00FE0070003E01FE00E0001F03DF01E0000F878F83C00 +003FF03FF000000FC00FC0002E227AA033>I<001F007C00007FC1FF0001E1E7878003C0 +F703C00380FE0FC00700FE0FC00F00FC0FC00E00FC0F801E00F807001C00F800001C01F8 +00003C01F000001801F000000001F000000003F000000003E000000003E000000003E000 +000007E000000007E000000007C000000007C00600000FC00F00000FC00E00000F800E00 +380F801E007C1F801C00FC1F803C00FC1F803800FC3F807000F07FC0E00070F3C3C0003F +E1FF80000F807E000022227CA023>I<00F0000003FC00070F1E000F0E1E001F1C1E001F +3C1E001F381E003F783E003E703E003E703E003E707E007EF07C007C60FC007C00F8007C +00F800FC01F800F801F000F801F000F801F001F803F001F003E001F003E001F003E003F0 +03E003E007C003E007C003E003C007E003C007C003E00FC003E01FC001E03FC001F07F80 +007FEF80001F8F8000001F8000001F0000001F0000003F003E003E007E007E007E007C00 +7E00F8007C00F0007001F0007003E000380780003C1F00000FFC000007F0000020317AA0 +25>I<0007801C001FE03C003FF038007FF07800FFF8F001F07CE001E01FE003C003C003 +80078003800F0000001E0000001C0000003C00000078000000F0000001E0000007C00000 +0F8000001E0000003C00000078000000F0007000E000F001E000E003C000E0078001E00F +C003C01FF807C01F3E0F803C1FFF00781FFF00700FFE00F007F800E001E0001E227CA01F +>I E /Ft 36 121 df<7FFFFFF8FFFFFFFCFFFFFFFCFFFFFFFCFFFFFFFC7FFFFFF81E06 +7C9927>45 D<1E007F807F80FFC0FFC0FFC0FFC07F807F801E000A0A728927>I<000E00 +00001F0000001F0000003F0000007F0000007F000000FF000001FF000003FF00007FFF00 +00FFFF0000FFFF0000FFBF00007E3F0000003F0000003F0000003F0000003F0000003F00 +00003F0000003F0000003F0000003F0000003F0000003F0000003F0000003F0000003F00 +00003F0000003F0000003F0000003F0000003F0000003F0000003F0000003F0000003F00 +00003F0000003F0000003F0000003F0000003F00003FFFFF807FFFFF807FFFFFC07FFFFF +807FFFFF801A2F79AE27>49 D<003FE00001FFF80003FFFE000FFFFF801FFFFFC03FE07F +E03F800FE07F0007F07E0003F8FE0001F8FC0001F8FE0001FCFE0000FCFE0000FCFE0000 +FC7C0000FC000000FC000000FC000001FC000001F8000001F8000003F8000003F0000007 +F000000FE000001FC000003FC000007F800000FF000001FE000003FC000007F800000FF0 +00001FE000003FC000007F800000FE000001FC000007F800780FF000FC1FE000FC3FC000 +FC7FFFFFFCFFFFFFFCFFFFFFFCFFFFFFFC7FFFFFF81E2F7CAE27>I<0003F000000007F8 +00000007F80000000FFC0000000FFC0000000FFC0000000FFC0000000F3C0000001F3E00 +00001F3E0000001F3E0000001F3E0000001F3E0000003F3F0000003F3F0000003F3F0000 +003E1F0000003E1F0000007E1F8000007E1F8000007E1F8000007E1F800000FC0FC00000 +FC0FC00000FC0FC00000FC0FC00000FC0FC00001F807E00001F807E00001F807E00001FF +FFE00001FFFFE00003FFFFF00003FFFFF00003FFFFF00003F003F00003F003F00007E001 +F80007E001F80007E001F80007E001F8000FE001FC007FFC0FFF80FFFC0FFFC0FFFE1FFF +C0FFFC0FFFC07FFC0FFF80222F7EAE27>65 D<7FFFFFFF80FFFFFFFFC0FFFFFFFFC0FFFF +FFFFC07FFFFFFFC007E0000FC007E0000FC007E0000FC007E0000FC007E0000FC007E000 +0FC007E000078007E000000007E000000007E000000007E000000007E007800007E00FC0 +0007E00FC00007E00FC00007FFFFC00007FFFFC00007FFFFC00007FFFFC00007FFFFC000 +07E00FC00007E00FC00007E00FC00007E007800007E000000007E000000007E000000007 +E000000007E00003C007E00007E007E00007E007E00007E007E00007E007E00007E007E0 +0007E007E00007E07FFFFFFFE0FFFFFFFFE0FFFFFFFFE0FFFFFFFFE07FFFFFFFC0232E7F +AD27>69 D<7FFFFFE0FFFFFFF0FFFFFFF0FFFFFFF07FFFFFE0001F8000001F8000001F80 +00001F8000001F8000001F8000001F8000001F8000001F8000001F8000001F8000001F80 +00001F8000001F8000001F8000001F8000001F8000001F8000001F8000001F8000001F80 +00001F8000001F8000001F8000001F8000001F8000001F8000001F8000001F8000001F80 +00001F8000001F8000001F8000001F8000001F8000001F80007FFFFFE0FFFFFFF0FFFFFF +F0FFFFFFF07FFFFFE01C2E7BAD27>73 D<7FFFC000007FFFE00000FFFFE000007FFFE000 +007FFFC0000003F000000003F000000003F000000003F000000003F000000003F0000000 +03F000000003F000000003F000000003F000000003F000000003F000000003F000000003 +F000000003F000000003F000000003F000000003F000000003F000000003F000000003F0 +00000003F000000003F000000003F000000003F000000003F000000003F000000003F000 +000003F000078003F0000FC003F0000FC003F0000FC003F0000FC003F0000FC003F0000F +C003F0000FC07FFFFFFFC07FFFFFFFC0FFFFFFFFC07FFFFFFFC07FFFFFFF80222E7FAD27 +>76 D<7FF003FFE0FFF807FFF0FFF807FFF0FFFC07FFF07FFC03FFE007FC003E0007DE00 +3E0007DE003E0007DE003E0007CF003E0007CF003E0007CF003E0007CF803E0007C7803E +0007C7C03E0007C7C03E0007C3C03E0007C3E03E0007C3E03E0007C1E03E0007C1F03E00 +07C1F03E0007C1F03E0007C0F83E0007C0F83E0007C0F83E0007C0783E0007C07C3E0007 +C07C3E0007C03C3E0007C03E3E0007C03E3E0007C01E3E0007C01F3E0007C00F3E0007C0 +0F3E0007C00F3E0007C007BE0007C007BE0007C007BE0007C003FE007FFC03FE00FFFE03 +FE00FFFE01FE00FFFE01FE007FFC00FC00242E7FAD27>78 D<00FFFC0007FFFF801FFFFF +E01FFFFFE03FFFFFF03FC00FF07F8007F87F0003F87E0001F87E0001F87E0001F8FC0000 +FCFC0000FCFC0000FCFC0000FCFC0000FCFC0000FCFC0000FCFC0000FCFC0000FCFC0000 +FCFC0000FCFC0000FCFC0000FCFC0000FCFC0000FCFC0000FCFC0000FCFC0000FCFC0000 +FCFC0000FCFC0000FCFC0000FCFC0000FCFC0000FCFC0000FCFE0001FC7E0001F87E0001 +F87E0001F87F0003F87F8007F83FE01FF03FFFFFF01FFFFFE01FFFFFE007FFFF8000FFFC +001E307CAE27>I<7FFFFF0000FFFFFFE000FFFFFFF000FFFFFFF8007FFFFFFC0007E003 +FE0007E000FF0007E0007F0007E0003F8007E0001F8007E0001FC007E0000FC007E0000F +C007E0000FC007E0000FC007E0000FC007E0000FC007E0001FC007E0001F8007E0003F80 +07E0007F0007E000FF0007E003FE0007FFFFFC0007FFFFF80007FFFFF00007FFFFE00007 +FFFF000007E000000007E000000007E000000007E000000007E000000007E000000007E0 +00000007E000000007E000000007E000000007E000000007E000000007E00000007FFE00 +0000FFFF000000FFFF000000FFFF0000007FFE000000222E7FAD27>I<7FFFF00000FFFF +FE0000FFFFFF8000FFFFFFC0007FFFFFE00007E01FF00007E007F00007E003F80007E001 +F80007E001FC0007E000FC0007E000FC0007E000FC0007E000FC0007E000FC0007E001FC +0007E001F80007E003F80007E007F00007E01FF00007FFFFE00007FFFFC00007FFFF8000 +07FFFF800007FFFFC00007E01FC00007E00FE00007E007E00007E003F00007E003F00007 +E003F00007E003F00007E003F00007E003F00007E003F00007E003F00007E003F0F007E0 +03F1F807E003F1F807E003F1F807E003F1F87FFE01FBF8FFFF01FFF0FFFF00FFF0FFFF00 +FFE07FFE007FC00000001F00252F7FAD27>82 D<7FFFFFFF80FFFFFFFFC0FFFFFFFFC0FF +FFFFFFC0FFFFFFFFC0FC03F00FC0FC03F00FC0FC03F00FC0FC03F00FC0FC03F00FC0FC03 +F00FC07803F007800003F000000003F000000003F000000003F000000003F000000003F0 +00000003F000000003F000000003F000000003F000000003F000000003F000000003F000 +000003F000000003F000000003F000000003F000000003F000000003F000000003F00000 +0003F000000003F000000003F000000003F000000003F000000003F000000003F0000000 +03F000000003F0000000FFFFC00001FFFFE00001FFFFE00001FFFFE00000FFFFC000222E +7EAD27>84 D<7FFE01FFF8FFFF03FFFCFFFF03FFFCFFFF03FFFC7FFE01FFF807E0001F80 +07E0001F8007E0001F8007E0001F8007E0001F8007E0001F8007E0001F8007E0001F8007 +E0001F8007E0001F8007E0001F8007E0001F8007E0001F8007E0001F8007E0001F8007E0 +001F8007E0001F8007E0001F8007E0001F8007E0001F8007E0001F8007E0001F8007E000 +1F8007E0001F8007E0001F8007E0001F8007E0001F8007E0001F8007E0001F8007F0003F +8003F0003F0003F0003F0003F8007F0001F8007E0001FC00FE0000FE01FC00007F87F800 +007FFFF800003FFFF000000FFFC0000007FF80000001FE0000262F80AD27>I<7FFC03FF +E07FFE07FFE0FFFE07FFF07FFE07FFE07FFC03FFE007E0007E0007E0007E0007E0007E00 +07E0007E0003F000FC0003F000FC0003F000FC0003F000FC0003F801FC0001F801F80001 +F801F80001F801F80001F801F80000FC03F00000FC03F00000FC03F00000FC03F000007E +07E000007E07E000007E07E000007E07E000007E07E000003F0FC000003F0FC000003F0F +C000003F0FC000001F0F8000001F9F8000001F9F8000001F9F8000000F9F0000000F9F00 +00000F9F0000000F9F0000000F9F00000007FE00000007FE00000007FE00000007FE0000 +0003FC00000003FC00000001F80000242F7FAD27>I<7FFFF0FFFFF8FFFFF8FFFFF8FFFF +F0FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC00 +00FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC00 +00FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC00 +00FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC00 +00FFFFF0FFFFF8FFFFF8FFFFF87FFFF0153A71B327>91 D<7FFFF0FFFFF8FFFFF8FFFFF8 +7FFFF80001F80001F80001F80001F80001F80001F80001F80001F80001F80001F80001F8 +0001F80001F80001F80001F80001F80001F80001F80001F80001F80001F80001F80001F8 +0001F80001F80001F80001F80001F80001F80001F80001F80001F80001F80001F80001F8 +0001F80001F80001F80001F80001F80001F80001F80001F80001F80001F80001F80001F8 +0001F87FFFF8FFFFF8FFFFF8FFFFF87FFFF0153A7EB327>93 D<03FFC000000FFFF00000 +1FFFFC00003FFFFF00003FFFFF80003F80FF80003F801FC0001F000FC00004000FE00000 +0007E000000007E000000FFFE000007FFFE00003FFFFE0000FFFFFE0001FFFFFE0003FFC +07E0007FC007E0007F0007E000FE0007E000FC0007E000FC0007E000FC0007E000FC0007 +E000FE000FE0007F001FE0007FC0FFE0003FFFFFFF801FFFFFFFC00FFFFFFFC003FFF1FF +C000FF807F8022207C9F27>97 D<000FFF00007FFFC001FFFFE003FFFFF007FFFFF00FF8 +07F01FE007F03FC003E03F8000807F0000007E0000007E000000FE000000FC000000FC00 +0000FC000000FC000000FC000000FC000000FE0000007E0000007E0000007F0000F03F80 +01F83FC001F81FE003F80FF80FF007FFFFF003FFFFE001FFFFC0007FFF00000FF8001D20 +7B9F27>99 D<00003FF00000007FF80000007FF80000007FF80000003FF800000001F800 +000001F800000001F800000001F800000001F800000001F800000001F800000001F80000 +0001F800000FE1F800007FFDF80001FFFFF80003FFFFF80007FFFFF8000FF83FF8001FE0 +0FF8003FC007F8003F8003F8007F0003F8007E0001F8007E0001F800FE0001F800FC0001 +F800FC0001F800FC0001F800FC0001F800FC0001F800FC0001F800FE0001F8007E0003F8 +007E0003F8007F0003F8003F0007F8003F800FF8001FE01FF8000FF03FF80007FFFFFFC0 +03FFFFFFE001FFFDFFE0007FF9FFE0001FE0FFC0232E7EAD27>I<000FF800003FFE0000 +FFFF8003FFFFC007FFFFE00FFC0FF01FE003F81FC001F83F8001FC7F0000FC7E0000FC7E +00007EFE00007EFFFFFFFEFFFFFFFEFFFFFFFEFFFFFFFEFFFFFFFCFC000000FE0000007E +0000007F0000003F00003C3F80007E1FC0007E1FF000FE0FFC07FC07FFFFFC01FFFFF800 +FFFFF0003FFFC00007FE001F207D9F27>I<7FE0000000FFF0000000FFF0000000FFF000 +00007FF000000003F000000003F000000003F000000003F000000003F000000003F00000 +0003F000000003F000000003F000000003F07F000003F1FFC00003F7FFF00003FFFFF000 +03FFFFF80003FFC1F80003FF01FC0003FE00FC0003FC00FC0003F800FC0003F800FC0003 +F000FC0003F000FC0003F000FC0003F000FC0003F000FC0003F000FC0003F000FC0003F0 +00FC0003F000FC0003F000FC0003F000FC0003F000FC0003F000FC0003F000FC0003F000 +FC0003F000FC007FFF83FFE0FFFFC7FFF0FFFFC7FFF0FFFFC7FFF07FFF83FFE0242E7FAD +27>104 D<000F0000001F8000003FC000003FC000003FC000003FC000001F8000000F00 +00000000000000000000000000000000000000000000000000000000003FFF80007FFFC0 +007FFFC0007FFFC0003FFFC000000FC000000FC000000FC000000FC000000FC000000FC0 +00000FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC0 +00000FC000000FC000000FC000000FC000000FC000000FC000000FC0007FFFFFF0FFFFFF +F0FFFFFFF8FFFFFFF07FFFFFF01D2F7BAE27>I<7FE00000007FF0000000FFF00000007F +F00000007FF000000001F000000001F000000001F000000001F000000001F000000001F0 +00000001F000000001F000000001F000000001F03FFFC001F07FFFE001F07FFFE001F07F +FFE001F03FFFC001F003F80001F007F00001F00FE00001F01FC00001F03F800001F0FF00 +0001F1FE000001F3FC000001F7F8000001FFFC000001FFFE000001FFFF000001FF3F0000 +01FE1F800001FC0FC00001F80FE00001F007E00001F003F00001F001F80001F001FC0001 +F000FE0001F0007E007FFFC1FFF07FFFC3FFF8FFFFE3FFF87FFFC3FFF87FFFC3FFF0252E +80AD27>107 D<7FFF8000FFFFC000FFFFC000FFFFC0007FFFC000000FC000000FC00000 +0FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC00000 +0FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC00000 +0FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC00000 +0FC000000FC000000FC000000FC000000FC000000FC000000FC0007FFFFFF8FFFFFFFCFF +FFFFFCFFFFFFFC7FFFFFF81E2E7CAD27>I<7F07C01F0000FF9FF07FC000FFFFF9FFE000 +FFFFFFFFF0007FFFFFFFF0000FFC7FF1F8000FF03FC0F8000FE03F80F8000FC03F00F800 +0FC03F00F8000FC03F00F8000F803E00F8000F803E00F8000F803E00F8000F803E00F800 +0F803E00F8000F803E00F8000F803E00F8000F803E00F8000F803E00F8000F803E00F800 +0F803E00F8000F803E00F8000F803E00F8000F803E00F8000F803E00F8000F803E00F800 +7FF0FFC3FF00FFF8FFE3FF80FFF9FFE7FF80FFF8FFE3FF807FF0FFC3FF002920819F27> +I<7FE07F0000FFF1FFC000FFF7FFF000FFFFFFF0007FFFFFF80003FFC1F80003FF01FC00 +03FE00FC0003FC00FC0003F800FC0003F800FC0003F000FC0003F000FC0003F000FC0003 +F000FC0003F000FC0003F000FC0003F000FC0003F000FC0003F000FC0003F000FC0003F0 +00FC0003F000FC0003F000FC0003F000FC0003F000FC0003F000FC007FFF83FFE0FFFFC7 +FFF0FFFFC7FFF0FFFFC7FFF07FFF83FFE024207F9F27>I<001FE000007FF80001FFFE00 +03FFFF0007FFFF800FF03FC01FC00FE03F8007F03F0003F07F0003F87E0001F87E0001F8 +FC0000FCFC0000FCFC0000FCFC0000FCFC0000FCFC0000FCFC0000FCFE0001FC7E0001F8 +7E0001F87F0003F83F8007F03F8007F01FE01FE00FF03FC007FFFF8003FFFF0001FFFE00 +007FF800001FE0001E207C9F27>I<7FE0FF0000FFF3FFC000FFFFFFF000FFFFFFF8007F +FFFFFC0003FF81FE0003FE00FF0003FC003F8003F8001F8003F8001FC003F0000FC003F0 +000FC003F0000FE003F00007E003F00007E003F00007E003F00007E003F00007E003F000 +07E003F0000FE003F0000FC003F8000FC003F8001FC003FC003F8003FC007F8003FE00FF +0003FF83FE0003FFFFFC0003FFFFF80003FFFFF00003F3FFC00003F0FE000003F0000000 +03F000000003F000000003F000000003F000000003F000000003F000000003F000000003 +F000000003F000000003F000000003F00000007FFF800000FFFFC00000FFFFC00000FFFF +C000007FFF80000023317F9F27>I<7FFC03FC00FFFE0FFF00FFFE3FFF80FFFE7FFFC07F +FEFFFFC0007FFE1FC0007FF81FC0007FF00F80007FE00200007FC00000007F800000007F +800000007F000000007F000000007E000000007E000000007E000000007E000000007E00 +0000007E000000007E000000007E000000007E000000007E000000007E000000007E0000 +00007E0000007FFFFF8000FFFFFFC000FFFFFFC000FFFFFFC0007FFFFF800022207E9F27 +>114 D<00FFF38007FFFFC01FFFFFC03FFFFFC07FFFFFC07F803FC0FC000FC0F8000FC0 +F8000FC0F8000780FC0000007F8000007FFC00003FFFF0001FFFFC0007FFFF0001FFFF80 +000FFFC000003FE0000007E0780003F0FC0001F0FC0001F0FE0001F0FE0003F0FF0007E0 +FFE01FE0FFFFFFC0FFFFFF80FFFFFF00FBFFFC00707FF0001C207B9F27>I<003C000000 +7E0000007E0000007E0000007E0000007E0000007E0000007E0000007E00007FFFFFF0FF +FFFFF8FFFFFFF8FFFFFFF87FFFFFF0007E0000007E0000007E0000007E0000007E000000 +7E0000007E0000007E0000007E0000007E0000007E0000007E0000007E0000007E000000 +7E0018007E007E007E007E007E007E007E007E007E00FE003F00FC003F83FC003FFFF800 +1FFFF0000FFFE00003FFC00000FF001F297EA827>I<7FE01FF800FFF03FFC00FFF03FFC +00FFF03FFC007FF01FFC0003F000FC0003F000FC0003F000FC0003F000FC0003F000FC00 +03F000FC0003F000FC0003F000FC0003F000FC0003F000FC0003F000FC0003F000FC0003 +F000FC0003F000FC0003F000FC0003F000FC0003F000FC0003F000FC0003F001FC0003F0 +01FC0003F003FC0003FC0FFC0001FFFFFFE001FFFFFFF000FFFFFFF0003FFEFFF0000FF8 +7FE024207F9F27>I<7FFC0FFF80FFFE1FFFC0FFFE1FFFC0FFFE1FFFC07FFC0FFF8007C0 +00F80007E001F80003E001F00003E001F00003F003F00001F003E00001F003E00001F807 +E00000F807C00000F807C00000F807C000007C0F8000007C0F8000007C0F8000003E1F00 +00003E1F0000003E1F0000003F3F0000001F3E0000001F3E0000001FFE0000000FFC0000 +000FFC0000000FFC00000007F800000007F800000003F0000022207E9F27>I<7FFE07FF +E0FFFE07FFF0FFFF0FFFF0FFFE07FFF07FFE07FFE00F80001F000F80001F000F80001F00 +0FC0003F0007C0003E0007C0003E0007C0003E0007C0003E0007C0F03E0007C1F83E0003 +E3FC7C0003E3FC7C0003E3FC7C0003E3FC7C0003E79E7C0003E79E7C0001E79E780001E7 +9E780001E79E780001F79EF80001F79EF80001FF0FF80000FF0FF00000FF0FF00000FF0F +F00000FE07F000007C03E00024207F9F27>I<3FFC1FFF007FFE3FFF007FFE3FFF807FFE +3FFF003FFC1FFF0001F807E00000FC0FC00000FC1F8000007E1F0000003F3F0000001F7E +0000001FFC0000000FF800000007F800000003F000000003E000000003F000000007F800 +00000FF80000001FFC0000001F3E0000003E3F0000007E1F0000007C0F800000F80FC000 +01F807E00003F003E0007FFE1FFF807FFE1FFF80FFFF3FFFC07FFE1FFF807FFE1FFF8022 +207E9F27>I E /Fu 6 85 df<7FFFFFFFFFFCFFFFFFFFFFFEFFFFFFFFFFFE7FFFFFFFFF +FC2F047A943C>0 D<6000000030F8000000F8FC000001F87E000003F03F000007E01F80 +000FC00FC0001F8007E0003F0003F0007E0001F800FC0000FC01F800007E03F000003F07 +E000001F8FC000000FDF80000007FF00000003FE00000001FC00000001FC00000003FE00 +000007FF0000000FDF8000001F8FC000003F07E000007E03F00000FC01F80001F800FC00 +03F0007E0007E0003F000FC0001F801F80000FC03F000007E07E000003F0FC000001F8F8 +000000F86000000030252475A43C>2 D<001FC00000FFF80001FFFC0007FFFF000FFFFF +801FFFFFC03FFFFFE03FFFFFE07FFFFFF07FFFFFF0FFFFFFF8FFFFFFF8FFFFFFF8FFFFFF +F8FFFFFFF8FFFFFFF8FFFFFFF8FFFFFFF8FFFFFFF8FFFFFFF87FFFFFF07FFFFFF03FFFFF +E03FFFFFE01FFFFFC00FFFFF8007FFFF0001FFFC0000FFF800001FC0001D1E7CA126>15 +D<700000000000FC0000000000FF00000000007FC0000000001FF00000000007FC000000 +0001FF00000000007FC0000000001FF00000000007FC0000000001FF00000000007FC000 +0000001FF00000000007FC0000000001FF00000000007FC0000000001FF00000000007FC +0000000001FF00000000007FC0000000001FF00000000007FC0000000001FE0000000001 +FE0000000007FC000000001FF0000000007FC000000001FF0000000007FC000000001FF0 +000000007FC000000001FF0000000007FC000000001FF0000000007FC000000001FF0000 +000007FC000000001FF0000000007FC000000001FF0000000007FC000000001FF0000000 +007FC000000000FF0000000000FC00000000007000000000000000000000000000000000 +000000000000000000000000000000000000000000000000000000000000000000000000 +000000000000000000000000000000000000000000000000007FFFFFFFFFFCFFFFFFFFFF +FEFFFFFFFFFFFE7FFFFFFFFFFC2F3E7AB03C>21 D<00001FFFFF80000001FFFFFFF80000 +0FFFFFFFFE00003FFFFFFFFF8000FE1FC03FFFC001E01FC003FFE007801FC000FFF00F00 +1FC0003FF01F001F80001FF83E001F80000FF87E001F800007F87C003F800007F8F8003F +800003F8E0003F800003F800003F000003F800003F000003F000003F000003F000007F00 +0003F000007F000007E000007E000007E000007E000007C000007E00000FC00000FE0000 +0F800000FE00001F000000FC00001E000000FC00003C000000FC000078000001FC0000F0 +000001F80001C0000001F8000780000001F8001F00000003F801FC00000003F07FF00000 +0003F1FF8000000003F7FE0000000007EFE00000000007E0000000000007E00000000000 +0FC000000000000FC000000000000FC000000000001F8000000000001F8000000000001F +8000000000003F0000000000003F0000000000003F0000000000007E0000000000007E00 +00000000007C000000000000FC000000000000FC000000000001F8000000000001E00000 +0000000180000000000035377EB236>80 D<00000000000000E000000000000003C00000 +FFFFFFFFFF800007FFFFFFFFFF00001FFFFFFFFFFC00007FFFFFFFFFF00000FFFFFFFFFF +800003C0001F800000000780003F800000000F80003F800000001F00003F800000003F00 +007F000000007F00007F000000007E00007F00000000FC00007F00000000F80000FE0000 +0000E00000FE00000000000000FE00000000000000FE00000000000001FC000000000000 +01FC00000000000001FC00000000000001FC00000000000003F800000000000003F80000 +0000000003F800000000000003F800000000000007F000000000000007F0000000000000 +07F000000000000007F00000000000000FE00000000000000FE00000000000000FE00000 +000000000FE00000000000001FC00000000000001FC00000000000001FC0000000000000 +1FC00000000000003F800000000000003F800000000000003F800000000000003F800000 +000000007F000000000000007F000000000000007F000000000000007E00000000000000 +FE00000000000000FC00000000000000FC00000000000001FC00000000000001F8000000 +00000003F800000000000003F000000000000003E000000000000007C000000000000007 +800000000000000E0000000000003B3A7DB42A>84 D E /Fv 10 +58 df<00FF0003FFC00781E00F00F01E00783C003C3C003C78001E78001E78001E78001E +F8001FF8001FF8001FF8001FF8001FF8001FF8001FF8001FF8001FF8001FF8001FF8001F +F8001F78001E78001E7C003E3C003C3C003C1E00780F00F00781E003FFC000FF0018227D +A01E>48 D<00E00001E00007E000FFE000F9E00001E00001E00001E00001E00001E00001 +E00001E00001E00001E00001E00001E00001E00001E00001E00001E00001E00001E00001 +E00001E00001E00001E00001E00001E00001E00001E00003F000FFFFC0FFFFC012217AA0 +1E>I<01FC0007FF801C0FC03003E06001F06000F8F800F8FC00FCFC00FCFC007C78007C +3000FC0000FC0000F80000F80001F00003E00003C0000780000F00001E00003800007000 +00E00001C00C03800C0600180C00181800183FFFF87FFFF8FFFFF0FFFFF016217CA01E> +I<00FF0003FFC00F03E01C00F01C00F83E00FC3E007C3E007C1E00FC0C00FC0000F80000 +F80001F00003E0000FC001FF0001FF000003E00000F000007800007C00003E00003F3000 +3F78003FFC003FFC003FFC003EF8007E60007C3800F81E03F00FFFC001FF0018227DA01E +>I<0000E00001E00001E00003E00007E00007E0000DE0001DE00039E00031E00061E000 +E1E000C1E00181E00381E00701E00601E00C01E01C01E01801E03001E07001E0E001E0FF +FFFFFFFFFF0001E00001E00001E00001E00001E00001E00003F0003FFF003FFF18227DA1 +1E>I<1000301E01F01FFFE01FFFC01FFF801FFE001BF000180000180000180000180000 +18000018FE001BFF801F03C01C01E01800F01800F800007800007800007C00007C30007C +78007CF8007CF8007CF80078F000F86000F07001E03801E01E078007FF0001F80016227C +A01E>I<000FC0007FF001F03803C01807803C0F007C1E007C1C00383C00003C00007C00 +00780000787FC0F9FFE0FB80F0FE0038FE003CFC001EFC001EF8001FF8001FF8001FF800 +1F78001F78001F78001F3C001E3C001E1C003C1E00380F00700781E001FFC0007F001822 +7DA01E>I<3000003C00003FFFFF3FFFFF7FFFFE7FFFFC60001C600038600070C000E0C0 +00C00001C0000380000700000600000E00001C00001C0000380000380000780000780000 +780000F00000F00000F00000F00001F00001F00001F00001F00001F00001F00001F00000 +E00018237CA11E>I<007F0003FFC00781E00E00701C003818001C38001C38001C38001C +3C001C3F00381FC0781FE0F00FF9E007FF8001FF8001FFC007FFF00F0FF81C03FC3801FE +70007E70001FE0000FE00007E00007E00007E0000670000E78000C3C00381F00F007FFC0 +00FF0018227DA01E>I<00FE0003FFC00781E00E00701C00783C003878003C78003CF800 +1EF8001EF8001EF8001FF8001FF8001FF8001F78003F78003F3C007F1C007F0F01DF07FF +9F03FE1E00001E00001E00003E00003C1C00383E00783E00703C00E01801C01C07800FFE +0003F80018227DA01E>I E /Fw 15 119 df<00007F0000000003FFE00000000FC0F800 +00003F007C0000007C007E006000F8003F006001F0003F00E003E0001F80C007E0001F80 +C00FC0001F81C00FC0001FC1801F80000FC1803F80000FC3803F00000FC3003F00000FC7 +007F00000FC6007E00000FCE007E00000FDC007E00000FD8007E00000FF800FC00000FF0 +00FC00000FE000FC00000FC0007C00000FC0007C00000FC0007C00000FC0007C00001FC0 +003E00003FC0003E000077C0C01F0001E7E0C00F800783E1C007C07E03E38001FFF801FF +00007F80007C002B227EA031>11 D<00000007F0000000001FFE00000000781F00000001 +E00F800000038007C00000070007E000000E0003E000001C0003E00000380003E0000070 +0003E00000E00007E00000C00007E00001C00007E00001800007E0000380000FE0000300 +000FC0000700000FC0000600001F80000600001F80000E00003F00000C00007E00000C01 +FE7C00001C03FFF80000180703F000001807FFF800001801FE7C00003800003E00003000 +003E00003000003F00003000001F00007000001F00006000001F00006000001F00006000 +001F0000E000003F0000C000003F0000C000003F0000C000003F0001C000007F0001C000 +007E00018000007E0001800000FE0003800000FC0003C00000FC0003C00001F80003C000 +03F00007E00003E00006600007C0000670000F80000638001F00000E1C007E00000C0F01 +F800000C03FFE000000C00FF0000001C0000000000180000000000180000000000180000 +000000380000000000300000000000300000000000300000000000700000000000600000 +000000600000000000600000000000E00000000000E000000000002B447FB42B>I<3C7E +FFFFFFFF7E3C08087A8715>58 D<0000000003000000000000070000000000000F000000 +0000000F0000000000001F8000000000001F8000000000003F8000000000007F80000000 +00007F800000000000FF800000000000FF800000000001BF8000000000033F8000000000 +033FC000000000063FC000000000061FC0000000000C1FC000000000181FC00000000018 +1FC000000000301FC000000000701FC000000000601FC000000000C01FC000000000C01F +E000000001801FE000000003800FE000000003000FE000000006000FE000000006000FE0 +0000000C000FE00000001C000FE000000018000FE000000030000FF000000030000FF000 +00007FFFFFF0000000FFFFFFF0000000FFFFFFF0000001800007F0000001800007F00000 +03000007F0000006000007F0000006000007F800000C000007F800000C000003F8000018 +000003F8000030000003F8000070000003F8000060000003F80000E0000003F80001E000 +0003F80007F0000007FC00FFFF0001FFFFF0FFFF0001FFFFF0FFFE0001FFFFF034367DB5 +3A>65 D<0000000FF800180000007FFF0038000003FFFFC07800000FFC03E0F000003FC0 +00F1F00000FF00003BF00001FC00001FF00007F800001FE0000FF000000FE0001FE00000 +07E0003F80000007E0007F80000007C000FF00000003C001FE00000003C001FC00000003 +C003FC000000038007F800000003800FF000000003800FF000000003801FE00000000300 +1FE000000003003FC000000003003FC000000000007FC000000000007F8000000000007F +8000000000007F800000000000FF800000000000FF000000000000FF000000000000FF00 +0000000000FF000000000000FE000000000000FE000000000000FE000000003800FE0000 +00003800FE000000003000FE000000003000FE000000007000FE000000006000FE000000 +00E0007F00000001C0007F0000000180007F0000000380003F8000000700003F8000000E +00001FC000001C00000FE0000038000007F0000070000003F80001E0000001FC0007C000 +0000FF803F000000003FFFFC000000000FFFF00000000001FF8000000035377CB437>67 +D<000FFFFFFFFFFE000FFFFFFFFFFE000FFFFFFFFFFC00003FC00003FC00003FC00000FC +00003FC000007C00003F8000003C00003F8000003C00007F8000001C00007F8000001800 +007F0000001800007F000000180000FF000000180000FF000000180000FE000300180000 +FE000300180001FE000700380001FE000600300001FC000600000001FC000E00000003FC +000E00000003FC001C00000003F8007C00000003FFFFFC00000007FFFFFC00000007FFFF +F800000007F000F800000007F000380000000FF000380000000FF000300000000FE00030 +0000000FE000300060001FE0007000E0001FE0006000C0001FC0006001C0001FC0000001 +80003FC000000180003FC000000380003F8000000300003F8000000700007F8000000E00 +007F8000000E00007F0000001E00007F0000003C0000FF0000007C0000FF000000F80000 +FE000003F80001FE00001FF000FFFFFFFFFFF000FFFFFFFFFFF000FFFFFFFFFFE0003733 +7DB239>69 D<000FFFFFFFFFFC000FFFFFFFFFFC000FFFFFFFFFF800003FC00007F80000 +3FC00000F800003FC000007800003F8000007800003F8000003800007F8000003800007F +8000003000007F0000003000007F000000300000FF000000300000FF000000300000FE00 +0000300000FE000600300001FE000E00700001FE000C00600001FC000C00000001FC000C +00000003FC001C00000003FC003800000003F8003800000003F800F800000007FFFFF800 +000007FFFFF800000007FFFFF000000007F001F00000000FF000F00000000FF000600000 +000FE000600000000FE000600000001FE000E00000001FE000C00000001FC000C0000000 +1FC000C00000003FC000000000003FC000000000003F8000000000003F8000000000007F +8000000000007F8000000000007F0000000000007F000000000000FF000000000000FF00 +0000000000FE000000000001FF0000000000FFFFFF00000000FFFFFF00000000FFFFFF00 +00000036337DB231>I<000FFFE00001FFFF000FFFE00001FFFF000FFFF00001FFFF0000 +1FF000000FE000003FF80000078000003FF800000700000033FC00000600000033FC0000 +0600000071FE00000E00000071FE00000C00000060FE00000C00000060FF00000C000000 +E07F00001C000000E07F800018000000C03F800018000000C03FC00018000001C03FC000 +38000001C01FE00030000001801FE00030000001800FF00030000003800FF00070000003 +8007F800600000030007F800600000030003F800600000070003FC00E00000070001FC00 +C00000060001FE00C00000060000FE00C000000E0000FF01C000000E0000FF018000000C +00007F818000000C00007F818000001C00003FC38000001C00003FC30000001800001FE3 +0000001800001FE30000003800000FF70000003800000FF600000030000007F600000030 +000007FE00000070000003FE00000070000003FC00000060000001FC00000060000001FC +000000E0000001FC000000E0000000F8000001E0000000F8000007F0000000780000FFFF +800000780000FFFF800000300000FFFF80000030000040337DB23D>78 +D<00000007FC00000000007FFFC000000001F807F00000000FE001F80000001F80007E00 +00007E00003F000000FC00001F800003F000001F800007E000000FC0000FC0000007E000 +1F80000007E0003F80000007F0007F00000007F000FE00000003F000FC00000003F801FC +00000003F803F800000003F803F800000003F807F000000003F807F000000003F80FF000 +000003F80FE000000003F81FE000000007F81FC000000007F83FC000000007F83FC00000 +0007F83FC000000007F87F800000000FF07F800000000FF07F800000000FF07F80000000 +1FE07F800000001FE07F000000001FE0FF000000003FC0FF000000003FC0FF000000003F +80FF000000007F807F000000007F007F00000000FF007F00000000FE007F00000001FC00 +7F00000003F8003F80000003F8003F80000007F0001F8000000FE0001FC000001FC0000F +C000003F80000FE000007E000007E00000FC000003F00001F8000001F80007E0000000FE +001F800000003F80FE000000000FFFF80000000001FF8000000035377DB43A>I<000FFF +FFFFF000000FFFFFFFFE00000FFFFFFFFF0000003FC0007FC000003FC0001FE000003FC0 +0007F000003F800007F000003F800003F800007F800003F800007F800003F800007F0000 +03FC00007F000003FC0000FF000003FC0000FF000007F80000FE000007F80000FE000007 +F80001FE000007F00001FE00000FF00001FC00000FE00001FC00001FC00003FC00003F80 +0003FC00007F000003F80000FE000003F80003FC000007F8001FF0000007FFFFFFC00000 +07FFFFFE00000007F000000000000FF000000000000FF000000000000FE000000000000F +E000000000001FE000000000001FE000000000001FC000000000001FC000000000003FC0 +00000000003FC000000000003F8000000000003F8000000000007F8000000000007F8000 +000000007F0000000000007F000000000000FF000000000000FF000000000000FE000000 +000001FE0000000000FFFFFC00000000FFFFFC00000000FFFFFC0000000036337DB231> +I<000FFFFFFF8000000FFFFFFFF800000FFFFFFFFE0000003FC001FF0000003FC0003FC0 +00003FC0001FE000003F80000FE000003F800007F000007F800007F000007F800007F000 +007F000007F800007F000007F80000FF000007F80000FF00000FF00000FE00000FF00000 +FE00000FF00001FE00001FE00001FE00001FC00001FC00003F800001FC00003F000003FC +00007E000003FC0001FC000003F80007F0000003F8003FC0000007FFFFFE00000007FFFF +F800000007F0007E00000007F0003F0000000FF0001F8000000FF0000FC000000FE0000F +C000000FE0000FE000001FE0000FE000001FE0000FE000001FC0000FE000001FC0000FE0 +00003FC0001FE000003FC0001FE000003F80001FE000003F80001FE000007F80003FE000 +007F80003FC000007F00003FC000007F00003FC00600FF00003FC00E00FF00003FC00C00 +FE00003FC01C01FE00003FC018FFFFFC001FC038FFFFFC000FE070FFFFFC0007E0E00000 +000003FFC000000000007F0037357DB23A>82 D<000000FF0018000007FFE03800001FFF +F87800007F00FCF80000FC001FF00001F0000FF00003E00007F00007C00003F0000F8000 +03E0000F800003E0001F000001E0001F000001E0003E000001C0003E000001C0003E0000 +01C0007E000001C0007E00000180007E00000180007F00000000007F80000000007FC000 +0000003FF0000000003FFF000000003FFFF00000001FFFFE0000000FFFFF80000007FFFF +C0000003FFFFE0000000FFFFF00000000FFFF800000000FFF8000000000FF80000000007 +FC0000000003FC0000000001FC0000000000FC0000000000FC000C000000FC000C000000 +FC001C000000F80018000000F80018000000F80018000001F80038000001F0003C000003 +F0003C000003E0003C000007C0007E00000F80007F00001F80007F80003F00007BE0007C +0000F9FC03F80000F07FFFE00000E01FFF800000C003FE0000002D377CB42F>I<03FFFF +FFFFFFF007FFFFFFFFFFF007FFFFFFFFFFE007F0007F000FE00F8000FF0003E00F0000FF +0001E00E0000FE0001E01C0000FE0000C01C0001FE0000C0180001FE0000C0380001FC00 +01C0380001FC0001C0300003FC000180700003FC000180600003F8000180600003F80001 +80600007F8000380E00007F8000300000007F0000000000007F000000000000FF0000000 +00000FF000000000000FE000000000000FE000000000001FE000000000001FE000000000 +001FC000000000001FC000000000003FC000000000003FC000000000003F800000000000 +3F8000000000007F8000000000007F8000000000007F0000000000007F000000000000FF +000000000000FF000000000000FE000000000000FE000000000001FE000000000001FE00 +0000000001FC000000000001FC000000000003FC000000000003FC000000000003F80000 +00000007FC000000001FFFFFFE0000001FFFFFFE0000001FFFFFFE00000034337FB22D> +I<7FFFF80000FFFEFFFFF80000FFFEFFFFF80000FFFE03FF0000001FE001FE0000000F00 +00FF0000001E0000FF0000001C0000FF0000003800007F8000006000007F800000C00000 +3FC00001C000003FC000038000003FC000070000001FE000060000001FE0000C0000001F +E000180000000FF000300000000FF0006000000007F800E000000007F801C000000007F8 +038000000003FC030000000003FC060000000003FC0C0000000001FE180000000001FE30 +0000000000FF600000000000FFE00000000000FFC000000000007F8000000000007F0000 +000000007F0000000000007E000000000000FE000000000000FE000000000000FE000000 +000000FC000000000001FC000000000001FC000000000001FC000000000001F800000000 +0003F8000000000003F8000000000003F8000000000003F0000000000007F00000000000 +07F000000000000FF00000000007FFFFE000000007FFFFE000000007FFFFE00000003733 +7EB22D>89 D<00F0000E0003FC001F00071E003F800E1F003F801C1F003F80381F801F80 +301F800F80303F800780703F000780603F000380607F000380E07E000300407E00030000 +FE00030000FC00070001FC00060001F800060001F800060001F8000E0003F8000C0003F0 +000C0003F0001C0003F000180003F000380003E000300003E000700003E000600003F000 +E00003F001C00001F003800001F807000000FC1E0000003FF800000007E0000021227EA0 +25>118 D E /Fx 85 128 df<00003FE00FE00001FFF83FF80007E01EF83C001F800FF0 +7E003F001FE0FE007E003FE0FE00FC003FC0FE01F8003FC0FE01F8003FC03803F0001F80 +0003F0001F800003F0001F800003F0001F800003F0001F800003F0001F800003F0001F80 +0003F0001F800003F0001F800003F0001F800003F0001F800003F0001F8000FFFFFFFFFF +C0FFFFFFFFFFC0FFFFFFFFFFC003F0001F800003F0001F800003F0001F800003F0001F80 +0003F0001F800003F0001F800003F0001F800003F0001F800003F0001F800003F0001F80 +0003F0001F800003F0001F800003F0001F800003F0001F800003F0001F800003F0001F80 +0003F0001F800003F0001F800003F0001F800003F0001F800003F0001F800003F0001F80 +0003F0001F800003F0001F800003F0001F800007F8003FC000FFFF83FFFF00FFFF83FFFF +00FFFF83FFFF002F357FB42D>11 D<00001FE0000000FFFC000003F01E00000FC0078000 +1F800780003F000FC0007E001FC000FC001FC000FC001FC001F8001FC001F8000F8001F8 +00000001F800000001F800000001F800000001F800000001F800000001F800000001F800 +000001F800000001F8000FC0FFFFFFFFC0FFFFFFFFC0FFFFFFFFC001F8001FC001F8000F +C001F8000FC001F8000FC001F8000FC001F8000FC001F8000FC001F8000FC001F8000FC0 +01F8000FC001F8000FC001F8000FC001F8000FC001F8000FC001F8000FC001F8000FC001 +F8000FC001F8000FC001F8000FC001F8000FC001F8000FC001F8000FC001F8000FC001F8 +000FC001F8000FC003FC001FE07FFFC1FFFF7FFFC1FFFF7FFFC1FFFF28357FB42B>I<00 +001FF8000000FFFFC00003F00FC0000FC01FC0001F801FC0003F001FC0007E001FC000FC +001FC000FC000FC001F8000FC001F8000FC001F8000FC001F8000FC001F8000FC001F800 +0FC001F8000FC001F8000FC001F8000FC001F8000FC001F8000FC001F8000FC0FFFFFFFF +C0FFFFFFFFC0FFFFFFFFC001F8000FC001F8000FC001F8000FC001F8000FC001F8000FC0 +01F8000FC001F8000FC001F8000FC001F8000FC001F8000FC001F8000FC001F8000FC001 +F8000FC001F8000FC001F8000FC001F8000FC001F8000FC001F8000FC001F8000FC001F8 +000FC001F8000FC001F8000FC001F8000FC001F8000FC001F8000FC003FC001FE07FFFE3 +FFFF7FFFE3FFFF7FFFE3FFFF28357FB42B>I<00001FE000FF00000000FFFC07FFE00000 +03F01E1F80F000000FC0077E003C00001F8007FC003C00003F001FF8007E00007E001FF0 +00FE0000FC001FE000FE0000FC001FE000FE0001F8001FC000FE0001F8000FC0007C0001 +F8000FC000000001F8000FC000000001F8000FC000000001F8000FC000000001F8000FC0 +00000001F8000FC000000001F8000FC000000001F8000FC000000001F8000FC000000001 +F8000FC0007E00FFFFFFFFFFFFFE00FFFFFFFFFFFFFE00FFFFFFFFFFFFFE0001F8000FC0 +00FE0001F8000FC0007E0001F8000FC0007E0001F8000FC0007E0001F8000FC0007E0001 +F8000FC0007E0001F8000FC0007E0001F8000FC0007E0001F8000FC0007E0001F8000FC0 +007E0001F8000FC0007E0001F8000FC0007E0001F8000FC0007E0001F8000FC0007E0001 +F8000FC0007E0001F8000FC0007E0001F8000FC0007E0001F8000FC0007E0001F8000FC0 +007E0001F8000FC0007E0001F8000FC0007E0001F8000FC0007E0001F8000FC0007E0001 +F8000FC0007E0001F8000FC0007E0003FC001FE000FF007FFFC1FFFE0FFFF87FFFC1FFFE +0FFFF87FFFC1FFFE0FFFF83D357FB440>I<007800FC00FC01FC03FC07F807E00FC01F80 +1F003C007800F00040000E0E71B326>19 D<01F80001F80001F80001FF00003F80000FC0 +000FE00007E00007E0000FE0001FC0007F80FFFE00FFE000130E777D22>24 +D<3C7EFFFFFFFFFFFFFFFF7E7E7E7E7E7E7E7E7E7E7E3E3C3C3C3C3C3C3C3C3C3C3C1818 +18181818000000000000003C7EFFFFFFFF7E3C08367AB515>33 D<3C00F07E01F8FF03FC +FF03FCFF83FEFF83FE7F81FE3D80F601800601800601800601800603800E03000C03000C +07001C0600180E00380C00301C00703800E07001C060018017177EB326>I<007C000000 +030003FE000000078007878000000F800F01C000001F801E00E000003F003E00F800007E +003C007C0001FE007C007F8007FC007C0033FFFEF8007800307FF9F800F800380001F000 +F800180003E000F800180007E000F800180007C000F80018000F8000F80018001F8000F8 +0018003F0000F80018003E0000F80018007C0000F8003800FC000078003000F800007C00 +3001F000007C007003F000003C006003E000003E00E007C000001E00C00FC000000F01C0 +0F8000000787801F00000003FE003F000000007C003E0000000000007C001F00000000FC +00FF80000000F801E1E0000001F003C070000003F0078030000003E00F8038000007C00F +001800000FC01F001C00000F801F000C00001F001E000C00003F003E000E00003E003E00 +0600007C003E00060000FC003E00060001F8003E00060001F0003E00060003E0003E0006 +0007E0003E00060007C0003E0006000F80003E000E001F80001E000C001F00001F000C00 +3E00001F001C007E00000F0018007C00000F803800F8000007803001F8000003C07001F0 +000001E1E001E0000000FF8000C00000001F00373C7CB740>37 D<3C007E00FF00FF00FF +80FF807F803D800180018001800180038003000300070006000E000C001C003800700060 +0009177AB315>39 D<0000C00001C0000380000F00000E00001C00003C0000780000F000 +00F00001E00003C00003C00007C0000780000F80000F00001F00001F00001E00003E0000 +3E00003E00003C00007C00007C00007C00007C00007C0000F80000F80000F80000F80000 +F80000F80000F80000F80000F80000F80000F80000F80000F80000F80000F80000F80000 +7C00007C00007C00007C00007C00003C00003E00003E00003E00001E00001F00001F0000 +0F00000F800007800007C00003C00003C00001E00000F00000F000007800003C00001C00 +000E00000F000003800001C00000C0124A79B71E>I<C00000E000007000003C00001C00 +000E00000F000007800003C00003C00001E00000F00000F00000F800007800007C00003C +00003E00003E00001E00001F00001F00001F00000F00000F80000F80000F80000F80000F +800007C00007C00007C00007C00007C00007C00007C00007C00007C00007C00007C00007 +C00007C00007C00007C00007C0000F80000F80000F80000F80000F80000F00001F00001F +00001F00001E00003E00003E00003C00007C0000780000F80000F00000F00001E00003C0 +0003C0000780000F00000E00001C00003C0000700000E00000C00000124A7CB71E>I<00 +0E0000001F0000001F0000001F0000001F0000001F0000001F0000700E01C0F80E03E0FE +0E0FE0FF0E1FE07F8E3FC01FEEFF0003FFF80000FFE000003F8000003F800000FFE00003 +FFF8001FEEFF007F8E3FC0FF0E1FE0FE0E0FE0F80E03E0700E01C0001F0000001F000000 +1F0000001F0000001F0000001F0000000E00001B207BB726>I<00000060000000000000 +F0000000000000F0000000000000F0000000000000F0000000000000F0000000000000F0 +000000000000F0000000000000F0000000000000F0000000000000F0000000000000F000 +0000000000F0000000000000F0000000000000F0000000000000F0000000000000F00000 +00000000F0000000000000F0000000000000F0000000000000F0000000000000F0000000 +000000F00000007FFFFFFFFFFFC0FFFFFFFFFFFFE0FFFFFFFFFFFFE07FFFFFFFFFFFC000 +0000F0000000000000F0000000000000F0000000000000F0000000000000F00000000000 +00F0000000000000F0000000000000F0000000000000F0000000000000F0000000000000 +F0000000000000F0000000000000F0000000000000F0000000000000F0000000000000F0 +000000000000F0000000000000F0000000000000F0000000000000F0000000000000F000 +0000000000F00000000000006000000033327CAB3C>I<3C007E00FF00FF00FF80FF807F +803D800180018001800180038003000300070006000E000C001C0038007000600009177A +8715>I<FFFFF0FFFFF0FFFFF0FFFFF0FFFFF014057F921A>I<3C7EFFFFFFFF7E3C08087A +8715>I<0000003000000078000000F8000000F8000000F0000001F0000001F0000001E0 +000003E0000003E0000003C0000007C0000007C00000078000000F8000000F8000000F00 +00001F0000001F0000003E0000003E0000003C0000007C0000007C00000078000000F800 +0000F8000000F0000001F0000001F0000001E0000003E0000003E0000003C0000007C000 +0007C000000F8000000F8000000F0000001F0000001F0000001E0000003E0000003E0000 +003C0000007C0000007C00000078000000F8000000F8000000F0000001F0000001F00000 +01E0000003E0000003E0000007C0000007C00000078000000F8000000F8000000F000000 +1F0000001F0000001E0000003E0000003E0000003C0000007C0000007C00000078000000 +F8000000F8000000F0000000600000001D4B7CB726>I<000FE000007FFC0000F83E0003 +E00F8007C007C0078003C00F8003E01F0001F01F0001F03F0001F83F0001F83E0000F87E +0000FC7E0000FC7E0000FC7E0000FC7E0000FCFE0000FEFE0000FEFE0000FEFE0000FEFE +0000FEFE0000FEFE0000FEFE0000FEFE0000FEFE0000FEFE0000FEFE0000FEFE0000FEFE +0000FEFE0000FEFE0000FEFE0000FEFE0000FE7E0000FC7E0000FC7E0000FC7E0000FC7E +0000FC3F0001F83F0001F83F0001F81F0001F01F0001F00F8003E007C007C007C007C003 +E00F8000F83E00007FFC00000FE0001F347DB126>I<00070000000F0000001F0000007F +000007FF0000FFFF0000FFBF0000F83F0000003F0000003F0000003F0000003F0000003F +0000003F0000003F0000003F0000003F0000003F0000003F0000003F0000003F0000003F +0000003F0000003F0000003F0000003F0000003F0000003F0000003F0000003F0000003F +0000003F0000003F0000003F0000003F0000003F0000003F0000003F0000003F0000003F +0000003F0000003F0000003F0000003F0000003F0000003F0000007F80007FFFFF807FFF +FF807FFFFF8019327AB126>I<003FC00000FFF00003FFFC000F80FF001E007F801C003F +C038001FE070000FE070000FF0600007F0FC0007F0FE0007F8FF0007F8FF0003F8FF0003 +F8FF0003F87E0007F83C0007F8000007F8000007F0000007F000000FF000000FE000001F +C000001FC000003F8000003F0000007E000000FC000001F8000001F0000003E0000007C0 +00000F8000001F0000003E0000003C00000078001800F0001801E0001803C00030078000 +300F0000301C0000701FFFFFF03FFFFFF07FFFFFF0FFFFFFE0FFFFFFE0FFFFFFE01D327C +B126>I<001FE00000FFFC0001FFFF0007E03F800F001FC01E000FE01C0007F03F0007F0 +3F8007F83F8003F83FC003F83F8003F83F8003F81F0007F8000007F8000007F0000007F0 +00000FE000000FC000001FC000003F8000007E000001F800007FE000007FFC0000003F00 +00001FC000000FE0000007F0000007F8000003F8000003FC000001FC000001FE000001FE +000001FE7E0001FEFF0001FEFF0001FEFF0001FEFF0001FEFF0001FCFE0003FC780003FC +700007F8380007F03C000FF01F001FE00FE03F8003FFFF0000FFFC00001FE0001F347DB1 +26>I<000001C000000001C000000003C000000007C000000007C00000000FC00000001F +C00000001FC00000003FC00000007FC00000006FC0000000CFC0000001CFC00000038FC0 +0000030FC00000070FC000000E0FC000000C0FC000001C0FC00000380FC00000300FC000 +00700FC00000E00FC00000C00FC00001800FC00003800FC00003000FC00006000FC0000E +000FC0000C000FC00018000FC00038000FC00030000FC00060000FC000E0000FC000FFFF +FFFF80FFFFFFFF80FFFFFFFF8000000FC00000000FC00000000FC00000000FC00000000F +C00000000FC00000000FC00000000FC00000000FC00000001FE0000007FFFF800007FFFF +800007FFFF8021337EB226>I<0C0000C00FC00FC00FFFFF800FFFFF000FFFFE000FFFFC +000FFFF0000FFFC0000C1800000C0000000C0000000C0000000C0000000C0000000C0000 +000C0000000C0000000C0000000C0FC0000C7FF8000CF07C000FC03F000F001F800F000F +C00E000FC00C0007E00C0007E0000007F0000003F0000003F0000003F8000003F8000003 +F8000003F8180003F87E0003F8FE0003F8FE0003F8FE0003F8FE0003F0FE0007F0F80007 +F0600007E0700007E070000FC038001FC03C001F801E007F000F80FE0007FFF80001FFE0 +00003F80001D347CB126>I<0000FE000007FF80001FFFE0003F00F0007C007001F801F8 +01F003F803E003F807E003F80FC003F80FC001F01F8000001F8000003F0000003F000000 +3F0000007F0000007E0000007E07F0007E1FFC00FE381F00FE700F80FEE007C0FFC003E0 +FF8003F0FF8001F8FF0001F8FF0001FCFF0000FCFF0000FCFE0000FEFE0000FEFE0000FE +FE0000FEFE0000FE7E0000FE7E0000FE7E0000FE7E0000FE7F0000FE3F0000FC3F0000FC +1F0001FC1F8001F80F8001F00FC003F007C007E003E00FC001F81F8000FFFF00003FFC00 +000FE0001F347DB126>I<300000003C0000003FFFFFFF3FFFFFFF3FFFFFFF7FFFFFFE7F +FFFFFE7FFFFFFC700000386000003060000070600000E0C00000C0C00001C0C000038000 +0007000000060000000E0000001C00000018000000380000007000000070000000E00000 +00E0000001C0000003C0000003C0000003C0000007800000078000000F8000000F800000 +0F8000001F8000001F0000001F0000003F0000003F0000003F0000003F0000003F000000 +7F0000007F0000007F0000007F0000007F0000007F0000007F0000007F0000007F000000 +1C000020347CB126>I<000FE000007FFC0000FFFF0003F01F8007C007C00F0003E00E00 +01F01E0000F01C0000F83C0000783C0000783C0000783E0000783E0000783F0000F83F80 +00F03FC001F01FF001E01FF803C00FFE078007FF0F0003FFDE0001FFF80000FFF800003F +FE00003FFF0000F7FFC003E3FFE00780FFF00F007FF81E001FF83E0007FC3C0003FC7800 +01FC7800007EF800007EF000003EF000003EF000001EF000001EF000001EF800001EF800 +003C7800003C7C0000783E0000781F0000F00F8003E007F01FC001FFFF00007FFC00001F +E0001F347DB126>I<000FE000007FF80000FFFE0003F83F0007E00F800FC007C01F8007 +E01F8003F03F0003F07F0001F87E0001F87E0001F8FE0001FCFE0000FCFE0000FCFE0000 +FCFE0000FCFE0000FEFE0000FEFE0000FEFE0000FEFE0000FE7E0001FE7E0001FE7F0001 +FE3F0001FE3F0003FE1F8003FE0F8007FE07C00EFE03E01CFE01F038FE007FF0FE001FC0 +FC000000FC000001FC000001FC000001F8000001F8000001F0000003F01F0003E03F8007 +E03F8007C03F800FC03F801F803F003F001C007E001F01FC000FFFF00003FFC00000FF00 +001F347DB126>I<3C7EFFFFFFFF7E3C000000000000000000000000000000003C7EFFFF +FFFF7E3C08207A9F15>I<3C7EFFFFFFFF7E3C000000000000000000000000000000003C +7EFEFFFFFF7F3F03030303070606060E0C1C38307060082F7A9F15>I<7FFFFFFFFFFFC0 +FFFFFFFFFFFFE0FFFFFFFFFFFFE07FFFFFFFFFFFC0000000000000000000000000000000 +000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000007FFFFF +FFFFFFC0FFFFFFFFFFFFE0FFFFFFFFFFFFE07FFFFFFFFFFFC033147C9C3C>61 +D<000000E0000000000000E0000000000000E0000000000001F0000000000001F0000000 +000003F8000000000003F8000000000003F8000000000007FC000000000007FC00000000 +0007FC00000000000DFE00000000000CFE00000000000CFE0000000000187F0000000000 +187F0000000000187F0000000000303F8000000000303F8000000000703FC00000000060 +1FC000000000601FC000000000E01FE000000000C00FE000000000C00FE000000001800F +F0000000018007F0000000018007F0000000030003F8000000030003F8000000030003F8 +000000060001FC000000060001FC0000000E0001FE0000000FFFFFFE0000000FFFFFFE00 +00001FFFFFFF0000001800007F0000001800007F0000003000007F8000003000003F8000 +003000003F8000006000001FC000006000001FC000006000001FC00000C000000FE00000 +C000000FE00001C000000FF00001C0000007F00003E0000007F0001FF000000FF800FFFE +0001FFFFE0FFFE0001FFFFE0FFFE0001FFFFE033367DB53A>65 D<FFFFFFFF0000FFFFFF +FFE000FFFFFFFFF80003FC0003FE0001FC0000FF0001FC00007F8001FC00003FC001FC00 +001FC001FC00001FE001FC00000FE001FC00000FF001FC00000FF001FC00000FF001FC00 +000FF001FC00000FF001FC00000FF001FC00000FE001FC00001FE001FC00001FC001FC00 +003F8001FC00007F0001FC0000FE0001FC0003FC0001FFFFFFF00001FFFFFFE00001FC00 +07FC0001FC0000FE0001FC00003F8001FC00001FC001FC00000FE001FC00000FF001FC00 +0007F001FC000007F801FC000003F801FC000003FC01FC000003FC01FC000003FC01FC00 +0003FC01FC000003FC01FC000003FC01FC000003F801FC000007F801FC000007F801FC00 +000FF001FC00001FE001FC00003FE001FC00007FC003FC0003FF00FFFFFFFFFE00FFFFFF +FFF800FFFFFFFFC0002E337DB236>I<000003FE000C00003FFF801C0000FFFFE01C0003 +FE01F83C000FF0003C7C001FC0000EFC007F800007FC00FE000003FC01FC000001FC03FC +000000FC03F8000000FC07F00000007C0FE00000007C0FE00000003C1FC00000003C1FC0 +0000001C3FC00000001C3F800000001C7F800000000C7F800000000C7F800000000C7F00 +0000000CFF0000000000FF0000000000FF0000000000FF0000000000FF0000000000FF00 +00000000FF0000000000FF0000000000FF0000000000FF0000000000FF00000000007F00 +000000007F800000000C7F800000000C7F800000000C3F800000000C3FC00000000C1FC0 +0000001C1FC0000000180FE0000000180FE00000003807F00000003003F80000007003FC +000000E001FC000000E000FE000001C0007F80000380001FC0000F00000FF0001E000003 +FE00FC000000FFFFF00000003FFFC000000003FE00002E377CB437>I<FFFFFFFF800000 +FFFFFFFFF00000FFFFFFFFFE000001FE0001FF000000FE00003FC00000FE00000FE00000 +FE000007F00000FE000003F80000FE000001FC0000FE000000FE0000FE0000007E0000FE +0000007F0000FE0000003F8000FE0000003F8000FE0000001FC000FE0000001FC000FE00 +00001FC000FE0000000FE000FE0000000FE000FE0000000FE000FE0000000FE000FE0000 +000FF000FE0000000FF000FE0000000FF000FE0000000FF000FE0000000FF000FE000000 +0FF000FE0000000FF000FE0000000FF000FE0000000FF000FE0000000FF000FE0000000F +E000FE0000000FE000FE0000000FE000FE0000001FE000FE0000001FC000FE0000001FC0 +00FE0000001F8000FE0000003F8000FE0000003F0000FE0000007F0000FE000000FE0000 +FE000000FC0000FE000001F80000FE000007F00000FE00000FE00000FE00003FC00001FE +0001FF8000FFFFFFFFFE0000FFFFFFFFF80000FFFFFFFF80000034337EB23B>I<FFFFFF +FFFFC0FFFFFFFFFFC0FFFFFFFFFFC003FC00007FC001FC00000FC001FC000003E001FC00 +0001E001FC000001E001FC000000E001FC000000E001FC0000006001FC0000006001FC00 +00006001FC0000006001FC0006003001FC0006003001FC0006003001FC0006003001FC00 +06000001FC000E000001FC000E000001FC001E000001FC007E000001FFFFFE000001FFFF +FE000001FFFFFE000001FC007E000001FC001E000001FC000E000001FC000E000001FC00 +06000001FC0006000C01FC0006000C01FC0006000C01FC0006001801FC0000001801FC00 +00001801FC0000001801FC0000001801FC0000003801FC0000003801FC0000007001FC00 +00007001FC000000F001FC000001F001FC000003F001FC000007F003FC00007FF0FFFFFF +FFFFE0FFFFFFFFFFE0FFFFFFFFFFE02E337DB234>I<FFFFFFFFFF80FFFFFFFFFF80FFFF +FFFFFF8003FC0000FF8001FC00001F8001FC000007C001FC000003C001FC000003C001FC +000001C001FC000001C001FC000000C001FC000000C001FC000000C001FC000000C001FC +0000006001FC000C006001FC000C006001FC000C006001FC000C000001FC000C000001FC +001C000001FC001C000001FC003C000001FC00FC000001FFFFFC000001FFFFFC000001FF +FFFC000001FC00FC000001FC003C000001FC001C000001FC001C000001FC000C000001FC +000C000001FC000C000001FC000C000001FC000C000001FC0000000001FC0000000001FC +0000000001FC0000000001FC0000000001FC0000000001FC0000000001FC0000000001FC +0000000001FC0000000001FC0000000003FE00000000FFFFFE000000FFFFFE000000FFFF +FE0000002B337DB232>I<000003FE000C0000003FFF801C000000FFFFE01C000003FE01 +F83C00000FF0003C7C00001FC0000EFC00007F800007FC0000FE000003FC0001FC000001 +FC0003FC000000FC0003F8000000FC0007F00000007C000FE00000007C000FE00000003C +001FC00000003C001FC00000001C003FC00000001C003F800000001C007F800000000C00 +7F800000000C007F800000000C007F000000000C00FF000000000000FF000000000000FF +000000000000FF000000000000FF000000000000FF000000000000FF000000000000FF00 +0000000000FF000000000000FF000000000000FF000003FFFFE07F000003FFFFE07F8000 +03FFFFE07F80000003FE007F80000001FC003F80000001FC003FC0000001FC001FC00000 +01FC001FC0000001FC000FE0000001FC000FF0000001FC0007F0000001FC0003F8000001 +FC0003FC000001FC0001FE000003FC0000FF000003FC00007F800007FC00001FC0000E7C +00000FF0001C3C000003FE00F81C000000FFFFF00C0000003FFFC00000000003FE000000 +33377CB43C>I<FFFFFE03FFFFF8FFFFFE03FFFFF8FFFFFE03FFFFF801FF000007FC0000 +FE000003F80000FE000003F80000FE000003F80000FE000003F80000FE000003F80000FE +000003F80000FE000003F80000FE000003F80000FE000003F80000FE000003F80000FE00 +0003F80000FE000003F80000FE000003F80000FE000003F80000FE000003F80000FE0000 +03F80000FE000003F80000FE000003F80000FE000003F80000FFFFFFFFF80000FFFFFFFF +F80000FFFFFFFFF80000FE000003F80000FE000003F80000FE000003F80000FE000003F8 +0000FE000003F80000FE000003F80000FE000003F80000FE000003F80000FE000003F800 +00FE000003F80000FE000003F80000FE000003F80000FE000003F80000FE000003F80000 +FE000003F80000FE000003F80000FE000003F80000FE000003F80000FE000003F80000FE +000003F80000FE000003F80001FF000007FC00FFFFFE03FFFFF8FFFFFE03FFFFF8FFFFFE +03FFFFF835337EB23A>I<FFFFFEFFFFFEFFFFFE01FF0000FE0000FE0000FE0000FE0000 +FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000 +FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000 +FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000 +FE0000FE0000FE0001FF00FFFFFEFFFFFEFFFFFE17337EB21C>I<007FFFFF007FFFFF00 +7FFFFF00003FE000001FC000001FC000001FC000001FC000001FC000001FC000001FC000 +001FC000001FC000001FC000001FC000001FC000001FC000001FC000001FC000001FC000 +001FC000001FC000001FC000001FC000001FC000001FC000001FC000001FC000001FC000 +001FC000001FC000001FC000001FC000001FC000001FC000001FC000001FC000001FC000 +001FC07E001FC0FF001FC0FF001FC0FF001FC0FF001FC0FF003F80FE003F8060003F0070 +007F003800FE001C01FC000F03F00003FFC00000FF000020357DB227>I<FFFFFE0007FF +F8FFFFFE0007FFF8FFFFFE0007FFF801FF000001FF0000FE000000FC0000FE000000F000 +00FE000001E00000FE000003C00000FE000007000000FE00000E000000FE00001C000000 +FE000038000000FE000070000000FE0000E0000000FE0001C0000000FE000380000000FE +000700000000FE000E00000000FE001C00000000FE003800000000FE00F800000000FE01 +FC00000000FE03FC00000000FE07FE00000000FE0EFF00000000FE1CFF00000000FE387F +80000000FE703FC0000000FEE01FC0000000FFC01FE0000000FF800FF0000000FF0007F8 +000000FE0007F8000000FE0003FC000000FE0001FE000000FE0001FE000000FE0000FF00 +0000FE00007F800000FE00007F800000FE00003FC00000FE00001FE00000FE00000FE000 +00FE00000FF00000FE000007F80000FE000003FC0000FE000003FC0000FE000003FE0001 +FF000007FF80FFFFFE003FFFFCFFFFFE003FFFFCFFFFFE003FFFFC36337EB23C>I<FFFF +FE000000FFFFFE000000FFFFFE00000003FE0000000001FC0000000001FC0000000001FC +0000000001FC0000000001FC0000000001FC0000000001FC0000000001FC0000000001FC +0000000001FC0000000001FC0000000001FC0000000001FC0000000001FC0000000001FC +0000000001FC0000000001FC0000000001FC0000000001FC0000000001FC0000000001FC +0000000001FC0000000001FC0000000001FC0000000001FC0000000001FC0000000001FC +0000000001FC0000018001FC0000018001FC0000018001FC0000018001FC0000038001FC +0000030001FC0000030001FC0000030001FC0000030001FC0000070001FC0000070001FC +00000F0001FC00001F0001FC00003F0001FC00007F0001FC0000FE0003FC0007FE00FFFF +FFFFFE00FFFFFFFFFE00FFFFFFFFFE0029337DB230>I<FFFC00000001FFF8FFFE000000 +03FFF8FFFE00000003FFF803FE00000003FE0001BF00000006FC0001BF00000006FC0001 +BF00000006FC00019F8000000CFC00019F8000000CFC00018FC0000018FC00018FC00000 +18FC00018FC0000018FC000187E0000030FC000187E0000030FC000183F0000060FC0001 +83F0000060FC000183F0000060FC000181F80000C0FC000181F80000C0FC000181F80000 +C0FC000180FC000180FC000180FC000180FC0001807E000300FC0001807E000300FC0001 +807E000300FC0001803F000600FC0001803F000600FC0001801F800C00FC0001801F800C +00FC0001801F800C00FC0001800FC01800FC0001800FC01800FC0001800FC01800FC0001 +8007E03000FC00018007E03000FC00018003F06000FC00018003F06000FC00018003F060 +00FC00018001F8C000FC00018001F8C000FC00018001F8C000FC00018000FD8000FC0001 +8000FD8000FC000180007F0000FC000180007F0000FC000180007F0000FC0003C0003E00 +00FC000FF0003E0001FE00FFFF001C007FFFF8FFFF001C007FFFF8FFFF001C007FFFF83D +337CB246>I<FFFE00001FFFF8FFFF00001FFFF8FFFF80001FFFF800FF800000FF0000FF +C000003C0000DFE00000180000CFF00000180000CFF00000180000C7F80000180000C3FC +0000180000C3FC0000180000C1FE0000180000C0FF0000180000C07F8000180000C07F80 +00180000C03FC000180000C01FE000180000C01FE000180000C00FF000180000C007F800 +180000C003FC00180000C003FC00180000C001FE00180000C000FF00180000C000FF0018 +0000C0007F80180000C0003FC0180000C0001FE0180000C0001FE0180000C0000FF01800 +00C00007F8180000C00007F8180000C00003FC180000C00001FE180000C00000FF180000 +C00000FF180000C000007F980000C000003FD80000C000003FD80000C000001FF80000C0 +00000FF80000C0000007F80000C0000007F80000C0000003F80000C0000001F80000C000 +0001F80001E0000000F80007F80000007800FFFFC000003800FFFFC000003800FFFFC000 +00180035337EB23A>I<000007FC00000000007FFFC000000001FC07F000000007E000FC +0000000F80003E0000003F00001F8000007E00000FC00000FC000007E00001F8000003F0 +0003F0000001F80003F0000001F80007E0000000FC000FE0000000FE000FC00000007E00 +1FC00000007F001FC00000007F003F800000003F803F800000003F807F800000003FC07F +800000003FC07F000000001FC07F000000001FC0FF000000001FE0FF000000001FE0FF00 +0000001FE0FF000000001FE0FF000000001FE0FF000000001FE0FF000000001FE0FF0000 +00001FE0FF000000001FE0FF000000001FE0FF000000001FE07F000000001FC07F800000 +003FC07F800000003FC07F800000003FC03F800000003F803FC00000007F803FC0000000 +7F801FC00000007F001FE0000000FF000FE0000000FE0007F0000001FC0007F0000001FC +0003F8000003F80001F8000003F00000FC000007E000007E00000FC000003F00001F8000 +001FC0007F00000007E000FC00000001FC07F0000000007FFFC00000000007FC00000033 +377CB43C>I<FFFFFFFE0000FFFFFFFFC000FFFFFFFFF00003FC0007FC0001FC0000FE00 +01FC00007F0001FC00003F8001FC00001FC001FC00001FE001FC00000FE001FC00000FE0 +01FC00000FF001FC00000FF001FC00000FF001FC00000FF001FC00000FF001FC00000FF0 +01FC00000FE001FC00000FE001FC00001FC001FC00001FC001FC00003F8001FC00007F00 +01FC0000FE0001FC0007F80001FFFFFFF00001FFFFFF800001FC0000000001FC00000000 +01FC0000000001FC0000000001FC0000000001FC0000000001FC0000000001FC00000000 +01FC0000000001FC0000000001FC0000000001FC0000000001FC0000000001FC00000000 +01FC0000000001FC0000000001FC0000000001FC0000000001FC0000000001FC00000000 +03FE00000000FFFFF8000000FFFFF8000000FFFFF80000002C337DB234>I<FFFFFFFC00 +0000FFFFFFFF800000FFFFFFFFF0000001FE0007FC000000FE0001FE000000FE00007F00 +0000FE00003F800000FE00001FC00000FE00001FE00000FE00000FE00000FE00000FF000 +00FE00000FF00000FE00000FF00000FE00000FF00000FE00000FF00000FE00000FF00000 +FE00000FE00000FE00000FE00000FE00001FC00000FE00001FC00000FE00003F800000FE +00007E000000FE0001FC000000FE000FF0000000FFFFFFC0000000FFFFFF00000000FE00 +1FC0000000FE0007F0000000FE0003F8000000FE0001FC000000FE0000FC000000FE0000 +FE000000FE00007E000000FE00007F000000FE00007F000000FE00007F000000FE00007F +000000FE00007F000000FE00007F800000FE00007F800000FE00007F800000FE00007F80 +0000FE00007F800000FE00007F800C00FE00007FC00C00FE00007FC00C00FE00003FC01C +01FF00003FC018FFFFFE001FE018FFFFFE000FE038FFFFFE0007F0700000000001FFE000 +000000003F8036357EB239>82 D<001FE00300007FFC070001FFFF070007F01FCF000F80 +03FF001F0000FF003E00007F003E00003F007C00001F007C00001F007800000F00F80000 +0700F800000700F800000700F800000700FC00000300FC00000300FE00000300FE000000 +007F000000007FC00000003FF00000003FFF0000001FFFF000000FFFFF000007FFFFC000 +03FFFFF00000FFFFF800003FFFFC000003FFFE0000003FFF00000003FF00000000FF8000 +00007F800000003F800000001FC00000000FC0C000000FC0C000000FC0C0000007C0C000 +0007C0C0000007C0E0000007C0E0000007C0F000000F80F000000F80F800000F00FC0000 +1F00FE00003E00FF00007E00FFC000FC00F1FC03F800E0FFFFE000E01FFF8000C003FE00 +0022377CB42B>I<7FFFFFFFFFFE7FFFFFFFFFFE7FFFFFFFFFFE7F8007F001FE7C0007F0 +003E780007F0001E700007F0000E700007F0000E600007F00006E00007F00007E00007F0 +0007E00007F00007C00007F00003C00007F00003C00007F00003C00007F00003C00007F0 +0003C00007F00003000007F00000000007F00000000007F00000000007F00000000007F0 +0000000007F00000000007F00000000007F00000000007F00000000007F00000000007F0 +0000000007F00000000007F00000000007F00000000007F00000000007F00000000007F0 +0000000007F00000000007F00000000007F00000000007F00000000007F00000000007F0 +0000000007F00000000007F00000000007F00000000007F00000000007F00000000007F0 +000000000FF80000001FFFFFFC00001FFFFFFC00001FFFFFFC0030337DB237>I<FFFFFE +001FFFF8FFFFFE001FFFF8FFFFFE001FFFF801FF000000FF0000FE0000003C0000FE0000 +00180000FE000000180000FE000000180000FE000000180000FE000000180000FE000000 +180000FE000000180000FE000000180000FE000000180000FE000000180000FE00000018 +0000FE000000180000FE000000180000FE000000180000FE000000180000FE0000001800 +00FE000000180000FE000000180000FE000000180000FE000000180000FE000000180000 +FE000000180000FE000000180000FE000000180000FE000000180000FE000000180000FE +000000180000FE000000180000FE000000180000FE000000180000FE000000180000FE00 +0000180000FE000000180000FE0000003800007F0000003000007F0000003000007F0000 +007000003F8000006000001F800000E000001FC00001C000000FC00003C0000007E00007 +80000003F0000F00000001FC001E00000000FF00FC000000003FFFF0000000000FFFC000 +00000001FF00000035357EB23A>I<FFFFF00003FFF8FFFFF00003FFF8FFFFF00003FFF8 +07FE0000007FC003FC0000001F0001FC0000001E0001FE0000001C0000FE000000180000 +FE000000180000FF0000003800007F0000003000007F0000003000003F8000006000003F +8000006000003FC00000E000001FC00000C000001FC00000C000000FE000018000000FE0 +00018000000FF0000180000007F0000300000007F0000300000003F8000600000003F800 +0600000003FC000600000001FC000C00000001FC000C00000001FE001C00000000FE0018 +00000000FF0018000000007F0030000000007F0030000000007F8070000000003F806000 +0000003F8060000000001FC0C0000000001FC0C0000000001FE1C0000000000FE1800000 +00000FE1800000000007F3000000000007F3000000000007FB000000000003FE00000000 +0003FE000000000003FE000000000001FC000000000001FC000000000000F80000000000 +00F8000000000000F8000000000000700000000000007000000035357EB23A>I<FFFFF0 +07FFFF800FFFF0FFFFF007FFFF800FFFF0FFFFF007FFFF800FFFF003FF00003FF00001FF +0001FC00001FE000007C0001FC00001FE00000380001FE00000FE00000380000FE00000F +E00000300000FE00000FF00000300000FF000007F000007000007F000007F00000600000 +7F000007F000006000007F80000FF80000E000003F80000FF80000C000003F80000FF800 +00C000003FC00019FC0001C000001FC00019FC00018000001FC00019FC00018000001FE0 +0030FE00038000000FE00030FE00030000000FE00030FE00030000000FF000607F000700 +000007F000607F000600000007F000607F000600000007F800C03F800E00000003F800C0 +3F800C00000003F800C03F800C00000003FC01801FC01C00000001FC01801FC018000000 +01FC01801FC01800000001FE03000FE03800000000FE03000FE03000000000FE03000FE0 +3000000000FF060007F030000000007F060007F060000000007F060007F060000000007F +8C0003F860000000003F8C0003F8C0000000003F8C0003F8C0000000003FD80001FCC000 +0000001FD80001FD80000000001FD80001FD80000000001FF00000FF80000000000FF000 +00FF00000000000FF00000FF00000000000FE000007F000000000007E000007E00000000 +0007E000007E000000000007C000003E000000000003C000003C000000000003C000003C +0000000000038000001C000000000001800000180000004C357FB24F>I<FFFFF80000FF +FEFFFFF80000FFFEFFFFF80000FFFE03FF8000003FE001FF0000001F8000FF0000000E00 +007F8000001C00003FC000001800003FC000003800001FE000003000001FE00000600000 +0FF00000E0000007F80000C0000007F80001C0000003FC000180000001FE000300000001 +FE000700000000FF000600000000FF000C000000007F801C000000003FC018000000003F +C038000000001FE030000000000FF060000000000FF0E00000000007F8C00000000007F9 +800000000003FF800000000001FF000000000001FE000000000000FE000000000000FE00 +0000000000FE000000000000FE000000000000FE000000000000FE000000000000FE0000 +00000000FE000000000000FE000000000000FE000000000000FE000000000000FE000000 +000000FE000000000000FE000000000000FE000000000000FE000000000000FE00000000 +0001FF0000000000FFFFFC00000000FFFFFC00000000FFFFFC000037337FB23A>89 +D<FFF0FFF0FFF0FFF0F000F000F000F000F000F000F000F000F000F000F000F000F000F0 +00F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F0 +00F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F0 +00F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000FF +F0FFF0FFF0FFF00C4B79B715>91 D<03000C07001C0E00381C00701800603800E03000C0 +7001C0600180600180E00380C00300C00300C00300C00300DE0378FF03FCFF83FEFF83FE +7F81FE7F81FE3F00FC1E0078171774B326>I<FFF0FFF0FFF0FFF000F000F000F000F000 +F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000 +F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000 +F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000 +F000F000F000F000F000F000F000F000F0FFF0FFF0FFF0FFF00C4B7FB715>I<007F8000 +0003FFF000000F80FC00001C003E00003F003F00003F801F80003F800FC0003F800FC000 +3F8007E0001F0007E000000007E000000007E000000007E000000007E0000001FFE00000 +1FFFE00000FF87E00003FC07E0000FF007E0001FC007E0003F8007E0007F8007E0007F00 +07E000FF0007E0C0FE0007E0C0FE0007E0C0FE0007E0C0FE000FE0C0FE000FE0C0FF001F +E0C07F003BE0C03F8071F1801FC1E1FF8007FFC0FF0000FE003C0022237DA126>97 +D<03F0000000FFF0000000FFF0000000FFF000000007F000000003F000000003F0000000 +03F000000003F000000003F000000003F000000003F000000003F000000003F000000003 +F000000003F000000003F000000003F000000003F000000003F03F800003F0FFE00003F3 +C0F80003F7007E0003FE003F0003FC001F8003F8000FC003F0000FC003F00007E003F000 +07F003F00007F003F00003F003F00003F803F00003F803F00003F803F00003F803F00003 +F803F00003F803F00003F803F00003F803F00003F803F00003F803F00003F003F00007F0 +03F00007E003F00007E003F0000FC003F8000FC003FC001F8003EC003F0003CF007C0003 +8381F8000301FFE00000007F000025357EB32B>I<0007F800003FFF0000FC07C001F000 +E003E003F007C007F00FC007F01F8007F03F8007F03F0003E07F0000007F0000007E0000 +00FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE0000 +00FE0000007F0000007F0000003F0000183F8000181F8000381FC000300FC0007007E000 +E003F001C000FC0F80003FFE000007F0001D237EA122>I<0000003F0000000FFF000000 +0FFF0000000FFF000000007F000000003F000000003F000000003F000000003F00000000 +3F000000003F000000003F000000003F000000003F000000003F000000003F000000003F +000000003F000000003F000007F03F00003FFC3F0000FC0F3F0001F003BF0007E001FF00 +0FC000FF001F80007F001F80003F003F00003F003F00003F007F00003F007E00003F00FE +00003F00FE00003F00FE00003F00FE00003F00FE00003F00FE00003F00FE00003F00FE00 +003F00FE00003F00FE00003F007E00003F007F00003F007F00003F003F00003F001F8000 +7F001F80007F000FC000FF0007E001FF8003F007BFFC00F81E3FFC003FFC3FFC000FE03F +0026357DB32B>I<000FE000007FFC0000F83F0003F00F8007E00FC00FC007E01F8003E0 +1F8003F03F0003F03F0001F07F0001F87E0001F87E0001F8FE0001F8FE0001F8FFFFFFF8 +FFFFFFF8FE000000FE000000FE000000FE000000FE0000007E0000007F0000007F000000 +3F0000183F0000181F8000380F8000300FC0007007E000E001F003C000FC0F00003FFE00 +0007F0001D237EA122>I<0001FC000007FF00001F0780003E0FC0007C1FC000FC1FC001 +F81FC001F81FC003F8070003F0000003F0000003F0000003F0000003F0000003F0000003 +F0000003F0000003F0000003F0000003F0000003F00000FFFFF000FFFFF000FFFFF00003 +F0000003F0000003F0000003F0000003F0000003F0000003F0000003F0000003F0000003 +F0000003F0000003F0000003F0000003F0000003F0000003F0000003F0000003F0000003 +F0000003F0000003F0000003F0000003F0000003F0000003F0000007F800007FFFE0007F +FFE0007FFFE0001A357FB417>I<0000001F00001FC07F8000FFF8E3C001F07FC7C007E0 +3F03C00FC01F83800F800F80001F800FC0001F0007C0003F0007E0003F0007E0003F0007 +E0003F0007E0003F0007E0003F0007E0001F0007C0001F800FC0000F800F80000FC01F80 +0007E03F000007F07C00000EFFF800000C1FC000001C000000001C000000001C00000000 +1E000000001E000000001F000000000FFFFE00000FFFFFC00007FFFFF00003FFFFFC0007 +FFFFFE001F0001FE003E00007F007C00003F007C00001F80F800000F80F800000F80F800 +000F80F800000F80F800000F80FC00001F807C00001F003E00003E001F00007C000FC001 +F80003F007E00000FFFF8000001FFC000022337EA126>I<03F0000000FFF0000000FFF0 +000000FFF000000007F000000003F000000003F000000003F000000003F000000003F000 +000003F000000003F000000003F000000003F000000003F000000003F000000003F00000 +0003F000000003F000000003F01FC00003F07FF00003F1E0FC0003F3807C0003F7007E00 +03FE007E0003FC003F0003FC003F0003F8003F0003F8003F0003F0003F0003F0003F0003 +F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0 +003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F000 +3F0003F0003F0003F0003F0007F8007F80FFFFC7FFFCFFFFC7FFFCFFFFC7FFFC26347EB3 +2B>I<07800FC01FE01FE01FE01FE00FC007800000000000000000000000000000000000 +00000007E0FFE0FFE0FFE00FE007E007E007E007E007E007E007E007E007E007E007E007 +E007E007E007E007E007E007E007E007E007E007E007E007E00FF0FFFFFFFFFFFF10337E +B215>I<0003C00007E0000FF0000FF0000FF0000FF00007E00003C00000000000000000 +000000000000000000000000000000000000000000000003F000FFF000FFF000FFF00007 +F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003 +F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003 +F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003F03803F07C03 +F0FE03E0FE07E0FE07C0FE0FC07C0F80381F001FFC0007F000144384B217>I<03F00000 +00FFF0000000FFF0000000FFF000000007F000000003F000000003F000000003F0000000 +03F000000003F000000003F000000003F000000003F000000003F000000003F000000003 +F000000003F000000003F000000003F000000003F000000003F003FFE003F003FFE003F0 +03FFE003F001FF0003F000F80003F001E00003F001C00003F003800003F00F000003F01C +000003F038000003F070000003F0F0000003F3F8000003F7FC000003FEFC000003FC7E00 +0003F87F000003F03F800003F01F800003F00FC00003F00FE00003F007E00003F003F000 +03F003F80003F001F80003F000FC0003F000FE0007F800FF80FFFFC3FFF0FFFFC3FFF0FF +FFC3FFF024347EB329>I<07E0FFE0FFE0FFE00FE007E007E007E007E007E007E007E007 +E007E007E007E007E007E007E007E007E007E007E007E007E007E007E007E007E007E007 +E007E007E007E007E007E007E007E007E007E007E007E007E007E007E007E007E007E00F +F0FFFFFFFFFFFF10347EB315>I<03F01FE000FF0000FFF07FF803FFC000FFF1E07C0F03 +E000FFF3803E1C01F00007F7003F3801F80003FE003F7001F80003FC001FE000FC0003FC +001FE000FC0003F8001FC000FC0003F8001FC000FC0003F0001F8000FC0003F0001F8000 +FC0003F0001F8000FC0003F0001F8000FC0003F0001F8000FC0003F0001F8000FC0003F0 +001F8000FC0003F0001F8000FC0003F0001F8000FC0003F0001F8000FC0003F0001F8000 +FC0003F0001F8000FC0003F0001F8000FC0003F0001F8000FC0003F0001F8000FC0003F0 +001F8000FC0003F0001F8000FC0003F0001F8000FC0003F0001F8000FC0007F8003FC001 +FE00FFFFC7FFFE3FFFF0FFFFC7FFFE3FFFF0FFFFC7FFFE3FFFF03C217EA041>I<03F01F +C000FFF07FF000FFF1E0FC00FFF3807C0007F7007E0003FE007E0003FC003F0003FC003F +0003F8003F0003F8003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F00 +03F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003 +F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0007F8 +007F80FFFFC7FFFCFFFFC7FFFCFFFFC7FFFC26217EA02B>I<0007F00000003FFE000000 +FC1F800001F007C00003C001E00007C001F0000F8000F8001F00007C001F00007C003F00 +007E003E00003E007E00003F007E00003F007E00003F00FE00003F80FE00003F80FE0000 +3F80FE00003F80FE00003F80FE00003F80FE00003F80FE00003F807E00003F007E00003F +007E00003F003F00007E003F00007E001F00007C001F8000FC000FC001F80007C001F000 +03F007E00000FC1F8000003FFE00000007F0000021237EA126>I<03F03F8000FFF0FFE0 +00FFF3C0F800FFF7007E0007FE003F0003FC001F8003F8001FC003F0000FC003F0000FE0 +03F00007F003F00007F003F00007F003F00003F803F00003F803F00003F803F00003F803 +F00003F803F00003F803F00003F803F00003F803F00003F803F00007F803F00007F003F0 +0007F003F00007E003F0000FE003F0000FC003F8001FC003FC003F8003FC003F0003FF00 +FC0003F381F80003F1FFE00003F07F000003F000000003F000000003F000000003F00000 +0003F000000003F000000003F000000003F000000003F000000003F000000007F8000000 +FFFFC00000FFFFC00000FFFFC0000025307EA02B>I<0007F00300003FFC070000FC0F07 +0001F8038F0007E0018F000FE001DF001FC000FF001F80007F003F80007F003F00003F00 +7F00003F007F00003F00FF00003F00FE00003F00FE00003F00FE00003F00FE00003F00FE +00003F00FE00003F00FE00003F00FE00003F00FE00003F007F00003F007F00003F007F00 +003F003F80007F001F80007F001FC000FF000FC001FF0007E003BF0003F0073F0000F81E +3F00003FF83F00000FE03F000000003F000000003F000000003F000000003F000000003F +000000003F000000003F000000003F000000003F000000003F000000007F8000000FFFFC +00000FFFFC00000FFFFC26307DA029>I<03E07C00FFE1FF00FFE38F80FFE71FC007EE1F +C003EC1FC003EC1FC003FC0F8003F8000003F8000003F8000003F0000003F0000003F000 +0003F0000003F0000003F0000003F0000003F0000003F0000003F0000003F0000003F000 +0003F0000003F0000003F0000003F0000003F0000003F0000007F80000FFFFE000FFFFE0 +00FFFFE0001A217FA01E>I<00FF060007FFCE001F00FE003C003E0078001E0078000E00 +F0000E00F0000600F0000600F8000600F8000600FE000000FF8000007FFC00003FFFC000 +3FFFF0000FFFF80007FFFC0000FFFE00000FFF000000FF0000003F80C0001F80C0000F80 +E0000780E0000780E0000780F0000780F0000700F8000F00FC000E00FE001C00F7807800 +E1FFE000C07F800019237EA11E>I<003000003000003000003000003000007000007000 +00700000F00000F00001F00001F00003F00007F0001FFFFEFFFFFEFFFFFE03F00003F000 +03F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003F000 +03F00003F00303F00303F00303F00303F00303F00303F00303F00303F00701F80601F806 +00FC0E007E1C001FF80007E0182F7FAD1E>I<03F0003F00FFF00FFF00FFF00FFF00FFF0 +0FFF0007F0007F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F000 +3F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F +0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0003F0007F00 +03F0007F0003F0007F0003F000FF0001F000FF0001F801FF8000F803BFFC007E073FFC00 +1FFE3FFC0007F83F0026227EA02B>I<FFFF00FFF0FFFF00FFF0FFFF00FFF00FF0003F80 +07F0001F0003F0000E0003F0000C0003F8001C0001F800180001F800180000FC00300000 +FC00300000FE007000007E006000007F006000003F00C000003F00C000001F818000001F +818000001FC38000000FC30000000FC300000007E600000007E600000007FE00000003FC +00000003FC00000001F800000001F800000001F800000000F000000000F0000000006000 +0024217E9F29>I<FFFF1FFF81FFF0FFFF1FFF81FFF0FFFF1FFF81FFF007F801FC003F80 +07F001F8001E0003F000F8001C0003F000FC001C0001F8007C00180001F8007C00180001 +FC007E00380000FC00FE00300000FC00FE003000007E01FF006000007E019F006000007E +019F806000003F030F80C000003F030F80C000003F030FC0C000001F8607C18000001F86 +07C18000001FC607E38000000FCC03E30000000FCC03E300000007FC03F600000007F801 +F600000007F801FE00000003F000FC00000003F000FC00000003F000FC00000001E00078 +00000001E0007800000001E0007800000000C00030000034217F9F37>I<FFFF01FFF8FF +FF01FFF8FFFF01FFF803FE00FF8001FC007C0000FC007800007E007000007F00E000003F +81C000001F838000000FC300000007E600000007FE00000003FC00000001F800000000FC +00000000FE00000000FF00000001FF000000039F800000071FC00000060FE000000C07E0 +00001C03F000003801F800007001FC0000F000FC0001F000FE000FF000FF80FFFC03FFFC +FFFC03FFFCFFFC03FFFC26207F9F29>I<7FFF807FF87FFF807FF87FFF807FF807F8001F +C003F8000F8001F800070001F800060000FC000C0000FC000C0000FE001C00007E001800 +007E001800003F003000003F003000003F807000001F806000001FC0E000000FC0C00000 +0FC0C0000007E180000007E180000007F380000003F300000003FB00000001FE00000001 +FE00000000FC00000000FC00000000FC0000000078000000007800000000300000000030 +0000000060000000006000000000E000000000C000000000C00000000180000078018000 +00FC03000000FC03000000FC06000000FC0E000000701C00000078380000001FF0000000 +0FC000000025307F9F29>I<3FFFFFF03FFFFFF03F000FF03C000FE038001FC030003F80 +70007F8070007F006000FE006001FC006003FC006003F8000007F000000FE000000FE000 +001FC000003F8000007F0000007F003000FE003001FC003003FC003003F8003007F00070 +0FE000701FE000601FC000E03F8000E07F0003E0FF000FE0FFFFFFE0FFFFFFE01C207E9F +22>I<FFFFFFFFF8FFFFFFFFF82502809426>I<1C00707F01FCFF01FEFF01FEFF01FEFF01 +FE7F01FC1C0070170879B226>127 D E /Fy 31 90 df<7FFFFF80FFFFFFC0FFFFFFC0FF +FFFFC0FFFFFFC07FFFFF801A067F9621>45 D<FFE0FFE0FFE0FFE0FFE0FFE0FFE0FFE0FF +E0FFE0FFE00B0B788A1C>I<00001E000000007F00000000FF00000007FF0000003FFF00 +007FFFFF00007FFFFF0000FFFFFF0000FFFFFF0000FFFFFF00007FE7FF00000007FF0000 +0007FF00000007FF00000007FF00000007FF00000007FF00000007FF00000007FF000000 +07FF00000007FF00000007FF00000007FF00000007FF00000007FF00000007FF00000007 +FF00000007FF00000007FF00000007FF00000007FF00000007FF00000007FF00000007FF +00000007FF00000007FF00000007FF00000007FF00000007FF00000007FF00000007FF00 +000007FF00000007FF00000007FF00000007FF00000007FF00000007FF00003FFFFFFFC0 +7FFFFFFFE07FFFFFFFE07FFFFFFFE07FFFFFFFE03FFFFFFFC0233579B432>49 +D<0003FF0000001FFFF00000FFFFFC0001FFFFFF0007FFFFFFC00FFFFFFFE01FFC07FFF0 +3FF001FFF87FE0007FF87FC0003FFCFFC0003FFEFF80001FFE7F00001FFE3F00000FFF1F +00000FFF0E00000FFF06000007FF00000007FF00000007FF0000000FFF0000000FFF0000 +000FFF0000000FFE0000001FFE0000001FFC0000003FFC0000007FF8000000FFF0000000 +FFE0000001FFC0000003FF80000007FF0000001FFC0000003FF80000007FF0000000FFC0 +000001FF80000003FE00000007FC0000001FF80000003FF00000007FC0000000FF800000 +01FF00000003FE00000007F80000000FF00000001FFFFFFFFE3FFFFFFFFF7FFFFFFFFF7F +FFFFFFFF7FFFFFFFFF3FFFFFFFFE28357CB432>I<0001FF800000001FFFF80000007FFF +FE000001FFFFFF800007FFFFFFC0001FFF01FFE0003FF800FFF0007FE0007FF8007FC000 +3FF8003F80003FFC001F00003FFC000F00001FFC000600003FFC000000003FFC00000000 +3FFC000000003FFC000000007FF8000000007FF800000000FFF000000001FFF000000003 +FFE00000001FFFC000000FFFFF8000000FFFFE0000000FFFF80000000FFFF80000000FFF +FE0000000FFFFF8000000001FFE0000000007FF0000000003FFC000000001FFC00000000 +0FFE000000000FFF000000000FFF0000000007FF8000000007FF8000000007FF80000000 +07FF8000000007FF8000000007FF8000000007FF806000000FFF007000000FFF00780000 +0FFF00FE00001FFE00FF80003FFC00FFE0007FFC007FFE01FFF8001FFFFFFFF0000FFFFF +FFC00003FFFFFF800000FFFFFE0000001FFFF000000003FF80000029377CB432>I<0000 +03FF8000000007FFC00000000FFFC00000000FFFC00000001FFFC00000003FFFC0000000 +3FFFC00000007FFFC0000000FFFFC0000000FF7FC0000001FF7FC0000003FE7FC0000003 +FC7FC0000007FC7FC000000FF87FC000000FF07FC000001FF07FC000001FE07FC000003F +C07FC000007FC07FC000007F807FC00000FF807FC00001FF007FC00001FE007FC00003FE +007FC00007FC007FC00007F8007FC0000FF8007FC0000FF0007FC0001FE0007FC0003FE0 +007FC0003FC0007FC0007FC0007FC000FF80007FC000FFFFFFFFFFC0FFFFFFFFFFE0FFFF +FFFFFFE0FFFFFFFFFFE0FFFFFFFFFFE07FFFFFFFFFC00000007FC0000000007FC0000000 +007FC0000000007FC0000000007FC0000000007FC0000000007FC0000000007FC0000000 +007FC0000000007FC0000000007FC0000000003F80002B347DB332>I<07FFFFFFF80007 +FFFFFFFC000FFFFFFFFC000FFFFFFFFC000FFFFFFFFC000FFFFFFFF8000FFE000000000F +FE000000000FFE000000000FFE000000000FFE000000000FFE000000000FFE000000000F +FE000000000FFE000000000FFE000000000FFE000000000FFE3FE000000FFFFFFC00000F +FFFFFF00000FFFFFFF80000FFFFFFFE0000FFFFFFFF0000FFFE07FF8000FFF003FFC000F +FE001FFC000FFC000FFE000FF8000FFE0007F80007FF0007F00007FF0000000007FF8000 +000007FF8000000007FF8000000007FF8000000007FF8000000007FF8000000007FF8000 +000007FF8000000007FF8018000007FF003C00000FFF003E00000FFF007E00000FFE00FF +80001FFC00FFC0003FFC007FF0007FF8003FFE01FFF0001FFFFFFFE00007FFFFFF800003 +FFFFFF000000FFFFFC0000003FFFF000000003FF00000029357DB232>I<000007FC0000 +00003FFF80000001FFFFE0000007FFFFE000000FFFFFE000003FFC03E000007FE0006000 +00FFC000000001FF8000000003FF0000000007FE0000000007FC000000000FFC00000000 +1FF8000000001FF8000000003FF0000000003FF0000000003FF007F000007FF03FFE0000 +7FE0FFFF80007FE1FFFFC0007FE3FFFFE000FFE7FFFFF000FFEFC07FF800FFEF001FFC00 +FFFE000FFC00FFFC0007FE00FFF80007FE00FFF80007FF00FFF00003FF00FFF00003FF80 +FFF00003FF80FFE00003FF80FFE00003FF80FFE00003FF807FE00003FF807FE00003FF80 +7FE00003FF807FE00003FF807FF00003FF803FF00003FF803FF00003FF003FF00003FF00 +1FF00007FF001FF80007FE000FF8000FFE000FFC001FFC0007FE003FF80003FF807FF000 +01FFFFFFE00000FFFFFFC000007FFFFF0000001FFFFE00000007FFF800000000FFC00000 +29377CB432>I<0001FFC00000000FFFF80000007FFFFF000001FFFFFFC00003FFFFFFE0 +0007FF007FF0000FFC001FF8001FF8000FFC003FF8000FFE003FF00007FE003FF00007FE +007FF00007FF007FF00007FF007FF00007FF007FF00007FF007FF00007FF007FF00007FF +003FF00007FE003FF8000FFE001FF8000FFC000FFC001FF80007FE003FF00003FFFFFFE0 +0000FFFFFF8000003FFFFE00000007FFF00000003FFFFE000000FFFFFF800003FFE3FFE0 +0007FE003FF0000FFC001FF8001FF8000FFC003FF00007FE007FF00007FF007FE00003FF +007FE00003FF00FFE00003FF80FFE00003FF80FFE00003FF80FFE00003FF80FFE00003FF +80FFE00003FF807FE00003FF007FE00003FF007FF00007FF003FF00007FE001FF8000FFC +001FFC001FFC000FFF007FF80007FFFFFFF00003FFFFFFE00000FFFFFF8000003FFFFE00 +00000FFFF800000001FFC0000029377CB432>56 D<000007FFE0000000000FFFF0000000 +001FFFF8000000001FFFF8000000003FFFFC000000003FFFFC000000003FFFFC00000000 +7FFFFE000000007FFFFE00000000FFFFFF00000000FFFFFF00000001FFEFFF80000001FF +EFFF80000001FFCFFF80000003FFC7FFC0000003FF87FFC0000007FF83FFE0000007FF03 +FFE0000007FF01FFE000000FFF01FFF000000FFE01FFF000001FFE00FFF800001FFC00FF +F800003FFC007FFC00003FFC007FFC00003FF8003FFC00007FF8003FFE00007FF0003FFE +0000FFF0001FFF0000FFE0001FFF0001FFE0000FFF8001FFE0000FFF8001FFC00007FF80 +03FFC00007FFC003FFFFFFFFFFC007FFFFFFFFFFE007FFFFFFFFFFE00FFFFFFFFFFFF00F +FFFFFFFFFFF00FFFFFFFFFFFF01FFFFFFFFFFFF81FFFFFFFFFFFF83FFC0000007FFC3FF8 +0000007FFC3FF80000003FFC7FF80000003FFE7FF00000003FFEFFF00000001FFFFFE000 +00001FFFFFE00000000FFFFFC000000007FF38337CB241>65 D<7FFFFFFF000000FFFFFF +FFF80000FFFFFFFFFF0000FFFFFFFFFFC000FFFFFFFFFFF000FFFFFFFFFFF800FFFFFFFF +FFFC00FFFFFFFFFFFE00FFF00007FFFF00FFF000007FFF80FFF000000FFF80FFF0000003 +FFC0FFF0000003FFC0FFF0000001FFC0FFF0000003FFC0FFF0000003FFC0FFF0000007FF +80FFF000000FFF80FFF000003FFF00FFF00000FFFE00FFF0000FFFF800FFFFFFFFFFE000 +FFFFFFFFFF8000FFFFFFFFFC0000FFFFFFFFFF0000FFFFFFFFFFE000FFFFFFFFFFF800FF +F00003FFFE00FFF000007FFF00FFF000000FFF80FFF0000007FFC0FFF0000003FFE0FFF0 +000001FFE0FFF0000000FFF0FFF0000000FFF0FFF0000000FFF0FFF0000000FFF0FFF000 +0000FFF0FFF0000001FFE0FFF0000007FFE0FFF000001FFFE0FFF00001FFFFC0FFFFFFFF +FFFF80FFFFFFFFFFFF00FFFFFFFFFFFE00FFFFFFFFFFF800FFFFFFFFFFF000FFFFFFFFFF +8000FFFFFFFFFE00007FFFFFFFC00000343279B142>I<0000001FFF8000000003FFFFFC +0000001FFFFFFFC000007FFFFFFFF00001FFFFFFFFF00007FFFFFFFFF0000FFFF803FFF0 +003FFF80003FE0007FFE00001FE000FFF8000007E001FFF0000003E003FFE0000001E007 +FFC0000000E00FFF80000000400FFF00000000001FFF00000000001FFE00000000003FFC +00000000003FFC00000000007FFC00000000007FF800000000007FF80000000000FFF800 +00000000FFF00000000000FFF00000000000FFF00000000000FFF00000000000FFF00000 +000000FFF00000000000FFF00000000000FFF00000000000FFF800000000007FF8000000 +00007FF800000000007FFC00000000003FFC00000000003FFC00000000001FFE00000000 +001FFF00000000000FFF00000000000FFF800000000007FFC00000003003FFE000000070 +01FFF0000000F000FFF8000001F0007FFE000007F8003FFF80001FF8000FFFF800FFF800 +07FFFFFFFFF80001FFFFFFFFF800007FFFFFFFE000001FFFFFFF00000003FFFFFC000000 +001FFFC00035367BB340>I<7FFFFFFF80000000FFFFFFFFFC000000FFFFFFFFFF800000 +FFFFFFFFFFE00000FFFFFFFFFFF80000FFFFFFFFFFFC0000FFFFFFFFFFFF0000FFFFFFFF +FFFF8000FFF00001FFFFC000FFF000001FFFE000FFF0000003FFF000FFF0000001FFF800 +FFF00000007FFC00FFF00000003FFC00FFF00000001FFE00FFF00000000FFF00FFF00000 +000FFF00FFF000000007FF00FFF000000007FF80FFF000000007FF80FFF000000003FF80 +FFF000000003FFC0FFF000000003FFC0FFF000000003FFC0FFF000000003FFC0FFF00000 +0003FFC0FFF000000003FFC0FFF000000003FFC0FFF000000003FFC0FFF000000003FFC0 +FFF000000007FF80FFF000000007FF80FFF000000007FF80FFF00000000FFF00FFF00000 +000FFF00FFF00000001FFE00FFF00000003FFE00FFF00000007FFC00FFF0000000FFF800 +FFF0000003FFF000FFF000000FFFF000FFF00001FFFFE000FFFFFFFFFFFF8000FFFFFFFF +FFFF0000FFFFFFFFFFFE0000FFFFFFFFFFF80000FFFFFFFFFFE00000FFFFFFFFFF800000 +FFFFFFFFFC0000007FFFFFFFC00000003A3279B147>I<7FFFFFFFFFFF00FFFFFFFFFFFF +80FFFFFFFFFFFF80FFFFFFFFFFFF80FFFFFFFFFFFF80FFFFFFFFFFFF00FFF00000000000 +FFF00000000000FFF00000000000FFF00000000000FFF00000000000FFF00000000000FF +F00000000000FFF00000000000FFF00000000000FFF00000000000FFF00000000000FFF0 +0000000000FFF00000000000FFF00000000000FFF00000000000FFFFFFFFFFF800FFFFFF +FFFFFC00FFFFFFFFFFFC00FFFFFFFFFFFC00FFFFFFFFFFFC00FFFFFFFFFFF800FFF00000 +000000FFF00000000000FFF00000000000FFF00000000000FFF00000000000FFF0000000 +0000FFF00000000000FFF00000000000FFF00000000000FFF00000000000FFF000000000 +00FFF00000000000FFF00000000000FFF00000000000FFF00000000000FFF00000000000 +FFF00000000000FFFFFFFFFFFF80FFFFFFFFFFFFC0FFFFFFFFFFFFC0FFFFFFFFFFFFC0FF +FFFFFFFFFFC07FFFFFFFFFFF80323279B13E>I<7FFFFFFFFFFCFFFFFFFFFFFEFFFFFFFF +FFFEFFFFFFFFFFFEFFFFFFFFFFFEFFFFFFFFFFFCFFF000000000FFF000000000FFF00000 +0000FFF000000000FFF000000000FFF000000000FFF000000000FFF000000000FFF00000 +0000FFF000000000FFF000000000FFF000000000FFF000000000FFF000000000FFF00000 +0000FFF000000000FFFFFFFFFFC0FFFFFFFFFFE0FFFFFFFFFFE0FFFFFFFFFFE0FFFFFFFF +FFE0FFFFFFFFFFC0FFF000000000FFF000000000FFF000000000FFF000000000FFF00000 +0000FFF000000000FFF000000000FFF000000000FFF000000000FFF000000000FFF00000 +0000FFF000000000FFF000000000FFF000000000FFF000000000FFF000000000FFF00000 +0000FFF000000000FFF000000000FFF000000000FFF0000000007FE0000000002F3279B1 +3B>I<0000001FFF8000000001FFFFFC0000000FFFFFFF8000007FFFFFFFF00001FFFFFF +FFFC0007FFFFFFFFFC000FFFF801FFFC003FFF80003FFC007FFE00000FF800FFFC000003 +F801FFF0000001F803FFE0000000F807FFC0000000780FFF80000000380FFF0000000010 +1FFF00000000001FFE00000000003FFC00000000003FFC00000000007FFC00000000007F +F800000000007FF80000000000FFF80000000000FFF000007FFFFCFFF000007FFFFCFFF0 +00007FFFFCFFF000007FFFFCFFF000007FFFFCFFF000007FFFFCFFF00000001FFCFFF000 +00001FFCFFF80000001FFC7FF80000001FFC7FF80000001FFC7FFC0000001FFC3FFC0000 +001FFC3FFC0000001FFC1FFE0000001FFC1FFF0000001FFC0FFF0000001FFC0FFF800000 +1FFC07FFC000001FFC03FFE000001FFC01FFF000001FFC00FFFC00001FFC007FFE00001F +FC003FFF80001FFC000FFFF801FFFC0007FFFFFFFFFC0001FFFFFFFFFC00007FFFFFFFF0 +00000FFFFFFF80000001FFFFFC000000001FFF800036367BB343>I<7FE0000001FF80FF +F0000003FFC0FFF0000003FFC0FFF0000003FFC0FFF0000003FFC0FFF0000003FFC0FFF0 +000003FFC0FFF0000003FFC0FFF0000003FFC0FFF0000003FFC0FFF0000003FFC0FFF000 +0003FFC0FFF0000003FFC0FFF0000003FFC0FFF0000003FFC0FFF0000003FFC0FFF00000 +03FFC0FFF0000003FFC0FFF0000003FFC0FFF0000003FFC0FFF0000003FFC0FFFFFFFFFF +FFC0FFFFFFFFFFFFC0FFFFFFFFFFFFC0FFFFFFFFFFFFC0FFFFFFFFFFFFC0FFFFFFFFFFFF +C0FFF0000003FFC0FFF0000003FFC0FFF0000003FFC0FFF0000003FFC0FFF0000003FFC0 +FFF0000003FFC0FFF0000003FFC0FFF0000003FFC0FFF0000003FFC0FFF0000003FFC0FF +F0000003FFC0FFF0000003FFC0FFF0000003FFC0FFF0000003FFC0FFF0000003FFC0FFF0 +000003FFC0FFF0000003FFC0FFF0000003FFC0FFF0000003FFC0FFF0000003FFC0FFF000 +0003FFC0FFF0000003FFC07FE0000001FF80323279B141>I<7FFFFCFFFFFEFFFFFEFFFF +FEFFFFFE7FFFFC03FFC003FFC003FFC003FFC003FFC003FFC003FFC003FFC003FFC003FF +C003FFC003FFC003FFC003FFC003FFC003FFC003FFC003FFC003FFC003FFC003FFC003FF +C003FFC003FFC003FFC003FFC003FFC003FFC003FFC003FFC003FFC003FFC003FFC003FF +C003FFC003FFC003FFC003FFC07FFFFCFFFFFEFFFFFEFFFFFEFFFFFE7FFFFC17327FB11A +>I<7F800000003FFCFFC00000007FFCFFC0000001FFFCFFC0000003FFF0FFC0000007FF +E0FFC000001FFFC0FFC000003FFF00FFC000007FFE00FFC00001FFFC00FFC00003FFF000 +FFC0000FFFE000FFC0001FFFC000FFC0003FFF0000FFC000FFFE0000FFC001FFFC0000FF +C003FFF00000FFC00FFFE00000FFC01FFFC00000FFC03FFF000000FFC0FFFE000000FFC1 +FFF8000000FFC3FFF8000000FFCFFFFC000000FFDFFFFE000000FFFFFFFF000000FFFFFF +FF800000FFFFFFFFC00000FFFFF3FFE00000FFFFE1FFF00000FFFF80FFF80000FFFF007F +FC0000FFFE003FFE0000FFF8001FFF0000FFF0000FFF8000FFE00007FFC000FFC00007FF +E000FFC00003FFF000FFC00001FFF800FFC00000FFF800FFC000007FFC00FFC000003FFE +00FFC000001FFF00FFC000000FFF80FFC0000007FFC0FFC0000003FFE0FFC0000001FFF0 +FFC0000000FFF8FFC00000007FFCFFC00000003FFC7F800000001FFC363279B143>75 +D<7FE000000000FFF000000000FFF000000000FFF000000000FFF000000000FFF0000000 +00FFF000000000FFF000000000FFF000000000FFF000000000FFF000000000FFF0000000 +00FFF000000000FFF000000000FFF000000000FFF000000000FFF000000000FFF0000000 +00FFF000000000FFF000000000FFF000000000FFF000000000FFF000000000FFF0000000 +00FFF000000000FFF000000000FFF000000000FFF000000000FFF000000000FFF0000000 +00FFF000000000FFF000000000FFF000000000FFF000000000FFF000000000FFF0000000 +00FFF000000000FFF000000000FFF000000000FFF000000000FFF000000000FFF0000000 +00FFF000000000FFF000000000FFFFFFFFFFF0FFFFFFFFFFF8FFFFFFFFFFF8FFFFFFFFFF +F8FFFFFFFFFFF87FFFFFFFFFF02D3279B139>I<7FF8000000001FFF00FFFC000000003F +FF80FFFE000000007FFF80FFFE000000007FFF80FFFF00000000FFFF80FFFF00000000FF +FF80FFFF80000001FFFF80FFFF80000001FFFF80FFFFC0000003FFFF80FFFFC0000003FF +FF80FFBFE0000007FDFF80FFBFE0000007FDFF80FFBFE0000007FDFF80FF9FF000000FF9 +FF80FF9FF000000FF9FF80FF8FF800001FF1FF80FF8FF800001FF1FF80FF87FC00003FE1 +FF80FF87FC00003FE1FF80FF83FE00007FC1FF80FF83FE00007FC1FF80FF81FF0000FF81 +FF80FF81FF0000FF81FF80FF80FF8001FF01FF80FF80FF8001FF01FF80FF807FC003FE01 +FF80FF807FC003FE01FF80FF803FE007FC01FF80FF803FE007FC01FF80FF801FF00FF801 +FF80FF801FF00FF801FF80FF800FF81FF001FF80FF800FF81FF001FF80FF8007FC3FE001 +FF80FF8007FC3FE001FF80FF8003FE7FC001FF80FF8003FE7FC001FF80FF8003FE7FC001 +FF80FF8001FFFF8001FF80FF8001FFFF8001FF80FF8000FFFF0001FF80FF8000FFFF0001 +FF80FF80007FFE0001FF80FF80007FFE0001FF80FF80003FFC0001FF80FF80003FFC0001 +FF80FF80001FF80001FF80FF80000FF00001FF80FF800000000001FF807F000000000000 +FF00413278B152>I<7FFC0000003F80FFFE0000007FC0FFFF0000007FC0FFFF8000007F +C0FFFF8000007FC0FFFFC000007FC0FFFFE000007FC0FFFFE000007FC0FFBFF000007FC0 +FFBFF000007FC0FF9FF800007FC0FF8FFC00007FC0FF8FFC00007FC0FF87FE00007FC0FF +87FE00007FC0FF83FF00007FC0FF81FF80007FC0FF81FF80007FC0FF80FFC0007FC0FF80 +7FE0007FC0FF807FE0007FC0FF803FF0007FC0FF803FF0007FC0FF801FF8007FC0FF800F +FC007FC0FF800FFC007FC0FF8007FE007FC0FF8003FF007FC0FF8003FF007FC0FF8001FF +807FC0FF8001FF807FC0FF8000FFC07FC0FF80007FE07FC0FF80007FE07FC0FF80003FF0 +7FC0FF80001FF87FC0FF80001FF87FC0FF80000FFC7FC0FF80000FFC7FC0FF800007FE7F +C0FF800003FF7FC0FF800003FF7FC0FF800001FFFFC0FF800001FFFFC0FF800000FFFFC0 +FF8000007FFFC0FF8000007FFFC0FF8000003FFFC0FF8000001FFFC07F0000000FFF8032 +3279B141>I<0000001FFE00000000000003FFFFF000000000001FFFFFFE00000000007F +FFFFFF8000000001FFFFFFFFE000000007FFFFFFFFF80000000FFFF003FFFC0000003FFF +00003FFF0000007FFC00000FFF800000FFF0000003FFC00001FFE0000001FFE00003FFC0 +000000FFF00007FF800000007FF80007FF000000003FF8000FFE000000001FFC001FFE00 +0000001FFE001FFC000000000FFE003FFC000000000FFF003FF80000000007FF007FF800 +00000007FF807FF80000000007FF807FF00000000003FF807FF00000000003FF80FFF000 +00000003FFC0FFF00000000003FFC0FFF00000000003FFC0FFF00000000003FFC0FFF000 +00000003FFC0FFF00000000003FFC0FFF00000000003FFC0FFF00000000003FFC0FFF800 +00000007FFC07FF80000000007FF807FF80000000007FF807FF80000000007FF803FFC00 +0000000FFF003FFC000000000FFF001FFE000000001FFE001FFE000000001FFE000FFF00 +0000003FFC000FFF800000007FFC0007FF800000007FF80003FFC0000000FFF00001FFF0 +000003FFE00000FFF8000007FFC000007FFE00001FFF8000003FFF80007FFF0000001FFF +F003FFFE00000007FFFFFFFFF800000001FFFFFFFFE0000000007FFFFFFF80000000001F +FFFFFE000000000003FFFFF00000000000001FFE0000000042367BB34D>I<7FFFFFFF00 +0000FFFFFFFFF00000FFFFFFFFFE0000FFFFFFFFFF8000FFFFFFFFFFE000FFFFFFFFFFF0 +00FFFFFFFFFFF800FFFFFFFFFFFC00FFF00001FFFE00FFF000003FFF00FFF000000FFF00 +FFF0000007FF80FFF0000007FF80FFF0000003FFC0FFF0000003FFC0FFF0000003FFC0FF +F0000003FFC0FFF0000003FFC0FFF0000003FFC0FFF0000003FFC0FFF0000007FF80FFF0 +000007FF80FFF000000FFF00FFF000003FFE00FFF00001FFFE00FFFFFFFFFFFC00FFFFFF +FFFFF000FFFFFFFFFFE000FFFFFFFFFF8000FFFFFFFFFE0000FFFFFFFFF00000FFFFFFFF +000000FFF00000000000FFF00000000000FFF00000000000FFF00000000000FFF0000000 +0000FFF00000000000FFF00000000000FFF00000000000FFF00000000000FFF000000000 +00FFF00000000000FFF00000000000FFF00000000000FFF00000000000FFF00000000000 +FFF00000000000FFF000000000007FE00000000000323279B13F>I<7FFFFFFF800000FF +FFFFFFF80000FFFFFFFFFF0000FFFFFFFFFFE000FFFFFFFFFFF000FFFFFFFFFFFC00FFFF +FFFFFFFE00FFFFFFFFFFFF00FFF000007FFF80FFF0000007FFC0FFF0000003FFE0FFF000 +0001FFE0FFF0000000FFF0FFF0000000FFF0FFF0000000FFF0FFF0000000FFF0FFF00000 +00FFF0FFF0000000FFF0FFF0000001FFE0FFF0000003FFC0FFF000000FFFC0FFF000007F +FF80FFFFFFFFFFFE00FFFFFFFFFFFC00FFFFFFFFFFF000FFFFFFFFFF8000FFFFFFFFFC00 +00FFFFFFFFF00000FFF0007FF80000FFF0003FFC0000FFF0001FFE0000FFF0000FFE0000 +FFF0000FFF0000FFF00007FF8000FFF00003FFC000FFF00001FFE000FFF00000FFE000FF +F00000FFF000FFF000007FF800FFF000003FFC00FFF000001FFE00FFF000001FFE00FFF0 +00000FFF00FFF0000007FF80FFF0000003FFC0FFF0000001FFC0FFF0000001FFE0FFF000 +0000FFF0FFF00000007FF07FE00000003FF0343279B141>82 D<00003FFC00000003FFFF +E000001FFFFFFC00007FFFFFFF0000FFFFFFFFC003FFFFFFFFC007FFFFFFFFC00FFFC007 +FFC01FFE0000FF801FFC00003F803FF000001F803FF000000F807FE0000007807FE00000 +03807FE0000001007FF0000000007FF8000000007FFC000000007FFF000000007FFFF800 +00003FFFFFE000003FFFFFFE00001FFFFFFFC0000FFFFFFFF0000FFFFFFFFC0003FFFFFF +FF0001FFFFFFFF8000FFFFFFFFC0003FFFFFFFE0000FFFFFFFF00001FFFFFFF000000FFF +FFF80000003FFFF800000003FFFC00000000FFFC000000003FFC000000001FFC00000000 +1FFC200000000FFC700000000FFC780000000FFC7E0000001FF87F0000001FF87FC00000 +3FF07FF000007FF0FFFC0001FFE0FFFFC00FFFC0FFFFFFFFFF80FFFFFFFFFF003FFFFFFF +FE0007FFFFFFF80001FFFFFFE000001FFFFF80000000FFF800002E367CB338>I<7FFFFF +FFFFFFFFF8FFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFCFFFFFFFFFFFFFF +FC7FFFFFFFFFFFFFF80000007FF80000000000007FF80000000000007FF8000000000000 +7FF80000000000007FF80000000000007FF80000000000007FF80000000000007FF80000 +000000007FF80000000000007FF80000000000007FF80000000000007FF8000000000000 +7FF80000000000007FF80000000000007FF80000000000007FF80000000000007FF80000 +000000007FF80000000000007FF80000000000007FF80000000000007FF8000000000000 +7FF80000000000007FF80000000000007FF80000000000007FF80000000000007FF80000 +000000007FF80000000000007FF80000000000007FF80000000000007FF8000000000000 +7FF80000000000007FF80000000000007FF80000000000007FF80000000000007FF80000 +000000007FF80000000000007FF80000000000007FF80000000000007FF8000000000000 +7FF80000000000007FF80000000000007FF80000000000007FF80000000000003FF00000 +003E327CB147>I<7FE0000000FF80FFF0000001FFC0FFF0000001FFC0FFF0000001FFC0 +FFF0000001FFC0FFF0000001FFC0FFF0000001FFC0FFF0000001FFC0FFF0000001FFC0FF +F0000001FFC0FFF0000001FFC0FFF0000001FFC0FFF0000001FFC0FFF0000001FFC0FFF0 +000001FFC0FFF0000001FFC0FFF0000001FFC0FFF0000001FFC0FFF0000001FFC0FFF000 +0001FFC0FFF0000001FFC0FFF0000001FFC0FFF0000001FFC0FFF0000001FFC0FFF00000 +01FFC0FFF0000001FFC0FFF0000001FFC0FFF0000001FFC0FFF0000001FFC0FFF0000001 +FFC0FFF0000001FFC0FFF0000001FFC0FFF0000001FFC0FFF0000001FFC0FFF0000001FF +C0FFF0000001FFC0FFF0000001FFC07FF8000003FF807FF8000003FF807FFC000007FF80 +3FFE00000FFF001FFF00001FFF001FFFC0007FFE000FFFF803FFFC0007FFFFFFFFF80003 +FFFFFFFFF00001FFFFFFFFE000007FFFFFFF8000001FFFFFFF00000007FFFFFC00000001 +FFFFE0000000001FFE000000323479B141>I<7F80000003FFC0000001FCFFC0000007FF +E0000003FEFFE0000007FFE0000003FE7FE000000FFFF0000007FC7FE000000FFFF00000 +07FC7FF000000FFFF0000007FC3FF000001FFFF800000FF83FF000001FFFF800000FF83F +F800001FFFF800000FF81FF800003FEFFC00001FF01FF800003FEFFC00001FF01FFC0000 +3FCFFC00001FF00FFC00007FC7FE00003FE00FFC00007FC7FE00003FE00FFE00007F87FE +00003FE007FE0000FF83FF00007FC007FE0000FF83FF00007FC007FF0001FF03FF00007F +C003FF0001FF01FF8000FF8003FF0001FF01FF8000FF8003FF8003FE01FF8000FF8001FF +8003FE00FFC001FF0001FF8003FE00FFC001FF0001FFC007FC00FFC001FF0000FFC007FC +007FE003FE0000FFC007FC007FE003FE0000FFE00FF8007FE007FE00007FE00FF8003FF0 +07FC00007FE00FF8003FF007FC00007FF01FF0003FF00FFC00003FF01FF0001FF80FF800 +003FF01FF0001FF80FF800003FF83FE0001FF81FF800001FF83FE0000FFC1FF000001FF8 +3FE0000FFC1FF000001FFC7FC0000FFC3FF000000FFC7FC00007FE3FE000000FFC7FC000 +07FE3FE000000FFEFF800007FE7FE0000007FEFF800003FF7FC0000007FEFF800003FF7F +C0000007FFFF000003FFFFC0000003FFFF000001FFFF80000003FFFF000001FFFF800000 +03FFFE000001FFFF80000001FFFE000000FFFF00000001FFFE000000FFFF00000001FFFC +000000FFFF00000000FFFC0000007FFE00000000FFFC0000007FFE000000007FF0000000 +3FFC000057337EB15C>87 D<3FFF0000007FF8003FFF800000FFFC003FFFC00001FFF800 +1FFFC00003FFF0000FFFE00007FFE00007FFF0000FFFE00003FFF8001FFFC00001FFFC00 +1FFF800000FFFE003FFF0000007FFF007FFE0000003FFF00FFFC0000001FFF81FFF80000 +000FFFC3FFF00000000FFFE7FFF000000007FFF7FFE000000003FFFFFFC000000001FFFF +FF8000000000FFFFFF00000000007FFFFE00000000003FFFFC00000000001FFFF8000000 +00000FFFF0000000000007FFF0000000000003FFE0000000000007FFF000000000000FFF +F800000000001FFFFC00000000003FFFFE00000000007FFFFF0000000000FFFFFF000000 +0000FFFFFF8000000001FFF7FFC000000003FFE7FFE000000007FFC3FFF00000000FFF81 +FFF80000001FFF80FFFC0000003FFF007FFE0000007FFE003FFF0000007FFC003FFF8000 +00FFF8001FFFC00001FFF8000FFFE00003FFF00007FFF00007FFE00003FFF8000FFFC000 +01FFFC001FFF800001FFFC003FFF800000FFFE007FFF0000007FFF007FFE0000003FFF80 +FFFC0000001FFFC07FF80000000FFF803A327DB141>I<FFF800000000FFF0FFFE000000 +03FFF0FFFF00000007FFF07FFF80000007FFE03FFFC000000FFFC01FFFE000001FFF800F +FFE000003FFF0007FFF000007FFE0003FFF80000FFFC0003FFFC0001FFFC0001FFFE0001 +FFF80000FFFF0003FFF000007FFF8007FFE000003FFF800FFFC000001FFFC01FFF800000 +0FFFE03FFF0000000FFFF07FFF00000007FFF8FFFE00000003FFFCFFFC00000001FFFFFF +F800000000FFFFFFF0000000007FFFFFE0000000003FFFFFC0000000003FFFFF80000000 +001FFFFF80000000000FFFFF000000000007FFFE000000000003FFFC000000000001FFF8 +000000000000FFF0000000000000FFF0000000000000FFF0000000000000FFF000000000 +0000FFF0000000000000FFF0000000000000FFF0000000000000FFF0000000000000FFF0 +000000000000FFF0000000000000FFF0000000000000FFF0000000000000FFF000000000 +0000FFF0000000000000FFF0000000000000FFF0000000000000FFF0000000000000FFF0 +000000000000FFF0000000000000FFF00000000000007FE00000003C327EB141>I +E /Fz 49 124 df<00000FF8000000007FFE00000001F80780000007E001C000001F8000 +E000003F0007E000007E000FF000007E000FF00000FC000FF00000FC000FF00001F8000F +F00001F80007E00001F80001800001F80000000001F80000000001F80000000001F80000 +000001F80000000001F80000000001F80000000001F80000000001F80000000001F80003 +F000FFFFFFFFF000FFFFFFFFF000FFFFFFFFF00001F8000FF00001F80003F00001F80003 +F00001F80003F00001F80003F00001F80003F00001F80003F00001F80003F00001F80003 +F00001F80003F00001F80003F00001F80003F00001F80003F00001F80003F00001F80003 +F00001F80003F00001F80003F00001F80003F00001F80003F00001F80003F00001F80003 +F00001F80003F00001F80003F00001F80003F00001F80003F00001F80003F00001F80003 +F00001F80003F00001F80003F00003FC0007F8007FFFE0FFFFC07FFFE0FFFFC07FFFE0FF +FFC02A3B7FBA2E>12 D<7800FC00FC00FE00FF007F801F800FC007E003F000F00078003C +001E00060F0F77B92A>18 D<003C007E007E00FE01FE03FC03F007E00FC01F801E003C00 +7800F000C0000F0F6FB92A>I<1C007F00FF80FF80FFC0FFC0FFC07FC01CC000C000C000 +C000C001C00180018003800300070006000E001C003800700060000A1979B917>39 +D<1C007F00FF80FF80FFC0FFC0FFC07FC01CC000C000C000C000C001C001800180038003 +00070006000E001C003800700060000A19798817>44 D<FFFFFCFFFFFCFFFFFCFFFFFCFF +FFFC16057F941C>I<1C007F00FF80FF80FF80FF80FF807F001C000909798817>I<0003F8 +0000001FFF0000007E0FC00000F803E00001E000F00003C000780007C0007C000F80003E +000F80003E001F00001F001F00001F003F00001F803F00001F803F00001F807E00000FC0 +7E00000FC07E00000FC07E00000FC07E00000FC07E00000FC0FE00000FE0FE00000FE0FE +00000FE0FE00000FE0FE00000FE0FE00000FE0FE00000FE0FE00000FE0FE00000FE0FE00 +000FE0FE00000FE0FE00000FE0FE00000FE0FE00000FE0FE00000FE0FE00000FE0FE0000 +0FE0FE00000FE0FE00000FE07E00000FC07E00000FC07E00000FC07E00000FC07F00001F +C03F00001F803F00001F803F00001F801F00001F001F80003F000F80003E000F80003E00 +07C0007C0003E000F80001F001F00000F803E000007E0FC000001FFF00000003F8000023 +3A7DB72A>48 D<000FF00000007FFE000001FFFF800003E03FE0000F000FF0000E0007F8 +001C0003FC00380001FE00300001FE00700000FF00600000FF00FC0000FF00FF00007F80 +FF80007F80FF80007F80FF80007F80FF80007F80FF80007F807F00007F801C00007F8000 +00007F80000000FF00000000FF00000000FF00000001FE00000001FC00000003FC000000 +03F800000007F000000007E00000000FE00000001FC00000003F800000003F000000007C +00000000F800000001F000000003E000000007C00000000F800000000F000000001E0001 +80003C000180007800018000F000038001E000030003C000030007800003000E00000700 +0FFFFFFF001FFFFFFF003FFFFFFF007FFFFFFE00FFFFFFFE00FFFFFFFE00FFFFFFFE0021 +387CB72A>50 D<0007F80000003FFF0000007FFFC00001F80FF00003C007F800078003FC +000E0001FC000F0001FE001FE000FE001FF000FF001FF000FF001FF000FF001FF000FF00 +1FF000FF000FE000FF0007C000FF00000000FE00000001FE00000001FE00000001FC0000 +0003F800000003F800000007F000000007E00000000F800000007E0000001FFC0000001F +FF800000000FE000000007F000000001FC00000001FE00000000FF000000007F80000000 +7F800000007FC00000007FC00000003FC00000003FE00000003FE01E00003FE07F80003F +E0FFC0003FE0FFC0003FE0FFC0003FE0FFC0003FE0FFC0003FC0FF80007FC07F80007F80 +7E00007F80700000FF00380001FE001E0001FE000F8003F80007F00FF00001FFFFC00000 +7FFF0000000FF80000233A7DB72A>I<000000380000000038000000007800000000F800 +000000F800000001F800000003F800000007F800000007F80000000FF80000001FF80000 +001BF800000033F800000073F800000063F8000000C3F8000001C3F800000183F8000003 +03F800000703F800000603F800000C03F800001C03F800001803F800003003F800007003 +F800006003F80000C003F80001C003F800038003F800030003F800070003F8000E0003F8 +000C0003F800180003F800380003F800300003F800600003F800E00003F800FFFFFFFFF8 +FFFFFFFFF8FFFFFFFFF8000003F800000003F800000003F800000003F800000003F80000 +0003F800000003F800000003F800000003F800000003F800000003F800000007FC000003 +FFFFF80003FFFFF80003FFFFF825397EB82A>I<0003F80000001FFF0000007FFFC00000 +FC07F00001E001F80003C000FC000780007C000700003E000F00001E000E00001F001E00 +000F001E00000F001E00000F001F00000F001F00000F001F80000F001F80001F001FE000 +1E000FF0003E000FFC003C000FFE00780007FF80F00007FFC1E00003FFF3C00001FFFF00 +0000FFFE0000003FFF0000001FFFC000001FFFE000007FFFF80000F0FFFC0003E07FFE00 +07801FFF000F000FFF801F0003FF803E0001FFC03C00007FC07C00003FC07800000FE0F8 +000007E0F0000007E0F0000003E0F0000003E0F0000001E0F0000001E0F0000001E0F800 +0001C078000001C078000003C07C000003803E000007001F00000F000F80001E0007E000 +7C0003F803F00000FFFFE000003FFF80000007FC0000233A7DB72A>56 +D<0003F80000001FFF0000007FFFC00000FC07E00003F803F00007F001F8000FE000FC00 +0FC0007E001FC0007E003F80003F003F80003F007F80003F807F00003F807F00003F80FF +00001FC0FF00001FC0FF00001FC0FF00001FC0FF00001FC0FF00001FC0FF00001FE0FF00 +001FE0FF00001FE0FF00001FE0FF00001FE07F00003FE07F00003FE07F80003FE03F8000 +3FE01F80007FE01F80007FE00FC000FFE007E000DFE003E001DFE001F0039FE000FC0F1F +E0003FFC1FC00007F01FC00000001FC00000003FC00000003F800000003F800000003F80 +0000003F000000007F000F00007E001F80007E003FC000FC003FC000FC003FC001F8003F +C003F0003F8007E0001F000FC0001C001F80000F807F000007FFFC000001FFF00000003F +C00000233A7DB72A>I<7FFFFFFFFFFFF8FFFFFFFFFFFFFCFFFFFFFFFFFFFCFFFFFFFFFF +FFFC00000000000000000000000000000000000000000000000000000000000000000000 +000000000000000000000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000FFFFFFFFFFFFFCFF +FFFFFFFFFFFCFFFFFFFFFFFFFC7FFFFFFFFFFFF836167B9F41>61 +D<0000003800000000000038000000000000380000000000007C0000000000007C000000 +0000007C000000000000FE000000000000FE000000000000FE000000000001FF00000000 +0001FF000000000001FF0000000000037F8000000000037F8000000000077FC000000000 +063FC000000000063FC0000000000E3FE0000000000C1FE0000000000C1FE0000000001C +1FF000000000180FF000000000180FF000000000380FF8000000003007F8000000003007 +F8000000007007FC000000006003FC000000006003FC00000000C003FE00000000C001FE +00000000C001FE000000018001FF000000018000FF000000018000FF000000030000FF80 +00000300007F8000000300007F8000000600007FC0000007FFFFFFC0000007FFFFFFC000 +000FFFFFFFE000000C00001FE000000C00001FE000001800000FF000001800000FF00000 +1800000FF0000030000007F8000030000007F8000030000007F8000060000003FC000060 +000003FC0000E0000003FC0000E0000001FE0001E0000001FE0003F0000001FF000FFC00 +0007FF80FFFF8000FFFFFEFFFF8000FFFFFEFFFF8000FFFFFE373C7DBB3E>65 +D<000001FF80018000000FFFE0038000007FFFF803800001FF807E07800003FC000F0F80 +000FF000039F80001FE00001DF80003F800000FF80007F0000007F8000FE0000003F8001 +FE0000003F8003FC0000001F8007F80000000F8007F80000000F800FF000000007800FF0 +00000007801FE000000007801FE000000003803FE000000003803FC000000003807FC000 +000001807FC000000001807FC000000001807F800000000180FF800000000000FF800000 +000000FF800000000000FF800000000000FF800000000000FF800000000000FF80000000 +0000FF800000000000FF800000000000FF800000000000FF800000000000FF8000000000 +00FF8000000000007F8000000000007FC000000001807FC000000001807FC00000000180 +3FC000000001803FE000000001801FE000000003801FE000000003000FF000000003000F +F0000000070007F8000000070007F8000000060003FC0000000E0001FE0000001C0000FE +0000001800007F0000003800003F8000007000001FE00000E000000FF00003C0000003FC +000F80000001FF803F000000007FFFFC000000000FFFF00000000001FF800000313D7BBA +3C>67 D<FFFFFFFFC00000FFFFFFFFF80000FFFFFFFFFE000001FF8001FF800000FF0000 +3FE00000FF00000FF00000FF000003F80000FF000001FC0000FF000000FE0000FF000000 +7F0000FF0000007F0000FF0000003F8000FF0000003FC000FF0000001FC000FF0000001F +E000FF0000000FE000FF0000000FF000FF0000000FF000FF0000000FF000FF00000007F8 +00FF00000007F800FF00000007F800FF00000007F800FF00000007FC00FF00000007FC00 +FF00000007FC00FF00000007FC00FF00000007FC00FF00000007FC00FF00000007FC00FF +00000007FC00FF00000007FC00FF00000007FC00FF00000007FC00FF00000007FC00FF00 +000007F800FF00000007F800FF00000007F800FF00000007F800FF0000000FF000FF0000 +000FF000FF0000000FE000FF0000000FE000FF0000001FE000FF0000001FC000FF000000 +3F8000FF0000003F8000FF0000007F0000FF000000FE0000FF000001FC0000FF000003F8 +0000FF00000FF00000FF00003FE00001FF8000FF8000FFFFFFFFFF0000FFFFFFFFF80000 +FFFFFFFFC0000036397DB83F>I<FFFFFFFFFFF8FFFFFFFFFFF8FFFFFFFFFFF801FF8000 +1FF800FF000001F800FF000000FC00FF0000007C00FF0000003C00FF0000001C00FF0000 +001C00FF0000000C00FF0000000C00FF0000000C00FF0000000C00FF0000000E00FF0000 +000600FF0000000600FF0001800600FF0001800600FF0001800000FF0001800000FF0001 +800000FF0001800000FF0003800000FF0003800000FF0007800000FF001F800000FFFFFF +800000FFFFFF800000FFFFFF800000FF001F800000FF0007800000FF0003800000FF0003 +800000FF0001800000FF0001800000FF0001800000FF0001800000FF0001800000FF0001 +800000FF0000000000FF0000000000FF0000000000FF0000000000FF0000000000FF0000 +000000FF0000000000FF0000000000FF0000000000FF0000000000FF0000000000FF0000 +000000FF0000000001FFC0000000FFFFFFC00000FFFFFFC00000FFFFFFC000002F397DB8 +36>70 D<FFFFFF01FFFFFEFFFFFF01FFFFFEFFFFFF01FFFFFE01FF800003FF0000FF0000 +01FE0000FF000001FE0000FF000001FE0000FF000001FE0000FF000001FE0000FF000001 +FE0000FF000001FE0000FF000001FE0000FF000001FE0000FF000001FE0000FF000001FE +0000FF000001FE0000FF000001FE0000FF000001FE0000FF000001FE0000FF000001FE00 +00FF000001FE0000FF000001FE0000FF000001FE0000FF000001FE0000FF000001FE0000 +FF000001FE0000FFFFFFFFFE0000FFFFFFFFFE0000FFFFFFFFFE0000FF000001FE0000FF +000001FE0000FF000001FE0000FF000001FE0000FF000001FE0000FF000001FE0000FF00 +0001FE0000FF000001FE0000FF000001FE0000FF000001FE0000FF000001FE0000FF0000 +01FE0000FF000001FE0000FF000001FE0000FF000001FE0000FF000001FE0000FF000001 +FE0000FF000001FE0000FF000001FE0000FF000001FE0000FF000001FE0000FF000001FE +0000FF000001FE0000FF000001FE0001FF800003FF00FFFFFF01FFFFFEFFFFFF01FFFFFE +FFFFFF01FFFFFE37397DB83E>72 D<FFFFFFC0FFFFFFC0FFFFFFC000FFC000007F800000 +7F8000007F8000007F8000007F8000007F8000007F8000007F8000007F8000007F800000 +7F8000007F8000007F8000007F8000007F8000007F8000007F8000007F8000007F800000 +7F8000007F8000007F8000007F8000007F8000007F8000007F8000007F8000007F800000 +7F8000007F8000007F8000007F8000007F8000007F8000007F8000007F8000007F800000 +7F8000007F8000007F8000007F8000007F8000007F8000007F8000007F8000007F800000 +7F8000007F8000007F800000FFC000FFFFFFC0FFFFFFC0FFFFFFC01A397EB81E>I<003F +FFFFE0003FFFFFE0003FFFFFE000001FFC00000007F800000007F800000007F800000007 +F800000007F800000007F800000007F800000007F800000007F800000007F800000007F8 +00000007F800000007F800000007F800000007F800000007F800000007F800000007F800 +000007F800000007F800000007F800000007F800000007F800000007F800000007F80000 +0007F800000007F800000007F800000007F800000007F800000007F800000007F8000000 +07F800000007F800000007F800000007F800000007F800000007F800000007F8003F0007 +F8007F8007F800FFC007F800FFC007F800FFC007F800FFC007F800FFC00FF000FF800FF0 +007F000FE00070001FE00038001FC0001C003F80000E007F00000781FC000001FFF00000 +007F800000233B7DB82B>I<FFFF000007FFFEFFFF800007FFFEFFFFC00007FFFE00FFC0 +00007FE000FFE000001F8000DFF000000F0000DFF00000060000CFF80000060000C7FC00 +00060000C7FC0000060000C3FE0000060000C1FF0000060000C1FF0000060000C0FF8000 +060000C07FC000060000C07FC000060000C03FE000060000C01FF000060000C01FF80006 +0000C00FF800060000C007FC00060000C007FE00060000C003FE00060000C001FF000600 +00C001FF80060000C000FF80060000C0007FC0060000C0007FE0060000C0003FE0060000 +C0001FF0060000C0000FF8060000C0000FF8060000C00007FC060000C00003FE060000C0 +0003FE060000C00001FF060000C00000FF860000C00000FF860000C000007FC60000C000 +003FE60000C000003FE60000C000001FF60000C000000FFE0000C000000FFE0000C00000 +07FE0000C0000003FE0000C0000003FE0000C0000001FE0000C0000000FE0000C0000000 +FE0000C00000007E0001E00000003E0003F00000003E000FFC0000001E00FFFFC000000E +00FFFFC000000E00FFFFC00000060037397DB83E>78 D<FFFFFFFFC000FFFFFFFFF800FF +FFFFFFFE0001FF8001FF8000FF00003FC000FF00000FE000FF000007F000FF000003F800 +FF000003FC00FF000003FE00FF000001FE00FF000001FE00FF000001FF00FF000001FF00 +FF000001FF00FF000001FF00FF000001FF00FF000001FF00FF000001FF00FF000001FE00 +FF000001FE00FF000003FC00FF000003FC00FF000007F800FF000007F000FF00000FE000 +FF00003FC000FF0001FF0000FFFFFFFC0000FFFFFFF00000FF0000000000FF0000000000 +FF0000000000FF0000000000FF0000000000FF0000000000FF0000000000FF0000000000 +FF0000000000FF0000000000FF0000000000FF0000000000FF0000000000FF0000000000 +FF0000000000FF0000000000FF0000000000FF0000000000FF0000000000FF0000000000 +FF0000000000FF0000000000FF0000000001FF80000000FFFFFF000000FFFFFF000000FF +FFFF00000030397DB839>80 D<FFFFFFFE00000000FFFFFFFFE0000000FFFFFFFFF80000 +0001FF8007FE00000000FF0000FF80000000FF00003FC0000000FF00001FE0000000FF00 +000FF0000000FF000007F8000000FF000007F8000000FF000003FC000000FF000003FC00 +0000FF000003FE000000FF000003FE000000FF000003FE000000FF000003FE000000FF00 +0003FE000000FF000003FE000000FF000003FC000000FF000003FC000000FF000007F800 +0000FF000007F8000000FF00000FF0000000FF00001FE0000000FF00003F80000000FF00 +00FF00000000FF0007FC00000000FFFFFFE000000000FFFFFFC000000000FF000FF00000 +0000FF0003F800000000FF0000FE00000000FF0000FF00000000FF00007F80000000FF00 +003FC0000000FF00003FC0000000FF00001FC0000000FF00001FE0000000FF00001FE000 +0000FF00001FE0000000FF00001FE0000000FF00001FE0000000FF00001FF0000000FF00 +001FF0000000FF00001FF0000000FF00001FF0000000FF00001FF0000000FF00001FF000 +0000FF00001FF0018000FF00001FF0018000FF00001FF8018000FF00000FF8018000FF00 +000FF8038001FF800007F80300FFFFFF0003FC0700FFFFFF0001FC0600FFFFFF0000FE0E +0000000000003FFC00000000000007F000393B7DB83D>82 D<000FF800C0003FFE01C000 +FFFF81C003F807E3C007E000F7C00FC0007FC01F80003FC03F00001FC03E00000FC07E00 +0007C07E000007C07C000003C0FC000003C0FC000001C0FC000001C0FC000001C0FE0000 +00C0FE000000C0FE000000C0FF000000C0FF800000007FC00000007FE00000007FF80000 +003FFF8000001FFFF800001FFFFF80000FFFFFE00007FFFFF80003FFFFFE0000FFFFFF00 +003FFFFF800007FFFFC000007FFFC0000007FFE00000007FE00000003FF00000001FF000 +00000FF000000007F800000007F8C0000003F8C0000003F8C0000001F8C0000001F8C000 +0001F8E0000001F8E0000001F8E0000001F0F0000001F0F0000003F0F8000003E0FC0000 +07E0FE000007C0FF00000FC0FF80001F80FBF0003F00F0FE00FE00E03FFFF800E00FFFE0 +00C001FF0000253D7CBA2E>I<FFFFFF0007FFFEFFFFFF0007FFFEFFFFFF0007FFFE01FF +8000007FE000FF0000001F8000FF0000000F0000FF000000060000FF000000060000FF00 +0000060000FF000000060000FF000000060000FF000000060000FF000000060000FF0000 +00060000FF000000060000FF000000060000FF000000060000FF000000060000FF000000 +060000FF000000060000FF000000060000FF000000060000FF000000060000FF00000006 +0000FF000000060000FF000000060000FF000000060000FF000000060000FF0000000600 +00FF000000060000FF000000060000FF000000060000FF000000060000FF000000060000 +FF000000060000FF000000060000FF000000060000FF000000060000FF000000060000FF +000000060000FF000000060000FF000000060000FF0000000E00007F0000000C00007F80 +00000C00007F8000001C00003F8000001C00003F8000001800001FC000003800001FC000 +007000000FE00000F0000007F00000E0000003F80001C0000001FC000780000000FE000F +000000007F807E000000001FFFF80000000007FFE000000000007F800000373B7DB83E> +85 D<FFFFFC00007FFF80FFFFFC00007FFF80FFFFFC00007FFF8003FF8000000FFC0001 +FF00000007E00001FF00000003C00000FF00000001800000FF800000038000007F800000 +030000007F800000030000007FC00000030000003FC00000060000003FC0000006000000 +3FE000000E0000001FE000000C0000001FF000000C0000000FF00000180000000FF00000 +180000000FF800001800000007F800003000000007F800003000000007FC000070000000 +03FC00006000000003FC00006000000001FE0000C000000001FE0000C000000001FF0000 +C000000000FF00018000000000FF00018000000000FF800380000000007F800300000000 +007F800300000000003FC00600000000003FC00600000000003FE00600000000001FE00C +00000000001FE00C00000000001FF01C00000000000FF01800000000000FF01800000000 +0007F830000000000007F830000000000007FC30000000000003FC60000000000003FC60 +000000000003FEE0000000000001FEC0000000000001FEC0000000000000FF8000000000 +0000FF80000000000000FF800000000000007F000000000000007F000000000000007F00 +0000000000003E000000000000003E000000000000001C000000000000001C0000000000 +00001C00000000393B7EB83E>I<FFFFFC07FFFFF001FFFFFFFFFC07FFFFF001FFFFFFFF +FC07FFFFF001FFFF07FF80001FFE00001FF803FE00000FF8000007E001FE000007F80000 +03C001FE000007F80000038001FF000007F80000038000FF000003FC0000030000FF0000 +03FC0000030000FF800003FC00000700007F800001FE00000600007F800001FE00000600 +007FC00001FE00000600003FC00003FF00000C00003FC00003FF00000C00003FE00003FF +00000C00001FE00007FF80001800001FE000067F80001800001FE000067F80001800000F +F0000E7FC0003000000FF0000C3FC0003000000FF0000C3FC00030000007F8001C3FE000 +60000007F800181FE00060000007F800181FE00060000003FC00181FF000C0000003FC00 +300FF000C0000003FC00300FF000C0000001FE00300FF80180000001FE006007F8018000 +0001FE006007F80180000000FF006007F80300000000FF00C003FC0300000000FF00C003 +FC0300000000FF80C003FC07000000007F818001FE06000000007F818001FE0600000000 +7FC18001FE0E000000003FC30000FF0C000000003FC30000FF0C000000003FE30000FF1C +000000001FE600007F98000000001FE600007F98000000001FF600007F98000000000FFC +00003FF0000000000FFC00003FF0000000000FFC00003FF00000000007FC00003FE00000 +000007F800001FE00000000007F800001FE00000000003F800001FC00000000003F00000 +0FC00000000003F000000FC00000000001F000000F800000000001E00000078000000000 +01E0000007800000000000E0000007000000000000C0000003000000503B7EB855>I<FF +F8FFF8FFF8FFF8F000F000F000F000F000F000F000F000F000F000F000F000F000F000F0 +00F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F0 +00F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F0 +00F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F0 +00F000F000F000F000F000F000FFF8FFF8FFF8FFF80D5378BD17>91 +D<FFF8FFF8FFF8FFF8007800780078007800780078007800780078007800780078007800 +780078007800780078007800780078007800780078007800780078007800780078007800 +780078007800780078007800780078007800780078007800780078007800780078007800 +780078007800780078007800780078007800780078007800780078007800780078007800 +780078007800780078007800780078FFF8FFF8FFF8FFF80D537FBD17>93 +D<001FE0000000FFFC000003E03F000007000F80000F8007E0001FC003F0001FE003F000 +1FE001F8001FE001F8001FE000FC000FC000FC00078000FC00000000FC00000000FC0000 +0000FC00000000FC0000007FFC000007FFFC00003FE0FC0000FE00FC0003F800FC000FF0 +00FC001FC000FC003FC000FC007F8000FC007F0000FC007F0000FC0CFE0000FC0CFE0000 +FC0CFE0000FC0CFE0001FC0CFE0001FC0CFF0003FC0C7F00077C0C7F80063E183FC01E3E +180FE0781FF003FFF00FE0007F8007C026277DA52A>97 D<0003FC00001FFF80007E03E0 +01F8007003F000F807E001FC0FC003FC0FC003FC1F8003FC3F8003FC3F0001F87F0000F0 +7F0000007F0000007E000000FE000000FE000000FE000000FE000000FE000000FE000000 +FE000000FE000000FE000000FE0000007E0000007F0000007F0000003F0000063F800006 +1F80000E1FC0000C0FC0001C07E0003803F0007001F800E0007C07C0001FFF000007F800 +1F277DA525>99 D<0000000FC0000003FFC0000003FFC0000003FFC00000003FC0000000 +0FC00000000FC00000000FC00000000FC00000000FC00000000FC00000000FC00000000F +C00000000FC00000000FC00000000FC00000000FC00000000FC00000000FC00000000FC0 +0000000FC00003F80FC0001FFF0FC0007E078FC000F801EFC003F0007FC007E0003FC00F +C0001FC00FC0001FC01F80000FC03F80000FC03F00000FC07F00000FC07F00000FC07E00 +000FC0FE00000FC0FE00000FC0FE00000FC0FE00000FC0FE00000FC0FE00000FC0FE0000 +0FC0FE00000FC0FE00000FC0FE00000FC07E00000FC07F00000FC07F00000FC03F00000F +C03F00000FC01F80001FC01F80001FC00FC0003FC007E0007FC003F000EFF001F801CFFF +007C078FFF001FFE0FFF0007F80FC0283B7DB92E>I<0007F800001FFF00007C0FC001F8 +03E003F001F007E001F80FC000F81F80007C1F80007C3F00007E3F00003E7F00003E7F00 +003F7E00003FFE00003FFE00003FFE00003FFFFFFFFFFFFFFFFFFE000000FE000000FE00 +0000FE000000FE0000007E0000007E0000007F0000007F0000003F0000033F8000031F80 +00070FC0000607C0000E07E0001C01F0003800F80070007E03E0001FFF800003FC002027 +7EA525>I<00000003F0000FF00FF8003FFC3C3C00F81F707C01F00FE07C03E007C07C07 +C003E0100FC003F0000FC003F0001F8001F8001F8001F8001F8001F8001F8001F8001F80 +01F8001F8001F8001F8001F8001F8001F8000FC003F0000FC003F00007C003E00003E007 +C00003F00F800003F81F0000073FFC0000060FF000000E000000000E000000000E000000 +000E000000000F000000000F000000000FC000000007FFFFC00007FFFFF80003FFFFFE00 +01FFFFFF8003FFFFFFC00F80007FE01F00000FF03E000003F07C000001F07C000001F8F8 +000000F8F8000000F8F8000000F8F8000000F8F8000000F8FC000001F87C000001F03E00 +0003E03F000007E00F80000F8007E0003F0001FC01FC00007FFFF0000007FF000026387E +A52A>103 D<03F000000000FFF000000000FFF000000000FFF0000000000FF000000000 +03F00000000003F00000000003F00000000003F00000000003F00000000003F000000000 +03F00000000003F00000000003F00000000003F00000000003F00000000003F000000000 +03F00000000003F00000000003F00000000003F00000000003F00FF0000003F03FFC0000 +03F0F03F000003F1C01F800003F3800FC00003F7000FC00003FE000FC00003FC0007E000 +03FC0007E00003F80007E00003F80007E00003F80007E00003F00007E00003F00007E000 +03F00007E00003F00007E00003F00007E00003F00007E00003F00007E00003F00007E000 +03F00007E00003F00007E00003F00007E00003F00007E00003F00007E00003F00007E000 +03F00007E00003F00007E00003F00007E00003F00007E00003F00007E00003F00007E000 +03F00007E00007F8000FF000FFFFC1FFFF80FFFFC1FFFF80FFFFC1FFFF80293A7EB92E> +I<0380000FE0001FF0001FF0001FF0001FF0001FF0000FE0000380000000000000000000 +0000000000000000000000000000000000000000000003F000FFF000FFF000FFF00007F0 +0003F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003F0 +0003F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003F0 +0003F00003F00003F00003F00007F800FFFFC0FFFFC0FFFFC012387EB717>I<03F000FF +F000FFF000FFF0000FF00003F00003F00003F00003F00003F00003F00003F00003F00003 +F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003 +F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003 +F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003F00003 +F00003F00003F00003F00003F00007F800FFFFC0FFFFC0FFFFC0123A7EB917>108 +D<03F00FF00000FFF03FFC0000FFF0F03F0000FFF1C01F80000FF3800FC00003F7000FC0 +0003FE000FC00003FC0007E00003FC0007E00003F80007E00003F80007E00003F80007E0 +0003F00007E00003F00007E00003F00007E00003F00007E00003F00007E00003F00007E0 +0003F00007E00003F00007E00003F00007E00003F00007E00003F00007E00003F00007E0 +0003F00007E00003F00007E00003F00007E00003F00007E00003F00007E00003F00007E0 +0003F00007E00003F00007E00003F00007E00007F8000FF000FFFFC1FFFF80FFFFC1FFFF +80FFFFC1FFFF8029257EA42E>110 D<0003FE0000000FFF8000003E03E00000F800F800 +01F0007C0003E0003E0007C0001F000F80000F801F80000FC01F000007C03F000007E03F +000007E07E000003F07E000003F07E000003F07E000003F0FE000003F8FE000003F8FE00 +0003F8FE000003F8FE000003F8FE000003F8FE000003F8FE000003F8FE000003F87E0000 +03F07E000003F07F000007F03F000007E03F000007E01F80000FC00F80000F800FC0001F +8007E0003F0003F0007E0000F800F800007E03F000001FFFC0000003FE000025277EA52A +>I<03F01FE000FFF07FF800FFF1E07E00FFF3801F8007F7000FC003FE0007E003FC0003 +F003F80003F803F00001F803F00001FC03F00000FC03F00000FE03F00000FE03F00000FE +03F000007F03F000007F03F000007F03F000007F03F000007F03F000007F03F000007F03 +F000007F03F000007F03F000007F03F00000FE03F00000FE03F00000FE03F00001FC03F0 +0001FC03F80003F803F80003F003FC0007F003FE000FE003F6000FC003F7803F0003F1E0 +7E0003F0FFF80003F01FC00003F000000003F000000003F000000003F000000003F00000 +0003F000000003F000000003F000000003F000000003F000000003F000000007F8000000 +FFFFC00000FFFFC00000FFFFC0000028357EA42E>I<07E01F00FFE07FC0FFE1E3E0FFE3 +87F00FE707F003E607F003EE07F003EC03E003FC008003F8000003F8000003F8000003F8 +000003F0000003F0000003F0000003F0000003F0000003F0000003F0000003F0000003F0 +000003F0000003F0000003F0000003F0000003F0000003F0000003F0000003F0000003F0 +000003F0000003F0000007F80000FFFFF000FFFFF000FFFFF0001C257EA421>114 +D<00FF030003FFE7000F80FF001E003F003C001F0078000F0070000700F0000700F00007 +00F0000300F8000300F8000300FC000300FF0000007FE000007FFF00003FFFE0001FFFF8 +000FFFFC0003FFFE0000FFFF000007FF8000007F8000001F80C0000FC0C00007C0C00007 +C0E00003C0E00003C0E00003C0F00003C0F0000380F8000780FC000780FC000F00FF001E +00F3C07C00E1FFF000C03F80001A277DA521>I<00180000001800000018000000180000 +0018000000380000003800000038000000780000007800000078000000F8000001F80000 +03F8000007F800001FFFFF00FFFFFF00FFFFFF0001F8000001F8000001F8000001F80000 +01F8000001F8000001F8000001F8000001F8000001F8000001F8000001F8000001F80000 +01F8000001F8000001F8000001F8000001F8000001F800C001F800C001F800C001F800C0 +01F800C001F800C001F800C001F800C001F800C000FC01C000FC0180007C0380007E0300 +003F0700000FFE000001F8001A347FB220>I<03F00007E000FFF001FFE000FFF001FFE0 +00FFF001FFE0000FF0001FE00003F00007E00003F00007E00003F00007E00003F00007E0 +0003F00007E00003F00007E00003F00007E00003F00007E00003F00007E00003F00007E0 +0003F00007E00003F00007E00003F00007E00003F00007E00003F00007E00003F00007E0 +0003F00007E00003F00007E00003F00007E00003F00007E00003F00007E00003F00007E0 +0003F0000FE00003F0000FE00003F0000FE00003F0001FE00001F0001FE00001F8003FE0 +0000F80077F80000FC00E7FF80003F03C7FF80001FFF87FF800003FC07E00029267EA42E +>I<FFFF803FFEFFFF803FFEFFFF803FFE0FF8000FF007F00007E003F00003C003F80003 +8001F800030001F800030000FC00060000FC00060000FE000E00007E000C00007E000C00 +003F001800003F001800003F803800001F803000001F803000000FC06000000FC0600000 +0FE060000007E0C0000007E0C0000003F180000003F180000003F180000001FB00000001 +FB00000001FF00000000FE00000000FE000000007C000000007C000000007C0000000038 +0000000038000027257EA32C>I<FFFF1FFFE03FFEFFFF1FFFE03FFEFFFF1FFFE03FFE0F +F800FF000FF807F0007E0003E007F0007E0003C003F0003E00018003F0003E00018001F8 +003F00030001F8003F00030001F8003F00030000FC003F80060000FC006F80060000FC00 +6F800600007E00EFC00C00007E00C7C00C00007E00C7C00C00003F01C7E01800003F0183 +E01800003F8183F03800001F8383F03000001F8301F03000001FC301F87000000FC600F8 +6000000FC600F860000007E600FCC0000007EC007CC0000007EC007CC0000003FC007F80 +000003F8003F80000003F8003F80000001F8003F00000001F0001F00000001F0001F0000 +0000F0001E00000000E0000E0000000060000C000037257EA33C>I<FFFF803FFEFFFF80 +3FFEFFFF803FFE0FF8000FF007F00007C003F000038001F800038001F800030001FC0003 +0000FC00060000FC000600007E000C00007E000C00007F000C00003F001800003F001800 +001F803000001F803000001FC07000000FC06000000FC060000007E0C0000007E0C00000 +07F1C0000003F180000003F180000001FB00000001FB00000001FF00000000FE00000000 +FE000000007C000000007C000000007C0000000038000000003800000000300000000030 +00000000700000000060000000006000000000C000000000C000007C01C00000FE018000 +00FE03800000FE03000000FE06000000FC0E000000701C00000038380000001FF0000000 +0FC000000027357EA32C>121 D<FFFFFFFFFF80FFFFFFFFFF80290280962A>123 +D E /FA 23 121 df<00000000000F00000000000000000000000F000000000000000000 +00000F00000000000000000000001F80000000000000000000001F800000000000000000 +00003FC0000000000000000000003FC0000000000000000000003FC00000000000000000 +00007FE0000000000000000000007FE0000000000000000000007FE00000000000000000 +0000FFF000000000000000000000FFF000000000000000000000FFF00000000000000000 +0001FFF800000000000000000001DFF800000000000000000001DFF80000000000000000 +00039FFC000000000000000000038FFC000000000000000000038FFC0000000000000000 +00070FFE0000000000000000000707FE0000000000000000000F07FF0000000000000000 +000E03FF0000000000000000000E03FF0000000000000000001E03FF8000000000000000 +001C01FF8000000000000000001C01FF8000000000000000003C01FFC000000000000000 +003800FFC000000000000000003800FFC000000000000000007000FFE000000000000000 +0070007FE0000000000000000070007FE00000000000000000E0007FF000000000000000 +00E0003FF00000000000000000E0003FF00000000000000001C0003FF800000000000000 +01C0001FF80000000000000003C0001FFC000000000000000380000FFC00000000000000 +0380000FFC000000000000000780000FFE0000000000000007000007FE00000000000000 +07000007FE000000000000000F000007FF000000000000000E000003FF00000000000000 +0E000003FF000000000000001C000003FF800000000000001C000001FF80000000000000 +1C000001FF8000000000000038000001FFC000000000000038000000FFC0000000000000 +38000000FFC000000000000070000000FFE0000000000000700000007FE0000000000000 +F00000007FF0000000000000E00000003FF0000000000000E00000003FF0000000000001 +E00000003FF8000000000001C00000001FF8000000000001C00000001FF8000000000003 +C00000001FFC000000000003FFFFFFFFFFFC000000000003FFFFFFFFFFFC000000000007 +FFFFFFFFFFFE000000000007FFFFFFFFFFFE0000000000070000000007FE00000000000E +0000000007FF00000000000E0000000003FF00000000000E0000000003FF00000000001C +0000000003FF80000000001C0000000001FF80000000003C0000000001FFC00000000038 +0000000000FFC000000000380000000000FFC000000000780000000000FFE00000000070 +00000000007FE0000000007000000000007FE000000000F000000000007FF000000000E0 +00000000003FF000000000E000000000003FF000000001C000000000003FF800000001C0 +00000000001FF800000001C000000000001FF8000000038000000000001FFC0000000380 +00000000000FFC000000038000000000000FFC000000070000000000000FFE0000000700 +000000000007FE0000000F00000000000007FF0000000F00000000000003FF0000001F00 +000000000003FF0000003F80000000000003FF8000007FC0000000000003FF800001FFE0 +000000000007FFC0000FFFF800000000001FFFF000FFFFFF0000000007FFFFFFF0FFFFFF +0000000007FFFFFFF0FFFFFF0000000007FFFFFFF0FFFFFF0000000007FFFFFFF05C657D +E463>65 D<FFFFFFFFFFFFF0000000FFFFFFFFFFFFFF000000FFFFFFFFFFFFFFE00000FF +FFFFFFFFFFFFFC000000FFFC0000003FFE0000003FF800000007FF8000001FF800000001 +FFC000001FF8000000007FF000001FF8000000003FF800001FF8000000001FFC00001FF8 +000000000FFE00001FF80000000007FE00001FF80000000003FF00001FF80000000003FF +80001FF80000000001FF80001FF80000000000FFC0001FF80000000000FFC0001FF80000 +000000FFE0001FF800000000007FE0001FF800000000007FE0001FF800000000007FF000 +1FF800000000007FF0001FF800000000007FF0001FF800000000007FF0001FF800000000 +007FF0001FF800000000007FF0001FF800000000007FF0001FF800000000007FF0001FF8 +00000000007FF0001FF800000000007FE0001FF80000000000FFE0001FF80000000000FF +E0001FF80000000000FFC0001FF80000000001FFC0001FF80000000001FF80001FF80000 +000003FF00001FF80000000007FF00001FF8000000000FFE00001FF8000000000FFC0000 +1FF8000000003FF800001FF8000000007FF000001FF800000000FFC000001FF800000003 +FF8000001FF80000000FFE0000001FF80000007FF80000001FF800000FFFE00000001FFF +FFFFFFFF000000001FFFFFFFFFFFE00000001FFFFFFFFFFFFC0000001FF800000003FF80 +00001FF800000000FFC000001FF8000000003FF000001FF8000000000FFC00001FF80000 +000007FE00001FF80000000003FF00001FF80000000001FF80001FF80000000000FFC000 +1FF800000000007FE0001FF800000000007FF0001FF800000000003FF0001FF800000000 +001FF8001FF800000000001FF8001FF800000000001FFC001FF800000000000FFC001FF8 +00000000000FFE001FF800000000000FFE001FF8000000000007FE001FF8000000000007 +FF001FF8000000000007FF001FF8000000000007FF001FF8000000000007FF001FF80000 +00000007FF001FF8000000000007FF001FF8000000000007FF001FF8000000000007FF00 +1FF8000000000007FF001FF8000000000007FE001FF800000000000FFE001FF800000000 +000FFE001FF800000000000FFE001FF800000000001FFC001FF800000000001FFC001FF8 +00000000003FF8001FF800000000003FF8001FF800000000007FF0001FF80000000000FF +E0001FF80000000001FFE0001FF80000000003FFC0001FF80000000007FF80001FF80000 +00000FFF00001FF8000000003FFE00001FF8000000007FFC00003FF800000003FFF00000 +FFFC0000001FFFE000FFFFFFFFFFFFFFFF8000FFFFFFFFFFFFFFFE0000FFFFFFFFFFFFFF +F00000FFFFFFFFFFFFFF000000506279E15E>I<FFFFFFFFFFFFF000000000FFFFFFFFFF +FFFF00000000FFFFFFFFFFFFFFE0000000FFFFFFFFFFFFFFF800000000FFFC0000007FFE +000000003FF80000000FFF800000001FF800000001FFC00000001FF8000000007FF00000 +001FF8000000001FF80000001FF8000000000FFC0000001FF80000000003FE0000001FF8 +0000000001FF0000001FF80000000000FF8000001FF800000000007FC000001FF8000000 +00003FE000001FF800000000001FF000001FF800000000000FF000001FF800000000000F +F800001FF8000000000007FC00001FF8000000000003FC00001FF8000000000003FE0000 +1FF8000000000001FF00001FF8000000000001FF00001FF8000000000000FF80001FF800 +0000000000FF80001FF80000000000007FC0001FF80000000000007FC0001FF800000000 +00007FE0001FF80000000000003FE0001FF80000000000003FE0001FF80000000000003F +F0001FF80000000000003FF0001FF80000000000001FF0001FF80000000000001FF8001F +F80000000000001FF8001FF80000000000001FF8001FF80000000000001FFC001FF80000 +000000001FFC001FF80000000000000FFC001FF80000000000000FFC001FF80000000000 +000FFC001FF80000000000000FFC001FF80000000000000FFE001FF80000000000000FFE +001FF80000000000000FFE001FF80000000000000FFE001FF80000000000000FFE001FF8 +0000000000000FFE001FF80000000000000FFE001FF80000000000000FFE001FF8000000 +0000000FFE001FF80000000000000FFE001FF80000000000000FFE001FF8000000000000 +0FFE001FF80000000000000FFE001FF80000000000000FFE001FF80000000000000FFE00 +1FF80000000000000FFC001FF80000000000000FFC001FF80000000000000FFC001FF800 +00000000000FFC001FF80000000000000FFC001FF80000000000001FFC001FF800000000 +00001FF8001FF80000000000001FF8001FF80000000000001FF8001FF80000000000001F +F8001FF80000000000003FF0001FF80000000000003FF0001FF80000000000003FE0001F +F80000000000003FE0001FF80000000000007FE0001FF80000000000007FC0001FF80000 +00000000FFC0001FF8000000000000FF80001FF8000000000000FF80001FF80000000000 +01FF00001FF8000000000001FF00001FF8000000000003FE00001FF8000000000007FC00 +001FF8000000000007FC00001FF800000000000FF800001FF800000000001FF000001FF8 +00000000003FE000001FF800000000007FC000001FF80000000000FFC000001FF8000000 +0001FF8000001FF80000000003FF0000001FF80000000007FC0000001FF8000000001FF8 +0000001FF8000000007FF00000001FF800000001FFC00000003FF800000007FF80000000 +FFFC0000007FFE000000FFFFFFFFFFFFFFF8000000FFFFFFFFFFFFFFE0000000FFFFFFFF +FFFFFF00000000FFFFFFFFFFFFF000000000576279E165>68 D<FFFFFC00000000000000 +1FFFFF80FFFFFC000000000000001FFFFF80FFFFFC000000000000001FFFFF80FFFFFE00 +0000000000003FFFFF8000FFFE000000000000003FFF8000003FFE000000000000003FFE +0000001DFF0000000000000077FC0000001DFF0000000000000077FC0000001CFF800000 +00000000E7FC0000001CFF80000000000000E7FC0000001CFF80000000000000E7FC0000 +001C7FC0000000000001C7FC0000001C7FC0000000000001C7FC0000001C7FC000000000 +0001C7FC0000001C3FE000000000000387FC0000001C3FE000000000000387FC0000001C +3FE000000000000387FC0000001C1FF000000000000707FC0000001C1FF0000000000007 +07FC0000001C0FF800000000000E07FC0000001C0FF800000000000E07FC0000001C0FF8 +00000000000E07FC0000001C07FC00000000001C07FC0000001C07FC00000000001C07FC +0000001C07FC00000000001C07FC0000001C03FE00000000003807FC0000001C03FE0000 +0000003807FC0000001C03FE00000000003807FC0000001C01FF00000000007007FC0000 +001C01FF00000000007007FC0000001C00FF8000000000E007FC0000001C00FF80000000 +00E007FC0000001C00FF8000000000E007FC0000001C007FC000000001C007FC0000001C +007FC000000001C007FC0000001C007FC000000001C007FC0000001C003FE00000000380 +07FC0000001C003FE0000000038007FC0000001C003FE0000000038007FC0000001C001F +F0000000070007FC0000001C001FF0000000070007FC0000001C000FF80000000E0007FC +0000001C000FF80000000E0007FC0000001C000FF80000000E0007FC0000001C0007FC00 +00001C0007FC0000001C0007FC0000001C0007FC0000001C0007FC0000001C0007FC0000 +001C0003FE000000380007FC0000001C0003FE000000380007FC0000001C0003FE000000 +380007FC0000001C0001FF000000700007FC0000001C0001FF000000700007FC0000001C +0000FF800000E00007FC0000001C0000FF800000E00007FC0000001C0000FF800000E000 +07FC0000001C00007FC00001C00007FC0000001C00007FC00001C00007FC0000001C0000 +7FC00001C00007FC0000001C00003FE00003800007FC0000001C00003FE00003800007FC +0000001C00003FE00003800007FC0000001C00001FF00007000007FC0000001C00001FF0 +0007000007FC0000001C00000FF8000E000007FC0000001C00000FF8000E000007FC0000 +001C00000FF8000E000007FC0000001C000007FC001C000007FC0000001C000007FC001C +000007FC0000001C000007FC001C000007FC0000001C000003FE0038000007FC0000001C +000003FE0038000007FC0000001C000003FE0038000007FC0000001C000001FF00700000 +07FC0000001C000001FF0070000007FC0000001C000001FF0070000007FC0000001C0000 +00FF80E0000007FC0000001C000000FF80E0000007FC0000001C0000007FC1C0000007FC +0000001C0000007FC1C0000007FC0000001C0000007FC1C0000007FC0000001C0000003F +E380000007FC0000001C0000003FE380000007FC0000001C0000003FE380000007FC0000 +001C0000001FF700000007FC0000001C0000001FF700000007FC0000001C0000001FF700 +000007FC0000001C0000000FFE00000007FC0000001C0000000FFE00000007FC0000003E +00000007FC00000007FC0000003E00000007FC00000007FC0000007F00000007FC000000 +07FC0000007F00000003F800000007FC000001FFC0000003F80000000FFE000007FFF800 +0003F80000003FFF8000FFFFFF800001F000003FFFFFFF80FFFFFF800001F000003FFFFF +FF80FFFFFF800001F000003FFFFFFF80FFFFFF800000E000003FFFFFFF80696278E17A> +77 D<000007FF0000030000003FFFF00007000001FFFFFC0007000007FFFFFF000F0000 +0FFC00FFC00F00003FE0000FF01F00007F800003F81F0000FE000000FC3F0001FC000000 +7E3F0003F80000001F7F0007F00000000FFF000FE000000007FF000FC000000007FF001F +C000000003FF001F8000000001FF003F8000000000FF003F0000000000FF007F00000000 +007F007F00000000007F007E00000000003F007E00000000003F00FE00000000003F00FE +00000000001F00FE00000000001F00FE00000000001F00FE00000000000F00FE00000000 +000F00FF00000000000F00FF00000000000F00FF00000000000F00FF80000000000700FF +800000000007007FC00000000007007FC00000000007007FE00000000000003FF0000000 +0000003FF80000000000003FFC0000000000001FFE0000000000001FFF8000000000000F +FFE0000000000007FFFC000000000007FFFFC00000000003FFFFF80000000001FFFFFF80 +00000000FFFFFFF8000000007FFFFFFF800000001FFFFFFFE00000000FFFFFFFF8000000 +03FFFFFFFE00000000FFFFFFFF800000001FFFFFFFC000000001FFFFFFE0000000003FFF +FFF00000000003FFFFF800000000003FFFFC000000000003FFFE0000000000007FFE0000 +000000001FFF0000000000000FFF80000000000003FF80000000000001FFC00000000000 +00FFC0000000000000FFC00000000000007FE00000000000003FE00000000000003FE000 +00000000001FE0E000000000001FF0E000000000000FF0E000000000000FF0E000000000 +000FF0E000000000000FF0E0000000000007F0E0000000000007F0F0000000000007F0F0 +000000000007F0F0000000000007F0F0000000000007F0F8000000000007F0F800000000 +0007E0F800000000000FE0FC00000000000FE0FC00000000000FC0FE00000000000FC0FF +00000000001FC0FF00000000001F80FF80000000003F80FFC0000000003F00FFE0000000 +007F00FFF000000000FE00FEF800000000FC00FEFC00000001F800FC7F00000003F800FC +1F8000000FF000F80FE000001FE000F807FC00007F8000F001FFE003FF0000F0007FFFFF +FC0000E0001FFFFFF00000E00003FFFFC00000C000001FFE0000003C667AE349>83 +D<3FFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFF83FFF +FFFFFFFFFFFFFFFFF83FFFC00003FFC00003FFF83FFC000001FF8000007FF83FF0000001 +FF8000000FF83FC0000001FF80000007F87F80000001FF80000003FC7F00000001FF8000 +0001FC7E00000001FF80000000FC7C00000001FF800000007C7C00000001FF800000007C +7C00000001FF800000007C7800000001FF800000003C7800000001FF800000003C780000 +0001FF800000003C7800000001FF800000003C7000000001FF800000001C7000000001FF +800000001C7000000001FF800000001C7000000001FF800000001C7000000001FF800000 +001C7000000001FF800000001CF000000001FF800000001EE000000001FF800000000EE0 +00000001FF800000000EE000000001FF800000000EE000000001FF800000000EE0000000 +01FF800000000EE000000001FF800000000EE000000001FF800000000E0000000001FF80 +000000000000000001FF80000000000000000001FF80000000000000000001FF80000000 +000000000001FF80000000000000000001FF80000000000000000001FF80000000000000 +000001FF80000000000000000001FF80000000000000000001FF80000000000000000001 +FF80000000000000000001FF80000000000000000001FF80000000000000000001FF8000 +0000000000000001FF80000000000000000001FF80000000000000000001FF8000000000 +0000000001FF80000000000000000001FF80000000000000000001FF8000000000000000 +0001FF80000000000000000001FF80000000000000000001FF80000000000000000001FF +80000000000000000001FF80000000000000000001FF80000000000000000001FF800000 +00000000000001FF80000000000000000001FF80000000000000000001FF800000000000 +00000001FF80000000000000000001FF80000000000000000001FF800000000000000000 +01FF80000000000000000001FF80000000000000000001FF80000000000000000001FF80 +000000000000000001FF80000000000000000001FF80000000000000000001FF80000000 +000000000001FF80000000000000000001FF80000000000000000001FF80000000000000 +000001FF80000000000000000001FF80000000000000000001FF80000000000000000001 +FF80000000000000000001FF80000000000000000001FF80000000000000000001FF8000 +0000000000000001FF80000000000000000001FF80000000000000000001FF8000000000 +0000000001FF80000000000000000001FF80000000000000000001FF8000000000000000 +0001FF80000000000000000001FF80000000000000000001FF80000000000000000003FF +C0000000000000000003FFC000000000000000001FFFF800000000000001FFFFFFFFFF80 +0000000001FFFFFFFFFF800000000001FFFFFFFFFF800000000001FFFFFFFFFF80000057 +627CE160>I<00003FF0000000000003FFFE00000000000FFFFF80000000003FC03FE000 +0000007E0007F800000000F80003FC00000001E00001FE00000003C00000FF0000000780 +00007F8000000F0000003FC000000F8000003FC000000FF000001FE000001FF800001FE0 +00001FFC00000FF000001FFC00000FF000001FFC00000FF000001FFC000007F800001FFC +000007F800001FFC000007F800000FF8000007F8000003E0000007F800000000000007F8 +00000000000007F800000000000007F800000000000007F800000000000007F800000000 +000007F80000000000007FF800000000007FFFF8000000000FFFFFF8000000007FF807F8 +00000001FF8007F800000007FC0007F80000001FF00007F80000007FC00007F8000000FF +800007F8000003FE000007F8000007FC000007F800000FFC000007F800000FF8000007F8 +00001FF0000007F800003FE0000007F800003FE0000007F800007FC0000007F800E07FC0 +000007F800E07FC0000007F800E0FFC0000007F800E0FF80000007F800E0FF80000007F8 +00E0FF8000000FF800E0FF8000000FF800E0FF8000000FF800E0FF8000001FF800E0FFC0 +00001BF800E07FC000003BF800E07FC0000073F800E07FE0000071FC01C03FF00000E1FC +01C01FF00001C1FC01C00FFC000780FE038007FE000F00FF070001FF807E007FFF00007F +FFF8003FFE00001FFFE0001FF8000001FF000007E0003B417ABF42>97 +D<0003C000000000000007FFC0000000000000FFFFC0000000000000FFFFC00000000000 +00FFFFC0000000000000FFFFC000000000000001FFC0000000000000007FC00000000000 +00007FC0000000000000003FC0000000000000003FC0000000000000003FC00000000000 +00003FC0000000000000003FC0000000000000003FC0000000000000003FC00000000000 +00003FC0000000000000003FC0000000000000003FC0000000000000003FC00000000000 +00003FC0000000000000003FC0000000000000003FC0000000000000003FC00000000000 +00003FC0000000000000003FC0000000000000003FC0000000000000003FC00000000000 +00003FC0000000000000003FC0000000000000003FC0000000000000003FC00000000000 +00003FC0000000000000003FC0000000000000003FC0000000000000003FC00000000000 +00003FC0000000000000003FC0007FC0000000003FC007FFFC000000003FC01FFFFF0000 +00003FC07F007FC00000003FC0F8000FF00000003FC3E00007F80000003FC7800001FC00 +00003FCF000000FE0000003FDE0000007F0000003FFC0000003F8000003FF80000003FC0 +00003FF00000001FE000003FF00000000FE000003FE00000000FF000003FE000000007F8 +00003FC000000007F800003FC000000003FC00003FC000000003FC00003FC000000003FE +00003FC000000001FE00003FC000000001FE00003FC000000001FF00003FC000000001FF +00003FC000000001FF00003FC000000000FF00003FC000000000FF80003FC000000000FF +80003FC000000000FF80003FC000000000FF80003FC000000000FF80003FC000000000FF +80003FC000000000FF80003FC000000000FF80003FC000000000FF80003FC000000000FF +80003FC000000000FF80003FC000000000FF80003FC000000000FF80003FC000000000FF +00003FC000000001FF00003FC000000001FF00003FC000000001FF00003FC000000001FF +00003FC000000001FE00003FC000000003FE00003FC000000003FC00003FC000000003FC +00003FC000000007FC00003FC000000007F800003FE000000007F000003FE00000000FF0 +00003FF00000001FE000003FF80000001FC000003FB80000003FC000003F3C0000007F80 +00003F1E000000FF0000003F0F000001FE0000003E07800003FC0000003E03C0000FF000 +00003C01F0001FE00000003C007E00FF800000003C003FFFFE0000000038000FFFF80000 +0000000000FF8000000041657DE349>I<000001FF80000000000FFFF8000000003FFFFE +00000000FF007F80000003FC0007E0000007F00001F000001FE000007800003FC000003C +00007F8000001E0000FF0000000F0001FE0000001F0001FC000000FF0003FC000001FF80 +07F8000003FF8007F8000003FF800FF0000003FF800FF0000003FF801FE0000003FF801F +E0000003FF803FE0000001FF003FC00000007C003FC000000000007FC000000000007FC0 +00000000007FC000000000007F800000000000FF800000000000FF800000000000FF8000 +00000000FF800000000000FF800000000000FF800000000000FF800000000000FF800000 +000000FF800000000000FF800000000000FF800000000000FF800000000000FF80000000 +00007F8000000000007FC000000000007FC000000000007FC000000000007FC000000000 +003FC000000000003FE000000000003FE000000000001FE000000001C01FF000000001C0 +0FF000000003C00FF8000000038007F8000000038003FC000000078003FE000000070001 +FE0000000F0000FF0000001E00007F8000003C00003FC000007800001FE00000F000000F +F80001E0000003FC0007C0000000FF803F800000003FFFFE000000000FFFF80000000001 +FF80000032417CBF3A>I<0000000000001E000000000000003FFE00000000000007FFFE +00000000000007FFFE00000000000007FFFE00000000000007FFFE000000000000000FFE +0000000000000003FE0000000000000003FE0000000000000001FE0000000000000001FE +0000000000000001FE0000000000000001FE0000000000000001FE0000000000000001FE +0000000000000001FE0000000000000001FE0000000000000001FE0000000000000001FE +0000000000000001FE0000000000000001FE0000000000000001FE0000000000000001FE +0000000000000001FE0000000000000001FE0000000000000001FE0000000000000001FE +0000000000000001FE0000000000000001FE0000000000000001FE0000000000000001FE +0000000000000001FE0000000000000001FE0000000000000001FE0000000000000001FE +0000000000000001FE0000000000000001FE0000000000FF8001FE000000000FFFF801FE +000000003FFFFE01FE00000000FF803F81FE00000003FC0007C1FE00000007F80001E1FE +0000001FE00000F9FE0000003FC000007DFE0000007F8000003DFE000000FF0000001FFE +000001FE0000000FFE000001FC00000007FE000003FC00000007FE000007F800000003FE +000007F000000001FE00000FF000000001FE00001FF000000001FE00001FE000000001FE +00001FE000000001FE00003FE000000001FE00003FC000000001FE00007FC000000001FE +00007FC000000001FE00007FC000000001FE00007FC000000001FE00007F8000000001FE +0000FF8000000001FE0000FF8000000001FE0000FF8000000001FE0000FF8000000001FE +0000FF8000000001FE0000FF8000000001FE0000FF8000000001FE0000FF8000000001FE +0000FF8000000001FE0000FF8000000001FE0000FF8000000001FE0000FF8000000001FE +0000FF8000000001FE00007F8000000001FE00007FC000000001FE00007FC000000001FE +00007FC000000001FE00003FC000000001FE00003FC000000001FE00003FE000000001FE +00001FE000000001FE00001FE000000001FE00000FF000000003FE00000FF000000003FE +000007F800000007FE000003F800000007FE000003FC0000000FFE000001FE0000001FFE +000000FE0000003DFE0000007F0000003DFE0000003F800000F9FF0000001FC00001F1FF +0000000FF00003C1FFC0000007F8000F81FFFF800001FF007F01FFFF8000007FFFFC01FF +FF8000001FFFE001FFFF80000001FF0001FF000041657CE349>I<000003FE0000000000 +1FFFE000000000FFFFF800000001FE03FE00000007F0007F8000000FE0003FC000003FC0 +001FE000007F00000FF00000FF000007F80000FE000003F80001FC000003FC0003F80000 +01FC0007F8000001FE0007F0000000FE000FF0000000FF000FF00000007F001FE0000000 +7F001FE00000007F803FE00000007F803FC00000003F803FC00000003F807FC00000003F +C07FC00000003FC07FC00000003FC07F800000003FC07F800000003FC0FF800000003FC0 +FFFFFFFFFFFFC0FFFFFFFFFFFFC0FFFFFFFFFFFFC0FF800000000000FF800000000000FF +800000000000FF800000000000FF800000000000FF800000000000FF800000000000FF80 +0000000000FF8000000000007F8000000000007FC000000000007FC000000000007FC000 +000000003FC000000000003FC000000000003FE000000000001FE000000000001FE00000 +0001C00FF000000001C00FF000000003C007F8000000038007F8000000038003FC000000 +078001FC0000000F0001FE0000000E0000FF0000001E00007F8000003C00003FC0000078 +00001FE00000F0000007F00003E0000003FC0007C0000000FF803F000000003FFFFC0000 +00000FFFF00000000001FF80000032417CBF3A>I<0000000000003F80000003FC0001FF +E000003FFFC007FFF00000FFFFF01FC1F80003FC03FC3E03F80007F000FE7803F8000FE0 +007FE003F8001FC0003FC003F8003F80001FC001F0007F00000FE0000000FE000007F000 +0000FE000007F0000001FC000003F8000001FC000003F8000003FC000003FC000003FC00 +0003FC000003F8000001FC000007F8000001FE000007F8000001FE000007F8000001FE00 +0007F8000001FE000007F8000001FE000007F8000001FE000007F8000001FE000007F800 +0001FE000007F8000001FE000007F8000001FE000003F8000001FC000003FC000003FC00 +0003FC000003FC000001FC000003F8000001FC000003F8000000FE000007F0000000FE00 +0007F00000007F00000FE00000003F80001FC00000001FC0003F800000003FE0007F0000 +000037F000FE0000000073FC03FC0000000060FFFFF000000000E03FFFC000000000E003 +FC0000000001C000000000000001C000000000000001C000000000000001C00000000000 +0001C000000000000001E000000000000001E000000000000001F000000000000001F000 +000000000001F800000000000000FC00000000000000FF00000000000000FFFFFFFE0000 +00007FFFFFFFF00000003FFFFFFFFE0000001FFFFFFFFF8000000FFFFFFFFFE000000FFF +FFFFFFF000003FFFFFFFFFFC0000FE000001FFFE0003F80000001FFE0007E000000003FF +000FC000000000FF801F80000000007F803F80000000003FC03F00000000001FC07E0000 +0000001FC07E00000000000FE0FE00000000000FE0FC000000000007E0FC000000000007 +E0FC000000000007E0FC000000000007E0FC000000000007E0FC000000000007E0FE0000 +0000000FE07E00000000000FC07E00000000000FC07F00000000001FC03F80000000003F +801FC0000000007F000FC0000000007E0007F000000001FC0003F800000003F80001FC00 +000007F000007F0000001FC000003FE00000FF8000000FFE000FFE00000001FFFFFFF000 +0000003FFFFF800000000001FFF00000003D5E7DBF42>103 D<0003C000000000000007 +FFC0000000000000FFFFC0000000000000FFFFC0000000000000FFFFC0000000000000FF +FFC000000000000001FFC0000000000000007FC0000000000000007FC000000000000000 +3FC0000000000000003FC0000000000000003FC0000000000000003FC000000000000000 +3FC0000000000000003FC0000000000000003FC0000000000000003FC000000000000000 +3FC0000000000000003FC0000000000000003FC0000000000000003FC000000000000000 +3FC0000000000000003FC0000000000000003FC0000000000000003FC000000000000000 +3FC0000000000000003FC0000000000000003FC0000000000000003FC000000000000000 +3FC0000000000000003FC0000000000000003FC0000000000000003FC000000000000000 +3FC0000000000000003FC0000000000000003FC0000000000000003FC000000000000000 +3FC0007FE0000000003FC003FFFC000000003FC00FFFFF000000003FC03F00FFC0000000 +3FC078001FE00000003FC0F0000FF00000003FC1C00007F80000003FC3800007FC000000 +3FC7000003FC0000003FCE000003FE0000003FCE000001FE0000003FDC000001FE000000 +3FD8000001FE0000003FF8000000FF0000003FF0000000FF0000003FF0000000FF000000 +3FF0000000FF0000003FE0000000FF0000003FE0000000FF0000003FE0000000FF000000 +3FC0000000FF0000003FC0000000FF0000003FC0000000FF0000003FC0000000FF000000 +3FC0000000FF0000003FC0000000FF0000003FC0000000FF0000003FC0000000FF000000 +3FC0000000FF0000003FC0000000FF0000003FC0000000FF0000003FC0000000FF000000 +3FC0000000FF0000003FC0000000FF0000003FC0000000FF0000003FC0000000FF000000 +3FC0000000FF0000003FC0000000FF0000003FC0000000FF0000003FC0000000FF000000 +3FC0000000FF0000003FC0000000FF0000003FC0000000FF0000003FC0000000FF000000 +3FC0000000FF0000003FC0000000FF0000003FC0000000FF0000003FC0000000FF000000 +3FC0000000FF0000003FC0000000FF0000003FC0000000FF0000003FC0000000FF000000 +3FC0000000FF0000003FC0000000FF0000003FC0000000FF0000003FC0000000FF000000 +3FC0000000FF0000007FE0000001FF800000FFF0000003FFC000FFFFFFF003FFFFFFC0FF +FFFFF003FFFFFFC0FFFFFFF003FFFFFFC0FFFFFFF003FFFFFFC042647DE349>I<003C00 +0000FF000001FF800003FFC00003FFC00003FFC00003FFC00003FFC00003FFC00001FF80 +0000FF0000003C0000000000000000000000000000000000000000000000000000000000 +000000000000000000000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000003C00007FFC0007FFFC0007FFFC0007FFFC0 +007FFFC00001FFC000007FC000007FC000003FC000003FC000003FC000003FC000003FC0 +00003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC0 +00003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC0 +00003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC0 +00003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC0 +00003FC000003FC000003FC000003FC000003FC000003FC000003FC000007FE00000FFF0 +00FFFFFFE0FFFFFFE0FFFFFFE0FFFFFFE01B5F7DDE23>I<0003C00007FFC000FFFFC000 +FFFFC000FFFFC000FFFFC00001FFC000007FC000007FC000003FC000003FC000003FC000 +003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC000 +003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC000 +003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC000 +003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC000 +003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC000 +003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC000 +003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC000 +003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC000 +003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC000003FC000 +003FC000007FE00000FFF000FFFFFFF0FFFFFFF0FFFFFFF0FFFFFFF01C647DE323>108 +D<0003C000FFC0000007FE00000007FFC003FFF800001FFFC00000FFFFC00FFFFE00007F +FFF00000FFFFC03F00FF8001F807FC0000FFFFC078003FC003C001FE0000FFFFC1E0001F +E00F0000FF000001FFC3C0000FF01E00007F8000007FC3800007F81C00003FC000007FC7 +000007F83800003FC000003FCE000003FC7000001FE000003FCC000003FC6000001FE000 +003FDC000003FCE000001FE000003FD8000003FCC000001FE000003FF8000001FFC00000 +0FF000003FF0000001FF8000000FF000003FF0000001FF8000000FF000003FE0000001FF +0000000FF000003FE0000001FF0000000FF000003FE0000001FF0000000FF000003FE000 +0001FF0000000FF000003FC0000001FE0000000FF000003FC0000001FE0000000FF00000 +3FC0000001FE0000000FF000003FC0000001FE0000000FF000003FC0000001FE0000000F +F000003FC0000001FE0000000FF000003FC0000001FE0000000FF000003FC0000001FE00 +00000FF000003FC0000001FE0000000FF000003FC0000001FE0000000FF000003FC00000 +01FE0000000FF000003FC0000001FE0000000FF000003FC0000001FE0000000FF000003F +C0000001FE0000000FF000003FC0000001FE0000000FF000003FC0000001FE0000000FF0 +00003FC0000001FE0000000FF000003FC0000001FE0000000FF000003FC0000001FE0000 +000FF000003FC0000001FE0000000FF000003FC0000001FE0000000FF000003FC0000001 +FE0000000FF000003FC0000001FE0000000FF000003FC0000001FE0000000FF000003FC0 +000001FE0000000FF000003FC0000001FE0000000FF000003FC0000001FE0000000FF000 +003FC0000001FE0000000FF000003FC0000001FE0000000FF000003FC0000001FE000000 +0FF000003FC0000001FE0000000FF000003FC0000001FE0000000FF000003FC0000001FE +0000000FF000003FC0000001FE0000000FF000003FC0000001FE0000000FF000003FC000 +0001FE0000000FF000003FC0000001FE0000000FF000007FE0000003FF0000001FF80000 +FFF0000007FF8000003FFC00FFFFFFF007FFFFFF803FFFFFFCFFFFFFF007FFFFFF803FFF +FFFCFFFFFFF007FFFFFF803FFFFFFCFFFFFFF007FFFFFF803FFFFFFC663F7CBE6F>I<00 +03C0007FE000000007FFC003FFFC000000FFFFC00FFFFF000000FFFFC03F00FFC00000FF +FFC078001FE00000FFFFC0F0000FF0000001FFC1C00007F80000007FC3800007FC000000 +7FC7000003FC0000003FCE000003FE0000003FCE000001FE0000003FDC000001FE000000 +3FD8000001FE0000003FF8000000FF0000003FF0000000FF0000003FF0000000FF000000 +3FF0000000FF0000003FE0000000FF0000003FE0000000FF0000003FE0000000FF000000 +3FC0000000FF0000003FC0000000FF0000003FC0000000FF0000003FC0000000FF000000 +3FC0000000FF0000003FC0000000FF0000003FC0000000FF0000003FC0000000FF000000 +3FC0000000FF0000003FC0000000FF0000003FC0000000FF0000003FC0000000FF000000 +3FC0000000FF0000003FC0000000FF0000003FC0000000FF0000003FC0000000FF000000 +3FC0000000FF0000003FC0000000FF0000003FC0000000FF0000003FC0000000FF000000 +3FC0000000FF0000003FC0000000FF0000003FC0000000FF0000003FC0000000FF000000 +3FC0000000FF0000003FC0000000FF0000003FC0000000FF0000003FC0000000FF000000 +3FC0000000FF0000003FC0000000FF0000003FC0000000FF0000003FC0000000FF000000 +3FC0000000FF0000003FC0000000FF0000003FC0000000FF0000003FC0000000FF000000 +3FC0000000FF0000007FE0000001FF800000FFF0000003FFC000FFFFFFF003FFFFFFC0FF +FFFFF003FFFFFFC0FFFFFFF003FFFFFFC0FFFFFFF003FFFFFFC0423F7DBE49>I<000000 +FF8000000000000FFFF800000000003FFFFE0000000000FF007F8000000003FC001FE000 +000007F00007F00000000FC00001F80000003F800000FE0000007F0000007F0000007E00 +00003F000000FC0000001F800001F80000000FC00003F80000000FE00003F000000007E0 +0007F000000007F0000FE000000003F8000FE000000003F8001FE000000003FC001FC000 +000001FC001FC000000001FC003FC000000001FE003FC000000001FE003FC000000001FE +007F8000000000FF007F8000000000FF007F8000000000FF007F8000000000FF00FF8000 +000000FF80FF8000000000FF80FF8000000000FF80FF8000000000FF80FF8000000000FF +80FF8000000000FF80FF8000000000FF80FF8000000000FF80FF8000000000FF80FF8000 +000000FF80FF8000000000FF80FF8000000000FF807F8000000000FF007F8000000000FF +007FC000000001FF007FC000000001FF003FC000000001FE003FC000000001FE003FC000 +000001FE001FE000000003FC001FE000000003FC001FE000000003FC000FF000000007F8 +0007F000000007F00007F000000007F00003F80000000FE00001FC0000001FC00001FC00 +00001FC00000FE0000003F8000007F0000007F0000003F800000FE0000001FC00001FC00 +00000FF00007F800000003FC001FE000000000FF007F80000000007FFFFF00000000000F +FFF8000000000001FFC000000039417CBF42>I<00078003F80007FF800FFF00FFFF803F +FFC0FFFF807C0FE0FFFF81F01FE0FFFF81E03FF001FF83803FF0007F87003FF0007F8F00 +3FF0003F8E003FF0003F9C001FE0003F9C000FC0003F98000300003FB8000000003FB800 +0000003FB0000000003FF0000000003FF0000000003FE0000000003FE0000000003FE000 +0000003FE0000000003FE0000000003FC0000000003FC0000000003FC0000000003FC000 +0000003FC0000000003FC0000000003FC0000000003FC0000000003FC0000000003FC000 +0000003FC0000000003FC0000000003FC0000000003FC0000000003FC0000000003FC000 +0000003FC0000000003FC0000000003FC0000000003FC0000000003FC0000000003FC000 +0000003FC0000000003FC0000000003FC0000000003FC0000000003FC0000000003FC000 +0000003FC0000000003FC0000000003FC0000000003FC0000000003FC0000000003FC000 +0000007FE000000000FFF8000000FFFFFFFC0000FFFFFFFC0000FFFFFFFC0000FFFFFFFC +00002C3F7CBE33>114 D<0000FFE00180000FFFFC0380007FFFFF078001FF001FCF8003 +F80003EF8007E00001FF800FC00000FF801F8000007F803F0000003F803E0000001F807E +0000000F807C0000000F807C0000000F80FC0000000780FC0000000780FC0000000780FC +0000000380FE0000000380FE0000000380FF0000000380FF80000003807FC0000003807F +E0000000007FF8000000003FFE000000001FFFF00000000FFFFF80000007FFFFF8000003 +FFFFFF000001FFFFFFC000007FFFFFF000001FFFFFF8000007FFFFFE0000007FFFFF0000 +0003FFFF800000003FFFC000000003FFC000000000FFE0000000007FE0E00000001FF0E0 +0000000FF0E00000000FF8F000000007F8F000000003F8F000000003F8F000000003F8F8 +00000001F8F800000001F8F800000001F8FC00000001F8FC00000001F8FE00000001F0FE +00000003F0FF00000003F0FF00000003E0FF80000007E0FFC000000FC0FFE000000F80FD +F000001F80F8F800007F00F83E0000FC00F01FC00FF800F007FFFFE000E001FFFF8000C0 +003FF800002D417DBF34>I<000038000000000038000000000038000000000038000000 +000038000000000038000000000038000000000078000000000078000000000078000000 +0000780000000000F80000000000F80000000000F80000000001F80000000001F8000000 +0001F80000000003F80000000003F80000000007F8000000000FF8000000001FF8000000 +001FF8000000007FF800000000FFF800000003FFF80000000FFFFFFFFF00FFFFFFFFFF00 +FFFFFFFFFF00FFFFFFFFFF000007F80000000007F80000000007F80000000007F8000000 +0007F80000000007F80000000007F80000000007F80000000007F80000000007F8000000 +0007F80000000007F80000000007F80000000007F80000000007F80000000007F8000000 +0007F80000000007F80000000007F80000000007F80000000007F80000000007F8000000 +0007F80000000007F80000000007F80000000007F80000000007F80000000007F8000000 +0007F80000000007F80000000007F80000000007F80000000007F80000E00007F80000E0 +0007F80000E00007F80000E00007F80000E00007F80000E00007F80000E00007F80000E0 +0007F80000E00007F80000E00007F80000E00007F80000E00007F80000E00007F80000E0 +0003FC0001C00003FC0001C00003FC0001C00003FC0003C00001FE0003800001FE000780 +0000FF00070000007F800F0000003FC01E0000001FF07C0000000FFFF800000003FFE000 +0000007F80002B597FD733>I<0003C00000000F000007FFC000001FFF0000FFFFC00003 +FFFF0000FFFFC00003FFFF0000FFFFC00003FFFF0000FFFFC00003FFFF000001FFC00000 +07FF0000007FC0000001FF0000007FC0000001FF0000003FC0000000FF0000003FC00000 +00FF0000003FC0000000FF0000003FC0000000FF0000003FC0000000FF0000003FC00000 +00FF0000003FC0000000FF0000003FC0000000FF0000003FC0000000FF0000003FC00000 +00FF0000003FC0000000FF0000003FC0000000FF0000003FC0000000FF0000003FC00000 +00FF0000003FC0000000FF0000003FC0000000FF0000003FC0000000FF0000003FC00000 +00FF0000003FC0000000FF0000003FC0000000FF0000003FC0000000FF0000003FC00000 +00FF0000003FC0000000FF0000003FC0000000FF0000003FC0000000FF0000003FC00000 +00FF0000003FC0000000FF0000003FC0000000FF0000003FC0000000FF0000003FC00000 +00FF0000003FC0000000FF0000003FC0000000FF0000003FC0000000FF0000003FC00000 +00FF0000003FC0000000FF0000003FC0000000FF0000003FC0000001FF0000003FC00000 +01FF0000003FC0000001FF0000003FC0000003FF0000003FC0000003FF0000003FC00000 +03FF0000003FC0000007FF0000001FC0000006FF0000001FE000000EFF0000001FE00000 +1CFF0000000FE000001CFF0000000FF0000038FF80000007F0000070FF80000003F80001 +E0FFE0000001FE0003C0FFFFC00000FFC01F80FFFFC000003FFFFE00FFFFC000000FFFF8 +00FFFFC0000000FFC000FF800042407DBE49>I<7FFFFFC0000FFFFFE07FFFFFC0000FFF +FFE07FFFFFC0000FFFFFE07FFFFFC0000FFFFFE000FFFF000003FFFC00003FFE000001FF +E000000FFC000001FF8000000FFC000000FE00000007FC000000FC00000003FE000001F8 +00000001FF000001F000000000FF800003E000000000FF800003C0000000007FC0000780 +000000003FE0000F00000000001FF0000E00000000001FF0001E00000000000FF8003C00 +0000000007FC0078000000000003FE00F0000000000003FE00E0000000000001FF01E000 +0000000000FF83C00000000000007FC7800000000000003FC7000000000000003FEF0000 +00000000001FFE000000000000000FFC0000000000000007F80000000000000007FC0000 +000000000003FE0000000000000001FF0000000000000003FF0000000000000003FF8000 +000000000007FFC00000000000000F3FE00000000000001E1FE00000000000003C1FF000 +0000000000380FF80000000000007807FC000000000000F003FC000000000001E003FE00 +0000000003C001FF000000000003C000FF80000000000780007FC0000000000F00007FC0 +000000001E00003FE0000000001C00001FF0000000003C00000FF8000000007800000FF8 +00000000F0000007FC00000001F0000003FE00000003E0000001FF00000007E0000001FF +0000000FE0000000FF8000003FE0000000FFC00000FFF0000001FFE00007FFF8000003FF +FC00FFFFFC00000FFFFFF8FFFFFC00000FFFFFF8FFFFFC00000FFFFFF8FFFFFC00000FFF +FFF8453E80BD46>120 D E end +%%EndProlog +%%BeginSetup +%%Feature: *Resolution 600dpi +TeXDict begin + +%%EndSetup +%%Page: 1 1 +1 0 bop 368 335 a FA(The)44 b(ABD)l(AD)l(A)i(Distributed)f(Minimax)f +(Searc)l(h)h(Algorithm)1548 550 y Fz(Jean-Christophe)26 +b(W)-7 b(eill)1357 649 y(Institut)29 b(d'In)n(telligence)e +(Arti\014cielle)1082 749 y(Univ)n(ersit)n(\023)-39 b(e)26 +b(de)h(P)n(aris)f(8)h({)h(Vincennes)f(\022)-42 b(a)28 +b(Sain)n(t-Denis)1484 849 y(24,)f(a)n(v)n(en)n(ue)f(du)i(P)n(on)n(t)e +(Ro)n(y)n(al)1649 948 y(94230)f(CA)n(CHAN)1829 1048 y(F)-7 +b(rance)-150 1501 y Fy(ABSTRA)m(CT)-150 1723 y Fx(This)19 +b(pap)r(er)e(presen)n(ts)h(a)g(new)g(metho)r(d)f(to)h(parallelize)i +(the)e(minimax)-150 1806 y(tree)37 b(searc)n(h)g(algorithm.)67 +b(This)38 b(metho)r(d)d(is)i(then)f(compared)g(to)-150 +1889 y(the)23 b(\\Y)-6 b(oung)23 b(Brother)i(W)-6 b(ait)23 +b(Concept")h(algorithm)g(in)g(an)g(Othello)-150 1972 +y(program)30 b(implemen)n(tation)f(and)h(in)g(a)h(Chess)g(program.)48 +b(Results)-150 2055 y(of)23 b(tests)g(done)f(on)g(a)h(32-no)r(de)f(CM5) +i(and)e(a)g(128-no)r(de)i(CRA)-6 b(Y)20 b(T3D)-150 2138 +y(computers)25 b(are)h(giv)n(en.)-150 2400 y Fy(1)100 +b(INTRODUCTION)-150 2621 y Fx(In)30 b(the)g(searc)n(h)h(for)h(p)r(o)n +(w)n(er)f(to)g(run)f(our)g(game-pla)n(ying)h(programs)-150 +2704 y(as)c(fast)g(as)f(p)r(ossible,)i(the)e(use)g(of)h(parallel)g +(computers)e(is)i(a)f(stim)n(u-)-150 2787 y(lating)e(c)n(hoice.)34 +b(During)23 b(the)g(past)g(few)h(y)n(ears,)h(parallel)f(algorithms)-150 +2870 y(ha)n(v)n(e)17 b(ev)n(olv)n(ed)g(from)h(\014xed)f(master-sla)n(v) +n(e)g(relationships,)k(where)d(the)-150 2953 y(master)32 +b(lo)r(ok)n(ed)h(for)g(sla)n(v)n(es)g(to)f(complete)g(its)h(task,)h(to) +e(more)g(dy-)-150 3036 y(namic)21 b(master-sla)n(v)n(e)h +(relationships,)i(where)f(unemplo)n(y)n(ed)d(pro)r(ces-)-150 +3119 y(sors)26 b(lo)r(ok)g(for)g(a)f(master)g(in)g(order)h(to)f(\014nd) +f(some)h(task)g(to)h(do.)34 b(But)-150 3202 y(those)h(master-sla)n(v)n +(e)g(relationships,)k(whic)n(h)d(are)f(exempli\014ed)f(b)n(y)-150 +3285 y(the)26 b(w)n(ork-stealing)i(sc)n(hedulers)e(of)i(Jam)n(b)r +(oree[12)q(])f(and)f(YBW)n(C[7)q(])-150 3368 y(still)h(su\013er)e(from) +h(sync)n(hronization)g(o)n(v)n(erheads.)-35 3516 y(In)35 +b(this)i(pap)r(er,)h(w)n(e)f(describ)r(e)f(a)h(non-sync)n(hronized)d +(parallel)-150 3599 y(algorithm)26 b(named)e(ABD)n(AD)n(A.)-35 +3746 y(After)k(a)g(formal)g(description)g(and)f(pseudo)g(co)r(de)h(for) +g(the)f(AB-)-150 3829 y(D)n(AD)n(A)19 b(parallel)k(sc)n(heme,)f(w)n(e)g +(presen)n(t)f(an)g(exp)r(erimen)n(tal)g(compar-)-150 +3912 y(ison)26 b(of)h(ABD)n(AD)n(A)d(to)h(YBW)n(C.)-150 +4174 y Fy(2)100 b(THE)34 b(ABD)m(AD)m(A)f(ALGORITHM)-150 +4395 y Fx(The)62 b(ABD)n(AD)n(A)e(searc)n(h)i(algorithm)h(is)f(based)g +(up)r(on)f(b)r(oth)-150 4478 y(YBW)n(C[9)q(,)33 b(7])g(and)f +Fw(\013\014)p Fx(*)q([6].)55 b(F)-6 b(rom)32 b(YBW)n(C,)h(it)f(k)n +(eeps)g(the)g(basic)-150 4561 y(concept:)h(parallel)25 +b(ev)l(aluation)e(of)h(successor)g(p)r(ositions)h(of)f(a)f(game)-150 +4645 y(p)r(osition)k(is)g(allo)n(w)n(ed)h(if)e(and)g(only)g(if)h(the)f +(eldest)h(brother)f(\(i.e.)36 b(the)-150 4728 y(\014rst)26 +b(visited)h(brother\))f(is)h(fully)g(ev)l(aluated.)36 +b(The)27 b Fw(\013\014)p Fx(*)g(algorithm,)-150 4811 +y(lik)n(e)38 b(the)f(algorithm)h(from)g(Otto)f(and)h(F)-6 +b(elten)37 b([18)r(],)k(relies)e(on)f(a)-150 4894 y(shared)32 +b(transp)r(osition)h(table.)53 b(All)32 b(pro)r(cessors)i(start)e(the)f +(searc)n(h)-150 4977 y(sim)n(ultaneously)26 b(at)g(the)g(ro)r(ot.)37 +b(With)26 b(the)f(help)h(of)h(the)f(additional)-150 5060 +y(transp)r(osition)32 b(table)f(information)g(\(e.g.)50 +b(ho)n(w)31 b(man)n(y)e(pro)r(cessors)2049 1501 y(are)i(exploring)g(a)h +(subtree)e(ro)r(oted)h(at)g(a)g(no)r(de\),)i(it)d(is)i(p)r(ossible)g +(to)2049 1584 y(con)n(trol)k(sp)r(eculativ)n(e)f(parallelism.)65 +b Fw(\013\014)p Fx(*)36 b(w)n(as)g(originally)h(imple-)2049 +1667 y(men)n(ted)24 b(using)i(a)h(complex)e(and)g(ine\016cien)n(t)i +(con)n(trol,)g(so)f(w)n(e)g(c)n(hose)2049 1750 y(to)g(mix)e(YBW)n(C)i +(and)f Fw(\013\014)p Fx(*)q(.)2164 1898 y(The)h(ABD)n(AD)n(A)2664 +1866 y Fv(1)2722 1898 y Fx(algorithm)g(can)g(b)r(e)g(describ)r(ed)g(as) +g(follo)n(ws:)2143 2073 y(1.)39 b(Let)19 b Fu(T)38 b +Fx(b)r(e)20 b(a)f(shared)g(transp)r(osition)i(table.)33 +b(T)-6 b(o)19 b(the)g(standard)2241 2156 y(de\014nition)f(of)h(the)e +(table[13)r(],)j(w)n(e)f(add,)g(for)g(eac)n(h)g(en)n(try)-6 +b(,)18 b(a)h(new)2241 2239 y(\014eld)h Ft(nproc)h Fx(whic)n(h)f(is)g +(the)g(n)n(um)n(b)r(er)e(of)j(pro)r(cessors)h(curren)n(tly)2241 +2322 y(ev)l(aluating)27 b(the)g(no)r(de)g(related)h(to)f(the)f(transp)r +(osition)j(table)2241 2405 y(en)n(try)-6 b(.)2143 2520 +y(2.)39 b(All)29 b(the)g(pro)r(cessors)h(b)r(egin)f(the)g(searc)n(h)g +(sim)n(ultaneously)g(at)2241 2603 y(the)c(ro)r(ot)i(of)f(the)f(game)h +(tree.)2143 2718 y(3.)39 b(When)30 b(a)h(pro)r(cessor)h(en)n(ters)f +(the)f(ev)l(aluation)h(of)h(a)f(p)r(osition)2241 2801 +y Fw(P)11 b Fx(,)34 b(it)f(incremen)n(ts)f(the)g(\014eld)h +Ft(tt[P].nproc)41 b Fx(in)33 b(the)f(trans-)2241 2884 +y(p)r(osition)27 b(table.)2143 2999 y(4.)39 b(When)19 +b(a)i(pro)r(cessor)g(lea)n(v)n(es)g(a)g(p)r(osition)g +Fw(P)30 b Fx(\(b)r(ecause)21 b(this)f(p)r(o-)2241 3082 +y(sition)27 b(is)f(fully)g(ev)l(aluated)g(or)g(has)h(b)r(een)e +(pruned\),)g(it)h(decre-)2241 3165 y(men)n(ts)e Ft(tt[P].nproc)p +Fx(.)2143 3279 y(5.)39 b(The)26 b(analysis)h(of)f(a)g(p)r(osition)h(is) +f(done)g(in)f(three)h(phases:)2273 3407 y(\(a\))39 b(The)30 +b(eldest)f(son)h(is)g(analysed,)h(regardless)g(of)f(the)f(p)r(o-)2410 +3490 y(sition)d(of)h(the)e(other)h(pro)r(cessors;)2269 +3605 y(\(b\))38 b(the)31 b(other)g(sons)g(whic)n(h)h(are)f(not)g +(curren)n(tly)g(analysed)2410 3688 y(b)n(y)25 b(other)g(pro)r(cessors)j +(are)e(analysed;)2278 3803 y(\(c\))38 b(then)22 b(the)g(sons)h(whic)n +(h)f(are)h(not)f(completely)g(ev)l(aluated)2410 3886 +y(are)28 b(analysed)f(\(i.e.)39 b(the)27 b(corresp)r(onding)h(en)n(try) +e(in)h(the)2410 3969 y(transp)r(osition)d(table)g(has)g(not)f(b)r(een)g +(ev)l(aluated)g(to)g(full)2410 4052 y(depth\).)2654 4020 +y Fv(2)2164 4227 y Fx(Figure)31 b(1)f(sho)n(ws)h(the)e(ABD)n(AD)n(A)f +(algorithm.)47 b(It)30 b(can)g(b)r(e)f(ob-)2049 4310 +y(tained)j(b)n(y)f(mo)r(difying)h(a)g(sequen)n(tial)h +Fw(\013\014)j Fx(using)c(a)h(transp)r(osition)2049 4393 +y(table)26 b(in)g(the)f(follo)n(wing)j(w)n(a)n(y:)2164 +4568 y Fu(\017)39 b Fx(W)-6 b(e)35 b(add)g(to)h(the)f(usual)h +(parameters)f(of)h(the)f(pro)r(cedure)h(a)2241 4651 y(Bo)r(olean)28 +b Ft(exclusiveP)f Fx(whic)n(h)f(indicates)h(whether)e(the)h(cor-)2241 +4734 y(resp)r(onding)33 b(no)r(de)h(should)f(b)r(e)g(ev)l(aluated)g +Fs(exclusively)p Fx(,)j(i.e.)2241 4817 y(the)30 b(pro)r(cessor)h(is)g +(allo)n(w)n(ed)h(to)e(ev)l(aluate)h(the)e(curren)n(t)h(no)r(de)2241 +4900 y(if)j(no)f(other)g(pro)r(cessor)h(is)g(curren)n(tly)e(ev)l +(aluating)i(it.)53 b(This)2241 4983 y(parameter)22 b(will)i(b)r(e)f +(passed)g(to)g(the)f(transp)r(osition)i(table)f(re-)2241 +5066 y(triev)n(e)j(pro)r(cedure)f Ft(RetrieveAsk)68 b +Fx(as)26 b(sho)n(wn)g(on)f(\014gure)h(2.)p 2049 5124 +801 4 v 2134 5178 a Fv(1)2168 5203 y Fr(ABD)n(AD)n(A)h(is)f(the)f +(acron)n(ym)g(of)g(the)g(F)-5 b(renc)n(h)24 b(name)h(\\Alpha-B)n(^)-31 +b(eta)26 b(Dis-)2049 5267 y(tribu)n(\023)-31 b(e)16 b(a)n(v)n(ec)i +(Droit)f(d'Anesse")g(whic)n(h)g(can)g(b)r(e)g(translated)g(in)n(to)h +(\\Distributed)2049 5330 y(Alpha-Beta)k(Searc)n(h)f(with)h(Eldest)f +(Son)h(Righ)n(t".)2134 5382 y Fv(2)2168 5407 y Fr(This)e(p)r(oin)n(t)g +(is)g(analogous)g(to)g(the)g(\\Helpful)e(Master)i(Concept"[8)o(],)g +(if,)g(in)2049 5471 y(the)c(second)g(phase,)h(the)e(pro)r(cessor)h(has) +h(found)f(some)g(no)r(de,)h(other)f(pro)r(cessors)2049 +5535 y(are)26 b(not)f(allo)n(w)n(ed)h(to)g(w)n(ork)h(on)e(this)h(no)r +(de)f(unless)g(there)g(is)h(nothing)f(else)g(to)2049 +5599 y(do.)44 b(Lik)n(e)27 b(in)g(the)f(\\Helpful)g(Master)h(Concept")f +(when)h(a)g(master)g(w)n(aits)h(for)2049 5663 y(the)22 +b(completion)e(of)i(its)g(sla)n(v)n(e)g(c)n(hildren,)e(it)i(b)r(ecomes) +f(their)g(sla)n(v)n(e.)p eop +%%Page: 2 2 +2 1 bop -25 1359 a Fq(1)39 b Fp(funct)p 42 1372 152 4 +v 25 w(ab)r(dada)q Fo(\()p Fp(P)n(osition)r Fn(;)11 b(\013;)h(\014)s(;) +f Fp(depth)r Fn(;)h Fp(exclusiveP)p Fo(\))43 b Fm(\021)-25 +1433 y Fq(2)214 b Fp(va)n(r)p 217 1446 89 4 v 23 w(exclusive)p +Fn(;)12 b Fp(iteration)q Fn(;)g Fp(alldone)q Fo(;)-25 +1508 y Fq(4)326 b Fp(if)p 329 1521 39 4 v 23 w(depth)22 +b Fo(=)d(0)24 b Fp(then)p 710 1521 130 4 v 25 w(exit)p +863 1521 107 4 v 24 w(evaluate)q Fo(\()p Fp(P)n(osition)q +Fo(\);)44 b Fp(\014)p 1589 1521 38 4 v -25 1583 a Fq(5)326 +b Fp(Best)20 b Fm( )g(\0001)p Fo(;)-25 1658 y Fq(6)326 +b Fp(RetrieveAsk)q Fo(\()p Fp(P)n(osition)r Fn(;)11 b(\013;)h(\014)s(;) +f Fp(depth)s Fn(;)g Fp(exclusiveP)p Fo(\);)-25 1732 y +Fq(8)326 b Fo(Generate)25 b(Mo)n(v)n(e)f(when)h(w)n(aiting)f(for)e(the) +j(answ)n(er)-53 1807 y Fq(10)326 b Fp(GenMove)p Fo(\()p +Fp(P)n(osition)r Fo(\);)-53 1882 y Fq(12)g Fp(RetrieveAnsw)n(er)s +Fo(\(&)p Fn(\013;)12 b Fo(&)p Fn(\014)s(;)f Fo(&)p Fp(Best)q +Fo(\);)-53 1956 y Fq(14)326 b Fo(The)24 b(curren)n(t)g(mo)n(v)n(e)f(is) +g(not)i(ev)l(aluated)g(if)e(causing)-53 2031 y Fq(15)326 +b Fo(a)24 b(cuto\013)h(or)e(if)g(w)n(e)h(are)f(in)h(exclusiv)n(e)g(mo)r +(de)f(and)-53 2106 y Fq(16)326 b Fo(another)25 b(pro)r(cessor)e(is)g +(curren)n(tly)h(ev)l(aluating)h(it.)-53 2181 y Fq(18)326 +b Fp(if)p 329 2194 39 4 v 23 w Fo(\()p Fn(\013)20 b Fm(\025)g +Fn(\014)s Fo(\))31 b Fm(_)h Fo(\()p Fp(Best)21 b Fo(=)e +Fp(ON)p 1096 2181 22 4 v 26 w(EV)-6 b(ALUA)g(TION)q Fo(\))-53 +2255 y Fq(19)388 b Fp(then)p 391 2268 130 4 v 25 w(exit)p +544 2268 107 4 v 24 w(Best)q Fo(;)42 b Fp(\014)p 867 +2268 38 4 v -53 2330 a Fq(21)326 b Fp(iteration)21 b +Fm( )e Fo(0;)-53 2405 y Fq(22)326 b Fp(alldone)21 b Fm( )e +Fl(false)o Fo(;)-53 2479 y Fq(24)326 b Fp(while)p 329 +2492 150 4 v 24 w Fo(\()p Fp(iteration)22 b Fn(<)d Fo(2\))32 +b Fm(^)g Fo(\()p Fn(\013)20 b(<)g(\014)s Fo(\))32 b Fm(^)f(:)p +Fp(alldone)25 b(do)p 1667 2492 72 4 v -53 2554 a Fq(25)499 +b Fp(iteration)21 b Fm( )f Fp(iteration)d Fo(+)f(1;)-53 +2629 y Fq(26)499 b Fp(alldone)21 b Fm( )e Fl(true)p Fo(;)-53 +2704 y Fq(28)499 b Fn(M)27 b Fm( )19 b Fp(FirstMove)p +Fo(\()p Fp(P)n(osition)r Fo(\);)-53 2778 y Fq(30)499 +b Fp(while)p 502 2791 150 4 v 24 w Fo(\()p Fn(M)27 b +Fm(6)p Fo(=)20 b(0)31 b Fm(^)h Fn(\013)20 b(<)f(\014)s +Fo(\))24 b Fp(do)p 1250 2791 72 4 v -53 2853 a Fq(31)672 +b Fp(exclusive)20 b Fm( )f Fo(\()p Fp(iteration)j Fo(=)e(1\))-53 +2928 y Fq(32)684 b Fm(^)31 b Fo(\()p Fp(NotFirstMove)r +Fo(\()p Fn(M)7 b Fo(\)\);)-53 3002 y Fq(34)672 b Fo(On)24 +b(the)g(\014rst)g(iteration,)g(w)n(e)g(w)n(an)n(t)-53 +3077 y Fq(35)672 b Fo(to)25 b(b)r(e)f(the)g(only)g(pro)r(cessor)-53 +3152 y Fq(36)672 b Fo(to)25 b(ev)l(aluate)g(y)n(oung)g(sons.)-53 +3227 y Fq(38)672 b Fp(value)20 b Fm( )f(\000)p Fp(ab)r(dada)q +Fo(\()p Fp(P)n(osition)e Fm(\017)f Fn(M)s(;)c Fm(\000)p +Fn(\014)s(;)-53 3301 y Fq(39)672 b Fm(\000)12 b Fo(max)o(\()p +Fn(\013;)g Fp(Best)q Fo(\))p Fn(;)g Fp(depth)18 b Fm(\000)e +Fo(1)p Fn(;)11 b Fp(exclusive)p Fo(\);)-53 3376 y Fq(40)672 +b Fp(if)p 675 3389 39 4 v 23 w(value)20 b Fo(=)f Fm(\000)p +Fp(ON)p 1143 3376 22 4 v 26 w(EV)-6 b(ALUA)g(TION)-53 +3451 y Fq(41)734 b Fp(then)p 737 3464 130 4 v 25 w(alldone)21 +b Fm( )e Fl(false)p Fo(;)-53 3526 y Fq(42)672 b Fp(elsif)p +675 3539 114 4 v 23 w(value)20 b Fn(>)g Fp(Best)-53 3600 +y Fq(43)809 b Fp(then)p 812 3613 130 4 v 26 w(Best)20 +b Fm( )f Fp(value)p Fo(;)-53 3675 y Fq(44)963 b Fp(if)p +966 3688 39 4 v 23 w(Best)20 b Fm(\025)g Fn(\014)-53 +3750 y Fq(45)1025 b Fp(then)p 1028 3763 130 4 v 25 w +Fl(skip)23 b Fp(endsea)n(rch)s Fo(;)42 b Fp(\014)p 1696 +3763 38 4 v -53 3824 a Fq(46)672 b Fp(\014)p 675 3837 +V -53 3899 a Fq(47)g Fn(M)27 b Fm( )19 b Fp(NextMove)p +Fo(\()p Fp(P)n(osition)r Fo(\))24 b Fp(o)r(d)p 1475 3912 +74 4 v Fo(;)-53 3974 y Fq(49)326 b Fp(o)r(d)p 329 3987 +V -53 4049 a Fq(50)g Fp(endsea)n(rch:)-53 4123 y Fq(51)g +Fp(Sto)n(reHash)r Fo(\()p Fp(P)n(osition)q Fn(;)12 b(\013;)f(\014)s(;)h +Fp(Best)q Fo(\);)-53 4198 y Fq(52)326 b Fp(exit)p 329 +4211 107 4 v 24 w(Best)q Fl(.)-138 4426 y Fx(Figure)26 +b(1:)35 b(The)26 b(ABD)n(AD)n(A)e(parallel)j(sc)n(heme)e(on)h(the)f +Fw(\013\014)30 b Fx(Searc)n(h)2164 83 y Fu(\017)39 b +Fx(W)-6 b(e)31 b(ha)n(v)n(e)g(to)g(de\014ne)g(a)g(new)h(v)l(alue)f +Ft(ON)p 3409 83 24 4 v 28 w(EVALUATION)j Fx(whic)n(h)2241 +166 y(is)27 b(di\013eren)n(t)g(from)f(an)n(y)h(v)l(alue)f(returned)g(b) +n(y)g(the)h(ev)l(aluation)2241 249 y(function.)2164 376 +y Fu(\017)39 b Fx(The)33 b Ft(RetrieveAsk)i Fx(pro)r(cedure)e(has)g(to) +f(return)g(this)h(v)l(alue)2241 459 y(as)25 b(a)g Ft(score)h +Fx(if)f(there)g(are)g(other)g(pro)r(cessors)h(ev)l(aluating)f(the)2241 +542 y(no)r(de)32 b(and)f Ft(exclusiveP)j Fx(is)f Ft(true)p +Fx(.)54 b(Otherwise,)34 b(if)f(there)e(is)2241 625 y(no)23 +b(forw)n(ard)h(pruning)f(due)f(to)h(the)g(transp)r(osition)h(table,)g +(the)2241 708 y(en)n(try)h Ft(nproc)h Fx(is)h(incremen)n(ted.)2164 +834 y Fu(\017)39 b Fx(Using)29 b(the)f(same)g(metho)r(d,)h(the)f +(storing)i(pro)r(cedure)e(decre-)2241 918 y(men)n(ts)20 +b(the)i(en)n(try)e Ft(nproc)j Fx(when)e(a)h(pro)r(cessor)i(lea)n(v)n +(es)e(a)g(no)r(de.)2164 1044 y Fu(\017)39 b Fx(The)30 +b(three)h(phases)f(are)h(implemen)n(ted)d(using)j(the)e(v)l(ariable) +2241 1127 y Ft(iteration)37 b Fx(whic)n(h)f(can)f(tak)n(e)h(the)f(v)l +(alue)g Ft(1)g Fx(and)g Ft(2)h Fx(in)f(the)2241 1210 +y(inner)f(lo)r(op)i(\(lines)f(29)g(to)g(42\).)62 b(The)35 +b(\014rst)f(time)g(w)n(e)h(en)n(ter)2241 1293 y(the)g(inner)g(lo)r(op,) +j(w)n(e)e(reset)g(the)e Ft(exclusive)j Fx(\015ag)f(only)f(on)2241 +1376 y(the)29 b(\014rst)g(mo)n(v)n(e)f(while)j(w)n(e)e(reset)h(it)g(on) +f(ev)n(ery)g(mo)n(v)n(e)f(in)h(the)2241 1459 y(second)34 +b(iteration.)60 b(When)33 b(the)g Ft(exclusive)j Fx(\015ag)e(is)g(set,) +j(a)2241 1542 y(son)26 b(whic)n(h)f(has)g(b)r(een)g(pruned)f(b)r +(ecause)i(another)f(pro)r(cessor)2241 1625 y(is)35 b(curren)n(tly)e(ev) +l(aluating)h(it)h(will)g(ha)n(v)n(e)f(a)g(return)f(v)l(alue)h(of)2241 +1708 y Ft(-ON)p 2363 1708 V 29 w(EVALUATION)p Fx(.)e(If)e(w)n(e)g +(\014nd)f(suc)n(h)h(a)g(son,)h(then)e(w)n(e)h(reset)2241 +1791 y(the)i Ft(alldone)h Fx(\015ag)g(meaning)e(that)h(another)g +(iteration)i(will)2241 1874 y(b)r(e)26 b(necessary)g(to)g(kno)n(w)f +(the)g(v)l(alue)h(of)g(this)g(son.)2164 2061 y(With)g(this)f +(de\014nition,)h(w)n(e)g(can)g(easily)h(see)f(that)g(compared)f(to)2049 +2144 y(a)h(YBW)n(C)g(searc)n(h,)h(the)f(ABD)n(AD)n(A)e(searc)n(h)i +(will)i(attempt)d(to)h(read)2049 2227 y(the)34 b(transp)r(osition)h +(table)g(at)f(most)g(t)n(wice)h(as)g(man)n(y)d(times,)k(and)2049 +2310 y(write)26 b(roughly)g(the)f(same)h(n)n(um)n(b)r(er)d(of)k(times.) +2049 2590 y Fy(3)100 b(RESUL)-8 b(TS)33 b(FROM)h(EXPERIMENTS)2049 +2816 y Fx(T)-6 b(o)22 b(analyse)f(the)g(b)r(eha)n(viour)g(of)h(the)f +(parallel)h(sc)n(heme,)g(w)n(e)f(used)g(the)2049 2899 +y(parallelization)26 b(of)e(t)n(w)n(o)g(sequen)n(tial)g(game)f +(programs:)34 b(a)24 b(comp)r(eti-)2049 2982 y(tiv)n(e)g(Othello)g +(program)2750 2950 y Fv(3)2809 2982 y Fx(and)g(an)g(early)g(v)n(ersion) +h(of)g(the)e Fs(F)-6 b(r)l(enchess)2049 3065 y Fx(c)n(hess)26 +b(program.)2164 3212 y(The)34 b(Othello)h(program)f(has)g(an)g +(unstable)g(ev)l(aluation)g(func-)2049 3295 y(tion)c(as)h(the)e(searc)n +(h)h(is)h(extended.)46 b(Most)30 b(Othello)h(programmers)2049 +3378 y(kno)n(w)k(of)h(the)e(o)r(dd{ev)n(en)h(problem)f(whic)n(h)h +(results)h(in)f(an)g(ev)l(alu-)2049 3461 y(ation)i(at)g(o)r(dd)f(depth) +f(b)r(eing)i(far)h(b)r(etter)e(than)g(one)g(at)h(an)g(ev)n(en)2049 +3544 y(depth)29 b(b)r(ecause)i(who)r(ev)n(er)g(just)g(mo)n(v)n(ed)e +(has)i(just)f(giv)n(en)h(mobilit)n(y)2049 3627 y(to)h(their)f(opp)r +(onen)n(t.)51 b(\(Othello)32 b(is)g(a)g(game)f(of)h(zugzw)n(ang.\))53 +b(F)-6 b(ur-)2049 3710 y(thermore,)38 b(the)e(Othello)g(program)g(sho)n +(ws)g(some)g(v)n(ery)f(unstable)2049 3793 y(principal)24 +b(v)l(ariations.)35 b(This)24 b(has)g(the)g(uncommon)d(e\013ect)j(that) +f(the)2049 3876 y Fw(\013\014)37 b Fx(searc)n(h)c(is)g(b)r(etter)f +(than)g(NegaScout[19)q(,)h(20)q(])g(searc)n(h)g(for)g(this)2049 +3960 y(program.)2164 4107 y(In)f(con)n(trast,)k(the)c(c)n(hess)h +(program)g(used)f(a)i(fast)f(incremen)n(tal)2049 4190 +y(ev)l(aluation)38 b(function)h(based)f(on)g(an)g(Oracle[3)q(])h(com)n +(bined)e(with)2049 4273 y(Piece/Color/Square)48 b(tables,)j(and)44 +b(pro)r(duced)h(a)g(fairly)h(stable)2049 4356 y(ev)l(aluation)32 +b(function)f(and)g(also)h(stable)g(principal)g(v)l(ariations)g(as-)2049 +4439 y(so)r(ciated)27 b(with)f(optimised)f(k)n(ey)g(mo)n(v)n(e)f +(ordering)j(tec)n(hniques.)2164 4586 y(Whatev)n(er)20 +b(the)g(n)n(um)n(b)r(er)e(of)j(pro)r(cessors)h(is,)g(the)d(global)j(n)n +(um)n(b)r(er)2049 4669 y(of)k(en)n(tries)g(in)g(the)f(transp)r(osition) +i(table)f(is)g(k)n(ept)f(constan)n(t.)2049 4941 y Fy(3.1)100 +b(DEFINITIONS)2049 5141 y Fx(Before)35 b(giving)f(some)f(results)g +(from)g(the)g(exp)r(erimen)n(ts)f(w)n(e)i(made)2049 5224 +y(on)20 b(a)g(CM5)i(Thinking)e(Mac)n(hine)g(Corp)r(oration)i(Computer)d +(with)h(32)2049 5307 y(SP)-6 b(AR)n(C)30 b(no)r(des,)j(w)n(e)f(need)f +(some)g(basic)h(de\014nitions)f(of)h(the)f(mea-)2049 +5390 y(sures)26 b(w)n(e)g(used.)p 2049 5456 801 4 v 2134 +5510 a Fv(3)2168 5535 y Fr(The)i(sequen)n(tial)f(Othello)g(program)h +(named)f Fk(Bugs)33 b Fr(\014nished)26 b(fourth)i(in)2049 +5599 y(the)21 b(W)-5 b(aterlo)r(o)22 b(Othello)f(tournamen)n(t)f(in)i +(1994,)h(and)e(\014nished)g(second)g(of)h(the)2049 5663 +y(P)n(aderb)r(orn)f(Othello)g(tournamen)n(t)f(in)i(1995.)p +eop +%%Page: 3 3 +3 2 bop -150 540 a Fp(p)n(ro)r(c)p -150 553 128 4 v 25 +w(RetrieveAsk)q Fo(\()p Fp(P)n(osition)r Fn(;)11 b(\013;)h(\014)s(;)f +Fp(depth)r Fn(;)h Fp(exclusiveP)p Fo(\))44 b Fm(\021)1 +615 y Fp(va)n(r)p 1 628 89 4 v 23 w(entry)r Fn(;)11 b +Fp(answ)n(er)r Fo(;)43 b Fp(end)p 558 628 105 4 v 1 689 +a(entry)21 b Fm( )e(T)f Fo(\()p Fp(P)n(osition)q Fo(\);)1 +764 y Fp(answ)n(er)r Fn(:\013)h Fm( )g Fn(\013)p Fo(;)32 +b Fp(answ)n(er)r Fn(:\014)22 b Fm( )d Fn(\014)s Fo(;)1 +839 y Fp(answ)n(er)r Fn(:)p Fp(sco)n(re)h Fm( )f(\0001)p +Fo(;)1 913 y Fp(if)p 1 926 39 4 v 23 w(entry)i Fo(=)f(0)j +Fp(then)p 366 926 130 4 v 520 988 a Fo(If)g(not)i(exists)e(then)i(exit) +520 1063 y Fl(skip)e Fp(endp)n(rob)r(e)s Fo(;)1 1138 +y Fp(\014)p 1 1151 38 4 v 1 1212 a(if)p 1 1225 39 4 v +23 w(entry)r Fn(:)p Fp(height)e Fo(=)e Fp(depth)34 b +Fm(^)d Fp(exclusiveP)h Fm(^)f Fp(entry)r Fn(:)p Fp(np)n(ro)r(c)21 +b Fn(>)e Fo(0)63 1287 y Fp(then)p 63 1300 130 4 v 239 +1362 a Fo(Only)24 b(one)g(pro)r(cessor)g(allo)n(w)n(ed)g(if)f +(exclusivit)n(y)216 1436 y(is)g(required)216 1511 y Fp(answ)n(er)r +Fn(:)p Fp(sco)n(re)d Fm( )g Fp(ON)p 799 1511 22 4 v 25 +w(EV)-6 b(ALUA)g(TION)q Fo(;)216 1586 y Fl(skip)23 b +Fp(endp)n(rob)r(e)1 1661 y(\014)p 1 1674 38 4 v 1 1735 +a(if)p 1 1748 39 4 v 23 w(entry)r Fn(:)p Fp(height)e +Fm(\025)e Fp(depth)63 1810 y(then)p 63 1823 130 4 v 216 +1885 a(if)p 216 1898 39 4 v 23 w(entry)r Fn(:)p Fp(\015ag)h +Fo(=)f Fp(V)-6 b(ALID)278 1960 y(then)p 278 1973 130 +4 v 25 w(answ)n(er)r Fn(:)p Fp(sco)n(re)21 b Fm( )e Fp(entry)r +Fn(:)p Fp(sco)n(re)p Fo(;)431 2034 y Fp(answ)n(er)r Fn(:)p +Fp(alpha)h Fm( )f Fp(entry)r Fn(:)p Fp(sco)n(re)q Fo(;)431 +2109 y Fp(answ)n(er)r Fn(:\014)j Fm( )e Fp(entry)q Fn(:)p +Fp(sco)n(re)216 2184 y(elsif)p 216 2197 114 4 v 23 w(entry)r +Fn(:)p Fp(\015ag)g Fo(=)g Fp(UBOUND)32 b Fm(^)f Fp(entry)r +Fn(:)p Fp(sco)n(re)20 b Fn(<)g(\014)353 2258 y Fp(then)p +353 2271 130 4 v 25 w(answ)n(er)r Fn(:)p Fp(sco)n(re)h +Fm( )e Fp(entry)r Fn(:)p Fp(sco)n(re)q Fo(;)506 2333 +y Fp(answ)n(er)r Fn(:\014)k Fm( )c Fp(entry)r Fn(:)p +Fp(sco)n(re)216 2408 y(elsif)p 216 2421 114 4 v 23 w(entry)r +Fn(:)p Fp(\015ag)h Fo(=)g Fp(LBOUND)32 b Fm(^)f Fp(entry)r +Fn(:)p Fp(sco)n(re)20 b Fn(>)g(\013)353 2483 y Fp(then)p +353 2496 130 4 v 25 w(answ)n(er)r Fn(:)p Fp(sco)n(re)h +Fm( )e Fp(entry)r Fn(:)p Fp(sco)n(re)q Fo(;)506 2557 +y Fp(answ)n(er)r Fn(:\013)h Fm( )f Fp(entry)r Fn(:)p +Fp(sco)n(re)216 2632 y(\014)p 216 2645 38 4 v 216 2707 +a(if)p 216 2720 39 4 v 23 w(entry)r Fn(:)p Fp(depth)i +Fo(=)f Fp(depth)33 b Fm(^)e Fp(answ)n(er)s Fn(:\013)19 +b(<)h Fp(answ)n(er)r Fn(:\014)278 2781 y Fp(then)p 278 +2794 130 4 v 431 2856 a Fo(Incremen)n(t)k(the)h(n)n(um)n(b)r(er)e(of)g +(pro)r(cessors)431 2931 y(ev)l(aluating)i(this)f(no)r(de)431 +3006 y Fp(entry)r Fn(:)p Fp(np)n(ro)r(c)d Fm( )e Fp(entry)r +Fn(:)p Fp(np)n(ro)r(c)e Fo(+)e(1)216 3080 y Fp(\014)p +216 3093 38 4 v 86 3155 a(else)p 86 3168 107 4 v 216 +3230 a Fo(This)23 b(is)g(the)i(\014rst)e(pro)r(cessor)h(to)g(ev)l +(aluate)h(this)f(no)r(de)216 3304 y Fp(entry)r Fn(:)p +Fp(depth)d Fm( )e Fp(depth)r Fo(;)216 3379 y Fp(entry)r +Fn(:)p Fp(\015ag)h Fm( )f Fp(UNSET)q Fo(;)216 3454 y +Fp(entry)r Fn(:)p Fp(np)n(ro)r(c)i Fm( )e Fo(1;)1 3529 +y Fp(\014)p 1 3542 38 4 v 1 3603 a(endp)n(rob)r(e:)1 +3678 y Fo(No)n(w)k(send)i(the)f(answ)n(er)1 3753 y Fp(Send.ttableansw)n +(er)t Fo(\()p Fp(answ)n(er)s Fn(:\013;)11 b Fp(answ)n(er)r +Fn(:\014)s(;)g Fp(answ)n(er)r Fn(:)p Fp(sco)n(re)q Fo(\);)-150 +3828 y Fl(.)-150 3902 y Fp(p)n(ro)r(c)p -150 3915 128 +4 v 25 w(Sto)n(reHash)q Fo(\()p Fp(P)n(osition)r Fn(;)h(\013;)f(\014)s +(;)h Fp(sco)n(re)q Fn(;)f Fp(depth)r Fo(\))44 b Fm(\021)1 +3977 y Fp(va)n(r)p 1 3990 89 4 v 23 w Fn(entr)r(y)r Fo(;)f +Fp(end)p 348 3990 105 4 v 1 4052 a(entry)21 b Fm( )e(T)f +Fo(\()p Fp(P)n(osition)q Fo(\);)1 4126 y Fp(if)p 1 4139 +39 4 v 23 w(entry)j Fo(=)f(0)31 b Fm(_)h Fp(entry)r Fn(:)p +Fp(height)21 b Fn(>)e Fp(depth)26 b(then)p 1089 4139 +130 4 v 25 w(exit)p 1242 4139 107 4 v 24 w(\014)p 1372 +4139 38 4 v 1 4201 a(if)p 1 4214 39 4 v 23 w(entry)r +Fn(:)p Fp(height)21 b Fo(=)e Fp(depth)63 4276 y(then)p +63 4289 130 4 v 25 w(entry)r Fn(:)p Fp(np)n(ro)r(c)i +Fm( )e Fp(entry)r Fn(:)p Fp(np)n(ro)r(c)e Fm(\000)e Fo(1)86 +4351 y Fp(else)p 86 4364 107 4 v 24 w(entry)r Fn(:)p +Fp(np)n(ro)r(c)21 b Fm( )e Fo(0)1 4425 y Fp(\014)p 1 +4438 38 4 v 1 4500 a(if)p 1 4513 39 4 v 23 w(sco)n(re)h +Fm(\025)g Fn(\014)26 b Fp(then)p 370 4513 130 4 v 26 +w(entry)r Fn(:)p Fp(\015ag)20 b Fm( )f Fp(LBOUND)1 4575 +y(elsif)p 1 4588 114 4 v 23 w(sco)n(re)i Fm(\024)e Fn(\013)24 +b Fp(then)p 448 4588 130 4 v 25 w(entry)r Fn(:)p Fp(\015ag)c +Fm( )g Fp(UBOUND)471 4649 y(else)p 471 4662 107 4 v 24 +w(entry)r Fn(:)p Fp(\015ag)g Fm( )g Fp(V)-6 b(ALID)1 +4724 y(\014)p 1 4737 38 4 v 1 4799 a(entry)r Fn(:)p Fp(sco)n(re)20 +b Fm( )f Fp(sco)n(re)q Fo(;)1 4874 y Fp(entry)r Fn(:)p +Fp(depth)i Fm( )e Fp(depth)r Fo(;)-150 4948 y Fl(.)-150 +5177 y Fx(Figure)28 b(2:)38 b(The)27 b(transp)r(osition)h(table)g +(managemen)n(t)e(for)i(the)e(AB-)-150 5260 y(D)n(AD)n(A)e(sc)n(heme) +2164 83 y(These)60 b(de\014nitions)f(follo)n(w)j(those)d(giv)n(en)g(in) +g(a)h(previous)2049 166 y(pap)r(er[15)q(]:)2049 362 y +Fj(The)29 b(Comm)n(unication)h(Ov)n(erhead)f(\(CO\))69 +b Fx(is)31 b(the)e(o)n(v)n(erhead)2241 445 y(that)i(is)h(caused)f(when) +g(the)g(parallel)i(program)e(sends)g(mes-)2241 528 y(sages)j(bac)n(k)f +(and)g(forth)g(b)r(et)n(w)n(een)g(pro)r(cessors.)58 b(It)33 +b(also)h(in-)2241 611 y(cludes)21 b(the)g(time)g(sp)r(en)n(t)f(to)i +(enco)r(de)f(and)g(deco)r(de)g(a)h(message.)2241 694 +y(It)j(is)h(dep)r(enden)n(t)f(on)g(b)r(oth)h(hardw)n(are)g(and)f(soft)n +(w)n(are.)2049 829 y Fj(The)k(Searc)n(h)g(Ov)n(erhead)g(\(SO\))69 +b Fx(is)32 b(the)f(cost)g(attributable)h(to)2241 912 +y(the)57 b(extra)g(no)r(des)h(searc)n(hed)g(in)f(the)g(parallel)i(v)n +(ersion)2241 995 y(compared)2566 963 y Fv(4)2630 995 +y Fx(to)30 b(the)g(sequen)n(tial)g(v)n(ersion.)47 b(It)30 +b(is)g(de\014ned)f(b)n(y)2241 1078 y(the)c(form)n(ula)2453 +1287 y Fw(S)t(O)f Fx(=)2677 1238 y(\(No)r(des)i(searc)n(hed)g(for)h(N)e +(CPUs\))p 2677 1270 997 4 v 2702 1337 a(\(No)r(des)h(searc)n(hed)g(for) +g(1)g(CPU\))3701 1287 y Fu(\000)17 b Fx(1)p Fw(:)2049 +1542 y Fj(The)29 b(Sync)n(hronization)j(Ov)n(erhead)d(\(SY\))68 +b Fx(is)46 b(the)f(cost)g(at-)2241 1625 y(tributed)20 +b(when)g(a)h(pro)r(cessor)i(b)r(ecomes)d(idle.)33 b(This)22 +b(can)f(hap-)2241 1708 y(p)r(en)k(when)h(it)f(has)h(no)g(job)g(to)f(do) +h(or)g(when)f(it)h(is)g(w)n(aiting)h(for)2241 1791 y(a)f(result)g +(\(comm)n(unication\))e(from)i(another)f(pro)r(cessor.)2049 +1926 y Fj(The)k(Time)f(Ov)n(erhead)h(\(TO\))69 b Fx(is)22 +b(the)f(observ)l(able)g(measure)g(of)2241 2009 y(o)n(v)n(erhead.)34 +b(It)25 b(is)i(de\014ned)d(as)2241 2212 y Fw(T)11 b(O)23 +b Fx(=)e(\(Time)26 b(using)g(N)f(Cpus\))r Fu(\002)3548 +2164 y Fw(N)p 3250 2195 667 4 v 3250 2263 a Fx(\(Time)g(using)h(1)g +(Cpu\))3928 2212 y Fu(\000)r Fx(1)p Fw(:)2241 2437 y +Fx(and)20 b(is)i(appro)n(ximately)d(related)i(to)g(the)g(other)f(o)n(v) +n(erheads)h(b)n(y)2766 2615 y Fw(T)11 b(O)23 b Fx(=)e +Fw(S)t(O)f Fx(+)d Fw(C)5 b(O)19 b Fx(+)e Fw(S)t(Y)t(:)2049 +2820 y Fj(The)29 b(Relativ)n(e)g(Sp)r(eedup)h(\(RS\))69 +b Fx(is)26 b(de\014ned)f(b)n(y)2649 3047 y Fw(R)q(S)g +Fx(=)2896 2998 y(\(Time)g(using)h(1)g(CPU\))p 2871 3030 +741 4 v 2871 3097 a(\(Time)f(using)h(N)f(CPUs\))3621 +3047 y Fw(:)2241 3272 y Fx(for)31 b(the)f(same)g(algorithm,)j(i.e.)49 +b(using)31 b(only)f(one)h(CPU,)g(w)n(e)2241 3355 y(use)19 +b(the)f(same)h(algorithm)g(as)h(for)g(the)e(parallel)j(v)n(ersion.)32 +b(This)2241 3438 y(enables)i(us)f(to)g(measure)g(the)g(p)r(erformance)g +(of)h(the)f(paral-)2241 3521 y(lelization)28 b(sc)n(heme.)2049 +3656 y Fj(The)h(Absolute)h(Sp)r(eedup)f(\(AS\))69 b Fx(is,)23 +b(in)e(con)n(trast,)i(de\014ned)d(b)n(y)2355 3883 y Fw(AS)25 +b Fx(=)2576 3834 y(\(Time)h(of)g(the)g(b)r(est)f(sequen)n(tial)h +(algorithm\))p 2576 3866 1329 4 v 2870 3934 a(\(Time)g(using)g(N)f +(CPUs\))3914 3883 y Fw(:)2241 4108 y Fx(This)41 b(measure)f(is)h +(suited)f(for)h(comparing)f(parallel)i(algo-)2241 4191 +y(rithms.)73 b(Some)38 b(sc)n(hemes)g(can)h(parallelize)i(p)r(o)r(or)e +(sequen-)2241 4274 y(tial)21 b(algorithms)f(w)n(ell,)j(ac)n(hieving)d +(a)g(go)r(o)r(d)h(relativ)n(e)f(sp)r(eedup.)2241 4357 +y(Ho)n(w)n(ev)n(er,)26 b(they)f(ma)n(y)g(b)r(e)h(slo)n(w)n(er)h(on)f +Fw(N)34 b Fx(CPUs)27 b(than)e(a)i(b)r(et-)2241 4440 y(ter)e(sequen)n +(tial)g(algorithm)g(and)g(a)g(parallel)h(algorithm)g(with)2241 +4523 y(a)j(smaller)g(relativ)n(e)h(sp)r(eedup.)43 b(In)28 +b(our)h(problems,)g(w)n(e)h(ha)n(v)n(e)2241 4606 y(used)e(the)g +(recursiv)n(e)g Fw(\013\014)33 b Fx(searc)n(h)c(for)g(the)e(Othello)i +(program)2241 4689 y(as)24 b(a)f("b)r(est)h(sequen)n(tial)g(algorithm") +g(and)e(the)h(recursiv)n(e)h(Ne-)2241 4772 y(gascout)j(searc)n(h)f(for) +g(the)g(c)n(hess)g(program.)2049 4908 y Fj(The)j(E\016ciency)68 +b Fx(is)26 b(de\014ned)f(b)n(y)2680 5131 y Fw(E)t(F)32 +b Fx(=)2913 5082 y(\(Absolute)26 b(Sp)r(eedup\))p 2913 +5114 667 4 v 3212 5181 a Fw(N)3589 5131 y(:)2241 5309 +y Fx(.)p 2049 5392 801 4 v 2134 5446 a Fv(4)2168 5471 +y Fr(In)15 b(the)g(case)g(of)g(the)g(ABD)n(AD)n(A)h(searc)n(h,)g(w)n(e) +g(coun)n(t)f(as)h(a)f(no)r(de)f(a)i(no)r(de)e(that)2049 +5535 y(is)24 b(not)g(immediately)e(pruned)g(b)n(y)i(the)g(sp)r +(eculativ)n(e)e(searc)n(h)h(con)n(trol.)34 b(In)24 b(this)2049 +5599 y(case,)d(the)g(searc)n(h)f(o)n(v)n(erhead)h(is)g(created)f(b)n(y) +h(the)g(fact)f(that)i(man)n(y)f(pro)r(cessors)2049 5663 +y(are)h(searc)n(hing)f(the)h(same)f(no)r(des.)p eop +%%Page: 4 4 +4 3 bop 37 970 a @beginspecial 50 @llx 50 @lly 302 @urx +226 @ury 1530 @rwi @setspecial +%%BeginDocument: tgraph3.eps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.050 0.050 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +LTb +840 655 M +63 0 V +3905 0 R +-63 0 V +756 655 M +(5) Rshow +840 1035 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(10) Rshow +840 1415 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(15) Rshow +840 1795 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(20) Rshow +840 2176 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(25) Rshow +840 2556 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(30) Rshow +840 2936 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(35) Rshow +840 3316 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(40) Rshow +1247 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(5) Cshow +1756 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(10) Cshow +2264 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(15) Cshow +2773 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(20) Cshow +3282 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(25) Cshow +3791 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(30) Cshow +4299 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(35) Cshow +4808 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(40) Cshow +840 351 M +3968 0 V +0 2965 V +-3968 0 V +840 351 L +140 1833 M +currentpoint gsave translate 90 rotate 0 0 M +(Relative Speedup) Cshow +grestore +2824 71 M +(Number of processors) Cshow +2824 3456 M +(Othello : Young Brothers Wait Concept) Cshow +LT0 +4325 3113 M +(ideal) Rshow +4409 3113 M +252 0 V +1552 883 M +814 608 V +814 609 V +814 608 V +4493 3113 D +1552 883 D +2366 1491 D +3180 2100 D +3994 2708 D +LT1 +4325 2973 M +(11) Rshow +4409 2973 M +252 0 V +1552 803 M +814 380 V +814 337 V +814 327 V +4493 2973 A +1552 803 A +2366 1183 A +3180 1520 A +3994 1847 A +LT2 +4325 2833 M +(10) Rshow +4409 2833 M +252 0 V +1552 790 M +814 319 V +814 294 V +814 206 V +4493 2833 B +1552 790 B +2366 1109 B +3180 1403 B +3994 1609 B +LT3 +4325 2693 M +(9) Rshow +4409 2693 M +252 0 V +1552 762 M +814 275 V +814 160 V +814 76 V +4493 2693 C +1552 762 C +2366 1037 C +3180 1197 C +3994 1273 C +LT4 +4325 2553 M +(8) Rshow +4409 2553 M +252 0 V +1552 696 M +814 151 V +814 21 V +814 -19 V +4493 2553 T +1552 696 T +2366 847 T +3180 868 T +3994 849 T +LT5 +4325 2413 M +(7) Rshow +4409 2413 M +252 0 V +1552 606 M +814 47 V +814 -59 V +814 -10 V +4493 2413 S +1552 606 S +2366 653 S +3180 594 S +3994 584 S +LT6 +4325 2273 M +(6) Rshow +4409 2273 M +252 0 V +1552 487 M +814 -9 V +814 -37 V +814 -21 V +4493 2273 D +1552 487 D +2366 478 D +3180 441 D +3994 420 D +LT7 +4325 2133 M +(5) Rshow +4409 2133 M +252 0 V +1552 411 M +814 -24 V +814 -25 V +718 -11 V +4493 2133 A +1552 411 A +2366 387 A +3180 362 A +LT8 +4325 1993 M +(4) Rshow +4409 1993 M +252 0 V +1552 356 M +204 -5 V +4493 1993 B +1552 356 B +LT0 +4325 1853 M +(3) Rshow +4409 1853 M +252 0 V +4493 1853 C +stroke +grestore +end +showpage +%%EndDocument + @endspecial 1275 w @beginspecial 50 @llx 50 @lly 302 +@urx 226 @ury 1530 @rwi @setspecial +%%BeginDocument: tgraph19.eps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.050 0.050 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +LTb +840 655 M +63 0 V +3905 0 R +-63 0 V +756 655 M +(5) Rshow +840 1035 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(10) Rshow +840 1415 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(15) Rshow +840 1795 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(20) Rshow +840 2176 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(25) Rshow +840 2556 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(30) Rshow +840 2936 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(35) Rshow +840 3316 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(40) Rshow +1247 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(5) Cshow +1756 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(10) Cshow +2264 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(15) Cshow +2773 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(20) Cshow +3282 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(25) Cshow +3791 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(30) Cshow +4299 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(35) Cshow +4808 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(40) Cshow +840 351 M +3968 0 V +0 2965 V +-3968 0 V +840 351 L +140 1833 M +currentpoint gsave translate 90 rotate 0 0 M +(Relative Speedup) Cshow +grestore +2824 71 M +(Number of processors) Cshow +2824 3456 M +(Chess : Young Brothers Wait Concept) Cshow +LT0 +4325 3113 M +(ideal) Rshow +4409 3113 M +252 0 V +1552 883 M +814 608 V +814 609 V +814 608 V +4493 3113 D +1552 883 D +2366 1491 D +3180 2100 D +3994 2708 D +LT1 +4325 2973 M +(8) Rshow +4409 2973 M +252 0 V +1552 760 M +814 319 V +814 264 V +814 333 V +4493 2973 A +1552 760 A +2366 1079 A +3180 1343 A +3994 1676 A +LT2 +4325 2833 M +(7) Rshow +4409 2833 M +252 0 V +1552 740 M +814 305 V +814 227 V +814 244 V +4493 2833 B +1552 740 B +2366 1045 B +3180 1272 B +3994 1516 B +LT3 +4325 2693 M +(6) Rshow +4409 2693 M +252 0 V +1552 717 M +814 267 V +814 172 V +814 153 V +4493 2693 C +1552 717 C +2366 984 C +3180 1156 C +3994 1309 C +LT4 +4325 2553 M +(5) Rshow +4409 2553 M +252 0 V +1552 600 M +814 133 V +814 62 V +814 41 V +4493 2553 T +1552 600 T +2366 733 T +3180 795 T +3994 836 T +LT5 +4325 2413 M +(4) Rshow +4409 2413 M +252 0 V +1552 552 M +814 96 V +814 25 V +814 121 V +4493 2413 S +1552 552 S +2366 648 S +3180 673 S +3994 794 S +LT6 +4325 2273 M +(3) Rshow +4409 2273 M +252 0 V +1552 492 M +814 36 V +814 0 V +814 0 V +4493 2273 D +1552 492 D +2366 528 D +3180 528 D +3994 528 D +stroke +grestore +end +showpage +%%EndDocument + @endspecial 1276 w @beginspecial 50 @llx 50 @lly 302 +@urx 226 @ury 1530 @rwi @setspecial +%%BeginDocument: tgraph25.eps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.050 0.050 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +LTb +840 655 M +63 0 V +3905 0 R +-63 0 V +756 655 M +(5) Rshow +840 1035 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(10) Rshow +840 1415 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(15) Rshow +840 1795 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(20) Rshow +840 2176 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(25) Rshow +840 2556 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(30) Rshow +840 2936 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(35) Rshow +840 3316 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(40) Rshow +1247 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(5) Cshow +1756 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(10) Cshow +2264 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(15) Cshow +2773 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(20) Cshow +3282 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(25) Cshow +3791 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(30) Cshow +4299 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(35) Cshow +4808 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(40) Cshow +840 351 M +3968 0 V +0 2965 V +-3968 0 V +840 351 L +140 1833 M +currentpoint gsave translate 90 rotate 0 0 M +(Relative Speedup) Cshow +grestore +2824 71 M +(Number of processors) Cshow +2824 3456 M +(Chess : Negascout YBWC) Cshow +LT0 +4325 3113 M +(ideal) Rshow +4409 3113 M +252 0 V +1552 883 M +814 608 V +814 609 V +814 608 V +4493 3113 D +1552 883 D +2366 1491 D +3180 2100 D +3994 2708 D +LT1 +4325 2973 M +(8) Rshow +4409 2973 M +252 0 V +1552 672 M +814 282 V +814 248 V +814 166 V +4493 2973 A +1552 672 A +2366 954 A +3180 1202 A +3994 1368 A +LT2 +4325 2833 M +(7) Rshow +4409 2833 M +252 0 V +1552 673 M +814 208 V +814 201 V +814 62 V +4493 2833 B +1552 673 B +2366 881 B +3180 1082 B +3994 1144 B +LT3 +4325 2693 M +(6) Rshow +4409 2693 M +252 0 V +1552 632 M +814 146 V +814 134 V +814 28 V +4493 2693 C +1552 632 C +2366 778 C +3180 912 C +3994 940 C +LT4 +4325 2553 M +(5) Rshow +4409 2553 M +252 0 V +1552 532 M +814 54 V +814 62 V +814 24 V +4493 2553 T +1552 532 T +2366 586 T +3180 648 T +3994 672 T +LT5 +4325 2413 M +(4) Rshow +4409 2413 M +252 0 V +1552 486 M +814 49 V +814 0 V +814 39 V +4493 2413 S +1552 486 S +2366 535 S +3180 535 S +3994 574 S +LT6 +4325 2273 M +(3) Rshow +4409 2273 M +252 0 V +1552 416 M +814 70 V +814 0 V +814 42 V +4493 2273 D +1552 416 D +2366 486 D +3180 486 D +3994 528 D +stroke +grestore +end +showpage +%%EndDocument + @endspecial 37 1948 a @beginspecial 50 @llx 50 @lly +302 @urx 226 @ury 1530 @rwi @setspecial +%%BeginDocument: tgraph4.eps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.050 0.050 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +840 351 M +3968 0 V +LTb +840 351 M +63 0 V +3905 0 R +-63 0 V +756 351 M +(0) Rshow +840 845 M +63 0 V +3905 0 R +-63 0 V +756 845 M +(10) Rshow +840 1339 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(20) Rshow +840 1833 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(30) Rshow +840 2328 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(40) Rshow +840 2822 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(50) Rshow +840 3316 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(60) Rshow +1247 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(5) Cshow +1756 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(10) Cshow +2264 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(15) Cshow +2773 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(20) Cshow +3282 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(25) Cshow +3791 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(30) Cshow +4299 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(35) Cshow +4808 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(40) Cshow +840 351 M +3968 0 V +0 2965 V +-3968 0 V +840 351 L +140 1833 M +currentpoint gsave translate 90 rotate 0 0 M +(Overheads) Cshow +grestore +2824 71 M +(Number of processors) Cshow +2824 3456 M +(Othello : Young Brothers Wait Concept) Cshow +LT0 +4325 3113 M +(TO) Rshow +4409 3113 M +252 0 V +1552 1097 M +814 931 V +814 625 V +814 402 V +4493 3113 D +1552 1097 D +2366 2028 D +3180 2653 D +3994 3055 D +LT1 +4325 2973 M +(SO) Rshow +4409 2973 M +252 0 V +1552 663 M +814 663 V +814 211 V +814 138 V +4493 2973 A +1552 663 A +2366 1326 A +3180 1537 A +3994 1675 A +LT2 +4325 2833 M +(CO) Rshow +4409 2833 M +252 0 V +1552 686 M +814 147 V +814 219 V +814 12 V +4493 2833 B +1552 686 B +2366 833 B +3180 1052 B +3994 1064 B +LT3 +4325 2693 M +(SY) Rshow +4409 2693 M +252 0 V +1552 451 M +814 119 V +814 196 V +814 252 V +4493 2693 C +1552 451 C +2366 570 C +3180 766 C +3994 1018 C +stroke +grestore +end +showpage +%%EndDocument + @endspecial 1275 w @beginspecial 50 @llx 50 @lly 302 +@urx 226 @ury 1530 @rwi @setspecial +%%BeginDocument: tgraph20.eps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.050 0.050 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +840 351 M +3968 0 V +LTb +840 351 M +63 0 V +3905 0 R +-63 0 V +756 351 M +(0) Rshow +840 722 M +63 0 V +3905 0 R +-63 0 V +756 722 M +(10) Rshow +840 1092 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(20) Rshow +840 1463 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(30) Rshow +840 1834 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(40) Rshow +840 2204 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(50) Rshow +840 2575 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(60) Rshow +840 2945 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(70) Rshow +840 3316 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(80) Rshow +1247 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(5) Cshow +1756 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(10) Cshow +2264 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(15) Cshow +2773 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(20) Cshow +3282 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(25) Cshow +3791 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(30) Cshow +4299 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(35) Cshow +4808 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(40) Cshow +840 351 M +3968 0 V +0 2965 V +-3968 0 V +840 351 L +140 1833 M +currentpoint gsave translate 90 rotate 0 0 M +(Overheads) Cshow +grestore +2824 71 M +(Number of processors) Cshow +2824 3456 M +(Chess : Young Brothers Wait Concept) Cshow +LT0 +4325 3113 M +(TO) Rshow +4409 3113 M +252 0 V +1552 1294 M +814 955 V +814 728 V +814 103 V +4493 3113 D +1552 1294 D +2366 2249 D +3180 2977 D +3994 3080 D +LT1 +4325 2973 M +(SO) Rshow +4409 2973 M +252 0 V +1552 793 M +814 736 V +814 593 V +814 -29 V +4493 2973 A +1552 793 A +2366 1529 A +3180 2122 A +3994 2093 A +LT2 +4325 2833 M +(SY) Rshow +4409 2833 M +252 0 V +1552 409 M +814 171 V +814 278 V +814 290 V +4493 2833 B +1552 409 B +2366 580 B +3180 858 B +3994 1148 B +LT3 +4325 2693 M +(CO) Rshow +4409 2693 M +252 0 V +1552 794 M +814 48 V +3180 699 L +3994 540 L +4493 2693 C +1552 794 C +2366 842 C +3180 699 C +3994 540 C +stroke +grestore +end +showpage +%%EndDocument + @endspecial 1276 w @beginspecial 50 @llx 50 @lly 302 +@urx 226 @ury 1530 @rwi @setspecial +%%BeginDocument: tgraph26.eps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.050 0.050 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +840 351 M +3968 0 V +LTb +840 351 M +63 0 V +3905 0 R +-63 0 V +756 351 M +(0) Rshow +840 775 M +63 0 V +3905 0 R +-63 0 V +756 775 M +(20) Rshow +840 1198 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(40) Rshow +840 1622 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(60) Rshow +840 2045 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(80) Rshow +840 2469 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(100) Rshow +840 2892 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(120) Rshow +840 3316 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(140) Rshow +1247 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(5) Cshow +1756 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(10) Cshow +2264 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(15) Cshow +2773 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(20) Cshow +3282 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(25) Cshow +3791 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(30) Cshow +4299 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(35) Cshow +4808 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(40) Cshow +840 351 M +3968 0 V +0 2965 V +-3968 0 V +840 351 L +140 1833 M +currentpoint gsave translate 90 rotate 0 0 M +(Overheads) Cshow +grestore +2824 71 M +(Number of processors) Cshow +2824 3456 M +(Chess : Negascout YBWC) Cshow +LT0 +4325 3113 M +(TO) Rshow +4409 3113 M +252 0 V +1552 1477 M +814 549 V +814 378 V +814 542 V +4493 3113 D +1552 1477 D +2366 2026 D +3180 2404 D +3994 2946 D +LT1 +4325 2973 M +(SO) Rshow +4409 2973 M +252 0 V +1552 1013 M +814 306 V +814 132 V +814 247 V +4493 2973 A +1552 1013 A +2366 1319 A +3180 1451 A +3994 1698 A +LT2 +4325 2833 M +(SY) Rshow +4409 2833 M +252 0 V +1552 395 M +814 128 V +814 204 V +814 310 V +4493 2833 B +1552 395 B +2366 523 B +3180 727 B +3994 1037 B +LT3 +4325 2693 M +(CO) Rshow +4409 2693 M +252 0 V +1552 772 M +814 115 V +814 42 V +814 -16 V +4493 2693 C +1552 772 C +2366 887 C +3180 929 C +3994 913 C +stroke +grestore +end +showpage +%%EndDocument + @endspecial 319 2193 a Fx(Figure)27 b(3:)34 b(Results)26 +b(with)g(the)f(\\Y)-6 b(oung)26 b(Brothers)g(W)-6 b(ait)26 +b(Concept")g(sc)n(heme)f(applied)h(to)g(the)f Fw(\013\014)30 +b Fx(algorithm.)-150 2359 y Fs(The)d(top)h(gr)l(aphs)g(show)g(the)g(r)l +(elative)g(sp)l(e)l(e)l(dup)h(versus)f(the)g(numb)l(er)g(of)e(pr)l(o)l +(c)l(essors)k(and)e(the)g(b)l(ottom)g(gr)l(aphs)g(show)g(the)g +(di\013er)l(ent)g(overhe)l(ads.)-150 2442 y(Chess)i(r)l(esults)g(r)l +(epr)l(esent)h(the)f(aver)l(age)g(on)f(the)h(24)f(Br)l(atko-Kop)l(e)l +(c[4)s(])f(p)l(ositions.)39 b(One)29 b(pr)l(o)l(c)l(essor)i(using)e(Ne) +l(gasc)l(out)i(ne)l(e)l(ds)f(52045)g(se)l(c)l(onds)-150 +2525 y(to)j(se)l(ar)l(ch)h(al)t(l)d(these)j(p)l(ositions)f(at)g(depth)g +(8,)g(the)g(minimum)e(time)h(is)g(achieve)l(d)i(by)e(the)h(p)l(osition) +g(8)f(in)g(25)h(se)l(c)l(onds.)50 b(Position)33 b(5)f(r)l(e)l(quir)l +(es)-150 2608 y(13827)c(se)l(c)l(onds.)36 b(Othel)t(lo)27 +b(r)l(esults)i(r)l(epr)l(esent)h(the)d(aver)l(age)i(on)e(the)h(\014rst) +g(50)f(moves)h(of)f(a)g(high)g(level)f(c)l(omputer)j(Othel)t(lo)e +(tournament)i(game.)-150 2691 y(A)n(t)g(depth)h(11,)g(on)f(one)g(pr)l +(o)l(c)l(essor,)i(the)f(Othel)t(lo)f(pr)l(o)l(gr)l(am)h(se)l(ar)l(ches) +i(al)t(l)c(the)i(game)f(in)f(38205)i(se)l(c)l(onds.)41 +b(T)-6 b(op)29 b(gr)l(aphs)i(ar)l(e)e(curves)i(for)e(depth)-150 +2774 y(3)f(to)g(11)g(for)f(Othel)t(lo)h(and)g(depth)h(3)e(to)h(8)g(for) +f(chess.)37 b(Bottom)28 b(gr)l(aphs)h(ar)l(e)g(for)e(depth)i(11)f(for)g +(Othel)t(lo)f(and)h(depth)h(8)f(for)f(chess.)-150 3037 +y Fy(3.2)100 b(YOUNG)33 b(BROTHERS)h(W)-8 b(AIT)34 b(CONCEPT)78 +3121 y(RESUL)-8 b(TS)-150 3316 y Fx(W)i(e)23 b(implemen)n(ted)f(the)h +(YBW)n(C)h(searc)n(h)h(on)e(the)h(Othello)g(program)-150 +3399 y(and)34 b(on)h(the)f(c)n(hess)h(program.)60 b(As)35 +b(this)f(sc)n(heme)g(w)n(as)h(primarily)-150 3482 y(c)n(hosen)28 +b(for)h(the)e(de\014nition)h(of)h Fs(F)-6 b(r)l(enchess)6 +b Fx(,)1134 3450 y Fv(5)1199 3482 y Fx(w)n(e)29 b(tried)f(man)n(y)e(p)r +(os-)-150 3565 y(sible)j(optimisations)h(to)e(ensure)h(that)f(the)g +(results)h(w)n(ere)h(the)e(b)r(est)-150 3648 y(p)r(ossible.)36 +b(The)26 b(results)g(are)g(sho)n(wn)g(on)g(\014gure)f(3.)-35 +3796 y(As)20 b(it)h(can)f(b)r(e)g(seen,)i(for)f(the)f(Othello)h +(program,)h(w)n(e)e(obtained)h(a)-150 3879 y(relativ)n(e)k(sp)r(eedup)e +(of)i(20.7)g(for)g(depth)e(11)i(trees.)35 b(F)-6 b(or)24 +b(on)g(the)g(c)n(hess)-150 3962 y(program)f(at)h(depth)e(8)i(trees,)g +(w)n(e)g(obtained)f(a)h(sp)r(eedup)f(of)h(18.4)g(us-)-150 +4045 y(ing)c Fw(\013\014)k Fx(and)19 b(14.3)j(using)e(Negascout)926 +4013 y Fv(6)981 4045 y Fx(\(In)e(our)i(c)n(hess)g(program,)h(the)-150 +4128 y(sequen)n(tial)j(Negascout)h(v)n(ersion)g(is)f(1.5)h(times)f +(faster)h(than)f(the)g Fw(\013\014)-150 4211 y Fx(v)n(ersion\).)43 +b(These)29 b(sp)r(eedups)g(are)g(relativ)n(e)g(to)g(the)f(same)g +(program)-150 4294 y(used)22 b(on)g(a)h(one)f(pro)r(cessor)i(computer)d +(\(with)h(the)g(same)g(n)n(um)n(b)r(er)e(of)-150 4377 +y(en)n(tries)30 b(in)g(the)g(transp)r(osition)h(table\),)h(so)f(as)f +(YBW)n(C)g(requires)h(a)-150 4460 y(non-recursiv)n(e)e(minimax)f(searc) +n(h,)874 4428 y Fv(7)940 4460 y Fx(these)h(sp)r(eedups)g(are)h(relativ) +n(e)-150 4543 y(to)e(a)g(non-recursiv)n(e)f Fw(\013\014)32 +b Fx(searc)n(h)c(\(or)g(a)g(non-recursiv)n(e)f(Negascout)p +-150 4600 801 4 v -65 4654 a Fv(5)-31 4679 y Fr(F)-5 +b(renc)n(hess)39 b(running)g(ABD)n(AD)n(A)i(on)g(a)f(128)h(pro)r +(cessors)f(Cra)n(y)i(T3D)-150 4743 y(\014nished)36 b(fourth)h(at)h(the) +e(8th)i(W)-5 b(orld)37 b(Computer-Chess)g(Championship.)-150 +4807 y(The)27 b(v)n(ersion)f(used)g(for)h(this)f(article)g(includes)f +(less)h(searc)n(h)h(and)f(ev)l(aluation)-150 4871 y(heuristics.)-65 +4922 y Fv(6)-31 4947 y Fr(Of)18 b(course,)f(Negascout's)h(relativ)n(e)e +(sp)r(eedup)g(is)i(less)g(than)f Fi(\013\014)s Fr('s)h(since)f(the)-150 +5011 y(relativ)n(e)23 b(tree)f(searc)n(hing)h(ine\016ciency)e(of)j +Fi(\013\014)j Fr(pro)n(vides)c(a)h(greater)e(p)r(oten)n(tial)-150 +5075 y(for)g(impro)n(v)n(emen)n(t)e(b)n(y)i(a)h(parallel)e(sc)n(heme.) +-65 5126 y Fv(7)-31 5151 y Fr(It)32 b(is)f(di\016cult)g(to)g(implemen)n +(t)e(YBW)n(C)j(on)g(a)f(recursiv)n(e)f(searc)n(h)h(since)-150 +5215 y(when)19 b(a)h(pro)r(cessor)f(receiv)n(es)f(an)i(ev)l +(aluation-answ)n(er)f(from)g(one)g(of)h(its)g(sla)n(v)n(es,)-150 +5279 y(it)c(m)n(ust)f(b)r(e)g(able)g(to)h(pro)r(duce)d(a)j(jump)f(in)g +(the)g(searc)n(h)g(depth)f(if)h(this)h(ev)l(aluation)-150 +5343 y(pro)r(duces)22 b(a)i(pruning)e(of)h(the)g(curren)n(t)f(master)h +(no)r(de.)32 b(So)24 b(the)e(v)l(alues)i Fi(\013)g Fr(and)-150 +5407 y Fi(\014)32 b Fr(m)n(ust)c(at)i(least)e(b)r(e)g(k)n(ept)h(in)f +(arra)n(ys)i(indexed)d(b)n(y)h(no)r(des)h(depths)e(\(in)i(the)-150 +5471 y("normal")e(v)n(ersion)h(of)f Fi(\013\014)k Fr(searc)n(h,)d(they) +f(are)h(k)n(ept)f(on)g(stac)n(k\))h(and)g(sp)r(ecial)-150 +5535 y(arrangemen)n(ts)20 b(m)n(ust)i(b)r(e)f(made)g(in)g(order)g(to)h +(prev)n(en)n(t)f(the)g(disruptiv)n(e)f(use)h(of)-150 +5599 y(depth)g(that)h(can)g(b)r(e)f(caused)g(b)n(y)i(this)f(pruning.)28 +b(So)22 b(YBW)n(C)h(needs)f(a)g(h)n(ugely)-150 5662 y(mo)r(di\014ed)e +(searc)n(h)i(algorithm)f(compared)f(to)j(ABD)n(AD)n(A.)2049 +3037 y Fx(searc)n(h)j(when)g(applicable\)[7)q(,)g(23)q(].)2164 +3185 y(F)-6 b(or)19 b(b)r(oth)g(programs)g(the)f(main)h(o)n(v)n(erhead) +f(is)i(the)e(Searc)n(h)h(Ov)n(er-)2049 3268 y(head)39 +b(com)n(bined)g(with)g(a)h(relativ)n(ely)g(reduced)f(Comm)n(unication) +2049 3351 y(Ov)n(erhead)30 b(\(b)n(y)f(the)h(fact)i(of)f(our)g +(optimisations)g(see)g([23)r(]\))f(and)h(a)2049 3434 +y(greater)20 b(Sync)n(hronization)f(Ov)n(erhead)f(in)h(the)f(c)n(hess)i +(program)e(than)2049 3517 y(in)26 b(the)f(Othello)h(program.)2049 +3778 y Fy(3.3)100 b(ABD)m(AD)m(A)33 b(RESUL)-8 b(TS)2049 +3975 y Fx(The)22 b(ABD)n(AD)n(A)e(sc)n(heme)i(w)n(as)h(p)r(erformed)e +(on)h(the)g(same)g(p)r(ositions)2049 4058 y(for)k(b)r(oth)e(games)h(as) +h(YBW)n(C.)f(Figure)g(4)h(summarizes)e(the)g(results.)2164 +4206 y(Here)45 b(the)f(Sync)n(hronization)g(Ov)n(erheads)g(are)h +(non-existen)n(t)2049 4289 y(since)21 b(all)g(pro)r(cessors)h(are)f +(busy)-6 b(.)31 b(The)21 b(Comm)n(unication-Ov)n(erhead)2049 +4372 y(represen)n(ts)i(the)f(time)g(sp)r(en)n(t)g(w)n(aiting)i(for)f +(the)g(transp)r(osition)h(table)2049 4455 y(answ)n(ers)35 +b(\(i.e.)59 b(the)33 b(sim)n(ulation)h(of)g(the)g(shared)f(memory\).)57 +b(The)2049 4538 y(main)28 b(o)n(v)n(erhead)h(is)h(the)f(Searc)n(h-Ov)n +(erhead.)43 b(W)-6 b(e)29 b(m)n(ust)e(also)k(note)2049 +4621 y(that)e(this)g(time)g(the)g(reference)h(sequen)n(tial)g(programs) +f(use)g(recur-)2049 4704 y(siv)n(e)24 b(implemen)n(tations)f(of)h(b)r +(oth)g Fw(\013\014)k Fx(and)23 b(Negascout)i(algorithms.)2049 +4787 y(Th)n(us)33 b(the)f(sp)r(eedup)g(for)i(Othello)f(using)g +Fw(\013\014)k Fx(searc)n(h)d(is)f(an)g(abso-)2049 4870 +y(lute)24 b(sp)r(eedup)f(lik)n(e)i(the)e(sp)r(eedup)h(for)g(Chess)h +(using)g(Negascout.)34 b(It)2049 4953 y(should)29 b(also)i(b)r(e)e +(noted)f(that)h(the)g(ABD)n(AD)n(A)e(sp)r(eedup)i(for)h(small)2049 +5036 y(depths)25 b(is)h(in)n(trinsically)h(m)n(uc)n(h)d(b)r(etter)h +(than)g(for)i(YBW)n(C.)2164 5183 y(W)-6 b(e)27 b(also)j(measured)c(the) +i(n)n(um)n(b)r(er)d(of)k(messages)f(used)g(to)g(read)2049 +5266 y(and)35 b(write)g(the)g(transp)r(osition)h(table.)63 +b(The)35 b(ratio)g(b)r(et)n(w)n(een)g(the)2049 5349 y(n)n(um)n(b)r(er)e +(of)j(reads)g(and)e(writes)i(tells)g(us)f(that)g(ABD)n(AD)n(A)e(is)j +(far)2049 5432 y(from)29 b(doubling)g(the)g(n)n(um)n(b)r(er)e(of)j +(read)g(messages.)46 b(F)-6 b(or)29 b(the)g(c)n(hess)2049 +5515 y(program,)k(on)e(the)g(Bratk)n(o-Kop)r(ec)h(p)r(ositions,)3485 +5483 y Fv(8)3552 5515 y Fx(YBW)n(C's)g(read-)p 2049 5584 +V 2134 5637 a Fv(8)2168 5662 y Fr(The)24 b(c)n(hoice)f(of)h(the)g +(Bratk)n(o-Kop)r(ec)g(p)r(ositions)g(ma)n(y)g(b)r(e)g(criticised,)f +(but)p eop +%%Page: 5 5 +5 4 bop 37 970 a @beginspecial 50 @llx 50 @lly 302 @urx +226 @ury 1530 @rwi @setspecial +%%BeginDocument: tgraph5.eps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.050 0.050 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +LTb +840 655 M +63 0 V +3905 0 R +-63 0 V +756 655 M +(5) Rshow +840 1035 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(10) Rshow +840 1415 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(15) Rshow +840 1795 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(20) Rshow +840 2176 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(25) Rshow +840 2556 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(30) Rshow +840 2936 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(35) Rshow +840 3316 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(40) Rshow +1247 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(5) Cshow +1756 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(10) Cshow +2264 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(15) Cshow +2773 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(20) Cshow +3282 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(25) Cshow +3791 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(30) Cshow +4299 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(35) Cshow +4808 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(40) Cshow +840 351 M +3968 0 V +0 2965 V +-3968 0 V +840 351 L +140 1833 M +currentpoint gsave translate 90 rotate 0 0 M +(Relative Speedup) Cshow +grestore +2824 71 M +(Number of processors) Cshow +2824 3456 M +(Othello : ABDADA) Cshow +LT0 +4325 3113 M +(ideal) Rshow +4409 3113 M +252 0 V +1552 883 M +814 608 V +814 609 V +814 608 V +4493 3113 D +1552 883 D +2366 1491 D +3180 2100 D +3994 2708 D +LT1 +4325 2973 M +(11) Rshow +4409 2973 M +252 0 V +3994 1313 M +-814 -76 V +2366 1091 L +1552 803 L +4493 2973 A +3994 1313 A +3180 1237 A +2366 1091 A +1552 803 A +LT2 +4325 2833 M +(10) Rshow +4409 2833 M +252 0 V +3994 1174 M +-814 -11 V +2366 1023 L +1552 795 L +4493 2833 B +3994 1174 B +3180 1163 B +2366 1023 B +1552 795 B +LT3 +4325 2693 M +(9) Rshow +4409 2693 M +252 0 V +3994 1172 M +-814 -15 V +2366 1027 L +1552 796 L +4493 2693 C +3994 1172 C +3180 1157 C +2366 1027 C +1552 796 C +LT4 +4325 2553 M +(8) Rshow +4409 2553 M +252 0 V +3994 1006 M +3180 987 L +2366 933 L +1552 746 L +4493 2553 T +3994 1006 T +3180 987 T +2366 933 T +1552 746 T +LT5 +4325 2413 M +(7) Rshow +4409 2413 M +252 0 V +3994 890 M +3180 867 L +2366 831 L +1552 707 L +4493 2413 S +3994 890 S +3180 867 S +2366 831 S +1552 707 S +LT6 +4325 2273 M +(6) Rshow +4409 2273 M +252 0 V +3994 750 M +3180 717 L +-814 -3 V +1552 622 L +4493 2273 D +3994 750 D +3180 717 D +2366 714 D +1552 622 D +LT7 +4325 2133 M +(5) Rshow +4409 2133 M +252 0 V +3994 657 M +3180 625 L +-814 -3 V +1552 559 L +4493 2133 A +3994 657 A +3180 625 A +2366 622 A +1552 559 A +LT8 +4325 1993 M +(4) Rshow +4409 1993 M +252 0 V +3994 599 M +3180 550 L +-814 -3 V +1552 490 L +4493 1993 B +3994 599 B +3180 550 B +2366 547 B +1552 490 B +LT0 +4325 1853 M +(3) Rshow +4409 1853 M +252 0 V +3994 501 M +-814 -1 V +-814 -1 V +-814 -1 V +4493 1853 C +3994 501 C +3180 500 C +2366 499 C +1552 498 C +stroke +grestore +end +showpage +%%EndDocument + @endspecial 1275 w @beginspecial 50 @llx 50 @lly 302 +@urx 226 @ury 1530 @rwi @setspecial +%%BeginDocument: tgraph23.eps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.050 0.050 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +LTb +840 655 M +63 0 V +3905 0 R +-63 0 V +756 655 M +(5) Rshow +840 1035 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(10) Rshow +840 1415 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(15) Rshow +840 1795 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(20) Rshow +840 2176 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(25) Rshow +840 2556 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(30) Rshow +840 2936 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(35) Rshow +840 3316 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(40) Rshow +1247 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(5) Cshow +1756 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(10) Cshow +2264 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(15) Cshow +2773 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(20) Cshow +3282 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(25) Cshow +3791 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(30) Cshow +4299 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(35) Cshow +4808 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(40) Cshow +840 351 M +3968 0 V +0 2965 V +-3968 0 V +840 351 L +140 1833 M +currentpoint gsave translate 90 rotate 0 0 M +(Relative Speedup) Cshow +grestore +2824 71 M +(Number of processors) Cshow +2824 3456 M +(Chess : ABDADA) Cshow +LT0 +4325 3113 M +(ideal) Rshow +4409 3113 M +252 0 V +1552 883 M +814 608 V +814 609 V +814 608 V +4493 3113 D +1552 883 D +2366 1491 D +3180 2100 D +3994 2708 D +LT1 +4325 2973 M +(8) Rshow +4409 2973 M +252 0 V +1552 763 M +814 394 V +814 297 V +814 217 V +4493 2973 A +1552 763 A +2366 1157 A +3180 1454 A +3994 1671 A +LT2 +4325 2833 M +(7) Rshow +4409 2833 M +252 0 V +1552 720 M +814 339 V +814 201 V +814 194 V +4493 2833 B +1552 720 B +2366 1059 B +3180 1260 B +3994 1454 B +LT3 +4325 2693 M +(6) Rshow +4409 2693 M +252 0 V +1552 673 M +814 353 V +814 180 V +814 170 V +4493 2693 C +1552 673 C +2366 1026 C +3180 1206 C +3994 1376 C +LT4 +4325 2553 M +(5) Rshow +4409 2553 M +252 0 V +1552 724 M +814 169 V +814 92 V +814 124 V +4493 2553 T +1552 724 T +2366 893 T +3180 985 T +3994 1109 T +LT5 +4325 2413 M +(4) Rshow +4409 2413 M +252 0 V +1552 723 M +814 172 V +814 113 V +814 35 V +4493 2413 S +1552 723 S +2366 895 S +3180 1008 S +3994 1043 S +LT6 +4325 2273 M +(3) Rshow +4409 2273 M +252 0 V +1552 769 M +814 0 V +814 0 V +814 0 V +4493 2273 D +1552 769 D +2366 769 D +3180 769 D +3994 769 D +stroke +grestore +end +showpage +%%EndDocument + @endspecial 1276 w @beginspecial 50 @llx 50 @lly 302 +@urx 226 @ury 1530 @rwi @setspecial +%%BeginDocument: tgraph27.eps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.050 0.050 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +LTb +840 655 M +63 0 V +3905 0 R +-63 0 V +756 655 M +(5) Rshow +840 1035 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(10) Rshow +840 1415 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(15) Rshow +840 1795 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(20) Rshow +840 2176 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(25) Rshow +840 2556 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(30) Rshow +840 2936 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(35) Rshow +840 3316 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(40) Rshow +1247 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(5) Cshow +1756 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(10) Cshow +2264 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(15) Cshow +2773 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(20) Cshow +3282 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(25) Cshow +3791 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(30) Cshow +4299 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(35) Cshow +4808 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(40) Cshow +840 351 M +3968 0 V +0 2965 V +-3968 0 V +840 351 L +140 1833 M +currentpoint gsave translate 90 rotate 0 0 M +(Relative Speedup) Cshow +grestore +2824 71 M +(Number of processors) Cshow +2824 3456 M +(Chess : Negascout ABDADA) Cshow +LT0 +4325 3113 M +(ideal) Rshow +4409 3113 M +252 0 V +1552 883 M +814 608 V +814 609 V +814 608 V +4493 3113 D +1552 883 D +2366 1491 D +3180 2100 D +3994 2708 D +LT1 +4325 2973 M +(8) Rshow +4409 2973 M +252 0 V +1552 724 M +814 310 V +814 237 V +814 199 V +4493 2973 A +1552 724 A +2366 1034 A +3180 1271 A +3994 1470 A +LT2 +4325 2833 M +(7) Rshow +4409 2833 M +252 0 V +1552 683 M +814 228 V +814 163 V +814 164 V +4493 2833 B +1552 683 B +2366 911 B +3180 1074 B +3994 1238 B +LT3 +4325 2693 M +(6) Rshow +4409 2693 M +252 0 V +1552 619 M +814 187 V +814 141 V +814 86 V +4493 2693 C +1552 619 C +2366 806 C +3180 947 C +3994 1033 C +LT4 +4325 2553 M +(5) Rshow +4409 2553 M +252 0 V +1552 654 M +814 57 V +814 92 V +814 0 V +4493 2553 T +1552 654 T +2366 711 T +3180 803 T +3994 803 T +LT5 +4325 2413 M +(4) Rshow +4409 2413 M +252 0 V +1552 686 M +814 -26 V +814 89 V +814 19 V +4493 2413 S +1552 686 S +2366 660 S +3180 749 S +3994 768 S +LT6 +4325 2273 M +(3) Rshow +4409 2273 M +252 0 V +1552 655 M +814 0 V +814 0 V +814 0 V +4493 2273 D +1552 655 D +2366 655 D +3180 655 D +3994 655 D +stroke +grestore +end +showpage +%%EndDocument + @endspecial 37 1948 a @beginspecial 50 @llx 50 @lly +302 @urx 226 @ury 1530 @rwi @setspecial +%%BeginDocument: tgraph6.eps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.050 0.050 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +840 351 M +3968 0 V +LTb +840 351 M +63 0 V +3905 0 R +-63 0 V +756 351 M +(0) Rshow +840 775 M +63 0 V +3905 0 R +-63 0 V +756 775 M +(20) Rshow +840 1198 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(40) Rshow +840 1622 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(60) Rshow +840 2045 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(80) Rshow +840 2469 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(100) Rshow +840 2892 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(120) Rshow +840 3316 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(140) Rshow +1247 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(5) Cshow +1756 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(10) Cshow +2264 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(15) Cshow +2773 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(20) Cshow +3282 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(25) Cshow +3791 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(30) Cshow +4299 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(35) Cshow +4808 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(40) Cshow +840 351 M +3968 0 V +0 2965 V +-3968 0 V +840 351 L +140 1833 M +currentpoint gsave translate 90 rotate 0 0 M +(Overheads) Cshow +grestore +2824 71 M +(Number of processors) Cshow +2824 3456 M +(Othello : ABDADA) Cshow +LT0 +4325 3113 M +( TO) Rshow +4409 3113 M +252 0 V +-667 80 R +3180 2249 L +2366 1391 L +1552 672 L +4493 3113 D +3994 3193 D +3180 2249 D +2366 1391 D +1552 672 D +LT1 +4325 2973 M +( SO) Rshow +4409 2973 M +252 0 V +3994 2271 M +3180 1619 L +2366 1016 L +1552 460 L +4493 2973 A +3994 2271 A +3180 1619 A +2366 1016 A +1552 460 A +LT2 +4325 2833 M +( CO) Rshow +4409 2833 M +252 0 V +3994 1273 M +3180 981 L +2366 726 L +1552 563 L +4493 2833 B +3994 1273 B +3180 981 B +2366 726 B +1552 563 B +LT3 +4325 2693 M +( SY) Rshow +4409 2693 M +252 0 V +3994 351 M +-814 0 V +-814 0 V +-814 0 V +4493 2693 C +3994 351 C +3180 351 C +2366 351 C +1552 351 C +stroke +grestore +end +showpage +%%EndDocument + @endspecial 1275 w @beginspecial 50 @llx 50 @lly 302 +@urx 226 @ury 1530 @rwi @setspecial +%%BeginDocument: tgraph24.eps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.050 0.050 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +840 351 M +3968 0 V +LTb +840 351 M +63 0 V +3905 0 R +-63 0 V +756 351 M +(0) Rshow +840 722 M +63 0 V +3905 0 R +-63 0 V +756 722 M +(10) Rshow +840 1092 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(20) Rshow +840 1463 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(30) Rshow +840 1834 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(40) Rshow +840 2204 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(50) Rshow +840 2575 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(60) Rshow +840 2945 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(70) Rshow +840 3316 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(80) Rshow +1247 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(5) Cshow +1756 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(10) Cshow +2264 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(15) Cshow +2773 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(20) Cshow +3282 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(25) Cshow +3791 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(30) Cshow +4299 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(35) Cshow +4808 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(40) Cshow +840 351 M +3968 0 V +0 2965 V +-3968 0 V +840 351 L +140 1833 M +currentpoint gsave translate 90 rotate 0 0 M +(Overheads) Cshow +grestore +2824 71 M +(Number of processors) Cshow +2824 3456 M +(Chess : ABDADA) Cshow +LT0 +4325 3113 M +(TO) Rshow +4409 3113 M +252 0 V +1552 1263 M +814 496 V +814 622 V +814 725 V +4493 3113 D +1552 1263 D +2366 1759 D +3180 2381 D +3994 3106 D +LT1 +4325 2973 M +(SO) Rshow +4409 2973 M +252 0 V +1552 971 M +814 439 V +814 558 V +814 688 V +4493 2973 A +1552 971 A +2366 1410 A +3180 1968 A +3994 2656 A +LT2 +4325 2833 M +(CO) Rshow +4409 2833 M +252 0 V +1552 643 M +814 57 V +814 64 V +814 37 V +4493 2833 B +1552 643 B +2366 700 B +3180 764 B +3994 801 B +LT3 +4325 2693 M +(SY) Rshow +4409 2693 M +252 0 V +1552 351 M +814 0 V +814 0 V +814 0 V +4493 2693 C +1552 351 C +2366 351 C +3180 351 C +3994 351 C +stroke +grestore +end +showpage +%%EndDocument + @endspecial 1276 w @beginspecial 50 @llx 50 @lly 302 +@urx 226 @ury 1530 @rwi @setspecial +%%BeginDocument: tgraph28.eps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.050 0.050 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +840 351 M +3968 0 V +LTb +840 351 M +63 0 V +3905 0 R +-63 0 V +756 351 M +(0) Rshow +840 845 M +63 0 V +3905 0 R +-63 0 V +756 845 M +(20) Rshow +840 1339 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(40) Rshow +840 1833 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(60) Rshow +840 2328 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(80) Rshow +840 2822 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(100) Rshow +840 3316 M +63 0 V +3905 0 R +-63 0 V +-3989 0 R +(120) Rshow +1247 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(5) Cshow +1756 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(10) Cshow +2264 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(15) Cshow +2773 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(20) Cshow +3282 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(25) Cshow +3791 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(30) Cshow +4299 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(35) Cshow +4808 351 M +0 63 V +0 2902 R +0 -63 V +0 -3042 R +(40) Cshow +840 351 M +3968 0 V +0 2965 V +-3968 0 V +840 351 L +140 1833 M +currentpoint gsave translate 90 rotate 0 0 M +(Overheads) Cshow +grestore +2824 71 M +(Number of processors) Cshow +2824 3456 M +(Chess : Negascout ABDADA) Cshow +LT0 +4325 3113 M +(TO) Rshow +4409 3113 M +252 0 V +1552 1231 M +814 607 V +814 568 V +814 503 V +4493 3113 D +1552 1231 D +2366 1838 D +3180 2406 D +3994 2909 D +LT1 +4325 2973 M +(SO) Rshow +4409 2973 M +252 0 V +1552 926 M +814 554 V +814 501 V +814 415 V +4493 2973 A +1552 926 A +2366 1480 A +3180 1981 A +3994 2396 A +LT2 +4325 2833 M +(CO) Rshow +4409 2833 M +252 0 V +1552 656 M +814 53 V +814 67 V +814 87 V +4493 2833 B +1552 656 B +2366 709 B +3180 776 B +3994 863 B +LT3 +4325 2693 M +(SY) Rshow +4409 2693 M +252 0 V +1552 351 M +814 0 V +814 0 V +814 0 V +4493 2693 C +1552 351 C +2366 351 C +3180 351 C +3994 351 C +stroke +grestore +end +showpage +%%EndDocument + @endspecial 1279 2193 a Fx(Figure)27 b(4:)34 b(The)26 +b(ABD)n(AD)n(A)e(sc)n(heme)h(results)-150 2456 y(write)34 +b(ratio)g(is)g(1.35)g(and)f(ABD)n(AD)n(A's)f(read-write)i(ratio)g(is)g +(1.7.)-150 2539 y(Th)n(us)e(the)f(o)n(v)n(erhead)h(of)g(the)g +(non-optimised,)1246 2508 y Fv(9)1313 2539 y Fx(v)n(ersion)g(giv)n(en)g +(in)-150 2622 y(part)23 b(2)g(in)g(term)g(of)g(n)n(um)n(b)r(er)f(of)h +(read)h(messages,)h(is)e(ab)r(out)g(25)h(\045)f(as)-150 +2705 y(compared)i(to)h(YBW)n(C.)-150 2966 y Fy(4)100 +b(DISCUSSION)-150 3188 y Fx(It)40 b(is)i(di\016cult)e(to)h(compare)g +(the)f(sho)n(wn)h(results)h(with)f(the)f(re-)-150 3271 +y(sults)27 b(from)f(di\013eren)n(t)g(pap)r(ers.)38 b(So)26 +b(w)n(e)h(ha)n(v)n(e)f(to)h(compare)f(the)h(t)n(w)n(o)-150 +3354 y(sc)n(hemes)e(on)h(absolute)g(sp)r(eedup.)-150 +4376 y @beginspecial 65 @llx 328 @lly 528 @urx 582 @ury +1984 @rwi @setspecial +%%BeginDocument: othello.eps + +/AutoFlatness false def +% -------------- POSTSCRIPT PROLOG FOR CORELDRAW 3.X ------ +% Copyright 1992 Corel Corporation. All rights reserved. +/wCorelDict 300 dict def wCorelDict begin/bd{bind def}bind def +/ld{load def}bd/xd{exch def}bd/_ null def +/$c 0 def/$m 0 def/$y 0 def/$k 0 def/$t 1 def +/$n _ def/$o 0 def/$fil 0 def/$bkg false def +/$C 0 def/$M 0 def/$Y 0 def/$K 0 def/$T 1 def +/$N _ def/$O 0 def/$PF false def/$ctm matrix currentmatrix def +/$ptm matrix def/$ttm matrix def/$stm matrix def +/$fst 128 def/$pad 0 def/$rox 0 def/$roy 0 def +currentscreen/@dsp xd/$dsp/@dsp def/$dsa xd +/$dsf xd/$sdf false def/$SDF false def/$Scra 0.0 def +/$sv 0 def/@cp/closepath ld/@gs/gsave ld/@gr/grestore ld +/@np/newpath ld/@sv{/$sv save def}bd/@rs{$sv restore}bd +/@ss{exch $Scra add exch load setscreen}bd +AutoFlatness{/$cpx ([Error: PathTooComplex; OffendingCommand: AnyPaintingOperator]\n) def +/@err1{$cpx print flush newpath}bd/@ifl{dup currentflat exch sub 10 gt +{@err1 exit}{currentflat 2 add setflat}ifelse}bd +/@fill/fill ld/fill{currentflat{{@fill}stopped{@ifl}{exit}ifelse +}bind loop setflat}bd/@eofill/eofill ld/eofill{currentflat{{@eofill} +stopped{@ifl}{exit}ifelse}bind loop setflat}bd +/@clip/clip ld/clip{currentflat{{@clip}stopped{initclip @ifl}{exit +}ifelse}bind loop setflat}bd/@eoclip/eoclip ld +/eoclip{currentflat{{@eoclip}stopped{initclip @ifl}{exit}ifelse +}bind loop setflat}bd/@stroke/stroke ld/stroke{currentflat{{@stroke} +stopped{@ifl}{exit}ifelse}bind loop setflat}bd}if +/InRange{3 -1 roll 2 copy le{pop}{exch pop}ifelse +2 copy ge{pop}{exch pop}ifelse}bd/wDstChck{2 1 roll dup 3 -1 roll +eq{1 add}if}bd/@dot{dup mul exch dup mul add 1 exch sub 2 div}bd +/@lin{exch pop abs 1 exch sub}bd/@MN{2 copy le{pop}{exch pop}ifelse}bd +/setcmykcolor where{pop}{/setcmykcolor{4 1 roll +3{3 index add 1 @MN 1 exch sub 3 1 roll}repeat +setrgbcolor pop}bd}ifelse/setoverprint{/$op xd}bd +/currentoverprint{$op}bd/setsepcolor{1 exch sub setgray}bd +/checksepcolor{1 exch sub dup setgray 1 eq exch 1 eq and not}bd +/setprocesscolor{ColorSeparationMode 0 eq{setcmykcolor}{ +0 4 $ink sub index exch pop 5 1 roll 4{pop}repeat +setsepcolor}ifelse}bd/findcmykcustomcolor{5 array astore}bd +/setcustomcolor where{pop}{/setcustomcolor{ColorSeparationMode 0 eq{ +exch aload pop pop 4{4 index mul 4 1 roll}repeat +5 -1 roll pop setcmykcolor}{exch aload pop +CurrentInkName eq{4 index}{0}ifelse 6 1 roll +5{pop}repeat setsepcolor}ifelse}bd}ifelse/colorimage where{pop}{ +/colorimage{pop pop pop pop pop{currentfile $dat readhexstring pop pop} +repeat pop}bd}ifelse/@tc{dup 1 ge{pop}{4{dup +6 -1 roll mul exch}repeat pop}ifelse}bd/@scc{1 eq setoverprint +dup _ eq{pop setprocesscolor pop}{findcmykcustomcolor +exch setcustomcolor}ifelse ColorSeparationMode 0 eq{true}{ +currentgray 1 eq currentoverprint and not}ifelse}bd +/@sft{/$tx $tllx $pxf add dup $tllx gt{$pwid sub}if def +/$ty $tury $pyf sub dup $tury lt{$phei add}if def}bd +/@stb{pathbbox/$ury xd/$urx xd/$lly xd/$llx xd}bd +/@ep{{cvx exec}forall}bd/@tp{@sv/$in true def +2 copy dup $lly le{/$in false def}if $phei sub $ury ge{/$in false def}if +dup $urx ge{/$in false def}if $pwid add $llx le{/$in false def}if +$in{@np 2 copy moveto $pwid 0 rlineto 0 $phei neg rlineto +$pwid neg 0 rlineto 0 $phei rlineto clip @np +$pn cvlit load aload pop 7 -1 roll 5 index sub +7 -1 roll 3 index sub translate/$ctm matrix currentmatrix def +@ep pop pop pop pop}{pop pop}ifelse @rs}bd/@th{@sft +0 1 $tly 1 sub{dup $psx mul $tx add{dup $llx gt{$pwid sub}{exit}ifelse +}loop exch $phei mul $ty exch sub 0 1 $tlx 1 sub{$pwid mul +3 copy 3 -1 roll add exch @tp pop}for pop pop}for}bd +/@tv{@sft 0 1 $tlx 1 sub{dup $pwid mul $tx add +exch $psy mul $ty exch sub{dup $ury lt{$phei add}{exit}ifelse}loop +0 1 $tly 1 sub{$phei mul 3 copy sub @tp pop}for +pop pop}for}bd/@pf{@gs $ctm setmatrix $pm concat +@stb @gs $vectpat{1 0 0 0 0 _ $o @scc{eofill}if}{ +$t $c $m $y $k $n $o @scc{eofill/$bkg true def}if}ifelse +@gr eoclip Bburx Bbury $pm itransform/$tury xd/$turx xd +Bbllx Bblly $pm itransform/$tlly xd/$tllx xd +/$wid $turx $tllx sub def/$hei $tury $tlly sub def +$wid 0 gt $hei 0 gt and{$pn cvlit load aload pop +/$pd xd 3 -1 roll sub/$phei xd exch sub/$pwid xd +/$tlx $wid $pwid div ceiling 1 add def/$tly $hei $phei div ceiling 1 add def +$psx 0 eq{@tv}{@th}ifelse}if @gr @np/$bkg false def}bd +/@dlt{ColorSeparationMode 0 eq{/$dc $toc $tot mul $frc $frt mul dup/$c xd sub $fst 1 sub div def +/$dm $tom $tot mul $frm $frt mul dup/$m xd sub $fst 1 sub div def +/$dy $toy $tot mul $fry $frt mul dup/$y xd sub $fst 1 sub div def +/$dk $tok $tot mul $frk $frt mul dup/$k xd sub $fst 1 sub div def +true}{$frt $frc $frm $fry $frk $frn $o @scc +dup{/$frk 1 currentgray sub def}{/$frk 0 def}ifelse +$tot $toc $tom $toy $tok $ton $o @scc dup{/$tok 1 currentgray sub def}{ +/$tok 0 def}ifelse or dup{/$c 0 def/$m 0 def/$y 0 def/$k $frk def +/$dc 0 def/$dm 0 def/$dy 0 def/$dk $tok $frk sub $fst 1 sub div def}if +}ifelse}bd/@ftl{1 index 4 index sub dup $pad mul dup/$pdw xd +2 mul sub $fst div/$wid xd 2 index sub/$hei xd +pop translate $c $m $y $k 4 copy ColorSeparationMode 0 ne +{1 exch sub setgray pop pop pop}{setcmykcolor}ifelse +0 0 moveto 0 $hei lineto $pdw $hei lineto $pdw 0 lineto 0 0 lineto fill +$pdw 0 translate $fst{4 copy ColorSeparationMode 0 ne +{1 exch sub setgray pop pop pop}{setcmykcolor}ifelse +0 0 moveto 0 $hei lineto $wid $hei lineto $wid 0 lineto 0 0 lineto fill +$wid 0 translate $dk add 4 1 roll $dy add 4 1 roll +$dm add 4 1 roll $dc add 4 1 roll}repeat $dk sub 4 1 roll +$dy sub 4 1 roll $dm sub 4 1 roll $dc sub 4 1 roll +ColorSeparationMode 0 ne{1 exch sub setgray pop pop pop} +{setcmykcolor}ifelse 0 0 moveto 0 $hei lineto $pdw $hei lineto $pdw 0 lineto 0 0 lineto fill +}bd/@ftr{1 index 4 index sub dup $rox mul/$row xd +2 div 1 index 4 index sub dup $roy mul/$roh xd +2 div 2 copy dup mul exch dup mul add sqrt +$row dup mul $roh dup mul add sqrt add dup/$hei xd $fst div/$wid xd +4 index add $roh add exch 5 index add $row add +exch translate pop pop pop pop currentflat dup 5 mul setflat +$c $m $y $k 4 copy ColorSeparationMode 0 ne +{1 exch sub setgray pop pop pop}{setcmykcolor}ifelse +$wid 0 moveto 0 0 $hei 0 360 arc fill 1.0 $pad 2 mul sub dup scale +$fst{4 copy ColorSeparationMode 0 ne{1 exch sub setgray pop pop pop} +{setcmykcolor}ifelse $wid 0 moveto 0 0 $hei 0 360 arc fill +/$hei $hei $wid sub def $dk add 4 1 roll $dy add 4 1 roll +$dm add 4 1 roll $dc add 4 1 roll}repeat pop pop pop pop +setflat}bd/@ff{@gs @dlt{$ctm setmatrix eoclip +newpath Bbllx Bblly moveto Bbllx Bbury lineto +Bburx Bbury lineto Bburx Bblly lineto $fan rotate +pathbbox newpath $fty 1 eq{@ftr}{@ftl}ifelse}if +@gr @np}bd/@Pf{@sv ColorSeparationMode 0 eq $ink 3 eq or{0 J 0 j [] 0 d +$t $c $m $y $k $n $o @scc pop $ctm setmatrix +72 1000 div dup matrix scale dup concat dup Bburx exch Bbury exch itransform +ceiling cvi/Bbury xd ceiling cvi/Bburx xd Bbllx exch Bblly exch itransform +floor cvi/Bblly xd floor cvi/Bbllx xd $Prm aload pop +$Psn load exec}{1 setgray eofill}ifelse @rs +@np}bd/g{1 exch sub/$k xd/$c 0 def/$m 0 def/$y 0 def/$t 1 def/$n _ def/$fil 0 def +}bd/G{1 exch sub/$K xd/$C 0 def/$M 0 def/$Y 0 def/$T 1 def/$N _ def}bd +/k{/$k xd/$y xd/$m xd/$c xd/$t 1 def/$n _ def/$fil 0 def}bd +/K{/$K xd/$Y xd/$M xd/$C xd/$T 1 def/$N _ def}bd +/x{/$t xd/$n xd/$k xd/$y xd/$m xd/$c xd/$fil 0 def}bd +/X{/$T xd/$N xd/$K xd/$Y xd/$M xd/$C xd}bd +/d/setdash ld/i{dup 0 ne{setflat}{pop}ifelse}bd +/j/setlinejoin ld/J/setlinecap ld/M/setmiterlimit ld +/w/setlinewidth ld/O{/$o xd}bd/R{/$O xd}bd +/c/curveto ld/C/c ld/v{4 -2 roll 2 copy 6 -2 roll curveto}bd +/V/v ld/y{2 copy curveto}bd/Y/y ld/l/lineto ld +/L/l ld/rl/rlineto ld/m/moveto ld/n/newpath ld +/N/newpath ld/F{matrix currentmatrix $sdf{$scf $sca $scp @ss}if +$fil 1 eq{@pf}{$fil 2 eq{@ff}{$fil 3 eq{@Pf}{$t $c $m $y $k $n $o @scc +{eofill}{@np}ifelse}ifelse}ifelse}ifelse $sdf{$dsf $dsa $dsp @ss}if +setmatrix}bd/f{@cp F}bd/S{matrix currentmatrix +$ctm setmatrix $SDF{$SCF $SCA $SCP @ss}if $T $C $M $Y $K $N $O @scc{ +matrix currentmatrix $ptm concat stroke setmatrix}{@np}ifelse +$SDF{$dsf $dsa $dsp @ss}if setmatrix}bd/s{@cp +S}bd/B{@gs F @gr S}bd/b{@cp B}bd/W{eoclip}bd +/p{/$pm xd 7{pop}repeat/$pyf xd/$pxf xd/$pn xd +/$fil 1 def}bd/P{11{pop}repeat}bd/u{}bd/U{}bd +/A{pop}bd/q/@gs ld/Q/@gr ld/E{5 array astore +exch cvlit exch def}bd/`{}bd/~{}bd/@{}bd/&{}bd +/CorelDrawReencodeVect [ 16#80/grave/circumflex/tilde/dotlessi/florin/quotedblleft/quotedblright/guilsinglleft +16#88/guilsinglright/fi/fl/dagger/daggerdbl/endash/periodcentered/breve +16#90/quotedblbase/ellipsis/perthousand/trademark/Pt/fractionbar +16#98/divide 16#a1/exclamdown/cent/sterling/currency/yen/bar/section +16#a8/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/emdash/registered/overbar +16#b0/ring/plusminus/twosuperior/threesuperior/acute/mu/paragraph/bullet +16#b8/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown +16#c0/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla +16#c8/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis +16#d0/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/OE +16#d8/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls +16#e0/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla +16#e8/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis +16#f0/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/oe +16#f8/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis +] def/@cc{currentfile $dat readhexstring pop}bd +/@sm{/$ctm $ctm currentmatrix def}bd/@E{/Bbury xd/Bburx xd +/Bblly xd/Bbllx xd}bd/@c{@cp}bd/@p{/$fil 1 def +1 eq/$vectpat xd/$pm xd/$psy xd/$psx xd/$pyf xd/$pxf xd +/$pn xd}bd/@P{/$fil 3 def/$Psn xd array astore +/$Prm xd}bd/@k{/$fil 2 def/$roy xd/$rox xd/$pad xd +/$fty xd/$fan xd $fty 1 eq{/$fan 0 def}if/$tok xd/$toy xd/$tom xd/$toc xd +/$frk xd/$fry xd/$frm xd/$frc xd/$frn _ def/$frt 1 def/$ton _ def/$tot 1 def +}bd/@x{/$fil 2 def/$roy xd/$rox xd/$pad xd +/$fty xd/$fan xd/$tot xd/$ton xd/$tok xd/$toy xd/$tom xd/$toc xd +/$frt xd/$frn xd/$frk xd/$fry xd/$frm xd/$frc xd}bd +/@ii{concat 3 index 3 index m 3 index 1 index l +2 copy l 1 index 3 index l 3 index 3 index l +clip pop pop pop pop}bd/@i{@sm @gs @ii 6 index 1 ne{/$frg true def +pop pop}{1 eq{$T $C $M $Y $K $N $O @scc/$frg xd}{/$frg false def +}ifelse 1 eq{@gs $ctm setmatrix $t $c $m $y $k $n $o @scc{eofill}if +@gr}if}ifelse/$frg $frg $bkg or def @np/$ury xd/$urx xd/$lly xd/$llx xd +/$bts xd/$hei xd/$wid xd/$dat $wid $bts mul 8 div ceiling cvi string def +$frg{$SDF{$SCF $SCA $SCP @ss}if $llx $lly translate +$urx $llx sub $ury $lly sub scale $wid $hei abs +$bts 1 eq{false}{$bts}ifelse [ $wid 0 0 $hei neg 0 +$hei 0 gt{$hei}{0}ifelse]/@cc load $bts 1 eq{imagemask}{image}ifelse +$SDF{$dsf $dsa $dsp @ss}if}{$hei abs{@cc pop}repeat}ifelse +@gr $ctm setmatrix}def/@M{@sv}bd/@N{/@cc{}def +1 eq{12 -1 roll neg 12 1 roll @I}{13 -1 roll neg 13 1 roll +@i}ifelse @rs}bd/@I{@sm @gs @ii @np/$ury xd/$urx xd/$lly xd/$llx xd +/$ncl xd/$bts xd/$hei xd/$wid xd/$dat $wid $bts mul $ncl mul 8 div ceiling cvi string def +$llx $lly translate $urx $llx sub $ury $lly sub scale +$wid $hei abs $bts [ $wid 0 0 $hei neg 0 $hei 0 gt{$hei}{0}ifelse] +/@cc load false $ncl colorimage @gr $ctm setmatrix}bd +/z{exch findfont exch scalefont setfont}bd +/ZB{9 dict dup begin 4 1 roll/FontType 3 def +/FontMatrix xd/FontBBox xd/Encoding 256 array def +0 1 255{Encoding exch/.notdef put}for/CharStrings 256 dict def +CharStrings/.notdef{}put/Metrics 256 dict def +Metrics/.notdef 3 -1 roll put/BuildChar{exch +dup/$char exch/Encoding get 3 index get def +dup/Metrics get $char get aload pop setcachedevice +begin Encoding exch get CharStrings exch get +end exec}def end definefont pop}bd/ZBAddChar{findfont begin +dup 4 1 roll dup 6 1 roll Encoding 3 1 roll put +CharStrings 3 1 roll put Metrics 3 1 roll put +end}bd/Z{findfont dup maxlength 2 add dict exch +dup{1 index/FID ne{3 index 3 1 roll put}{pop pop}ifelse}forall +pop dup dup/Encoding get 256 array copy dup/$fe xd +/Encoding exch put dup/Fontname 3 index put +3 -1 roll dup length 0 ne{0 exch{dup type 0 type eq{exch pop}{ +$fe exch 2 index exch put 1 add}ifelse}forall +pop}if dup 256 dict dup/$met xd/Metrics exch put +dup/FontMatrix get 0 get 1000 mul 1 exch div +3 index length 256 eq{0 1 255{dup $fe exch get +dup/.notdef eq{pop pop}{5 index 3 -1 roll get +2 index mul $met 3 1 roll put}ifelse}for}if +pop definefont pop pop}bd/@ftx{{(0) dup 3 -1 roll 0 exch put +@gs true charpath $ctm setmatrix @@txt @gr @np}forall}bd +/@ft{matrix currentmatrix exch $sdf{$scf $sca $scp @ss}if +$fil 1 eq{/@@txt/@pf ld @ftx}{$fil 2 eq{/@@txt/@ff ld @ftx}{$fil 3 eq +{/@@txt/@Pf ld @ftx}{$t $c $m $y $k $n $o @scc{show}{pop}ifelse}ifelse +}ifelse}ifelse $sdf{$dsf $dsa $dsp @ss}if setmatrix}bd +/@st{matrix currentmatrix exch $SDF{$SCF $SCA $SCP @ss}if +$T $C $M $Y $K $N $O @scc{{(0) dup 3 -1 roll 0 exch put +@gs true charpath $ctm setmatrix $ptm concat +stroke @gr}forall}{pop}ifelse $SDF{$dsf $dsa $dsp @ss}if +setmatrix}bd/@te{@ft}bd/@tr{@st}bd/@ta{dup +@gs @ft @gr @st}bd/@t@a{dup @gs @st @gr @ft}bd +/@tm{/$textsave save def @sm concat}bd/e{/t{@te}def}bd +/r{/t{@tr}def}bd/o{/t{pop}def}bd/a{/t{@ta}def}bd +/@a{/t{@t@a}def}bd/t{@te}def/T{@np $ctm setmatrix +/$ttm matrix def $textsave restore}bd/@t{/$stm $stm currentmatrix def +3 1 roll moveto $ttm concat t $stm setmatrix}def +/@n{/$ttm exch matrix rotate def}bd/@s{}bd +/@l{}bd/@B{@gs S @gr F}bd/@b{@cp @B}bd/@w{matrix rotate/$ptm xd +matrix scale $ptm dup concatmatrix/$ptm xd +1 eq{$ptm exch dup concatmatrix/$ptm xd}if +1 w}bd/@g{1 eq dup/$sdf xd{/$scp xd/$sca xd +/$scf xd}if}bd/@G{1 eq dup/$SDF xd{/$SCP xd +/$SCA xd/$SCF xd}if}bd/@D{3 copy @ss/$dsp xd +/$dsa xd/$dsf xd}bd/@j{@sv @np}bind def/@J{@rs}bind def +/@sep{/ColorSeparationMode where{pop}{/ColorSeparationMode 0 def +/CurrentInkName (Composite) def}ifelse ColorSeparationMode 0 eq{ +/CurrentInkName (Composite) def}if/CurrentInkName where{pop}{ +/CurrentInkName (Composite) def}ifelse CurrentInkName (Composite) eq +{/$ink -1 def}{CurrentInkName (Cyan) eq{/$ink 0 def}{ +CurrentInkName (Magenta) eq{/$ink 1 def}{CurrentInkName (Yellow) eq +{/$ink 2 def}{CurrentInkName (Black) eq{/$ink 3 def}{/$ink 4 def +}ifelse}ifelse}ifelse}ifelse}ifelse}bd @sep +/@whi{@gs -72000 dup moveto -72000 72000 lineto +72000 dup lineto 72000 -72000 lineto closepath 1 setgray fill +@gr}bd/@neg{ [{1 exch sub}/exec cvx currenttransfer/exec cvx] cvx settransfer +@whi}bd/@reg{[] 0 d 0 setgray .3 setlinewidth +2 copy 5.4 0 360 arc closepath 2 copy moveto 9 0 rlineto +2 copy moveto -9 0 rlineto 2 copy moveto 0 9 rlineto +moveto 0 -9 rlineto stroke}bd/leftbracket{(\050)}def +/rightbracket{(\051)}def + +11.4737 setmiterlimit +1.00 setflat +/$fst 128 def + +@sv +/$ctm matrix currentmatrix def +@sv +95.47 404.78 448.70 405.07 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +95.47 404.93 m +448.70 404.93 L +S +95.47 426.46 448.70 426.74 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +95.47 426.60 m +448.70 426.60 L +S +95.47 448.13 448.70 448.42 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +95.47 448.27 m +448.70 448.27 L +S +95.47 469.80 448.70 470.09 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +95.47 469.94 m +448.70 469.94 L +S +95.47 491.54 448.70 491.83 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +95.47 491.69 m +448.70 491.69 L +S +95.47 513.22 448.70 513.50 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +95.47 513.36 m +448.70 513.36 L +S +95.47 534.89 448.70 535.18 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +95.47 535.03 m +448.70 535.03 L +S +95.47 556.63 448.70 556.92 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +95.47 556.78 m +448.70 556.78 L +S +95.47 578.30 448.70 578.59 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +95.47 578.45 m +448.70 578.45 L +S +96.62 383.26 101.23 404.64 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +96.62 404.64 m +101.23 404.64 L +101.23 383.26 L +96.62 383.26 L +96.62 404.64 L +@c +B +135.86 383.26 140.47 402.05 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +135.86 402.05 m +140.47 402.05 L +140.47 383.26 L +135.86 383.26 L +135.86 402.05 L +@c +B +175.10 383.26 179.71 407.88 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +175.10 407.88 m +179.71 407.88 L +179.71 383.26 L +175.10 383.26 L +175.10 407.88 L +@c +B +214.34 383.26 218.95 416.23 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +214.34 416.23 m +218.95 416.23 L +218.95 383.26 L +214.34 383.26 L +214.34 416.23 L +@c +B +253.66 383.26 258.26 433.51 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +253.66 433.51 m +258.26 433.51 L +258.26 383.26 L +253.66 383.26 L +253.66 433.51 L +@c +B +292.75 383.26 297.36 439.49 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +292.75 439.49 m +297.36 439.49 L +297.36 383.26 L +292.75 383.26 L +292.75 439.49 L +@c +B +332.06 383.26 336.67 449.14 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +332.06 449.14 m +336.67 449.14 L +336.67 383.26 L +332.06 383.26 L +332.06 449.14 L +@c +B +371.30 383.26 375.91 443.52 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +371.30 443.52 m +375.91 443.52 L +375.91 383.26 L +371.30 383.26 L +371.30 443.52 L +@c +B +410.54 383.26 415.15 443.59 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +410.54 443.59 m +415.15 443.59 L +415.15 383.26 L +410.54 383.26 L +410.54 443.59 L +@c +B +101.23 383.26 105.84 415.08 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +101.23 415.08 m +105.84 415.08 L +105.84 383.26 L +101.23 383.26 L +101.23 415.08 L +@c +B +140.47 383.26 145.01 414.00 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +140.47 414.00 m +145.01 414.00 L +145.01 383.26 L +140.47 383.26 L +140.47 414.00 L +@c +B +179.71 383.26 184.32 423.65 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +179.71 423.65 m +184.32 423.65 L +184.32 383.26 L +179.71 383.26 L +179.71 423.65 L +@c +B +218.95 383.26 223.56 432.72 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +218.95 432.72 m +223.56 432.72 L +223.56 383.26 L +218.95 383.26 L +218.95 432.72 L +@c +B +258.26 383.26 262.87 444.82 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +258.26 444.82 m +262.87 444.82 L +262.87 383.26 L +258.26 383.26 L +258.26 444.82 L +@c +B +297.36 383.26 301.97 450.43 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +297.36 450.43 m +301.97 450.43 L +301.97 383.26 L +297.36 383.26 L +297.36 450.43 L +@c +B +336.67 383.26 341.21 457.49 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +336.67 457.49 m +341.21 457.49 L +341.21 383.26 L +336.67 383.26 L +336.67 457.49 L +@c +B +375.91 383.26 380.52 457.34 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +375.91 457.34 m +380.52 457.34 L +380.52 383.26 L +375.91 383.26 L +375.91 457.34 L +@c +B +415.15 383.26 419.76 458.57 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +415.15 458.57 m +419.76 458.57 L +419.76 383.26 L +415.15 383.26 L +415.15 458.57 L +@c +B +105.84 383.26 110.45 398.74 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +105.84 398.74 m +110.45 398.74 L +110.45 383.26 L +105.84 383.26 L +105.84 398.74 L +@c +B +145.01 383.26 149.62 397.73 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +145.01 397.73 m +149.62 397.73 L +149.62 383.26 L +145.01 383.26 L +145.01 397.73 L +@c +B +184.32 383.26 188.93 403.42 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +184.32 403.42 m +188.93 403.42 L +188.93 383.26 L +184.32 383.26 L +184.32 403.42 L +@c +B +223.56 383.26 228.17 414.72 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +223.56 414.72 m +228.17 414.72 L +228.17 383.26 L +223.56 383.26 L +223.56 414.72 L +@c +B +262.87 383.26 267.41 440.57 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +262.87 440.57 m +267.41 440.57 L +267.41 383.26 L +262.87 383.26 L +262.87 440.57 L +@c +B +301.97 383.26 306.58 459.65 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +301.97 459.65 m +306.58 459.65 L +306.58 383.26 L +301.97 383.26 L +301.97 459.65 L +@c +B +341.21 383.26 345.82 486.36 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +341.21 486.36 m +345.82 486.36 L +345.82 383.26 L +341.21 383.26 L +341.21 486.36 L +@c +B +380.52 383.26 385.13 480.89 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +380.52 480.89 m +385.13 480.89 L +385.13 383.26 L +380.52 383.26 L +380.52 480.89 L +@c +B +419.76 383.26 424.37 487.01 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +419.76 487.01 m +424.37 487.01 L +424.37 383.26 L +419.76 383.26 L +419.76 487.01 L +@c +B +110.45 383.26 114.98 415.22 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +110.45 415.22 m +114.98 415.22 L +114.98 383.26 L +110.45 383.26 L +110.45 415.22 L +@c +B +149.62 383.26 154.22 417.96 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +149.62 417.96 m +154.22 417.96 L +154.22 383.26 L +149.62 383.26 L +149.62 417.96 L +@c +B +188.93 383.26 193.54 428.76 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +188.93 428.76 m +193.54 428.76 L +193.54 383.26 L +188.93 383.26 L +188.93 428.76 L +@c +B +228.17 383.26 232.78 445.90 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +228.17 445.90 m +232.78 445.90 L +232.78 383.26 L +228.17 383.26 L +228.17 445.90 L +@c +B +267.41 383.26 271.94 462.60 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +267.41 462.60 m +271.94 462.60 L +271.94 383.26 L +267.41 383.26 L +267.41 462.60 L +@c +B +306.58 383.26 311.18 476.93 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +306.58 476.93 m +311.18 476.93 L +311.18 383.26 L +306.58 383.26 L +306.58 476.93 L +@c +B +345.82 383.26 350.42 490.46 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +345.82 490.46 m +350.42 490.46 L +350.42 383.26 L +345.82 383.26 L +345.82 490.46 L +@c +B +385.13 383.26 389.66 489.89 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +385.13 489.89 m +389.66 489.89 L +389.66 383.26 L +385.13 383.26 L +385.13 489.89 L +@c +B +424.37 383.26 428.98 499.54 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +424.37 499.54 m +428.98 499.54 L +428.98 383.26 L +424.37 383.26 L +424.37 499.54 L +@c +B +114.98 383.26 119.59 395.28 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +114.98 395.28 m +119.59 395.28 L +119.59 383.26 L +114.98 383.26 L +114.98 395.28 L +@c +B +154.22 383.26 158.83 394.13 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +154.22 394.13 m +158.83 394.13 L +158.83 383.26 L +154.22 383.26 L +154.22 394.13 L +@c +B +193.54 383.26 198.07 399.10 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +193.54 399.10 m +198.07 399.10 L +198.07 383.26 L +193.54 383.26 L +193.54 399.10 L +@c +B +232.78 383.26 237.38 409.18 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +232.78 409.18 m +237.38 409.18 L +237.38 383.26 L +232.78 383.26 L +232.78 409.18 L +@c +B +271.94 383.26 276.55 435.02 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +271.94 435.02 m +276.55 435.02 L +276.55 383.26 L +271.94 383.26 L +271.94 435.02 L +@c +B +311.18 383.26 315.79 462.46 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +311.18 462.46 m +315.79 462.46 L +315.79 383.26 L +311.18 383.26 L +311.18 462.46 L +@c +B +350.42 383.26 355.03 508.03 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +350.42 508.03 m +355.03 508.03 L +355.03 383.26 L +350.42 383.26 L +350.42 508.03 L +@c +B +389.66 383.26 394.27 515.23 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +389.66 515.23 m +394.27 515.23 L +394.27 383.26 L +389.66 383.26 L +389.66 515.23 L +@c +B +428.98 383.26 433.58 525.53 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +428.98 525.53 m +433.58 525.53 L +433.58 383.26 L +428.98 383.26 L +428.98 525.53 L +@c +B +119.59 383.26 124.13 415.37 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +119.59 415.37 m +124.13 415.37 L +124.13 383.26 L +119.59 383.26 L +119.59 415.37 L +@c +B +158.83 383.26 163.44 418.54 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +158.83 418.54 m +163.44 418.54 L +163.44 383.26 L +158.83 383.26 L +158.83 418.54 L +@c +B +198.07 383.26 202.68 429.12 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +198.07 429.12 m +202.68 429.12 L +202.68 383.26 L +198.07 383.26 L +198.07 429.12 L +@c +B +237.38 383.26 241.99 445.25 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +237.38 445.25 m +241.99 445.25 L +241.99 383.26 L +237.38 383.26 L +237.38 445.25 L +@c +B +276.55 383.26 281.16 467.71 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +276.55 467.71 m +281.16 467.71 L +281.16 383.26 L +276.55 383.26 L +276.55 467.71 L +@c +B +315.79 383.26 320.33 484.78 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +315.79 484.78 m +320.33 484.78 L +320.33 383.26 L +315.79 383.26 L +315.79 484.78 L +@c +B +355.03 383.26 359.64 509.04 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +355.03 509.04 m +359.64 509.04 L +359.64 383.26 L +355.03 383.26 L +355.03 509.04 L +@c +B +394.27 383.26 398.88 509.90 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +394.27 509.90 m +398.88 509.90 L +398.88 383.26 L +394.27 383.26 L +394.27 509.90 L +@c +B +433.58 383.26 438.19 520.49 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +433.58 520.49 m +438.19 520.49 L +438.19 383.26 L +433.58 383.26 L +433.58 520.49 L +@c +B +124.13 383.26 128.74 393.48 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +124.13 393.48 m +128.74 393.48 L +128.74 383.26 L +124.13 383.26 L +124.13 393.48 L +@c +B +163.44 383.26 168.05 392.69 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +163.44 392.69 m +168.05 392.69 L +168.05 383.26 L +163.44 383.26 L +163.44 392.69 L +@c +B +202.68 383.26 207.29 396.65 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +202.68 396.65 m +207.29 396.65 L +207.29 383.26 L +202.68 383.26 L +202.68 396.65 L +@c +B +241.99 383.26 246.53 405.72 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +241.99 405.72 m +246.53 405.72 L +246.53 383.26 L +241.99 383.26 L +241.99 405.72 L +@c +B +281.16 383.26 285.77 430.13 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +281.16 430.13 m +285.77 430.13 L +285.77 383.26 L +281.16 383.26 L +281.16 430.13 L +@c +B +320.33 383.26 324.94 460.01 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +320.33 460.01 m +324.94 460.01 L +324.94 383.26 L +320.33 383.26 L +320.33 460.01 L +@c +B +359.64 383.26 364.25 518.33 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +359.64 518.33 m +364.25 518.33 L +364.25 383.26 L +359.64 383.26 L +359.64 518.33 L +@c +B +398.88 383.26 403.49 539.35 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +398.88 539.35 m +403.49 539.35 L +403.49 383.26 L +398.88 383.26 L +398.88 539.35 L +@c +B +438.19 383.26 442.73 562.97 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +438.19 562.97 m +442.73 562.97 L +442.73 383.26 L +438.19 383.26 L +438.19 562.97 L +@c +B +128.74 383.26 133.34 421.20 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +128.74 421.20 m +133.34 421.20 L +133.34 383.26 L +128.74 383.26 L +128.74 421.20 L +@c +B +168.05 383.26 172.66 429.48 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +168.05 429.48 m +172.66 429.48 L +172.66 383.26 L +168.05 383.26 L +168.05 429.48 L +@c +B +207.29 383.26 211.90 437.76 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +207.29 437.76 m +211.90 437.76 L +211.90 383.26 L +207.29 383.26 L +207.29 437.76 L +@c +B +246.53 383.26 251.14 451.01 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +246.53 451.01 m +251.14 451.01 L +251.14 383.26 L +246.53 383.26 L +246.53 451.01 L +@c +B +285.77 383.26 290.38 470.95 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +285.77 470.95 m +290.38 470.95 L +290.38 383.26 L +285.77 383.26 L +285.77 470.95 L +@c +B +324.94 383.26 329.54 487.44 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +324.94 487.44 m +329.54 487.44 L +329.54 383.26 L +324.94 383.26 L +324.94 487.44 L +@c +B +364.25 383.26 368.78 511.20 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +364.25 511.20 m +368.78 511.20 L +368.78 383.26 L +364.25 383.26 L +364.25 511.20 L +@c +B +403.49 383.26 408.10 511.34 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +403.49 511.34 m +408.10 511.34 L +408.10 383.26 L +403.49 383.26 L +403.49 511.34 L +@c +B +442.73 383.26 447.34 531.43 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +442.73 531.43 m +447.34 531.43 L +447.34 383.26 L +442.73 383.26 L +442.73 531.43 L +@c +B +95.33 383.26 95.62 578.45 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +95.47 383.26 m +95.47 578.45 L +S +92.66 383.11 98.21 383.40 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +92.66 383.26 m +98.21 383.26 L +S +92.66 404.78 98.21 405.07 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +92.66 404.93 m +98.21 404.93 L +S +92.66 426.46 98.21 426.74 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +92.66 426.60 m +98.21 426.60 L +S +92.66 448.13 98.21 448.42 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +92.66 448.27 m +98.21 448.27 L +S +92.66 469.80 98.21 470.09 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +92.66 469.94 m +98.21 469.94 L +S +92.66 491.54 98.21 491.83 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +92.66 491.69 m +98.21 491.69 L +S +92.66 513.22 98.21 513.50 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +92.66 513.36 m +98.21 513.36 L +S +92.66 534.89 98.21 535.18 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +92.66 535.03 m +98.21 535.03 L +S +92.66 556.63 98.21 556.92 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +92.66 556.78 m +98.21 556.78 L +S +92.66 578.30 98.21 578.59 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +92.66 578.45 m +98.21 578.45 L +S +95.47 383.11 448.70 383.40 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +95.47 383.26 m +448.70 383.26 L +S +95.33 380.52 95.62 386.06 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +95.47 380.52 m +95.47 386.06 L +S +134.64 380.52 134.93 386.06 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +134.78 380.52 m +134.78 386.06 L +S +173.88 380.52 174.17 386.06 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +174.02 380.52 m +174.02 386.06 L +S +213.12 380.52 213.41 386.06 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +213.26 380.52 m +213.26 386.06 L +S +252.36 380.52 252.65 386.06 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +252.50 380.52 m +252.50 386.06 L +S +291.53 380.52 291.82 386.06 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +291.67 380.52 m +291.67 386.06 L +S +@rs +@sv +330.77 380.52 331.06 386.06 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +330.91 380.52 m +330.91 386.06 L +S +370.01 380.52 370.30 386.06 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +370.15 380.52 m +370.15 386.06 L +S +409.25 380.52 409.54 386.06 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +409.39 380.52 m +409.39 386.06 L +S +448.56 380.52 448.85 386.06 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +448.70 380.52 m +448.70 386.06 L +S +235.94 350.86 302.26 358.70 @E +[0.04030 0.00000 0.00000 0.04030 237 352] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (Depth of Search) @t +T +65.38 440.86 75.02 520.85 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +0 0.22 0.22 0.00 @w +%Bitmap +16 129 1 0 0 1269 -10231 0 1 0 0 1269 -10231 [0.00761 0.00000 0.00000 0.00781 65 520] @i +ffe7 +ff87 +fe1f +f83f +e1bf +e1bf +f83f +fe1f +ff87 +ffe7 +ffff +e007 +e007 +fce7 +fdf7 +fdf7 +fc07 +fe0f +ffff +ffff +fe6f +fc27 +fdb7 +fdb7 +fc87 +fecf +ffff +ffff +fe0f +fc07 +fdf7 +fdf7 +fdf7 +fc07 +fe0f +ffff +ffff +e007 +e007 +ffff +ffff +fc0f +fc07 +fff7 +ffe7 +fc07 +fc07 +ffff +fdff +f00f +f007 +fdf7 +ffff +fe0f +fc07 +fdb7 +fdb7 +fdb7 +fc27 +fe2f +ffff +ffff +ffff +ffff +ffff +ffff +f1cf +e0c7 +eef7 +eef7 +ee77 +ef77 +e307 +f38f +ffff +ffff +fc00 +fc00 +fce7 +fdf7 +fdf7 +fc07 +fe0f +ffff +ffff +fe0f +fc07 +fdb7 +fdb7 +fdb7 +fc27 +fe2f +ffff +ffff +fe0f +fc07 +fdb7 +fdb7 +fdb7 +fc27 +fe2f +ffff +ffff +fe0f +fc07 +fdf7 +fdf7 +fce7 +e007 +e007 +ffff +ffff +fc0f +fc07 +fff7 +ffe7 +fc07 +fc07 +ffff +ffff +fc00 +fc00 +fce7 +fdf7 +fdf7 +fc07 +fe0f +ffff +ffff +65.38 440.86 75.02 520.85 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +0 0.22 0.22 0.00 @w +%Bitmap +16 129 1 0 0 1269 -10231 0 1 0 0 1269 -10231 [0.00761 0.00000 0.00000 0.00781 65 520] @i +ffe7 +ff87 +fe1f +f83f +e1bf +e1bf +f83f +fe1f +ff87 +ffe7 +ffff +e007 +e007 +fce7 +fdf7 +fdf7 +fc07 +fe0f +ffff +ffff +fe6f +fc27 +fdb7 +fdb7 +fc87 +fecf +ffff +ffff +fe0f +fc07 +fdf7 +fdf7 +fdf7 +fc07 +fe0f +ffff +ffff +e007 +e007 +ffff +ffff +fc0f +fc07 +fff7 +ffe7 +fc07 +fc07 +ffff +fdff +f00f +f007 +fdf7 +ffff +fe0f +fc07 +fdb7 +fdb7 +fdb7 +fc27 +fe2f +ffff +ffff +ffff +ffff +ffff +ffff +f1cf +e0c7 +eef7 +eef7 +ee77 +ef77 +e307 +f38f +ffff +ffff +fc00 +fc00 +fce7 +fdf7 +fdf7 +fc07 +fe0f +ffff +ffff +fe0f +fc07 +fdb7 +fdb7 +fdb7 +fc27 +fe2f +ffff +ffff +fe0f +fc07 +fdb7 +fdb7 +fdb7 +fc27 +fe2f +ffff +ffff +fe0f +fc07 +fdf7 +fdf7 +fce7 +e007 +e007 +ffff +ffff +fc0f +fc07 +fff7 +ffe7 +fc07 +fc07 +ffff +ffff +fc00 +fc00 +fce7 +fdf7 +fdf7 +fc07 +fe0f +ffff +ffff +82.87 380.09 87.26 386.50 @E +[0.04030 0.00000 0.00000 0.04030 83 380] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (0) @t +T +82.87 401.90 87.05 408.24 @E +[0.04030 0.00000 0.00000 0.04030 83 402] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (2) @t +T +82.87 423.58 87.26 429.77 @E +[0.04030 0.00000 0.00000 0.04030 83 423] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (4) @t +T +82.87 445.18 87.34 451.51 @E +[0.04030 0.00000 0.00000 0.04030 83 445] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (6) @t +T +82.87 466.78 87.19 473.18 @E +[0.04030 0.00000 0.00000 0.04030 83 467] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (8) @t +T +78.48 488.52 87.55 495.00 @E +[0.04030 0.00000 0.00000 0.04030 78 488] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (10) @t +T +78.55 510.34 87.34 516.60 @E +[0.04030 0.00000 0.00000 0.04030 78 510] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (12) @t +T +78.48 532.08 87.55 538.27 @E +[0.04030 0.00000 0.00000 0.04030 78 532] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (14) @t +T +78.48 553.61 87.70 560.02 @E +[0.04030 0.00000 0.00000 0.04030 78 553] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (16) @t +T +78.55 575.35 87.41 581.83 @E +[0.04030 0.00000 0.00000 0.04030 78 575] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (18) @t +T +112.82 366.26 117.07 372.67 @E +[0.04030 0.00000 0.00000 0.04030 113 366] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (3) @t +T +152.14 366.34 156.46 372.53 @E +[0.04030 0.00000 0.00000 0.04030 152 366] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (4) @t +T +191.38 366.26 195.77 372.53 @E +[0.04030 0.00000 0.00000 0.04030 191 366] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (5) @t +T +230.69 366.26 235.08 372.53 @E +[0.04030 0.00000 0.00000 0.04030 230 366] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (6) @t +T +269.93 366.34 273.96 372.53 @E +[0.04030 0.00000 0.00000 0.04030 270 366] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (7) @t +T +309.02 366.19 313.27 372.67 @E +[0.04030 0.00000 0.00000 0.04030 309 366] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (8) @t +T +348.34 366.34 352.66 372.67 @E +[0.04030 0.00000 0.00000 0.04030 348 366] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (9) @t +T +385.27 366.19 394.42 372.67 @E +[0.04030 0.00000 0.00000 0.04030 385 366] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (10) @t +T +424.58 366.34 432.22 372.53 @E +[0.04030 0.00000 0.00000 0.04030 424 366] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (11) @t +T +457.99 403.27 527.18 558.65 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +457.99 558.65 m +527.18 558.65 L +527.18 403.27 L +457.99 403.27 L +457.99 558.65 L +@c +B +464.69 544.10 472.61 551.95 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +464.69 551.95 m +472.61 551.95 L +472.61 544.10 L +464.69 544.10 L +464.69 551.95 L +@c +B +475.20 543.67 506.59 550.08 @E +[0.04030 0.00000 0.00000 0.04030 475 543] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (YBWC 8) @t +T +464.69 525.38 472.61 533.23 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +464.69 533.23 m +472.61 533.23 L +472.61 525.38 L +464.69 525.38 L +464.69 533.23 L +@c +B +474.91 524.88 517.75 531.36 @E +[0.04030 0.00000 0.00000 0.04030 475 525] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (ABDADA 8) @t +T +464.69 506.66 472.61 514.51 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +464.69 514.51 m +472.61 514.51 L +472.61 506.66 L +464.69 506.66 L +464.69 514.51 L +@c +B +475.06 506.16 511.34 512.64 @E +[0.04030 0.00000 0.00000 0.04030 475 506] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (YBWC 16) @t +T +464.69 487.87 472.61 495.72 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +464.69 495.72 m +472.61 495.72 L +472.61 487.87 L +464.69 487.87 L +464.69 495.72 L +@c +B +474.84 487.51 522.43 493.78 @E +[0.04030 0.00000 0.00000 0.04030 475 487] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (ABDADA 16) @t +T +464.69 469.15 472.61 477.00 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +464.69 477.00 m +472.61 477.00 L +472.61 469.15 L +464.69 469.15 L +464.69 477.00 L +@c +B +475.06 468.72 513.50 475.13 @E +[0.04030 0.00000 0.00000 0.04030 475 469] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (YBWC 24) @t +T +464.69 450.43 472.61 458.28 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +464.69 458.28 m +472.61 458.28 L +472.61 450.43 L +464.69 450.43 L +464.69 458.28 L +@c +B +474.84 450.07 522.36 456.41 @E +[0.04030 0.00000 0.00000 0.04030 475 450] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (ABDADA 24) @t +T +464.69 431.78 472.61 439.56 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +464.69 439.56 m +472.61 439.56 L +472.61 431.78 L +464.69 431.78 L +464.69 439.56 L +@c +B +475.13 431.28 511.13 437.69 @E +[0.04030 0.00000 0.00000 0.04030 475 431] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (YBWC 32) @t +T +464.69 412.99 472.61 420.84 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.55978 0.00000 0.00000 0.55978 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +464.69 420.84 m +472.61 420.84 L +472.61 412.99 L +464.69 412.99 L +464.69 420.84 L +@c +B +474.84 412.56 522.14 419.04 @E +[0.04030 0.00000 0.00000 0.04030 475 412] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (ABDADA 32) @t +T +@rs +@rs + end +%%EndDocument + @endspecial 166 x(Figure)20 b(5:)32 b(Comparison)20 +b(of)g(absolute)g(sp)r(eedups)f(for)h(b)r(oth)f(sc)n(hemes)-150 +4625 y(applied)26 b(to)g(Othello)g(for)g(8,)h(16,)f(24,)h(32)f(pro)r +(cessors)-35 4808 y(Figure)k(5)g(sho)n(ws)h(the)e(comparison)h(of)g(sp) +r(eed)g(on)f(the)h(Othello)-150 4891 y(program)20 b(compared)g(to)g +(the)g(fastest)h(sequen)n(tial)f(Othello)h(program)-150 +4974 y(w)n(e)35 b(ha)n(v)n(e,)j(the)c(recursiv)n(e)h +Fw(\013\014)t Fx(.)63 b(W)-6 b(e)35 b(can)g(see)h(that)e(up)h(to)g +(depth)-150 5057 y(8,)e(ABD)n(AD)n(A)c(is)j(more)e(e\016cien)n(t)h +(than)g(YBW)n(C)g(searc)n(h)h(but)e(this)-150 5140 y(c)n(hanges)c(in)g +(depths)f(greater)h(than)g(9.)p -150 5200 801 4 v -150 +5267 a Fr(there)21 b(is)h(no)g(go)r(o)r(d)g(c)n(hoice)e(and)i(w)n(e)g +(did)f(it)h(in)g(order)f(to)h(ha)n(v)n(e)g(results)g(compa-)-150 +5330 y(rable)f(with)i(those)e(from)h(previous)f(publications.)-65 +5382 y Fv(9)-31 5407 y Fr(In)k(the)e(pseudo)h(co)r(de)f(giv)n(en)h(in)h +(part)f(2)h(the)f(eldest)f(no)r(de)h(is)h(read)f(t)n(wice)-150 +5471 y(and)d(so)h(are)f(all)g(no)r(des)f(ev)l(aluated)h(in)g(the)f +(second)g(pass.)30 b(This)21 b(is)h(the)f(v)n(ersion)-150 +5535 y(w)n(e)h(used)e(in)h(our)g(exp)r(erimen)n(ts)e(for)i(simplicit)n +(y)e(of)i(co)r(de)f(but)h(it)g(is)h(really)e(easy)-150 +5599 y(to)27 b(impro)n(v)n(e)e(the)g(searc)n(h)h(b)n(y)g(searc)n(hing)g +(only)g(the)f(non-ev)l(aluated)g(no)r(des)h(in)-150 5662 +y(the)c(third)f(pass.)2049 3280 y @beginspecial 48 @llx +299 @lly 542 @urx 570 @ury 1984 @rwi @setspecial +%%BeginDocument: chess.eps + +/AutoFlatness false def +% -------------- POSTSCRIPT PROLOG FOR CORELDRAW 3.X ------ +% Copyright 1992 Corel Corporation. All rights reserved. +/wCorelDict 300 dict def wCorelDict begin/bd{bind def}bind def +/ld{load def}bd/xd{exch def}bd/_ null def +/$c 0 def/$m 0 def/$y 0 def/$k 0 def/$t 1 def +/$n _ def/$o 0 def/$fil 0 def/$bkg false def +/$C 0 def/$M 0 def/$Y 0 def/$K 0 def/$T 1 def +/$N _ def/$O 0 def/$PF false def/$ctm matrix currentmatrix def +/$ptm matrix def/$ttm matrix def/$stm matrix def +/$fst 128 def/$pad 0 def/$rox 0 def/$roy 0 def +currentscreen/@dsp xd/$dsp/@dsp def/$dsa xd +/$dsf xd/$sdf false def/$SDF false def/$Scra 0.0 def +/$sv 0 def/@cp/closepath ld/@gs/gsave ld/@gr/grestore ld +/@np/newpath ld/@sv{/$sv save def}bd/@rs{$sv restore}bd +/@ss{exch $Scra add exch load setscreen}bd +AutoFlatness{/$cpx ([Error: PathTooComplex; OffendingCommand: AnyPaintingOperator]\n) def +/@err1{$cpx print flush newpath}bd/@ifl{dup currentflat exch sub 10 gt +{@err1 exit}{currentflat 2 add setflat}ifelse}bd +/@fill/fill ld/fill{currentflat{{@fill}stopped{@ifl}{exit}ifelse +}bind loop setflat}bd/@eofill/eofill ld/eofill{currentflat{{@eofill} +stopped{@ifl}{exit}ifelse}bind loop setflat}bd +/@clip/clip ld/clip{currentflat{{@clip}stopped{initclip @ifl}{exit +}ifelse}bind loop setflat}bd/@eoclip/eoclip ld +/eoclip{currentflat{{@eoclip}stopped{initclip @ifl}{exit}ifelse +}bind loop setflat}bd/@stroke/stroke ld/stroke{currentflat{{@stroke} +stopped{@ifl}{exit}ifelse}bind loop setflat}bd}if +/InRange{3 -1 roll 2 copy le{pop}{exch pop}ifelse +2 copy ge{pop}{exch pop}ifelse}bd/wDstChck{2 1 roll dup 3 -1 roll +eq{1 add}if}bd/@dot{dup mul exch dup mul add 1 exch sub 2 div}bd +/@lin{exch pop abs 1 exch sub}bd/@MN{2 copy le{pop}{exch pop}ifelse}bd +/setcmykcolor where{pop}{/setcmykcolor{4 1 roll +3{3 index add 1 @MN 1 exch sub 3 1 roll}repeat +setrgbcolor pop}bd}ifelse/setoverprint{/$op xd}bd +/currentoverprint{$op}bd/setsepcolor{1 exch sub setgray}bd +/checksepcolor{1 exch sub dup setgray 1 eq exch 1 eq and not}bd +/setprocesscolor{ColorSeparationMode 0 eq{setcmykcolor}{ +0 4 $ink sub index exch pop 5 1 roll 4{pop}repeat +setsepcolor}ifelse}bd/findcmykcustomcolor{5 array astore}bd +/setcustomcolor where{pop}{/setcustomcolor{ColorSeparationMode 0 eq{ +exch aload pop pop 4{4 index mul 4 1 roll}repeat +5 -1 roll pop setcmykcolor}{exch aload pop +CurrentInkName eq{4 index}{0}ifelse 6 1 roll +5{pop}repeat setsepcolor}ifelse}bd}ifelse/colorimage where{pop}{ +/colorimage{pop pop pop pop pop{currentfile $dat readhexstring pop pop} +repeat pop}bd}ifelse/@tc{dup 1 ge{pop}{4{dup +6 -1 roll mul exch}repeat pop}ifelse}bd/@scc{1 eq setoverprint +dup _ eq{pop setprocesscolor pop}{findcmykcustomcolor +exch setcustomcolor}ifelse ColorSeparationMode 0 eq{true}{ +currentgray 1 eq currentoverprint and not}ifelse}bd +/@sft{/$tx $tllx $pxf add dup $tllx gt{$pwid sub}if def +/$ty $tury $pyf sub dup $tury lt{$phei add}if def}bd +/@stb{pathbbox/$ury xd/$urx xd/$lly xd/$llx xd}bd +/@ep{{cvx exec}forall}bd/@tp{@sv/$in true def +2 copy dup $lly le{/$in false def}if $phei sub $ury ge{/$in false def}if +dup $urx ge{/$in false def}if $pwid add $llx le{/$in false def}if +$in{@np 2 copy moveto $pwid 0 rlineto 0 $phei neg rlineto +$pwid neg 0 rlineto 0 $phei rlineto clip @np +$pn cvlit load aload pop 7 -1 roll 5 index sub +7 -1 roll 3 index sub translate/$ctm matrix currentmatrix def +@ep pop pop pop pop}{pop pop}ifelse @rs}bd/@th{@sft +0 1 $tly 1 sub{dup $psx mul $tx add{dup $llx gt{$pwid sub}{exit}ifelse +}loop exch $phei mul $ty exch sub 0 1 $tlx 1 sub{$pwid mul +3 copy 3 -1 roll add exch @tp pop}for pop pop}for}bd +/@tv{@sft 0 1 $tlx 1 sub{dup $pwid mul $tx add +exch $psy mul $ty exch sub{dup $ury lt{$phei add}{exit}ifelse}loop +0 1 $tly 1 sub{$phei mul 3 copy sub @tp pop}for +pop pop}for}bd/@pf{@gs $ctm setmatrix $pm concat +@stb @gs $vectpat{1 0 0 0 0 _ $o @scc{eofill}if}{ +$t $c $m $y $k $n $o @scc{eofill/$bkg true def}if}ifelse +@gr eoclip Bburx Bbury $pm itransform/$tury xd/$turx xd +Bbllx Bblly $pm itransform/$tlly xd/$tllx xd +/$wid $turx $tllx sub def/$hei $tury $tlly sub def +$wid 0 gt $hei 0 gt and{$pn cvlit load aload pop +/$pd xd 3 -1 roll sub/$phei xd exch sub/$pwid xd +/$tlx $wid $pwid div ceiling 1 add def/$tly $hei $phei div ceiling 1 add def +$psx 0 eq{@tv}{@th}ifelse}if @gr @np/$bkg false def}bd +/@dlt{ColorSeparationMode 0 eq{/$dc $toc $tot mul $frc $frt mul dup/$c xd sub $fst 1 sub div def +/$dm $tom $tot mul $frm $frt mul dup/$m xd sub $fst 1 sub div def +/$dy $toy $tot mul $fry $frt mul dup/$y xd sub $fst 1 sub div def +/$dk $tok $tot mul $frk $frt mul dup/$k xd sub $fst 1 sub div def +true}{$frt $frc $frm $fry $frk $frn $o @scc +dup{/$frk 1 currentgray sub def}{/$frk 0 def}ifelse +$tot $toc $tom $toy $tok $ton $o @scc dup{/$tok 1 currentgray sub def}{ +/$tok 0 def}ifelse or dup{/$c 0 def/$m 0 def/$y 0 def/$k $frk def +/$dc 0 def/$dm 0 def/$dy 0 def/$dk $tok $frk sub $fst 1 sub div def}if +}ifelse}bd/@ftl{1 index 4 index sub dup $pad mul dup/$pdw xd +2 mul sub $fst div/$wid xd 2 index sub/$hei xd +pop translate $c $m $y $k 4 copy ColorSeparationMode 0 ne +{1 exch sub setgray pop pop pop}{setcmykcolor}ifelse +0 0 moveto 0 $hei lineto $pdw $hei lineto $pdw 0 lineto 0 0 lineto fill +$pdw 0 translate $fst{4 copy ColorSeparationMode 0 ne +{1 exch sub setgray pop pop pop}{setcmykcolor}ifelse +0 0 moveto 0 $hei lineto $wid $hei lineto $wid 0 lineto 0 0 lineto fill +$wid 0 translate $dk add 4 1 roll $dy add 4 1 roll +$dm add 4 1 roll $dc add 4 1 roll}repeat $dk sub 4 1 roll +$dy sub 4 1 roll $dm sub 4 1 roll $dc sub 4 1 roll +ColorSeparationMode 0 ne{1 exch sub setgray pop pop pop} +{setcmykcolor}ifelse 0 0 moveto 0 $hei lineto $pdw $hei lineto $pdw 0 lineto 0 0 lineto fill +}bd/@ftr{1 index 4 index sub dup $rox mul/$row xd +2 div 1 index 4 index sub dup $roy mul/$roh xd +2 div 2 copy dup mul exch dup mul add sqrt +$row dup mul $roh dup mul add sqrt add dup/$hei xd $fst div/$wid xd +4 index add $roh add exch 5 index add $row add +exch translate pop pop pop pop currentflat dup 5 mul setflat +$c $m $y $k 4 copy ColorSeparationMode 0 ne +{1 exch sub setgray pop pop pop}{setcmykcolor}ifelse +$wid 0 moveto 0 0 $hei 0 360 arc fill 1.0 $pad 2 mul sub dup scale +$fst{4 copy ColorSeparationMode 0 ne{1 exch sub setgray pop pop pop} +{setcmykcolor}ifelse $wid 0 moveto 0 0 $hei 0 360 arc fill +/$hei $hei $wid sub def $dk add 4 1 roll $dy add 4 1 roll +$dm add 4 1 roll $dc add 4 1 roll}repeat pop pop pop pop +setflat}bd/@ff{@gs @dlt{$ctm setmatrix eoclip +newpath Bbllx Bblly moveto Bbllx Bbury lineto +Bburx Bbury lineto Bburx Bblly lineto $fan rotate +pathbbox newpath $fty 1 eq{@ftr}{@ftl}ifelse}if +@gr @np}bd/@Pf{@sv ColorSeparationMode 0 eq $ink 3 eq or{0 J 0 j [] 0 d +$t $c $m $y $k $n $o @scc pop $ctm setmatrix +72 1000 div dup matrix scale dup concat dup Bburx exch Bbury exch itransform +ceiling cvi/Bbury xd ceiling cvi/Bburx xd Bbllx exch Bblly exch itransform +floor cvi/Bblly xd floor cvi/Bbllx xd $Prm aload pop +$Psn load exec}{1 setgray eofill}ifelse @rs +@np}bd/g{1 exch sub/$k xd/$c 0 def/$m 0 def/$y 0 def/$t 1 def/$n _ def/$fil 0 def +}bd/G{1 exch sub/$K xd/$C 0 def/$M 0 def/$Y 0 def/$T 1 def/$N _ def}bd +/k{/$k xd/$y xd/$m xd/$c xd/$t 1 def/$n _ def/$fil 0 def}bd +/K{/$K xd/$Y xd/$M xd/$C xd/$T 1 def/$N _ def}bd +/x{/$t xd/$n xd/$k xd/$y xd/$m xd/$c xd/$fil 0 def}bd +/X{/$T xd/$N xd/$K xd/$Y xd/$M xd/$C xd}bd +/d/setdash ld/i{dup 0 ne{setflat}{pop}ifelse}bd +/j/setlinejoin ld/J/setlinecap ld/M/setmiterlimit ld +/w/setlinewidth ld/O{/$o xd}bd/R{/$O xd}bd +/c/curveto ld/C/c ld/v{4 -2 roll 2 copy 6 -2 roll curveto}bd +/V/v ld/y{2 copy curveto}bd/Y/y ld/l/lineto ld +/L/l ld/rl/rlineto ld/m/moveto ld/n/newpath ld +/N/newpath ld/F{matrix currentmatrix $sdf{$scf $sca $scp @ss}if +$fil 1 eq{@pf}{$fil 2 eq{@ff}{$fil 3 eq{@Pf}{$t $c $m $y $k $n $o @scc +{eofill}{@np}ifelse}ifelse}ifelse}ifelse $sdf{$dsf $dsa $dsp @ss}if +setmatrix}bd/f{@cp F}bd/S{matrix currentmatrix +$ctm setmatrix $SDF{$SCF $SCA $SCP @ss}if $T $C $M $Y $K $N $O @scc{ +matrix currentmatrix $ptm concat stroke setmatrix}{@np}ifelse +$SDF{$dsf $dsa $dsp @ss}if setmatrix}bd/s{@cp +S}bd/B{@gs F @gr S}bd/b{@cp B}bd/W{eoclip}bd +/p{/$pm xd 7{pop}repeat/$pyf xd/$pxf xd/$pn xd +/$fil 1 def}bd/P{11{pop}repeat}bd/u{}bd/U{}bd +/A{pop}bd/q/@gs ld/Q/@gr ld/E{5 array astore +exch cvlit exch def}bd/`{}bd/~{}bd/@{}bd/&{}bd +/CorelDrawReencodeVect [ 16#80/grave/circumflex/tilde/dotlessi/florin/quotedblleft/quotedblright/guilsinglleft +16#88/guilsinglright/fi/fl/dagger/daggerdbl/endash/periodcentered/breve +16#90/quotedblbase/ellipsis/perthousand/trademark/Pt/fractionbar +16#98/divide 16#a1/exclamdown/cent/sterling/currency/yen/bar/section +16#a8/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/emdash/registered/overbar +16#b0/ring/plusminus/twosuperior/threesuperior/acute/mu/paragraph/bullet +16#b8/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown +16#c0/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla +16#c8/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis +16#d0/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/OE +16#d8/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls +16#e0/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla +16#e8/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis +16#f0/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/oe +16#f8/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis +] def/@cc{currentfile $dat readhexstring pop}bd +/@sm{/$ctm $ctm currentmatrix def}bd/@E{/Bbury xd/Bburx xd +/Bblly xd/Bbllx xd}bd/@c{@cp}bd/@p{/$fil 1 def +1 eq/$vectpat xd/$pm xd/$psy xd/$psx xd/$pyf xd/$pxf xd +/$pn xd}bd/@P{/$fil 3 def/$Psn xd array astore +/$Prm xd}bd/@k{/$fil 2 def/$roy xd/$rox xd/$pad xd +/$fty xd/$fan xd $fty 1 eq{/$fan 0 def}if/$tok xd/$toy xd/$tom xd/$toc xd +/$frk xd/$fry xd/$frm xd/$frc xd/$frn _ def/$frt 1 def/$ton _ def/$tot 1 def +}bd/@x{/$fil 2 def/$roy xd/$rox xd/$pad xd +/$fty xd/$fan xd/$tot xd/$ton xd/$tok xd/$toy xd/$tom xd/$toc xd +/$frt xd/$frn xd/$frk xd/$fry xd/$frm xd/$frc xd}bd +/@ii{concat 3 index 3 index m 3 index 1 index l +2 copy l 1 index 3 index l 3 index 3 index l +clip pop pop pop pop}bd/@i{@sm @gs @ii 6 index 1 ne{/$frg true def +pop pop}{1 eq{$T $C $M $Y $K $N $O @scc/$frg xd}{/$frg false def +}ifelse 1 eq{@gs $ctm setmatrix $t $c $m $y $k $n $o @scc{eofill}if +@gr}if}ifelse/$frg $frg $bkg or def @np/$ury xd/$urx xd/$lly xd/$llx xd +/$bts xd/$hei xd/$wid xd/$dat $wid $bts mul 8 div ceiling cvi string def +$frg{$SDF{$SCF $SCA $SCP @ss}if $llx $lly translate +$urx $llx sub $ury $lly sub scale $wid $hei abs +$bts 1 eq{false}{$bts}ifelse [ $wid 0 0 $hei neg 0 +$hei 0 gt{$hei}{0}ifelse]/@cc load $bts 1 eq{imagemask}{image}ifelse +$SDF{$dsf $dsa $dsp @ss}if}{$hei abs{@cc pop}repeat}ifelse +@gr $ctm setmatrix}def/@M{@sv}bd/@N{/@cc{}def +1 eq{12 -1 roll neg 12 1 roll @I}{13 -1 roll neg 13 1 roll +@i}ifelse @rs}bd/@I{@sm @gs @ii @np/$ury xd/$urx xd/$lly xd/$llx xd +/$ncl xd/$bts xd/$hei xd/$wid xd/$dat $wid $bts mul $ncl mul 8 div ceiling cvi string def +$llx $lly translate $urx $llx sub $ury $lly sub scale +$wid $hei abs $bts [ $wid 0 0 $hei neg 0 $hei 0 gt{$hei}{0}ifelse] +/@cc load false $ncl colorimage @gr $ctm setmatrix}bd +/z{exch findfont exch scalefont setfont}bd +/ZB{9 dict dup begin 4 1 roll/FontType 3 def +/FontMatrix xd/FontBBox xd/Encoding 256 array def +0 1 255{Encoding exch/.notdef put}for/CharStrings 256 dict def +CharStrings/.notdef{}put/Metrics 256 dict def +Metrics/.notdef 3 -1 roll put/BuildChar{exch +dup/$char exch/Encoding get 3 index get def +dup/Metrics get $char get aload pop setcachedevice +begin Encoding exch get CharStrings exch get +end exec}def end definefont pop}bd/ZBAddChar{findfont begin +dup 4 1 roll dup 6 1 roll Encoding 3 1 roll put +CharStrings 3 1 roll put Metrics 3 1 roll put +end}bd/Z{findfont dup maxlength 2 add dict exch +dup{1 index/FID ne{3 index 3 1 roll put}{pop pop}ifelse}forall +pop dup dup/Encoding get 256 array copy dup/$fe xd +/Encoding exch put dup/Fontname 3 index put +3 -1 roll dup length 0 ne{0 exch{dup type 0 type eq{exch pop}{ +$fe exch 2 index exch put 1 add}ifelse}forall +pop}if dup 256 dict dup/$met xd/Metrics exch put +dup/FontMatrix get 0 get 1000 mul 1 exch div +3 index length 256 eq{0 1 255{dup $fe exch get +dup/.notdef eq{pop pop}{5 index 3 -1 roll get +2 index mul $met 3 1 roll put}ifelse}for}if +pop definefont pop pop}bd/@ftx{{(0) dup 3 -1 roll 0 exch put +@gs true charpath $ctm setmatrix @@txt @gr @np}forall}bd +/@ft{matrix currentmatrix exch $sdf{$scf $sca $scp @ss}if +$fil 1 eq{/@@txt/@pf ld @ftx}{$fil 2 eq{/@@txt/@ff ld @ftx}{$fil 3 eq +{/@@txt/@Pf ld @ftx}{$t $c $m $y $k $n $o @scc{show}{pop}ifelse}ifelse +}ifelse}ifelse $sdf{$dsf $dsa $dsp @ss}if setmatrix}bd +/@st{matrix currentmatrix exch $SDF{$SCF $SCA $SCP @ss}if +$T $C $M $Y $K $N $O @scc{{(0) dup 3 -1 roll 0 exch put +@gs true charpath $ctm setmatrix $ptm concat +stroke @gr}forall}{pop}ifelse $SDF{$dsf $dsa $dsp @ss}if +setmatrix}bd/@te{@ft}bd/@tr{@st}bd/@ta{dup +@gs @ft @gr @st}bd/@t@a{dup @gs @st @gr @ft}bd +/@tm{/$textsave save def @sm concat}bd/e{/t{@te}def}bd +/r{/t{@tr}def}bd/o{/t{pop}def}bd/a{/t{@ta}def}bd +/@a{/t{@t@a}def}bd/t{@te}def/T{@np $ctm setmatrix +/$ttm matrix def $textsave restore}bd/@t{/$stm $stm currentmatrix def +3 1 roll moveto $ttm concat t $stm setmatrix}def +/@n{/$ttm exch matrix rotate def}bd/@s{}bd +/@l{}bd/@B{@gs S @gr F}bd/@b{@cp @B}bd/@w{matrix rotate/$ptm xd +matrix scale $ptm dup concatmatrix/$ptm xd +1 eq{$ptm exch dup concatmatrix/$ptm xd}if +1 w}bd/@g{1 eq dup/$sdf xd{/$scp xd/$sca xd +/$scf xd}if}bd/@G{1 eq dup/$SDF xd{/$SCP xd +/$SCA xd/$SCF xd}if}bd/@D{3 copy @ss/$dsp xd +/$dsa xd/$dsf xd}bd/@j{@sv @np}bind def/@J{@rs}bind def +/@sep{/ColorSeparationMode where{pop}{/ColorSeparationMode 0 def +/CurrentInkName (Composite) def}ifelse ColorSeparationMode 0 eq{ +/CurrentInkName (Composite) def}if/CurrentInkName where{pop}{ +/CurrentInkName (Composite) def}ifelse CurrentInkName (Composite) eq +{/$ink -1 def}{CurrentInkName (Cyan) eq{/$ink 0 def}{ +CurrentInkName (Magenta) eq{/$ink 1 def}{CurrentInkName (Yellow) eq +{/$ink 2 def}{CurrentInkName (Black) eq{/$ink 3 def}{/$ink 4 def +}ifelse}ifelse}ifelse}ifelse}ifelse}bd @sep +/@whi{@gs -72000 dup moveto -72000 72000 lineto +72000 dup lineto 72000 -72000 lineto closepath 1 setgray fill +@gr}bd/@neg{ [{1 exch sub}/exec cvx currenttransfer/exec cvx] cvx settransfer +@whi}bd/@reg{[] 0 d 0 setgray .3 setlinewidth +2 copy 5.4 0 360 arc closepath 2 copy moveto 9 0 rlineto +2 copy moveto -9 0 rlineto 2 copy moveto 0 9 rlineto +moveto 0 -9 rlineto stroke}bd/leftbracket{(\050)}def +/rightbracket{(\051)}def + +11.4737 setmiterlimit +1.00 setflat +/$fst 128 def + +@sv +/$ctm matrix currentmatrix def +@sv +71.21 354.67 469.58 354.96 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +71.21 354.82 m +469.58 354.82 L +S +71.21 382.25 469.58 382.54 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +71.21 382.39 m +469.58 382.39 L +S +71.21 409.75 469.58 410.04 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +71.21 409.90 m +469.58 409.90 L +S +71.21 437.33 469.58 437.62 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +71.21 437.47 m +469.58 437.47 L +S +71.21 464.83 469.58 465.12 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +71.21 464.98 m +469.58 464.98 L +S +71.21 492.34 469.58 492.62 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +71.21 492.48 m +469.58 492.48 L +S +71.21 519.91 469.58 520.20 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +71.21 520.06 m +469.58 520.06 L +S +71.21 547.42 469.58 547.70 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +71.21 547.56 m +469.58 547.56 L +S +73.15 327.31 81.00 342.58 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +73.15 342.58 m +81.00 342.58 L +81.00 327.31 L +73.15 327.31 L +73.15 342.58 L +@c +B +139.54 327.31 147.38 357.05 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +139.54 357.05 m +147.38 357.05 L +147.38 327.31 L +139.54 327.31 L +139.54 357.05 L +@c +B +205.99 327.31 213.77 362.95 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +205.99 362.95 m +213.77 362.95 L +213.77 327.31 L +205.99 327.31 L +205.99 362.95 L +@c +B +272.38 327.31 280.22 377.42 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +272.38 377.42 m +280.22 377.42 L +280.22 327.31 L +272.38 327.31 L +272.38 377.42 L +@c +B +338.76 327.31 346.54 382.39 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +338.76 382.39 m +346.54 382.39 L +346.54 327.31 L +338.76 327.31 L +338.76 382.39 L +@c +B +405.14 327.31 412.92 388.01 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +405.14 388.01 m +412.92 388.01 L +412.92 327.31 L +405.14 327.31 L +405.14 388.01 L +@c +B +81.00 327.31 88.78 396.14 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +81.00 396.14 m +88.78 396.14 L +88.78 327.31 L +81.00 327.31 L +81.00 396.14 L +@c +B +147.38 327.31 155.23 401.62 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +147.38 401.62 m +155.23 401.62 L +155.23 327.31 L +147.38 327.31 L +147.38 401.62 L +@c +B +213.77 327.31 221.62 395.86 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +213.77 395.86 m +221.62 395.86 L +221.62 327.31 L +213.77 327.31 L +213.77 395.86 L +@c +B +280.22 327.31 288.00 389.66 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +280.22 389.66 m +288.00 389.66 L +288.00 327.31 L +280.22 327.31 L +280.22 389.66 L +@c +B +346.54 327.31 354.38 401.26 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +346.54 401.26 m +354.38 401.26 L +354.38 327.31 L +346.54 327.31 L +346.54 401.26 L +@c +B +412.92 327.31 420.77 408.53 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +412.92 408.53 m +420.77 408.53 L +420.77 327.31 L +412.92 327.31 L +412.92 408.53 L +@c +B +88.78 327.31 96.62 350.28 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +88.78 350.28 m +96.62 350.28 L +96.62 327.31 L +88.78 327.31 L +88.78 350.28 L +@c +B +155.23 327.31 163.01 363.89 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +155.23 363.89 m +163.01 363.89 L +163.01 327.31 L +155.23 327.31 L +155.23 363.89 L +@c +B +221.62 327.31 229.39 370.51 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +221.62 370.51 m +229.39 370.51 L +229.39 327.31 L +221.62 327.31 L +221.62 370.51 L +@c +B +288.00 327.31 295.85 397.87 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +288.00 397.87 m +295.85 397.87 L +295.85 327.31 L +288.00 327.31 L +288.00 397.87 L +@c +B +354.38 327.31 362.16 410.98 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +354.38 410.98 m +362.16 410.98 L +362.16 327.31 L +354.38 327.31 L +354.38 410.98 L +@c +B +420.77 327.31 428.62 431.21 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +420.77 431.21 m +428.62 431.21 L +428.62 327.31 L +420.77 327.31 L +420.77 431.21 L +@c +B +96.62 327.31 104.40 396.14 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +96.62 396.14 m +104.40 396.14 L +104.40 327.31 L +96.62 327.31 L +96.62 396.14 L +@c +B +163.01 327.31 170.86 396.94 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +163.01 396.94 m +170.86 396.94 L +170.86 327.31 L +163.01 327.31 L +163.01 396.94 L +@c +B +229.39 327.31 237.24 406.15 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +229.39 406.15 m +237.24 406.15 L +237.24 327.31 L +229.39 327.31 L +229.39 406.15 L +@c +B +295.85 327.31 303.62 423.58 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +295.85 423.58 m +303.62 423.58 L +303.62 327.31 L +295.85 327.31 L +295.85 423.58 L +@c +B +362.16 327.31 370.01 442.44 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +362.16 442.44 m +370.01 442.44 L +370.01 327.31 L +362.16 327.31 L +362.16 442.44 L +@c +B +428.62 327.31 436.39 464.83 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +428.62 464.83 m +436.39 464.83 L +436.39 327.31 L +428.62 327.31 L +428.62 464.83 L +@c +B +104.40 327.31 112.25 350.28 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +104.40 350.28 m +112.25 350.28 L +112.25 327.31 L +104.40 327.31 L +104.40 350.28 L +@c +B +170.86 327.31 178.63 363.89 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +170.86 363.89 m +178.63 363.89 L +178.63 327.31 L +170.86 327.31 L +170.86 363.89 L +@c +B +237.24 327.31 245.09 379.08 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +237.24 379.08 m +245.09 379.08 L +245.09 327.31 L +237.24 327.31 L +237.24 379.08 L +@c +B +303.62 327.31 311.47 416.74 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +303.62 416.74 m +311.47 416.74 L +311.47 327.31 L +303.62 327.31 L +303.62 416.74 L +@c +B +370.01 327.31 377.78 438.98 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +370.01 438.98 m +377.78 438.98 L +377.78 327.31 L +370.01 327.31 L +370.01 438.98 L +@c +B +436.39 327.31 444.24 469.08 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +436.39 469.08 m +444.24 469.08 L +444.24 327.31 L +436.39 327.31 L +436.39 469.08 L +@c +B +112.25 327.31 120.10 396.14 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +112.25 396.14 m +120.10 396.14 L +120.10 327.31 L +112.25 327.31 L +112.25 396.14 L +@c +B +178.63 327.31 186.48 413.06 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +178.63 413.06 m +186.48 413.06 L +186.48 327.31 L +178.63 327.31 L +178.63 413.06 L +@c +B +245.09 327.31 252.86 422.78 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +245.09 422.78 m +252.86 422.78 L +252.86 327.31 L +245.09 327.31 L +245.09 422.78 L +@c +B +311.47 327.31 319.25 448.99 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +311.47 448.99 m +319.25 448.99 L +319.25 327.31 L +311.47 327.31 L +311.47 448.99 L +@c +B +377.78 327.31 385.63 471.96 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +377.78 471.96 m +385.63 471.96 L +385.63 327.31 L +377.78 327.31 L +377.78 471.96 L +@c +B +444.24 327.31 452.02 507.60 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +444.24 507.60 m +452.02 507.60 L +452.02 327.31 L +444.24 327.31 L +444.24 507.60 L +@c +B +120.10 327.31 127.87 354.82 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +120.10 354.82 m +127.87 354.82 L +127.87 327.31 L +120.10 327.31 L +120.10 354.82 L +@c +B +186.48 327.31 194.26 369.43 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +186.48 369.43 m +194.26 369.43 L +194.26 327.31 L +186.48 327.31 L +186.48 369.43 L +@c +B +252.86 327.31 260.71 382.46 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +252.86 382.46 m +260.71 382.46 L +260.71 327.31 L +252.86 327.31 L +252.86 382.46 L +@c +B +319.25 327.31 327.10 420.77 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +319.25 420.77 m +327.10 420.77 L +327.10 327.31 L +319.25 327.31 L +319.25 420.77 L +@c +B +385.63 327.31 393.48 447.48 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +385.63 447.48 m +393.48 447.48 L +393.48 327.31 L +385.63 327.31 L +385.63 447.48 L +@c +B +452.02 327.31 459.86 494.57 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +452.02 494.57 m +459.86 494.57 L +459.86 327.31 L +452.02 327.31 L +452.02 494.57 L +@c +B +127.87 327.31 135.72 396.14 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +127.87 396.14 m +135.72 396.14 L +135.72 327.31 L +127.87 327.31 L +127.87 396.14 L +@c +B +194.26 327.31 202.10 416.52 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +194.26 416.52 m +202.10 416.52 L +202.10 327.31 L +194.26 327.31 L +194.26 416.52 L +@c +B +260.71 327.31 268.49 422.78 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +260.71 422.78 m +268.49 422.78 L +268.49 327.31 L +260.71 327.31 L +260.71 422.78 L +@c +B +327.10 327.31 334.94 464.54 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +327.10 464.54 m +334.94 464.54 L +334.94 327.31 L +327.10 327.31 L +327.10 464.54 L +@c +B +393.48 327.31 401.26 501.70 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +393.48 501.70 m +401.26 501.70 L +401.26 327.31 L +393.48 327.31 L +393.48 501.70 L +@c +B +459.86 327.31 467.71 543.74 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +459.86 543.74 m +467.71 543.74 L +467.71 327.31 L +459.86 327.31 L +459.86 543.74 L +@c +B +71.06 327.31 71.35 547.56 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +71.21 327.31 m +71.21 547.56 L +S +68.04 327.17 74.30 327.46 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +68.04 327.31 m +74.30 327.31 L +S +68.04 354.67 74.30 354.96 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +68.04 354.82 m +74.30 354.82 L +S +68.04 382.25 74.30 382.54 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +68.04 382.39 m +74.30 382.39 L +S +68.04 409.75 74.30 410.04 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +68.04 409.90 m +74.30 409.90 L +S +68.04 437.33 74.30 437.62 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +68.04 437.47 m +74.30 437.47 L +S +68.04 464.83 74.30 465.12 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +68.04 464.98 m +74.30 464.98 L +S +68.04 492.34 74.30 492.62 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +68.04 492.48 m +74.30 492.48 L +S +68.04 519.91 74.30 520.20 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +68.04 520.06 m +74.30 520.06 L +S +68.04 547.42 74.30 547.70 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +68.04 547.56 m +74.30 547.56 L +S +71.21 327.17 469.58 327.46 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +71.21 327.31 m +469.58 327.31 L +S +71.06 324.22 71.35 330.48 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +71.21 324.22 m +71.21 330.48 L +S +137.45 324.22 137.74 330.48 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +137.59 324.22 m +137.59 330.48 L +S +203.90 324.22 204.19 330.48 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +204.05 324.22 m +204.05 330.48 L +S +270.29 324.22 270.58 330.48 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +270.43 324.22 m +270.43 330.48 L +S +336.60 324.22 336.89 330.48 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +336.74 324.22 m +336.74 330.48 L +S +403.06 324.22 403.34 330.48 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +403.20 324.22 m +403.20 330.48 L +S +469.44 324.22 469.73 330.48 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +469.58 324.22 m +469.58 330.48 L +S +229.54 290.81 304.49 299.66 @E +[0.04544 0.00000 0.00000 0.04544 231 292] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (Depth of Search) @t +T +37.22 392.40 48.10 482.54 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +0 0.22 0.22 0.00 @w +%Bitmap +16 164 1 0 0 998 -10232 0 1 0 0 998 -10232 [0.01093 0.00000 0.00000 0.00880 37 482] @i +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffe7 +ff87 +fe1f +f83f +e1bf +e1bf +f83f +fe1f +ff87 +ffe7 +ffff +e007 +e007 +fce7 +fdf7 +fdf7 +fc07 +fe0f +ffff +ffff +fe6f +fc27 +fdb7 +fdb7 +fc87 +fecf +ffff +ffff +fe0f +fc07 +fdf7 +fdf7 +fdf7 +fc07 +fe0f +ffff +ffff +e007 +e007 +ffff +ffff +fc0f +fc07 +fff7 +ffe7 +fc07 +fc07 +ffff +fdff +f00f +f007 +fdf7 +ffff +fe0f +fc07 +fdb7 +fdb7 +fdb7 +fc27 +fe2f +ffff +ffff +ffff +ffff +ffff +ffff +f1cf +e0c7 +eef7 +eef7 +ee77 +ef77 +e307 +f38f +ffff +ffff +fc00 +fc00 +fce7 +fdf7 +fdf7 +fc07 +fe0f +ffff +ffff +fe0f +fc07 +fdb7 +fdb7 +fdb7 +fc27 +fe2f +ffff +ffff +fe0f +fc07 +fdb7 +fdb7 +fdb7 +fc27 +fe2f +ffff +ffff +fe0f +fc07 +fdf7 +fdf7 +fce7 +e007 +e007 +ffff +ffff +fc0f +fc07 +fff7 +ffe7 +fc07 +fc07 +ffff +ffff +fc00 +fc00 +fce7 +fdf7 +fdf7 +fc07 +fe0f +ffff +ffff +37.22 392.40 48.10 482.54 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +0 0.22 0.22 0.00 @w +%Bitmap +16 164 1 0 0 998 -10232 0 1 0 0 998 -10232 [0.01093 0.00000 0.00000 0.00880 37 482] @i +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffff +ffe7 +ff87 +fe1f +f83f +e1bf +e1bf +f83f +fe1f +ff87 +ffe7 +ffff +e007 +e007 +fce7 +fdf7 +fdf7 +fc07 +fe0f +ffff +ffff +fe6f +fc27 +fdb7 +fdb7 +fc87 +fecf +ffff +ffff +fe0f +fc07 +fdf7 +fdf7 +fdf7 +fc07 +fe0f +ffff +ffff +e007 +e007 +ffff +ffff +fc0f +fc07 +fff7 +ffe7 +fc07 +fc07 +ffff +fdff +f00f +f007 +fdf7 +ffff +fe0f +fc07 +fdb7 +fdb7 +fdb7 +fc27 +fe2f +ffff +ffff +ffff +ffff +ffff +ffff +f1cf +e0c7 +eef7 +eef7 +ee77 +ef77 +e307 +f38f +ffff +ffff +fc00 +fc00 +fce7 +fdf7 +fdf7 +fc07 +fe0f +ffff +ffff +fe0f +fc07 +fdb7 +fdb7 +fdb7 +fc27 +fe2f +ffff +ffff +fe0f +fc07 +fdb7 +fdb7 +fdb7 +fc27 +fe2f +ffff +ffff +fe0f +fc07 +fdf7 +fdf7 +fce7 +e007 +e007 +ffff +ffff +fc0f +fc07 +fff7 +ffe7 +fc07 +fc07 +ffff +ffff +fc00 +fc00 +fce7 +fdf7 +fdf7 +fc07 +fe0f +ffff +ffff +57.02 323.78 61.92 330.98 @E +[0.04544 0.00000 0.00000 0.04544 57 324] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (0) @t +T +57.02 351.43 61.70 358.49 @E +[0.04544 0.00000 0.00000 0.04544 57 351] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (2) @t +T +57.02 378.94 61.92 385.99 @E +[0.04544 0.00000 0.00000 0.04544 57 379] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (4) @t +T +57.02 406.37 61.99 413.50 @E +[0.04544 0.00000 0.00000 0.04544 57 406] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (6) @t +T +57.02 433.87 61.85 441.14 @E +[0.04544 0.00000 0.00000 0.04544 57 434] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (8) @t +T +52.06 461.38 62.21 468.65 @E +[0.04544 0.00000 0.00000 0.04544 52 461] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (10) @t +T +52.06 489.10 62.06 496.15 @E +[0.04544 0.00000 0.00000 0.04544 52 489] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (12) @t +T +52.06 516.60 62.21 523.66 @E +[0.04544 0.00000 0.00000 0.04544 52 516] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (14) @t +T +52.06 544.10 62.35 551.16 @E +[0.04544 0.00000 0.00000 0.04544 52 544] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (16) @t +T +101.88 308.16 106.56 315.36 @E +[0.04544 0.00000 0.00000 0.04544 102 308] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (3) @t +T +168.26 308.23 173.16 315.22 @E +[0.04544 0.00000 0.00000 0.04544 168 308] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (4) @t +T +234.65 308.16 239.62 315.22 @E +[0.04544 0.00000 0.00000 0.04544 234 308] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (5) @t +T +301.10 308.16 306.00 315.22 @E +[0.04544 0.00000 0.00000 0.04544 301 308] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (6) @t +T +367.49 308.23 372.10 315.22 @E +[0.04544 0.00000 0.00000 0.04544 367 308] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (7) @t +T +433.87 308.09 438.70 315.36 @E +[0.04544 0.00000 0.00000 0.04544 433 308] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (8) @t +T +480.10 345.53 558.07 520.78 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +480.10 520.78 m +558.07 520.78 L +558.07 345.53 L +480.10 345.53 L +480.10 520.78 L +@c +B +487.66 504.43 496.51 513.29 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +487.66 513.29 m +496.51 513.29 L +496.51 504.43 L +487.66 504.43 L +487.66 513.29 L +@c +B +499.46 503.93 534.89 511.13 @E +[0.04544 0.00000 0.00000 0.04544 500 504] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (YBWC 8) @t +T +487.66 483.26 496.51 492.12 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.00 k +487.66 492.12 m +496.51 492.12 L +496.51 483.26 L +487.66 483.26 L +487.66 492.12 L +@c +B +499.10 482.76 549.94 490.03 @E +[0.04544 0.00000 0.00000 0.04544 500 483] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (ABDADA 8) @t +T +487.66 462.10 496.51 471.02 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +487.66 471.02 m +496.51 471.02 L +496.51 462.10 L +487.66 462.10 L +487.66 471.02 L +@c +B +499.32 461.66 540.22 468.86 @E +[0.04544 0.00000 0.00000 0.04544 500 461] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (YBWC 16) @t +T +@rs +@sv +487.66 441.00 496.51 449.86 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.74 k +487.66 449.86 m +496.51 449.86 L +496.51 441.00 L +487.66 441.00 L +487.66 449.86 L +@c +B +499.03 440.57 552.74 447.62 @E +[0.04544 0.00000 0.00000 0.04544 500 440] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (ABDADA 16) @t +T +487.66 419.83 496.51 428.69 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +487.66 428.69 m +496.51 428.69 L +496.51 419.83 L +487.66 419.83 L +487.66 428.69 L +@c +B +499.32 419.40 540.14 426.60 @E +[0.04544 0.00000 0.00000 0.04544 500 419] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (YBWC 24) @t +T +487.66 398.74 496.51 407.59 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.49 k +487.66 407.59 m +496.51 407.59 L +496.51 398.74 L +487.66 398.74 L +487.66 407.59 L +@c +B +499.03 398.38 552.67 405.43 @E +[0.04544 0.00000 0.00000 0.04544 500 398] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (ABDADA 24) @t +T +487.66 377.57 496.51 386.42 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 0.07 0.07 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +487.66 386.42 m +496.51 386.42 L +496.51 377.57 L +487.66 377.57 L +487.66 386.42 L +@c +B +499.32 377.14 540.00 384.34 @E +[0.04544 0.00000 0.00000 0.04544 500 377] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (YBWC 32) @t +T +487.66 356.47 496.51 365.33 @E +0 J 0 j [] 0 d 0 R 0 @G +0.00 0.00 0.00 1.00 K +[0.63127 0.00000 0.00000 0.63127 0 0] 1 2.16 2.16 0.00 @w + 0 O 0 @g +0.00 0.00 0.00 0.25 k +487.66 365.33 m +496.51 365.33 L +496.51 356.47 L +487.66 356.47 L +487.66 365.33 L +@c +B +499.03 355.97 552.46 363.17 @E +[0.04544 0.00000 0.00000 0.04544 500 356] @tm + 0 O 0 @g +0.00 0.00 0.00 1.00 k +e +/_AvantGarde-Book 200.00 z +0 0 (ABDADA 32) @t +T +@rs +@rs + end +%%EndDocument + @endspecial 166 x Fx(Figure)f(6:)32 b(Comparison)20 +b(of)g(absolute)g(sp)r(eedups)f(for)h(b)r(oth)f(sc)n(hemes)2049 +3529 y(applied)26 b(to)g(c)n(hess)g(for)g(8,)h(16,)f(24,)h(32)f(pro)r +(cessors)2164 3764 y(Figure)21 b(6)f(giv)n(es)h(the)f(comparison)g(for) +h(the)f(game)g(of)h(c)n(hess)g(using)2049 3847 y(the)27 +b(recursiv)n(e)g(Negascout)h(\(whic)n(h)f(is)g(30\045)h(faster)g(than)f +(the)g(non-)2049 3930 y(recursiv)n(e)37 b(one)2496 3898 +y Fv(10)2562 3930 y Fx(\).)68 b(Here)38 b(w)n(e)f(can)g(see)h(that)f +(ABD)n(AD)n(A)e(searc)n(h)2049 4013 y(signi\014can)n(tly)26 +b(outp)r(erforms)g(the)f(YBW)n(C)h(whatev)n(er)g(the)f(depth.)2164 +4160 y(Some)g(explanations)h(can)g(b)r(e)g(adv)l(anced:)2164 +4331 y Fu(\017)39 b Fx(The)22 b(game)f(trees)h(are)g(not)g(of)g(the)f +(same)g(size,)j(the)d(branc)n(hing)2241 4414 y(factor)30 +b(for)f(Othello)g(is)g(10)h(in)e(midgame)f(p)r(ositions)j(while)g(it) +2241 4497 y(is)c(40)h(for)f(c)n(hess.)35 b(Th)n(us)26 +b(Othello)g(game)f(trees)h(are)g(deep)r(er;)2164 4607 +y Fu(\017)39 b Fx(Since)20 b(our)h(Othello)g(ev)l(aluation)g(function)f +(is)h(unstable,)h(Oth-)2241 4690 y(ello)27 b(game)e(trees)h(are)g(less) +g(ordered)g(than)f(c)n(hess)g(trees.)35 b(This)2241 4773 +y(mak)n(es)i(Negascout)j(less)f(e\016cien)n(t)f(than)g +Fw(\013\014)43 b Fx(and)38 b(YBW)n(C)2241 4856 y(searc)n(h)g(b)r +(ecomes)f(more)g(e\016cien)n(t)h(since)f(w)n(e)h(sho)n(w)g(in)g([23)q +(])2241 4939 y(that)28 b(YBW)n(C)g(is)g(more)g(e\016cien)n(t)g(in)g +(random)f(trees)h(than)g(in)2241 5022 y(strongly)e(ordered)g(trees.) +2164 5192 y(Without)31 b(more)g(data,)i(it)e(is)h(di\016cult)f(to)h +(\014nd)e(what)h(the)g(real)2049 5275 y(explanation)19 +b(is.)33 b(The)19 b(only)g(other)f(remark)g(w)n(e)i(ha)n(v)n(e)e(on)h +(our)f(results)p 2049 5328 V 2103 5382 a Fv(10)2168 5407 +y Fr(This)37 b(apparen)n(tly)e(strange)h(b)r(eha)n(viour)f(observ)n(ed) +h(indep)r(enden)n(tly)c(b)n(y)2049 5471 y(Bro)r(c)n(kington[5)o(])17 +b(can)g(b)r(e)f(explained)f(b)n(y)i(the)g(fact)f(that)h(w)n(e)h(use)e +(high)h(lev)n(el)f(lan-)2049 5535 y(guages)23 b(in)g(whic)n(h)g(pro)r +(cedure)e(stac)n(ks)j(use)f(are)h(m)n(uc)n(h)e(more)h(optimised)f(than) +2049 5599 y(indexed)d(arra)n(ys)j(use.)29 b(Similar)20 +b(results)h(can)g(b)r(e)f(observ)n(ed)h(for)g(the)g(Quic)n(ksort)2049 +5662 y(algorithms)h(\(see)f([24],)h(page)g(100\).)p eop +%%Page: 6 6 +6 5 bop -150 83 a Fx(is)21 b(that)g(the)f(searc)n(h)i(o)n(v)n(erheads)e +(are)i(greater)f(with)g(ABD)n(AD)n(A)e(than)-150 166 +y(with)h(YBW)n(C,)f(whic)n(h)h(is)f(easily)i(explained)e(b)n(y)f(the)h +(fact)h(that)f(in)g(the)-150 249 y(YBW)n(C)30 b(searc)n(h)g(there)f(is) +h(sharing)g(of)g Fw(\013\014)k Fx(windo)n(w)d(impro)n(v)n(emen)n(t)-150 +332 y(during)24 b(the)h(searc)n(h.)34 b(When)24 b(a)h(pro)r(cessor)i +(\014nishes)d(the)h(ev)l(aluation)-150 415 y(of)35 b(a)f(c)n(hild)g(of) +h(a)g(p)r(osition)g Fw(P)11 b Fx(,)36 b(the)e(o)n(wner)g(of)h(the)f(p)r +(osition)h(ma)n(y)-150 498 y(distribute,)28 b(if)g(needed,)f(the)g(new) +g(b)r(ounds)f(on)i(the)e Fw(\013\014)32 b Fx(windo)n(w)c(to)-150 +581 y(his)h(sla)n(v)n(es.)227 549 y Fv(11)334 581 y Fx(ABD)n(AD)n(A)d +(do)r(es)j(not)f(share)h(windo)n(ws,)h(so)f(in)f(the)-150 +664 y(situation)i(describ)r(ed)g(in)g(Figure)g(7,)h(YBW)n(C)f(will)h +(examine)e(few)n(er)-150 747 y(no)r(des)i(than)g(ABD)n(AD)n(A.)f(New)h +(b)r(ounds)g(are)g(distributed)g(only)g(if)-150 830 y(the)f(eldest)g +(mo)n(v)n(e)f(of)i(the)e(p)r(osition)i Fw(P)41 b Fx(is)31 +b(not)f(the)f(b)r(est)h(one,)i(\(i.e.)-150 913 y(the)25 +b(tree)h(is)g(not)g(v)n(ery)f(w)n(ell)h(ordered\).)150 +1118 y Fh(B)178 1201 y(B)205 1284 y(B)233 1367 y(B)261 +1450 y(B)288 1533 y(B)316 1616 y(B)344 1699 y(B)371 1782 +y(B)399 1865 y(B)422 1934 y(B)150 1118 y(E)164 1201 y(E)178 +1284 y(E)191 1367 y(E)205 1450 y(E)219 1533 y(E)233 1616 +y(E)247 1699 y(E)261 1782 y(E)274 1865 y(E)286 1934 y(E)140 +1037 y Fz(.)119 1101 y(.)97 1165 y(.)76 1229 y(.)54 1294 +y(.)33 1358 y(.)12 1422 y(.)-10 1486 y(.)-31 1551 y(.)-53 +1615 y(.)-74 1679 y(.)-96 1744 y(.)-117 1808 y(.)-138 +1872 y(.)-160 1936 y(.)136 1118 y Fh(\005)122 1201 y(\005)108 +1284 y(\005)95 1367 y(\005)81 1450 y(\005)67 1533 y(\005)53 +1616 y(\005)39 1699 y(\005)25 1782 y(\005)12 1865 y(\005)0 +1934 y(\005)p 147 1934 7 900 v 262 1147 a Fz(P)n(osition)h(P)-7 +b(,)27 b(windo)n(w)g(=)g([)p Fg(\013;)14 b(\014)t Fz(])-150 +2122 y Ff(Done)112 b Fg(P)203 2134 y Fi(i)263 2122 y +Fe(returns)32 b Fg(v)-150 2288 y Fx(Figure)18 b(7:)31 +b(Situation)18 b(where)f(YBW)n(C)h(examines)f(few)n(er)i(no)r(des)e +(than)-150 2371 y(ABD)n(AD)n(A.)-150 2537 y Fs(L)l(et's)35 +b(supp)l(ose)h(that)f(the)g(childr)l(en)g(of)f(the)h(p)l(osition)g +Fu(P)k Fs(ar)l(e)c(b)l(eing)-150 2620 y(evaluate)l(d)29 +b(by)g(some)f(pr)l(o)l(c)l(essors)j(\(the)d(eldest)h(son)g(of)e +Fu(P)33 b Fs(is)28 b(alr)l(e)l(ady)-150 2703 y(explor)l(e)l(d)35 +b(by)f(b)l(oth)h(YBWC)e(and)h(ABD)n(AD)n(A\))g(and)g(the)g(pr)l(o)l(c)l +(essor)-150 2786 y(examining)e Fw(P)272 2794 y Fd(i)329 +2786 y Fs(r)l(eturns)i(a)e(value)g Fw(v)i Fs(that)f(wil)t(l)d(c)l(ause) +j(the)f(pruning)-150 2869 y(of)21 b(the)i(p)l(osition)g +Fu(P)k Fs(\(i.e.)33 b(when)22 b Fw(v)i Fu(\025)d Fw(\014)t +Fs(\).)34 b(In)21 b(this)i(situation)g(YBWC)-150 2952 +y(wil)t(l)28 b(c)l(ause)j(the)f(pruning)g(\(making)g(them)g(id)t(le\))f +(of)g(the)h(other)h(pr)l(o-)-150 3035 y(c)l(essors)22 +b(examining)e(other)i(childr)l(en)e(of)g Fu(P)26 b Fs(wher)l(e)l(as)c +(ABD)n(AD)n(A)d(wil)t(l)-150 3118 y(c)l(ontinue)29 b(the)f(explor)l +(ation)h(of)e(these)i(childr)l(en.)-35 3300 y Fx(F)-6 +b(rom)38 b(these)h(results)h(and)e(our)h(exp)r(erience,)k(w)n(e)d(can)f +(de\014ne)-150 3383 y(when)f(to)f(c)n(ho)r(ose)i(eac)n(h)f(of)g(the)f +(algorithms)i(dep)r(ending)e(on)g(the)-150 3466 y(goal)27 +b(and)e(the)h(means:)-112 3645 y Fj(YBW)n(C:)80 3779 +y(Adv)-5 b(an)n(tages:)278 3898 y Fu(\017)39 b Fx(W)-6 +b(orks)25 b(without)h(transp)r(osition)h(table.)278 3999 +y Fu(\017)39 b Fx(W)-6 b(orks)25 b(with)h(global)h(transp)r(osition)g +(tables.)278 4101 y Fu(\017)39 b Fx(W)-6 b(orks)25 b(with)h(lo)r(cal)h +(transp)r(osition)g(tables.)278 4202 y Fu(\017)39 b Fx(E\016cien)n(t)25 +b(for)i(deep)e(problems.)278 4303 y Fu(\017)39 b Fx(Can)46 +b(b)r(e)g(optimised)f(as)i(function)f(of)h(mac)n(hine)355 +4386 y(top)r(ology[7)q(].)80 4505 y Fj(Dra)n(wbac)n(ks:)278 +4625 y Fu(\017)39 b Fx(Complex)18 b(to)h(implemen)n(t:)29 +b(Ev)n(en)19 b(with)g(the)g(de\014ni-)355 4708 y(tion)27 +b(giv)n(en)f(in)h([7)q(],)g(it)g(is)h(di\016cult)e(to)h(ensure)g(that) +355 4791 y(the)35 b(basic)h(master-sla)n(v)n(e)f(relationship)i(is)f(w) +n(ork-)355 4874 y(ing)45 b(prop)r(erly)-6 b(.)91 b(The)44 +b(debugging)h(part)g(of)g(the)355 4957 y(sc)n(heme)33 +b(is)i(long,)i(mainly)c(b)r(ecause)i(of)g(the)f(non-)355 +5040 y(deterministic)28 b(nature)g(of)i(W)-6 b(ork)28 +b(Stealing)h(based)355 5123 y(Pro)r(cess.[5)r(])278 5224 +y Fu(\017)39 b Fx(Since)48 b(the)g(searc)n(h)h(algorithm)f(m)n(ust)f(b) +r(e)i(non-)355 5307 y(recursiv)n(e,)20 b(it)e(is)g(di\016cult)g(to)h +(implemen)n(t)d(the)h(same)355 5390 y(heuristics)26 b(as)g(in)g(the)f +(sequen)n(tial)h(programs.)p -150 5456 801 4 v -96 5510 +a Fv(11)-31 5535 y Fr(It)20 b(should)f(b)r(e)f(noted)h(that)g(this)h +(feature)e(of)h(the)g(YBW)n(C)i(is,)f(in)f(m)n(y)h(mind,)-150 +5599 y(the)e(main)f(di\013erence)g(with)h(PVSplit)f(based)h(searc)n +(hes[14)o(,)h(16,)f(17,)h(15,)f(21)q(,)g(10])-150 5663 +y(or)k(Jam)n(b)r(oree[11)o(].)2477 83 y Fu(\017)39 b +Fx(Non-e\016cien)n(t)25 b(for)h(small)g(size)h(problems.)2087 +211 y Fj(ABD)n(AD)n(A:)2279 338 y(Adv)-5 b(an)n(tages:)2477 +453 y Fu(\017)39 b Fx(Easy)24 b(and)g(quic)n(k)g(to)g(implemen)n(t:)32 +b(As)24 b(w)n(e)h(can)f(see)2554 536 y(on)f(Figure)h(1,)h(the)e(main)g +(algorithm)h(is)g(v)n(ery)f(close)2554 620 y(to)18 b(sequen)n(tial)g +(algorithms,)i(so)f(few)g(mo)r(di\014cations)2554 703 +y(are)26 b(necessary)-6 b(.)2477 802 y Fu(\017)39 b Fx(E\016cien)n(t)25 +b(for)i(small)f(and)f(deep)g(problems.)2477 901 y Fu(\017)39 +b Fx(F)-6 b(ailure)19 b(resistan)n(t:)33 b(it)19 b(is)h(v)n(ery)e(easy) +i(to)g(c)n(hange)f(the)2554 984 y(algorithm)27 b(to)g(b)r(e)g(failure)h +(resistan)n(t)g(\(i.e.)39 b(to)28 b(giv)n(e)2554 1067 +y(an)c(answ)n(er)i(ev)n(en)e(if)i(one)f(or)g(more)g(pro)r(cessors)h +(are)2554 1150 y(dead\),)e(y)n(ou)f(only)h(ha)n(v)n(e)f(to)h(put)f(a)h +(time-out)f(when)2554 1233 y(w)n(aiting)35 b(for)g(transp)r(osition)h +(table)f(answ)n(ers)g(and)2554 1316 y(then)20 b(y)n(ou)h(ha)n(v)n(e)f +(an)h(algorithm)h(whic)n(h)f(will)i(return)2554 1399 +y(an)34 b(answ)n(er)i(ev)n(en)e(when)g(only)h(one)f(pro)r(cessor)i(is) +2554 1482 y(presen)n(t)25 b(!)2279 1597 y Fj(Dra)n(wbac)n(ks:)2477 +1712 y Fu(\017)39 b Fx(Needs)27 b(a)i(v)n(ery)e(fast)i(global)g(transp) +r(osition)g(table.)2554 1795 y(This)23 b(is)g(where)h(all)f(the)g +(implemen)n(tation)e(e\013ort)i(is)2554 1878 y(made)c(to)h(ensure)f +(that)h(transp)r(osition)h(table)f(man-)2554 1961 y(agemen)n(t)25 +b(is)h(fast)g(enough)g(for)h(this)e(algorithm.)2477 2060 +y Fu(\017)39 b Fx(Needs)33 b(to)h(b)r(e)f(rede\014ned)g(in)h(order)g +(to)f(tak)n(e)h(in)n(to)2554 2143 y(accoun)n(t)21 b(situations)h(suc)n +(h)e(as)i(those)f(of)h(\014gure)f(7.)3984 2112 y Fv(12)2164 +2319 y Fx(So)33 b(YBW)n(C)g(is)g(our)g(c)n(hoice)h(if)f(the)g(computer) +e(is)j(not)e(able)i(to)2049 2402 y(giv)n(e)27 b(us)g(v)n(ery)f(fast)i +(message)g(passing)g(\(for)f(small)h(messages\))f(suc)n(h)2049 +2485 y(as)33 b(a)f(net)n(w)n(ork)g(of)h(w)n(orkstations,)j(and)c(ABD)n +(AD)n(A)e(is)j(our)f(c)n(hoice)2049 2568 y(on)e(shared)f(memory)f(or)i +(real)g(fast)g(small)g(message)g(passing)h(com-)2049 +2651 y(puters.)66 b(On)36 b(those)h(computers)e(and)h(ha)n(ving)g +(enough)g(time)g(for)2049 2734 y(implemen)n(tation,)h(w)n(e)g(prop)r +(ose)f(to)g(\014rst)g(implemen)n(t)e(ABD)n(AD)n(A)2049 +2817 y(to)22 b(v)n(erify)g(its)g(e\016ciency)g(and,)h(if)f(it)g(is)g +(not)g(as)h(e\016cien)n(t)f(as)g(required,)2049 2900 +y(to)37 b(implemen)n(t)d(YBW)n(C,)j(not)g(b)r(eing)g(certain)g(that)f +(this)h(will)h(b)r(e)2049 2983 y(more)22 b(e\016cien)n(t)g(but)f(to)i +(ensure)f(y)n(ou)f(ha)n(v)n(e)h(not)g(ignored)h(reasonable)2049 +3066 y(alternativ)n(es)j(to)g(ABD)n(AD)n(A.)2049 3326 +y Fy(5)100 b(APPLICA)-8 b(TION)33 b(ON)h(A)f(128-PE)g(CRA)-8 +b(Y)33 b(T3D)2049 3547 y Fx(After)i(doing)g(this)g(comparison,)i(w)n(e) +f(had)e(to)h(implemen)n(t)e(a)i(new)2049 3630 y(c)n(hess)c(program)g +(named)f(F)-6 b(renc)n(hess)31 b(on)h(a)f(128-PE)h(CRA)-6 +b(Y)30 b(T3D.)2049 3713 y(This)c(program)f(\014nished)g(equal)g(third)g +(of)h(a)g(\014eld)f(of)h(24)h(at)e(the)g(8th)2049 3796 +y(W)-6 b(orld)27 b(Computer)e(Chess)j(Championship)e(in)h(Hong)f(Kong)h +(\(Ma)n(y)2049 3879 y(25)35 b({)f(Ma)n(y)g(30)g(1995\).)61 +b(Since)34 b(w)n(e)g(b)r(egan)g(to)g(p)r(ort)g(F)-6 b(renc)n(hess)34 +b(to)2049 3962 y(the)27 b(CRA)-6 b(Y)26 b(T3D)i(in)f(F)-6 +b(ebruary)g(,)27 b(w)n(e)h(had)f(v)n(ery)f(little)i(time)f(b)r(efore) +2049 4045 y(the)c(W)-6 b(orld)22 b(Championship,)i(so)f(w)n(e)h(c)n +(hose)f(to)g(use)g(ABD)n(AD)n(A)e(as)j(a)2049 4128 y(parallel)j(sc)n +(heme.)2164 4275 y(On)k(the)g(CM5)h(computer,)g(shared)g(memory)d(w)n +(as)j(sim)n(ulated,)2049 4358 y(eac)n(h)25 b(pro)r(cessor)i(b)r(eing)e +(in)g(c)n(harge)h(of)g(a)f(part)g(of)h(the)f(global)h(trans-)2049 +4442 y(p)r(osition)33 b(table;)k(w)n(e)c(had)f(to)g(rely)h(on)f(the)g +(activ)n(e)h(message)g(la)n(y)n(er)2049 4525 y(to)c(get)f(some)g(v)n +(ery)g(go)r(o)r(d)h(p)r(erformance)g(whic)n(h)f(pure)g(CMMD[22)r(])2049 +4608 y(could)e(not)f(giv)n(e)h(us)g(otherwise.)2164 4755 +y(This)33 b(metho)r(d)e(of)i(shared)g(memory)d(sim)n(ulation)j(has)f +(the)g(ad-)2049 4838 y(v)l(an)n(tage)k(of)h(making)f(sim)n(ultaneous)g +(accesses)i(to)e(a)h(same)f(en)n(try)p 2049 4896 V 2103 +4950 a Fv(12)2168 4975 y Fr(There)22 b(are)f(basically)h(t)n(w)n(o)h(w) +n(a)n(ys)g(to)g(solv)n(e)f(this:)2104 5055 y Fc({)38 +b Fr(T)-5 b(o)23 b(sto)r(c)n(k)g(in)f(the)h(transp)r(osition)f(table,)g +(not)h(only)f(the)h(n)n(um)n(b)r(er)e(of)i(pro-)2180 +5119 y(cessors)18 b(but)g(also)i(whic)n(h)e(pro)r(cessors)g(are)g +(curren)n(tly)f(ev)l(aluating)h(a)h(giv)n(en)2180 5183 +y(p)r(osition,)26 b(so)h(that)f(w)n(e)h(can)f(distribute)f(the)g(new)h +(windo)n(ws)i(b)r(ounds)d(to)2180 5247 y(all)d(concerned)d(pro)r +(cessors.)2104 5327 y Fc({)38 b Fr(T)-5 b(o)19 b(c)n(hec)n(k,)f(when)h +(\014nishing)f(the)g(ev)l(aluation)h(of)g(a)g(no)r(de,)g(that)g(its)g +(paren)n(t)2180 5391 y(no)r(de)j(has)h(not)g(b)r(een)f(pruned)g(\(i.e.) +31 b(b)n(y)23 b(lo)r(oking)g(up)g(the)f(corresp)r(onding)2180 +5455 y(en)n(try)f(in)h(the)f(transp)r(osition)h(table\).)2049 +5535 y(The)g(latter)f(metho)r(d)g(is)h(the)f(easiest)h(to)g(implemen)n +(t)e(but)h(this)h(only)g(partially)2049 5599 y(solv)n(es)30 +b(the)e(problem)g(while)g(the)h(former)f(will)h(require)f(more)h +(fundamen)n(tal)2049 5662 y(mo)r(di\014cations)20 b(of)i(the)g(searc)n +(h)f(pro)r(cess.)p eop +%%Page: 7 7 +7 6 bop -150 83 a Fx(imp)r(ossible)20 b(\(this)f(is)h(imp)r(ortan)n(t)e +(to)i(ensure)f(that)g(ABD)n(AD)n(A)e(w)n(orks)-150 166 +y(correctly)-6 b(,)28 b(i.e.)38 b(that)27 b(the)f(n)n(um)n(b)r(er)f(of) +j(pro)r(cessors)g(is)f(correct)h(for)g(a)-150 249 y(giv)n(en)e(transp)r +(osition)g(table)g(en)n(try\).)-35 396 y(In)20 b(an)h(adaptation)h(of)f +(F)-6 b(renc)n(hess)21 b(for)h(a)f(CRA)-6 b(Y)20 b(SUN)f(CS)i(6400,) +-150 479 y(w)n(e)e(used)g(shared)f(memory)f(with)i(m)n(utex)e(\(m)n +(utual)g(exclusion\))i(lo)r(c)n(ks)-150 562 y(to)k(guaran)n(tee)g(the)f +(exclusiv)n(e)h(access)h(to)f(eac)n(h)g(transp)r(osition)h(table)-150 +645 y(en)n(try)-6 b(.)32 b(Precise)25 b(measuremen)n(t)d(of)i(the)f(sp) +r(eedup)f(w)n(as)j(not)e(p)r(ossible)-150 729 y(on)h(this)f(mac)n(hine) +378 697 y Fv(13)466 729 y Fx(but)g(it)g(lo)r(ok)n(ed)h(v)n(ery)f(m)n +(uc)n(h)f(lik)n(e)h(what)h(w)n(e)g(had)-150 812 y(seen)35 +b(on)h(the)f(CM5)h(ev)n(en)f(though)g(single)h(pro)r(cessor)h(sp)r(eed) +e(w)n(as)-150 895 y(around)25 b(four)i(times)e(greater.)-35 +1042 y(On)20 b(the)g(CRA)-6 b(Y)19 b(T3D,)i(w)n(e)g(used)g(the)f(SHMEM) +g(library[1)q(])h(after)-150 1125 y(w)n(e)31 b(found)g(ho)n(w)g(to)f +(ensure)h(m)n(utual)e(exclusion)i(with)g(the)g(help)f(of)-150 +1208 y(the)25 b Ft(shmem)p 182 1208 24 4 v 30 w(swap)h +Fx(call[2)r(].)-35 1355 y(Single)c(PE)f(p)r(erformance)g(on)g(the)f +(T3D)i(w)n(as)g(a)f(big)g(disapp)r(oin)n(t-)-150 1438 +y(men)n(t)h(for)j(us)f(:)34 b(on)24 b(a)g(50)g(MHz)g(SP)-6 +b(AR)n(C)23 b(10)i(\(or)f(a)g(single)h(pro)r(cessor)-150 +1521 y(of)e(the)f(CRA)-6 b(Y)20 b(CS6400\),)25 b(the)d(sequen)n(tial)g +(algorithm)g(w)n(as)h(visiting)-150 1604 y(around)32 +b(20000-25000)k(p)r(ositions)e(p)r(er)f(second.)55 b(W)-6 +b(e)32 b(had)g(similar)-150 1687 y(b)r(enc)n(hmarks)22 +b(on)i(a)g(150)h(MHz)f(DEC)g(Alpha)f(station.)35 b(But,)25 +b(on)e(the)-150 1770 y(CRA)-6 b(Y)21 b(T3D,)i(the)f(sp)r(eed)g(on)h +(one)f(PE)h(w)n(as)g(only)f(in)g(the)g(7000-9000)-150 +1853 y(p)r(ositions/second)35 b(range)f(!)57 b(Probably)-6 +b(,)36 b(this)d(p)r(o)r(or)h(p)r(erformance)-150 1936 +y(w)n(as)27 b(due)e(to)h(t)n(w)n(o)g(problems)f(:)-56 +2104 y(1.)39 b(cac)n(he)30 b(problems)e(:)42 b(cac)n(he)30 +b(to)r(o)g(small)g(and)f(cac)n(he)g(in)n(v)l(alida-)42 +2187 y(tion,)-56 2295 y(2.)39 b(p)r(o)r(or)26 b(optimisations)h(from)e +(the)h(compiler.)-35 2462 y(Nev)n(ertheless)31 b(and)g(despite)g(the)g +(fact)h(that)f(w)n(e)h(did)e(not)i(ha)n(v)n(e)-150 2545 +y(enough)21 b(CPU)h(time)447 2513 y Fv(14)532 2545 y +Fx(to)g(complete)f(all)h(the)f(tests)h(to)f(compute)f(the)-150 +2628 y(sp)r(eedup,)28 b(parallel)i(p)r(erformances)e(w)n(ere)g(great)h +(:)39 b(to)28 b(ha)n(v)n(e)f(results)-150 2711 y(comparable)35 +b(to)f(those)h(w)n(e)g(obtained)g(on)f(the)g(CM5,)k(w)n(e)d(used)g(a) +-150 2794 y(searc)n(h)26 b(with)g(a)g(simple)f(ev)l(aluation,)i(no)f +(extensions)g(except)f(c)n(hec)n(k)-150 2877 y(extensions,)h(no)g +(futilit)n(y)g(cutt-o\013s)f(and)g(no)h(n)n(ull)f(mo)n(v)n(e)g +(pruning.)p -139 3065 1979 4 v -141 3139 4 75 v -89 3117 +a Fl(Depth)p 262 3139 V 272 w Fo(3)p 487 3139 V 190 w(4)p +712 3139 V 190 w(5)p 938 3139 V 190 w(6)p 1163 3139 V +190 w(7)p 1388 3139 V 190 w(8)p 1613 3139 V 190 w(9)p +1838 3139 V -139 3143 1979 4 v -141 3217 4 75 v -89 3195 +a Fl(Sp)r(eedup)p 262 3217 V 102 w Fo(1.36)p 487 3217 +V 100 w(3.07)p 712 3217 V 100 w(5.75)p 938 3217 V 100 +w(12.9)p 1163 3217 V 100 w(23.3)p 1388 3217 V 100 w(41.2)p +1613 3217 V 100 w(65.9)p 1838 3217 V -139 3221 1979 4 +v -150 3443 a Fx(T)-6 b(able)18 b(1:)31 b(Sp)r(eedup)16 +b(for)j(a)e(128-PE)i(CRA)-6 b(Y)16 b(T3D)i(compared)f(to)h(1PE)-150 +3526 y(with)34 b(128)h(times)e(smaller)i(transp)r(osition)g(table)f(on) +g(the)f(Bratk)n(o-)-150 3609 y(Kop)r(ec)26 b(p)r(ositions.)-35 +3783 y(Due)34 b(to)g(the)g(short)g(time,)i(w)n(e)f(did)e(the)h(\014rst) +g(test)g(without)h(a)-150 3866 y(constan)n(t)25 b(n)n(um)n(b)r(er)d(of) +j(transp)r(osition)h(table)f(en)n(tries)f(:)34 b(when)25 +b(using)-150 3949 y(128)f(pro)r(cessors)g(w)n(e)g(had)e(128)i(more)e +(en)n(tries)h(\(1M)h(en)n(tries)f(p)r(er)f(pro-)-150 +4032 y(cessor\))29 b(than)e(when)h(using)f(only)h(one)g(pro)r(cessor.) +42 b(T)-6 b(able)28 b(1)g(sho)n(ws)-150 4115 y(that)36 +b(in)g(those)h(conditions,)j(at)c(depth)g(9,)j(w)n(e)e(ha)n(v)n(e)f(an) +g(a)n(v)n(erage)-150 4198 y(absolute)26 b(sp)r(eedup)f(of)h(65.9)i(on)d +(the)g(24)i(Bratk)n(o-Kop)r(ec)e(p)r(ositions.)-150 4281 +y(During)d(real)i(games,)g(where)f(eac)n(h)g(pla)n(y)n(er)g(has)g(2)g +(hours)g(to)g(pla)n(y)f(40)-150 4364 y(mo)n(v)n(es,)i(F)-6 +b(renc)n(hess)25 b(searc)n(hes)g(most)f(p)r(ositions)i(to)f(depth)e +(10,)j(11)g(or)-150 4447 y(12)i(and)e(ev)n(en)g(more)g(in)h +(simpli\014ed)f(endgames.)38 b(W)-6 b(e)26 b(did)h(not)g(ha)n(v)n(e) +-150 4530 y(enough)k(time)f(to)i(compute)e(the)g(p)r(ositions)j(on)e +(one)g(pro)r(cessor)i(at)-150 4613 y(depth)28 b(10,)j(so)f(w)n(e)f +(compared)g(the)f(relativ)n(e)i(sp)r(eedup)e(of)i(128)g(pro-)-150 +4696 y(cessors)g(compared)e(to)h(32)g(with)f(a)h(constan)n(t)g(transp)r +(osition)h(table)-150 4779 y(in)c(table)g(2.)-35 4926 +y(Since)17 b(the)g(sp)r(eedup)g(for)h(32)g(pro)r(cessors)h(with)e(a)h +(constan)n(t)f(trans-)-150 5009 y(p)r(osition)42 b(table)g(size)h(is)f +(ab)r(out)f(28)h(at)g(depth)e(9)i(and)f(that)g(the)p +-150 5060 801 4 v -96 5114 a Fv(13)-31 5139 y Fr(The)16 +b(only)h(w)n(a)n(y)g(w)n(ould)f(ha)n(v)n(e)h(b)r(een)e(to)h(mak)n(e)g +(sure)g(that)h(nob)r(o)r(dy)e(else)h(used)-150 5203 y(the)23 +b(same)h(partition)f(as)h(F)-5 b(renc)n(hess.)32 b(W)-5 +b(e)23 b(did)h(not)f(try)h(to)g(negotiate)f(this)h(as)-150 +5267 y(w)n(e)h(knew)f(w)n(e)h(w)n(ould)f(b)r(e)g(mo)n(ving)g(to)h(the)f +(T3D)h(so)r(on)g(and)f(the)g(CS6400)h(w)n(as)-150 5330 +y(rather)c(hea)n(vily)h(used.)-96 5382 y Fv(14)-31 5407 +y Fr(T)-5 b(o)16 b(complete)d(our)i(test,)h(for)f(example)e(computing)h +(the)g(sp)r(eedup)f(at)j(depth)-150 5471 y(10,)j(w)n(e)g(w)n(ould)g(ha) +n(v)n(e)f(had)g(to)g(use)h(the)e(whole)h(mac)n(hine)f(for)h(sev)n(eral) +g(hours)h(just)-150 5535 y(to)f(measure)f(the)g(p)r(erformance)e(of)j +(one)f(pro)r(cessor.)27 b(Our)18 b(problem)e(\(the)h(w)n(orld)-150 +5599 y(Championship\))26 b(b)r(eing)g(a)i(short)f(term)g(practical)f +(one,)i(w)n(e)f(sp)r(en)n(t)g(mac)n(hine)-150 5663 y(time)21 +b(in)h(a)g(more)g(useful)f(w)n(a)n(y)-5 b(.)p 2079 82 +1942 4 v 2077 132 4 50 v 2128 117 a Fb(Depth)p 2410 132 +V 236 w Fq(3)p 2611 132 V 173 w(4)p 2812 132 V 173 w(5)p +3013 132 V 173 w(6)p 3214 132 V 173 w(7)p 3415 132 V +173 w(8)p 3616 132 V 173 w(9)p 3818 132 V 145 w(10)p +4019 132 V 2079 135 1942 4 v 2077 185 4 50 v 2128 170 +a Fb(Sp)r(eedup)p 2410 185 V 98 w Fq(1.05)p 2611 185 +V 100 w(1.13)p 2812 185 V 101 w(1.23)p 3013 185 V 100 +w(1.22)p 3214 185 V 100 w(1.49)p 3415 185 V 100 w(1.98)p +3616 185 V 100 w(2.62)p 3818 185 V 100 w(2.68)p 4019 +185 V 2079 188 1942 4 v 2049 411 a Fx(T)f(able)31 b(2:)44 +b(Relativ)n(e)31 b(Sp)r(eedup)e(for)i(a)g(128-PE)h(CRA)-6 +b(Y)29 b(T3D)i(com-)2049 494 y(pared)24 b(to)g(a)h(32-PE)g(CRA)-6 +b(Y)22 b(T3D)j(with)f(a)h(constan)n(t)f(transp)r(osition)2049 +577 y(table)i(size.)2049 851 y(sp)r(eedup)34 b(is)i(increasing)g(with)f +(searc)n(h)g(depth,)i(w)n(e)e(can)g(exp)r(ect)g(a)2049 +934 y(sp)r(eedup)40 b(sup)r(erior)g(to)h(75)g(for)g(128)g(PEs)g(for)g +(depth)e(10.)79 b(This)2049 1017 y(sho)n(ws)21 b(clearly)g(that)g(ABD)n +(AD)n(A)d(is)j(v)n(ery)e(e\016cien)n(t)i(on)f(the)g(program)2049 +1100 y(F)-6 b(renc)n(hess)26 b(for)g(a)g(128-PE)h(CRA)-6 +b(Y)24 b(T3D.)2049 1441 y Fy(6)100 b(CONCLUSION)2049 +1679 y Fx(W)-6 b(e)38 b(ha)n(v)n(e)g(describ)r(ed)h(a)f(new)h +(parallelism)h(sc)n(heme)e(e\016cien)n(t)g(for)2049 1762 +y(minimax)18 b(searc)n(h.)33 b(W)-6 b(e)20 b(ha)n(v)n(e)g(sho)n(wn)g +(that)g(under)f(some)h(conditions)2049 1845 y(this)26 +b(new)g(sc)n(heme)f(can)g(b)r(e)h(more)f(e\016cien)n(t)h(than)f(YBW)n +(C.)2164 1992 y(Doing)j(all)h(those)f(comparisons)g(on)f(the)g(same)h +(computers)e(us-)2049 2075 y(ing)g(the)f(same)h(co)r(de,)g(w)n(e)g(ha)n +(v)n(e)f(sho)n(wn)h(that)g(comparisons)g(of)g(par-)2049 +2158 y(allel)38 b(algorithms)f(are)h(only)e(v)l(alid)h(for)g(the)g(giv) +n(en)f(problem)g(\(i.e.)2049 2241 y(the)28 b(nature)g(of)h(the)f(game,) +h(the)f(algorithms,)i(and)e(the)g(ev)l(aluation)2049 +2324 y(function\))35 b(on)g(a)g(giv)n(en)g(computer.)62 +b(There)35 b(is)h(no)f(p)r(ossible)h(w)n(a)n(y)2049 2407 +y(to)29 b(sa)n(y)-6 b(,)29 b(giv)n(en)f(one)h(comparison,)g(on)g +(whatev)n(er)f(problem)g(and)g(on)2049 2490 y(whatev)n(er)i(computer)e +(an)i(algorithm)g(is)g(univ)n(ersally)g(b)r(etter)f(than)2049 +2573 y(all)e(others.)2164 2720 y(F)-6 b(urthermore,)32 +b(the)f(analysis)h(done)f(of)i(the)d(CRA)-6 b(Y)30 b(T3D,)j(de-)2049 +2803 y(spite)e(the)g(lac)n(k)g(of)h(CPU)f(time,)g(sho)n(w)n(ed)h(that)e +(ABD)n(AD)n(A)f(is)j(still)2049 2886 y(v)n(ery)25 b(e\016cien)n(t)g +(with)h(128)h(pro)r(cessors.)2164 3034 y(W)-6 b(e)32 +b(w)n(ould)g(lik)n(e)g(to)g(con)n(tin)n(ue)g(this)g(w)n(ork)g(in)g +(order)g(to)g(giv)n(e)h(a)2049 3117 y(comparison)i(of)h(ABD)n(AD)n(A)d +(and)h(YBW)n(C,)h(using)h(the)e(measures)2049 3200 y(of)24 +b Fs(critic)l(al-p)l(ath)j(length)k Fx(and)23 b Fs(work)j(p)l(erforme)l +(d)8 b Fx([12)r(],)24 b(to)g(ha)n(v)n(e)e(more)2049 3283 +y(predictiv)n(e)e(p)r(o)n(w)n(er)g(on)g(the)f(b)r(eha)n(viour)h(of)h +(those)f(algorithms.)33 b(This,)2049 3366 y(done)23 b(on)f(t)n(w)n(o)i +(di\013eren)n(t)e(games,)i(ma)n(y)d(help)i(us)f(understand)g(b)r(etter) +2049 3449 y(the)j(parallel)j(searc)n(hes.)2164 3596 y(Probably)e(ABD)n +(AD)n(A)e(is)i(only)g(a)g(small)g(step)g(to)n(w)n(ard)g(the)f(def-)2049 +3679 y(inition)42 b(of)g(future)f(parallel)i(algorithms,)j(but)41 +b(when)g(designing)2049 3762 y(them,)28 b(w)n(e)i(should)e(k)n(eep)g +(in)h(mind)f(the)g(p)r(o)n(w)n(er)h(of)h(a)f(global)h(trans-)2049 +3845 y(p)r(osition)d(table.)2049 4178 y Fy(6.1)100 b(A)m(CKNO)m +(WLEDGEMENTS)2049 4390 y Fx(Thanks)30 b(to)h(Marc-F)-6 +b(ran\030)-34 b(cois)32 b(Baudot)f(for)g(his)g(great)g(help)f(on)g(the) +2049 4473 y(de\014nition)44 b(and)h(the)f(implemen)n(tation)f(of)j(the) +e(c)n(hess)h(program)2049 4556 y Fs(F)-6 b(r)l(enchess)6 +b Fx(.)2164 4704 y(Marc-F)-6 b(ran\030)-34 b(cois)67 +b(Baudot,)76 b(Mark)66 b(Bro)r(c)n(kington,)76 b(W)-6 +b(arren)2049 4787 y(Smith)33 b(and)g(Mic)n(hael)j(Buro)e(should)g(also) +i(b)r(e)e(thank)n(ed)f(for)i(their)2049 4870 y(help)25 +b(in)h(editing)g(the)f(do)r(cumen)n(t.)2164 5017 y(Thanks)44 +b(also)i(to)f(m)n(y)d(thesis)j(review)n(ers,)51 b(T)-6 +b(on)n(y)44 b(Marsland,)2049 5100 y(Jacques)33 b(Pitrat)g(and)g(Mic)n +(hel)g(Gondran)g(for)g(all)h(their)e(construc-)2049 5183 +y(tiv)n(e)25 b(criticism)h(on)g(Chapter)g(4)g(of)g(m)n(y)e(thesis.)2164 +5330 y(The)k(presen)n(t)f(w)n(ork)g(has)h(b)r(een)f(p)r(erformed)g(in)g +(the)g(framew)n(ork)2049 5413 y(of)f(the)f Fs(F)-6 b(r)l(enchess)34 +b Fx(pro)t(ject,)26 b(part)f(of)h(a)g(join)n(t)f(researc)n(h)h +(e\013ort)g(with)2049 5496 y(Electricit)n(\023)-36 b(e)28 +b(de)f(F)-6 b(rance)27 b(\(departmen)n(t)e(EDF/DER/TIEM/IMA\))2049 +5579 y(and)35 b(the)f(Arti\014cial)i(In)n(telligence)g(Institut)e(of)i +(the)f(univ)n(ersit)n(y)f(of)2049 5662 y(P)n(aris)27 +b(8.)p eop +%%Page: 8 8 +8 7 bop -150 83 a Fy(REFERENCES)-112 254 y Fx([1])40 +b Fa(Barriuso,)29 b(R.,)h(and)f(Knies,)g(A.)38 b Fs(SHMEM)28 +b(User's)h(Guide)8 337 y(R)l(evision)f(1.08)p Fx(.)34 +b(CRA)-6 b(Y)25 b(Researc)n(h)g(Inc,)h(April)f(1994.)-112 +449 y([2])40 b Fa(Ba)n(udot,)47 b(M.-F.,)g(Weill,)g(J.-C.,)h(Seret,)e +(J.-L.,)i(and)8 532 y(Gondran,)d(M.)75 b Fx(F)-6 b(renc)n(hess:)63 +b(A)39 b(Cra)n(y)h(T3D)g(at)g(the)f(8th)8 615 y(W)-6 +b(orld)20 b(Computer)f(Chess)i(Championship.)k(In)20 +b Fs(1st)j(Eur)l(op)l(e)l(an)8 708 y(Cr)l(ay-T3D)i(Workshop)i +Fx(\(Sept.)22 b(1995\),)1186 690 y(\023)1179 708 y(Ecole)h(P)n(olytec)n +(hnique)8 792 y(F)n(\023)-36 b(ed)n(\023)g(erale)26 b(de)g(Lausanne)g +(and)f(CRA)-6 b(Y)24 b(Researc)n(h.)-112 903 y([3])40 +b Fa(Berliner,)35 b(H.,)i(and)d(Ebeling,)j(C.)54 b Fx(P)n(attern)32 +b(kno)n(wledge)8 986 y(and)d(searc)n(h:)43 b(The)30 b(SUPREM)g(arc)n +(hitecture.)47 b Fs(A)n(rti\014cial)31 b(In-)8 1069 y(tel)t(ligenc)l(e) +d(38)p Fx(,)e(2)g(\(Mar.)h(1989\),)g(161{198.)-112 1181 +y([4])40 b Fa(Bra)-5 b(tk)n(o,)41 b(I.,)e(and)e(K)n(opec,)j(D.)61 +b Fx(A)34 b(test)h(for)h(comparison)8 1264 y(of)31 b(h)n(uman)e(and)h +(computer)g(p)r(erformance.)49 b(In)30 b Fs(A)l(dvanc)l(es)j(in)8 +1347 y(Computer)28 b(Chess)h(III)35 b Fx(\(1982\),)27 +b(M.)f(Clark)n(e,)h(Ed.,)f(P)n(ergamon)8 1430 y(Press,)h(pp.)e(31{56.) +-112 1541 y([5])40 b Fa(Br)n(ockington,)g(M.)59 b Fx(An)34 +b(implemen)n(tation)f(of)i(the)e(y)n(oung)8 1624 y(brothers)j(w)n(ait)g +(concept.)65 b(In)n(ternal)35 b(rep)r(ort,)k(Univ)n(ersit)n(y)c(of)8 +1707 y(Alb)r(erta,)26 b(1994.)-112 1819 y([6])40 b Fa(D)n(a)-7 +b(vid,)43 b(V.)71 b Fs(A)n(lgorithmique)39 b(p)l(ar)l(al)t(l)n(\022)-37 +b(ele)40 b(sur)g(les)f(arbr)l(es)i(de)8 1917 y(d)n(\023)-37 +b(ecision)31 b(et)g(r)l(aisonnement)h(en)f(temps)h(c)l(ontr)l(aint.) +1578 1898 y(\023)1567 1917 y(Etude)f(et)8 2000 y(applic)l(ation)41 +b(au)g(Minimax)p Fx(.)75 b(PhD)40 b(thesis,)k(ENSAE,)39 +b(No)n(v.)8 2083 y(1993.)-112 2194 y([7])h Fa(Feldmann,)c(R.)53 +b Fs(Spielb)l(aumsuche)35 b(mit)e(massiv)h(p)l(ar)l(al)t(lelen)8 +2277 y(Systemen)p Fx(.)52 b(PhD)31 b(thesis,)i(F)-6 b(ac)n(h)n(b)r +(ereic)n(h)31 b(Mathematik)g(/)g(In-)8 2360 y(formatik)25 +b({)h(Univ)n(ersit\177)-38 b(at)26 b(GH)f(P)n(aderb)r(orn,)i(1993.)-112 +2472 y([8])40 b Fa(Feldmann,)g(R.,)g(Monien,)f(B.,)h(Mysliwietz,)g(P.,) +h(and)8 2555 y(V)n(ornber)n(ger,)h(O.)67 b Fx(Distributed)36 +b(game)h(tree)g(searc)n(h.)68 b(In)8 2638 y Fs(Par)l(al)t(lel)20 +b(A)n(lgorithms)i(for)e(Machine)h(Intel)t(ligenc)l(e)g(and)g(Vision)8 +2721 y Fx(\(1990\),)g(V.)c(Kumar,)i(K.)f(L.N.,)i(and)d(P)-6 +b(.)18 b(F)-6 b(opalkrishman,)19 b(Eds.,)8 2804 y(Springer)25 +b(V)-6 b(erlag,)27 b(pp.)e(66{101.)-112 2915 y([9])40 +b Fa(Feldmann,)32 b(R.,)h(Mysliwietz,)g(P.,)h(and)d(V)n(ornber)n(ger,)8 +2998 y(O.)24 b Fx(A)19 b(lo)r(cal)i(area)f(net)n(w)n(ork)g(used)f(as)h +(as)g(parallel)h(arc)n(hitecture.)8 3081 y(T)-6 b(ec)n(h.)26 +b(Rep.)f(31,)i(Univ)n(ersit)n(y)d(of)j(P)n(aderb)r(orn,)f(Sept.)f +(1986.)-150 3193 y([10])40 b Fa(Hy)-5 b(a)g(tt,)35 b(M.,)g(Suter,)g +(B.,)g(and)f(Nelson,)h(H.)51 b Fx(A)31 b(parallel)8 3276 +y(alpha/b)r(eta)19 b(searc)n(hing)f(algorithm.)k Fs(Par)l(al)t(lel)e +(Computing)h(10)p Fx(,)8 3359 y(3)26 b(\(1989\),)h(299{308.)-150 +3470 y([11])40 b Fa(Kuszma)n(ul,)31 b(B.)41 b Fs(Synchr)l(onize)l(d)32 +b(MIMD)d(Computing)p Fx(.)42 b(PhD)8 3553 y(thesis,)25 +b(Departmen)n(t)e(of)i(Electrical)i(Engineering)e(and)g(Com-)8 +3636 y(puter)35 b(Science,)j(Massac)n(h)n(usetts)f(Institute)d(of)i(T) +-6 b(ec)n(hnology)g(,)8 3720 y(Ma)n(y)26 b(1994.)-150 +3831 y([12])40 b Fa(Kuszma)n(ul,)35 b(B.)51 b Fx(The)31 +b(StarT)-6 b(ec)n(h)31 b(massiv)n(ely-parallel)i(c)n(hess)8 +3914 y(program.)h Fs(ICCA)27 b(Journal)h(18)p Fx(,)f(1)f(\(Mar.)g +(1995\),)i(3{19.)-150 4026 y([13])40 b Fa(Marsland,)30 +b(T.)39 b Fx(A)27 b(review)h(of)g(game-tree)f(pruning.)40 +b Fs(ICCA)8 4109 y(Journal)28 b(9)p Fx(,)e(1)g(\(1986\),)i(3{19.)-150 +4220 y([14])40 b Fa(Marsland,)26 b(T.,)h(and)f(Campbell,)h(M.)32 +b Fx(P)n(arallel)26 b(searc)n(h)f(of)8 4303 y(strongly)j(ordered)f +(game)g(trees.)40 b Fs(Computing)29 b(Surveys)i(14)p +Fx(,)e(4)8 4386 y(\(1982\),)e(553{562.)-150 4498 y([15])40 +b Fa(Marsland,)d(T.,)g(Olafsson,)i(M.,)e(and)e(Schaeffer,)i(J.)8 +4581 y Fx(Multipro)r(cessor)23 b(tree-searc)n(h)f(exp)r(erimen)n(ts.)27 +b(In)21 b Fs(A)l(dvanc)l(es)k(in)8 4664 y(Computer)38 +b(Chess)g(IV)50 b Fx(\(1986\),)40 b(D.)c(Beal,)41 b(Ed.,)e(P)n(ergamon) +8 4747 y(Press,)27 b(pp.)e(37{51.)-150 4858 y([16])40 +b Fa(Marsland,)25 b(T.,)g(and)f(Popo)n(wich,)j(F.)h Fx(P)n(arallel)d +(game)d(tree)8 4941 y(searc)n(h.)71 b Fs(IEEE)38 b(T)-6 +b(r)l(ansactions)41 b(on)e(Pattern)h(A)n(nalysis)f(and)8 +5024 y(Machine)28 b(Intel)t(ligenc)l(e)g(7)p Fx(,)e(4)g(\(1985\),)h +(442{452.)-150 5136 y([17])40 b Fa(Newborn,)g(M.)60 b +Fx(Unsync)n(hronized)33 b(iterativ)n(ely)i(deep)r(ening)8 +5219 y(parallel)27 b(alpha-b)r(eta)g(searc)n(h.)35 b +Fs(IEEE)28 b(T)-6 b(r)l(ansactions)30 b(on)e(Pat-)8 5302 +y(tern)46 b(A)n(nalysis)f(and)g(Machine)h(Intel)t(ligenc)l(e)f(P)-6 +b(AMI-10)p Fx(,)50 b(5)8 5385 y(\(Sept.)25 b(1988\),)i(687{694.)-150 +5496 y([18])40 b Fa(Otto,)31 b(S.,)e(and)g(Fel)-5 b(ten,)29 +b(E.)39 b Fx(Chess)27 b(on)g(a)h(h)n(yp)r(ercub)r(e.)37 +b(In)8 5579 y Fs(The)30 b(Thir)l(d)g(Confer)l(enc)l(e)h(on)f(Hyp)l(er)l +(cub)l(e)i(Concurr)l(ent)g(Com-)8 5663 y(puters)d(and)f(Applic)l +(ations)33 b Fx(\(1988\),)27 b(v)n(ol.)f(2,)g(pp.)g(1329{1341.)2049 +83 y([19])40 b Fa(Pearl,)26 b(J.)j Fx(Asymptotic)21 b(prop)r(erties)i +(of)g(minimax)d(trees)j(and)2207 166 y(game-searc)n(hing)40 +b(pro)r(cedures.)75 b Fs(A)n(rti\014cial)40 b(Intel)t(ligenc)l(e)h(14) +2207 249 y Fx(\(1980\),)27 b(113{138.)2049 365 y([20])40 +b Fa(Reinefeld,)k(A.)74 b Fx(An)39 b(impro)n(v)n(emen)n(t)d(to)k(the)f +(scout)g(tree-)2207 448 y(searc)n(h)26 b(algorithm.)35 +b Fs(ICCA)27 b(Journal)h(6)p Fx(,)e(4)g(\(1983\),)h(4{14.)2049 +565 y([21])40 b Fa(Schaeffer,)30 b(J.)40 b Fx(Distributed)27 +b(game-tree)h(searc)n(h.)41 b Fs(Journal)2207 648 y(of)28 +b(Par)l(al)t(lel)g(and)h(Distribute)l(d)h(Computing)f(6)p +Fx(,)e(2)g(\(1989\),)i(90{)2207 731 y(114.)2049 847 y([22])40 +b Fa(Thinking)f(Ma)n(chines)h(Corpora)-5 b(tion)p Fx(.)71 +b Fs(CMMD)38 b(R)l(efer-)2207 930 y(enc)l(e)i(Manual)g(V3.0)p +Fx(.)72 b(Cam)n(bridge,)42 b(Massac)n(h)n(usetts,)i(Ma)n(y)2207 +1013 y(1993.)2049 1129 y([23])c Fa(Weill,)73 b(J.-C.)141 +b Fs(Pr)l(o)l(gr)l(ammes)63 b(d')n(\023)-37 b(eche)l(cs)61 +b(de)g(champi-)2207 1212 y(onnat)37 b(:)52 b(ar)l(chite)l(chtur)l(e)40 +b(lo)l(giciel)t(le,)d(synth)n(\022)-37 b(ese)39 b(de)d(fonctions)2207 +1295 y(d')n(\023)-37 b(evaluation,)46 b(p)l(ar)l(al)t(l)n(\023)-37 +b(elisme)43 b(de)g(r)l(e)l(cher)l(che)p Fx(.)86 b(PhD)41 +b(thesis,)2207 1378 y(Univ)n(ersit)n(\023)-36 b(e)42 +b(de)g(P)n(aris)i(VI)r(I)r(I,)e(Sain)n(t-Denis)f(\(F)-6 +b(rance\),)47 b(Jan.)2207 1461 y(1995.)2049 1577 y([24])40 +b Fa(Wir)-5 b(th,)29 b(N.)37 b Fs(A)n(lgorithms)29 b(and)g(Data)g +(Structur)l(es)p Fx(.)41 b(Pren)n(tice-)2207 1660 y(Hall)26 +b(In)n(ternational)g(Editions,)h(1986.)p eop +%%Trailer +end +userdict /end-hook known{end-hook}if +%%EOF diff --git a/parallel/brockington96aphid.ps b/parallel/brockington96aphid.ps new file mode 100755 index 0000000..7709d3e --- /dev/null +++ b/parallel/brockington96aphid.ps @@ -0,0 +1,34409 @@ +%!PS-Adobe-2.0 +%%Creator: dvipsk 5.58f Copyright 1986, 1994 Radical Eye Software +%%Title: aphid_tr.dvi +%%Pages: 24 +%%PageOrder: Ascend +%%BoundingBox: 0 0 612 792 +%%EndComments +%DVIPSCommandLine: dvips aphid_tr +%DVIPSParameters: dpi=300, compressed, comments removed +%DVIPSSource: TeX output 1996.08.20:2324 +%%BeginProcSet: texc.pro +/TeXDict 250 dict def TeXDict begin /N{def}def /B{bind def}N /S{exch}N +/X{S N}B /TR{translate}N /isls false N /vsize 11 72 mul N /hsize 8.5 72 +mul N /landplus90{false}def /@rigin{isls{[0 landplus90{1 -1}{-1 1} +ifelse 0 0 0]concat}if 72 Resolution div 72 VResolution div neg scale +isls{landplus90{VResolution 72 div vsize mul 0 exch}{Resolution -72 div +hsize mul 0}ifelse TR}if Resolution VResolution vsize -72 div 1 add mul +TR[matrix currentmatrix{dup dup round sub abs 0.00001 lt{round}if} +forall round exch round exch]setmatrix}N /@landscape{/isls true N}B +/@manualfeed{statusdict /manualfeed true put}B /@copies{/#copies X}B +/FMat[1 0 0 -1 0 0]N /FBB[0 0 0 0]N /nn 0 N /IE 0 N /ctr 0 N /df-tail{ +/nn 8 dict N nn begin /FontType 3 N /FontMatrix fntrx N /FontBBox FBB N +string /base X array /BitMaps X /BuildChar{CharBuilder}N /Encoding IE N +end dup{/foo setfont}2 array copy cvx N load 0 nn put /ctr 0 N[}B /df{ +/sf 1 N /fntrx FMat N df-tail}B /dfs{div /sf X /fntrx[sf 0 0 sf neg 0 0] +N df-tail}B /E{pop nn dup definefont setfont}B /ch-width{ch-data dup +length 5 sub get}B /ch-height{ch-data dup length 4 sub get}B /ch-xoff{ +128 ch-data dup length 3 sub get sub}B /ch-yoff{ch-data dup length 2 sub +get 127 sub}B /ch-dx{ch-data dup length 1 sub get}B /ch-image{ch-data +dup type /stringtype ne{ctr get /ctr ctr 1 add N}if}B /id 0 N /rw 0 N +/rc 0 N /gp 0 N /cp 0 N /G 0 N /sf 0 N /CharBuilder{save 3 1 roll S dup +/base get 2 index get S /BitMaps get S get /ch-data X pop /ctr 0 N ch-dx +0 ch-xoff ch-yoff ch-height sub ch-xoff ch-width add ch-yoff +setcachedevice ch-width ch-height true[1 0 0 -1 -.1 ch-xoff sub ch-yoff +.1 sub]/id ch-image N /rw ch-width 7 add 8 idiv string N /rc 0 N /gp 0 N +/cp 0 N{rc 0 ne{rc 1 sub /rc X rw}{G}ifelse}imagemask restore}B /G{{id +gp get /gp gp 1 add N dup 18 mod S 18 idiv pl S get exec}loop}B /adv{cp +add /cp X}B /chg{rw cp id gp 4 index getinterval putinterval dup gp add +/gp X adv}B /nd{/cp 0 N rw exit}B /lsh{rw cp 2 copy get dup 0 eq{pop 1}{ +dup 255 eq{pop 254}{dup dup add 255 and S 1 and or}ifelse}ifelse put 1 +adv}B /rsh{rw cp 2 copy get dup 0 eq{pop 128}{dup 255 eq{pop 127}{dup 2 +idiv S 128 and or}ifelse}ifelse put 1 adv}B /clr{rw cp 2 index string +putinterval adv}B /set{rw cp fillstr 0 4 index getinterval putinterval +adv}B /fillstr 18 string 0 1 17{2 copy 255 put pop}for N /pl[{adv 1 chg} +{adv 1 chg nd}{1 add chg}{1 add chg nd}{adv lsh}{adv lsh nd}{adv rsh}{ +adv rsh nd}{1 add adv}{/rc X nd}{1 add set}{1 add clr}{adv 2 chg}{adv 2 +chg nd}{pop nd}]dup{bind pop}forall N /D{/cc X dup type /stringtype ne{] +}if nn /base get cc ctr put nn /BitMaps get S ctr S sf 1 ne{dup dup +length 1 sub dup 2 index S get sf div put}if put /ctr ctr 1 add N}B /I{ +cc 1 add D}B /bop{userdict /bop-hook known{bop-hook}if /SI save N @rigin +0 0 moveto /V matrix currentmatrix dup 1 get dup mul exch 0 get dup mul +add .99 lt{/QV}{/RV}ifelse load def pop pop}N /eop{SI restore userdict +/eop-hook known{eop-hook}if showpage}N /@start{userdict /start-hook +known{start-hook}if pop /VResolution X /Resolution X 1000 div /DVImag X +/IE 256 array N 0 1 255{IE S 1 string dup 0 3 index put cvn put}for +65781.76 div /vsize X 65781.76 div /hsize X}N /p{show}N /RMat[1 0 0 -1 0 +0]N /BDot 260 string N /rulex 0 N /ruley 0 N /v{/ruley X /rulex X V}B /V +{}B /RV statusdict begin /product where{pop product dup length 7 ge{0 7 +getinterval dup(Display)eq exch 0 4 getinterval(NeXT)eq or}{pop false} +ifelse}{false}ifelse end{{gsave TR -.1 .1 TR 1 1 scale rulex ruley false +RMat{BDot}imagemask grestore}}{{gsave TR -.1 .1 TR rulex ruley scale 1 1 +false RMat{BDot}imagemask grestore}}ifelse B /QV{gsave newpath transform +round exch round exch itransform moveto rulex 0 rlineto 0 ruley neg +rlineto rulex neg 0 rlineto fill grestore}B /a{moveto}B /delta 0 N /tail +{dup /delta X 0 rmoveto}B /M{S p delta add tail}B /b{S p tail}B /c{-4 M} +B /d{-3 M}B /e{-2 M}B /f{-1 M}B /g{0 M}B /h{1 M}B /i{2 M}B /j{3 M}B /k{ +4 M}B /w{0 rmoveto}B /l{p -4 w}B /m{p -3 w}B /n{p -2 w}B /o{p -1 w}B /q{ +p 1 w}B /r{p 2 w}B /s{p 3 w}B /t{p 4 w}B /x{0 S rmoveto}B /y{3 2 roll p +a}B /bos{/SS save N}B /eos{SS restore}B end +%%EndProcSet +%%BeginProcSet: special.pro +TeXDict begin /SDict 200 dict N SDict begin /@SpecialDefaults{/hs 612 N +/vs 792 N /ho 0 N /vo 0 N /hsc 1 N /vsc 1 N /ang 0 N /CLIP 0 N /rwiSeen +false N /rhiSeen false N /letter{}N /note{}N /a4{}N /legal{}N}B +/@scaleunit 100 N /@hscale{@scaleunit div /hsc X}B /@vscale{@scaleunit +div /vsc X}B /@hsize{/hs X /CLIP 1 N}B /@vsize{/vs X /CLIP 1 N}B /@clip{ +/CLIP 2 N}B /@hoffset{/ho X}B /@voffset{/vo X}B /@angle{/ang X}B /@rwi{ +10 div /rwi X /rwiSeen true N}B /@rhi{10 div /rhi X /rhiSeen true N}B +/@llx{/llx X}B /@lly{/lly X}B /@urx{/urx X}B /@ury{/ury X}B /magscale +true def end /@MacSetUp{userdict /md known{userdict /md get type +/dicttype eq{userdict begin md length 10 add md maxlength ge{/md md dup +length 20 add dict copy def}if end md begin /letter{}N /note{}N /legal{} +N /od{txpose 1 0 mtx defaultmatrix dtransform S atan/pa X newpath +clippath mark{transform{itransform moveto}}{transform{itransform lineto} +}{6 -2 roll transform 6 -2 roll transform 6 -2 roll transform{ +itransform 6 2 roll itransform 6 2 roll itransform 6 2 roll curveto}}{{ +closepath}}pathforall newpath counttomark array astore /gc xdf pop ct 39 +0 put 10 fz 0 fs 2 F/|______Courier fnt invertflag{PaintBlack}if}N +/txpose{pxs pys scale ppr aload pop por{noflips{pop S neg S TR pop 1 -1 +scale}if xflip yflip and{pop S neg S TR 180 rotate 1 -1 scale ppr 3 get +ppr 1 get neg sub neg ppr 2 get ppr 0 get neg sub neg TR}if xflip yflip +not and{pop S neg S TR pop 180 rotate ppr 3 get ppr 1 get neg sub neg 0 +TR}if yflip xflip not and{ppr 1 get neg ppr 0 get neg TR}if}{noflips{TR +pop pop 270 rotate 1 -1 scale}if xflip yflip and{TR pop pop 90 rotate 1 +-1 scale ppr 3 get ppr 1 get neg sub neg ppr 2 get ppr 0 get neg sub neg +TR}if xflip yflip not and{TR pop pop 90 rotate ppr 3 get ppr 1 get neg +sub neg 0 TR}if yflip xflip not and{TR pop pop 270 rotate ppr 2 get ppr +0 get neg sub neg 0 S TR}if}ifelse scaleby96{ppr aload pop 4 -1 roll add +2 div 3 1 roll add 2 div 2 copy TR .96 dup scale neg S neg S TR}if}N /cp +{pop pop showpage pm restore}N end}if}if}N /normalscale{Resolution 72 +div VResolution 72 div neg scale magscale{DVImag dup scale}if 0 setgray} +N /psfts{S 65781.76 div N}N /startTexFig{/psf$SavedState save N userdict +maxlength dict begin /magscale true def normalscale currentpoint TR +/psf$ury psfts /psf$urx psfts /psf$lly psfts /psf$llx psfts /psf$y psfts +/psf$x psfts currentpoint /psf$cy X /psf$cx X /psf$sx psf$x psf$urx +psf$llx sub div N /psf$sy psf$y psf$ury psf$lly sub div N psf$sx psf$sy +scale psf$cx psf$sx div psf$llx sub psf$cy psf$sy div psf$ury sub TR +/showpage{}N /erasepage{}N /copypage{}N /p 3 def @MacSetUp}N /doclip{ +psf$llx psf$lly psf$urx psf$ury currentpoint 6 2 roll newpath 4 copy 4 2 +roll moveto 6 -1 roll S lineto S lineto S lineto closepath clip newpath +moveto}N /endTexFig{end psf$SavedState restore}N /@beginspecial{SDict +begin /SpecialSave save N gsave normalscale currentpoint TR +@SpecialDefaults count /ocount X /dcount countdictstack N}N /@setspecial +{CLIP 1 eq{newpath 0 0 moveto hs 0 rlineto 0 vs rlineto hs neg 0 rlineto +closepath clip}if ho vo TR hsc vsc scale ang rotate rwiSeen{rwi urx llx +sub div rhiSeen{rhi ury lly sub div}{dup}ifelse scale llx neg lly neg TR +}{rhiSeen{rhi ury lly sub div dup scale llx neg lly neg TR}if}ifelse +CLIP 2 eq{newpath llx lly moveto urx lly lineto urx ury lineto llx ury +lineto closepath clip}if /showpage{}N /erasepage{}N /copypage{}N newpath +}N /@endspecial{count ocount sub{pop}repeat countdictstack dcount sub{ +end}repeat grestore SpecialSave restore end}N /@defspecial{SDict begin} +N /@fedspecial{end}B /li{lineto}B /rl{rlineto}B /rc{rcurveto}B /np{ +/SaveX currentpoint /SaveY X N 1 setlinecap newpath}N /st{stroke SaveX +SaveY moveto}N /fil{fill SaveX SaveY moveto}N /ellipse{/endangle X +/startangle X /yrad X /xrad X /savematrix matrix currentmatrix N TR xrad +yrad scale 0 0 1 startangle endangle arc savematrix setmatrix}N end +%%EndProcSet +TeXDict begin 40258431 52099146 1000 300 300 (aphid_tr.dvi) +@start /Fa 1 49 df<1204120EA2121CA31238A212301270A21260A212C0A2070F7F8F +0A>48 D E /Fb 59 123 df<EA0387A6387FFFC0B512E0A238070E00A3EA0E1CA4B512E0 +A26C13C0381C3800A613197F9816>35 D<EA0380EA07E0120FEA1E70121CA3EBF7E013E7 +EA1DC7000F1300138E130E121F485AEA7B9C1273EAE1F8A238E0F0E0A2EA71F8387FFFC0 +EA3F9F381E070013197F9816>38 D<13E01201EA0380EA0700120E5AA25AA25AA35AA912 +70A37EA27EA27E7EEA0380EA01E012000B217A9C16>40 D<12C07E12707E7E7EA27EA2EA +0380A3EA01C0A9EA0380A3EA0700A2120EA25A5A5A5A5A0A217B9C16>I<EA0380A4EAE3 +8EEAF39EEAFFFEEA3FF8EA0FE0A2EA3FF8EAFFFEEAF39EEAE38EEA0380A40F127D9516> +I<13E0A8B512E0A33800E000A813137F9516>I<1238127C127EA2123E120E121E121C12 +7812F01260070B798416>I<127012F8A312700505788416>46 D<12035AA25A5AB4FCA2 +12E71207AEEAFFF8A30D197B9816>49 D<EA07E0EA1FF8487EEA783EEAE00700F0138013 +0312601200A2EB0700A2130E5B5B5B5B485A485A000FC7FC381E03801238EA7FFFB5FC7E +11197E9816>I<13E0487EA213B0A2EA03B8A31318EA071CA5EA0E0EA2EA0FFEA2487EEA +1C07A3387E0FC038FF1FE0387E0FC013197F9816>65 D<EA7FF8EAFFFE6C7EEA1C071480 +1303A4EB0700EA1FFF5BA2EA1C1FEB038014C01301A41303EB0780EA7FFFB51200EA7FFC +12197F9816>I<3801F180EA07FBEA0FFFEA1F0FEA3C07EA38031270A200F0C7FC5AA77E +38700380A21238383C0700EA1F0FEA0FFE6C5AEA01F011197E9816>I<EA7FF8EAFFFE6C +7EEA1C0FEB0780EB03C01301A214E01300A8EB01C0A21303EB0780130F387FFF00485AEA +7FF81319809816>I<387FFFC0B5FC7EEA1C01A490C7FCA2131CA2EA1FFCA3EA1C1CA290 +C7FC14E0A5EA7FFFB5FC7E13197F9816>I<387FFFE0B5FC7EEA1C00A41400A2131CA2EA +1FFCA3EA1C1CA290C7FCA6EA7F80487E6C5A13197F9816>I<3801F180EA07FBEA0FFFEA +1F0FEA3C07EA38031270A200F0C7FC5AA4EB1FC014E014C038F00380127013071238123C +EA1E0FEA0FFFEA07FBEA01F313197F9816>I<387F07F038FF8FF8387F07F0381C01C0A7 +EA1FFFA3EA1C01A9387F07F038FF8FF8387F07F01519809816>I<EA7FFCEAFFFEEA7FFC +EA0380B3EA7FFCEAFFFEEA7FFC0F197D9816>I<387F0FE038FF8FF0387F0FE0381C0780 +EB0F00130E5B133C5B5B5BEA1DF0121F7F1338EA1E1C121C7FA27FA2EB0380387F07E038 +FF8FF0387F07E01419809816>75 D<B47E7F5B001CC7FCAE144014E0A4B5FCA313197F98 +16>I<38FC07E0EAFE0FA2383A0B80EA3B1BA513BBEA39B3A413F3EA38E3A21303A538FE +0FE0A313197F9816>I<387E07F038FF0FF8387F07F0381D81C0A313C1121C13E1A21361 +1371A313311339A21319131D130DA3EA7F07EAFF87EA7F031519809816>I<EA1FFC487E +487EEA780F38F00780EAE003AEEAF007A238780F00EA7FFF6C5A6C5A11197E9816>I<EA +7FF8EAFFFE6C7E381C0F80130314C01301A313031480130F381FFF005B13F8001CC7FCA7 +127F487E6CC7FC12197F9816>I<EA7FF0EAFFFC6C7EEA1C0FEB07801303A41307EB0F00 +EA1FFE5B7FEA1C0E7FA414101438A2387F03F0EAFF83387F01E01519809816>82 +D<EA07E3EA1FFF5AEA781FEAF00712E0A290C7FC7E1278EA3F80EA1FF0EA07FCC67E130F +7FEB0380A2126012E0EB0700EAF80FEAFFFE5BEAC7F011197E9816>I<387FFFE0B5FCA2 +EAE0E0A400001300AFEA07FC487E6C5A13197F9816>I<387F07F038FF8FF8387F07F038 +1C01C0B0380E0380A23807070013FF6C5AEA00F81519809816>I<38FE0FE0A338380380 +EA3C07001C1300A3EA1E0FEA0E0EA46C5AA4EA031813B8A3EA01B013F0A26C5A13197F98 +16>I<387F1F80EB3FC0EB1F80380E1E00131C12075BEA03B813F012015B120012017F12 +0313B81207131C120FEA0E0EA2487E387E0FC038FF1FE0387E0FC013197F9816>88 +D<38FE0FE0EAFF1FEAFE0F381C0700A2EA0E0EA26C5AA3EA03B8A2EA01F0A26C5AA8EA03 +F8487E6C5A13197F9816>I<387FFF80B5FCA238E007005B131E131CEA003C5B137013F0 +485A5B1203485A90C7FC5A381E0380121C123C12781270B5FCA311197E9816>I<EAFFF0 +A3EAE000B3A8EAFFF0A30C20789C16>I<EAFFF0A3EA0070B3A8EAFFF0A30C207F9C16> +93 D<EA1FE0487E487EEA783CEA300E1200A2EA03FE121FEA3E0E127012E0A3EA783E38 +7FFFE0EA3FE7EA0F8313127E9116>97 D<12FCA3121CA4137CEA1DFEEA1FFFEB0780381E +03C0EA1C01EB00E0A6EB01C0EA1E03381F0780EBFF00EA1DFEEA0C7813197F9816>I<EA +03F8EA0FFCEA1FFEEA3C1EEA780CEA70005AA57EEA70071278EA3E0EEA1FFCEA0FF8EA03 +F010127D9116>I<133FA31307A4EA03C7EA0FF748B4FCEA3C1F487EEA700712E0A6EA70 +0F12786C5A381FFFE0EA0FF7EA07C713197F9816>I<EA03F0EA0FFC487EEA3C0F487E38 +70038012E0B5FCA300E0C7FCA2387003801278EA3E07381FFF00EA07FEEA01F811127E91 +16>I<131E137F3801FF8013C7380383001380A2EA7FFFB5FCA2EA0380ACEA7FFC487E6C +5A11197F9816>I<3803E3C03807F7E0EA0FFF381C1CC038380E00A56C5AEA0FF8485AEA +1BE00038C7FC1218EA1FFC13FF481380387003C038E000E0A4387001C0EA7C07383FFF80 +380FFE00EA03F8131C7F9116>I<12FCA3121CA41378EA1DFCEA1FFE130FEA1E07121CAA +38FF8FE0139F138F13197F9816>I<1203EA0780A2EA0300C7FCA4EAFF80A31203ACEAFF +FC13FE13FC0F1A7C9916>I<127E12FE127E120EA4EB7FE0A3EB0F00131E5B5B5B120F7F +13BC131EEA0E0E7F1480387F87F0EAFFCFEA7F871419809816>107 +D<EA7FC012FF127F1201B3EA7FFFB512806C130011197E9816>I<38F9C38038FFEFC0EB +FFE0EA3C78A2EA3870AA38FE7CF8A31512809116>I<EAFC78EAFDFCB47EEA1F0FEA1E07 +121CAA38FF8FE0139F138F13127F9116>I<EA03E0EA0FF8487EEA3C1E487EEA700738E0 +0380A5EAF00700701300EA780FEA3C1EEA1FFC6C5AEA03E011127E9116>I<EAFC7CEAFD +FEB5FC381F0780381E03C0EA1C01EB00E0A6EB01C0EA1E03381F0780EBFF00EA1DFEEA1C +7890C7FCA6B47EA3131B7F9116>I<387F0FC038FF3FE0EA7F7F3807F040EBC0005BA290 +C7FCA8EA7FFC12FF127F13127F9116>114 D<EA0FECEA3FFC127FEAF03CEAE01CA2EA70 +00EA7F80EA1FF0EA07F8EA003CEA600E12E012F0EAF81EEAFFFC13F8EAC7E00F127D9116 +>I<12035AA4EA7FFFB5FCA20007C7FCA75BEB0380A3EB8700EA03FE6C5A6C5A11177F96 +16>I<EAFC3FA3EA1C07AB131F381FFFE0EA0FF7EA07C713127F9116>I<387F1FC038FF9F +E0387F1FC0381C0700A2EA0E0EA36C5AA4EA03B8A3EA01F0A26C5A13127F9116>I<38FF +1FE0A338380380A4EA39F3A20019130013B3A3EA1DB71317EA1F1FEA0F1EEA0E0E13127F +9116>I<387F1FC0133F131F380F1E006C5AEA03B813F012016C5A12017FEA03B8EA073C +131CEA0E0E387F1FC038FF3FE0387F1FC013127F9116>I<387F1FC038FF9FE0387F1FC0 +381C0700120E130EA212075BA2EA039CA21398EA01B8A2EA00F0A35BA3485A1279127BEA +7F8090C7FC123C131B7F9116>I<383FFFC05AA238700780EB0F00131EC65A5B485A485A +EA078048C7FC381E01C0123C1278B5FCA312127F9116>I E /Fc +2 101 df<13201360A213C0A3EA0180A3EA0300A31206A25AA35AA35AA35AA35AA30B1D +7E9511>61 D<133C130C1318A41330EA07B0EA0C701210EA30601260A3EAC0C013C8A212 +41EA62D0EA3C700E147E9311>100 D E /Fd 7 56 df<1218127812981218AC12FF0810 +7D8F0F>49 D<121FEA6180EA40C0EA806012C01200A213C0EA0180EA030012065AEA1020 +1220EA7FC012FF0B107F8F0F>I<121FEA2180EA60C0A212001380EA0100121FEA008013 +40136012C0A2EA8040EA6080EA1F000B107F8F0F>I<EA0180A212031205120D12191211 +1221124112C1EAFFE0EA0180A4EA0FE00B107F8F0F>I<EA20C0EA3F80EA2E001220A312 +2FEA3080EA2040EA0060A312C0EA80C0EA6180EA1F000B107F8F0F>I<EA0780EA1840EA +30C0126013005A12CFEAF080EAE040EAC060A31240EA60C0EA3080EA1F000B107F8F0F> +I<1240EA7FF013E0EA8040A2EA0080EA01001202A212061204A2120CA50C117F900F>I +E /Fe 7 56 df<120C121C12EC120CAFEAFFC00A137D9211>49 D<121FEA60C01360EAF0 +7013301260EA0070A2136013C012011380EA02005AEA08101210EA2020EA7FE012FF0C13 +7E9211>I<EA0FC0EA3070EA7038A31200133013E0EA0FC0EA007013381318131C126012 +F01318EAE038EA6070EA1FC00E137F9211>I<136013E0A2EA016012021206120C120812 +101220126012C0EAFFFCEA0060A5EA03FC0E137F9211>I<EA6060EA7FC01380EA440012 +40A3124FEA70C0EA40E0EA00601370A212E0A21360EA40E0EA21C0EA1F000C137E9211> +I<EA07C0EA0C20EA10701220EA6000A25A12CFEAD0C0EAE060EAC0201330A31240EA6020 +EA2060EA10C0EA0F000C137E9211>I<1240EA7FFC13F8EA4010EA80301320EA00401380 +EA0100A25A12021206A2120EA512040E147E9311>I E /Ff 19 123 +df<90380FE02090387018603801C00439030003E000061301000E13004814605A152012 +78127000F01400A80070142012781238A26C14407E000614806CEB01003801C006380070 +18EB0FE01B1E7D9C21>67 D<39FFF00FF0390F0003C0150014025C5C5C1460148049C7FC +13021307497E1317EB23C0EB43E01381EB00F08014788080141F80EC078015C015E039FF +F01FF81D1C7D9B23>75 D<B512C0380F0078141C80801580A51500140E5C1478EBFFC090 +C8FCACEAFFF0191C7D9B1F>80 D<007FB512C038700F010060130000401440A200C01420 +1280A300001400B1497E3803FFFC1B1C7D9B21>84 D<387FFFFC387C00781270006013F0 +EB01E01240EB03C0EB0780A238000F00131EA25B5BA25B485A1404EA03C0EA0780A2380F +000C001E1308A248131848133814F8B5FC161C7D9B1C>90 D<13201370A313B8A3EA011C +A2EA031EEA020EA2487EEA07FFEA040738080380A2001813C01301123838FC07F815157F +9419>97 D<B51280EA1C031300A21440A213081400A21318EA1FF8EA1C1813081420A213 +001460144014C01301B5FC13157F9417>101 D<EBFC2038078260380E01E0EA1C004813 +6000781320127012F01400A3EB0FF8EB00E0A21270127812387E7E380783603800FC2015 +157E941B>103 D<38FF8FF8381C01C0A9EA1FFFEA1C01A938FF8FF815157F9419>I<EAFF +80EA1C00B3EAFF8009157F940D>I<38FF81F8381C01E01480140013025B5B5B13301370 +13B8EA1D1C121EEA1C0E7F14801303EB01C014E014F038FF83FC16157F941A>107 +D<38FC03F8381E00E014401217EA138013C01211EA10E01370A21338131CA2130E130714 +C0130313011300123800FE134015157F9419>110 D<EA01F8EA070EEA0C03001C138038 +3801C0007813E0EA700000F013F0A7007013E0EA7801003813C0381C0380EA1E0738070E +00EA01F814157E941A>I<EAFFF8EA1C0EEB0780130314C0A314801307EB0E00EA1FF8EA +1C1C7F7FA31480148414C4EB03CC38FF80F816157F9419>114 D<38FF83F8381C00E014 +40AE000C13C0000E138038060100EA0386EA00FC15157F9419>117 +D<39FF07F87E393C01E03C0038EBC018391C02E010A3390E047020A33907083840A33903 +901C80A33901E00F00A33800C006A31F157F9423>119 D<38FF07F0381E03C0000E1300 +EA0F02EA0706EA038413C8EA01D0EA00F0A21370137813BCEA011C487EEA020F487E380C +0380000813C0003C13E038FE07F815157F9419>I<38FF80FE381E0038000E1320000F13 +606C13403803808013C03801C10013E212001374137C1338A848B4FC1715809419>I<EA +FFFEEAF01C12C013381280137013E01200EA01C0A2EA0380EA0700A2EA0E02A2121C1238 +13061270131EEAFFFE0F157E9415>I E /Fg 58 123 df<EBFCF83807839CEA0E07001C +13081400A5B512E0381C0700AC387F1FE01617809615>11 D<13FCEA0782EA0E07121C13 +0290C7FCA4B5FCEA1C07AC387F1FC01217809614>I<EA60C0EAF1E0A21270EA1020A2EA +2040A2EA4080A20B0A7F9612>34 D<126012F0A212701210A21220A21240A2040A7D960A +>39 D<120112021204120C1218A21230A212701260A312E0AA1260A312701230A21218A2 +120C12041202120108227D980E>I<12801240122012301218A2120CA2120E1206A31207 +AA1206A3120E120CA21218A2123012201240128008227E980E>I<126012F0A212701210 +A21220A21240A2040A7D830A>44 D<EAFF80A2090280870C>I<126012F0A2126004047D +830A>I<1206120E12FE120EB1EAFFE00B157D9412>49 D<EA0F80EA30E0EA4070EA8030 +EAC03812E0124012001370A2136013C0EA0180EA03001206EA0C081208EA1018EA3FF012 +7F12FF0D157E9412>I<EA0FE0EA3030EA6018EA701CA21200131813381360EA07E0EA00 +301318130C130EA212E0A2EAC00CEA4018EA3030EA0FE00F157F9412>I<EA01F0EA0608 +EA080CEA181C1230EA7000126012E0EAE3E0EAEC30EAF018130CEAE00EA31260A2EA300C +1318EA1830EA07C00F157F9412>54 D<EA07E0EA1830EA2018EA600CA21270EA7818EA3E +10EA1F60EA07C0EA0FF0EA18F8EA607C131EEAC00E1306A21304EA600CEA3830EA0FE00F +157F9412>56 D<EA07C0EA1830EA30181260EAE00CA2130EA3EA601E1230EA186EEA0F8E +EA000E130C131CEA7018A2EA6030EA20E0EA1F800F157F9412>I<13101338A3135CA313 +8EA3EA0107A238020380A33807FFC0EA0401A2380800E0A2001813F0123838FE03FE1717 +7F961A>65 D<EAFFFE381C0380EB00E014601470A414E0EB01C0381FFF8014C0381C00E0 +147014301438A4147014E0EB01C0B5120015177F9619>I<EBFC1038038330380E00B048 +1370481330123000701310126012E01400A51410126012700030132012386C13406C1380 +38038300EA00FC14177E9619>I<B5FC381C01C0EB00E0143014381418141C140C140EA7 +140C141CA2143814301460EB01C0B5120017177F961B>I<B512E0EA1C00146014201410 +A3EB0400A3130CEA1FFCEA1C0C13041408A2130014181410A2143014F0B5FC15177F9618 +>I<EAFFE0EA0E00B3A3EAFFE00B177F960D>73 D<EA0FF8EA00E0B112E0A2EAC1C0EA61 +80EA1F000D177E9612>I<38FF80FE381C0078146014401480EB0100130613085B133813 +78139CEA1D0E121EEA1C07EB0380EB01C0A2EB00E014701478147C38FF80FF18177F961B +>I<00FEEB03F8001E14C000171305A338138009A23811C011A33810E021A2EB7041A3EB +3881A2EB1D01A2130EA2123839FE040FF81D177F9620>77 D<00FC13FE001E1338001F13 +101217EA1380EA11C0A2EA10E013701338A2131C130E130F1307EB0390EB01D0A2EB00F0 +14701430123800FE131017177F961A>I<13FCEA0303380E01C0381C00E0481370003013 +30007013380060131800E0131CA700701338A200301330003813706C13E0380E01C03803 +0300EA00FC16177E961B>I<EAFFFE381C0380EB00C014601470A4146014C0EB0380381F +FE00001CC7FCAAB47E14177F9618>I<EA0FC4EA302CEA601CEA400CEAC004A3EAE00012 +70127FEA3FE0EA0FF8EA01FCEA001C130E13061280A3EAC004EAE008EAD810EA87E00F17 +7E9614>83 D<387FFFF83860381800401308A200801304A300001300AF3803FF8016177F +9619>I<B4137E003C1338001C1310A26C1320A2000F13606C1340A238038080A213C100 +011300A2EA00E2A213F21374A21338A3131017177F961A>86 D<12FCA212C0B3AB12FCA2 +06217D980A>91 D<EA2040A2EA4080A2EA8100A2EAE1C0EAF1E0A2EA60C00B0A7B9612> +I<12FCA2120CB3AB12FCA2062180980A>I<EA3FC0EA70601330EA20381200EA03F8EA1E +3812301270EAE039A21379EA70FFEA1F1E100E7F8D12>97 D<12F81238A8EA39F0EA3E0C +EA380613077F1480A414005B1306EA361CEA21F011177F9614>I<EA07F0EA18381230EA +7010EA600012E0A41260EA70081230EA1830EA07C00D0E7F8D10>I<133E130EA8EA07CE +EA1C3EEA300E1270126012E0A412601270EA301EEA182E3807CF8011177F9614>I<EA0F +C0EA1860EA3030EA7038EAE018EAFFF8EAE000A31260EA7008EA3010EA1830EA07C00D0E +7F8D10>I<EA03E0EA0670120EEA1C201300A5EAFF80EA1C00ACEA7F800C1780960B>I<EA +0F9EEA18E3EA3060EA7070A3EA3060EA18C0EA2F80EA20001260EA3FE013F813FCEA600E +EAC006A3EA600CEA3838EA0FE010157F8D12>I<12F81238A813F8EA3B1CEA3C0E1238AA +38FE3F8011177F9614>I<12301278A212301200A512F81238AC12FE07177F960A>I<12F8 +1238A8133E13381330134013801239EA3FC0EA39E0123813F01378133CA2EAFE7F10177F +9613>107 D<12F81238B3A312FE07177F960A>I<38F8F83E383B1CC7393C0F0380EA380E +AA39FE3F8FE01B0E7F8D1E>I<EAF8F8EA3B1CEA3C0E1238AA38FE3F80110E7F8D14>I<EA +07C0EA1830EA3018EA600CA2EAE00EA5EA701CEA3018EA1830EA07C00F0E7F8D12>I<EA +F9F0EA3E1CEA380613077F1480A414005B130EEA3E1CEA39F00038C7FCA512FE11147F8D +14>I<EA07C2EA1C26EA381EEA700E126012E0A412601270EA301EEA1C2EEA07CEEA000E +A5EB3F8011147F8D13>I<EAF9E0EA3A70123CEA38201300A9B4FC0C0E7F8D0E>I<EA1F40 +EA60C0EAC040A2EAE000B4FCEA7F80EA1FC0EA01E0EA8060A212C0EAE0C0EA9F000B0E7F +8D0E>I<1208A31218A21238EAFFC0EA3800A71340A4EA1C80EA0F000A147F930E>I<EAF8 +3EEA380EAA131EEA1C2E3807CF80110E7F8D14>I<EAFE1FEA380EEA3C0CEA1C08A2EA0E +10A2EA0720A213E0EA03C0A2EA0180A2100E7F8D13>I<38FEFE7C383838381410133C00 +1C1320134C381E4E60380ECE401387000713801303A200031300EA0201160E7F8D19>I< +EAFE3FEA3C1CEA1C10EA0E20EA074013C0EA0380EA01C0EA02E0EA04F0EA0870EA1838EA +383CEAFC7F100E7F8D13>I<EAFE1FEA380EEA3C0CEA1C08A2EA0E10A2EA0720A213E0EA +03C0A2EA0180A21300A212E2A212A4127810147F8D13>I<EAFFF0EAC0E01280EA81C0EA +83801287EA0700120EEA1E08121CEA3818EA70101330EAFFF00D0E7F8D10>I +E /Fh 5 50 df<B61280A219027D8A20>0 D<0040132000C01360006013C03830018038 +180300EA0C066C5A6C5AEA01B0EA00E0A2EA01B0EA0318EA060C487E487E383001803860 +00C04813600040132013147A9320>2 D<1203A4EAC30CEAE31CEA7338EA1FE0EA0780A2 +EA1FE0EA7338EAE31CEAC30CEA0300A40E127D9215>I<EA03C0EA0FF0EA1FF8EA3FFCEA +7FFEA2B5FCA4EA7FFEA2EA3FFCEA1FF8EA0FF0EA03C010107E9115>15 +D<D807E0133FD80FF8EBF1803A183E0180403A200F030020264007841310EB03CC268001 +D81308EB00F0A21478A214DC2640019E1310140F3A20060780203A100C03E0C03A0C7800 +FF80D807E0EB3F0025127E912A>49 D E /Fi 56 123 df<903801F03C9038071C47010C +13C7EC19C690381C0180140313181338A2EC0700A20003B512F03900700700A3140EA213 +E0A35CA2EA01C0A35CA2EA0380A21430EB0070A248136038C630E038E638C038CC3180D8 +781EC7FC2025819C19>11 D<14FE90380301801306EB0C03EB1C0191C7FC13181338A438 +03FFFE3800700EA35CA213E0A25CA3EA01C01472A438038034141891C7FC90C8FCA25A12 +C612E65A12781925819C17>I<12E0A3127012301210121812080508749C15>18 +D<12031207120E121C1238126012C012800808729C15>I<133C0163133001C113703801 +8080000314201301D807031340EC0080390E00010014025CEBE01A380F1021000E1341EC +8080EA1A203839C10038300160387000E0A248EB0100A31402A200605B00705B00305B6C +1360380E0380D801FCC7FC1C1F7B9D20>38 D<1218123CA31204A21208A2121012201240 +1280060C779C0D>I<12181238127812381208A21210A212201240A21280050C7D830D> +44 D<EAFFC0A30A037D890F>I<EB018014C0EB0380A314005BA21306130E130C131C1318 +A25BA25B134013C6EA018E130E1202EA061C120C1218123FEA40F838803F8038003800A2 +5BA45B136012247E9B15>52 D<EB0F80EB3860EB6020EBC0E0EA018048C7FC1206120E12 +0C121C13F8EA3904EA3A06EA3C031278A2007013801400EA600712E0A21306130E130CEA +601C1318EA2030EA30C0EA0F80131D7C9B15>54 D<131FEB60C0EBC060EA018038030030 +A200061360120714C013803803C10013E6EA01FCEA0078EA01BCEA061E487E487E383003 +801220EA6001A238C00300A21306EA60045BEA3830EA0FC0141D7D9B15>56 +D<133E13E138018180380300C01206120E120C121CA213011238A31303001813801307EA +080B380C3300EA03C7EA0007130E130C131C1318EAE0305BEA80C0EAC180003EC7FC121D +7C9B15>I<1206120FA212061200AA1230127812F0126008127C910D>I<1418A21438A214 +78A214B8EB0138A2EB023C141C1304130C13081310A21320A2EB7FFCEBC01C1380EA0100 +141E0002130EA25A120C001C131EB4EBFFC01A1D7E9C1F>65 D<48B5FC39003C03809038 +3801C0EC00E0A35B1401A2EC03C001E01380EC0F00141EEBFFFC3801C00E801580A2EA03 +80A43907000F00140E141E5C000E13F0B512C01B1C7E9B1D>I<903803F02090381E0C60 +90383002E09038E003C03801C001EA038048C7FC000E1480121E121C123C15005AA35AA4 +1404A35C12705C6C5B00185B6C485AD80706C7FCEA01F81B1E7A9C1E>I<48B5FC39003C +03C090383800E0A21570A24913781538A215785BA4484813F0A315E03803800115C01403 +15803907000700140E5C5C000E13E0B512801D1C7E9B1F>I<48B512F038003C00013813 +301520A35BA214081500495AA21430EBFFF03801C020A439038040801400A2EC0100EA07 +005C14021406000E133CB512FC1C1C7E9B1C>I<3A01FFC3FF803A003C00780001381370 +A4495BA449485AA390B5FC3901C00380A4484848C7FCA43807000EA448131E39FFE1FFC0 +211C7E9B1F>72 D<EA03FFEA00781370A413E0A4EA01C0A4EA0380A4EA0700A4120EA412 +1EEAFFC0101C7D9B10>I<EB3FF8EB03C01480A4EB0700A4130EA45BA45BA4EA607012E0 +EAC060EA80E0EA81C0EA4380003EC7FC151D7C9B16>I<3801FFC038003C001338A45BA4 +5BA4485AA438038002A31404EA0700140C14181438000E13F0B5FC171C7E9B1A>76 +D<D801FEEB01FED8003E14E0012EEB03C01505A21509014EEB0B801513152313470187EB +4700A21587EC0107D80107130E14021404A20002495AEB0388149014A000045C14C0A200 +0C1380001CEB007839FF8307FF271C7E9B25>I<EB07F0EB1C1CEB700E497E3901C00380 +EA0380EA0700000E14C0121E121C123CA25AA348EB0780A3EC0F00A2140E141E5C007013 +385C00785B383801C06C485AD80E0EC7FCEA03F81A1E7A9C20>79 +D<3801FFFE39003C038090383801C0EC00E0A3EB7001A315C0EBE0031580EC0700141C38 +01FFF001C0C7FCA3485AA448C8FCA45AEAFFE01B1C7E9B1C>I<3801FFFE39003C078090 +383801C015E01400A2EB7001A3EC03C001E01380EC0700141CEBFFE03801C03080141CA2 +EA0380A43807003C1520A348144039FFE01E80C7EA0F001B1D7E9B1E>82 +D<EB0F84EB304CEB403CEB8018EA01005AA200061310A214001207A2EA03E013FC6CB4FC +38007F80EB07C01301A21300A21220A238600180A2EB03001302EAF004EACC18EA83E016 +1E7D9C17>I<001FB512C0381C070138300E0000201480126012405B1280A2000014005B +A45BA45BA4485AA41203EA7FFE1A1C799B1E>I<39FF801FC0393C000700001C1304A25C +5CA25CA25C5CA26C48C7FCA213025BA25BA25B5B120F6C5AA25B90C8FCA21206A21A1D77 +9B1F>86 D<3AFF83FF07F03A3C007001C00038158002F01300A290380170025D13025D13 +045D13085D131001305B1320D81C405BA2D98071C7FCA2381D0072A2001E1374A2001C13 +38A20018133014201210241D779B29>I<39FFC00FE0391E000380000EEB02005C000F13 +0C6C13086D5A00035B5CEBC0C000015B01C1C7FC13E2EA00E413EC13F81370A25BA4485A +A4485AEA3FF81B1C789B1F>89 D<EA01E3EA0717EA0C0F1218EA380E12301270A2EAE01C +A41339A3EA6079EA319AEA1E0C10127C9115>97 D<123F1207A2120EA45AA4EA39E0EA3A +18EA3C0C12381270130EA3EAE01CA31318133813301360EA60C0EA3180EA1E000F1D7C9C +13>I<13F8EA0304120EEA1C0EEA181CEA30001270A25AA51304EA60081310EA3060EA0F +800F127C9113>I<EB07E01300A2EB01C0A4EB0380A43801E700EA0717EA0C0F1218EA38 +0E12301270A2485AA41339A3EA6079EA319AEA1E0C131D7C9C15>I<13F8EA0704120CEA +1802EA38041230EA7008EA7FF0EAE000A5EA60041308EA30101360EA0F800F127C9113> +I<EB03C0EB0670130CEB1C601400A25BA53803FF8038007000A55BA5485AA5485AA390C7 +FCA25A12C612E65A12781425819C0D>I<EB78C0EA01C5EA03031206000E1380120C121C +A238380700A4130EA3EA181EEA0C7CEA079CEA001CA25BA2EAC030EAE070EAC1C0007FC7 +FC121A7E9113>I<EA0FC01201A2485AA448C7FCA4EA0E3E13C3380F0380120E121E121C +A338380700A3130E00701340A2131C1480EAE00C38600700121D7E9C15>I<EA01801203 +EA0100C7FCA7121C12261247A2128EA2120E5AA35AA21271A31272A2123C091C7C9B0D> +I<EA0FC01201A2485AA448C7FCA4380E07801308EB11C01321381C4180EB8000001DC7FC +121EEA3FC0EA38E01370A2EA7071A31372EAE032EA601C121D7E9C13>107 +D<EA1F801203A2EA0700A4120EA45AA45AA45AA412E2A312E412641238091D7D9C0B>I< +391C1E078039266318C0394683A0E0384703C0008E1380A2120EA2391C0701C0A3EC0380 +D8380E1388A2EC0708151039701C032039300C01C01D127C9122>I<EA383EEA4CC3384D +0380124E129E129C121CA238380700A3130E00701340A2131C1480EAE00C386007001212 +7C9117>I<13F8EA030CEA0E06487E1218123000701380A238E00700A3130EA25BEA6018 +5BEA30E0EA0F8011127C9115>I<380387803804C860EBD03013E0EA09C014381201A238 +038070A31460380700E014C0EB0180EB8300EA0E86137890C7FCA25AA45AB4FC151A8091 +15>I<EA01E1EA0713EA0C0F1218EA380E12301270A2EAE01CA41338A3EA6078EA31F0EA +1E701200A213E0A4EA01C0EA0FF8101A7C9113>I<EA1C3CEA2642EA4687EA4707EA8E06 +1300120EA25AA45AA45A123010127C9112>I<EA01F0EA0608120C131CEA1818EA1C0012 +1F13C0EA0FF01207EA00781338EA603012E012C0EA8060EA60C0EA1F000E127D9111>I< +12035AA3120EA4EAFFE0EA1C00A35AA45AA4EAE080A2EAE100A2126612380B1A7C990E> +I<381C0180EA2E03124EA2388E0700A2121CA2EA380EA438301C80A3EA383C38184D00EA +0F8611127C9116>I<EA1C06EA2E0EEA4E06A2EA8E02A2121CA2EA3804A313081230A213 +10EA3820EA1840EA0F800F127C9113>I<381E0183382703871247148338870701A2120E +A2381C0E02A31404EA180C131C1408EA1C1E380C26303807C3C018127C911C>I<380387 +80380CC840380870E012103820E0C014001200A2485AA4EA03811263EAE38212C5EA8584 +EA787813127E9113>I<381C0180EA2E03124EA2388E0700A2121CA2EA380EA4EA301CA3 +EA383CEA1878EA0FB8EA003813301370EAE0605BEA81800043C7FC123C111A7C9114>I< +EA01C1EA07E1EA0FF6EA081CEA1008EA0010132013401380EA010012025AEA08041210EA +2C0CEA73F8EA41F0EA80E010127E9111>I E /Fj 9 120 df<13F8EA030C380E0604EA1C +07383803080030138800701390A200E013A0A214C01480A3EA6007EB0B8838307190380F +80E016127E911B>11 D<EB01F0EB0618EB080C1310EB200E13401380141CEA0100141814 +3838020FF0EB10C0EB0FE0EB00305AA21438A2481370A314E01218EB01C000141380EB03 +00EA230EEA20F890C7FCA25AA45AA217257F9C17>I<126012F0A2126004047C830C>58 +D<130113031306A3130CA31318A31330A31360A213C0A3EA0180A3EA0300A31206A25AA3 +5AA35AA35AA35AA210297E9E15>61 D<EB07E01300A2EB01C0A4EB0380A43801E700EA07 +17EA0C0F1218EA380E12301270A2485AA4EB3880A3EA607838319900EA1E0E131D7E9C16 +>100 D<EA0FC01201A2485AA448C7FCA4EA0E07EB0880EB11C01323381C4780EB830000 +1DC7FC121EEA3FC0EA38E01370A2EA7071A31372EAE032EA601C121D7E9C16>107 +D<EA1F801203A2EA0700A4120EA45AA45AA45AA412E2A312E412641238091D7F9C0C>I< +EA3C1F384E6180384681C0EA4701128F128E120EA2381C0380A3EB070000381310A2130E +1420387006403830038014127E9119>110 D<001CEBC080392701C1C0124714C0398703 +8040A2120EA2391C070080A3EC0100EA1806A2381C0E02EB0F04380E13083803E1F01A12 +7E911E>119 D E /Fk 83 128 df<EB3F80EBE0E03803803848487E000E7F487F003C14 +8000381303007814C0A20070130100F014E000F11311EBFFF1A3EB001100F01301A20070 +14C000781303A200381480003C1307001C14006C130E6C5B6C6C5A3800E0E0EB3F801B1E +7E9C20>2 D<EB7E1F3901C1B180390303E3C0000713C3000EEBC180903801C000A6B512 +FC380E01C0B0387F87FC1A1D809C18>11 D<137E3801C180EA0301380703C0120EEB0180 +90C7FCA5B512C0EA0E01B0387F87F8151D809C17>I<EB7FC0EA01C1EA03031207EA0E01 +A7B5FCEA0E01B0387FCFF8151D809C17>I<90383F07E03901C09C18380380F0D8070113 +3C000E13E00100131892C7FCA5B612FC390E00E01CB03A7FC7FCFF80211D809C23>I<12 +0EA2121E1238127012E012800707779C15>19 D<EA6060EAF0F0EAF8F8EA6868EA0808A3 +EA1010A2EA2020EA4040EA80800D0C7F9C15>34 D<000F14C0EA18803930600380397038 +0700386027FB38E010065CA25CA25C5CEA602000705B38304180EA1881390F0303C03900 +060620EC0C1090380C1C08EB1818EC380413301360A213C0A2EA01803903001808141C00 +06EB0C1048EB06200004EB03C01E217E9E23>37 D<126012F012F812681208A31210A212 +2012401280050C7C9C0C>39 D<1380EA0100120212065AA25AA25AA35AA412E0AC1260A4 +7EA37EA27EA27E12027EEA0080092A7C9E10>I<7E12407E12307EA27EA27EA37EA41380 +AC1300A41206A35AA25AA25A12205A5A092A7E9E10>I<1306ADB612E0A2D80006C7FCAD +1B1C7E9720>43 D<126012F0A212701210A41220A212401280040C7C830C>I<EAFFE0A2 +0B0280890E>I<126012F0A2126004047C830C>I<130113031306A3130CA31318A31330A3 +1360A213C0A3EA0180A3EA0300A31206A25AA35AA35AA35AA35AA210297E9E15>I<EA03 +C0EA0C30EA1818EA300CA2EA700EEA6006A2EAE007ADEA6006A2EA700EEA300CA2EA1818 +EA0C30EA07E0101D7E9B15>I<5A1207123F12C71207B3A5EAFFF80D1C7C9B15>I<EA07C0 +EA1830EA201CEA400C130EEAF00F12F81307A21270EA000F130EA2131CA2133813701360 +13C0EA0180EA0300EA0601120C1218EA1002EA3FFE127F12FF101C7E9B15>I<EA07E0EA +1830EA201CA2EA781E130E131E1238EA001CA2131813301360EA07C0EA0030131CA2130E +130FA2127012F8A3EAF00EEA401C1220EA1830EA07C0101D7E9B15>I<130CA2131C133C +A2135C13DC139CEA011C120312021204120C1208121012301220124012C0B512C038001C +00A73801FFC0121C7F9B15>I<EA300CEA3FF813F013C0EA2000A6EA23E0EA2C30EA3018 +131CEA200E1200130FA3126012F0A3EA800EEA401E131CEA2038EA1870EA07C0101D7E9B +15>I<13F0EA030CEA0404EA0C0EEA181E1230130CEA7000A21260EAE3E0EAE430EAE818 +EAF00C130EEAE0061307A51260A2EA7006EA300E130CEA1818EA0C30EA03E0101D7E9B15 +>I<1240387FFF801400A2EA4002485AA25B485AA25B1360134013C0A212015BA21203A4 +1207A66CC7FC111D7E9B15>I<EA03E0EA0C30EA1008EA200C13061260A21270A2EA7C0C +EA3E18EA3FB0EA1FE0EA07F013F8EA18FCEA307EEA601E130FEAC0071303A4EA60021304 +EA300CEA1C10EA07E0101D7E9B15>I<EA03C0EA0C30EA1818EA300C1270EA600EEAE006 +A21307A51260EA700F1230EA1817EA0C27EA07C7EA0006A2130EEA300C127813181270EA +2030EA10C0EA0F80101D7E9B15>I<126012F0A212601200AA126012F0A2126004127C91 +0C>I<126012F0A212601200AA126012F0A212701210A41220A212401280041A7C910C>I< +007FB512C0B612E0C9FCA8B612E06C14C01B0C7E8F20>61 D<1306A3130FA3EB1780A2EB +37C01323A2EB43E01341A2EB80F0A338010078A2EBFFF83802003CA3487FA2000C131F80 +001E5BB4EBFFF01C1D7F9C1F>65 D<B512C0380F00788080140E140FA4140E141E5C14F8 +EBFFF0EB003C8080801580A5EC0F00A2141E1478B512E0191C7F9B1D>I<90381F8080EB +E0613801801938070007000E13035A14015A00781300A2127000F01400A8007014801278 +A212386CEB0100A26C13026C5B380180083800E030EB1FC0191E7E9C1E>I<B512C0380F +00F0143C140E80A2EC038015C01401A215E0A815C0A21403158014071500140E5C1470B5 +12C01B1C7E9B20>I<B512FC380F003C140C1404A214061402A213011400A35B13FF1303 +7FA3140113001402A31406A2140C143CB512FC181C7E9B1C>I<B512F8380F0078141814 +08A2140C1404A213011400A35B13FF13037FA490C7FCA8EAFFF8161C7E9B1B>I<90381F +8080EBE0613801801938070007000E13035A14015A00781300A2127000F01400A6ECFFF0 +EC0F80007013071278A212387EA27E6C130B380180113800E06090381F80001C1E7E9C21 +>I<39FFF0FFF0390F000F00AC90B5FCEB000FAD39FFF0FFF01C1C7F9B1F>I<EAFFF0EA0F +00B3A8EAFFF00C1C7F9B0F>I<3807FF8038007C00133CB3127012F8A21338EA7078EA40 +70EA30E0EA0F80111D7F9B15>I<39FFF01FE0390F000780EC060014045C5C5C5C5C49C7 +FC13021306130FEB17801327EB43C0EB81E013016D7E1478A280143E141E80158015C039 +FFF03FF01C1C7F9B20>I<EAFFF8EA0F8090C7FCB01408A31418A2141014301470EB01F0 +B5FC151C7E9B1A>I<B46CEBFF80000FECF800A2390BC00178A33809E002A23808F004A3 +EB7808A3EB3C10A3EB1E20A3EB0F40A2EB0780A3EB0300121C3AFF8307FF80211C7E9B26 +>I<B4EB1FF0390F8003809038C00100120BEA09E0EA08F0A21378133C133E131E130F14 +811307EB03C1EB01E114F113001479147D143D141FA2808080121CB46C7E1C1C7F9B1F> +I<EB3F80EBE0E03803803848487E000E7F487F003C148000381303007814C0A200701301 +00F014E0A8007014C000781303A200381480003C1307001C14006C130E6C5B6C6C5A3800 +E0E0EB3F801B1E7E9C20>I<B51280380F00E01478143C141C141EA5141C143C147814E0 +EBFF8090C7FCACEAFFF0171C7E9B1C>I<B5FC380F01E0EB007880141C141EA4141C143C +5CEB01E001FFC7FCEB01E0EB0070147880A61510A2141CA239FFF00E20C7EA03C01C1D7E +9B1F>82 D<3807E080EA1C19EA30051303EA600112E01300A36C13007E127CEA7FC0EA3F +F8EA1FFEEA07FFC61380130FEB07C0130313011280A300C01380A238E00300EAD002EACC +0CEA83F8121E7E9C17>I<007FB512C038700F010060130000401440A200C014201280A3 +00001400B1497E3803FFFC1B1C7F9B1E>I<39FFF01FF0390F000380EC0100B3A26C1302 +138000035BEA01C03800E018EB7060EB0F801C1D7F9B1F>I<39FFE00FF0391F0003C0EC +01806C1400A238078002A213C000035BA2EBE00C00011308A26C6C5AA213F8EB7820A26D +5AA36D5AA2131F6DC7FCA21306A31C1D7F9B1F>I<3AFFE1FFC0FF3A1F003E003C001E01 +3C13186C6D1310A32607801F1320A33A03C0278040A33A01E043C080A33A00F081E100A3 +9038F900F3017913F2A2017E137E013E137CA2013C133C011C1338A20118131801081310 +281D7F9B2B>I<39FFF003FC390F8001E00007EB00C06D13800003EB01006D5A00011302 +6C6C5A13F8EB7808EB7C18EB3C10EB3E20131F6D5A14C06D5AABEB7FF81E1C809B1F>89 +D<12FEA212C0B3B312FEA207297C9E0C>91 D<EA0808EA1010EA2020EA4040A2EA8080A3 +EAB0B0EAF8F8EA7878EA30300D0C7A9C15>I<12FEA21206B3B312FEA20729809E0C>I<EA +1FC0EA3070EA78387F12301200A2EA01FCEA0F1C12381270126000E01340A3EA603C3830 +4E80381F870012127E9115>97 D<12FC121CAA137CEA1D87381E0180381C00C014E01460 +1470A6146014E014C0381E018038190700EA10FC141D7F9C17>I<EA03F8EA0C0CEA181E +1230EA700CEA600012E0A61260EA70021230EA1804EA0C18EA03E00F127F9112>I<EB1F +801303AAEA03F3EA0E0BEA1807EA30031270126012E0A6126012701230EA1807EA0E1B38 +03E3F0141D7F9C17>I<EA07E0EA0C30EA1818EA300CEA700EEA600612E0EAFFFEEAE000 +A41260EA70021230EA1804EA0C18EA03E00F127F9112>I<13F8EA018CEA071E1206EA0E +0C1300A6EAFFE0EA0E00B0EA7FE00F1D809C0D>I<EB03803807C4C0EA1C783838388038 +301800EA701CA4EA3018EA38386C5AEA27C00020C7FCA21230EA3FF86CB4FC1480EA2003 +386001C0EAC000A33860018038300300EA1C0EEA07F8121C7F9215>I<12FC121CAA137C +1387EA1D03001E1380121CAD38FF9FF0141D7F9C17>I<1218123CA21218C7FCA712FC12 +1CB0EAFF80091D7F9C0C>I<13C0EA01E0A2EA00C01300A7EA07E01200B3A21260EAF0C0 +12F1EA6180EA3E000B25839C0D>I<12FC121CAAEB0FE0EB0780EB06005B13105B5B13E0 +121DEA1E70EA1C781338133C131C7F130F148038FF9FE0131D7F9C16>I<12FC121CB3A9 +EAFF80091D7F9C0C>I<39FC7E07E0391C838838391D019018001EEBE01C001C13C0AD3A +FF8FF8FF8021127F9124>I<EAFC7CEA1C87EA1D03001E1380121CAD38FF9FF014127F91 +17>I<EA03F0EA0E1CEA1806487E00701380EA600100E013C0A600601380EA7003003013 +00EA1806EA0E1CEA03F012127F9115>I<EAFC7CEA1D87381E0180001C13C0EB00E0A214 +70A614E0A2EB01C0001E1380381D0700EA1CFC90C7FCA7B47E141A7F9117>I<3803E080 +EA0E19EA1805EA3807EA7003A212E0A61270A2EA38071218EA0E1BEA03E3EA0003A7EB1F +F0141A7F9116>I<EAFCE0EA1D38EA1E78A2EA1C301300ACEAFFC00D127F9110>I<EA1F90 +EA2070EA4030EAC010A212E0EAF800EA7F80EA3FE0EA0FF0EA00F8EA8038131812C0A2EA +E010EAD060EA8FC00D127F9110>I<1204A4120CA2121C123CEAFFE0EA1C00A91310A512 +0CEA0E20EA03C00C1A7F9910>I<38FC1F80EA1C03AD1307120CEA0E1B3803E3F014127F +9117>I<38FF07E0383C0380381C0100A2EA0E02A2EA0F06EA0704A2EA0388A213C8EA01 +D0A2EA00E0A3134013127F9116>I<39FF3FC7E0393C0703C0001CEB01801500130B000E +1382A21311000713C4A213203803A0E8A2EBC06800011370A2EB8030000013201B127F91 +1E>I<38FF0FE0381E0700EA1C06EA0E046C5AEA039013B0EA01E012007F12011338EA02 +1C1204EA0C0E487E003C138038FE1FF014127F9116>I<38FF07E0383C0380381C0100A2 +EA0E02A2EA0F06EA0704A2EA0388A213C8EA01D0A2EA00E0A31340A25BA212F000F1C7FC +12F312661238131A7F9116>I<EA7FFCEA70381260EA407013F013E0EA41C012031380EA +0700EA0F04120E121CEA3C0CEA380812701338EAFFF80E127F9112>I<B512F01401808B +15>I<EA6060EAF0F0A2EA60600C047C9C15>127 D E /Fl 38 121 +df<130E131E137EEA07FE12FFA212F81200B3ABB512FEA317277BA622>49 +D<EBFF80000713F04813FC381E03FE393800FF80007C133F00FE14C06C131F15E0140FA2 +127E003C131FC7FC15C0A2EC3F801500147E5C5C495A495AEB078049C7FC131E4913E013 +705B3901C001C0EA0380EA0600000FB5FC5A5A5AB61280A31B277DA622>I<EB7F803803 +FFF04813FC380F81FE381F007FEA3F80EC3F80A3121F1300C7EA7F00A2147E5C495AEB07 +F0EBFFC0A2EB01F8EB007E801580EC1FC0A215E0A2123C127EB4FCA215C0143F48148000 +7CEB7F00383F01FE6CB45A000713F0C613801B277DA622>I<140FA25C5C5C5C5BA2EB03 +BFEB073F130E131C133C1338137013E0EA01C0EA038012071300120E5A5A5A12F0B612F8 +A3C7EA7F00A890381FFFF8A31D277EA622>I<00181303381F801FEBFFFE5C5C5C14C091 +C7FC001CC8FCA7EB7FC0381DFFF8381F80FC381E003F1208C7EA1F8015C0A215E0A21218 +127C12FEA315C05A0078EB3F80A26CEB7F00381F01FE6CB45A000313F0C613801B277DA6 +22>I<EB07F8EB3FFE90B5FC3901FC07803903F00FC03807C01FEA0F80121F130048EB0F +8091C7FC127EA3EAFE02EB1FF0EB3FFCEB603EEB801F00FF14809038000FC0A24814E0A4 +127EA4123E003F14C07EEC1F80D80F8013003807E07E6CB45A6C5B38003FC01B277DA622 +>I<EC0780A24A7EA34A7EA24A7EA3EC77F8A2ECF7FC14E3A2903801C1FEA201037F1480 +A249486C7EA24980010E133FA2496D7EA2013FB57EA39039700007F8A201F08049130300 +0181491301A2000381D8FFFE013F13FCA32E297EA833>65 D<91387FE003903907FFFC07 +011FEBFF0F90397FF00F9F9039FF0001FFD801FC7F4848147F4848143F4848141F485A16 +0F485A1607127FA290C9FC5AA97E7F1607123FA26C7E160E6C7E6C6C141C6C6C143C6C6C +14786CB4EB01F090397FF007C0011FB512800107EBFE009038007FF028297CA831>67 +D<B612FCEDFF8016E03A03FC001FF8ED03FCED00FE167FEE3F80EE1FC0A2EE0FE0A2EE07 +F0A417F8AA17F0A3EE0FE0A217C0161FEE3F80EE7F005EED03FCED1FF8B75A168003FCC7 +FC2D297EA834>I<B712E0A33903FC001FED07F01501A215001670A3913801C0781638A3 +02031300A2140F90B5FCA3EBFC0F1403A20201130EA3161C91C7FCA3163C1638167816F8 +15011503151FB712F0A327297EA82C>I<B712C0A33903FC003FED0FE015031501A21500 +A316F0913801C070A316001403A2140F90B5FCA3EBFC0F1403A21401A491C8FCA9B512FC +A324297EA82A>I<B5D8F00FB5FCA3D803FCC7EA3FC0AF90B7FCA301FCC7123FB1B5D8F0 +0FB5FCA330297EA835>72 D<B512F0A33803FC00B3B1B512F0A314297EA819>I<B612F8 +15FF16C03A03FC003FE0ED07F0ED03F816FC150116FEA716FC150316F8ED07F0ED3FE090 +B61280EDFE0001FCC8FCB0B512F0A327297EA82E>80 D<B612E015FE6F7E3A03FC003FE0 +ED0FF06F7E6F7E150182A65E4B5A1507ED0FE0ED3FC090B500FEC7FCA29039FC00FF80ED +3FC06F7E6F7E6F7EA9170EA21503923801FC1CB538F000FEEE7FF8EE0FE02F297EA832> +82 D<007FB71280A39039807F807FD87C00140F00781507A20070150300F016C0A24815 +01A5C791C7FCB3A490B612C0A32A287EA72F>84 D<B53CE07FFFE01FFFC0A32803FC0003 +FCC7EA7000A26D6D7E000160A26D6E13016C604B138002801503017F5F4B13C0D93FC001 +3F49C7FCA2913AE00E1FE00F011F160E17F09126F01C0F131E010F161C033C13F8902707 +F838075BA2037813FC902703FC70035BA2913AFEE001FEF001015E02FF14FF4B7E6D5EA2 +6E486D5AA36EC76CC8FCA2023E80021E141EA242297FA845>87 D<3803FF80000F13F038 +1F01FC383F80FE147F801580EA1F00C7FCA4EB3FFF3801FC3FEA0FE0EA1F80EA3F00127E +5AA4145F007E13DF393F839FFC381FFE0F3803FC031E1B7E9A21>97 +D<EB3FF03801FFFC3803F03E380FC07FEA1F80EA3F00A248133E007E90C7FCA212FEA712 +7EA2127F6CEB03801380001FEB0700380FE00E3803F83C3801FFF838003FC0191B7E9A1E +>99 D<EC7FF0A31407ACEB3F873801FFF73807F03F380FC00F381F8007EA3F00A2127EA3 +12FEA8127EA27EA2381F800F380FC01F3907E07FFF3801FFE738007F87202A7EA925>I< +EB3FC03801FFF03803E07C380F803E001F7F130048EB0F80127E15C0A200FE1307A2B6FC +A248C8FCA3127EA2127F6CEB01C07E390F8003803907C007003803F01E3800FFFCEB3FE0 +1A1B7E9A1F>I<EB07F8EB3FFCEB7E3E3801FC7FEA03F813F01207143E1400A7B512C0A3 +3807F000B3A3387FFF80A3182A7EA915>I<9038FF80F00003EBE3F8390FC1FE1C391F00 +7C7C48137E003EEB3E10007EEB3F00A6003E133E003F137E6C137C380FC1F8380BFFE000 +18138090C8FC1238A2123C383FFFF814FF6C14C06C14E06C14F0121F383C0007007CEB01 +F8481300A4007CEB01F0A2003FEB07E0390FC01F806CB5120038007FF01E287E9A22>I< +EAFFE0A3120FAC147E9038E1FF809038E30FC001E413E0EBE80701F813F013F0A213E0B0 +39FFFE3FFFA3202A7DA925>I<1207EA0F80EA1FC0EA3FE0A3EA1FC0EA0F80EA0700C7FC +A7EAFFE0A3120FB3A3EAFFFEA30F2B7EAA12>I<EAFFE0A3120FACEC1FFCA3EC0780EC0F +00141E5C5C14E0EBE3C013E7EBEFE0EBFFF08013F3EBE1FCEBC0FE147FA2EC3F80EC1FC0 +EC0FE0A2EC07F039FFFC1FFFA3202A7FA923>107 D<EAFFE0A3120FB3B2EAFFFEA30F2A +7EA912>I<26FFC07FEB1FC0903AC1FFC07FF0903AC307E0C1F8D80FC49038F101FC9039 +C803F20001D801FE7F01D05BA201E05BB03CFFFE3FFF8FFFE0A3331B7D9A38>I<38FFC0 +7E9038C1FF809038C30FC0D80FC413E0EBC80701D813F013D0A213E0B039FFFE3FFFA320 +1B7D9A25>I<EB3FE03801FFFC3803F07E390FC01F80391F800FC0393F0007E0A2007EEB +03F0A300FE14F8A8007E14F0A26CEB07E0A2391F800FC0390FC01F803907F07F003801FF +FC38003FE01D1B7E9A22>I<38FFE1FE9038EFFF809038FE0FE0390FF803F09038F001F8 +01E013FC140015FEA2157FA8157E15FEA215FC140101F013F89038F807F09038FC0FE090 +38EFFF809038E1FC0001E0C7FCA9EAFFFEA320277E9A25>I<38FFC1F0EBC7FCEBC63E38 +0FCC7F13D813D0A2EBF03EEBE000B0B5FCA3181B7F9A1B>114 D<3803FE30380FFFF0EA +3E03EA7800127000F01370A27E00FE1300EAFFE06CB4FC14C06C13E06C13F0000713F8C6 +FCEB07FC130000E0137C143C7E14387E6C137038FF01E038E7FFC000C11300161B7E9A1B +>I<13E0A41201A31203A21207120F381FFFE0B5FCA2380FE000AD1470A73807F0E00003 +13C03801FF8038007F0014267FA51A>I<39FFE07FF0A3000F1307B2140FA20007131739 +03F067FF3801FFC738007F87201B7D9A25>I<39FFFC03FFA3390FF000F0000714E07F00 +03EB01C0A2EBFC0300011480EBFE070000140013FFEB7F0EA2149EEB3F9C14FC6D5AA26D +5AA36D5AA26D5AA2201B7F9A23>I<3BFFFC7FFC1FFCA33B0FE00FE001C02607F007EB03 +80A201F8EBF00700031600EC0FF801FC5C0001150EEC1FFC2600FE1C5B15FE9039FF387E +3C017F1438EC787F6D486C5A16F0ECE01F011F5CA26D486C5AA2EC800701075CA22E1B7F +9A31>I<39FFFC1FFEA33907F003803803F8079038FC0F003801FE1E00005BEB7F3814F8 +6D5A6D5A130F806D7E130F497EEB3CFEEB38FFEB787F9038F03F803901E01FC0D803C013 +E0EB800F39FFF03FFFA3201B7F9A23>I E /Fm 1 1 df<B512FEA217027D891E>0 +D E /Fn 2 49 df<120CA2EACCC012EDEA7F80EA0C00EA7F80EAEDC012CCEA0C00A20A0B +7D8B10>3 D<1208121CA21238A312301270A21260A212C0A2060D7E8D09>48 +D E /Fo 3 101 df<EA01F038070C08380C0E10EA1807123000701320126000E01340A2 +14801400A3EA601B383063A0380F81C015107F8F19>11 D<EB03C0EB0C301310EB203813 +401380EA0100A2000213701460EB1FC0131138041F60EB0070A35AA31460001813E014C0 +EB018038140300EA230EEA20F890C7FCA25AA45A1521809916>I<EB0FC01301A3EB0380 +A4EB0700A2EA03E7EA0617EA1C0E123812301270EA601C12E0A3133912C012E0EA6079EA +219AEA1E0E121A7F9914>100 D E /Fp 7 117 df<1303497EA2497EA3EB1BE0A2EB3BF0 +1331A2EB60F8A2EBE0FCEBC07CA248487EEBFFFE487FEB001F4814800006130FA248EB07 +C039FF803FFCA21E1A7F9921>65 D<EA1FF0EA383CEA7C1E7FA21238120013FFEA0FCFEA +3E0F127C12F8A31317387C27E0EA1FC313117F9015>97 D<12FCA2123CA713FE383F8780 +383E01C0003C13E0EB00F0A214F8A514F0A2EB01E0003E13C0383B07803830FE00151A7E +9919>I<EA03FCEA0F0EEA1C1F123C1278130E00F8C7FCA51278A2383C0180381C0300EA +0F06EA03FC11117F9014>I<EAF8F0EAF938EA3A7CA2123C13381300A9EAFF80A20E117E +9012>114 D<EA1FD8EA2078EA401812C0A2EAF000EAFF80EA7FE0EA3FF0EA07F8EA003C +EAC00CA212E01308EAF830EACFE00E117F9011>I<1206A4120EA2121EEA3FF012FFEA1E +00A81318A5EA0F30EA03E00D187F9711>I E /Fq 47 123 df<EBFE7C380381C6380603 +CE000E1384001C1380A6B512F0381C0380AE38FF8FF0171A809916>11 +D<126012F012F812681208A31210A212201240050B7D990B>39 D<1380EA010012025A12 +0C120812185AA35AA412E0AA1260A47EA37E1208120C12047E7EEA008009267D9B0F>I< +7E12407E7E12181208120C7EA37EA41380AA1300A41206A35A1208121812105A5A5A0926 +7E9B0F>I<126012F0A212701210A31220A21240A2040B7D830B>44 +D<EAFFC0A20A0280880D>I<126012F0A2126004047D830B>I<12035AB4FC1207B3A2EA7F +F80D187D9713>49 D<EA0F80EA1060EA2030EA4038EA803CEAC01C12E01240EA003C1338 +A21370136013C0EA018013001202EA040412081210EA3008EA3FF8127F12FF0E187E9713 +>I<EA01F8EA0704EA0C06EA180E123013001270126012E0EAE3E0EAE418EAE80CEAF00E +EAE0061307A31260A2EA7006EA300EEA180CEA0C38EA07E010187F9713>54 +D<130CA3131EA2132F1327A2EB4380A3EB81C0A200017F1300A248B47E38020070A2487F +A3487FA2003C131EB4EBFFC01A1A7F991D>65 D<EB3F023801C0C63803002E000E131E48 +130E14065A007813021270A200F01300A600701302A21278003813047E14087E00031330 +3801C0C038003F00171A7E991C>67 D<B57E380E00E01470808080A280A21580A81500A2 +5C140E5CA2147814E0B51280191A7F991D>I<B512F8380E003814181408140C1404A3EB +0100A35BEA0FFFEA0E037FA3EB0002A314061404A2140C143CB512FC171A7F991A>I<EB +3F023801C0C63803002E000E131E48130E14065A007813021270A200F090C7FCA5903801 +FFC03970000E00A2127812387EA27E000313163801C06638003F821A1A7E991E>71 +D<39FFE1FFC0390E001C00AB380FFFFC380E001CAC39FFE1FFC01A1A7F991D>I<EAFF80 +EA1C00B3A6EAFF80091A7E990E>I<137F3801C1C038070070000E7F487F003C131E0038 +130E0078130F00707F00F01480A80078EB0F00A20038130E003C131E001C131C6C5B6C5B +3801C1C0D8007FC7FC191A7E991E>79 D<B51280380E01E0EB007014781438143CA41438 +14781470EB01E0380FFF80000EC7FCABEAFFE0161A7F991A>I<EA0FC2EA1836EA200EEA +600612C01302A3EAE0001270127EEA3FE0EA1FF8EA03FCEA007E130E130713031280A3EA +C0021306EAE004EAD818EA87E0101A7E9915>83 D<007FB5FC38701C0700401301A200C0 +148000801300A300001400B13803FFE0191A7F991C>I<39FFE07FC0390E000E001404B2 +00065B12076C5B6C6C5A3800E0C0013FC7FC1A1A7F991D>I<EA1FC0EA38707FEA101C12 +00A2EA03FCEA1E1C1238127012E01480A2133CEA705F381F8F0011107F8F13>97 +D<12FC121CA913FCEA1D07381E0380381C01C0130014E0A6EB01C01480381E0300EA1906 +EA10F8131A809915>I<EA07F8EA1C1C1238EA700813005AA612701304EA3808EA1C18EA +07E00E107F8F11>I<133F1307A9EA03E7EA0C17EA180F487E127012E0A6126012706C5A +EA1C373807C7E0131A7F9915>I<EA07C0EA1C30EA30181270EA600C12E0EAFFFCEAE000 +A41260EA7004EA3808EA1C18EA07E00E107F8F11>I<EA01F0EA0718EA0E38EA1C101300 +A6EAFFC0EA1C00AEEAFF800D1A80990C>I<EA0FCF3818718038303000EA7038A4EA3030 +6C5AEA2FC00060C7FCA21270EA3FF013FC6C7EEA600FEAC003A4EA6006EA381CEA07E011 +187F8F13>I<12FC121CA9137CEA1D87381E0380A2121CAB38FF9FF0141A809915>I<1218 +123CA212181200A612FC121CAE12FF081A80990A>I<12FC121CA9EB1FC0EB0F00130C5B +13205B13E0121DEA1E70EA1C7813387F131E7F148038FF9FE0131A809914>107 +D<12FC121CB3A6EAFF80091A80990A>I<38FC7C1F391D8E6380391E0781C0A2001C1301 +AB39FF9FE7F81D107F8F20>I<EAFC7CEA1D87381E0380A2121CAB38FF9FF01410808F15> +I<EA07E0EA1C38EA300CEA700EEA6006EAE007A6EA6006EA700EEA381CEA1C38EA07E010 +107F8F13>I<EAFCFCEA1D07381E0380381C01C0A2EB00E0A6EB01C01480381E0300EA1D +06EA1CF890C7FCA6B47E1317808F15>I<EA03E1EA0C13EA180BEA300FEA700712E0A612 +70A26C5AEA1C37EA07C7EA0007A6EB3FE013177F8F14>I<EAFC78EA1D9CEA1E1C1308EA +1C00ABEAFF800E10808F0F>I<EA1F20EA60E0EA402012C0A2EAF000127FEA3FC0EA1FE0 +EA00F0EA8070133012C01320EAF040EA8F800C107F8F0F>I<1208A41218A21238EAFFC0 +EA3800A81320A41218EA1C40EA07800B177F960F>I<38FC1F80EA1C03AB1307120CEA0E +0B3803F3F01410808F15>I<38FF0F80383C0700EA1C061304A26C5AA26C5AA3EA03A0A2 +EA01C0A36C5A11107F8F14>I<39FE7F1F8039381C0700003C1306381C0C04130E380E16 +081317A238072310149013A33803C1A014E0380180C0A319107F8F1C>I<38FE3F80383C +1E00EA1C086C5AEA0F306C5A6C5A12017F1203EA0270487E1208EA181CEA381E38FC3FC0 +12107F8F14>I<38FF0F80383C0700EA1C061304A26C5AA26C5AA3EA03A0A2EA01C0A36C +5AA248C7FCA212E112E212E4127811177F8F14>I<EAFFF8EAE07012C0EA80E0EA81C0A2 +EA0380EA0700A2EA0E04121CA2EA380812701338EAFFF80E107F8F11>I +E /Fr 16 118 df<127012F8A212F012E005057A840F>46 D<14FE903807018090381800 +60012013105B49130848C71204380201F03804070839080C04023810180290383003C238 +2060019038E00382EA40C01241A23983800704A4EC0E08A20081131EEC2E103980C04E20 +9038618E6039403E078090C8FC7EA26C14E0000CEB07800003EB7C003800FF801F2379A2 +25>64 D<EBF8C0EA0185EA0705380E0380A2121C123C383807001278A3EAF00EA31410EB +1C201270133C38305C40138C380F078014157B9419>97 D<EA03C0EA1F801203A3EA0700 +A4120EA45A13F8EA1D0CEA1E0EEA3C06EA3807A2130F1270A4EAE01EA3133C1338A2EA60 +7013E0EA31C0EA1F0010237BA216>I<137EEA01C138030180EA0703EA0E07121C003CC7 +FC12381278A35AA45B12701302EA300CEA1830EA0FC011157B9416>I<13F8EA0384EA0E +02121C123C1238EA7804EAF018EAFFE0EAF000A25AA41302A2EA6004EA7018EA3060EA0F +800F157A9416>101 D<13F0EA0FE01200A3485AA4485AA448C7FC131FEB2180EBC0C038 +0F00E0A2120EA2381C01C0A438380380A3EB070400701308130E1410130600E013203860 +03C016237DA219>104 D<14E01301A2EB00C01400A8131E1323EB43801383A2EA0103A2 +38000700A4130EA45BA45BA45BA3EA70E0EAF0C0EAF1800063C7FC123C132B82A00F> +106 D<13F0EA07E01200A3485AA4485AA448C7FCEB01E0EB0210EB0470380E08F01310EB +2060EB4000EA1D80001EC7FCEA1FC0EA1C70487EA27F142038703840A3EB188012E03860 +0F0014237DA216>I<EA01E0EA0FC01201A3EA0380A4EA0700A4120EA45AA45AA45AA312 +7112E2A4126412380B237CA20C>I<38380F80384C30C0384E4060388E8070EA8F00128E +A24813E0A4383801C0A3EB03840070138814081307EB031012E0386001E016157B941B> +110 D<137EEA01C338038180380701C0120E001C13E0123C12381278A338F003C0A21480 +130700701300130E130CEA3018EA1870EA07C013157B9419>I<EA1C1F38262080384741 +C0EA87831303EB018090C7FC120EA45AA45AA45A123012157B9415>114 +D<13FCEA018338020080EA0401EA0C03140090C7FC120F13F0EA07FC6C7EEA003E130F7F +1270EAF006A2EAE004EA4008EA2030EA1FC011157D9414>I<13C01201A4EA0380A4EA07 +00EAFFF8EA0700A2120EA45AA45AA31310EA7020A213401380EA3100121E0D1F7C9E10> +I<001E1360002313E0EA4380EB81C01283EA8701A238070380120EA3381C0700A31408EB +0E101218121CEB1E20EA0C263807C3C015157B941A>I E /Fs 27 +118 df<90381FC1F090387037189038C03E3C3801807C000313783907003800A9B612C0 +3907003800B2143C397FE1FFC01E2380A21C>11 D<127012F812FCA212741204A41208A2 +1210A212201240060F7C840E>44 D<127012F8A3127005057C840E>46 +D<EA01F0EA071CEA0C06487E00381380A2387001C0A400F013E0AE007013C0A3EA780300 +381380A2381C0700EA0C06EA071CEA01F013227EA018>48 D<13801203120F12F31203B3 +A9EA07C0EAFFFE0F217CA018>I<EA03F0EA0C1CEA100700201380384003C0A2008013E0 +12F0EAF801A3EA2003120014C0A2EB07801400130E5B13185B5B5B485A90C7FC00021320 +5A5A00181360481340383FFFC05AB5FC13217EA018>I<137EEA01C138030080380601C0 +EA0C03121C381801800038C7FCA212781270A2EAF0F8EAF30CEAF4067F00F81380EB01C0 +12F014E0A51270A3003813C0A238180380001C1300EA0C06EA070CEA01F013227EA018> +54 D<EA01F0EA060C487EEA1807383803801270A238F001C0A314E0A5127013031238EA +1805120CEA0619EA03E1380001C0A3EB0380A21230387807001306EA700CEA20186C5AEA +0FC013227EA018>57 D<497EA3497EA3EB05E0A2EB09F01308A2EB1078A3497EA3497EA2 +EBC01F497EA248B51280EB0007A20002EB03C0A348EB01E0A348EB00F0121C003EEB01F8 +39FF800FFF20237EA225>65 D<B512F8380F800E0007EB0780EC03C015E0140115F0A515 +E01403EC07C0EC0F80EC3E00EBFFFE9038800780EC03C0EC01E015F0140015F8A6EC01F0 +A2EC03E0EC07C0000FEB0F00B512FC1D227EA123>I<903807F00890383C0C18EBE00239 +01C001B839038000F848C71278481438121E15185AA2007C14081278A200F81400A7EC1F +FF0078EB00F81578127C123CA27EA27E7E6C6C13B86C7E3900E0031890383C0C08903807 +F00020247DA226>71 D<3803FFE038001F007FB3A6127012F8A2130EEAF01EEA401C6C5A +EA1870EA07C013237EA119>74 D<D8FFC0EB03FF000F15F0000715E0D805E01305A2D804 +F01309A301781311A36D1321A36D1341A26D1381A39038078101A3EB03C2A2EB01E4A3EB +00F8A31470120E001FEC03F03AFFE0203FFF28227EA12D>77 D<3803F020380C0C60EA18 +02383001E0EA70000060136012E0A21420A36C1300A21278127FEA3FF0EA1FFE6C7E0003 +138038003FC0EB07E01301EB00F0A214707EA46C1360A26C13C07E38C8018038C60700EA +81FC14247DA21B>83 D<EA1FE0EA3038EA780C130EEA30071200A313FFEA07C7EA1E0712 +3C1278127000F01308A3130FEA7817383C2390380FC1E015157E9418>97 +D<EA01FEEA0703380C0780121C383803000078C7FC127012F0A712700078134012386C13 +80380C0100EA0706EA01F812157E9416>99 D<EA01FCEA0707380C0380381C01C0123800 +7813E0EA700012F0B5FC00F0C7FCA512700078132012386C13406C138038070300EA00FC +13157F9416>101 D<14703803F198380E1E18EA1C0E38380700A200781380A400381300 +A2EA1C0EEA1E1CEA33F00020C7FCA212301238EA3FFE381FFFC06C13E0383000F0481330 +481318A400601330A2003813E0380E03803803FE0015217F9518>103 +D<120E12FE121E120EABEB1F80EB60C0EB80E0380F0070A2120EAF38FFE7FF18237FA21B +>I<121C123EA3121CC7FCA8120E127E121E120EB1EAFFC00A227FA10E>I<120E12FE121E +120EABEB03FCEB01F014C01480EB02005B5B5B133813F8EA0F1CEA0E1E130E7F1480EB03 +C0130114E0EB00F014F838FFE3FE17237FA21A>107 D<380E1F8038FE60C0381E80E038 +0F0070A2120EAF38FFE7FF18157F941B>110 D<EA01FCEA0707380C0180381800C00038 +13E0481370A200F01378A700701370007813F0003813E0381C01C0380E038038070700EA +01FC15157F9418>I<EA0E3CEAFE46EA1E8FEA0F0F13061300120EAD120FEAFFF010157F +9413>114 D<EA0F88EA3078EA601812C01308A212E0EAF000127FEA3FE0EA0FF0EA01F8 +EA003CEA801C130CA212C01308EAE018EAD030EA8FC00E157E9413>I<1202A41206A312 +0E121E123EEAFFFCEA0E00AB1304A6EA07081203EA01F00E1F7F9E13>I<000E137038FE +07F0EA1E00000E1370AD14F0A238060170380382783800FC7F18157F941B>I +E /Ft 1 4 df<13C0A538E0C1C0EAF0C33838C700EA0EDCEA03F0EA00C0EA03F0EA0EDC +EA38C738F0C3C0EAE0C13800C000A512157D9619>3 D E /Fu 18 +117 df<1403A34A7EA24A7EA3EC17E01413A2EC23F01421A2EC40F8A3EC807CA2903801 +007E153EA20102133F81A2496D7EA3496D7EA2011880011FB5FCA29039200003F01501A2 +496D7EA349147CA20001157E90C8123EA248153F825AD81F80EC3F80D8FFE0903801FFFC +A22E327EB132>65 D<B612E015FC3907E0007F0003EC0F80ED03C06F7E6F7E16788282A2 +82A21780160717C0A21603A217E0AB17C0A21607A21780A2160F17005E161E5E5E16F84B +5A4B5AED0F800007023FC7FCB612FC15E02B317CB033>68 D<B539807FFFC0A23B07F000 +03F8006C486D5AB3A290B6FCA29038E00001B3A3486C497EB539807FFFC0A22A317CB032 +>72 D<B51280A23807F0006C5AB3B3A7487EB51280A211317DB017>I<B612E015FC3907 +E0003F0003EC0F80ED03C0ED01E016F0ED00F8A21678167CA6167816F816F0150116E0ED +03C0ED0F80ED3E0090B512F801E0C8FCB3A3487EB57EA226317DB02D>80 +D<90387F80203801FFE03907C07860380F001C001EEB06E0481303003813010078130012 +70156012F0A21520A37E1500127C127E7E13C0EA1FF86CB47E6C13F06C13FCC613FF010F +1380010013C0EC1FE01407EC03F01401140015F8A26C1478A57E15706C14F015E07E6CEB +01C000ECEB038000C7EB070038C1F01E38807FFCEB0FF01D337CB125>83 +D<007FB712E0A23A7E000F800700781501007015000060166000401620A200C01630A248 +1610A6C71500B3AC4A7E010FB57EA22C317EB030>I<13FE380303C0380C00E000101370 +80003C133C003E131C141EA21208C7FCA3EB0FFEEBFC1EEA03E0EA0F80EA1F00123E123C +127C481404A3143EA21278007C135E6CEB8F08390F0307F03903FC03E01E1F7D9E21>97 +D<EB1FC0EBF0303801C00C38078002EA0F00000E130F001E5B5AA2007C1304007890C7FC +12F8A91278127C123C15807E000EEB0100120F380780023801C00C3800F030EB1FC0191F +7E9E1D>99 D<EB3F80EBE0E0380380383807003C000E7F121E001C7F123C127C00781480 +140712F8A2B6FC00F8C8FCA61278127C123C15807E000EEB0100000F13027E3801C00C38 +00F030EB1FC0191F7E9E1D>101 D<15F090387F03083901C1C41C380380E83907007008 +48EB7800001E7FA2003E133EA6001E133CA26C5B6C13706D5A3809C1C0D8087FC7FC0018 +C8FCA5121C7E380FFFF86C13FF6C1480390E000FC00018EB01E048EB00F0007014704814 +38A500701470A26C14E06CEB01C00007EB07003801C01C38003FE01E2F7E9F21>103 +D<EA078012FFA2120F1207AF14FE903883078090388C03C090389001E013A06E7E13C0A2 +5BB3A2486C487E3AFFFC1FFF80A221327EB125>I<120FEA1F80A4EA0F00C7FCABEA0780 +127FA2120F1207B3A6EA0FC0EAFFF8A20D307EAF12>I<EA078012FFA2120F1207B3B3A7 +EA0FC0EAFFFCA20E327EB112>108 D<260780FEEB1FC03BFF83078060F0903A8C03C180 +783B0F9001E2003CD807A013E4DA00F47F01C013F8A2495BB3A2486C486C133F3CFFFC1F +FF83FFF0A2341F7E9E38>I<EB1FC0EBF0783801C01C38070007481480001EEB03C0001C +1301003C14E0A248EB00F0A300F814F8A8007814F0007C1301003C14E0A26CEB03C0A26C +EB07803907800F003801C01C3800F078EB1FC01D1F7E9E21>111 +D<380783E038FF8418EB887CEA0F90EA07A01438EBC000A35BB3487EEAFFFEA2161F7E9E +19>114 D<1340A513C0A31201A212031207120F381FFFE0B5FC3803C000B01410A80001 +132013E000001340EB78C0EB1F00142C7FAB19>116 D E /Fv 62 +124 df<90380FF83F90397FFDFFC03A01F81FE3E03903E03F87EA07C0D80F801307ED03 +C06EC7FCA6B612FCA2260F801FC7FCB2397FF0FFF0A223237FA221>11 +D<EB0FF0EB7FFC3801F80E3803E01F48485AEA0F80A2141E140C91C7FCA4B6FCA2380F80 +1FB2397FF0FFE0A21B237FA21F>I<38380380387C07C038FE0FE000FF13F0A2EA7F0738 +3B03B038030030A300061360A24813C0EA1C010018138038700700EA200214117EA21D> +34 D<13181330136013C01201EA0380EA0700A2120E121E121C123CA35AA412F85AAB7E +1278A47EA3121C121E120E7EA2EA0380EA01C012001360133013180D317BA416>40 +D<12C012607E7E121C7E7EA2EA038013C0120113E0A3EA00F0A413F81378AB13F813F0A4 +EA01E0A313C012031380EA0700A2120E5A12185A5A5A0D317DA416>I<EAFFFCA40E047F +8C13>45 D<1238127C12FEA3127C123807077C8610>I<13FE3807FFC0380F83E0381F01 +F0383E00F8A248137CA312FC147EAD007C137CA36C13F8A2381F01F0380F83E03807FFC0 +3800FE0017207E9F1C>48 D<13181378EA01F812FFA21201B3A7387FFFE0A213207C9F1C +>I<EA03FCEA0FFF383C1FC0387007E0007C13F0EAFE0314F8A21301127CEA3803120014 +F0A2EB07E014C0EB0F80EB1F00133E13385BEBE018EA01C0EA0380EA0700000E1338380F +FFF05A5A5AB5FCA215207D9F1C>I<13FE3807FFC0380F07E0381E03F0123FEB81F8A3EA +1F0314F0120014E0EB07C0EB1F803801FE007F380007C0EB01F014F8EB00FCA2003C13FE +127EB4FCA314FCEA7E01007813F8381E07F0380FFFC03801FE0017207E9F1C>I<14E013 +011303A21307130F131FA21337137713E7EA01C71387EA03071207120E120C1218123812 +7012E0B6FCA2380007E0A790B5FCA218207E9F1C>I<00301320383E01E0383FFFC01480 +14005B13F8EA33C00030C7FCA4EA31FCEA37FF383E0FC0383807E0EA3003000013F0A214 +F8A21238127C12FEA200FC13F0A2387007E0003013C0383C1F80380FFF00EA03F815207D +9F1C>I<EB1F80EBFFE03803E0703807C0F0380F01F8121F123EA2387E00F0007C1300A2 +EAFC08EB7FC0EBFFE038FD80F038FF00F848137CA248137EA4127CA3003C137C123E001E +13F86C13F0380783E03803FFC0C6130017207E9F1C>I<12601278387FFFFEA214FC14F8 +A214F038E0006014C038C00180EB0300A2EA00065B131C131813381378A25BA31201A312 +03A76C5A17227DA11C>I<13FE3803FFC0380703E0380E00F05A1478123C123E123F1380 +EBE0F0381FF9E0EBFFC06C13806C13C06C13E04813F0381E7FF8383C1FFCEA7807EB01FE +EAF000143E141EA36C131C007813387E001F13F0380FFFC00001130017207E9F1C>I<EA +01FE3807FF80380F83E0381E01F0EA3E004813F8147800FC137CA3147EA4007C13FEA2EA +3E01381E037EEA0FFEEA07FCEA0020EB007CA2121E003F13F8A214F0EB01E0381E03C038 +1C0F80380FFE00EA03F817207E9F1C>I<1470A214F8A3497EA2497EA3EB067FA2010C7F +143FA2496C7EA201307F140F01707FEB6007A201C07F90B5FC4880EB8001A2D803007F14 +004880000680A23AFFE007FFF8A225227EA12A>65 D<B67E15F03907F001F86E7E157EA2 +157FA5157E15FE5DEC03F890B55AA29038F001FCEC007E811680151F16C0A6ED3F80A2ED +7F00EC01FEB612F815C022227EA128>I<D903FE138090381FFF819038FF01E33901F800 +3FD803E0131F4848130F48481307121F48C71203A2481401127EA200FE91C7FCA8127EED +0180127F7E15036C6C1400120F6C6C1306D803F05B6C6C13386CB413F090381FFFC0D903 +FEC7FC21227DA128>I<B67E15F03907F003FCEC007E81ED1F80ED0FC0ED07E0A216F015 +03A316F8A916F0A3ED07E0A2ED0FC0ED1F80ED3F00157EEC03FCB612F0158025227EA12B +>I<B612F8A23807F001EC007815381518151CA2150CA21418A21500A214381478EBFFF8 +A2EBF07814381418A491C7FCA8B512C0A21E227EA123>70 D<D903FE134090391FFFC0C0 +90387F00F1D801F8133F4848130FD807C01307000F1403485A48C71201A2481400127EA2 +00FE1500A791380FFFFC127E007F9038001FC0A27EA26C7E6C7E6C7E6C7ED801FC133F39 +007F80E790381FFFC30103130026227DA12C>I<B53883FFFEA23A07F0001FC0AD90B6FC +A29038F0001FAFB53883FFFEA227227EA12C>I<B51280A23807F000B3ACB51280A21122 +7EA115>I<48B51280A2390003F800B3A41218127E12FFA35C387E07E0387C0FC0381FFF +80D807FCC7FC192280A11D>I<B538803FFCA23A07F0000380ED0700150E15185D15E04A +5A4A5A4AC7FC140E1418143C14FCEBF1FEEBF3FFEBF77F9038FE3F8001F87F496C7E140F +6E7E816E7E1401816E7E81ED3F8016C0ED1FE0B53881FFFEA227227EA12C>I<B512C0A2 +D807F0C7FCB31518A41538A21570A215F014011407B6FCA21D227EA122>I<D8FFF0EC0F +FF6D5C000716E0D806FC1437A3017E1467A26D14C7A290391F800187A290390FC00307A3 +903807E006A2903803F00CA2903801F818A3903800FC30A2EC7E60A2EC3FC0A2EC1F80A3 +EC0F00D8FFF091B5FC140630227EA135>I<EB07FC90383FFF809038FC07E03903F001F8 +48486C7E4848137E48487FA248C7EA1F80A24815C0007E140FA200FE15E0A9007E15C000 +7F141FA26C15806D133F001F15006C6C137E6C6C5B6C6C485A3900FC07E090383FFF80D9 +07FCC7FC23227DA12A>79 D<B6FC15E03907F007F0EC01FC1400157EA2157FA5157EA215 +FC1401EC07F090B512E0150001F0C7FCADB57EA220227EA126>I<B512FEECFFC03907F0 +07F0EC01F86E7E157E157FA6157E5D4A5AEC07F090B512C05D9038F00FE06E7E6E7E6E7E +A81606EC00FEEDFF0CB538803FF8ED0FF027227EA12A>82 D<3801FE023807FF86381F01 +FE383C007E007C131E0078130EA200F81306A27E1400B4FC13E06CB4FC14C06C13F06C13 +F86C13FC000313FEEA003F1303EB007F143FA200C0131FA36C131EA26C133C12FCB413F8 +38C7FFE00080138018227DA11F>I<007FB61280A2397E03F80F00781407007014030060 +140100E015C0A200C01400A400001500B3A248B512F0A222227EA127>I<B538803FFCA2 +3A07F0000180B3A60003EC03007F000114066C6C130E017E5B90383F80F890380FFFE001 +0190C7FC26227EA12B>I<B5EB0FFEA2D807F0EB00C0A26C6CEB0180A26D130300011500 +7F000014067F6D5BA2EC801C013F1318ECC038011F133014E0010F5BA26D6C5AA214F901 +035B14FD6DB4C7FCA26D5AA3147CA21438A227227FA12A>I<B53A0FFFF00FFEA2260FF0 +0090C712E000076E14C0A26C6C90393F800180A26D14C00001EE0300A26D496C5A000002 +6F1306A2017F9038C7F00CA2028113F8013F01835BA29139C301FC38011F153016FE9026 +0FE6005BA202FEEBFFE06D486D5AA26D486D5AA36D486DC7FCA36D48130EA237227FA13A +>I<00041340000E13E038180180EA380300301300EA6006A2485AA338DC0DC038FE0FE0 +00FF13F0A2EA7F07383E03E0381C01C014117AA21D>92 D<EA0FFC383FFF80387E07C0EB +03E0130114F0123C1200A2133FEA03FDEA1FC1EA3F01127E12FCA4EA7E02EB0CF8381FF8 +7F3807E03F18167E951B>97 D<B4FCA2121FABEB0FE0EB3FF8EBE07CEB803E497EEC0F80 +A215C0A81580141F01801300EBC03E381EE07C381C3FF838180FC01A237EA21F>I<EBFF +80000713E0380F83F0EA1F03123E127E387C01E090C7FC12FCA6127C127EA2003E13186C +1330380FC0603807FFC0C6130015167E9519>I<EB01FEA2EB003EABEA01FC3807FFBE38 +0F81FE381F007E003E133E127E127C12FCA8127CA26C137E6C13FE380F83BE3907FF3FC0 +EA01FC1A237EA21F>I<13FE3807FF80380F87C0381E01E0003E13F0EA7C0014F812FCA2 +B5FCA200FCC7FCA3127CA2127E003E13186C1330380FC0703803FFC0C6130015167E951A +>I<EB1FC0EB7FE0EBF1F0EA01E31203EA07C3EBC1E0EBC000A6EAFFFEA2EA07C0B2EA3F +FCA2142380A211>I<3801FE0F3907FFBF80380F87C7381F03E7391E01E000003E7FA500 +1E5BEA1F03380F87C0EBFF80D809FEC7FC0018C8FCA2121C381FFFE06C13F86C13FE001F +7F383C003F48EB0F80481307A40078EB0F006C131E001F137C6CB45A000113C019217F95 +1C>I<B4FCA2121FABEB07E0EB1FF8EB307CEB403CEB803EA21300AE39FFE1FFC0A21A23 +7EA21F>I<121C123E127FA3123E121CC7FCA7B4FCA2121FB2EAFFE0A20B247EA310>I<B4 +FCA2121FABECFF80A2EC38001460495A495A49C7FC130E5B137E13FF13CFEB0F806D7E6D +7E1301806D7E147C143C39FFE0FFC0A21A237EA21E>107 D<B4FCA2121FB3ADEAFFE0A2 +0B237EA210>I<3AFF07F007F090391FFC1FFC3A1F303E303E01401340496C487EA20100 +1300AE3BFFE0FFE0FFE0A22B167E9530>I<38FF07E0EB1FF8381F307CEB403CEB803EA2 +1300AE39FFE1FFC0A21A167E951F>I<13FE3807FFC0380F83E0381E00F0003E13F84813 +7CA300FC137EA7007C137CA26C13F8381F01F0380F83E03807FFC03800FE0017167E951C +>I<38FF0FE0EB3FF8381FE07CEB803E497E1580A2EC0FC0A8EC1F80A29038803F00EBC0 +3EEBE0FCEB3FF8EB0FC090C8FCA8EAFFE0A21A207E951F>I<EBFE033807FF87380FC1C7 +381F006F48133F127E80127C12FCA7127EA2003E5B6C5B380FC1DF3807FF9F3801FC1FC7 +FCA8ECFFE0A21B207E951E>I<EAFE1FEB3FC0381E67E013C71387A2381F83C090C7FCAD +EAFFF0A213167E9517>I<EA0FF3EA3FFFEA781FEA6007EAE003A212F000FCC7FCEA7FE0 +13F8EA3FFEEA0FFF120138000F80EAC007130312E0A238F00700EAFC0EEAEFFCEAC7F011 +167E9516>I<487EA41203A21207A2120F123FB5FCA2EA0F80ABEB8180A5EB8300EA07C3 +EA03FEEA00F811207F9F16>I<38FF01FEA2381F003EAF147E14FE380F81BE3907FF3FC0 +EA01FC1A167E951F>I<39FFE01FE0A2391F800700000F1306EBC00E0007130C13E00003 +5BA26C6C5AA26C6C5AA2EB7CC0A2137F6D5AA26DC7FCA2130EA21B167F951E>I<3AFFE3 +FF07F8A23A1F007800C09038807C01000F1580A23A07C07E030014DE5D3903E1DF06148F +D801F1138CEBF307A2D800FF13D8EBFE0315F890387C01F0A2013C5BEB3800A225167F95 +28>I<39FFE01FE0A2391F800700000F1306EBC00E0007130C13E000035BA26C6C5AA26C +6C5AA2EB7CC0A2137F6D5AA26DC7FCA2130EA2130CA25B1278EAFC3813305BEA69C0EA7F +80001FC8FC1B207F951E>121 D<B612E0A21B02808E1C>123 D E +/Fw 2 13 df<EB01FCEB0F0790381C01C090397000E0065B4848EB700C00031478485A48 +C7EA3818153C001E1510003E1530A2481560164016C0ED3D805AED3F00153E153C1278A3 +157C003814BC6C9038033C0CEC0E1C6C9038380C183A0381E00E303A00FF0003E0271F7E +9E2D>11 D<ED1F80EDE0609138030038020613180208131C4A131E5C5C14C0495A49C7FC +A20106143CA2491438167801081470011814E0ED01C091380FFB80903930180E00EC0FF3 +9138000380ED01C04914E0150016F0A25BA448481301A448C7EA03E0A216C01507481580 +6D130F16000006141E486C5B014013386D13F090381801C026180E07C7FCEB03FC90C9FC +A25AA45AA45AA427407FB128>I E /Fx 18 117 df<1578A215FCA34A7EA24A7EA24A7F +A34A7FEC0E7F021E7FEC1C3FA202387F151F02787FEC700FA202E07F1507010180ECC003 +A249486C7EA201078191C7FC498191B6FCA24981011CC7123F013C810138141FA2498116 +0F01F081491407A2484881486C1403B549B512FCA336317DB03D>65 +D<B712F016FF17C0C6D9800013F0EE0FF8EE03FE707E701380EF7FC0173FEF1FE018F017 +0F18F8A2EF07FCA418FEAB18FCA4EF0FF8A218F0171F18E0173FEF7FC01880933801FF00 +4C5AEE0FFCEE7FF0B812C094C7FC16F037317EB03E>68 D<B6D8807FB512C0A3C60180C7 +387FC000B391B7FCA30280C7127FB3A3B6D8807FB512C0A33A317EB03F>72 +D<B61280A3C6EB8000B3B3A7B61280A319317EB01E>I<B712E016FEEEFF80C6D9800013 +E0EE3FF0EE0FF8EE07FCA2EE03FEA217FFA717FEA2EE07FC17F8160FEE3FE0EEFFC091B6 +120016F80280C8FCB3A2B67EA330317EB037>80 D<90391FF8018090B51203000314C739 +07F007EF390F8000FF48C7127F003E141F150F5A150712FCA215037EA26C91C7FC13C0EA +7FF0EBFF806C13F8ECFF806C14F06C806C806C14FFC6FC013F1480010114C0D9001F13E0 +1401EC003FED1FF0150F1507126000E01403A316E07EA26CEC07C07EB4EC0F8001C0EB1F +00D8FBFC13FE00F1B512F8D8E03F5BD8C003138024317CB02D>83 +D<007FB8FCA39039C00FF801D87E00EC003F007C82007882A200708200F01780A3481603 +A5C792C7FCB3AA017FB6FCA331307DAF38>I<EBFFF0000313FF390F803F809038C00FE0 +486C6C7EA26E7ED80FC07FEA0780C7FCA414FF131FEBFFE33803FC03EA0FF0EA1FC0123F +EA7F80A2EAFF00A31407A2387F800D393FC01DFE3A1FE078FFF03907FFE07FC6EB803F24 +207E9F27>97 D<EB0FFF017F13C03901FC01F03803F0033907E007F8120FEA1FC0003FEB +03F0EC01E04848C7FCA312FFA8127FA36C6C131CA2001F14386C7E000714703903F001E0 +3901FC07C039007FFF00EB0FF81E207D9F24>99 D<EB0FFC90387FFF803901FC0FC03903 +F003E03907E001F0000F14F8391FC000FC003F14FEA24848137E157FA212FFA290B6FCA2 +0180C7FCA4127FA36C6C1307121F150E6C7E6C6C131C6C6C13783900FE03E090383FFFC0 +903807FE0020207E9F25>101 D<90391FF007C09039FFFE3FE03A01F83F79F03907E00F +C3000F14E19039C007E0E0001FECF000A2003F80A5001F5CA2000F5CEBE00F00075C2603 +F83FC7FC3806FFFE380E1FF090C9FC121EA2121F7F90B57E6C14F015FC6C806C80168000 +0F15C0003FC7127F007EEC1FE0007C140F00FC1407A4007EEC0FC0003E1580003F141FD8 +0FC0EB7E003907F803FC0001B512F0D8001F90C7FC242F7E9F28>103 +D<EA01F812FFA3120F1207ADEC07F8EC3FFEEC783F02C013809039F9801FC0EBFB0001FE +14E05BA35BB3B500C3B5FCA328327DB12D>I<EA03C0487E487E487EA46C5A6C5A6C5AC8 +FCA9EA01F8127FA31207B3A7B51280A311337DB217>I<EA01F812FFA3120F1207B3B3A6 +B512C0A312327DB117>108 D<2703F007F8EB1FE000FFD93FFEEBFFF8913A783F01E0FC +02C090388300FE280FF1801FC6137F2607F30013CC01F602F8148001FC5CA3495CB3B500 +C3B5380FFFFCA33E207D9F43>I<EB07FC90387FFFC03901FC07F03903F001F848486C7E +4848137E001F147F003F158049133F007F15C0A300FF15E0A8007F15C0A36C6CEB7F80A2 +001F15006C6C13FE00075C3903F803F83901FE0FF039007FFFC0D907FCC7FC23207E9F28 +>111 D<3803F03F00FFEB7FC09038F1C3E01487390FF30FF0EA07F6A29038FC07E0EC03 +C091C7FCA25BB2B512E0A31C207E9F21>114 D<131CA5133CA3137CA213FC1201120312 +07381FFFFEB5FCA2D803FCC7FCB0EC0380A71201EC0700EA00FEEB7F0EEB3FFCEB07F019 +2E7FAD1F>116 D E end +%%EndProlog +%%BeginSetup +%%Feature: *Resolution 300dpi +TeXDict begin + +%%EndSetup +%%Page: 0 1 +0 0 bop 369 0 a + 19142492 4341596 7893811 20787036 27036303 25128632 startTexFig + 369 0 a +%%BeginDocument: uofatop.ps +/CanvasDict where not{/CanvasDict 250 dict def}{pop}ifelse +CanvasDict begin +systemdict/setpacking known{/origpack currentpacking def true setpacking}if +/bdf{bind def}bind def +/xdf{exch bind def}bdf +/min{2 copy gt{exch}if pop}bdf +/edf{exch def}bdf +/max{2 copy lt{exch}if pop}bdf +/cvmtx matrix def +/tpmx matrix def +/currot 0 def +/rotmtx matrix def +/origmtx matrix def +/cvangle{360 exch sub 90 add 360 mod}bdf +/setrot{/currot edf rotmtx currentmatrix pop 2 copy translate currot rotate neg exch neg exch translate}bdf +/endrot{rotmtx setmatrix}bdf +/i systemdict/image get def/T true def/F false def/dbg F def +/ncolors 0 def/st0 ()def/st1 ()def/proc0 {}def +/penh 1 def/penv 1 def/penv2 0 def/penh2 0 def/samplesize 0 def/width 0 def/height 0 def +/setcmykcolor where not{/setcmykcolor{/b edf 3{b add 1.0 exch sub 0.0 max 1.0 min 3 1 roll}repeat systemdict begin setrgbcolor end}bdf}{pop}ifelse +/doeoclip{closepath{eoclip}stopped{currentflat dup 2 mul setflat eoclip setflat}if}bdf +/SpaceExtra 0 def/LetterSpace 0 def/StringLength 0 def/NumSpaces 0 def/JustOffset 0 def +/f0/fill load def +/s0{1 setlinewidth cvmtx currentmatrix pop penh penv scale stroke cvmtx setmatrix}bdf +/f1{_bp _fp impat}def +/s1{cvmtx currentmatrix pop 1 setlinewidth penh penv scale +{strokepath}stopped{currentflat dup 2 mul setflat strokepath setflat}if +_bp +cvmtx setmatrix _fp impat}def +/filltype 0 def +/stroketype 0 def +/f{filltype 0 eq{f0}{f1}ifelse}bdf +/s{stroketype 0 eq{s0}{s1}ifelse}bdf +/_fp{}def +/_bp{}def +/_fg 1 def +/_pg 0 def +/_bkg 1 def +/_frg 0 def +/_frgb 3 array def +/_frrgb [0 0 0] def +/_fcmyk 4 array def +/_frcmyk [0 0 0 1] def +/_prgb 3 array def +/_pcmyk 4 array def +/_bkrgb [1 1 1] def +/_bkcmyk [0 0 0 0] def +/fg{/_fg exch def /filltype 0 def/fills{_fg setgray}def}def +/frgb{_frgb astore pop /filltype 0 def/fills{_frgb aload pop setrgbcolor}def}def +/fcmyk{_fcmyk astore pop /filltype 0 def/fills{_fcmyk aload pop setcmykcolor}def}def +/pg{/_pg exch def /stroketype 0 def/pens{_pg setgray}def}def +/prgb{_prgb astore pop /stroketype 0 def/pens{_prgb aload pop setrgbcolor}def}def +/pcmyk{_pcmyk astore pop /stroketype 0 def/pens{_pcmyk aload pop setcmykcolor}def}def +/fpat{/fstr edf/filltype 1 def/fills{/patstr fstr def}bdf}bdf +/ppat{/sstr edf/stroketype 1 def/pens{/patstr sstr def}bdf}bdf +/bkg{ /_bkg exch def /_bp{gsave _bkg setgray fill grestore}def}def +/bkrgb{_bkrgb astore pop/_bp{gsave _bkrgb aload pop setrgbcolor fill grestore}def}def +/bkcmyk{_bkcmyk astore pop/_bp{gsave _bkcmyk aload pop setcmykcolor fill grestore}def}def +/frg{ /_frg exch def /_fp{_frg setgray}def}def +/frrgb{_frrgb astore pop/_fp{_frrgb aload pop setrgbcolor}def}def +/frcmyk{_frcmyk astore pop/_fp{_frcmyk aload pop setcmykcolor}def}def +/icomp{/ncolors edf +ncolors 1 gt{/proc0 edf +dup dup 0 get ncolors div cvi exch 0 3 -1 roll put +4 -1 roll ncolors div cvi 4 1 roll{proc0 dup/st0 edf +0 exch ncolors exch length +dup ncolors sub exch ncolors div cvi string/st1 edf +{dup 0 exch dup 1 exch +2 add{st0 exch get add}bind for +3 div ncolors 4 eq{exch dup 3 1 roll 3 add st0 exch get add 255 exch sub dup 0 lt{pop 0}if}if cvi +dup 255 gt{pop 255}if +exch ncolors div cvi exch +st1 3 1 roll put}bind for +st1}}if i}bdf +/ci +{/colorimage where +{pop false exch colorimage} +{icomp} +ifelse}bdf +/impat +{/cnt 0 def +/MySave save def +currot 0 ne{currot neg rotate}if +clip +flattenpath +pathbbox +3 -1 roll +8 div floor 8 mul dup/starty edf +sub abs 8 div ceiling 8 mul cvi/height edf +exch 8 div floor 8 mul dup/startx edf +sub abs 8 div ceiling 8 mul cvi/width edf +startx starty translate +width height scale +/height height 8 mul def +/st0 width string def +width height T [width 0 0 height neg 0 height] +{patstr +cnt 8 mod +get/st1 edf +0 1 +st0 length 1 sub dup 0 le{pop 1}if +{st0 exch +st1 +put}bind for/cnt cnt 1 add def +st0}bind +imagemask +MySave restore +newpath}bdf +/cm{/ncolors edf +translate +scale/height edf/colorimage where +{pop} +{ncolors mul}ifelse/width edf +/tbitstr width string def +width height 8 [width 0 0 height neg 0 height] +{currentfile tbitstr readhexstring pop}bind +ncolors +dup 3 eq {ci}{icomp}ifelse}bdf +/im{translate +scale +/height edf +/width edf +/tbitstr width 7 add 8 div cvi string def +width height 1 [width 0 0 height neg 0 height] +{currentfile tbitstr readhexstring pop}bind +i}bdf +/imk{/invFlag edf +translate +scale +/height edf +/width edf +/tbitstr width 7 add 8 div cvi string def +width height invFlag [width 0 0 height neg 0 height] +{currentfile tbitstr readhexstring pop}bind +imagemask}bdf +/BeginEPSF +{/MySave save def +/dict_count countdictstack def +/op_count count 1 sub def +userdict begin +/showpage {} def +0 setgray 0 setlinecap +1 setlinewidth 0 setlinejoin +10 setmiterlimit [] 0 setdash newpath +/languagelevel where +{pop languagelevel 1 ne{false setstrokeadjust false setoverprint}if}if +}bdf +/EndEPSF +{count op_count sub {pop}repeat +countdictstack dict_count sub {end}repeat +MySave restore}bdf +/rectpath {/cv_r edf/cv_b edf/cv_l edf/cv_t edf +cv_l cv_t moveto cv_r cv_t lineto cv_r cv_b lineto cv_l cv_b lineto cv_l cv_t lineto closepath}bdf +/setpen{/penh edf/penv edf/penv2 penv 2 div def/penh2 penh 2 div def}bdf +/dostroke{not pens 1.0 currentgray ne or {s}{newpath}ifelse}bdf +/dodashfill{not fills 1.0 currentgray ne or +{gsave f grestore gsave [] 0 setdash +stroketype/stroketype filltype def +s/stroketype edf grestore}{newpath}ifelse}bdf +/dofill{not fills 1.0 currentgray ne or {f}{newpath}ifelse}bdf +/dofillsave{not fills 1.0 currentgray ne or {gsave f grestore}if}bdf +/doline{not pens 1.0 currentgray ne or {filltype/filltype stroketype def f/filltype edf}{newpath}ifelse}bdf +/spx{SpaceExtra 0 32 4 -1 roll widthshow}bdf +/lsx{SpaceExtra 0 32 LetterSpace 0 6 -1 roll awidthshow}bdf +/Rjust{stringwidth pop JustOffset exch sub /JustOffset edf}bdf +/Cjust{stringwidth pop 2 div JustOffset exch sub /JustOffset edf}bdf +/adjfit{stringwidth pop LetterSpace StringLength 1 sub mul add SpaceExtra NumSpaces mul add dup /pw edf JustOffset exch +sub dup /wdif edf StringLength div dup abs 1.0 gt{pop 0}if LetterSpace add /LetterSpace edf}bdf +/ulb{currentpoint pop /underlinpt edf}bdf +/ule{gsave currentpoint newpath moveto currentfont dup /ft1 known{dup /ft1 get begin /FontMatrix get FontMatrix tpmx concatmatrix pop} +{begin FontMatrix tpmx copy pop}ifelse FontInfo begin UnderlinePosition UnderlineThickness end end dup tpmx +dtransform pop setlinewidth dup tpmx dtransform pop 0 exch rmoveto underlinpt currentpoint pop sub 0 rlineto stroke grestore}bdf +/fittext{ /SpaceExtra edf /LetterSpace edf /StringLength edf /NumSpaces edf /JustOffset edf not 1 currentgray ne or +{dup {ulb}if exch +dup adjfit +lsx {ule}if}{pop pop}ifelse}bdf +/cvRecFont{/encod edf FontDirectory 2 index known{cleartomark}{findfont dup length 1 add dict begin +{1 index/FID ne{def}{pop pop}ifelse}forall encod{/Encoding CVvec def}if +currentdict end definefont cleartomark}ifelse}bdf +/wrk1 ( ) def/wdict 16 dict def +/Work75 75 string def /Nmk{Work75 cvs dup}bdf /Npt{put cvn}bdf /dhOdh{Nmk 2 79 Npt}bdf /dhodh{Nmk 2 111 Npt}bdf /dhSdh{Nmk 2 83 Npt}bdf +/sfWidth{gsave 0 0 moveto 0 0 lineto 0 0 lineto 0 0 lineto closepath clip stringwidth grestore}bdf +/MakOF{dup dhodh FontDirectory 1 index known{exch pop}{exch findfont dup length 1 add dict begin +{1 index/FID ne 2 index /UniqueID ne and{def}{pop pop}ifelse}forall +/PaintType 2 def +/StrokeWidth .24 1000 mul ftSize div dup 12 lt{pop 12}if def +dup currentdict end definefont pop}ifelse}bdf +/fts{dup/ftSize edf}def +/mkFT{/tempFT 11 dict def tempFT begin +/FontMatrix [1 0 0 1 0 0] def/FontType 3 def +FontDirectory 3 index get /Encoding get/Encoding exch def +/proc2 edf/ft2 exch findfont def/ft1 exch findfont def/FontBBox [0 0 1 1] def +/BuildChar{wdict begin/chr edf/ftdt edf/chrst wrk1 dup 0 chr put def ftdt/proc2 get exec end}def +end tempFT definefont pop}bdf +/OLFt{dup dhOdh FontDirectory 1 index known{exch pop} +{dup 3 -1 roll dup MakOF {outproc} mkFT}ifelse}bdf +/mshw{moveto show}bdf +/outproc{ftdt/ft1 get setfont gsave chrst sfWidth grestore setcharwidth dblsh}bdf +/dblsh{currentgray 1 setgray chrst 0 0 mshw setgray ftdt/ft2 get setfont chrst 0 0 mshw}bdf +/ShadChar{ftdt/ft1 get setfont gsave chrst sfWidth 1 index 0 ne{exch .05 add exch}if grestore setcharwidth +chrst .06 0 mshw 0 .05 translate dblsh}bdf +/ShFt{dup dhSdh FontDirectory 1 index known{exch pop} +{dup 3 -1 roll dup MakOF {ShadChar} mkFT}ifelse}bdf +/LswUnits{72 75 div dup scale}bdf +/erasefill{_bp}def +/CVvec 256 array def +/NUL/SOH/STX/ETX/EOT/ENQ/ACK/BEL/BS/HT/LF/VT/FF/CR/SO/SI/DLE/DC1/DC2/DC3/DC4/NAK/SYN/ETB/CAN/EM/SUB/ESC/FS/GS/RS/US +CVvec 0 32 getinterval astore pop +CVvec 32/Times-Roman findfont/Encoding get +32 96 getinterval putinterval CVvec dup 39/quotesingle put 96/grave put +/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute +/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave +/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute +/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis +/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls +/registered/copyright/trademark/acute/dieresis/notequal/AE/Oslash +/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdiff/summation +/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash +/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta/guillemotleft +/guillemotright/ellipsis/blank/Agrave/Atilde/Otilde/OE/oe +/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/lozenge +/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl +/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand/Acircumflex/Ecircumflex/Aacute +/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave/Oacute/Ocircumflex +/apple/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde +/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron +CVvec 128 128 getinterval astore pop +end +CanvasDict begin +0 setlinecap +0 setlinejoin +4 setmiterlimit +/currot 0 def +origmtx currentmatrix pop +[] 0 setdash +1 1 setpen +1 fg +0 pg +0 frg +1 bkg +newpath +/dbg F def +% ---- Object #1:5 Obj Type: 99 +% ---- Object #2:6 Obj Type: 4 +save /MySave edf +381 122 318 185 rectpath +doeoclip newpath +0 setgray +189 189 63 63 122 318 false imk +FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFFFFFF0C7FFFFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFFFFFF1C3FFFFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFFFFFE3E3FFCFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFF9FFC3E1FF8FFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFF87FC7F1FE0FFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFF81FC7F8F80FFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFF807CFF8704FFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFF9038FFC41CFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFF9E01FFC07CFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFF9F01FFE0FCFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFF9FC1FFF1FCFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFF9FE3FFF1FCFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFF9FFFFFFFFCFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFF9FFFFFFFFCFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFF9FFFFFFFFC0001FFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFC0001FFFFFFFFC0001FFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFC0001FFFFFFFFC0001FFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFE0001FFFFFFFFFFFE3FFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFE3FFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFF1FFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFF0FFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFF8FFF8001C001FFF8FFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFF87FF80000001FFF1FFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFC7FF1FF00FF8FFF1FFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFE3F01FFC3FF80FE3FFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFE3F01FFE7FF80FE3FFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFF1F01FFE7FF80FC7FFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFF1F01FFE7FF98FCFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFF0F19FFE7FF98F87FFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFE0F19FFE7FF98FC1FFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFC1F19FFE7FF98FC0FFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFF07F19FFE7FF98FF03FFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFC1FF19FFE7FF98FFC0FFFFFFFFFFFFFFFF +FFFFFFFFFFFFFF83FF19FFE7FF98FFF07FFFFFFFFFFFFFFF +FFFFFFFFFFFFFE0FFF19FFE7FF98FFF83FFFFFFFFFFFFFFF +FFFFFFFFFFFFFE1FFF1800C30018FFF07FFFFFFFFFFFFFFF +FFFFFFFFFFFFFE0FFF1800000018FFE0FFFFFFFFFFFFFFFF +FFFFFFFFFFFFFF07FF187C007C18FFC1FFFFFFFFFFFFFFFF +FFFFFFFFFFFFFF83FF1FFFC3FFF8FF83FFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFE0FF1FC3E7C3F8FF07FFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFF07F0000000000FE0FFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFC3F0000000000FC1FFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFE1F0000000000FC3FFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFC000000000000000000003FFFFFFFFFFFFFF +FFFFFFFFFFFFC000000000000000000003FFFFFFFFFFFFFF +FFFFFFFFFFFFC000000000000000000003FFFFFFFFFFFFFF +FFFFFFFFFFFFC000000000000000000003FFFFFFFFFFFFFF +FFFFFFFFFFFFC3FFFFFFFF00FFFFFFFFE3FFFFFFFFFFFFFF +FFFFFFFFFFFFC3FFFFFFFF00FFFFFFFFE3FFFFFFFFFFFFFF +FFFFFFFFFFFFC3FFFFFFFF00FFFFFFFFE3FFFFFFFFFFFFFF +FFFFFFFFFFFFC3FFFFFFFF00FFFFFFFFE3FFFFFFFFFFFFFF +FFFFFFFFFFFFC3FFFFFFFF00FFFFFFFFE3FFFFFFFFFFFFFF +FFFFFFFFFFFFC3FFFFFFFF00FFFFFFFFE3FFFFFFFFFFFFFF +FFFFFFFFFFFFC000000000000000000003FFFFFFFFFFFFFF +FFFFFFFFFFFFC000000000000000000003FFFFFFFFFFFFFF +FFFFFFFFFFFFC000000000000000000003FFFFFFFFFFFFFF +FFFFFFFFFFFFC000000000000000000003FFFFFFFFFFFFFF +FFFFFFFFFFFFC3FFFFFFFF00FFFFFFFFE3FFFFFFFFFFFFFF +FFFFFFFFFFFFC3FFFFFFFF00FFFFFFFFE3FFFFFFFFFFFFFF +FFFFFFFFFFFFC3FFFFFFFF00FFFFFFFFE3FFFFFFFFFFFFFF +FFFFFFFFFFFFC3FFFFFFFF00FFFFFFFFE3FFFFFFFFFFFFFF +FFFFFFFFFFFFC3FFFFFFFF00FFFFFFFFE3FFFFFFFFFFFFFF +FFFFFFFFFFFFC3FFFFFFFF00FFFFFFFFE3FFFFFFFFFFFFFF +FFFFFFFFFFFFC000000000000000000003FFFFFFFFFFFFFF +FFFFFFFFFFFFC000000000000000000003FFFFFFFFFFFFFF +FFFFFFFFFFFFC000000000000000000003FFFFFFFFFFFFFF +FFFFFFFFFFFFC000000000000000000003FFFFFFFFFFFFFF +FFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFF +FFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFF +FFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFF +FFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFF +FFFFFFFFFFFFC3FFDFFFFFE7FFFFFBFFE3FFFFFFFFFFFFFF +FFFFFFFFFFFFC3FF8FFFFFC3FFFFF1FFE3FFFFFFFFFFFFFF +FFFFFFFFFFFFC3FE03FFFF00FFFFC0FFE3FFFFFFFFFFFFFF +FFFFFFFFFFFFC3FC21FFFE107FFF847FE3FFFFFFFFFFFFFF +FFFFFFFFFFFFC3F871FFFC383FFF0C3FE3FFFFFFFFFFFFFF +FFFFFFFFFFFFC3F0F8FFFC7C1FFE1E1FE3FFFFFFFFFFFFFF +FFFFFFFFFFFFC3E1FC7FF8FE0FFC3F0FE3FFFFFFFFFFFFFF +FFFFFFFFFFFFC3C3FC3FF1FF07F87F87E3FFFFFFFFFFFFFF +FFFFFFFFFFFFC387FE1FE1FF83F0FFC3E3FFFFFFFFFFFFFF +FFFFFFFFFFFFC30FFF0FC3FFC1E1FFE1E3FFFFFFFFFFFFFF +FFFFFFFFFFFFC21FFF8787FFE1C3FFF0E3FFFFFFFFFFFFFF +FFFFFFFFFFFFC23FFFC30FFFF087FFF863FFFFFFFFFFFFFF +FFFFFFFFFFFFC07FFFE01FFFF80FFFFC23FFFFFFFFFFFFFF +FFFFFFFFFFFFC0FFFFF03FFFFC1FFFFE03FFFFFFFFFFFFFF +FFFFFFFFFFFFC0FF07F87F80FC3F803F03FFFFFFFFFFFFFF +FFFFFFFFFFFFC1F001FCFC003E7E000F83FFFFFFFFFFFFFF +FFFFFFFFFFFFC3E0007FF8000FFC0003C3FFFFFFFFFFFFFF +FFFFFFFFFFFFC380001FE00003F00001E3FFFFFFFFFFFFFF +FFFFFFFFFFFFC300000FC00001E00000E3FFFFFFFFFFFFFF +FFFFFFFFFFFFC2000007800001C0000063FFFFFFFFFFFFFF +FFFFFFFFFFFFC200000000000000000023FFFFFFFFFFFFFF +FFFFFFFFFFFFC000000000000000000003FFFFFFFFFFFFFF +FFFFFFFFFFFFC000000000000000000003FFFFFFFFFFFFFF +FFFFFFFFFFFFC000000000000000000003FFFFFFFFFFFFFF +FFFFFFFFFFFFC000000000000000000003FFFFFFFFFFFFFF +FFFFFFFFFFFFC000000000000000000003FFFFFFFFFFFFFF +FFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFF83FFFF8FFFFFFFFF +FFFFFFF3FFFFC1FFFFFFFFFFFFFFFFFF83FFFF87FFFFFFFF +FFFFFFE3FFFFE1FFFFFFFFFFFFFFFFFF87FFFF83FFFFFFFF +FFFFFFC1FFFFE0FFEFFF7FEFFEFFF7FF87FFFF81FFFFFFFF +FFFFFF81FFFFE0FFE7FE7FEFFE7FE3FF87FFFF887FFFFFFF +FFFFFE11FFFFE0FEE6FE77C77C7EE2FF0FFFFF1C3FFFFFFF +FFFFFE39FFFFF0FEE6EE77C77476E2FF0FFFFE3E1FFFFFFF +FFFFF8783FFFF0FE64EE66C6726634FE0FFFF03F07FFFFFF +FFFFF0FE1FFFF0FE3CE7E67C71CF1CFE1FFFC1FFC3FFFFFF +FFFFE1FF07FFF8FE3CE3C638718F89FC1FFF03FFE3FFFFFF +FFFFC3FFC0FFF87F19F18F18F997C9FC1FFC0FFFF1FFFFFF +FFFF8FFFF07FF87F99F9979975B6EBFC3FF07F1FF8FFFFFF +FFFE1FF8FC1FFC3EDAEFB6DF77E67EF83FC1FC07F87FFFFF +FFFC3FE07E0FFC3EFCE7E67E73C63CF07FC3F803FE7FFFFF +FFFC7FC03F87FE1E7CE3C63C718F1CF07F8FF1E1FE7FFFFF +FFF8FF871FE3FE1E3CE38E38F98F08E0FF1FE3E0FE7FFFFF +FFF8FF078FF1FE0F19F19799FD9F89E0FE3FE3E07E7FFFFF +FFF8FE0FC7F8FE0F99F9B79B75BFC9C1FE3FC7E03C7FFFFF +FFFC7E07C3F8FF07DBEFE6FE77E7FFC1FC7F8FE2187FFFFF +FFFC7C47E1FCFF03FFE7E67C73C7F783FC7F1FC708FFFFFF +FFFE38E3F0FC7F83EFE38E38718FF703FC7E3F8781FFFFFF +FFFE10F1F8FC7FC1EFF19F18F91FF707FE387F8FC3FFFFFF +FFFF01F1FC7CFFC0EFF99799753FFE0FFE00FF1FE3FFFFFF +FFFF83F87E00FFE07FE5A65E71C7FC1FFF03FC3FF0FFFFFF +FFFF8FFC3F83FFF83FE7C67C718FF83FFFC7F87FF87FFFFF +FFFF1FFE1FC3FFF81FE38E38F90FF07FFFE3F8FFFC3FFFFF +FFFE3FFF0FC7FFFC0FF19F19F91FF0FFFFF1F1FFFE1FFFFF +FFFC7FFF878FFFFE07F9BE9B7D3FC1FFFFF8E3FFFF1FFFFF +FFF8FFFFC31FFFFF03FFFEFF7FFF81FFFFF843FFFF8FFFFF +FFF1FF03E03FFFFF81FEFE7E7EFF03FFFFFC0783FF8FFFFF +FFF1FE09F07FFFFFC0FEFE3C7EFE07FFFFFE0FC0FF8FFFFF +FFF1FE3EF87FFFFFE07EFF18FEFC0FFFFFFE1FC41F8FFFFF +FFF9FE7E7C7FFFFFF03FFF99FFF01FFFFFFC3FEE0F1FFFFF +FFF8FCFE7E3FFFFFFC0FFFDBFFE03FFFFFF87FE48F1FFFFF +FFFC7CFE7E1FFFFFFC03FFFFFF80FFFFFFE0F9F1FE3FFFFF +FFFC3EFC7F87FFFFFE00FFEFFE01FFFFFFC3F079FC7FFFFF +FFFE3EF877C3FFFFFF807FEFFC03FFFFFF87E479F8FFFFFF +FFFE1EF0E3E1FFFFFFC01FEFF80FFFFFFE0FC679F8FFFFFF +FFFF0E01C7F07FFFFFF003FFC03FFFFFFC3FC07DF1FFFFFF +FFFF870787FC0FFFFFFC003800FFFFFFF07CE007C3FFFFFF +FFFFE37F1FBF83FFFFFFC00003FFFFFFC3F9F8CF87FFFFFF +FFFFE1FE3F3FC0FFFFFFF8001FFFFFFF07E3F87F8FFFFFFF +FFFFF8FE7E7FF0FFFFFFFC007FFFFFFC0FE3FC7F1FFFFFFF +FFFFFCFE7EFFFC1FFFFFFF83FFFFFFF03FF13E7C3FFFFFFF +FFFFFC7F7CF8FE07FFFFFFFFFFFFFFC0FFB87FF87FFFFFFF +FFFFFE3F39F0FF01FFFFFFFFFFFFFE03FFB87FF0FFFFFFFF +FFFFFF0FC3C1FFE03FFFFFFFFFFFF81FFFBC77E1FFFFFFFF +FFFFFF87FF11FFF803FFFFFFFFFF807FE3BE07C3FFFFFFFF +FFFFFF83FE31F3FE01FFFFFFFFFE01FFE39F0F87FFFFFFFF +FFFFFFE1FEC3F0FFC01FFFFFFFE007FFF19F3F0FFFFFFFFF +FFFFFFF0FFE3E2FFFC003FFFF0007FFFF89FFC3FFFFFFFFF +FFFFFFF83FE3E7FFFF8000000007FFFFFC1FF87FFFFFFFFF +FFFFFFFC1FE3C7FFFFF00000003FFF3FFE1FF8FFFFFFFFFF +FFFFFFFF0FE7C1E03FFFF0001FFFFCFFFF1FE1FFFFFFFFFF +FFFFFFFF81F70C879DFFFFFFFFFF8CFFFFFF03FFFFFFFFFF +FFFFFFFFF0FF1F9FFDFFFFFFFFCFCC1FFFFC1FFFFFFFFFFF +FFFFFFFFF87F8F1FF9F3FFFF83CFCC3FFFF83FFFFFFFFFFF +FFFFFFFFFE1FE71FF9F39F3E79C7CE7FFFE0FFFFFFFFFFFF +FFFFFFFFFE07FF9FF9F79F3C7CE7CE7FFF83FFFFFFFFFFFF +FFFFFFFFFF81FF9FF1E70E3CFCE7CE37FE07FFFFFFFFFFFF +FFFFFFFFFFC0FFCFF1E70C38FCE7CE07FC1FFFFFFFFFFFFF +FFFFFFFFFFF01FE0F1EF4538FCE7CF3FF07FFFFFFFFFFFFF +FFFFFFFFFFFC07FFF1CF453CFCE3CFFFC1FFFFFFFFFFFFFF +FFFFFFFFFFFF01FFF9CE613CFCF19FFF03FFFFFFFFFFFFFF +FFFFFFFFFFFFC0FFFC1EE33C7DF03FFC07FFFFFFFFFFFFFF +FFFFFFFFFFFFF81FFFFEE33E31FFFFC03FFFFFFFFFFFFFFF +FFFFFFFFFFFFFE03FFFEF73F81FFFE00FFFFFFFFFFFFFFFF +FFFFFFFFFFFFFF007FFFFFFFF9FFF803FFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFE007FFFFFFFDFF801FFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFE003FFFFFFFF001FFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFC0000000000007FFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFFC00000000FFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFFFFE0000FFFFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF +MySave restore +% ---- Object #3:7 Obj Type: 2 +save +0 setgray +mark /|___Times-Bold /Times-Bold T cvRecFont +24 fts /|___Times-Bold findfont exch scalefont setfont +0 setgray +190 344 moveto +(University of Alberta) +F F 217.2422 2 21 0 0 fittext +restore +origmtx setmatrix +systemdict /setpacking known {origpack setpacking} if end + +%%EndDocument + + endTexFig + 227 633 a Fx(The)27 b(APHID)g(P)n(arallel)e Fw(\013\014)31 +b Fx(Searc)n(h)26 b(Algorithm)945 991 y Fv(b)n(y)414 +1109 y(Mark)18 b(G.)h(Bro)r(c)n(kington)e(and)i(Jonathan)h(Sc)n +(hae\013er)636 2067 y(T)-5 b(ec)n(hnical)18 b(Rep)r(ort)g(TR)g(96{07) +821 2126 y(August)i(1996)379 2430 y + 18813584 3223306 8025374 21313290 26838958 24536596 startTexFig + 379 2430 a +%%BeginDocument: uofabot.ps +/CanvasDict where not{/CanvasDict 250 dict def}{pop}ifelse +CanvasDict begin +systemdict/setpacking known{/origpack currentpacking def true setpacking}if +/bdf{bind def}bind def +/xdf{exch bind def}bdf +/min{2 copy gt{exch}if pop}bdf +/edf{exch def}bdf +/max{2 copy lt{exch}if pop}bdf +/cvmtx matrix def +/tpmx matrix def +/currot 0 def +/rotmtx matrix def +/origmtx matrix def +/cvangle{360 exch sub 90 add 360 mod}bdf +/setrot{/currot edf rotmtx currentmatrix pop 2 copy translate currot rotate neg exch neg exch translate}bdf +/endrot{rotmtx setmatrix}bdf +/i systemdict/image get def/T true def/F false def/dbg F def +/ncolors 0 def/st0 ()def/st1 ()def/proc0 {}def +/penh 1 def/penv 1 def/penv2 0 def/penh2 0 def/samplesize 0 def/width 0 def/height 0 def +/setcmykcolor where not{/setcmykcolor{/b edf 3{b add 1.0 exch sub 0.0 max 1.0 min 3 1 roll}repeat systemdict begin setrgbcolor end}bdf}{pop}ifelse +/doeoclip{closepath{eoclip}stopped{currentflat dup 2 mul setflat eoclip setflat}if}bdf +/SpaceExtra 0 def/LetterSpace 0 def/StringLength 0 def/NumSpaces 0 def/JustOffset 0 def +/f0/fill load def +/s0{1 setlinewidth cvmtx currentmatrix pop penh penv scale stroke cvmtx setmatrix}bdf +/f1{_bp _fp impat}def +/s1{cvmtx currentmatrix pop 1 setlinewidth penh penv scale +{strokepath}stopped{currentflat dup 2 mul setflat strokepath setflat}if +_bp +cvmtx setmatrix _fp impat}def +/filltype 0 def +/stroketype 0 def +/f{filltype 0 eq{f0}{f1}ifelse}bdf +/s{stroketype 0 eq{s0}{s1}ifelse}bdf +/_fp{}def +/_bp{}def +/_fg 1 def +/_pg 0 def +/_bkg 1 def +/_frg 0 def +/_frgb 3 array def +/_frrgb [0 0 0] def +/_fcmyk 4 array def +/_frcmyk [0 0 0 1] def +/_prgb 3 array def +/_pcmyk 4 array def +/_bkrgb [1 1 1] def +/_bkcmyk [0 0 0 0] def +/fg{/_fg exch def /filltype 0 def/fills{_fg setgray}def}def +/frgb{_frgb astore pop /filltype 0 def/fills{_frgb aload pop setrgbcolor}def}def +/fcmyk{_fcmyk astore pop /filltype 0 def/fills{_fcmyk aload pop setcmykcolor}def}def +/pg{/_pg exch def /stroketype 0 def/pens{_pg setgray}def}def +/prgb{_prgb astore pop /stroketype 0 def/pens{_prgb aload pop setrgbcolor}def}def +/pcmyk{_pcmyk astore pop /stroketype 0 def/pens{_pcmyk aload pop setcmykcolor}def}def +/fpat{/fstr edf/filltype 1 def/fills{/patstr fstr def}bdf}bdf +/ppat{/sstr edf/stroketype 1 def/pens{/patstr sstr def}bdf}bdf +/bkg{ /_bkg exch def /_bp{gsave _bkg setgray fill grestore}def}def +/bkrgb{_bkrgb astore pop/_bp{gsave _bkrgb aload pop setrgbcolor fill grestore}def}def +/bkcmyk{_bkcmyk astore pop/_bp{gsave _bkcmyk aload pop setcmykcolor fill grestore}def}def +/frg{ /_frg exch def /_fp{_frg setgray}def}def +/frrgb{_frrgb astore pop/_fp{_frrgb aload pop setrgbcolor}def}def +/frcmyk{_frcmyk astore pop/_fp{_frcmyk aload pop setcmykcolor}def}def +/icomp{/ncolors edf +ncolors 1 gt{/proc0 edf +dup dup 0 get ncolors div cvi exch 0 3 -1 roll put +4 -1 roll ncolors div cvi 4 1 roll{proc0 dup/st0 edf +0 exch ncolors exch length +dup ncolors sub exch ncolors div cvi string/st1 edf +{dup 0 exch dup 1 exch +2 add{st0 exch get add}bind for +3 div ncolors 4 eq{exch dup 3 1 roll 3 add st0 exch get add 255 exch sub dup 0 lt{pop 0}if}if cvi +dup 255 gt{pop 255}if +exch ncolors div cvi exch +st1 3 1 roll put}bind for +st1}}if i}bdf +/ci +{/colorimage where +{pop false exch colorimage} +{icomp} +ifelse}bdf +/impat +{/cnt 0 def +/MySave save def +currot 0 ne{currot neg rotate}if +clip +flattenpath +pathbbox +3 -1 roll +8 div floor 8 mul dup/starty edf +sub abs 8 div ceiling 8 mul cvi/height edf +exch 8 div floor 8 mul dup/startx edf +sub abs 8 div ceiling 8 mul cvi/width edf +startx starty translate +width height scale +/height height 8 mul def +/st0 width string def +width height T [width 0 0 height neg 0 height] +{patstr +cnt 8 mod +get/st1 edf +0 1 +st0 length 1 sub dup 0 le{pop 1}if +{st0 exch +st1 +put}bind for/cnt cnt 1 add def +st0}bind +imagemask +MySave restore +newpath}bdf +/cm{/ncolors edf +translate +scale/height edf/colorimage where +{pop} +{ncolors mul}ifelse/width edf +/tbitstr width string def +width height 8 [width 0 0 height neg 0 height] +{currentfile tbitstr readhexstring pop}bind +ncolors +dup 3 eq {ci}{icomp}ifelse}bdf +/im{translate +scale +/height edf +/width edf +/tbitstr width 7 add 8 div cvi string def +width height 1 [width 0 0 height neg 0 height] +{currentfile tbitstr readhexstring pop}bind +i}bdf +/imk{/invFlag edf +translate +scale +/height edf +/width edf +/tbitstr width 7 add 8 div cvi string def +width height invFlag [width 0 0 height neg 0 height] +{currentfile tbitstr readhexstring pop}bind +imagemask}bdf +/BeginEPSF +{/MySave save def +/dict_count countdictstack def +/op_count count 1 sub def +userdict begin +/showpage {} def +0 setgray 0 setlinecap +1 setlinewidth 0 setlinejoin +10 setmiterlimit [] 0 setdash newpath +/languagelevel where +{pop languagelevel 1 ne{false setstrokeadjust false setoverprint}if}if +}bdf +/EndEPSF +{count op_count sub {pop}repeat +countdictstack dict_count sub {end}repeat +MySave restore}bdf +/rectpath {/cv_r edf/cv_b edf/cv_l edf/cv_t edf +cv_l cv_t moveto cv_r cv_t lineto cv_r cv_b lineto cv_l cv_b lineto cv_l cv_t lineto closepath}bdf +/setpen{/penh edf/penv edf/penv2 penv 2 div def/penh2 penh 2 div def}bdf +/dostroke{not pens 1.0 currentgray ne or {s}{newpath}ifelse}bdf +/dodashfill{not fills 1.0 currentgray ne or +{gsave f grestore gsave [] 0 setdash +stroketype/stroketype filltype def +s/stroketype edf grestore}{newpath}ifelse}bdf +/dofill{not fills 1.0 currentgray ne or {f}{newpath}ifelse}bdf +/dofillsave{not fills 1.0 currentgray ne or {gsave f grestore}if}bdf +/doline{not pens 1.0 currentgray ne or {filltype/filltype stroketype def f/filltype edf}{newpath}ifelse}bdf +/spx{SpaceExtra 0 32 4 -1 roll widthshow}bdf +/lsx{SpaceExtra 0 32 LetterSpace 0 6 -1 roll awidthshow}bdf +/Rjust{stringwidth pop JustOffset exch sub /JustOffset edf}bdf +/Cjust{stringwidth pop 2 div JustOffset exch sub /JustOffset edf}bdf +/adjfit{stringwidth pop LetterSpace StringLength 1 sub mul add SpaceExtra NumSpaces mul add dup /pw edf JustOffset exch +sub dup /wdif edf StringLength div dup abs 1.0 gt{pop 0}if LetterSpace add /LetterSpace edf}bdf +/ulb{currentpoint pop /underlinpt edf}bdf +/ule{gsave currentpoint newpath moveto currentfont dup /ft1 known{dup /ft1 get begin /FontMatrix get FontMatrix tpmx concatmatrix pop} +{begin FontMatrix tpmx copy pop}ifelse FontInfo begin UnderlinePosition UnderlineThickness end end dup tpmx +dtransform pop setlinewidth dup tpmx dtransform pop 0 exch rmoveto underlinpt currentpoint pop sub 0 rlineto stroke grestore}bdf +/fittext{ /SpaceExtra edf /LetterSpace edf /StringLength edf /NumSpaces edf /JustOffset edf not 1 currentgray ne or +{dup {ulb}if exch +dup adjfit +lsx {ule}if}{pop pop}ifelse}bdf +/cvRecFont{/encod edf FontDirectory 2 index known{cleartomark}{findfont dup length 1 add dict begin +{1 index/FID ne{def}{pop pop}ifelse}forall encod{/Encoding CVvec def}if +currentdict end definefont cleartomark}ifelse}bdf +/wrk1 ( ) def/wdict 16 dict def +/Work75 75 string def /Nmk{Work75 cvs dup}bdf /Npt{put cvn}bdf /dhOdh{Nmk 2 79 Npt}bdf /dhodh{Nmk 2 111 Npt}bdf /dhSdh{Nmk 2 83 Npt}bdf +/sfWidth{gsave 0 0 moveto 0 0 lineto 0 0 lineto 0 0 lineto closepath clip stringwidth grestore}bdf +/MakOF{dup dhodh FontDirectory 1 index known{exch pop}{exch findfont dup length 1 add dict begin +{1 index/FID ne 2 index /UniqueID ne and{def}{pop pop}ifelse}forall +/PaintType 2 def +/StrokeWidth .24 1000 mul ftSize div dup 12 lt{pop 12}if def +dup currentdict end definefont pop}ifelse}bdf +/fts{dup/ftSize edf}def +/mkFT{/tempFT 11 dict def tempFT begin +/FontMatrix [1 0 0 1 0 0] def/FontType 3 def +FontDirectory 3 index get /Encoding get/Encoding exch def +/proc2 edf/ft2 exch findfont def/ft1 exch findfont def/FontBBox [0 0 1 1] def +/BuildChar{wdict begin/chr edf/ftdt edf/chrst wrk1 dup 0 chr put def ftdt/proc2 get exec end}def +end tempFT definefont pop}bdf +/OLFt{dup dhOdh FontDirectory 1 index known{exch pop} +{dup 3 -1 roll dup MakOF {outproc} mkFT}ifelse}bdf +/mshw{moveto show}bdf +/outproc{ftdt/ft1 get setfont gsave chrst sfWidth grestore setcharwidth dblsh}bdf +/dblsh{currentgray 1 setgray chrst 0 0 mshw setgray ftdt/ft2 get setfont chrst 0 0 mshw}bdf +/ShadChar{ftdt/ft1 get setfont gsave chrst sfWidth 1 index 0 ne{exch .05 add exch}if grestore setcharwidth +chrst .06 0 mshw 0 .05 translate dblsh}bdf +/ShFt{dup dhSdh FontDirectory 1 index known{exch pop} +{dup 3 -1 roll dup MakOF {ShadChar} mkFT}ifelse}bdf +/LswUnits{72 75 div dup scale}bdf +/erasefill{_bp}def +/CVvec 256 array def +/NUL/SOH/STX/ETX/EOT/ENQ/ACK/BEL/BS/HT/LF/VT/FF/CR/SO/SI/DLE/DC1/DC2/DC3/DC4/NAK/SYN/ETB/CAN/EM/SUB/ESC/FS/GS/RS/US +CVvec 0 32 getinterval astore pop +CVvec 32/Times-Roman findfont/Encoding get +32 96 getinterval putinterval CVvec dup 39/quotesingle put 96/grave put +/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute +/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave +/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute +/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis +/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls +/registered/copyright/trademark/acute/dieresis/notequal/AE/Oslash +/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdiff/summation +/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash +/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta/guillemotleft +/guillemotright/ellipsis/blank/Agrave/Atilde/Otilde/OE/oe +/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/lozenge +/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl +/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand/Acircumflex/Ecircumflex/Aacute +/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave/Oacute/Ocircumflex +/apple/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde +/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron +CVvec 128 128 getinterval astore pop +end +CanvasDict begin +0 setlinecap +0 setlinejoin +4 setmiterlimit +/currot 0 def +origmtx currentmatrix pop +[] 0 setdash +1 1 setpen +1 fg +0 pg +0 frg +1 bkg +newpath +/dbg F def +% ---- Object #1:5 Obj Type: 99 +% ---- Object #2:6 Obj Type: 2 +save +0 setgray +mark /|___Times-Bold /Times-Bold T cvRecFont +14 fts /|___Times-Bold findfont exch scalefont setfont +0 setgray +125 360 moveto +(DEPARTMENT OF COMPUTING SCIENCE) +F F 280.3589 3 31 0 0 fittext +restore +% ---- Object #3:7 Obj Type: 2 +save +0 setgray +mark /|___Times-Bold /Times-Bold T cvRecFont +12 fts /|___Times-Bold findfont exch scalefont setfont +0 setgray +197 344 moveto +(The University of Alberta) +F F 131.6221 3 25 0 0 fittext +restore +% ---- Object #4:8 Obj Type: 2 +save +0 setgray +mark /|___Times-Bold /Times-Bold T cvRecFont +12 fts /|___Times-Bold findfont exch scalefont setfont +0 setgray +194 328 moveto +(Edmonton, Alberta, Canada) +F F 145.3213 2 25 0 0 fittext +restore +origmtx setmatrix +systemdict /setpacking known {origpack setpacking} if end + +%%EndDocument + + endTexFig + eop +%%Page: 0 2 +0 1 bop eop +%%Page: 1 3 +1 2 bop 350 50 a Fu(The)21 b(APHID)g(P)n(arallel)h Fw(\013\014)k +Fu(Searc)n(h)21 b(Algorithm)1600 24 y Ft(\003)516 170 +y Fs(Mark)16 b(G.)g(Bro)q(c)o(kington,)g Fr(br)n(o)n(ck@cs.ualb)n +(erta.c)n(a)504 228 y Fs(Jonathan)i(Sc)o(hae\013er,)d +Fr(jonathan@cs.ualb)n(erta.c)n(a)685 286 y Fq(Departmen)o(t)f(of)f +(Computing)h(Science)797 345 y(Univ)o(ersit)o(y)h(of)d(Alb)q(erta)727 +403 y(Edmon)o(ton,)i(Alb)q(erta)g(T6G)f(2H1)911 461 y(Canada)802 +558 y Fs(August)k(20,)f(1996)890 749 y Fp(Abstract)161 +814 y Fq(This)g(pap)q(er)h(in)o(tro)q(duces)g(the)e(APHID)g(\(Async)o +(hronous)j(P)o(arallel)f(Hierarc)o(hical)h(Iterativ)o(e)e(Deep)q +(ening\))i(game-)104 860 y(tree)11 b(searc)o(h)i(algorithm.)18 +b(An)12 b(APHID)f(searc)o(h)h(is)h(a)e(hierarc)o(hical)k(searc)o(h)d +(with)g(a)g(master)g(con)o(trolling)j(the)d(top)f(of)h(the)104 +905 y(tree)i(\()p Fo(d)217 889 y Fn(0)242 905 y Fq(ply\),)h(and)g(the)f +(sla)o(v)o(es)h(searc)o(hing)h(the)e(rest)g(of)g(the)g(tree)g(\()p +Fo(d)c Fm(\000)f Fo(d)1192 889 y Fn(0)1217 905 y Fq(ply\).)21 +b(The)14 b(sla)o(v)o(es)h(async)o(hronously)j(read)104 +951 y(w)o(ork)d(lists)h(from)f(the)h(master)f(and)h(return)g(score)f +(information)i(to)f(the)f(master.)24 b(The)15 b(master)g(uses)h(the)f +(returned)104 997 y(score)e(information)i(to)d(generate)i(appro)o +(ximate)h(minimax)f(v)n(alues,)g(un)o(til)h(all)f(of)e(the)h(required)h +(score)g(information)g(is)104 1042 y(a)o(v)n(ailable.)161 +1088 y(APHID)e(has)g(b)q(een)g(programmed)h(as)e(an)h(easy)g(to)g +(implemen)o(t,)h(game-indep)q(enden)o(t)h Fo(\013\014)f +Fq(library)m(.)18 b(This)12 b(has)g(b)q(een)104 1134 +y(demonstrated)g(b)o(y)f(parallelizi)q(ng)j(three)c(programs)i(\(c)o +(hess,)f(c)o(hec)o(k)o(ers)g(and)g(Othello\))h(on)f(a)g(net)o(w)o(ork)g +(of)f(w)o(orkstations,)104 1179 y(eac)o(h)j(with)h(less)f(than)h(a)f +(da)o(y's)g(w)o(orth)g(of)g(e\013ort.)0 1316 y Fl(1)67 +b(In)n(tro)r(duction)0 1407 y Fk(The)18 b(alpha-b)q(eta)f(\()p +Fj(\013\014)r Fk(\))h(minim)o(ax)c(tree)19 b(searc)o(h)f(algorithm)d +(has)j(pro)o(v)o(en)f(to)g(b)q(e)h(a)f(di\016cult)g(algorithm)e(to)i +(parallelize.)0 1457 y(Although)e(sim)o(ulations)e(predict)k(excellen)o +(t)f(parallel)f(p)q(erformance,)g(man)o(y)f(of)h(these)i(results)g(are) +f(based)h(on)e(an)h(unrea-)0 1507 y(sonable)c(set)h(of)e(assumptions.) +17 b(In)12 b(practice,)h(kno)o(wing)e(where)i(to)f(initiate)f(parallel) +g(activit)o(y)g(is)h(di\016cult)g(since)h(the)f(result)0 +1557 y(of)h(searc)o(hing)i(one)f(no)q(de)h(at)f(a)f(branc)o(h)i(ma)o(y) +d(ob)o(viate)i(the)g(parallel)f(w)o(ork)h(of)f(the)i(other)g(branc)o +(hes)g(\(a)f(so-called)g Fi(cut-o\013)p Fk(\).)0 1607 +y(In)g(real-w)o(orld)g(implemen)o(tatio)o(ns,)e(suc)o(h)j(as)f(for)g +(high-p)q(erformance)g(c)o(hess,)h(c)o(hec)o(k)o(ers)i(and)d(Othello)g +(game-pla)o(ying)d(pro-)0 1656 y(grams,)h(the)j(programs)d(su\013er)j +(from)d(three)k(ma)r(jor)c(sources)j(of)e(parallel)g(ine\016ciency)h +(\(a)g(similar)d(mo)q(del)i(is)g(presen)o(ted)j(in)0 +1706 y([18)o(]\):)62 1789 y Fh(\017)21 b Fi(Synchr)n(onization)15 +b(Overhe)n(ad)p Fk(:)i(The)d(searc)o(h)g(t)o(ypically)d(has)i(man)o(y)e +(sync)o(hronization)i(p)q(oin)o(ts)f(that)h(result)h(in)e(a)h(high)104 +1839 y(p)q(ercen)o(tage)i(of)f(pro)q(cessor)h(idle)f(time.)62 +1922 y Fh(\017)21 b Fi(Par)n(al)r(lelization)14 b(Overhe)n(ad)p +Fk(:)k(This)c(is)g(the)g(o)o(v)o(erhead)h(of)e(incorp)q(orating)g(the)i +(parallel)e(algorithm,)e(whic)o(h)i(includes)104 1972 +y(the)h(handling)f(of)g(comm)o(unication)e(and)i(main)o(taining)e +(structures)16 b(to)e(allo)o(w)e(for)i(allo)q(cation)e(of)h(w)o(ork.)62 +2055 y Fh(\017)21 b Fi(Se)n(ar)n(ch)c(Overhe)n(ad)p Fk(:)22 +b(Searc)o(h)16 b(trees)i(are)e(really)f(directed)i(graphs.)24 +b(W)m(ork)15 b(p)q(erformed)g(on)h(one)g(pro)q(cessor)h(ma)o(y)d(b)q(e) +104 2105 y(useful)d(to)g(the)g(computations)f(of)g(another)i(pro)q +(cessor.)18 b(If)11 b(this)g(information)d(is)j(not)g(a)o(v)n(ailable,) +e(unnecessary)k(searc)o(h)104 2155 y(ma)o(y)f(b)q(e)i(done.)0 +2238 y(These)h(o)o(v)o(erheads)f(are)g(not)f(indep)q(enden)o(t)i(of)d +(eac)o(h)i(other.)19 b(F)m(or)13 b(example,)f(increased)i(comm)o +(unication)c(can)k(help)f(reduce)0 2287 y(the)j(searc)o(h)h(o)o(v)o +(erhead.)23 b(Reducing)15 b(the)h(n)o(um)o(b)q(er)f(of)f(sync)o +(hronization)i(p)q(oin)o(ts)f(can)h(increase)g(the)g(searc)o(h)h(o)o(v) +o(erhead.)23 b(In)0 2337 y(practice,)14 b(the)h(righ)o(t)e(balance)h(b) +q(et)o(w)o(een)h(these)g(sources)h(of)d(program)f(ine\016ciency)i(is)g +(di\016cult)f(to)h(\014nd,)f(and)h(one)g(usually)0 2387 +y(p)q(erforms)f(man)o(y)f(exp)q(erimen)o(ts)j(to)e(\014nd)h(the)h(righ) +o(t)e(trade-o\013s)i(to)f(maxim)o(ize)d(p)q(erformance.)62 +2437 y(Man)o(y)17 b(parallel)f Fj(\013\014)k Fk(algorithms)15 +b(ha)o(v)o(e)i(app)q(eared)h(in)f(the)h(literature)g(\(see)g([1])e(for) +h(a)g(comprehensiv)o(e)h(list)f(of)f(algo-)0 2487 y(rithms\).)h(The)12 +b(PV-Split)g(algorithm)e(recognized)k(that)e(some)g(no)q(des)h(exist)g +(in)e(the)i(searc)o(h)h(tree)g(where,)f(ha)o(ving)e(searc)o(hed)0 +2537 y(the)k(\014rst)h(branc)o(h)f(sequen)o(tially)m(,)e(the)i +(remaining)e(branc)o(hes)j(can)f(b)q(e)g(searc)o(hed)h(in)e(parallel)g +([17)o(].)20 b(Initiating)13 b(parallelism)p 0 2573 780 +2 v 46 2600 a Fn(\003)64 2612 y Fg(A)g(part)f(of)h(this)f(pap)q(er)g(w) +o(as)h(presen)o(ted)e(at)h(the)h(Adv)n(ances)e(in)i(Computer)e(Chess)i +(VI)q(I)q(I)g(conference)d(in)j(Maastric)o(h)o(t,)e(June)h(1996)g([2].) +20 b(A)0 2651 y(di\013eren)o(t)8 b(p)q(ortion)h(w)o(as)i(accepted)d +(for)i(publication)d(at)j(the)g(8th)g(IEEE)h(Symp)q(osium)c(on)j(P)o +(arallel)f(and)h(Distributed)e(Pro)q(cessing)g(\(SPDP)i('96\),)0 +2691 y(New)i(Orleans,)f(Octob)q(er)f(1996)g([3].)965 +2790 y Fk(1)p eop +%%Page: 2 4 +2 3 bop 0 42 a Fk(along)13 b(the)i(b)q(est)h(line)e(of)f(pla)o(y)m(,)g +(the)i Fi(princip)n(al)g(variation)p Fk(,)f(w)o(as)g(e\013ectiv)o(e)i +(for)e(a)g(small)e(n)o(um)o(b)q(er)i(of)g(pro)q(cessors,)i(although)0 +91 y(v)n(ariations)d(on)g(this)h(sc)o(heme)g(seem)g(to)g(b)q(e)g +(limited)e(to)i(sp)q(eedups)i(of)d(less)h(than)g(8)g([24)o(].)62 +141 y(The)e(idea)f(can)h(b)q(e)g(generalized)g(to)g(other)g(no)q(des)g +(in)f(the)h(tree.)18 b(A)o(t)12 b(no)q(des)g(where)h(the)f(\014rst)g +(branc)o(h)g(has)g(b)q(een)g(searc)o(hed)0 191 y(and)17 +b(no)g(cut-o\013)h(o)q(ccurs,)h(the)e(rest)i(can)e(lik)o(ely)f(b)q(e)i +(searc)o(hed)h(in)e(parallel.)26 b(It)18 b(is)f(a)g(trade-o\013)g({)g +(increased)i(parallelism)0 241 y(v)o(ersus)14 b(additional)e(searc)o(h) +i(o)o(v)o(erhead,)f(since)h(one)g(of)e(these)j(parallel)d(tasks)i +(could)f(cause)h(a)f(cut-o\013.)18 b(This)13 b(idea)g(has)h(b)q(een)0 +291 y(tried)e(b)o(y)g(a)f(n)o(um)o(b)q(er)h(of)f(researc)o(hers)k([6)o +(,)c(7,)g(10].)17 b(The)12 b(b)q(est-kno)o(wn)g(instance)h(of)e(this)h +(t)o(yp)q(e)h(of)e(algorithm)e(is)j(called)f Fi(Y)m(oung)0 +340 y(Br)n(others)k(Wait)f Fk(\(YBW\))h(and)f(w)o(as)g(implemen)o(ted)e +(b)o(y)i(F)m(eldmann)e(in)i(the)h Ff(Zugzw)l(ang)f Fk(c)o(hess)i +(program)d([5)o(].)19 b(F)m(eldmann)0 390 y(ac)o(hiev)o(ed)12 +b(a)f(344-fold)e(sp)q(eedup)k(using)e(YBW)h(on)f(1024)f(pro)q(cessors.) +20 b(V)m(ariations)10 b(of)h(this)g(algorithm)e(ha)o(v)o(e)i(app)q +(eared)h(with)0 440 y(comparable)g(exp)q(erimen)o(tal)g(results,)i(suc) +o(h)g(as)f(Kuszmaul's)f(Jam)o(b)q(oree)h(searc)o(h)h([14)o(])f(and)f(W) +m(eill's)g(ABD)o(AD)o(A)h(algorithm)0 490 y([29)o(].)62 +540 y(This)20 b(class)f(of)g(algorithms)e(cannot)j(ac)o(hiev)o(e)g(a)f +(linear)g(sp)q(eedup)i(primarily)c(due)i(to)h(sync)o(hronization)f(o)o +(v)o(erhead;)0 589 y(the)c(searc)o(h)h(tree)g(ma)o(y)d(ha)o(v)o(e)i +(thousands)g(of)f(sync)o(hronization)h(p)q(oin)o(ts)g(and)f(there)j +(are)e(n)o(umerous)f(o)q(ccasions)h(where)h(the)0 639 +y(pro)q(cesses)i(are)e(starv)o(ed)h(for)e(w)o(ork.)23 +b(The)16 b(algorithms)e(ha)o(v)o(e)h(lo)o(w)g(searc)o(h)i(o)o(v)o +(erhead,)f(but)f(this)h(is)g(primarily)d(due)j(to)f(the)0 +689 y(implemen)o(tatio)o(n)c(of)j(a)f(globally)f(shared)j(transp)q +(osition)e(table)h(to)g(share)h(information)c(and)i(impro)o(v)o(e)f(mo) +o(v)o(e)h(ordering.)62 739 y(This)h(pap)q(er)h(in)o(tro)q(duces)h(the)f +(Async)o(hronous)g(P)o(arallel)e(Hierarc)o(hical)h(Iterativ)o(e)h(Deep) +q(ening)g(\(APHID)1723 724 y Fe(1)1742 739 y Fk(\))f(game-tree)0 +789 y(searc)o(h)i(algorithm.)k(The)c(algorithm)d(represen)o(ts)18 +b(a)d(departure)i(from)c(the)j(approac)o(hes)g(used)h(in)d(practice.)24 +b(In)15 b(con)o(trast)0 839 y(to)d(other)h(sc)o(hemes,)g(APHID)g +(de\014nes)h(a)e(fron)o(tier)h(\(a)f(\014xed)h(n)o(um)o(b)q(er)f(of)f +(mo)o(v)o(es)h(a)o(w)o(a)o(y)f(from)g(the)i(ro)q(ot)f(of)g(the)h(searc) +o(h)h(tree\),)0 888 y(and)d(all)g(no)q(des)h(at)f(the)h(fron)o(tier)g +(are)f(done)h(in)f(parallel.)16 b(Eac)o(h)c(w)o(ork)o(er)g(pro)q(cess)h +(is)e(assigned)h(an)f(equal)g(n)o(um)o(b)q(er)g(of)g(fron)o(tier)0 +938 y(no)q(des)i(to)f(searc)o(h.)19 b(The)13 b(w)o(ork)o(ers)g(con)o +(tin)o(ually)d(searc)o(h)k(these)g(no)q(des)f(deep)q(er)h(and)e(deep)q +(er,)i(nev)o(er)f(ha)o(ving)f(to)g(sync)o(hronize)0 988 +y(with)j(a)g(con)o(trolling)f(master)h(pro)q(cess.)24 +b(The)16 b(master)f(pro)q(cess)i(rep)q(eatedly)f(searc)o(hes)i(to)d +(the)h(fron)o(tier)f(to)g(get)h(the)g(latest)0 1038 y(searc)o(h)g +(results.)k(In)15 b(this)f(w)o(a)o(y)m(,)f(there)j(is)e(e\013ectiv)o +(ely)i(no)e(idle)g(time;)f(searc)o(h)i(ine\016ciencies)h(are)f +(primarily)d(due)j(to)f(searc)o(h)0 1088 y(o)o(v)o(erhead.)29 +b(APHID's)18 b(p)q(erformance)f(do)q(es)h(not)g(rely)f(on)h(the)g +(implemen)o(tati)o(on)d(of)i(a)g(global)f(shared)i(memory)m(,)d(whic)o +(h)0 1137 y(mak)o(es)f(the)i(algorithm)d(suitable)i(for)g(lo)q +(osely-coupled)f(arc)o(hitectures)k(\(suc)o(h)e(as)f(a)g(net)o(w)o(ork) +h(of)e(w)o(orkstations\),)h(as)h(w)o(ell)0 1187 y(as)e(tigh)o +(tly-coupled)f(arc)o(hitectures.)62 1237 y(Unlik)o(e)f(most)f(parallel) +g Fj(\013\014)k Fk(algorithms,)9 b(APHID)k(is)f(designed)h(to)f(\014t)g +(in)o(to)g(a)g(sequen)o(tial)g Fj(\013\014)j Fk(structure.)k(APHID)13 +b(has)0 1287 y(b)q(een)i(implemen)o(ted)e(as)h(a)g(game-indep)q(enden)o +(t)g(library)g(of)f(routines.)20 b(These,)c(com)o(bined)d(with)h +(application-dep)q(enden)o(t)0 1337 y(routines)d(that)f(the)g(user)h +(supplies,)g(allo)o(w)d(a)i(sequen)o(tial)g Fj(\013\014)j +Fk(program)8 b(to)i(b)q(e)h(easily)e(con)o(v)o(erted)i(to)f(a)g +(parallel)f Fj(\013\014)j Fk(program.)0 1386 y(Although)i(most)f +(parallel)g Fj(\013\014)j Fk(programs)d(tak)o(e)h(mon)o(ths)f(to)h(dev) +o(elop,)g(the)h(game-indep)q(enden)o(t)f(library)g(allo)o(ws)e(users)k +(to)0 1436 y(in)o(tegrate)e(parallelism)d(in)o(to)j(their)g +(application)e(with)i(only)f(a)h(few)g(hours)g(of)f(w)o(ork.)62 +1486 y(This)j(pap)q(er)h(discusses)i(the)e(APHID)f(algorithm,)e(its)i +(application-indep)q(enden)o(t)g(in)o(terface)h(and)f(the)h(p)q +(erformance)0 1536 y(of)12 b(the)h(APHID)g(algorithm.)i(The)f(pap)q(er) +f(is)g(organized)f(in)o(to)g(\014v)o(e)h(sections.)19 +b(Section)13 b(2)g(is)f(a)h(brief)f(summary)e(of)j(previous)0 +1586 y(w)o(ork)i(in)g(sequen)o(tial)h(and)f(parallel)g(game-tree)g +(searc)o(h.)24 b(Section)16 b(3)f(is)g(primarily)e(concerned)18 +b(with)d(the)h(details)f(of)g(ho)o(w)0 1636 y(the)j(APHID)f(algorithm)d +(op)q(erates,)19 b(and)e(ho)o(w)f(the)i(library)e(in)o(tegrates)i(with) +e(an)h(existing)g(sequen)o(tial)g Fj(\013\014)i Fk(algorithm.)0 +1685 y(Section)11 b(4)g(describ)q(es)i(the)e(results)h(of)f(in)o +(tegrating)f(the)h(library)g(in)o(to)f(three)i(di\013eren)o(t)g +(game-pla)o(ying)c(programs:)15 b Ff(Key)m(ano)0 1735 +y Fk(\(Othello\),)h Ff(TheTurk)h Fk(\(c)o(hess\),)i(and)d +Ff(Chinook)h Fk(\(c)o(hec)o(k)o(ers\).)28 b(Section)17 +b(5)f(describ)q(es)i(some)e(conclusions)g(that)h(can)f(b)q(e)0 +1785 y(dra)o(wn)f(from)e(the)i(exp)q(erimen)o(ts,)g(and)f(a)h(glimpse)e +(at)h(some)g(of)g(the)i(things)e(w)o(e)h(in)o(tend)g(on)f(impro)o(ving) +e(b)q(efore)k(APHID's)0 1835 y(general)e(release.)0 1972 +y Fl(2)67 b(Previous)23 b(W)-6 b(ork)0 2063 y Fk(This)14 +b(section)g(is)g(divided)g(in)o(to)f(t)o(w)o(o)g(subsections,)i +(discussing)g(sequen)o(tial)f(and)f(parallel)g(searc)o(h)i(metho)q(ds.) +0 2179 y Fv(2.1)56 b(Sequen)n(tial)17 b(Game-T)-5 b(ree)16 +b(Searc)n(h)0 2256 y Fk(Most)g(common)d(games)i(of)g(though)o(t)h +(\(suc)o(h)h(as)f(c)o(hec)o(k)o(ers,)i(c)o(hess,)f(Othello)f(and)g +(Go\))f(\014t)h(in)o(to)f(the)i(class)f(of)f(t)o(w)o(o-pla)o(y)o(er,)0 +2306 y(zero-sum)d(games)g(with)g(p)q(erfect)i(information.)h(Giv)o(en)d +(su\016cien)o(t)h(time)e(and)h(assuming)f(that)i(b)q(oth)f(pla)o(y)o +(ers)h(w)o(an)o(t)f(to)g(win)0 2355 y(the)i(game,)d(it)i(is)h(easy)f +(to)g(determine)h(a)f(b)q(est)h(mo)o(v)o(e)e(in)h(an)o(y)g(p)q +(osition,)f(and)h(determine)g(whether)i(or)e(not)h(an)o(y)e(p)q +(osition)h(is)0 2405 y(a)h(win,)f(loss)g(or)h(dra)o(w.)62 +2455 y(An)h(initial)d(p)q(osition)i(in)g(a)g(game,)e(and)i(all)f(of)h +(its)g(p)q(ossible)h(outcomes,)f(can)g(b)q(e)h(represen)o(ted)i(as)e(a) +f(game-tree.)19 b(Eac)o(h)0 2505 y(no)q(de)d(in)f(the)h(game-tree)f +(represen)o(ts)j(a)e(p)q(osition)f(within)f(the)i(game.)22 +b(Eac)o(h)16 b(arc)g(joining)e(a)h(no)q(de)h(at)f(lev)o(el)g +Fj(l)i Fk(to)e(a)h(no)q(de)0 2555 y(at)d(lev)o(el)g Fj(l)c +Fk(+)g(1)k(represen)o(ts)j(the)e(mo)o(v)o(e)d(required)j(to)g(reac)o(h) +g(the)g(successor)h(p)q(osition.)j(The)13 b(v)n(arious)g(lev)o(els)g +(in)g(the)h(tree)h(are)0 2604 y(called)g Fi(plies)h Fk(b)o(y)f +(game-tree)h(researc)o(hers,)i(where)f(ply)e(0)h(is)f(the)i(curren)o(t) +g(p)q(osition)e(in)g(the)i(game,)d(ply)h(1)g(consists)i(of)e(all)p +0 2639 780 2 v 46 2666 a Fd(1)64 2678 y Fg(An)c(aphid)f(is)i(a)f +(soft-b)q(o)q(died)e(insect)h(that)g(suc)o(ks)h(the)g(sap)g(from)f +(plan)o(ts.)965 2790 y Fk(2)p eop +%%Page: 3 5 +3 4 bop 177 0 a + 10988180 9472573 7433338 16642785 31838371 37627166 startTexFig + 177 0 a +%%BeginDocument: candid21.ps + +/arrowHeight 10 def +/arrowWidth 5 def + +/IdrawDict 51 dict def +IdrawDict begin + +/reencodeISO { +dup dup findfont dup length dict begin +{ 1 index /FID ne { def }{ pop pop } ifelse } forall +/Encoding ISOLatin1Encoding def +currentdict end definefont +} def + +/ISOLatin1Encoding [ +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright +/parenleft/parenright/asterisk/plus/comma/minus/period/slash +/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon +/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N +/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright +/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m +/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/dotlessi/grave/acute/circumflex/tilde/macron/breve +/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut +/ogonek/caron/space/exclamdown/cent/sterling/currency/yen/brokenbar +/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot +/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior +/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine +/guillemotright/onequarter/onehalf/threequarters/questiondown +/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla +/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex +/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis +/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute +/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis +/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave +/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex +/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis +/yacute/thorn/ydieresis +] def +/Helvetica-Bold reencodeISO def + +/none null def +/numGraphicParameters 17 def +/stringLimit 65535 def + +/Begin { +save +numGraphicParameters dict begin +} def + +/End { +end +restore +} def + +/SetB { +dup type /nulltype eq { +pop +false /brushRightArrow idef +false /brushLeftArrow idef +true /brushNone idef +} { +/brushDashOffset idef +/brushDashArray idef +0 ne /brushRightArrow idef +0 ne /brushLeftArrow idef +/brushWidth idef +false /brushNone idef +} ifelse +} def + +/SetCFg { +/fgblue idef +/fggreen idef +/fgred idef +} def + +/SetCBg { +/bgblue idef +/bggreen idef +/bgred idef +} def + +/SetF { +/printSize idef +/printFont idef +} def + +/SetP { +dup type /nulltype eq { +pop true /patternNone idef +} { +dup -1 eq { +/patternGrayLevel idef +/patternString idef +} { +/patternGrayLevel idef +} ifelse +false /patternNone idef +} ifelse +} def + +/BSpl { +0 begin +storexyn +newpath +n 1 gt { +0 0 0 0 0 0 1 1 true subspline +n 2 gt { +0 0 0 0 1 1 2 2 false subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 2 copy false subspline +} if +n 2 sub dup n 1 sub dup 2 copy 2 copy false subspline +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Circ { +newpath +0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/CBSpl { +0 begin +dup 2 gt { +storexyn +newpath +n 1 sub dup 0 0 1 1 2 2 true subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 0 0 false subspline +n 2 sub dup n 1 sub dup 0 0 1 1 false subspline +patternNone not { ifill } if +brushNone not { istroke } if +} { +Poly +} ifelse +end +} dup 0 4 dict put def + +/Elli { +0 begin +newpath +4 2 roll +translate +scale +0 0 1 0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 1 dict put def + +/Line { +0 begin +2 storexyn +newpath +x 0 get y 0 get moveto +x 1 get y 1 get lineto +brushNone not { istroke } if +0 0 1 1 leftarrow +0 0 1 1 rightarrow +end +} dup 0 4 dict put def + +/MLine { +0 begin +storexyn +newpath +n 1 gt { +x 0 get y 0 get moveto +1 1 n 1 sub { +/i exch def +x i get y i get lineto +} for +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Poly { +3 1 roll +newpath +moveto +-1 add +{ lineto } repeat +closepath +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/Rect { +0 begin +/t exch def +/r exch def +/b exch def +/l exch def +newpath +l b moveto +l t lineto +r t lineto +r b lineto +closepath +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 4 dict put def + +/Text { +ishow +} def + +/idef { +dup where { pop pop pop } { exch def } ifelse +} def + +/ifill { +0 begin +gsave +patternGrayLevel -1 ne { +fgred bgred fgred sub patternGrayLevel mul add +fggreen bggreen fggreen sub patternGrayLevel mul add +fgblue bgblue fgblue sub patternGrayLevel mul add setrgbcolor +eofill +} { +eoclip +originalCTM setmatrix +pathbbox /t exch def /r exch def /b exch def /l exch def +/w r l sub ceiling cvi def +/h t b sub ceiling cvi def +/imageByteWidth w 8 div ceiling cvi def +/imageHeight h def +bgred bggreen bgblue setrgbcolor +eofill +fgred fggreen fgblue setrgbcolor +w 0 gt h 0 gt and { +l b translate w h scale +w h true [w 0 0 h neg 0 h] { patternproc } imagemask +} if +} ifelse +grestore +end +} dup 0 8 dict put def + +/istroke { +gsave +brushDashOffset -1 eq { +[] 0 setdash +1 setgray +} { +brushDashArray brushDashOffset setdash +fgred fggreen fgblue setrgbcolor +} ifelse +brushWidth setlinewidth +originalCTM setmatrix +stroke +grestore +} def + +/ishow { +0 begin +gsave +fgred fggreen fgblue setrgbcolor +/fontDict printFont printSize scalefont dup setfont def +/descender fontDict begin 0 [FontBBox] 1 get FontMatrix end +transform exch pop def +/vertoffset 1 printSize sub descender sub def { +0 vertoffset moveto show +/vertoffset vertoffset printSize sub def +} forall +grestore +end +} dup 0 3 dict put def +/patternproc { +0 begin +/patternByteLength patternString length def +/patternHeight patternByteLength 8 mul sqrt cvi def +/patternWidth patternHeight def +/patternByteWidth patternWidth 8 idiv def +/imageByteMaxLength imageByteWidth imageHeight mul +stringLimit patternByteWidth sub min def +/imageMaxHeight imageByteMaxLength imageByteWidth idiv patternHeight idiv +patternHeight mul patternHeight max def +/imageHeight imageHeight imageMaxHeight sub store +/imageString imageByteWidth imageMaxHeight mul patternByteWidth add string def +0 1 imageMaxHeight 1 sub { +/y exch def +/patternRow y patternByteWidth mul patternByteLength mod def +/patternRowString patternString patternRow patternByteWidth getinterval def +/imageRow y imageByteWidth mul def +0 patternByteWidth imageByteWidth 1 sub { +/x exch def +imageString imageRow x add patternRowString putinterval +} for +} for +imageString +end +} dup 0 12 dict put def + +/min { +dup 3 2 roll dup 4 3 roll lt { exch } if pop +} def + +/max { +dup 3 2 roll dup 4 3 roll gt { exch } if pop +} def + +/midpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 x1 add 2 div +y0 y1 add 2 div +end +} dup 0 4 dict put def + +/thirdpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 2 mul x1 add 3 div +y0 2 mul y1 add 3 div +end +} dup 0 4 dict put def + +/subspline { +0 begin +/movetoNeeded exch def +y exch get /y3 exch def +x exch get /x3 exch def +y exch get /y2 exch def +x exch get /x2 exch def +y exch get /y1 exch def +x exch get /x1 exch def +y exch get /y0 exch def +x exch get /x0 exch def +x1 y1 x2 y2 thirdpoint +/p1y exch def +/p1x exch def +x2 y2 x1 y1 thirdpoint +/p2y exch def +/p2x exch def +x1 y1 x0 y0 thirdpoint +p1x p1y midpoint +/p0y exch def +/p0x exch def +x2 y2 x3 y3 thirdpoint +p2x p2y midpoint +/p3y exch def +/p3x exch def +movetoNeeded { p0x p0y moveto } if +p1x p1y p2x p2y p3x p3y curveto +end +} dup 0 17 dict put def + +/storexyn { +/n exch def +/y n array def +/x n array def +n 1 sub -1 0 { +/i exch def +y i 3 2 roll put +x i 3 2 roll put +} for +} def + +/SSten { +fgred fggreen fgblue setrgbcolor +dup true exch 1 0 0 -1 0 6 -1 roll matrix astore +} def + +/FSten { +dup 3 -1 roll dup 4 1 roll exch +newpath +0 0 moveto +dup 0 exch lineto +exch dup 3 1 roll exch lineto +0 lineto +closepath +bgred bggreen bgblue setrgbcolor +eofill +SSten +} def + +/Rast { +exch dup 3 1 roll 1 0 0 -1 0 6 -1 roll matrix astore +} def + + +/arrowhead { +0 begin +transform originalCTM itransform +/taily exch def +/tailx exch def +transform originalCTM itransform +/tipy exch def +/tipx exch def +/dy tipy taily sub def +/dx tipx tailx sub def +/angle dx 0 ne dy 0 ne or { dy dx atan } { 90 } ifelse def +gsave +originalCTM setmatrix +tipx tipy translate +angle rotate +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +patternNone not { +originalCTM setmatrix +/padtip arrowHeight 2 exp 0.25 arrowWidth 2 exp mul add sqrt brushWidth mul +arrowWidth div def +/padtail brushWidth 2 div def +tipx tipy translate +angle rotate +padtip 0 translate +arrowHeight padtip add padtail add arrowHeight div dup scale +arrowheadpath +ifill +} if +brushNone not { +originalCTM setmatrix +tipx tipy translate +angle rotate +arrowheadpath +istroke +} if +grestore +end +} dup 0 9 dict put def + +/arrowheadpath { +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +} def + +/leftarrow { +0 begin +y exch get /taily exch def +x exch get /tailx exch def +y exch get /tipy exch def +x exch get /tipx exch def +brushLeftArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + +/rightarrow { +0 begin +y exch get /tipy exch def +x exch get /tipx exch def +y exch get /taily exch def +x exch get /tailx exch def +brushRightArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + + +%I Idraw 10 Grid 4.98316 4.98316 + + +Begin +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 0.799705 0 0 0.799705 0 0 ] concat +/originalCTM matrix currentmatrix def + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -30 -210 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 130 -210 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 209 -210 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -110 -314 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 50 -314 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 209 -314 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 289 -314 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t u + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t u + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -70 -105 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -98 28 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -160 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t u + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 -105 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 28 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 0 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t u + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 249 -105 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 221 -12 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 159 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 23 -222 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -138 -222 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 261 -182 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t u + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -110 -210 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 89 156 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -40 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -70 -105 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -98 28 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -160 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +End %I eop + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 40 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -70 -105 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -98 28 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -160 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 40 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 -105 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 28 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 0 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -40 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 249 -105 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 221 -12 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 159 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 149 115 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t u + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 50 -210 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -40 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 -105 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 28 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 0 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 229 155 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 309 115 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 388 155 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t u + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 289 -210 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 40 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 249 -105 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 221 -12 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 159 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 488 155 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 118 226 ] concat +%I +106 227 166 227 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 118 226 ] concat +%I +266 227 326 227 Line +%I 1 +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 0 -104 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -110 -210 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 89 156 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -40 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -70 -105 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -98 28 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -160 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +End %I eop + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 0 -104 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 50 -210 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -40 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 -105 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 28 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 0 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 229 155 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -8 -112 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 217 -202 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -32 -97 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 249 -105 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 221 -12 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 159 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 396 163 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 0 -104 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 289 -210 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 40 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 249 -105 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 221 -12 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 159 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 488 155 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 201 -182 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 118 226 ] concat +%I +56 173 56 113 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 222 226 ] concat +%I +351 173 351 113 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +40 383 180 418 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +200 418 200 383 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +220 418 359 383 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 230 ] concat +%I +52 278 82 313 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 230 ] concat +%I +52 209 52 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 230 ] concat +%I +102 313 132 278 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 230 ] concat +%I +212 278 242 313 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 230 ] concat +%I +262 313 292 278 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 230 ] concat +%I +212 209 212 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 226 230 ] concat +%I +297 313 267 278 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 226 230 ] concat +%I +317 313 347 278 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 226 230 ] concat +%I +267 209 267 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 226 230 ] concat +%I +347 209 347 174 Line +%I 1 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-bold-r-normal-*-14-*-*-*-*-*-*-* +Helvetica-Bold 14 SetF +%I t +[ 1 0 0 1 169 332 ] concat +%I +[ +(1) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-bold-r-normal-*-14-*-*-*-*-*-*-* +Helvetica-Bold 14 SetF +%I t +[ 1 0 0 1 249 437 ] concat +%I +[ +(-1) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-bold-r-normal-*-14-*-*-*-*-*-*-* +Helvetica-Bold 14 SetF +%I t +[ 1 0 0 1 329 332 ] concat +%I +[ +(0) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-bold-r-normal-*-14-*-*-*-*-*-*-* +Helvetica-Bold 14 SetF +%I t +[ 1 0 0 1 409 437 ] concat +%I +[ +(-1) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-bold-r-normal-*-14-*-*-*-*-*-*-* +Helvetica-Bold 14 SetF +%I t +[ 1 0 0 1 488 332 ] concat +%I +[ +(0) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-bold-r-normal-*-14-*-*-*-*-*-*-* +Helvetica-Bold 14 SetF +%I t +[ 1 0 0 1 568 332 ] concat +%I +[ +(1) +] Text +End + +End %I eop + +showpage + + +end +%%EndDocument + + endTexFig + 1077 0 a + 10988180 9472573 7367557 16577003 31838371 37627166 startTexFig + 1077 0 a +%%BeginDocument: candid22.ps + +/arrowHeight 10 def +/arrowWidth 5 def + +/IdrawDict 51 dict def +IdrawDict begin + +/reencodeISO { +dup dup findfont dup length dict begin +{ 1 index /FID ne { def }{ pop pop } ifelse } forall +/Encoding ISOLatin1Encoding def +currentdict end definefont +} def + +/ISOLatin1Encoding [ +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright +/parenleft/parenright/asterisk/plus/comma/minus/period/slash +/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon +/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N +/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright +/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m +/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/dotlessi/grave/acute/circumflex/tilde/macron/breve +/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut +/ogonek/caron/space/exclamdown/cent/sterling/currency/yen/brokenbar +/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot +/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior +/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine +/guillemotright/onequarter/onehalf/threequarters/questiondown +/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla +/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex +/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis +/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute +/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis +/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave +/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex +/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis +/yacute/thorn/ydieresis +] def +/Helvetica-Bold reencodeISO def + +/none null def +/numGraphicParameters 17 def +/stringLimit 65535 def + +/Begin { +save +numGraphicParameters dict begin +} def + +/End { +end +restore +} def + +/SetB { +dup type /nulltype eq { +pop +false /brushRightArrow idef +false /brushLeftArrow idef +true /brushNone idef +} { +/brushDashOffset idef +/brushDashArray idef +0 ne /brushRightArrow idef +0 ne /brushLeftArrow idef +/brushWidth idef +false /brushNone idef +} ifelse +} def + +/SetCFg { +/fgblue idef +/fggreen idef +/fgred idef +} def + +/SetCBg { +/bgblue idef +/bggreen idef +/bgred idef +} def + +/SetF { +/printSize idef +/printFont idef +} def + +/SetP { +dup type /nulltype eq { +pop true /patternNone idef +} { +dup -1 eq { +/patternGrayLevel idef +/patternString idef +} { +/patternGrayLevel idef +} ifelse +false /patternNone idef +} ifelse +} def + +/BSpl { +0 begin +storexyn +newpath +n 1 gt { +0 0 0 0 0 0 1 1 true subspline +n 2 gt { +0 0 0 0 1 1 2 2 false subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 2 copy false subspline +} if +n 2 sub dup n 1 sub dup 2 copy 2 copy false subspline +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Circ { +newpath +0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/CBSpl { +0 begin +dup 2 gt { +storexyn +newpath +n 1 sub dup 0 0 1 1 2 2 true subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 0 0 false subspline +n 2 sub dup n 1 sub dup 0 0 1 1 false subspline +patternNone not { ifill } if +brushNone not { istroke } if +} { +Poly +} ifelse +end +} dup 0 4 dict put def + +/Elli { +0 begin +newpath +4 2 roll +translate +scale +0 0 1 0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 1 dict put def + +/Line { +0 begin +2 storexyn +newpath +x 0 get y 0 get moveto +x 1 get y 1 get lineto +brushNone not { istroke } if +0 0 1 1 leftarrow +0 0 1 1 rightarrow +end +} dup 0 4 dict put def + +/MLine { +0 begin +storexyn +newpath +n 1 gt { +x 0 get y 0 get moveto +1 1 n 1 sub { +/i exch def +x i get y i get lineto +} for +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Poly { +3 1 roll +newpath +moveto +-1 add +{ lineto } repeat +closepath +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/Rect { +0 begin +/t exch def +/r exch def +/b exch def +/l exch def +newpath +l b moveto +l t lineto +r t lineto +r b lineto +closepath +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 4 dict put def + +/Text { +ishow +} def + +/idef { +dup where { pop pop pop } { exch def } ifelse +} def + +/ifill { +0 begin +gsave +patternGrayLevel -1 ne { +fgred bgred fgred sub patternGrayLevel mul add +fggreen bggreen fggreen sub patternGrayLevel mul add +fgblue bgblue fgblue sub patternGrayLevel mul add setrgbcolor +eofill +} { +eoclip +originalCTM setmatrix +pathbbox /t exch def /r exch def /b exch def /l exch def +/w r l sub ceiling cvi def +/h t b sub ceiling cvi def +/imageByteWidth w 8 div ceiling cvi def +/imageHeight h def +bgred bggreen bgblue setrgbcolor +eofill +fgred fggreen fgblue setrgbcolor +w 0 gt h 0 gt and { +l b translate w h scale +w h true [w 0 0 h neg 0 h] { patternproc } imagemask +} if +} ifelse +grestore +end +} dup 0 8 dict put def + +/istroke { +gsave +brushDashOffset -1 eq { +[] 0 setdash +1 setgray +} { +brushDashArray brushDashOffset setdash +fgred fggreen fgblue setrgbcolor +} ifelse +brushWidth setlinewidth +originalCTM setmatrix +stroke +grestore +} def + +/ishow { +0 begin +gsave +fgred fggreen fgblue setrgbcolor +/fontDict printFont printSize scalefont dup setfont def +/descender fontDict begin 0 [FontBBox] 1 get FontMatrix end +transform exch pop def +/vertoffset 1 printSize sub descender sub def { +0 vertoffset moveto show +/vertoffset vertoffset printSize sub def +} forall +grestore +end +} dup 0 3 dict put def +/patternproc { +0 begin +/patternByteLength patternString length def +/patternHeight patternByteLength 8 mul sqrt cvi def +/patternWidth patternHeight def +/patternByteWidth patternWidth 8 idiv def +/imageByteMaxLength imageByteWidth imageHeight mul +stringLimit patternByteWidth sub min def +/imageMaxHeight imageByteMaxLength imageByteWidth idiv patternHeight idiv +patternHeight mul patternHeight max def +/imageHeight imageHeight imageMaxHeight sub store +/imageString imageByteWidth imageMaxHeight mul patternByteWidth add string def +0 1 imageMaxHeight 1 sub { +/y exch def +/patternRow y patternByteWidth mul patternByteLength mod def +/patternRowString patternString patternRow patternByteWidth getinterval def +/imageRow y imageByteWidth mul def +0 patternByteWidth imageByteWidth 1 sub { +/x exch def +imageString imageRow x add patternRowString putinterval +} for +} for +imageString +end +} dup 0 12 dict put def + +/min { +dup 3 2 roll dup 4 3 roll lt { exch } if pop +} def + +/max { +dup 3 2 roll dup 4 3 roll gt { exch } if pop +} def + +/midpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 x1 add 2 div +y0 y1 add 2 div +end +} dup 0 4 dict put def + +/thirdpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 2 mul x1 add 3 div +y0 2 mul y1 add 3 div +end +} dup 0 4 dict put def + +/subspline { +0 begin +/movetoNeeded exch def +y exch get /y3 exch def +x exch get /x3 exch def +y exch get /y2 exch def +x exch get /x2 exch def +y exch get /y1 exch def +x exch get /x1 exch def +y exch get /y0 exch def +x exch get /x0 exch def +x1 y1 x2 y2 thirdpoint +/p1y exch def +/p1x exch def +x2 y2 x1 y1 thirdpoint +/p2y exch def +/p2x exch def +x1 y1 x0 y0 thirdpoint +p1x p1y midpoint +/p0y exch def +/p0x exch def +x2 y2 x3 y3 thirdpoint +p2x p2y midpoint +/p3y exch def +/p3x exch def +movetoNeeded { p0x p0y moveto } if +p1x p1y p2x p2y p3x p3y curveto +end +} dup 0 17 dict put def + +/storexyn { +/n exch def +/y n array def +/x n array def +n 1 sub -1 0 { +/i exch def +y i 3 2 roll put +x i 3 2 roll put +} for +} def + +/SSten { +fgred fggreen fgblue setrgbcolor +dup true exch 1 0 0 -1 0 6 -1 roll matrix astore +} def + +/FSten { +dup 3 -1 roll dup 4 1 roll exch +newpath +0 0 moveto +dup 0 exch lineto +exch dup 3 1 roll exch lineto +0 lineto +closepath +bgred bggreen bgblue setrgbcolor +eofill +SSten +} def + +/Rast { +exch dup 3 1 roll 1 0 0 -1 0 6 -1 roll matrix astore +} def + + +/arrowhead { +0 begin +transform originalCTM itransform +/taily exch def +/tailx exch def +transform originalCTM itransform +/tipy exch def +/tipx exch def +/dy tipy taily sub def +/dx tipx tailx sub def +/angle dx 0 ne dy 0 ne or { dy dx atan } { 90 } ifelse def +gsave +originalCTM setmatrix +tipx tipy translate +angle rotate +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +patternNone not { +originalCTM setmatrix +/padtip arrowHeight 2 exp 0.25 arrowWidth 2 exp mul add sqrt brushWidth mul +arrowWidth div def +/padtail brushWidth 2 div def +tipx tipy translate +angle rotate +padtip 0 translate +arrowHeight padtip add padtail add arrowHeight div dup scale +arrowheadpath +ifill +} if +brushNone not { +originalCTM setmatrix +tipx tipy translate +angle rotate +arrowheadpath +istroke +} if +grestore +end +} dup 0 9 dict put def + +/arrowheadpath { +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +} def + +/leftarrow { +0 begin +y exch get /taily exch def +x exch get /tailx exch def +y exch get /tipy exch def +x exch get /tipx exch def +brushLeftArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + +/rightarrow { +0 begin +y exch get /tipy exch def +x exch get /tipx exch def +y exch get /taily exch def +x exch get /tailx exch def +brushRightArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + + +%I Idraw 10 Grid 4.98316 4.98316 + + +Begin +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 0.799705 0 0 0.799705 0 0 ] concat +/originalCTM matrix currentmatrix def + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -30 -210 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 130 -210 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 209 -210 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -110 -314 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 50 -314 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 209 -314 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 289 -314 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t u + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t u + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -70 -105 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -98 28 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -160 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t u + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 -105 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 28 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 0 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t u + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 249 -105 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 221 -12 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 159 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 23 -222 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -138 -222 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 261 -182 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t u + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -110 -210 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 89 156 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -40 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -70 -105 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -98 28 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -160 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +End %I eop + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 40 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -70 -105 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -98 28 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -160 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 40 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 -105 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 28 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 0 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -40 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 249 -105 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 221 -12 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 159 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 149 115 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t u + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 50 -210 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -40 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 -105 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 28 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 0 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 229 155 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 309 115 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 388 155 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t u + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 289 -210 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 40 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 249 -105 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 221 -12 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 159 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 488 155 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 118 226 ] concat +%I +106 227 166 227 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 118 226 ] concat +%I +266 227 326 227 Line +%I 1 +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 0 -104 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -110 -210 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 89 156 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -40 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -70 -105 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -98 28 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -160 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +End %I eop + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 0 -104 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 50 -210 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -40 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 -105 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 28 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 0 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 229 155 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -8 -112 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 217 -202 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -32 -97 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 249 -105 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 221 -12 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 159 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 396 163 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 0 -104 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 289 -210 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 40 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 249 -105 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 221 -12 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 159 -105 ] concat + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 0 ] concat + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 483 100 433 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +100 433 100 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +120 483 120 423 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 463 140 463 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +80 443 140 443 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 290 326 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 83 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 62 113 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 325 ] concat +%I +105 338 8 7 Elli +End + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 248 345 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +End %I eop + +Begin %I Elli +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 488 155 ] concat +%I +105 338 8 7 Elli +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 201 -182 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +145 348 130 333 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 144 230 ] concat +%I +160 348 175 333 Line +%I 1 +End + +End %I eop + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 118 226 ] concat +%I +56 173 56 113 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 222 226 ] concat +%I +351 173 351 113 Line +%I 1 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-bold-r-normal-*-14-*-*-*-*-*-*-* +Helvetica-Bold 14 SetF +%I t +[ 1 0 0 1 169 332 ] concat +%I +[ +(1) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-bold-r-normal-*-14-*-*-*-*-*-*-* +Helvetica-Bold 14 SetF +%I t +[ 1 0 0 1 249 437 ] concat +%I +[ +(-1) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-bold-r-normal-*-14-*-*-*-*-*-*-* +Helvetica-Bold 14 SetF +%I t +[ 1 0 0 1 329 332 ] concat +%I +[ +(0) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-bold-r-normal-*-14-*-*-*-*-*-*-* +Helvetica-Bold 14 SetF +%I t +[ 1 0 0 1 409 437 ] concat +%I +[ +(-1) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-bold-r-normal-*-14-*-*-*-*-*-*-* +Helvetica-Bold 14 SetF +%I t +[ 1 0 0 1 488 332 ] concat +%I +[ +(0) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-bold-r-normal-*-14-*-*-*-*-*-*-* +Helvetica-Bold 14 SetF +%I t +[ 1 0 0 1 568 332 ] concat +%I +[ +(1) +] Text +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +160 189 160 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +3 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +319 189 319 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +399 189 399 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 230 ] concat +%I +52 189 52 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 230 ] concat +%I +52 278 62 293 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 230 ] concat +%I +122 293 132 278 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 230 ] concat +%I +282 293 292 278 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 230 ] concat +%I +212 278 222 293 Line +%I 1 +End + +Begin %I Line +%I b 65535 +3 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 230 ] concat +%I +381 293 371 278 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 226 230 ] concat +%I +337 293 347 278 Line +%I 1 +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 226 230 ] concat +%I +148 398 148 383 Line +%I 1 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-bold-r-normal-*-14-*-*-*-*-*-*-* +Helvetica-Bold 14 SetF +%I t +[ 1 0 0 1 169 437 ] concat +%I +[ +(1) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-bold-r-normal-*-14-*-*-*-*-*-*-* +Helvetica-Bold 14 SetF +%I t +[ 1 0 0 1 164 541 ] concat +%I +[ +(min\(1,-1\) = -1) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-bold-r-normal-*-14-*-*-*-*-*-*-* +Helvetica-Bold 14 SetF +%I t +[ 1 0 0 1 329 437 ] concat +%I +[ +(0) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-bold-r-normal-*-14-*-*-*-*-*-*-* +Helvetica-Bold 14 SetF +%I t +[ 1 0 0 1 488 437 ] concat +%I +[ +(0) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-bold-r-normal-*-14-*-*-*-*-*-*-* +Helvetica-Bold 14 SetF +%I t +[ 1 0 0 1 568 437 ] concat +%I +[ +(1) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-bold-r-normal-*-14-*-*-*-*-*-*-* +Helvetica-Bold 14 SetF +%I t +[ 1 0 0 1 493 541 ] concat +%I +[ +(min\(0,1\) = 0) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-bold-r-normal-*-14-*-*-*-*-*-*-* +Helvetica-Bold 14 SetF +%I t +[ 1 0 0 1 324 541 ] concat +%I +[ +(min\(0,-1\) = -1) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-bold-r-normal-*-14-*-*-*-*-*-*-* +Helvetica-Bold 14 SetF +%I t +[ 1 0 0 1 314 646 ] concat +%I +[ +(max\(-1,-1,0\) = 0) +] Text +End + +Begin %I Line +%I b 65535 +0 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +40 383 135 408 Line +%I 1 +End + +Begin %I Line +%I b 65535 +3 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +255 408 359 383 Line +%I 1 +End + +End %I eop + +showpage + + +end +%%EndDocument + + endTexFig + 286 691 a Fk(Figure)14 b(1:)j(\(a\))d(Tic-T)m(ac-T)m(o)q(e)f(Game-T)m +(ree,)g(\(b\))h(Game-T)m(ree)f(with)g(Minimax)e(V)m(alues)0 +826 y(successors)17 b(to)e(the)g(p)q(osition)e(at)i(ply)e(0,)h(and)h +(so)f(on.)19 b(A)o(t)c(the)g Fi(terminal)g(p)n(ositions)f +Fk(in)g(the)h(game-tree,)f(the)h(game)e(is)h(o)o(v)o(er)0 +876 y(and)f(a)h(v)n(alue)f(is)g(used)i(to)e(represen)o(t)j(the)e +(outcome)f(of)g(the)h(game.)j(F)m(or)c(example,)f(a)h(win)h(for)f(the)h +(pla)o(y)o(er)f(to)h(mo)o(v)o(e)e(w)o(ould)0 926 y(b)q(e)j(represen)o +(ted)i(as)d(1,)f(a)h(loss)g(as)g(-1,)f(and)h(a)g(dra)o(w)g(as)g(0.)19 +b(The)14 b(left)g(hand)g(tree)h(in)f(Figure)g(1)g(sho)o(ws)g(a)g(t)o +(ypical)f(game-tree)0 976 y(for)h(the)g(game)e(of)i(Tic-T)m(ac-T)m(o)q +(e.)62 1025 y(The)22 b(game-tree)e(represen)o(tation)i(allo)o(ws)e(us)h +(to)g(de\014ne)h(a)e(recursiv)o(e)i(depth-\014rst)h(tree)f(searc)o +(hing)f(algorithm)d(to)0 1075 y(determine)i(the)h Fi(minimax)f(value)g +Fk(of)g(eac)o(h)g(no)q(de)h(in)e(the)i(game-tree.)36 +b(The)20 b(minimax)c(v)n(alue)k(of)f(a)h(no)q(de)g(represen)o(ts)0 +1125 y(the)e(exp)q(ected)i(outcome)d(of)g(that)h(p)q(osition,)f(giv)o +(en)h(b)q(est)g(pla)o(y)f(b)o(y)h(b)q(oth)f(sides.)31 +b(The)18 b Fi(minimax)g(algorithm)f Fk(w)o(orks)h(b)o(y)0 +1175 y(searc)o(hing)c(the)g(tree)g(in)f(a)g(depth-\014rst)i(manner.)i +(W)m(e)c(tak)o(e)g(the)h(minim)n(um)9 b(of)j(all)h(the)g(v)n(alues)g +(for)g(successor)j(p)q(ositions)d(at)0 1225 y(o)q(dd-n)o(um)o(b)q(ered) +h(plies)g(in)g(the)h(tree,)g(since)g(this)g(is)f(where)h(the)g(opp)q +(onen)o(t)g(mo)o(v)o(es.)j(Con)o(v)o(ersely)m(,)13 b(w)o(e)i(tak)o(e)f +(the)h(maxim)n(um)0 1275 y(of)i(the)g(v)n(alues)g(of)g(successor)i(p)q +(ositions)e(at)g(ev)o(en-n)o(um)o(b)q(ered)h(plies)f(within)f(the)i +(game-tree.)28 b(The)17 b(righ)o(t)g(hand)g(tree)h(in)0 +1324 y(Figure)c(1)g(sho)o(ws)g(an)f(example)g(of)g(ho)o(w)h(to)g(deriv) +o(e)g(the)g(minima)o(x)d(v)n(alues)j(of)f(eac)o(h)h(no)q(de)h(in)e(the) +i(game-tree.)62 1374 y(A)f Fi(princip)n(al)f(variation)h +Fk(through)f(a)g(game-tree)g(is)g(a)g(series)i(of)d(mo)o(v)o(es)g(that) +i(yield)f(optimal)d(scores)15 b(for)e(b)q(oth)g(pla)o(y)o(ers.)0 +1424 y(F)m(or)k(example,)f(there)j(is)e(only)f(one)i(principal)e(v)n +(ariation)g(in)g(the)i(game)e(tree)i(giv)o(en)f(in)g(Figure)g(1,)g(sho) +o(wn)h(in)e(b)q(old.)28 b(In)0 1474 y(general,)15 b(once)h(the)g(tree)h +(is)e(completely)f(searc)o(hed,)j(an)e(\\optimal")d(mo)o(v)o(e)h(w)o +(ould)i(b)q(e)h(the)g(\014rst)g(mo)o(v)o(e)d(from)h(a)h(principal)0 +1524 y(v)n(ariation.)62 1573 y(F)m(or)d(games)f(suc)o(h)i(as)g(c)o +(hess,)g(some)f(game-trees)g(are)h(so)f(large,)g(the)h(determination)e +(of)g(a)h(minima)o(x)e(v)n(alue)h(for)h(the)h(ro)q(ot)0 +1623 y(is)h(e\013ectiv)o(ely)g(in)o(tractable.)k(Th)o(us,)c(a)g +(heuristic)g Fi(evaluation)i(function)e Fk(is)g(normally)d(used)k(to)f +(estimate)f(the)h(p)q(oten)o(tial)g(of)0 1673 y(winning)h(from)f(a)i(p) +q(osition)g(at)g(a)g(\014xed)g(ply)g(in)g(the)g(game-tree.)25 +b(These)17 b(are)g(the)g Fi(le)n(af)f(no)n(des)h Fk(of)f(the)g +(truncated)i(searc)o(h)0 1723 y(tree,)d(and)e(this)h(limit)d(is)j +(called)g(the)g Fi(horizon)g Fk(of)g(the)g(game-tree.)62 +1773 y(The)f Fi(alpha-b)n(eta)h Fk(\()p Fj(\013\014)r +Fk(\))f(algorithm)d(impro)o(v)o(es)h(the)j(minim)o(ax)c(algorithm)g(b)o +(y)i(prev)o(en)o(ting)h(exploration)f(of)g(mo)o(v)o(es)g(that)0 +1822 y(can)j(pro)o(v)n(ably)e(b)q(e)j(demonstrated)f(not)f(to)h +(a\013ect)h(the)f(minim)o(ax)d(v)n(alue)i(ab)q(o)o(v)o(e)g(the)i(giv)o +(en)e(no)q(de.)21 b(The)15 b(name)f(is)g(deriv)o(ed)0 +1872 y(from)f(the)i(t)o(w)o(o)f(b)q(ounds:)20 b Fj(\013)14 +b Fk(and)g Fj(\014)r Fk(,)h(whic)o(h)g(are)g(lo)o(w)o(er)f(and)g(upp)q +(er)i(b)q(ounds)f(on)f(the)h(minim)o(ax)d(v)n(alue)i(w)o(e)g(are)h(in)o +(terested)0 1922 y(in.)22 b(The)16 b(pair)f(of)g(b)q(ounds)h(is)g +(often)f(referred)j(to)d(as)h(the)g Fi(se)n(ar)n(ch)g(window)f +Fk(for)g(a)g(p)q(osition,)g(and)h(the)g Fj(\013\014)i +Fk(algorithm)12 b(will)0 1972 y(return)j(the)g(correct)g(minim)o(ax)c +(v)n(alue)i(if)g(the)i(ro)q(ot)f(is)f(searc)o(hed)j(with)d(the)i(windo) +o(w)e Fj(\013)e Fk(=)h Fh(\0001)i Fk(and)f Fj(\014)i +Fk(=)c(+)p Fh(1)p Fk(.)62 2022 y(An)17 b(example)e(of)h(ho)o(w)g(the)i +Fj(\013\014)h Fk(algorithm)13 b(w)o(ould)j(prune)i(a)e(tree)i(is)e(giv) +o(en)g(in)h(Figure)f(2.)26 b(W)m(e)16 b(kno)o(w)g(that)h(the)g(left)0 +2072 y(subtree)e(has)f(a)f(minim)o(ax)d(v)n(alue)j(of)g(4,)g(so)g(w)o +(e)h(set)g Fj(\013)d Fk(=)h(4)h(b)q(efore)i(w)o(e)e(searc)o(h)i(the)f +(righ)o(t)f(subtree.)20 b(Note)13 b(that)h(w)o(e)g(set)g +Fj(\013)f Fk(at)0 2121 y(ev)o(en)i(ply)m(,)f(and)g Fj(\014)j +Fk(at)e(o)q(dd)f(ply)h(from)d(the)k(ro)q(ot.)k(After)15 +b(lo)q(oking)e(at)i(the)g(\014rst)g(leaf)f(of)g(the)i(righ)o(t)e +(subtree,)i(w)o(e)f(kno)o(w)f(that)0 2171 y(the)g(minim)o(ax)c(v)n +(alue)i(of)g(the)i(righ)o(t)e(subtree)j(will)d(b)q(e)h(less)h(than)f +(1.)k(Since)d Fj(\013)d Fk(=)h(4,)g(w)o(e)i(do)e(not)h(searc)o(h)h(the) +g(other)g(mo)o(v)o(es)d(in)0 2221 y(the)j(righ)o(t)g(subtree.)62 +2271 y(If)j(w)o(e)g(searc)o(h)h(a)f(tree)h(of)e(depth)i +Fj(d)f Fk(whic)o(h)f(has)i Fj(w)f Fk(mo)o(v)o(es)f(from)f(an)o(y)i(p)q +(osition,)f(there)i(are)g(\002\()p Fj(w)1624 2256 y Fc(d)1643 +2271 y Fk(\))g(no)q(des)f(searc)o(hed)0 2321 y(with)d(the)h(minim)o(ax) +c(algorithm.)17 b(Ho)o(w)o(ev)o(er,)d(if)f(a)h(\\b)q(est")h(mo)o(v)o(e) +e(is)h(alw)o(a)o(ys)f(searc)o(hed)j(\014rst,)f Fj(\013\014)h +Fk(can)f(reduce)h(this)e(size)h(to)0 2370 y(\002\()p +Fj(w)79 2355 y Fc(d=)p Fe(2)132 2370 y Fk(\))g([13)o(].)k(The)c +(structure)i(of)d(the)h Fi(critic)n(al)f(tr)n(e)n(e)g +Fk(ev)n(aluated)g(in)g(the)i(optimal)11 b(case)1413 2355 +y Fe(2)1446 2370 y Fk(is)k(illustrated)f(in)g(in)g(Figure)h(3.)0 +2420 y(A)o(t)f Fb(ALL)g Fk(and)g Fb(PV)f Fk(\(Principal)h(V)m +(ariation\))f(no)q(des,)h(all)f(c)o(hildren)i(are)f(searc)o(hed,)i +(while)d(only)h(one)g(c)o(hild)g(of)f(eac)o(h)i Fb(CUT)f +Fk(no)q(de)0 2470 y(is)g(searc)o(hed.)19 b(Note)c(that)f(in)f +(practice,)i(y)o(ou)e(are)h(nev)o(er)h(certain)g(of)e(the)h(no)q(de's)h +(t)o(yp)q(e)f Fi(a)h(priori)p Fk(.)62 2520 y(If)d(a)f(p)q(osition)h(o)q +(ccurs)h(t)o(wice)f(within)f(the)i(tree,)g(w)o(e)f(can)g(sa)o(v)o(e)g +(the)h(w)o(ork)f(of)f(exploring)g(the)i(tree)g(underneath)g(the)g(no)q +(de)0 2570 y(through)f(the)h(use)g(of)e(a)h(large)g(hash)g(table)g +(whic)o(h)g(stores)h(previously)f(ev)n(aluated)g(p)q(ositions)g(and)g +(scores.)19 b(This)12 b(hash)g(table)p 0 2604 780 2 v +46 2631 a Fd(2)64 2643 y Fg(The)e(critical)e(tree)i(is)g(not)g +(necessarily)e(the)h(smallest)g(tree)g(that)h(can)f(b)q(e)h(searc)o +(hed)e(in)i(practice,)f(since)g(transp)q(osition)o(s)f(are)i(not)f(tak) +o(en)g(in)o(to)0 2682 y(accoun)o(t)g([21)o(].)965 2790 +y Fk(3)p eop +%%Page: 4 6 +4 5 bop 543 0 a + 13640505 7104430 9341009 26641612 30851645 37824512 startTexFig + 543 0 a +%%BeginDocument: candid23.ps + +/arrowHeight 10 def +/arrowWidth 5 def + +/IdrawDict 52 dict def +IdrawDict begin + +/reencodeISO { +dup dup findfont dup length dict begin +{ 1 index /FID ne { def }{ pop pop } ifelse } forall +/Encoding ISOLatin1Encoding def +currentdict end definefont +} def + +/ISOLatin1Encoding [ +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright +/parenleft/parenright/asterisk/plus/comma/minus/period/slash +/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon +/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N +/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright +/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m +/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/dotlessi/grave/acute/circumflex/tilde/macron/breve +/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut +/ogonek/caron/space/exclamdown/cent/sterling/currency/yen/brokenbar +/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot +/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior +/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine +/guillemotright/onequarter/onehalf/threequarters/questiondown +/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla +/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex +/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis +/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute +/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis +/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave +/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex +/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis +/yacute/thorn/ydieresis +] def +/Helvetica reencodeISO def +/Helvetica-Bold reencodeISO def + +/none null def +/numGraphicParameters 17 def +/stringLimit 65535 def + +/Begin { +save +numGraphicParameters dict begin +} def + +/End { +end +restore +} def + +/SetB { +dup type /nulltype eq { +pop +false /brushRightArrow idef +false /brushLeftArrow idef +true /brushNone idef +} { +/brushDashOffset idef +/brushDashArray idef +0 ne /brushRightArrow idef +0 ne /brushLeftArrow idef +/brushWidth idef +false /brushNone idef +} ifelse +} def + +/SetCFg { +/fgblue idef +/fggreen idef +/fgred idef +} def + +/SetCBg { +/bgblue idef +/bggreen idef +/bgred idef +} def + +/SetF { +/printSize idef +/printFont idef +} def + +/SetP { +dup type /nulltype eq { +pop true /patternNone idef +} { +dup -1 eq { +/patternGrayLevel idef +/patternString idef +} { +/patternGrayLevel idef +} ifelse +false /patternNone idef +} ifelse +} def + +/BSpl { +0 begin +storexyn +newpath +n 1 gt { +0 0 0 0 0 0 1 1 true subspline +n 2 gt { +0 0 0 0 1 1 2 2 false subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 2 copy false subspline +} if +n 2 sub dup n 1 sub dup 2 copy 2 copy false subspline +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Circ { +newpath +0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/CBSpl { +0 begin +dup 2 gt { +storexyn +newpath +n 1 sub dup 0 0 1 1 2 2 true subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 0 0 false subspline +n 2 sub dup n 1 sub dup 0 0 1 1 false subspline +patternNone not { ifill } if +brushNone not { istroke } if +} { +Poly +} ifelse +end +} dup 0 4 dict put def + +/Elli { +0 begin +newpath +4 2 roll +translate +scale +0 0 1 0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 1 dict put def + +/Line { +0 begin +2 storexyn +newpath +x 0 get y 0 get moveto +x 1 get y 1 get lineto +brushNone not { istroke } if +0 0 1 1 leftarrow +0 0 1 1 rightarrow +end +} dup 0 4 dict put def + +/MLine { +0 begin +storexyn +newpath +n 1 gt { +x 0 get y 0 get moveto +1 1 n 1 sub { +/i exch def +x i get y i get lineto +} for +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Poly { +3 1 roll +newpath +moveto +-1 add +{ lineto } repeat +closepath +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/Rect { +0 begin +/t exch def +/r exch def +/b exch def +/l exch def +newpath +l b moveto +l t lineto +r t lineto +r b lineto +closepath +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 4 dict put def + +/Text { +ishow +} def + +/idef { +dup where { pop pop pop } { exch def } ifelse +} def + +/ifill { +0 begin +gsave +patternGrayLevel -1 ne { +fgred bgred fgred sub patternGrayLevel mul add +fggreen bggreen fggreen sub patternGrayLevel mul add +fgblue bgblue fgblue sub patternGrayLevel mul add setrgbcolor +eofill +} { +eoclip +originalCTM setmatrix +pathbbox /t exch def /r exch def /b exch def /l exch def +/w r l sub ceiling cvi def +/h t b sub ceiling cvi def +/imageByteWidth w 8 div ceiling cvi def +/imageHeight h def +bgred bggreen bgblue setrgbcolor +eofill +fgred fggreen fgblue setrgbcolor +w 0 gt h 0 gt and { +l b translate w h scale +w h true [w 0 0 h neg 0 h] { patternproc } imagemask +} if +} ifelse +grestore +end +} dup 0 8 dict put def + +/istroke { +gsave +brushDashOffset -1 eq { +[] 0 setdash +1 setgray +} { +brushDashArray brushDashOffset setdash +fgred fggreen fgblue setrgbcolor +} ifelse +brushWidth setlinewidth +originalCTM setmatrix +stroke +grestore +} def + +/ishow { +0 begin +gsave +fgred fggreen fgblue setrgbcolor +/fontDict printFont printSize scalefont dup setfont def +/descender fontDict begin 0 [FontBBox] 1 get FontMatrix end +transform exch pop def +/vertoffset 1 printSize sub descender sub def { +0 vertoffset moveto show +/vertoffset vertoffset printSize sub def +} forall +grestore +end +} dup 0 3 dict put def +/patternproc { +0 begin +/patternByteLength patternString length def +/patternHeight patternByteLength 8 mul sqrt cvi def +/patternWidth patternHeight def +/patternByteWidth patternWidth 8 idiv def +/imageByteMaxLength imageByteWidth imageHeight mul +stringLimit patternByteWidth sub min def +/imageMaxHeight imageByteMaxLength imageByteWidth idiv patternHeight idiv +patternHeight mul patternHeight max def +/imageHeight imageHeight imageMaxHeight sub store +/imageString imageByteWidth imageMaxHeight mul patternByteWidth add string def +0 1 imageMaxHeight 1 sub { +/y exch def +/patternRow y patternByteWidth mul patternByteLength mod def +/patternRowString patternString patternRow patternByteWidth getinterval def +/imageRow y imageByteWidth mul def +0 patternByteWidth imageByteWidth 1 sub { +/x exch def +imageString imageRow x add patternRowString putinterval +} for +} for +imageString +end +} dup 0 12 dict put def + +/min { +dup 3 2 roll dup 4 3 roll lt { exch } if pop +} def + +/max { +dup 3 2 roll dup 4 3 roll gt { exch } if pop +} def + +/midpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 x1 add 2 div +y0 y1 add 2 div +end +} dup 0 4 dict put def + +/thirdpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 2 mul x1 add 3 div +y0 2 mul y1 add 3 div +end +} dup 0 4 dict put def + +/subspline { +0 begin +/movetoNeeded exch def +y exch get /y3 exch def +x exch get /x3 exch def +y exch get /y2 exch def +x exch get /x2 exch def +y exch get /y1 exch def +x exch get /x1 exch def +y exch get /y0 exch def +x exch get /x0 exch def +x1 y1 x2 y2 thirdpoint +/p1y exch def +/p1x exch def +x2 y2 x1 y1 thirdpoint +/p2y exch def +/p2x exch def +x1 y1 x0 y0 thirdpoint +p1x p1y midpoint +/p0y exch def +/p0x exch def +x2 y2 x3 y3 thirdpoint +p2x p2y midpoint +/p3y exch def +/p3x exch def +movetoNeeded { p0x p0y moveto } if +p1x p1y p2x p2y p3x p3y curveto +end +} dup 0 17 dict put def + +/storexyn { +/n exch def +/y n array def +/x n array def +n 1 sub -1 0 { +/i exch def +y i 3 2 roll put +x i 3 2 roll put +} for +} def + +/SSten { +fgred fggreen fgblue setrgbcolor +dup true exch 1 0 0 -1 0 6 -1 roll matrix astore +} def + +/FSten { +dup 3 -1 roll dup 4 1 roll exch +newpath +0 0 moveto +dup 0 exch lineto +exch dup 3 1 roll exch lineto +0 lineto +closepath +bgred bggreen bgblue setrgbcolor +eofill +SSten +} def + +/Rast { +exch dup 3 1 roll 1 0 0 -1 0 6 -1 roll matrix astore +} def + + +/arrowhead { +0 begin +transform originalCTM itransform +/taily exch def +/tailx exch def +transform originalCTM itransform +/tipy exch def +/tipx exch def +/dy tipy taily sub def +/dx tipx tailx sub def +/angle dx 0 ne dy 0 ne or { dy dx atan } { 90 } ifelse def +gsave +originalCTM setmatrix +tipx tipy translate +angle rotate +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +patternNone not { +originalCTM setmatrix +/padtip arrowHeight 2 exp 0.25 arrowWidth 2 exp mul add sqrt brushWidth mul +arrowWidth div def +/padtail brushWidth 2 div def +tipx tipy translate +angle rotate +padtip 0 translate +arrowHeight padtip add padtail add arrowHeight div dup scale +arrowheadpath +ifill +} if +brushNone not { +originalCTM setmatrix +tipx tipy translate +angle rotate +arrowheadpath +istroke +} if +grestore +end +} dup 0 9 dict put def + +/arrowheadpath { +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +} def + +/leftarrow { +0 begin +y exch get /taily exch def +x exch get /tailx exch def +y exch get /tipy exch def +x exch get /tipx exch def +brushLeftArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + +/rightarrow { +0 begin +y exch get /tipy exch def +x exch get /tipx exch def +y exch get /taily exch def +x exch get /tailx exch def +brushRightArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + + +%I Idraw 10 Grid 2.49158 2.49158 + + +Begin +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 0.799705 0 0 0.799705 0 0 ] concat +/originalCTM matrix currentmatrix def + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +65 368 20 293 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +65 368 65 293 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +65 368 110 293 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 85 230 ] concat +%I +304 368 260 293 Line +%I 1 +End + +Begin %I Line +%I b 65520 +1 0 0 [12 4] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 85 230 ] concat +%I +304 368 304 293 Line +%I 1 +End + +Begin %I Line +%I b 65520 +1 0 0 [12 4] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 85 230 ] concat +%I +304 368 349 293 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +65 368 140 443 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +140 443 215 368 Line +%I 1 +End + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +20 293 15 15 Elli +End + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +65 293 15 15 Elli +End + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +110 293 15 15 Elli +End + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +170 293 15 15 Elli +End + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +215 293 15 15 Elli +End + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +260 293 14 15 Elli +End + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +65 368 15 15 Elli +End + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +215 368 15 15 Elli +End + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +140 443 15 15 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 237 601 ] concat +%I +[ +(4) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 192 526 ] concat +%I +[ +(4) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 236 526 ] concat +%I +[ +(5) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 282 527 ] concat +%I +[ +(6) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 341 526 ] concat +%I +[ +(1) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 388 527 ] concat +%I +[ +(7) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 423 527 ] concat +%I +[ +(-12) +] Text +End + +Begin %I Line +%I b 65520 +1 0 0 [12 4] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 122 228 ] concat +%I +272 480 326 480 Line +%I 1 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-bold-r-normal-*-14-*-*-*-*-*-*-* +Helvetica-Bold 14 SetF +%I t +[ 1 0 0 1 199 651 ] concat +%I +[ +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-bold-r-normal-*-14-*-*-*-*-*-*-* +Helvetica-Bold 14 SetF +%I t +[ 1 0 0 1 359 653 ] concat +%I +[ +(alpha = 4) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 379 603 ] concat +%I +[ +(1<4) +] Text +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 122 230 ] concat +%I +257 328 297 338 Line +%I 1 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-bold-r-normal-*-14-*-*-*-*-*-*-* +Helvetica-Bold 14 SetF +%I t +[ 1 0 0 1 458 716 ] concat +%I +[ +(These branches) +(are never explored) +] Text +End + +End %I eop + +showpage + + +end +%%EndDocument + + endTexFig + 648 541 a Fk(Figure)14 b(2:)k(Example)12 b(of)i(an)f +Fj(\013\014)k Fk(Cut-o\013)637 599 y + 10656645 7104430 5130977 18813583 31443681 36245749 startTexFig + 637 599 a +%%BeginDocument: candid24.ps + +/arrowHeight 10 def +/arrowWidth 5 def + +/IdrawDict 51 dict def +IdrawDict begin + +/reencodeISO { +dup dup findfont dup length dict begin +{ 1 index /FID ne { def }{ pop pop } ifelse } forall +/Encoding ISOLatin1Encoding def +currentdict end definefont +} def + +/ISOLatin1Encoding [ +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright +/parenleft/parenright/asterisk/plus/comma/minus/period/slash +/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon +/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N +/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright +/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m +/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/dotlessi/grave/acute/circumflex/tilde/macron/breve +/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut +/ogonek/caron/space/exclamdown/cent/sterling/currency/yen/brokenbar +/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot +/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior +/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine +/guillemotright/onequarter/onehalf/threequarters/questiondown +/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla +/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex +/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis +/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute +/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis +/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave +/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex +/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis +/yacute/thorn/ydieresis +] def +/Helvetica reencodeISO def + +/none null def +/numGraphicParameters 17 def +/stringLimit 65535 def + +/Begin { +save +numGraphicParameters dict begin +} def + +/End { +end +restore +} def + +/SetB { +dup type /nulltype eq { +pop +false /brushRightArrow idef +false /brushLeftArrow idef +true /brushNone idef +} { +/brushDashOffset idef +/brushDashArray idef +0 ne /brushRightArrow idef +0 ne /brushLeftArrow idef +/brushWidth idef +false /brushNone idef +} ifelse +} def + +/SetCFg { +/fgblue idef +/fggreen idef +/fgred idef +} def + +/SetCBg { +/bgblue idef +/bggreen idef +/bgred idef +} def + +/SetF { +/printSize idef +/printFont idef +} def + +/SetP { +dup type /nulltype eq { +pop true /patternNone idef +} { +dup -1 eq { +/patternGrayLevel idef +/patternString idef +} { +/patternGrayLevel idef +} ifelse +false /patternNone idef +} ifelse +} def + +/BSpl { +0 begin +storexyn +newpath +n 1 gt { +0 0 0 0 0 0 1 1 true subspline +n 2 gt { +0 0 0 0 1 1 2 2 false subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 2 copy false subspline +} if +n 2 sub dup n 1 sub dup 2 copy 2 copy false subspline +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Circ { +newpath +0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/CBSpl { +0 begin +dup 2 gt { +storexyn +newpath +n 1 sub dup 0 0 1 1 2 2 true subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 0 0 false subspline +n 2 sub dup n 1 sub dup 0 0 1 1 false subspline +patternNone not { ifill } if +brushNone not { istroke } if +} { +Poly +} ifelse +end +} dup 0 4 dict put def + +/Elli { +0 begin +newpath +4 2 roll +translate +scale +0 0 1 0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 1 dict put def + +/Line { +0 begin +2 storexyn +newpath +x 0 get y 0 get moveto +x 1 get y 1 get lineto +brushNone not { istroke } if +0 0 1 1 leftarrow +0 0 1 1 rightarrow +end +} dup 0 4 dict put def + +/MLine { +0 begin +storexyn +newpath +n 1 gt { +x 0 get y 0 get moveto +1 1 n 1 sub { +/i exch def +x i get y i get lineto +} for +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Poly { +3 1 roll +newpath +moveto +-1 add +{ lineto } repeat +closepath +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/Rect { +0 begin +/t exch def +/r exch def +/b exch def +/l exch def +newpath +l b moveto +l t lineto +r t lineto +r b lineto +closepath +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 4 dict put def + +/Text { +ishow +} def + +/idef { +dup where { pop pop pop } { exch def } ifelse +} def + +/ifill { +0 begin +gsave +patternGrayLevel -1 ne { +fgred bgred fgred sub patternGrayLevel mul add +fggreen bggreen fggreen sub patternGrayLevel mul add +fgblue bgblue fgblue sub patternGrayLevel mul add setrgbcolor +eofill +} { +eoclip +originalCTM setmatrix +pathbbox /t exch def /r exch def /b exch def /l exch def +/w r l sub ceiling cvi def +/h t b sub ceiling cvi def +/imageByteWidth w 8 div ceiling cvi def +/imageHeight h def +bgred bggreen bgblue setrgbcolor +eofill +fgred fggreen fgblue setrgbcolor +w 0 gt h 0 gt and { +l b translate w h scale +w h true [w 0 0 h neg 0 h] { patternproc } imagemask +} if +} ifelse +grestore +end +} dup 0 8 dict put def + +/istroke { +gsave +brushDashOffset -1 eq { +[] 0 setdash +1 setgray +} { +brushDashArray brushDashOffset setdash +fgred fggreen fgblue setrgbcolor +} ifelse +brushWidth setlinewidth +originalCTM setmatrix +stroke +grestore +} def + +/ishow { +0 begin +gsave +fgred fggreen fgblue setrgbcolor +/fontDict printFont printSize scalefont dup setfont def +/descender fontDict begin 0 [FontBBox] 1 get FontMatrix end +transform exch pop def +/vertoffset 1 printSize sub descender sub def { +0 vertoffset moveto show +/vertoffset vertoffset printSize sub def +} forall +grestore +end +} dup 0 3 dict put def +/patternproc { +0 begin +/patternByteLength patternString length def +/patternHeight patternByteLength 8 mul sqrt cvi def +/patternWidth patternHeight def +/patternByteWidth patternWidth 8 idiv def +/imageByteMaxLength imageByteWidth imageHeight mul +stringLimit patternByteWidth sub min def +/imageMaxHeight imageByteMaxLength imageByteWidth idiv patternHeight idiv +patternHeight mul patternHeight max def +/imageHeight imageHeight imageMaxHeight sub store +/imageString imageByteWidth imageMaxHeight mul patternByteWidth add string def +0 1 imageMaxHeight 1 sub { +/y exch def +/patternRow y patternByteWidth mul patternByteLength mod def +/patternRowString patternString patternRow patternByteWidth getinterval def +/imageRow y imageByteWidth mul def +0 patternByteWidth imageByteWidth 1 sub { +/x exch def +imageString imageRow x add patternRowString putinterval +} for +} for +imageString +end +} dup 0 12 dict put def + +/min { +dup 3 2 roll dup 4 3 roll lt { exch } if pop +} def + +/max { +dup 3 2 roll dup 4 3 roll gt { exch } if pop +} def + +/midpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 x1 add 2 div +y0 y1 add 2 div +end +} dup 0 4 dict put def + +/thirdpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 2 mul x1 add 3 div +y0 2 mul y1 add 3 div +end +} dup 0 4 dict put def + +/subspline { +0 begin +/movetoNeeded exch def +y exch get /y3 exch def +x exch get /x3 exch def +y exch get /y2 exch def +x exch get /x2 exch def +y exch get /y1 exch def +x exch get /x1 exch def +y exch get /y0 exch def +x exch get /x0 exch def +x1 y1 x2 y2 thirdpoint +/p1y exch def +/p1x exch def +x2 y2 x1 y1 thirdpoint +/p2y exch def +/p2x exch def +x1 y1 x0 y0 thirdpoint +p1x p1y midpoint +/p0y exch def +/p0x exch def +x2 y2 x3 y3 thirdpoint +p2x p2y midpoint +/p3y exch def +/p3x exch def +movetoNeeded { p0x p0y moveto } if +p1x p1y p2x p2y p3x p3y curveto +end +} dup 0 17 dict put def + +/storexyn { +/n exch def +/y n array def +/x n array def +n 1 sub -1 0 { +/i exch def +y i 3 2 roll put +x i 3 2 roll put +} for +} def + +/SSten { +fgred fggreen fgblue setrgbcolor +dup true exch 1 0 0 -1 0 6 -1 roll matrix astore +} def + +/FSten { +dup 3 -1 roll dup 4 1 roll exch +newpath +0 0 moveto +dup 0 exch lineto +exch dup 3 1 roll exch lineto +0 lineto +closepath +bgred bggreen bgblue setrgbcolor +eofill +SSten +} def + +/Rast { +exch dup 3 1 roll 1 0 0 -1 0 6 -1 roll matrix astore +} def + + +/arrowhead { +0 begin +transform originalCTM itransform +/taily exch def +/tailx exch def +transform originalCTM itransform +/tipy exch def +/tipx exch def +/dy tipy taily sub def +/dx tipx tailx sub def +/angle dx 0 ne dy 0 ne or { dy dx atan } { 90 } ifelse def +gsave +originalCTM setmatrix +tipx tipy translate +angle rotate +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +patternNone not { +originalCTM setmatrix +/padtip arrowHeight 2 exp 0.25 arrowWidth 2 exp mul add sqrt brushWidth mul +arrowWidth div def +/padtail brushWidth 2 div def +tipx tipy translate +angle rotate +padtip 0 translate +arrowHeight padtip add padtail add arrowHeight div dup scale +arrowheadpath +ifill +} if +brushNone not { +originalCTM setmatrix +tipx tipy translate +angle rotate +arrowheadpath +istroke +} if +grestore +end +} dup 0 9 dict put def + +/arrowheadpath { +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +} def + +/leftarrow { +0 begin +y exch get /taily exch def +x exch get /tailx exch def +y exch get /tipy exch def +x exch get /tipx exch def +brushLeftArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + +/rightarrow { +0 begin +y exch get /tipy exch def +x exch get /tipx exch def +y exch get /taily exch def +x exch get /tailx exch def +brushRightArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + + +%I Idraw 10 Grid 4.98316 4.98316 + + +Begin +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 0.799705 0 0 0.799705 0 0 ] concat +/originalCTM matrix currentmatrix def + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +200 443 200 353 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +200 443 349 353 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +200 443 50 353 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +50 353 5 263 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +50 353 110 263 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +50 353 65 263 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +109 263 65 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +109 263 109 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +109 263 154 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +169 263 199 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +214 263 244 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 174 50 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 174 65 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 174 79 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 174 57 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 174 72 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +109 174 102 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +154 174 147 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +199 174 184 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +199 174 192 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +199 174 199 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +199 174 207 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +199 174 214 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +244 174 229 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +236 129 244 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +244 174 244 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +244 174 251 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +244 174 259 129 Line +%I 1 +End + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +304 443 15 15 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 150 0 ] concat + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +139 428 169 458 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 214 676 ] concat +%I +[ +(ALL) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 0 -90 ] concat + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +139 428 169 458 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 214 676 ] concat +%I +[ +(ALL) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -45 -180 ] concat + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +139 428 169 458 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 214 676 ] concat +%I +[ +(ALL) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -89 -269 ] concat + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +139 428 169 458 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 214 676 ] concat +%I +[ +(ALL) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 46 -269 ] concat + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +139 428 169 458 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 214 676 ] concat +%I +[ +(ALL) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 -269 ] concat + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +139 428 169 458 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 214 676 ] concat +%I +[ +(ALL) +] Text +End + +End %I eop + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 85 230 ] concat +%I +304 263 274 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 85 230 ] concat +%I +304 263 319 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 85 230 ] concat +%I +304 263 364 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 189 230 ] concat +%I +304 174 349 263 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 189 230 ] concat +%I +349 263 349 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 189 230 ] concat +%I +349 263 394 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 85 230 ] concat +%I +274 174 274 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 85 230 ] concat +%I +319 174 319 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 85 230 ] concat +%I +364 174 364 136 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 85 230 ] concat +%I +364 136 364 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 241 230 ] concat +%I +252 174 252 136 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 241 230 ] concat +%I +297 174 297 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 241 230 ] concat +%I +252 136 252 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 241 230 ] concat +%I +342 174 342 129 Line +%I 1 +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 224 -269 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 443 14 15 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 124 678 ] concat +%I +[ +(CUT) +] Text +End + +End %I eop + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 226 230 ] concat +%I +148 353 163 263 Line +%I 1 +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 165 -180 ] concat + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +139 428 169 458 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 214 676 ] concat +%I +[ +(ALL) +] Text +End + +End %I eop + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 226 230 ] concat +%I +297 353 312 263 Line +%I 1 +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 314 -180 ] concat + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +139 428 169 458 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 214 676 ] concat +%I +[ +(ALL) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 89 -269 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 443 14 15 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 124 678 ] concat +%I +[ +(CUT) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 44 -269 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 443 14 15 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 124 678 ] concat +%I +[ +(CUT) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 269 -269 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 443 14 15 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 124 678 ] concat +%I +[ +(CUT) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 149 -180 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 443 14 15 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 124 678 ] concat +%I +[ +(CUT) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 104 -180 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 443 14 15 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 124 678 ] concat +%I +[ +(CUT) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 239 -90 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 443 14 15 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 124 678 ] concat +%I +[ +(CUT) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 388 -90 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 443 14 15 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 124 678 ] concat +%I +[ +(CUT) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 313 -269 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 443 14 15 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 124 678 ] concat +%I +[ +(CUT) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 358 -269 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 443 14 15 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 124 678 ] concat +%I +[ +(CUT) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 403 -269 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 443 14 15 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 124 678 ] concat +%I +[ +(CUT) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 448 -269 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 443 14 15 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 124 678 ] concat +%I +[ +(CUT) +] Text +End + +End %I eop + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 339 684 ] concat +%I +[ +(PV) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 189 594 ] concat +%I +[ +(PV) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 144 504 ] concat +%I +[ +(PV) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 100 415 ] concat +%I +[ +(PV) +] Text +End + +End %I eop + +showpage + + +end +%%EndDocument + + endTexFig + 557 1141 a Fk(Figure)d(3:)k(Structure)e(of)d(the)i(Critical)e(Game-T)m +(ree)0 1273 y(is)h(kno)o(wn)f(as)h(a)g Fi(tr)n(ansp)n(osition)g(table)p +Fk(.)62 1323 y(Most)e(comp)q(etitiv)o(e)e(game-tree)h(programs)f(use)i +Fi(iter)n(ative)f(de)n(ep)n(ening)h Fk(to)g(searc)o(h)g(the)g(tree)g +([26)o(].)17 b(After)12 b(a)f Fj(k)q Fk(-ply)f(searc)o(h,)0 +1373 y(a)i Fj(k)c Fk(+)g(1-ply)j(searc)o(h)j(is)f(executed)h(on)f(the)g +(same)f(p)q(osition.)17 b(Although)12 b(this)h(seems)g(w)o(asteful,)f +(a)h(transp)q(osition)f(table)h(and)0 1423 y(other)j(mo)o(v)o(e)d +(ordering)j(tec)o(hniques)g(can)f(often)h(pro)o(vide)f(a)g(v)o(ery)g +(accurate)i(guess)f(at)f(what)g(the)h(b)q(est)g(mo)o(v)o(e)d(is,)i(and) +g(the)0 1472 y(tree)h(searc)o(hed)h(is)e(close)g(to)g(the)h(critical)f +(tree)h(in)e(size.)23 b(Exp)q(erience)17 b(sho)o(ws)e(that)g(the)h(b)q +(ene\014ts)g(gained)f(b)o(y)g(a)f Fj(k)q Fk(-ply)h(tree)0 +1522 y(as)f(a)g(prelude)g(to)g(searc)o(hing)g(a)g Fj(k)c +Fk(+)g(1-ply)j(tree)i(out)o(w)o(eigh)e(the)h(costs)h([27)o(].)0 +1638 y Fv(2.2)56 b(P)n(arallel)18 b(Game-T)-5 b(ree)16 +b(Searc)n(h)0 1715 y Fk(The)e(idea)g(b)q(ehind)g(the)g(PV-Split)g +(algorithm)d(has)j(pro)o(v)o(en)g(to)g(b)q(e)g(a)g(fundamen)o(tal)d +(building)i(blo)q(c)o(k)g(in)h(dev)o(eloping)f(high-)0 +1765 y(p)q(erformance)i(parallel)e(game-tree)h(algorithms)f([17)o(].)20 +b(Simply)12 b(stated,)k(the)f(\014rst)g(mo)o(v)o(e)f(at)g(a)h +(principal)e(v)n(ariation)h(no)q(de)0 1815 y(m)o(ust)19 +b(b)q(e)h(completely)f(ev)n(aluated)g(b)q(efore)i(the)f(subsequen)o(t)i +(mo)o(v)o(es)c(can)i(b)q(e)g(handed)h(out)e(to)h(other)g(pro)q(cessors) +i(and)0 1864 y(ev)n(aluated)13 b(in)h(parallel.)i(P)o(arallelism)c(o)q +(ccurs)j(only)e(at)g(the)h Fb(PV)g Fk(no)q(des,)g(and)f(the)h(nature)h +(of)e(the)h(algorithm)d(ensures)16 b(that)0 1914 y(an)10 +b(accurate)i(searc)o(h)g(windo)o(w)e(is)g(determined)h(b)q(efore)g +(allo)q(cating)e(w)o(ork)i(to)f(the)h(sla)o(v)o(es)g(in)f(parallel,)g +(whic)o(h)g(reduces)j(searc)o(h)0 1964 y(o)o(v)o(erhead.)18 +b(Although)c(it)f(is)h(easy)g(to)g(con)o(trol)f(the)i(PV-Split)e +(algorithm)e(since)k(only)e(one)h Fb(PV)f Fk(no)q(de)h(can)g(b)q(e)h +(ev)n(aluated)e(in)0 2014 y(parallel)h(at)g(a)h(giv)o(en)f(momen)o(t)e +(in)i(time,)f(a)i(di\013eren)o(t)h(approac)o(h)e(is)h(needed)h(if)e(y)o +(ou)g(ha)o(v)o(e)h(more)f(pro)q(cessors)j(than)d(mo)o(v)o(es)0 +2064 y(at)g(the)g(curren)o(t)i Fb(PV)d Fk(no)q(de.)62 +2114 y(Newb)q(orn's)k(UIDP)m(ABS)f(algorithm)d([19)o(])i(w)o(as)h(the)g +(\014rst)g(attempt)f(to)h(async)o(hronously)g(start)g(the)g(next)h(lev) +o(el)e(of)g(an)0 2163 y(iterativ)o(ely)e(deep)q(ened)k(searc)o(h)e +(instead)f(of)g(sync)o(hronizing)g(at)g(the)g(ro)q(ot)g(of)g(the)h +(game-tree.)j(The)c(mo)o(v)o(es)f(from)f(the)j(ro)q(ot)0 +2213 y(p)q(osition)d(are)h(partitioned)f(among)f(the)i(pro)q(cessors,)i +(and)d(the)i(pro)q(cessors)g(searc)o(h)g(their)f(o)o(wn)g(subset)h(of)e +(the)h(mo)o(v)o(es)e(with)0 2263 y(iterativ)o(e)k(deep)q(ening.)21 +b(Eac)o(h)15 b(pro)q(cessor)h(is)f(giv)o(en)f(the)h(same)f(initial)e +(windo)o(w,)i(but)h(some)e(of)h(the)i(pro)q(cessors)g(ma)o(y)d(ha)o(v)o +(e)0 2313 y(c)o(hanged)g(their)h(windo)o(ws,)e(based)i(on)f(the)g +(searc)o(h)i(results)f(of)e(their)i(mo)o(v)o(es.)i(The)e(UIDP)m(ABS)f +(algorithm)d(then)k(com)o(bines)0 2363 y(the)f(results)h(once)g(a)e +(predetermined)h(time)f(limit)e(has)j(b)q(een)h(reac)o(hed.)k(The)c +(APHID)f(algorithm)d(uses)j(the)h(basic)f(concept)0 2412 +y(of)g(ho)o(w)h(to)f(implemen)o(t)f(async)o(hronous)i(searc)o(h)h(from) +d(UIDP)m(ABS,)i(as)g(w)o(e)g(shall)f(see)i(in)f(Section)g(3.)62 +2462 y(Hsu's)g(family)c(of)i(algorithms)f([9)o(])i(are)g(similar)e(in)i +(design)g(to)g(the)g(APHID)h(algorithm.)h(A)e(host)g(pro)q(cessor)i(is) +e(resp)q(on-)0 2512 y(sible)i(for)g(main)o(taining)d(a)k(queue)g(of)f +(critical)g(tree)i(and)e(non-critical)g(tree)h(w)o(ork)g(to)f(do)g(for) +g(a)g Fj(d)1548 2497 y Fa(0)1575 2512 y Fk(ply)g(searc)o(h)i(tree.)24 +b(The)0 2562 y(sp)q(ecial-purp)q(ose)18 b(pro)q(cessors)h(are)e(resp)q +(onsible)h(for)f(the)g Fj(d)11 b Fh(\000)g Fj(d)1023 +2547 y Fa(0)1051 2562 y Fk(ply)16 b(at)h(the)g(b)q(ottom)f(of)g(the)h +(tree,)i(b)o(y)d(con)o(tin)o(ually)f(re-)0 2612 y(questing)e(pieces)g +(of)f(w)o(ork)g(from)f(the)i(t)o(w)o(o)f(queues.)18 b(As)13 +b(the)g(w)o(ork)f(is)h(completed)e(and)i(sen)o(t)g(bac)o(k)f(to)g(the)h +(main)e(pro)q(cessor,)0 2661 y(the)j(tree)h(is)e(incremen)o(tally)f(up) +q(dated)i(up)f(from)f(the)i(leaf)f(no)q(de,)g(and)g(new)h(w)o(ork)f(is) +h(added)f(to)h(the)g(non-critical)e(tree)j(list,)965 +2790 y(4)p eop +%%Page: 5 7 +5 6 bop 0 42 a Fk(as)15 b(necessary)m(.)21 b(Hsu)15 b(has)g(not)f +(published)h(results)h(with)e(the)h(v)o(ersion)g(of)e(Deep)j(Blue)f +(that)f(pla)o(y)o(ed)g(against)g(Kasparo)o(v)g(in)0 91 +y(F)m(ebruary)i(1996.)21 b(The)16 b(sim)o(ulation)d(results)j(presen)o +(ted)i(in)d(his)g(thesis)h(predict)h(a)e(sp)q(eedup)i(of)e(350)f(on)h +(1000)g(pro)q(cessors)0 141 y(although)e(these)i(results)g(ha)o(v)o(e)f +(not)g(b)q(een)h(b)q(orne)f(out)g(in)g(practice)h([8)o(].)62 +191 y(Although)h(APHID)g(is)g(similar)d(to)j(Hsu's)g(family)d(of)i +(algorithms,)f(there)j(are)g(imp)q(ortan)o(t)d(di\013erences)k(b)q(et)o +(w)o(een)f(the)0 241 y(t)o(w)o(o)j(approac)o(hes.)37 +b(It)20 b(is)g(imp)q(ortan)o(t)f(to)h(note)g(that)g(the)h +Fj(d)986 226 y Fa(0)1017 241 y Fk(ply)f(critical)f(tree)j(is)e(only)f +(generated)i(once,)h(and)e(then)0 291 y(incremen)o(tally)12 +b(c)o(hanged)i(as)g(results)h(come)e(in)g(from)f(the)j(pro)q(cessors.) +20 b(F)m(urthermore,)13 b(although)g(iterativ)o(e)g(deep)q(ening)i(is)0 +340 y(used)f(to)g(accomplish)e(the)i Fj(d)8 b Fh(\000)g +Fj(d)520 325 y Fa(0)545 340 y Fk(ply)13 b(searc)o(h)i(on)e(the)h(sp)q +(ecialized)g(pro)q(cessors,)i(there)e(is)g(no)f(concept)i(of)e(o)o +(wnership)g(of)g(a)0 390 y(subtree)j(b)o(y)e(a)g(pro)q(cessor)i(in)d +(Hsu's)i(algorithm.)h(Hsu's)e(original)f(design)h(did)g(not)g(include)g +(a)g(concept)h(of)f(a)g(m)o(ulti-tiered)0 440 y(hierarc)o(h)o(y)e(of)e +(pro)q(cessors.)20 b(Hsu's)11 b(w)o(ork)g(priorit)o(y)g(sc)o(heme)g(is) +h(sligh)o(tly)d(di\013eren)o(t)k(than)e(the)h(one)f(implemen)o(ted)e +(in)i(APHID.)0 490 y(Finally)m(,)f(Hsu's)i(algorithm)d(giv)o(es)j(no)g +(sp)q(eculativ)o(e)g(w)o(ork)g(to)f(the)i(sp)q(ecialized)f(pro)q +(cessors)i(in)e(when)g(the)h(t)o(w)o(o)e(w)o(ork)h(queues)0 +540 y(are)i(empt)o(y)m(.)62 589 y(The)f(Y)m(oung)f(Brothers)i(W)m(ait)c +(\(YBW\))j(algorithm)d(extends)k(PV-Split)d(to)h(state)i(that)e(the)h +(other)g(mo)o(v)o(es)e(\(the)i(\\y)o(oung)0 639 y(brothers"\))19 +b(can)e(b)q(e)h(searc)o(hed)h(in)e(parallel)f(only)g(if)h(the)h +(\014rst)g(mo)o(v)o(e)e(of)g(a)h(no)q(de)h(has)g(b)q(een)g(completely)e +(searc)o(hed)j(and)0 689 y(has)e(not)f(caused)h(the)g +Fj(\013\014)i Fk(searc)o(h)f(to)e(b)q(e)h(pruned)g([5].)25 +b(Assuming)15 b(w)o(e)h(start)i(with)e(an)g(in\014nite)g(searc)o(h)i +(windo)o(w)d(at)h(the)0 739 y(ro)q(ot)f(p)q(osition,)f(this)h(is)f(alw) +o(a)o(ys)g(true)i(at)f Fb(PV)f Fk(no)q(des,)i(and)e(is)h(generally)f +(true)i(at)f Fb(ALL)f Fk(no)q(des.)22 b(Th)o(us,)15 b(there)h(are)f(m)o +(ultiple)0 789 y(p)q(oten)o(tial)d(parallel)g(no)q(des)i(at)f(an)o(y)f +(giv)o(en)g(time)g(when)h(searc)o(hing)h(the)f(tree.)19 +b(Ho)o(w)o(ev)o(er,)13 b(the)h(searc)o(h)g(is)f(still)f(sync)o +(hronized)0 839 y(in)f(the)i(same)e(w)o(a)o(y)g(that)g(PV-Split)h(is)f +(sync)o(hronized.)19 b(Un)o(til)11 b(a)g(searc)o(h)i(of)e(all)g(c)o +(hildren)h(of)f(a)h(giv)o(en)f Fb(PV)g Fk(no)q(de)h(is)g(completed,)0 +888 y(the)i(other)h(c)o(hildren)f(of)f(the)i Fb(PV)e +Fk(no)q(de's)h(paren)o(t)h(cannot)f(b)q(e)g(searc)o(hed.)62 +938 y(Although)i(the)i Fi(synchr)n(onization)g(overhe)n(ad)f +Fk(in)f(YBW)h(is)g(a)f(lot)g(smaller)f(than)i(in)f(PV-Split,)h(w)o(ork) +o(ers)g(still)f(searc)o(h)0 988 y(for)e(a)h(pro)q(cessor)h(that)f(has)g +(w)o(ork)g(to)f(do)h(\(according)g(to)f(the)i(YBW)e(criterion\))i(b)o +(y)e(sending)h(a)g(message)f(to)h(a)f(pro)q(cessor)0 +1038 y(at)f(random.)j(This)e(dynamic)d(load-balancing)h(metho)q(d,)g +(\\w)o(ork-stealing")g([14)o(],)g(is)h(e\013ectiv)o(e)i(in)e(balancing) +f(the)i(share)h(of)0 1088 y(w)o(ork)f(done)g(on)f(eac)o(h)i(pro)q +(cessor,)g(but)f(p)q(erio)q(dically)f(imp)q(oses)g(a)h(hea)o(vy)g(comm) +o(unicati)o(on)d(load.)62 1137 y(In)h(the)g(implemen)o(tatio)o(n)d(of)i +Ff(Zugzw)l(ang)h Fk(presen)o(ted)i(in)d(F)m(eldmann's)e(thesis)k([5)o +(],)e(a)g(distributed)i(transp)q(osition)e(table)0 1187 +y(w)o(as)g(implemen)o(ted)e(with)j(message)f(passing)g(across)h(a)f +(series)i(of)e(T)m(ransputers)i(to)e(impro)o(v)o(e)f(the)i(results)g +(of)f(the)h(algorithm.)0 1237 y(On)j(a)g(system)f(where)i(only)e(a)h +(small)d(n)o(um)o(b)q(er)i(of)h(no)q(des)g(can)g(b)q(e)h(pro)q(cessed)h +(p)q(er)f(a)o(v)o(erage)e(message)h(latency)g(ratio,)f(this)0 +1287 y(t)o(yp)q(e)g(of)g(distributed)g(transp)q(osition)g(table)g(is)g +(practical)f(and)h(is)g(useful)g(in)f(con)o(trolling)g(the)h(searc)o(h) +h(o)o(v)o(erhead.)62 1337 y(An)i(alternativ)o(e)g(to)f(a)g(shared)i +(transp)q(osition)f(table)f(is)h(the)g(idea)f(of)g(recursiv)o(e)j +(iterativ)o(e)d(deep)q(ening)i(to)e(ac)o(hiev)o(e)h(a)0 +1386 y(b)q(etter)d(mo)o(v)o(e)c(ordering)i([14)o(].)17 +b(The)c(additional)d(searc)o(h)j(o)o(v)o(erhead)g(of)e(recursiv)o(e)j +(iterativ)o(e)e(deep)q(ening)h(in)f(a)g(w)o(ork-stealing)0 +1436 y(algorithm)j(with)j(only)e(lo)q(cal)h(transp)q(osition)h(tables)g +(is)g(strongly)f(dep)q(enden)o(t)j(on)d(the)i(branc)o(hing)e(factor)h +(of)f(the)h(trees)0 1486 y(b)q(eing)13 b(searc)o(hed.)19 +b(Although)12 b(he)h(did)f(not)h(in)o(v)o(en)o(t)f(the)i(idea)953 +1471 y Fe(3)972 1486 y Fk(,)e(Kuszmaul)g(ac)o(hiev)o(ed)h(reasonable)g +(success)i(with)d(recursiv)o(e)0 1536 y(iterativ)o(e)g(deep)q(ening)h +(in)e(the)i(StarT)m(ec)o(h)f(c)o(hess)h(program,)e(b)q(oth)h(in)f(the)i +(sequen)o(tial)f(program)e(with)h(a)h(lo)q(cal)f(transp)q(osition)0 +1586 y(table)j(and)g(the)g(parallel)f(program)f(with)i(a)f(shared)i +(transp)q(osition)f(table.)k(This)c(is)f(partially)g(due)h(to)g(the)g +(test)h(set)g(b)q(eing)0 1636 y(used:)k(Kaufman's)11 +b(test)j(set)g(of)e(tactical)h(p)q(ositions)g([11)o(,)g(12)o(])g +(yields)g(p)q(ositions)f(whic)o(h)h(ha)o(v)o(e)g(rapidly)f(c)o(hanging) +h(principal)0 1685 y(v)n(ariations,)i(and)h(is)g(more)f(susceptible)j +(to)e(sho)o(wing)f(the)i(adv)n(an)o(tages)f(of)f(recursiv)o(e)j +(iterativ)o(e)e(deep)q(ening.)26 b(It)16 b(remains)0 +1735 y(to)f(b)q(e)h(sho)o(wn)f(whether)i(recursiv)o(e)g(iterativ)o(e)e +(deep)q(ening)h(or)f(a)g(shared)h(transp)q(osition)f(table)h(b)o(y)f +(themselv)o(es)g(is)g(a)g(more)0 1785 y(e\013ectiv)o(e)g(heuristic)g +(in)e(sp)q(eeding)i(up)f(a)g(w)o(ork-stealing)f(algorithm)e(on)j(a)f +(\\fair")g(test)i(set.)62 1835 y(Da)o(vid's)k Fj(\013\014)r +Fh(\003)i Fk(framew)o(ork)e(uses)j(a)e(global)f(transp)q(osition)h +(table)h(to)f(con)o(trol)g(where)i(the)f(pro)q(cessors)i(should)d(b)q +(e)0 1885 y(searc)o(hing)g([4].)35 b(By)20 b(adding)f(a)h(\014eld)g(to) +g(the)g(global)f(transp)q(osition)g(table)h(to)g(indicate)g(the)g(n)o +(um)o(b)q(er)f(of)h(pro)q(cessors)0 1934 y(searc)o(hing)15 +b(that)f(no)q(de,)g(eac)o(h)g(pro)q(cessor)i(can)e(pretend)i(it)d(is)h +(searc)o(hing)h(the)f(tree)i(sequen)o(tially)m(,)c(and)i(mak)o(e)f +(decisions)h(on)0 1984 y(where)h(to)f(searc)o(h)h(based)f(on)g(the)g(n) +o(um)o(b)q(er)f(of)g(pro)q(cessors)j(searc)o(hing)e(the)h(c)o(hildren)f +(of)f(the)h(no)q(de.)19 b(When)14 b(an)o(y)f(pro)q(cessor)0 +2034 y(generates)j(a)e(v)n(alue)g(for)f(the)i(ro)q(ot)g(p)q(osition,)e +(the)i(searc)o(h)g(is)f(\014nished.)20 b(Unfortunately)m(,)13 +b(Da)o(vid's)g(metho)q(d)h(of)f(con)o(trolling)0 2084 +y(where)h(the)f(pro)q(cessors)i(should)e(b)q(e)h(searc)o(hing)f(w)o(as) +g(ine\016cien)o(t,)f(and)h(the)g(sc)o(heme)g(w)o(as)g(hamp)q(ered)g(b)o +(y)f(the)i(use)g(of)e(half)g(of)0 2134 y(the)h(T)m(ransputers)g(as)f +(transp)q(osition)g(table)g(storage)g(units,)g(limiting)d(the)j(sp)q +(eedup)i(rep)q(orted)f(to)f(6.5)f(on)h(16)f(T)m(ransputers.)0 +2183 y(Regrettably)m(,)i(no)h(w)o(ork)f(is)h(rep)q(orted)h(that)f +(addresses)i(these)g(shortcomings.)62 2233 y(W)m(eill)h([29)o(])g +(recognized)j(that)e(the)h(YBW)f(criterion)h(could)f(b)q(e)h(used)g(in) +f(conjunction)g(with)g(the)h Fj(\013\014)r Fh(\003)f +Fk(framew)o(ork.)0 2283 y(W)m(eill)c(sho)o(w)o(ed)h(the)h(com)o +(bination,)d(ABD)o(AD)o(A,)h(yields)i(comparable)e(p)q(erformance)h(to) +g(a)g(YBW)g(implemen)o(tation)d(on)j(a)0 2333 y(CM-5.)k(On)14 +b(16)g(pro)q(cessors,)i(ABD)o(AD)o(A)e(yielded)g(an)g(10-fold)f(sp)q +(eedup)j(for)e(a)g(c)o(hess)h(program,)d(while)i(YBW)h(generated)0 +2383 y(a)f(sp)q(eedup)h(of)e(just)h(under)h(8.)62 2433 +y(Unfortunately)m(,)k(neither)h(of)e(these)j(sc)o(heduling)e(metho)q +(ds)f(deal)h(adequately)g(with)f(arc)o(hitectures)j(that)e(ha)o(v)o(e)g +(can)0 2482 y(pro)q(cess)h(a)e(high)g(n)o(um)o(b)q(er)g(of)g(no)q(des)h +(p)q(er)h(a)o(v)o(erage)e(message)g(latency)m(,)h(suc)o(h)g(as)g(a)f +(net)o(w)o(ork)h(of)f(w)o(orkstations.)31 b(Using)0 2532 +y(YBW)12 b(on)f(a)h(system)f(with)h(only)e(transp)q(osition)i(tables)g +(lo)q(cal)f(to)g(eac)o(h)i(pro)q(cess)g(will)d(yield)i(large)f(searc)o +(h)i(o)o(v)o(erheads,)f(since)0 2582 y(there)18 b(is)f(no)f(guaran)o +(tee)h(of)f(where)i(a)f(giv)o(en)f(no)q(de)h(will)e(end)i(up)g(when)g +(w)o(e)g(use)h(the)f(c)o(haotic)g(w)o(ork-stealing)e(sc)o(heduler)p +0 2617 780 2 v 46 2643 a Fd(3)64 2655 y Fg(Kuszmaul)9 +b(states)i(that)f(b)q(oth)g(T)m(ruscott)h(and)f(Berliner)g(ha)o(v)o(e)h +(used)f(recursiv)o(e)f(iterativ)o(e)h(deep)q(ening)e(in)j(the)g(past.) +965 2790 y Fk(5)p eop +%%Page: 6 8 +6 7 bop 444 0 a + 16766447 9472573 9669918 31246336 22892052 38679674 startTexFig + 444 0 a +%%BeginDocument: draw1b.ps + +/arrowHeight 10 def +/arrowWidth 5 def + +/IdrawDict 52 dict def +IdrawDict begin + +/reencodeISO { +dup dup findfont dup length dict begin +{ 1 index /FID ne { def }{ pop pop } ifelse } forall +/Encoding ISOLatin1Encoding def +currentdict end definefont +} def + +/ISOLatin1Encoding [ +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright +/parenleft/parenright/asterisk/plus/comma/minus/period/slash +/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon +/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N +/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright +/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m +/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/dotlessi/grave/acute/circumflex/tilde/macron/breve +/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut +/ogonek/caron/space/exclamdown/cent/sterling/currency/yen/brokenbar +/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot +/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior +/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine +/guillemotright/onequarter/onehalf/threequarters/questiondown +/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla +/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex +/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis +/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute +/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis +/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave +/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex +/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis +/yacute/thorn/ydieresis +] def +/Times-Roman reencodeISO def +/Helvetica reencodeISO def + +/none null def +/numGraphicParameters 17 def +/stringLimit 65535 def + +/Begin { +save +numGraphicParameters dict begin +} def + +/End { +end +restore +} def + +/SetB { +dup type /nulltype eq { +pop +false /brushRightArrow idef +false /brushLeftArrow idef +true /brushNone idef +} { +/brushDashOffset idef +/brushDashArray idef +0 ne /brushRightArrow idef +0 ne /brushLeftArrow idef +/brushWidth idef +false /brushNone idef +} ifelse +} def + +/SetCFg { +/fgblue idef +/fggreen idef +/fgred idef +} def + +/SetCBg { +/bgblue idef +/bggreen idef +/bgred idef +} def + +/SetF { +/printSize idef +/printFont idef +} def + +/SetP { +dup type /nulltype eq { +pop true /patternNone idef +} { +dup -1 eq { +/patternGrayLevel idef +/patternString idef +} { +/patternGrayLevel idef +} ifelse +false /patternNone idef +} ifelse +} def + +/BSpl { +0 begin +storexyn +newpath +n 1 gt { +0 0 0 0 0 0 1 1 true subspline +n 2 gt { +0 0 0 0 1 1 2 2 false subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 2 copy false subspline +} if +n 2 sub dup n 1 sub dup 2 copy 2 copy false subspline +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Circ { +newpath +0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/CBSpl { +0 begin +dup 2 gt { +storexyn +newpath +n 1 sub dup 0 0 1 1 2 2 true subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 0 0 false subspline +n 2 sub dup n 1 sub dup 0 0 1 1 false subspline +patternNone not { ifill } if +brushNone not { istroke } if +} { +Poly +} ifelse +end +} dup 0 4 dict put def + +/Elli { +0 begin +newpath +4 2 roll +translate +scale +0 0 1 0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 1 dict put def + +/Line { +0 begin +2 storexyn +newpath +x 0 get y 0 get moveto +x 1 get y 1 get lineto +brushNone not { istroke } if +0 0 1 1 leftarrow +0 0 1 1 rightarrow +end +} dup 0 4 dict put def + +/MLine { +0 begin +storexyn +newpath +n 1 gt { +x 0 get y 0 get moveto +1 1 n 1 sub { +/i exch def +x i get y i get lineto +} for +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Poly { +3 1 roll +newpath +moveto +-1 add +{ lineto } repeat +closepath +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/Rect { +0 begin +/t exch def +/r exch def +/b exch def +/l exch def +newpath +l b moveto +l t lineto +r t lineto +r b lineto +closepath +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 4 dict put def + +/Text { +ishow +} def + +/idef { +dup where { pop pop pop } { exch def } ifelse +} def + +/ifill { +0 begin +gsave +patternGrayLevel -1 ne { +fgred bgred fgred sub patternGrayLevel mul add +fggreen bggreen fggreen sub patternGrayLevel mul add +fgblue bgblue fgblue sub patternGrayLevel mul add setrgbcolor +eofill +} { +eoclip +originalCTM setmatrix +pathbbox /t exch def /r exch def /b exch def /l exch def +/w r l sub ceiling cvi def +/h t b sub ceiling cvi def +/imageByteWidth w 8 div ceiling cvi def +/imageHeight h def +bgred bggreen bgblue setrgbcolor +eofill +fgred fggreen fgblue setrgbcolor +w 0 gt h 0 gt and { +l b translate w h scale +w h true [w 0 0 h neg 0 h] { patternproc } imagemask +} if +} ifelse +grestore +end +} dup 0 8 dict put def + +/istroke { +gsave +brushDashOffset -1 eq { +[] 0 setdash +1 setgray +} { +brushDashArray brushDashOffset setdash +fgred fggreen fgblue setrgbcolor +} ifelse +brushWidth setlinewidth +originalCTM setmatrix +stroke +grestore +} def + +/ishow { +0 begin +gsave +fgred fggreen fgblue setrgbcolor +/fontDict printFont printSize scalefont dup setfont def +/descender fontDict begin 0 [FontBBox] 1 get FontMatrix end +transform exch pop def +/vertoffset 1 printSize sub descender sub def { +0 vertoffset moveto show +/vertoffset vertoffset printSize sub def +} forall +grestore +end +} dup 0 3 dict put def +/patternproc { +0 begin +/patternByteLength patternString length def +/patternHeight patternByteLength 8 mul sqrt cvi def +/patternWidth patternHeight def +/patternByteWidth patternWidth 8 idiv def +/imageByteMaxLength imageByteWidth imageHeight mul +stringLimit patternByteWidth sub min def +/imageMaxHeight imageByteMaxLength imageByteWidth idiv patternHeight idiv +patternHeight mul patternHeight max def +/imageHeight imageHeight imageMaxHeight sub store +/imageString imageByteWidth imageMaxHeight mul patternByteWidth add string def +0 1 imageMaxHeight 1 sub { +/y exch def +/patternRow y patternByteWidth mul patternByteLength mod def +/patternRowString patternString patternRow patternByteWidth getinterval def +/imageRow y imageByteWidth mul def +0 patternByteWidth imageByteWidth 1 sub { +/x exch def +imageString imageRow x add patternRowString putinterval +} for +} for +imageString +end +} dup 0 12 dict put def + +/min { +dup 3 2 roll dup 4 3 roll lt { exch } if pop +} def + +/max { +dup 3 2 roll dup 4 3 roll gt { exch } if pop +} def + +/midpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 x1 add 2 div +y0 y1 add 2 div +end +} dup 0 4 dict put def + +/thirdpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 2 mul x1 add 3 div +y0 2 mul y1 add 3 div +end +} dup 0 4 dict put def + +/subspline { +0 begin +/movetoNeeded exch def +y exch get /y3 exch def +x exch get /x3 exch def +y exch get /y2 exch def +x exch get /x2 exch def +y exch get /y1 exch def +x exch get /x1 exch def +y exch get /y0 exch def +x exch get /x0 exch def +x1 y1 x2 y2 thirdpoint +/p1y exch def +/p1x exch def +x2 y2 x1 y1 thirdpoint +/p2y exch def +/p2x exch def +x1 y1 x0 y0 thirdpoint +p1x p1y midpoint +/p0y exch def +/p0x exch def +x2 y2 x3 y3 thirdpoint +p2x p2y midpoint +/p3y exch def +/p3x exch def +movetoNeeded { p0x p0y moveto } if +p1x p1y p2x p2y p3x p3y curveto +end +} dup 0 17 dict put def + +/storexyn { +/n exch def +/y n array def +/x n array def +n 1 sub -1 0 { +/i exch def +y i 3 2 roll put +x i 3 2 roll put +} for +} def + +/SSten { +fgred fggreen fgblue setrgbcolor +dup true exch 1 0 0 -1 0 6 -1 roll matrix astore +} def + +/FSten { +dup 3 -1 roll dup 4 1 roll exch +newpath +0 0 moveto +dup 0 exch lineto +exch dup 3 1 roll exch lineto +0 lineto +closepath +bgred bggreen bgblue setrgbcolor +eofill +SSten +} def + +/Rast { +exch dup 3 1 roll 1 0 0 -1 0 6 -1 roll matrix astore +} def + + +/arrowhead { +0 begin +transform originalCTM itransform +/taily exch def +/tailx exch def +transform originalCTM itransform +/tipy exch def +/tipx exch def +/dy tipy taily sub def +/dx tipx tailx sub def +/angle dx 0 ne dy 0 ne or { dy dx atan } { 90 } ifelse def +gsave +originalCTM setmatrix +tipx tipy translate +angle rotate +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +patternNone not { +originalCTM setmatrix +/padtip arrowHeight 2 exp 0.25 arrowWidth 2 exp mul add sqrt brushWidth mul +arrowWidth div def +/padtail brushWidth 2 div def +tipx tipy translate +angle rotate +padtip 0 translate +arrowHeight padtip add padtail add arrowHeight div dup scale +arrowheadpath +ifill +} if +brushNone not { +originalCTM setmatrix +tipx tipy translate +angle rotate +arrowheadpath +istroke +} if +grestore +end +} dup 0 9 dict put def + +/arrowheadpath { +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +} def + +/leftarrow { +0 begin +y exch get /taily exch def +x exch get /tailx exch def +y exch get /tipy exch def +x exch get /tipx exch def +brushLeftArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + +/rightarrow { +0 begin +y exch get /tipy exch def +x exch get /tipx exch def +y exch get /taily exch def +x exch get /tailx exch def +brushRightArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + + +%I Idraw 10 Grid 3 3 + + +Begin +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 0.799705 0 0 0.799705 0 0 ] concat +/originalCTM matrix currentmatrix def + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +117 437 65 332 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +117 437 162 332 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 271 296 ] concat +%I +117 437 65 332 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 271 296 ] concat +%I +117 437 162 332 Line +%I 1 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-times-medium-r-normal-*-12-*-*-*-*-*-*-* +Times-Roman 12 SetF +%I t +[ 1 0 0 1 217 609 ] concat +%I +[ +(APHID) +] Text +End + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 26.5 123.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 30.5 123 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 33.5 123 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 37.5 123 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 123.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 45 123.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 49 123.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 52.5 123.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 56 123.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 60 123.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 22.5 123.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 159 96 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 162.5 104 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 166 110.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 170.5 118.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 174 126.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 177 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 181 141 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 185 149 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 188.5 156 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 191.5 164 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 156 88.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 151.5 80 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 148 72.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 192 149 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 195.5 149 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 198.5 149 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 191 135 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 195 135 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 199 135 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 203.5 135 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 187 141 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 190 141 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 181 126.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 185 126.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 189 127 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 188.5 118.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 192.5 118.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 196.5 118.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 204.5 118.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 178 110.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 199 110.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 213.5 111 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 184 96 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 208 95.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 194 156 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -36.5 92.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +100 84 116 100 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +116 100 132 84 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +132 84 148 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +148 116 164 84 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +164 84 180 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +180 116 196 100 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +196 100 212 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +212 116 228 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +228 116 244 100 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +244 100 260 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +260 116 276 100 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +276 100 292 84 Line +%I 2 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 112.5 93 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +100 84 116 100 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +116 100 132 84 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +132 84 148 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +148 116 164 84 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +164 84 180 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +180 116 196 100 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +196 100 212 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +212 116 228 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +228 116 244 100 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +244 100 260 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +260 116 276 100 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +276 100 292 84 Line +%I 2 +End + +End %I eop + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 226 494 ] concat +%I +136 476 160 476 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 244 596 ] concat +%I +136 272 160 272 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 226 497 ] concat +%I +136 296 160 296 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 244 554 ] concat +%I +136 272 160 272 Line +%I 2 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 297 692 ] concat +%I +[ +(d) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 313.5 716 ] concat +%I +[ +(d') +] Text +End + +Begin %I Line +%I b 65535 +2 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 200 494 ] concat +%I +200 374 200 308 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 200 494 ] concat +%I +200 404 200 470 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 200 494 ] concat +%I +236 452 236 470 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 200 494 ] concat +%I +236 422 236 398 Line +%I 2 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-times-medium-r-normal-*-12-*-*-*-*-*-*-* +Times-Roman 12 SetF +%I t +[ 1 0 0 1 373 608 ] concat +%I +[ +(YBW) +] Text +End + +End %I eop + +showpage + + +end +%%EndDocument + + endTexFig + 334 691 a Fk(Figure)14 b(4:)k(Lo)q(cation)13 b(of)h(P)o(arallelism)d +(in)i(T)o(ypical)g(APHID)h(and)g(YBW)g(Searc)o(h)0 824 +y(in)i(com)o(bination)e(with)i(iterativ)o(e)g(deep)q(ening.)26 +b(Using)16 b(ABD)o(AD)o(A)g(is)h(infeasible)e(since)i(the)g(system)f +(requires)i(a)e(shared)0 874 y(transp)q(osition)f(table,)h(whic)o(h)f +(w)o(ould)g(b)q(e)h(extremely)f(slo)o(w)g(on)g(a)g(parallel)g(arc)o +(hitecture)i(with)e(a)g(high)g(n)o(um)o(b)q(er)g(of)g(CPU)0 +924 y(cycles)g(p)q(er)g(a)o(v)o(erage)f(message)f(latency)m(.)0 +1061 y Fl(3)67 b(The)22 b(APHID)f(Algorithm)0 1152 y +Fk(Y)m(oung)c(Brothers)i(W)m(ait)e(and)g(other)i(parallel)d(searc)o(h)j +(algorithms)d(su\013er)j(from)d(three)j(serious)f(problems.)29 +b(First,)18 b(the)0 1202 y(n)o(umerous)g(sync)o(hronization)g(p)q(oin)o +(ts)g(result)i(in)e(idle)g(time.)30 b(This)18 b(suggests)i(that)e(a)g +(new)h(algorithm)d(m)o(ust)h(striv)o(e)i(to)0 1251 y(reduce)i(or)e +(eliminate)f(sync)o(hronization)h(altogether.)34 b(Second,)21 +b(the)f(c)o(haotic)f(nature)h(of)f(a)g(w)o(ork-stealing)f(sc)o(heduler) +0 1301 y(requires)12 b(algorithms)c(suc)o(h)k(as)f(YBW)g(and)f(Jam)o(b) +q(oree)h(to)f(use)i(a)e(shared)i(transp)q(osition)f(table)f(and/or)h +(recursiv)o(e)h(iterativ)o(e)0 1351 y(deep)q(ening)20 +b(to)f(ac)o(hiev)o(e)g(a)g(go)q(o)q(d)f(mo)o(v)o(e)g(ordering)h(and)f +(reasonable)i(p)q(erformance.)33 b(Algorithms)17 b(based)j(on)e(the)i +Fj(\013\014)r Fh(\003)0 1401 y Fk(framew)o(ork)14 b(cannot)h(w)o(ork)g +(without)g(a)g(shared)h(transp)q(osition)f(table.)22 +b(Third,)15 b(the)g(program)f(ma)o(y)f(initiate)i(parallelism)0 +1451 y(at)h(no)q(des)g(whic)o(h)g(are)g(b)q(etter)h(done)f(sequen)o +(tially)m(.)23 b(F)m(or)15 b(example,)f(ha)o(ving)h(searc)o(hed)i(the)f +(\014rst)h(branc)o(h)f(at)g(a)f(no)q(de)h(and)0 1500 +y(not)e(ac)o(hiev)o(ed)g(a)g(cut-o\013,)g(Y)m(oung)f(Brothers)j(W)m +(ait)c(\(in)i(its)g(simplest)f(form\))g(p)q(ermits)g(all)g(of)g(the)i +(remaining)d(branc)o(hes)j(to)0 1550 y(b)q(e)h(searc)o(hed)h(in)e +(parallel.)22 b(Ho)o(w)o(ev)o(er,)16 b(if)f(the)h(second)h(branc)o(h)f +(causes)h(a)e(cut-o\013,)h(then)g(all)f(the)h(parallel)e(w)o(ork)h +(done)h(on)0 1600 y(the)f(third)f(\(and)g(subsequen)o(t\))h(branc)o +(hes)h(has)e(b)q(een)h(w)o(asted.)k(This)14 b(suggests)h(parallelism)c +(should)j(only)f(b)q(e)i(initiated)e(at)0 1650 y(no)q(des)i(where)g +(there)g(is)f(a)f(v)o(ery)h(high)g(probabilit)o(y)e(that)i(all)f(branc) +o(hes)i(m)o(ust)e(b)q(e)h(considered.)62 1700 y(This)g(section)h(in)o +(tro)q(duces)g(the)f(Async)o(hronous)h(P)o(arallel)e(Hierarc)o(hical)h +(Iterativ)o(e)g(Deep)q(ening)h(\(APHID\))f(game-tree)0 +1750 y(searc)o(hing)i(algorithm.)21 b(APHID)15 b(has)h(b)q(een)h +(designed)f(to)g(address)h(the)f(ab)q(o)o(v)o(e)f(three)i(issues.)25 +b(The)16 b(algorithm)d(is)i(asyn-)0 1799 y(c)o(hronous)g(in)f(nature;)h +(it)e(remo)o(v)o(es)h(all)f(sync)o(hronization)i(p)q(oin)o(ts)f(from)e +(the)j Fj(\013\014)i Fk(searc)o(h)e(and)g(from)d(iterativ)o(e)i(deep)q +(ening.)0 1849 y(Also,)f(parallelism)e(is)j(only)f(applied)g(at)h(no)q +(des)g(that)g(ha)o(v)o(e)g(a)f(high)g(probabilit)o(y)g(of)g(needing)h +(parallelism.)h(The)f(top)g(plies)0 1899 y(of)k(a)g(game-tree)g(\(near) +g(the)h(ro)q(ot\))g(v)n(ary)f(infrequen)o(tly)g(b)q(et)o(w)o(een)h +(steps)h(of)e(iterativ)o(e)g(deep)q(ening)h([22)o(].)31 +b(This)18 b(relativ)o(e)0 1949 y(in)o(v)n(ariance)13 +b(of)g(the)i(top)f(p)q(ortion)f(of)h(the)g(game-tree)g(is)f(exploited)h +(b)o(y)g(the)g(APHID)g(algorithm.)62 1999 y(In)e(its)f(simplest)g +(form,)f(APHID)i(can)g(b)q(e)g(view)o(ed)g(as)f(a)h(master/sla)o(v)o(e) +e(program)g(although,)h(as)h(discussed)h(later,)e(it)h(can)0 +2048 y(b)q(e)k(generalized)g(to)g(a)f(hierarc)o(hical)g(pro)q(cessor)i +(tree.)24 b(F)m(or)15 b(a)g(depth)i Fj(d)e Fk(searc)o(h,)h(the)g +(master)f(is)g(resp)q(onsible)i(for)e(the)h(top)0 2098 +y Fj(d)22 2083 y Fa(0)47 2098 y Fk(ply)d(of)g(the)i(tree,)f(and)g(the)g +(remaining)e Fj(d)d Fh(\000)g Fj(d)770 2083 y Fa(0)795 +2098 y Fk(ply)k(are)h(searc)o(hed)i(in)d(parallel)f(b)o(y)i(the)g(sla)o +(v)o(es.)k(Figure)c(4)g(sho)o(ws)g(where)0 2148 y(parallel)f +(activities)g(o)q(ccur)j(in)d(APHID)h(and)g(YBW.)g(Eac)o(h)g(lo)q +(cation)f(mark)o(ed)g(with)g(an)h Fb(x)g Fk(sho)o(ws)g(where)h(the)g +(parallelism)0 2198 y(t)o(ypically)10 b(tak)o(es)i(place.)18 +b(Although)11 b(more)f(parallelism)f(could)j(b)q(e)g(generated)h(in)e +(YBW,)g(eac)o(h)h Fb(x)g Fk(represen)o(ts)i(a)d(p)q(oten)o(tially)0 +2248 y(costly)16 b(sync)o(hronization)g(p)q(oin)o(t.)23 +b(The)17 b(parallelism)c(is)j(more)f(constrained)h(in)g(APHID)g(and,)g +(hence,)h(is)f(more)f(lik)o(ely)f(to)0 2297 y(su\013er)h(from)d(load)h +(im)o(balances)g(than)g(other)i(dynamic)d(sc)o(heduling)i(routines)h +(\(suc)o(h)f(as)g(YBW,)g(Jam)o(b)q(oree,)f(or)h Fj(\013\014)r +Fh(\003)p Fk(\).)0 2414 y Fv(3.1)56 b(Op)r(eration)17 +b(of)i(the)f(Master)h(in)f(APHID)0 2490 y Fk(The)d(master)e(is)h(resp)q +(onsible)i(for)d(searc)o(hing)i(the)g(top)f Fj(d)892 +2475 y Fa(0)918 2490 y Fk(ply)f(of)h(the)h(tree.)20 b(It)14 +b(rep)q(eatedly)h(tra)o(v)o(erses)h(this)f(tree)g(un)o(til)e(the)0 +2540 y(correct)g(minim)o(ax)8 b(v)n(alue)j(has)g(b)q(een)i(determined.) +k(The)12 b(master)f(is)g(executing)h(a)f(normal)e Fj(\013\014)14 +b Fk(searc)o(h,)e(with)f(the)h(exception)0 2590 y(that)i(APHID)g +(enforces)h(an)f(arti\014cial)f(searc)o(h)i(horizon)f(at)f +Fj(d)967 2575 y Fa(0)992 2590 y Fk(ply)h(from)e(the)i(ro)q(ot.)62 +2640 y(Eac)o(h)i(leaf)e(no)q(de)i(in)f(the)h(master's)e +Fj(d)657 2625 y Fa(0)684 2640 y Fk(ply)h(game-tree)f(is)i(b)q(eing)f +(async)o(hronously)g(searc)o(hed)i(b)o(y)e(the)h(sla)o(v)o(es.)22 +b(Before)0 2690 y(describing)15 b(ho)o(w)e(the)i(master)f(kno)o(ws)f +(when)i(the)g Fj(d)e Fk(ply)h(searc)o(h)h(is)f(complete,)f(w)o(e)h(m)o +(ust)f(\014rst)i(describ)q(e)h(ho)o(w)e(the)g(master)965 +2790 y(6)p eop +%%Page: 7 9 +7 8 bop 0 42 a Fk(searc)o(hes)16 b(the)e Fj(d)254 26 +y Fa(0)279 42 y Fk(ply)g(tree.)62 91 y(When)j(the)g(master)f(reac)o +(hes)i(a)f(leaf)f(of)f(the)j Fj(d)810 76 y Fa(0)837 91 +y Fk(ply)e(tree,)i(it)f(uses)g(a)g(reliable)f(or)g(appro)o(ximate)f(v)n +(alue)h(for)g(the)h(leaf,)0 141 y(dep)q(ending)g(on)f(the)h +(information)d(a)o(v)n(ailable.)24 b(If)16 b(a)g Fj(d)10 +b Fh(\000)i Fj(d)938 126 y Fa(0)965 141 y Fk(ply)k(searc)o(h)i(result)f +(is)g(a)o(v)n(ailable)d(from)g(the)k(sla)o(v)o(e,)e(that)g(will)0 +191 y(b)q(e)g(used.)22 b(\(In)15 b(the)h(curren)o(t)g(implemen)o +(tation,)11 b(w)o(e)16 b(do)e(not)h(use)h(deep)q(er)h(ply)e(v)n(alues,) +f(ev)o(en)i(if)e(they)h(are)h(a)o(v)n(ailable.)j(This)0 +241 y(will)12 b(b)q(e)h(discussed)i(in)e(Section)g(4.\))18 +b(Ho)o(w)o(ev)o(er,)13 b(if)f(the)i Fj(d)7 b Fh(\000)h +Fj(d)949 226 y Fa(0)973 241 y Fk(ply)k(result)i(is)f(not)g(a)o(v)n +(ailable,)d(then)k(the)g(algorithm)c(uses)k(the)0 291 +y(\\b)q(est)h(a)o(v)n(ailable")d(ply)h(result)i(that)g(had)e(b)q(een)j +(returned)g(b)o(y)e(the)g(sla)o(v)o(e)g(to)g(generate)i(a)d(guessed)j +(minim)o(ax)11 b(v)n(alue)1826 276 y Fe(4)1844 291 y +Fk(.)19 b(An)o(y)0 340 y(no)q(de)14 b(where)h(w)o(e)f(are)h(forced)f +(to)g(guess)h(is)f(mark)o(ed)e(as)i Fi(unc)n(ertain)p +Fk(.)62 390 y(As)g(v)n(alues)g(get)g(bac)o(k)o(ed)g(up)f(the)h(tree,)h +(the)f(master)f(main)o(tains)e(a)j(coun)o(t)g(of)f(ho)o(w)g(man)o(y)f +(uncertain)i(no)q(des)g(ha)o(v)o(e)g(b)q(een)0 440 y(visited)d(in)f(a)h +(pass)h(of)e(the)i(tree.)18 b(As)11 b(long)g(as)g(the)g(score)h(at)f +(an)o(y)g(of)f(the)i(lea)o(v)o(es)f(is)g(uncertain,)h(the)f(master)g(m) +o(ust)f(do)h(another)0 490 y(pass)j(of)g(the)g(tree.)19 +b(Once)c(the)g(master)e(has)h(a)f(reliable)h(v)n(alue)f(for)g(all)g +(the)h(lea)o(v)o(es)g(in)g(its)g Fj(d)1423 475 y Fa(0)1448 +490 y Fk(ply)f(tree,)h(the)h(searc)o(h)g(of)e(the)h Fj(d)0 +540 y Fk(ply)h(tree)h(is)f(complete.)22 b(The)16 b(con)o(trolling)d +(program)h(w)o(ould)h(then)h(pro)q(ceed)g(to)f(the)h(next)g(iteration)f +(b)o(y)g(incremen)o(ting)f Fj(d)0 589 y Fk(and)g(asking)f(the)h(master) +g(to)g(searc)o(h)h(the)f(tree)h(again.)62 639 y(Note)e(that)f(this)g +(de\014nition)f(of)h(the)g(master)g(solv)o(es)g(one)g(of)g(the)g +(problems)f(that)h(some)f(algorithms)f(ha)o(v)o(e)i(with)g(resp)q(ect)0 +689 y(to)k(initializing)d(parallelism)g(to)q(o)j(quic)o(kly)f(at)g(a)h +(p)q(oten)o(tial)f Fb(CUT)g Fk(no)q(de.)24 b(By)17 b(using)e(the)i +(guessed)g(scores)g(when)g(accurate)0 739 y(information)9 +b(is)j(not)f(a)o(v)n(ailable,)f(the)i(APHID)g(algorithm)e +(automatically)e(determines)k(if)f(a)h(subsequen)o(t)i(c)o(hild)d(is)h +(lik)o(ely)e(to)0 789 y(generate)k(a)e(cut-o\013)h(at)f(a)g(failed)g +Fb(CUT)g Fk(no)q(de.)18 b(If)12 b(it)g(seems)g(lik)o(ely)g(that)g(a)g +(c)o(hild)g(will)f(generate)j(a)e(cut-o\013)h(based)g(on)f(guessed)0 +839 y(v)n(alues,)f(the)g(c)o(hildren)g(of)f(the)h(failed)e +Fb(CUT)h Fk(no)q(de)h(are)g(ev)n(aluated)g(sequen)o(tially)m(.)16 +b(If)10 b(it)g(seems)h(unlik)o(ely)e(that)i(the)g(no)q(de)g(will)e(b)q +(e)0 888 y(pruned)j(due)g(to)f(lo)o(w)f(minim)o(ax)e(v)n(alues,)j(the)h +(searc)o(h)g(w)o(ould)e(con)o(tin)o(ue)i(for)f(a)f(promising)f(no)q(de) +j(at)f(that)g(branc)o(h)h(in)f(parallel.)0 938 y(This)k(is)g(all)f +(handled)i(automatically)c(b)o(y)j(the)h Fj(\013\014)i +Fk(routine.)k(The)16 b(handling)e(of)h(a)g(h)o(yp)q(othesized)h +Fb(CUT)f Fk(no)q(de)h(is)f(stronger)0 988 y(than)g(the)g(equiv)n(alen)o +(t)f(scenario)i(in)e(the)h(YBW)g(algorithm,)d(whic)o(h)j(ignores)g +(previous)g(score)h(information)c(a)o(v)n(ailable)g(for)0 +1038 y(some)f(branc)o(hes)i(of)f(the)h(failed)e Fb(CUT)g +Fk(no)q(de.)18 b(In)12 b(the)h(full)d(v)o(ersion)j(of)e(YBW,)h +(application-dep)q(enden)o(t)g(information)d(is)j(used)0 +1088 y(to)i(do)f(what)h(APHID)g(handles)g(automatically)d(with)j(the)g +Fj(\013\014)i Fk(searc)o(h)f(windo)o(w.)62 1137 y(The)g(sla)o(v)o(es)g +(are)g(resp)q(onsible)g(for)f(setting)h(their)g(o)o(wn)f(searc)o(h)i +(windo)o(ws,)e(based)h(on)f(information)e(from)h(the)i(master.)0 +1187 y(Sometimes,)10 b(the)j(information)d(returned)k(b)o(y)e(the)h +(sla)o(v)o(e)f(ma)o(y)f(not)h(b)q(e)h(useful)g(to)f(the)h(master.)k(F)m +(or)12 b(example,)f(a)i(sla)o(v)o(e)f(can)0 1237 y(tell)h(the)i(master) +e(that)h(the)g(score)h(of)f(a)f(giv)o(en)g(no)q(de)i(is)e(less)i(than)f +(30,)e(but)i(the)h(master)e(ma)o(y)f(w)o(an)o(t)h(to)h(kno)o(w)f(if)g +(the)i(score)0 1287 y(is)e(in)g(b)q(et)o(w)o(een)i(-5)e(and)g(5.)18 +b(In)13 b(this)h(case,)g(a)f(\\bad)g(b)q(ound")h(searc)o(h)g(is)f +(generated,)i(and)e(the)h(searc)o(h)h(windo)o(w)d(parameters,)0 +1337 y Fj(\013)j Fk(and)f Fj(\014)r Fk(,)h(m)o(ust)f(b)q(e)i(comm)o +(unicated)c(to)j(the)h(sla)o(v)o(e)e(pro)q(cessor.)23 +b(An)o(y)15 b(no)q(des)g(where)h(w)o(e)f(are)h(w)o(aiting)d(for)i +(\\bad)f(b)q(ound")0 1386 y(information)g(to)j(b)q(e)h(up)q(dated)g(b)o +(y)f(the)h(sla)o(v)o(e)f(are)h(considered)g(as)g(uncertain)g(b)o(y)f +(the)g(master.)28 b(Ev)o(en)o(tually)m(,)16 b(the)i(sla)o(v)o(e)0 +1436 y(will)11 b(return)j(up)q(dated)f(information)c(that)k(is)f +(consisten)o(t)h(with)f(b)q(oth)h(the)g(original)e(information)e(and)j +(the)h(searc)o(h)h(windo)o(w)0 1486 y(requested)170 1471 +y Fe(5)191 1486 y Fk(.)0 1602 y Fv(3.2)56 b(The)18 b(APHID)h(T)-5 +b(able)0 1679 y Fk(If)15 b(a)f(leaf)h(no)q(de)g(is)g(visited)g(b)o(y)g +(the)g(master)g(for)g(the)g(\014rst)h(time,)d(it)i(is)g(statically)f +(allo)q(cated)h(to)f(a)h(sla)o(v)o(e)g(pro)q(cessor.)23 +b(This)0 1729 y(information)14 b(is)j(recorded)h(in)f(a)f(table,)i(the) +f Fi(APHID)h(table)p Fk(,)f(that)g(is)g(shared)h(b)o(y)e(all)g(pro)q +(cessors.)29 b(Figure)17 b(5)g(sho)o(ws)g(an)0 1779 y(example)c(of)g +(ho)o(w)g(the)i(APHID)f(table)g(w)o(ould)f(b)q(e)h(organized)g(at)g(a)f +(giv)o(en)h(p)q(oin)o(t)f(in)h(time.)62 1828 y(The)h(APHID)f(table)g +(is)g(partitioned)g(in)o(to)g(t)o(w)o(o)f(parts:)20 b(one)14 +b(whic)o(h)g(only)g(the)g(master)g(can)g(write)h(to,)f(and)g(one)g +(whic)o(h)0 1878 y(only)g(the)h(sla)o(v)o(e)g(that)f(has)h(b)q(een)h +(assigned)f(that)g(piece)h(of)e(w)o(ork)g(can)h(write)g(to.)21 +b(An)o(y)14 b(attempt)g(to)h(write)g(in)o(to)f(the)h(table)0 +1928 y(generates)k(a)e(message)g(that)g(informs)f(the)i(sla)o(v)o(e)f +(or)g(the)h(master)f(pro)q(cess)i(of)e(the)h(up)q(date)g(to)f(the)h +(information.)26 b(The)0 1978 y(master)13 b(and)f(sla)o(v)o(e)h(only)f +(read)i(their)f(lo)q(cal)f(copies)i(of)e(the)i(information;)c(there)k +(are)f(no)g(explicit)g(messages)g(sen)o(t)h(b)q(et)o(w)o(een)0 +2028 y(the)g(master)g(and)g(the)g(sla)o(v)o(e)g(asking)f(for)g +(information.)62 2077 y(The)g(master's)f(half)f(of)h(the)h(table)f(is)h +(illustrated)f(ab)q(o)o(v)o(e)g(the)h(dotted)g(line)f(in)g(Figure)g(5.) +17 b(F)m(or)12 b(eac)o(h)h(leaf)f(that)g(has)h(b)q(een)0 +2127 y(visited)h(b)o(y)f(the)h(master,)f(there)i(is)f(an)f(en)o(try)i +(in)e(the)h(APHID)g(table.)k(Information)11 b(main)o(tained)h(on)h(the) +i(lea)o(v)o(es)e(includes)0 2177 y(the)g(mo)o(v)o(es)e(required)j(to)e +(generate)i(the)f(leaf)f(p)q(ositions)g(from)f(the)i(ro)q(ot)g +Fb(R)p Fk(,)f(the)h(appro)o(ximate)e(lo)q(cation)g(of)h(the)h(leaf)f +(in)g(the)0 2227 y(tree)17 b(\(whic)o(h)e(is)h(used)g(b)o(y)f(the)h +(sla)o(v)o(e)f(to)h(prioritize)f(w)o(ork\),)g(whether)i(this)f(leaf)f +(w)o(as)g(visited)g(on)h(the)g(last)f(pass)h(that)f(the)0 +2277 y(master)e(executed,)j(and)d(the)i(n)o(um)o(b)q(er)e(of)g(the)i +(sla)o(v)o(e)e(that)h(the)h(leaf)e(w)o(as)h(allo)q(cated)f(to.)62 +2326 y(In)h(our)f(example,)f(w)o(e)i(can)g(see)g(that)g(the)g(same)f(n) +o(um)o(b)q(er)f(of)h(lea)o(v)o(es)h(ha)o(v)o(e)f(b)q(een)i(allo)q +(cated)e(to)g(eac)o(h)h(sla)o(v)o(e.)k(Note)c(that)0 +2376 y(there)i(is)f(an)g(additional)f(leaf,)g(8,)h(that)g(is)g(not)g +(represen)o(ted)j(in)c(the)i(master's)f Fj(d)1286 2361 +y Fa(0)1312 2376 y Fk(ply)f(searc)o(h)j(tree.)23 b(This)15 +b(leaf)f(no)q(de)i(has)0 2426 y(b)q(een)h(visited)e(on)g(a)g(previous)h +(pass)g(of)e(the)i Fj(d)731 2411 y Fa(0)758 2426 y Fk(ply)f(searc)o(h)h +(tree,)h(and)e(w)o(as)g(not)h(visited)f(on)g(the)h(latest)g(pass.)23 +b(Ho)o(w)o(ev)o(er,)p 0 2461 780 2 v 46 2488 a Fd(4)64 +2499 y Fg(Man)o(y)12 b(game-tree)f(searc)o(h)h(programs)e(exhibit)i(an) +g(e\013ect)g(based)g(on)h(the)g(parit)o(y)e(of)i(the)g(searc)o(h)f +(depth)f(\(o)q(dd)h(or)h(ev)o(en)f(n)o(um)o(b)q(er)g(of)g(ply\).)0 +2539 y(Scores)d(are)g(stable)g(when)h(y)o(ou)f(lo)q(ok)h(at)f(results)g +(from)g(the)h(o)q(dd)f(plies)g(only)m(,)h(or)g(ev)o(en)f(plies)g(only)m +(,)g(but)h(are)f(sometimes)f(unstable)g(when)i(y)o(ou)f(mix)0 +2578 y(the)i(t)o(w)o(o.)k(Th)o(us,)c(w)o(e)h(use)f(the)g(deep)q(est)f +(ply)g(v)n(alue)h(with)g(the)g(same)f(parit)o(y)m(,)g(instead)g(of)h +(alw)o(a)o(ys)g(using)f(the)h(deep)q(est)e(ply)i(v)n(alue)f(a)o(v)n +(ailable.)46 2606 y Fd(5)64 2618 y Fg(It)j(ma)o(y)g(happ)q(en)f(that)h +(the)g(original)f(searc)o(h)g(and)h(the)h(\\bad)e(b)q(ound")g(searc)o +(h)h(are)g(inconsisten)o(t)e(with)j(one)f(another,)f(through)g(the)h +(use)0 2657 y(of)h(searc)o(h)e(extensions)f(that)i(ma)o(y)g(or)h(ma)o +(y)f(not)g(b)q(e)g(triggered)f(based)g(on)i(the)f(searc)o(h)g(windo)o +(w)g(used.)22 b(In)13 b(this)h(case,)f(the)g(searc)o(h)g(explicitly)0 +2697 y(requested)c(b)o(y)i(the)g(master)f(o)o(v)o(errides)f(the)i +(informatio)o(n)e(that)h(had)h(b)q(een)f(previously)f(stored.)965 +2790 y Fk(7)p eop +%%Page: 8 10 +8 9 bop 489 0 a + 15345564 14208860 8420065 17234821 28417720 35653713 startTexFig + 489 0 a +%%BeginDocument: draw2.ps + +/arrowHeight 10 def +/arrowWidth 5 def + +/IdrawDict 51 dict def +IdrawDict begin + +/reencodeISO { +dup dup findfont dup length dict begin +{ 1 index /FID ne { def }{ pop pop } ifelse } forall +/Encoding ISOLatin1Encoding def +currentdict end definefont +} def + +/ISOLatin1Encoding [ +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright +/parenleft/parenright/asterisk/plus/comma/minus/period/slash +/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon +/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N +/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright +/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m +/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/dotlessi/grave/acute/circumflex/tilde/macron/breve +/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut +/ogonek/caron/space/exclamdown/cent/sterling/currency/yen/brokenbar +/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot +/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior +/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine +/guillemotright/onequarter/onehalf/threequarters/questiondown +/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla +/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex +/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis +/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute +/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis +/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave +/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex +/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis +/yacute/thorn/ydieresis +] def +/Helvetica reencodeISO def + +/none null def +/numGraphicParameters 17 def +/stringLimit 65535 def + +/Begin { +save +numGraphicParameters dict begin +} def + +/End { +end +restore +} def + +/SetB { +dup type /nulltype eq { +pop +false /brushRightArrow idef +false /brushLeftArrow idef +true /brushNone idef +} { +/brushDashOffset idef +/brushDashArray idef +0 ne /brushRightArrow idef +0 ne /brushLeftArrow idef +/brushWidth idef +false /brushNone idef +} ifelse +} def + +/SetCFg { +/fgblue idef +/fggreen idef +/fgred idef +} def + +/SetCBg { +/bgblue idef +/bggreen idef +/bgred idef +} def + +/SetF { +/printSize idef +/printFont idef +} def + +/SetP { +dup type /nulltype eq { +pop true /patternNone idef +} { +dup -1 eq { +/patternGrayLevel idef +/patternString idef +} { +/patternGrayLevel idef +} ifelse +false /patternNone idef +} ifelse +} def + +/BSpl { +0 begin +storexyn +newpath +n 1 gt { +0 0 0 0 0 0 1 1 true subspline +n 2 gt { +0 0 0 0 1 1 2 2 false subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 2 copy false subspline +} if +n 2 sub dup n 1 sub dup 2 copy 2 copy false subspline +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Circ { +newpath +0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/CBSpl { +0 begin +dup 2 gt { +storexyn +newpath +n 1 sub dup 0 0 1 1 2 2 true subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 0 0 false subspline +n 2 sub dup n 1 sub dup 0 0 1 1 false subspline +patternNone not { ifill } if +brushNone not { istroke } if +} { +Poly +} ifelse +end +} dup 0 4 dict put def + +/Elli { +0 begin +newpath +4 2 roll +translate +scale +0 0 1 0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 1 dict put def + +/Line { +0 begin +2 storexyn +newpath +x 0 get y 0 get moveto +x 1 get y 1 get lineto +brushNone not { istroke } if +0 0 1 1 leftarrow +0 0 1 1 rightarrow +end +} dup 0 4 dict put def + +/MLine { +0 begin +storexyn +newpath +n 1 gt { +x 0 get y 0 get moveto +1 1 n 1 sub { +/i exch def +x i get y i get lineto +} for +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Poly { +3 1 roll +newpath +moveto +-1 add +{ lineto } repeat +closepath +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/Rect { +0 begin +/t exch def +/r exch def +/b exch def +/l exch def +newpath +l b moveto +l t lineto +r t lineto +r b lineto +closepath +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 4 dict put def + +/Text { +ishow +} def + +/idef { +dup where { pop pop pop } { exch def } ifelse +} def + +/ifill { +0 begin +gsave +patternGrayLevel -1 ne { +fgred bgred fgred sub patternGrayLevel mul add +fggreen bggreen fggreen sub patternGrayLevel mul add +fgblue bgblue fgblue sub patternGrayLevel mul add setrgbcolor +eofill +} { +eoclip +originalCTM setmatrix +pathbbox /t exch def /r exch def /b exch def /l exch def +/w r l sub ceiling cvi def +/h t b sub ceiling cvi def +/imageByteWidth w 8 div ceiling cvi def +/imageHeight h def +bgred bggreen bgblue setrgbcolor +eofill +fgred fggreen fgblue setrgbcolor +w 0 gt h 0 gt and { +l b translate w h scale +w h true [w 0 0 h neg 0 h] { patternproc } imagemask +} if +} ifelse +grestore +end +} dup 0 8 dict put def + +/istroke { +gsave +brushDashOffset -1 eq { +[] 0 setdash +1 setgray +} { +brushDashArray brushDashOffset setdash +fgred fggreen fgblue setrgbcolor +} ifelse +brushWidth setlinewidth +originalCTM setmatrix +stroke +grestore +} def + +/ishow { +0 begin +gsave +fgred fggreen fgblue setrgbcolor +/fontDict printFont printSize scalefont dup setfont def +/descender fontDict begin 0 [FontBBox] 1 get FontMatrix end +transform exch pop def +/vertoffset 1 printSize sub descender sub def { +0 vertoffset moveto show +/vertoffset vertoffset printSize sub def +} forall +grestore +end +} dup 0 3 dict put def +/patternproc { +0 begin +/patternByteLength patternString length def +/patternHeight patternByteLength 8 mul sqrt cvi def +/patternWidth patternHeight def +/patternByteWidth patternWidth 8 idiv def +/imageByteMaxLength imageByteWidth imageHeight mul +stringLimit patternByteWidth sub min def +/imageMaxHeight imageByteMaxLength imageByteWidth idiv patternHeight idiv +patternHeight mul patternHeight max def +/imageHeight imageHeight imageMaxHeight sub store +/imageString imageByteWidth imageMaxHeight mul patternByteWidth add string def +0 1 imageMaxHeight 1 sub { +/y exch def +/patternRow y patternByteWidth mul patternByteLength mod def +/patternRowString patternString patternRow patternByteWidth getinterval def +/imageRow y imageByteWidth mul def +0 patternByteWidth imageByteWidth 1 sub { +/x exch def +imageString imageRow x add patternRowString putinterval +} for +} for +imageString +end +} dup 0 12 dict put def + +/min { +dup 3 2 roll dup 4 3 roll lt { exch } if pop +} def + +/max { +dup 3 2 roll dup 4 3 roll gt { exch } if pop +} def + +/midpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 x1 add 2 div +y0 y1 add 2 div +end +} dup 0 4 dict put def + +/thirdpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 2 mul x1 add 3 div +y0 2 mul y1 add 3 div +end +} dup 0 4 dict put def + +/subspline { +0 begin +/movetoNeeded exch def +y exch get /y3 exch def +x exch get /x3 exch def +y exch get /y2 exch def +x exch get /x2 exch def +y exch get /y1 exch def +x exch get /x1 exch def +y exch get /y0 exch def +x exch get /x0 exch def +x1 y1 x2 y2 thirdpoint +/p1y exch def +/p1x exch def +x2 y2 x1 y1 thirdpoint +/p2y exch def +/p2x exch def +x1 y1 x0 y0 thirdpoint +p1x p1y midpoint +/p0y exch def +/p0x exch def +x2 y2 x3 y3 thirdpoint +p2x p2y midpoint +/p3y exch def +/p3x exch def +movetoNeeded { p0x p0y moveto } if +p1x p1y p2x p2y p3x p3y curveto +end +} dup 0 17 dict put def + +/storexyn { +/n exch def +/y n array def +/x n array def +n 1 sub -1 0 { +/i exch def +y i 3 2 roll put +x i 3 2 roll put +} for +} def + +/SSten { +fgred fggreen fgblue setrgbcolor +dup true exch 1 0 0 -1 0 6 -1 roll matrix astore +} def + +/FSten { +dup 3 -1 roll dup 4 1 roll exch +newpath +0 0 moveto +dup 0 exch lineto +exch dup 3 1 roll exch lineto +0 lineto +closepath +bgred bggreen bgblue setrgbcolor +eofill +SSten +} def + +/Rast { +exch dup 3 1 roll 1 0 0 -1 0 6 -1 roll matrix astore +} def + + +/arrowhead { +0 begin +transform originalCTM itransform +/taily exch def +/tailx exch def +transform originalCTM itransform +/tipy exch def +/tipx exch def +/dy tipy taily sub def +/dx tipx tailx sub def +/angle dx 0 ne dy 0 ne or { dy dx atan } { 90 } ifelse def +gsave +originalCTM setmatrix +tipx tipy translate +angle rotate +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +patternNone not { +originalCTM setmatrix +/padtip arrowHeight 2 exp 0.25 arrowWidth 2 exp mul add sqrt brushWidth mul +arrowWidth div def +/padtail brushWidth 2 div def +tipx tipy translate +angle rotate +padtip 0 translate +arrowHeight padtip add padtail add arrowHeight div dup scale +arrowheadpath +ifill +} if +brushNone not { +originalCTM setmatrix +tipx tipy translate +angle rotate +arrowheadpath +istroke +} if +grestore +end +} dup 0 9 dict put def + +/arrowheadpath { +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +} def + +/leftarrow { +0 begin +y exch get /taily exch def +x exch get /tailx exch def +y exch get /tipy exch def +x exch get /tipx exch def +brushLeftArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + +/rightarrow { +0 begin +y exch get /tipy exch def +x exch get /tipx exch def +y exch get /taily exch def +x exch get /tailx exch def +brushRightArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + + +%I Idraw 10 Grid 6 6 + + +Begin +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 0.799705 0 0 0.799705 0 0 ] concat +/originalCTM matrix currentmatrix def + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 5.99997 0 ] concat + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 342 674 ] concat +%I +[ +(Master) +] Text +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 8 26 ] concat + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 315 543.5 ] concat +%I +[ +(1) +] Text +End + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +80 224 12 12 Elli +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -4 26 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +128 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 339 543.5 ] concat +%I +[ +(2) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -10 26 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +164 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 357 544 ] concat +%I +[ +(3) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -16 26 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +200 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 375 544 ] concat +%I +[ +(4) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -22 26 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +236 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 393 544 ] concat +%I +[ +(5) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 104 26 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +32 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 291 543.5 ] concat +%I +[ +(7) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -28 26 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +272 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 411 544 ] concat +%I +[ +(6) +] Text +End + +End %I eop + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +68 260 164 452 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +68 260 272 260 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +164 452 272 260 Line +%I 2 +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -71.5 99 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +308 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 428.5 544 ] concat +%I +[ +(R) +] Text +End + +End %I eop + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 284 612.5 ] concat +%I +[ +(d') +] Text +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 226 395 ] concat +%I +148 518 100 518 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 226 395 ] concat +%I +148 326 100 326 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 226 395 ] concat +%I +124 446 124 506 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 226 395 ] concat +%I +124 410 124 338 Line +%I 2 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 18 -24 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +128 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 339 543.5 ] concat +%I +[ +(2) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 84 -24 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +164 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 357 544 ] concat +%I +[ +(3) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -108 -24 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +200 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 375 544 ] concat +%I +[ +(4) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 0 -24 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +236 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 393 544 ] concat +%I +[ +(5) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 66 -24 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +272 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 411 544 ] concat +%I +[ +(6) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -84 -24 ] concat + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 315 543.5 ] concat +%I +[ +(1) +] Text +End + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +80 224 12 12 Elli +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 12 -24 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +32 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 291 543.5 ] concat +%I +[ +(7) +] Text +End + +End %I eop + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.458861 0 0 0.489848 235.544 397.7 ] concat +%I +232 170 388 266 Rect +End + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.815325 0 0 0.489848 236.845 397.7 ] concat +%I +232 170 364 266 Rect +End + +Begin %I Line +%I b 65520 +1 0 0 [12 4] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1.21519 0 0 0.046875 83.0438 492.703 ] concat +%I +100 241 376 241 Line +%I 1 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 162 515 ] concat +%I +[ +(APHID) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 162 503 ] concat +%I +[ +(Table) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 222 497 ] concat +%I +[ +(-1/4) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 258 497 ] concat +%I +[ +(+2/3) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 297.5 497 ] concat +%I +[ +(?/0) +] Text +End + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 148 395 ] concat +%I +136 170 352 266 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 348 497 ] concat +%I +[ +(+5/5) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 468 497 ] concat +%I +[ +(+1/3) +] Text +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +140 331 98 217 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +140 331 170 235 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +98 217 110 229 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +110 229 116 217 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +116 217 122 247 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +122 247 140 235 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +140 235 146 247 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +146 247 152 229 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +152 229 158 247 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +158 247 170 235 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +288 398 204 194 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +204 194 240 218 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +240 218 252 230 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +252 230 264 218 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +264 218 276 182 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +276 182 288 206 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +288 206 300 230 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +300 230 312 206 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +312 206 324 230 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +288 398 348 230 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +324 230 348 230 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +188 248 212 284 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +212 284 236 248 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +236 248 248 296 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +248 296 272 260 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +272 260 284 296 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +284 296 308 272 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +308 272 320 296 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +260 464 320 296 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +260 464 188 248 Line +%I 2 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 246 341 ] concat +%I +[ +(Slave 1) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 354 341 ] concat +%I +[ +(Slave 2) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 444 341 ] concat +%I +[ +(Slave 3) +] Text +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 35.5 -97.5 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +128 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 339 543.5 ] concat +%I +[ +(2) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 54 -97 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +272 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 411 544 ] concat +%I +[ +(6) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -24.5 -99 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +32 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 291 543.5 ] concat +%I +[ +(7) +] Text +End + +End %I eop + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 130 296 ] concat +%I +100 320 148 320 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 130 296 ] concat +%I +100 164 148 164 Line +%I 2 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 180.5 421.5 ] concat +%I +[ +(d-d') +] Text +End + +Begin %I Line +%I b 65535 +1 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 130 296 ] concat +%I +124 224 124 176 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 130 296 ] concat +%I +124 260 124 308 Line +%I 2 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 384 497 ] concat +%I +[ +(+4/5) +] Text +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 60 -36 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 362 ] concat +%I +356 380 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 453 555.5 ] concat +%I +[ +(8) +] Text +End + +End %I eop + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 504 497 ] concat +%I +[ +(-3/1) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 432 497 ] concat +%I +[ +(<0/4) +] Text +End + +End %I eop + +showpage + + +end +%%EndDocument + + endTexFig + 490 991 a Fk(Figure)14 b(5:)k(A)c(Snapshot)g(of)f(APHID)h(Searc)o(h)h +(in)e(Op)q(eration)0 1124 y(the)h(information)c(that)k(the)g(sla)o(v)o +(e)f(has)g(generated)i(ma)o(y)c(b)q(e)j(needed)h(in)e(a)g(later)g(pass) +h(of)f(the)h(tree)g(and)f(is)h(not)f(deleted)h(b)o(y)0 +1174 y(the)g(master.)k(Lea)o(v)o(es)c(are)g(initially)e(allo)q(cated)h +(to)h(the)g(sla)o(v)o(es)g(in)f(a)h(round-robin)f(manner,)f(and)i(ma)o +(y)e(mo)o(v)o(e)g(due)i(to)g(load)0 1224 y(balancing)g(\(as)h(describ)q +(ed)i(in)e(Section)h(3.4\).)k(Although)15 b(there)i(ma)o(y)c(b)q(e)i(b) +q(etter)i(metho)q(ds)e(of)f(allo)q(cating)g(lea)o(v)o(es,)h(it)g(has)0 +1273 y(b)q(een)f(found)f(that)h(this)f(is)g(a)g(reasonable)h(metho)q(d) +f(of)f(initially)f(balancing)h(the)i(load)f(on)g(a)g(small)e(n)o(um)o +(b)q(er)h(of)h(pro)q(cessors.)62 1323 y(The)j(sla)o(v)o(e's)e(part)h +(of)g(the)g(table,)g(illustrated)f(b)o(y)h(the)h(area)f(b)q(elo)o(w)f +(the)i(dotted)g(line,)e(con)o(tains)h(information)d(on)i(the)0 +1373 y(result)f(of)e(searc)o(hing)i(the)g(p)q(osition)e(to)h(v)n +(arious)f(depths)j(of)d(searc)o(h.)19 b(The)12 b(\\b)q(est")h +(information)c(and)j(the)h(ply)e(to)h(whic)o(h)g(the)0 +1423 y(leaf)j(w)o(as)g(examined)f(is)i(giv)o(en)f(underneath)h(eac)o(h) +g(leaf)f(no)q(de)h(in)f(the)h(tree.)24 b(F)m(or)15 b(leaf)g(1,)g(the)h +(score)h(returned)g(is)e(-1)g(with)0 1473 y(a)f(searc)o(h)h(depth)f(of) +g(4.)j(Leaf)d(3)g(illustrates)g(that)g(the)g(score)h(information)c +(returned)16 b(b)o(y)e(the)g(sla)o(v)o(e)g(is)f(not)h(necessarily)h(an) +0 1522 y(exact)h(n)o(um)o(b)q(er.)k(The)15 b(sla)o(v)o(es)g(main)o +(tain)d(an)j(upp)q(er)h(b)q(ound)e(and)h(a)g(lo)o(w)o(er)f(b)q(ound)h +(on)g(the)g(score)h(for)f(eac)o(h)g(ply)g(of)f(searc)o(h)0 +1572 y(depth.)19 b(The)14 b(score)h(is)f(kno)o(wn)f(to)h(b)q(e)h(exact) +f(when)h(the)f(upp)q(er)h(and)f(lo)o(w)o(er)f(b)q(ounds)i(are)f(the)g +(same.)0 1688 y Fv(3.3)56 b(Op)r(eration)17 b(of)i(Sla)n(v)n(e)g(in)f +(APHID)0 1765 y Fk(A)c(sla)o(v)o(e)f(pro)q(cess)i(essen)o(tially)e +(executes)j(the)e(same)e(co)q(de)j(that)e(a)g(sequen)o(tial)h +Fj(\013\014)i Fk(searc)o(her)f(w)o(ould.)i(The)d(pro)q(cess)h(simply)0 +1815 y(rep)q(eats)g(the)g(follo)o(wing)c(three)k(steps)h(un)o(til)d +(the)h(master)g(tells)f(it)h(that)g(the)g(searc)o(h)h(is)f(complete:)51 +1898 y(1.)20 b(Lo)q(ok)13 b(in)h(its)f(p)q(ortion)h(of)f(its)h(lo)q +(cal)f(cop)o(y)h(of)f(the)i(APHID)f(table,)f(and)h(\014nd)g(the)g +(highest)h(priorit)o(y)e(no)q(de)h(to)g(searc)o(h.)51 +1981 y(2.)20 b(Execute)15 b(the)g(searc)o(h.)51 2064 +y(3.)20 b(Rep)q(ort)14 b(the)g(result)h(bac)o(k)f(to)g(the)g(master)g +(\(getting)f(an)h(up)q(date)h(to)e(its)h(APHID)g(table)g(in)g +(return\).)62 2147 y(The)19 b(w)o(ork)e(selection)i(criterion)f(is)g +(primarily)d(based)k(on)f(the)g(depth)h(to)f(whic)o(h)f(the)i(sla)o(v)o +(e)f(has)g(already)f(searc)o(hed)0 2197 y(a)h(no)q(de.)31 +b(As)18 b(w)o(e)g(can)h(see)g(for)e(Sla)o(v)o(e)h(1)g(in)f(Figure)h(5,) +h(lea)o(v)o(es)f(1,)g(4)g(and)g(7)f(ha)o(v)o(e)h(b)q(een)h(searc)o(hed) +h(to)e(4,)g(3)g(and)g(0)f(ply)m(,)0 2247 y(resp)q(ectiv)o(ely)m(.)i(Th) +o(us,)14 b(Sla)o(v)o(e)f(1)g(is)h(attempting)e(to)i(searc)o(h)h(leaf)e +(7)h(to)f(1)h(ply)m(,)e(and)i(will)e(con)o(tin)o(ue)i(to)g(searc)o(h)h +(leaf)e(7)h(up)g(to)f(3)0 2296 y(ply)g(b)o(y)h(using)g(iterativ)o(e)f +(deep)q(ening,)i(if)e(no)h(new)g(w)o(ork)f(arriv)o(es)i(from)d(the)i +(master.)62 2346 y(The)c(secondary)h(criterion)f(is)g(the)g(lo)q +(cation)f(of)g(the)h(no)q(de)h(within)d(the)j(master's)e(game-tree.)16 +b(This)10 b(secondary)h(criterion)0 2396 y(is)f(necessary)i(since)f(it) +f(is)f(usually)h(b)q(ene\014cial)g(to)g(generate)h(the)g(results)g(in)f +(a)g(left-to-righ)o(t)f(order)h(for)g(the)h(master.)16 +b(Children)0 2446 y(of)e(no)q(des)h(are)g(usually)f(considered)h(in)g +(a)f(b)q(est-to-w)o(orst)h(ordering,)f(implying)e(that)i(the)h +(left-most)e(branc)o(hes)j(at)e(a)h(no)q(de)0 2496 y(ha)o(v)o(e)g(a)g +(higher)g(probabilit)o(y)e(of)i(b)q(eing)g(useful)g(than)g(the)h(righ)o +(t-most)d(ones.)22 b(F)m(or)15 b(Sla)o(v)o(e)f(2)h(in)g(Figure)g(5,)f +(lea)o(v)o(es)i(2)e(and)h(5)0 2545 y(ha)o(v)o(e)f(b)q(oth)h(b)q(een)g +(searc)o(hed)h(to)e(5)g(ply)m(,)f(but)h(leaf)g(2)g(is)g(b)q(eing)h +(searc)o(hed)g(in)f(the)h(sla)o(v)o(e)f(to)g(6)g(ply)g(since)h(it)f(is) +g(further)h(left)f(in)0 2595 y(the)g(tree)i(than)d(leaf)h(5.)62 +2645 y(A)g(no)q(de)h(that)f(has)g(a)f(priorit)o(y)h(of)f(zero)i(\(b)q +(ecause)h(it)d(is)h(no)g(longer)f(part)i(of)e(the)h(master's)g(tree\))h +(will)e(not)h(b)q(e)g(selected)0 2695 y(for)f(further)h(searc)o(h.)19 +b(F)m(or)13 b(Sla)o(v)o(e)g(3,)g(w)o(e)g(notice)h(that)f(Leaf)g(8)g(w)o +(ould)g(b)q(e)h(searc)o(hed)h(if)d(it)h(had)h(b)q(een)g(visited)f(b)o +(y)g(the)h(master)965 2790 y(8)p eop +%%Page: 9 11 +9 10 bop 0 42 a Fk(on)18 b(the)g(latest)g(pass.)30 b(Leaf)18 +b(8)f(is)h(ignored)f(b)o(y)h(the)g(sc)o(heduling)g(algorithm)d(b)q +(ecause)20 b(it)d(is)h(not)g(curren)o(tly)g(part)g(of)f(the)0 +91 y(master's)c(tree.)62 141 y(Before)19 b(a)f(searc)o(h)h(can)f(b)q(e) +h(executed,)h(an)e Fj(\013\014)i Fk(searc)o(h)f(windo)o(w)e(m)o(ust)g +(b)q(e)i(generated)g(b)o(y)f(the)g(sla)o(v)o(e.)30 b(The)18 +b(master)0 191 y(con)o(tin)o(ually)f(advises)j(the)f(sla)o(v)o(es)g(of) +g(the)g(leaf)s('s)f(lo)q(cation)h(within)f(the)h(master's)g(tree,)i +(and)d(the)i(h)o(yp)q(othetical)f(v)n(alue)0 241 y(of)e(the)g(ro)q(ot)h +(of)e(the)i(master's)f(tree.)29 b(Although)17 b(the)h(width)f(of)f(the) +i(searc)o(h)g(windo)o(w)f(is)g(application-dep)q(enden)o(t,)h(one)0 +291 y(normally)12 b(w)o(an)o(ts)i(to)g(cen)o(ter)i(the)f(windo)o(w)f +(around)g(this)h(h)o(yp)q(othesized)g(ro)q(ot)g(v)n(alue,)e(plus)h(or)h +(min)o(us)d(a)j(factor)f(to)g(re\015ect)0 340 y(the)g(uncertain)o(t)o +(y)h(in)e(it.)62 390 y(There)19 b(are)e(three)h(t)o(yp)q(es)g(of)f(up)q +(date)h(messages)f(that)g(a)g(sla)o(v)o(e)g(receiv)o(es)h(from)e(the)h +(master:)24 b(a)17 b(new)h(piece)g(of)e(w)o(ork)0 440 +y(has)g(b)q(een)h(added)f(to)f(the)i(sla)o(v)o(e)e(pro)q(cessor's)j +(APHID)e(table,)f(the)i(lo)q(cation)d(of)h(a)h(leaf)f(no)q(de)h(within) +f(the)i(master's)e(tree)0 490 y(has)g(c)o(hanged)h(\(c)o(hanging)e(the) +i(secondary)g(w)o(ork)e(sc)o(heduling)i(criterion\),)f(and)g(a)g +(noti\014cation)f(of)g(a)h(\\bad)g(b)q(ound")f(on)h(a)0 +540 y(no)q(de.)21 b(The)15 b(bad)g(b)q(ound)g(message)f(alerts)i(the)f +(sla)o(v)o(e)f(that)h(a)g(p)q(osition's)f(searc)o(h)i(information)c(is) +i(not)h(su\016cien)o(t)g(to)g(sa)o(v)o(e)0 589 y(the)g(no)q(de)h(from)d +(b)q(eing)h(uncertain.)22 b(In)15 b(this)g(case,)g(the)h(sla)o(v)o(e)e +(m)o(ust)g(re-searc)o(h)i(the)g(no)q(de)f(with)f(the)i +Fj(\013\014)h Fk(searc)o(h)f(windo)o(w)0 639 y(sen)o(t)f(b)o(y)e(the)i +(master)e(to)h(the)g(ply)g(requested.)62 689 y(As)19 +b(a)g(p)q(erformance)f(impro)o(v)o(emen)o(t,)f(w)o(e)i(w)o(an)o(t)f(to) +h(force)g(the)g(sla)o(v)o(e)f(to)h(alw)o(a)o(ys)f(w)o(ork)g(on)g(no)q +(des)i(for)e(the)h(curren)o(t)0 739 y(searc)o(h)c(depth)f(of)f(the)h +(master.)j(When)d(all)e(the)i(sla)o(v)o(e's)f(w)o(ork)h(has)f(b)q(een)i +(searc)o(hed)g(to)e(the)h(required)h(depth,)f(rather)g(than)0 +789 y(b)q(ecoming)h(idle,)g(it)g(starts)i(re-searc)o(hing)g(its)f(w)o +(ork)f(sp)q(eculativ)o(ely)h(an)g(additional)e(ply)h(deep)q(er,)i(in)f +(an)o(ticipation)e(of)h(the)0 839 y(next)g(iteration)f(\(depth)h +Fj(d)9 b Fk(+)h(1\).)20 b(When)14 b(sp)q(eculativ)o(e)h(searc)o(h)h(is) +e(running)g(on)g(a)h(pro)q(cessor,)g(the)g(sla)o(v)o(e)g(routinely)f(c) +o(hec)o(ks)0 888 y(the)j(comm)o(unicati)o(on)c(c)o(hannel)j(for)g +(messages)g(from)f(the)h(master.)24 b(If)16 b(the)h(sla)o(v)o(e)e +(receiv)o(es)j(a)e(new)g(piece)h(of)f(w)o(ork)f(to)h(do)0 +938 y(at)h Fj(d)11 b Fh(\000)h Fj(d)153 923 y Fa(0)181 +938 y Fk(ply)17 b(or)g(less,)h(the)g(sp)q(eculativ)o(e)f(searc)o(h)i +(is)e(imm)o(ediately)d(ab)q(orted)k(and)f(con)o(trol)g(is)g(returned)i +(to)e(the)g(sla)o(v)o(e's)0 988 y(sc)o(heduling)d(algorithm.)0 +1104 y Fv(3.4)56 b(Load)18 b(Balancing)0 1181 y Fk(Although)13 +b(the)h(master)e(attempts)h(to)h(giv)o(e)e(an)h(equal)g(amoun)o(t)f(of) +h(w)o(ork)g(to)g(eac)o(h)g(sla)o(v)o(e)g(in)g(APHID,)g(neither)i(the)e +(master)0 1231 y(nor)i(the)h(sla)o(v)o(e)e(can)i(predict)g(the)f(amoun) +o(t)f(of)g(e\013ort)i(required)g(to)f(complete)f(a)h +Fj(d)9 b Fh(\000)i Fj(d)1377 1216 y Fa(0)1403 1231 y +Fk(ply)j(searc)o(h)j(for)d(a)h(giv)o(en)g(piece)h(of)0 +1280 y(w)o(ork.)i(In)13 b(games)f(suc)o(h)i(as)f(c)o(hess,)i(there)f +(are)g(no)f(completely)f(reliable)h(indicators)g(of)g(the)h +(\\e\013ort")f(required)i(for)d(a)h(giv)o(en)0 1330 y(searc)o(h.)19 +b(Th)o(us,)14 b(load)f(im)o(balances)f(can)i(o)q(ccur)h(based)g(on)e +(the)i(allo)q(cation)d(of)h(w)o(ork)h(to)g(sla)o(v)o(es.)62 +1380 y(The)j(master)g(kno)o(ws)f(all)g(of)g(the)i(information)13 +b(ab)q(out)k(ho)o(w)g(man)o(y)d(uncertain)k(no)q(des)g(it)e(is)h(w)o +(aiting)e(for)h(from)f(eac)o(h)0 1430 y(sla)o(v)o(e.)24 +b(Th)o(us,)16 b(the)g(master)g(has)g(information)d(on)i(when)i(to)e(mo) +o(v)o(e)g(lea)o(v)o(es)h(from)e(the)i Fj(d)1405 1415 +y Fa(0)1432 1430 y Fk(ply)g(tree)h(from)d(an)i Fi(overworke)n(d)0 +1480 y(slave)f Fk(\(a)g(sla)o(v)o(e)g(with)g(a)g(large)h(n)o(um)o(b)q +(er)e(of)h(uncertain)h(no)q(des\))g(to)f(an)g Fi(underworke)n(d)i +(slave)e Fk(\(a)g(sla)o(v)o(e)g(with)g(no)g(uncertain)0 +1529 y(no)q(des\).)24 b(This)15 b(yields)g(a)g(tradeo\013)h(b)q(et)o(w) +o(een)h(faster)f(con)o(v)o(ergence)h(for)e(a)h(giv)o(en)f(ply)f(searc)o +(h)j(of)e(the)h(tree)h(and)e(additional)0 1579 y(searc)o(h)g(o)o(v)o +(erhead.)0 1695 y Fv(3.5)56 b(Implem)o(en)n(tation)0 +1772 y Fk(The)17 b(APHID)f(algorithm)e(has)j(b)q(een)g(written)g(as)g +(an)f(application-indep)q(enden)o(t)g(library)g(of)f(C)i(routines.)26 +b(The)17 b(library)0 1822 y(w)o(as)12 b(written)g(to)f(pro)o(vide)h +(minim)o(al)c(in)o(terv)o(en)o(tion)j(in)o(to)g(a)h(w)o(orking)e(v)o +(ersion)i(of)f(sequen)o(tial)h Fj(\013\014)i Fk(\(or)e(its)f(common)e +(v)n(arian)o(ts:)0 1872 y(NegaScout[20,)k(23)o(])g(and)g(Principal)g(V) +m(ariation)f(Searc)o(h)i(\(PVS\))g([17)o(]\).)k(Since)c(the)g(library)e +(is)i(application-indep)q(enden)o(t,)0 1922 y(a)c(p)q(oten)o(tial)g +(user)i(m)o(ust)e(write)g(a)h(few)f(application-dep)q(enden)o(t)h +(routines)g(\(suc)o(h)h(as)f(mo)o(v)o(e)d(format,)h(ho)o(w)i(to)f(mak)o +(e/unmak)o(e)0 1971 y(mo)o(v)o(es,)j(p)q(osition)i(format,)e(setting)i +(a)g(windo)o(w)f(for)g(a)h(sla)o(v)o(e's)f(searc)o(h,)i +Fi(etc)p Fk(.\).)21 b(APHID's)15 b(message)g(passing)g(w)o(as)f +(written)0 2021 y(using)g(PVM)g([28)o(])f(to)h(allo)o(w)e(for)i(the)g +(maxim)o(um)9 b(p)q(ortabilit)o(y)k(among)e(a)o(v)n(ailable)h(hardw)o +(are.)62 2071 y(T)m(o)h(parallelize)f(a)i(sequen)o(tial)f +Fj(\013\014)j Fk(program,)11 b(the)j(user)g(mo)q(di\014es)f(his)g(or)g +(her)h(searc)o(h)h(routine)f(as)f(sho)o(wn)g(in)g(Figure)h(6.)0 +2121 y(The)h(APHID)f(c)o(hanges)h(are)f(mark)o(ed)f(b)o(y)h(shading,)f +(and)h(easily)g(\014t)g(in)o(to)g(standard)g Fj(\013\014)j +Fk(framew)o(orks.)g(This)d(one)h(piece)g(of)0 2171 y(co)q(de)g +(functions)f(as)g(the)g(searc)o(h)h(algorithm)c(for)j(b)q(oth)g(the)g +(master)g(and)g(the)g(sla)o(v)o(e)g(pro)q(cesses.)62 +2220 y(There)i(are)f(a)g(few)f(additional)f(calls)i(that)f(ha)o(v)o(e)h +(to)f(b)q(e)i(added)f(to)f(the)i(iterativ)o(e)e(deep)q(ening)i(routine) +f(that)g(calls)f Fj(\013\014)r Fk(,)0 2270 y(outlined)f(in)h(Figure)g +(7.)62 2320 y(Initially)m(,)c(it)i(w)o(as)g(an)o(ticipated)g(that)h +(all)e(users)j(w)o(ould)d(w)o(an)o(t)h(to)h(searc)o(h)g(in)f(parallel)f +(from)g(the)i(ro)q(ot)f(of)g(the)h(game)e(tree.)0 2370 +y(Ho)o(w)o(ev)o(er,)i(there)i(are)e(some)f(programs)g(that)h(wish)g(to) +g(handle)g(the)h(ro)q(ot)f(of)f(the)i(game)d(tree)k(in)d(a)h +(di\013eren)o(t)h(w)o(a)o(y)e(than)h(the)0 2420 y(other)j(lea)o(v)o(es) +f(of)f(the)i(searc)o(h)g(tree)g(\(b)o(y)f(adding)f(calls)h(to)g(the)g +(time-con)o(trol)f(mec)o(hanism,)e(and)j(sp)q(ecial)g(handling)f(of)g +(the)0 2470 y Fj(\013\014)19 b Fk(searc)o(h)f(windo)o(w\).)25 +b(APHID)17 b(has)g(b)q(een)h(generalized)f(to)g(in)o(tegrate)g(with)f +(this)h(st)o(yle)g(of)f(searc)o(hing)h(the)g(game)e(tree;)0 +2519 y(Figure)e(8)f(illustrates)g(the)h(c)o(hanges)g(necessary)m(.)20 +b(The)12 b(only)g(signi\014can)o(t)g(c)o(hange)h(from)d(Figure)j(7)f +(is)g(the)h(addition)f(of)g(a)g(call)0 2569 y(to)i Fb(aphid)p +164 2569 14 2 v 14 w(intnode)p 332 2569 V 15 w(premove)p +Fk(.)62 2619 y(There)h(are)g(t)o(w)o(o)e(calls)g(that)h(are)h(inserted) +g(in)o(to)e(the)i(main)c(program,)h(whic)o(h)i(are)g(illustrated)g(in)f +(Figure)h(9.)965 2790 y(9)p eop +%%Page: 10 12 +10 11 bop 482 17 a + 15582380 33154007 1184071 3025960 24010342 51178209 startTexFig + 482 17 a +%%BeginDocument: code4.ps + +/arrowHeight 10 def +/arrowWidth 5 def + +/IdrawDict 51 dict def +IdrawDict begin + +/reencodeISO { +dup dup findfont dup length dict begin +{ 1 index /FID ne { def }{ pop pop } ifelse } forall +/Encoding ISOLatin1Encoding def +currentdict end definefont +} def + +/ISOLatin1Encoding [ +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright +/parenleft/parenright/asterisk/plus/comma/minus/period/slash +/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon +/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N +/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright +/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m +/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/dotlessi/grave/acute/circumflex/tilde/macron/breve +/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut +/ogonek/caron/space/exclamdown/cent/sterling/currency/yen/brokenbar +/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot +/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior +/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine +/guillemotright/onequarter/onehalf/threequarters/questiondown +/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla +/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex +/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis +/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute +/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis +/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave +/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex +/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis +/yacute/thorn/ydieresis +] def +/Courier reencodeISO def + +/none null def +/numGraphicParameters 17 def +/stringLimit 65535 def + +/Begin { +save +numGraphicParameters dict begin +} def + +/End { +end +restore +} def + +/SetB { +dup type /nulltype eq { +pop +false /brushRightArrow idef +false /brushLeftArrow idef +true /brushNone idef +} { +/brushDashOffset idef +/brushDashArray idef +0 ne /brushRightArrow idef +0 ne /brushLeftArrow idef +/brushWidth idef +false /brushNone idef +} ifelse +} def + +/SetCFg { +/fgblue idef +/fggreen idef +/fgred idef +} def + +/SetCBg { +/bgblue idef +/bggreen idef +/bgred idef +} def + +/SetF { +/printSize idef +/printFont idef +} def + +/SetP { +dup type /nulltype eq { +pop true /patternNone idef +} { +dup -1 eq { +/patternGrayLevel idef +/patternString idef +} { +/patternGrayLevel idef +} ifelse +false /patternNone idef +} ifelse +} def + +/BSpl { +0 begin +storexyn +newpath +n 1 gt { +0 0 0 0 0 0 1 1 true subspline +n 2 gt { +0 0 0 0 1 1 2 2 false subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 2 copy false subspline +} if +n 2 sub dup n 1 sub dup 2 copy 2 copy false subspline +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Circ { +newpath +0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/CBSpl { +0 begin +dup 2 gt { +storexyn +newpath +n 1 sub dup 0 0 1 1 2 2 true subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 0 0 false subspline +n 2 sub dup n 1 sub dup 0 0 1 1 false subspline +patternNone not { ifill } if +brushNone not { istroke } if +} { +Poly +} ifelse +end +} dup 0 4 dict put def + +/Elli { +0 begin +newpath +4 2 roll +translate +scale +0 0 1 0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 1 dict put def + +/Line { +0 begin +2 storexyn +newpath +x 0 get y 0 get moveto +x 1 get y 1 get lineto +brushNone not { istroke } if +0 0 1 1 leftarrow +0 0 1 1 rightarrow +end +} dup 0 4 dict put def + +/MLine { +0 begin +storexyn +newpath +n 1 gt { +x 0 get y 0 get moveto +1 1 n 1 sub { +/i exch def +x i get y i get lineto +} for +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Poly { +3 1 roll +newpath +moveto +-1 add +{ lineto } repeat +closepath +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/Rect { +0 begin +/t exch def +/r exch def +/b exch def +/l exch def +newpath +l b moveto +l t lineto +r t lineto +r b lineto +closepath +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 4 dict put def + +/Text { +ishow +} def + +/idef { +dup where { pop pop pop } { exch def } ifelse +} def + +/ifill { +0 begin +gsave +patternGrayLevel -1 ne { +fgred bgred fgred sub patternGrayLevel mul add +fggreen bggreen fggreen sub patternGrayLevel mul add +fgblue bgblue fgblue sub patternGrayLevel mul add setrgbcolor +eofill +} { +eoclip +originalCTM setmatrix +pathbbox /t exch def /r exch def /b exch def /l exch def +/w r l sub ceiling cvi def +/h t b sub ceiling cvi def +/imageByteWidth w 8 div ceiling cvi def +/imageHeight h def +bgred bggreen bgblue setrgbcolor +eofill +fgred fggreen fgblue setrgbcolor +w 0 gt h 0 gt and { +l b translate w h scale +w h true [w 0 0 h neg 0 h] { patternproc } imagemask +} if +} ifelse +grestore +end +} dup 0 8 dict put def + +/istroke { +gsave +brushDashOffset -1 eq { +[] 0 setdash +1 setgray +} { +brushDashArray brushDashOffset setdash +fgred fggreen fgblue setrgbcolor +} ifelse +brushWidth setlinewidth +originalCTM setmatrix +stroke +grestore +} def + +/ishow { +0 begin +gsave +fgred fggreen fgblue setrgbcolor +/fontDict printFont printSize scalefont dup setfont def +/descender fontDict begin 0 [FontBBox] 1 get FontMatrix end +transform exch pop def +/vertoffset 1 printSize sub descender sub def { +0 vertoffset moveto show +/vertoffset vertoffset printSize sub def +} forall +grestore +end +} dup 0 3 dict put def +/patternproc { +0 begin +/patternByteLength patternString length def +/patternHeight patternByteLength 8 mul sqrt cvi def +/patternWidth patternHeight def +/patternByteWidth patternWidth 8 idiv def +/imageByteMaxLength imageByteWidth imageHeight mul +stringLimit patternByteWidth sub min def +/imageMaxHeight imageByteMaxLength imageByteWidth idiv patternHeight idiv +patternHeight mul patternHeight max def +/imageHeight imageHeight imageMaxHeight sub store +/imageString imageByteWidth imageMaxHeight mul patternByteWidth add string def +0 1 imageMaxHeight 1 sub { +/y exch def +/patternRow y patternByteWidth mul patternByteLength mod def +/patternRowString patternString patternRow patternByteWidth getinterval def +/imageRow y imageByteWidth mul def +0 patternByteWidth imageByteWidth 1 sub { +/x exch def +imageString imageRow x add patternRowString putinterval +} for +} for +imageString +end +} dup 0 12 dict put def + +/min { +dup 3 2 roll dup 4 3 roll lt { exch } if pop +} def + +/max { +dup 3 2 roll dup 4 3 roll gt { exch } if pop +} def + +/midpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 x1 add 2 div +y0 y1 add 2 div +end +} dup 0 4 dict put def + +/thirdpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 2 mul x1 add 3 div +y0 2 mul y1 add 3 div +end +} dup 0 4 dict put def + +/subspline { +0 begin +/movetoNeeded exch def +y exch get /y3 exch def +x exch get /x3 exch def +y exch get /y2 exch def +x exch get /x2 exch def +y exch get /y1 exch def +x exch get /x1 exch def +y exch get /y0 exch def +x exch get /x0 exch def +x1 y1 x2 y2 thirdpoint +/p1y exch def +/p1x exch def +x2 y2 x1 y1 thirdpoint +/p2y exch def +/p2x exch def +x1 y1 x0 y0 thirdpoint +p1x p1y midpoint +/p0y exch def +/p0x exch def +x2 y2 x3 y3 thirdpoint +p2x p2y midpoint +/p3y exch def +/p3x exch def +movetoNeeded { p0x p0y moveto } if +p1x p1y p2x p2y p3x p3y curveto +end +} dup 0 17 dict put def + +/storexyn { +/n exch def +/y n array def +/x n array def +n 1 sub -1 0 { +/i exch def +y i 3 2 roll put +x i 3 2 roll put +} for +} def + +/SSten { +fgred fggreen fgblue setrgbcolor +dup true exch 1 0 0 -1 0 6 -1 roll matrix astore +} def + +/FSten { +dup 3 -1 roll dup 4 1 roll exch +newpath +0 0 moveto +dup 0 exch lineto +exch dup 3 1 roll exch lineto +0 lineto +closepath +bgred bggreen bgblue setrgbcolor +eofill +SSten +} def + +/Rast { +exch dup 3 1 roll 1 0 0 -1 0 6 -1 roll matrix astore +} def + + +/arrowhead { +0 begin +transform originalCTM itransform +/taily exch def +/tailx exch def +transform originalCTM itransform +/tipy exch def +/tipx exch def +/dy tipy taily sub def +/dx tipx tailx sub def +/angle dx 0 ne dy 0 ne or { dy dx atan } { 90 } ifelse def +gsave +originalCTM setmatrix +tipx tipy translate +angle rotate +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +patternNone not { +originalCTM setmatrix +/padtip arrowHeight 2 exp 0.25 arrowWidth 2 exp mul add sqrt brushWidth mul +arrowWidth div def +/padtail brushWidth 2 div def +tipx tipy translate +angle rotate +padtip 0 translate +arrowHeight padtip add padtail add arrowHeight div dup scale +arrowheadpath +ifill +} if +brushNone not { +originalCTM setmatrix +tipx tipy translate +angle rotate +arrowheadpath +istroke +} if +grestore +end +} dup 0 9 dict put def + +/arrowheadpath { +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +} def + +/leftarrow { +0 begin +y exch get /taily exch def +x exch get /tailx exch def +y exch get /tipy exch def +x exch get /tipx exch def +brushLeftArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + +/rightarrow { +0 begin +y exch get /tipy exch def +x exch get /tipx exch def +y exch get /taily exch def +x exch get /tailx exch def +brushRightArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + + +%I Idraw 10 Grid 6 6 + + +Begin +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 0.799705 0 0 0.799705 0 0 ] concat +/originalCTM matrix currentmatrix def + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 0.99763 -0 -0 3.92857 18.0284 -414.643 ] concat +%I +12 231 432 243 Rect +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 0.99763 -0 -0 3.07143 18.0284 -128.357 ] concat +%I +12 231 432 243 Rect +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 -0 -0 1 18 477 ] concat +%I +12 231 432 243 Rect +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 -0 -0 1 18 -57 ] concat +%I +12 231 432 243 Rect +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 -0 -0 1 18 -27 ] concat +%I +12 231 432 243 Rect +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 -0 -0 1 18 177 ] concat +%I +12 231 432 243 Rect +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 -0 -0 1 18 219 ] concat +%I +12 231 432 243 Rect +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 -0 -0 1 18 81 ] concat +%I +12 231 432 243 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 42 957 ] concat +%I +[ +(int PVS\(p, alpha, beta, depth, plytogo\)) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 42 945 ] concat +%I +[ +(position p;) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 42 933 ] concat +%I +[ +(int alpha, beta;) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 42 921 ] concat +%I +[ +(int depth, plytogo;) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 42 909 ] concat +%I +[ +({) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 873 ] concat +%I +[ +(int h_length; /* ply position previously searched to */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 897 ] concat +%I +[ +(char *p_hash; /* pointer to hash value */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 885 ] concat +%I +[ +(char *p_key; /* pointer to hash table "lock" */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 861 ] concat +%I +[ +(int h_score; /* score for h_length ply */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 849 ] concat +%I +[ +(int h_flag; /* VALID, LBOUND or UBOUND */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 837 ] concat +%I +[ +(move *h_move; /* recommended move for h_length ply */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 825 ] concat +%I +[ +(int width; /* number of moves in move list */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 813 ] concat +%I +[ +(int i; /* move counter */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 801 ] concat +%I +[ +(int value; /* score of child PVS call */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 783 ] concat +%I +[ +(/* Generate hash value and key for this position */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 771 ] concat +%I +[ +(generate_hash\(p, p_hash, p_key\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 759 ] concat +%I +[ +(/* Fetch information from local transposition table */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 747 ] concat +%I +[ +(retrieve\(p_hash, p_kley, h_length, h_score, h_flag, h_move\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 729 ] concat +%I +[ +(/* If we have searched position deep enough, use score info */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 705 ] concat +%I +[ +(if \(flag == VALID\) { return\(h_score\); }) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 669 ] concat +%I +[ +(if \(alpha >= beta\) { return\(h_score\); }) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 657 ] concat +%I +[ +(}) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 639 ] concat +%I +[ +(/* Evaluate position if at bottom of the tree */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 591 ] concat +%I +[ +(}) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 573 ] concat +%I +[ +(/* Generate move list, evaluate position if no moves */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 549 ] concat +%I +[ +(if \(width == 0\) { return\(evaluate\(p\)\); }) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 501 ] concat +%I +[ +(}) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 681 ] concat +%I +[ +(if \(flag == UBOUND\) { beta = min\(beta,h_score\); }) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 693 ] concat +%I +[ +(if \(flag == LBOUND\) { alpha = max\(alpha,h_score\); }) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 483 ] concat +%I +[ +(score = -INFINITY;) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 471 ] concat +%I +[ +(lower = alpha; upper = beta;) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 441 ] concat +%I +[ +(/* Loop through moves in move list */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 429 ] concat +%I +[ +(for\(i=1; \(i <= width && score <= beta\); i++ \) {) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 405 ] concat +%I +[ +(make_move\(p, move[i]\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 387 ] concat +%I +[ +(value = -PVS\(p, -upper, -lower, depth+1, plytogo-1\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 375 ] concat +%I +[ +(if \(value > score && i > 1\) {) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 120 363 ] concat +%I +[ +(value = -PVS\(p, -beta, -value, depth+1, plytogo-1\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 351 ] concat +%I +[ +(}) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 333 ] concat +%I +[ +(unmake_move\(p,move[i]\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 309 ] concat +%I +[ +(if \(value > score\) {) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 120 297 ] concat +%I +[ +(score = value;) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 120 285 ] concat +%I +[ +(move_opt = move[i];) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 273 ] concat +%I +[ +(}) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 255 ] concat +%I +[ +(/* Set bounds for next search */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 243 ] concat +%I +[ +(lower = max\(alpha, score\); upper = lower+1;) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 231 ] concat +%I +[ +(} /* for all moves */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 195 ] concat +%I +[ +(/* Write information into local trans. table */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 171 ] concat +%I +[ +(h_flag = VALID;) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 561 ] concat +%I +[ +(width = generate\(p, h_move\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 159 ] concat +%I +[ +(if \(score <= alpha\) { h_flag = UBOUND; }) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 147 ] concat +%I +[ +(if \(score >= beta\) { h_flag = LBOUND; }) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 135 ] concat +%I +[ +(if \(h_length <= plytogo\) {) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 123 ] concat +%I +[ +(store\(p_hash, p_key, plytogo, score, h_flag, move_opt\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 111 ] concat +%I +[ +(}) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 99 ] concat +%I +[ +(return\(score\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 48 87 ] concat +%I +[ +(} /* function PVS */) +] Text +End + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 2 -0 -0 2 -190 -34 ] concat +%I +107 47 323 503 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 627 ] concat +%I +[ +(if \(plytogo <= 0\) { return\(evaluate\(p\)\); }) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 717 ] concat +%I +[ +(if \(aphid_master\(\) == FALSE && h_length == plytogo\) {) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 615 ] concat +%I +[ +(if \(aphid_horizon\(depth\)\) {) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 537 ] concat +%I +[ +(if \(aphid_checkalarm\(\) != FALSE\) {) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 459 ] concat +%I +[ +(aphid_intnode_start\(depth, p_hash, p_key\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 417 ] concat +%I +[ +(aphid_intnode_move\(depth, &\(move[i]\)\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 321 ] concat +%I +[ +(aphid_intnode_update\(depth, value\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 213 ] concat +%I +[ +(if \(score >= beta\) { aphid_intnode_fixbound\(depth\); }) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 183 ] concat +%I +[ +(aphid_intnode_end\(depth, &score\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 525 ] concat +%I +[ +(terminate_search = TRUE;) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 603 ] concat +%I +[ +(return\(aphid_eval_leaf\(alpha,beta,depth,p_hash,p_key\)\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 513 ] concat +%I +[ +(return\(0\); /* Should exit PVS quickly when alarm on */) +] Text +End + +End %I eop + +showpage + + +end +%%EndDocument + + endTexFig + 395 2208 a Fk(Figure)14 b(6:)k(Ho)o(w)13 b(APHID)h(Mo)q(di\014es)g(a)g +(T)o(ypical)f(PVS)h(Implemen)o(tation)459 2284 y + 16292818 4736286 1184071 44665815 23615651 51178209 startTexFig + 459 +2284 a +%%BeginDocument: code5.ps + +/arrowHeight 10 def +/arrowWidth 5 def + +/IdrawDict 51 dict def +IdrawDict begin + +/reencodeISO { +dup dup findfont dup length dict begin +{ 1 index /FID ne { def }{ pop pop } ifelse } forall +/Encoding ISOLatin1Encoding def +currentdict end definefont +} def + +/ISOLatin1Encoding [ +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright +/parenleft/parenright/asterisk/plus/comma/minus/period/slash +/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon +/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N +/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright +/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m +/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/dotlessi/grave/acute/circumflex/tilde/macron/breve +/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut +/ogonek/caron/space/exclamdown/cent/sterling/currency/yen/brokenbar +/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot +/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior +/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine +/guillemotright/onequarter/onehalf/threequarters/questiondown +/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla +/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex +/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis +/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute +/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis +/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave +/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex +/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis +/yacute/thorn/ydieresis +] def +/Courier reencodeISO def + +/none null def +/numGraphicParameters 17 def +/stringLimit 65535 def + +/Begin { +save +numGraphicParameters dict begin +} def + +/End { +end +restore +} def + +/SetB { +dup type /nulltype eq { +pop +false /brushRightArrow idef +false /brushLeftArrow idef +true /brushNone idef +} { +/brushDashOffset idef +/brushDashArray idef +0 ne /brushRightArrow idef +0 ne /brushLeftArrow idef +/brushWidth idef +false /brushNone idef +} ifelse +} def + +/SetCFg { +/fgblue idef +/fggreen idef +/fgred idef +} def + +/SetCBg { +/bgblue idef +/bggreen idef +/bgred idef +} def + +/SetF { +/printSize idef +/printFont idef +} def + +/SetP { +dup type /nulltype eq { +pop true /patternNone idef +} { +dup -1 eq { +/patternGrayLevel idef +/patternString idef +} { +/patternGrayLevel idef +} ifelse +false /patternNone idef +} ifelse +} def + +/BSpl { +0 begin +storexyn +newpath +n 1 gt { +0 0 0 0 0 0 1 1 true subspline +n 2 gt { +0 0 0 0 1 1 2 2 false subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 2 copy false subspline +} if +n 2 sub dup n 1 sub dup 2 copy 2 copy false subspline +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Circ { +newpath +0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/CBSpl { +0 begin +dup 2 gt { +storexyn +newpath +n 1 sub dup 0 0 1 1 2 2 true subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 0 0 false subspline +n 2 sub dup n 1 sub dup 0 0 1 1 false subspline +patternNone not { ifill } if +brushNone not { istroke } if +} { +Poly +} ifelse +end +} dup 0 4 dict put def + +/Elli { +0 begin +newpath +4 2 roll +translate +scale +0 0 1 0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 1 dict put def + +/Line { +0 begin +2 storexyn +newpath +x 0 get y 0 get moveto +x 1 get y 1 get lineto +brushNone not { istroke } if +0 0 1 1 leftarrow +0 0 1 1 rightarrow +end +} dup 0 4 dict put def + +/MLine { +0 begin +storexyn +newpath +n 1 gt { +x 0 get y 0 get moveto +1 1 n 1 sub { +/i exch def +x i get y i get lineto +} for +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Poly { +3 1 roll +newpath +moveto +-1 add +{ lineto } repeat +closepath +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/Rect { +0 begin +/t exch def +/r exch def +/b exch def +/l exch def +newpath +l b moveto +l t lineto +r t lineto +r b lineto +closepath +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 4 dict put def + +/Text { +ishow +} def + +/idef { +dup where { pop pop pop } { exch def } ifelse +} def + +/ifill { +0 begin +gsave +patternGrayLevel -1 ne { +fgred bgred fgred sub patternGrayLevel mul add +fggreen bggreen fggreen sub patternGrayLevel mul add +fgblue bgblue fgblue sub patternGrayLevel mul add setrgbcolor +eofill +} { +eoclip +originalCTM setmatrix +pathbbox /t exch def /r exch def /b exch def /l exch def +/w r l sub ceiling cvi def +/h t b sub ceiling cvi def +/imageByteWidth w 8 div ceiling cvi def +/imageHeight h def +bgred bggreen bgblue setrgbcolor +eofill +fgred fggreen fgblue setrgbcolor +w 0 gt h 0 gt and { +l b translate w h scale +w h true [w 0 0 h neg 0 h] { patternproc } imagemask +} if +} ifelse +grestore +end +} dup 0 8 dict put def + +/istroke { +gsave +brushDashOffset -1 eq { +[] 0 setdash +1 setgray +} { +brushDashArray brushDashOffset setdash +fgred fggreen fgblue setrgbcolor +} ifelse +brushWidth setlinewidth +originalCTM setmatrix +stroke +grestore +} def + +/ishow { +0 begin +gsave +fgred fggreen fgblue setrgbcolor +/fontDict printFont printSize scalefont dup setfont def +/descender fontDict begin 0 [FontBBox] 1 get FontMatrix end +transform exch pop def +/vertoffset 1 printSize sub descender sub def { +0 vertoffset moveto show +/vertoffset vertoffset printSize sub def +} forall +grestore +end +} dup 0 3 dict put def +/patternproc { +0 begin +/patternByteLength patternString length def +/patternHeight patternByteLength 8 mul sqrt cvi def +/patternWidth patternHeight def +/patternByteWidth patternWidth 8 idiv def +/imageByteMaxLength imageByteWidth imageHeight mul +stringLimit patternByteWidth sub min def +/imageMaxHeight imageByteMaxLength imageByteWidth idiv patternHeight idiv +patternHeight mul patternHeight max def +/imageHeight imageHeight imageMaxHeight sub store +/imageString imageByteWidth imageMaxHeight mul patternByteWidth add string def +0 1 imageMaxHeight 1 sub { +/y exch def +/patternRow y patternByteWidth mul patternByteLength mod def +/patternRowString patternString patternRow patternByteWidth getinterval def +/imageRow y imageByteWidth mul def +0 patternByteWidth imageByteWidth 1 sub { +/x exch def +imageString imageRow x add patternRowString putinterval +} for +} for +imageString +end +} dup 0 12 dict put def + +/min { +dup 3 2 roll dup 4 3 roll lt { exch } if pop +} def + +/max { +dup 3 2 roll dup 4 3 roll gt { exch } if pop +} def + +/midpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 x1 add 2 div +y0 y1 add 2 div +end +} dup 0 4 dict put def + +/thirdpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 2 mul x1 add 3 div +y0 2 mul y1 add 3 div +end +} dup 0 4 dict put def + +/subspline { +0 begin +/movetoNeeded exch def +y exch get /y3 exch def +x exch get /x3 exch def +y exch get /y2 exch def +x exch get /x2 exch def +y exch get /y1 exch def +x exch get /x1 exch def +y exch get /y0 exch def +x exch get /x0 exch def +x1 y1 x2 y2 thirdpoint +/p1y exch def +/p1x exch def +x2 y2 x1 y1 thirdpoint +/p2y exch def +/p2x exch def +x1 y1 x0 y0 thirdpoint +p1x p1y midpoint +/p0y exch def +/p0x exch def +x2 y2 x3 y3 thirdpoint +p2x p2y midpoint +/p3y exch def +/p3x exch def +movetoNeeded { p0x p0y moveto } if +p1x p1y p2x p2y p3x p3y curveto +end +} dup 0 17 dict put def + +/storexyn { +/n exch def +/y n array def +/x n array def +n 1 sub -1 0 { +/i exch def +y i 3 2 roll put +x i 3 2 roll put +} for +} def + +/SSten { +fgred fggreen fgblue setrgbcolor +dup true exch 1 0 0 -1 0 6 -1 roll matrix astore +} def + +/FSten { +dup 3 -1 roll dup 4 1 roll exch +newpath +0 0 moveto +dup 0 exch lineto +exch dup 3 1 roll exch lineto +0 lineto +closepath +bgred bggreen bgblue setrgbcolor +eofill +SSten +} def + +/Rast { +exch dup 3 1 roll 1 0 0 -1 0 6 -1 roll matrix astore +} def + + +/arrowhead { +0 begin +transform originalCTM itransform +/taily exch def +/tailx exch def +transform originalCTM itransform +/tipy exch def +/tipx exch def +/dy tipy taily sub def +/dx tipx tailx sub def +/angle dx 0 ne dy 0 ne or { dy dx atan } { 90 } ifelse def +gsave +originalCTM setmatrix +tipx tipy translate +angle rotate +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +patternNone not { +originalCTM setmatrix +/padtip arrowHeight 2 exp 0.25 arrowWidth 2 exp mul add sqrt brushWidth mul +arrowWidth div def +/padtail brushWidth 2 div def +tipx tipy translate +angle rotate +padtip 0 translate +arrowHeight padtip add padtail add arrowHeight div dup scale +arrowheadpath +ifill +} if +brushNone not { +originalCTM setmatrix +tipx tipy translate +angle rotate +arrowheadpath +istroke +} if +grestore +end +} dup 0 9 dict put def + +/arrowheadpath { +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +} def + +/leftarrow { +0 begin +y exch get /taily exch def +x exch get /tailx exch def +y exch get /tipy exch def +x exch get /tipx exch def +brushLeftArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + +/rightarrow { +0 begin +y exch get /tipy exch def +x exch get /tipx exch def +y exch get /taily exch def +x exch get /tailx exch def +brushRightArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + + +%I Idraw 10 Grid 8 8 + + +Begin +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 0.799705 0 0 0.799705 0 0 ] concat +/originalCTM matrix currentmatrix def + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 -0 -0 1 -125 612 ] concat +%I +155 342 563 354 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 36 951 ] concat +%I +[ +(for\(plytogo=1;\(plytogo <= MAXDEPTH && done == FALSE\); plytogo++\) {) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 939 ] concat +%I +[ +(/* Set up search */) +] Text +End + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1.00951 -0 -0 1.12603 -126.417 566.628 ] concat +%I +149 252 569 360 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 36 963 ] concat +%I +[ +(aphid_initsearch\(MAXDEPTH\);) +] Text +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 0 0 1 -125 596 ] concat +%I +155 294 563 318 Rect +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 0 0 1 -125 596 ] concat +%I +155 258 563 270 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 887 ] concat +%I +[ +(/* Print out results of search */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 36 875 ] concat +%I +[ +(}) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 911 ] concat +%I +[ +(/* Call to aphid_rootsearch replaces call to PVS */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 899 ] concat +%I +[ +(score = aphid_rootsearch\(0,plytogo,guess-eps,guess+eps\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 36 863 ] concat +%I +[ +(aphid_endsearch\(\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 61 925 ] concat +%I +[ +(/* Search at root around value \(guess\) with small error \(eps\) */) +] Text +End + +End %I eop + +showpage + + +end +%%EndDocument + + endTexFig + 385 2675 a Fk(Figure)g(7:)k(Ho)o(w)c(APHID)g(Mo)q(di\014es)g(the)g +(Iterativ)o(e)h(Deep)q(ening)f(Routine)954 2790 y(10)p +eop +%%Page: 11 13 +11 12 bop 465 197 a + 16117604 19418804 1184071 24405032 23549870 51178209 startTexFig + 465 197 a +%%BeginDocument: code6.ps + +/arrowHeight 10 def +/arrowWidth 5 def + +/IdrawDict 51 dict def +IdrawDict begin + +/reencodeISO { +dup dup findfont dup length dict begin +{ 1 index /FID ne { def }{ pop pop } ifelse } forall +/Encoding ISOLatin1Encoding def +currentdict end definefont +} def + +/ISOLatin1Encoding [ +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright +/parenleft/parenright/asterisk/plus/comma/minus/period/slash +/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon +/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N +/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright +/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m +/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/dotlessi/grave/acute/circumflex/tilde/macron/breve +/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut +/ogonek/caron/space/exclamdown/cent/sterling/currency/yen/brokenbar +/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot +/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior +/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine +/guillemotright/onequarter/onehalf/threequarters/questiondown +/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla +/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex +/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis +/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute +/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis +/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave +/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex +/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis +/yacute/thorn/ydieresis +] def +/Courier reencodeISO def + +/none null def +/numGraphicParameters 17 def +/stringLimit 65535 def + +/Begin { +save +numGraphicParameters dict begin +} def + +/End { +end +restore +} def + +/SetB { +dup type /nulltype eq { +pop +false /brushRightArrow idef +false /brushLeftArrow idef +true /brushNone idef +} { +/brushDashOffset idef +/brushDashArray idef +0 ne /brushRightArrow idef +0 ne /brushLeftArrow idef +/brushWidth idef +false /brushNone idef +} ifelse +} def + +/SetCFg { +/fgblue idef +/fggreen idef +/fgred idef +} def + +/SetCBg { +/bgblue idef +/bggreen idef +/bgred idef +} def + +/SetF { +/printSize idef +/printFont idef +} def + +/SetP { +dup type /nulltype eq { +pop true /patternNone idef +} { +dup -1 eq { +/patternGrayLevel idef +/patternString idef +} { +/patternGrayLevel idef +} ifelse +false /patternNone idef +} ifelse +} def + +/BSpl { +0 begin +storexyn +newpath +n 1 gt { +0 0 0 0 0 0 1 1 true subspline +n 2 gt { +0 0 0 0 1 1 2 2 false subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 2 copy false subspline +} if +n 2 sub dup n 1 sub dup 2 copy 2 copy false subspline +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Circ { +newpath +0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/CBSpl { +0 begin +dup 2 gt { +storexyn +newpath +n 1 sub dup 0 0 1 1 2 2 true subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 0 0 false subspline +n 2 sub dup n 1 sub dup 0 0 1 1 false subspline +patternNone not { ifill } if +brushNone not { istroke } if +} { +Poly +} ifelse +end +} dup 0 4 dict put def + +/Elli { +0 begin +newpath +4 2 roll +translate +scale +0 0 1 0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 1 dict put def + +/Line { +0 begin +2 storexyn +newpath +x 0 get y 0 get moveto +x 1 get y 1 get lineto +brushNone not { istroke } if +0 0 1 1 leftarrow +0 0 1 1 rightarrow +end +} dup 0 4 dict put def + +/MLine { +0 begin +storexyn +newpath +n 1 gt { +x 0 get y 0 get moveto +1 1 n 1 sub { +/i exch def +x i get y i get lineto +} for +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Poly { +3 1 roll +newpath +moveto +-1 add +{ lineto } repeat +closepath +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/Rect { +0 begin +/t exch def +/r exch def +/b exch def +/l exch def +newpath +l b moveto +l t lineto +r t lineto +r b lineto +closepath +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 4 dict put def + +/Text { +ishow +} def + +/idef { +dup where { pop pop pop } { exch def } ifelse +} def + +/ifill { +0 begin +gsave +patternGrayLevel -1 ne { +fgred bgred fgred sub patternGrayLevel mul add +fggreen bggreen fggreen sub patternGrayLevel mul add +fgblue bgblue fgblue sub patternGrayLevel mul add setrgbcolor +eofill +} { +eoclip +originalCTM setmatrix +pathbbox /t exch def /r exch def /b exch def /l exch def +/w r l sub ceiling cvi def +/h t b sub ceiling cvi def +/imageByteWidth w 8 div ceiling cvi def +/imageHeight h def +bgred bggreen bgblue setrgbcolor +eofill +fgred fggreen fgblue setrgbcolor +w 0 gt h 0 gt and { +l b translate w h scale +w h true [w 0 0 h neg 0 h] { patternproc } imagemask +} if +} ifelse +grestore +end +} dup 0 8 dict put def + +/istroke { +gsave +brushDashOffset -1 eq { +[] 0 setdash +1 setgray +} { +brushDashArray brushDashOffset setdash +fgred fggreen fgblue setrgbcolor +} ifelse +brushWidth setlinewidth +originalCTM setmatrix +stroke +grestore +} def + +/ishow { +0 begin +gsave +fgred fggreen fgblue setrgbcolor +/fontDict printFont printSize scalefont dup setfont def +/descender fontDict begin 0 [FontBBox] 1 get FontMatrix end +transform exch pop def +/vertoffset 1 printSize sub descender sub def { +0 vertoffset moveto show +/vertoffset vertoffset printSize sub def +} forall +grestore +end +} dup 0 3 dict put def +/patternproc { +0 begin +/patternByteLength patternString length def +/patternHeight patternByteLength 8 mul sqrt cvi def +/patternWidth patternHeight def +/patternByteWidth patternWidth 8 idiv def +/imageByteMaxLength imageByteWidth imageHeight mul +stringLimit patternByteWidth sub min def +/imageMaxHeight imageByteMaxLength imageByteWidth idiv patternHeight idiv +patternHeight mul patternHeight max def +/imageHeight imageHeight imageMaxHeight sub store +/imageString imageByteWidth imageMaxHeight mul patternByteWidth add string def +0 1 imageMaxHeight 1 sub { +/y exch def +/patternRow y patternByteWidth mul patternByteLength mod def +/patternRowString patternString patternRow patternByteWidth getinterval def +/imageRow y imageByteWidth mul def +0 patternByteWidth imageByteWidth 1 sub { +/x exch def +imageString imageRow x add patternRowString putinterval +} for +} for +imageString +end +} dup 0 12 dict put def + +/min { +dup 3 2 roll dup 4 3 roll lt { exch } if pop +} def + +/max { +dup 3 2 roll dup 4 3 roll gt { exch } if pop +} def + +/midpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 x1 add 2 div +y0 y1 add 2 div +end +} dup 0 4 dict put def + +/thirdpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 2 mul x1 add 3 div +y0 2 mul y1 add 3 div +end +} dup 0 4 dict put def + +/subspline { +0 begin +/movetoNeeded exch def +y exch get /y3 exch def +x exch get /x3 exch def +y exch get /y2 exch def +x exch get /x2 exch def +y exch get /y1 exch def +x exch get /x1 exch def +y exch get /y0 exch def +x exch get /x0 exch def +x1 y1 x2 y2 thirdpoint +/p1y exch def +/p1x exch def +x2 y2 x1 y1 thirdpoint +/p2y exch def +/p2x exch def +x1 y1 x0 y0 thirdpoint +p1x p1y midpoint +/p0y exch def +/p0x exch def +x2 y2 x3 y3 thirdpoint +p2x p2y midpoint +/p3y exch def +/p3x exch def +movetoNeeded { p0x p0y moveto } if +p1x p1y p2x p2y p3x p3y curveto +end +} dup 0 17 dict put def + +/storexyn { +/n exch def +/y n array def +/x n array def +n 1 sub -1 0 { +/i exch def +y i 3 2 roll put +x i 3 2 roll put +} for +} def + +/SSten { +fgred fggreen fgblue setrgbcolor +dup true exch 1 0 0 -1 0 6 -1 roll matrix astore +} def + +/FSten { +dup 3 -1 roll dup 4 1 roll exch +newpath +0 0 moveto +dup 0 exch lineto +exch dup 3 1 roll exch lineto +0 lineto +closepath +bgred bggreen bgblue setrgbcolor +eofill +SSten +} def + +/Rast { +exch dup 3 1 roll 1 0 0 -1 0 6 -1 roll matrix astore +} def + + +/arrowhead { +0 begin +transform originalCTM itransform +/taily exch def +/tailx exch def +transform originalCTM itransform +/tipy exch def +/tipx exch def +/dy tipy taily sub def +/dx tipx tailx sub def +/angle dx 0 ne dy 0 ne or { dy dx atan } { 90 } ifelse def +gsave +originalCTM setmatrix +tipx tipy translate +angle rotate +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +patternNone not { +originalCTM setmatrix +/padtip arrowHeight 2 exp 0.25 arrowWidth 2 exp mul add sqrt brushWidth mul +arrowWidth div def +/padtail brushWidth 2 div def +tipx tipy translate +angle rotate +padtip 0 translate +arrowHeight padtip add padtail add arrowHeight div dup scale +arrowheadpath +ifill +} if +brushNone not { +originalCTM setmatrix +tipx tipy translate +angle rotate +arrowheadpath +istroke +} if +grestore +end +} dup 0 9 dict put def + +/arrowheadpath { +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +} def + +/leftarrow { +0 begin +y exch get /taily exch def +x exch get /tailx exch def +y exch get /tipy exch def +x exch get /tipx exch def +brushLeftArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + +/rightarrow { +0 begin +y exch get /tipy exch def +x exch get /tipx exch def +y exch get /taily exch def +x exch get /tailx exch def +brushRightArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + + +%I Idraw 10 Grid 8 8 + + +Begin +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 0.799705 0 0 0.799705 0 0 ] concat +/originalCTM matrix currentmatrix def + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 -0 -0 1 -125 559 ] concat +%I +155 173 563 197 Rect +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 -0 -0 1 -125 559 ] concat +%I +155 209 563 221 Rect +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 -0 -0 1 -125 559 ] concat +%I +155 323 563 335 Rect +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 -0 -0 1 -125 612 ] concat +%I +155 342 563 354 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 36 951 ] concat +%I +[ +(for\(plytogo=1;\(plytogo <= MAXDEPTH && done == FALSE\); plytogo++\) {) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 36 903 ] concat +%I +[ +(}) +] Text +End + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1.00711 -0 -0 4.68604 -126.059 -714.975 ] concat +%I +149 252 569 360 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 915 ] concat +%I +[ +(/* Print out results of search */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 927 ] concat +%I +[ +(score = ROOT_PVS\(root_pos,guess-eps,guess+eps,0,plytogo\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 36 867 ] concat +%I +[ +(ROOT_PVS\(root_pos, alpha, beta, depth, plytogo\)) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 36 855 ] concat +%I +[ +(...) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 36 843 ] concat +%I +[ +({) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 831 ] concat +%I +[ +(...) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 819 ] concat +%I +[ +(/* Search PV Move */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 807 ] concat +%I +[ +(lower = alpha;) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 36 789 ] concat +%I +[ +(search_best_move:) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 765 ] concat +%I +[ +(make_move\(p,bestmove\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 729 ] concat +%I +[ +(unmake_move\(p,bestmove\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 36 963 ] concat +%I +[ +(aphid_initsearch\(MAXDEPTH\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 36 891 ] concat +%I +[ +(aphid_endsearch\(\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 777 ] concat +%I +[ +(aphid_intnode_premove\(depth, &bestmove\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 753 ] concat +%I +[ +(/* aphid_rootsearch replaces typical call to PVS */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 939 ] concat +%I +[ +(/* Set up search with small window \(eps\) around guess */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 741 ] concat +%I +[ +(oldscore = -aphid_rootsearch\(depth+1,plytogo-1,-beta,-lower\);) +] Text +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 0 0 1 -125 437 ] concat +%I +155 159 563 183 Rect +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 0 0 1 -125 437 ] concat +%I +155 207 563 219 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 84 641 ] concat +%I +[ +(make_move\(p,move[i]\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 84 629 ] concat +%I +[ +(/* Check if move beats PV move by more than delta */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 581 ] concat +%I +[ +(}) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 84 539 ] concat +%I +[ +(bestmove = move[i];) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 84 527 ] concat +%I +[ +(lower = newscore;) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 503 ] concat +%I +[ +(}) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 491 ] concat +%I +[ +(...) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 36 479 ] concat +%I +[ +(} /* function ROOT_PVS */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 84 653 ] concat +%I +[ +(aphid_intnode_premove\(depth,&move[i]\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 84 593 ] concat +%I +[ +(unmake_move\(p,move[i]\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 210 605 ] concat +%I +[ +(-oldscore-delta-1, -oldscore-delta\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 84 617 ] concat +%I +[ +(newscore = -aphid_rootsearch\(depth+1, plytogo-1,) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 84 515 ] concat +%I +[ +(if \(newscore < beta\) { goto search_best_move; }) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 84 551 ] concat +%I +[ +(/* set new best move and score and research \(if necc.\) */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 665 ] concat +%I +[ +(for\(i=2;\(i<=width && newscore <= oldscore+delta; i++\) {) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 677 ] concat +%I +[ +(newscore = oldscore;) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 563 ] concat +%I +[ +(if \(newscore > oldscore+delta\) {) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 711 ] concat +%I +[ +(/* Search other moves at root, and only switch if move beats */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 59 698 ] concat +%I +[ +(/* PV score \(oldscore\) by a small margin \(delta\) */) +] Text +End + +End %I eop + +showpage + + +end +%%EndDocument + + endTexFig + 248 1518 a Fk(Figure)14 b(8:)j(Ho)o(w)d(APHID)g(Mo)q(di\014es)g(Sp)q +(ecial)g(Handling)f(of)g(the)i(Ro)q(ot)e(of)g(the)i(Game)d(T)m(ree)489 +1954 y + 15345567 7104430 1447198 41639854 22102671 51178209 startTexFig + 489 1954 a +%%BeginDocument: code7.ps + +/arrowHeight 10 def +/arrowWidth 5 def + +/IdrawDict 51 dict def +IdrawDict begin + +/reencodeISO { +dup dup findfont dup length dict begin +{ 1 index /FID ne { def }{ pop pop } ifelse } forall +/Encoding ISOLatin1Encoding def +currentdict end definefont +} def + +/ISOLatin1Encoding [ +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright +/parenleft/parenright/asterisk/plus/comma/minus/period/slash +/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon +/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N +/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright +/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m +/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/dotlessi/grave/acute/circumflex/tilde/macron/breve +/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut +/ogonek/caron/space/exclamdown/cent/sterling/currency/yen/brokenbar +/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot +/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior +/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine +/guillemotright/onequarter/onehalf/threequarters/questiondown +/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla +/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex +/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis +/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute +/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis +/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave +/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex +/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis +/yacute/thorn/ydieresis +] def +/Courier reencodeISO def + +/none null def +/numGraphicParameters 17 def +/stringLimit 65535 def + +/Begin { +save +numGraphicParameters dict begin +} def + +/End { +end +restore +} def + +/SetB { +dup type /nulltype eq { +pop +false /brushRightArrow idef +false /brushLeftArrow idef +true /brushNone idef +} { +/brushDashOffset idef +/brushDashArray idef +0 ne /brushRightArrow idef +0 ne /brushLeftArrow idef +/brushWidth idef +false /brushNone idef +} ifelse +} def + +/SetCFg { +/fgblue idef +/fggreen idef +/fgred idef +} def + +/SetCBg { +/bgblue idef +/bggreen idef +/bgred idef +} def + +/SetF { +/printSize idef +/printFont idef +} def + +/SetP { +dup type /nulltype eq { +pop true /patternNone idef +} { +dup -1 eq { +/patternGrayLevel idef +/patternString idef +} { +/patternGrayLevel idef +} ifelse +false /patternNone idef +} ifelse +} def + +/BSpl { +0 begin +storexyn +newpath +n 1 gt { +0 0 0 0 0 0 1 1 true subspline +n 2 gt { +0 0 0 0 1 1 2 2 false subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 2 copy false subspline +} if +n 2 sub dup n 1 sub dup 2 copy 2 copy false subspline +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Circ { +newpath +0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/CBSpl { +0 begin +dup 2 gt { +storexyn +newpath +n 1 sub dup 0 0 1 1 2 2 true subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 0 0 false subspline +n 2 sub dup n 1 sub dup 0 0 1 1 false subspline +patternNone not { ifill } if +brushNone not { istroke } if +} { +Poly +} ifelse +end +} dup 0 4 dict put def + +/Elli { +0 begin +newpath +4 2 roll +translate +scale +0 0 1 0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 1 dict put def + +/Line { +0 begin +2 storexyn +newpath +x 0 get y 0 get moveto +x 1 get y 1 get lineto +brushNone not { istroke } if +0 0 1 1 leftarrow +0 0 1 1 rightarrow +end +} dup 0 4 dict put def + +/MLine { +0 begin +storexyn +newpath +n 1 gt { +x 0 get y 0 get moveto +1 1 n 1 sub { +/i exch def +x i get y i get lineto +} for +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Poly { +3 1 roll +newpath +moveto +-1 add +{ lineto } repeat +closepath +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/Rect { +0 begin +/t exch def +/r exch def +/b exch def +/l exch def +newpath +l b moveto +l t lineto +r t lineto +r b lineto +closepath +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 4 dict put def + +/Text { +ishow +} def + +/idef { +dup where { pop pop pop } { exch def } ifelse +} def + +/ifill { +0 begin +gsave +patternGrayLevel -1 ne { +fgred bgred fgred sub patternGrayLevel mul add +fggreen bggreen fggreen sub patternGrayLevel mul add +fgblue bgblue fgblue sub patternGrayLevel mul add setrgbcolor +eofill +} { +eoclip +originalCTM setmatrix +pathbbox /t exch def /r exch def /b exch def /l exch def +/w r l sub ceiling cvi def +/h t b sub ceiling cvi def +/imageByteWidth w 8 div ceiling cvi def +/imageHeight h def +bgred bggreen bgblue setrgbcolor +eofill +fgred fggreen fgblue setrgbcolor +w 0 gt h 0 gt and { +l b translate w h scale +w h true [w 0 0 h neg 0 h] { patternproc } imagemask +} if +} ifelse +grestore +end +} dup 0 8 dict put def + +/istroke { +gsave +brushDashOffset -1 eq { +[] 0 setdash +1 setgray +} { +brushDashArray brushDashOffset setdash +fgred fggreen fgblue setrgbcolor +} ifelse +brushWidth setlinewidth +originalCTM setmatrix +stroke +grestore +} def + +/ishow { +0 begin +gsave +fgred fggreen fgblue setrgbcolor +/fontDict printFont printSize scalefont dup setfont def +/descender fontDict begin 0 [FontBBox] 1 get FontMatrix end +transform exch pop def +/vertoffset 1 printSize sub descender sub def { +0 vertoffset moveto show +/vertoffset vertoffset printSize sub def +} forall +grestore +end +} dup 0 3 dict put def +/patternproc { +0 begin +/patternByteLength patternString length def +/patternHeight patternByteLength 8 mul sqrt cvi def +/patternWidth patternHeight def +/patternByteWidth patternWidth 8 idiv def +/imageByteMaxLength imageByteWidth imageHeight mul +stringLimit patternByteWidth sub min def +/imageMaxHeight imageByteMaxLength imageByteWidth idiv patternHeight idiv +patternHeight mul patternHeight max def +/imageHeight imageHeight imageMaxHeight sub store +/imageString imageByteWidth imageMaxHeight mul patternByteWidth add string def +0 1 imageMaxHeight 1 sub { +/y exch def +/patternRow y patternByteWidth mul patternByteLength mod def +/patternRowString patternString patternRow patternByteWidth getinterval def +/imageRow y imageByteWidth mul def +0 patternByteWidth imageByteWidth 1 sub { +/x exch def +imageString imageRow x add patternRowString putinterval +} for +} for +imageString +end +} dup 0 12 dict put def + +/min { +dup 3 2 roll dup 4 3 roll lt { exch } if pop +} def + +/max { +dup 3 2 roll dup 4 3 roll gt { exch } if pop +} def + +/midpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 x1 add 2 div +y0 y1 add 2 div +end +} dup 0 4 dict put def + +/thirdpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 2 mul x1 add 3 div +y0 2 mul y1 add 3 div +end +} dup 0 4 dict put def + +/subspline { +0 begin +/movetoNeeded exch def +y exch get /y3 exch def +x exch get /x3 exch def +y exch get /y2 exch def +x exch get /x2 exch def +y exch get /y1 exch def +x exch get /x1 exch def +y exch get /y0 exch def +x exch get /x0 exch def +x1 y1 x2 y2 thirdpoint +/p1y exch def +/p1x exch def +x2 y2 x1 y1 thirdpoint +/p2y exch def +/p2x exch def +x1 y1 x0 y0 thirdpoint +p1x p1y midpoint +/p0y exch def +/p0x exch def +x2 y2 x3 y3 thirdpoint +p2x p2y midpoint +/p3y exch def +/p3x exch def +movetoNeeded { p0x p0y moveto } if +p1x p1y p2x p2y p3x p3y curveto +end +} dup 0 17 dict put def + +/storexyn { +/n exch def +/y n array def +/x n array def +n 1 sub -1 0 { +/i exch def +y i 3 2 roll put +x i 3 2 roll put +} for +} def + +/SSten { +fgred fggreen fgblue setrgbcolor +dup true exch 1 0 0 -1 0 6 -1 roll matrix astore +} def + +/FSten { +dup 3 -1 roll dup 4 1 roll exch +newpath +0 0 moveto +dup 0 exch lineto +exch dup 3 1 roll exch lineto +0 lineto +closepath +bgred bggreen bgblue setrgbcolor +eofill +SSten +} def + +/Rast { +exch dup 3 1 roll 1 0 0 -1 0 6 -1 roll matrix astore +} def + + +/arrowhead { +0 begin +transform originalCTM itransform +/taily exch def +/tailx exch def +transform originalCTM itransform +/tipy exch def +/tipx exch def +/dy tipy taily sub def +/dx tipx tailx sub def +/angle dx 0 ne dy 0 ne or { dy dx atan } { 90 } ifelse def +gsave +originalCTM setmatrix +tipx tipy translate +angle rotate +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +patternNone not { +originalCTM setmatrix +/padtip arrowHeight 2 exp 0.25 arrowWidth 2 exp mul add sqrt brushWidth mul +arrowWidth div def +/padtail brushWidth 2 div def +tipx tipy translate +angle rotate +padtip 0 translate +arrowHeight padtip add padtail add arrowHeight div dup scale +arrowheadpath +ifill +} if +brushNone not { +originalCTM setmatrix +tipx tipy translate +angle rotate +arrowheadpath +istroke +} if +grestore +end +} dup 0 9 dict put def + +/arrowheadpath { +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +} def + +/leftarrow { +0 begin +y exch get /taily exch def +x exch get /tailx exch def +y exch get /tipy exch def +x exch get /tipx exch def +brushLeftArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + +/rightarrow { +0 begin +y exch get /tipy exch def +x exch get /tipx exch def +y exch get /taily exch def +x exch get /tailx exch def +brushRightArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + + +%I Idraw 10 Grid 8 8 + + +Begin +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 0.799705 0 0 0.799705 0 0 ] concat +/originalCTM matrix currentmatrix def + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 -0 -0 1 -125 612 ] concat +%I +161 216 539 228 Rect +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 -0 -0 1 -125 612 ] concat +%I +161 276 539 288 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 42 963 ] concat +%I +[ +(int main\(argc, argv\)) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 42 951 ] concat +%I +[ +(int argc;) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 42 939 ] concat +%I +[ +(char *argv[];) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 42 927 ] concat +%I +[ +({) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 915 ] concat +%I +[ +(/* Initialization required by any process in system */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 867 ] concat +%I +[ +(/* Initialization required only by the master process */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 825 ] concat +%I +[ +(exit\(0\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 42 813 ] concat +%I +[ +(}) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 855 ] concat +%I +[ +(/* Play game */) +] Text +End + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.997449 -0 -0 0.962766 -124.605 625.404 ] concat +%I +155 174 545 360 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 885 ] concat +%I +[ +(/* Only the absolute master process gets here */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 897 ] concat +%I +[ +(aphid_startup\(argv\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 837 ] concat +%I +[ +(aphid_exit\(\);) +] Text +End + +End %I eop + +showpage + + +end +%%EndDocument + + endTexFig + 510 2495 a Fk(Figure)i(9:)k(Ho)o(w)13 b(APHID)h(Mo)q(di\014es)h(the)f +(Main)f(Program)954 2790 y(11)p eop +%%Page: 12 14 +12 13 bop 62 42 a Fk(A)18 b(brief)g(explanation)f(of)g(the)i +(parameters)f(and)g(function)f(of)h(eac)o(h)g(of)g(these)h +Fb(aphid)p 1461 42 14 2 v 33 w Fk(routines)f(can)g(b)q(e)h(found)e(in)0 +91 y(App)q(endix)d(A.)62 141 y(Along)h(with)g(the)i(additional)c(calls) +j(added)g(to)f(PVS,)h(the)g(iterativ)o(e)f(deep)q(ening)i(routine,)f +(and)f(the)i(main)c(program,)0 191 y(roughly)d(100)f(lines)h(of)g +(application-dep)q(enden)o(t)h(co)q(de)g(ha)o(v)o(e)f(to)g(b)q(e)h +(de\014ned)h(for)e(the)h Fb(aphid)p 1432 191 V 14 w(stub)p +1534 191 V 26 w Fk(routines.)17 b(The)11 b(APHID)0 241 +y(library)i(is)h(game-indep)q(enden)o(t,)g(but)g(it)g(needs)h(to)f(kno) +o(w)g(some)f(game-dep)q(enden)o(t)h(prop)q(erties)i(suc)o(h)e(as)g +(what)g(the)h(name)0 291 y(of)f(the)h(ev)n(aluation)e(function)h(is,)g +(what)g(the)h(name)e(of)h(the)h(searc)o(h)g(routine)g(is,)f(ho)o(w)g +(to)g(mak)o(e)f(and)h(unmak)o(e)f(mo)o(v)o(es,)f Fi(etc)p +Fk(.)0 340 y(The)i Fb(aphid)p 198 340 V 15 w(stub)p 301 +340 V 29 w Fk(routines)g(are)g(also)g(brie\015y)g(describ)q(ed)i(in)d +(App)q(endix)h(A.)0 478 y Fl(4)67 b(Exp)r(erimen)n(ts)0 +569 y Fk(The)20 b(APHID)g(game-indep)q(enden)o(t)f(library)g(has)h(b)q +(een)g(inserted)h(in)o(to)e(three)i(di\013eren)o(t)g(programs)d(o)o(v)o +(er)i(the)g(last)f(six)0 618 y(mon)o(ths.)e(F)m(or)c(this)h(initial)d +(exp)q(erimen)o(t,)i(eac)o(h)i(of)e(the)h(programs)e(c)o(hosen)j(w)o +(ere)f(written)h(at)e(the)h(Univ)o(ersit)o(y)g(of)f(Alb)q(erta,)0 +668 y(and)g(the)h(authors)g(of)f(the)h(program)e(w)o(ere)j(assisted)f +(in)f(implemen)o(ting)d(the)15 b(APHID)e(library)g(in)o(to)g(their)h +(programs.)j(The)0 718 y(\014rst)g(program)f(w)o(as)g +Ff(Key)m(ano)p Fk(,)j(an)e(Othello)f(program)f(written)i(b)o(y)g(Mark)f +(Bro)q(c)o(kington.)27 b(The)17 b(second)h(program)d(w)o(as)0 +768 y Ff(TheTurk)p Fk(,)i(a)e(c)o(hess)i(program)e(written)h(b)o(y)g +(Yngvi)f(Bjornsson)h(and)g(Andreas)h(Junghanns.)24 b(The)17 +b(\014nal)e(program)f(w)o(as)0 818 y(the)k(curren)o(t)i(Man-Mac)o(hine) +d(w)o(orld)h(c)o(hampion)d(c)o(hec)o(k)o(ers)20 b(program,)d +Ff(Chinook)p Fk(,)i(written)g(b)o(y)e(a)h(team)f(that)g(includes)0 +867 y(Martin)d(Bry)o(an)o(t,)f(Rob)g(Lak)o(e,)h(P)o(aul)f(Lu,)g +(Jonathan)h(Sc)o(hae\013er,)h(and)f(Norman)e(T)m(reloar)i([25)o(].)62 +917 y(P)o(arallel)h(tests)i(w)o(ere)g(run)f(on)f(up)h(to)g(16)f(w)o +(orkstations)h(on)f(a)g(net)o(w)o(ork)h(of)g(SparcStation)f(IPC)h +(computers)g(with)f(12)0 967 y(MB)h(of)f(RAM,)g(running)g(the)h(SunOS)g +(4.1.4)e(op)q(erating)h(system.)23 b(The)16 b(SparcStations)g(are)g +(link)o(ed)f(with)g(1)g(segmen)o(t)h(of)0 1017 y(10)e(base)g(2)g +(\(thin)g(net\))h(Ethernet.)20 b(One)15 b(w)o(orkstation)e(in)h(eac)o +(h)g(exp)q(erimen)o(t)g(w)o(as)g(completely)f(o)q(ccupied)i(b)o(y)f +(the)g(master)0 1067 y(pro)q(cess,)h(while)f(the)g(other)h(w)o +(orkstations)e(eac)o(h)i(ran)f(a)f(single)h(sla)o(v)o(e)f(pro)q(cess.) +62 1117 y(More)18 b(sp)q(eci\014c)g(details)f(will)f(follo)o(w)f(in)h +(the)i(subsequen)o(t)h(sections)f(ab)q(out)f(the)g(exp)q(erimen)o(ts)h +(with)e(eac)o(h)i(program.)0 1166 y(Ho)o(w)o(ev)o(er,)j(w)o(e)f(m)o +(ust)f(discuss)i(the)f(general)g(metho)q(dology)e(used)i(for)g(ev)n +(aluating)e(the)j(p)q(erformance)e(of)g(the)i(APHID)0 +1216 y(algorithm.)62 1266 y(P)o(arallel)16 b(and)h(sequen)o(tial)g +(algorithms)d(often)j(do)g(not)f(agree)i(with)e(eac)o(h)i(other)f(ab)q +(out)g(minim)o(ax)d(v)n(alues)i(and)h(b)q(est)0 1316 +y(mo)o(v)o(es)10 b(when)h(the)g(full)f(v)o(ersion)h(of)f(the)h(program) +e(is)i(used)h([15)o(].)k(F)m(or)11 b(example,)e(di\013eren)o(t)j(searc) +o(h)g(windo)o(ws)e(cause)i(di\013eren)o(t)0 1366 y(searc)o(h)k +(extensions)h(to)e(b)q(e)h(turned)g(on,)f(causing)g(di\013eren)o(t)h +(alpha-b)q(eta)f(results.)24 b(Th)o(us,)15 b(all)f(searc)o(h)j +(extensions,)f(searc)o(h)0 1415 y(reductions)h(and)f(n)o(ull)g(mo)o(v)o +(e)e(searc)o(hing)j(w)o(ere)g(turned)g(o\013)f(for)g(the)h(purp)q(oses) +h(of)d(this)h(exp)q(erimen)o(t.)25 b(Since)17 b(some)e(w)o(ork)0 +1465 y(could)g(b)q(e)g(ev)n(aluated)f(to)h Fj(d)9 b Fk(+)h(1-ply)k(b)q +(efore)h(the)h Fj(d)p Fk(-ply)d(result)j(is)e(\014nished,)h(w)o(e)g +(also)f(forced)i(the)f(transp)q(osition)g(table)f(to)0 +1515 y(rep)q(ort)g(only)f(transp)q(osition)g(table)g(scores)i(that)e +(had)g(b)q(een)i(searc)o(hed)f(to)g(the)f(exact)h(depth)g(\(as)g(in)e +(Figure)i(6\).)j(Although)0 1565 y(a)12 b(\014xed)h(depth)h(is)e +(enforced)i(on)e(the)h(programs,)f(quiescence)i(searc)o(h)g(w)o(as)f +(left)f(in)g Ff(TheTurk)h Fk(and)g Ff(Chinook)h Fk(to)e(prev)o(en)o(t)0 +1615 y(the)h(ev)n(aluations)e(from)g(b)q(eing)i(signi\014can)o(tly)e +(unstable.)18 b(This)12 b(forced)h(the)g(parallel)f(and)g(sequen)o +(tial)g(programs)f(to)i(return)0 1664 y(iden)o(tical)g(minima)o(x)e(v)n +(alues,)i(allo)o(wing)f(for)h(a)h(fair)f(comparison.)62 +1714 y(A)k(suitable)f(b)q(enc)o(hmark)g(set)h(w)o(as)f(c)o(hosen)h(for) +f(eac)o(h)h(program)e(\(see)i(appropriate)g(section\).)26 +b(Eac)o(h)16 b(game)f(also)h(has)0 1764 y(di\013eren)o(t)g(time)e +(constrain)o(ts)i(in)f(t)o(ypical)f(p)q(ositions.)22 +b(F)m(or)15 b(example,)f(an)h(Othello)f(program)g(should)h(tak)o(e)g +(an)g(a)o(v)o(erage)h(of)0 1814 y(90)f(seconds)j(to)e(mak)o(e)e(a)i(mo) +o(v)o(e)e(for)i(a)f(midgam)o(e)f(searc)o(h,)j(and)f(a)f(c)o(hess)j +(program)c(should)i(tak)o(e)g(ab)q(out)g(150)f(seconds)i(to)0 +1864 y(complete)c(a)h(searc)o(h.)19 b(The)14 b(searc)o(h)h(depth)g(w)o +(as)f(c)o(hosen)g(so)g(that)g(the)h(a)o(v)o(erage)e(of)h(the)g +(parallel)f(results)i(on)e(16)h(pro)q(cessors)0 1914 +y(did)f(not)h(exceed)i(this)e(time)e(constrain)o(t.)62 +1963 y(The)j Fi(sp)n(e)n(e)n(dup)f Fk(giv)o(en)g(in)g(this)g(section)h +(compares)e(the)i(\014xed)f(depth)h(v)o(ersion)f(of)g(the)g(sequen)o +(tial)h(program)d(v)o(ersus)j(the)0 2013 y(time)e(required)h(to)g +(\014nd)g(the)h(result)f(in)g(parallel:)728 2124 y(sp)q(eedup)f(=)935 +2096 y(sequen)o(tial)d(time)p 935 2114 271 2 v 958 2152 +a(parallel)e(time)1210 2124 y Fj(:)0 2235 y Fk(It)17 +b(is)f(imp)q(ortan)o(t)f(to)h(note)h(that)f(neither)h(the)g(sequen)o +(tial)g(nor)f(the)h(parallel)f(algorithm)d(b)q(eing)k(tested)h(is)e +(the)h(one)g(that)0 2285 y(w)o(ould)11 b(b)q(e)i(used)g(under)f +(tournamen)o(t)f(conditions,)h(b)q(ecause)i(the)e(searc)o(h)h +(extension/reduction)g(algorithms)d(w)o(ere)j(turned)0 +2334 y(o\013.)k(F)m(or)9 b(the)i(purp)q(oses)h(of)d(the)i(exp)q(erimen) +o(t,)f(the)h(parallel)e(and)h(sequen)o(tial)g(times)f(for)h(eac)o(h)h +(searc)o(h)g(are)g(summed)d(together)0 2384 y(to)14 b(determine)g(the)g +(aggregate)g(sp)q(eedup.)62 2434 y(The)f(aggregate)f(sp)q(eedups)i +(will)d(b)q(e)i(illustrated)f(in)f(t)o(w)o(o)h(graphs.)18 +b(The)12 b(\014rst)h(graph)f(will)f(sho)o(w)h(the)h(breakdo)o(wn)f(of)f +(the)0 2484 y(aggregate)i(sp)q(eedup)h(at)f(the)g(p)q(oin)o(t)f(where)i +(the)f(depth)h Fj(d)e Fk(searc)o(h)i(has)e(b)q(een)i(completed.)j(The)c +(second)h(graph)f(divides)f(the)0 2534 y(test)k(set)g(in)o(to)f(three)h +(or)f(four)g(disjoin)o(t)f(subsets)j(\(based)f(on)f(size)h(of)f(the)h +(sequen)o(tial)f(searc)o(h\),)h(and)f(giv)o(es)g(the)h(aggregate)0 +2584 y(sp)q(eedup)g(for)d(eac)o(h)i(subset.)k(F)m(or)14 +b(ev)o(ery)g(program)f(tested,)i(b)q(oth)f(graphs)g(illustrate)g(that)g +(larger)g(searc)o(hes)i(yield)d(greater)0 2633 y(parallelism)e(than)i +(smaller)f(searc)o(hes.)20 b(The)14 b(second)h(graph)f(also)e +(illustrates)i(some)f(of)g(the)h(v)n(ariance)f(to)h(b)q(e)g(found)f(in) +g(the)0 2683 y(aggregate)h(sp)q(eedup.)954 2790 y(12)p +eop +%%Page: 13 15 +13 14 bop 62 42 a Fk(The)14 b(o)o(v)o(erheads)f(in)g(the)g(algorithm)d +(will)i(b)q(e)h(illustrated)g(in)g(a)f(third)h(graph.)18 +b(The)13 b(third)g(graph)g(represen)o(ts)i(the)f(same)0 +91 y(scale)h(across)h(all)e(programs.)19 b(F)m(or)14 +b Ff(Key)m(ano)j Fk(and)e Ff(TheTurk)p Fk(,)g(a)g(fourth)f(graph)h(is)g +(giv)o(en)f(to)g(illustrate)h(the)g(same)f(data)0 141 +y(on)g(a)f(magni\014ed)f(scale.)62 191 y(The)g Fi(total)g(overhe)n(ad)g +Fk(represen)o(ts)i(the)d(additional)f(computing)f(time)h(required)i(b)o +(y)f(the)h(parallel)e(algorithm)f(to)i(ac)o(hiev)o(e)0 +241 y(the)j(same)f(result:)480 343 y(total)c(o)o(v)o(erhead)j(=)796 +315 y(\(parallel)c(time)17 b Fh(\002)i Fk(n\))9 b Fh(\000)h +Fk(sequen)o(tial)f(time)p 796 334 670 2 v 995 372 a(sequen)o(tial)g +(time)0 452 y(where)14 b Fj(n)f Fk(is)f(the)i(n)o(um)o(b)q(er)e(of)g +(pro)q(cessors.)20 b(The)13 b(total)f(o)o(v)o(erhead)h(can)g(also)g(b)q +(e)g(computed)f(b)o(y)h(examining)d(the)k(o)o(v)o(erheads.)0 +502 y(The)19 b(three)i(main)16 b(o)o(v)o(erheads)k(are)f(using)g(a)f +(pro)q(cessor)j(exclusiv)o(ely)e(as)g(a)g(master,)g(the)g(e\013ectiv)o +(e)i(decrease)g(in)d(no)q(des)0 551 y(p)q(er)e(second)h(examined,)d +(and)h(the)h(additional)e(n)o(um)o(b)q(er)g(of)h(no)q(des)h(searc)o +(hed)h(b)o(y)e(the)h(parallel)f(algorithm.)k(There)e(is)e(no)0 +601 y(sync)o(hronization)c(o)o(v)o(erhead)h(in)f(the)h(APHID)g +(algorithm,)c(since)13 b(the)f(algorithm)c(op)q(erates)13 +b(in)e(an)g(async)o(hronous)h(manner.)0 651 y(This)i(can)g(b)q(e)g +(expressed)j(in)c(the)i(follo)o(wing)c(form)o(ula)850 +636 y Fe(6)880 651 y Fk(for)i(total)g(o)o(v)o(erhead:)302 +740 y(total)8 b(o)o(v)o(erhead)42 b(=)g(\(1)9 b(+)h(master)e(o)o(v)o +(erhead)q(\))h Fh(\002)h Fk(\(1)f(+)g(parallelization)f(o)o(v)o +(erhead\))681 802 y Fh(\002)i Fk(\(1)f(+)g(searc)o(h)i(o)o(v)o(erhead)e +(+)h(sp)q(eculativ)o(e)g(searc)o(h)q(\))p Fj(:)62 891 +y Fk(The)17 b Fi(master)f(overhe)n(ad)h Fk(is)f(the)g(appro)o(ximate)e +(p)q(enalt)o(y)i(incurred)h(b)o(y)f(ha)o(ving)f(a)h(single)g(pro)q +(cessor)h(b)q(eing)f(allo)q(cated)0 941 y(completely)e(to)h(the)h +(handling)e(of)h(the)h(master.)22 b(This)15 b(is)h(simply)d(1)p +Fj(=)p Fk(\()p Fj(n)d Fh(\000)g Fk(1\),)15 b(the)h(b)q(ene\014t)h(of)e +(adding)f(another)i(sla)o(v)o(e)f(to)0 991 y(the)f(other)h +Fj(n)9 b Fh(\000)h Fk(1)j(sla)o(v)o(es.)62 1041 y(The)18 +b Fi(p)n(ar)n(al)r(lelization)e(overhe)n(ad)i Fk(is)f(the)g(p)q(enalt)o +(y)g(incurred)h(b)o(y)f(the)g(APHID-library)g(on)f(the)i(sp)q(eed)g(of) +f(the)g(sla)o(v)o(es.)0 1090 y(The)12 b(di\013erence)i(b)q(et)o(w)o +(een)f(the)g(rate)f(at)g(whic)o(h)g(the)g(parallel)f(sla)o(v)o(es)h +(explore)g(no)q(des)h(and)f(the)g(sequen)o(tial)g(program's)f(no)q(de)0 +1140 y(rate)17 b(is)f(assumed)g(to)g(b)q(e)h(the)g(parallelization)e(o) +o(v)o(erhead.)25 b(This)17 b(parallelization)d(o)o(v)o(erhead)j(is)f +(deriv)o(ed)h(partially)e(from)0 1190 y(the)h(o)o(v)o(erhead)f(of)f +(using)h(PVM,)g(and)f(partially)g(from)f(the)i(w)o(ork-sc)o(heduling)g +(algorithm)d(on)j(eac)o(h)h(sla)o(v)o(e.)k(In)15 b(e\013ect)i(this)0 +1240 y(includes)f(sync)o(hronization)g(o)o(v)o(erhead,)g(complexit)o(y) +d(o)o(v)o(erhead)j(and)g(comm)o(unicatio)o(n)d(o)o(v)o(erhead,)j(as)g +(used)g(in)g(previous)0 1290 y(parallel)d Fj(\013\014)j +Fk(mo)q(dels)d([15)o(,)g(18,)g(24)o(].)62 1339 y(The)i +Fi(se)n(ar)n(ch)g(overhe)n(ad)g Fk(represen)o(ts)i(the)f(additional)c +(no)q(des)j(searc)o(hed)i(to)d(ac)o(hiev)o(e)h(the)g +Fj(d)f Fk(ply)g(minim)o(ax)d(v)n(alue.)19 b(This)0 1389 +y(can)e(b)q(e)h(computed)e(b)o(y)h(dividing)e(the)j(no)q(des)f(searc)o +(hed)i(to)e(generate)h Fj(d)e Fk(ply)h(searc)o(h)h(results)g(in)e(the)i +(parallel)e(program)0 1439 y(b)o(y)g(the)h(no)q(des)g(searc)o(hed)h(b)o +(y)e(the)h(sequen)o(tial)f(program.)24 b(Most)16 b(of)g(the)h(searc)o +(h)g(o)o(v)o(erhead)g(is)f(incurred)h(b)o(y)f(attempting)0 +1489 y(to)f(do)g(searc)o(hes)j(b)q(efore)e(the)g(correct)h(searc)o(h)f +(windo)o(w)f(is)g(a)o(v)n(ailable.)20 b(Th)o(us,)15 b(the)h(sla)o(v)o +(es)g(use)g Fj(\013\014)i Fk(searc)o(h)e(windo)o(ws)f(that)0 +1539 y(are)j(larger)g(than)g(those)h(in)e(the)i(sequen)o(tial)e +(program.)29 b(Most)18 b(of)f(the)i(increase)g(in)e(searc)o(h)i(o)o(v)o +(erhead)g(as)f(w)o(e)g(increase)0 1589 y(the)c(n)o(um)o(b)q(er)f(of)f +(pro)q(cessors)k(can)d(b)q(e)h(attributed)g(to)f(information)e +(de\014ciency)m(,)j(since)g(there)g(is)f(no)h(common)c(shared)k(data)0 +1638 y(b)q(et)o(w)o(een)h(the)g(pro)q(cesses)h(\(suc)o(h)f(as)f(a)g +(shared)g(transp)q(osition)g(table\).)62 1688 y(Since)e(w)o(e)g(only)f +(searc)o(h)h(eac)o(h)g(p)q(osition)f(to)h Fj(d)f Fk(ply)m(,)f(the)i +(async)o(hronous)g(nature)h(of)e(the)h(sla)o(v)o(es)f(will)f(result)j +(in)e(some)f(w)o(ork)0 1738 y(b)q(eing)j(done)f(at)h +Fj(d)7 b Fk(+)g(1)k(ply)h(\(or)h(more\).)j(The)d Fi(sp)n(e)n(culative)h +(se)n(ar)n(ch)e Fk(represen)o(ts)k(the)d(amoun)o(t)d(of)i(additional)f +(searc)o(h)j(b)q(ey)o(ond)0 1788 y(what)k(the)g(sequen)o(tial)g +(algorithm)d(w)o(ould)i(ha)o(v)o(e)h(done.)30 b(The)18 +b(sp)q(eculativ)o(e)h(searc)o(h)g(can)f(b)q(e)g(computed)g(b)o(y)f +(taking)g(the)0 1838 y(n)o(um)o(b)q(er)d(of)g(sp)q(eculativ)o(e)h(no)q +(des)g(searc)o(hed)i(and)d(dividing)f(that)i(b)o(y)f(the)h(n)o(um)o(b)q +(er)f(of)g(no)q(des)h(searc)o(hed)i(in)d(the)h(sequen)o(tial)0 +1887 y(case.)k(In)12 b(our)h(exp)q(erimen)o(ts,)g(the)g(sp)q(eculativ)o +(e)g(searc)o(h)h(results)g(w)o(ere)g(not)e(used)i(so)f(that)f(the)i +(parallel)d(program)g(pro)q(duces)0 1937 y(the)17 b(iden)o(tical)e +(results)i(as)f(the)g(sequen)o(tial)g(v)o(ersion,)h(v)o(erifying)d +(APHID's)i(correctness.)27 b(In)16 b(a)g(real)g(tournamen)o(t)f(game,)0 +1987 y(this)f(sp)q(eculativ)o(e)g(searc)o(h)h(could)f(b)q(e)g(used)h +(to)f(lo)q(ok)f(an)g(extra)i(mo)o(v)o(e)d(ahead)i(on)f(some)g(k)o(ey)h +(v)n(ariations,)e(since)j(it)e(is)h(highly)0 2037 y(lik)o(ely)f(that)h +(the)h(mo)o(v)o(es)e(extended)j(a)e(ply)f(ahead)i(w)o(ould)e(b)q(e)i +(in)f(the)g(left-most)f(branc)o(hes)j(of)d(the)i(tree.)20 +b(Note)15 b(that)f(other)0 2087 y(algorithms,)f(suc)o(h)k(as)f(Y)m +(oung)f(Brothers)i(W)m(ait,)d(ha)o(v)o(e)i(pro)q(cessors)i(go)d(idle)g +(when)i(there)g(is)e(no)h(w)o(ork)f(left)h(to)f(do)h(on)f(the)0 +2136 y(curren)o(t)g(iteration.)0 2252 y Fv(4.1)56 b(Key)n(ano)18 +b(\(F)-5 b(ebruary)19 b(1996\))0 2329 y Fk(The)13 b(\014rst)g(program)e +(that)i(the)g(APHID)f(library)g(w)o(as)g(implemen)o(ted)e(in)i(w)o(as)h +Ff(Key)m(ano)p Fk(,)h(an)e(Othello)h(program)d(whic)o(h)j(has)0 +2379 y(comp)q(eted)h(in)f(in)o(ternational)g(Othello)h(tournamen)o(ts)f +(for)h(the)g(last)g(three)h(y)o(ears.)62 2429 y(APHID)k(did)e(not)h(ha) +o(v)o(e)g(load)f(balancing)g(at)h(the)h(time)e(the)h(algorithm)e(w)o +(as)i(originally)e(b)q(enc)o(hmark)o(ed;)j(the)g(load)0 +2478 y(balancing)13 b(w)o(as)h(in)o(tro)q(duced)h(to)e(the)i(ev)o +(olving)e(APHID)h(library)f(in)h(Marc)o(h.)k(T)m(o)13 +b(b)q(e)i(consisten)o(t)g(with)f(results)h(presen)o(ted)0 +2528 y(elsewhere)h([3)o(],)d(the)i(F)m(ebruary)f(1996)f(results)i(are)f +(giv)o(en)f(here.)62 2578 y(T)m(o)g(test)h(the)g(algorithm,)c(Key)o +(ano)j(w)o(as)h(programmed)c(to)k(searc)o(h)g(with)f(its)g(midgam)o(e)e +(searc)o(h)k(algorithm)10 b(to)j(a)g(depth)0 2628 y(of)g +Fj(d)e Fk(=)h(12)i(ply)m(,)e(with)i(the)g(master)f(con)o(trolling)g +(the)h(top)g Fj(d)934 2613 y Fa(0)957 2628 y Fk(=)e(4)h(ply)h(of)f(the) +i(tree.)p 0 2661 780 2 v 46 2688 a Fd(6)64 2700 y Fg(This)c(form)o(ula) +e(is)j(not)f(the)f(same)h(as)g(the)g(form)o(ula)e(presen)o(ted)g(in)j +(earlier)d(v)o(ersions)h(of)h(this)g(pap)q(er.)954 2790 +y Fk(13)p eop +%%Page: 14 16 +14 15 bop 38 0 a + 14796136 10419816 3289088 3289088 50651955 36443095 startTexFig + 38 0 a +%%BeginDocument: graph2.ps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.100 0.100 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +840 351 M +6129 0 V +840 351 M +0 4618 V +LTb +840 351 M +63 0 V +6066 0 R +-63 0 V +756 351 M +(0) Rshow +840 813 M +63 0 V +6066 0 R +-63 0 V +756 813 M +(1) Rshow +840 1275 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(2) Rshow +840 1736 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(3) Rshow +840 2198 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(4) Rshow +840 2660 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(5) Rshow +840 3122 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(6) Rshow +840 3584 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(7) Rshow +840 4045 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(8) Rshow +840 4507 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(9) Rshow +840 4969 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(10) Rshow +840 351 M +0 63 V +0 4555 R +0 -63 V +840 211 M +(0) Cshow +2372 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(5) Cshow +3905 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(10) Cshow +5437 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(15) Cshow +6969 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(20) Cshow +840 351 M +6129 0 V +0 4618 V +-6129 0 V +840 351 L +392 2660 M +currentpoint gsave translate 90 rotate 0 0 M +(Speedup) Cshow +grestore +3904 -69 M +(Number of Processors) Cshow +LT0 +6486 4766 M +(Linear) Rshow +6570 4766 M +252 0 V +840 351 M +2066 2198 L +3292 4045 L +613 924 V +LT1 +6486 4626 M +(d=7) Rshow +6570 4626 M +252 0 V +2066 610 M +1226 55 V +5743 605 L +6654 4626 D +2066 610 D +3292 665 D +5743 605 D +LT2 +6486 4486 M +(d=8) Rshow +6570 4486 M +252 0 V +2066 785 M +3292 993 L +5743 868 L +6654 4486 A +2066 785 A +3292 993 A +5743 868 A +LT3 +6486 4346 M +(d=9) Rshow +6570 4346 M +252 0 V +2066 1048 M +1226 554 V +2451 0 V +6654 4346 B +2066 1048 B +3292 1602 B +5743 1602 B +LT4 +6486 4206 M +(d=10) Rshow +6570 4206 M +252 0 V +2066 1159 M +1226 804 V +2451 600 V +6654 4206 C +2066 1159 C +3292 1963 C +5743 2563 C +LT5 +6486 4066 M +(d=11) Rshow +6570 4066 M +252 0 V +2066 1298 M +1226 909 V +5743 3681 L +6654 4066 T +2066 1298 T +3292 2207 T +5743 3681 T +LT6 +6486 3926 M +(d=12) Rshow +6570 3926 M +252 0 V +2066 1307 M +3292 2420 L +5743 4235 L +6654 3926 S +2066 1307 S +3292 2420 S +5743 4235 S +stroke +grestore +end +showpage +%%EndDocument + + endTexFig + 975 0 a + 14796136 10419816 3289088 3289088 50651955 36443095 startTexFig + 975 0 a +%%BeginDocument: graph3.ps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.100 0.100 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +840 351 M +6129 0 V +840 351 M +0 4618 V +LTb +840 351 M +63 0 V +6066 0 R +-63 0 V +756 351 M +(0) Rshow +840 813 M +63 0 V +6066 0 R +-63 0 V +756 813 M +(1) Rshow +840 1275 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(2) Rshow +840 1736 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(3) Rshow +840 2198 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(4) Rshow +840 2660 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(5) Rshow +840 3122 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(6) Rshow +840 3584 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(7) Rshow +840 4045 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(8) Rshow +840 4507 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(9) Rshow +840 4969 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(10) Rshow +840 351 M +0 63 V +0 4555 R +0 -63 V +840 211 M +(0) Cshow +2372 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(5) Cshow +3905 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(10) Cshow +5437 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(15) Cshow +6969 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(20) Cshow +840 351 M +6129 0 V +0 4618 V +-6129 0 V +840 351 L +392 2660 M +currentpoint gsave translate 90 rotate 0 0 M +(Speedup) Cshow +grestore +3904 -69 M +(Number of Processors) Cshow +LT0 +6486 4766 M +(Linear) Rshow +6570 4766 M +252 0 V +840 351 M +2066 2198 L +3292 4045 L +613 924 V +LT1 +6486 4626 M +(Quartile 1) Rshow +6570 4626 M +252 0 V +2066 1159 M +1226 818 V +2451 748 V +6654 4626 D +2066 1159 D +3292 1977 D +5743 2725 D +LT2 +6486 4486 M +(Quartile 2) Rshow +6570 4486 M +252 0 V +2066 1270 M +3292 2332 L +5743 3953 L +6654 4486 A +2066 1270 A +3292 2332 A +5743 3953 A +LT3 +6486 4346 M +(Quartile 3) Rshow +6570 4346 M +252 0 V +2066 1284 M +3292 2420 L +5743 4110 L +6654 4346 B +2066 1284 B +3292 2420 B +5743 4110 B +LT4 +6486 4206 M +(Quartile 4) Rshow +6570 4206 M +252 0 V +2066 1312 M +3292 2415 L +5743 4475 L +6654 4206 C +2066 1312 C +3292 2415 C +5743 4475 C +stroke +grestore +end +showpage +%%EndDocument + + endTexFig + 277 751 a Fk(Figure)14 b(10:)j Ff(Key)m(ano)f Fk(-)e(Sp)q(eedups)i(b)o +(y)d(Depth)i(of)e(Searc)o(h)i(and)e(Sequen)o(tial)h(T)m(ree)g(Size)38 +809 y + 14796136 10419816 3289088 3289088 50651955 36443095 startTexFig + 38 809 a +%%BeginDocument: graph1.ps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.100 0.100 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +840 351 M +6129 0 V +840 351 M +0 4618 V +LTb +840 351 M +63 0 V +6066 0 R +-63 0 V +756 351 M +(0) Rshow +840 928 M +63 0 V +6066 0 R +-63 0 V +756 928 M +(50) Rshow +840 1506 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(100) Rshow +840 2083 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(150) Rshow +840 2660 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(200) Rshow +840 3237 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(250) Rshow +840 3815 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(300) Rshow +840 4392 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(350) Rshow +840 4969 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(400) Rshow +840 351 M +0 63 V +0 4555 R +0 -63 V +840 211 M +(0) Cshow +2372 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(5) Cshow +3905 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(10) Cshow +5437 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(15) Cshow +6969 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(20) Cshow +840 351 M +6129 0 V +0 4618 V +-6129 0 V +840 351 L +392 2660 M +currentpoint gsave translate 90 rotate 0 0 M +(Percent Overhead) Cshow +grestore +3904 -69 M +(Number of Processors) Cshow +LT0 +6486 4766 M +(Search Overhead) Rshow +6570 4766 M +252 0 V +2066 597 M +1226 28 V +2451 32 V +6654 4766 D +2066 597 D +3292 625 D +5743 657 D +LT1 +6486 4626 M +(Speculative Search) Rshow +6570 4626 M +252 0 V +2066 413 M +1226 75 V +5743 658 L +6654 4626 A +2066 413 A +3292 488 A +5743 658 A +LT2 +6486 4486 M +(Parallelization Overhead) Rshow +6570 4486 M +252 0 V +2066 516 M +1226 12 V +2451 13 V +6654 4486 B +2066 516 B +3292 528 B +5743 541 B +LT3 +6486 4346 M +(Master Overhead) Rshow +6570 4346 M +252 0 V +2066 735 M +3292 515 L +5743 428 L +6654 4346 C +2066 735 C +3292 515 C +5743 428 C +LT4 +6486 4206 M +(Total Overhead) Rshow +6570 4206 M +252 0 V +2066 1427 M +3292 1258 L +2451 134 V +6654 4206 T +2066 1427 T +3292 1258 T +5743 1392 T +stroke +grestore +end +showpage +%%EndDocument + + endTexFig + 975 809 a + 14796136 10419816 3289088 3289088 50651955 36443095 startTexFig + 975 809 a +%%BeginDocument: graph1c.ps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.100 0.100 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +840 351 M +6129 0 V +840 351 M +0 4618 V +LTb +840 351 M +63 0 V +6066 0 R +-63 0 V +756 351 M +(0) Rshow +840 1121 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(20) Rshow +840 1890 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(40) Rshow +840 2660 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(60) Rshow +840 3430 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(80) Rshow +840 4199 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(100) Rshow +840 4969 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(120) Rshow +840 351 M +0 63 V +0 4555 R +0 -63 V +840 211 M +(0) Cshow +2372 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(5) Cshow +3905 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(10) Cshow +5437 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(15) Cshow +6969 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(20) Cshow +840 351 M +6129 0 V +0 4618 V +-6129 0 V +840 351 L +392 2660 M +currentpoint gsave translate 90 rotate 0 0 M +(Percent Overhead) Cshow +grestore +3904 -69 M +(Number of Processors) Cshow +LT0 +6486 4766 M +(Search Overhead) Rshow +6570 4766 M +252 0 V +2066 1171 M +1226 92 V +2451 108 V +6654 4766 D +2066 1171 D +3292 1263 D +5743 1371 D +LT1 +6486 4626 M +(Speculative Search) Rshow +6570 4626 M +252 0 V +2066 559 M +3292 809 L +2451 566 V +6654 4626 A +2066 559 A +3292 809 A +5743 1375 A +LT2 +6486 4486 M +(Parallelization Overhead) Rshow +6570 4486 M +252 0 V +2066 901 M +1226 39 V +2451 46 V +6654 4486 B +2066 901 B +3292 940 B +5743 986 B +LT3 +6486 4346 M +(Master Overhead) Rshow +6570 4346 M +252 0 V +2066 1632 M +3292 897 L +5743 609 L +6654 4346 C +2066 1632 C +3292 897 C +5743 609 C +LT4 +6486 4206 M +(Total Overhead) Rshow +6570 4206 M +252 0 V +2066 3938 M +3292 3376 L +2451 446 V +6654 4206 T +2066 3938 T +3292 3376 T +5743 3822 T +stroke +grestore +end +showpage +%%EndDocument + + endTexFig + 365 1561 a Fk(Figure)g(11:)j Ff(Key)m(ano)f Fk(-)e(Ov)o(erheads)h(and) +f(Magni\014ed)g(View)f(of)h(Ov)o(erheads)62 1693 y(The)k(74)f(p)q +(ositions)g(examined)f(w)o(ere)j(the)f(p)q(ositions)f(from)e(mo)o(v)o +(e)h(2)h(to)g(mo)o(v)o(e)f(38)h(in)g(the)h(t)o(w)o(o)f(games)f(of)h +(the)h(1994)0 1743 y(W)m(orld)13 b(Championship)e(\014nal)j(b)q(et)o(w) +o(een)h(Da)o(vid)d(Shaman)h(and)g(Emman)o(uel)e(Caspard)1384 +1728 y Fe(7)1403 1743 y Fk(.)62 1793 y(In)j(Figure)g(10,)f(w)o(e)i(see) +g(the)g(graph)e(on)h(the)h(left)f(con)o(tains)f(the)i(sp)q(eedups)h +(brok)o(en)e(do)o(wn)g(b)o(y)g(ply)m(.)j(The)e(graph)f(on)f(the)0 +1843 y(righ)o(t)h(con)o(tains)h(the)h(12)e(ply)g(results)i(brok)o(en)g +(do)o(wn)e(in)o(to)g(four)h(quartiles.)21 b(The)15 b(\014rst)h +(quartile)e(represen)o(ts)k(the)d(smallest)0 1892 y(sequen)o(tial)f +(searc)o(hes,)h(while)f(the)g(fourth)g(quartile)f(represen)o(ts)k(the)e +(largest)f(sequen)o(tial)g(searc)o(hes.)62 1942 y(In)h(Figure)g(11,)f +(w)o(e)h(see)h(the)f(relativ)o(e)g(size)g(of)g(eac)o(h)g(of)f(the)h(o)o +(v)o(erheads)h(describ)q(ed)g(earlier.)21 b(The)16 b(results)g(for)e +(Key)o(ano)0 1992 y(are,)g(in)f(man)o(y)f(w)o(a)o(ys,)h(the)i(most)e +(encouraging)g(of)h(the)g(three)h(programs)e(tested.)62 +2042 y(There)19 b(is)e(a)g(lo)o(w)f(searc)o(h)i(o)o(v)o(erhead)g(whic)o +(h)f(increases)i(sligh)o(tly)d(as)h(w)o(e)g(go)g(from)e(4)i(to)g(16)g +(pro)q(cessors.)30 b(The)18 b(paral-)0 2092 y(lelization)e(o)o(v)o +(erhead)h(is)g(not)g(large.)27 b(Key)o(ano)17 b(w)o(en)o(t)h(from)d(in) +o(v)o(estigating)h(8700)g(no)q(des)i(p)q(er)f(second)i(in)d(the)i +(sequen)o(tial)0 2141 y(program)11 b(to)h(in)o(v)o(estigating)f(b)q(et) +o(w)o(een)j(7400)e(to)g(7600)f(no)q(des)j(p)q(er)f(second)g(in)f(the)h +(APHID)g(v)o(ersion)g(of)f(the)h(program.)j(The)0 2191 +y(only)f(o)o(v)o(erhead)h(that)f(increases)i(rapidly)e(is)h(the)g(sp)q +(eculativ)o(e)g(searc)o(h)h(o)o(v)o(erhead,)e(but)h(this)g(is)f(not)h +(a)f(concern)i(during)e(a)0 2241 y(tournamen)o(t)e(game)f(\(as)i +(previously)g(stated\).)62 2291 y(W)m(eill)g(tested)k(YBW)e(and)f(ABD)o +(AD)o(A)h(on)f(a)h(CM-5)f(using)h(a)f(di\013eren)o(t)i(Othello)f +(program)e([29)o(].)23 b(YBW)16 b(ac)o(hiev)o(ed)g(a)0 +2341 y(9.5-fold)c(sp)q(eedup)17 b(and)d(ABD)o(AD)o(A)h(ac)o(hiev)o(ed)f +(a)h(11-fold)e(sp)q(eedup)j(on)e(16)g(pro)q(cessors.)23 +b(Although)14 b(the)h(APHID)g(results)0 2391 y(are)d(not)f(as)h(go)q(o) +q(d,)f(they)h(w)o(ere)h(ac)o(hiev)o(ed)f(without)f(a)g(shared)i(transp) +q(osition)e(table.)17 b(Both)12 b(ABD)o(AD)o(A)f(and)h(YBW)g(will)e +(get)0 2440 y(p)q(o)q(or)16 b(p)q(erformance)f(on)h(a)f(net)o(w)o(ork)h +(of)f(w)o(orkstations,)g(since)i(the)f(shared)g(transp)q(osition)g +(table)f(is)h(critical)f(to)h(e\013ectiv)o(e)0 2490 y(mo)o(v)o +(e-ordering)c(and)i(limiting)c(the)15 b(searc)o(h)g(o)o(v)o(erhead.)p +0 2525 780 2 v 46 2552 a Fd(7)64 2563 y Fg(Bey)o(ond)d(mo)o(v)o(e)h +(38,)h(Key)o(ano)f(w)o(ould)h(attempt)e(endgame)g(searc)o(hes)g(b)q +(efore)h(completing)e(a)j(12-ply)e(sequen)o(tial)g(searc)o(h.)22 +b(Mo)o(v)o(e)14 b(1)g(in)g(an)0 2603 y(Othello)c(game)h(is)g +(completely)d(symmetric,)h(and)i(Key)o(ano)f(do)q(es)h(not)f(searc)o(h) +g(for)h(the)g(\014rst)g(mo)o(v)o(e)f(in)h(the)g(game.)954 +2790 y Fk(14)p eop +%%Page: 15 17 +15 16 bop 38 0 a + 14796136 10419816 3289088 3289088 50651955 36443095 startTexFig + 38 0 a +%%BeginDocument: graph5.ps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.100 0.100 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +840 351 M +6129 0 V +840 351 M +0 4618 V +LTb +840 351 M +63 0 V +6066 0 R +-63 0 V +756 351 M +(0) Rshow +840 813 M +63 0 V +6066 0 R +-63 0 V +756 813 M +(1) Rshow +840 1275 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(2) Rshow +840 1736 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(3) Rshow +840 2198 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(4) Rshow +840 2660 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(5) Rshow +840 3122 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(6) Rshow +840 3584 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(7) Rshow +840 4045 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(8) Rshow +840 4507 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(9) Rshow +840 4969 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(10) Rshow +840 351 M +0 63 V +0 4555 R +0 -63 V +840 211 M +(0) Cshow +2372 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(5) Cshow +3905 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(10) Cshow +5437 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(15) Cshow +6969 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(20) Cshow +840 351 M +6129 0 V +0 4618 V +-6129 0 V +840 351 L +392 2660 M +currentpoint gsave translate 90 rotate 0 0 M +(Speedup) Cshow +grestore +3904 -69 M +(Number of Processors) Cshow +LT0 +6486 4766 M +(Linear) Rshow +6570 4766 M +252 0 V +840 351 M +2066 2198 L +3292 4045 L +613 924 V +LT1 +6486 4626 M +(d=5) Rshow +6570 4626 M +252 0 V +2066 702 M +3292 854 L +1225 33 V +1226 60 V +6654 4626 D +2066 702 D +3292 854 D +4517 887 D +5743 947 D +LT2 +6486 4486 M +(d=6) Rshow +6570 4486 M +252 0 V +2066 924 M +1226 374 V +1225 212 V +1226 240 V +6654 4486 A +2066 924 A +3292 1298 A +4517 1510 A +5743 1750 A +LT3 +6486 4346 M +(d=7) Rshow +6570 4346 M +252 0 V +2066 914 M +1226 531 V +1225 393 V +1226 439 V +6654 4346 B +2066 914 B +3292 1445 B +4517 1838 B +5743 2277 B +LT4 +6486 4206 M +(d=8) Rshow +6570 4206 M +252 0 V +2066 1011 M +1226 804 V +1225 702 V +1226 614 V +6654 4206 C +2066 1011 C +3292 1815 C +4517 2517 C +5743 3131 C +stroke +grestore +end +showpage +%%EndDocument + + endTexFig + 975 0 a + 14796136 10419816 3289088 3289088 50651955 36443095 startTexFig + 975 0 a +%%BeginDocument: graph6.ps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.100 0.100 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +840 351 M +6129 0 V +840 351 M +0 4618 V +LTb +840 351 M +63 0 V +6066 0 R +-63 0 V +756 351 M +(0) Rshow +840 813 M +63 0 V +6066 0 R +-63 0 V +756 813 M +(1) Rshow +840 1275 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(2) Rshow +840 1736 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(3) Rshow +840 2198 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(4) Rshow +840 2660 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(5) Rshow +840 3122 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(6) Rshow +840 3584 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(7) Rshow +840 4045 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(8) Rshow +840 4507 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(9) Rshow +840 4969 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(10) Rshow +840 351 M +0 63 V +0 4555 R +0 -63 V +840 211 M +(0) Cshow +2372 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(5) Cshow +3905 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(10) Cshow +5437 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(15) Cshow +6969 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(20) Cshow +840 351 M +6129 0 V +0 4618 V +-6129 0 V +840 351 L +392 2660 M +currentpoint gsave translate 90 rotate 0 0 M +(Speedup) Cshow +grestore +3904 -69 M +(Number of Processors) Cshow +LT0 +6486 4766 M +(Linear) Rshow +6570 4766 M +252 0 V +840 351 M +2066 2198 L +3292 4045 L +613 924 V +LT1 +6486 4626 M +(Small) Rshow +6570 4626 M +252 0 V +2066 979 M +1226 637 V +1225 559 V +1226 513 V +6654 4626 D +2066 979 D +3292 1616 D +4517 2175 D +5743 2688 D +LT2 +6486 4486 M +(Medium) Rshow +6570 4486 M +252 0 V +2066 951 M +1226 836 V +1225 545 V +1226 647 V +6654 4486 A +2066 951 A +3292 1787 A +4517 2332 A +5743 2979 A +LT3 +6486 4346 M +(Large) Rshow +6570 4346 M +252 0 V +2066 1058 M +1226 803 V +1225 827 V +1226 605 V +6654 4346 B +2066 1058 B +3292 1861 B +4517 2688 B +5743 3293 B +stroke +grestore +end +showpage +%%EndDocument + + endTexFig + 261 751 a Fk(Figure)14 b(12:)j Ff(TheTurk)e Fk(-)e(Sp)q(eedups)j(b)o +(y)e(Depth)g(of)f(Searc)o(h)i(and)f(Sequen)o(tial)f(T)m(ree)i(Size)38 +809 y + 14796136 10419816 3289088 3289088 50651955 36443095 startTexFig + 38 809 a +%%BeginDocument: graph4.ps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.100 0.100 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +840 351 M +6129 0 V +840 351 M +0 4618 V +LTb +840 351 M +63 0 V +6066 0 R +-63 0 V +756 351 M +(0) Rshow +840 928 M +63 0 V +6066 0 R +-63 0 V +756 928 M +(50) Rshow +840 1506 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(100) Rshow +840 2083 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(150) Rshow +840 2660 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(200) Rshow +840 3237 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(250) Rshow +840 3815 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(300) Rshow +840 4392 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(350) Rshow +840 4969 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(400) Rshow +840 351 M +0 63 V +0 4555 R +0 -63 V +840 211 M +(0) Cshow +2372 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(5) Cshow +3905 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(10) Cshow +5437 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(15) Cshow +6969 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(20) Cshow +840 351 M +6129 0 V +0 4618 V +-6129 0 V +840 351 L +392 2660 M +currentpoint gsave translate 90 rotate 0 0 M +(Percent Overhead) Cshow +grestore +3904 -69 M +(Number of Processors) Cshow +LT0 +6486 4766 M +(Search Overhead) Rshow +6570 4766 M +252 0 V +2066 1367 M +1226 91 V +1225 72 V +1226 69 V +6654 4766 D +2066 1367 D +3292 1458 D +4517 1530 D +5743 1599 D +LT1 +6486 4626 M +(Speculative Search) Rshow +6570 4626 M +252 0 V +2066 515 M +1226 24 V +1225 53 V +1226 66 V +6654 4626 A +2066 515 A +3292 539 A +4517 592 A +5743 658 A +LT2 +6486 4486 M +(Parallelization Overhead) Rshow +6570 4486 M +252 0 V +2066 387 M +1226 9 V +1225 15 V +1226 10 V +6654 4486 B +2066 387 B +3292 396 B +4517 411 B +5743 421 B +LT3 +6486 4346 M +(Master Overhead) Rshow +6570 4346 M +252 0 V +2066 735 M +3292 516 L +4517 456 L +5743 428 L +6654 4346 C +2066 735 C +3292 516 C +4517 456 C +5743 428 C +LT4 +6486 4206 M +(Total Overhead) Rshow +6570 4206 M +252 0 V +2066 2416 M +3292 2107 L +1225 45 V +1226 113 V +6654 4206 T +2066 2416 T +3292 2107 T +4517 2152 T +5743 2265 T +stroke +grestore +end +showpage +%%EndDocument + + endTexFig + 975 809 a + 14796136 10419816 3289088 3289088 50651955 36443095 startTexFig + 975 809 a +%%BeginDocument: graph4c.ps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.100 0.100 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +840 351 M +6129 0 V +840 351 M +0 4618 V +LTb +840 351 M +63 0 V +6066 0 R +-63 0 V +756 351 M +(0) Rshow +840 771 M +63 0 V +6066 0 R +-63 0 V +756 771 M +(20) Rshow +840 1191 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(40) Rshow +840 1610 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(60) Rshow +840 2030 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(80) Rshow +840 2450 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(100) Rshow +840 2870 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(120) Rshow +840 3290 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(140) Rshow +840 3710 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(160) Rshow +840 4129 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(180) Rshow +840 4549 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(200) Rshow +840 4969 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(220) Rshow +840 351 M +0 63 V +0 4555 R +0 -63 V +840 211 M +(0) Cshow +2372 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(5) Cshow +3905 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(10) Cshow +5437 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(15) Cshow +6969 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(20) Cshow +840 351 M +6129 0 V +0 4618 V +-6129 0 V +840 351 L +392 2660 M +currentpoint gsave translate 90 rotate 0 0 M +(Percent Overhead) Cshow +grestore +3904 -69 M +(Number of Processors) Cshow +LT0 +6486 4766 M +(Search Overhead) Rshow +6570 4766 M +252 0 V +2066 2198 M +1226 166 V +1225 130 V +1226 126 V +6654 4766 D +2066 2198 D +3292 2364 D +4517 2494 D +5743 2620 D +LT1 +6486 4626 M +(Speculative Search) Rshow +6570 4626 M +252 0 V +2066 649 M +1226 44 V +1225 97 V +5743 909 L +6654 4626 A +2066 649 A +3292 693 A +4517 790 A +5743 909 A +LT2 +6486 4486 M +(Parallelization Overhead) Rshow +6570 4486 M +252 0 V +2066 416 M +1226 17 V +1225 27 V +1226 19 V +6654 4486 B +2066 416 B +3292 433 B +4517 460 B +5743 479 B +LT3 +6486 4346 M +(Master Overhead) Rshow +6570 4346 M +252 0 V +2066 1050 M +3292 651 L +4517 542 L +5743 492 L +6654 4346 C +2066 1050 C +3292 651 C +4517 542 C +5743 492 C +LT4 +6486 4206 M +(Total Overhead) Rshow +6570 4206 M +252 0 V +2066 4106 M +3292 3544 L +1225 82 V +1226 205 V +6654 4206 T +2066 4106 T +3292 3544 T +4517 3626 T +5743 3831 T +stroke +grestore +end +showpage +%%EndDocument + + endTexFig + 349 1561 a Fk(Figure)f(13:)j Ff(TheTurk)e Fk(-)e(Ov)o(erheads)j(and)d +(Magni\014ed)h(View)g(of)f(Ov)o(erheads)0 1693 y Fv(4.2)56 +b(TheT)-5 b(urk)18 b(\(April)g(1996\))0 1770 y Fk(The)13 +b(exp)q(erimen)o(ts)g(with)g Ff(TheTurk)p Fk(,)g(the)g(c)o(hess)h +(program)e(b)o(y)g(Andreas)i(Junghanns)f(and)g(Yngvi)f(Bjornsson,)h(w)o +(ere)h(run)0 1820 y(so)q(on)i(after)f(the)i(load)d(balancing)h(w)o(as)g +(inserted)i(in)o(to)e(the)h(APHID)g(library)m(.)22 b(Although)15 +b(it)g(w)o(as)h(unclear)g(whether)h(load)0 1869 y(balancing)10 +b(w)o(ould)g(b)q(e)i(necessary)h(with)e(the)g(APHID)g(library)g(when)g +(testing)h(the)f(program)f(with)h Ff(Key)m(ano)p Fk(,)i(the)e(necessit) +o(y)0 1919 y(for)j(load)e(balancing)h(in)h(other)g(games)f(suc)o(h)i +(as)f(c)o(hess)h(w)o(as)f(clear)g(to)g(the)g(authors.)62 +1969 y(T)m(o)d(test)j(the)e(program,)e(the)j(24)f(Bratk)o(o-Kop)q(ec)h +(p)q(ositions)e(w)o(ere)i(used.)18 b(Although)12 b(there)h(are)g(kno)o +(wn)e(problems)g(with)0 2019 y(these)18 b(p)q(ositions,)e(using)h(this) +f(test)i(set)g(allo)o(ws)d(for)h(comparison)f(with)i(other)g(w)o(ork.) +26 b(Eac)o(h)16 b(p)q(osition)g(w)o(as)h(searc)o(hed)h(to)0 +2069 y(depth)e Fj(d)c Fk(=)i(8,)g(while)h(the)g(master)g(con)o(trolled) +f(the)i(top)e Fj(d)928 2054 y Fa(0)953 2069 y Fk(=)f(3)i(ply)f(of)h +(the)g(tree,)h(since)g Fj(d)1447 2054 y Fa(0)1471 2069 +y Fk(=)e(4)g(w)o(as)h(not)g(feasible)f(giv)o(en)0 2118 +y(the)i(amoun)o(t)f(of)g(memory)e(on)j(the)g(SparcStations.)25 +b(Figure)16 b(12)f(represen)o(ts)k(the)d(sp)q(eedups)i(generated)f(b)o +(y)f Ff(TheTurk)p Fk(,)0 2168 y(while)d(Figure)h(13)g(giv)o(es)f(the)i +(o)o(v)o(erheads)g(in)e(the)h(parallel)f(program.)62 +2218 y(Although)d(the)h(results)g(presen)o(ted)h(here)g(for)e(c)o(hess) +h(are)g(promising,)d(w)o(e)j(b)q(eliev)o(e)f(that)h(b)q(etter)g +(results)h(can)e(b)q(e)h(ac)o(hiev)o(ed.)0 2268 y(The)16 +b(main)e(di\013erence)j(b)q(et)o(w)o(een)g(the)f(results)h(for)e +Ff(Key)m(ano)j Fk(and)e Ff(TheTurk)g Fk(rev)o(olv)o(e)f(around)h(the)g +(size)h(of)e(the)h(searc)o(h)0 2318 y(o)o(v)o(erhead.)62 +2368 y(W)m(e)e(ha)o(v)o(e)h(come)e(up)i(with)f(three)i(p)q(ossible)f(h) +o(yp)q(otheses)h(for)e(this)g(di\013erence.)22 b(The)15 +b(\014rst)g(is)g(that)f Ff(Key)m(ano)j Fk(do)q(es)e(not)0 +2417 y(use)g(quiescen)o(t)g(searc)o(h.)20 b(As)15 b(a)f(consequence,)i +(the)f(sizes)g(of)e(the)i(v)n(arious)f(pieces)h(of)f(w)o(ork)f(are)i +(more)e(predictable)i(in)f(size,)0 2467 y(and)h(Key)o(ano's)g(results)i +(did)e(not)g(need)h(load)e(balancing.)21 b(Load)15 b(balancing)f +(causes)j(searc)o(h)f(o)o(v)o(erhead)g(since)g(it)f(forces)h(a)0 +2517 y(new)11 b(pro)q(cessor)i(to)e(rep)q(eat)h(searc)o(hes)h(done)e(b) +o(y)g(a)g(di\013eren)o(t)h(pro)q(cessor.)19 b(The)11 +b(load)f(balancing)g(is)h(partially)e(resp)q(onsible)j(for)0 +2567 y(the)h(di\013erence)g(in)f(searc)o(h)h(o)o(v)o(erhead.)18 +b(The)12 b(second)h(p)q(ossible)g(reason)f(is)g(that)g(the)h(searc)o(h) +g(windo)o(ws)e(in)h(the)g(sla)o(v)o(es)g(can,)g(in)0 +2617 y(some)f(cases,)i(b)q(e)f(larger)f(than)h(the)g(minim)o(al)c +(windo)o(w)j(used)h(in)f(the)h(sequen)o(tial)g(program.)k(Although)11 +b(this)g(larger)h(windo)o(w)0 2666 y(is)i(common)d(to)j(b)q(oth)h +(parallel)e(implem)o(en)o(tations,)e(it)j(has)g(a)g(m)o(uc)o(h)f +(larger)h(e\013ect)i(on)e(the)h(size)g(of)e(the)i(trees)h(searc)o(hed)f +(in)954 2790 y(15)p eop +%%Page: 16 18 +16 17 bop 38 0 a + 14796136 10419816 3289088 3289088 50651955 36443095 startTexFig + 38 0 a +%%BeginDocument: graph8.ps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.100 0.100 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +840 351 M +6129 0 V +840 351 M +0 4618 V +LTb +840 351 M +63 0 V +6066 0 R +-63 0 V +756 351 M +(0) Rshow +840 813 M +63 0 V +6066 0 R +-63 0 V +756 813 M +(1) Rshow +840 1275 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(2) Rshow +840 1736 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(3) Rshow +840 2198 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(4) Rshow +840 2660 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(5) Rshow +840 3122 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(6) Rshow +840 3584 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(7) Rshow +840 4045 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(8) Rshow +840 4507 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(9) Rshow +840 4969 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(10) Rshow +840 351 M +0 63 V +0 4555 R +0 -63 V +840 211 M +(0) Cshow +2372 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(5) Cshow +3905 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(10) Cshow +5437 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(15) Cshow +6969 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(20) Cshow +840 351 M +6129 0 V +0 4618 V +-6129 0 V +840 351 L +392 2660 M +currentpoint gsave translate 90 rotate 0 0 M +(Speedup) Cshow +grestore +3904 -69 M +(Number of Processors) Cshow +LT0 +6486 4766 M +(Linear) Rshow +6570 4766 M +252 0 V +840 351 M +2066 2198 L +3292 4045 L +613 924 V +LT1 +6486 4626 M +(d=11) Rshow +6570 4626 M +252 0 V +2066 577 M +1226 28 V +1225 -5 V +1226 -4 V +6654 4626 D +2066 577 D +3292 605 D +4517 600 D +5743 596 D +LT2 +6486 4486 M +(d=13) Rshow +6570 4486 M +252 0 V +2066 739 M +3292 854 L +1225 10 V +5743 850 L +6654 4486 A +2066 739 A +3292 854 A +4517 864 A +5743 850 A +LT3 +6486 4346 M +(d=15) Rshow +6570 4346 M +252 0 V +2066 905 M +1226 291 V +1225 92 V +1226 107 V +6654 4346 B +2066 905 B +3292 1196 B +4517 1288 B +5743 1395 B +LT4 +6486 4206 M +(d=17) Rshow +6570 4206 M +252 0 V +2066 1034 M +1226 453 V +1225 277 V +1226 328 V +6654 4206 C +2066 1034 C +3292 1487 C +4517 1764 C +5743 2092 C +stroke +grestore +end +showpage +%%EndDocument + + endTexFig + 975 0 a + 14796136 10419816 3289088 3289088 50651955 36443095 startTexFig + 975 0 a +%%BeginDocument: graph9.ps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.100 0.100 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +840 351 M +6129 0 V +840 351 M +0 4618 V +LTb +840 351 M +63 0 V +6066 0 R +-63 0 V +756 351 M +(0) Rshow +840 813 M +63 0 V +6066 0 R +-63 0 V +756 813 M +(1) Rshow +840 1275 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(2) Rshow +840 1736 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(3) Rshow +840 2198 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(4) Rshow +840 2660 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(5) Rshow +840 3122 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(6) Rshow +840 3584 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(7) Rshow +840 4045 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(8) Rshow +840 4507 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(9) Rshow +840 4969 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(10) Rshow +840 351 M +0 63 V +0 4555 R +0 -63 V +840 211 M +(0) Cshow +2372 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(5) Cshow +3905 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(10) Cshow +5437 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(15) Cshow +6969 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(20) Cshow +840 351 M +6129 0 V +0 4618 V +-6129 0 V +840 351 L +392 2660 M +currentpoint gsave translate 90 rotate 0 0 M +(Speedup) Cshow +grestore +3904 -69 M +(Number of Processors) Cshow +LT0 +6486 4766 M +(Linear) Rshow +6570 4766 M +252 0 V +840 351 M +2066 2198 L +3292 4045 L +613 924 V +LT1 +6486 4626 M +(Small) Rshow +6570 4626 M +252 0 V +2066 434 M +3292 559 L +4517 790 L +1226 392 V +6654 4626 D +2066 434 D +3292 559 D +4517 790 D +5743 1182 D +LT2 +6486 4486 M +(Medium) Rshow +6570 4486 M +252 0 V +2066 683 M +3292 854 L +1225 407 V +1226 563 V +6654 4486 A +2066 683 A +3292 854 A +4517 1261 A +5743 1824 A +LT3 +6486 4346 M +(Large) Rshow +6570 4346 M +252 0 V +2066 605 M +3292 965 L +1225 665 V +1226 730 V +6654 4346 B +2066 605 B +3292 965 B +4517 1630 B +5743 2360 B +stroke +grestore +end +showpage +%%EndDocument + + endTexFig + 268 751 a Fk(Figure)14 b(14:)k Ff(Chinook)d Fk(-)f(Sp)q(eedups)h(b)o +(y)f(Depth)g(of)f(Searc)o(h)i(and)f(Sequen)o(tial)g(T)m(ree)g(Size)506 +809 y + 14796136 10419816 3289088 3289088 50651955 36443095 startTexFig + 506 809 a +%%BeginDocument: graph7.ps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.100 0.100 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +840 351 M +6129 0 V +840 351 M +0 4618 V +LTb +840 351 M +63 0 V +6066 0 R +-63 0 V +756 351 M +(0) Rshow +840 928 M +63 0 V +6066 0 R +-63 0 V +756 928 M +(50) Rshow +840 1506 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(100) Rshow +840 2083 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(150) Rshow +840 2660 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(200) Rshow +840 3237 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(250) Rshow +840 3815 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(300) Rshow +840 4392 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(350) Rshow +840 4969 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(400) Rshow +840 351 M +0 63 V +0 4555 R +0 -63 V +840 211 M +(0) Cshow +2372 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(5) Cshow +3905 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(10) Cshow +5437 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(15) Cshow +6969 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(20) Cshow +840 351 M +6129 0 V +0 4618 V +-6129 0 V +840 351 L +392 2660 M +currentpoint gsave translate 90 rotate 0 0 M +(Percent Overhead) Cshow +grestore +3904 -69 M +(Number of Processors) Cshow +LT0 +6486 4766 M +(Search Overhead) Rshow +6570 4766 M +252 0 V +2066 1260 M +1226 407 V +1225 366 V +1226 29 V +6654 4766 D +2066 1260 D +3292 1667 D +4517 2033 D +5743 2062 D +LT1 +6486 4626 M +(Speculative Search) Rshow +6570 4626 M +252 0 V +2066 485 M +3292 948 L +1225 411 V +1226 347 V +6654 4626 A +2066 485 A +3292 948 A +4517 1359 A +5743 1706 A +LT2 +6486 4486 M +(Parallelization Overhead) Rshow +6570 4486 M +252 0 V +2066 425 M +1226 8 V +1225 9 V +1226 9 V +6654 4486 B +2066 425 B +3292 433 B +4517 442 B +5743 451 B +LT3 +6486 4346 M +(Master Overhead) Rshow +6570 4346 M +252 0 V +2066 735 M +3292 516 L +4517 456 L +5743 428 L +6654 4346 C +2066 735 C +3292 516 C +4517 456 C +5743 428 C +LT4 +6486 4206 M +(Total Overhead) Rshow +6570 4206 M +252 0 V +2066 2314 M +1226 636 V +1225 772 V +1226 371 V +6654 4206 T +2066 2314 T +3292 2950 T +4517 3722 T +5743 4093 T +stroke +grestore +end +showpage +%%EndDocument + + endTexFig + 671 1561 a Fk(Figure)g(15:)j Ff(Chinook)e Fk(-)f(Ov)o(erheads)0 +1693 y Ff(TheTurk)i Fk(than)f(in)g Ff(Key)m(ano)p Fk(.)25 +b(The)15 b(third)h(h)o(yp)q(othesis)g(is)f(that)g(the)h(game)e(of)h(c)o +(hess)i(has)e(more)f(transp)q(ositions)i(than)0 1743 +y(the)f(game)e(of)g(Othello.)19 b(Th)o(us,)14 b(the)h(information)d +(de\014ciency)j(caused)h(b)o(y)e(doing)f(the)i(searc)o(h)h(on)e(m)o +(ultiple)e(pro)q(cessors)k(is)0 1793 y(greater)f(in)e(c)o(hess)j(than)e +(in)f(Othello.)62 1843 y(Other)f(results)f(for)f(parallel)f(searc)o(h)j +(algorithms)c(on)i(a)g(net)o(w)o(ork)h(of)e(w)o(orkstations)h(ha)o(v)o +(e)h(b)q(een)g(presen)o(ted)i(for)d(the)g(game)0 1892 +y(of)k(c)o(hess)h([24].)j(A)d(distributed)g(transp)q(osition)f(table)g +(w)o(as)g(used)h(to)g(impro)o(v)o(e)d(the)j(p)q(erformance)f(of)g(the)h +Ff(P)l(araPhoenix)0 1942 y Fk(c)o(hess)c(searc)o(hes,)h(and)e(a)f(sp)q +(eedup)j(of)d(7)g(w)o(as)h(ac)o(hiev)o(ed)g(on)f(16)h(pro)q(cessors.)19 +b(Although)9 b(these)i(results)g(are)f(marginally)c(b)q(etter)0 +1992 y(than)14 b(the)g(results)h(presen)o(ted)h(here,)e(the)h +(scalabilit)o(y)d(of)h(the)h(algorithm)e(w)o(as)h(extrap)q(olated)h(to) +g(a)f(sp)q(eedup)j(of)d(at)h(most)e(8)0 2042 y(on)g(32)f(pro)q +(cessors.)20 b(Based)13 b(on)f(the)g(graphs)h(presen)o(ted)h(earlier)e +(in)g(this)g(section,)h(w)o(e)f(b)q(eliev)o(e)g(the)h(APHID)f +(algorithm)d(will)0 2092 y(outp)q(erform)16 b(on)g(a)g(larger)h(n)o(um) +o(b)q(er)f(of)g(pro)q(cessors.)28 b(The)17 b(b)q(ene\014cial)g +(e\013ects)i(of)d(the)h(distributed)h(transp)q(osition)e(table)0 +2141 y(are)i(deriv)o(ed)g(primarily)d(in)j(the)g(top)g(plies)f(of)g +(the)i(searc)o(h)g(tree,)g(and)f(these)h(b)q(ene\014ts)g(are)f +(duplicated)g(in)f(APHID)h(b)o(y)0 2191 y(main)o(taining)10 +b(the)15 b(top)f Fj(d)397 2176 y Fa(0)422 2191 y Fk(ply)f(exclusiv)o +(ely)h(on)g(the)g(master)g(pro)q(cessor.)0 2307 y Fv(4.3)56 +b(Chino)r(ok)18 b(\(June)g(1996\))0 2384 y Fk(Due)10 +b(to)g(resource)i(limitations,)c(w)o(e)i(could)g(not)g(run)g(the)h(exp) +q(erimen)o(ts)f(with)g Ff(Chinook)h Fk(un)o(til)e(late)h(June.)18 +b(The)10 b(b)q(enc)o(hmark)0 2434 y(p)q(ositions)g(used)h(are)f(a)g +(series)h(of)f(p)q(ositions)f(whic)o(h)h Ff(Chinook)i +Fk(has)e(misev)n(aluated)e(in)i(previous)g(tournamen)o(t)f(games.)16 +b(Eac)o(h)0 2484 y(of)d(these)j(p)q(ositions)d(w)o(as)h(searc)o(hed)i +(to)d Fj(d)e Fk(=)h(17)i(ply)m(,)e(while)h(the)i(master)e(con)o +(trolled)h(the)g(top)g Fj(d)1513 2469 y Fa(0)1536 2484 +y Fk(=)e(6)h(ply)h(of)f(the)i(tree.)62 2534 y(Figures)g(14)e(and)h(15)f +(sho)o(w)h(the)g(sp)q(eedups)i(and)e(o)o(v)o(erheads)h(for)e +(parallelism)e(in)j Ff(Chinook)p Fk(.)62 2583 y(This)f(o)o(v)o(erhead)h +(mo)q(del)d(hea)o(vily)i(relies)g(on)g(the)h(fact)f(that)g(the)h(a)o(v) +o(erage)f(no)q(de)h(cost)f(is)g(constan)o(t)h(o)o(v)o(er)f(the)h(en)o +(tire)g(test)0 2633 y(set.)19 b(F)m(or)12 b Ff(Key)m(ano)j +Fk(and)e Ff(TheTurk)p Fk(,)g(this)g(is)g(generally)f(true;)i(the)f(n)o +(um)o(b)q(er)f(of)h(no)q(des)g(p)q(er)h(second)g(visited)f(v)n(aries)g +(b)o(y)f(no)0 2683 y(more)g(than)h(5\045.)j(Ho)o(w)o(ev)o(er,)d(this)g +(is)g(not)g(true)g(for)g Ff(Chinook)p Fk(.)19 b(The)13 +b(n)o(um)o(b)q(er)f(of)g(no)q(des)i(p)q(er)f(second)h(visited)f(v)n +(aries)g(b)o(y)f(at)954 2790 y(16)p eop +%%Page: 17 19 +17 18 bop 0 42 a Fk(least)13 b(30\045,)e(due)i(to)f(n)o(umerous)f +(time-sa)o(ving)f(tric)o(ks)j(in)f(the)h(co)q(de.)18 +b(Th)o(us,)13 b(the)g(analysis)e(of)h(the)h(o)o(v)o(erheads)g(for)f +Ff(Chinook)0 91 y Fk(is)i(not)g(as)g(reliable)f(as)h(it)f(is)h(for)g +(the)g(other)h(programs)d(giv)o(en)i(in)f(this)h(tec)o(hnical)g(rep)q +(ort.)62 141 y(In)i(an)o(y)f(case,)i(there)g(are)g(ob)o(vious)e +(problems)f(with)i(the)g(parallelization)e(in)i Ff(Chinook)p +Fk(.)25 b(Unlik)o(e)15 b(the)h(previous)g(t)o(w)o(o)0 +191 y(programs,)d(w)o(e)h(see)i(that)e(the)h(APHID)g(algorithm)c(in)j +Ff(Chinook)i Fk(incurs)f(a)f(lot)g(of)f(additional)g(sp)q(eculativ)o(e) +i(searc)o(h,)g(and)0 241 y(a)e(rapidly)g(increasing)h(searc)o(h)h(o)o +(v)o(erhead.)k(The)14 b(n)o(um)o(b)q(er)f(of)g(pieces)i(of)e(w)o(ork)h +(at)f(depth)i Fj(d)1429 226 y Fa(0)1452 241 y Fk(=)d(6)h(w)o(as)h +(insu\016cien)o(t)g(to)f(k)o(eep)0 291 y(a)j(large)g(n)o(um)o(b)q(er)f +(of)g(sla)o(v)o(es)h(busy)m(.)25 b(Ho)o(w)o(ev)o(er,)16 +b(when)h(testing)f Fj(d)1032 276 y Fa(0)1059 291 y Fk(=)f(8)h(ply)m(,)f +(w)o(e)h(disco)o(v)o(ered)h(that)f(serious)h(in\015exibilities)0 +340 y(w)o(ere)h(encoun)o(tered,)i(prev)o(en)o(ting)e(us)f(from)f +(running)h(a)g(full)f(test)i(set)h(without)e(remo)o(ving)e(the)j +(transp)q(osition)f(table)g(in)0 390 y Ff(Chinook)p Fk(.)26 +b(As)16 b(w)o(ell,)g(the)g(impact)f(of)g(transp)q(ositions)i(in)e(the)i +(game)e(of)g(c)o(hec)o(k)o(ers)j(is)e(m)o(uc)o(h)f(more)g(imp)q(ortan)o +(t)f(than)i(in)0 440 y(either)e(c)o(hess)g(or)e(Othello.)18 +b(This)12 b(causes)i(the)g(searc)o(h)f(o)o(v)o(erhead)g(to)g(increase)h +(at)e(a)h(m)o(uc)o(h)e(faster)j(rate)f(for)f Ff(Chinook)i +Fk(than)0 490 y(either)h(of)e(the)h(previous)h(test)g(programs.)62 +540 y(Although)d(the)i(sp)q(eedups)h(are)e(v)o(ery)g(lo)o(w)f(in)g +(magnitude,)f(parallelizing)g(a)h(high-p)q(erformance)g(c)o(hec)o(k)o +(ers)j(programs)c(is)0 589 y(a)h(v)o(ery)i(di\016cult)e(task.)17 +b(P)o(aul)c(Lu)f(sp)q(en)o(t)i(o)o(v)o(er)f(a)f(y)o(ear)h(w)o(orking)f +(on)g(the)i(tournamen)o(t)e(v)o(ersion)g(of)h(parallel)e +Ff(Chinook)j Fk(and)0 639 y(ac)o(hiev)o(ed)g(sp)q(eedups)i(of)d(3.32)f +(using)i(a)f(shared-memory)f(system)i(with)f(16)g(pro)q(cessors)j([16)o +(].)i(The)c(v)o(ery)g(thin)f(game)f(trees)0 689 y(of)i(c)o(hec)o(k)o +(ers)j(do)e(not)g(yield)f(easily)h(to)g(parallelism)d(based)k(on)f(the) +g(critical)g(tree.)23 b(The)15 b(authors)g(b)q(eliev)o(e)h(that)f(when) +g(the)0 739 y(APHID)f(library)f(is)h(mo)q(di\014ed)e(to)i(address)h +(these)h(problems,)c(the)j(APHID)f(library)f(should)g(yield)h(a)f(b)q +(etter)j(sp)q(eedup)f(for)0 789 y(Chino)q(ok.)0 926 y +Fl(5)67 b(Conclusions)22 b(and)h(F)-6 b(uture)24 b(W)-6 +b(ork)0 1017 y Fk(The)14 b(APHID)f(algorithm)e(yields)i(go)q(o)q(d)g +(sp)q(eedups)i(on)e(a)g(net)o(w)o(ork)g(of)g(w)o(orkstations)g(without) +g(the)h(necessit)o(y)g(of)f(a)g(shared)0 1067 y(transp)q(osition)g +(table.)18 b(Although)13 b(the)i(authors)f(are)g(pleased)g(with)f +(these)i(preliminary)c(results,)k(a)e(lot)g(of)g(w)o(ork)g(is)h(left)f +(to)0 1117 y(b)q(e)i(done.)62 1166 y(As)d(men)o(tioned)e(in)h(Section)h +(4.3,)e(the)i(secondary)g(in)o(terface)g(and)f(underlying)g(co)q(de)h +(within)e(the)i(APHID)f(library)g(m)o(ust)0 1216 y(b)q(e)k(\014xed)f +(to)g(allo)o(w)e(for)h(greater)i(parallelism.)62 1266 +y(Our)e(curren)o(t)h(implemen)o(tation)9 b(of)j(APHID)g(uses)i(a)e +(\014xed-depth)h(horizon)g(for)f(the)h(master's)e(tree.)19 +b(As)13 b(men)o(tioned)e(in)0 1316 y(our)i(discussion)h(of)f(load)f +(balancing,)g(all)g(p)q(ositions)h(are)h(not)f(equal)g(in)g(the)h +(amoun)o(t)e(of)h(searc)o(h)h(e\013ort)g(they)g(require)g(for)f(a)0 +1366 y(\014xed)h(depth)h(of)e(searc)o(h.)19 b(APHID)14 +b(will)f(b)q(e)h(generalized)h(to)f(supp)q(ort)g(a)g(more)f(dynamic)f +(searc)o(h)j(horizon)f(in)f(the)i(master.)62 1415 y(Instead)f(of)e +(basing)h(the)g(results)i(of)d(the)i(algorithm)c(on)j(the)g(sp)q +(eedup,)i(w)o(e)e(are)g(also)g(in)o(terested)h(in)f(the)g(qualit)o(y)f +(of)g(the)0 1465 y(results)g(returned)g(b)o(y)e(the)h(algorithm.)j +(This)d(will)e(b)q(e)i(necessary)i(when)e(the)g(algorithm)d(is)i +(tested)i(b)q(ey)o(ond)f(the)g(\014xed-depth)0 1515 y(limitations)f +(giv)o(en)i(here.)18 b(The)13 b(b)q(ene\014ts)i(and)d(disadv)n(an)o +(tages)g(of)g(these)i(alternativ)o(e)f(views)g(of)f(parallel)f(p)q +(erformance)i(are)0 1565 y(curren)o(tly)i(b)q(eing)f(explored.)62 +1615 y(The)h(results)g(rep)q(orted)h(here)f(are)g(based)g(on)e(a)h +(simple)f(master/sla)o(v)o(e)g(relationship.)18 b(As)d(the)g(n)o(um)o +(b)q(er)e(of)h(pro)q(cessors)0 1664 y(increases,)f(the)f(master)f +(increasingly)h(b)q(ecomes)f(a)h(b)q(ottlenec)o(k.)18 +b(APHID)11 b(has)h(b)q(een)h(generalized)f(to)f(w)o(ork)h(in)f(a)g +(hierarc)o(hi-)0 1714 y(cal)j(pro)q(cess)j(tree,)e(although)f(this)h +(asp)q(ect)h(of)e(the)h(algorithm)d(has)j(not)f(b)q(een)i(tested)g +(here.)22 b(Mid-lev)o(el)13 b(pro)q(cesses)18 b(w)o(ould)0 +1764 y(b)q(eha)o(v)o(e)c(as)f(a)g(sla)o(v)o(e)g(to)o(w)o(ard)g(their)h +(master,)e(and)i(as)f(a)g(master)g(to)o(w)o(ard)g(their)h(sla)o(v)o +(es.)j(The)d(scalabilit)o(y)e(of)h(the)h(algorithm)0 +1814 y(has)g(y)o(et)h(to)f(b)q(e)h(demonstrated)f(on)g(arc)o +(hitectures)i(of)e(more)f(than)h(16)g(pro)q(cessors,)i(due)f(to)f +(resource)i(limitations)11 b(during)0 1864 y(the)j(academic)f(y)o(ear.) +62 1914 y(P)o(erhaps)i(the)e(biggest)h(con)o(tribution)f(of)f(APHID)i +(is)f(that)g(it)g(easily)g(\014ts)h(in)f(to)g(an)g(existing)g(sequen)o +(tial)g Fj(\013\014)j Fk(program.)0 1963 y(Although)e(the)h(\014rst)h +(stage)f(of)f(the)h(exp)q(erimen)o(t)f(uses)i(programs)d(written)j(at)e +(the)h(Univ)o(ersit)o(y)g(of)f(Alb)q(erta,)g(the)i(authors)0 +2013 y(b)q(eliev)o(e)e(that)h(the)f(same)g(ease)h(of)e(in)o(tegration)h +(will)e(b)q(e)j(demonstrated)f(in)g(the)h(second)g(stage)g(of)e(the)i +(exp)q(erimen)o(t,)e(when)0 2063 y(the)h(APHID)h(library)e(is)g(giv)o +(en)h(to)g(b)q(eta-testers)i(outside)e(of)f(the)i(Univ)o(ersit)o(y)f +(of)f(Alb)q(erta.)0 2200 y Fl(6)67 b(Ac)n(kno)n(wledgemen)n(ts)0 +2291 y Fk(Man)o(y)10 b(p)q(eople)h(ha)o(v)o(e)f(con)o(tributed)h(to)f +(the)h(success)i(of)d(this)h(pro)r(ject.)18 b(W)m(e)10 +b(w)o(ould)f(lik)o(e)h(to)g(thank)g(the)h(other)g(mem)o(b)q(ers)f(of)f +(the)0 2341 y(Univ)o(ersit)o(y)k(of)f(Alb)q(erta)h(GAMES)g(group)f(for) +h(n)o(umerous)f(discussions)h(and)g(impro)o(v)o(emen)o(ts)d(to)j(the)g +(presen)o(tation)h(of)e(this)0 2391 y(pap)q(er)h(and)f(the)h(library:)k +(Yngvi)12 b(Bjornsson,)h(Y)m(ao)q(qing)e(Gao,)g(Andreas)i(Junghanns,)g +(T)m(on)o(y)e(Marsland)i(and)f(Ask)o(e)h(Plaat.)0 2441 +y(W)m(e)i(w)o(ould)f(also)g(lik)o(e)h(to)g(thank)g(P)o(aul)f(Lu)h(for)g +(his)g(commen)o(ts)e(on)i(the)h(APHID)f(library)m(,)f(and)h(the)h +(Computing)d(Science)0 2490 y(Instructional)20 b(Supp)q(ort)h(Group)f +(at)h(the)g(Univ)o(ersit)o(y)f(of)g(Alb)q(erta)g(for)g(giving)f(us)i +(the)g(computer)f(time)f(for)h(running)0 2540 y(the)f(exp)q(erimen)o +(ts.)32 b(W)m(e)19 b(w)o(ould)e(also)h(lik)o(e)g(to)g(thank)h(the)g +(anon)o(ymous)e(referees)j(that)f(ha)o(v)o(e)f(help)q(ed)i(us)f(impro)o +(v)o(e)d(the)0 2590 y(presen)o(tation)f(of)e(p)q(ortions)h(of)f(this)h +(do)q(cumen)o(t.)62 2640 y(This)g(w)o(ork)g(w)o(as)f(supp)q(orted)j(b)o +(y)d(the)i(Natural)e(Sciences)j(and)e(Engineering)g(Researc)o(h)h +(Council)e(of)g(Canada.)954 2790 y(17)p eop +%%Page: 18 20 +18 19 bop 0 42 a Fl(References)21 124 y Fk([1])19 b(M.)f(G.)f(Bro)q(c)o +(kington.)30 b(A)19 b(Taxonom)o(y)c(of)j(Parallel)f(Game-Tree)g(Searc)o +(h)i(Algorithms.)28 b Fi(ICCA)18 b(Journal)p Fk(,)h(19\(3\),)85 +166 y(1996.)e(In)d(press.)21 240 y([2])19 b(M.)13 b(G.)f(Bro)q(c)o +(kington)h(and)f(J.)h(Sc)o(hae\013er.)18 b(APHID)13 b(Game)e(Tree)j +(Searc)o(h.)j(In)c Fi(A)n(dvanc)n(es)i(in)f(Computer)g(Chess)g(VIII)p +Fk(,)85 282 y(Maastric)o(h)o(t,)g(The)g(Netherlands,)h(June)g(1996.)i +(In)c(press.)21 357 y([3])19 b(M.)11 b(G.)g(Bro)q(c)o(kington)g(and)h +(J.)f(Sc)o(hae\013er.)16 b(The)c(APHID)f(Parallel)g Fj(\013\014)j +Fk(Searc)o(h)e(Algorithm.)g(In)f Fi(Pr)n(o)n(c)n(e)n(e)n(dings)i(of)g +(IEEE)85 398 y(SPDP)j('96)p Fk(,)e(New)g(Orleans,)g(Louisiana,)e(Octob) +q(er)k(1996.)h(In)d(press.)21 473 y([4])19 b(V.)12 b(Da)o(vid.)h +Fi(A)o(lgorithmique)f(p)n(ar)n(al)r(l)o(\022)-20 b(ele)12 +b(sur)h(les)g(arbr)n(es)f(de)i(d)o(\023)-20 b(ecision)13 +b(et)g(r)n(aisonnement)g(en)h(temps)f(c)n(ontr)n(aint)g(-)f(Etude)85 +514 y(et)j(applic)n(ation)g(au)h(minimax)p Fk(.)i(PhD)13 +b(thesis,)i(ENSAE,)f(T)m(oulouse,)f(F)m(rance,)h(1993.)21 +589 y([5])19 b(R.)34 b(F)m(eldmann.)78 b Fi(Spielb)n(aumsuche)35 +b(mit)e(massiv)h(p)n(ar)n(al)r(lelen)g(Systemen)p Fk(.)80 +b(PhD)35 b(thesis,)40 b(Univ)o(ersit\177)-21 b(at-)85 +631 y(Gesam)o(tho)q(c)o(hsc)o(h)o(ule)13 b(P)o(aderb)q(orn,)h(P)o +(aderb)q(orn,)g(German)o(y)m(,)c(Ma)o(y)j(1993.)j(In)d(German)f({)h +(English)g(translation)f(a)o(v)n(ail-)85 672 y(able.)21 +747 y([6])19 b(E.)f(W.)e(F)m(elten)i(and)f(S.)h(W.)e(Otto.)29 +b(Chess)19 b(on)f(a)f(Hyp)q(ercub)q(e.)31 b(In)17 b(G.)g(F)m(o)o(x,)g +(editor,)h Fi(Pr)n(o)n(c)n(e)n(e)n(dings)g(of)h(The)f(Thir)n(d)85 +788 y(Confer)n(enc)n(e)13 b(on)g(Hyp)n(er)n(cub)n(e)f(Concurr)n(ent)h +(Computers)f(and)h(Applic)n(ations)p Fk(,)e(v)o(olume)f(I)q +(I-Applications,)h(pages)g(1329{)85 830 y(1341,)i(P)o(assadena,)h(CA,)f +(1988.)21 905 y([7])19 b(C.)c(F)m(erguson)h(and)g(R.)f(E.)g(Korf.)23 +b(Distributed)16 b(T)m(ree)g(Searc)o(h)h(and)e(its)h(Application)f(to)g +(Alpha-Beta)h(Pruning.)23 b(In)85 946 y Fi(Pr)n(o)n(c)n(e)n(e)n(dings) +15 b(of)g(AAAI-88)p Fk(,)e(pages)h(128{132,)e(Sain)o(t)h(P)o(aul,)g +(MN,)h(August)g(1988.)21 1021 y([8])19 b(F.)14 b(Hsu.)k(Priv)n(ate)c +(comm)o(unication,)c(1996.)21 1095 y([9])19 b(F.-h.)c(Hsu.)22 +b Fi(L)n(ar)n(ge)16 b(Sc)n(ale)g(Par)n(al)r(lelization)f(of)h(A)o +(lpha-Beta)h(Se)n(ar)n(ch:)k(A)o(n)c(A)o(lgorithmic)d(and)j(A)o(r)n +(chite)n(ctur)n(al)e(Study)p Fk(.)85 1137 y(PhD)g(thesis,)h(Carnegie)g +(Mellon)e(Univ)o(ersit)o(y)m(,)g(Pittsburgh,)i(U.S.A.,)e(1990.)20 +b(Also)15 b(T)m(ec)o(h.)g(Rept.)g(CMU-CS-90-108,)85 1179 +y(Carnegie)f(Mellon)g(Univ)o(ersit)o(y)m(,)f(F)m(eb.)g(1990.)0 +1253 y([10])19 b(R.)11 b(M.)h(Hy)o(att,)g(B.)g(W.)f(Suter,)i(and)e(H.)h +(L.)f(Nelson.)16 b(A)c(P)o(arallel)f(Alpha/Beta)h(T)m(ree)g(Searc)o +(hing)g(Algorithm.)h Fi(Par)n(al)r(lel)85 1295 y(Computing)p +Fk(,)h(10\(3\):299{308,)d(1989.)0 1369 y([11])19 b(L.)d(Kaufman.)24 +b(Rate)16 b(Your)h(Own)g(Computer.)24 b Fi(Computer)17 +b(Chess)h(R)n(ep)n(orts)p Fk(,)e(3\(1\):17{19,)f(1992.)24 +b(\(Published)17 b(b)o(y)85 1411 y(ICD,)c(21)h(W)m(alt)e(Whitman)g +(Rd.,)g(Hun)o(tington)i(Station,)f(NY)h(11746.\).)0 1486 +y([12])19 b(L.)14 b(Kaufman.)i(Rate)e(Your)g(Own)g(Computer)f(-)h(Part) +g(I)q(I.)k Fi(Computer)c(Chess)h(R)n(ep)n(orts)p Fk(,)e(3\(2\):13{15,)f +(1993.)0 1560 y([13])19 b(D.)10 b(E.)g(Kn)o(uth)g(and)g(R.)g(W.)f(Mo)q +(ore.)j(An)f(Analysis)e(of)h(Alpha-Beta)g(Pruning.)i +Fi(A)o(rti\014cial)f(Intel)r(ligenc)n(e)p Fk(,)f(6\(3\):293{326,)85 +1602 y(1975.)0 1677 y([14])19 b(B.)14 b(C.)g(Kuszmaul.)k +Fi(Synchr)n(onize)n(d)e(MIMD)g(Computing)p Fk(.)k(PhD)14 +b(thesis,)h(Massac)o(h)o(usetts)h(Institute)f(of)f(T)m(ec)o(hnology)m +(,)85 1718 y(Cam)o(bridge,)e(MA,)i(1994.)0 1793 y([15])19 +b(C.-P)m(.)11 b(P)m(.)g(Lu.)j(P)o(arallel)d(Searc)o(h)h(of)f(Narro)o(w) +h(Game)e(Trees.)16 b(Master's)d(thesis,)f(Departmen)o(t)f(of)g +(Computing)f(Science,)85 1834 y(Univ)o(ersit)o(y)k(of)f(Alb)q(erta,)h +(Edmon)o(ton,)e(Canada,)h(1993.)0 1909 y([16])19 b(P)m(.)13 +b(Lu.)18 b(Priv)n(ate)c(comm)o(unication,)c(1996.)0 1984 +y([17])19 b(T.)11 b(A.)f(Marsland)h(and)g(M.)f(S.)h(Campb)q(ell.)g +(Parallel)f(Searc)o(h)i(of)e(Strongly)g(Ordered)j(Game)c(Trees.)15 +b Fi(A)o(CM)d(Computing)85 2025 y(Surveys)p Fk(,)i(14\(4\):533{551,)d +(1982.)0 2100 y([18])19 b(T.)c(A.)g(Marsland,)g(M.)g(Olafsson,)g(and)g +(J.)g(Sc)o(hae\013er.)24 b(Multipro)q(cessor)17 b(Tree-Searc)o(h)g(Exp) +q(erimen)o(ts.)22 b(In)16 b(D.)e(Beal,)85 2142 y(editor,)g +Fi(A)n(dvanc)n(es)h(in)g(Computer)g(Chess)g(4)p Fk(,)e(pages)i(37{51.)d +(P)o(ermagon)g(Press,)j(Oxford,)f(1985.)0 2216 y([19])19 +b(M.)14 b(M.)f(Newb)q(orn.)20 b(Unsync)o(hronized)15 +b(Iterativ)o(e)g(Deep)q(ening)f(P)o(arallel)f(Alpha-Beta)h(Searc)o(h.) +20 b Fi(IEEE)15 b(T)m(r)n(ansactions)85 2258 y(on)h(Pattern)e(A)o +(nalysis)h(and)h(Machine)g(Intel)r(ligenc)n(e)p Fk(,)d(P)m +(AMI-10\(5\):687{694,)d(1988.)0 2333 y([20])19 b(J.)c(P)o(earl.)21 +b(Asymptotic)14 b(Prop)q(erties)j(of)d(Minimax)e(Trees)17 +b(and)d(Game-Searc)o(hing)g(Pro)q(cedures.)23 b Fi(A)o(rti\014cial)15 +b(Intel)r(li-)85 2374 y(genc)n(e)p Fk(,)f(14:113{138,)d(1980.)0 +2449 y([21])19 b(A.)14 b(Plaat.)j Fi(R)n(ese)n(ar)n(ch)e(R)n(e:)7 +b(se)n(ar)n(ch)15 b(&)g(R)n(e-se)n(ar)n(ch)p Fk(.)i(PhD)d(thesis,)h +(Erasm)o(us)e(Univ)o(ersit)o(y)m(,)g(Rotterdam,)f(NL,)h(1996.)0 +2523 y([22])19 b(A.)f(Plaat,)g(J.)g(Sc)o(hae\013er,)i(W.)d(Pijls,)h +(and)f(A.)h(de)g(Bruin.)31 b(Exploiting)16 b(Graph)i(Prop)q(erties)i +(of)d(Game)f(Trees.)32 b(In)85 2565 y Fi(Pr)n(o)n(c)n(e)n(e)n(dings)15 +b(of)g(AAAI)f('96)p Fk(,)g(v)o(olume)e(1,)h(pages)h(234{239,)e(P)o +(ortland,)h(Oregon,)h(August)g(1996.)0 2640 y([23])19 +b(A.)14 b(Reinefeld.)k(An)c(Impro)o(v)o(emen)o(t)d(to)j(the)g(Scout)h +(Tree-Searc)o(h)g(Algorithm.)h Fi(ICCA)e(Journal)p Fk(,)g(6\(4\):4{14,) +d(1983.)954 2790 y(18)p eop +%%Page: 19 21 +19 20 bop 0 42 a Fk([24])19 b(J.)11 b(Sc)o(hae\013er.)k(Distributed)d +(Game-T)m(ree)e(Searc)o(hing.)j Fi(Journal)g(of)f(Par)n(al)r(lel)f(and) +i(Distribute)n(d)f(Computing)p Fk(,)f(6\(2\):90{)85 83 +y(114,)i(1989.)0 158 y([25])19 b(J.)11 b(Sc)o(hae\013er,)i(J.)d(Culb)q +(erson,)i(N.)e(T)m(reloar,)h(B.)g(Knigh)o(t,)f(P)m(.)g(Lu,)h(and)g(D.)f +(Szafron.)j(A)e(W)m(orld)f(Championship)e(Calib)q(er)85 +199 y(Chec)o(k)o(ers)16 b(Program.)g Fi(A)o(rti\014cial)e(Intel)r +(ligenc)n(e)p Fk(,)f(53\(2-3\):273{290,)e(1992.)0 274 +y([26])19 b(J.)d(J.)f(Scott.)24 b(A)16 b(Chess-Pla)o(ying)f(Program.)22 +b(In)16 b(B.)f(Meltzer)i(and)f(D.)f(Mic)o(hie,)g(editors,)h +Fi(Machine)i(Intel)r(ligenc)n(e)e(4)p Fk(,)85 315 y(pages)f(255{265.)c +(Edin)o(burgh)j(Univ)o(ersit)o(y)g(Press,)h(1969.)0 390 +y([27])k(D.)c(J.)g(Slate)g(and)h(L.)e(R.)h(A)o(tkin.)22 +b(Chess)16 b(4.5)f(-)g(The)h(North)o(w)o(estern)h(Univ)o(ersit)o(y)e +(Chess)i(Program.)j(In)c(P)m(.W.)e(F)m(rey)m(,)85 432 +y(editor,)g Fi(Chess)h(Skil)r(l)f(in)h(Man)h(and)f(Machine)p +Fk(,)g(pages)f(82{118.)e(Springer-V)m(erlag,)h(New)h(Y)m(ork,)f(1977.)0 +506 y([28])19 b(V.)e(Sunderam.)28 b(PVM:)17 b(A)h(F)m(ramew)o(ork)d +(for)i(P)o(arallel)g(Distributed)g(Computing.)26 b Fi(Concurr)n(ency:)g +(Pr)n(actic)n(e)17 b(and)85 548 y(Exp)n(erienc)n(e)p +Fk(,)d(2\(4\):315{339,)d(Decem)o(b)q(er)j(1990.)0 623 +y([29])19 b(J.-C.)25 b(W)m(eill.)51 b Fi(Pr)n(o)n(gr)n(ammes)25 +b(d')o(\023)-20 b(eche)n(cs)26 b(de)g(championnat:)41 +b(ar)n(chite)n(ctur)n(e)25 b(lo)n(giciel)r(le)f(synth)o(\022)-20 +b(ese)27 b(de)f(fonctions)85 664 y(d')o(\023)-20 b(evaluations,)15 +b(p)n(ar)n(al)r(l)o(\023)-20 b(elisme)14 b(de)h(r)n(e)n(cher)n(che)p +Fk(.)j(PhD)13 b(thesis,)i(Univ)o(ersit)o(\023)-20 b(e)14 +b(P)o(aris)g(8,)f(Jan)o(uary)h(1995.)954 2790 y(19)p +eop +%%Page: 20 22 +20 21 bop 0 42 a Fl(A)67 b(Description)23 b(of)f(APHID)f(In)n(terface)0 +141 y Fv(A.1)56 b(T)n(yp)r(es)18 b(of)h(Pro)r(cesses)f(within)g(APHID) +62 209 y Fh(\017)j Fb(absolute)f(master)p Fk(:)25 b(The)18 +b(single)g(pro)q(cess)h(whic)o(h)f(in)o(v)o(ok)o(es)g(all)e(other)j +(pro)q(cesses)h(within)e(the)g(APHID)g(pro)q(cess)104 +251 y(hierarc)o(h)o(y)m(,)13 b(whic)o(h)h(o)q(ccupies)h(the)f(highest)h +(lev)o(el)e(in)h(the)g(pro)q(cess)i(hierarc)o(h)o(y)m(.)62 +325 y Fh(\017)21 b Fb(slave)p Fk(:)g(An)o(y)16 b(pro)q(cess)i(that)e(m) +o(ust)f(rep)q(ort)i(its)f(searc)o(h)h(results)g(to)f(a)g(pro)q(cess)i +(ab)q(o)o(v)o(e)d(it)h(in)g(the)g(hierarc)o(h)o(y)m(.)25 +b(With)104 367 y(this)14 b(de\014nition,)f(a)g(pro)q(cess)j(is)e +(either)h(the)f(absolute)g(master)f(or)h(a)g(sla)o(v)o(e,)f(and)h +(cannot)g(b)q(e)g(b)q(oth.)62 442 y Fh(\017)21 b Fb(master)p +Fk(:)e(An)o(y)14 b(pro)q(cess)j(that)e(has)g(pro)q(cesses)j(underneath) +e(it)e(in)h(the)g(hierarc)o(h)o(y)m(.)21 b(Note)15 b(that)g(it)g(is)g +(p)q(ossible)g(for)f(a)104 483 y(pro)q(cess)h(to)f(b)q(e)h(b)q(oth)f(a) +f(master)h(and)f(a)h(sla)o(v)o(e)g(if)f(the)h(pro)q(cess)i(hierarc)o(h) +o(y)e(has)g(m)o(ultiple)e(lev)o(els.)0 599 y Fv(A.2)56 +b(Constan)n(ts)20 b(T)-5 b(o)19 b(Be)f(De\014ned)0 668 +y Fk(Since)c(the)h(library)e(is)h(application-indep)q(enden)o(t,)f +(some)g(de\014nitions)h(of)f(ho)o(w)g(things)h(are)h(implem)o(en)o(ted) +d(m)o(ust)h(b)q(e)h(giv)o(en)0 709 y(to)g(the)g(APHID)g(library)m(.)62 +792 y Fh(\017)21 b Fb(APHID)p 217 792 14 2 v 14 w(HASHTYPESIZE)p +Fk(:)11 b(The)k(size)f(\(in)g(b)o(ytes\))h(of)e(the)h(hash)g(v)n(alue)g +(used)h(in)e(y)o(our)h(program.)62 867 y Fh(\017)21 b +Fb(APHID)p 217 867 V 14 w(HASHKEYSIZE)p Fk(:)10 b(The)i(size)h(\(in)f +(b)o(ytes\))h(of)f(the)h(\\lo)q(c)o(k")e(used)i(to)f(guaran)o(tee)h +(that)f(t)o(w)o(o)g(p)q(ositions)f(sharing)h(the)104 +908 y(same)h(hash)h(v)n(alue)f(are)h(the)h(same.)62 983 +y Fh(\017)21 b Fb(APHID)p 217 983 V 14 w(MOVESIZE)p Fk(:)12 +b(The)i(size)h(\(in)f(b)o(ytes\))g(of)g(the)g(represen)o(tation)i(of)d +(a)h(mo)o(v)o(e)e(in)h(the)i(application.)62 1058 y Fh(\017)21 +b Fb(APHID)p 217 1058 V 14 w(MINUSINF)15 b Fk(and)h Fb(APHID)p +615 1058 V 15 w(PLUSINF)p Fk(:)e(Sp)q(eci\014cations)j(of)e(v)n(alues)h +(smaller)f(than)h(the)h(minim)n(um)o(,)c(and)j(larger)104 +1099 y(than)e(the)g(maxim)n(um)o(,)c(that)k(the)h(\\ev)n(aluation")d +(could)i(p)q(ossibly)f(return,)i(resp)q(ectiv)o(ely)m(.)62 +1174 y Fh(\017)21 b Fb(APHID)p 217 1174 V 14 w(INVALIDSCORE)p +Fk(:)13 b(A)j(v)n(alue)g(that)g(is)g(outside)g(the)g(range)h(represen)o +(ted)h(b)o(y)e(the)h(minim)n(um)11 b(and)16 b(maxim)n(um)104 +1215 y(v)n(alues)d(sp)q(eci\014ed)j(previously)m(.)62 +1290 y Fh(\017)21 b Fb(APHID)p 217 1290 V 14 w(LOG2)p +319 1290 V 15 w(TABSIZE)p Fk(:)16 b(The)j(size)g(of)e(the)i(APHID)f +(table)g(that)g(y)o(ou)g(in)o(tend)g(on)g(using)g(to)g(share)h(b)q(et)o +(w)o(een)g(the)104 1332 y(master)c(and)h(the)g(sla)o(v)o(es,)g(tak)o +(en)f(to)h(a)f(base)i(2)e(logarithm.)21 b(F)m(or)15 b(example,)g(a)g(v) +n(alue)g(of)g(14)g(indicates)h(an)g(APHID)104 1378 y(table)e(with)f(2) +323 1363 y Fe(14)370 1378 y Fk(=)e(16384)i(en)o(tries.)62 +1452 y Fh(\017)21 b Fb(APHID)p 217 1452 V 14 w(MAXSLAVEPLYSEARCH)p +Fk(:)7 b(The)j(maxim)o(um)c("plytogo")i(v)n(alue)i(that)g(y)o(ou)g +(could)g(p)q(ossibly)g(exp)q(ect)i(to)e(hand)g(to)g(a)104 +1494 y(sla)o(v)o(e)g(to)g(searc)o(h.)18 b(Note)10 b(that)g(this)h(v)n +(alue)e(should)h(not)g(b)q(e)h(excessiv)o(ely)g(large,)g(since)g(this)f +(and)g Fb(APHID)p 1683 1494 V 15 w(LOG2)p 1786 1494 V +14 w(TABSIZE)104 1535 y Fk(are)k(the)h(leading)e(determinan)o(ts)g(in)h +(the)g(amoun)o(t)e(of)h(memory)f(used)j(b)o(y)e(the)i(APHID)f(library)m +(.)62 1610 y Fh(\017)21 b Fb(APHID)p 217 1610 V 14 w +(MAXMASTERPLYSEARCH)p Fk(:)10 b(The)k(maxim)o(um)9 b(depth)15 +b(that)f(w)o(e)g(exp)q(ect)h(the)g(master)e(should)h(reac)o(h.)62 +1685 y Fh(\017)21 b Fb(APHID)p 217 1685 V 14 w(SLAVENODESTOCOMM)p +Fk(:)15 b(This)j(should)g(b)q(e)g(set)h(to)f(the)h(n)o(um)o(b)q(er)e +(of)h(no)q(des)h(that)f(the)g(sequen)o(tial)h(program)104 +1726 y(visits)13 b(on)h(the)h(t)o(yp)q(e)f(of)f(pro)q(cessor)j(b)q +(eing)e(used,)g(divided)g(b)o(y)f(10.)0 1843 y Fv(A.3)56 +b(Standard)19 b(V)-5 b(ariables)19 b(Used)62 1911 y Fh(\017)i +Fb(argv)p Fk(:)e(Standard)c(argumen)o(t)e(list.)20 b(Used)c(to)f +(instan)o(tiate)f(the)h(sla)o(v)o(es)g(with)g(the)g(same)f(parameters)h +(as)g(the)g(initial)104 1952 y(program.)62 2027 y Fh(\017)21 +b Fb(depth)p Fk(:)c(The)d(n)o(um)o(b)q(er)f(of)g(ply)h(the)g(curren)o +(t)i(no)q(de)e(is)g(a)o(w)o(a)o(y)f(from)f(the)i(ro)q(ot)g(of)f(the)i +(game)d(tree.)62 2102 y Fh(\017)21 b Fb(plytogo)p Fk(:)15 +b(The)c(n)o(um)o(b)q(er)f(of)g(ply)h(un)o(til)f(w)o(e)h(reac)o(h)g(the) +h(b)q(ottom)d(of)h(the)i(game)d(tree.)18 b(In)11 b(a)g(searc)o(h)h +(with)e(no)h(extensions)104 2143 y(or)j(forw)o(ard)f(pruning,)g +Fb(plytogo)21 b(+)g(depth)13 b Fk(should)h(b)q(e)g(constan)o(t.)62 +2218 y Fh(\017)21 b Fb(&move[i])10 b Fk(or)i Fb(&bestmove)p +Fk(:)j(A)d(p)q(oin)o(ter)g(to)f(an)h(area)g(of)f Fb(APHID)p +1098 2218 V 15 w(MOVESIZE)f Fk(b)o(ytes)i(whic)o(h)g(sp)q(eci\014es)h +(the)g(mo)o(v)o(e)d(b)q(eing)104 2260 y(pla)o(y)o(ed.)62 +2334 y Fh(\017)21 b Fb(p)p 129 2334 V 15 w(hash)p Fk(:)c(A)d(p)q(oin)o +(ter)g(to)g(an)g(area)g(of)f Fb(APHID)p 805 2334 V 15 +w(HASHTYPESIZE)e Fk(b)o(ytes)k(that)f(con)o(tains)g(the)g(curren)o(t)h +(hash)g(v)n(alue.)62 2409 y Fh(\017)21 b Fb(p)p 129 2409 +V 15 w(key)p Fk(:)c(A)c(p)q(oin)o(ter)g(to)f(an)g(area)h +Fb(APHID)p 729 2409 V 15 w(HASHKEYSIZE)d Fk(b)o(ytes)k(that)e(con)o +(tains)h(a)f(lo)q(c)o(k)g(whic)o(h)h(can)g(\\guaran)o(tee")f(the)104 +2451 y(b)q(oard)i(stored)h(in)e(the)h(lo)q(cation)f(of)h(the)g(hash)g +(table)g(is)g(correct.)62 2525 y Fh(\017)21 b Fb(alpha)13 +b Fk(and)g Fb(beta)p Fk(:)k(Searc)o(h)e(windo)o(w)e(used)i(b)o(y)f +Fj(\013\014)i Fk(implemen)o(tatio)o(n;)11 b(they)j(are)g(exp)q(ected)i +(to)e(b)q(e)h(32-bit)e(in)o(tegers.)62 2600 y Fh(\017)21 +b Fb(value)13 b Fk(and)g Fb(score)p Fk(:)k(V)m(alues)d(of)f(leaf)g(no)q +(des;)i(they)f(are)g(exp)q(ected)i(to)e(b)q(e)h(32-bit)e(in)o(tegers)h +(for)g(this)g(library)m(.)954 2790 y(20)p eop +%%Page: 21 23 +21 22 bop 0 42 a Fv(A.4)56 b(Stubs)19 b(T)-5 b(o)19 b(Be)f(W)-5 +b(ritten)62 110 y Fh(\017)21 b Fb(int)g(aphid)p 304 110 +14 2 v 15 w(stub)p 407 110 V 14 w(encodeinit\(char)e(*msg\))p +Fk(:)k(Pro)o(vides)17 b(the)g(absolute)g(master)f(with)h(a)f(4000-b)o +(yte)g(bu\013er)i(to)104 151 y(store)g(all)e(p)q(ertinen)o(t)j +(information)14 b(ab)q(out)j(the)h(ro)q(ot)g(of)e(the)i(game)e(tree,)j +(suc)o(h)f(as)g(the)g(p)q(osition)e(and)h(the)h(game)104 +193 y(history)d(\(if)g(this)h(is)f(relev)n(an)o(t)h(to)f(the)h(searc)o +(h)h(algorithm\).)k(The)16 b(return)g(v)n(alue)f(is)h(the)g(n)o(um)o(b) +q(er)f(of)g(b)o(ytes)h(used)g(in)104 234 y(the)e(string)g +Fb(msg)p Fk(.)62 309 y Fh(\017)21 b Fb(int)g(aphid)p +304 309 V 15 w(stub)p 407 309 V 14 w(decodeinit\(int)e(msg)p +814 309 V 15 w(ln,)j(char)f(*msg\))p Fk(:)15 b(All)9 +b(other)i(pro)q(cesses)j(in)c(the)h(system,)f(aside)h(from)104 +351 y(the)i(absolute)f(master,)g(receiv)o(e)i(the)f(message)f(length)g +(and)g(the)h(message)f(enco)q(ded)i(b)o(y)e Fb(aphid)p +1606 351 V 15 w(stub)p 1709 351 V 15 w(encodeinit)p Fk(,)104 +392 y(and)h(should)h(set)h(the)f(ro)q(ot)g(of)g(their)g(game)e(tree,)j +(accordingly)m(.)62 467 y Fh(\017)21 b Fb(void)g(aphid)p +326 467 V 14 w(stub)p 428 467 V 15 w(movedownpath\(int)e(num)p +880 467 V 15 w(moves,)h(char)h(*movepath\))p Fk(:)15 +b(Called)10 b(b)o(y)h(the)h(sla)o(v)o(es,)f(a)g(series)i(of)104 +508 y Fb(num)p 173 508 V 15 w(moves)d Fk(mo)o(v)o(es)h(is)g(giv)o(en)h +(in)f Fb(movepath)p Fk(,)f(with)h(eac)o(h)h(mo)o(v)o(e)e(b)q(eing)i +Fb(APHID)p 1328 508 V 15 w(MOVESIZE)e Fk(b)o(ytes)i(long.)17 +b(The)12 b(routine)104 550 y(should)h(pla)o(y)g(through)h(the)h(mo)o(v) +o(es)d(giv)o(en)i(in)f Fb(movepath)f Fk(from)h(the)h(ro)q(ot)g(of)f +(the)i(game)d(tree.)62 625 y Fh(\017)21 b Fb(void)g(aphid)p +326 625 V 14 w(stub)p 428 625 V 15 w(moveuppath\(int)e(num)p +836 625 V 15 w(moves,)i(char)g(*movepath\))p Fk(:)14 +b(Called)d(b)o(y)g(the)h(sla)o(v)o(es,)f(should)g(com-)104 +666 y(pletely)j(undo)f(an)o(y)h(c)o(hanges)g(made)f(b)o(y)h +Fb(aphid)p 856 666 V 14 w(stub)p 958 666 V 15 w(movedownpath)p +Fk(.)62 741 y Fh(\017)21 b Fb(int)g(aphid)p 304 741 V +15 w(stub)p 407 741 V 14 w(iterativedeepening\(i)o(nt)e(depth,)h(int)h +(last,)g(int)g(max\))p Fk(:)d(Called)13 b(b)o(y)h(the)h(sla)o(v)o(es,)f +(this)104 782 y(routine)i(should)f(return)i(the)g(searc)o(h)g(depth)f +(for)g(the)g(subsequen)o(t)i(searc)o(h)f(of)e(a)h(leaf)f(no)q(de.)24 +b(F)m(or)16 b(most)e(programs)104 824 y(that)g(do)f(iterativ)o(e)h +(deep)q(ening)h(in)f(1)f(ply)g(steps,)i(this)f(should)g(simply)e +(return)j Fb(last)21 b(+)g(1)p Fk(.)62 899 y Fh(\017)g +Fb(void)g(aphid)p 326 899 V 14 w(stub)p 428 899 V 15 +w(preparesearch\(int)e(depth,)h(int)h(plytogo,)f(int)i(winstats[],)d +(int)i(*alpha,)104 940 y(int)g(*beta\))p Fk(:)16 b(Called)10 +b(b)o(y)i(the)g(sla)o(v)o(es,)f(this)h(routine)g(sets)g(the)g(initial)e +(windo)o(w)h(searc)o(hed)i(b)o(y)e(the)h(sla)o(v)o(es.)17 +b(Statistics)104 982 y(on)12 b(previous)h(searc)o(hes)h(and)f(the)g +(curren)o(t)h(guessed)g(score)g(at)e(the)h(ro)q(ot)g(are)f(passed)i(in) +e(via)g(the)h Fb(winstats[])d Fk(arra)o(y)m(.)104 1023 +y(The)j(routine)f(should)h(set)g Fb(*alpha)e Fk(and)h +Fb(*beta)g Fk(b)q(efore)h(terminating.)j(F)m(urthermore,)c(this)g +(routine)h(should)f(ensure)104 1065 y(that)i(an)o(y)f(global)f +(\\alarm")g(states)j(ha)o(v)o(e)e(b)q(een)i(turned)g(o\013.)62 +1139 y Fh(\017)21 b Fb(int)g(aphid)p 304 1139 V 15 w(stub)p +407 1139 V 14 w(alphabeta\(int)f(depth,)g(int)h(plytogo,)f(int)i +(alpha,)e(int)h(beta\))p Fk(:)c(Called)c(b)o(y)h(b)q(oth)104 +1181 y(the)f(master)e(and)h(the)h(sla)o(v)o(es,)f(this)g(routine)g +(should)g(call)g(y)o(our)g(implem)o(en)o(tation)d(of)j +Fj(\013\014)r Fk(,)g(and)g(return)h(the)g(minim)o(ax)104 +1222 y(v)n(alue)g(bac)o(k)h(to)g(the)g(APHID)g(library)m(.)62 +1297 y Fh(\017)21 b Fb(int)g(aphid)p 304 1297 V 15 w(stub)p +407 1297 V 14 w(evaluate\(int)f(depth,)g(int)i(alpha,)e(int)h(beta\))p +Fk(:)c(Called)c(b)o(y)g(the)h(master)f(the)h(\014rst)g(time)104 +1339 y(it)g(visits)h(a)f(leaf)g(of)g(its)h(tree,)g(this)g(routine)g +(should)f(simply)f(call)h(y)o(our)g(ev)n(aluation)f(routine)i(and)g +(return)g(the)h(score)104 1380 y(for)d(the)i(p)q(osition)e(reac)o(hed)i +(at)f Fb(depth)f Fk(ply)g(within)g(the)i(tree.)62 1455 +y Fh(\017)21 b Fb(int)g(aphid)p 304 1455 V 15 w(stub)p +407 1455 V 14 w(stopsearch\(int)e(pass)p 836 1455 V 15 +w(stats[]\))p Fk(:)j(Called)16 b(only)f(b)o(y)i(the)g(absolute)f +(master)g(pro)q(cess,)j(this)104 1496 y(routine)12 b(should)g(c)o(hec)o +(k)h(y)o(our)f(timer)f(and)g(determine)h(if)f(y)o(our)h(time)f(limit)e +(has)j(b)q(een)i(exceeded)g(for)d(a)h(searc)o(h.)19 b(If)11 +b(the)104 1538 y(time)i(limit)e(has)j(b)q(een)i(exceeded,)g(this)e +(routine)g(should)g(return)h(1;)f(otherwise,)h(0.)j(A)c(n)o(um)o(b)q +(er)g(of)f(parameters)i(are)104 1579 y(passed)h(in)e(to)g(this)h +(routine)g(via)f(the)h(pass)p 782 1579 13 2 v 16 w(stats)g(arra)o(y)m +(,)f(suc)o(h)h(as)g(the)g(n)o(um)o(b)q(er)f(of)g(uncertain)i(no)q(des)f +(outstanding)104 1621 y(for)e(a)h(giv)o(en)f(searc)o(h,)i(to)f(mak)o(e) +e(the)i(decision)h(to)e(terminate)g(a)h(searc)o(h)h(more)e(robust.)62 +1696 y Fh(\017)21 b Fb(int)g(aphid)p 304 1696 14 2 v +15 w(stub)p 407 1696 V 14 w(visited\(\))p Fk(:)c(Called)d(b)o(y)g(the)g +(sla)o(v)o(es,)g(this)g(should)g(return)i(a)e(global)e(coun)o(t)j(of)e +(the)i(n)o(um)o(b)q(er)f(of)104 1737 y(no)q(des)g(visited)g(b)o(y)g +(the)g(pro)q(cess.)0 1853 y Fv(A.5)56 b(In)n(terface)18 +b(Calls)h(Used)f(b)n(y)h(Master)g(and)g(Sla)n(v)n(e)62 +1922 y Fh(\017)i Fb(void)g(aphid)p 326 1922 V 14 w(startup\(argv\))p +Fk(:)k(In)19 b(the)g(\014rst)h(pro)q(cess)g(run,)g(PVM)f(is)g(spa)o +(wned)g(on)g(the)g(mac)o(hines)f(sp)q(eci\014ed,)104 +1963 y(and)c(a)f(sla)o(v)o(e)h(pro)q(cess)i(is)e(spa)o(wned)g(with)g +(the)h(same)e(argumen)o(t)g(list)g Fb(\(argv\))g Fk(as)h(the)h(master,) +e(as)h(sp)q(eci\014ed)i(b)o(y)d(the)104 2005 y Fb(aphid.config)e +Fk(\014le.)18 b(In)c(a)g(spa)o(wned)g(pro)q(cess,)h(the)g(APHID)f +(library)f(nev)o(er)i(exits)f(this)g(function)g(call.)62 +2079 y Fh(\017)21 b Fb(void)g(aphid)p 326 2079 V 14 w(exit\(\))p +Fk(:)j(This)17 b(routine)h(remo)o(v)o(es)e(a)h(pro)q(cess)j(from)15 +b(the)j(PVM)g(group,)f(and)g(it)g(should)g(b)q(e)h(called)104 +2121 y(b)q(efore)e(an)o(y)f(pro)q(cess)j(exits)e(\(due)g(to)g(errors)h +(or)e(normal)f(completion\).)21 b(If)16 b(the)g(pro)q(cess)h(is)f(the)g +(absolute)g(master,)104 2162 y(completion)11 b(of)i(this)h(routine)f +(ensures)j(that)d(all)f(of)h(the)h(spa)o(wned)g(pro)q(cesses)i(ha)o(v)o +(e)d(b)q(een)i(sh)o(ut)f(do)o(wn)f(successfully)m(.)62 +2237 y Fh(\017)21 b Fb(int)g(aphid)p 304 2237 V 15 w(master\(\))p +Fk(:)16 b(Returns)f(1)e(if)g(the)i(pro)q(cess)h(is)d(a)h(master)f(in)h +(the)g(hierarc)o(h)o(y)m(,)g(and)f(0)h(otherwise.)62 +2312 y Fh(\017)21 b Fb(int)g(aphid)p 304 2312 V 15 w(slave\(\))p +Fk(:)14 b(Returns)d(1)f(if)g(the)h(pro)q(cess)h(w)o(as)e(spa)o(wned,)h +(returns)h(0)e(if)f(it)h(is)g(the)h(absolute)f(master)g(pro)q(cess)104 +2353 y(whic)o(h)k(spa)o(wned)h(the)g(other)g(pro)q(cesses.)23 +b(Note)15 b(that)f(a)h(pro)q(cess)h(can)f(b)q(e)g(b)q(oth)f(a)h(sla)o +(v)o(e)f(and)g(a)g(master)g(dep)q(ending)104 2395 y(on)f(the)i(hierarc) +o(h)o(y)f(sp)q(eci\014ed)i(in)d Fb(aphid.config)p Fk(.)954 +2790 y(21)p eop +%%Page: 22 24 +22 23 bop 0 42 a Fv(A.6)56 b(In)n(terface)18 b(Calls)h(Used)f(b)n(y)h +(Masters)g(Only)62 110 y Fh(\017)i Fb(void)g(aphid)p +326 110 14 2 v 14 w(initserach\(int)e(maxdepth\))p Fk(:)d(Called)d(b)o +(y)h(the)g(absolute)g(master)g(pro)q(cess,)h(this)f(pro)q(cedure)h +(pre-)104 151 y(pares)i(to)g(start)g(a)f(searc)o(h)i(in)e(parallel.)26 +b(This)16 b(routine)h(calls)f Fb(aphid)p 1212 151 V 15 +w(stub)p 1315 151 V 15 w(encodeinit)p Fk(,)f(and)h(then)h(informs)e +(all)104 193 y(of)e(the)i(other)g(pro)q(cesses)i(of)c(the)i(curren)o(t) +h(state)f(of)e(the)i(game.)i(The)e(parameter)f(indicates)g(the)h(maxim) +n(um)10 b(depth)104 234 y(that)k(an)o(y)f(pro)q(cess)j(is)e(nominall)o +(y)d(allo)o(w)o(ed)i(to)g(searc)o(h,)i Fi(not)g(including)h(se)n(ar)n +(ch)e(extensions)p Fk(.)62 309 y Fh(\017)21 b Fb(int)g(aphid)p +304 309 V 15 w(rootsearch\(int)e(depth,)h(int)h(plytogo,)f(int)i +(alpha,)e(int)h(beta\))p Fk(:)26 b(This)18 b(routine)h(is)f(called)104 +350 y(b)o(y)d(the)h(absolute)g(master,)e(instead)i(of)f(calling)f(the)i +(t)o(ypical)f Fj(\013\014)i Fk(implemen)o(taiton.)i(It)d(allo)o(ws)e(a) +h(master)g(pro)q(cess)104 392 y(to)i(do)g(m)o(ultiple)e(passes)k(of)e +(the)h(tree)g(un)o(til)f(the)h(searc)o(h)g(is)g(completed,)f(or)g(the)h +(alarm)d(has)j(b)q(een)g(signalled)f(via)104 433 y Fb(aphid)p +217 433 V 14 w(stub)p 319 433 V 15 w(stopsearch)p Fk(.)f(If)e(the)g +(searc)o(h)i(is)d(allo)o(w)o(ed)g(to)h(complete,)f(this)h(routine)g +(returns)h(the)g(minim)o(ax)c(v)n(alue)104 475 y(of)i(the)i(tree)g +(that)f(it)f(has)h(b)q(een)h(ask)o(ed)f(to)g(searc)o(h.)62 +549 y Fh(\017)21 b Fb(int)g(aphid)p 304 549 V 15 w(intnode)p +473 549 V 14 w(premove\(int)e(depth,)i(char)g(*moveptr\))p +Fk(:)15 b(Called)d(b)o(y)h(the)g(absolute)g(master,)e(this)i(rou-)104 +591 y(tine)h(stores)h(mo)o(v)o(es)e(made)f(b)q(efore)j(a)f(call)f(to)g +Fb(aphid)p 938 591 V 15 w(rootsearch)f Fk(in)h(the)i(mo)o(v)o(e)d +(list.)62 665 y Fh(\017)21 b Fb(void)g(aphid)p 326 665 +V 14 w(endsearch\(\))p Fk(:)15 b(The)e(absolute)f(master)g(should)g +(call)f(this)i(routine)f(when)h(it)f(is)g(\014nished)h(searc)o(hing)f +(a)104 707 y(tree)i(that)e(has)h(b)q(een)h(called)e(;)h(it)f(stops)h +(the)g(sla)o(v)o(es)g(from)e(w)o(orking)g(on)i(the)g(lea)o(v)o(es)g(of) +f(the)h(game)e(tree)j(and)e(prepares)104 748 y(the)i(sla)o(v)o(es)g(to) +g(receiv)o(e)h(a)f(new)g(ro)q(ot)g(p)q(osition.)62 823 +y Fh(\017)21 b Fb(void)g(aphid)p 326 823 V 14 w(horizon\(int)f(depth\)) +p Fk(:)f(A)14 b(master)h(pro)q(cess)h(calls)f(this)g(routine)g(to)f +(determine)h(if)f(it)h(has)g(reac)o(hed)104 864 y(its)f(arti\014cial)f +(horizon.)62 939 y Fh(\017)21 b Fb(void)g(aphid)p 326 +939 V 14 w(eval)p 428 939 V 15 w(leaf\(int)f(alpha,)h(int)g(beta,)g +(int)g(depth,)g(char)g(*p)p 1403 939 V 15 w(hash,)g(char)g(*p)p +1702 939 V 15 w(key\))p Fk(:)104 980 y(This)10 b(routine)h(determines)g +(a)f(score)i(v)n(alue)d(for)h(the)i(leaf,)e(based)h(on)f(the)h(b)q(est) +h(information)7 b(a)o(v)n(ailable)h(to)j(the)g(master.)104 +1022 y Fb(p)p 129 1022 V 15 w(hash)i Fk(and)h Fb(p)p +348 1022 V 15 w(key)g Fk(are)g(required)h(to)f(determine)f(if)g(this)h +(no)q(de)h(has)f(b)q(een)h(previously)e(visited.)62 1096 +y Fh(\017)21 b Fb(void)g(aphid)p 326 1096 V 14 w(intnode)p +494 1096 V 15 w(start\(int)f(depth,)g(char)h(*p)p 1032 +1096 V 15 w(hash,)g(char)g(*p)p 1331 1096 V 15 w(key\))p +Fk(:)16 b(Called)11 b(b)o(y)g(a)h(master)f(pro)q(cess,)104 +1138 y(this)j(routine)g(initializes)e(b)q(ound)i(gathering)g +(information)d(for)i(an)h(in)o(terior)f(no)q(de)h(within)f(the)i(game)d +(tree.)19 b Fb(p)p 1850 1138 V 16 w(hash)104 1179 y Fk(and)13 +b Fb(p)p 209 1179 V 16 w(key)g Fk(are)h(required)h(to)f(determine)g(if) +f(this)h(no)q(de)g(has)g(b)q(een)h(previously)f(visited.)62 +1254 y Fh(\017)21 b Fb(void)g(aphid)p 326 1254 V 14 w(intnode)p +494 1254 V 15 w(move\(int)f(depth,)g(char)h(*moveptr\))p +Fk(:)k(Called)18 b(b)o(y)g(a)g(master)g(pro)q(cess,)i(this)f(routine) +104 1295 y(inserts)c(the)f(mo)o(v)o(e)e(p)q(oin)o(ted)i(to)f(b)o(y)h +Fb(moveptr)e Fk(in)o(to)h(a)h(hidden)g(mo)o(v)o(e)e(list)h(that)h(will) +e(ev)o(en)o(tually)h(b)q(e)i(sen)o(t)f(to)g(a)f(sla)o(v)o(e)104 +1337 y(in)g Fb(aphid)p 265 1337 V 15 w(eval)p 368 1337 +V 15 w(leaf)p Fk(.)62 1411 y Fh(\017)21 b Fb(void)g(aphid)p +326 1411 V 14 w(intnode)p 494 1411 V 15 w(update\(int)e(depth,)i(int)g +(value\))p Fk(:)27 b(Called)19 b(b)o(y)f(the)i(master)f(pro)q(cess,)j +(this)d(routine)104 1453 y(tak)o(es)d(the)g(v)n(alue)f(returned)j(b)o +(y)d(the)i(c)o(hild)e Fj(\013\014)j Fk(call)d(and)h(uses)h(it)e(to)h +(up)q(date)g(the)h(hidden)e(\\b)q(ound")h(information)104 +1494 y(gathered)f(for)e(ev)o(ery)i(no)q(de)f(in)f(the)i(master's)e +(tree.)62 1569 y Fh(\017)21 b Fb(void)g(aphid)p 326 1569 +V 14 w(intnode)p 494 1569 V 15 w(fixbound\(int)e(depth\))p +Fk(:)f(In)d(the)g(case)h(of)e(a)g(cut-o\013,)h(this)g(routine)g(will)e +(\014x)h(the)i(hidden)104 1610 y(b)q(ound)e(information)d(when)j(not)g +(all)f(mo)o(v)o(es)f(ha)o(v)o(e)i(b)q(een)h(fully)d(explored.)62 +1685 y Fh(\017)21 b Fb(void)g(aphid)p 326 1685 V 14 w(intnode)p +494 1685 V 15 w(end\(int)f(depth,)h(int)g(*score\))p +Fk(;)12 b(This)j(routine)f(is)g(called)g(b)o(y)h(a)f(master)f(for)h(ev) +o(ery)i(in-)104 1726 y(ternal)d(no)q(de)g(within)f(the)i(tree,)g(and)e +(ensures)j(that)e(the)g(score)i(returned)f(is)f(consisten)o(t)h(with)e +(previously)h(gathered)104 1768 y(information)e(ab)q(out)j(the)g(no)q +(de.)0 1884 y Fv(A.7)56 b(In)n(terface)18 b(Calls)h(Used)f(b)n(y)h(Sla) +n(v)n(es)g(Only)62 1952 y Fh(\017)i Fb(int)g(aphid)p +304 1952 V 15 w(checkalarm\(\))p Fk(:)e(This)d(routine)h(c)o(hec)o(ks)g +(to)f(see)h(if)f(a)f(searc)o(h)j(should)e(b)q(e)g(terminated.)24 +b(If)16 b(the)h(v)n(alue)104 1994 y(returned)f(is)e(equal)f(to)h(0,)g +(the)h(searc)o(h)g(should)f(con)o(tin)o(ue.)19 b(If)13 +b(the)i(v)n(alue)f(returned)h(is)f(not)h(equal)e(to)h(0,)g(the)g +(curren)o(t)104 2035 y(searc)o(h)h(has)f(b)q(een)h(in)o(terrupted,)g +(and)e(w)o(e)h(should)g(terminate)f(it)h(in)f(a)h(\\nice")g(w)o(a)o(y)m +(.)0 2151 y Fv(A.8)56 b(The)18 b(\\aphid.con\014g")h(File)e +(Description)62 2220 y Fh(\017)k Fk(The)15 b(\014rst)g(line)f(con)o +(tains)h(t)o(w)o(o)f(in)o(tegers:)21 b(The)15 b(n)o(um)o(b)q(er)f(of)g +(lev)o(els)g(in)g(the)i(pro)q(cess)g(hierarc)o(h)o(y)m(,)e(and)h(the)g +(minim)n(um)104 2261 y(depth)f(of)g(w)o(ork)f(that)h(can)g(b)q(e)h +(handed)f(out)g(to)g(a)f(sla)o(v)o(e.)62 2336 y Fh(\017)21 +b Fk(The)d(next)g(lines)g(eac)o(h)g(con)o(tain)g(one)g(in)o(teger,)g +(eac)o(h)g(in)o(teger)h(represen)o(ting)g(the)f(v)n(alue)g(of)f +Fj(d)1607 2321 y Fa(0)1636 2336 y Fk(for)g(a)h(lev)o(el)f(in)g(the)104 +2377 y(pro)q(cess)e(hierarc)o(h)o(y)m(.)62 2452 y Fh(\017)21 +b Fk(The)14 b(last)g(lines)g(indicate)h(what)f(mac)o(hines)f(the)i(pro) +q(cesses)i(should)c(b)q(e)i(spa)o(wned)g(on,)f(and)g(what)g(executable) +h(is)f(to)104 2493 y(b)q(e)j(run,)g(one)g(line)f(p)q(er)i(pro)q(cess)g +(to)f(b)q(e)g(spa)o(wned.)27 b(By)17 b(default,)f(APHID)h(will)e(spa)o +(wn)i(an)f(executable)i(with)e(the)104 2535 y(same)d(program)f(name)h +(as)h(the)h(original)d(program)g(unless)j(a)f Fb(#)f +Fk(c)o(haracter)j(app)q(ears)e(on)g(the)h(line,)e(whic)o(h)h(indicates) +104 2576 y(a)h(separation)h(b)q(et)o(w)o(een)h(the)f(mac)o(hine)e(name) +g(and)i(the)g(program)e(name.)22 b(The)16 b(absolute)f(master)g(pro)q +(cess)j(is)d(not)104 2618 y(listed)c(in)f(this)h(hierarc)o(h)o(y)m(.)17 +b(A)10 b(pro)q(cess)j(hierarc)o(h)o(y)e(can)g(b)q(e)g(sp)q(eci\014ed)i +(using)d(tabs)h(to)g(mo)o(v)o(e)e(the)i(start)h(of)e(the)h(mac)o(hine) +104 2659 y(name)h(o)o(v)o(er)i(in)g(the)g(\014le.)954 +2790 y(22)p eop +%%Trailer +end +userdict /end-hook known{end-hook}if +%%EOF diff --git a/parallel/brockington96taxonomy.ps b/parallel/brockington96taxonomy.ps new file mode 100755 index 0000000..bc73cc7 --- /dev/null +++ b/parallel/brockington96taxonomy.ps @@ -0,0 +1,2428 @@ +%!PS-Adobe-2.0 +%%Creator: dvips 5.55 Copyright 1986, 1994 Radical Eye Software +%%Title: taxonomy.dvi +%%CreationDate: Wed Jun 12 00:05:43 1996 +%%Pages: 14 +%%PageOrder: Ascend +%%BoundingBox: 0 0 612 792 +%%EndComments +%DVIPSCommandLine: dvips taxonomy +%DVIPSParameters: dpi=300, comments removed +%DVIPSSource: TeX output 1996.06.12:0003 +%%BeginProcSet: tex.pro +/TeXDict 250 dict def TeXDict begin /N{def}def /B{bind def}N /S{exch}N +/X{S N}B /TR{translate}N /isls false N /vsize 11 72 mul N /hsize 8.5 72 +mul N /landplus90{false}def /@rigin{isls{[0 landplus90{1 -1}{-1 1} +ifelse 0 0 0]concat}if 72 Resolution div 72 VResolution div neg scale +isls{landplus90{VResolution 72 div vsize mul 0 exch}{Resolution -72 div +hsize mul 0}ifelse TR}if Resolution VResolution vsize -72 div 1 add mul +TR[matrix currentmatrix{dup dup round sub abs 0.00001 lt{round}if} +forall round exch round exch]setmatrix}N /@landscape{/isls true N}B +/@manualfeed{statusdict /manualfeed true put}B /@copies{/#copies X}B +/FMat[1 0 0 -1 0 0]N /FBB[0 0 0 0]N /nn 0 N /IE 0 N /ctr 0 N /df-tail{ +/nn 8 dict N nn begin /FontType 3 N /FontMatrix fntrx N /FontBBox FBB N +string /base X array /BitMaps X /BuildChar{CharBuilder}N /Encoding IE N +end dup{/foo setfont}2 array copy cvx N load 0 nn put /ctr 0 N[}B /df{ +/sf 1 N /fntrx FMat N df-tail}B /dfs{div /sf X /fntrx[sf 0 0 sf neg 0 0] +N df-tail}B /E{pop nn dup definefont setfont}B /ch-width{ch-data dup +length 5 sub get}B /ch-height{ch-data dup length 4 sub get}B /ch-xoff{ +128 ch-data dup length 3 sub get sub}B /ch-yoff{ch-data dup length 2 sub +get 127 sub}B /ch-dx{ch-data dup length 1 sub get}B /ch-image{ch-data +dup type /stringtype ne{ctr get /ctr ctr 1 add N}if}B /id 0 N /rw 0 N +/rc 0 N /gp 0 N /cp 0 N /G 0 N /sf 0 N /CharBuilder{save 3 1 roll S dup +/base get 2 index get S /BitMaps get S get /ch-data X pop /ctr 0 N ch-dx +0 ch-xoff ch-yoff ch-height sub ch-xoff ch-width add ch-yoff +setcachedevice ch-width ch-height true[1 0 0 -1 -.1 ch-xoff sub ch-yoff +.1 sub]{ch-image}imagemask restore}B /D{/cc X dup type /stringtype ne{]} +if nn /base get cc ctr put nn /BitMaps get S ctr S sf 1 ne{dup dup +length 1 sub dup 2 index S get sf div put}if put /ctr ctr 1 add N}B /I{ +cc 1 add D}B /bop{userdict /bop-hook known{bop-hook}if /SI save N @rigin +0 0 moveto /V matrix currentmatrix dup 1 get dup mul exch 0 get dup mul +add .99 lt{/QV}{/RV}ifelse load def pop pop}N /eop{SI restore showpage +userdict /eop-hook known{eop-hook}if}N /@start{userdict /start-hook +known{start-hook}if pop /VResolution X /Resolution X 1000 div /DVImag X +/IE 256 array N 0 1 255{IE S 1 string dup 0 3 index put cvn put}for +65781.76 div /vsize X 65781.76 div /hsize X}N /p{show}N /RMat[1 0 0 -1 0 +0]N /BDot 260 string N /rulex 0 N /ruley 0 N /v{/ruley X /rulex X V}B /V +{}B /RV statusdict begin /product where{pop product dup length 7 ge{0 7 +getinterval dup(Display)eq exch 0 4 getinterval(NeXT)eq or}{pop false} +ifelse}{false}ifelse end{{gsave TR -.1 .1 TR 1 1 scale rulex ruley false +RMat{BDot}imagemask grestore}}{{gsave TR -.1 .1 TR rulex ruley scale 1 1 +false RMat{BDot}imagemask grestore}}ifelse B /QV{gsave newpath transform +round exch round exch itransform moveto rulex 0 rlineto 0 ruley neg +rlineto rulex neg 0 rlineto fill grestore}B /a{moveto}B /delta 0 N /tail +{dup /delta X 0 rmoveto}B /M{S p delta add tail}B /b{S p tail}B /c{-4 M} +B /d{-3 M}B /e{-2 M}B /f{-1 M}B /g{0 M}B /h{1 M}B /i{2 M}B /j{3 M}B /k{ +4 M}B /w{0 rmoveto}B /l{p -4 w}B /m{p -3 w}B /n{p -2 w}B /o{p -1 w}B /q{ +p 1 w}B /r{p 2 w}B /s{p 3 w}B /t{p 4 w}B /x{0 S rmoveto}B /y{3 2 roll p +a}B /bos{/SS save N}B /eos{SS restore}B end +%%EndProcSet +TeXDict begin 40258431 52099146 1000 300 300 +(/usr/maligne2/grad/brock/Writing/taxonomy/taxonomy.dvi) +@start /Fa 2 101 df<00200060006000C000C000C00180018001800300030003000600 +06000C000C000C00180018001800300030003000600060006000C000C000C0000B1D7E95 +11>61 D<007C000C0018001800180018003007B00C7010703060606060606060C0C0C0C8 +C0C841C862D03C700E147E9311>100 D E /Fb 4 81 df<7FFFC0FFFFC07FFFC01C01C0 +1C01C01C01C01C01C01C00001C00001C1C001C1C001FFC001FFC001FFC001C1C001C1C00 +1C00001C00E01C00E01C00E01C00E01C00E07FFFE0FFFFE07FFFE013197F9816>69 +D<7E1FC0FF3FE07F1FC01D07001D87001D87001D87001DC7001DC7001CC7001CC7001CE7 +001CE7001CE7001C67001C67001C77001C77001C37001C37001C37001C17007F1F00FF9F +007F0F0013197F9816>78 D<1FFC003FFE007FFF00780F00F00780E00380E00380E00380 +E00380E00380E00380E00380E00380E00380E00380E00380E00380E00380E00380F00780 +F00780780F007FFF003FFE001FFC0011197E9816>I<7FF800FFFE007FFF001C0F801C03 +801C03C01C01C01C01C01C01C01C03C01C03801C0F801FFF001FFE001FF8001C00001C00 +001C00001C00001C00001C00001C00007F0000FF80007F000012197F9816>I +E /Fc 21 123 df<000FE0200070186001C00460030003E0060001E00E0000E01C000060 +38000060380000207800002070000020F0000000F0000000F0000000F0000000F0000000 +F0000000F0000000F0000000700000207800002038000020380000201C0000400E000040 +060000800300010001C0060000701800000FE0001B1E7D9C21>67 +D<FFF00FF80F0007C00F0003000F0002000F0004000F0008000F0010000F0060000F0080 +000F0100000F0200000F0700000F0F80000F1780000F23C0000F43E0000F81E0000F00F0 +000F00F8000F0078000F003C000F001E000F001F000F000F000F0007800F0007C00F0007 +E0FFF03FFC1E1C7D9B23>75 D<FFFFE0000F0078000F001C000F000E000F0007000F0007 +800F0007800F0007800F0007800F0007800F0007000F000E000F001C000F0078000FFFE0 +000F0000000F0000000F0000000F0000000F0000000F0000000F0000000F0000000F0000 +000F0000000F0000000F000000FFF00000191C7D9B1F>80 D<7FFFFFC0700F01C0600F00 +C0400F0040400F0040C00F0020800F0020800F0020800F0020000F0000000F0000000F00 +00000F0000000F0000000F0000000F0000000F0000000F0000000F0000000F0000000F00 +00000F0000000F0000000F0000000F0000000F0000001F800003FFFC001B1C7D9B21>84 +D<FFE07FF03FC01F000F800F001F000F0006000F000F8004000F000F8004000F800F8004 +0007801FC00800078013C00800078013C0080003C033E0100003C021E0100003C021E010 +0001E061F0200001E040F0200001E040F0200000F040F8400000F08078400000F0807840 +000078807C80000079003C80000079003C8000003D003F0000003E001F0000003E001F00 +00001E001E0000001C000E0000001C000E0000000C000C00000008000400002A1D7E9B2E +>87 D<7FFFFC7C00787000786000F06001E04001E04003C0400780400780000F00001E00 +001E00003C0000780000780000F00001E00001E00403C0040780040780040F000C1E0008 +1E00083C00187800387800F8FFFFF8161C7D9B1C>90 D<00200000700000700000700000 +B80000B80000B800011C00011C00011C00020E00020E0004070004070007FF0008038008 +03800803801801C03803C0FE0FF815157F9419>97 D<FFFF801C03801C00801C00801C00 +401C00401C10401C10001C10001C30001FF0001C30001C10001C10201C10201C00201C00 +601C00401C00C01C01C0FFFFC013157F9417>101 D<00FC200782600E01E01C00E03800 +60780020700020F00020F00000F00000F00000F00FF8F000E0F000E07000E07800E03800 +E01C00E00E00E007836000FC2015157E941B>103 D<FF8FF81C01C01C01C01C01C01C01 +C01C01C01C01C01C01C01C01C01C01C01FFFC01C01C01C01C01C01C01C01C01C01C01C01 +C01C01C01C01C01C01C0FF8FF815157F9419>I<FF801C001C001C001C001C001C001C00 +1C001C001C001C001C001C001C001C001C001C001C001C00FF8009157F940D>I<FF83F8 +1C01E01C01801C01001C02001C04001C08001C10001C30001C70001CB8001D1C001E1C00 +1C0E001C07001C07801C03801C01C01C01E01C01F0FF83FC16157F941A>107 +D<FFC0001C00001C00001C00001C00001C00001C00001C00001C00001C00001C00001C00 +001C00001C00801C00801C00801C01801C01001C03001C0700FFFF0011157F9415>I<FC +03F81E00E01E004017004013804013C04011C04010E040107040107040103840101C4010 +1C40100E401007401007C01003C01001C01000C03800C0FE004015157F9419>110 +D<01F800070E000C03001C03803801C07801E07000E0F000F0F000F0F000F0F000F0F000 +F0F000F0F000F07000E07801E03801C01C03801E0780070E0001F80014157E941A>I<FF +F8001C0E001C07801C03801C03C01C03C01C03C01C03801C07801C0E001FF8001C1C001C +0E001C07001C07001C07001C07801C07841C07C41C03CCFF80F816157F9419>114 +D<FF83F81C00E01C00401C00401C00401C00401C00401C00401C00401C00401C00401C00 +401C00401C00401C00401C00400C00C00E008006010003860000FC0015157F9419>117 +D<FF0FF87E3C01E03C3801C0181C02E0101C02E0101C02E0100E0470200E0470200E0470 +2007083840070838400708384003901C8003901C8003901C8001E00F0001E00F0001E00F +0000C0060000C0060000C006001F157F9423>119 D<FF87F01E03800E03000F02000704 +0003840003C80001D00000F00000F00000700000780000BC00011C00010E00020F000407 +000403800C03C03C03C0FE07F815157F9419>I<FF80FE1E00780E00200F004007004003 +808003C18001C10000E20000E200007400007C0000380000380000380000380000380000 +380000380000380001FF001715809419>I<FFFEF01CC01CC0388038807080E000E001C0 +01C00380070007000E020E021C02380238067006701EFFFE0F157E9415>I +E /Fd 2 26 df<0000300000F00001C0000700001E0000780001E0000380000E00003C00 +00F00000F000003800000E000007800001E000007800001C000007000003C00000F00000 +300000000000000000000000000000000000007FFFE0FFFFF0141E7D951B>20 +D<0F00043FC0047FE004F0F00CC03C3C801FF8800FF08003C00000000F00043FC0047FE0 +04F0F00CC03C3C801FF8800FF08003C016117E901B>25 D E /Fe +22 122 df<7FF0FFE00C027F890E>45 D<000020000000300000007000000070000000F0 +000000F0000001F00000037800000278000006780000047800000C780000087C0000183C +0000103C0000203C0000203C0000403C0000403E0000FFFE0000801E0001001E0001001E +0002001E0002000F0004000F0004000F001E001F00FF80FFF01C1D7F9C1F>65 +D<0007F010001C0C300070026000C001E0038000E0070000E00E0000600E0000601C0000 +403C00004038000040780000007800000078000000F0000000F0000000F0000000F000FF +F0F0000F80F0000780F0000F0070000F0070000F0038000F0038000F001C001F000C001E +000600660003818200007E00001C1E7C9C21>71 D<0FFFFC0000F80F0000F0038000F003 +C000F001C000F001C000F001C001E003C001E003C001E003C001E0038001E0070001E00E +0003C03C0003FFE00003C0000003C0000003C0000003C000000780000007800000078000 +000780000007800000078000000F0000000F800000FFF000001A1C7E9B1C>80 +D<003F0400C0CC0180380300380600180E00180E00180E00181E00101E00001F00000F80 +000FF80007FF0003FF8001FFC0003FE00003E00001E00000E00000E04000E04000E04000 +E04000C06001C0E00180F00300CC0E0083F800161E7E9C17>83 D<1FFFFFF03C07C0F030 +07803020078020600780204007802040078020400F0020800F0020000F0000000F000000 +0F0000000F0000001E0000001E0000001E0000001E0000001E0000001E0000003C000000 +3C0000003C0000003C0000003C0000003C000000780000007C00001FFFE0001C1C7C9B1E +>I<07F0001C18001E0C001C0E00180E00000E00000E0001FE000F0E001C1C00301C0070 +1C00E01C40E01C40E03C40E05C80709D803F0E0012127D9115>97 +D<01F8071C0C1E181C38183000700070007000E000E000E000600060047008301018200F +C00F127D9112>99 D<01F8070C0C061C073803300370037FFF7000E000E000E000600060 +02300430081C3007C010127E9112>101 D<000F800039C00061C000E3C001C18001C000 +01C00001C0000380000380000380003FF800038000038000070000070000070000070000 +0700000700000E00000E00000E00000E00000E00000E00001C00001E0000FFC000121D7F +9C0D>I<000038003CCC00C69C0183080383800703800703800703800703800707000306 +00038C0004F0000400000C00000C00000FFE0007FF800FFFC01801C02000C06000E0C000 +C0C000C0600180200300180E0007F000161C809215>I<07E00001E00001C00001C00001 +C00001C00001C00001C000038000038000038000038F8003B0C003C0E00780E00780E007 +00E00700E00700E00700E00E01C00E01C00E01C00E01C00E01C00E01C01C03801E03C0FF +9FF0141D7F9C17>I<00C001C001C0018000000000000000000000000000001F80078003 +800700070007000700070007000E000E000E000E000E000E001C001E00FF800A1D7F9C0C +>I<07E001E001C001C001C001C001C001C0038003800380038003800380070007000700 +0700070007000E000E000E000E000E000E001C001E00FF800B1D7F9C0C>108 +D<1F8FC0FC00079061060003E07607000780780700078078070007007007000700700700 +070070070007007007000E00E00E000E00E00E000E00E00E000E00E00E000E00E00E000E +00E00E001C01C01C001E01E01E00FF8FF8FF8021127F9124>I<1F8F8007B0C003C0E007 +80E00780E00700E00700E00700E00700E00E01C00E01C00E01C00E01C00E01C00E01C01C +03801E03C0FF9FF014127F9117>I<00FC000307000E01801C01C03800C03000C07000E0 +7000E07000E0E001C0E001C0E001C0600180600380700700380E001C180007E00013127E +9115>I<1F9C07EE03CF078E078C07000700070007000E000E000E000E000E000E001C00 +1E00FFC010127F9110>114 D<03F20C0E18061004300438043E001FE00FF007F8003C40 +1C400C400C6018E010D0608FC00F127F9110>I<020002000200060006000C001C003C00 +FFE01C001C00380038003800380038003800700070407040704070407080708031001E00 +0B1A7C9910>I<1FE3FC07C1E003818001C10001C20000E40000EC000078000070000038 +00007800009C00011E00020E000407000C07003C0780FE1FF016127F9116>120 +D<0FF0FE03C03801C03001C02001C06001C04001E08000E08000E10000E10000E2000072 +00007400007C00007800007000003000002000002000004000004000708000F10000F100 +00E60000780000171A809116>I E /Ff 2 13 df<07C0000C3040101040201880601880 +C00C80C00D00C00E00800E00800C00C01C00C02C0060C4803F0300120E7E8D17>11 +D<000F0000308000C0C00080400100600200C00400C0040080040180083F00083E000801 +00080180100180100180100180100180300300300300300600280C0044180043E0004000 +00400000800000800000800000800000131D7F9614>I E /Fg 13 +118 df<60F0F0600404798312>46 D<03E007F01E18381C30FC71FE739EE30EE70EE70E +E70EE70EE30C739C71F830F038001E0E07FE03F80F147F9312>64 +D<3F807FC070E0207000700FF03FF07870E070E070E07070F03FFE1F3E0F0E7E8D12>97 +D<F800F80038003800380038003BE03FF03C38381C380C380E380E380E380E380C381C3C +383FF01BC00F147F9312>I<07F01FF8383870106000E000E000E000E000600070383838 +1FF007E00D0E7E8D12>I<07801FE0387070706038E038FFF8FFF8E0006000703838381F +F007C00D0E7E8D12>101 D<F800F80038003800380038003BFC3BFC38F039E03BC03F80 +3F803FC03DE038E038703838FC7EFC7E0F147F9312>107 D<FF00FF0007000700070007 +00070007000700070007000700070007000700070007000700FFF8FFF80D147E9312>I< +0F803FE038E07070E038E038E038E038E038F078707038E03FE00F800D0E7E8D12>111 +D<FCF8FDFC1F1C1E081E001C001C001C001C001C001C001C00FFC0FFC00E0E7E8D12> +114 D<1FF03FF06070C070E0007F003FE00FF000786018E018F030FFE0DFC00D0E7E8D12 +>I<06000E000E000E007FF8FFF80E000E000E000E000E000E000E000E380E380E3807F0 +03C00D127F9112>I<F8F8F8F838383838383838383838383838383838383838781FFE0F +BE0F0E7F8D12>I E /Fh 73 123 df<00FCF807839C0E079C1C07081C07001C07001C07 +001C07001C0700FFFFE01C07001C07001C07001C07001C07001C07001C07001C07001C07 +001C07001C07001C0700FF1FE01617809615>11 D<00FC000782000E07001C07001C0200 +1C00001C00001C00001C0000FFFF001C07001C07001C07001C07001C07001C07001C0700 +1C07001C07001C07001C07001C0700FF1FE01317809614>I<60C0F1E0F1E070E0102010 +2020402040408040800B0A7F9612>34 D<01C0000320000610000E10000E10000E10000E +20000E40000E80000780FE0700380700200B802013804031C04061E08060E100E07100E0 +3A00E01C02700E0238370C0FC1F817177F961B>38 D<0102040C1818303070606060E0E0 +E0E0E0E0E0E0E0E060606070303018180C04020108227D980E>40 +D<8040203018180C0C0E060606070707070707070707070606060E0C0C18183020408008 +227E980E>I<020002000200C218F2783AE00F800F803AE0F278C2180200020002000D0E +7E9812>I<00300000300000300000300000300000300000300000300000300000300000 +3000FFFFFCFFFFFC00300000300000300000300000300000300000300000300000300000 +300000300016187E931B>I<60F0F070101020204040040A7D830A>I<FF80FF8009028087 +0C>I<60F0F06004047D830A>I<0008001800300030003000600060006000C000C000C001 +8001800180030003000600060006000C000C000C00180018001800300030003000600060 +006000C000C0000D217E9812>I<07C018303018701C600C600CE00EE00EE00EE00EE00E +E00EE00EE00EE00E600C600C701C30181C7007C00F157F9412>I<03000700FF00070007 +000700070007000700070007000700070007000700070007000700070007007FF00C157E +9412>I<0F8030E040708030C038E0384038003800700070006000C00180030006000C08 +080810183FF07FF0FFF00D157E9412>I<0FE030306018701C701C001C00180038006007 +E000300018000C000E000EE00EE00EC00C401830300FE00F157F9412>I<003000300070 +00F001F001700270047008701870107020704070C070FFFE0070007000700070007003FE +0F157F9412>I<20303FE03FC0240020002000200020002F8030E0207000300038003840 +38E038E0388030406020C01F000D157E9412>I<01F00608080C181C301C70006000E000 +E3E0EC30F018F00CE00EE00EE00E600E600E300C3018183007C00F157F9412>I<40007F +FE7FFC7FF8C008801080200040008000800100010003000200060006000E000E000E000E +000E0004000F167E9512>I<07E018302018600C600C700C78183E101F600FC00FF018F8 +607C601EC00EC006C006C004600C38300FE00F157F9412>I<07C0183030186018E00CE0 +0CE00EE00EE00E601E301E186E0F8E000E000C001C70187018603020C01F800F157F9412 +>I<60F0F06000000000000060F0F060040E7D8D0A>I<FFFFFCFFFFFC0000000000000000 +00000000000000000000FFFFFCFFFFFC160A7E8C1B>61 D<001000003800003800003800 +005C00005C00005C00008E00008E00008E0001070001070003078002038002038007FFC0 +0401C00401C00800E00800E01800E03800F0FE03FE17177F961A>65 +D<FFFE001C03801C00E01C00601C00701C00701C00701C00701C00E01C01C01FFF801FFF +C01C00E01C00701C00301C00381C00381C00381C00381C00701C00E01C01C0FFFF001517 +7F9619>I<00FC100383300E00B01C0070380030300030700010600010E00010E00000E0 +0000E00000E00000E00000E000106000107000103000203800201C00400E008003830000 +FC0014177E9619>I<FFFF001C01C01C00E01C00301C00381C00181C001C1C000C1C000E +1C000E1C000E1C000E1C000E1C000E1C000E1C000C1C001C1C001C1C00381C00301C0060 +1C01C0FFFF0017177F961B>I<FFFFE01C00E01C00601C00201C00101C00101C00101C04 +001C04001C04001C0C001FFC001C0C001C04001C04081C04081C00081C00181C00101C00 +101C00301C00F0FFFFF015177F9618>I<FFFFE01C00E01C00601C00201C00101C00101C +00101C04001C04001C04001C0C001FFC001C0C001C04001C04001C04001C00001C00001C +00001C00001C00001C0000FFC00014177F9617>I<007E080381980600580C0038180018 +300018700008700008E00008E00000E00000E00000E00000E003FEE00038700038700038 +3000381800380C00380600380380D8007F0817177E961C>I<FF83FE1C00701C00701C00 +701C00701C00701C00701C00701C00701C00701C00701FFFF01C00701C00701C00701C00 +701C00701C00701C00701C00701C00701C0070FF83FE17177F961A>I<FFE00E000E000E +000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E +00FFE00B177F960D>I<0FFC00E000E000E000E000E000E000E000E000E000E000E000E0 +00E000E000E000E000E0E0E0E0E0C1C061801F000E177E9612>I<FF80FE1C00781C0060 +1C00401C00801C01001C06001C08001C10001C38001C78001C9C001D0E001E0E001C0700 +1C03801C01C01C01C01C00E01C00701C00781C007CFF80FF18177F961B>I<FFC0001C00 +001C00001C00001C00001C00001C00001C00001C00001C00001C00001C00001C00001C00 +001C00201C00201C00201C00601C00601C00401C00C01C03C0FFFFC013177F9616>I<FE +0003F81E0003C0170005C0170005C0170005C0138009C0138009C011C011C011C011C011 +C011C010E021C010E021C0107041C0107041C0107041C0103881C0103881C0101D01C010 +1D01C0100E01C0100E01C0380E01C0FE040FF81D177F9620>I<FC00FE1E00381F001017 +001013801011C01011C01010E010107010103810103810101C10100E10100F1010071010 +03901001D01001D01000F0100070100030380030FE001017177F961A>I<00FC00030300 +0E01C01C00E0380070300030700038600018E0001CE0001CE0001CE0001CE0001CE0001C +E0001C7000387000383000303800701C00E00E01C003030000FC0016177E961B>I<FFFE +001C03801C00C01C00601C00701C00701C00701C00701C00601C00C01C03801FFE001C00 +001C00001C00001C00001C00001C00001C00001C00001C00001C0000FF800014177F9618 +>I<FFFC001C03801C00C01C00E01C00701C00701C00701C00701C00E01C00C01C03801F +FE001C07801C01C01C00E01C00E01C00E01C00E01C00E01C00E11C00E11C0072FF803C18 +177F961A>82 D<0FC4302C601C400CC004C004C004E00070007F003FE00FF801FC001C00 +0E0006800680068006C004E008D81087E00F177E9614>I<7FFFF8603818403808403808 +803804803804803804003800003800003800003800003800003800003800003800003800 +00380000380000380000380000380000380007FFC016177F9619>I<FF80FE1C00381C00 +101C00101C00101C00101C00101C00101C00101C00101C00101C00101C00101C00101C00 +101C00101C00101C00100E0020060020030040018180007E0017177F961A>I<FF80FE3C +00381C00101C00100E00200E002007004007004007004003808003808003C18001C10001 +C10000E20000E20000F60000740000740000380000380000380000100017177F961A>I< +FF07FC3F803C01E00E001C00E004001C00E004001C017004000E017008000E017008000E +023808000702381000070238100007041C100003841C200003841C200003880E200001C8 +0E400001C80E400001D80F400000F007800000F007800000F00780000060030000006003 +0000006003000021177F9624>I<FFC03F801E001C000F00080007001000078030000380 +200001C0400001E0400000E0800000F1800000710000003A0000003E0000001C0000001C +0000001C0000001C0000001C0000001C0000001C0000001C0000001C000000FF80001917 +80961A>89 D<204020404080408081008100E1C0F1E0F1E060C00B0A7B9612>92 +D<1FC0386038301038003803F81E3830387038E039E039E07970FF1F1E100E7F8D12>97 +D<FC00001C00001C00001C00001C00001C00001C00001C00001C00001CF8001F06001C03 +001C03801C01801C01C01C01C01C01C01C01C01C01801C03801C03001B0E0010F8001217 +809614>I<07F01838303870106000E000E000E000E000600070083008183007C00D0E7F +8D10>I<007E00000E00000E00000E00000E00000E00000E00000E00000E0007CE001C3E +00300E00700E00600E00E00E00E00E00E00E00E00E00600E00700E00301E00182E0007CF +C012177F9614>I<0FC0186030307038E018FFF8E000E000E000600070083010183007C0 +0D0E7F8D10>I<03E006700E701C201C001C001C001C001C00FF801C001C001C001C001C +001C001C001C001C001C001C001C00FF800C1780960B>I<0F9E18E33060707070707070 +306018C02F80200060003FE03FF83FFC600EC006C006C006600C38380FE010157F8D12> +I<FC00001C00001C00001C00001C00001C00001C00001C00001C00001C7C001D8E001E07 +001C07001C07001C07001C07001C07001C07001C07001C07001C07001C0700FF9FE01317 +809614>I<183C3C1800000000007C1C1C1C1C1C1C1C1C1C1C1C1CFF081780960A>I<FC00 +001C00001C00001C00001C00001C00001C00001C00001C00001C3F801C1C001C18001C20 +001C40001CC0001FE0001CF0001C70001C78001C3C001C1E001C1E00FF3FC01217809613 +>107 D<FC001C001C001C001C001C001C001C001C001C001C001C001C001C001C001C00 +1C001C001C001C001C001C00FF80091780960A>I<FC7C1F001D8E63801E0781C01C0701 +C01C0701C01C0701C01C0701C01C0701C01C0701C01C0701C01C0701C01C0701C01C0701 +C0FF9FE7F81D0E808D1E>I<FC7C001D8E001E07001C07001C07001C07001C07001C0700 +1C07001C07001C07001C07001C0700FF9FE0130E808D14>I<07C018303018600C600CE0 +0EE00EE00EE00EE00E701C3018183007C00F0E7F8D12>I<FCF8001F0E001C03001C0380 +1C01801C01C01C01C01C01C01C01C01C01801C03801C07001F0E001CF8001C00001C0000 +1C00001C00001C0000FF80001214808D14>I<07C2001C2600381E00700E00600E00E00E +00E00E00E00E00E00E00600E00700E00301E001C2E0007CE00000E00000E00000E00000E +00000E00007FC012147F8D13>I<FCF01D381E381C101C001C001C001C001C001C001C00 +1C001C00FF800D0E808D0E>I<1F4060C0C040C040E000FF007F801FC001E080608060C0 +60E0C09F000B0E7F8D0E>I<080008000800180018003800FF8038003800380038003800 +3800380038403840384038401C800F000A147F930E>I<FC3F001C07001C07001C07001C +07001C07001C07001C07001C07001C07001C07001C0F000E170003E7E0130E808D14>I< +FE1F3C0E3C0C1C081C080E100E100720072003C003C003C001800180100E7F8D13>I<FC +FE7C3838383838101C3C201C3C201C4C200E4E400E4E400E864007878007878007038003 +0300030300160E7F8D19>I<FE3F3C181C100E20074007C0038001C002E004F008701838 +383CFC7F100E7F8D13>I<FE1F3C0E3C0C1C081C080E100E100720072003C003C003C001 +80018001000100E200E200A400780010147F8D13>I<FFF0C0E080E081C0838087800700 +0E001E081C08381870107030FFF00D0E7F8D10>I E /Fi 1 50 df<0C003C00CC000C00 +0C000C000C000C000C000C000C000C000C000C000C00FF8009107E8F0F>49 +D E /Fj 1 4 df<01800180018001804182F18F399C0FF003C003C00FF0399CF18F4182 +018001800180018010127E9215>3 D E /Fk 12 113 df<00F000030C000E06041C0704 +380708300708700790700790E003A0E003A0E003C0E00380E00380E00380600780601B88 +3061900F80E016127E911B>11 D<0001F000061800080C00100C00200E00400E00800E00 +801C01001C010018010038020FF00210C0020FE002003004003004003004003804003808 +00700800700800700800E01800E01800C0140180140300230E0020F80020000020000040 +000040000040000040000080000080000017257F9C17>I<01FFFF80003C01E000380070 +003800380038001C0038001C0070001C0070001E0070001E0070001E00E0001E00E0001E +00E0001E00E0001E01C0003C01C0003C01C0003C01C000380380007803800070038000F0 +038000E0070001C0070003800700070007001C000E007800FFFFC0001F1C7E9B22>68 +D<01FFFFF8003C0078003800180038001000380010003800100070001000700010007010 +100070100000E0200000E0200000E0600000FFE00001C0400001C0400001C0400001C040 +0003808040038000400380008003800080070001000700010007000300070006000E003E +00FFFFFC001D1C7E9B1F>I<01FC00FF80001C001C00002E001800002E001000002E0010 +00002700100000470020000043002000004380200000438020000081C040000081C04000 +0081C040000080E040000100E08000010070800001007080000100708000020039000002 +00390000020039000002001D000004001E000004000E000004000E00000C000E00001C00 +040000FF80040000211C7E9B21>78 D<0003F800000E0E000038038000E001C001C001C0 +038000E0070000E00F0000F01E0000F01C0000F03C0000F03C0000F0780000F0780000F0 +780000F0F00001E0F00001E0F00001E0F00003C0F00003C0F0000780F0000780F0000F00 +70000E0070001C00380038003C0070001C01C0000707800001FC00001C1E7E9C20>I<01 +FFFE00003C03C0003800E0003800F00038007000380070007000F0007000F0007000F000 +7001E000E001C000E0078000E01E0000FFF00001C0300001C0180001C01C0001C01C0003 +801C0003801C0003801C0003801C0007003C0007003C0807003C0807003C100F001E10FF +E00E20000007C01D1D7E9B20>82 D<000FC100303300400F008006018006030006030006 +06000406000407000007000007800003F00001FF0000FFC0003FE00003E00000F0000070 +0000300000302000302000306000606000606000C0600080F00300CC060083F800181E7E +9C19>I<3F00070007000E000E000E000E001C001C001C001C0039E03A303C1838187018 +701C701C701CE038E038E038E030E070E060E0C061C023001E000E1D7E9C12>98 +D<0007E00000E00000E00001C00001C00001C00001C000038000038000038000038001E7 +000717000C0F00180F00380E00300E00700E00700E00E01C00E01C00E01C00E01C00E038 +80E03880E038806078803199001E0E00131D7E9C16>100 D<0FC00001C00001C0000380 +000380000380000380000700000700000700000700000E07000E18800E21C00E23C01C47 +801C83001D00001E00003F800039C00038E00038E00070E10070E10070E10070E200E062 +00603C00121D7E9C16>107 D<07078009C86008D03008E03011C03011C03801C03801C0 +380380700380700380700380600700E00700C00701800783000E86000E78000E00000E00 +001C00001C00001C00001C00003C0000FF8000151A819115>112 +D E /Fl 53 122 df<0020004001800380030006000E001C001C003C0038003800780078 +007800F800F000F000F000F000F000F000F000F000F000F800780078007800380038003C +001C001C000E000600030003800180004000200B297C9E13>40 D<800040003000380018 +000C000E000700070007800380038003C003C003C003E001E001E001E001E001E001E001 +E001E001E003E003C003C003C0038003800780070007000E000C00180038003000400080 +000B297D9E13>I<FFE0FFE0FFE0FFE00B047F8A10>45 D<78FCFCFCFC7806067D850D>I< +00600001E0000FE000FFE000F3E00003E00003E00003E00003E00003E00003E00003E000 +03E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E000 +03E0007FFF807FFF80111B7D9A18>49 D<07F8001FFE00383F80780FC0FC07C0FC07E0FC +03E0FC03E07803E00007E00007C00007C0000F80001F00001E0000380000700000E00001 +80600300600600600800E01FFFC03FFFC07FFFC0FFFFC0FFFFC0131B7E9A18>I<03F800 +1FFE003C1F003C0F807C07C07E07C07C07C03807C0000F80000F80001E00003C0003F800 +001E00000F800007C00007C00007E03007E07807E0FC07E0FC07E0FC07C0780F80781F00 +1FFE0007F800131B7E9A18>I<000180000380000780000F80001F80003F80006F8000CF +80008F80018F80030F80060F800C0F80180F80300F80600F80C00F80FFFFF8FFFFF8000F +80000F80000F80000F80000F80000F8001FFF801FFF8151B7F9A18>I<1801801FFF001F +FE001FFC001FF8001FC00018000018000018000018000019F8001E0E00180F8010078000 +07C00007E00007E00007E07807E0F807E0F807E0F807C0F007C0600F80381F001FFE0007 +F000131B7E9A18>I<6000007FFFE07FFFE07FFFC07FFF807FFF80E00300C00600C00C00 +C0180000300000300000600000E00000E00001E00001C00003C00003C00003C00003C000 +07C00007C00007C00007C00007C00007C000038000131C7D9B18>55 +D<03F8000FFE001E0F803807803803C07803C07803C07E03C07F83807FC7003FFE001FFC +000FFE0007FF801DFF80387FC0781FE0F007E0F003E0F001E0F001E0F001E07801C07803 +803E07801FFE0003F800131B7E9A18>I<03F8000FFE001E0F003C07807807807803C0F8 +03C0F803C0F803E0F803E0F803E0F803E07807E03807E03C0BE00E1BE003E3E00003E000 +03C00003C03807C07C07807C0700780F00383C001FF8000FE000131B7E9A18>I<000380 +00000380000007C0000007C0000007C000000FE000000FE000001FF000001BF000001BF0 +000031F8000031F8000061FC000060FC0000E0FE0000C07E0000C07E0001803F0001FFFF +0003FFFF8003001F8003001F8006000FC006000FC00E000FE00C0007E0FFC07FFEFFC07F +FE1F1C7E9B24>65 D<FFFFF800FFFFFF000FC01F800FC00FC00FC007C00FC007E00FC007 +E00FC007E00FC007E00FC007E00FC007C00FC00F800FC03F000FFFFE000FC00F800FC007 +C00FC007E00FC003E00FC003F00FC003F00FC003F00FC003F00FC003F00FC007E00FC007 +E00FC01FC0FFFFFF00FFFFFC001C1C7E9B22>I<001FE02000FFF8E003F80FE007C003E0 +0F8001E01F0000E03E0000E03E0000607E0000607C000060FC000000FC000000FC000000 +FC000000FC000000FC000000FC000000FC0000007C0000607E0000603E0000603E0000C0 +1F0000C00F80018007C0030003F80E0000FFFC00001FE0001B1C7D9B22>I<FFFFF800FF +FFFF000FC01FC00FC007E00FC001F00FC001F80FC000F80FC000FC0FC0007C0FC0007C0F +C0007E0FC0007E0FC0007E0FC0007E0FC0007E0FC0007E0FC0007E0FC0007E0FC0007C0F +C0007C0FC0007C0FC000F80FC000F80FC001F00FC007E00FC01FC0FFFFFF00FFFFF8001F +1C7E9B25>I<FFFFFF00FFFFFF000FC01F000FC007000FC003000FC003800FC003800FC1 +81800FC181800FC181800FC180000FC380000FFF80000FFF80000FC380000FC180000FC1 +80000FC180600FC180600FC000E00FC000C00FC000C00FC001C00FC001C00FC003C00FC0 +0F80FFFFFF80FFFFFF801B1C7E9B1F>I<FFFFFF00FFFFFF000FC01F000FC007000FC003 +000FC003800FC003800FC001800FC181800FC181800FC180000FC180000FC380000FFF80 +000FFF80000FC380000FC180000FC180000FC180000FC180000FC000000FC000000FC000 +000FC000000FC000000FC00000FFFF0000FFFF0000191C7E9B1E>I<000FF008007FFE38 +01FC07F807E001F80F8000781F0000783F0000383E0000387E0000187C000018FC000000 +FC000000FC000000FC000000FC000000FC000000FC007FFFFC007FFF7C0001F87E0001F8 +3E0001F83F0001F81F0001F80F8001F807E001F801FC07F8007FFE78000FF818201C7D9B +26>I<FFFC3FFFFFFC3FFF0FC003F00FC003F00FC003F00FC003F00FC003F00FC003F00F +C003F00FC003F00FC003F00FC003F00FFFFFF00FFFFFF00FC003F00FC003F00FC003F00F +C003F00FC003F00FC003F00FC003F00FC003F00FC003F00FC003F00FC003F00FC003F0FF +FC3FFFFFFC3FFF201C7E9B25>I<FFFFFFFF07E007E007E007E007E007E007E007E007E0 +07E007E007E007E007E007E007E007E007E007E007E007E007E007E007E0FFFFFFFF101C +7F9B12>I<07FFF007FFF0001F80001F80001F80001F80001F80001F80001F80001F8000 +1F80001F80001F80001F80001F80001F80001F80001F80001F80001F80301F80781F80FC +1F80FC1F80FC1F00783E00387C000FF000141C7F9B19>I<FFFC07FFFFFC07FF0FC000E0 +0FC001C00FC003800FC006000FC00C000FC038000FC070000FC0E0000FC1C0000FC3C000 +0FC7E0000FCFE0000FFBF0000FF3F8000FE1F8000FC0FC000FC0FE000FC07E000FC03F00 +0FC01F800FC01FC00FC00FC00FC007E00FC007F0FFFC3FFFFFFC3FFF201C7E9B25>I<FF +FF00FFFF000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000F +C0000FC0000FC0000FC0000FC0000FC0030FC0030FC0030FC0070FC0070FC0060FC00E0F +C01E0FC07EFFFFFEFFFFFE181C7E9B1D>I<FFC00003FFFFE00007FF0FE00007F00DF000 +0DF00DF0000DF00DF0000DF00CF80019F00CF80019F00C7C0031F00C7C0031F00C3E0061 +F00C3E0061F00C1F00C1F00C1F00C1F00C1F00C1F00C0F8181F00C0F8181F00C07C301F0 +0C07C301F00C03E601F00C03E601F00C01FC01F00C01FC01F00C01FC01F00C00F801F00C +00F801F0FFC0701FFFFFC0701FFF281C7E9B2D>I<FFE003FFFFE003FF0FF000300FF800 +300DFC00300CFE00300C7E00300C3F00300C1F80300C1FC0300C0FE0300C07F0300C03F0 +300C01F8300C01FC300C00FE300C007F300C003F300C001FB00C001FF00C000FF00C0007 +F00C0003F00C0001F00C0000F00C0000F0FFC00070FFC00030201C7E9B25>I<003FE000 +01F07C0003C01E000F800F801F0007C01E0003C03E0003E07E0003F07C0001F07C0001F0 +FC0001F8FC0001F8FC0001F8FC0001F8FC0001F8FC0001F8FC0001F8FC0001F87C0001F0 +7E0003F07E0003F03E0003E03F0007E01F0007C00F800F8003C01E0001F07C00003FE000 +1D1C7D9B24>I<FFFFF800FFFFFE000FC03F800FC00F800FC007C00FC007E00FC007E00F +C007E00FC007E00FC007E00FC007C00FC007C00FC00F800FC03F000FFFFC000FC000000F +C000000FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC000000F +C00000FFFC0000FFFC00001B1C7E9B21>I<FFFFF00000FFFFFE00000FC03F00000FC00F +80000FC007C0000FC007E0000FC007E0000FC007E0000FC007E0000FC007E0000FC007C0 +000FC00F80000FC03E00000FFFF000000FC07C00000FC03E00000FC03F00000FC01F8000 +0FC01F80000FC01F80000FC01F80000FC01F80000FC01F80000FC01F81800FC01F81800F +C00FC180FFFC07C300FFFC01FE00211C7E9B24>82 D<07F8201FFEE03C07E07801E07000 +E0F000E0F00060F00060F80000FE0000FFE0007FFE003FFF003FFF800FFFC007FFE0007F +E00003F00001F00000F0C000F0C000F0C000E0E000E0F001C0FC03C0EFFF0083FC00141C +7D9B1B>I<7FFFFFE07FFFFFE0781F81E0701F80E0601F8060E01F8070C01F8030C01F80 +30C01F8030C01F8030001F8000001F8000001F8000001F8000001F8000001F8000001F80 +00001F8000001F8000001F8000001F8000001F8000001F8000001F8000001F8000001F80 +0007FFFE0007FFFE001C1C7E9B21>I<FFFC03FFFFFC03FF0FC000300FC000300FC00030 +0FC000300FC000300FC000300FC000300FC000300FC000300FC000300FC000300FC00030 +0FC000300FC000300FC000300FC000300FC000300FC000300FC0003007C0003007C00060 +03E000E001F001C000FC0780007FFE00000FF800201C7E9B25>I<FFFC7FFE0FFCFFFC7F +FE0FFC0FC007E000C00FC007F000C00FE003F001C007E003F0018007E007F8018003F007 +F8030003F007F8030003F80CFC070001F80CFC060001F81CFE060001FC187E0E0000FC18 +7E0C0000FC387F0C00007E303F1800007E303F1800007F601FB800003F601FB000003FE0 +1FF000003FC00FF000001FC00FE000001FC00FE000000F8007C000000F8007C000000F00 +03C0000007000380000007000380002E1C7F9B31>87 D<0FF8001C1E003E0F803E07803E +07C01C07C00007C0007FC007E7C01F07C03C07C07C07C0F807C0F807C0F807C0780BC03E +13F80FE1F815127F9117>97 D<FF0000FF00001F00001F00001F00001F00001F00001F00 +001F00001F00001F00001F3F801FE1E01F80701F00781F003C1F003C1F003E1F003E1F00 +3E1F003E1F003E1F003E1F003C1F003C1F00781F80701EC1E01C3F00171D7F9C1B>I<03 +FC000E0E001C1F003C1F00781F00780E00F80000F80000F80000F80000F80000F8000078 +00007801803C01801C03000E0E0003F80011127E9115>I<000FF0000FF00001F00001F0 +0001F00001F00001F00001F00001F00001F00001F001F9F00F07F01C03F03C01F07801F0 +7801F0F801F0F801F0F801F0F801F0F801F0F801F07801F07801F03C01F01C03F00F0FFE +03F9FE171D7E9C1B>I<01FC000F07001C03803C01C07801C07801E0F801E0F801E0FFFF +E0F80000F80000F800007800007C00603C00601E00C00F038001FC0013127F9116>I<00 +7F0001E38003C7C00787C00F87C00F83800F80000F80000F80000F80000F8000FFF800FF +F8000F80000F80000F80000F80000F80000F80000F80000F80000F80000F80000F80000F +80000F80000F80007FF8007FF800121D809C0F>I<03F8F00E0F381E0F381C07303C0780 +3C07803C07803C07801C07001E0F000E0E001BF8001000001800001800001FFF001FFFC0 +0FFFE01FFFF07801F8F00078F00078F000787000707800F01E03C007FF00151B7F9118> +I<FF0000FF00001F00001F00001F00001F00001F00001F00001F00001F00001F00001F0F +C01F31E01F40F01F80F81F80F81F00F81F00F81F00F81F00F81F00F81F00F81F00F81F00 +F81F00F81F00F81F00F8FFE7FFFFE7FF181D7F9C1B>I<1E003F003F003F003F001E0000 +0000000000000000000000FF00FF001F001F001F001F001F001F001F001F001F001F001F +001F001F001F00FFE0FFE00B1E7F9D0E>I<FF00FF001F001F001F001F001F001F001F00 +1F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F00 +FFE0FFE00B1D7F9C0E>108 D<FF0FC07E00FF31E18F001F40F207801F80FC07C01F80FC +07C01F00F807C01F00F807C01F00F807C01F00F807C01F00F807C01F00F807C01F00F807 +C01F00F807C01F00F807C01F00F807C01F00F807C0FFE7FF3FF8FFE7FF3FF825127F9128 +>I<FF0FC0FF31E01F40F01F80F81F80F81F00F81F00F81F00F81F00F81F00F81F00F81F +00F81F00F81F00F81F00F81F00F8FFE7FFFFE7FF18127F911B>I<01FC000F07801C01C0 +3C01E07800F07800F0F800F8F800F8F800F8F800F8F800F8F800F87800F07800F03C01E0 +1E03C00F078001FC0015127F9118>I<FF3F80FFE1E01F80F01F00781F007C1F003C1F00 +3E1F003E1F003E1F003E1F003E1F003E1F003C1F007C1F00781F80F01FC1E01F3F001F00 +001F00001F00001F00001F00001F0000FFE000FFE000171A7F911B>I<FE3E00FE47001E +8F801E8F801E8F801F07001F00001F00001F00001F00001F00001F00001F00001F00001F +00001F0000FFF000FFF00011127F9114>114 D<1FD830786018E018E018F000FF807FE0 +7FF01FF807FC007CC01CC01CE01CE018F830CFC00E127E9113>I<030003000300030007 +0007000F000F003FFCFFFC1F001F001F001F001F001F001F001F001F001F0C1F0C1F0C1F +0C0F08079803F00E1A7F9913>I<FF07F8FF07F81F00F81F00F81F00F81F00F81F00F81F +00F81F00F81F00F81F00F81F00F81F00F81F00F81F01F80F01F80786FF01F8FF18127F91 +1B>I<FFC1FCFFC1FC1F00601F80E00F80C00FC0C007C18007C18003E30003E30001F600 +01F60001FE0000FC0000FC0000780000780000300016127F9119>I<FFC1FCFFC1FC1F00 +601F80E00F80C00FC0C007C18007C18003E30003E30001F70001F60000FE0000FC0000FC +00007800007800003000003000007000706000F86000F8C000F980007300003E0000161A +7F9119>121 D E /Fm 2 51 df<0C001C00EC000C000C000C000C000C000C000C000C00 +0C000C000C000C000C000C000C00FFC00A137D9211>49 D<1F0060C06060F070F0306030 +00700070006000C001C00180020004000810101020207FE0FFE00C137E9211>I +E /Fn 68 123 df<0001FC000703000C03001C07001C0300180000380000380000380000 +380000700007FFFC00701C00701C00701C00E03800E03800E03800E03800E07001C07001 +C07001C07001C0E201C0E201C0E20380E4038064038038038000030000070000060000C6 +0000E40000CC00007000001825819C17>12 D<E0E0E070301018080508749C15>18 +D<03070E1C3860C0800808729C15>I<183C3C3C0404080810204080060C779C0D>39 +D<00030006000800180030006000C000C0018003000300060006000C000C001C00180018 +00380030003000700070006000600060006000E000E000E000E000E00060006000600060 +00600020003000100008000800102A7B9E11>I<001000100008000C0004000600060006 +00060006000700070007000700070006000600060006000E000E000C000C001C00180018 +0038003000300060006000C000C001800300030006000C00180010006000C000102A809E +11>I<0030000060000060000060001841803C47000ECE0007B80001E00003C0000EF000 +39B800711E00C10C000300000300000300000600001112799E15>I<1838783808081010 +20404080050C7D830D>44 D<FFC0FFC0FFC00A037D890F>I<3078F06005047C830D>I<00 +3C0000C6000183000303000603000603800E03800C03801C03801C030038070038070038 +0700380700700E00700E00700E00700E00E01C00E01C00E01C00E03800E03800E03000C0 +6000E0600060C0007180001E0000111D7B9B15>48 D<00020006000C001C007C039C0038 +003800380038007000700070007000E000E000E000E001C001C001C001C0038003800380 +03800780FFF00F1C7C9B15>I<003C0000C3000101800201800201C00441C00441C00841 +C00841C00841C01083801083801107000E0600000C0000180000300000C0000100000600 +000800001001001002002002004006007E0C00C7F80083F80080E000121D7C9B15>I<00 +3E0000C1800101800200C00400C00440C00841C00841C00841C008838007038000070000 +0E0001F800003800000C00000C00000E00000E00000E00000E00700E00E01C00801C0080 +380080300040600021C0001F0000121D7C9B15>I<0001800001C0000380000380000380 +000300000700000700000600000E00000C00001C00001800001800003000003000006000 +00400000C600018E00010E00020E00061C000C1C00181C003F1C0040F800803F00003800 +00380000700000700000700000700000E00000600012247E9B15>I<00C06000FFC001FF +8001FE00010000010000020000020000020000020000047800058C000606000406000806 +00000700000700000600000E00000E00700E00700C00E01C008018008038004030004060 +0021C0001F0000131D7C9B15>I<001E000061000081800180800300C00300C006018006 +018006018007030007860003CC0003F00001F000037800063C00081E00180E00300E0060 +0600600600600600C00C00C00C00C0180060100060200030C0000F0000121D7C9B15>56 +D<003C0000C6000183000303000603000E03000C03801C03801C03001C03003807003807 +00380700380F00380E00181E00181E000C6C00079C00001C000018000038000030000060 +00E0C000E0C0008180008600007C0000111D7B9B15>I<060F0F06000000000000000000 +003078F06008127C910D>I<000018000000180000003800000038000000780000007800 +0000B8000001B800000138000002380000023C0000041C0000041C0000081C0000181C00 +00101C0000201C0000201C00007FFC0000401C0000801C0001801C0001001C0002001C00 +02001C0004000E000C000E001C001E00FF00FFC01A1D7E9C1F>65 +D<01FFFE00003C0780003803C0003801C0003801C0003801C0007001C0007003C0007003 +C00070078000E0070000E00E0000E03C0000FFF80001C01C0001C00E0001C00F0001C00F +0003800F0003800F0003800F0003800F0007001E0007001C0007003C00070078000E01E0 +00FFFF80001A1C7D9B1D>I<0003F020001E0C60003002E000E003C001C001C0038001C0 +070000C00E0000801E0000801C0000803C0000803C000000780000007800000078000000 +F0000000F0000000F0000000F0000000F0000400F0000400F0000400F000080070000800 +7000100038002000180040000C0180000706000001F800001B1E7A9C1E>I<01FFFE0000 +3C0780003801C0003801C0003800E0003800E0007000F00070007000700070007000F000 +E000F000E000F000E000F000E000F001C001E001C001E001C001E001C001C0038003C003 +800380038007800380070007000E0007001C0007003800070070000E01C000FFFF00001C +1C7D9B1F>I<01FFFFE0003C00E000380060003800400038004000380040007000400070 +0040007020400070200000E0400000E0400000E0C00000FFC00001C0800001C0800001C0 +800001C0800003810100038001000380020003800200070004000700040007000C000700 +18000E007800FFFFF0001B1C7D9B1C>I<01FFFFC0003C01C0003800C000380080003800 +80003800800070008000700080007020800070200000E0400000E0400000E0C00000FFC0 +0001C0800001C0800001C0800001C0800003810000038000000380000003800000070000 +000700000007000000070000000F000000FFF000001A1C7D9B1B>I<0003F020001E0C60 +003002E000E003C001C001C0038001C0070000C00E0000801E0000801C0000803C000080 +3C000000780000007800000078000000F0000000F0000000F001FFC0F0001E00F0001C00 +F0001C00F0001C00F0001C00700038007000380038003800180078000C00900007071000 +01F800001B1E7A9C20>I<01FFCFFE003C01E0003801C0003801C0003801C0003801C000 +70038000700380007003800070038000E0070000E0070000E0070000FFFF0001C00E0001 +C00E0001C00E0001C00E0003801C0003801C0003801C0003801C00070038000700380007 +003800070038000F007800FFE7FF001F1C7D9B1F>I<01FFC0003C000038000038000038 +0000380000700000700000700000700000E00000E00000E00000E00001C00001C00001C0 +0001C0000380000380000380000380000700000700000700000700000F0000FFE000121C +7E9B10>I<007FF0000780000700000700000700000700000E00000E00000E00000E0000 +1C00001C00001C00001C0000380000380000380000380000700000700000700000700060 +E000E0E000C0C00081C0008380004700003C0000141D7B9B16>I<01FFC0FF003C003C00 +3800300038004000380080003801000070020000700400007010000070200000E0400000 +E0C00000E1C00000E5C00001C8E00001D0E00001E0E00001C07000038070000380700003 +803800038038000700380007001C0007001C0007001C000F001E00FFE0FF80201C7D9B20 +>I<01FFE0003C0000380000380000380000380000700000700000700000700000E00000 +E00000E00000E00001C00001C00001C00001C00003800803800803800803801007001007 +00300700600700E00E03C0FFFFC0151C7D9B1A>I<01FE0007F8003E000780002E000F00 +002E001700002E001700002E002700004E002E00004E004E00004E004E00004E008E0000 +8E011C00008E011C00008E021C00008E021C000107043800010704380001070838000107 +1038000207107000020720700002072070000207407000040740E000040780E000040700 +E0000C0700E0001C0601E000FF861FFC00251C7D9B25>I<01FC03FE001C0070003C0060 +002E0040002E0040002E0040004700800047008000470080004380800083810000838100 +008181000081C1000101C2000101C2000100E2000100E2000200E4000200740002007400 +020074000400380004003800040038000C0018001C001000FF8010001F1C7D9B1F>I<01 +FFFC00003C070000380380003801C0003801C0003801C0007003C0007003C0007003C000 +70038000E0078000E0070000E00E0000E0380001FFE00001C0000001C0000001C0000003 +800000038000000380000003800000070000000700000007000000070000000F000000FF +E000001A1C7D9B1C>80 D<01FFF800003C0E000038070000380380003803800038038000 +700780007007800070078000700F0000E00E0000E01C0000E0700000FFC00001C0C00001 +C0600001C0700001C07000038070000380700003807000038070000700F0000700F04007 +00F0400700F0800F007880FFE0790000001E001A1D7D9B1E>82 D<000F8400304C00403C +00801801001803001803001806001006001006000007000007000003E00003FC0001FF00 +007F800007C00001C00001C00000C00000C02000C02000C0600180600180600300600200 +F00400CC180083E000161E7D9C17>I<1FFFFFC01C0701C0300E00C0200E0080600E0080 +400E0080401C0080801C0080801C0080001C000000380000003800000038000000380000 +0070000000700000007000000070000000E0000000E0000000E0000000E0000001C00000 +01C0000001C0000001C0000003C000007FFE00001A1C799B1E>I<7FF0FF800F001C000E +0018000E0010000E0010000E0010001C0020001C0020001C0020001C0020003800400038 +004000380040003800400070008000700080007000800070008000E0010000E0010000E0 +010000E0020000E0020000E0040000E00400006008000030300000104000000F80000019 +1D779B1F>I<FF803FC01C000F001C0004001C0008001C0008001C0010001C0010001C00 +20001C0040001C0040001E0080000E0080000E0100000E0200000E0200000E0400000E04 +00000E0800000E1800000E1000000E200000072000000740000007C00000078000000700 +00000700000006000000060000001A1D779B1F>I<FF83FF0FF03C007001C03800700180 +3800F001003800F0020038017002003801700400380270040038027008001C047008001C +047010001C087010001C087020001C107020001C107040001C207040001C207080001C40 +7180001C407100001C807200001D807200001D007400001E007400001E007800001C0078 +00001C00700000180070000018006000001000600000241D779B29>I<FFC00FE00E0007 +800E0006000F000400070008000700180007801000038020000380400003C0800001C180 +0001C1000001E2000000E4000000EC000000F80000007000000070000000E0000000E000 +0000E0000000E0000001C0000001C0000001C0000001C00000038000003FF800001B1C78 +9B1F>89 D<00FFFF8000F0070001C00E0001801E0001001C0001003800020070000200E0 +000201C0000001C0000003800000070000000E0000001C0000001C000000380000007000 +0000E0080001C0100001C0100003801000070020000E0020001C0060003C00C0003801C0 +0070078000FFFF8000191C7D9B19>I<020006001B0031006080C0800906759C15>94 +D<03CC063C0C3C181C3838303870387038E070E070E070E070E0E2C0E2C0E261E462643C +380F127B9115>97 D<3F00070007000E000E000E000E001C001C001C001C0039C03E6038 +3038307038703870387038E070E070E070E060E0E0C0C0C1C0618063003C000D1D7B9C13 +>I<01F007080C08181C3838300070007000E000E000E000E000E000E008E010602030C0 +1F000E127B9113>I<001F80000380000380000700000700000700000700000E00000E00 +000E00000E0003DC00063C000C3C00181C00383800303800703800703800E07000E07000 +E07000E07000E0E200C0E200C0E20061E4006264003C3800111D7B9C15>I<01E007100C +1018083810701070607F80E000E000E000E000E000E0086010602030C01F000D127B9113 +>I<0003C0000670000C70001C60001C00001C0000380000380000380000380000380003 +FF8000700000700000700000700000700000E00000E00000E00000E00000E00001C00001 +C00001C00001C00001C000038000038000038000030000030000070000C60000E60000CC +00007800001425819C0D>I<00F3018F030F06070E0E0C0E1C0E1C0E381C381C381C381C +383830383038187818F00F700070007000E000E0C0C0E1C0C3007E00101A7D9113>I<0F +C00001C00001C0000380000380000380000380000700000700000700000700000E78000E +8C000F0E000E0E001C0E001C0E001C0E001C0E00381C00381C00381C0038380070388070 +3880707080707100E03200601C00111D7D9C15>I<018003800100000000000000000000 +00000000001C002600470047008E008E000E001C001C001C003800380071007100710072 +0072003C00091C7C9B0D>I<0FC00001C00001C000038000038000038000038000070000 +0700000700000700000E0F000E11000E23800E43801C83001C80001D00001E00003F8000 +39C00038E00038E00070E20070E20070E20070E400E06400603800111D7D9C13>107 +D<1F800380038007000700070007000E000E000E000E001C001C001C001C003800380038 +0038007000700070007000E400E400E400E40068003800091D7C9C0B>I<3C1E07802663 +18C04683A0E04703C0E08E0380E08E0380E00E0380E00E0380E01C0701C01C0701C01C07 +01C01C070380380E0388380E0388380E0708380E0710701C0320300C01C01D127C9122> +I<3C3C002646004687004707008E07008E07000E07000E07001C0E001C0E001C0E001C1C +00381C40381C40383840383880701900300E0012127C9117>I<01E007180C0C180C380C +300E700E700EE01CE01CE01CE018E038E030E06060C031801E000F127B9115>I<078700 +04D98008E0C008E0C011C0E011C0E001C0E001C0E00381C00381C00381C0038180070380 +0703000707000706000E8C000E70000E00000E00001C00001C00001C00001C00003C0000 +FF8000131A7F9115>I<03C4062C0C3C181C3838303870387038E070E070E070E070E0E0 +C0E0C0E061E063C03DC001C001C0038003800380038007803FF00E1A7B9113>I<3C3C26 +C2468747078E068E000E000E001C001C001C001C0038003800380038007000300010127C +9112>I<01F006080C080C1C18181C001F001FC00FF007F0007800386030E030C0308060 +60C01F000E127D9111>I<00C001C001C001C00380038003800380FFE00700070007000E +000E000E000E001C001C001C001C00384038403840388019000E000B1A7D990E>I<1E03 +00270700470700470700870E00870E000E0E000E0E001C1C001C1C001C1C001C1C003838 +803838801838801839001C5900078E0011127C9116>I<1E06270E470E4706870287020E +020E021C041C041C041C0818083808181018200C4007800F127C9113>I<1E0183270387 +4703874703838707018707010E07010E07011C0E021C0E021C0E021C0E04180C04181C04 +181C081C1C100C263007C3C018127C911C>I<070E0019910010E38020E38041C30041C0 +0001C00001C000038000038000038000038000070200670200E70400CB04008B080070F0 +0011127D9113>I<1E03270747074707870E870E0E0E0E0E1C1C1C1C1C1C1C1C38383838 +183818381C7007F00070007000E0E0C0E1C0818047003C00101A7C9114>I<038207C20F +EC08381008001000200040008001000200040008081008383067F043E081C00F127D9111 +>I E /Fo 18 90 df<FFFCFFFCFFFCFFFC0E047F8C13>45 D<0000700000000070000000 +00F800000000F800000000F800000001FC00000001FC00000003FE00000003FE00000003 +FE00000006FF000000067F0000000E7F8000000C3F8000000C3F800000183FC00000181F +C00000381FE00000300FE00000300FE00000600FF000006007F00000E007F80000FFFFF8 +0000FFFFF800018001FC00018001FC00038001FE00030000FE00030000FE000600007F00 +0600007F00FFE00FFFF8FFE00FFFF825227EA12A>65 D<0003FE0080001FFF818000FF01 +E38001F8003F8003E0001F8007C0000F800F800007801F800007803F000003803F000003 +807F000001807E000001807E00000180FE00000000FE00000000FE00000000FE00000000 +FE00000000FE00000000FE00000000FE000000007E000000007E000001807F000001803F +000001803F000003801F800003000F8000030007C000060003F0000C0001F800380000FF +00F000001FFFC0000003FE000021227DA128>67 D<FFFFFFFCFFFFFFFC07F000FC07F000 +3C07F0001C07F0000C07F0000E07F0000E07F0000607F0180607F0180607F0180607F018 +0007F0380007F0780007FFF80007FFF80007F0780007F0380007F0180007F0180007F018 +0307F0180307F0000307F0000607F0000607F0000607F0000E07F0000E07F0001E07F000 +3E07F001FCFFFFFFFCFFFFFFFC20227EA125>69 D<FFFFFFF8FFFFFFF807F001F807F000 +7807F0003807F0001807F0001C07F0001C07F0000C07F0000C07F0180C07F0180C07F018 +0007F0180007F0380007F0780007FFF80007FFF80007F0780007F0380007F0180007F018 +0007F0180007F0180007F0000007F0000007F0000007F0000007F0000007F0000007F000 +0007F00000FFFFE000FFFFE0001E227EA123>I<0003FE0040001FFFC0C0007F00F1C001 +F8003FC003F0000FC007C00007C00FC00003C01F800003C03F000001C03F000001C07F00 +0000C07E000000C07E000000C0FE00000000FE00000000FE00000000FE00000000FE0000 +0000FE00000000FE00000000FE000FFFFC7E000FFFFC7F00001FC07F00001FC03F00001F +C03F00001FC01F80001FC00FC0001FC007E0001FC003F0001FC001FC003FC0007F80E7C0 +001FFFC3C00003FF00C026227DA12C>I<FFFF83FFFEFFFF83FFFE07F0001FC007F0001F +C007F0001FC007F0001FC007F0001FC007F0001FC007F0001FC007F0001FC007F0001FC0 +07F0001FC007F0001FC007F0001FC007F0001FC007FFFFFFC007FFFFFFC007F0001FC007 +F0001FC007F0001FC007F0001FC007F0001FC007F0001FC007F0001FC007F0001FC007F0 +001FC007F0001FC007F0001FC007F0001FC007F0001FC007F0001FC007F0001FC0FFFF83 +FFFEFFFF83FFFE27227EA12C>I<FFFFE0FFFFE003F80003F80003F80003F80003F80003 +F80003F80003F80003F80003F80003F80003F80003F80003F80003F80003F80003F80003 +F80003F80003F80003F80003F80003F80003F80003F80003F80003F80003F80003F80003 +F800FFFFE0FFFFE013227FA115>I<FFFFE000FFFFE00007F0000007F0000007F0000007 +F0000007F0000007F0000007F0000007F0000007F0000007F0000007F0000007F0000007 +F0000007F0000007F0000007F0000007F0000007F0000007F0000007F0001807F0001807 +F0001807F0001807F0003807F0003807F0007007F0007007F000F007F001F007F007F0FF +FFFFF0FFFFFFF01D227EA122>76 D<FFF000000FFFFFF800001FFF07F800001FE006FC00 +0037E006FC000037E006FC000037E0067E000067E0067E000067E0063F0000C7E0063F00 +00C7E0061F800187E0061F800187E0060FC00307E0060FC00307E0060FC00307E00607E0 +0607E00607E00607E00603F00C07E00603F00C07E00601F81807E00601F81807E00601F8 +1807E00600FC3007E00600FC3007E006007E6007E006007E6007E006003FC007E006003F +C007E006001F8007E006001F8007E006001F8007E006000F0007E0FFF00F00FFFFFFF006 +00FFFF30227EA135>I<FFF8001FFEFFFC001FFE07FC0000C007FE0000C006FF0000C006 +7F8000C0063FC000C0061FE000C0060FE000C0060FF000C00607F800C00603FC00C00601 +FE00C00600FE00C00600FF00C006007F80C006003FC0C006001FE0C006000FF0C0060007 +F0C0060007F8C0060003FCC0060001FEC0060000FFC00600007FC00600007FC00600003F +C00600001FC00600000FC006000007C006000003C006000003C0FFF00001C0FFF00000C0 +27227EA12C>I<0007FC0000003FFF800000FC07E00003F001F80007E000FC000FC0007E +001F80003F001F80003F003F00001F803F00001F807F00001FC07E00000FC07E00000FC0 +FE00000FE0FE00000FE0FE00000FE0FE00000FE0FE00000FE0FE00000FE0FE00000FE0FE +00000FE0FE00000FE07E00000FC07F00001FC07F00001FC03F00001F803F80003F801F80 +003F000FC0007E0007E000FC0003F001F80000FC07E000003FFF80000007FC000023227D +A12A>I<FFFFFF00FFFFFFE007F007F007F001FC07F000FC07F0007E07F0007E07F0007F +07F0007F07F0007F07F0007F07F0007F07F0007E07F0007E07F000FC07F001FC07F007F0 +07FFFFE007FFFF0007F0000007F0000007F0000007F0000007F0000007F0000007F00000 +07F0000007F0000007F0000007F0000007F0000007F00000FFFF8000FFFF800020227EA1 +26>I<FFFFFE0000FFFFFFC00007F007F00007F001F80007F000FC0007F0007E0007F000 +7F0007F0007F0007F0007F0007F0007F0007F0007F0007F0007F0007F0007E0007F000FC +0007F001F80007F007F00007FFFFC00007FFFF800007F00FE00007F007F00007F003F800 +07F001FC0007F001FC0007F001FC0007F001FC0007F001FC0007F001FC0007F001FC0007 +F001FC0007F001FC0607F000FE0607F000FF0CFFFF803FF8FFFF800FF027227EA12A>82 +D<01FC0407FF8C1F03FC3C007C7C003C78001C78001CF8000CF8000CFC000CFC0000FF00 +00FFE0007FFF007FFFC03FFFF01FFFF80FFFFC03FFFE003FFE0003FF00007F00003F0000 +3FC0001FC0001FC0001FE0001EE0001EF0003CFC003CFF00F8C7FFE080FF8018227DA11F +>I<7FFFFFFF807FFFFFFF807E03F80F807803F807807003F803806003F80180E003F801 +C0E003F801C0C003F800C0C003F800C0C003F800C0C003F800C00003F800000003F80000 +0003F800000003F800000003F800000003F800000003F800000003F800000003F8000000 +03F800000003F800000003F800000003F800000003F800000003F800000003F800000003 +F800000003F800000003F800000003F8000003FFFFF80003FFFFF80022227EA127>I<7F +FFC1FFF07FFFC1FFF003FC000C0001FE00180000FE00380000FF007000007F806000003F +80C000003FC1C000001FE38000000FE30000000FF700000007FE00000003FC00000003FC +00000001FE00000000FE00000000FF00000000FF80000001FFC0000001BFC00000031FE0 +0000070FF000000E0FF000000C07F800001803FC00003803FC00003001FE00006000FF00 +00E000FF0001C0007F800180003FC0FFFC03FFFEFFFC03FFFE27227FA12A>88 +D<FFFF800FFEFFFF800FFE07F80000C007F80001C003FC00018001FE00030001FE000700 +00FF00060000FF000C00007F801C00003FC01800003FC03000001FE07000000FF0600000 +0FF0E0000007F8C0000003FD80000003FF80000001FF00000001FE00000000FE00000000 +FE00000000FE00000000FE00000000FE00000000FE00000000FE00000000FE00000000FE +00000000FE00000000FE00000000FE0000001FFFF000001FFFF00027227FA12A>I +E /Fp 83 128 df<007E1F0001C1B1800303E3C00703C3C00E03C1800E01C0000E01C000 +0E01C0000E01C0000E01C0000E01C000FFFFFC000E01C0000E01C0000E01C0000E01C000 +0E01C0000E01C0000E01C0000E01C0000E01C0000E01C0000E01C0000E01C0000E01C000 +0E01C0000E01C0000E01C0007F87FC001A1D809C18>11 D<007E0001C1800301800703C0 +0E03C00E01800E00000E00000E00000E00000E0000FFFFC00E01C00E01C00E01C00E01C0 +0E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C0 +7F87F8151D809C17>I<007FC001C1C00303C00703C00E01C00E01C00E01C00E01C00E01 +C00E01C00E01C0FFFFC00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01 +C00E01C00E01C00E01C00E01C00E01C00E01C00E01C07FCFF8151D809C17>I<003F07E0 +0001C09C18000380F018000701F03C000E01E03C000E00E018000E00E000000E00E00000 +0E00E000000E00E000000E00E00000FFFFFFFC000E00E01C000E00E01C000E00E01C000E +00E01C000E00E01C000E00E01C000E00E01C000E00E01C000E00E01C000E00E01C000E00 +E01C000E00E01C000E00E01C000E00E01C000E00E01C000E00E01C007FC7FCFF80211D80 +9C23>I<E0E0F070380C0406077B9C15>18 D<1C1C3C3870C0800607779C15>I<6060F0F0 +F8F86868080808080808101010102020404080800D0C7F9C15>34 +D<60F0F8680808081010204080050C7C9C0C>39 D<004000800100020006000C000C0018 +001800300030007000600060006000E000E000E000E000E000E000E000E000E000E000E0 +00E000600060006000700030003000180018000C000C00060002000100008000400A2A7D +9E10>I<800040002000100018000C000C000600060003000300038001800180018001C0 +01C001C001C001C001C001C001C001C001C001C001C00180018001800380030003000600 +06000C000C00180010002000400080000A2A7E9E10>I<01800180018001804182F18F39 +9C0FF003C003C00FF0399CF18F4182018001800180018010127E9E15>I<60F0F0701010 +101020204080040C7C830C>44 D<FFE0FFE00B0280890E>I<60F0F06004047C830C>I<00 +010003000600060006000C000C000C0018001800180030003000300060006000C000C000 +C0018001800180030003000300060006000C000C000C0018001800180030003000300060 +0060006000C000C00010297E9E15>I<03C00C301818300C300C700E60066006E007E007 +E007E007E007E007E007E007E007E007E007E007E00760066006700E300C300C18180C30 +07E0101D7E9B15>I<030007003F00C70007000700070007000700070007000700070007 +000700070007000700070007000700070007000700070007000F80FFF80D1C7C9B15>I< +07C01830201C400C400EF00FF80FF807F8077007000F000E000E001C001C003800700060 +00C00180030006010C01180110023FFE7FFEFFFE101C7E9B15>I<07E01830201C201C78 +1E780E781E381E001C001C00180030006007E00030001C001C000E000F000F700FF80FF8 +0FF80FF00E401C201C183007E0101D7E9B15>I<000C00000C00001C00003C00003C0000 +5C0000DC00009C00011C00031C00021C00041C000C1C00081C00101C00301C00201C0040 +1C00C01C00FFFFC0001C00001C00001C00001C00001C00001C00001C0001FFC0121C7F9B +15>I<300C3FF83FF03FC020002000200020002000200023E024302818301C200E000E00 +0F000F000F600FF00FF00FF00F800E401E401C2038187007C0101D7E9B15>I<00F0030C +06040C0E181E301E300C700070006000E3E0E430E818F00CF00EE006E007E007E007E007 +E007600760077006300E300C18180C3003E0101D7E9B15>I<4000007FFF807FFF007FFF +0040020080040080040080080000100000100000200000600000400000C00000C00001C0 +000180000180000380000380000380000380000780000780000780000780000780000780 +00030000111D7E9B15>I<03E00C301008200C20066006600660067006780C3E083FB01F +E007F007F818FC307E601E600FC007C003C003C003C00360026004300C1C1007E0101D7E +9B15>I<03C00C301818300C700C600EE006E006E007E007E007E007E0076007700F300F +18170C2707C700060006000E300C780C78187010203030C00F80101D7E9B15>I<60F0F0 +600000000000000000000060F0F06004127C910C>I<60F0F06000000000000000000000 +60F0F0701010101020204080041A7C910C>I<7FFFFFC0FFFFFFE0000000000000000000 +0000000000000000000000000000000000000000000000FFFFFFE07FFFFFC01B0C7E8F20 +>61 D<0FE03038401CE00EF00EF00EF00E000C001C0030006000C0008001800100010001 +000100010001000000000000000000000003000780078003000F1D7E9C14>63 +D<000600000006000000060000000F0000000F0000000F00000017800000178000001780 +000023C0000023C0000023C0000041E0000041E0000041E0000080F0000080F0000180F8 +000100780001FFF80003007C0002003C0002003C0006003E0004001E0004001E000C001F +001E001F00FF80FFF01C1D7F9C1F>65 D<FFFFC00F00F00F00380F003C0F001C0F001E0F +001E0F001E0F001E0F001C0F003C0F00780F01F00FFFE00F00780F003C0F001E0F000E0F +000F0F000F0F000F0F000F0F000F0F001E0F001E0F003C0F0078FFFFE0181C7E9B1D>I< +001F808000E0618001801980070007800E0003801C0003801C0001803800018078000080 +7800008070000080F0000000F0000000F0000000F0000000F0000000F0000000F0000000 +F0000000700000807800008078000080380000801C0001001C0001000E00020007000400 +0180080000E03000001FC000191E7E9C1E>I<FFFFC0000F00F0000F003C000F000E000F +0007000F0007000F0003800F0003C00F0001C00F0001C00F0001E00F0001E00F0001E00F +0001E00F0001E00F0001E00F0001E00F0001E00F0001C00F0001C00F0003C00F0003800F +0007800F0007000F000E000F001C000F007000FFFFC0001B1C7E9B20>I<FFFFFC0F003C +0F000C0F00040F00040F00060F00020F00020F02020F02000F02000F02000F06000FFE00 +0F06000F02000F02000F02000F02010F00010F00020F00020F00020F00060F00060F000C +0F003CFFFFFC181C7E9B1C>I<FFFFF80F00780F00180F00080F00080F000C0F00040F00 +040F02040F02000F02000F02000F06000FFE000F06000F02000F02000F02000F02000F00 +000F00000F00000F00000F00000F00000F00000F8000FFF800161C7E9B1B>I<001F8080 +00E0618001801980070007800E0003801C0003801C000180380001807800008078000080 +70000080F0000000F0000000F0000000F0000000F0000000F0000000F000FFF0F0000F80 +700007807800078078000780380007801C0007801C0007800E00078007000B8001801180 +00E06080001F80001C1E7E9C21>I<FFF3FFC00F003C000F003C000F003C000F003C000F +003C000F003C000F003C000F003C000F003C000F003C000F003C000F003C000FFFFC000F +003C000F003C000F003C000F003C000F003C000F003C000F003C000F003C000F003C000F +003C000F003C000F003C000F003C00FFF3FFC01A1C7E9B1F>I<FFF00F000F000F000F00 +0F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F00 +0F000F000F000F00FFF00C1C7F9B0F>I<1FFF00F8007800780078007800780078007800 +78007800780078007800780078007800780078007800787078F878F878F878F0F040E021 +C01F00101D7F9B15>I<FFF03FE00F000F000F000C000F0008000F0010000F0020000F00 +40000F0080000F0100000F0200000F0400000F0E00000F1F00000F2F00000F2780000F47 +80000F83C0000F01E0000F01E0000F00F0000F00F8000F0078000F003C000F003C000F00 +1E000F001F000F001F80FFF07FF01C1C7E9B20>I<FFF8000F80000F00000F00000F0000 +0F00000F00000F00000F00000F00000F00000F00000F00000F00000F00000F00000F0000 +0F00000F00080F00080F00080F00180F00180F00100F00300F00700F01F0FFFFF0151C7E +9B1A>I<FF8000FF800F8000F8000F8000F8000BC00178000BC00178000BC001780009E0 +02780009E002780008F004780008F004780008F004780008780878000878087800087808 +7800083C107800083C107800083C107800081E207800081E207800081E207800080F4078 +00080F40780008078078000807807800080780780008030078001C03007800FF8307FF80 +211C7E9B26>I<FF007FC00F800E000F8004000BC0040009E0040009E0040008F0040008 +F8040008780400083C0400083C0400081E0400080F0400080F0400080784000807C40008 +03C4000801E4000801E4000800F40008007C0008007C0008003C0008003C0008001C0008 +000C001C000C00FF8004001A1C7E9B1F>I<003F800000E0E0000380380007001C000E00 +0E001C0007003C00078038000380780003C0780003C0700001C0F00001E0F00001E0F000 +01E0F00001E0F00001E0F00001E0F00001E0F00001E0700001C0780003C0780003C03800 +03803C0007801C0007000E000E0007001C000380380000E0E000003F80001B1E7E9C20> +I<FFFF800F00E00F00780F003C0F001C0F001E0F001E0F001E0F001E0F001E0F001C0F00 +3C0F00780F00E00FFF800F00000F00000F00000F00000F00000F00000F00000F00000F00 +000F00000F00000F0000FFF000171C7E9B1C>I<003F800000E0E0000380380007001C00 +0E000E001C0007003C00078038000380780003C0780003C0700001C0F00001E0F00001E0 +F00001E0F00001E0F00001E0F00001E0F00001E0F00001E0700001C0780003C0780003C0 +380003803C0E07801C1107000E208E0007205C0003A0780000F0E020003FE02000006020 +00003060000038E000003FC000003FC000001F8000000F001B257E9C20>I<FFFF00000F +01E0000F0078000F003C000F001C000F001E000F001E000F001E000F001E000F001C000F +003C000F0078000F01E0000FFF00000F03C0000F00E0000F00F0000F0078000F0078000F +0078000F0078000F0078000F0078000F0078100F0078100F0038100F003C20FFF01C2000 +0007C01C1D7E9B1F>I<07E0801C1980300580700380600180E00180E00080E00080E000 +80F00000F800007C00007FC0003FF8001FFE0007FF0000FF80000F800007C00003C00001 +C08001C08001C08001C0C00180C00180E00300D00200CC0C0083F800121E7E9C17>I<7F +FFFFC0700F01C0600F00C0400F0040400F0040C00F0020800F0020800F0020800F002000 +0F0000000F0000000F0000000F0000000F0000000F0000000F0000000F0000000F000000 +0F0000000F0000000F0000000F0000000F0000000F0000000F0000000F0000001F800003 +FFFC001B1C7F9B1E>I<FFF07FC00F000E000F0004000F0004000F0004000F0004000F00 +04000F0004000F0004000F0004000F0004000F0004000F0004000F0004000F0004000F00 +04000F0004000F0004000F0004000F0004000F0004000F00040007000800078008000380 +10000180100000C020000070C000001F00001A1D7E9B1F>I<FFE00FF01F0003C00F0001 +800F0001000F800300078002000780020003C0040003C0040003C0040001E0080001E008 +0001F0080000F0100000F0100000F830000078200000782000003C4000003C4000003C40 +00001E8000001E8000001F8000000F0000000F00000006000000060000000600001C1D7F +9B1F>I<FFE0FFE0FF1F001F003C1E001E00180F001F00100F001F00100F001F00100780 +1F00200780278020078027802003C027804003C043C04003C043C04003E043C04001E081 +E08001E081E08001E081E08000F100F10000F100F10000F100F100007900FA00007A007A +00007A007A00003E007C00003C003C00003C003C00003C003C0000180018000018001800 +0018001800281D7F9B2B>I<FFF007FC0F8001E00780008007C0018003C0010003E00200 +01F0020000F0040000F8040000780800007C1800003C1000001E2000001F2000000F4000 +000FC0000007800000078000000780000007800000078000000780000007800000078000 +000780000007800000078000007FF8001E1C809B1F>89 D<7FFFF07C01F07001E06003C0 +6003C0400780400F80400F00401E00001E00003C00007C0000780000F00000F00001E000 +03E00003C0100780100780100F00101F00301E00203C00203C00607800E0F803E0FFFFE0 +141C7E9B19>I<08081010202040404040808080808080B0B0F8F8787830300D0C7A9C15> +92 D<1FC000307000783800781C00301C00001C00001C0001FC000F1C00381C00701C00 +601C00E01C40E01C40E01C40603C40304E801F870012127E9115>97 +D<FC00001C00001C00001C00001C00001C00001C00001C00001C00001C00001C00001C7C +001D86001E03001C01801C01C01C00C01C00E01C00E01C00E01C00E01C00E01C00E01C00 +C01C01C01C01801E030019060010F800131D7F9C17>I<07E00C301878307870306000E0 +00E000E000E000E000E00060007004300418080C3007C00E127E9112>I<003F00000700 +00070000070000070000070000070000070000070000070000070003E7000C1700180F00 +300700700700600700E00700E00700E00700E00700E00700E00700600700700700300700 +180F000C370007C7E0131D7E9C17>I<03E00C301818300C700E6006E006FFFEE000E000 +E000E00060007002300218040C1803E00F127F9112>I<00F8018C071E061E0E0C0E000E +000E000E000E000E00FFE00E000E000E000E000E000E000E000E000E000E000E000E000E +000E000E000E007FE00F1D809C0D>I<00038003C4C00C38C01C3880181800381C00381C +00381C00381C001818001C38000C300013C0001000003000001800001FF8001FFF001FFF +803003806001C0C000C0C000C0C000C06001803003001C0E0007F800121C7F9215>I<FC +00001C00001C00001C00001C00001C00001C00001C00001C00001C00001C00001C7C001C +87001D03001E03801C03801C03801C03801C03801C03801C03801C03801C03801C03801C +03801C03801C03801C0380FF9FF0141D7F9C17>I<18003C003C00180000000000000000 +00000000000000FC001C001C001C001C001C001C001C001C001C001C001C001C001C001C +001C001C00FF80091D7F9C0C>I<00C001E001E000C00000000000000000000000000000 +0FE000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E0 +00E000E000E060E0F0C0F1C061803E000B25839C0D>I<FC00001C00001C00001C00001C +00001C00001C00001C00001C00001C00001C00001C3FC01C0F001C0C001C08001C10001C +20001C40001CE0001DE0001E70001C78001C38001C3C001C1C001C0E001C0F001C0F80FF +9FE0131D7F9C16>I<FC001C001C001C001C001C001C001C001C001C001C001C001C001C +001C001C001C001C001C001C001C001C001C001C001C001C001C001C00FF80091D7F9C0C +>I<FC7E07E0001C838838001D019018001E01E01C001C01C01C001C01C01C001C01C01C +001C01C01C001C01C01C001C01C01C001C01C01C001C01C01C001C01C01C001C01C01C00 +1C01C01C001C01C01C001C01C01C00FF8FF8FF8021127F9124>I<FC7C001C87001D0300 +1E03801C03801C03801C03801C03801C03801C03801C03801C03801C03801C03801C0380 +1C03801C0380FF9FF014127F9117>I<03F0000E1C00180600300300700380600180E001 +C0E001C0E001C0E001C0E001C0E001C06001807003803003001806000E1C0003F0001212 +7F9115>I<FC7C001D86001E03001C01801C01C01C00C01C00E01C00E01C00E01C00E01C +00E01C00E01C01C01C01C01C01801E03001D06001CF8001C00001C00001C00001C00001C +00001C00001C0000FF8000131A7F9117>I<03C1000C3300180B00300F00700700700700 +E00700E00700E00700E00700E00700E00700600700700700300F00180F000C370007C700 +000700000700000700000700000700000700000700003FE0131A7E9116>I<FCE01D301E +781E781C301C001C001C001C001C001C001C001C001C001C001C001C00FFC00D127F9110 +>I<1F9030704030C010C010E010F8007F803FE00FF000F880388018C018C018E010D060 +8FC00D127F9110>I<04000400040004000C000C001C003C00FFE01C001C001C001C001C +001C001C001C001C001C101C101C101C101C100C100E2003C00C1A7F9910>I<FC1F801C +03801C03801C03801C03801C03801C03801C03801C03801C03801C03801C03801C03801C +03801C07800C07800E1B8003E3F014127F9117>I<FF07E03C03801C01001C01000E0200 +0E020007040007040007040003880003880003D80001D00001D00000E00000E00000E000 +00400013127F9116>I<FF3FCFE03C0F03801C0701801C0701001C0B01000E0B82000E0B +82000E1182000711C4000711C4000720C40003A0E80003A0E80003C0680001C0700001C0 +700001803000008020001B127F911E>I<7F8FF00F03800F030007020003840001C80001 +D80000F00000700000780000F800009C00010E00020E000607000403801E07C0FF0FF815 +12809116>I<FF07E03C03801C01001C01000E02000E0200070400070400070400038800 +03880003D80001D00001D00000E00000E00000E000004000004000008000008000F08000 +F10000F300006600003C0000131A7F9116>I<7FFC70386038407040F040E041C003C003 +8007000F040E041C043C0C380870087038FFF80E127F9112>I<FFFFF01401808B15>I<60 +60F0F0F0F060600C047C9C15>127 D E end +%%EndProlog +%%BeginSetup +%%Feature: *Resolution 300dpi +TeXDict begin + +%%EndSetup +%%Page: 1 1 +1 0 bop 1929 50 a Fp(1)52 195 y Fo(A)19 b(T)-5 b(AX)n(ONOMY)20 +b(OF)f(P)-5 b(ARALLEL)19 b(GAME-TREE)f(SEAR)n(CH)h(ALGORITHMS)766 +274 y Fn(Mark)c(G.)g(Br)n(o)n(ckington)1165 259 y Fm(1)799 +353 y Fp(Edmon)o(ton,)d(Alb)q(erta)0 496 y Fl(1)48 b(INTR)o(ODUCTION)0 +617 y Fp(In)14 b(the)h(last)f(t)o(w)o(en)o(t)o(y)h(y)o(ears,)f(a)g(n)o +(um)o(b)q(er)g(of)g(articles)g(and)h(theses)h(ha)o(v)o(e)e(b)q(een)h +(written)g(that)f(con)o(tain)g(inno)o(v)n(ativ)o(e)f(parallel)0 +666 y(game-tree)i(searc)o(h)i(algorithms.)k(The)c(authors)f(of)f(the)h +(parallel)f(algorithms)e(ha)o(v)o(e)j(sho)o(wn)f(ho)o(w)h(their)g(w)o +(ork)f(is)h(unique)0 716 y(and)11 b(in)o(teresting.)18 +b(In)11 b(some)f(cases,)j(this)e(has)h(b)q(een)g(sho)o(wn)f(b)o(y)g +(classifying)g(other)g(algorithms)e(b)o(y)i(listing)f(implemen)o +(tation)0 766 y(details)h(\(Bal)g(and)g(v)n(an)f(Renesse,)j(1986;)d +(Ciancarini,)g(1994\).)17 b(T)m(o)10 b(the)i(author's)f(kno)o(wledge,)g +(no)f(attempt)h(has)g(b)q(een)h(made)0 816 y(to)j(classify)g(the)h +(algorithms)d(based)j(solely)e(on)h(their)h(algorithmic)d(prop)q +(erties.)23 b(A)15 b(taxonom)o(y)e(w)o(ould)i(mak)o(e)f(it)g(easy)i(to) +0 866 y(ascertain)i(what)e(has)h(and)g(has)g(not)g(b)q(een)g +(accomplished)f(in)h(parallel)e(game-tree)i(searc)o(h.)28 +b(The)17 b(presen)o(tation)h(of)e(this)0 916 y(t)o(yp)q(e)e(of)g +(taxonom)o(y)d(is)j(the)g(main)e(con)o(tribution)i(of)f(this)h(pap)q +(er.)0 994 y(The)19 b(taxonom)o(y)c(will)i(b)q(e)i(brok)o(en)f(in)o(to) +g(t)o(w)o(o)f(ma)r(jor)g(categories:)27 b Fk(\013\014)r +Fp(-based)19 b(algorithms,)e(and)h(algorithms)d(based)k(on)0 +1044 y(other)c(searc)o(h)h(paradigms)d(\()p Fk(S)r(S)r(S)r +Fj(\003)p Fp(,)j Fk(E)r(R)p Fp(,)e(and)h(theoretical)g(metho)q(ds\).)20 +b(F)m(or)14 b(the)h(former)f(category)m(,)g(a)g(table)h(is)f(giv)o(en)g +(to)0 1094 y(isolate)i(the)h(fundamen)o(tal)e(di\013erences)j(b)q(et)o +(w)o(een)g(the)g(algorithms.)23 b(The)17 b(table)g(is)f(divided)g(in)o +(to)g(t)o(w)o(o)g(parts:)24 b(the)17 b(\014rst)0 1144 +y(part)g(con)o(tains)g(c)o(haracteristics)i(of)e(the)h +Fk(\013\014)r Fp(-based)g(algorithms,)d(while)i(the)g(second)i(part)e +(con)o(tains)g(details)g(ab)q(out)g(an)0 1194 y(implemen)o(tatio)o(n)9 +b(of)i(eac)o(h)i(algorithm.)h(Section)f(2)e(describ)q(es)j(the)f(v)n +(arious)e(columns)f(giv)o(en)i(in)f(the)h(table,)g(and)g(then)g(giv)o +(es)0 1243 y(some)h(brief)h(details)g(on)f(the)i(algorithms)c(con)o +(tained)j(therein.)0 1322 y(The)j(algorithms)e(based)i(on)g(other)g +(searc)o(h)h(paradigms)d(are)j(giv)o(en)e(in)g(Section)h(3.)27 +b(Due)17 b(to)g(the)g(v)n(aried)g(nature)g(of)f(the)0 +1372 y(metho)q(ds,)c(a)h(brief)g(description)h(is)f(giv)o(en)f(for)h +(eac)o(h)h(of)e(the)i(algorithms)d(and)i(no)f(attempt)h(has)g(b)q(een)h +(made)e(to)h(categorize)0 1422 y(them)h(to)g(the)h(same)f(exten)o(t)h +(as)g(the)g Fk(\013\014)r Fp(-based)h(algorithms.)h(The)e(implemen)o +(tation)c(details)j(ha)o(v)o(e)h(not)f(b)q(een)i(organized)0 +1472 y(in)o(to)e(a)g(table,)g(since)h(some)e(of)h(the)h(algorithms)d +(giv)o(en)i(are)h(of)f(a)g(theoretical)h(nature)g(and)f(ha)o(v)o(e)g +(not)h(b)q(een)g(implemen)o(ted)0 1522 y(or)f(sim)o(ulated.)0 +1600 y(The)g(\014nal)g(section)g(deals)g(with)g(some)f(conclusions)h +(that)g(can)g(b)q(e)h(dra)o(wn)e(from)f(the)j(taxonom)o(y)m(.)0 +1744 y Fl(2)48 b Fk(\013\014)r Fl(-BASED)15 b(P)l(ARALLEL)g(GAME-TREE)i +(SEAR)o(CH)0 1864 y Fp(This)e(section)h(discusses)h(algorithms)c(based) +i(on)g Fk(\013\014)j Fp(and)d(will)e(b)q(e)j(split)f(in)o(to)f(four)h +(subsections.)23 b(Sections)16 b(2.1)e(and)h(2.2)0 1914 +y(will)e(b)q(e)i(used)h(to)e(describ)q(e)j(the)e(columns)e(in)h(T)m +(ables)g(1)h(and)f(2,)g(resp)q(ectiv)o(ely)m(.)21 b(The)15 +b(description)g(of)f(the)i(algorithms)c(has)0 1964 y(b)q(een)i(divided) +e(in)o(to)g(t)o(w)o(o)g(eras.)18 b(Section)13 b(2.3)f(co)o(v)o(ers)h(w) +o(ork)f(\014rst)i(submitted)e(up)g(to)h(June,)g(1987.)j(Most)d(of)f +(the)h(w)o(ork)g(from)0 2014 y(this)k(era)g(describ)q(es)i(algorithms)c +(to)h(b)q(e)i(used)f(on)g(a)g(limited)d(n)o(um)o(b)q(er)i(of)h(pro)q +(cessors.)29 b(Section)17 b(2.4)f(co)o(v)o(ers)h(w)o(ork)g(that)0 +2064 y(w)o(as)f(\014rst)i(submitted)e(on)g(or)g(after)h(July)m(,)f +(1987.)25 b(The)17 b(ma)r(jorit)o(y)d(of)i(the)i(algorithms)c(from)h +(this)h(era)h(are)g(designed)g(for)0 2113 y(implemen)o(tatio)o(n)12 +b(on)j(massiv)o(ely-parallel)c(hardw)o(are)k(systems,)g(whic)o(h)f(w)o +(ere)i(una)o(v)n(ailable)d(to)h(most)g(researc)o(hers)j(b)q(efore)0 +2163 y(1987.)0 2302 y Fl(2.1)48 b(Comparison)14 b(of)h(the)g +Fk(\013\014)j Fl(Algorithms)0 2408 y Fp(T)m(able)13 b(1)h(summarizes)e +(and)i(classi\014es)g(the)h(v)n(arious)e Fk(\013\014)r +Fp(-based)i(algorithms,)c(and)j(is)f(divided)h(in)o(to)f(\014v)o(e)h +(columns.)0 2487 y(The)j(\014rst)g(column)d(giv)o(es)j(the)f(name)g(of) +f(the)i(algorithm,)d(and)i(the)h(reference)h(that)f(con)o(tains)f(the)h +(most)e(details)h(ab)q(out)0 2537 y(the)f(algorithm.)k(F)m(or)14 +b(example,)g(the)h(Y)m(oung)f(Brothers)j(W)m(ait)c(concept)j(has)f(b)q +(een)h(describ)q(ed)h(in)d(man)o(y)f(pap)q(ers,)j(but)f(all)0 +2587 y(of)e(the)i(algorithm's)c(details)j(are)g(lo)q(cated)g(in)f(F)m +(eldmann's)f(thesis)j(\(1993\).)p 0 2626 780 2 v 46 2652 +a Fi(1)64 2664 y Fh(Departmen)o(t)8 b(of)j(Computing)e(Science,)h(Univ) +o(ersit)o(y)g(of)h(Alb)q(erta,)f(Edmon)o(ton,)f(Alb)q(erta,)h(Canada,)g +(T6G)i(2H1.)0 2704 y(Email:)i Fg(brock@cs.ua)o(lb)o(ert)o(a.c)o(a)p +eop +%%Page: 2 2 +2 1 bop 0 50 a Fp(2)603 b(ICCA)14 b(Journal)f(Submission)601 +b(June)15 b(12,)e(1996)p 56 488 1827 2 v 56 498 V 55 +538 2 40 v 317 526 a Fh(Algorithm)p 735 538 V 283 w(Date)e(First)p +944 538 V 70 w(Pro)q(cessor)p 1182 538 V 1182 538 V 133 +w(P)o(arallelism)p 1532 538 V 1532 538 V 138 w(Sync)o(hroniza)o(tion)p +1882 538 V 55 577 V 308 565 a(\(Reference\))p 735 577 +V 278 w(Describ)q(ed)p 944 577 V 62 w(Hierarc)o(h)o(y/)p +1182 577 V 1182 577 V 121 w(P)o(ossible)f(A)o(t)p 1532 +577 V 1532 577 V 146 w(Done)h(A)o(t)h(These)p 1882 577 +V 55 616 V 735 616 V 944 616 V 1006 605 a(Con)o(trol)p +1182 616 V 1182 616 V 136 w(These)f(No)q(des)p 1532 616 +V 1532 616 V 204 w(No)q(des)p 1882 616 V 55 656 V 735 +656 V 944 656 V 970 644 a(Distribution)p 1182 656 V 1532 +656 V 1882 656 V 56 658 1827 2 v 56 668 V 55 707 2 40 +v 81 695 a(P)o(arallel)e(Aspiration)h(Searc)o(h)p 735 +707 V 319 w(1978)p 944 707 V 133 w(Static/)p 1182 707 +V 88 w(Ro)q(ot)h(\()p Ff(\013\014)h Fh(windo)o(w\))p +1532 707 V 62 w(Ro)q(ot)p 1882 707 V 55 746 V 81 735 +a(\(Baudet,)d(1978\))p 735 746 V 944 746 V 663 w(Cen)o(tralized)p +1182 746 V 1532 746 V 1882 746 V 56 748 1827 2 v 55 787 +2 40 v 81 776 a(Mandatory)g(W)m(ork)i(First)p 735 787 +V 372 w(1979)p 944 787 V 133 w(Static/)p 1182 787 V 88 +w(T)o(yp)q(e)g(1+3+Left-)p 1532 787 V 94 w(Bad)g(T)o(yp)q(e)g(2)p +1882 787 V 55 827 V 81 815 a(\(Akl,)g(Barnard)e(and)i(Doran,)f(1982\))p +735 827 V 944 827 V 395 w(Cen)o(tralized)p 1182 827 V +54 w(most)g(c)o(hild)h(of)g(3)p 1532 827 V 1882 827 V +56 829 1827 2 v 55 868 2 40 v 81 856 a(T)m(ree)g(Splitting)p +735 868 V 509 w(1980)p 944 868 V 133 w(Static/)p 1182 +868 V 88 w(T)m(op)g(k-ply)p 1532 868 V 199 w(Ro)q(ot)p +1882 868 V 55 907 V 81 896 a(\(Fink)o(el)f(and)g(Fish)o(burn,)g(1982\)) +p 735 907 V 944 907 V 460 w(Cen)o(tralized)p 1182 907 +V 1532 907 V 1882 907 V 56 909 1827 2 v 55 949 2 40 v +81 937 a(PV-Split)p 735 949 V 588 w(1981)p 944 949 V +133 w(Static/)p 1182 949 V 88 w(T)o(yp)q(e)h(1)p 1532 +949 V 241 w(T)o(yp)q(e)g(1)p 1882 949 V 55 988 V 81 976 +a(\(Marsland)e(and)i(Campb)q(ell,)e(1982\))p 735 988 +V 944 988 V 402 w(Cen)o(tralized)p 1182 988 V 1532 988 +V 1882 988 V 56 990 1827 2 v 55 1029 2 40 v 81 1017 a(Key)i(No)q(de)p +735 1029 V 570 w(1983)p 944 1029 V 133 w(Static/)p 1182 +1029 V 88 w(T)o(yp)q(e)g(1+3+Left-)p 1532 1029 V 94 w(Bad)g(T)o(yp)q(e) +g(2)p 1882 1029 V 55 1069 V 81 1057 a(\(Lindstrom,)d(1983\))p +735 1069 V 944 1069 V 615 w(Cen)o(tralized)p 1182 1069 +V 54 w(most)i(c)o(hild)h(of)g(3)p 1532 1069 V 1882 1069 +V 56 1070 1827 2 v 55 1110 2 40 v 81 1098 a(UIDP)m(ABS)p +735 1110 V 566 w(1986)p 944 1110 V 133 w(Static/)p 1182 +1110 V 88 w(Ro)q(ot)p 1532 1110 V 273 w(None)p 1882 1110 +V 55 1149 V 81 1137 a(\(Newb)q(orn,)f(1988\))p 735 1149 +V 944 1149 V 635 w(Cen)o(tralized)p 1182 1149 V 1532 +1149 V 1882 1149 V 56 1151 1827 2 v 55 1190 2 40 v 81 +1178 a(DPVS)p 735 1190 V 601 w(01/1987)p 944 1190 V 81 +w(Dynamic/)p 1182 1190 V 64 w(T)o(yp)q(e)h(1+3+2)p 1532 +1190 V 151 w(T)o(yp)q(e)g(1+3+Bad)g(2)p 1882 1190 V 55 +1230 V 81 1218 a(\(Sc)o(hae\013er,)d(1989\))p 735 1230 +V 944 1230 V 637 w(Cen)o(tralized)p 1182 1230 V 1532 +1230 V 1882 1230 V 56 1231 1827 2 v 55 1271 2 40 v 81 +1259 a(EPVS)p 735 1271 V 604 w(06/1987)p 944 1271 V 81 +w(Dynamic/)p 1182 1271 V 64 w(T)o(yp)q(e)j(1+3)p 1532 +1271 V 196 w(T)o(yp)q(e)g(1+3)p 1882 1271 V 55 1310 V +81 1298 a(\(Hy)o(att,)f(Suter)g(and)h(Nelson,)f(1989\))p +735 1310 V 944 1310 V 398 w(Cen)o(tralized)p 1182 1310 +V 1532 1310 V 1882 1310 V 56 1312 1827 2 v 55 1351 2 +40 v 81 1339 a(W)m(a)o(yco)q(ol)p 735 1351 V 592 w(1987)p +944 1351 V 109 w(Dynamic/)p 1182 1351 V 64 w(All,)h(except)f(T)o(yp)q +(e)h(2)p 1532 1351 V 63 w(No)q(des)g(with)g(TT)p 1882 +1351 V 55 1391 V 81 1379 a(\(F)m(elten)f(and)g(Otto,)h(1988\))p +735 1391 V 944 1391 V 527 w(Distributed)p 1182 1391 V +53 w(with)g(no)g(TT)i(en)o(try)p 1532 1391 V 76 w(&)f(no)f(cuto\013)p +1882 1391 V 56 1392 1827 2 v 55 1432 2 40 v 81 1420 a(Y)m(oung)f +(Brothers)g(W)m(ait)p 735 1432 V 369 w(10/1987)p 944 +1432 V 81 w(Dynamic/)p 1182 1432 V 64 w(T)o(yp)q(e)h(1+3+Bad)g(2)p +1532 1432 V 77 w(T)o(yp)q(e)g(1+Bad)g(2)p 1882 1432 V +55 1471 V 81 1459 a(\(F)m(eldmann,)d(1993\))p 735 1471 +V 944 1471 V 623 w(Distributed)p 1182 1471 V 1532 1471 +V 1882 1471 V 56 1473 1827 2 v 55 1512 2 40 v 81 1500 +a(Dynamic)h(T)m(ree)i(Splitting)p 735 1512 V 360 w(1988)p +944 1512 V 109 w(Dynamic/)p 1182 1512 V 64 w(T)o(yp)q(e)g(1+3+Bad)g(2)p +1532 1512 V 77 w(T)o(yp)q(e)g(1+Bad)g(2)p 1882 1512 V +55 1552 V 81 1540 a(\(Hy)o(att,)f(1988\))p 735 1552 V +944 1552 V 685 w(Distributed)p 1182 1552 V 1532 1552 +V 1882 1552 V 56 1553 1827 2 v 55 1593 2 40 v 81 1581 +a(Bound-and-)o(Bran)o(c)o(h)p 735 1593 V 403 w(08/1988)p +944 1593 V 81 w(Dynamic/)p 1182 1593 V 64 w(T)o(yp)q(e)h(1+3+Bad)g(2)p +1532 1593 V 77 w(T)o(yp)q(e)g(1+Bad)g(2)p 1882 1593 V +55 1632 V 81 1620 a(\(F)m(erguson)e(and)i(Korf,)g(1988\))p +735 1632 V 944 1632 V 486 w(Distributed)p 1182 1632 V +1532 1632 V 1882 1632 V 56 1634 1827 2 v 55 1673 2 40 +v 81 1661 a(Dela)o(y)o(ed)e(Branc)o(h)h(T)m(ree)i(Expansion)p +735 1673 V 226 w(1990)p 944 1673 V 133 w(Static/)p 1182 +1673 V 88 w(T)o(yp)q(e)f(1+3)p 1532 1673 V 196 w(Bad)g(T)o(yp)q(e)g(2)p +1882 1673 V 55 1713 V 81 1701 a(\(Hsu,)g(1990\))p 735 +1713 V 944 1713 V 714 w(Cen)o(tralized)p 1182 1713 V +1532 1713 V 1882 1713 V 56 1714 1827 2 v 55 1754 2 40 +v 81 1742 a(F)m(ron)o(tier)e(Splitting)p 735 1754 V 454 +w(1993)p 944 1754 V 109 w(Dynamic/)p 1182 1754 V 64 w(All)p +1532 1754 V 304 w(Ro)q(ot)p 1882 1754 V 55 1793 V 81 +1781 a(\(Lu,)h(1993\))p 735 1793 V 944 1793 V 733 w(Distributed)p +1182 1793 V 1532 1793 V 1882 1793 V 56 1795 1827 2 v +55 1834 2 40 v 81 1823 a Ff(\013\014)r Fh(*)p 735 1834 +V 661 w(1993)p 944 1834 V 109 w(Dynamic/)p 1182 1834 +V 64 w(T)o(yp)q(e)h(1+3)p 1532 1834 V 196 w(T)o(yp)q(e)g(1+3+Bad)g(2)p +1882 1834 V 55 1874 V 81 1862 a(\(Da)o(vid,)e(1993\))p +735 1874 V 944 1874 V 683 w(Distributed)p 1182 1874 V +1532 1874 V 1882 1874 V 56 1875 1827 2 v 55 1915 2 40 +v 81 1903 a(CABP)p 735 1915 V 624 w(1994)p 944 1915 V +133 w(Static/)p 1182 1915 V 88 w(T)o(yp)q(e)i(1+3)p 1532 +1915 V 196 w(Bad)g(T)o(yp)q(e)g(2)p 1882 1915 V 55 1954 +V 81 1943 a(\(Cung,)f(1994\))p 735 1954 V 944 1954 V +692 w(Cen)o(tralized)p 1182 1954 V 1532 1954 V 1882 1954 +V 56 1956 1827 2 v 55 1995 2 40 v 81 1984 a(Jam)o(b)q(oree)p +735 1995 V 574 w(1994)p 944 1995 V 109 w(Dynamic/)p 1182 +1995 V 64 w(T)o(yp)q(e)h(1+3+Bad)g(2)p 1532 1995 V 77 +w(T)o(yp)q(e)g(1+Bad)g(2)p 1882 1995 V 55 2035 V 81 2023 +a(\(Kuszmaul,)e(1994\))p 735 2035 V 944 2035 V 621 w(Distributed)p +1182 2035 V 1532 2035 V 1882 2035 V 56 2037 1827 2 v +55 2076 2 40 v 81 2064 a(ABD)o(AD)o(A)p 735 2076 V 569 +w(1995)p 944 2076 V 109 w(Dynamic/)p 1182 2076 V 64 w(T)o(yp)q(e)i +(1+3+Bad)g(2)p 1532 2076 V 77 w(T)o(yp)q(e)g(1+Bad)g(2)p +1882 2076 V 55 2115 V 81 2104 a(\(W)m(eill,)f(1995\))p +735 2115 V 944 2115 V 696 w(Distributed)p 1182 2115 V +1532 2115 V 1882 2115 V 56 2117 1827 2 v 55 2157 2 40 +v 81 2145 a(Dynamic)f(Multiple)h(PV-Split)p 735 2157 +V 297 w(1995)p 944 2157 V 109 w(Dynamic/)p 1182 2157 +V 64 w(No)q(des)h(within)p 1532 2157 V 145 w(No)q(des)g(within)p +1882 2157 V 55 2196 V 81 2184 a(\(Marsland)e(and)i(Gao,)f(1995\))p +735 2196 V 944 2196 V 487 w(Distributed)p 1182 2196 V +53 w(PV)i(set)p 1532 2196 V 244 w(PV)g(set)p 1882 2196 +V 56 2198 1827 2 v 55 2237 2 40 v 81 2225 a(APHID)p 735 +2237 V 608 w(1996)p 944 2237 V 133 w(Static/)p 1182 2237 +V 88 w(T)m(op)f(k-ply)p 1532 2237 V 199 w(None)p 1882 +2237 V 55 2276 V 81 2265 a(\(Bro)q(c)o(kingto)o(n)e(and)h(Sc)o +(hae\013er,)f(1996\))p 735 2276 V 944 2276 V 368 w(Cen)o(tralized)p +1182 2276 V 1532 2276 V 1882 2276 V 56 2278 1827 2 v +56 2288 V 312 2363 a Fp(T)m(able)14 b(1:)j(Comparison)12 +b(of)i(P)o(arallel)e Fk(\013\014)r Fp(-based)j(Game-T)m(ree)e(Searc)o +(h)h(Algorithms)p eop +%%Page: 3 3 +3 2 bop 467 50 a Fe(A)14 b(T)m(axonom)o(y)d(of)i(P)o(arallel)g(Game-T)m +(ree)g(Searc)o(h)h(Algorithms)465 b Fp(3)0 195 y(The)18 +b(second)h(column)e(giv)o(es)g(the)i(date)f(that)g(the)g(algorithm)d(w) +o(as)j(\014rst)h(published)f(or)g(receiv)o(ed)h(b)o(y)e(a)h(journal.)29 +b(This)0 245 y(information)11 b(has)j(b)q(een)h(used)g(to)f(order)g +(the)h(algorithms)c(in)o(to)i(c)o(hronological)g(order.)0 +324 y(The)20 b(third)g(column)f(con)o(tains)h(information)d(on)j(b)q +(oth)g(the)h(pro)q(cessor)g(hierarc)o(h)o(y)g(and)f(the)g(distribution) +g(of)f(con)o(trol)0 374 y(within)12 b(the)h(algorithm.)i +Fn(Pr)n(o)n(c)n(essor)e(Hier)n(ar)n(chy)e Fp(categorizes)j(algorithms)c +(based)j(on)g(the)g(rigidit)o(y)e(of)h(the)h(pro)q(cessor)h(tree.)0 +423 y(If)g(the)g(pro)q(cessor)i(tree)f(is)f Fn(static)p +Fp(,)f(one)h(or)g(more)f(pro)q(cessors)j(are)f(designated)f(as)g +(masters,)g(and)f(con)o(trol)h(the)h(other)f(sla)o(v)o(e)0 +473 y(pro)q(cessors.)20 b(This)14 b(hierarc)o(h)o(y)g(is)g(\014xed)g +(throughout)g(a)f(searc)o(h)i(of)e(the)i(game-tree.)i(A)d +Fn(dynamic)h Fp(pro)q(cessor)g(tree)g(c)o(hanges)0 523 +y(based)f(on)g(the)g(distribution)f(of)h(busy)g(and)f(idle)g(pro)q +(cessors.)21 b Fn(Contr)n(ol)14 b(Distribution)f Fp(describ)q(es)j +(whether)f(the)f(con)o(trol)g(of)0 573 y(the)i(algorithm)c(is)j +Fn(c)n(entr)n(alize)n(d)g Fp(on)g(a)g(small)e(n)o(um)o(b)q(er)h(of)h +(masters)g(\(e.g.)21 b(PV-Split\),)15 b(or)g(could)g(b)q(e)h +Fn(distribute)n(d)f Fp(amongst)0 623 y(all)e(pro)q(cessors)j(\(e.g.)i +(Y)m(oung)13 b(Brothers)i(W)m(ait\).)0 702 y(The)e(fourth)g(column)f +(describ)q(es)j(the)e(t)o(ypical)f(no)q(des)i(of)e(the)i(game-tree)f +(where)h(parallelism)c(could)j(o)q(ccur.)19 b(The)13 +b(descrip-)0 751 y(tion)f(is)h(based)g(on)g(the)g(classi\014cation)f +(of)g(the)i(minim)o(al)9 b(game-tree)j(b)o(y)h(Kn)o(uth)g(and)f(Mo)q +(ore)h(\(1975\).)k(Note)c(that)g(the)g(t)o(yp)q(e)0 801 +y(2)h(\(cut)h(no)q(des\))g(ha)o(v)o(e)f(b)q(een)h(di\013eren)o(tiated)g +(in)o(to)f(t)o(w)o(o)f(sub-classes.)21 b(When)14 b(a)g(t)o(yp)q(e)h(2)e +(no)q(de)i(has)f(not)g(b)q(een)i(pruned)f(after)0 851 +y(searc)o(hing)f(the)h(\014rst)g(mo)o(v)o(e,)d(this)i(no)q(de)g(is)g +(called)g(a)g Fn(b)n(ad)h(typ)n(e)g(2)f Fp(no)q(de)h(due)f(to)g(its)g +(incorrect)h(mo)o(v)o(e)e(ordering.)18 b(Similarly)l(,)0 +901 y Fn(go)n(o)n(d)e(typ)n(e)f(2)g Fp(no)q(des)g(are)g(considered)h +(to)e(b)q(e)h(t)o(yp)q(e)g(2)f(no)q(des)h(that)g(cause)g(a)f(cuto\013)h +(after)g(examining)d(the)j(\014rst)g(mo)o(v)o(e)e(\(i.e.)0 +951 y(the)h(mo)o(v)o(e)f(ordering)h(is)f(correct\).)0 +1029 y(F)m(or)i(example,)g(PV-Split)g(only)g(implem)o(en)o(ts)f +(parallelism)f(at)i(t)o(yp)q(e)h(1)g(\(principal)f(v)n(ariation\))f(no) +q(des,)i(while)f(the)i(Y)m(oung)0 1079 y(Brothers)e(W)m(ait)e +(algorithms)e(allo)o(w)h(for)h(parallelism)e(at)j(t)o(yp)q(e)g(1,)f(t)o +(yp)q(e)h(3)g(\(all)e(no)q(des\))j(and)f(bad)f(t)o(yp)q(e)h(2)g(no)q +(des.)19 b(A)o(t)13 b(go)q(o)q(d)0 1129 y(t)o(yp)q(e)j(2)f(no)q(des,)i +(the)f(Y)m(oung)f(Brothers)i(W)m(ait)d(algorithm)f(will)h(searc)o(h)j +(the)f(\014rst)g(mo)o(v)o(e,)e(ac)o(hiev)o(e)i(a)f(cuto\013,)h(and)g +(none)g(of)0 1179 y(the)e(other)h(c)o(hildren)f(will)e(b)q(e)j(ev)n +(aluated.)0 1258 y(The)g(\014fth)g(column)e(indicates)i(whic)o(h)f(no)q +(des)i(of)e(the)h(game-tree)f(migh)o(t)f(ha)o(v)o(e)h(parallelism)e +(constrained)k(b)o(y)e(w)o(aiting)f(for)0 1308 y(the)f(\014rst)h +Fk(k)f Fp(c)o(hildren)g(to)g(b)q(e)g(ev)n(aluated.)17 +b(F)m(or)12 b(example,)e(bad)i(t)o(yp)q(e)g(2)f(no)q(des)i(are)f(sync)o +(hronization)g(p)q(oin)o(ts)f(for)h(Akl)f Fn(et.)h(al)p +Fp('s)0 1357 y(Mandatory)f(W)m(ork)g(First)g(algorithm,)e(while)i(t)o +(yp)q(e)h(1)f(and)g(bad)h(t)o(yp)q(e)g(2)f(no)q(des)h(are)g(sync)o +(hronization)f(p)q(oin)o(ts)h(for)f(F)m(erguson)0 1407 +y(and)j(Korf)s('s)g(Bound-and-Branc)o(h)g(algorithm.)0 +1554 y Fl(2.2)48 b(Comparison)14 b(of)h(the)g Fk(\013\014)j +Fl(Implemen)o(tati)o(ons)0 1662 y Fp(T)m(able)13 b(2)h(summarizes)e(an) +i(implem)o(en)o(tation)d(of)i(eac)o(h)i(algorithm)c(giv)o(en)i(in)h(T)m +(able)f(1.)0 1741 y(The)j(\014rst)g(column)d(giv)o(es)i(the)h(name)e +(of)g(the)i(algorithm,)c(and)j(the)h(reference)i(to)d(the)g(pap)q(er)h +(that)f(con)o(tains)g(the)h(details)0 1790 y(ab)q(out)e(the)i(implem)o +(en)o(tation.)h(In)e(some)e(cases,)j(this)e(pap)q(er)i(ma)o(y)c(b)q(e)j +(di\013eren)o(t)h(than)e(the)i(pap)q(er)f(whic)o(h)f(b)q(est)i(describ) +q(es)0 1840 y(the)e(algorithm.)0 1919 y(The)f(second)g(column)e +(describ)q(es)k(the)e(underlying)f(hardw)o(are)h(used)g(to)f(host)h +(the)g(selected)h(implemen)o(tation.)g(A)f(soft)o(w)o(are)0 +1969 y Fn(simulation)h Fp(of)f(hardw)o(are)h(is)g(denoted)h(in)e(this)h +(column.)0 2048 y(The)k(third)g(column)e(describ)q(es)j(the)f(t)o(yp)q +(e)h(of)e(game-trees)g(explored)h(b)o(y)f(the)i(algorithm.)26 +b(If)17 b(the)h(game-trees)g(are)g(not)0 2098 y(generated)12 +b(b)o(y)f(game-pla)o(ying)d(programs,)i(they)i(are)f(considered)h(to)f +(b)q(e)h Fn(arti\014cial)g(tr)n(e)n(es)p Fp(.)k(In)11 +b(terms)g(of)f(a)o(v)o(erage)h(branc)o(hing)0 2147 y(factor,)i(c)o +(hess)j(trees)f(are)g(wider)f(than)g(Othello)f(trees,)i(and)f(b)q(oth)g +(are)g(wider)g(than)g(c)o(hec)o(k)o(ers)i(trees.)0 2226 +y(The)j(fourth)g(column)e(denotes)i(whic)o(h)g(of)f(the)h(sequen)o +(tial)g(game-tree)f(searc)o(hing)h(algorithms)d(w)o(as)j(parallelized:) +27 b Fk(\013\014)0 2276 y Fp(\(Brudno,)21 b(1963;)g(Kn)o(uth)f(and)f +(Mo)q(ore,)i(1975\),)e(PVS)h(\(Marsland,)g(1983\))f(or)g(NegaScout)h +(\(Reinfeld,)g(1983\).)34 b(Some)0 2326 y(programs)17 +b(are)i(more)e(e\016cien)o(t)h(when)h(using)f(a)g(di\013eren)o(t)h +(sequen)o(tial)f(algorithm,)e(dep)q(ending)j(on)f(the)h(nature)g(of)e +(the)0 2376 y(ev)n(aluation)g(function)i(and)g(the)g(strength)h(of)e +(the)i(mo)o(v)o(e)d(ordering)i(tec)o(hniques)h(in)e(the)i(sequen)o +(tial)f(program.)31 b(Th)o(us,)0 2425 y(the)18 b(c)o(hoice)g(of)e +(sequen)o(tial)i(algorithm)c(to)j(compare)g(the)h(parallel)e(algorithm) +e(against)j(is)g(a)g(factor)g(to)g(consider)h(when)0 +2475 y(ev)n(aluating)12 b(a)i(parallel)f(algorithm's)e(results.)0 +2554 y(The)k(\014fth)g(column)f(describ)q(es)j(what)e(t)o(yp)q(e)h(of)e +(transp)q(osition)h(table)g(has)g(b)q(een)h(implemen)o(ted)d(for)i(the) +g(algorithm.)k(E\016-)0 2604 y(cien)o(t)c(sharing)f(of)g(transp)q +(osition)g(table)h(information)c(is)j(crucial)h(to)f(the)h(p)q +(erformance)f(of)g(a)g(parallel)g(game-tree)g(searc)o(h)0 +2654 y(algorithm.)g(The)d(t)o(w)o(o)f(main)e(metho)q(ds)h(are)i(a)f +Fn(distribute)n(d)f Fp(message-passing)h(transp)q(osition)g(table)g +(and)g(a)g Fn(shar)n(e)n(d-memory)0 2704 y Fp(transp)q(osition)k +(table.)k(Sp)q(ecial)c(hardw)o(are)g(is)g(required)g(to)g(implemen)o(t) +d(a)j(shared-memory)e(transp)q(osition)i(table,)f(but)h(is)p +eop +%%Page: 4 4 +4 3 bop 0 50 a Fp(4)603 b(ICCA)14 b(Journal)f(Submission)601 +b(June)15 b(12,)e(1996)p 9 508 1921 2 v 9 518 V 8 557 +2 40 v 270 545 a Fh(Algorithm)p 688 557 V 321 w(Hardw)o(are)p +961 557 V 143 w(T)m(est)p 1192 557 V 110 w(Sequen)o(tial)p +1405 557 V 84 w(T)m(rans-)p 1624 557 V 1624 557 V 146 +w(Sp)q(eedup)p 1928 557 V 8 597 V 261 585 a(\(Reference\))p +688 597 V 348 w(Used)p 961 597 V 153 w(Domain)p 1192 +597 V 80 w(Algorithm)p 1405 597 V 73 w(P)o(osition)p +1624 597 V 1624 597 V 125 w(Obtained)p 1928 597 V 8 636 +V 688 636 V 961 636 V 1192 636 V 1405 636 V 1473 624 +a(T)m(able)p 1624 636 V 1928 636 V 9 638 1921 2 v 9 648 +V 8 687 2 40 v 34 675 a(P)o(arallel)d(Aspiration)f(Searc)o(h)p +688 687 V 304 w(Sim)o(ulation)p 961 687 V 97 w(Arti\014cial)p +1192 687 V 130 w Ff(\013\014)p 1405 687 V 159 w Fh(none)p +1624 687 V 96 w Fd(\024)i Fh(6)g(for)g(large)f(n)p 1928 +687 V 8 727 V 34 715 a(\(Baudet,)f(1978\))p 688 727 V +961 727 V 771 w(T)m(rees)p 1192 727 V 1405 727 V 1624 +727 V 530 w(\(sim)o(ulated\))p 1928 727 V 9 728 1921 +2 v 8 768 2 40 v 34 756 a(Mandatory)g(W)m(ork)i(First)p +688 768 V 357 w(Sim)o(ulation)p 961 768 V 97 w(Arti\014cial)p +1192 768 V 130 w Ff(\013\014)p 1405 768 V 148 w Fh(\\score)p +1624 768 V 85 w Fd(\024)g Fh(6)g(for)g(large)f(n)p 1928 +768 V 8 807 V 34 795 a(\(Akl,)h(Barnard)f(and)g(Doran,)g(1982\))p +688 807 V 961 807 V 503 w(T)m(rees)p 1192 807 V 1405 +807 V 349 w(table")p 1624 807 V 85 w(\(sim)o(ulated\))p +1928 807 V 9 809 1921 2 v 8 848 2 40 v 34 836 a(T)m(ree)h(Splitting)p +688 848 V 506 w(LSI-11)f(&)p 961 848 V 114 w(Chec)o(k)o(ers)p +1192 848 V 130 w Ff(\013\014)p 1405 848 V 159 w Fh(none)p +1624 848 V 96 w(2.34)h(\(n=3\))p 1928 848 V 8 888 V 34 +876 a(\(Fink)o(el)f(and)g(Fish)o(burn,)g(1982\))p 688 +888 V 274 w(Sim)o(ulation)p 961 888 V 1192 888 V 1405 +888 V 1624 888 V 737 w(5.12)h(\(n=27,sim\))p 1928 888 +V 9 889 1921 2 v 8 929 2 40 v 34 917 a(PV-Split)p 688 +929 V 611 w(Sun)g(3)p 961 929 V 163 w(Chess)p 1192 929 +V 142 w(PVS)p 1405 929 V 145 w(lo)q(cal)p 1624 929 V +97 w(3.75)g(\(n=5\))p 1928 929 V 8 968 V 34 956 a(\(Marsland,)e +(Olafsson)g(and)h(Sc)o(hae\013er,)e(1985\))p 688 968 +V 95 w(Net)o(w)o(ork)p 961 968 V 1192 968 V 1405 968 +V 1624 968 V 1928 968 V 9 970 1921 2 v 8 1009 2 40 v +34 998 a(Key)j(No)q(de)p 688 1009 V 555 w(Sim)o(ulation)p +961 1009 V 97 w(Arti\014cial)p 1192 1009 V 130 w Ff(\013\014)p +1405 1009 V 159 w Fh(none)p 1624 1009 V 96 w(12.57)g(\(n=20\))p +1928 1009 V 8 1049 V 34 1037 a(\(Lindstrom,)e(1983\))p +688 1049 V 961 1049 V 722 w(T)m(rees)p 1192 1049 V 1405 +1049 V 1624 1049 V 1928 1049 V 9 1050 1921 2 v 8 1090 +2 40 v 34 1078 a(UIDP)m(ABS)p 688 1090 V 530 w(Data)h(General)p +961 1090 V 102 w(Chess)p 1192 1090 V 155 w Ff(\013\014)p +1405 1090 V 159 w Fh(lo)q(cal)p 1624 1090 V 97 w(3.94)h(\(n=8\))p +1928 1090 V 8 1129 V 34 1117 a(\(Newb)q(orn,)f(1988\))p +688 1129 V 420 w(\(mixed)f(pro)q(cs.\))p 961 1129 V 1192 +1129 V 1405 1129 V 1624 1129 V 1928 1129 V 9 1131 1921 +2 v 8 1170 2 40 v 34 1159 a(DPVS)p 688 1170 V 650 w(Sun)i(3)p +961 1170 V 163 w(Chess)p 1192 1170 V 95 w(NegaScout)p +1405 1170 V 52 w(TT.)i(Mgr)e(-)p 1624 1170 V 54 w(7.64)g(\(n=19\))p +1928 1170 V 8 1210 V 34 1198 a(\(Sc)o(hae\013er,)d(1989\))p +688 1210 V 469 w(Net)o(w)o(ork)p 961 1210 V 1192 1210 +V 1405 1210 V 555 w(messages)p 1624 1210 V 1928 1210 +V 9 1212 1921 2 v 8 1251 2 40 v 34 1239 a(EPVS)p 688 +1251 V 637 w(Sequen)o(t)p 961 1251 V 144 w(Chess)p 1192 +1251 V 155 w Ff(\013\014)p 1405 1251 V 145 w Fh(shared)p +1624 1251 V 82 w(5.93)j(\(n=16\))p 1928 1251 V 8 1290 +V 34 1279 a(\(Hy)o(att,)f(Suter)g(and)h(Nelson,)g(1989\))p +688 1290 V 233 w(Balance)p 961 1290 V 1192 1290 V 1405 +1290 V 565 w(memory)p 1624 1290 V 1928 1290 V 9 1292 +1921 2 v 8 1331 2 40 v 34 1320 a(W)m(a)o(yco)q(ol)p 688 +1331 V 576 w(Hyp)q(ercub)q(e)p 961 1331 V 122 w(Chess)p +1192 1331 V 155 w Ff(\013\014)p 1405 1331 V 111 w Fh(distributed)p +1624 1331 V 46 w(101)g(\(n=256\))p 1928 1331 V 8 1371 +V 34 1359 a(\(F)m(elten)f(and)g(Otto,)i(1988\))p 688 +1371 V 961 1371 V 1192 1371 V 1405 1371 V 1043 w(messages)p +1624 1371 V 1928 1371 V 9 1373 1921 2 v 8 1412 2 40 v +34 1400 a(Y)m(oung)f(Brothers)e(W)m(ait)p 688 1412 V +371 w(T)m(ransputers)p 961 1412 V 113 w(Chess)p 1192 +1412 V 95 w(NegaScout)p 1405 1412 V 48 w(distributed)p +1624 1412 V 46 w(142)i(\(n=256\))p 1928 1412 V 8 1451 +V 34 1440 a(\(F)m(eldmann,)e(1993\))p 688 1451 V 961 +1451 V 1192 1451 V 1405 1451 V 1139 w(messages)p 1624 +1451 V 63 w(344)i(\(n=1024\))p 1928 1451 V 9 1453 1921 +2 v 8 1493 2 40 v 34 1481 a(Dynamic)e(T)m(ree)j(Splitting)p +688 1493 V 366 w(Sequen)o(t)p 961 1493 V 144 w(Chess)p +1192 1493 V 155 w Ff(\013\014)p 1405 1493 V 145 w Fh(shared)p +1624 1493 V 82 w(8.81)f(\(n=16\))p 1928 1493 V 8 1532 +V 34 1520 a(\(Hy)o(att,)f(1988\))p 688 1532 V 521 w(Balance)p +961 1532 V 1192 1532 V 1405 1532 V 565 w(memory)p 1624 +1532 V 1928 1532 V 9 1534 1921 2 v 8 1573 2 40 v 34 1561 +a(Bound-and-Br)o(anc)n(h)p 688 1573 V 413 w(Hyp)q(ercub)q(e)p +961 1573 V 109 w(Othello)p 1192 1573 V 142 w Ff(\013\014)p +1405 1573 V 111 w Fh(distributed)p 1624 1573 V 46 w(12)h(\(n=32\))p +1928 1573 V 8 1613 V 34 1601 a(\(F)m(erguson)e(and)i(Korf,)g(1988\))p +688 1613 V 961 1613 V 1192 1613 V 1405 1613 V 1003 w(messages)p +1624 1613 V 1928 1613 V 9 1614 1921 2 v 8 1654 2 40 v +34 1642 a(Dela)o(y)o(ed)f(Branc)o(h)g(T)m(ree)h(Expansion)p +688 1654 V 211 w(Sim)o(ulation)p 961 1654 V 121 w(Chess)p +1192 1654 V 155 w Ff(\013\014)p 1405 1654 V 159 w Fh(none)p +1624 1654 V 96 w(350)g(\(n=1000,)p 1928 1654 V 8 1693 +V 34 1681 a(\(Hsu,)g(1990\))p 688 1693 V 961 1693 V 1192 +1693 V 1405 1693 V 1624 1693 V 1434 w(sim)o(ulated\))p +1928 1693 V 9 1695 1921 2 v 8 1734 2 40 v 34 1722 a(F)m(ron)o(tier)f +(Splitting)p 688 1734 V 482 w(BBN)p 961 1734 V 146 w(Chec)o(k)o(ers)p +1192 1734 V 70 w(NegaScout)p 1405 1734 V 82 w(shared)p +1624 1734 V 82 w(3.32)h(\(n=16\))p 1928 1734 V 8 1774 +V 34 1762 a(\(Lu,)g(1993\))p 688 1774 V 568 w(TC2000)p +961 1774 V 1192 1774 V 1405 1774 V 566 w(memory)p 1624 +1774 V 1928 1774 V 9 1775 1921 2 v 8 1815 2 40 v 34 1803 +a Ff(\013\014)r Fh(*)p 688 1815 V 637 w(T)m(ransputers)p +961 1815 V 113 w(Chess)p 1192 1815 V 95 w(NegaScout)p +1405 1815 V 48 w(distributed)p 1624 1815 V 46 w(6.5)g(\(n=8+8TT\))p +1928 1815 V 8 1854 V 34 1842 a(\(Da)o(vid,)f(1993\))p +688 1854 V 961 1854 V 1192 1854 V 1405 1854 V 1199 w(messages)p +1624 1854 V 1928 1854 V 9 1856 1921 2 v 8 1895 2 40 v +34 1883 a(CABP)p 688 1895 V 631 w(Sequen)o(t)p 961 1895 +V 120 w(Arti\014cial)p 1192 1895 V 130 w Ff(\013\014)p +1405 1895 V 145 w Fh(shared)p 1624 1895 V 82 w(4.6)h(\(n=9\))p +1928 1895 V 8 1935 V 34 1923 a(\(Cung,)f(1994\))p 688 +1935 V 528 w(Balance)p 961 1935 V 149 w(T)m(rees)p 1192 +1935 V 1405 1935 V 334 w(memory)p 1624 1935 V 1928 1935 +V 9 1936 1921 2 v 8 1976 2 40 v 34 1964 a(Jam)o(b)q(oree)p +688 1976 V 598 w(CM-5)p 961 1976 V 164 w(Chess)p 1192 +1976 V 95 w(NegaScout)p 1405 1976 V 48 w(distributed)p +1624 1976 V 46 w Fd(\031)p Fh(50)i(\(n=512\))p 1928 1976 +V 8 2015 V 34 2003 a(\(Kuszmaul,)d(1994\))p 688 2015 +V 961 2015 V 1192 2015 V 1405 2015 V 1138 w(messages)p +1624 2015 V 1928 2015 V 9 2017 1921 2 v 8 2056 2 40 v +34 2044 a(ABD)o(AD)o(A)p 688 2056 V 593 w(CM-5)p 961 +2056 V 164 w(Chess)p 1192 2056 V 95 w(NegaScout)p 1405 +2056 V 48 w(distributed)p 1624 2056 V 46 w(15.85)i(\(n=32\))p +1928 2056 V 8 2096 V 34 2084 a(\(W)m(eill,)f(1996\))p +688 2096 V 961 2096 V 754 w(\(&)i(Othello\))p 1192 2096 +V 1405 2096 V 277 w(messages)p 1624 2096 V 1928 2096 +V 9 2097 1921 2 v 8 2137 2 40 v 34 2125 a(Dynamic)d(Multiple)h +(PV-Split)p 688 2137 V 298 w(AP-1000)p 961 2137 V 116 +w(Arti\014cial)p 1192 2137 V 117 w(PVS)p 1405 2137 V +145 w(none)p 1624 2137 V 96 w Fd(\031)p Fh(32)i(\(n=64\))p +1928 2137 V 8 2176 V 34 2164 a(\(Marsland)e(and)g(Gao,)h(1995\))p +688 2176 V 961 2176 V 594 w(T)m(rees)p 1192 2176 V 1405 +2176 V 1624 2176 V 1928 2176 V 9 2178 1921 2 v 8 2217 +2 40 v 34 2205 a(APHID)p 688 2217 V 618 w(Sparc)f(2)p +961 2217 V 149 w(Chess)p 1192 2217 V 95 w(NegaScout)p +1405 2217 V 96 w(lo)q(cal)p 1624 2217 V 97 w(6.04)h(\(n=16\))p +1928 2217 V 8 2257 V 34 2245 a(\(Bro)q(c)o(kington)d(and)j(Sc)o +(hae\013er,)d(1995\))p 688 2257 V 200 w(Net)o(w)o(ork)p +961 2257 V 1192 2257 V 1405 2257 V 1624 2257 V 1928 2257 +V 9 2258 1921 2 v 9 2268 V 262 2343 a Fp(T)m(able)13 +b(2:)18 b(Comparison)12 b(of)h(P)o(arallel)g Fk(\013\014)r +Fp(-based)i(Game-T)m(ree)e(Searc)o(h)h(Implemen)o(tations)p +eop +%%Page: 5 5 +5 4 bop 467 50 a Fe(A)14 b(T)m(axonom)o(y)d(of)i(P)o(arallel)g(Game-T)m +(ree)g(Searc)o(h)h(Algorithms)465 b Fp(5)0 195 y(generally)15 +b(faster)g(than)g(distributed)h(transp)q(osition)e(tables)i(based)f(on) +g(message)f(passing.)21 b(Lo)q(cal)15 b(transp)q(osition)g(tables)0 +245 y(are)h(main)o(tained)d(separately)i(on)g(eac)o(h)h(pro)q(cessor,)h +(but)e(no)g(transp)q(osition)g(table)g(information)e(is)i(shared)h(b)q +(et)o(w)o(een)g(the)0 295 y(pro)q(cessors.)0 374 y(The)h(\014nal)e +(column)g(giv)o(es)h(the)g Fn(sp)n(e)n(e)n(dup)h Fp(of)f(the)g +(implemen)o(tation)d(on)j(a)g(large)f(n)o(um)o(b)q(er)h(of)f(pro)q +(cessors.)27 b(There)18 b(will)c(b)q(e)0 423 y(a)19 b(tendency)h(to)f +(read)g(do)o(wn)f(this)h(column)f(and)g(use)i(the)f(absolute)g(sp)q +(eedup)i(or)e(relativ)o(e)f(e\016ciencies)i(to)f(determine)0 +473 y(something)d(ab)q(out)h(a)g(pair)g(of)g(algorithms.)26 +b(It)18 b(is)f(v)o(ery)h(hard)f(and)g(misleading)e(to)i(compare)g(t)o +(w)o(o)g(algorithms)e(in)i(this)0 523 y(manner.)g(There)e(are)f(\014v)o +(e)h(ma)r(jor)d(concerns)j(when)g(comparing)d(sp)q(eedup)j(n)o(um)o(b)q +(ers.)0 602 y(The)i(\014rst)g(concern)h(deals)e(with)g(sim)o(ulation)e +(results.)27 b(It)16 b(is)g(often)h(di\016cult)f(to)g(determine)g(ho)o +(w)g(a)g(parallel)g(algorithm)0 652 y(will)c(b)q(eha)o(v)o(e)j(on)e(a)h +(large)g(n)o(um)o(b)q(er)f(of)g(mac)o(hines,)g(due)h(to)g(o)o(v)o +(er-simpli\014cation)d(of)i(the)i(sim)o(ulation)c(mo)q(del)h(b)q(eing)i +(used.)0 731 y(The)j(second)g(ma)r(jor)d(concern)k(deals)e(with)g(the)g +(test)h(domain.)23 b(Arti\014cial)15 b(trees)j(rarely)e(re\015ect)i +(the)e(unique)h(prop)q(erties)0 780 y(of)12 b(searc)o(hing)i(a)f(real)g +(c)o(hess/c)o(hec)o(k)o(ers/Othe)q(llo)h(tree,)g(and)f(migh)o(t)e(b)q +(e)j(geared)f(to)o(w)o(ards)g(illustrating)f(the)i(strength)g(of)e(the) +0 830 y(parallel)h(algorithm)e(\(Plaat)i Fn(et.)19 b(al)p +Fp(,)13 b(1996\).)0 909 y(The)19 b(third)g(ma)r(jor)f(concern)i(is)f +(that)g(w)o(e)g(cannot)g(tak)o(e)g(the)g(real)g(trees)i(at)e(face)g(v)n +(alue)f(either,)j(since)e(the)h(sequen)o(tial)0 959 y(algorithm)11 +b(used)j(to)f(generate)i(the)f(tree)g(ma)o(y)e(not)h(b)q(e)h(an)f +(e\016cien)o(t)h(searc)o(her)h(\(with)e(resp)q(ect)j(to)d(the)h(minim)o +(al)c(tree)15 b(size\).)0 1009 y(This)f(could)f(b)q(e)h(caused)h(b)o(y) +e(lea)o(ving)g(out)g(k)o(ey)h(mo)o(v)o(e)e(ordering)h(tec)o(hniques,)i +(suc)o(h)f(as)g(a)f(su\016cien)o(tly)h(large)f(transp)q(osition)0 +1059 y(table,)g(iterativ)o(e)g(deep)q(ening)h(or)f(killer)f(mo)o(v)o +(es.)k(A)d(p)q(o)q(or)g(searc)o(her)i(will)d(yield)g(more)g(opp)q +(ortunities)h(for)g(parallelism,)d(and)0 1108 y(ma)o(y)i(increase)j +(the)g(sp)q(eedup)g(ac)o(hiev)o(ed)f(b)o(y)g(the)g(algorithm.)0 +1187 y(The)h(fourth)f(concern)i(deals)f(with)f(the)h(v)n(aried)f(branc) +o(hing)g(factor)h(of)e(the)i(game-trees)g(in)f(di\013eren)o(t)h(test)h +(domains.)i(The)0 1237 y(a)o(v)o(erage)f(branc)o(hing)f(factor)g(in)h +(c)o(hess)h(\(38\))e(is)g(higher)h(than)f(the)i(a)o(v)o(erage)e(branc)o +(hing)h(factor)f(in)g(c)o(hec)o(k)o(ers)j(\(8)d(for)g(non-)0 +1287 y(capture)h(p)q(ositions\).)25 b(T)m(aking)14 b(capture)j(p)q +(ositions)f(in)o(to)g(accoun)o(t,)g(the)h(a)o(v)o(erage)f(branc)o(hing) +g(factor)g(of)f(c)o(hec)o(k)o(ers)j(is)e(less)0 1337 +y(than)f(3)g(\(Lu,)g(1993\).)21 b(The)15 b(breadth)h(of)e(c)o(hec)o(k)o +(ers)j(trees)g(yield)e(sp)q(eedups)i(that)e(are)g(m)o(uc)o(h)f(smaller) +g(in)h(magnitude)e(than)0 1386 y(the)h(same)f(algorithm)f(implem)o(en)o +(ted)g(on)i(a)g(c)o(hess)h(program.)0 1465 y(The)h(\014nal)g(concern)h +(deals)f(with)g(the)h(sp)q(eed)g(of)f(the)g(pro)q(cessor)i(v)o(ersus)f +(the)g(sp)q(eed)h(of)d(the)i(net)o(w)o(ork.)24 b(If)16 +b(the)h(algorithm)0 1515 y(w)o(as)i(tested)i(on)e(slo)o(w)g(pro)q +(cessors)i(with)e(a)g(fast)g(net)o(w)o(ork)h(linking)d(them,)i(the)h +(algorithm)d(ma)o(y)g(not)i(yield)g(the)h(same)0 1565 +y(p)q(erformance)14 b(when)g(using)g(faster)g(pro)q(cessors)i(and/or)e +(a)f(slo)o(w)o(er)h(net)o(w)o(ork.)0 1644 y(In)f(short,)g(it)g(is)g +(nearly)g(imp)q(ossible)e(to)i(ob)r(jectiv)o(ely)g(compare)f(sp)q +(eedups)j(or)e(e\016ciencies)i(for)d(the)i(di\013eren)o(t)g(implemen)o +(ta-)0 1694 y(tions)g(giv)o(en)f(in)h(T)m(able)f(2.)0 +1882 y Fl(2.3)48 b(Descriptio)o(ns)13 b(of)i(Earlier)f(Algorithms)f +(\(1979-June)g(1987\))0 1998 y Fp(Baudet's)20 b(w)o(ork)f(\(1978\))g +(describ)q(ed)i(a)e(metho)q(d)g(of)g(doing)f Fn(p)n(ar)n(al)r(lel)h +(aspir)n(ation)h(se)n(ar)n(ch)p Fp(.)34 b(Aspiration)19 +b(searc)o(h)i(can)e(b)q(e)0 2048 y(describ)q(ed)e(as)f(the)g(shrinking) +f(of)g(the)h(initial)d Fk(\013\014)18 b Fp(windo)o(w)d(to)g(a)g(small)e +(range.)23 b(If)15 b(the)h(minima)o(x)d(v)n(alue)h(lies)i(within)e(the) +0 2098 y(smaller)g(range,)i(the)h(correct)g(minima)o(x)c(v)n(alue)i +(could)h(b)q(e)g(returned)i(while)d(visiting)g(less)h(leaf)g(no)q(des)g +(than)g(w)o(ould)f(ha)o(v)o(e)0 2147 y(b)q(een)g(visited)f(b)o(y)g +(using)f(the)i(larger)e(range.)0 2226 y(In)k(Baudet's)g(w)o(ork,)g(the) +g(initial)e Fk(\013\014)k Fp(windo)o(w)d(is)h(sub)q(divided)g(in)o(to)f +Fk(p)h Fp(disjoin)o(t)e(windo)o(ws,)i(where)h Fk(p)e +Fp(is)h(the)g(n)o(um)o(b)q(er)g(of)0 2276 y(pro)q(cessors)h(used.)25 +b(Eac)o(h)16 b(pro)q(cessor)i(searc)o(hes)g(the)f(game-tree)e(with)h +(those)g(smaller)f(windo)o(ws.)24 b(When)16 b(a)f(pro)q(cessor)j(is)0 +2326 y(\014nished,)e(it)f(can)h(use)g(the)h(result)f(of)f(the)h(searc)o +(h)h(\(if)e(it)g(is)g(a)h(fail)e(lo)o(w)g(or)i(fail)e(high\))h(to)g +(further)i(reduce)g(the)f(size)g(of)f(the)0 2376 y(windo)o(ws)c +(examined.)16 b(Once)d(a)f(pro)q(cessor)i(determines)e(the)g(minim)o +(ax)d(v)n(alue,)i(all)f(pro)q(cessors)k(are)f(stopp)q(ed)f(immediately) +l(.)0 2455 y(Akl,)f(Barnard)g(and)g(Doran)f(\(1982\))g(w)o(ere)i(the)f +(\014rst)h(to)f(prop)q(ose)g(and)g(sim)o(ulate)e(a)i +Fn(mandatory)h(work)g(\014rst)e Fp(algorithm.)15 b(The)0 +2504 y(idea)f(of)g(the)h(algorithm)d(is)i(to)g(explore)h(in)f(parallel) +f(those)i(lea)o(v)o(es)g(that)f(w)o(ould)g(b)q(e)h(examined)e(if)h(the) +h(tree)h(w)o(as)e(p)q(erfectly)0 2554 y(ordered.)19 b(There)c(are)f(t)o +(w)o(o)g(categories)g(of)f(no)q(des)i(that)f(corresp)q(ond)h(to)f(the)g +(cut)h(and)e(all)g(no)q(des)h(from)e(the)j(minim)o(al)10 +b(tree.)0 2604 y(Left-hand)15 b(no)q(des)h(are)f(similar)d(to)j(all)f +(no)q(des,)i(and)e(all)g(of)g(their)i(successors)h(are)f(ev)n(aluated)f +(at)f(di\013eren)o(t)i(pro)q(cessors)h(in)0 2654 y(parallel.)23 +b(Righ)o(t-hand)15 b(no)q(des)i(are)f(similar)e(to)i(cut)g(no)q(des,)h +(and)f(only)g(one)g(successor)i(pro)q(cess)g(can)e(b)q(e)h(spa)o(wned)g +(from)0 2704 y(them)c(at)h(a)f(time.)p eop +%%Page: 6 6 +6 5 bop 0 50 a Fp(6)603 b(ICCA)14 b(Journal)f(Submission)601 +b(June)15 b(12,)e(1996)0 195 y(The)h(\014rst)h(branc)o(h)f(to)g(b)q(e)g +(ev)n(aluated)g(from)e(a)i(righ)o(t-hand)f(no)q(de)h(migh)o(t)e +(establish)i(a)f(score)j(that)d(signi\014es)h(a)g(cuto\013.)19 +b(The)0 245 y(pro)q(cess)d(con)o(trolling)e(a)g(righ)o(t-hand)g(no)q +(de)h(is)f(forced)h(to)g(stall)f(and)g(\014nd)h(out)f(the)h(v)n(alue)f +(of)g(the)i(sibling)d(left-hand)h(no)q(de.)0 295 y(Once)20 +b(this)f(sibling)f(left-hand)g(no)q(de)h(has)g(a)g(v)n(alue,)g(the)g(t) +o(w)o(o)f(v)n(alues)h(are)g(compared)f(and)h(the)g(program)f +(determines)0 345 y(whether)g(or)f(not)g(the)h(righ)o(t-hand)e(no)q(de) +h(can)h(b)q(e)f(pruned)h(based)g(on)e(the)i(\014rst)g(branc)o(h)f(that) +g(w)o(as)g(searc)o(hed.)29 b(If)17 b(there)0 394 y(is)e(no)f(cuto\013)i +(y)o(et)f(for)f(the)i(righ)o(t-hand)e(no)q(de,)h(the)g(subsequen)o(t)i +(branc)o(hes)f(in)e(the)i(righ)o(t-hand)e(no)q(de)h(are)g(examined)f +(one)0 444 y(after)i(the)g(other)h(sequen)o(tially)m(.)22 +b(This)16 b(will)e(stop)i(when)g(the)g(righ)o(t-hand)f(no)q(de)i(gets)f +(pruned,)h(or)e(the)h(righ)o(t-hand)g(no)q(de)0 494 y(establishes)c(a)f +(v)n(alue)f(higher)h(than)g(the)h(sibling)d(left-hand)i(no)q(de)g +(after)g(exploring)g(all)e(branc)o(hes.)19 b(This)11 +b(allo)o(ws)e(the)j(sc)o(heme)0 544 y(to)g(determine)f(most)g(of)g(the) +i(direct)f(shallo)o(w)f(cuto\013s)h(that)g(w)o(ould)f(o)q(ccur)i(in)e +(the)i(sequen)o(tial)f Fk(\013\014)i Fp(algorithm,)9 +b(but)j(neglects)0 594 y(some)h(of)g(the)i(deep)g(cuto\013s)f(p)q +(ossible.)0 672 y(Fink)o(el)k(and)h(Fish)o(burn)g(\(1982\))f(in)o(tro)q +(duced)h(the)h(concept)g(of)e Fn(tr)n(e)n(e)g(splitting)p +Fp(.)32 b(In)19 b(their)g(algorithm,)e(a)h(static)i(tree)g(of)0 +722 y(pro)q(cessors)c(is)e(o)o(v)o(erlaid)f(on)g(top)h(of)g(a)f +(game-tree.)18 b(The)c(ro)q(ot)g(of)g(the)g(game-tree)g(is)g(giv)o(en)f +(to)h(the)g(ro)q(ot)g(of)g(the)g(pro)q(cessor)0 772 y(tree.)19 +b(The)14 b(pro)q(cessor)h(ro)q(ot)f(generates)h(all)d(the)i(mo)o(v)o +(es)e(at)i(ply)f(1)g(of)g(the)h(game-tree,)f(and)g(hands)h(them)e(o)o +(v)o(er)i(to)f(the)h(\014rst)0 822 y(ply)h(of)f(the)i(pro)q(cessor)h +(tree.)23 b(This)15 b(pro)q(cess)i(con)o(tin)o(ues)f(un)o(til)e(w)o(e)h +(reac)o(h)h(the)g(lea)o(v)o(es)f(of)g(the)h(pro)q(cessor)h(tree,)f +(where)g(the)0 872 y(pro)q(cessors)g(execute)f(the)g(sequen)o(tial)e +Fk(\013\014)j Fp(algorithm)11 b(to)j(the)g(required)h(searc)o(h)f +(depth.)19 b(The)14 b(no)q(des)h(in)e(the)h(\014rst)g +Fk(k)h Fp(lev)o(els)0 922 y(of)c(the)i(tree,)g(where)g +Fk(k)f Fp(is)g(the)g(depth)h(of)e(the)i(pro)q(cessor)g(tree,)g(can)f(b) +q(e)h(ev)n(aluated)e(in)h(parallel.)k(The)c(only)f(sync)o(hronization)0 +971 y(p)q(oin)o(t)i(o)q(ccurs)j(at)d(the)i(ro)q(ot)f(of)f(the)i(tree)g +(b)q(et)o(w)o(een)g(searc)o(hes)h(at)e(di\013eren)o(t)g(depths.)0 +1050 y(The)20 b Fn(PV-Split)f Fp(algorithm)e(\(Campb)q(ell,)h(1981;)j +(Marsland)e(and)g(Campb)q(ell,)g(1982\))f(is)i(a)f(natural)g(extension) +h(of)f(tree)0 1100 y(splitting,)12 b(based)i(on)g(the)g(regular)g +(structure)h(of)e(the)h(minima)o(l)c(game-tree)k(as)f(w)o(e)h(tra)o(v)o +(el)f(along)g(the)h(principal)f(v)n(ariation)0 1150 y(\(PV\).)19 +b(The)g(\014rst)h(stage)f(of)g(the)g(algorithm)e(in)o(v)o(olv)o(es)h(a) +g(recursiv)o(e)j(call)d(to)h(itself)f(as)h(it)g(tra)o(v)o(els)g(do)o +(wn)f(the)i(principal)0 1200 y(v)n(ariation.)g(Once)c(the)g(left)f +(subtree)i(of)d(a)h(PV)g(no)q(de)h(has)f(b)q(een)h(examined,)e(all)g +(of)g(the)i(other)f(subtrees)j(b)q(elo)o(w)c(that)i(PV)0 +1249 y(no)q(de)d(are)g(searc)o(hed)h(in)e(parallel)f(using)h(tree)i +(splitting.)j(After)c(all)e(of)h(the)h(subtrees)i(ha)o(v)o(e)d(b)q(een) +h(explored,)g(that)g(PV)g(no)q(de)0 1299 y(can)h(return)i(a)e(score)h +(to)f(the)h(PV)f(no)q(de)h(ab)q(o)o(v)o(e)f(it.)k(A)o(t)c(an)o(y)g(one) +h(time,)d(only)h(one)i(no)q(de's)f(subtrees)i(are)f(b)q(eing)f +(examined)0 1349 y(in)f(parallel)g(b)o(y)h(the)g(PV-Split)g(algorithm.) +0 1428 y(In)e(the)h(original)e(implem)o(en)o(tation)e(\(Marsland)j(and) +h(Campb)q(ell,)d(1982\),)h(the)i(PV-Split)f(algorithm)d(did)j(not)g +(use)h(minima)o(l)0 1478 y(windo)o(ws)g(or)g(other)h(searc)o(h)h +(enhancemen)o(t)e(tec)o(hniques)i(common)c(in)h(game-pla)o(ying)f +(programs.)16 b(T)m(o)d(sim)o(ulate)e(these)k(or-)0 1528 +y(dering)f(tec)o(hniques,)g(strongly-ordered)g(game-trees)g(w)o(ere)g +(arti\014cially)e(created.)20 b(The)14 b(PV-Split)f(algorithm)e(w)o(as) +i(sho)o(wn)0 1577 y(to)i(ha)o(v)o(e)h(a)f(b)q(etter)i(sp)q(eedup)g +(than)f(tree)g(splitting)f(for)g(the)h(sim)o(ulated)e(strongly-ordered) +i(trees.)25 b(There)17 b(are)f(n)o(umerous)0 1627 y(published)f(exp)q +(erimen)o(ts)g(with)f(the)i(PV-Split)e(algorithm)e(\(Marsland)j(and)g +(P)o(op)q(o)o(wic)o(h,)f(1985;)g(Newb)q(orn,)h(1985;)f(Mars-)0 +1677 y(land,)h(Olafsson)h(and)g(Sc)o(hae\013er,)h(1985\).)23 +b(The)16 b(b)q(est)h(rep)q(orted)h(e\016ciency)f(in)e(these)i(implemen) +o(tations)c(w)o(as)j(a)f(sp)q(eedup)0 1727 y(of)f(3.75)g(on)h(5)g(pro)q +(cessors)i(for)d(Marsland,)h(Olafsson)g(and)f(Sc)o(hae\013er)j +(\(1985\).)j(The)c(ma)r(jor)d(problem)h(in)g(the)i(implemen-)0 +1777 y(tation)g(of)g(PV-Split)g(is)h(a)f(large)g(sync)o(hronization)h +(o)o(v)o(erhead,)g(since)g(man)o(y)e(pro)q(cessors)k(are)e(often)g +(forced)g(to)f(w)o(ait)g(for)0 1826 y(long)d(p)q(erio)q(ds)i(of)f(time) +e(while)i(the)h(last)f(unev)n(aluated)g(branc)o(h)g(of)g(a)g(PV)g(no)q +(de)h(is)f(ev)n(aluated.)k(Newb)q(orn)d(suggested)h(that)0 +1876 y(idle)f(pro)q(cessors)j(should)d(assist)h(those)g(pro)q(cessors)i +(that)e(are)g(still)e(busy)i(b)o(y)g(creating)f(a)h(new)g(split)f(no)q +(de)h(that)f(the)h(idle)0 1926 y(pro)q(cessors)g(can)e(w)o(ork)g(on)f +(\(Newb)q(orn,)i(1985\).)0 2005 y(The)c Fn(Key)h(No)n(de)g +Fp(metho)q(d)e(\(Lindstrom,)f(1983\))h(attempts)h(a)f(di\013eren)o(t)i +(metho)q(d)e(for)h(attac)o(king)f(the)h(tree.)18 b(The)12 +b(mandatory)0 2055 y(w)o(ork)g(\014rst)h(tree)g(is)f(dynamically)d(ev)o +(olv)o(ed)j(and)g(stored)h(within)e(a)h(cen)o(tralized)h(message)f +(queue.)18 b(Eac)o(h)13 b(pro)q(cessor)h(tak)o(es)e(a)0 +2105 y(message)h(from)e(the)j(queue,)g(creates)h(new)f(messages)f +(based)h(on)f(the)h(t)o(yp)q(e)g(of)e(message,)h(and)g(adds)g(the)h +(information)d(in)o(to)0 2154 y(the)j(tree,)g(as)g(required.)k(F)m(or) +13 b(example,)f(if)h(a)g(message)g(is)g(sen)o(t)h(to)f(a)g(leaf)g(no)q +(de)h(within)e(the)i(tree,)h(the)f(no)q(de)f(is)h(ev)n(aluated,)0 +2204 y(and)h(the)h(v)n(alue)f(is)h(sen)o(t)g(to)g(the)g(paren)o(t.)23 +b(A)o(t)16 b(t)o(yp)q(e)g(1)f(and)g(t)o(yp)q(e)h(3)g(no)q(des,)g +(messages)g(for)f(eac)o(h)h(of)f(the)h(c)o(hildren)g(can)f(b)q(e)0 +2254 y(sen)o(t)h(out)f(at)g(the)h(same)e(time)g(\(yielding)g(nearly)h +(ideal)f(parallelism\).)20 b(Sync)o(hronization)15 b(o)q(ccurs)h(at)f +(bad)g(t)o(yp)q(e)h(2)f(no)q(des,)0 2304 y(where)g(eac)o(h)f(mo)o(v)o +(e)f(is)g(tried)i(in)e(turn)h(in)g(an)g(attempt)f(to)g(\014nd)h(the)h +(cuto\013.)0 2383 y(The)j(Key)h(No)q(de)f(metho)q(d)f(w)o(as)h(sim)o +(ulated)e(using)i(arti\014cial)f(trees,)j(where)f(the)f(score)i(of)d +(the)h(paren)o(t)h(w)o(as)f(similar)d(to)0 2433 y(the)g(score)g(of)f +(the)h(c)o(hildren.)k(The)c(metho)q(d)e(w)o(as)h(compared)g(against)f +(the)i(classical)f Fk(\013\014)j Fp(algorithm.)f(In)e(the)h(sim)o +(ulation,)0 2482 y(eac)o(h)f(message)f(w)o(as)h(assumed)f(to)g(b)q(e)h +(pro)q(cessed)i(in)d(unit)g(time,)f(and)h(some)g(e\013orts)h(w)o(ere)h +(made)d(to)h(sim)o(ulate)f(con)o(ten)o(tion)0 2532 y(for)j(the)g(no)q +(des)h(within)e(the)h(tree.)22 b(Ov)o(er)16 b(10)e(test)i(runs,)g(the)f +(Key)h(No)q(de)f(metho)q(d)f(ac)o(hiev)o(ed)h(a)g(sp)q(eedup)h(of)e +(12.57)g(on)g(20)0 2582 y(pro)q(cessors,)i(using)d(a)h(tree)h(depth)g +(of)e(5)g(and)h(a)g(breadth)g(of)g(4.)0 2661 y(Newb)q(orn's)f(\(1988\)) +f(algorithm,)d Fn(Unsynchr)n(onize)n(d)15 b(Iter)n(atively)d(De)n(ep)n +(ening)j(Par)n(al)r(lel)e(A)o(lpha-Beta)g(Se)n(ar)n(ch)p +Fp(,)g(w)o(as)f(the)h(\014rst)p eop +%%Page: 7 7 +7 6 bop 467 50 a Fe(A)14 b(T)m(axonom)o(y)d(of)i(P)o(arallel)g(Game-T)m +(ree)g(Searc)o(h)h(Algorithms)465 b Fp(7)0 195 y(attempt)13 +b(to)g(async)o(hronously)h(start)g(the)g(next)g(lev)o(el)f(of)g(an)g +(iterativ)o(ely)g(deep)q(ened)i(searc)o(h)g(instead)f(of)f(sync)o +(hronizing)g(at)0 245 y(the)i(ro)q(ot)e(of)h(the)g(game-tree.)k(The)c +(mo)o(v)o(es)f(from)f(the)j(ro)q(ot)f(p)q(osition)f(are)h(partitioned)g +(among)d(the)k(pro)q(cessors,)h(and)d(the)0 295 y(pro)q(cessors)j +(searc)o(h)g(their)e(o)o(wn)g(subset)h(of)f(the)h(mo)o(v)o(es)d(with)i +(iterativ)o(e)g(deep)q(ening.)20 b(Eac)o(h)15 b(pro)q(cessor)g(is)f +(giv)o(en)g(the)h(same)0 345 y(initial)e(windo)o(w,)g(but)h(some)g(of)g +(the)h(pro)q(cessors)i(ma)o(y)12 b(ha)o(v)o(e)j(c)o(hanged)f(their)h +(windo)o(ws,)f(based)h(on)f(the)h(searc)o(h)h(results)g(of)0 +394 y(their)e(mo)o(v)o(es.)k(The)c(UIDP)m(ABS)h(algorithm)c(then)k(com) +o(bines)e(the)i(results)g(once)g(a)f(predetermined)g(time)f(limit)f +(has)i(b)q(een)0 444 y(reac)o(hed.)19 b(Some)11 b(of)g(the)i(mo)o(v)o +(es)e(ma)o(y)f(ha)o(v)o(e)i(b)q(een)h(ev)n(aluated)f(to)g(larger)g +(depths)h(than)f(those)h(on)f(other)h(pro)q(cessors,)h(whic)o(h)0 +494 y(ma)o(y)e(yield)h(a)h(b)q(etter)h(qualit)o(y)e(mo)o(v)o(e)f(c)o +(hoice.)0 573 y(Sc)o(hae\013er's)h Fn(Dynamic)h(PV-Split)e +Fp(algorithm)d(\(1989\))i(is)h(an)f(enhancemen)o(t)i(that)f(allo)o(ws)e +(for)i(dynamic)e(pro)q(cessor)k(trees)f(in)0 623 y(the)f(PV-Split)e +(framew)o(ork.)16 b(Instead)c(of)e(the)i(\014xed)f(pro)q(cessor)i(tree) +g(mec)o(hanism)8 b(that)j(w)o(as)g(used)h(in)f(PV-Split,)g(pro)q +(cessors)0 672 y(in)h(Dynamic)f(PV-Split)h(\(DPVS\))h(are)h(allo)o(w)o +(ed)d(to)i(dynamically)c(attac)o(h)k(themselv)o(es)g(to)g(other)g(busy) +g(pro)q(cessors,)i(whic)o(h)0 722 y(eac)o(h)21 b(run)g(the)g(PV-Split)e +(algorithm.)35 b(This)20 b(allo)o(ws)g(for)g(parallelism)d(along)i(the) +i(pseudo-principal)f(v)n(ariation)f(\(the)0 772 y(leftmost)g(branc)o +(h\))i(b)q(eing)f(searc)o(hed)h(b)o(y)f(an)o(y)g(pro)q(cessor,)j(and)d +(allo)o(ws)f(for)h(m)o(ultiple)e(split)h(no)q(des.)38 +b(The)21 b(pro)q(cess)h(of)0 822 y(c)o(ho)q(osing)11 +b(the)i(new)f(split)f(no)q(de)h(started)h(b)o(y)e(allo)q(cating)f +(branc)o(hes)j(at)f(t)o(yp)q(e)g(1)f(or)h(t)o(yp)q(e)g(3)f(no)q(des,)i +(and)e(allo)o(w)o(ed)g(parallelism)0 872 y(at)k(t)o(yp)q(e)h(2)f(no)q +(des)h(once)g(the)g(branc)o(hes)h(from)d(all)g(t)o(yp)q(e)i(1)f(and)g +(3)g(no)q(des)h(w)o(ere)h(allo)q(cated.)22 b(All)14 b(requests)k(for)d +(w)o(ork)g(w)o(en)o(t)0 922 y(through)e(a)g(Con)o(troller)f(pro)q +(cess,)i(whic)o(h)f(w)o(as)g(used)h(to)e(balance)h(the)h(dynamic)d(pro) +q(cessor)k(tree)f(amongst)d(the)j(pro)q(cessors)0 971 +y(that)g(had)g(the)g(most)f(w)o(ork)g(to)h(do,)f(as)h(w)o(ell)f(as)h +(assign)g(w)o(ork)g(from)e(the)i(curren)o(t)i(no)q(de)e(on)g(the)g +(principal)f(v)n(ariation.)0 1050 y(Unfortunately)m(,)j(the)h(increase) +h(in)d(searc)o(h)j(o)o(v)o(erhead)f(comp)q(ensated)f(for)g(the)h +(decrease)i(in)d(sync)o(hronization)g(o)o(v)o(erhead.)0 +1100 y(The)e(searc)o(h)h(o)o(v)o(erhead)g(arose)f(from)e(additional)g +(pro)q(cessors,)k(once)e(they)h(had)e(b)q(een)i(reassigned,)g +(attempting)d(to)i(searc)o(h)0 1150 y(some)c(subtrees)i(without)f(the)g +(b)q(ene\014t)h(of)d(the)j(ordering)e(information)e(from)h(the)i(searc) +o(hed)h(sibling)d(subtrees.)19 b(By)11 b(allo)o(wing)0 +1200 y(a)f(shared)h(T)m(able)f(Manager)g(to)g(handle)g(all)f(transp)q +(osition)h(table)g(requests,)j(along)c(with)h(a)g(mec)o(hanism)d(for)j +(rebroadcasting)0 1249 y(history)19 b(table)h(information,)d(the)j(sp)q +(eedup)h(for)e Fc(P)l(araPhoenix)j Fp(w)o(as)d(impro)o(v)o(ed)f(to)h +(7.64)g(on)g(19)g(pro)q(cessors.)37 b(The)0 1299 y(mec)o(hanism)12 +b(describ)q(ed)k(in)e(the)h(pap)q(er)g(tap)q(ered)h(o\013)e(once)h +(more)f(than)g(10)g(pro)q(cessors)j(w)o(ere)e(in)o(v)o(olv)o(ed;)e(the) +i(o)o(v)o(erhead)g(of)0 1349 y(going)e(through)h(a)f(single)h(T)m(able) +f(Manager)h(increased)h(linearly)e(as)h(more)f(pro)q(cessors)j(w)o(ere) +f(added.)0 1428 y(The)c Fn(Enhanc)n(e)n(d)i(PV-Split)d +Fp(algorithm)e(\(Hy)o(att,)i(1988;)g(Hy)o(att,)h(Suter)g(and)g(Nelson,) +g(1989\))e(is)h(a)g(di\013eren)o(t)i(t)o(yp)q(e)f(of)f(dynamic)0 +1478 y(allo)q(cation)f(to)h(the)h(PV-Split)f(algorithm.)k(In)d(the)g +(Enhanced)g(PV-Split)f(\(EPVS\))i(algorithm,)c(when)j(a)f(pro)q(cessor) +i(b)q(ecame)0 1528 y(idle,)j(all)e(of)i(the)h(other)g(pro)q(cessors)h +(w)o(ere)f(stopp)q(ed)g(and)f(a)g(new)h(split)f(no)q(de)g(w)o(ould)f(b) +q(e)i(created)h(t)o(w)o(o)e(ply)f(further)i(do)o(wn)0 +1577 y(the)f(tree)g(of)e(one)h(of)g(the)g(busy)g(pro)q(cessors.)21 +b(All)13 b(pro)q(cessors)j(w)o(ould)d(then)i(start)f(to)g(w)o(ork)g(on) +g(the)g(smaller)f(subtree.)20 b(The)0 1627 y(transp)q(osition)14 +b(table)g(ensured)h(that)f(the)h(smaller)d(subtree)k(had)d(not)h(b)q +(een)h(explored)f(y)o(et.)0 1706 y(Using)i(a)g(Sequen)o(t)h(Balance)f +(21000)f(computer,)h(the)h(sp)q(eedup)g(of)f(EPVS)h(w)o(as)f(5.93)e(on) +i(16)g(pro)q(cessors.)27 b(On)16 b(the)h(same)0 1756 +y(mac)o(hine)d(and)h(test)h(set,)g(PV-Split)f(ac)o(hiev)o(ed)g(a)g(sp)q +(eedup)i(of)e(4.57)f(on)h(16)f(pro)q(cessors.)24 b(The)16 +b(authors)g(p)q(oin)o(t)e(out)h(at)g(the)0 1806 y(end)e(of)f(their)h +(pap)q(er)g(that)f(the)h(a)o(v)o(erage)g(branc)o(hing)f(factor)h(of)e +(a)i(c)o(hess)h(tree)f(is)g(38;)e(their)i(algorithm)d(could)i(not)h +(use)g(64)f(or)0 1856 y(more)g(pro)q(cessors)j(e\013ectiv)o(ely)f +(since)g(all)e(pro)q(cessors)j(co-ordinate)e(at)g(one)h(split)e(no)q +(de)i(at)f(an)o(y)f(giv)o(en)h(time.)j(Th)o(us,)d(to)g(use)0 +1905 y(massiv)o(ely)e(parallel)h(arc)o(hitectures)k(\(with)d(h)o +(undreds)h(or)f(thousands)h(of)f(pro)q(cessors\),)i(a)e(greater)h(n)o +(um)o(b)q(er)f(of)f(split)h(no)q(des)0 1955 y(m)o(ust)g(b)q(e)h(a)o(v)n +(ailable)e(for)i(parallel)e(w)o(ork.)0 2116 y Fl(2.4)48 +b(The)15 b(Adv)o(en)o(t)f(Of)i(Massiv)o(e)f(P)o(aralleli)o(sm)e(\(July) +h(1987-presen)o(t\))0 2226 y Fp(F)m(elten)19 b(and)g(Otto)h(\(1988\))e +(implemen)o(ted)f(the)j(\014rst)g(parallel)e Fk(\013\014)j +Fp(algorithm)c(that)i(pla)o(y)o(ed)g(c)o(hess)h(on)f(more)f(than)h(32)0 +2276 y(pro)q(cessors.)k(Their)15 b Fc(W)-5 b(a)m(yCool)17 +b Fp(program)c(decided)j(on)f(the)h(t)o(yp)q(e)f(of)f(parallelism)e(to) +j(b)q(e)h(applied)e(at)h(a)f(no)q(de)i(based)f(on)0 2326 +y(whether)f(there)f(w)o(as)f(a)h(transp)q(osition)f(table)g(en)o(try)h +(in)f(the)h(system.)k(If)12 b(a)g(transp)q(osition)g(table)g(en)o(try)h +(w)o(as)f(a)o(v)n(ailable,)e(the)0 2376 y(mo)o(v)o(e)j(stored)i(w)o +(ould)e(lik)o(ely)g(b)q(e)i(the)g(b)q(est)g(mo)o(v)o(e,)e(and)h(it)g(w) +o(as)g(w)o(orth)g(w)o(aiting)f(for)h(a)g(b)q(ound)g(to)h(b)q(e)f +(returned)i(from)d(that)0 2425 y(transp)q(osition)h(table)g(mo)o(v)o +(e.)j(Once)f(that)e(b)q(ound)g(had)g(b)q(een)h(returned)h(\(assuming)d +(that)h(the)h(no)q(de)f(is)g(not)g(immediately)0 2475 +y(pruned\),)d(all)d(of)h(the)i(other)f(successors)i(could)e(b)q(e)g +(explored)g(in)f(parallel.)15 b(If)10 b(there)h(is)e(no)g(transp)q +(osition)h(table)f(information,)0 2525 y(all)k(subtrees)j(could)d(b)q +(e)i(computed)e(in)h(parallel.)0 2604 y(The)f(pro)q(cessors)h(are)f +(hierarc)o(hically)e(organized)h(in)o(to)g(a)g(tree)h(structure)h(at)e +(the)h(start)g(of)f(the)g(searc)o(h,)h(but)g(this)f(pro)q(cessor)0 +2654 y(tree)19 b(w)o(ould)e(b)q(e)h(restructured)j(as)c(necessary)m(.) +31 b(The)18 b(sc)o(heme)g(relied)g(on)g(a)f(globally)e(shared)k(transp) +q(osition)f(table)f(and)0 2704 y(a)f(load)f(balancing)g(sc)o(heme)i +(that)f(is)g(similar)e(to)i(the)g(one)h(used)g(in)f(EPVS.)g(The)h(load) +e(balancing)g(sc)o(heme)h(reorganized)p eop +%%Page: 8 8 +8 7 bop 0 50 a Fp(8)603 b(ICCA)14 b(Journal)f(Submission)601 +b(June)15 b(12,)e(1996)0 195 y(searc)o(hers)j(in)o(to)d(new)i(teams)e +(that)h(searc)o(h)h(a)e(\\hot)h(sp)q(ot")g(in)f(parallel.)0 +274 y(F)m(eldmann)8 b Fn(et.)17 b(al)k Fp(implem)o(en)o(ted)8 +b(a)h(parallel)g Fk(\013\014)j Fp(algorithm)7 b(on)i(a)h(large)f(net)o +(w)o(ork)h(of)f(T)m(ransputers)i(for)e(the)h(c)o(hess)i(program)0 +324 y Fc(Zugzw)l(ang)g Fp(\(V)m(orn)o(b)q(erger)g(and)g(Monien,)f +(1987;)g(F)m(eldmann)e Fn(et.)18 b(al)p Fp(,)11 b(1989;)g(F)m(eldmann,) +f(1993\).)16 b(The)c(algorithm)d(in)o(v)o(olv)o(es)0 +374 y(the)j(use)g(of)e(the)i Fn(Y)m(oung)h(Br)n(others)e(Wait)i(Conc)n +(ept)e Fp(\(YBW)o(C\))h(to)f(determine)g(when)g(no)q(des)h(can)f(b)q(e) +h(giv)o(en)f(out)g(in)f(a)h(parallel)0 423 y(manner.)0 +502 y(In)19 b(a)g(game-tree)g(that)g(has)h(near)f(p)q(erfect)i +(ordering,)f(there)h(is)e(a)g(high)g(probabilit)o(y)e(that)i(a)g(no)q +(de)h(is)f(an)g(all)f(no)q(de)i(if)0 552 y(w)o(e)e(ev)n(aluate)g(the)h +(leftmost)d(branc)o(h)j(and)f(w)o(e)g(ha)o(v)o(e)g(not)g(pruned)h(the)f +(searc)o(h)h(b)q(elo)o(w)f(that)g(no)q(de.)31 b(The)19 +b(basic)f(Y)m(oung)0 602 y(Brothers)g(W)m(ait)c(Concept)j(states)h +(that)e(the)h(leftmost)d(branc)o(h)j(\(the)g(eldest)g(brother\))g(m)o +(ust)e(b)q(e)i(ev)n(aluated)f(b)q(efore)g(an)o(y)0 652 +y(other)c(branc)o(hes)h(\(the)g(y)o(oung)e(brothers\))i(can)f(b)q(e)g +(distributed)g(to)g(other)g(pro)q(cessors.)19 b(This)12 +b(is)f(not)h(necessarily)h(limited)c(to)0 702 y(the)15 +b(principal)f(v)n(ariation)f(\(i.e.)20 b(PV-Split\))14 +b(or)h(a)f(pseudo-principal)h(v)n(ariation)e(\(i.e.)20 +b(DPVS)15 b(or)f(EPVS\);)h(it)g(can)f(happ)q(en)0 751 +y(at)h(an)o(y)g(no)q(de)g(within)g(the)g(game-tree.)22 +b(The)15 b(algorithm)e(giv)o(en)h(in)h(T)m(ables)g(1)g(and)f(2)h(is)g +(YBW)o(C*.)22 b(This)15 b(v)n(ariation)e(do)q(es)0 801 +y(not)j(w)o(ait)f(for)h(y)o(oung)g(brothers)h(at)f(t)o(yp)q(e)h(3)f(no) +q(des)h(and)f(forces)h(sequen)o(tial)f(ev)n(aluation)f(of)g(all)g +(\\reasonable")h(mo)o(v)o(es)f(at)0 851 y(t)o(yp)q(e)f(2)g(no)q(des,)g +(as)g(describ)q(ed)i(in)d(F)m(eldmann's)f(Ph.D.)h(thesis)i(\(1993\).)0 +930 y(Hy)o(att)f(in)o(tro)q(duced)g Fn(Dynamic)i(T)m(r)n(e)n(e)e +(Splitting)f Fp(\(DTS\))h(in)f(his)h(Ph.D.)f(thesis)h(\(1988\).)j(One)e +(pro)q(cessor)h(is)d(giv)o(en)h(the)g(ro)q(ot)0 980 y(p)q(osition)h +(and)g(the)h(others)g(m)o(ust)f(try)h(to)f(\014nd)g(a)h(pro)q(cessor)h +(that)e(has)h(w)o(ork)f(to)g(steal.)23 b(If)15 b(a)g(pro)q(cessor)j +(has)d(w)o(ork,)g(DTS)0 1029 y(hands)k(out)f(a)h(branc)o(h)g(from)d +(the)k(lo)o(w)o(est)e(t)o(yp)q(e)h(3)f(no)q(de.)33 b(T)o(yp)q(e)19 +b(1)f(no)q(des)h(that)g(ha)o(v)o(e)f(b)q(ound)h(information)d(\(i.e.)31 +b(the)0 1079 y(leftmost)13 b(c)o(hild)h(has)g(b)q(een)h(ev)n(aluated\)) +f(are)h(considered)h(as)e(t)o(yp)q(e)h(3)f(no)q(des.)19 +b(F)m(ailing)12 b(this,)i(the)h(pro)q(cessor)h(will)d(hand)h(out)0 +1129 y(an)o(y)f(no)q(de)h(from)e(a)i(t)o(yp)q(e)g(1)f(no)q(de)h(that)g +(do)q(es)g(not)g(ha)o(v)o(e)f(an)o(y)h(b)q(ound)f(information.)i +(Finally)m(,)c(the)k(pro)q(cessor)g(w)o(ould)e(hand)0 +1179 y(out)e(branc)o(hes)h(from)d(t)o(yp)q(e)i(2)f(no)q(des)i(that)f +(ha)o(v)o(e)f(not)h(b)q(een)h(pruned)f(after)g(the)h(\014rst)f(c)o +(hild)f(has)h(b)q(een)h(completely)e(ev)n(aluated.)0 +1229 y(This)17 b(mak)o(es)f(the)i(algorithm)d(similar)g(\(in)h +(parallelization)g(and)h(sync)o(hronization)g(c)o(haracteristics\))i +(to)e(YBW)o(C*,)h(but)0 1279 y(allo)q(cates)c(the)g(w)o(ork)g(in)f(a)h +(di\013eren)o(t)h(order)f(than)g(YBW)o(C*)g(w)o(ould.)0 +1357 y(In)c(the)g(implemen)o(tation,)d(split)i(p)q(oin)o(ts)h(w)o(ere)g +(placed)g(in)f(shared)i(memory)c(so)j(that)g(other)g(pro)q(cessors)i +(had)e(an)f(opp)q(ortunit)o(y)0 1407 y(to)16 b(tak)o(e)g(branc)o(hes)h +(without)f(a)g(pro)q(cessor)h(con)o(tin)o(ually)e(lo)q(oking)f(for)i(w) +o(ork)g(to)g(do.)24 b(Using)16 b(a)f(Sequen)o(t)i(Balance)g(21000,)0 +1457 y(DTS)d(generated)h(an)e(a)o(v)o(erage)h(sp)q(eed-up)i(of)d(8.81)g +(o)o(v)o(er)g(16)h(pro)q(cessors.)0 1536 y Fn(Bound-and-Br)n(anch)f +Fp(\(F)m(erguson)e(and)g(Korf,)g(1988\))e(is)i(a)f(pro)q(cessor)j(allo) +q(cation)c(sc)o(heme)i(in)f(the)i(Distributed)f(T)m(ree)g(Searc)o(h)0 +1586 y(framew)o(ork)d({)i(a)g(general)g(framew)o(ork)e(for)i +(distributed)h(searc)o(h)g({)f(to)f(searc)o(h)j Fk(\013\014)g +Fp(trees)f(generated)h(b)o(y)e(an)f(Othello)h(program.)0 +1636 y(If)k(no)h(cuto\013)g(b)q(ound)g(exists)g(at)f(a)h(no)q(de,)g +(all)e(pro)q(cessors)k(are)e(assigned)g(to)f(the)h(\014rst)h(c)o(hild)e +(to)g(generate)i(a)f(cuto\013)g(b)q(ound)0 1685 y(as)j(quic)o(kly)f(as) +h(p)q(ossible.)29 b(If)18 b(a)f(cuto\013)i(b)q(ound)e(exists,)i(or)f +(has)g(b)q(een)h(established)f(b)o(y)g(completing)e(the)i(searc)o(h)h +(of)e(the)0 1735 y(\014rst)e(c)o(hild,)f(the)h(pro)q(cessors)h(are)f +(allo)q(cated)f(in)g(a)g(breadth-\014rst)i(manner)d(to)h(all)g +(remaining)e(c)o(hildren.)20 b(E\013ectiv)o(ely)m(,)14 +b(this)0 1785 y(sc)o(heme)f(giv)o(es)g(the)g(same)f(parallelism)e(and)j +(sync)o(hronization)g(pattern)h(describ)q(ed)g(in)f(the)g(YBW)o(C*)g +(algorithm.)i(F)m(or)d(the)0 1835 y(Bound-and-Branc)o(h)f(pro)q(cessor) +h(allo)q(cation)d(sc)o(heme,)h(F)m(erguson)h(and)f(Korf)g(get)h(sp)q +(eedups)h(of)e(12)f(while)h(studying)g(Othello)0 1885 +y(trees)16 b(using)e(a)h(32-pro)q(cessor)g(h)o(yp)q(ercub)q(e.)22 +b(The)15 b(searc)o(h)h(is)e(facilitated)g(b)o(y)g(a)h(distributed)g +(\\game-tree)f(represen)o(tation")0 1934 y(whic)o(h)g(is)g(similar)d +(to)j(a)f(transp)q(osition)h(table,)f(and)h(iterativ)o(e)g(deep)q +(ening.)0 2013 y(Hsu)i(describ)q(ed)h(a)e Fn(queue)n(d)i(pr)n(o)n(c)n +(essor)f(arr)n(ay)g(mo)n(del)f Fp(for)g(implemen)o(ting)d(a)j(parallel) +g Fk(\013\014)i Fp(algorithm)c(within)i(the)h(second)0 +2063 y(v)o(ersion)g(of)f(Deep)h(Though)o(t)f(\(1990\).)23 +b(The)16 b(host)g(w)o(orkstation)f(tra)o(v)o(erses)i(the)g(tree)f +(according)g(to)g(the)g(algorithm)d(un)o(til)0 2113 y(the)h +(parallelization)e(horizon)i(is)f(reac)o(hed.)20 b(The)14 +b(subproblems)f(are)i(then)f(placed)g(on)g(to)f(a)h(queue)g(that)g(can) +g(b)q(e)h(accessed)0 2163 y(b)o(y)g(a)h(large)f(n)o(um)o(b)q(er)g(of)g +(sp)q(ecialized)h(VLSI)g(pro)q(cessors.)25 b(All)15 b(of)g(the)h(pro)q +(cessors)i(are)e(connected)h(b)o(y)e(the)h(same)f(bus)h(to)0 +2213 y(this)i(queue.)31 b(The)18 b(pro)q(cessors)i(tak)o(e)e(a)o(w)o(a) +o(y)f(the)i(subproblems)e(placed)h(on)g(the)g(queue,)i(run)e(the)g +(silicon-enco)q(ded)h Fk(\013\014)0 2262 y Fp(routine)c(on)f(the)i(c)o +(hip,)e(and)h(return)h(the)f(results)h(to)f(another)g(queue)g(on)g(the) +g(bus)g(that)g(go)q(es)g(in)g(to)f(the)i(host)f(pro)q(cessor.)0 +2312 y(The)f(results)h(are)g(then)f(added)g(to)g(the)h(tree)g(represen) +o(tation)g(in)f(the)g(host)g(computer.)0 2391 y(Hsu)i(also)f(in)o(tro)q +(duced)h(the)g Fn(delaye)n(d)h(br)n(anch)g(tr)n(e)n(e)e(exp)n(ansion)i +Fp(\(DBTE\))f(algorithms)d(in)i(his)h(thesis.)23 b(These)17 +b(algorithms)0 2441 y(generate)f(t)o(w)o(o)e(queues)i(of)e(no)q(des.)20 +b(The)15 b(\014rst)h(queue)f(is)g(a)f(set)h(of)f(no)q(des)i(that)e +(corresp)q(ond)i(to)f(the)g Fk(\013\014)i Fp(minim)o(al)11 +b(tree,)k(in)0 2491 y(a)e(left-to-righ)o(t)f(order.)19 +b(The)14 b(second)g(queue)g(con)o(tains)f(no)q(des)h(that)g(are)g(not)f +(in)g(the)g Fk(\013\014)j Fp(minim)o(al)10 b(tree,)k(b)q(ecause)h(of)e +(p)q(o)q(or)0 2540 y(mo)o(v)o(e)g(ordering)h(at)g(t)o(yp)q(e)h(2)f(no)q +(des.)21 b(The)15 b(minim)o(al)c(tree)k(queue)g(is)g(used)g(only)f +(when)g(the)h(queue)h(of)d(additional)g(w)o(ork)h(at)0 +2590 y(failed)f(t)o(yp)q(e)h(2)g(no)q(des)h(is)e(empt)o(y)m(.)k(This)d +(setup)h(allo)o(ws)d(for)i(parallelism)d(at)j(t)o(yp)q(e)g(1)g(and)f(3) +h(no)q(des.)0 2669 y(There)d(is)g(a)f(family)d(of)j(DBTE)g(algorithms)e +(based)j(on)f(the)h(c)o(hoice)g(of)f(CUT)g(no)q(des)h(to)f(re-expand.) +18 b(One)11 b(of)f(the)h(algorithms,)p eop +%%Page: 9 9 +9 8 bop 467 50 a Fe(A)14 b(T)m(axonom)o(y)d(of)i(P)o(arallel)g(Game-T)m +(ree)g(Searc)o(h)h(Algorithms)465 b Fp(9)0 195 y(the)13 +b(Leftmost)e(First)h(algorithm,)e(is)i(sho)o(wn)g(to)g(b)q(e)g +(asymptotically)e(optimal)f(on)j(b)q(est-\014rst)i(trees)g(as)e(w)o +(ell)g(as)g(dominating)0 245 y(w)o(eak)f Fk(\013\014)i +Fp(\(a)e(v)o(ersion)h(of)e(the)i Fk(\013\014)h Fp(algorithm)c(whic)o(h) +h(only)h(has)g(shallo)o(w)f(cuto\013s\).)18 b(The)12 +b(Leftmost)e(First)h(algorithm)e(causes)0 295 y(sync)o(hronization)j +(to)f(o)q(ccur)i(at)e(bad)g(t)o(yp)q(e)h(2)g(no)q(des.)18 +b(Sim)o(ulations)9 b(rep)q(ort)j(that)g(a)f(sp)q(eedup)i(of)e(350)g +(with)g(1000)g(pro)q(cessors)0 345 y(is)j(p)q(ossible,)f(once)i(the)f +(mac)o(hine)f(is)h(completely)e(constructed.)0 423 y(Lu)19 +b(\(1993\))g(implemen)o(ted)e(a)i(pair)g(of)g(impro)o(v)o(emen)o(ts)e +(to)i(the)i(basic)e(PV-Split)g(algorithm)e(for)i(use)h(in)f(the)h(c)o +(hec)o(k)o(ers)0 473 y(program)13 b Fc(Chinook)p Fp(.)21 +b(T)m(o)14 b(prev)o(en)o(t)i(starv)n(ation)e(when)h(exploring)f(c)o +(hec)o(k)o(ers)i(trees,)g(whic)o(h)f(ha)o(v)o(e)f(an)h(a)o(v)o(erage)f +(branc)o(hing)0 523 y(factor)d(of)g(3)g(instead)h(of)f(the)h(38)e +(found)h(in)g(c)o(hess)i(trees,)g Fn(fr)n(ontier)f(splitting)e +Fp(w)o(as)h(prop)q(osed)i(and)e(tested.)19 b(F)m(ron)o(tier)11 +b(splitting)0 573 y(creates)18 b(m)o(ultiple)d(split)h(no)q(des)h +(further)h(up)f(the)g(v)n(ariation)e(b)q(eing)h(explored)h(b)o(y)g(the) +g(Con)o(troller)f(pro)q(cess)j(as)d(they)i(are)0 623 +y(required.)33 b(This)18 b(is)h(di\013eren)o(t)g(than)f(algorithms)f +(lik)o(e)g(YBW)o(C*,)i(whic)o(h)g(concen)o(trate)h(on)e(creating)h(new) +g(split)f(no)q(des)0 672 y(underneath)g(the)g(curren)o(t)g(split)e(no)q +(de.)28 b(Split)16 b(no)q(des)i(are)f(created)h(\014rst)g(at)f(all)e +(no)q(des)j(and)f(only)f(at)g(cut)i(no)q(des)f(when)0 +722 y(there)e(is)g(no)e(parallelism)f(left)i(at)g(an)o(y)g(all)f(no)q +(des.)19 b(The)c(dra)o(wbac)o(k)f(is)g(that)g(the)h(searc)o(h)g(migh)o +(t)d(b)q(e)j(started)h(without)d(an)o(y)0 772 y(b)q(ound)j +(information.)23 b(Essen)o(tially)m(,)15 b(this)i(remo)o(v)o(es)f(the)g +(sync)o(hronization)h(for)f(a)g(giv)o(en)g(depth)h(searc)o(h,)g(and)f +(allo)o(ws)f(for)0 822 y(parallelism)c(at)j(an)o(y)f(no)q(de)i(within)e +(the)h(tree.)0 901 y(An)h(implemen)o(tati)o(on)d(of)i(dynamic)f(load)h +(balancing,)f(similar)f(to)j(the)g(EPVS)g(metho)q(d,)f(w)o(as)g(also)g +(presen)o(ted.)23 b Fn(Str)n(aggler)0 951 y(pr)n(e)n(emption)13 +b Fp(gathers)g(a)f(group)h(of)f(idle)g(pro)q(cessors)j(and)e(assigns)f +(them)g(to)h(a)f(subtree)j(that)d(has)h(b)q(een)h(w)o(ork)o(ed)f(on)f +(b)o(y)h(one)0 1000 y(pro)q(cessor)j(for)f(a)f(long)f(p)q(erio)q(d)i +(of)f(time.)19 b(Both)c(of)f(the)h(impro)o(v)o(em)o(en)o(ts)e(w)o(ere)i +(tested)h(and)f(the)g(sp)q(eedup)h(on)e(the)h(test)h(set)0 +1050 y(impro)o(v)o(ed)11 b(from)g(1.92)h(on)h(16)f(pro)q(cessors)k(for) +c(the)i(basic)f(PV-Split)f(algorithm)f(to)i(3.31)e(on)i(16)g(pro)q +(cessors.)20 b(The)13 b(a)o(v)o(erage)0 1100 y(branc)o(hing)f(factor)h +(of)f(the)h(trees)h(b)q(eing)f(explored)g(w)o(as)f(2.78;)g(although)f +(the)j(magnitude)d(of)h(the)h(increase)h(w)o(as)e(small,)e(the)0 +1150 y(fact)k(that)g(the)g(sp)q(eedup)i(is)e(larger)f(than)h(the)h +(branc)o(hing)e(factor)h(is)g(signi\014can)o(t.)0 1229 +y(Da)o(vid's)d Fk(\013\014)r Fp(*)i(\(1993\))f(is)g(a)h(new)g(t)o(yp)q +(e)g(of)f(arc)o(hitecture)i(for)f(dealing)e(whic)o(h)i(requires)h(a)e +(shared)i(transp)q(osition)e(table.)18 b(All)0 1279 y(pro)q(cessors)f +(start)e(at)g(the)g(ro)q(ot)g(of)f(the)i(tree)g(and)e(start)h(tra)o(v)o +(elling)f(do)o(wn)g(the)i(tree.)21 b(Ho)o(w)o(ev)o(er,)15 +b(the)h(pro)q(cessors)h(explore)0 1328 y(di\013eren)o(t)12 +b(parts)g(of)f(the)g(tree)i(based)f(on)f(results)h(from)d(the)j(shared) +g(transp)q(osition)g(table.)17 b(Eac)o(h)11 b(en)o(try)h(con)o(tains)f +(a)g(coun)o(ter)0 1378 y(of)17 b(ho)o(w)f(man)o(y)g(pro)q(cessors)j +(are)e(exploring)g(the)h(subtree)h(ro)q(oted)e(at)g(that)g(no)q(de.)29 +b(Th)o(us,)17 b(the)h(pro)q(cessor)h(can)f(disco)o(v)o(er)0 +1428 y(whic)o(h)c(no)q(des)g(ha)o(v)o(e)g(b)q(een)h(ev)n(aluated.)0 +1507 y(A)h(depth-limited)f(searc)o(h)i(is)f(executed)i(at)d(non-PV)i +(no)q(des)f(to)g(determine)g(whether)i(the)e(no)q(de)h(is)f(a)f(t)o(yp) +q(e)i(2)f(or)g(a)f(t)o(yp)q(e)0 1557 y(3)i(no)q(de.)27 +b(T)o(yp)q(e)17 b(2)g(no)q(des)g(are)g(searc)o(hed)i(sequen)o(tially)m +(,)d(as)h(in)f(other)i(algorithms.)24 b(A)o(t)17 b(t)o(yp)q(e)h(3)e(no) +q(des,)i(the)f(n)o(um)o(b)q(er)g(of)0 1606 y(pro)q(cessors)g(allo)o(w)o +(ed)c(to)h(explore)g(a)g(subtree)i(is)f(limited)d(b)o(y)i(a)g(constan)o +(t)h(factor)f(of)g(the)g(n)o(um)o(b)q(er)g(of)g(pro)q(cessors)i(that)f +(are)0 1656 y(curren)o(tly)i(at)f(the)g(t)o(yp)q(e)g(3)g(no)q(de.)24 +b(F)m(or)16 b(the)g(purp)q(oses)i(of)d Fk(\013\014)r +Fp(*,)h(once)g(the)h(leftmost)d(c)o(hild)i(of)f(a)h(t)o(yp)q(e)g(1)g +(no)q(de)g(has)g(b)q(een)0 1706 y(ev)n(aluated,)e(the)i(t)o(yp)q(e)f(1) +g(no)q(de)g(e\013ectiv)o(ely)h(b)q(ecomes)f(a)g(t)o(yp)q(e)g(3)g(no)q +(de.)21 b(Once)16 b(a)f(pro)q(cessor)i(has)e(visited)g(a)f(no)q(de,)h +(it)g(ma)o(y)0 1756 y(not)h(go)g(bac)o(k)h(ab)q(o)o(v)o(e)f(that)h(no)q +(de)f(un)o(til)g(the)h(no)q(de)g(is)f(ev)n(aluated)h(\(i.e.)25 +b(the)17 b(correct)h Fk(\013\014)h Fp(information)14 +b(is)i(kno)o(wn)g(ab)q(out)0 1806 y(the)g(v)n(alue)f(at)g(that)g(no)q +(de\).)24 b(This)15 b(means)f(that)i(as)f(so)q(on)h(as)f(one)h(pro)q +(cessor)h(has)f(\\ev)n(aluated")e(the)i(ro)q(ot,)g(the)g(searc)o(h)g +(is)0 1856 y(completed.)h(One)c(adv)n(an)o(tage)e(of)h(the)g +Fk(\013\014)r Fp(*)h(algorithm)c(is)j(the)h(parallel)e(co)q(de)i(in)o +(v)o(olv)o(es)e(only)g(a)h(small)e(n)o(um)o(b)q(er)i(of)f(c)o(hanges)0 +1905 y(to)16 b(the)h(sequen)o(tial)f(co)q(de)h(\(W)m(eill,)e(1995\).)24 +b(In)16 b(his)h(thesis,)g(Da)o(vid)e(ac)o(hiev)o(ed)h(a)g(sp)q(eedup)i +(of)e(6.5)f(on)h(16)g(T)m(ransputers.)26 b(8)0 1955 y(of)14 +b(the)i(T)m(ransputers)g(w)o(ere)f(used)h(to)f(con)o(trol)f(the)i +(shared)g(transp)q(osition)e(table,)h(while)f(the)h(other)h(8)e(w)o +(ere)i(used)g(as)f(tree)0 2005 y(searc)o(hers.)0 2084 +y Fn(CABP)g Fp(is)h(an)f(algorithm)d(b)o(y)k(Cung)f(\(1994\),)f(based)i +(on)g(the)g(Deep)g(Though)o(t)f(design)g(presen)o(ted)j(b)o(y)d(Hsu)h +(\(1990\).)22 b(The)0 2134 y(algorithm)8 b(w)o(as)j(designed)g(for)f(a) +h(shared)g(memory)e(system,)h(and)h(main)o(tains)d(a)j(shared)g +(\\score)h(tree")g(for)e(the)h(en)o(tire)h(game-)0 2183 +y(tree)18 b(and)f(the)h(t)o(w)o(o)e(lists)h(of)g(w)o(ork:)24 +b(critical)17 b(no)q(des)g(one)h(ply)e(ab)q(o)o(v)o(e)h(the)h(lea)o(v)o +(es,)f(and)g(non-critical)f(c)o(hildren)i(of)e(failed)0 +2233 y(cut-no)q(des.)j(A)o(t)13 b(failed)f(cut-no)q(des,)h(the)h +(non-critical)e(c)o(hildren)h(are)g(added)g(to)g(the)g(list)f +Fk(k)i Fp(at)f(a)f(time.)17 b(\(In)12 b(the)i(sim)o(ulation)0 +2283 y(results)e(giv)o(en)e(in)g(the)h(thesis,)g Fk(k)i +Fp(=)f(1.\))k(In)11 b(his)f(Ph.D.)g(thesis,)h(Cung)g(sho)o(ws)f(the)h +(CABP)h(algorithm)7 b(generating)k(a)f(sp)q(eedup)0 2333 +y(of)i(4.6)g(on)h(strongly-ordered)h(trees)g(with)f(a)g(branc)o(hing)g +(factor)f(of)h(40)f(using)h(9)g(pro)q(cessors)i(on)e(a)f(Sequen)o(t)i +(Balance)f(8000.)0 2412 y(Kuszmaul)f(\(1994\))h(presen)o(ts)i +Fn(Jamb)n(or)n(e)n(e)e(se)n(ar)n(ch)g Fp(in)g(his)g(Ph.D.)f(thesis)i +(as)f(an)g(algorithm)e(for)h(testing)i(MIMD)f(sc)o(heduling)0 +2462 y(algorithms)e(on)j(the)g(CM-5.)k(Jam)o(b)q(oree)13 +b(searc)o(h)i(is)f(a)f(parallelization)f(of)h(NegaScout)h(searc)o(h)h +(whic)o(h)f(b)q(eha)o(v)o(es)g(with)g(only)0 2511 y(a)f(few)g(minor)f +(di\013erences)j(to)f(the)g(w)o(ork)f(done)g(b)o(y)g(F)m(eldmann)f +Fn(et.)18 b(al)13 b Fp(on)g(the)h(Y)m(oung)f(Brothers)i(W)m(ait)d +(algorithm.)j(In)e(the)0 2561 y(Y)m(oung)h(Brothers)i(W)m(ait)e +(algorithm,)d(when)16 b(a)e(subtree)j(is)d(giv)o(en)g(to)h(a)f(pro)q +(cessor)j(and)d(the)i(searc)o(h)g(fails)d(high,)h(the)h(sla)o(v)o(e)0 +2611 y(pro)q(cessor)j(immediately)c(pro)q(ceeds)k(to)f(w)o(ork)f(out)h +(the)g(v)n(alue)f(with)g(the)h(full)f(searc)o(h)h(windo)o(w)f(without)h +(informing)c(the)0 2661 y(master)h(pro)q(cessor.)23 b(In)15 +b(Jam)o(b)q(oree)g(searc)o(h,)h(a)f(fail)e(high)h(v)n(alue)g(is)h +(returned)i(to)e(the)g(master)g(pro)q(cessor.)23 b(This)15 +b(prev)o(en)o(ts)p eop +%%Page: 10 10 +10 9 bop 0 50 a Fp(10)592 b(ICCA)14 b(Journal)f(Submission)591 +b(June)15 b(12,)e(1996)0 195 y(an)o(y)i(y)o(ounger)i(subtrees)h(from)c +(executing)j(a)e(full)g(windo)o(w)g(searc)o(h)i(un)o(til)e(the)i(new)f +(b)q(ound)g Fk(\013)g Fp(can)g(b)q(e)h(established)g(b)o(y)e(a)0 +245 y(full)e(windo)o(w)g(searc)o(h.)0 324 y(W)m(eill)c(in)o(tro)q +(duced)j(an)e(impro)o(v)o(emen)o(t)f(to)h(the)i Fk(\013\014)r +Fp(*)f(algorithm)d(in)i(his)h(Ph.D.)f(thesis)i(\(1995\).)k(W)m(eill)9 +b(suggested)k(and)d(tested)0 374 y(a)g(decision)h(metho)q(d)f(based)i +(on)e(the)i(Y)m(oung)e(Brothers)i(W)m(ait,)d(instead)j(of)e(the)h +(depth-limited)e(searc)o(h)j(and)f(constan)o(t)g(factor)0 +423 y(at)i(t)o(yp)q(e)h(3)f(no)q(des)h(tested)g(b)o(y)f(Da)o(vid.)k(A)o +(t)c(an)o(y)g(no)q(de)g(in)g(the)h Fk(\013\014)r Fp(*)f(algorithm,)d +(if)j(the)g(leftmost)f(c)o(hild)h(isn't)g(ev)n(aluated,)f(all)0 +473 y(pro)q(cessors)18 b(m)o(ust)d(ev)n(aluate)g(the)i(leftmost)d(c)o +(hild.)23 b(Once)17 b(the)f(leftmost)f(c)o(hild)g(is)h(ev)n(aluated,)f +(pro)q(cessors)j(are)e(allo)q(cated)0 523 y(to)i(non-ev)n(aluated)f +(idle)g(c)o(hildren)h(\014rst,)h(and)e(then)i(allo)q(cated)e(in)g(a)h +(balanced)f(manner)g(to)h(the)g(other)g(non-ev)n(aluated)0 +573 y(c)o(hildren)13 b(in)g(the)g(tree.)19 b(Although)12 +b(b)q(oth)h Fk(\013\014)r Fp(*)g(and)g(YBW)o(C*)g(use)h(the)f(same)f +(decision)h(metho)q(d)f(for)h(allo)o(wing)d(or)j(den)o(ying)0 +623 y(parallelism,)g Fk(\013\014)r Fp(*)j(uses)g(a)g(shared)g(transp)q +(osition)g(table)f(to)g(k)o(eep)i(the)f(pro)q(cessors)i(w)o(orking)c +(on)i(di\013eren)o(t)g(parts)g(of)f(the)0 672 y(tree,)g(while)e(YBW)o +(C*)h(uses)h(master-sla)o(v)o(e)e(relationships.)0 751 +y(In)g(a)g(later)g(pap)q(er)h(\(W)m(eill,)d(1996\),)h(the)i(com)o +(bined)e(metho)q(d)g(w)o(as)h(called)g Fn(A)o(lpha-B)o(^)-20 +b(eta)15 b(Distribut)o(\023)-20 b(e)13 b(ave)n(c)i(Dr)n(oit)e(d'A)1828 +742 y(^)1830 751 y(inesse)p Fp(,)0 801 y(or)k(ABD)o(AD)o(A.)f(He)i(sho) +o(w)o(ed)f(that)g(ABD)o(AD)o(A)g(yields)f(greater)i(sp)q(eedups)h(than) +e(YBW)o(C)g(on)g(a)f(CM-5)h(when)g(studying)0 851 y(c)o(hess)j(trees.) +35 b(ABD)o(AD)o(A)19 b(also)g(yields)f(similar)f(sp)q(eedups)k(to)e +(YBW)o(C)g(when)g(studying)g Fk(\013\014)i Fp(trees)g(generated)f(b)o +(y)f(an)0 901 y(Othello)14 b(program.)0 980 y Fn(Dynamic)i(Multiple)e +(Princip)n(al)g(V)m(ariation)g(Splitting)g Fp(\(DM-PVSplit\))f(is)h(a)g +(v)n(ariation)e(of)h(the)h(PV-Split)g(algorithm)d(that)0 +1029 y(allo)o(ws)18 b(for)h(greater)h(parallelism)c(near)k(the)f(start) +h(of)f(a)g(searc)o(h)h(\(Marsland)f(and)g(Gao,)g(1995\).)33 +b(T)m(o)18 b(understand)i(the)0 1079 y(algorithm,)12 +b(it)i(is)h(necessary)i(to)d(de\014ne)i(the)g Fn(PV)f(set)p +Fp(.)21 b(The)15 b(ro)q(ot)g(is)g(a)f(mem)o(b)q(er)f(of)i(the)g(PV)g +(set.)22 b(A)o(t)15 b(subsequen)o(t)h(lev)o(els,)0 1129 +y(no)q(des)f(are)f(part)g(of)g(the)g(PV)h(set)g(if)e(the)h(paren)o(t)h +(is)f(a)g(mem)o(b)q(er)e(of)h(the)i(PV)f(set,)h(and)f(they)g(are)h +(generated)g(b)o(y)f(the)g(\014rst)h Fk(k)0 1179 y Fp(candidate)g(mo)o +(v)o(es)f(in)h(the)g(mo)o(v)o(e)f(list)h(of)f(the)i(paren)o(t.)22 +b(The)16 b(determination)d(of)i Fk(k)h Fp(is)f(giv)o(en)f(b)o(y)h(a)g +(function,)g(not)g(a)g(\014xed)0 1229 y(n)o(um)o(b)q(er.)i(Th)o(us,)c +(the)g(PV)g(set)h(is)e(a)h(righ)o(t-pruned)g(v)o(ersion)g(of)f(the)h +(game-tree.)18 b(An)13 b(appropriate)f(c)o(hoice)i(of)e(the)h +(heuristic)0 1279 y(guess)h(allo)o(ws)d(for)i(greater)g(parallelism)d +(without)j(adv)o(ersely)g(increasing)g(the)g(searc)o(h)h(o)o(v)o +(erhead,)f(since)h(the)f(correct)i(mo)o(v)o(e)0 1328 +y(at)g(a)g(PV)h(set)g(no)q(de)g(is)g(highly)e(lik)o(ely)g(to)h(app)q +(ear)h(in)f(its)g(PV)h(set)g(c)o(hildren.)23 b(By)16 +b(alw)o(a)o(ys)e(selecting)i(only)f(one)h(candidate)0 +1378 y(mo)o(v)o(e,)10 b(DM-PVSplit)h(generalizes)h(in)o(to)f(PV-Split.) +17 b(Since)12 b(the)g(PV)g(set)h(do)q(es)f(not)f(resp)q(ect)j(the)f +(structure)g(of)e(the)h(minima)o(l)0 1428 y(tree,)18 +b(the)f(last)g(t)o(w)o(o)f(columns)f(in)i(T)m(able)e(2)i(re\015ect)h +(this)f(b)o(y)f(referring)i(to)e(the)h(PV)g(set,)h(and)f(not)f(Kn)o +(uth)h(and)g(Mo)q(ore's)0 1478 y(classi\014cation)d(of)f(minim)o(al)d +(tree)15 b(no)q(des.)0 1557 y(The)c(algorithm)e(is)h(designed)i(for)f +(use)g(on)g(strongly)g(ordered)h(trees.)19 b(In)11 b(the)g(pap)q(er,)h +(Marsland)f(and)f(Gao)g(sho)o(w)h(the)h(results)0 1606 +y(of)i(an)g(exp)q(erimen)o(t)g(where)i(DM-PVSplit)d(generates)j(a)e(sp) +q(eedup)i(of)e(appro)o(ximately)e(32)i(o)o(v)o(er)g(64)g(pro)q +(cessors,)i(using)e(an)0 1656 y(arti\014cially)e(generated)k(tree)f(of) +e(width)h(32)f(and)h(depth)g(8.)0 1735 y Fn(Asynchr)n(onous)21 +b(Par)n(al)r(lel)f(Hier)n(ar)n(chic)n(al)f(Iter)n(ative)g(De)n(ep)n +(ening)i Fp(is)f(an)g(attempt)f(to)h(extend)g(the)h(ideas)f(of)f(Newb)q +(orn's)0 1785 y(UIDP)m(ABS)c(algorithm)e(for)i(use)h(on)f(a)g(net)o(w)o +(ork)h(of)f(w)o(orkstations,)g(where)h(the)g(cost)g(of)f(comm)o +(unicatio)o(n)e(is)i(prohibitiv)o(e)0 1835 y(\(Bro)q(c)o(kington)j(and) +f(Sc)o(hae\013er,)i(1996\).)28 b(Instead)19 b(of)e(using)g(a)g(single)g +(ply)g(of)g(the)h(game-tree)f(to)h(generate)g(w)o(ork)g(lists,)0 +1885 y(APHID)h(uses)h(a)f(truncated)h(game-tree)e(of)h(user-de\014ned)i +(depth,)f(and)f(all)e(lea)o(v)o(es)i(of)f(the)i(truncated)g(game-tree)f +(are)0 1934 y(allo)q(cated)c(to)g(sla)o(v)o(e)g(pro)q(cessors.)24 +b(The)16 b(master)e(pro)q(cessors)k(within)c(the)i(hierarc)o(h)o(y)g +(con)o(tin)o(ually)d(searc)o(h)k(the)f(truncated)0 1984 +y(game-tree)g(to)g(add,)f(delete)j(and)d(up)q(date)i(the)g(priorit)o(y) +e(of)g(w)o(ork)h(for)g(the)g(sla)o(v)o(es.)25 b(The)16 +b(sla)o(v)o(e)g(pro)q(cessors)i(searc)o(h)g(their)0 2034 +y(w)o(ork)12 b(lists)f(with)h(minim)o(al)c(sync)o(hronization)k(from)e +(the)j(master.)k(The)12 b(sla)o(v)o(es)g(determine)g(their)g(o)o(wn)f +(w)o(ork)h(sc)o(hedule)h(and)0 2084 y(inform)e(the)k(master)e(pro)q +(cessors)j(of)d(the)h(searc)o(h)h(results.)k(Sla)o(v)o(e)13 +b(pro)q(cessors)j(can)e(con)o(tin)o(ue)g(searc)o(hing)g(the)g(next)g +(lev)o(el)g(of)0 2134 y(the)g(iterativ)o(e)g(deep)q(ening)h(searc)o(h)g +(sp)q(eculativ)o(ely)f(if)f(they)i(ha)o(v)o(e)e(no)h(w)o(ork)g(left)f +(to)h(do)g(at)f(the)i(curren)o(t)g(lev)o(el.)0 2213 y(The)e(APHID)f +(algorithm)e(has)j(b)q(een)g(implemen)o(ted)d(as)j(a)f(game-indep)q +(enden)o(t)g(library)g(that)g(can)h(b)q(e)g(easily)f(inserted)i(in)o +(to)0 2262 y(a)e(sequen)o(tial)g(game-pla)o(ying)c(program.)16 +b(The)d(library)e(has)h(b)q(een)h(tested)g(on)f(b)q(oth)g +Fc(Key)m(ano)i Fp(\(an)e(Othello)g(program\))e(and)0 +2312 y Fc(TheTurk)k Fp(\(a)g(c)o(hess)h(program\).)h(A)o(t)e(time)e(of) +h(writing,)g(the)h(APHID)g(algorithm)d(ac)o(hiev)o(es)j(sp)q(eedups)h +(of)e(8.41)g(and)g(6.02)0 2362 y(for)h Fc(Key)m(ano)i +Fp(and)d Fc(TheTurk)i Fp(\(resp)q(ectiv)o(ely\))g(on)f(a)g(net)o(w)o +(ork)g(of)f(16)g(Sparc-2)h(w)o(orkstations.)0 2529 y +Fl(3)48 b(OTHER)16 b(SEAR)o(CH)g(P)l(ARADIGMS)f(F)o(OR)g(P)l(ARALLEL)g +(GAME-TREE)i(SEAR)o(CH)0 2654 y Fp(Although)e(the)h(emphasis)f(has)h(b) +q(een)h(on)e Fk(\013\014)r Fp(-based)h(metho)q(ds,)g(there)g(are)h +(other)f(searc)o(h)h(strategies)f(that)g(can)g(b)q(e)g(used)0 +2704 y(to)e(generate)i(the)f(minima)o(x)d(v)n(alue.)19 +b(They)c(ha)o(v)o(e)g(b)q(een)g(sub)q(divided)g(in)o(to)f(three)i +(subsections.)22 b(The)15 b(\014rst)g(will)e(deal)h(with)p +eop +%%Page: 11 11 +11 10 bop 456 50 a Fe(A)14 b(T)m(axonom)o(y)d(of)j(P)o(arallel)e +(Game-T)m(ree)h(Searc)o(h)i(Algorithms)454 b Fp(11)0 +195 y(parallel)11 b(algorithms)g(based)i(on)f(the)h(original)e(form)o +(ulation)e(of)j Fk(S)r(S)r(S)r Fj(\003)p Fp(.)20 b(The)13 +b(second)h(subsection)f(will)f(deal)g(with)g(the)h Fk(E)r(R)0 +245 y Fp(metho)q(d,)f(while)g(the)h(\014nal)f(subsection)i(will)d(deal) +i(v)o(ery)g(brie\015y)g(with)f(purely)h(theoretical)g(mo)q(dels)f(for)g +(game-tree)g(searc)o(h.)0 450 y Fl(3.1)48 b(P)o(arallel)13 +b(Searc)o(h)h(based)h(on)g Fk(S)r(S)r(S)r Fj(\003)0 569 +y Fp(Sto)q(c)o(kman)g(\(1979\))h(in)o(tro)q(duced)h(the)g +Fk(S)r(S)r(S)r Fj(\003)h Fp(algorithm.)23 b(Initially)m(,)14 +b(it)i(w)o(as)g(b)q(eliev)o(ed)h(that)f(the)h(algorithm)d(dominated)0 +619 y Fk(\013\014)19 b Fp(in)d(the)h(sense)h(that)f Fk(S)r(S)r(S)r +Fj(\003)i Fp(will)c(not)h(searc)o(h)i(a)e(no)q(de)h(if)f +Fk(\013\014)i Fp(did)f(not)f(searc)o(h)i(it.)25 b(A)17 +b(p)q(erceiv)o(ed)h(problem)d(with)h(the)0 669 y(algorithm)e(is)j(that) +g(a)g(list)f(structure)k(\(the)d Fb(OPEN)f Fp(list\))h(m)o(ust)f(b)q(e) +i(main)o(tained,)d(whic)o(h)i(could)f(gro)o(w)h(to)g +Fk(b)1713 654 y Fa(d=)p Fm(2)1783 669 y Fp(elemen)o(ts,)0 +719 y(where)f Fk(b)e Fp(is)h(the)g(branc)o(hing)g(factor)g(and)f +Fk(d)h Fp(is)f(the)i(depth)f(of)f(the)i(tree)g(to)f(b)q(e)g(searc)o +(hed.)22 b(This)15 b(space)h(requiremen)o(t)f(w)o(as,)0 +769 y(at)e(the)g(time,)e(considered)j(to)f(b)q(e)g(to)q(o)g(large)f +(for)g(a)h(practical)f(c)o(hess-pla)o(ying)h(program.)j(F)m +(urthermore,)c(ev)o(en)i(if)e(the)h(space)0 818 y(requiremen)o(t)18 +b(w)o(as)f(not)h(a)g(problem,)f(the)h(main)o(tenance)f(of)g(the)i +Fb(OPEN)d Fp(list)i(slo)o(w)o(ed)f(do)o(wn)h(the)g(algorithm)d(to)j +(mak)o(e)e(it)0 868 y(slo)o(w)o(er)e(than)g Fk(\013\014)i +Fp(in)d(practice.)0 947 y(A)f(theoretical)g(parallel)f +Fk(S)r(S)r(S)r Fj(\003)j Fp(algorithm)9 b(w)o(as)i(prop)q(osed)i +(\(Campb)q(ell,)d(1981;)h(Campb)q(ell)e(and)j(Marsland,)f(1983\),)g +(based)0 997 y(on)i(breaking)g(the)g(tree)i(in)o(to)d(stages)i(to)f +(reduce)i(the)e(cost)h(of)f(main)o(taini)o(ng)d(the)k +Fb(OPEN)e Fp(list.)17 b(A)o(t)d(the)f(end)h(of)e(a)h(stage)h(in)e(the)0 +1047 y(searc)o(h,)j(the)f(no)q(de)h(w)o(ould)e(b)q(e)i(handed)f(to)g(a) +g(sla)o(v)o(e)g(pro)q(cessor)i(in)d(the)i(tree)g(hierarc)o(h)o(y)m(.)k +(This)14 b(limited)e(the)i(depth)h Fk(d)p Fp(,)f(th)o(us)0 +1097 y(prev)o(en)o(ting)i(the)h Fb(OPEN)e Fp(list)h(from)e(b)q(ecoming) +h(to)q(o)h(large.)25 b(The)16 b(staged)h Fk(S)r(S)r(S)r +Fj(\003)h Fp(algorithm)c(is)h(sho)o(wn)i(to)f(b)q(e)g(marginally)0 +1146 y(faster)f(than)e(either)i(tree)g(splitting)e(or)h(PV-Split)f(on)h +(randomly)e(ordered)j(trees)g(in)f(Campb)q(ell's)e(w)o(ork.)0 +1225 y(Leifk)o(er)k(and)g(Kanal)f(\(1985\))g(prop)q(ose)i(the)f(HYBRID) +g(algorithm)d(that)j(is)g(based)g(on)g(the)g(problem)f(heap)h(from)e +Fk(S)r(S)r(S)r Fj(\003)p Fp(,)0 1275 y(but)20 b(con)o(tains)f(no)g +(details)g(p)q(ertaining)g(to)g(an)g(implemen)o(tation.)31 +b(V)m(orn)o(b)q(erger)20 b(and)f(Monien)g(presen)o(ted)j(the)e(results) +0 1325 y(of)14 b(a)h(parallel)f Fk(S)r(S)r(S)r Fj(\003)j +Fp(algorithm)c(\(1987\),)h(but)h(the)h(results)g(w)o(ere)g(disapp)q +(oin)o(ting)d(when)j(compared)e(to)h(the)h(parallel)e +Fk(\013\014)0 1375 y Fp(algorithm)9 b(\(later)i(to)g(b)q(e)h(called)f +(\\Y)m(oung)f(Brothers)j(W)m(ait"\).)i(Their)d(implemen)o(tatio)o(n)d +(of)h(parallel)g Fk(S)r(S)r(S)r Fj(\003)k Fp(on)d(a)f(lo)q(cal)h(area)0 +1424 y(net)o(w)o(ork)j(of)f(PCs)i(had)e(a)h(searc)o(h)h(o)o(v)o(erhead) +f(of)g(o)o(v)o(er)f(300)h(p)q(ercen)o(t)h(when)g(using)e(16)h(pro)q +(cessors.)20 b(Dideric)o(h)14 b(describ)q(ed)h(an)0 1474 +y(implemen)o(tatio)o(n)c(of)j(Sync)o(hronized)h(Distributed)f(State)g +(Space)h(Searc)o(h)g(\()p Fk(S)r(D)q(S)r(S)r(S)s Fj(\003)p +Fp(\))h(\(1992\))e(and)f(ac)o(hiev)o(ed)i(a)e(sp)q(eedup)0 +1524 y(of)g(11.40)g(using)g(32)h(pro)q(cessors,)h(searc)o(hing)g(a)e(5) +h(ply)f(tree)i(with)f(a)f(branc)o(hing)h(factor)g(of)f(16.)0 +1603 y(There)k(are)f(some)e(other)i Fk(S)r(S)r(S)r Fj(\003)i +Fp(algorithms)13 b(b)o(y)i(Hiromoto)f Fn(et)i(al.)23 +b Fp(\(1987\),)14 b(Kraas)i(\(1990\),)f(and)g(Shinghal)f(and)i(Sh)o(v)o +(ed)0 1653 y(\(1991\),)f(and)h(all)f(of)g(the)i(w)o(ork)e(deals)h(with) +g(ho)o(w)f(to)h(parallelize)f(w)o(ork)h(based)g(on)g(the)h +Fb(OPEN)e Fp(list.)23 b(Although)16 b(the)g(w)o(ork)0 +1703 y(has)g(sho)o(wn)f(some)g(promise)f(in)i(eliminating)c(the)k +(di\016culties)f(of)g(dealing)g(with)g(an)g(ordered)i(problem)d(heap,)i +(all)e(of)h(the)0 1752 y(w)o(ork)i(on)f(handling)g(the)i +Fb(OPEN)e Fp(list)g(has)h(b)q(een)h(made)e(obsolete.)28 +b(This)17 b(is)g(due)g(to)g(the)g(rev)o(elation)g(that)g +Fk(S)r(S)r(S)r Fj(\003)i Fp(can)e(b)q(e)0 1802 y(implemen)o(ted)e(as)i +(a)g(series)h(of)f(n)o(ull-windo)o(w)e Fk(\013\014)k +Fp(calls,)e(using)g(a)g(transp)q(osition)g(table)g(in)f(the)i(place)f +(of)g(the)g Fb(OPEN)f Fp(list)0 1852 y(\(Plaat,)d(1995\).)0 +2057 y Fl(3.2)48 b(P)o(arallel)13 b(Searc)o(h)h(based)h(on)g +Fk(E)r(R)0 2176 y Fp(Stein)o(b)q(erg)g(and)f(Solomon)d(\(1990\))j +(presen)o(ted)i(the)e Fk(E)r(R)g Fp(metho)q(d)g(of)f(searc)o(hing)i +(game-trees.)j Fk(E)r(R)c Fp(stands)h(for)f(Ev)n(aluate-)0 +2226 y(Refute,)20 b(and)f(it)g(attempts)f(to)h(ev)n(aluate)g(some)f +(mandatory)g(w)o(ork)g(b)q(efore)i(attempting)e(to)h(refute)h(the)g +(other)f(mo)o(v)o(es)0 2276 y(within)e(the)g(tree.)30 +b(A)o(t)17 b(a)g(no)q(de)h(to)f(b)q(e)h(ev)n(aluated)f(\(an)g(e-no)q +(de\))h(within)f(the)h(tree,)g(the)g Fk(E)r(R)f Fp(algorithm)e(ev)n +(aluates)i(the)0 2326 y(elder)g(grandc)o(hildren)f(\(concurren)o(tly)m +(,)h(if)f(p)q(ossible\),)h(and)f(then)g(c)o(ho)q(oses)i(the)f(c)o(hild) +e(with)h(largest)h(elder)g(grandc)o(hild)e(to)0 2376 +y(b)q(e)f(the)g(e-c)o(hild.)k(This)13 b(e-c)o(hild)g(is)g(ev)n +(aluated,)g(and)g(then)i(the)f(other)g(c)o(hildren)f(of)g(the)h(e-no)q +(de)g(are)g(refuted.)19 b(The)14 b(metho)q(d)0 2425 y(is)f(less)h +(e\016cien)o(t)g(at)g(searc)o(hing)f(trees)i(than)f(the)g +Fk(\013\014)i Fp(algorithm)10 b(since)15 b(it)e(misses)g(some)f(deep)j +(cuto\013s.)j(F)m(urthermore,)13 b(the)0 2475 y(algorithm)e(w)o(as)j +(not)g(tested)h(with)f(iterativ)o(e)g(deep)q(ening)h(or)e(minima)o(l)e +(windo)o(ws)i(when)i(refuting)e(e-no)q(des.)0 2554 y(The)21 +b Fk(E)r(R)f Fp(metho)q(d)g(and)h(PV-Split)f(w)o(ere)h(implemen)o(ted)e +(as)h(problem-heap)g(algorithms)e(on)i(a)h(Sequen)o(t)g(Symmetry)0 +2604 y(m)o(ultipro)q(cessor.)k(Stein)o(b)q(erg)17 b(and)f(Solomon)e +(found)i(that)h(they)g(ac)o(hiev)o(ed)f(a)h(b)q(etter)h(e\016ciency)f +(with)f(the)h(parallel)e Fk(E)r(R)0 2654 y Fp(algorithm)10 +b(than)j(with)f(PV-Split.)17 b(The)c Fk(E)r(R)f Fp(metho)q(d)g(ac)o +(hiev)o(ed)h(a)f(sp)q(eedup)j(of)d(10)g(with)g(16)g(pro)q(cessors,)j +(and)d(a)g(sp)q(eedup)0 2704 y(of)h(14.7)g(with)g(27)h(pro)q(cessors.)p +eop +%%Page: 12 12 +12 11 bop 0 50 a Fp(12)592 b(ICCA)14 b(Journal)f(Submission)591 +b(June)15 b(12,)e(1996)0 195 y Fl(3.3)48 b(Theoretical)13 +b(P)o(arallel)g(Searc)o(h)i(Metho)q(ds)0 303 y Fp(There)i(are)g(a)f(n)o +(um)o(b)q(er)g(of)f(theoretical)i(algorithms)d(that,)i(to)h(the)f +(author's)h(kno)o(wledge,)f(ha)o(v)o(en't)g(b)q(een)h(programmed.)0 +353 y(Karp)c(and)g(Zhang)h(\(1989\))e(and)h(Alth\177)-21 +b(ofer)13 b(\(1993\))f(ha)o(v)o(e)h(prop)q(osed)h(algorithms)d(that)j +(will)d(yield)i(linear)g(sp)q(eedups)i(in)d(the)0 402 +y(n)o(um)o(b)q(er)17 b(of)f(pro)q(cessors,)k(giv)o(en)d(trees)i(of)e +Fk(O)q Fp(\()p Fk(N)12 b Fp(log)6 b Fk(N)f Fp(\))18 b(or)f +Fk(O)q Fp(\()p Fk(N)5 b Fp(\))17 b(depth,)i(resp)q(ectiv)o(ely)m(.)29 +b(Bro)q(der)19 b Fn(et)f(al.)28 b Fp(\(1990\))17 b(ha)o(v)o(e)0 +452 y(sho)o(wn)12 b(that)g(for)g(an)o(y)f(parallel)g(tree)i(searc)o +(hing)f(algorithm,)e(there)j(exists)g(a)e(tree)i(instance)g(that)f(do)q +(es)h(not)f(run)g(in)g(p)q(olylog)0 502 y(parallel)18 +b(run-time.)32 b(Bro)q(der)20 b Fn(et)f(al.)33 b Fp(also)18 +b(sho)o(w)h(and)g(pro)o(v)o(e)g(an)g(upp)q(er)h(b)q(ound)f(on)f(the)i +(run-time)e(of)g(the)h(P)o(arHop)q(e)0 552 y(algorithm.)0 +703 y Fl(4)48 b(CONCLUSIONS)0 825 y Fp(The)19 b(taxonom)o(y)d(giv)o(en) +i(in)g(section)h(2)f(sho)o(ws)h(that)f(there)i(are)f(a)f(n)o(um)o(b)q +(er)g(of)f(algorithms)f(whic)o(h)j(are)g(similar)c(to)k(one)0 +875 y(another.)29 b(There)19 b(are)f(only)e(subtle)i(di\013erences)i(b) +q(et)o(w)o(een)f(a)e(large)g(n)o(um)o(b)q(er)g(of)g(the)h +Fk(\013\014)r Fp(-based)g(algorithms.)27 b(Most)18 b(of)0 +925 y(these)h(di\013erences)g(are)e(due)h(to)f(the)h(di\013eren)o(t)g +(arc)o(hitectures)h(and)e(game)f(trees)i(studied.)29 +b(This)17 b(comparison)e(is)i(easily)0 974 y(made)c(through)h(the)g +(separation)g(of)f(the)i(implemen)o(tatio)o(n)c(and)j(algorithmic)d +(details.)0 1053 y(As)17 b(the)h(n)o(um)o(b)q(er)e(of)g(pro)q(cessors)j +(a)o(v)n(ailable)c(to)i(the)g(programmers)e(has)i(increased,)h(dynamic) +e(algorithms)e(ha)o(v)o(e)j(tak)o(en)0 1103 y(the)i(place)f(of)g(the)h +(earlier)f(algorithms)e(whic)o(h)i(o\013ered)i(limited)c(parallelism)f +(on)j(a)g(large)g(n)o(um)o(b)q(er)g(of)g(pro)q(cessors.)33 +b(It)0 1153 y(is)16 b(the)h(author's)g(b)q(elief)f(that)h(sp)q +(eculativ)o(e)g(parallelism)d(is)i(necessary)j(to)d(yield)g +(near-linear)g(p)q(erformance)h(on)f(parallel)0 1203 +y(arc)o(hitectures,)g(and)d(is)h(the)h(sub)r(ject)g(of)e(on-going)g +(researc)o(h)i(at)f(the)h(Univ)o(ersit)o(y)e(of)h(Alb)q(erta.)0 +1354 y Fl(5)48 b(A)o(CKNO)o(WLEDGEMENTS)0 1476 y Fp(The)19 +b(author)g(w)o(ould)g(lik)o(e)f(to)h(thank)f(Yngvi)h(Bjornsson,)h +(Rainer)f(F)m(eldmann,)f(Y)m(ao)q(qing)f(Gao,)i(Andreas)h(Junghanns,)0 +1526 y(T)m(on)o(y)14 b(Marsland,)f(Ask)o(e)j(Plaat,)d(Jonathan)h(Sc)o +(hae\013er,)i(Jean-Christophe)g(W)m(eill)c(and)j(the)g(editorial)e +(sta\013)i(of)f(the)h(ICCA)0 1575 y(Journal)d(for)g(their)h(helpful)f +(commen)o(ts)f(on)h(the)i(revisions)e(of)g(this)h(pap)q(er.)18 +b(The)13 b(author)g(is)f(b)q(eing)h(funded)g(b)o(y)f(an)g(NSER)o(C)0 +1625 y(P)o(ostgraduate)i(Sc)o(holarship,)g(for)f(whic)o(h)h(the)g +(author)g(is)g(extremely)g(grateful.)0 1704 y(The)g(author)g(w)o(ould)f +(appreciate)i(an)o(y)e(corrections,)i(suggestions)g(and)e(impro)o(v)o +(emen)o(ts)f(that)i(y)o(ou)f(ma)o(y)f(ha)o(v)o(e.)0 1847 +y Fl(References)21 1953 y Fp(Akl,)j(S.)h(G.,)f(Barnard,)h(D.)f(T.,)h +(and)g(Doran,)f(R.)g(J.)h(\(1982\).)23 b(Design,)16 b(Analysis)g(and)f +(Implemen)o(tation)e(of)i(a)h(P)o(arallel)21 1994 y(T)m(ree)g(Searc)o +(h)h(Algorithm.)k Fn(IEEE)c(T)m(r)n(ansactions)g(on)g(Pattern)g(A)o +(nalysis)f(and)h(Machine)h(Intel)r(ligenc)n(e)p Fp(,)e(V)m(ol.)e(P)m +(AMI-4,)21 2036 y(No.)f(2,)g(pp.)h(192{203.)21 2119 y(Alth\177)-21 +b(ofer,)13 b(I.)f(\(1993\).)17 b(A)c(P)o(arallel)f(Game)g(T)m(ree)i +(Searc)o(h)g(Algorithm)d(with)i(a)g(Linear)g(Sp)q(eedup.)18 +b Fn(Journal)c(of)h(A)o(lgorithm)p Fp(,)21 2161 y(V)m(ol.)d(15,)h(pp.)g +(175{198.)21 2245 y(Bal,)f(H.)h(E.)g(and)f(v)n(an)h(Renesse,)h(R.)e +(\(1986\).)k(A)d(Summary)e(of)h(P)o(arallel)g(Alpha-Beta)h(Searc)o(h)h +(Results.)j Fn(ICCA)d(Journal)p Fp(,)21 2286 y(V)m(ol.)e(9,)h(No.)g(3,) +h(pp.)f(146{149.)21 2370 y(Baudet,)j(G.)f(M.)g(\(1978\).)22 +b Fn(The)16 b(Design)h(and)g(Analysis)f(of)h(Algorithms)e(for)h +(Asynchr)n(onous)h(Multipr)n(o)n(c)n(essors)p Fp(.)22 +b(Ph.D.)21 2412 y(thesis,)14 b(Carnegie)g(Mellon)f(Univ)o(ersit)o(y)m +(,)g(Pittsburgh,)h(P)m(A.)k(Av)n(ailable)12 b(as)i(T)m(ec)o(h.)g(Rept.) +g(CMU-CS-78-116.)21 2495 y(Bro)q(c)o(kington,)g(M.)g(G.)f(and)i(Sc)o +(hae\013er,)g(J.)f(\(1996\).)19 b(APHID)c(Game-Tree)e(Searc)o(h.)21 +b(Presen)o(ted)c(at)d Fn(A)n(dvanc)n(es)i(in)f(Com-)21 +2537 y(puter)f(Chess)h(8)p Fp(,)f(Maastric)o(h)o(t.)21 +2621 y(Bro)q(der,)19 b(A.,)f(Karlin,)g(A.,)g(Ragha)o(v)n(an,)e(P)m(.,)i +(and)g(Upfal,)f(E.)h(\(1990\).)29 b(On)18 b(the)g(Parallel)f(Complexit) +o(y)e(of)j(Ev)n(aluating)21 2662 y(Game-Trees.)g(T)m(ec)o(hnical)c(Rep) +q(ort)h(RR)e(RJ)h(7729,)f(IBM)h(T.)g(J.)g(W)m(atson)g(Researc)o(h)h +(Cen)o(ter,)g(Y)m(orkto)o(wn)e(Heigh)o(ts,)h(New)21 2704 +y(Y)m(ork.)p eop +%%Page: 13 13 +13 12 bop 456 50 a Fe(A)14 b(T)m(axonom)o(y)d(of)j(P)o(arallel)e +(Game-T)m(ree)h(Searc)o(h)i(Algorithms)454 b Fp(13)21 +195 y(Brudno,)17 b(A.)f(L.)g(\(1963\).)26 b(Bounds)17 +b(and)f(V)m(aluations)g(for)g(Abridging)g(the)h(Searc)o(h)g(for)g +(Estimates.)25 b Fn(Pr)n(oblems)17 b(of)g(Cy-)21 237 +y(b)n(ernetics)p Fp(,)d(V)m(ol.)f(10,)h(pp.)g(225{241.)19 +b(T)m(ranslation)14 b(of)g(Russian)h(original)d(in)j +Fn(Pr)n(oblemy)g(Kib)n(ernetiki)p Fp(,)f(10:141{150,)d(Ma)o(y)21 +278 y(1963.)21 356 y(Campb)q(ell,)i(M.)j(S.)f(\(1981\).)22 +b Fn(A)o(lgorithms)16 b(for)g(the)g(Par)n(al)r(lel)g(Se)n(ar)n(ch)g(of) +h(Game)g(Tr)n(e)n(es)p Fp(.)22 b(M.Sc.)15 b(thesis,)h(Departmen)o(t)g +(of)21 397 y(Computing)f(Science,)k(Univ)o(ersit)o(y)e(of)f(Alb)q +(erta,)i(Edmon)o(ton,)e(Alta.)28 b(Av)n(ailable)15 b(as)j(T)m(ec)o(h.)f +(Rep.)f(TR)h(81-8,)g(Dept.)g(of)21 439 y(Computing)12 +b(Science.)21 516 y(Campb)q(ell,)e(M.)h(S.)g(and)h(Marsland,)g(T.)f(A.) +g(\(1983\).)j(A)e(Comparison)e(of)h(Minimax)e(T)m(ree)k(Searc)o(h)f +(Algorithms.)h Fn(A)o(rti\014cial)21 557 y(Intel)r(ligenc)n(e)p +Fp(,)g(V)m(ol.)f(20,)h(pp.)h(347{367.)21 635 y(Ciancarini,)g(P)m(.)h +(\(1994\).)22 b(Distributed)16 b(Searc)o(hes:)23 b(A)16 +b(Basis)g(for)f(Comparison.)21 b Fn(ICCA)16 b(Journal)p +Fp(,)f(V)m(ol.)f(17,)h(No.)g(4,)g(pp.)21 676 y(194{206.)21 +754 y(Cung,)h(V.-D.)f(\(1994\).)24 b Fn(Contribution)17 +b(\022)-21 b(a)18 b(l'A)o(lgorithmique)d(Non)j(Num)o(\023)-20 +b(erique)17 b(Par)n(al)r(l)o(\022)-20 b(ele:)22 b(Explor)n(ation)17 +b(d'Esp)n(ac)n(es)h(de)21 795 y(R)n(e)n(cher)n(che)p +Fp(.)g(Ph.D.)13 b(thesis,)h(Univ)o(ersit)o(\023)-20 b(e)15 +b(P)o(aris)f(VI.)21 873 y(Da)o(vid,)f(V.)h(\(1993\).)20 +b Fn(A)o(lgorithmique)15 b(p)n(ar)n(al)r(l)o(\022)-20 +b(ele)15 b(sur)g(les)g(arbr)n(es)g(de)h(d)o(\023)-20 +b(ecision)16 b(et)g(r)n(aisonnement)g(en)g(temps)g(c)n(ontr)n(aint)f(-) +21 914 y(Etude)g(et)g(applic)n(ation)g(au)g(minimax)p +Fp(.)j(Ph.D.)13 b(thesis,)i(ENSAE,)f(T)m(oulouse,)f(F)m(rance.)21 +992 y(Dideric)o(h,)f(C.)g(G.)g(\(1992\).)j(Ev)n(aluation)c(des)i(P)o +(erformances)g(de)g(l'Algorithm)o(e)d(SSS*)j(a)o(v)o(ec)g(Phases)g(de)g +(Sync)o(hronisation)21 1033 y(sur)j(une)g(Mac)o(hine)f(P)o(arall)o +(\022)-20 b(ele)15 b(\022)-21 b(a)15 b(M)o(\023)-20 b(emoires)14 +b(Distribu)o(\023)-20 b(ees.)23 b(T)m(ec)o(hnical)15 +b(Rep)q(ort)h(LITH-99,)e(Swiss)i(F)m(ederal)f(Institute)i(of)21 +1075 y(T)m(ec)o(hnology)m(,)12 b(Lausanne,)i(Switzerland.)21 +1152 y(F)m(eldmann,)26 b(R.)f(\(1993\).)53 b Fn(Spielb)n(aumsuche)27 +b(mit)e(massiv)h(p)n(ar)n(al)r(lelen)f(Systemen)p Fp(.)54 +b(Ph.D.)25 b(thesis,)k(Univ)o(ersit\177)-21 b(at-)21 +1194 y(Gesam)o(tho)q(c)o(hsc)o(h)o(ule)13 b(P)o(aderb)q(orn,)i(P)o +(aderb)q(orn,)f(German)o(y)m(.)21 1271 y(F)m(eldmann,)j(R.,)h(Monien,)h +(B.,)g(Mysliwietz,)g(P)m(.,)f(and)g(V)m(orn)o(b)q(erger,)i(O.)e +(\(1989\).)31 b(Distributed)19 b(Game)e(T)m(ree)i(Searc)o(h.)21 +1312 y Fn(ICCA)14 b(Journal)p Fp(,)f(V)m(ol.)g(12,)f(No.)i(2,)f(pp.)g +(65{73.)21 1390 y(F)m(elten,)g(E.)g(W.)g(and)h(Otto,)f(S.)g(W.)g +(\(1988\).)k(Chess)d(on)g(a)f(Hyp)q(ercub)q(e.)19 b(In)14 +b(G.)f(F)m(o)o(x,)f(editor,)h Fn(Pr)n(o)n(c)n(e)n(e)n(dings)i(of)f(The) +h(Thir)n(d)21 1431 y(Confer)n(enc)n(e)e(on)i(Hyp)n(er)n(cub)n(e)e +(Concurr)n(ent)h(Computers)f(and)i(Applic)n(ations)p +Fp(,)d(v)o(olume)f(I)q(I-Applications,)g(pp.)i(1329{1341,)21 +1473 y(P)o(assadena,)h(CA.)21 1550 y(F)m(erguson,)g(C.)f(and)h(Korf,)f +(R.)h(E.)f(\(1988\).)18 b(Distributed)c(T)m(ree)h(Searc)o(h)g(and)f +(its)g(Application)f(to)g(Alpha-Beta)h(Pruning.)21 1592 +y(In)g Fn(Pr)n(o)n(c)n(e)n(e)n(dings)g(of)h(AAAI-88)p +Fp(,)e(pp.)h(128{132,)e(Sain)o(t)h(P)o(aul,)g(MN.)21 +1669 y(Fink)o(el,)f(R.)g(A.)h(and)g(Fish)o(burn,)g(J.)g(P)m(.)g +(\(1982\).)j(P)o(arallelism)11 b(in)h(Alpha-Beta)i(Searc)o(h.)k +Fn(A)o(rti\014cial)13 b(Intel)r(ligenc)n(e)p Fp(,)f(V)m(ol.)g(19,)21 +1711 y(No.)h(1,)g(pp.)h(89{106.)21 1788 y(Hiromoto,)i(U.,)j(Masafumi,)d +(Y.,)j(Masaharu,)g(I.,)f(and)g(T)m(oshihide,)g(I.)f(\(1987\).)30 +b(P)o(arallel)18 b(Searc)o(hes)h(of)f(Game)e(T)m(rees.)21 +1830 y Fn(Systems)f(and)h(Computers)e(in)h(Jap)n(an)p +Fp(,)f(V)m(ol.)e(18,)h(No.)g(8,)h(pp.)f(97{109.)21 1907 +y(Hsu,)20 b(F.-h.)e(\(1990\).)31 b Fn(L)n(ar)n(ge)19 +b(Sc)n(ale)h(Par)n(al)r(lelization)e(of)h(A)o(lpha-Beta)h(Se)n(ar)n +(ch:)28 b(A)o(n)19 b(A)o(lgorithmic)g(and)h(A)o(r)n(chite)n(ctur)n(al) +21 1949 y(Study)p Fp(.)28 b(Ph.D.)16 b(thesis,)i(Carnegie)f(Mellon)f +(Univ)o(ersit)o(y)m(,)h(Pittsburgh,)h(U.S.A.)26 b(Also)17 +b(T)m(ec)o(h.)f(Rept.)h(CMU-CS-90-108,)21 1990 y(Carnegie)d(Mellon)f +(Univ)o(ersit)o(y)m(,)g(F)m(eb.)g(1990.)21 2067 y(Hy)o(att,)i(R.)g(M.)g +(\(1988\).)22 b Fn(A)16 b(High-Performanc)n(e)g(Par)n(al)r(lel)g(A)o +(lgorithm)f(T)m(o)h(Se)n(ar)n(ch)h(Depth-F)m(rist)e(Game)i(T)m(r)n(e)n +(es)p Fp(.)22 b(Ph.D.)21 2109 y(thesis,)14 b(Univ)o(ersit)o(y)g(of)f +(Alabama,)e(Birmingham,)f(U.S.A.)21 2186 y(Hy)o(att,)15 +b(R.)f(M.,)h(Suter,)h(B.)f(W.,)f(and)h(Nelson,)h(H.)f(L.)f(\(1989\).)22 +b(A)15 b(P)o(arallel)f(Alpha/Beta)h(T)m(ree)h(Searc)o(hing)g +(Algorithm.)21 2228 y Fn(Par)n(al)r(lel)e(Computing)p +Fp(,)f(V)m(ol.)g(10,)g(No.)g(3,)g(pp.)g(299{308.)21 2305 +y(Karp,)i(R.)f(M.)h(and)g(Zhang,)g(Y.)g(\(1989\).)22 +b(On)15 b(Parallel)f(Ev)n(aluation)g(of)h(Game)e(Trees.)24 +b(In)15 b Fn(Pr)n(o)n(c)n(e)n(e)n(dings)h(of)g(SP)m(AA)g('89)p +Fp(,)21 2347 y(pp.)d(409{420,)f(New)i(Y)m(ork,)f(NY.)h(A)o(CM)g(Press.) +21 2424 y(Kn)o(uth,)f(D.)f(E.)g(and)h(Mo)q(ore,)g(R.)f(W.)f(\(1975\).) +16 b(An)d(Analysis)f(of)g(Alpha-Beta)h(Pruning.)j Fn(A)o(rti\014cial)d +(Intel)r(ligenc)n(e)p Fp(,)f(V)m(ol.)g(6,)21 2466 y(No.)h(3,)g(pp.)h +(293{326.)21 2543 y(Kraas,)e(H.-J.)f(\(1990\).)j Fn(Zur)f(Par)n(al)r +(lelisierung)f(des)h(SSS*-A)o(lgorithmus)p Fp(.)i(Ph.D.)c(thesis,)i(TU) +f(of)f(Braunsc)o(h)o(w)o(eig,)i(Braun-)21 2585 y(sc)o(h)o(w)o(eig,)g +(German)o(y)m(.)21 2662 y(Kuszmaul,)h(B.)h(C.)f(\(1994\).)21 +b Fn(Synchr)n(onize)n(d)c(MIMD)g(Computing)p Fp(.)k(Ph.D.)15 +b(thesis,)g(Massac)o(h)o(usetts)i(Institute)f(of)f(T)m(ec)o(h-)21 +2704 y(nology)m(,)c(Cam)o(bridge,)h(MA.)p eop +%%Page: 14 14 +14 13 bop 0 50 a Fp(14)592 b(ICCA)14 b(Journal)f(Submission)591 +b(June)15 b(12,)e(1996)21 195 y(Leifk)o(er,)f(D.)g(B.)h(and)f(Kanal,)g +(L.)g(N.)h(\(1985\).)i(A)e(Hybrid)f(SSS*/Alpha-Beta)h(Algorithm)d(for)i +(P)o(arallel)g(Searc)o(h)i(of)e(Game)21 237 y(T)m(rees.)19 +b(In)14 b Fn(Pr)n(o)n(c)n(e)n(e)n(dings)g(of)h(IJCAI-85)p +Fp(,)e(pp.)h(1044{1046.)21 311 y(Lindstrom,)d(G.)g(\(1983\).)k(The)e +(Key)h(No)q(de)f(Metho)q(d:)18 b(A)12 b(Highly-P)o(arallel)e +(Alpha-Beta)j(Algorithm.)g(T)m(ec)o(hnical)g(Rep)q(ort)21 +353 y(UUCS)h(83-101,)e(Univ)o(ersit)o(y)i(of)f(Utah,)g(Departmen)o(t)h +(of)f(Computer)g(Science,)i(Salt)e(Lak)o(e)h(Cit)o(y)m(,)e(UT.)21 +428 y(Lu,)20 b(C.-P)m(.)e(P)m(.)g(\(1993\).)33 b Fn(Par)n(al)r(lel)19 +b(Se)n(ar)n(ch)h(of)g(Narr)n(ow)e(Game)i(Tr)n(e)n(es)p +Fp(.)33 b(M.Sc.)19 b(thesis,)i(Departmen)o(t)d(of)h(Computing)21 +469 y(Science,)c(Univ)o(ersit)o(y)e(of)h(Alb)q(erta,)g(Edmon)o(ton,)d +(Canada.)21 544 y(Marsland,)j(T.)h(A.)g(\(1983\).)21 +b(Relativ)o(e)14 b(E\016ciency)h(of)g(Alpha-Beta)g(Implemen)o(tations.) +k(In)c Fn(Pr)n(o)n(c)n(e)n(e)n(dings)h(of)g(IJCAI-83)p +Fp(,)21 585 y(pp.)d(763{766,)f(Karlsruhe,)i(German)o(y)m(.)21 +660 y(Marsland,)k(T.)f(A.)h(and)f(Campb)q(ell,)g(M.)g(S.)g(\(1982\).)29 +b(Parallel)17 b(Searc)o(h)i(of)e(Strongly)g(Ordered)j(Game)c(Trees.)31 +b Fn(A)o(CM)21 702 y(Computing)15 b(Surveys)p Fp(,)f(V)m(ol.)e(14,)h +(No.)g(4,)g(pp.)h(533{551.)21 776 y(Marsland,)h(T.)f(A.)h(and)g(Gao,)f +(Y.)h(\(1995\).)22 b(Sp)q(eculativ)o(e)15 b(P)o(arallelism)e(Impro)o(v) +o(es)h(Searc)o(h?)30 b(T)m(ec)o(hnical)15 b(Rep)q(ort)h(95{05,)21 +818 y(Departmen)o(t)d(of)g(Computing)f(Science,)j(Univ)o(ersit)o(y)f +(of)f(Alb)q(erta,)h(Edmon)o(ton,)e(Alta.)21 892 y(Marsland,)19 +b(T.)g(A.,)g(Olafsson,)h(M.,)g(and)e(Sc)o(hae\013er,)k(J.)d(\(1985\).) +32 b(Multipro)q(cessor)21 b(Tree-Searc)o(h)g(Exp)q(erimen)o(ts.)33 +b(In)21 934 y(D.)13 b(Beal,)g(editor,)h Fn(A)n(dvanc)n(es)h(in)g +(Computer)g(Chess)g(4)p Fp(,)e(pp.)h(37{51.)e(P)o(ermagon)h(Press,)i +(Oxford.)21 1009 y(Marsland,)j(T.)f(A.)h(and)f(P)o(op)q(o)o(wic)o(h,)h +(F.)f(\(1985\).)29 b(Parallel)17 b(Game-Tree)g(Searc)o(h.)31 +b Fn(IEEE)19 b(T)m(r)n(ansactions)f(on)h(Pattern)21 1050 +y(A)o(nalysis)14 b(and)i(Machine)g(Intel)r(ligenc)n(e)p +Fp(,)d(V)m(ol.)f(P)m(AMI-7,)h(No.)h(4,)f(pp.)g(442{452.)21 +1125 y(Newb)q(orn,)g(M.)e(M.)h(\(1985\).)i(A)f(P)o(arallel)e(Searc)o(h) +i(Chess)g(Program.)h(In)e Fn(Pr)n(o)n(c)n(e)n(e)n(dings)h(of)g(the)h(A) +o(CM)f(A)o(nnual)h(Confer)n(enc)n(e)p Fp(,)21 1166 y(pp.)f(272{277.)21 +1241 y(Newb)q(orn,)h(M.)f(M.)h(\(1988\).)j(Unsync)o(hronized)e +(Iterativ)o(e)f(Deep)q(ening)h(P)o(arallel)d(Alpha-Beta)i(Searc)o(h.)19 +b Fn(IEEE)c(T)m(r)n(ansac-)21 1283 y(tions)g(on)g(Pattern)g(A)o +(nalysis)f(and)i(Machine)g(Intel)r(ligenc)n(e)p Fp(,)d(V)m(ol.)f(P)m +(AMI-10,)h(No.)g(5,)g(pp.)h(687{694.)21 1357 y(Plaat,)g(A.,)h(Sc)o +(hae\013er,)h(J.,)f(Pijls,)f(W.,)g(and)h(de)h(Bruin,)f(A.)g(\(1995\).) +20 b(Best-First)d(Fixed-Depth)f(Game-T)m(ree)d(Searc)o(h)j(in)21 +1399 y(Practice.)j(In)14 b Fn(Pr)n(o)n(c)n(e)n(e)n(dings)h(of)f +(IJCAI-95)p Fp(,)f(v)o(olume)f(1,)i(pp.)f(273{279,)f(Mon)o(treal,)h +(Queb)q(ec.)21 1474 y(Plaat,)h(A.,)g(Sc)o(hae\013er,)i(J.,)e(Pijls,)g +(W.,)f(and)i(de)g(Bruin,)g(A.)f(\(1996\).)20 b(Best-First)c +(Fixed-Depth)f(Minimax)d(Algorithms.)21 1515 y(T)m(o)h(app)q(ear)h(in)g +Fn(A)o(rti\014cial)f(Intel)r(ligenc)n(e)p Fp(.)21 1590 +y(Reinefeld,)g(A.)h(\(1983\).)k(An)c(Impro)o(v)o(emen)o(t)e(to)i(the)h +(Scout)g(Tree-Searc)o(h)h(Algorithm.)g Fn(ICCA)e(Journal)p +Fp(,)g(V)m(ol.)f(6,)g(No.)h(4,)21 1631 y(pp.)f(4{14.)21 +1706 y(Sc)o(hae\013er,)19 b(J.)e(\(1989\).)28 b(Distributed)18 +b(Game-T)m(ree)e(Searc)o(hing.)29 b Fn(Journal)18 b(of)g(Par)n(al)r +(lel)g(and)h(Distribute)n(d)e(Computing)p Fp(,)21 1748 +y(V)m(ol.)12 b(6,)h(No.)g(2,)h(pp.)f(90{114.)21 1822 +y(Shinghal,)f(R.)i(and)g(Sh)o(v)o(ed,)g(S.)g(\(1991\).)k(Prop)q(osed)e +(Mo)q(di\014cations)e(to)g(P)o(arallel)f(State)i(Space)g(Searc)o(h)g +(of)f(Game)e(T)m(rees.)21 1864 y Fn(International)j(Journal)g(of)f +(Pattern)h(R)n(e)n(c)n(o)n(gnition)g(and)h(A)o(rti\014cial)e(Intel)r +(ligenc)n(e)p Fp(,)f(V)m(ol.)f(5,)h(No.)h(5,)f(pp.)g(809{833.)21 +1939 y(Stein)o(b)q(erg,)e(I.)e(R.)h(and)g(Solomon,)d(M.)j(\(1990\).)h +(Searc)o(hing)g(Game)d(Trees)k(in)d(P)o(arallel.)i(In)f +Fn(Pr)n(o)n(c)n(c)n(e)n(dings)h(of)h(the)f(1990)h(Inter-)21 +1980 y(national)j(Confer)n(enc)n(e)f(on)h(Par)n(al)r(lel)e(Pr)n(o)n(c)n +(essing)h(\(vol.)g(3\))p Fp(,)g(pp.)f(9{17,)f(Univ)o(ersit)o(y)h(P)o +(ark,)g(P)m(A.)g(P)o(enn.)g(State)h(Univ)o(ersit)o(y)21 +2022 y(Press.)21 2096 y(Sto)q(c)o(kman,)f(G.)i(C.)f(\(1979\).)21 +b(A)16 b(Minimax)c(Algorithm)h(Better)k(than)e(Alpha-Beta?)30 +b Fn(A)o(rti\014cial)14 b(Intel)r(ligenc)n(e)p Fp(,)h(V)m(ol.)f(12,)21 +2138 y(pp.)f(179{196.)21 2213 y(V)m(orn)o(b)q(erger,)18 +b(O.)f(and)f(Monien,)i(B.)e(\(1987\).)27 b(P)o(arallel)16 +b(Alpha-Beta)h(v)o(ersus)h(Parallel)e(SSS*.)27 b(In)17 +b Fn(Pr)n(o)n(c)n(e)n(e)n(dings)g(of)h(the)21 2254 y(IFIP)d(Confer)n +(enc)n(e)g(on)g(Distribute)n(d)f(Pr)n(o)n(c)n(essing)p +Fp(,)g(pp.)f(613{625.)f(North)i(Holland.)21 2329 y(W)m(eill,)k(J.-C.)g +(\(1995\).)32 b Fn(Pr)n(o)n(gr)n(ammes)18 b(d')o(\023)-20 +b(eche)n(cs)20 b(de)g(championnat:)29 b(ar)n(chite)n(ctur)n(e)19 +b(lo)n(giciel)r(le)f(synth)o(\022)-20 b(ese)20 b(de)g(fonctions)21 +2370 y(d')o(\023)-20 b(evaluations,)15 b(p)n(ar)n(al)r(l)o(\023)-20 +b(elisme)13 b(de)j(r)n(e)n(cher)n(che)p Fp(.)h(Ph.D.)c(thesis,)h(Univ)o +(ersit)o(\023)-20 b(e)15 b(P)o(aris)f(8.)21 2445 y(W)m(eill,)d(J.-C.)h +(\(1996\).)k(The)e(ABD)o(AD)o(A)f(Distributed)g(Minimax-Searc)o(h)f +(Algorithm.)i Fn(ICCA)g(Journal)p Fp(,)e(V)m(ol.)g(19,)g(No.)h(1,)21 +2487 y(pp.)g(3{16.)p eop +%%Trailer +end +userdict /end-hook known{end-hook}if +%%EOF diff --git a/parallel/brockington97aphid.ps b/parallel/brockington97aphid.ps new file mode 100755 index 0000000..0198d77 --- /dev/null +++ b/parallel/brockington97aphid.ps @@ -0,0 +1,12648 @@ +%!PS-Adobe-2.0 +%%Creator: dvips 5.55 Copyright 1986, 1994 Radical Eye Software +%%Title: aphidacc.dvi +%%CreationDate: Thu Jun 13 23:50:30 1996 +%%Pages: 20 +%%PageOrder: Ascend +%%BoundingBox: 0 0 612 792 +%%EndComments +%DVIPSCommandLine: dvips aphidacc +%DVIPSParameters: dpi=300, comments removed +%DVIPSSource: TeX output 1996.06.13:2350 +%%BeginProcSet: tex.pro +/TeXDict 250 dict def TeXDict begin /N{def}def /B{bind def}N /S{exch}N +/X{S N}B /TR{translate}N /isls false N /vsize 11 72 mul N /hsize 8.5 72 +mul N /landplus90{false}def /@rigin{isls{[0 landplus90{1 -1}{-1 1} +ifelse 0 0 0]concat}if 72 Resolution div 72 VResolution div neg scale +isls{landplus90{VResolution 72 div vsize mul 0 exch}{Resolution -72 div +hsize mul 0}ifelse TR}if Resolution VResolution vsize -72 div 1 add mul +TR[matrix currentmatrix{dup dup round sub abs 0.00001 lt{round}if} +forall round exch round exch]setmatrix}N /@landscape{/isls true N}B +/@manualfeed{statusdict /manualfeed true put}B /@copies{/#copies X}B +/FMat[1 0 0 -1 0 0]N /FBB[0 0 0 0]N /nn 0 N /IE 0 N /ctr 0 N /df-tail{ +/nn 8 dict N nn begin /FontType 3 N /FontMatrix fntrx N /FontBBox FBB N +string /base X array /BitMaps X /BuildChar{CharBuilder}N /Encoding IE N +end dup{/foo setfont}2 array copy cvx N load 0 nn put /ctr 0 N[}B /df{ +/sf 1 N /fntrx FMat N df-tail}B /dfs{div /sf X /fntrx[sf 0 0 sf neg 0 0] +N df-tail}B /E{pop nn dup definefont setfont}B /ch-width{ch-data dup +length 5 sub get}B /ch-height{ch-data dup length 4 sub get}B /ch-xoff{ +128 ch-data dup length 3 sub get sub}B /ch-yoff{ch-data dup length 2 sub +get 127 sub}B /ch-dx{ch-data dup length 1 sub get}B /ch-image{ch-data +dup type /stringtype ne{ctr get /ctr ctr 1 add N}if}B /id 0 N /rw 0 N +/rc 0 N /gp 0 N /cp 0 N /G 0 N /sf 0 N /CharBuilder{save 3 1 roll S dup +/base get 2 index get S /BitMaps get S get /ch-data X pop /ctr 0 N ch-dx +0 ch-xoff ch-yoff ch-height sub ch-xoff ch-width add ch-yoff +setcachedevice ch-width ch-height true[1 0 0 -1 -.1 ch-xoff sub ch-yoff +.1 sub]{ch-image}imagemask restore}B /D{/cc X dup type /stringtype ne{]} +if nn /base get cc ctr put nn /BitMaps get S ctr S sf 1 ne{dup dup +length 1 sub dup 2 index S get sf div put}if put /ctr ctr 1 add N}B /I{ +cc 1 add D}B /bop{userdict /bop-hook known{bop-hook}if /SI save N @rigin +0 0 moveto /V matrix currentmatrix dup 1 get dup mul exch 0 get dup mul +add .99 lt{/QV}{/RV}ifelse load def pop pop}N /eop{SI restore showpage +userdict /eop-hook known{eop-hook}if}N /@start{userdict /start-hook +known{start-hook}if pop /VResolution X /Resolution X 1000 div /DVImag X +/IE 256 array N 0 1 255{IE S 1 string dup 0 3 index put cvn put}for +65781.76 div /vsize X 65781.76 div /hsize X}N /p{show}N /RMat[1 0 0 -1 0 +0]N /BDot 260 string N /rulex 0 N /ruley 0 N /v{/ruley X /rulex X V}B /V +{}B /RV statusdict begin /product where{pop product dup length 7 ge{0 7 +getinterval dup(Display)eq exch 0 4 getinterval(NeXT)eq or}{pop false} +ifelse}{false}ifelse end{{gsave TR -.1 .1 TR 1 1 scale rulex ruley false +RMat{BDot}imagemask grestore}}{{gsave TR -.1 .1 TR rulex ruley scale 1 1 +false RMat{BDot}imagemask grestore}}ifelse B /QV{gsave newpath transform +round exch round exch itransform moveto rulex 0 rlineto 0 ruley neg +rlineto rulex neg 0 rlineto fill grestore}B /a{moveto}B /delta 0 N /tail +{dup /delta X 0 rmoveto}B /M{S p delta add tail}B /b{S p tail}B /c{-4 M} +B /d{-3 M}B /e{-2 M}B /f{-1 M}B /g{0 M}B /h{1 M}B /i{2 M}B /j{3 M}B /k{ +4 M}B /w{0 rmoveto}B /l{p -4 w}B /m{p -3 w}B /n{p -2 w}B /o{p -1 w}B /q{ +p 1 w}B /r{p 2 w}B /s{p 3 w}B /t{p 4 w}B /x{0 S rmoveto}B /y{3 2 roll p +a}B /bos{/SS save N}B /eos{SS restore}B end +%%EndProcSet +%%BeginProcSet: special.pro +TeXDict begin /SDict 200 dict N SDict begin /@SpecialDefaults{/hs 612 N +/vs 792 N /ho 0 N /vo 0 N /hsc 1 N /vsc 1 N /ang 0 N /CLIP 0 N /rwiSeen +false N /rhiSeen false N /letter{}N /note{}N /a4{}N /legal{}N}B +/@scaleunit 100 N /@hscale{@scaleunit div /hsc X}B /@vscale{@scaleunit +div /vsc X}B /@hsize{/hs X /CLIP 1 N}B /@vsize{/vs X /CLIP 1 N}B /@clip{ +/CLIP 2 N}B /@hoffset{/ho X}B /@voffset{/vo X}B /@angle{/ang X}B /@rwi{ +10 div /rwi X /rwiSeen true N}B /@rhi{10 div /rhi X /rhiSeen true N}B +/@llx{/llx X}B /@lly{/lly X}B /@urx{/urx X}B /@ury{/ury X}B /magscale +true def end /@MacSetUp{userdict /md known{userdict /md get type +/dicttype eq{userdict begin md length 10 add md maxlength ge{/md md dup +length 20 add dict copy def}if end md begin /letter{}N /note{}N /legal{} +N /od{txpose 1 0 mtx defaultmatrix dtransform S atan/pa X newpath +clippath mark{transform{itransform moveto}}{transform{itransform lineto} +}{6 -2 roll transform 6 -2 roll transform 6 -2 roll transform{ +itransform 6 2 roll itransform 6 2 roll itransform 6 2 roll curveto}}{{ +closepath}}pathforall newpath counttomark array astore /gc xdf pop ct 39 +0 put 10 fz 0 fs 2 F/|______Courier fnt invertflag{PaintBlack}if}N +/txpose{pxs pys scale ppr aload pop por{noflips{pop S neg S TR pop 1 -1 +scale}if xflip yflip and{pop S neg S TR 180 rotate 1 -1 scale ppr 3 get +ppr 1 get neg sub neg ppr 2 get ppr 0 get neg sub neg TR}if xflip yflip +not and{pop S neg S TR pop 180 rotate ppr 3 get ppr 1 get neg sub neg 0 +TR}if yflip xflip not and{ppr 1 get neg ppr 0 get neg TR}if}{noflips{TR +pop pop 270 rotate 1 -1 scale}if xflip yflip and{TR pop pop 90 rotate 1 +-1 scale ppr 3 get ppr 1 get neg sub neg ppr 2 get ppr 0 get neg sub neg +TR}if xflip yflip not and{TR pop pop 90 rotate ppr 3 get ppr 1 get neg +sub neg 0 TR}if yflip xflip not and{TR pop pop 270 rotate ppr 2 get ppr +0 get neg sub neg 0 S TR}if}ifelse scaleby96{ppr aload pop 4 -1 roll add +2 div 3 1 roll add 2 div 2 copy TR .96 dup scale neg S neg S TR}if}N /cp +{pop pop showpage pm restore}N end}if}if}N /normalscale{Resolution 72 +div VResolution 72 div neg scale magscale{DVImag dup scale}if 0 setgray} +N /psfts{S 65781.76 div N}N /startTexFig{/psf$SavedState save N userdict +maxlength dict begin /magscale false def normalscale currentpoint TR +/psf$ury psfts /psf$urx psfts /psf$lly psfts /psf$llx psfts /psf$y psfts +/psf$x psfts currentpoint /psf$cy X /psf$cx X /psf$sx psf$x psf$urx +psf$llx sub div N /psf$sy psf$y psf$ury psf$lly sub div N psf$sx psf$sy +scale psf$cx psf$sx div psf$llx sub psf$cy psf$sy div psf$ury sub TR +/showpage{}N /erasepage{}N /copypage{}N /p 3 def @MacSetUp}N /doclip{ +psf$llx psf$lly psf$urx psf$ury currentpoint 6 2 roll newpath 4 copy 4 2 +roll moveto 6 -1 roll S lineto S lineto S lineto closepath clip newpath +moveto}N /endTexFig{end psf$SavedState restore}N /@beginspecial{SDict +begin /SpecialSave save N gsave normalscale currentpoint TR +@SpecialDefaults count /ocount X /dcount countdictstack N}N /@setspecial +{CLIP 1 eq{newpath 0 0 moveto hs 0 rlineto 0 vs rlineto hs neg 0 rlineto +closepath clip}if ho vo TR hsc vsc scale ang rotate rwiSeen{rwi urx llx +sub div rhiSeen{rhi ury lly sub div}{dup}ifelse scale llx neg lly neg TR +}{rhiSeen{rhi ury lly sub div dup scale llx neg lly neg TR}if}ifelse +CLIP 2 eq{newpath llx lly moveto urx lly lineto urx ury lineto llx ury +lineto closepath clip}if /showpage{}N /erasepage{}N /copypage{}N newpath +}N /@endspecial{count ocount sub{pop}repeat countdictstack dcount sub{ +end}repeat grestore SpecialSave restore end}N /@defspecial{SDict begin} +N /@fedspecial{end}B /li{lineto}B /rl{rlineto}B /rc{rcurveto}B /np{ +/SaveX currentpoint /SaveY X N 1 setlinecap newpath}N /st{stroke SaveX +SaveY moveto}N /fil{fill SaveX SaveY moveto}N /ellipse{/endangle X +/startangle X /yrad X /xrad X /savematrix matrix currentmatrix N TR xrad +yrad scale 0 0 1 startangle endangle arc savematrix setmatrix}N end +%%EndProcSet +TeXDict begin 40258431 52099146 1000 300 300 +(/usr/maligne2/grad/brock/Writing/aphid/aphidacc.dvi) +@start /Fa 6 112 df<00FC100383300E00B01C0070380030300030700010600010E000 +10E00000E00000E00000E00000E00000E000106000107000103000203800201C00400E00 +8003830000FC0014177E961A>67 D<FC1F80300600300600300600300600300600300600 +3006003FFE00300600300600300600300600300600300600300600FC1F8011117F9014> +104 D<FF181818181818181818181818181818FF08117F900A>I<FC0F80300600300C00 +30180030200030400030800031800032C000346000382000303000301800300C00300600 +300600FC0F8011117F9015>107 D<F00F803807003802002C0200260200230200230200 +21820020C200206200206200203200201A00200E00200E00700600F8020011117F9014> +110 D<03F0000C0C00180600300300600180400080C000C0C000C0C000C0C000C0C000C0 +6001806001803003001806000C0C0003F00012117F9015>I E /Fb +1 111 df<30F8590C4E0C9C0C980C180C180C30183019303130316032601C100D7F8C15> +110 D E /Fc 49 122 df<000FF000007FFC0001F80E0003E01F0007C03F000F803F000F +803F000F801E000F800C000F8000000F8000000F8000000F800000FFFFFF00FFFFFF000F +801F000F801F000F801F000F801F000F801F000F801F000F801F000F801F000F801F000F +801F000F801F000F801F000F801F000F801F000F801F000F801F000F801F000F801F007F +F0FFE07FF0FFE01B237FA21F>12 D<3803807C07C0FE0FE0FF0FF0FF0FF07F07F03B03B0 +0300300300300700700600600600600C00C01C01C018018070070020020014117EA21D> +34 D<387CFEFEFE7C3807077C8610>46 D<00180000780001F800FFF800FFF80001F800 +01F80001F80001F80001F80001F80001F80001F80001F80001F80001F80001F80001F800 +01F80001F80001F80001F80001F80001F80001F80001F80001F80001F80001F80001F800 +7FFFE07FFFE013207C9F1C>49 D<03FC000FFF003C1FC07007E07C07F0FE03F0FE03F8FE +03F8FE01F87C01F83803F80003F80003F00003F00007E00007C0000F80001F00003E0000 +380000700000E01801C0180380180700180E00380FFFF01FFFF03FFFF07FFFF0FFFFF0FF +FFF015207D9F1C>I<00FE0007FFC00F07E01E03F03F03F03F81F83F81F83F81F81F03F8 +1F03F00003F00003E00007C0001F8001FE0001FF000007C00001F00001F80000FC0000FC +3C00FE7E00FEFF00FEFF00FEFF00FEFF00FC7E01FC7801F81E07F00FFFC001FE0017207E +9F1C>I<0000E00001E00003E00003E00007E0000FE0001FE0001FE00037E00077E000E7 +E001C7E00187E00307E00707E00E07E00C07E01807E03807E07007E0E007E0FFFFFEFFFF +FE0007E00007E00007E00007E00007E00007E00007E000FFFE00FFFE17207E9F1C>I<10 +00201E01E01FFFC01FFF801FFF001FFE001FF8001BC00018000018000018000018000019 +FC001FFF001E0FC01807E01803E00003F00003F00003F80003F83803F87C03F8FE03F8FE +03F8FC03F0FC03F07007E03007C01C1F800FFF0003F80015207D9F1C>I<001F8000FFE0 +03F07007C0F00F01F81F01F83E01F83E01F87E00F07C00007C0000FC0800FC7FC0FCFFE0 +FD80F0FF00F8FE007CFE007CFC007EFC007EFC007EFC007E7C007E7C007E7C007E3C007C +3E007C1E00F80F00F00783E003FFC000FF0017207E9F1C>I<6000007800007FFFFE7FFF +FE7FFFFC7FFFF87FFFF87FFFF0E00060E000C0C00180C00300C00300000600000C00001C +0000180000380000780000780000F00000F00000F00001F00001F00001F00003F00003F0 +0003F00003F00003F00003F00003F00001E00017227DA11C>I<00FE0003FFC00703E00E +00F01C00F01C00783C00783E00783F00783F80783FE0F01FF9E01FFFC00FFF8007FFC003 +FFE007FFF01E7FF83C1FFC7807FC7801FEF000FEF0003EF0001EF0001EF0001CF8001C78 +00383C00381F01F00FFFC001FF0017207E9F1C>I<000070000000007000000000F80000 +0000F800000000F800000001FC00000001FC00000003FE00000003FE00000003FE000000 +06FF000000067F0000000E7F8000000C3F8000000C3F800000183FC00000181FC0000038 +1FE00000300FE00000300FE00000600FF000006007F00000E007F80000FFFFF80000FFFF +F800018001FC00018001FC00038001FE00030000FE00030000FE000600007F000600007F +00FFE00FFFF8FFE00FFFF825227EA12A>65 D<FFFFFF8000FFFFFFE00007F001F80007F0 +00FC0007F0007E0007F0007E0007F0007F0007F0007F0007F0007F0007F0007F0007F000 +7F0007F0007E0007F000FE0007F000FC0007F003F80007FFFFF00007FFFFF00007F001FC +0007F0007E0007F0003F0007F0003F8007F0001F8007F0001FC007F0001FC007F0001FC0 +07F0001FC007F0001FC007F0001FC007F0003F8007F0003F8007F0007F0007F001FE00FF +FFFFF800FFFFFFC00022227EA128>I<0003FE0080001FFF818000FF01E38001F8003F80 +03E0001F8007C0000F800F800007801F800007803F000003803F000003807F000001807E +000001807E00000180FE00000000FE00000000FE00000000FE00000000FE00000000FE00 +000000FE00000000FE000000007E000000007E000001807F000001803F000001803F0000 +03801F800003000F8000030007C000060003F0000C0001F800380000FF00F000001FFFC0 +000003FE000021227DA128>I<FFFFFF8000FFFFFFF00007F003FC0007F0007E0007F000 +3F0007F0001F8007F0000FC007F00007E007F00007E007F00007F007F00003F007F00003 +F007F00003F007F00003F807F00003F807F00003F807F00003F807F00003F807F00003F8 +07F00003F807F00003F807F00003F807F00003F007F00003F007F00003F007F00007E007 +F00007E007F0000FC007F0001F8007F0003F0007F0007E0007F003FC00FFFFFFF000FFFF +FF800025227EA12B>I<FFFFFFF8FFFFFFF807F001F807F0007807F0003807F0001807F0 +001C07F0001C07F0000C07F0000C07F0180C07F0180C07F0180007F0180007F0380007F0 +780007FFF80007FFF80007F0780007F0380007F0180007F0180007F0180007F0180007F0 +000007F0000007F0000007F0000007F0000007F0000007F0000007F00000FFFFE000FFFF +E0001E227EA123>70 D<FFFF83FFFEFFFF83FFFE07F0001FC007F0001FC007F0001FC007 +F0001FC007F0001FC007F0001FC007F0001FC007F0001FC007F0001FC007F0001FC007F0 +001FC007F0001FC007F0001FC007FFFFFFC007FFFFFFC007F0001FC007F0001FC007F000 +1FC007F0001FC007F0001FC007F0001FC007F0001FC007F0001FC007F0001FC007F0001F +C007F0001FC007F0001FC007F0001FC007F0001FC007F0001FC0FFFF83FFFEFFFF83FFFE +27227EA12C>72 D<FFFFE0FFFFE003F80003F80003F80003F80003F80003F80003F80003 +F80003F80003F80003F80003F80003F80003F80003F80003F80003F80003F80003F80003 +F80003F80003F80003F80003F80003F80003F80003F80003F80003F80003F800FFFFE0FF +FFE013227FA115>I<FFFFE000FFFFE00007F0000007F0000007F0000007F0000007F000 +0007F0000007F0000007F0000007F0000007F0000007F0000007F0000007F0000007F000 +0007F0000007F0000007F0000007F0000007F0000007F0001807F0001807F0001807F000 +1807F0003807F0003807F0007007F0007007F000F007F001F007F007F0FFFFFFF0FFFFFF +F01D227EA122>76 D<FFF000000FFFFFF800001FFF07F800001FE006FC000037E006FC00 +0037E006FC000037E0067E000067E0067E000067E0063F0000C7E0063F0000C7E0061F80 +0187E0061F800187E0060FC00307E0060FC00307E0060FC00307E00607E00607E00607E0 +0607E00603F00C07E00603F00C07E00601F81807E00601F81807E00601F81807E00600FC +3007E00600FC3007E006007E6007E006007E6007E006003FC007E006003FC007E006001F +8007E006001F8007E006001F8007E006000F0007E0FFF00F00FFFFFFF00600FFFF30227E +A135>I<0007FC0000003FFF800000FC07E00003F001F80007E000FC000FC0007E001F80 +003F001F80003F003F00001F803F00001F807F00001FC07E00000FC07E00000FC0FE0000 +0FE0FE00000FE0FE00000FE0FE00000FE0FE00000FE0FE00000FE0FE00000FE0FE00000F +E0FE00000FE07E00000FC07F00001FC07F00001FC03F00001F803F80003F801F80003F00 +0FC0007E0007E000FC0003F001F80000FC07E000003FFF80000007FC000023227DA12A> +79 D<FFFFFF00FFFFFFE007F007F007F001FC07F000FC07F0007E07F0007E07F0007F07 +F0007F07F0007F07F0007F07F0007F07F0007E07F0007E07F000FC07F001FC07F007F007 +FFFFE007FFFF0007F0000007F0000007F0000007F0000007F0000007F0000007F0000007 +F0000007F0000007F0000007F0000007F0000007F00000FFFF8000FFFF800020227EA126 +>I<01FC0407FF8C1F03FC3C007C7C003C78001C78001CF8000CF8000CFC000CFC0000FF +0000FFE0007FFF007FFFC03FFFF01FFFF80FFFFC03FFFE003FFE0003FF00007F00003F00 +003FC0001FC0001FC0001FE0001EE0001EF0003CFC003CFF00F8C7FFE080FF8018227DA1 +1F>83 D<7FFFFFFF807FFFFFFF807E03F80F807803F807807003F803806003F80180E003 +F801C0E003F801C0C003F800C0C003F800C0C003F800C0C003F800C00003F800000003F8 +00000003F800000003F800000003F800000003F800000003F800000003F800000003F800 +000003F800000003F800000003F800000003F800000003F800000003F800000003F80000 +0003F800000003F800000003F800000003F8000003FFFFF80003FFFFF80022227EA127> +I<FFFF803FFCFFFF803FFC07F000018007F000018007F000018007F000018007F0000180 +07F000018007F000018007F000018007F000018007F000018007F000018007F000018007 +F000018007F000018007F000018007F000018007F000018007F000018007F000018007F0 +00018007F000018007F000018007F000018007F000018003F000030003F800030001F800 +060000FC000E00007E001C00003F80F800000FFFE0000001FF000026227EA12B>I<FFFF +800FFEFFFF800FFE07F00000C007F80000C003F800018003F800018001FC00030001FC00 +030001FE00070000FE00060000FF000600007F000C00007F800C00003F801800003F8018 +00003FC03800001FC03000001FE03000000FE06000000FF060000007F0C0000007F0C000 +0007F9C0000003F980000003FD80000001FF00000001FF00000000FE00000000FE000000 +00FE000000007C000000007C00000000380000000038000027227FA12A>I<FFFF0FFFF0 +1FFEFFFF0FFFF01FFE0FF000FF0000E007F0007F0000C007F0007F0000C003F8007F8001 +8003F8003F80018003FC003F80038001FC003FC0030001FC003FC0030000FE007FE00600 +00FE006FE0060000FF006FE00600007F00C7F00C00007F00C7F00C00007F80C7F81C0000 +3F8183F81800003F8183F81800001FC383FC3000001FC301FC3000001FE301FC3000000F +E600FE6000000FE600FE6000000FF600FFE0000007FC007FC0000007FC007FC0000003FC +007F80000003F8003F80000003F8003F80000001F0001F00000001F0001F00000000F000 +1E00000000E0000E00000000E0000E000037227FA13A>I<0400400E00E0180180380380 +300300600600600600E00E00C00C00C00C00DC0DC0FE0FE0FF0FF0FF0FF07F07F03E03E0 +1C01C014117AA21D>92 D<07FC001FFF803F07C03F03E03F01E03F01F01E01F00001F000 +01F0003FF003FDF01FC1F03F01F07E01F0FC01F0FC01F0FC01F0FC01F07E02F07E0CF81F +F87F07E03F18167E951B>97 D<FF000000FF0000001F0000001F0000001F0000001F0000 +001F0000001F0000001F0000001F0000001F0000001F0000001F0000001F0FE0001F3FF8 +001FF07C001F801E001F001F001F000F801F000F801F000FC01F000FC01F000FC01F000F +C01F000FC01F000FC01F000FC01F000FC01F000F801F001F801F801F001FC03E001EE07C +001C3FF800180FC0001A237EA21F>I<00FF8007FFE00F83F01F03F03E03F07E03F07C01 +E07C0000FC0000FC0000FC0000FC0000FC0000FC00007C00007E00007E00003E00301F00 +600FC0E007FF8000FE0014167E9519>I<0001FE000001FE0000003E0000003E0000003E +0000003E0000003E0000003E0000003E0000003E0000003E0000003E0000003E0001FC3E +0007FFBE000F81FE001F007E003E003E007E003E007C003E00FC003E00FC003E00FC003E +00FC003E00FC003E00FC003E00FC003E00FC003E007C003E007C003E003E007E001E00FE +000F83BE0007FF3FC001FC3FC01A237EA21F>I<00FE0007FF800F87C01E01E03E01F07C +00F07C00F8FC00F8FC00F8FFFFF8FFFFF8FC0000FC0000FC00007C00007C00007E00003E +00181F00300FC07003FFC000FF0015167E951A>I<003F8000FFC001E3E003C7E007C7E0 +0F87E00F83C00F80000F80000F80000F80000F80000F8000FFFC00FFFC000F80000F8000 +0F80000F80000F80000F80000F80000F80000F80000F80000F80000F80000F80000F8000 +0F80000F80000F80000F80007FF8007FF80013237FA211>I<03FC1E0FFF7F1F0F8F3E07 +CF3C03C07C03E07C03E07C03E07C03E07C03E03C03C03E07C01F0F801FFF0013FC003000 +003000003800003FFF801FFFF00FFFF81FFFFC3800FC70003EF0001EF0001EF0001EF000 +1E78003C7C007C3F01F80FFFE001FF0018217E951C>I<FF000000FF0000001F0000001F +0000001F0000001F0000001F0000001F0000001F0000001F0000001F0000001F0000001F +0000001F07E0001F1FF8001F307C001F403C001F803E001F803E001F003E001F003E001F +003E001F003E001F003E001F003E001F003E001F003E001F003E001F003E001F003E001F +003E001F003E001F003E00FFE1FFC0FFE1FFC01A237EA21F>I<1C003E007F007F007F00 +3E001C000000000000000000000000000000FF00FF001F001F001F001F001F001F001F00 +1F001F001F001F001F001F001F001F001F001F001F00FFE0FFE00B247EA310>I<FF00FF +001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F +001F001F001F001F001F001F001F001F001F001F001F001F001F00FFE0FFE00B237EA210 +>108 D<FF07F007F000FF1FFC1FFC001F303E303E001F403E403E001F801F801F001F80 +1F801F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F00 +1F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F00 +1F001F001F001F001F001F001F001F00FFE0FFE0FFE0FFE0FFE0FFE02B167E9530>I<FF +07E000FF1FF8001F307C001F403C001F803E001F803E001F003E001F003E001F003E001F +003E001F003E001F003E001F003E001F003E001F003E001F003E001F003E001F003E001F +003E001F003E00FFE1FFC0FFE1FFC01A167E951F>I<00FE0007FFC00F83E01E00F03E00 +F87C007C7C007C7C007CFC007EFC007EFC007EFC007EFC007EFC007EFC007E7C007C7C00 +7C3E00F81F01F00F83E007FFC000FE0017167E951C>I<FF0FE000FF3FF8001FF07C001F +803E001F001F001F001F801F001F801F000FC01F000FC01F000FC01F000FC01F000FC01F +000FC01F000FC01F000FC01F001F801F001F801F803F001FC03E001FE0FC001F3FF8001F +0FC0001F0000001F0000001F0000001F0000001F0000001F0000001F0000001F000000FF +E00000FFE000001A207E951F>I<FE1F00FE3FC01E67E01EC7E01E87E01E87E01F83C01F +00001F00001F00001F00001F00001F00001F00001F00001F00001F00001F00001F00001F +0000FFF000FFF00013167E9517>114 D<0FF3003FFF00781F00600700E00300E00300F0 +0300FC00007FE0007FF8003FFE000FFF0001FF00000F80C00780C00380E00380E00380F0 +0700FC0E00EFFC00C7F00011167E9516>I<018000018000018000018000038000038000 +0780000780000F80003F8000FFFF00FFFF000F80000F80000F80000F80000F80000F8000 +0F80000F80000F80000F80000F80000F81800F81800F81800F81800F81800F830007C300 +03FE0000F80011207F9F16>I<FF01FE00FF01FE001F003E001F003E001F003E001F003E +001F003E001F003E001F003E001F003E001F003E001F003E001F003E001F003E001F003E +001F003E001F003E001F007E001F00FE000F81BE0007FF3FC001FC3FC01A167E951F>I< +FFE01FE0FFE01FE00F8006000F8006000FC00E0007C00C0007E01C0003E0180003E01800 +01F0300001F0300000F8600000F86000007CC000007CC000007FC000003F8000003F8000 +001F0000001F0000000E0000000E00001B167F951E>I<FFE7FF07F8FFE7FF07F81F0078 +00C00F807801800F807C01800F807C018007C07E030007C0DE030007E0DE070003E0DF06 +0003E18F060001F18F0C0001F38F8C0001FB079C0000FB07D80000FE03D800007E03F000 +007E03F000007C01F000003C01E000003800E000001800C00025167F9528>I<FFE01FE0 +FFE01FE00F8006000F8006000FC00E0007C00C0007E01C0003E0180003E0180001F03000 +01F0300000F8600000F86000007CC000007CC000007FC000003F8000003F8000001F0000 +001F0000000E0000000E0000000C0000000C00000018000078180000FC380000FC300000 +FC60000069C000007F8000001F0000001B207F951E>121 D E /Fd +1 49 df<040E0E1C1C1C38383070706060C0C0070F7F8F0A>48 D +E /Fe 59 123 df<0387000387000387000387000387000387007FFFC0FFFFE0FFFFE007 +0E00070E00070E000E1C000E1C000E1C000E1C00FFFFE0FFFFE07FFFC01C38001C38001C +38001C38001C38001C380013197F9816>35 D<03800007E0000FE0001E70001C70001C70 +001C70001C77E01CE7E01DE7E00FC7000F8E000F0E001E0E003F1C007F1C00739C00E3F8 +00E1F800E0F1C0E0F1C071F9C07FFFC03F9F801E070013197F9816>38 +D<00E001E0038007000E001C001C0038003800700070007000E000E000E000E000E000E0 +00E000E000E000700070007000380038001C001C000E000700038001E000E00B217A9C16 +>40 D<C000E000700038001C000E000E000700070003800380038001C001C001C001C001 +C001C001C001C001C0038003800380070007000E000E001C0038007000E000C0000A217B +9C16>I<01C00001C00001C00001C00071C700F9CF807FFF001FFC0007F00007F0001FFC +007FFF00F9CF8071C70001C00001C00001C00001C00011127E9516>I<01C00001C00001 +C00001C00001C00001C00001C00001C000FFFF80FFFF80FFFF8001C00001C00001C00001 +C00001C00001C00001C00001C00011137E9516>I<387C7E7E3E0E1E1C78F060070B7984 +16>I<70F8F8F8700505788416>46 D<01800380038007800F807F80FF80738003800380 +0380038003800380038003800380038003800380038003807FF87FFC7FF80E197C9816> +49 D<07E0001FF8003FFC00783E00E00700F00780F00380600380000380000380000700 +000700000E00001C0000380000700000E00001C0000380000F00001E03803803807FFF80 +FFFF807FFF8011197E9816>I<00E00001F00001F00001B00001B00003B80003B80003B8 +00031800071C00071C00071C00071C00071C000E0E000E0E000FFE000FFE001FFF001C07 +001C07001C07007F1FC0FF1FE07F1FC013197F9816>65 D<7FF800FFFE007FFF001C0F00 +1C07801C03801C03801C03801C07801C07001FFF001FFE001FFE001C1F001C03801C03C0 +1C01C01C01C01C01C01C01C01C03C01C07807FFF80FFFF007FFC0012197F9816>I<01F1 +8007FB800FFF801F0F803C0780380380700380700380F00000E00000E00000E00000E000 +00E00000E00000E00000F000007003807003803803803C07001F0F000FFE0007FC0001F0 +0011197E9816>I<7FF800FFFE007FFF001C0F001C07801C03C01C01C01C01C01C01E01C +00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C01C01C01C01C03C01C07801C +0F807FFF00FFFE007FF8001319809816>I<7FFFC0FFFFC07FFFC01C01C01C01C01C01C0 +1C01C01C00001C00001C1C001C1C001FFC001FFC001FFC001C1C001C1C001C00001C00E0 +1C00E01C00E01C00E01C00E07FFFE0FFFFE07FFFE013197F9816>I<FFFFE0FFFFE0FFFF +E01C00E01C00E01C00E01C00E01C00001C00001C1C001C1C001FFC001FFC001FFC001C1C +001C1C001C00001C00001C00001C00001C00001C0000FF8000FFC000FF800013197F9816 +>I<03E30007FF000FFF001E1F003C0F00380700700700700700F00000E00000E00000E0 +0000E00000E03F80E07FC0E03F80F00700700700700700380F003C0F001E1F000FFF0007 +F70003E70012197E9816>I<7F1FC0FFBFE07F1FC01C07001C07001C07001C07001C0700 +1C07001C07001FFF001FFF001FFF001C07001C07001C07001C07001C07001C07001C0700 +1C07001C07007F1FC0FFBFE07F1FC013197F9816>I<FFFEFFFEFFFE0380038003800380 +038003800380038003800380038003800380038003800380038003800380FFFEFFFEFFFE +0F197D9816>I<7F0FE0FF8FF07F0FE01C07801C0F001C0E001C1C001C3C001C78001CF0 +001CE0001DF0001FF0001FF8001F38001E1C001C1C001C0E001C0E001C07001C07001C03 +807F07E0FF8FF07F07E01419809816>75 D<FFC000FFC000FFC0001C00001C00001C0000 +1C00001C00001C00001C00001C00001C00001C00001C00001C00001C00001C00001C0040 +1C00E01C00E01C00E01C00E0FFFFE0FFFFE0FFFFE013197F9816>I<FC07E0FE0FE0FE0F +E03A0B803B1B803B1B803B1B803B1B803B1B803BBB8039B38039B38039B38039B38039F3 +8038E38038E380380380380380380380380380380380FE0FE0FE0FE0FE0FE013197F9816 +>I<7E1FC0FF3FE07F1FC01D07001D87001D87001D87001DC7001DC7001CC7001CC7001C +E7001CE7001CE7001C67001C67001C77001C77001C37001C37001C37001C17007F1F00FF +9F007F0F0013197F9816>I<1FFC003FFE007FFF00780F00F00780E00380E00380E00380 +E00380E00380E00380E00380E00380E00380E00380E00380E00380E00380E00380F00780 +F00780780F007FFF003FFE001FFC0011197E9816>I<7FF800FFFE007FFF001C0F801C03 +801C03C01C01C01C01C01C01C01C03C01C03801C0F801FFF001FFE001FF8001C00001C00 +001C00001C00001C00001C00001C00007F0000FF80007F000012197F9816>I<7FE000FF +F8007FFC001C1E001C0F001C07001C07001C07001C07001C0F001C1E001FFC001FF8001F +FC001C1C001C0E001C0E001C0E001C0E001C0E201C0E701C0E707F07E0FF87E07F03C014 +197F9816>82 D<07E3001FFF003FFF00781F00F00700E00700E00700E00000F000007800 +003F80001FF00007FC0000FE00000F00000700000380000380600380E00380E00700F80F +00FFFE00FFFC00C7F00011197E9816>I<7FFFE0FFFFE0FFFFE0E0E0E0E0E0E0E0E0E0E0 +E0E000E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000 +E00000E00000E00000E00007FC000FFE0007FC0013197F9816>I<7F07F0FF8FF87F07F0 +1C01C01C01C01C01C01C01C01C01C01C01C01C01C01C01C01C01C01C01C01C01C01C01C0 +1C01C01C01C01C01C01C01C00E03800E038007070007FF0003FE0000F8001519809816> +I<FE0FE0FF1FE0FE0FE03803801C07001C07001C07001C07000E0E000E0E000E0E000E0E +00060C00071C00071C00071C00071C0003180003B80003B80003B80001B00001F00001F0 +0000E00013197F9816>I<7F1F807F3F807F1F800E1E000E1C00073C0007380003B80003 +F00001F00001E00000E00001E00001F00003F00003B80007B800071C00071C000E0E000E +0E001C07007F1FC0FF1FE07F1FC013197F9816>88 D<FE0FE0FF1FE0FE0FE01C07001C07 +000E0E000E0E00071C00071C00071C0003B80003B80001F00001F00000E00000E00000E0 +0000E00000E00000E00000E00000E00003F80007FC0003F80013197F9816>I<7FFF80FF +FF80FFFF80E00700E00F00E01E00E01C00003C0000780000700000F00001E00001C00003 +C0000780000700000F00001E03801C03803C0380780380700380FFFF80FFFF80FFFF8011 +197E9816>I<FFF0FFF0FFF0E000E000E000E000E000E000E000E000E000E000E000E000 +E000E000E000E000E000E000E000E000E000E000E000E000E000E000FFF0FFF0FFF00C20 +789C16>I<FFF0FFF0FFF000700070007000700070007000700070007000700070007000 +700070007000700070007000700070007000700070007000700070FFF0FFF0FFF00C207F +9C16>93 D<1FE0003FF0007FF800783C00300E00000E00000E0003FE001FFE003E0E0070 +0E00E00E00E00E00E00E00783E007FFFE03FE7E00F83E013127E9116>97 +D<7E0000FE00007E00000E00000E00000E00000E00000E3E000EFF000FFF800F83C00F00 +E00E00E00E00700E00700E00700E00700E00700E00700E00E00F01E00F83C00FFF800EFF +00063C001419809816>I<03F80FFC1FFE3C1E780C7000E000E000E000E000E000F00070 +0778073E0E1FFC0FF803F010127D9116>I<003F00007F00003F00000700000700000700 +00070003C7000FF7001FFF003C1F00780F00700700E00700E00700E00700E00700E00700 +E00700700F00700F003C1F001FFFE00FE7F007C7E014197F9816>I<03E00FF81FFC3C1E +780E7007E007FFFFFFFFFFFFE000E000700778073C0F1FFE0FFC03F010127D9116>I<00 +1F00007F8000FF8001E78001C30001C00001C0007FFF00FFFF00FFFF0001C00001C00001 +C00001C00001C00001C00001C00001C00001C00001C00001C00001C0003FFE007FFF003F +FE0011197F9816>I<03E3C007F7E00FFFE01C1CC0380E00380E00380E00380E00380E00 +1C1C000FF8001FF0001BE0003800001800001FFC001FFF003FFF807803C0E000E0E000E0 +E000E0E000E07001C07C07C03FFF800FFE0003F800131C7F9116>I<7E0000FE00007E00 +000E00000E00000E00000E00000E3C000EFE000FFF000F87800F03800E03800E03800E03 +800E03800E03800E03800E03800E03800E03800E03807FC7F0FFE7F87FC7F01519809816 +>I<018003C003C0018000000000000000007FC07FC07FC001C001C001C001C001C001C0 +01C001C001C001C001C001C07FFFFFFF7FFF101A7D9916>I<7E0000FE00007E00000E00 +000E00000E00000E00000E7FE00E7FE00E7FE00E0F000E1E000E3C000E78000EF0000FF0 +000FF8000FBC000F1E000E0E000E07000E07807F87F0FFCFF07F87F01419809816>107 +D<FFC000FFC000FFC00001C00001C00001C00001C00001C00001C00001C00001C00001C0 +0001C00001C00001C00001C00001C00001C00001C00001C00001C00001C000FFFF80FFFF +80FFFF8011197E9816>I<F9C380FFEFC0FFFFE03C78E03C78E03870E03870E03870E038 +70E03870E03870E03870E03870E03870E03870E0FE7CF8FE7CF8FE3C781512809116>I< +7E3C00FEFE007FFF000F87800F03800E03800E03800E03800E03800E03800E03800E0380 +0E03800E03800E03807FC7F0FFE7F87FC7F01512809116>I<03E0000FF8001FFC003C1E +00780F00700700E00380E00380E00380E00380E00380F00780700700780F003C1E001FFC +000FF80003E00011127E9116>I<7E3E00FEFF007FFF800F83C00F00E00E00E00E00700E +00700E00700E00700E00700E00700E00E00F01E00F83C00FFF800EFF000E3C000E00000E +00000E00000E00000E00000E00007FC000FFE0007FC000141B809116>I<FF0FC0FF3FE0 +FF7FE007F04007C000078000078000070000070000070000070000070000070000070000 +070000FFFC00FFFC00FFFC0013127F9116>114 D<0FEC3FFC7FFCF03CE01CE01C70007F +801FF007F8003C600EE00EF00EF81EFFFCFFF8C7E00F127D9116>I<0300000700000700 +000700000700007FFF00FFFF00FFFF000700000700000700000700000700000700000700 +0007010007038007038007038007870003FE0001FC0000F80011177F9616>I<7E1F80FE +3F807E1F800E03800E03800E03800E03800E03800E03800E03800E03800E03800E03800E +03800E0F800FFFF007FBF803E3F01512809116>I<7F1FC0FF1FE07F1FC01C07001E0F00 +0E0E000E0E000E0E00071C00071C00071C00071C0003B80003B80003B80001F00001F000 +00E00013127F9116>I<FF1FE0FFBFE0FF1FE038038038038038038038038038E38019F3 +0019F30019B3001DB7001DB7001DB7001DB7000F1E000F1E000F1E0013127F9116>I<7F +1FC07F3FC07F1FC00F1C00073C0003B80003F00001F00000E00001E00001F00003B80007 +3C00071C000E0E007F1FC0FF3FE07F1FC013127F9116>I<7F1FC0FF9FE07F1FC01C0700 +0E07000E0E000E0E00070E00071C00071C00039C00039C0003980001B80001B80000F000 +00F00000F00000E00000E00000E00001C00079C0007BC0007F80003F00003C0000131B7F +9116>I<3FFFC07FFFC07FFFC0700780700F00701E00003C0000780001F00003E0000780 +000F00001E01C03C01C07801C0FFFFC0FFFFC0FFFFC012127F9116>I +E /Ff 2 13 df<0007E00000003838000000E00C004001C00E0040038007008007000780 +800F000780801E000381003E0003C1003C0003C2007C0003C2007C0003C400F80003C400 +F80003C800F80003D000F80003D000F80003E000F00003C000F00003C000F00003C00078 +0003C00078000FC000380011C1001C0061C2000E0380E60001FC003800221A7E9926>11 +D<000003F80000000C0C0000003006000000400700000080038000010003800002000380 +000400038000040007800008000780000800078000100007000010000F000020000E0000 +20001C00002000380000403FF000004040E00000403F300000400038000080001C000080 +001E000080001E000080001E000100001F000100001F000100001F000100001F00020000 +3E000200003E000200003E000200003C000600007C000600007800060000F800060000F0 +00090001E000090003C000088007800008400E000010303C0000100FE000001000000000 +100000000020000000002000000000200000000020000000004000000000400000000040 +0000000040000000008000000000800000000021367FA922>I E +/Fg 37 122 df<00FCF807839C0E079C1C07081C07001C07001C07001C07001C0700FFFF +E01C07001C07001C07001C07001C07001C07001C07001C07001C07001C07001C07001C07 +00FF1FE01617809615>11 D<60C0F1E0F1E070E01020102020402040408040800B0A7F96 +12>34 D<0102040C1818303070606060E0E0E0E0E0E0E0E0E0E060606070303018180C04 +020108227D980E>40 D<8040203018180C0C0E060606070707070707070707070606060E +0C0C18183020408008227E980E>I<60F0F070101020204040040A7D830A>44 +D<FF80FF80090280870C>I<60F0F06004047D830A>I<001000003800003800003800005C +00005C00005C00008E00008E00008E0001070001070003078002038002038007FFC00401 +C00401C00800E00800E01800E03800F0FE03FE17177F961A>65 D<FFE00E000E000E000E +000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E00FF +E00B177F960D>73 D<FE0003F81E0003C0170005C0170005C0170005C0138009C0138009 +C011C011C011C011C011C011C010E021C010E021C0107041C0107041C0107041C0103881 +C0103881C0101D01C0101D01C0100E01C0100E01C0380E01C0FE040FF81D177F9620>77 +D<0FC4302C601C400CC004C004C004E00070007F003FE00FF801FC001C000E0006800680 +068006C004E008D81087E00F177E9614>83 D<7FFFF86038184038084038088038048038 +048038040038000038000038000038000038000038000038000038000038000038000038 +0000380000380000380000380007FFC016177F9619>I<204020404080408081008100E1 +C0F1E0F1E060C00B0A7B9612>92 D<1FC0386038301038003803F81E3830387038E039E0 +39E07970FF1F1E100E7F8D12>97 D<FC00001C00001C00001C00001C00001C00001C0000 +1C00001C00001CF8001F06001C03001C03801C01801C01C01C01C01C01C01C01C01C0180 +1C03801C03001B0E0010F8001217809614>I<07F01838303870106000E000E000E000E0 +00600070083008183007C00D0E7F8D10>I<007E00000E00000E00000E00000E00000E00 +000E00000E00000E0007CE001C3E00300E00700E00600E00E00E00E00E00E00E00E00E00 +600E00700E00301E00182E0007CFC012177F9614>I<0FC0186030307038E018FFF8E000 +E000E000600070083010183007C00D0E7F8D10>I<03E006700E701C201C001C001C001C +001C00FF801C001C001C001C001C001C001C001C001C001C001C001C00FF800C1780960B +>I<0F9E18E33060707070707070306018C02F80200060003FE03FF83FFC600EC006C006 +C006600C38380FE010157F8D12>I<FC00001C00001C00001C00001C00001C00001C0000 +1C00001C00001C7C001D8E001E07001C07001C07001C07001C07001C07001C07001C0700 +1C07001C07001C0700FF9FE01317809614>I<183C3C1800000000007C1C1C1C1C1C1C1C +1C1C1C1C1CFF081780960A>I<FC00001C00001C00001C00001C00001C00001C00001C00 +001C00001C3F801C1C001C18001C20001C40001CC0001FE0001CF0001C70001C78001C3C +001C1E001C1E00FF3FC01217809613>107 D<FC001C001C001C001C001C001C001C001C +001C001C001C001C001C001C001C001C001C001C001C001C001C00FF80091780960A>I< +FC7C1F001D8E63801E0781C01C0701C01C0701C01C0701C01C0701C01C0701C01C0701C0 +1C0701C01C0701C01C0701C01C0701C0FF9FE7F81D0E808D1E>I<FC7C001D8E001E0700 +1C07001C07001C07001C07001C07001C07001C07001C07001C07001C0700FF9FE0130E80 +8D14>I<07C018303018600C600CE00EE00EE00EE00EE00E701C3018183007C00F0E7F8D +12>I<FCF8001F0E001C03001C03801C01801C01C01C01C01C01C01C01C01C01801C0380 +1C07001F0E001CF8001C00001C00001C00001C00001C0000FF80001214808D14>I<07C2 +001C2600381E00700E00600E00E00E00E00E00E00E00E00E00600E00700E00301E001C2E +0007CE00000E00000E00000E00000E00000E00007FC012147F8D13>I<FCF01D381E381C +101C001C001C001C001C001C001C001C001C00FF800D0E808D0E>I<1F4060C0C040C040 +E000FF007F801FC001E080608060C060E0C09F000B0E7F8D0E>I<080008000800180018 +003800FF80380038003800380038003800380038403840384038401C800F000A147F930E +>I<FC3F001C07001C07001C07001C07001C07001C07001C07001C07001C07001C07001C +0F000E170003E7E0130E808D14>I<FE1F3C0E3C0C1C081C080E100E100720072003C003 +C003C001800180100E7F8D13>I<FCFE7C3838383838101C3C201C3C201C4C200E4E400E +4E400E8640078780078780070380030300030300160E7F8D19>I<FE3F3C181C100E2007 +4007C0038001C002E004F008701838383CFC7F100E7F8D13>I<FE1F3C0E3C0C1C081C08 +0E100E100720072003C003C003C00180018001000100E200E200A400780010147F8D13> +I E /Fh 4 53 df<0C003C00CC000C000C000C000C000C000C000C000C000C000C000C00 +0C00FF8009107E8F0F>49 D<1F00618040C08060C0600060006000C00180030006000C00 +102020207FC0FFC00B107F8F0F>I<1F00218060C060C000C0008001800F000080004000 +60C060C060804060801F000B107F8F0F>I<0300030007000F000B001300330023004300 +C300FFE003000300030003001FE00B107F8F0F>I E /Fi 4 53 df<0C001C00EC000C00 +0C000C000C000C000C000C000C000C000C000C000C000C000C000C00FFC00A137D9211> +49 D<1F0060C06060F070F030603000700070006000C001C00180020004000810101020 +207FE0FFE00C137E9211>I<0FC030707038703870380038003000E00FC0007000380018 +001C601CF01CF018E03860701FC00E137F9211>I<006000E000E00160026006600C6008 +60106020606060C060FFFC0060006000600060006003FC0E137F9211>I +E /Fj 19 123 df<000FE0200070186001C00460030003E0060001E00E0000E01C000060 +38000060380000207800002070000020F0000000F0000000F0000000F0000000F0000000 +F0000000F0000000F0000000700000207800002038000020380000201C0000400E000040 +060000800300010001C0060000701800000FE0001B1E7D9C21>67 +D<FFF00FF80F0007C00F0003000F0002000F0004000F0008000F0010000F0060000F0080 +000F0100000F0200000F0700000F0F80000F1780000F23C0000F43E0000F81E0000F00F0 +000F00F8000F0078000F003C000F001E000F001F000F000F000F0007800F0007C00F0007 +E0FFF03FFC1E1C7D9B23>75 D<FFFFE0000F0078000F001C000F000E000F0007000F0007 +800F0007800F0007800F0007800F0007800F0007000F000E000F001C000F0078000FFFE0 +000F0000000F0000000F0000000F0000000F0000000F0000000F0000000F0000000F0000 +000F0000000F0000000F000000FFF00000191C7D9B1F>80 D<7FFFFFC0700F01C0600F00 +C0400F0040400F0040C00F0020800F0020800F0020800F0020000F0000000F0000000F00 +00000F0000000F0000000F0000000F0000000F0000000F0000000F0000000F0000000F00 +00000F0000000F0000000F0000000F0000000F0000001F800003FFFC001B1C7D9B21>84 +D<7FFFFC7C00787000786000F06001E04001E04003C0400780400780000F00001E00001E +00003C0000780000780000F00001E00001E00403C0040780040780040F000C1E00081E00 +083C00187800387800F8FFFFF8161C7D9B1C>90 D<00200000700000700000700000B800 +00B80000B800011C00011C00011C00020E00020E0004070004070007FF00080380080380 +0803801801C03803C0FE0FF815157F9419>97 D<FFFF801C03801C00801C00801C00401C +00401C10401C10001C10001C30001FF0001C30001C10001C10201C10201C00201C00601C +00401C00C01C01C0FFFFC013157F9417>101 D<00FC200782600E01E01C00E038006078 +0020700020F00020F00000F00000F00000F00FF8F000E0F000E07000E07800E03800E01C +00E00E00E007836000FC2015157E941B>103 D<FF8FF81C01C01C01C01C01C01C01C01C +01C01C01C01C01C01C01C01C01C01FFFC01C01C01C01C01C01C01C01C01C01C01C01C01C +01C01C01C01C01C0FF8FF815157F9419>I<FF801C001C001C001C001C001C001C001C00 +1C001C001C001C001C001C001C001C001C001C001C00FF8009157F940D>I<FF83F81C01 +E01C01801C01001C02001C04001C08001C10001C30001C70001CB8001D1C001E1C001C0E +001C07001C07801C03801C01C01C01E01C01F0FF83FC16157F941A>107 +D<FC03F81E00E01E004017004013804013C04011C04010E040107040107040103840101C +40101C40100E401007401007C01003C01001C01000C03800C0FE004015157F9419>110 +D<01F800070E000C03001C03803801C07801E07000E0F000F0F000F0F000F0F000F0F000 +F0F000F0F000F07000E07801E03801C01C03801E0780070E0001F80014157E941A>I<FF +F8001C0E001C07801C03801C03C01C03C01C03C01C03801C07801C0E001FF8001C1C001C +0E001C07001C07001C07001C07801C07841C07C41C03CCFF80F816157F9419>114 +D<FF83F81C00E01C00401C00401C00401C00401C00401C00401C00401C00401C00401C00 +401C00401C00401C00401C00400C00C00E008006010003860000FC0015157F9419>117 +D<FF0FF87E3C01E03C3801C0181C02E0101C02E0101C02E0100E0470200E0470200E0470 +2007083840070838400708384003901C8003901C8003901C8001E00F0001E00F0001E00F +0000C0060000C0060000C006001F157F9423>119 D<FF87F01E03800E03000F02000704 +0003840003C80001D00000F00000F00000700000780000BC00011C00010E00020F000407 +000403800C03C03C03C0FE07F815157F9419>I<FF80FE1E00780E00200F004007004003 +808003C18001C10000E20000E200007400007C0000380000380000380000380000380000 +380000380000380001FF001715809419>I<FFFEF01CC01CC0388038807080E000E001C0 +01C00380070007000E020E021C02380238067006701EFFFE0F157E9415>I +E /Fk 3 16 df<FFFFFF80FFFFFF8019027D8A20>0 D<01800180018001804182F18F39 +9C0FF003C003C00FF0399CF18F4182018001800180018010127E9215>3 +D<03C00FF01FF83FFC7FFE7FFEFFFFFFFFFFFFFFFF7FFE7FFE3FFC1FF80FF003C010107E +9115>15 D E /Fl 60 123 df<0001FC3C00060E67000C0EC7001C0DC6001C01C0003801 +C0003803800038038000380380003803800070038007FFFFF80070070000700700007007 +0000E0070000E00E0000E00E0000E00E0000E00E0001C00E0001C01C0001C01C0001C01C +0001C01C0003801C00038038000380380003803800030038000700300007007000060060 +00C6606000E470C000C8618000703E00002025819C19>11 D<0001FC000703000C03001C +07001C0300180000380000380000380000380000700007FFFC00701C00701C00701C00E0 +3800E03800E03800E03800E07001C07001C07001C07001C0E201C0E201C0E20380E40380 +64038038038000030000070000060000C60000E40000CC00007000001825819C17>I<E0 +E0E070301018080508749C15>18 D<03070E1C3860C0800808729C15>I<183C3C3C0404 +080810204080060C779C0D>39 D<00030006000800180030006000C000C0018003000300 +060006000C000C001C0018001800380030003000700070006000600060006000E000E000 +E000E000E0006000600060006000600020003000100008000800102A7B9E11>I<001000 +100008000C00040006000600060006000600070007000700070007000600060006000600 +0E000E000C000C001C001800180038003000300060006000C000C001800300030006000C +00180010006000C000102A809E11>I<183878380808101020404080050C7D830D>44 +D<FFC0FFC0FFC00A037D890F>I<3078F06005047C830D>I<003C0000C600018300030300 +0603000603800E03800C03801C03801C0300380700380700380700380700700E00700E00 +700E00700E00E01C00E01C00E01C00E03800E03800E03000C06000E0600060C000718000 +1E0000111D7B9B15>48 D<00020006000C001C007C039C00380038003800380070007000 +70007000E000E000E000E001C001C001C001C003800380038003800780FFF00F1C7C9B15 +>I<003E0000C1800101800200C00400C00440C00841C00841C00841C008838007038000 +0700000E0001F800003800000C00000C00000E00000E00000E00000E00700E00E01C0080 +1C0080380080300040600021C0001F0000121D7C9B15>51 D<001E000061000081800180 +800300C00300C006018006018006018007030007860003CC0003F00001F000037800063C +00081E00180E00300E00600600600600600600C00C00C00C00C0180060100060200030C0 +000F0000121D7C9B15>56 D<003C0000C6000183000303000603000E03000C03801C0380 +1C03001C0300380700380700380700380F00380E00181E00181E000C6C00079C00001C00 +001800003800003000006000E0C000E0C0008180008600007C0000111D7B9B15>I<060F +0F06000000000000000000003078F06008127C910D>I<00001800000018000000380000 +00380000007800000078000000B8000001B800000138000002380000023C0000041C0000 +041C0000081C0000181C0000101C0000201C0000201C00007FFC0000401C0000801C0001 +801C0001001C0002001C0002001C0004000E000C000E001C001E00FF00FFC01A1D7E9C1F +>65 D<01FFFE00003C0780003803C0003801C0003801C0003801C0007001C0007003C000 +7003C00070078000E0070000E00E0000E03C0000FFF80001C01C0001C00E0001C00F0001 +C00F0003800F0003800F0003800F0003800F0007001E0007001C0007003C00070078000E +01E000FFFF80001A1C7D9B1D>I<0003F020001E0C60003002E000E003C001C001C00380 +01C0070000C00E0000801E0000801C0000803C0000803C00000078000000780000007800 +0000F0000000F0000000F0000000F0000000F0000400F0000400F0000400F00008007000 +08007000100038002000180040000C0180000706000001F800001B1E7A9C1E>I<01FFFE +00003C0780003801C0003801C0003800E0003800E0007000F00070007000700070007000 +F000E000F000E000F000E000F000E000F001C001E001C001E001C001E001C001C0038003 +C003800380038007800380070007000E0007001C0007003800070070000E01C000FFFF00 +001C1C7D9B1F>I<01FFFFE0003C00E00038006000380040003800400038004000700040 +00700040007020400070200000E0400000E0400000E0C00000FFC00001C0800001C08000 +01C0800001C0800003810100038001000380020003800200070004000700040007000C00 +070018000E007800FFFFF0001B1C7D9B1C>I<01FFFFC0003C01C0003800C00038008000 +380080003800800070008000700080007020800070200000E0400000E0400000E0C00000 +FFC00001C0800001C0800001C0800001C080000381000003800000038000000380000007 +0000000700000007000000070000000F000000FFF000001A1C7D9B1B>I<01FFCFFE003C +01E0003801C0003801C0003801C0003801C00070038000700380007003800070038000E0 +070000E0070000E0070000FFFF0001C00E0001C00E0001C00E0001C00E0003801C000380 +1C0003801C0003801C00070038000700380007003800070038000F007800FFE7FF001F1C +7D9B1F>72 D<01FFC0003C00003800003800003800003800007000007000007000007000 +00E00000E00000E00000E00001C00001C00001C00001C000038000038000038000038000 +0700000700000700000700000F0000FFE000121C7E9B10>I<007FF00007800007000007 +00000700000700000E00000E00000E00000E00001C00001C00001C00001C000038000038 +0000380000380000700000700000700000700060E000E0E000C0C00081C0008380004700 +003C0000141D7B9B16>I<01FFE0003C0000380000380000380000380000700000700000 +700000700000E00000E00000E00000E00001C00001C00001C00001C00003800803800803 +80080380100700100700300700600700E00E03C0FFFFC0151C7D9B1A>76 +D<01FE0007F8003E000780002E000F00002E001700002E001700002E002700004E002E00 +004E004E00004E004E00004E008E00008E011C00008E011C00008E021C00008E021C0001 +070438000107043800010708380001071038000207107000020720700002072070000207 +407000040740E000040780E000040700E0000C0700E0001C0601E000FF861FFC00251C7D +9B25>I<01FC03FE001C0070003C0060002E0040002E0040002E00400047008000470080 +00470080004380800083810000838100008181000081C1000101C2000101C2000100E200 +0100E2000200E4000200740002007400020074000400380004003800040038000C001800 +1C001000FF8010001F1C7D9B1F>I<0007F000001C1C0000700E0000E0070001C0038003 +800380070003800E0003C01E0003C01C0003C03C0003C03C0003C0780003C0780003C078 +0003C0F0000780F0000780F0000780F0000F00F0000F00F0000E00F0001E00F0003C0070 +003800700070007800E0003801C0001C0380000E0E000003F800001A1E7A9C20>I<01FF +FC00003C070000380380003801C0003801C0003801C0007003C0007003C0007003C00070 +038000E0078000E0070000E00E0000E0380001FFE00001C0000001C0000001C000000380 +0000038000000380000003800000070000000700000007000000070000000F000000FFE0 +00001A1C7D9B1C>I<01FFF800003C0E0000380700003803800038038000380380007007 +80007007800070078000700F0000E00E0000E01C0000E0700000FFC00001C0C00001C060 +0001C0700001C07000038070000380700003807000038070000700F0000700F0400700F0 +400700F0800F007880FFE0790000001E001A1D7D9B1E>82 D<000F8400304C00403C0080 +1801001803001803001806001006001006000007000007000003E00003FC0001FF00007F +800007C00001C00001C00000C00000C02000C02000C0600180600180600300600200F004 +00CC180083E000161E7D9C17>I<1FFFFFC01C0701C0300E00C0200E0080600E0080400E +0080401C0080801C0080801C0080001C0000003800000038000000380000003800000070 +000000700000007000000070000000E0000000E0000000E0000000E0000001C0000001C0 +000001C0000001C0000003C000007FFE00001A1C799B1E>I<FF83FF0FF03C007001C038 +007001803800F001003800F0020038017002003801700400380270040038027008001C04 +7008001C047010001C087010001C087020001C107020001C107040001C207040001C2070 +80001C407180001C407100001C807200001D807200001D007400001E007400001E007800 +001C007800001C00700000180070000018006000001000600000241D779B29>87 +D<FFC00FE00E0007800E0006000F00040007000800070018000780100003802000038040 +0003C0800001C1800001C1000001E2000000E4000000EC000000F8000000700000007000 +0000E0000000E0000000E0000000E0000001C0000001C0000001C0000001C00000038000 +003FF800001B1C789B1F>89 D<03CC063C0C3C181C3838303870387038E070E070E070E0 +70E0E2C0E2C0E261E462643C380F127B9115>97 D<3F00070007000E000E000E000E001C +001C001C001C0039C03E60383038307038703870387038E070E070E070E060E0E0C0C0C1 +C0618063003C000D1D7B9C13>I<01F007080C08181C3838300070007000E000E000E000 +E000E000E008E010602030C01F000E127B9113>I<001F80000380000380000700000700 +000700000700000E00000E00000E00000E0003DC00063C000C3C00181C00383800303800 +703800703800E07000E07000E07000E07000E0E200C0E200C0E20061E4006264003C3800 +111D7B9C15>I<01E007100C1018083810701070607F80E000E000E000E000E000E00860 +10602030C01F000D127B9113>I<0003C0000670000C70001C60001C00001C0000380000 +380000380000380000380003FF8000700000700000700000700000700000E00000E00000 +E00000E00000E00001C00001C00001C00001C00001C00003800003800003800003000003 +0000070000C60000E60000CC00007800001425819C0D>I<00F3018F030F06070E0E0C0E +1C0E1C0E381C381C381C381C383830383038187818F00F700070007000E000E0C0C0E1C0 +C3007E00101A7D9113>I<0FC00001C00001C00003800003800003800003800007000007 +00000700000700000E78000E8C000F0E000E0E001C0E001C0E001C0E001C0E00381C0038 +1C00381C00383800703880703880707080707100E03200601C00111D7D9C15>I<018003 +80010000000000000000000000000000001C002600470047008E008E000E001C001C001C +0038003800710071007100720072003C00091C7C9B0D>I<0FC00001C00001C000038000 +0380000380000380000700000700000700000700000E0F000E11000E23800E43801C8300 +1C80001D00001E00003F800039C00038E00038E00070E20070E20070E20070E400E06400 +603800111D7D9C13>107 D<1F800380038007000700070007000E000E000E000E001C00 +1C001C001C0038003800380038007000700070007000E400E400E400E40068003800091D +7C9C0B>I<3C1E0780266318C04683A0E04703C0E08E0380E08E0380E00E0380E00E0380 +E01C0701C01C0701C01C0701C01C070380380E0388380E0388380E0708380E0710701C03 +20300C01C01D127C9122>I<3C3C002646004687004707008E07008E07000E07000E0700 +1C0E001C0E001C0E001C1C00381C40381C40383840383880701900300E0012127C9117> +I<01E007180C0C180C380C300E700E700EE01CE01CE01CE018E038E030E06060C031801E +000F127B9115>I<07870004D98008E0C008E0C011C0E011C0E001C0E001C0E00381C003 +81C00381C00381800703800703000707000706000E8C000E70000E00000E00001C00001C +00001C00001C00003C0000FF8000131A7F9115>I<03C4062C0C3C181C38383038703870 +38E070E070E070E070E0E0C0E0C0E061E063C03DC001C001C0038003800380038007803F +F00E1A7B9113>I<3C3C26C2468747078E068E000E000E001C001C001C001C0038003800 +380038007000300010127C9112>I<01F006080C080C1C18181C001F001FC00FF007F000 +7800386030E030C030806060C01F000E127D9111>I<00C001C001C001C0038003800380 +0380FFE00700070007000E000E000E000E001C001C001C001C0038403840384038801900 +0E000B1A7D990E>I<1E0300270700470700470700870E00870E000E0E000E0E001C1C00 +1C1C001C1C001C1C003838803838801838801839001C5900078E0011127C9116>I<1E06 +270E470E4706870287020E020E021C041C041C041C0818083808181018200C4007800F12 +7C9113>I<1E01832703874703874703838707018707010E07010E07011C0E021C0E021C +0E021C0E04180C04181C04181C081C1C100C263007C3C018127C911C>I<070E00199100 +10E38020E38041C30041C00001C00001C000038000038000038000038000070200670200 +E70400CB04008B080070F00011127D9113>I<1E03270747074707870E870E0E0E0E0E1C +1C1C1C1C1C1C1C38383838183818381C7007F00070007000E0E0C0E1C0818047003C0010 +1A7C9114>I<038207C20FEC083810080010002000400080010002000400080810083830 +67F043E081C00F127D9111>I E /Fm 5 111 df<00F000030C000E06041C070438070830 +0708700790700790E003A0E003A0E003C0E00380E00380E00380600780601B883061900F +80E016127E911B>11 D<0001F000061800080C00100C00200E00400E00800E00801C0100 +1C010018010038020FF00210C0020FE00200300400300400300400380400380800700800 +700800700800E01800E01800C0140180140300230E0020F8002000002000004000004000 +0040000040000080000080000017257F9C17>I<60F0F06004047C830C>58 +D<0007E00000E00000E00001C00001C00001C00001C000038000038000038000038001E7 +000717000C0F00180F00380E00300E00700E00700E00E01C00E01C00E01C00E01C00E038 +80E03880E038806078803199001E0E00131D7E9C16>100 D<381F004E61804681C04701 +C08F01C08E01C00E01C00E01C01C03801C03801C03801C0700380710380710380E10380E +2070064030038014127E9119>110 D E /Fn 84 128 df<007E1F0001C1B1800303E3C0 +0703C3C00E03C1800E01C0000E01C0000E01C0000E01C0000E01C0000E01C000FFFFFC00 +0E01C0000E01C0000E01C0000E01C0000E01C0000E01C0000E01C0000E01C0000E01C000 +0E01C0000E01C0000E01C0000E01C0000E01C0000E01C0000E01C0007F87FC001A1D809C +18>11 D<007E0001C1800301800703C00E03C00E01800E00000E00000E00000E00000E00 +00FFFFC00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01 +C00E01C00E01C00E01C00E01C00E01C07F87F8151D809C17>I<007FC001C1C00303C007 +03C00E01C00E01C00E01C00E01C00E01C00E01C00E01C0FFFFC00E01C00E01C00E01C00E +01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E +01C07FCFF8151D809C17>I<003F07E00001C09C18000380F018000701F03C000E01E03C +000E00E018000E00E000000E00E000000E00E000000E00E000000E00E00000FFFFFFFC00 +0E00E01C000E00E01C000E00E01C000E00E01C000E00E01C000E00E01C000E00E01C000E +00E01C000E00E01C000E00E01C000E00E01C000E00E01C000E00E01C000E00E01C000E00 +E01C000E00E01C007FC7FCFF80211D809C23>I<1C1C3C3870C0800607779C15>19 +D<6060F0F0F8F86868080808080808101010102020404080800D0C7F9C15>34 +D<0F0000C0188000C030600380703807006027FB00E0100600E0100C00E0100C00E01018 +00E0101800E0103000E0106000602060007020C00030418000188180000F0303C0000606 +2000060C10000C1C08001818080018380400303804006038040060380400C0380400C038 +04018038040300180803001C0806000C100C000620040003C01E217E9E23>37 +D<60F0F8680808081010204080050C7C9C0C>39 D<004000800100020006000C000C0018 +001800300030007000600060006000E000E000E000E000E000E000E000E000E000E000E0 +00E000600060006000700030003000180018000C000C00060002000100008000400A2A7D +9E10>I<800040002000100018000C000C000600060003000300038001800180018001C0 +01C001C001C001C001C001C001C001C001C001C001C00180018001800380030003000600 +06000C000C00180010002000400080000A2A7E9E10>I<00060000000600000006000000 +060000000600000006000000060000000600000006000000060000000600000006000000 +060000FFFFFFE0FFFFFFE000060000000600000006000000060000000600000006000000 +0600000006000000060000000600000006000000060000000600001B1C7E9720>43 +D<60F0F0701010101020204080040C7C830C>I<FFE0FFE00B0280890E>I<60F0F0600404 +7C830C>I<00010003000600060006000C000C000C001800180018003000300030006000 +6000C000C000C0018001800180030003000300060006000C000C000C0018001800180030 +0030003000600060006000C000C00010297E9E15>I<03C00C301818300C300C700E6006 +6006E007E007E007E007E007E007E007E007E007E007E007E007E00760066006700E300C +300C18180C3007E0101D7E9B15>I<030007003F00C70007000700070007000700070007 +000700070007000700070007000700070007000700070007000700070007000F80FFF80D +1C7C9B15>I<07C01830201C400C400EF00FF80FF807F8077007000F000E000E001C001C +00380070006000C00180030006010C01180110023FFE7FFEFFFE101C7E9B15>I<07E018 +30201C201C781E780E781E381E001C001C00180030006007E00030001C001C000E000F00 +0F700FF80FF80FF80FF00E401C201C183007E0101D7E9B15>I<000C00000C00001C0000 +3C00003C00005C0000DC00009C00011C00031C00021C00041C000C1C00081C00101C0030 +1C00201C00401C00C01C00FFFFC0001C00001C00001C00001C00001C00001C00001C0001 +FFC0121C7F9B15>I<300C3FF83FF03FC020002000200020002000200023E02430281830 +1C200E000E000F000F000F600FF00FF00FF00F800E401E401C2038187007C0101D7E9B15 +>I<00F0030C06040C0E181E301E300C700070006000E3E0E430E818F00CF00EE006E007 +E007E007E007E007600760077006300E300C18180C3003E0101D7E9B15>I<4000007FFF +807FFF007FFF0040020080040080040080080000100000100000200000600000400000C0 +0000C00001C0000180000180000380000380000380000380000780000780000780000780 +00078000078000030000111D7E9B15>I<03E00C301008200C2006600660066006700678 +0C3E083FB01FE007F007F818FC307E601E600FC007C003C003C003C00360026004300C1C +1007E0101D7E9B15>I<03C00C301818300C700C600EE006E006E007E007E007E007E007 +6007700F300F18170C2707C700060006000E300C780C78187010203030C00F80101D7E9B +15>I<60F0F0600000000000000000000060F0F06004127C910C>I<60F0F0600000000000 +000000000060F0F0701010101020204080041A7C910C>I<7FFFFFC0FFFFFFE000000000 +00000000000000000000000000000000000000000000000000000000FFFFFFE07FFFFFC0 +1B0C7E8F20>61 D<0FE03038401CE00EF00EF00EF00E000C001C0030006000C000800180 +0100010001000100010001000000000000000000000003000780078003000F1D7E9C14> +63 D<000600000006000000060000000F0000000F0000000F0000001780000017800000 +1780000023C0000023C0000023C0000041E0000041E0000041E0000080F0000080F00001 +80F8000100780001FFF80003007C0002003C0002003C0006003E0004001E0004001E000C +001F001E001F00FF80FFF01C1D7F9C1F>65 D<FFFFC00F00F00F00380F003C0F001C0F00 +1E0F001E0F001E0F001E0F001C0F003C0F00780F01F00FFFE00F00780F003C0F001E0F00 +0E0F000F0F000F0F000F0F000F0F000F0F001E0F001E0F003C0F0078FFFFE0181C7E9B1D +>I<001F808000E0618001801980070007800E0003801C0003801C000180380001807800 +00807800008070000080F0000000F0000000F0000000F0000000F0000000F0000000F000 +0000F0000000700000807800008078000080380000801C0001001C0001000E0002000700 +04000180080000E03000001FC000191E7E9C1E>I<FFFFC0000F00F0000F003C000F000E +000F0007000F0007000F0003800F0003C00F0001C00F0001C00F0001E00F0001E00F0001 +E00F0001E00F0001E00F0001E00F0001E00F0001E00F0001C00F0001C00F0003C00F0003 +800F0007800F0007000F000E000F001C000F007000FFFFC0001B1C7E9B20>I<FFFFFC0F +003C0F000C0F00040F00040F00060F00020F00020F02020F02000F02000F02000F06000F +FE000F06000F02000F02000F02000F02010F00010F00020F00020F00020F00060F00060F +000C0F003CFFFFFC181C7E9B1C>I<FFFFF80F00780F00180F00080F00080F000C0F0004 +0F00040F02040F02000F02000F02000F06000FFE000F06000F02000F02000F02000F0200 +0F00000F00000F00000F00000F00000F00000F00000F8000FFF800161C7E9B1B>I<001F +808000E0618001801980070007800E0003801C0003801C00018038000180780000807800 +008070000080F0000000F0000000F0000000F0000000F0000000F0000000F000FFF0F000 +0F80700007807800078078000780380007801C0007801C0007800E00078007000B800180 +118000E06080001F80001C1E7E9C21>I<FFF3FFC00F003C000F003C000F003C000F003C +000F003C000F003C000F003C000F003C000F003C000F003C000F003C000F003C000FFFFC +000F003C000F003C000F003C000F003C000F003C000F003C000F003C000F003C000F003C +000F003C000F003C000F003C000F003C00FFF3FFC01A1C7E9B1F>I<FFF00F000F000F00 +0F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F00 +0F000F000F000F000F00FFF00C1C7F9B0F>I<1FFF00F800780078007800780078007800 +780078007800780078007800780078007800780078007800787078F878F878F878F0F040 +E021C01F00101D7F9B15>I<FFF03FE00F000F000F000C000F0008000F0010000F002000 +0F0040000F0080000F0100000F0200000F0400000F0E00000F1F00000F2F00000F278000 +0F4780000F83C0000F01E0000F01E0000F00F0000F00F8000F0078000F003C000F003C00 +0F001E000F001F000F001F80FFF07FF01C1C7E9B20>I<FFF8000F80000F00000F00000F +00000F00000F00000F00000F00000F00000F00000F00000F00000F00000F00000F00000F +00000F00000F00080F00080F00080F00180F00180F00100F00300F00700F01F0FFFFF015 +1C7E9B1A>I<FF8000FF800F8000F8000F8000F8000BC00178000BC00178000BC0017800 +09E002780009E002780008F004780008F004780008F00478000878087800087808780008 +78087800083C107800083C107800083C107800081E207800081E207800081E207800080F +407800080F40780008078078000807807800080780780008030078001C03007800FF8307 +FF80211C7E9B26>I<FF007FC00F800E000F8004000BC0040009E0040009E0040008F004 +0008F8040008780400083C0400083C0400081E0400080F0400080F0400080784000807C4 +000803C4000801E4000801E4000800F40008007C0008007C0008003C0008003C0008001C +0008000C001C000C00FF8004001A1C7E9B1F>I<003F800000E0E0000380380007001C00 +0E000E001C0007003C00078038000380780003C0780003C0700001C0F00001E0F00001E0 +F00001E0F00001E0F00001E0F00001E0F00001E0F00001E0700001C0780003C0780003C0 +380003803C0007801C0007000E000E0007001C000380380000E0E000003F80001B1E7E9C +20>I<FFFF800F00E00F00780F003C0F001C0F001E0F001E0F001E0F001E0F001E0F001C +0F003C0F00780F00E00FFF800F00000F00000F00000F00000F00000F00000F00000F0000 +0F00000F00000F00000F0000FFF000171C7E9B1C>I<003F800000E0E000038038000700 +1C000E000E001C0007003C00078038000380780003C0780003C0700001C0F00001E0F000 +01E0F00001E0F00001E0F00001E0F00001E0F00001E0F00001E0700001C0780003C07800 +03C0380003803C0E07801C1107000E208E0007205C0003A0780000F0E020003FE0200000 +602000003060000038E000003FC000003FC000001F8000000F001B257E9C20>I<FFFF00 +000F01E0000F0078000F003C000F001C000F001E000F001E000F001E000F001E000F001C +000F003C000F0078000F01E0000FFF00000F03C0000F00E0000F00F0000F0078000F0078 +000F0078000F0078000F0078000F0078000F0078100F0078100F0038100F003C20FFF01C +20000007C01C1D7E9B1F>I<07E0801C1980300580700380600180E00180E00080E00080 +E00080F00000F800007C00007FC0003FF8001FFE0007FF0000FF80000F800007C00003C0 +0001C08001C08001C08001C0C00180C00180E00300D00200CC0C0083F800121E7E9C17> +I<7FFFFFC0700F01C0600F00C0400F0040400F0040C00F0020800F0020800F0020800F00 +20000F0000000F0000000F0000000F0000000F0000000F0000000F0000000F0000000F00 +00000F0000000F0000000F0000000F0000000F0000000F0000000F0000000F0000001F80 +0003FFFC001B1C7F9B1E>I<FFF07FC00F000E000F0004000F0004000F0004000F000400 +0F0004000F0004000F0004000F0004000F0004000F0004000F0004000F0004000F000400 +0F0004000F0004000F0004000F0004000F0004000F0004000F0004000700080007800800 +038010000180100000C020000070C000001F00001A1D7E9B1F>I<FFE00FF01F0003C00F +0001800F0001000F800300078002000780020003C0040003C0040003C0040001E0080001 +E0080001F0080000F0100000F0100000F830000078200000782000003C4000003C400000 +3C4000001E8000001E8000001F8000000F0000000F00000006000000060000000600001C +1D7F9B1F>I<FFE0FFE0FF1F001F003C1E001E00180F001F00100F001F00100F001F0010 +07801F00200780278020078027802003C027804003C043C04003C043C04003E043C04001 +E081E08001E081E08001E081E08000F100F10000F100F10000F100F100007900FA00007A +007A00007A007A00003E007C00003C003C00003C003C00003C003C000018001800001800 +18000018001800281D7F9B2B>I<FFF007FC0F8001E00780008007C0018003C0010003E0 +020001F0020000F0040000F8040000780800007C1800003C1000001E2000001F2000000F +4000000FC000000780000007800000078000000780000007800000078000000780000007 +8000000780000007800000078000007FF8001E1C809B1F>89 D<FEFEC0C0C0C0C0C0C0C0 +C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0FEFE07297C9E0C +>91 D<08081010202040404040808080808080B0B0F8F8787830300D0C7A9C15>I<FEFE +060606060606060606060606060606060606060606060606060606060606060606060606 +06FEFE0729809E0C>I<1FC000307000783800781C00301C00001C00001C0001FC000F1C +00381C00701C00601C00E01C40E01C40E01C40603C40304E801F870012127E9115>97 +D<FC00001C00001C00001C00001C00001C00001C00001C00001C00001C00001C00001C7C +001D86001E03001C01801C01C01C00C01C00E01C00E01C00E01C00E01C00E01C00E01C00 +C01C01C01C01801E030019060010F800131D7F9C17>I<07E00C301878307870306000E0 +00E000E000E000E000E00060007004300418080C3007C00E127E9112>I<003F00000700 +00070000070000070000070000070000070000070000070000070003E7000C1700180F00 +300700700700600700E00700E00700E00700E00700E00700E00700600700700700300700 +180F000C370007C7E0131D7E9C17>I<03E00C301818300C700E6006E006FFFEE000E000 +E000E00060007002300218040C1803E00F127F9112>I<00F8018C071E061E0E0C0E000E +000E000E000E000E00FFE00E000E000E000E000E000E000E000E000E000E000E000E000E +000E000E000E007FE00F1D809C0D>I<00038003C4C00C38C01C3880181800381C00381C +00381C00381C001818001C38000C300013C0001000003000001800001FF8001FFF001FFF +803003806001C0C000C0C000C0C000C06001803003001C0E0007F800121C7F9215>I<FC +00001C00001C00001C00001C00001C00001C00001C00001C00001C00001C00001C7C001C +87001D03001E03801C03801C03801C03801C03801C03801C03801C03801C03801C03801C +03801C03801C03801C0380FF9FF0141D7F9C17>I<18003C003C00180000000000000000 +00000000000000FC001C001C001C001C001C001C001C001C001C001C001C001C001C001C +001C001C00FF80091D7F9C0C>I<00C001E001E000C00000000000000000000000000000 +0FE000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E0 +00E000E000E060E0F0C0F1C061803E000B25839C0D>I<FC00001C00001C00001C00001C +00001C00001C00001C00001C00001C00001C00001C3FC01C0F001C0C001C08001C10001C +20001C40001CE0001DE0001E70001C78001C38001C3C001C1C001C0E001C0F001C0F80FF +9FE0131D7F9C16>I<FC001C001C001C001C001C001C001C001C001C001C001C001C001C +001C001C001C001C001C001C001C001C001C001C001C001C001C001C00FF80091D7F9C0C +>I<FC7E07E0001C838838001D019018001E01E01C001C01C01C001C01C01C001C01C01C +001C01C01C001C01C01C001C01C01C001C01C01C001C01C01C001C01C01C001C01C01C00 +1C01C01C001C01C01C001C01C01C00FF8FF8FF8021127F9124>I<FC7C001C87001D0300 +1E03801C03801C03801C03801C03801C03801C03801C03801C03801C03801C03801C0380 +1C03801C0380FF9FF014127F9117>I<03F0000E1C00180600300300700380600180E001 +C0E001C0E001C0E001C0E001C0E001C06001807003803003001806000E1C0003F0001212 +7F9115>I<FC7C001D86001E03001C01801C01C01C00C01C00E01C00E01C00E01C00E01C +00E01C00E01C01C01C01C01C01801E03001D06001CF8001C00001C00001C00001C00001C +00001C00001C0000FF8000131A7F9117>I<03C1000C3300180B00300F00700700700700 +E00700E00700E00700E00700E00700E00700600700700700300F00180F000C370007C700 +000700000700000700000700000700000700000700003FE0131A7E9116>I<FCE01D301E +781E781C301C001C001C001C001C001C001C001C001C001C001C001C00FFC00D127F9110 +>I<1F9030704030C010C010E010F8007F803FE00FF000F880388018C018C018E010D060 +8FC00D127F9110>I<04000400040004000C000C001C003C00FFE01C001C001C001C001C +001C001C001C001C001C101C101C101C101C100C100E2003C00C1A7F9910>I<FC1F801C +03801C03801C03801C03801C03801C03801C03801C03801C03801C03801C03801C03801C +03801C07800C07800E1B8003E3F014127F9117>I<FF07E03C03801C01001C01000E0200 +0E020007040007040007040003880003880003D80001D00001D00000E00000E00000E000 +00400013127F9116>I<FF3FCFE03C0F03801C0701801C0701001C0B01000E0B82000E0B +82000E1182000711C4000711C4000720C40003A0E80003A0E80003C0680001C0700001C0 +700001803000008020001B127F911E>I<7F8FF00F03800F030007020003840001C80001 +D80000F00000700000780000F800009C00010E00020E000607000403801E07C0FF0FF815 +12809116>I<FF07E03C03801C01001C01000E02000E0200070400070400070400038800 +03880003D80001D00001D00000E00000E00000E000004000004000008000008000F08000 +F10000F300006600003C0000131A7F9116>I<7FFC70386038407040F040E041C003C003 +8007000F040E041C043C0C380870087038FFF80E127F9112>I<FFFFF01401808B15>I<60 +60F0F0F0F060600C047C9C15>127 D E /Fo 38 121 df<000E00001E00007E0007FE00 +FFFE00FFFE00F8FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE00 +00FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE00 +00FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE007FFFFE7FFFFE7FFFFE17277B +A622>49 D<00FF800003FFF0000FFFFC001F03FE003800FF007C007F80FE003FC0FF003F +C0FF003FE0FF001FE0FF001FE07E001FE03C003FE000003FE000003FC000003FC000007F +8000007F000000FE000000FC000001F8000003F0000003E00000078000000F0000001E00 +00003C00E0007000E000E000E001C001C0038001C0070001C00FFFFFC01FFFFFC03FFFFF +C07FFFFFC0FFFFFF80FFFFFF80FFFFFF801B277DA622>I<007F800003FFF00007FFFC00 +0F81FE001F00FF003F80FF003F807F803F807F803F807F801F807F800F007F800000FF00 +0000FF000000FE000001FC000001F8000007F00000FFC00000FFF0000001FC0000007E00 +00007F0000007F8000003FC000003FC000003FE000003FE03C003FE07E003FE0FF003FE0 +FF003FE0FF003FC0FF007FC07E007F807C007F003F01FE001FFFFC0007FFF00000FF8000 +1B277DA622>I<00000E0000001E0000003E0000007E000000FE000000FE000001FE0000 +03FE0000077E00000E7E00000E7E00001C7E0000387E0000707E0000E07E0000E07E0001 +C07E0003807E0007007E000E007E000E007E001C007E0038007E0070007E00E0007E00FF +FFFFF8FFFFFFF8FFFFFFF80000FE000000FE000000FE000000FE000000FE000000FE0000 +00FE000000FE00007FFFF8007FFFF8007FFFF81D277EA622>I<0C0003000F803F000FFF +FE000FFFFC000FFFF8000FFFF0000FFFE0000FFFC0000FFE00000E0000000E0000000E00 +00000E0000000E0000000E0000000E7FC0000FFFF8000F80FC000E003E000C003F000000 +1F8000001FC000001FC000001FE000001FE018001FE07C001FE0FE001FE0FE001FE0FE00 +1FE0FE001FC0FC001FC078003F8078003F803C007F001F01FE000FFFF80003FFF00000FF +80001B277DA622>I<0007F000003FFC0000FFFE0001FC0F0003F01F8007E03F800FC03F +801FC03F801F803F803F801F003F8000007F0000007F0000007F000000FF000000FF0FC0 +00FF3FF800FF707C00FFC03E00FFC03F00FF801F80FF801FC0FF001FC0FF001FE0FF001F +E0FF001FE07F001FE07F001FE07F001FE07F001FE03F001FE03F001FC01F801FC01F803F +800FC03F0007E07E0003FFFC0000FFF000003FC0001B277DA622>I<0000038000000000 +07C00000000007C0000000000FE0000000000FE0000000000FE0000000001FF000000000 +1FF0000000003FF8000000003FF8000000003FF80000000073FC0000000073FC00000000 +F3FE00000000E1FE00000000E1FE00000001C0FF00000001C0FF00000003C0FF80000003 +807F80000007807FC0000007003FC0000007003FC000000E003FE000000E001FE000001E +001FF000001C000FF000001FFFFFF000003FFFFFF800003FFFFFF80000780007FC000070 +0003FC0000700003FC0000E00001FE0000E00001FE0001E00001FF0001C00000FF0001C0 +0000FF00FFFE001FFFFEFFFE001FFFFEFFFE001FFFFE2F297EA834>65 +D<00003FF001800003FFFE0380000FFFFF8780003FF007DF8000FF8001FF8001FE00007F +8003FC00003F8007F000001F800FF000000F801FE0000007801FE0000007803FC0000007 +803FC0000003807FC0000003807F80000003807F8000000000FF8000000000FF80000000 +00FF8000000000FF8000000000FF8000000000FF8000000000FF8000000000FF80000000 +00FF80000000007F80000000007F80000000007FC0000003803FC0000003803FC0000003 +801FE0000003801FE0000007000FF00000070007F000000E0003FC00001E0001FE00003C +0000FF8000F800003FF007E000000FFFFFC0000003FFFF000000003FF8000029297CA832 +>67 D<FFFFFFF80000FFFFFFFF8000FFFFFFFFE00003FC001FF80003FC0007FC0003FC00 +01FE0003FC0000FF0003FC00007F8003FC00003FC003FC00001FC003FC00001FE003FC00 +001FE003FC00000FF003FC00000FF003FC00000FF003FC00000FF003FC00000FF803FC00 +000FF803FC00000FF803FC00000FF803FC00000FF803FC00000FF803FC00000FF803FC00 +000FF803FC00000FF803FC00000FF803FC00000FF003FC00000FF003FC00000FF003FC00 +001FE003FC00001FE003FC00001FC003FC00003FC003FC00007F8003FC00007F0003FC00 +01FE0003FC0003FC0003FC001FF800FFFFFFFFE000FFFFFFFF8000FFFFFFFC00002D297D +A835>I<FFFFFFFFE0FFFFFFFFE0FFFFFFFFE003FC001FE003FC0007F003FC0001F003FC +0001F003FC0000F003FC00007003FC00007003FC00007003FC01C07803FC01C03803FC01 +C03803FC01C03803FC03C00003FC03C00003FC0FC00003FFFFC00003FFFFC00003FFFFC0 +0003FC0FC00003FC03C00003FC03C00003FC01C00E03FC01C00E03FC01C00E03FC01C01C +03FC00001C03FC00001C03FC00001C03FC00003C03FC00003803FC00007803FC0000F803 +FC0001F803FC0003F803FC001FF8FFFFFFFFF0FFFFFFFFF0FFFFFFFFF027297DA82D>I< +FFFFFFFFC0FFFFFFFFC0FFFFFFFFC003FC003FC003FC000FE003FC0003E003FC0001E003 +FC0001E003FC0000E003FC0000E003FC0000E003FC0000F003FC03807003FC03807003FC +03807003FC03800003FC07800003FC07800003FC1F800003FFFF800003FFFF800003FFFF +800003FC1F800003FC07800003FC07800003FC03800003FC03800003FC03800003FC0380 +0003FC00000003FC00000003FC00000003FC00000003FC00000003FC00000003FC000000 +03FC00000003FC000000FFFFFC0000FFFFFC0000FFFFFC000024297DA82B>I<FFFFF01F +FFFEFFFFF01FFFFEFFFFF01FFFFE03FC00007F8003FC00007F8003FC00007F8003FC0000 +7F8003FC00007F8003FC00007F8003FC00007F8003FC00007F8003FC00007F8003FC0000 +7F8003FC00007F8003FC00007F8003FC00007F8003FC00007F8003FC00007F8003FFFFFF +FF8003FFFFFFFF8003FFFFFFFF8003FC00007F8003FC00007F8003FC00007F8003FC0000 +7F8003FC00007F8003FC00007F8003FC00007F8003FC00007F8003FC00007F8003FC0000 +7F8003FC00007F8003FC00007F8003FC00007F8003FC00007F8003FC00007F8003FC0000 +7F8003FC00007F80FFFFF01FFFFEFFFFF01FFFFEFFFFF01FFFFE2F297DA836>72 +D<FFFFFCFFFFFCFFFFFC01FE0001FE0001FE0001FE0001FE0001FE0001FE0001FE0001FE +0001FE0001FE0001FE0001FE0001FE0001FE0001FE0001FE0001FE0001FE0001FE0001FE +0001FE0001FE0001FE0001FE0001FE0001FE0001FE0001FE0001FE0001FE0001FE0001FE +0001FE0001FE00FFFFFCFFFFFCFFFFFC16297EA81A>I<FFFFFFF800FFFFFFFF00FFFFFF +FFC003FC003FE003FC000FF003FC0007F803FC0007FC03FC0003FC03FC0003FE03FC0003 +FE03FC0003FE03FC0003FE03FC0003FE03FC0003FE03FC0003FE03FC0003FC03FC0007FC +03FC0007F803FC000FF003FC003FE003FFFFFF8003FFFFFE0003FC00000003FC00000003 +FC00000003FC00000003FC00000003FC00000003FC00000003FC00000003FC00000003FC +00000003FC00000003FC00000003FC00000003FC00000003FC00000003FC000000FFFFF0 +0000FFFFF00000FFFFF0000027297DA82F>80 D<FFFFFFE00000FFFFFFFE0000FFFFFFFF +800003FC007FE00003FC000FF00003FC0007F80003FC0007FC0003FC0003FC0003FC0003 +FE0003FC0003FE0003FC0003FE0003FC0003FE0003FC0003FE0003FC0003FE0003FC0003 +FC0003FC0007F80003FC0007F80003FC001FE00003FC007FC00003FFFFFE000003FFFFF0 +000003FC00FC000003FC007F000003FC003F800003FC003F800003FC001FC00003FC001F +E00003FC001FE00003FC001FE00003FC001FE00003FC001FE00003FC001FF00003FC001F +F00003FC001FF00003FC001FF00703FC001FF80703FC000FF80703FC0007F80EFFFFF003 +FE1CFFFFF001FFF8FFFFF0003FF030297DA834>82 D<7FFFFFFFFFC07FFFFFFFFFC07FFF +FFFFFFC07F803FC03FC07E003FC007C078003FC003C078003FC003C070003FC001C0F000 +3FC001E0F0003FC001E0E0003FC000E0E0003FC000E0E0003FC000E0E0003FC000E0E000 +3FC000E000003FC0000000003FC0000000003FC0000000003FC0000000003FC000000000 +3FC0000000003FC0000000003FC0000000003FC0000000003FC0000000003FC000000000 +3FC0000000003FC0000000003FC0000000003FC0000000003FC0000000003FC000000000 +3FC0000000003FC0000000003FC0000000003FC0000000003FC00000007FFFFFE000007F +FFFFE000007FFFFFE0002B287EA730>84 D<FFFFE07FFFF007FFF0FFFFE07FFFF007FFF0 +FFFFE07FFFF007FFF003FC0001FE00001C0003FC0001FE00001C0001FE0001FF00003800 +01FE0000FF0000380001FF0000FF0000780000FF0000FF8000700000FF0000FF80007000 +00FF8000FF8000F000007F8001FFC000E000007F8001FFC000E000003FC003FFE001C000 +003FC0039FE001C000003FE0039FE003C000001FE0070FF0038000001FE0070FF0038000 +001FF00F0FF0078000000FF00E07F8070000000FF00E07F80700000007F81E07FC0E0000 +0007F81C03FC0E00000007FC1C03FC1E00000003FC3801FE1C00000003FC3801FE1C0000 +0001FE7801FF3800000001FE7000FF3800000001FE7000FF3800000000FFF000FFF00000 +0000FFE0007FF000000000FFE0007FF0000000007FC0003FE0000000007FC0003FE00000 +00003FC0003FC0000000003F80001FC0000000003F80001FC0000000001F80001F800000 +00001F00000F80000000001F00000F80000000000E00000700000044297FA847>87 +D<01FF800007FFF0000F81F8001FC07E001FC07E001FC03F000F803F8007003F8000003F +8000003F8000003F80000FFF8000FFFF8007FC3F800FE03F803F803F803F003F807F003F +80FE003F80FE003F80FE003F80FE003F807E007F807F00DF803F839FFC0FFF0FFC01FC03 +FC1E1B7E9A21>97 D<001FF80000FFFE0003F01F0007E03F800FC03F801F803F803F801F +007F800E007F0000007F000000FF000000FF000000FF000000FF000000FF000000FF0000 +00FF0000007F0000007F0000007F8000003F8001C01F8001C00FC0038007E0070003F01E +0000FFFC00001FE0001A1B7E9A1F>99 D<00003FF80000003FF80000003FF800000003F8 +00000003F800000003F800000003F800000003F800000003F800000003F800000003F800 +000003F800000003F800000003F800000003F800001FE3F80000FFFBF80003F03FF80007 +E00FF8000FC007F8001F8003F8003F8003F8007F0003F8007F0003F8007F0003F800FF00 +03F800FF0003F800FF0003F800FF0003F800FF0003F800FF0003F800FF0003F8007F0003 +F8007F0003F8007F0003F8003F8003F8001F8003F8000F8007F80007C00FF80003F03BFF +8000FFF3FF80003FC3FF80212A7EA926>I<003FE00001FFF80003F07E0007C01F000F80 +1F801F800F803F800FC07F000FC07F0007C07F0007E0FF0007E0FF0007E0FFFFFFE0FFFF +FFE0FF000000FF000000FF0000007F0000007F0000007F0000003F8000E01F8000E00FC0 +01C007E0038003F81F0000FFFE00001FF0001B1B7E9A20>I<0007F0003FFC00FE3E01F8 +7F03F87F03F07F07F07F07F03E07F00007F00007F00007F00007F00007F00007F000FFFF +C0FFFFC0FFFFC007F00007F00007F00007F00007F00007F00007F00007F00007F00007F0 +0007F00007F00007F00007F00007F00007F00007F00007F00007F00007F00007F0007FFF +807FFF807FFF80182A7EA915>I<00FF81F003FFE7F80FC1FE7C1F80FC7C1F007C383F00 +7E107F007F007F007F007F007F007F007F007F007F007F007F003F007E001F007C001F80 +FC000FC1F8001FFFE00018FF800038000000380000003C0000003E0000003FFFF8001FFF +FF001FFFFF800FFFFFC007FFFFE01FFFFFF03E0007F07C0001F8F80000F8F80000F8F800 +00F8F80000F87C0001F03C0001E01F0007C00FC01F8003FFFE00007FF0001E287E9A22> +I<FFE0000000FFE0000000FFE00000000FE00000000FE00000000FE00000000FE0000000 +0FE00000000FE00000000FE00000000FE00000000FE00000000FE00000000FE00000000F +E00000000FE07F00000FE1FFC0000FE787E0000FEE03F0000FF803F0000FF803F8000FF0 +03F8000FF003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003 +F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8 +000FE003F8000FE003F8000FE003F800FFFE3FFF80FFFE3FFF80FFFE3FFF80212A7DA926 +>I<07000F801FC03FE03FE03FE01FC00F8007000000000000000000000000000000FFE0 +FFE0FFE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE0 +0FE00FE00FE00FE00FE0FFFEFFFEFFFE0F2B7DAA14>I<FFE00000FFE00000FFE000000F +E000000FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE000000F +E000000FE000000FE000000FE01FFC0FE01FFC0FE01FFC0FE007800FE00F000FE01E000F +E03C000FE078000FE0E0000FE3C0000FE7C0000FEFE0000FFFE0000FFFF0000FF3F8000F +E3F8000FC1FC000FC0FE000FC07F000FC07F000FC03F800FC01FC00FC00FC00FC00FE0FF +FC3FFEFFFC3FFEFFFC3FFE1F2A7EA924>107 D<FFE0FFE0FFE00FE00FE00FE00FE00FE0 +0FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE0 +0FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE0FFFEFFFEFFFE0F2A7DA9 +14>I<FFC07F800FF000FFC1FFE03FFC00FFC383F0707E000FC603F8C07F000FCC01F980 +3F000FD801FF003F800FF001FE003F800FF001FE003F800FE001FC003F800FE001FC003F +800FE001FC003F800FE001FC003F800FE001FC003F800FE001FC003F800FE001FC003F80 +0FE001FC003F800FE001FC003F800FE001FC003F800FE001FC003F800FE001FC003F800F +E001FC003F800FE001FC003F800FE001FC003F800FE001FC003F80FFFE1FFFC3FFF8FFFE +1FFFC3FFF8FFFE1FFFC3FFF8351B7D9A3A>I<FFC07F0000FFC1FFC000FFC787E0000FCE +03F0000FD803F0000FD803F8000FF003F8000FF003F8000FE003F8000FE003F8000FE003 +F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8 +000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F800FFFE3FFF80 +FFFE3FFF80FFFE3FFF80211B7D9A26>I<003FE00001FFFC0003F07E000FC01F801F800F +C03F800FE03F0007E07F0007F07F0007F07F0007F0FF0007F8FF0007F8FF0007F8FF0007 +F8FF0007F8FF0007F8FF0007F8FF0007F87F0007F07F0007F03F800FE03F800FE01F800F +C00FC01F8007F07F0001FFFC00003FE0001D1B7E9A22>I<FFE1FE0000FFE7FF8000FFFE +07E0000FF803F0000FF001F8000FE000FC000FE000FE000FE000FF000FE0007F000FE000 +7F000FE0007F800FE0007F800FE0007F800FE0007F800FE0007F800FE0007F800FE0007F +800FE0007F000FE000FF000FE000FF000FE000FE000FE001FC000FF001F8000FF803F000 +0FFE0FE0000FE7FF80000FE1FC00000FE00000000FE00000000FE00000000FE00000000F +E00000000FE00000000FE00000000FE00000000FE0000000FFFE000000FFFE000000FFFE +00000021277E9A26>I<FFC1F0FFC7FCFFCE3E0FD87F0FD87F0FF07F0FF03E0FF01C0FE0 +000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0 +000FE0000FE0000FE000FFFF00FFFF00FFFF00181B7E9A1C>114 +D<03FE300FFFF01E03F03800F0700070F00070F00070F80070FC0000FFE0007FFE007FFF +803FFFE01FFFF007FFF800FFF80003FC0000FC60007CE0003CF0003CF00038F80038FC00 +70FF01E0F7FFC0C1FF00161B7E9A1B>I<00700000700000700000700000F00000F00000 +F00001F00003F00003F00007F0001FFFF0FFFFF0FFFFF007F00007F00007F00007F00007 +F00007F00007F00007F00007F00007F00007F00007F00007F00007F03807F03807F03807 +F03807F03807F03803F03803F87001F86000FFC0001F8015267FA51B>I<FFE03FF800FF +E03FF800FFE03FF8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE0 +03F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003 +F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE007F80007E007F8 +0007E00FF80003F03BFF8001FFF3FF80003FC3FF80211B7D9A26>I<FFFE03FF80FFFE03 +FF80FFFE03FF8007F000700007F000700007F800F00003F800E00003FC01E00001FC01C0 +0001FC01C00000FE03800000FE038000007F070000007F070000007F8F0000003F8E0000 +003FDE0000001FDC0000001FDC0000000FF80000000FF80000000FF800000007F0000000 +07F000000003E000000003E000000001C00000211B7F9A24>I<FFFE7FFC0FFEFFFE7FFC +0FFEFFFE7FFC0FFE0FE007E000E007F003F001C007F003F001C007F807F803C003F807F8 +038003F807F8038001FC0EFC070001FC0EFC070001FE1EFC0F0000FE1C7E0E0000FE1C7E +0E0000FF383F1E00007F383F1C00007F783F3C00003FF01FB800003FF01FB800003FF01F +F800001FE00FF000001FE00FF000000FC007E000000FC007E000000FC007E00000078003 +C00000078003C0002F1B7F9A32>I<FFFC0FFF00FFFC0FFF00FFFC0FFF0007F003C00003 +F807800001FC07800000FE0F000000FF1E0000007F3C0000003FF80000001FF00000000F +F00000000FF000000007F000000007F80000000FFC0000001FFE0000001EFE0000003C7F +000000783F800000F01FC00001E01FE00001C00FE00003C007F000FFF01FFF80FFF01FFF +80FFF01FFF80211B7F9A24>I E /Fp 1 49 df<081C1C3838383070706060C0C0060D7E +8D09>48 D E /Fq 3 101 df<03E0000638101C1820381C20300E20700E40600E40E00E +80E00E80E00F00E00E00C00E00E00E00603E0020C6401F038014107E8F19>11 +D<0007800018600020600040700080700080700100700100700200E00200C0023F800223 +00043F800401C00400C00401C00801C00801C00801C0080180180380180300180700140E +0022180021F00020000020000040000040000040000040000080000014217F9916>I<00 +3F000700070007000E000E000E000E001C001C039C0C5C1838383830387038E070E070E0 +70E070C0E2C0E2C0E2E1E262643C38101A7E9914>100 D E /Fr +7 117 df<00030000000780000007800000078000000FC000000FC000001BE000001BE0 +00001BE0000031F0000031F0000060F8000060F80000E0FC0000C07C0000C07C0001803E +0001FFFE0003FFFF0003001F0003001F0006000F8006000F800E000FC0FFC07FFCFFC07F +FC1E1A7F9921>65 D<0FF0001C3C003E1E003E0E003E0F001C0F00000F0000FF000FCF00 +3E0F007C0F00F80F00F80F00F80F00F817007C27E01FC3E013117F9015>97 +D<FE0000FE00001E00001E00001E00001E00001E00001E00001E00001E7F001FC3C01F00 +E01E00F01E00781E00781E007C1E007C1E007C1E007C1E007C1E00781E00781E00F01F00 +E01D83C0187F00161A7F9919>I<03FC000F0E001C1F003C1F00781F00780E00F80000F8 +0000F80000F80000F800007800007800003C01801C03000F060003FC0011117F9014>I< +FC78FC9C1D3E1D3E1E3E1E1C1E001E001E001E001E001E001E001E001E00FFC0FFC00F11 +7F9012>114 D<1FB020704030C030C030F000FF807FE03FF807F8003CC00CC00CE00CE0 +08F830CFE00E117F9011>I<06000600060006000E000E001E003FF0FFF01E001E001E00 +1E001E001E001E001E001E181E181E181E181E180F3003E00D187F9711>I +E /Fs 46 122 df<00FC7C0183C607078E0607040E07000E07000E07000E07000E07000E +0700FFFFF00E07000E07000E07000E07000E07000E07000E07000E07000E07000E07000E +07000E07000E07000E07007F0FF0171A809916>11 D<00FC000182000703000607000E02 +000E00000E00000E00000E00000E0000FFFF000E07000E07000E07000E07000E07000E07 +000E07000E07000E07000E07000E07000E07000E07000E07007F0FE0131A809915>I<00 +7E1F8001C170400703C060060380E00E0380400E0380000E0380000E0380000E0380000E +038000FFFFFFE00E0380E00E0380E00E0380E00E0380E00E0380E00E0380E00E0380E00E +0380E00E0380E00E0380E00E0380E00E0380E00E0380E00E0380E07F8FE3FC1E1A809920 +>14 D<00800100020004000C00080018003000300030006000600060006000E000E000E0 +00E000E000E000E000E000E000E0006000600060006000300030003000180008000C0004 +0002000100008009267D9B0F>40 D<8000400020001000180008000C0006000600060003 +000300030003000380038003800380038003800380038003800380030003000300030006 +00060006000C0008001800100020004000800009267E9B0F>I<60F0F070101010202040 +80040B7D830B>44 D<FFC0FFC00A0280880D>I<60F0F06004047D830B>I<03000700FF00 +070007000700070007000700070007000700070007000700070007000700070007000700 +07000700FFF00C187D9713>49 D<0F80106020304038803CC01CE01C401C003C00380038 +0070006000C001800100020004040804100430083FF87FF8FFF80E187E9713>I<01E006 +100C1818383038300070006000E000E7C0E860F030F018E018E01CE01CE01C601C601C70 +1830183030186007C00E187E9713>54 D<000C0000000C0000000C0000001E0000001E00 +00003F000000270000002700000043800000438000004380000081C0000081C0000081C0 +000100E0000100E00001FFE000020070000200700006007800040038000400380008001C +0008001C001C001E00FF00FFC01A1A7F991D>65 D<003F0201C0C603002E0E001E1C000E +1C0006380006780002700002700002F00000F00000F00000F00000F00000F00000700002 +7000027800023800041C00041C00080E000803003001C0C0003F00171A7E991C>67 +D<FFFF000E01C00E00E00E00300E00380E001C0E001C0E000E0E000E0E000F0E000F0E00 +0F0E000F0E000F0E000F0E000F0E000F0E000E0E000E0E001E0E001C0E00380E00380E00 +700E01C0FFFF00181A7E991D>I<FFFFF00E00700E00300E00100E00180E00080E00080E +00080E04000E04000E04000E0C000FFC000E0C000E04000E04000E04000E00040E00040E +00080E00080E00080E00180E00380E0070FFFFF0161A7E991A>I<003F020001C0C60003 +002E000E001E001C000E001C00060038000600780002007000020070000200F0000000F0 +000000F0000000F0000000F0000000F001FFC070000E0070000E0078000E0038000E001C +000E001C000E000E000E000300160001C06600003F82001A1A7E991E>71 +D<FFE7FF0E00700E00700E00700E00700E00700E00700E00700E00700E00700E00700E00 +700FFFF00E00700E00700E00700E00700E00700E00700E00700E00700E00700E00700E00 +700E0070FFE7FF181A7E991D>I<FFE00E000E000E000E000E000E000E000E000E000E00 +0E000E000E000E000E000E000E000E000E000E000E000E000E000E00FFE00B1A7F990E> +I<FFFF000E03C00E00E00E00700E00700E00780E00780E00780E00780E00700E00700E00 +E00E03C00FFF000E00000E00000E00000E00000E00000E00000E00000E00000E00000E00 +000E0000FFE000151A7E991A>80 D<0FC21836200E6006C006C002C002C002E00070007E +003FE01FF807FC003E000E00070003800380038003C002C006E004D81887E0101A7E9915 +>83 D<7FFFFF00701C0700401C0100401C0100C01C0180801C0080801C0080801C008000 +1C0000001C0000001C0000001C0000001C0000001C0000001C0000001C0000001C000000 +1C0000001C0000001C0000001C0000001C0000001C0000001C0000001C000003FFE00019 +1A7F991C>I<FFE1FF0E00380E00100E00100E00100E00100E00100E00100E00100E0010 +0E00100E00100E00100E00100E00100E00100E00100E00100E00100E0010060020070020 +03004001804000C180003E00181A7E991D>I<3F8070C070E020700070007007F01C7030 +707070E070E071E071E0F171FB1E3C10107E8F13>97 D<FC00001C00001C00001C00001C +00001C00001C00001C00001C00001C00001CF8001F0E001E07001C03801C01801C01C01C +01C01C01C01C01C01C01C01C01C01C03801C03001E07001B0C0010F000121A7F9915>I< +07F80C1C381C30087000E000E000E000E000E000E0007000300438080C1807E00E107F8F +11>I<007E00000E00000E00000E00000E00000E00000E00000E00000E00000E0003CE00 +0C3E00380E00300E00700E00E00E00E00E00E00E00E00E00E00E00E00E00600E00700E00 +381E001C2E0007CFC0121A7F9915>I<07C01C3030187018600CE00CFFFCE000E000E000 +E0006000300438080C1807E00E107F8F11>I<01F0031807380E100E000E000E000E000E +000E00FFC00E000E000E000E000E000E000E000E000E000E000E000E000E000E007FE00D +1A80990C>I<0FCE187330307038703870387038303018602FC02000600070003FF03FFC +1FFE600FC003C003C003C0036006381C07E010187F8F13>I<FC00001C00001C00001C00 +001C00001C00001C00001C00001C00001C00001CF8001D0C001E0E001E0E001C0E001C0E +001C0E001C0E001C0E001C0E001C0E001C0E001C0E001C0E001C0E00FF9FC0121A7F9915 +>I<18003C003C001800000000000000000000000000FC001C001C001C001C001C001C00 +1C001C001C001C001C001C001C001C00FF80091A80990A>I<FC00001C00001C00001C00 +001C00001C00001C00001C00001C00001C00001C3F801C1E001C18001C10001C20001C40 +001DC0001FE0001CE0001C70001C78001C38001C1C001C1E001C1F00FF3FC0121A7F9914 +>107 D<FC001C001C001C001C001C001C001C001C001C001C001C001C001C001C001C00 +1C001C001C001C001C001C001C001C001C00FF80091A80990A>I<FC7C1F001D8E63801E +0781C01E0781C01C0701C01C0701C01C0701C01C0701C01C0701C01C0701C01C0701C01C +0701C01C0701C01C0701C01C0701C0FF9FE7F81D107F8F20>I<FCF8001D0C001E0E001E +0E001C0E001C0E001C0E001C0E001C0E001C0E001C0E001C0E001C0E001C0E001C0E00FF +9FC012107F8F15>I<07E01C38300C700E6006E007E007E007E007E007E0076006700E38 +1C1C3807E010107F8F13>I<FCF8001F0E001E07001C03801C03801C01C01C01C01C01C0 +1C01C01C01C01C01C01C03801C03001E07001F0C001CF0001C00001C00001C00001C0000 +1C00001C0000FF800012177F8F15>I<03C2000C2600381E00300E00700E00E00E00E00E +00E00E00E00E00E00E00E00E00700E00700E00381E001C2E0007CE00000E00000E00000E +00000E00000E00000E00007FC012177F8F14>I<FCE01D701E701E201C001C001C001C00 +1C001C001C001C001C001C001C00FFC00C107F8F0F>I<1F2060E04020C020C020F0007F +003FC01FE000F080708030C030C020F0408F800C107F8F0F>I<0400040004000C000C00 +1C003C00FFC01C001C001C001C001C001C001C001C001C201C201C201C201C200E400380 +0B177F960F>I<FC7E001C0E001C0E001C0E001C0E001C0E001C0E001C0E001C0E001C0E +001C0E001C0E001C0E001C1E000C2E0007CFC012107F8F15>I<FF1F803C06001C04001C +04001E0C000E08000E080007100007100007900003A00003A00001C00001C00001C00000 +800011107F8F14>I<FF3F9F803C0E0700380E06001C1604001C1704001E170C000E2308 +000E2388000F239800074190000741D00003C1E0000380E0000380E0000180C000010040 +0019107F8F1C>I<FF3F803C1C001C18000E100007200007600003C00001C00001E00003 +E000027000043800083800181C00381E00FC3FC012107F8F14>I<FF1F803C06001C0400 +1C04001E0C000E08000E080007100007100007900003A00003A00001C00001C00001C000 +008000008000010000010000E10000E20000E4000078000011177F8F14>I +E /Ft 16 118 df<70F8F8F0E005057A840F>46 D<0000FE000007018000180060002000 +100040001000800008010000040201F00404070804080C040210180202103003C2206001 +C220E0038240C0038241C0038241C003828380070483800704838007048380070483800E +0883800E0881801E0881802E1080C04E2080618E60403E07804000000020000000200000 +00100000E00C00078003007C0000FF80001F2379A225>64 D<00F8C00185C00705C00E03 +800E03801C03803C0380380700780700780700780700F00E00F00E00F00E00F00E10F01C +20701C20703C20305C40308C400F078014157B9419>97 D<03C03F800380038003800700 +0700070007000E000E000E000E001C001CF81D0C1E0E3C0638073807380F700F700F700F +700FE01EE01EE01EE03CE038E038607060E031C01F0010237BA216>I<007E0001C10003 +01800703800E07801C07803C0000380000780000780000780000F00000F00000F00000F0 +0000F00100700100700200300C001830000FC00011157B9416>I<00F803840E021C023C +0238027804F018FFE0F000F000E000E000E000E000E002E0026004701830600F800F157A +9416>101 D<00F0000FE00000E00000E00000E00001C00001C00001C00001C000038000 +038000038000038000070000071F0007218007C0C00F00E00F00E00E00E00E00E01C01C0 +1C01C01C01C01C01C0380380380380380380380704700708700E08700E10700610E00620 +6003C016237DA219>104 D<0000E00001E00001E00000C0000000000000000000000000 +000000000000000000000000001E00002300004380008380008380010380010380000700 +000700000700000700000E00000E00000E00000E00001C00001C00001C00001C00003800 +00380000380000380000700000700000700070E000F0C000F180006300003C0000132B82 +A00F>106 D<00F0000FE00000E00000E00000E00001C00001C00001C00001C000038000 +0380000380000380000700000701E0070210070C700E10F00E10F00E20600E40001D8000 +1E00001FC0001C7000383800383800381C00381C20703840703840703840701880E01880 +600F0014237DA216>I<01E01FC001C001C001C003800380038003800700070007000700 +0E000E000E000E001C001C001C001C0038003800380038007000700070007100E200E200 +E200E200640038000B237CA20C>I<1C0F002631C04740C08780E08780E08700E08700E0 +0E01C00E01C00E01C00E01C01C03801C03801C03801C0704380708380E08380E10380610 +7006203003C016157B941B>110 D<007E0001C3000381800701C00E01C01C01E03C01E0 +3801E07801E07801E07801E0F003C0F003C0F00380F00780700700700E00700C00301800 +18700007C00013157B9419>I<1C1F002620804741C08783C08703C08701808700000E00 +000E00000E00000E00001C00001C00001C00001C00003800003800003800003800007000 +0030000012157B9415>114 D<00FC000183000200800401800C03800C03000C00000F00 +000FF00007FC0003FE00003E00000F00000700700700F00600F00600E004004008002030 +001FC00011157D9414>I<00C001C001C001C001C003800380038003800700FFF8070007 +000E000E000E000E001C001C001C001C003800380038003810702070207040708031001E +000D1F7C9E10>I<1E00602300E04380E04381C08381C08701C08701C00703800E03800E +03800E03801C07001C07001C07001C07081C0E10180E101C0E101C1E200C262007C3C015 +157B941A>I E /Fu 24 118 df<001F83E000706E3000C07C780180F8780380F0780700 +70000700700007007000070070000700700007007000070070000700700007007000FFFF +FFC007007000070070000700700007007000070070000700700007007000070070000700 +700007007000070070000700700007007000070070000700700007007000070070000700 +7000070078007FE3FF801D2380A21C>11 D<70F8FCFC7404040404080810102040060F7C +840E>44 D<70F8F8F87005057C840E>46 D<008003800F80F38003800380038003800380 +038003800380038003800380038003800380038003800380038003800380038003800380 +038003800380038007C0FFFE0F217CA018>49 D<03F8000C1E001007002007804007C078 +07C07803C07807C03807C0000780000780000700000F00000E0000380003F000001C0000 +0F000007800007800003C00003C00003E02003E07003E0F803E0F803E0F003C04003C040 +0780200780100F000C1C0003F00013227EA018>51 D<007E0001C1000300800601C00E03 +C01C03C0180180380000380000780000700000700000F0F800F30C00F40600F40300F803 +80F801C0F001C0F001E0F001E0F001E0F001E0F001E07001E07001E07001E03801C03801 +C01803801C03000C0600070C0001F00013227EA018>54 D<01F000060C000C0600180700 +380380700380700380F001C0F001C0F001C0F001E0F001E0F001E0F001E0F001E07001E0 +7003E03803E01805E00C05E00619E003E1E00001C00001C00001C0000380000380300300 +780700780600700C002018001030000FC00013227EA018>57 D<FFFFF8000F800E000780 +0780078003C0078003E0078001E0078001F0078001F0078001F0078001F0078001F00780 +01E0078003E0078007C007800F8007803E0007FFFE0007800780078003C0078001E00780 +01F0078000F0078000F8078000F8078000F8078000F8078000F8078000F8078001F00780 +01F0078003E0078007C00F800F00FFFFFC001D227EA123>66 D<0007F008003C0C1800E0 +021801C001B8038000F8070000780F0000381E0000381E0000183C0000183C0000187C00 +00087800000878000008F8000000F8000000F8000000F8000000F8000000F8000000F800 +0000F8001FFF780000F8780000787C0000783C0000783C0000781E0000781E0000780F00 +007807000078038000B801C000B800E00318003C0C080007F00020247DA226>71 +D<03FFF0001F00000F00000F00000F00000F00000F00000F00000F00000F00000F00000F +00000F00000F00000F00000F00000F00000F00000F00000F00000F00000F00000F00000F +00000F00000F00700F00F80F00F80F00F80E00F01E00401C0020380018700007C0001423 +7EA119>74 D<FFC00003FF0FC00003F007C00003E005E00005E005E00005E004F00009E0 +04F00009E004F00009E004780011E004780011E004780011E0043C0021E0043C0021E004 +3C0021E0041E0041E0041E0041E0040F0081E0040F0081E0040F0081E004078101E00407 +8101E004078101E00403C201E00403C201E00401E401E00401E401E00401E401E00400F8 +01E00400F801E00400F801E004007001E00E007001E01F007003F0FFE0203FFF28227EA1 +2D>77 D<03F0200C0C601802603001E07000E0600060E00060E00060E00020E00020E000 +20F00000F000007800007F00003FF0001FFE000FFF0003FF80003FC00007E00001E00000 +F00000F0000070800070800070800070800070C00060C00060E000C0F000C0C80180C607 +0081FC0014247DA21B>83 D<0FE0001838003C0C003C0E00180700000700000700000700 +00FF0007C7001E07003C0700780700700700F00708F00708F00708F00F087817083C2390 +0FC1E015157E9418>97 D<01FE000703000C07801C0780380300780000700000F00000F0 +0000F00000F00000F00000F00000F000007000007800403800401C00800C010007060001 +F80012157E9416>99 D<01FC000707000C03801C01C03801C07801E07000E0F000E0FFFF +E0F00000F00000F00000F00000F000007000007800203800201C00400E008007030000FC +0013157F9416>101 D<00007001F198071E180E0E181C07001C07003C07803C07803C07 +803C07801C07001C07000E0E000F1C0019F0001000001000001800001800001FFE000FFF +C00FFFE03800F0600030400018C00018C00018C000186000306000303800E00E038003FE +0015217F9518>103 D<0E0000FE00001E00000E00000E00000E00000E00000E00000E00 +000E00000E00000E00000E00000E00000E1F800E60C00E80E00F00700F00700E00700E00 +700E00700E00700E00700E00700E00700E00700E00700E00700E00700E00700E00700E00 +700E0070FFE7FF18237FA21B>I<1C001E003E001E001C00000000000000000000000000 +000000000E00FE001E000E000E000E000E000E000E000E000E000E000E000E000E000E00 +0E000E000E000E00FFC00A227FA10E>I<0E0000FE00001E00000E00000E00000E00000E +00000E00000E00000E00000E00000E00000E00000E00000E03FC0E01F00E01C00E01800E +02000E04000E08000E10000E38000EF8000F1C000E1E000E0E000E07000E07800E03C00E +01C00E01E00E00F00E00F8FFE3FE17237FA21A>107 D<0E1F80FE60C01E80E00F00700F +00700E00700E00700E00700E00700E00700E00700E00700E00700E00700E00700E00700E +00700E00700E00700E0070FFE7FF18157F941B>110 D<01FC000707000C01801800C038 +00E0700070700070F00078F00078F00078F00078F00078F00078F000787000707800F038 +00E01C01C00E038007070001FC0015157F9418>I<0E3CFE461E8F0F0F0F060F000E000E +000E000E000E000E000E000E000E000E000E000E000E000F00FFF010157F9413>114 +D<02000200020002000600060006000E001E003E00FFF80E000E000E000E000E000E000E +000E000E000E000E000E040E040E040E040E040E040708030801F00E1F7F9E13>116 +D<0E0070FE07F01E00F00E00700E00700E00700E00700E00700E00700E00700E00700E00 +700E00700E00700E00700E00700E00F00E00F006017003827800FC7F18157F941B>I +E /Fv 15 115 df<FFFF80FFFF80FFFF8011037F9016>45 D<0000030000000000030000 +0000000300000000000780000000000780000000000FC0000000000FC0000000000FC000 +00000017E00000000013E00000000013E00000000023F00000000021F00000000021F000 +00000040F80000000040F80000000040F800000000807C00000000807C00000001807E00 +000001003E00000001003E00000002003F00000002001F00000002001F00000004000F80 +000004000F80000004000F800000080007C00000080007C00000180007E000001FFFFFE0 +00001FFFFFE00000200003F00000200001F00000200001F00000400001F80000400000F8 +0000400000F800008000007C00008000007C00008000007C00010000003E00010000003E +00030000003F00030000001F00070000001F001F8000003F80FFE00003FFFCFFE00003FF +FC2E327EB132>65 D<FFFFFFE00000FFFFFFFC000007E0007F000003E0000F800003E000 +03C00003E00001E00003E00000F00003E00000780003E000003C0003E000001E0003E000 +001E0003E000000F0003E000000F0003E000000F8003E00000078003E0000007C003E000 +0007C003E0000003C003E0000003C003E0000003E003E0000003E003E0000003E003E000 +0003E003E0000003E003E0000003E003E0000003E003E0000003E003E0000003E003E000 +0003E003E0000003E003E0000003C003E0000003C003E0000007C003E0000007C003E000 +00078003E00000078003E000000F8003E000000F0003E000001F0003E000001E0003E000 +003C0003E00000780003E00000F80003E00001F00003E00003E00003E0000F800007E000 +3F0000FFFFFFFC0000FFFFFFE000002B317CB033>68 D<00001FE000800000FFFC018000 +07F00F0180000F80018380003E0000C38000780000278000F00000178001E000000F8003 +C000000F800780000007800780000003800F00000003801F00000001801E00000001803E +00000001803C00000001803C00000000807C00000000807C0000000080780000000000F8 +0000000000F80000000000F80000000000F80000000000F80000000000F80000000000F8 +0000000000F80000000000F80000000000F80000000000F800000FFFFC7800000FFFFC7C +0000001FC07C0000000F803C0000000F803C0000000F803E0000000F801E0000000F801F +0000000F800F0000000F80078000000F8007C000000F8003C000000F8001E000000F8000 +F000001780007C00001780003E00006380000F8000C3800007F00781800000FFFE008000 +001FF000002E337CB134>71 D<FFFF807FFFC0FFFF807FFFC007F00003F80003E00001F0 +0003E00001F00003E00001F00003E00001F00003E00001F00003E00001F00003E00001F0 +0003E00001F00003E00001F00003E00001F00003E00001F00003E00001F00003E00001F0 +0003E00001F00003E00001F00003E00001F00003E00001F00003E00001F00003E00001F0 +0003E00001F00003FFFFFFF00003FFFFFFF00003E00001F00003E00001F00003E00001F0 +0003E00001F00003E00001F00003E00001F00003E00001F00003E00001F00003E00001F0 +0003E00001F00003E00001F00003E00001F00003E00001F00003E00001F00003E00001F0 +0003E00001F00003E00001F00003E00001F00003E00001F00003E00001F00003E00001F0 +0007F00003F800FFFF807FFFC0FFFF807FFFC02A317CB032>I<FFFF80FFFF8007F00003 +E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003 +E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003 +E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003 +E00003E00003E00003E00003E00003E00003E00007F000FFFF80FFFF8011317DB017>I< +FFFFFFC000FFFFFFF80007E0007E0003E0001F0003E000078003E00003C003E00001E003 +E00001F003E00001F003E00000F003E00000F803E00000F803E00000F803E00000F803E0 +0000F803E00000F803E00000F003E00001F003E00001E003E00003E003E00003C003E000 +078003E0001F0003E0007C0003FFFFF00003E000000003E000000003E000000003E00000 +0003E000000003E000000003E000000003E000000003E000000003E000000003E0000000 +03E000000003E000000003E000000003E000000003E000000003E000000003E000000003 +E000000003E000000003E000000007F0000000FFFF800000FFFF80000025317CB02D>80 +D<007F802001FFE02007C078600F001C601E0006E03C0003E0380001E0780000E0700000 +E070000060F0000060F0000060F0000020F0000020F0000020F8000020F80000007C0000 +007E0000003F0000003FC000001FF800000FFF800007FFF80003FFFC0000FFFF00000FFF +800000FFC000001FE0000007E0000003F0000001F0000000F0000000F8000000F8800000 +7880000078800000788000007880000078C0000078C0000070E00000F0E00000E0F00000 +E0F80001C0EC000380C7000700C1F01E00807FFC00800FF0001D337CB125>83 +D<7FFFFFFFFFE07FFFFFFFFFE07E000F8007E078000F8001E070000F8000E060000F8000 +6040000F80002040000F800020C0000F800030C0000F80003080000F80001080000F8000 +1080000F80001080000F80001080000F80001080000F80001000000F80000000000F8000 +0000000F80000000000F80000000000F80000000000F80000000000F80000000000F8000 +0000000F80000000000F80000000000F80000000000F80000000000F80000000000F8000 +0000000F80000000000F80000000000F80000000000F80000000000F80000000000F8000 +0000000F80000000000F80000000000F80000000000F80000000000F80000000000F8000 +0000000F80000000000F80000000000F80000000000F80000000001FC00000000FFFFF80 +00000FFFFF80002C317EB030>I<00FE00000303C0000C00E00010007000100038003C00 +3C003E001C003E001E003E001E0008001E0000001E0000001E0000001E00000FFE0000FC +1E0003E01E000F801E001F001E003E001E003C001E007C001E00F8001E04F8001E04F800 +1E04F8003E04F8003E0478003E047C005E043E008F080F0307F003FC03E01E1F7D9E21> +97 D<003F8000E0600380180700040F00041E001E1C003E3C003E7C003E7C0008780000 +F80000F80000F80000F80000F80000F80000F80000F80000F800007800007C00007C0000 +3C00011E00011E00020F000207000403801800E060003F80181F7D9E1D>99 +D<003F800000E0E0000380380007003C000E001E001E001E001C000F003C000F007C000F +0078000F8078000780F8000780F8000780FFFFFF80F8000000F8000000F8000000F80000 +00F8000000F8000000780000007C0000003C0000003C0000801E0000800E0001000F0002 +000780020001C00C0000F03000001FC000191F7E9E1D>101 D<0780000000FF80000000 +FF800000000F800000000780000000078000000007800000000780000000078000000007 +800000000780000000078000000007800000000780000000078000000007800000000780 +000000078000000007800000000780FE00000783078000078C03C000079001E00007A001 +E00007A000F00007C000F00007C000F000078000F000078000F000078000F000078000F0 +00078000F000078000F000078000F000078000F000078000F000078000F000078000F000 +078000F000078000F000078000F000078000F000078000F000078000F000078000F00007 +8000F000078000F0000FC001F800FFFC1FFF80FFFC1FFF8021327EB125>104 +D<0780FE001FC000FF83078060F000FF8C03C18078000F9001E2003C0007A001E4003C00 +07A000F4001E0007C000F8001E0007C000F8001E00078000F0001E00078000F0001E0007 +8000F0001E00078000F0001E00078000F0001E00078000F0001E00078000F0001E000780 +00F0001E00078000F0001E00078000F0001E00078000F0001E00078000F0001E00078000 +F0001E00078000F0001E00078000F0001E00078000F0001E00078000F0001E00078000F0 +001E00078000F0001E00078000F0001E000FC001F8003F00FFFC1FFF83FFF0FFFC1FFF83 +FFF0341F7E9E38>109 D<0783E0FF8C18FF907C0F907C07A07C07C03807C00007C00007 +C00007800007800007800007800007800007800007800007800007800007800007800007 +80000780000780000780000780000780000780000780000FC000FFFE00FFFE00161F7E9E +19>114 D E end +%%EndProlog +%%BeginSetup +%%Feature: *Resolution 300dpi +TeXDict begin + +%%EndSetup +%%Page: 1 1 +1 0 bop 591 369 a Fv(APHID)22 b(Game-T)-6 b(ree)22 b(Searc)n(h)516 +490 y Fu(Mark)16 b(G.)g(Bro)q(c)o(kington,)g Ft(br)n(o)n(ck@cs.ualb)n +(erta.c)n(a)504 548 y Fu(Jonathan)i(Sc)o(hae\013er,)d +Ft(jonathan@cs.ualb)n(erta.c)n(a)685 606 y Fs(Departmen)o(t)f(of)f +(Computing)h(Science)797 664 y(Univ)o(ersit)o(y)h(of)d(Alb)q(erta)727 +722 y(Edmon)o(ton,)i(Alb)q(erta)g(T6G)f(2H1)911 780 y(Canada)828 +878 y Fu(June)k(13,)f(1996)890 1017 y Fr(Abstract)161 +1073 y Fs(This)g(pap)q(er)h(in)o(tro)q(duces)g(the)e(APHID)g(\(Async)o +(hronous)j(P)o(arallel)f(Hierarc)o(hical)h(Iterativ)o(e)e(Deep)q +(ening\))i(game-)104 1118 y(tree)13 b(searc)o(h)g(algorithm.)19 +b(An)13 b(APHID)g(searc)o(h)h(is)f(con)o(trolled)j(b)o(y)d(a)g(master)g +(and)h(a)f(series)h(of)f(sla)o(v)o(e)h(pro)q(cessors.)k(The)104 +1164 y(master)d(searc)o(hes)g(the)g(\014rst)g Fq(d)551 +1148 y Fp(0)576 1164 y Fs(ply)h(of)e(the)h(game-tree)g(rep)q(eatedly)m +(.)24 b(The)14 b(sla)o(v)o(es)i(are)f(resp)q(onsible)i(for)e(the)g(b)q +(ottom)104 1210 y(plies)k(of)f(the)f(game-tree.)32 b(The)17 +b(sla)o(v)o(es)i(async)o(hronously)i(read)d(w)o(ork)g(lists)h(from)e +(the)h(master)g(and)g(return)h(score)104 1255 y(information)g(to)d(the) +h(master.)29 b(The)17 b(master)g(uses)g(the)g(returned)h(score)f +(information)i(to)e(generate)g(appro)o(ximate)104 1301 +y(minimax)e(v)n(alues,)f(un)o(til)g(all)h(of)d(the)i(required)g(score)f +(information)j(is)d(a)o(v)n(ailable.)161 1346 y(APHID)e(has)g(b)q(een)g +(programmed)g(as)g(an)g(easy)g(to)f(implemen)o(t,)j(game-indep)q(enden) +o(t)g Fq(\013\014)f Fs(library)m(,)g(and)f(w)o(as)g(imple-)104 +1392 y(men)o(ted)g(in)o(to)h(a)g(c)o(hess)f(program)h(with)g(one)f(da)o +(y)h(of)f(programming)i(e\013ort.)k(APHID)11 b(yields)i(reasonable)g(p) +q(erformance)104 1438 y(on)e(a)h(net)o(w)o(ork)f(of)g(w)o(orkstations,) +i(an)f(arc)o(hitecture)h(where)e(it)h(is)g(extremely)g(di\016cult)h(to) +f(use)f(a)h(shared)g(transp)q(osition)104 1483 y(table)i(e\013fectiv)o +(ely)m(.)0 1619 y Fo(1)69 b(In)n(tro)r(duction)0 1722 +y Fn(The)18 b(alpha-b)q(eta)f(\()p Fm(\013\014)r Fn(\))h(minim)o(ax)c +(tree)19 b(searc)o(h)f(algorithm)d(has)j(pro)o(v)o(en)f(to)g(b)q(e)h(a) +f(di\016cult)g(algorithm)e(to)i(parallelize.)0 1785 y(Although)e(sim)o +(ulations)e(predict)k(excellen)o(t)f(parallel)f(p)q(erformance,)g(man)o +(y)f(of)h(these)i(results)g(are)f(based)h(on)e(an)h(unrea-)0 +1847 y(sonable)c(set)h(of)e(assumptions.)17 b(In)12 b(practice,)h(kno)o +(wing)e(where)i(to)f(initiate)f(parallel)g(activit)o(y)g(is)h +(di\016cult)g(since)h(the)f(result)0 1909 y(of)18 b(searc)o(hing)g(one) +h(no)q(de)f(at)g(a)g(branc)o(h)h(ma)o(y)d(ob)o(viate)i(the)h(parallel)e +(w)o(ork)g(of)h(the)h(other)g(branc)o(hes)g(\(a)f(so-called)g +Fl(cut-)0 1972 y(o\013)p Fn(\).)h(In)14 b(real-w)o(orld)f(implemen)o +(tations,)d(suc)o(h)15 b(as)f(for)g(high-p)q(erformance)f(c)o(hess,)i +(c)o(hec)o(k)o(ers)h(and)d(Othello)h(game-pla)o(ying)0 +2034 y(programs,)e(the)j(programs)d(su\013er)k(from)c(three)j(ma)r(jor) +d(sources)k(of)d(parallel)g(ine\016ciency:)62 2121 y +Fk(\017)21 b Fl(Synchr)n(onization)15 b(Overhe)n(ad)p +Fn(:)i(The)d(searc)o(h)g(t)o(ypically)d(has)i(man)o(y)e(sync)o +(hronization)i(p)q(oin)o(ts)f(that)h(result)h(in)e(a)h(high)104 +2184 y(p)q(ercen)o(tage)i(of)f(pro)q(cessor)h(idle)f(time.)62 +2275 y Fk(\017)21 b Fl(Communic)n(ation)f(Overhe)n(ad)p +Fn(:)29 b(Pro)q(cesses)22 b(m)o(ust)c(comm)o(unicate)f(information)f(b) +q(et)o(w)o(een)21 b(them;)f(the)g(impact)e(of)104 2338 +y(comm)o(unicatio)o(n)11 b(dep)q(ends)16 b(on)d(the)i(frequency)g(of)e +(messages)h(and)g(the)g(comm)o(unication)d(latency)m(.)62 +2429 y Fk(\017)21 b Fl(Se)n(ar)n(ch)c(Overhe)n(ad)p Fn(:)22 +b(Searc)o(h)16 b(trees)i(are)e(really)f(directed)i(graphs.)24 +b(W)m(ork)15 b(p)q(erformed)g(on)h(one)g(pro)q(cessor)h(ma)o(y)d(b)q(e) +104 2491 y(useful)d(to)g(the)g(computations)f(of)g(another)i(pro)q +(cessor.)18 b(If)11 b(this)g(information)d(is)j(not)g(a)o(v)n(ailable,) +e(unnecessary)k(searc)o(h)104 2554 y(ma)o(y)f(b)q(e)i(done.)0 +2641 y(These)h(o)o(v)o(erheads)f(are)g(not)f(indep)q(enden)o(t)i(of)d +(eac)o(h)i(other.)19 b(F)m(or)13 b(example,)f(increased)i(comm)o +(unication)c(can)k(help)f(reduce)0 2704 y(the)j(searc)o(h)h(o)o(v)o +(erhead.)23 b(Reducing)15 b(the)h(n)o(um)o(b)q(er)f(of)f(sync)o +(hronization)i(p)q(oin)o(ts)f(can)h(increase)g(the)g(searc)o(h)h(o)o(v) +o(erhead.)23 b(In)965 2828 y(1)p eop +%%Page: 2 2 +2 1 bop 0 195 a Fn(practice,)14 b(the)h(righ)o(t)e(balance)h(b)q(et)o +(w)o(een)h(these)g(sources)h(of)d(program)f(ine\016ciency)i(is)g +(di\016cult)f(to)h(\014nd,)f(and)h(one)g(usually)0 257 +y(p)q(erforms)f(man)o(y)f(exp)q(erimen)o(ts)j(to)e(\014nd)h(the)h(righ) +o(t)e(trade-o\013s)i(to)f(maxim)o(ize)d(p)q(erformance.)62 +320 y(Man)o(y)i(parallel)g Fm(\013\014)j Fn(algorithms)11 +b(ha)o(v)o(e)j(app)q(eared)g(in)f(the)i(literature)f([1)o(,)f(2,)g(3,)g +(9,)g(13)o(,)g(22].)k(The)d(PV-Split)g(algorithm)0 382 +y(recognized)19 b(that)f(some)f(no)q(des)h(exist)h(in)e(the)h(searc)o +(h)h(tree)g(where,)h(ha)o(ving)d(searc)o(hed)i(the)g(\014rst)f(branc)o +(h)g(sequen)o(tially)m(,)0 444 y(the)f(remaining)e(branc)o(hes)i(can)g +(b)q(e)g(searc)o(hed)h(in)e(parallel)g([16)o(].)25 b(Initiating)15 +b(parallelism)f(along)h(the)i(b)q(est)h(line)e(of)g(pla)o(y)m(,)0 +506 y(the)h Fl(princip)n(al)f(variation)p Fn(,)g(w)o(as)g(e\013ectiv)o +(e)h(for)f(a)f(small)f(n)o(um)o(b)q(er)h(of)h(pro)q(cessors,)i +(although)d(v)n(ariations)g(on)h(this)g(sc)o(heme)0 569 +y(seemed)e(limited)e(to)i(sp)q(eedups)i(of)d(less)h(than)g(8)g([21)o +(].)62 631 y(The)e(idea)f(can)h(b)q(e)g(generalized)g(to)g(other)g(no)q +(des)g(in)f(the)h(tree.)18 b(A)o(t)12 b(no)q(des)g(where)h(the)f +(\014rst)g(branc)o(h)g(has)g(b)q(een)g(searc)o(hed)0 +693 y(and)17 b(no)g(cut-o\013)h(o)q(ccurs,)h(the)e(rest)i(can)e(lik)o +(ely)f(b)q(e)i(searc)o(hed)h(in)e(parallel.)26 b(It)18 +b(is)f(a)g(trade-o\013)g({)g(increased)i(parallelism)0 +756 y(v)o(ersus)c(additional)d(searc)o(h)k(o)o(v)o(erhead,)e(since)g +(one)h(of)e(these)j(parallel)d(tasks)h(could)g(cause)h(a)f(cuto\013.)19 +b(This)14 b(idea)g(has)g(b)q(een)0 818 y(tried)e(b)o(y)g(a)f(n)o(um)o +(b)q(er)h(of)f(researc)o(hers)k([6)o(,)c(7,)g(10].)17 +b(The)12 b(b)q(est-kno)o(wn)g(instance)h(of)e(this)h(t)o(yp)q(e)h(of)e +(algorithm)e(is)j(called)f Fl(Y)m(oung)0 880 y(Br)n(others)k(Wait)f +Fn(\(YBW\))h(and)f(w)o(as)g(implemen)o(ted)e(b)o(y)i(F)m(eldmann)e(in)i +(the)h Fj(Zugzw)l(ang)f Fn(c)o(hess)i(program)d([5)o(].)19 +b(F)m(eldmann)0 942 y(ac)o(hiev)o(ed)f(a)f(344-fold)f(sp)q(eedup)j +(using)e(YBW)h(on)f(1024)g(pro)q(cessors.)31 b(V)m(ariations)16 +b(of)h(this)h(algorithm)d(ha)o(v)o(e)i(app)q(eared)0 +1005 y(with)d(comparable)e(exp)q(erimen)o(tal)h(results,)i(suc)o(h)f +(as)g(Jam)o(b)q(oree)g(searc)o(h)h([12)o(])e(and)h(ABD)o(AD)o(A)g([24)o +(].)62 1067 y(This)20 b(class)f(of)g(algorithms)e(cannot)j(ac)o(hiev)o +(e)g(a)f(linear)g(sp)q(eedup)i(primarily)c(due)i(to)h(sync)o +(hronization)f(o)o(v)o(erhead;)0 1129 y(the)c(searc)o(h)h(tree)g(ma)o +(y)d(ha)o(v)o(e)i(thousands)g(of)f(sync)o(hronization)h(p)q(oin)o(ts)g +(and)f(there)j(are)e(n)o(umerous)f(o)q(ccasions)h(where)h(the)0 +1191 y(pro)q(cesses)i(are)e(starv)o(ed)h(for)e(w)o(ork.)23 +b(The)16 b(algorithms)e(ha)o(v)o(e)h(lo)o(w)g(searc)o(h)i(o)o(v)o +(erhead,)f(but)f(this)h(is)g(primarily)d(due)j(to)f(the)0 +1254 y(implemen)o(tatio)o(n)c(of)j(a)f(globally)f(shared)j(transp)q +(osition)e(table)h([8].)62 1316 y(This)g(pap)q(er)h(in)o(tro)q(duces)h +(the)f(Async)o(hronous)g(P)o(arallel)e(Hierarc)o(hical)h(Iterativ)o(e)h +(Deep)q(ening)g(\(APHID)1723 1301 y Fi(1)1742 1316 y +Fn(\))f(game-tree)0 1378 y(searc)o(h)i(algorithm.)k(The)c(algorithm)d +(represen)o(ts)18 b(a)d(departure)i(from)c(the)j(approac)o(hes)g(used)h +(in)d(practice.)24 b(In)15 b(con)o(trast)0 1440 y(to)d(other)h(sc)o +(hemes,)g(APHID)g(de\014nes)h(a)e(fron)o(tier)h(\(a)f(\014xed)h(n)o(um) +o(b)q(er)f(of)f(mo)o(v)o(es)h(a)o(w)o(a)o(y)f(from)g(the)i(ro)q(ot)f +(of)g(the)h(searc)o(h)h(tree\),)0 1503 y(and)d(all)g(no)q(des)h(at)f +(the)h(fron)o(tier)g(are)f(done)h(in)f(parallel.)16 b(Eac)o(h)c(w)o +(ork)o(er)g(pro)q(cess)h(is)e(assigned)h(an)f(equal)g(n)o(um)o(b)q(er)g +(of)g(fron)o(tier)0 1565 y(no)q(des)i(to)f(searc)o(h.)19 +b(The)13 b(w)o(ork)o(ers)g(con)o(tin)o(ually)d(searc)o(h)k(these)g(no)q +(des)f(deep)q(er)h(and)e(deep)q(er,)i(nev)o(er)f(ha)o(ving)f(to)g(sync) +o(hronize)0 1627 y(with)j(a)g(con)o(trolling)f(master)h(pro)q(cess.)24 +b(The)16 b(master)f(pro)q(cess)i(rep)q(eatedly)f(searc)o(hes)i(to)d +(the)h(fron)o(tier)f(to)g(get)h(the)g(latest)0 1689 y(searc)o(h)g +(results.)k(In)15 b(this)f(w)o(a)o(y)m(,)f(there)j(is)e(e\013ectiv)o +(ely)i(no)e(idle)g(time;)f(searc)o(h)i(ine\016ciencies)h(are)f +(primarily)d(due)j(to)f(searc)o(h)0 1752 y(o)o(v)o(erhead.)29 +b(APHID's)18 b(p)q(erformance)f(do)q(es)h(not)g(rely)f(on)h(the)g +(implemen)o(tati)o(on)d(of)i(a)g(global)f(shared)i(memory)m(,)d(whic)o +(h)0 1814 y(mak)o(es)f(the)i(algorithm)d(suitable)i(for)g(lo)q +(osely-coupled)f(arc)o(hitectures)k(\(suc)o(h)e(as)f(a)g(net)o(w)o(ork) +h(of)e(w)o(orkstations\),)h(as)h(w)o(ell)0 1876 y(as)e(tigh)o +(tly-coupled)f(arc)o(hitectures.)62 1939 y(Unlik)o(e)f(most)f(parallel) +g Fm(\013\014)k Fn(algorithms,)9 b(APHID)k(is)f(designed)h(to)f(\014t)g +(in)o(to)g(a)g(sequen)o(tial)g Fm(\013\014)j Fn(structure.)k(APHID)13 +b(has)0 2001 y(b)q(een)i(implemen)o(ted)e(as)h(a)g(game-indep)q(enden)o +(t)g(library)g(of)f(routines.)20 b(These,)c(com)o(bined)d(with)h +(application-dep)q(enden)o(t)0 2063 y(routines)d(that)f(the)g(user)h +(supplies,)g(allo)o(w)d(a)i(sequen)o(tial)g Fm(\013\014)j +Fn(program)8 b(to)i(b)q(e)h(easily)e(con)o(v)o(erted)i(to)f(a)g +(parallel)f Fm(\013\014)j Fn(program.)0 2125 y(Although)i(most)f +(parallel)g Fm(\013\014)j Fn(programs)d(tak)o(e)h(mon)o(ths)f(to)h(dev) +o(elop,)g(the)h(game-indep)q(enden)o(t)f(library)g(allo)o(ws)e(users)k +(to)0 2188 y(in)o(tegrate)e(parallelism)d(in)o(to)j(their)g +(application)e(with)i(only)f(a)h(few)g(hours)g(of)f(w)o(ork.)62 +2250 y(This)j(pap)q(er)h(discusses)i(the)e(APHID)f(algorithm,)e(its)i +(application-indep)q(enden)o(t)g(in)o(terface)h(and)f(the)h(p)q +(erformance)0 2312 y(of)12 b(the)h(APHID)g(algorithm.)i(The)f(pap)q(er) +f(is)g(organized)f(in)o(to)g(\014v)o(e)h(sections.)19 +b(Section)13 b(2)g(is)f(a)h(brief)f(summary)e(of)j(previous)0 +2374 y(w)o(ork)18 b(in)g(parallel)f(game-tree)h(searc)o(h.)33 +b(Section)19 b(3)f(is)g(primarily)e(concerned)21 b(with)d(the)h +(details)f(of)g(ho)o(w)g(the)h(APHID)0 2437 y(algorithm)d(op)q(erates,) +21 b(and)e(ho)o(w)g(the)g(library)f(in)o(tegrates)i(with)f(an)f +(existing)h(sequen)o(tial)g Fm(\013\014)i Fn(algorithm.)31 +b(Section)19 b(4)0 2499 y(describ)q(es)h(the)e(preliminary)d(results)k +(of)e(in)o(tegrating)g(the)h(library)f(in)o(to)g(a)g(c)o(hess)i +(program,)d(and)i(Section)g(5)f(describ)q(es)0 2561 y(some)c(of)g(the)i +(researc)o(h)h(directions)e(that)g(w)o(e)g(are)g(curren)o(tly)h(w)o +(orking)e(on.)p 0 2596 780 2 v 46 2623 a Fh(1)64 2634 +y Fg(An)e(aphid)f(is)i(a)f(soft-b)q(o)q(died)e(insect)h(that)g(suc)o +(ks)h(the)g(sap)g(from)f(plan)o(ts.)965 2828 y Fn(2)p +eop +%%Page: 3 3 +3 2 bop 0 195 a Fo(2)69 b(Previous)23 b(W)-6 b(ork)24 +b(on)g(P)n(arallel)d Ff(\013\014)26 b Fo(Algorithms)0 +298 y Fn(The)14 b(idea)g(b)q(ehind)g(the)g(PV-Split)g(algorithm)d(has)j +(pro)o(v)o(en)g(to)g(b)q(e)g(a)g(fundamen)o(tal)d(building)i(blo)q(c)o +(k)g(in)h(dev)o(eloping)f(high-)0 361 y(p)q(erformance)i(parallel)e +(game-tree)h(algorithms)f([16)o(].)20 b(Simply)12 b(stated,)k(the)f +(\014rst)g(mo)o(v)o(e)f(at)g(a)h(principal)e(v)n(ariation)h(no)q(de)0 +423 y(m)o(ust)19 b(b)q(e)h(completely)f(ev)n(aluated)g(b)q(efore)i(the) +f(subsequen)o(t)i(mo)o(v)o(es)c(can)i(b)q(e)g(handed)h(out)e(to)h +(other)g(pro)q(cessors)i(and)0 485 y(ev)n(aluated)13 +b(in)h(parallel.)i(P)o(arallelism)c(o)q(ccurs)j(only)e(at)g(the)h +Fe(PV)g Fn(no)q(des,)g(and)f(the)h(nature)h(of)e(the)h(algorithm)d +(ensures)16 b(that)0 548 y(an)10 b(accurate)i(searc)o(h)g(windo)o(w)e +(is)g(determined)h(b)q(efore)g(allo)q(cating)e(w)o(ork)i(to)f(the)h +(sla)o(v)o(es)g(in)f(parallel,)g(whic)o(h)g(reduces)j(searc)o(h)0 +610 y(o)o(v)o(erhead.)18 b(Although)c(it)f(is)h(easy)g(to)g(con)o(trol) +f(the)i(PV-Split)e(algorithm)e(since)k(only)e(one)h Fe(PV)f +Fn(no)q(de)h(can)g(b)q(e)h(ev)n(aluated)e(in)0 672 y(parallel)h(at)g(a) +h(giv)o(en)f(momen)o(t)e(in)i(time,)f(a)i(di\013eren)o(t)h(approac)o(h) +e(is)h(needed)h(if)e(y)o(ou)g(ha)o(v)o(e)h(more)f(pro)q(cessors)j(than) +d(mo)o(v)o(es)0 734 y(at)g(the)g(curren)o(t)i Fe(PV)d +Fn(no)q(de.)62 797 y(Newb)q(orn's)k(UIDP)m(ABS)f(algorithm)d([17)o(])i +(w)o(as)h(the)g(\014rst)g(attempt)f(to)h(async)o(hronously)g(start)g +(the)g(next)h(lev)o(el)e(of)g(an)0 859 y(iterativ)o(ely)e(deep)q(ened)k +(searc)o(h)e(instead)f(of)g(sync)o(hronizing)g(at)g(the)g(ro)q(ot)g(of) +g(the)h(game-tree.)j(The)c(mo)o(v)o(es)f(from)f(the)j(ro)q(ot)0 +921 y(p)q(osition)d(are)h(partitioned)f(among)f(the)i(pro)q(cessors,)i +(and)d(the)i(pro)q(cessors)g(searc)o(h)g(their)f(o)o(wn)g(subset)h(of)e +(the)h(mo)o(v)o(es)e(with)0 983 y(iterativ)o(e)k(deep)q(ening.)21 +b(Eac)o(h)15 b(pro)q(cessor)h(is)f(giv)o(en)f(the)h(same)f(initial)e +(windo)o(w,)i(but)h(some)e(of)h(the)i(pro)q(cessors)g(ma)o(y)d(ha)o(v)o +(e)0 1046 y(c)o(hanged)g(their)h(windo)o(ws,)e(based)i(on)f(the)g +(searc)o(h)i(results)f(of)e(their)i(mo)o(v)o(es.)i(The)e(UIDP)m(ABS)f +(algorithm)d(then)k(com)o(bines)0 1108 y(the)f(results)h(once)g(a)e +(predetermined)h(time)f(limit)e(has)j(b)q(een)h(reac)o(hed.)k(The)c +(APHID)f(algorithm)d(uses)j(the)h(basic)f(concept)0 1170 +y(of)g(ho)o(w)h(to)f(implemen)o(t)f(async)o(hronous)i(searc)o(h)h(from) +d(UIDP)m(ABS,)i(as)g(w)o(e)g(shall)f(see)i(in)f(Section)g(3.)62 +1232 y(The)f(Y)m(oung)f(Brothers)i(W)m(ait)c(\(YBW\))j(algorithm)d +(extends)k(PV-Split)d(to)h(state)i(that)e(the)h(other)g(mo)o(v)o(es)e +(\(the)i(\\y)o(oung)0 1295 y(brothers"\))19 b(can)e(b)q(e)h(searc)o +(hed)h(in)e(parallel)f(only)g(if)h(the)h(\014rst)g(mo)o(v)o(e)e(of)g(a) +h(no)q(de)h(has)g(b)q(een)g(completely)e(searc)o(hed)j(and)0 +1357 y(has)d(not)g(caused)h(the)g Fm(\013\014)h Fn(windo)o(w)d(to)h(b)q +(e)h(cut)f(o\013)g([5)o(].)24 b(This)16 b(is)g(alw)o(a)o(ys)f(true)i +(at)f Fe(PV)f Fn(no)q(des,)i(and)f(is)g(generally)f(true)i(at)0 +1419 y Fe(ALL)c Fn(no)q(des,)i(assuming)e(w)o(e)h(start)h(with)f(an)g +(in\014nite)f(searc)o(h)j(windo)o(w)d(at)h(the)h(ro)q(ot)f(p)q +(osition.)k(Th)o(us,)c(there)i(are)e(m)o(ultiple)0 1482 +y(p)q(oten)o(tial)e(parallel)g(no)q(des)i(at)f(an)o(y)f(giv)o(en)g +(time)g(when)h(searc)o(hing)h(the)f(tree.)19 b(Ho)o(w)o(ev)o(er,)13 +b(the)h(searc)o(h)g(is)f(still)f(sync)o(hronized)0 1544 +y(in)f(the)i(same)e(w)o(a)o(y)g(that)g(PV-Split)h(is)f(sync)o +(hronized.)19 b(Un)o(til)11 b(a)g(searc)o(h)i(of)e(all)g(c)o(hildren)h +(of)f(a)h(giv)o(en)f Fe(PV)g Fn(no)q(de)h(is)g(completed,)0 +1606 y(the)i(other)h(c)o(hildren)f(of)f(the)i Fe(PV)e +Fn(no)q(de's)h(paren)o(t)h(cannot)f(b)q(e)g(searc)o(hed.)62 +1668 y(Although)i(the)i Fl(synchr)n(onization)g(overhe)n(ad)f +Fn(in)f(YBW)h(is)g(a)f(lot)g(smaller)f(than)i(in)f(PV-Split,)h(w)o(ork) +o(ers)g(still)f(searc)o(h)0 1731 y(for)e(a)h(pro)q(cessor)h(that)f(has) +g(w)o(ork)g(to)f(do)h(\(according)g(to)f(the)i(YBW)e(criterion\))i(b)o +(y)e(sending)h(a)g(message)f(to)h(a)f(pro)q(cessor)0 +1793 y(at)f(random.)j(This)e(dynamic)d(load-balancing)h(metho)q(d,)g +(\\w)o(ork-stealing")g([12)o(],)g(is)h(e\013ectiv)o(e)i(in)e(balancing) +f(the)i(share)h(of)0 1855 y(w)o(ork)f(done)g(on)f(eac)o(h)i(pro)q +(cessor,)g(but)f(p)q(erio)q(dically)f(imp)q(oses)g(a)h(hea)o(vy)g(comm) +o(unicati)o(on)d(load.)62 1917 y(In)h(the)g(implemen)o(tatio)o(n)d(of)i +Fj(Zugzw)l(ang)h Fn(presen)o(ted)i(in)d(F)m(eldmann's)e(thesis)k([5)o +(],)e(a)g(distributed)i(transp)q(osition)e(table)0 1980 +y(w)o(as)g(implemen)o(ted)e(with)j(message)f(passing)g(across)h(a)f +(series)i(of)e(T)m(ransputers)i(to)e(impro)o(v)o(e)f(the)i(results)g +(of)f(the)h(algorithm.)0 2042 y(On)j(a)g(system)f(with)h(a)f(lo)o(w)g +(CPU)h(cycle)h(to)e(message)h(latency)g(ratio,)f(this)h(t)o(yp)q(e)g +(of)f(distributed)i(transp)q(osition)e(table)h(is)0 2104 +y(practical)f(and)f(is)h(useful)g(in)g(con)o(trolling)e(the)j(searc)o +(h)g(o)o(v)o(erhead.)62 2166 y(Da)o(vid's)k Fm(\013\014)r +Fk(\003)i Fn(framew)o(ork)e(uses)j(a)e(global)f(transp)q(osition)h +(table)h(to)f(con)o(trol)g(where)i(the)f(pro)q(cessors)i(should)d(b)q +(e)0 2229 y(searc)o(hing)g([4].)35 b(By)20 b(adding)f(a)h(\014eld)g(to) +g(the)g(global)f(transp)q(osition)g(table)h(to)g(indicate)g(the)g(n)o +(um)o(b)q(er)f(of)h(pro)q(cessors)0 2291 y(searc)o(hing)15 +b(that)f(no)q(de,)g(eac)o(h)g(pro)q(cessor)i(can)e(pretend)i(it)d(is)h +(searc)o(hing)h(the)f(tree)i(sequen)o(tially)m(,)c(and)i(mak)o(e)f +(decisions)h(on)0 2353 y(where)h(to)f(searc)o(h)h(based)f(on)g(the)g(n) +o(um)o(b)q(er)f(of)g(pro)q(cessors)j(searc)o(hing)e(the)h(c)o(hildren)f +(of)f(the)h(no)q(de.)19 b(When)14 b(an)o(y)f(pro)q(cessor)0 +2416 y(generates)j(a)e(v)n(alue)g(for)f(the)i(ro)q(ot)g(p)q(osition,)e +(the)i(searc)o(h)g(is)f(\014nished.)20 b(Unfortunately)m(,)13 +b(Da)o(vid's)g(metho)q(d)h(of)f(con)o(trolling)0 2478 +y(where)h(the)f(pro)q(cessors)i(should)e(b)q(e)h(searc)o(hing)f(w)o(as) +g(ine\016cien)o(t,)f(and)h(the)g(sc)o(heme)g(w)o(as)g(hamp)q(ered)g(b)o +(y)f(the)i(use)g(of)e(half)g(of)0 2540 y(the)h(T)m(ransputers)g(as)f +(transp)q(osition)g(table)g(storage)g(units,)g(limiting)d(the)j(sp)q +(eedup)i(rep)q(orted)f(to)f(6.5)f(on)h(16)f(T)m(ransputers.)0 +2602 y(Regrettably)m(,)i(no)h(w)o(ork)f(is)h(rep)q(orted)h(that)f +(addresses)i(these)g(shortcomings.)62 2665 y(W)m(eill)h([24)o(])g +(recognized)j(that)e(the)h(YBW)f(criterion)h(could)f(b)q(e)h(used)g(in) +f(conjunction)g(with)g(the)h Fm(\013\014)r Fk(\003)f +Fn(framew)o(ork.)965 2828 y(3)p eop +%%Page: 4 4 +4 3 bop 0 195 a Fn(W)m(eill)14 b(sho)o(w)o(ed)h(the)h(com)o(bination,)d +(ABD)o(AD)o(A,)h(yields)i(comparable)e(p)q(erformance)h(to)g(a)g(YBW)g +(implemen)o(tation)d(on)j(a)0 257 y(CM-5.)k(On)14 b(16)g(pro)q +(cessors,)i(ABD)o(AD)o(A)e(yielded)g(an)g(10-fold)f(sp)q(eedup)j(for)e +(a)g(c)o(hess)h(program,)d(while)i(YBW)h(generated)0 +320 y(a)f(sp)q(eedup)h(of)e(just)h(under)h(8.)62 382 +y(Unfortunately)m(,)j(neither)g(of)f(these)i(sc)o(heduling)f(metho)q +(ds)f(deal)g(adequately)h(with)f(arc)o(hitectures)j(that)d(ha)o(v)o(e)h +(high)0 444 y(CPU)e(cycle/message)f(latency)h(ratios,)f(suc)o(h)h(as)g +(a)f(net)o(w)o(ork)g(of)g(w)o(orkstations.)23 b(Using)15 +b(YBW)g(on)g(a)h(system)f(with)g(only)0 506 y(transp)q(osition)i +(tables)g(lo)q(cal)g(to)g(eac)o(h)g(pro)q(cess)i(will)d(yield)g(large)h +(searc)o(h)i(o)o(v)o(erheads,)f(since)g(there)g(is)f(no)g(guaran)o(tee) +h(of)0 569 y(where)12 b(a)f(giv)o(en)f(no)q(de)i(will)d(end)j(up)f +(when)g(w)o(e)g(use)h(the)g(c)o(haotic)f(w)o(ork-stealing)f(sc)o +(heduler)i(in)f(com)o(bination)d(with)j(iterativ)o(e)0 +631 y(deep)q(ening.)18 b(Using)12 b(ABD)o(AD)o(A)g(is)g(infeasible)g +(since)g(the)h(system)f(requires)h(a)f(shared)h(transp)q(osition)f +(table,)g(whic)o(h)g(w)o(ould)0 693 y(b)q(e)j(extremely)e(slo)o(w)g(on) +h(a)g(parallel)e(arc)o(hitecture)k(with)e(a)f(high)g(CPU)i +(cycle/message)f(latency)g(ratio.)0 831 y Fo(3)69 b(The)23 +b(APHID)f(Algorithm)0 934 y Fn(Y)m(oung)12 b(Brothers)i(W)m(ait)d(and)h +(other)h(algorithms)e(su\013er)i(from)e(three)j(serious)f(problems.)k +(First,)12 b(the)i(n)o(umerous)d(sync)o(hro-)0 996 y(nization)k(p)q +(oin)o(ts)h(result)h(in)f(idle)f(time.)24 b(This)16 b(suggests)h(that)f +(a)g(new)g(algorithm)e(m)o(ust)h(striv)o(e)h(to)g(reduce)i(or)e +(eliminate)0 1058 y(sync)o(hronization)c(altogether.)18 +b(Second,)13 b(the)g(c)o(haotic)g(nature)g(of)f(a)g(w)o(ork-stealing)f +(sc)o(heduler)j(requires)g(algorithms)c(suc)o(h)0 1121 +y(as)15 b(YBW)g(and)g(Jam)o(b)q(oree)f(to)h(use)h(a)e(shared)i(transp)q +(osition)f(table)g(to)f(ac)o(hiev)o(e)i(reasonable)f(p)q(erformance.)21 +b(Algorithms)0 1183 y(based)13 b(on)f(the)i Fm(\013\014)r +Fk(\003)e Fn(framew)o(ork)f(require)j(a)e(shared)h(transp)q(osition)g +(table)f(to)g(function.)18 b(Third,)12 b(the)h(program)e(ma)o(y)f +(initi-)0 1245 y(ate)i(parallelism)e(at)h(no)q(des)i(whic)o(h)f(are)g +(b)q(etter)i(done)e(sequen)o(tially)m(.)17 b(F)m(or)11 +b(example,)g(ha)o(ving)g(searc)o(hed)i(the)g(\014rst)g(branc)o(h)f(at)0 +1307 y(a)i(no)q(de)h(and)f(not)g(ac)o(hiev)o(ed)h(a)f(cut-o\013,)h(Y)m +(oung)e(Brothers)j(W)m(ait)d(\(in)i(its)f(simplest)f(form\))g(p)q +(ermits)h(all)f(of)h(the)h(remaining)0 1370 y(branc)o(hes)f(to)f(b)q(e) +g(searc)o(hed)i(in)d(parallel.)17 b(Ho)o(w)o(ev)o(er,)c(if)f(the)h +(second)h(branc)o(h)f(causes)h(a)f(cuto\013,)g(then)h(all)d(the)j +(parallel)d(w)o(ork)0 1432 y(done)18 b(on)f(the)h(third)g(\(and)f +(subsequen)o(t\))j(branc)o(hes)e(has)g(b)q(een)h(w)o(asted.)29 +b(This)18 b(suggests)g(parallelism)d(should)j(only)e(b)q(e)0 +1494 y(initiated)d(at)h(no)q(des)g(where)i(there)f(is)e(a)h(v)o(ery)g +(high)f(probabilit)o(y)g(that)h(all)e(branc)o(hes)k(m)o(ust)c(b)q(e)j +(considered.)62 1557 y(This)f(section)h(in)o(tro)q(duces)g(the)f(Async) +o(hronous)h(P)o(arallel)e(Hierarc)o(hical)h(Iterativ)o(e)g(Deep)q +(ening)h(\(APHID\))f(game-tree)0 1619 y(searc)o(hing)i(algorithm.)21 +b(APHID)15 b(has)h(b)q(een)h(designed)f(to)g(address)h(the)f(ab)q(o)o +(v)o(e)f(three)i(issues.)25 b(The)16 b(algorithm)d(is)i(asyn-)0 +1681 y(c)o(hronous)g(in)f(nature;)h(it)e(remo)o(v)o(es)h(all)f(sync)o +(hronization)i(p)q(oin)o(ts)f(from)e(the)j Fm(\013\014)i +Fn(searc)o(h)e(and)g(from)d(iterativ)o(e)i(deep)q(ening.)0 +1743 y(Also,)f(parallelism)e(is)j(only)f(applied)g(at)h(no)q(des)g +(that)g(ha)o(v)o(e)g(a)f(high)g(probabilit)o(y)g(of)g(needing)h +(parallelism.)h(The)f(top)g(plies)0 1806 y(of)k(a)g(game-tree)g(\(near) +g(the)h(ro)q(ot\))g(v)n(ary)f(infrequen)o(tly)g(b)q(et)o(w)o(een)h +(steps)h(of)e(iterativ)o(e)g(deep)q(ening)h([19)o(].)31 +b(This)18 b(relativ)o(e)0 1868 y(in)o(v)n(ariance)13 +b(of)g(the)i(top)f(p)q(ortion)f(of)h(the)g(game-tree)g(is)f(exploited)h +(b)o(y)g(the)g(APHID)g(algorithm.)62 1930 y(In)e(its)f(simplest)g +(form,)f(APHID)i(can)g(b)q(e)g(view)o(ed)g(as)f(a)h(master/sla)o(v)o(e) +e(program)g(although,)h(as)h(discussed)h(later,)e(it)h(can)0 +1992 y(b)q(e)k(generalized)g(to)g(a)f(hierarc)o(hical)g(pro)q(cessor)i +(tree.)24 b(F)m(or)15 b(a)g(depth)i Fm(d)e Fn(searc)o(h,)h(the)g +(master)f(is)g(resp)q(onsible)i(for)e(the)h(top)0 2055 +y Fm(d)22 2040 y Fd(0)47 2055 y Fn(ply)d(of)g(the)i(tree,)f(and)g(the)g +(remaining)e Fm(d)d Fk(\000)g Fm(d)770 2040 y Fd(0)795 +2055 y Fn(ply)k(are)h(searc)o(hed)i(in)d(parallel)f(b)o(y)i(the)g(sla)o +(v)o(es.)k(Figure)c(1)g(sho)o(ws)g(where)0 2117 y(parallel)f +(activities)g(o)q(ccur)j(in)d(APHID)h(and)g(YBW.)g(Eac)o(h)g(lo)q +(cation)f(mark)o(ed)g(with)g(an)h Fe(x)g Fn(sho)o(ws)g(where)h(the)g +(parallelism)0 2179 y(t)o(ypically)10 b(tak)o(es)h(place.)17 +b(Although)11 b(more)f(w)o(ork)h(could)g(b)q(e)g(generated)i(in)d(YBW,) +h(eac)o(h)h Fe(x)e Fn(represen)o(ts)k(a)d(p)q(oten)o(tially)f(costly)0 +2241 y(sync)o(hronization)16 b(p)q(oin)o(t.)25 b(The)17 +b(parallelism)c(is)j(more)g(constrained)h(in)f(APHID)g(and,)g(hence,)i +(is)e(more)g(lik)o(ely)f(to)h(su\013er)0 2304 y(from)c(load)h(im)o +(balances)f(than)i(other)h(dynamic)d(sc)o(heduling)i(routines)g(\(suc)o +(h)h(as)f(YBW,)g(Jam)o(b)q(oree,)f(or)h Fm(\013\014)r +Fk(\003)p Fn(\).)0 2420 y Fc(3.1)56 b(Op)r(eration)17 +b(of)i(the)f(Master)h(in)f(APHID)0 2509 y Fn(The)d(master)e(is)h(resp)q +(onsible)i(for)d(searc)o(hing)i(the)g(top)f Fm(d)892 +2494 y Fd(0)918 2509 y Fn(ply)f(of)h(the)h(tree.)20 b(It)14 +b(rep)q(eatedly)h(tra)o(v)o(erses)h(this)f(tree)g(un)o(til)e(the)0 +2571 y(correct)g(minim)o(ax)8 b(v)n(alue)j(has)g(b)q(een)i(determined.) +k(The)12 b(master)f(is)g(executing)h(a)f(normal)e Fm(\013\014)14 +b Fn(searc)o(h,)e(with)f(the)h(exception)0 2634 y(that)j(APHID)f +(enforces)i(an)f(arti\014cial)e(searc)o(h)j(horizon)e(at)h +Fm(d)973 2618 y Fd(0)999 2634 y Fn(ply)f(from)e(the)k(ro)q(ot.)k(Eac)o +(h)15 b(leaf)e(no)q(de)i(in)g(the)g(master's)f Fm(d)1939 +2618 y Fd(0)965 2828 y Fn(4)p eop +%%Page: 5 5 +5 4 bop 444 154 a + 16766447 9472573 9669918 31246336 22892052 38679674 startTexFig + 444 154 a +%%BeginDocument: draw1b.ps + +/arrowHeight 10 def +/arrowWidth 5 def + +/IdrawDict 52 dict def +IdrawDict begin + +/reencodeISO { +dup dup findfont dup length dict begin +{ 1 index /FID ne { def }{ pop pop } ifelse } forall +/Encoding ISOLatin1Encoding def +currentdict end definefont +} def + +/ISOLatin1Encoding [ +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright +/parenleft/parenright/asterisk/plus/comma/minus/period/slash +/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon +/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N +/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright +/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m +/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/dotlessi/grave/acute/circumflex/tilde/macron/breve +/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut +/ogonek/caron/space/exclamdown/cent/sterling/currency/yen/brokenbar +/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot +/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior +/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine +/guillemotright/onequarter/onehalf/threequarters/questiondown +/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla +/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex +/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis +/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute +/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis +/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave +/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex +/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis +/yacute/thorn/ydieresis +] def +/Times-Roman reencodeISO def +/Helvetica reencodeISO def + +/none null def +/numGraphicParameters 17 def +/stringLimit 65535 def + +/Begin { +save +numGraphicParameters dict begin +} def + +/End { +end +restore +} def + +/SetB { +dup type /nulltype eq { +pop +false /brushRightArrow idef +false /brushLeftArrow idef +true /brushNone idef +} { +/brushDashOffset idef +/brushDashArray idef +0 ne /brushRightArrow idef +0 ne /brushLeftArrow idef +/brushWidth idef +false /brushNone idef +} ifelse +} def + +/SetCFg { +/fgblue idef +/fggreen idef +/fgred idef +} def + +/SetCBg { +/bgblue idef +/bggreen idef +/bgred idef +} def + +/SetF { +/printSize idef +/printFont idef +} def + +/SetP { +dup type /nulltype eq { +pop true /patternNone idef +} { +dup -1 eq { +/patternGrayLevel idef +/patternString idef +} { +/patternGrayLevel idef +} ifelse +false /patternNone idef +} ifelse +} def + +/BSpl { +0 begin +storexyn +newpath +n 1 gt { +0 0 0 0 0 0 1 1 true subspline +n 2 gt { +0 0 0 0 1 1 2 2 false subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 2 copy false subspline +} if +n 2 sub dup n 1 sub dup 2 copy 2 copy false subspline +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Circ { +newpath +0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/CBSpl { +0 begin +dup 2 gt { +storexyn +newpath +n 1 sub dup 0 0 1 1 2 2 true subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 0 0 false subspline +n 2 sub dup n 1 sub dup 0 0 1 1 false subspline +patternNone not { ifill } if +brushNone not { istroke } if +} { +Poly +} ifelse +end +} dup 0 4 dict put def + +/Elli { +0 begin +newpath +4 2 roll +translate +scale +0 0 1 0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 1 dict put def + +/Line { +0 begin +2 storexyn +newpath +x 0 get y 0 get moveto +x 1 get y 1 get lineto +brushNone not { istroke } if +0 0 1 1 leftarrow +0 0 1 1 rightarrow +end +} dup 0 4 dict put def + +/MLine { +0 begin +storexyn +newpath +n 1 gt { +x 0 get y 0 get moveto +1 1 n 1 sub { +/i exch def +x i get y i get lineto +} for +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Poly { +3 1 roll +newpath +moveto +-1 add +{ lineto } repeat +closepath +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/Rect { +0 begin +/t exch def +/r exch def +/b exch def +/l exch def +newpath +l b moveto +l t lineto +r t lineto +r b lineto +closepath +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 4 dict put def + +/Text { +ishow +} def + +/idef { +dup where { pop pop pop } { exch def } ifelse +} def + +/ifill { +0 begin +gsave +patternGrayLevel -1 ne { +fgred bgred fgred sub patternGrayLevel mul add +fggreen bggreen fggreen sub patternGrayLevel mul add +fgblue bgblue fgblue sub patternGrayLevel mul add setrgbcolor +eofill +} { +eoclip +originalCTM setmatrix +pathbbox /t exch def /r exch def /b exch def /l exch def +/w r l sub ceiling cvi def +/h t b sub ceiling cvi def +/imageByteWidth w 8 div ceiling cvi def +/imageHeight h def +bgred bggreen bgblue setrgbcolor +eofill +fgred fggreen fgblue setrgbcolor +w 0 gt h 0 gt and { +l b translate w h scale +w h true [w 0 0 h neg 0 h] { patternproc } imagemask +} if +} ifelse +grestore +end +} dup 0 8 dict put def + +/istroke { +gsave +brushDashOffset -1 eq { +[] 0 setdash +1 setgray +} { +brushDashArray brushDashOffset setdash +fgred fggreen fgblue setrgbcolor +} ifelse +brushWidth setlinewidth +originalCTM setmatrix +stroke +grestore +} def + +/ishow { +0 begin +gsave +fgred fggreen fgblue setrgbcolor +/fontDict printFont printSize scalefont dup setfont def +/descender fontDict begin 0 [FontBBox] 1 get FontMatrix end +transform exch pop def +/vertoffset 1 printSize sub descender sub def { +0 vertoffset moveto show +/vertoffset vertoffset printSize sub def +} forall +grestore +end +} dup 0 3 dict put def +/patternproc { +0 begin +/patternByteLength patternString length def +/patternHeight patternByteLength 8 mul sqrt cvi def +/patternWidth patternHeight def +/patternByteWidth patternWidth 8 idiv def +/imageByteMaxLength imageByteWidth imageHeight mul +stringLimit patternByteWidth sub min def +/imageMaxHeight imageByteMaxLength imageByteWidth idiv patternHeight idiv +patternHeight mul patternHeight max def +/imageHeight imageHeight imageMaxHeight sub store +/imageString imageByteWidth imageMaxHeight mul patternByteWidth add string def +0 1 imageMaxHeight 1 sub { +/y exch def +/patternRow y patternByteWidth mul patternByteLength mod def +/patternRowString patternString patternRow patternByteWidth getinterval def +/imageRow y imageByteWidth mul def +0 patternByteWidth imageByteWidth 1 sub { +/x exch def +imageString imageRow x add patternRowString putinterval +} for +} for +imageString +end +} dup 0 12 dict put def + +/min { +dup 3 2 roll dup 4 3 roll lt { exch } if pop +} def + +/max { +dup 3 2 roll dup 4 3 roll gt { exch } if pop +} def + +/midpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 x1 add 2 div +y0 y1 add 2 div +end +} dup 0 4 dict put def + +/thirdpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 2 mul x1 add 3 div +y0 2 mul y1 add 3 div +end +} dup 0 4 dict put def + +/subspline { +0 begin +/movetoNeeded exch def +y exch get /y3 exch def +x exch get /x3 exch def +y exch get /y2 exch def +x exch get /x2 exch def +y exch get /y1 exch def +x exch get /x1 exch def +y exch get /y0 exch def +x exch get /x0 exch def +x1 y1 x2 y2 thirdpoint +/p1y exch def +/p1x exch def +x2 y2 x1 y1 thirdpoint +/p2y exch def +/p2x exch def +x1 y1 x0 y0 thirdpoint +p1x p1y midpoint +/p0y exch def +/p0x exch def +x2 y2 x3 y3 thirdpoint +p2x p2y midpoint +/p3y exch def +/p3x exch def +movetoNeeded { p0x p0y moveto } if +p1x p1y p2x p2y p3x p3y curveto +end +} dup 0 17 dict put def + +/storexyn { +/n exch def +/y n array def +/x n array def +n 1 sub -1 0 { +/i exch def +y i 3 2 roll put +x i 3 2 roll put +} for +} def + +/SSten { +fgred fggreen fgblue setrgbcolor +dup true exch 1 0 0 -1 0 6 -1 roll matrix astore +} def + +/FSten { +dup 3 -1 roll dup 4 1 roll exch +newpath +0 0 moveto +dup 0 exch lineto +exch dup 3 1 roll exch lineto +0 lineto +closepath +bgred bggreen bgblue setrgbcolor +eofill +SSten +} def + +/Rast { +exch dup 3 1 roll 1 0 0 -1 0 6 -1 roll matrix astore +} def + + +/arrowhead { +0 begin +transform originalCTM itransform +/taily exch def +/tailx exch def +transform originalCTM itransform +/tipy exch def +/tipx exch def +/dy tipy taily sub def +/dx tipx tailx sub def +/angle dx 0 ne dy 0 ne or { dy dx atan } { 90 } ifelse def +gsave +originalCTM setmatrix +tipx tipy translate +angle rotate +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +patternNone not { +originalCTM setmatrix +/padtip arrowHeight 2 exp 0.25 arrowWidth 2 exp mul add sqrt brushWidth mul +arrowWidth div def +/padtail brushWidth 2 div def +tipx tipy translate +angle rotate +padtip 0 translate +arrowHeight padtip add padtail add arrowHeight div dup scale +arrowheadpath +ifill +} if +brushNone not { +originalCTM setmatrix +tipx tipy translate +angle rotate +arrowheadpath +istroke +} if +grestore +end +} dup 0 9 dict put def + +/arrowheadpath { +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +} def + +/leftarrow { +0 begin +y exch get /taily exch def +x exch get /tailx exch def +y exch get /tipy exch def +x exch get /tipx exch def +brushLeftArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + +/rightarrow { +0 begin +y exch get /tipy exch def +x exch get /tipx exch def +y exch get /taily exch def +x exch get /tailx exch def +brushRightArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + + +%I Idraw 10 Grid 3 3 + + +Begin +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 0.799705 0 0 0.799705 0 0 ] concat +/originalCTM matrix currentmatrix def + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +117 437 65 332 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +117 437 162 332 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 271 296 ] concat +%I +117 437 65 332 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 271 296 ] concat +%I +117 437 162 332 Line +%I 1 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-times-medium-r-normal-*-12-*-*-*-*-*-*-* +Times-Roman 12 SetF +%I t +[ 1 0 0 1 217 609 ] concat +%I +[ +(APHID) +] Text +End + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 26.5 123.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 30.5 123 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 33.5 123 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 37.5 123 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 123.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 45 123.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 49 123.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 52.5 123.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 56 123.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 60 123.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 22.5 123.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 159 96 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 162.5 104 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 166 110.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 170.5 118.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 174 126.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 177 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 181 141 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 185 149 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 188.5 156 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 191.5 164 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 156 88.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 151.5 80 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 148 72.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 192 149 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 195.5 149 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 198.5 149 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 191 135 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 195 135 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 199 135 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 203.5 135 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 187 141 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 190 141 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 181 126.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 185 126.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 189 127 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 188.5 118.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 192.5 118.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 196.5 118.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 204.5 118.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 178 110.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 199 110.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 213.5 111 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 184 96 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 208 95.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 194 156 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -36.5 92.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +100 84 116 100 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +116 100 132 84 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +132 84 148 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +148 116 164 84 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +164 84 180 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +180 116 196 100 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +196 100 212 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +212 116 228 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +228 116 244 100 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +244 100 260 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +260 116 276 100 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +276 100 292 84 Line +%I 2 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 112.5 93 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +100 84 116 100 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +116 100 132 84 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +132 84 148 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +148 116 164 84 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +164 84 180 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +180 116 196 100 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +196 100 212 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +212 116 228 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +228 116 244 100 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +244 100 260 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +260 116 276 100 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +276 100 292 84 Line +%I 2 +End + +End %I eop + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 226 494 ] concat +%I +136 476 160 476 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 244 596 ] concat +%I +136 272 160 272 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 226 497 ] concat +%I +136 296 160 296 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 244 554 ] concat +%I +136 272 160 272 Line +%I 2 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 297 692 ] concat +%I +[ +(d) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 313.5 716 ] concat +%I +[ +(d') +] Text +End + +Begin %I Line +%I b 65535 +2 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 200 494 ] concat +%I +200 374 200 308 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 200 494 ] concat +%I +200 404 200 470 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 200 494 ] concat +%I +236 452 236 470 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 200 494 ] concat +%I +236 422 236 398 Line +%I 2 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-times-medium-r-normal-*-12-*-*-*-*-*-*-* +Times-Roman 12 SetF +%I t +[ 1 0 0 1 373 608 ] concat +%I +[ +(YBW) +] Text +End + +End %I eop + +showpage + + +end +%%EndDocument + + endTexFig + 334 845 a Fn(Figure)14 b(1:)k(Lo)q(cation)13 b(of)h(P)o(arallelism)d +(in)i(T)o(ypical)g(APHID)h(and)g(YBW)g(Searc)o(h)0 978 +y(ply)e(game-tree)f(is)h(b)q(eing)g(async)o(hronously)h(searc)o(hed)g +(b)o(y)f(the)h(sla)o(v)o(es.)18 b(Before)13 b(describing)f(ho)o(w)g +(the)h(master)e(kno)o(ws)h(when)0 1040 y(the)i Fm(d)g +Fn(ply)f(searc)o(h)i(is)f(complete,)f(w)o(e)h(m)o(ust)f(\014rst)h +(describ)q(e)i(ho)o(w)e(the)g(master)f(searc)o(hes)j(the)f +Fm(d)1491 1025 y Fd(0)1516 1040 y Fn(ply)e(tree.)62 1102 +y(When)k(the)g(master)f(reac)o(hes)i(a)f(leaf)f(of)f(the)j +Fm(d)810 1087 y Fd(0)837 1102 y Fn(ply)e(tree,)i(it)f(uses)g(a)g +(reliable)f(or)g(appro)o(ximate)f(v)n(alue)h(for)g(the)h(leaf,)0 +1164 y(dep)q(ending)g(on)f(the)h(information)d(a)o(v)n(ailable.)24 +b(If)16 b(a)g Fm(d)10 b Fk(\000)i Fm(d)938 1149 y Fd(0)965 +1164 y Fn(ply)k(searc)o(h)i(result)f(is)g(a)o(v)n(ailable)d(from)g(the) +k(sla)o(v)o(e,)e(that)g(will)0 1227 y(b)q(e)g(used.)22 +b(\(In)15 b(the)h(curren)o(t)g(implemen)o(tation,)11 +b(w)o(e)16 b(do)e(not)h(use)h(deep)q(er)h(ply)e(v)n(alues,)f(ev)o(en)i +(if)e(they)h(are)h(a)o(v)n(ailable.)j(This)0 1289 y(will)12 +b(b)q(e)h(discussed)i(in)e(Section)g(4.\))18 b(Ho)o(w)o(ev)o(er,)13 +b(if)f(the)i Fm(d)7 b Fk(\000)h Fm(d)949 1274 y Fd(0)973 +1289 y Fn(ply)k(result)i(is)f(not)g(a)o(v)n(ailable,)d(then)k(the)g +(algorithm)c(uses)k(the)0 1351 y(\\b)q(est)h(a)o(v)n(ailable")d(ply)h +(result)i(that)g(had)e(b)q(een)j(returned)g(b)o(y)e(the)g(sla)o(v)o(e)g +(to)g(generate)i(a)d(guessed)j(minim)o(ax)11 b(v)n(alue)1826 +1336 y Fi(2)1844 1351 y Fn(.)19 b(An)o(y)0 1413 y(no)q(de)14 +b(where)h(w)o(e)f(are)h(forced)f(to)g(guess)h(are)f(mark)o(ed)f(as)h +Fl(unc)n(ertain)p Fn(.)62 1476 y(As)g(v)n(alues)g(get)g(bac)o(k)o(ed)g +(up)f(the)h(tree,)h(the)f(master)f(main)o(tains)e(a)j(coun)o(t)g(of)f +(ho)o(w)g(man)o(y)f(uncertain)i(no)q(des)g(ha)o(v)o(e)g(b)q(een)0 +1538 y(visited)d(in)f(a)h(pass)h(of)e(the)i(tree.)18 +b(As)11 b(long)g(as)g(the)g(score)h(at)f(an)o(y)g(of)f(the)i(lea)o(v)o +(es)f(is)g(uncertain,)h(the)f(master)g(m)o(ust)f(do)h(another)0 +1600 y(pass)j(of)g(the)g(tree.)19 b(Once)c(the)g(master)e(has)h(a)f +(reliable)h(v)n(alue)f(for)g(all)g(the)h(lea)o(v)o(es)g(in)g(its)g +Fm(d)1423 1585 y Fd(0)1448 1600 y Fn(ply)f(tree,)h(the)h(searc)o(h)g +(of)e(the)h Fm(d)0 1662 y Fn(ply)h(tree)h(is)f(complete.)22 +b(The)16 b(con)o(trolling)d(program)h(w)o(ould)h(then)h(pro)q(ceed)g +(to)f(the)h(next)g(iteration)f(b)o(y)g(incremen)o(ting)f +Fm(d)0 1725 y Fn(and)g(asking)f(the)h(master)g(to)g(searc)o(h)h(the)f +(tree)h(again.)62 1787 y(Note)e(that)f(this)g(de\014nition)f(of)h(the)g +(master)g(solv)o(es)g(one)g(of)g(the)g(problems)f(that)h(some)f +(algorithms)f(ha)o(v)o(e)i(with)g(resp)q(ect)0 1849 y(to)k +(initializing)d(parallelism)g(to)q(o)j(quic)o(kly)f(at)g(a)h(p)q(oten)o +(tial)f Fe(CUT)g Fn(no)q(de.)24 b(By)17 b(using)e(the)i(guessed)g +(scores)g(when)g(accurate)0 1912 y(information)9 b(is)j(not)f(a)o(v)n +(ailable,)f(the)i(APHID)g(algorithm)e(automatically)e(determines)k(if)f +(a)h(subsequen)o(t)i(c)o(hild)d(is)h(lik)o(ely)e(to)0 +1974 y(generate)15 b(a)f(cuto\013)g(at)g(a)f(failed)g +Fe(CUT)g Fn(no)q(de.)19 b(If)13 b(it)h(seems)g(lik)o(ely)e(that)i(a)g +(c)o(hild)f(will)f(generate)j(a)f(cuto\013)g(based)h(on)e(guessed)0 +2036 y(v)n(alues,)e(the)g(c)o(hildren)g(of)f(the)h(failed)e +Fe(CUT)h Fn(no)q(de)h(are)g(ev)n(aluated)g(sequen)o(tially)m(.)16 +b(If)10 b(it)g(seems)h(unlik)o(ely)e(that)i(the)g(no)q(de)g(will)e(b)q +(e)0 2098 y(cut)j(o\013)g(due)h(to)e(lo)o(w)g(minima)o(x)e(v)n(alues,)j +(the)g(searc)o(h)h(w)o(ould)e(con)o(tin)o(ue)h(for)g(a)f(promising)f +(no)q(de)i(at)g(that)g(branc)o(h)g(in)g(parallel.)0 2161 +y(This)j(is)g(all)f(handled)i(automatically)c(b)o(y)j(the)h +Fm(\013\014)i Fn(routine.)k(The)16 b(handling)e(of)h(a)g(h)o(yp)q +(othesized)h Fe(CUT)f Fn(no)q(de)h(is)f(stronger)0 2223 +y(than)g(the)g(equiv)n(alen)o(t)f(scenario)i(in)e(the)h(YBW)g +(algorithm,)d(whic)o(h)j(ignores)g(previous)g(score)h(information)c(a)o +(v)n(ailable)g(for)0 2285 y(some)f(branc)o(hes)i(of)f(the)h(failed)e +Fe(CUT)g Fn(no)q(de.)18 b(In)12 b(the)h(full)d(v)o(ersion)j(of)e(YBW,)h +(application-dep)q(enden)o(t)g(information)d(is)j(used)0 +2347 y(to)i(do)f(what)h(APHID)g(handles)g(automatically)d(with)j(the)g +Fm(\013\014)i Fn(searc)o(h)f(windo)o(w.)62 2410 y(The)g(sla)o(v)o(es)g +(are)g(resp)q(onsible)g(for)f(setting)h(their)g(o)o(wn)f(searc)o(h)i +(windo)o(ws,)e(based)h(on)f(information)e(from)h(the)i(master.)0 +2472 y(Sometimes,)10 b(the)j(information)d(returned)k(b)o(y)e(the)h +(sla)o(v)o(e)f(ma)o(y)f(not)h(b)q(e)h(useful)g(to)f(the)h(master.)k(F)m +(or)12 b(example,)f(a)i(sla)o(v)o(e)f(can)0 2534 y(tell)h(the)i(master) +e(that)h(the)g(score)h(of)f(a)f(giv)o(en)g(no)q(de)i(is)e(less)i(than)f +(30,)e(but)i(the)h(master)e(ma)o(y)f(w)o(an)o(t)h(to)h(kno)o(w)f(if)g +(the)i(score)p 0 2569 780 2 v 46 2596 a Fh(2)64 2607 +y Fg(Man)o(y)d(game-tree)f(searc)o(h)h(programs)e(exhibit)i(an)g +(e\013ect)g(based)g(on)h(the)g(parit)o(y)e(of)i(the)g(searc)o(h)f +(depth)f(\(o)q(dd)h(or)h(ev)o(en)f(n)o(um)o(b)q(er)g(of)g(ply\).)0 +2647 y(Scores)d(are)g(stable)g(when)h(y)o(ou)f(lo)q(ok)h(at)f(results)g +(from)g(the)h(o)q(dd)f(plies)g(only)m(,)h(or)g(ev)o(en)f(plies)g(only)m +(,)g(but)h(are)f(sometimes)f(unstable)g(when)i(y)o(ou)f(mix)0 +2686 y(the)i(t)o(w)o(o.)k(Th)o(us,)c(w)o(e)h(use)f(the)g(largest)f(ply) +h(v)n(alue)f(with)h(the)g(same)f(parit)o(y)m(,)g(instead)g(of)h(alw)o +(a)o(ys)g(using)f(the)h(largest)f(ply)h(v)n(alue)f(a)o(v)n(ailable.)965 +2828 y Fn(5)p eop +%%Page: 6 6 +6 5 bop 165 154 a + 25575945 23681433 8420065 17234821 28417720 35653713 startTexFig + 165 154 a +%%BeginDocument: draw2.ps + +/arrowHeight 10 def +/arrowWidth 5 def + +/IdrawDict 51 dict def +IdrawDict begin + +/reencodeISO { +dup dup findfont dup length dict begin +{ 1 index /FID ne { def }{ pop pop } ifelse } forall +/Encoding ISOLatin1Encoding def +currentdict end definefont +} def + +/ISOLatin1Encoding [ +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright +/parenleft/parenright/asterisk/plus/comma/minus/period/slash +/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon +/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N +/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright +/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m +/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/dotlessi/grave/acute/circumflex/tilde/macron/breve +/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut +/ogonek/caron/space/exclamdown/cent/sterling/currency/yen/brokenbar +/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot +/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior +/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine +/guillemotright/onequarter/onehalf/threequarters/questiondown +/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla +/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex +/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis +/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute +/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis +/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave +/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex +/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis +/yacute/thorn/ydieresis +] def +/Helvetica reencodeISO def + +/none null def +/numGraphicParameters 17 def +/stringLimit 65535 def + +/Begin { +save +numGraphicParameters dict begin +} def + +/End { +end +restore +} def + +/SetB { +dup type /nulltype eq { +pop +false /brushRightArrow idef +false /brushLeftArrow idef +true /brushNone idef +} { +/brushDashOffset idef +/brushDashArray idef +0 ne /brushRightArrow idef +0 ne /brushLeftArrow idef +/brushWidth idef +false /brushNone idef +} ifelse +} def + +/SetCFg { +/fgblue idef +/fggreen idef +/fgred idef +} def + +/SetCBg { +/bgblue idef +/bggreen idef +/bgred idef +} def + +/SetF { +/printSize idef +/printFont idef +} def + +/SetP { +dup type /nulltype eq { +pop true /patternNone idef +} { +dup -1 eq { +/patternGrayLevel idef +/patternString idef +} { +/patternGrayLevel idef +} ifelse +false /patternNone idef +} ifelse +} def + +/BSpl { +0 begin +storexyn +newpath +n 1 gt { +0 0 0 0 0 0 1 1 true subspline +n 2 gt { +0 0 0 0 1 1 2 2 false subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 2 copy false subspline +} if +n 2 sub dup n 1 sub dup 2 copy 2 copy false subspline +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Circ { +newpath +0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/CBSpl { +0 begin +dup 2 gt { +storexyn +newpath +n 1 sub dup 0 0 1 1 2 2 true subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 0 0 false subspline +n 2 sub dup n 1 sub dup 0 0 1 1 false subspline +patternNone not { ifill } if +brushNone not { istroke } if +} { +Poly +} ifelse +end +} dup 0 4 dict put def + +/Elli { +0 begin +newpath +4 2 roll +translate +scale +0 0 1 0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 1 dict put def + +/Line { +0 begin +2 storexyn +newpath +x 0 get y 0 get moveto +x 1 get y 1 get lineto +brushNone not { istroke } if +0 0 1 1 leftarrow +0 0 1 1 rightarrow +end +} dup 0 4 dict put def + +/MLine { +0 begin +storexyn +newpath +n 1 gt { +x 0 get y 0 get moveto +1 1 n 1 sub { +/i exch def +x i get y i get lineto +} for +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Poly { +3 1 roll +newpath +moveto +-1 add +{ lineto } repeat +closepath +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/Rect { +0 begin +/t exch def +/r exch def +/b exch def +/l exch def +newpath +l b moveto +l t lineto +r t lineto +r b lineto +closepath +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 4 dict put def + +/Text { +ishow +} def + +/idef { +dup where { pop pop pop } { exch def } ifelse +} def + +/ifill { +0 begin +gsave +patternGrayLevel -1 ne { +fgred bgred fgred sub patternGrayLevel mul add +fggreen bggreen fggreen sub patternGrayLevel mul add +fgblue bgblue fgblue sub patternGrayLevel mul add setrgbcolor +eofill +} { +eoclip +originalCTM setmatrix +pathbbox /t exch def /r exch def /b exch def /l exch def +/w r l sub ceiling cvi def +/h t b sub ceiling cvi def +/imageByteWidth w 8 div ceiling cvi def +/imageHeight h def +bgred bggreen bgblue setrgbcolor +eofill +fgred fggreen fgblue setrgbcolor +w 0 gt h 0 gt and { +l b translate w h scale +w h true [w 0 0 h neg 0 h] { patternproc } imagemask +} if +} ifelse +grestore +end +} dup 0 8 dict put def + +/istroke { +gsave +brushDashOffset -1 eq { +[] 0 setdash +1 setgray +} { +brushDashArray brushDashOffset setdash +fgred fggreen fgblue setrgbcolor +} ifelse +brushWidth setlinewidth +originalCTM setmatrix +stroke +grestore +} def + +/ishow { +0 begin +gsave +fgred fggreen fgblue setrgbcolor +/fontDict printFont printSize scalefont dup setfont def +/descender fontDict begin 0 [FontBBox] 1 get FontMatrix end +transform exch pop def +/vertoffset 1 printSize sub descender sub def { +0 vertoffset moveto show +/vertoffset vertoffset printSize sub def +} forall +grestore +end +} dup 0 3 dict put def +/patternproc { +0 begin +/patternByteLength patternString length def +/patternHeight patternByteLength 8 mul sqrt cvi def +/patternWidth patternHeight def +/patternByteWidth patternWidth 8 idiv def +/imageByteMaxLength imageByteWidth imageHeight mul +stringLimit patternByteWidth sub min def +/imageMaxHeight imageByteMaxLength imageByteWidth idiv patternHeight idiv +patternHeight mul patternHeight max def +/imageHeight imageHeight imageMaxHeight sub store +/imageString imageByteWidth imageMaxHeight mul patternByteWidth add string def +0 1 imageMaxHeight 1 sub { +/y exch def +/patternRow y patternByteWidth mul patternByteLength mod def +/patternRowString patternString patternRow patternByteWidth getinterval def +/imageRow y imageByteWidth mul def +0 patternByteWidth imageByteWidth 1 sub { +/x exch def +imageString imageRow x add patternRowString putinterval +} for +} for +imageString +end +} dup 0 12 dict put def + +/min { +dup 3 2 roll dup 4 3 roll lt { exch } if pop +} def + +/max { +dup 3 2 roll dup 4 3 roll gt { exch } if pop +} def + +/midpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 x1 add 2 div +y0 y1 add 2 div +end +} dup 0 4 dict put def + +/thirdpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 2 mul x1 add 3 div +y0 2 mul y1 add 3 div +end +} dup 0 4 dict put def + +/subspline { +0 begin +/movetoNeeded exch def +y exch get /y3 exch def +x exch get /x3 exch def +y exch get /y2 exch def +x exch get /x2 exch def +y exch get /y1 exch def +x exch get /x1 exch def +y exch get /y0 exch def +x exch get /x0 exch def +x1 y1 x2 y2 thirdpoint +/p1y exch def +/p1x exch def +x2 y2 x1 y1 thirdpoint +/p2y exch def +/p2x exch def +x1 y1 x0 y0 thirdpoint +p1x p1y midpoint +/p0y exch def +/p0x exch def +x2 y2 x3 y3 thirdpoint +p2x p2y midpoint +/p3y exch def +/p3x exch def +movetoNeeded { p0x p0y moveto } if +p1x p1y p2x p2y p3x p3y curveto +end +} dup 0 17 dict put def + +/storexyn { +/n exch def +/y n array def +/x n array def +n 1 sub -1 0 { +/i exch def +y i 3 2 roll put +x i 3 2 roll put +} for +} def + +/SSten { +fgred fggreen fgblue setrgbcolor +dup true exch 1 0 0 -1 0 6 -1 roll matrix astore +} def + +/FSten { +dup 3 -1 roll dup 4 1 roll exch +newpath +0 0 moveto +dup 0 exch lineto +exch dup 3 1 roll exch lineto +0 lineto +closepath +bgred bggreen bgblue setrgbcolor +eofill +SSten +} def + +/Rast { +exch dup 3 1 roll 1 0 0 -1 0 6 -1 roll matrix astore +} def + + +/arrowhead { +0 begin +transform originalCTM itransform +/taily exch def +/tailx exch def +transform originalCTM itransform +/tipy exch def +/tipx exch def +/dy tipy taily sub def +/dx tipx tailx sub def +/angle dx 0 ne dy 0 ne or { dy dx atan } { 90 } ifelse def +gsave +originalCTM setmatrix +tipx tipy translate +angle rotate +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +patternNone not { +originalCTM setmatrix +/padtip arrowHeight 2 exp 0.25 arrowWidth 2 exp mul add sqrt brushWidth mul +arrowWidth div def +/padtail brushWidth 2 div def +tipx tipy translate +angle rotate +padtip 0 translate +arrowHeight padtip add padtail add arrowHeight div dup scale +arrowheadpath +ifill +} if +brushNone not { +originalCTM setmatrix +tipx tipy translate +angle rotate +arrowheadpath +istroke +} if +grestore +end +} dup 0 9 dict put def + +/arrowheadpath { +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +} def + +/leftarrow { +0 begin +y exch get /taily exch def +x exch get /tailx exch def +y exch get /tipy exch def +x exch get /tipx exch def +brushLeftArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + +/rightarrow { +0 begin +y exch get /tipy exch def +x exch get /tipx exch def +y exch get /taily exch def +x exch get /tailx exch def +brushRightArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + + +%I Idraw 10 Grid 6 6 + + +Begin +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 0.799705 0 0 0.799705 0 0 ] concat +/originalCTM matrix currentmatrix def + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 5.99997 0 ] concat + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 342 674 ] concat +%I +[ +(Master) +] Text +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 8 26 ] concat + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 315 543.5 ] concat +%I +[ +(1) +] Text +End + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +80 224 12 12 Elli +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -4 26 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +128 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 339 543.5 ] concat +%I +[ +(2) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -10 26 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +164 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 357 544 ] concat +%I +[ +(3) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -16 26 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +200 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 375 544 ] concat +%I +[ +(4) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -22 26 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +236 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 393 544 ] concat +%I +[ +(5) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 104 26 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +32 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 291 543.5 ] concat +%I +[ +(7) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -28 26 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +272 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 411 544 ] concat +%I +[ +(6) +] Text +End + +End %I eop + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +68 260 164 452 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +68 260 272 260 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +164 452 272 260 Line +%I 2 +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -71.5 99 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +308 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 428.5 544 ] concat +%I +[ +(R) +] Text +End + +End %I eop + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 284 612.5 ] concat +%I +[ +(d') +] Text +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 226 395 ] concat +%I +148 518 100 518 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 226 395 ] concat +%I +148 326 100 326 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 226 395 ] concat +%I +124 446 124 506 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 226 395 ] concat +%I +124 410 124 338 Line +%I 2 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 18 -24 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +128 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 339 543.5 ] concat +%I +[ +(2) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 84 -24 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +164 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 357 544 ] concat +%I +[ +(3) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -108 -24 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +200 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 375 544 ] concat +%I +[ +(4) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 0 -24 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +236 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 393 544 ] concat +%I +[ +(5) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 66 -24 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +272 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 411 544 ] concat +%I +[ +(6) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -84 -24 ] concat + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 315 543.5 ] concat +%I +[ +(1) +] Text +End + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +80 224 12 12 Elli +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 12 -24 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +32 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 291 543.5 ] concat +%I +[ +(7) +] Text +End + +End %I eop + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.458861 0 0 0.489848 235.544 397.7 ] concat +%I +232 170 388 266 Rect +End + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.815325 0 0 0.489848 236.845 397.7 ] concat +%I +232 170 364 266 Rect +End + +Begin %I Line +%I b 65520 +1 0 0 [12 4] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1.21519 0 0 0.046875 83.0438 492.703 ] concat +%I +100 241 376 241 Line +%I 1 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 162 515 ] concat +%I +[ +(APHID) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 162 503 ] concat +%I +[ +(Table) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 222 497 ] concat +%I +[ +(-1/4) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 258 497 ] concat +%I +[ +(+2/3) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 297.5 497 ] concat +%I +[ +(?/0) +] Text +End + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 148 395 ] concat +%I +136 170 352 266 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 348 497 ] concat +%I +[ +(+5/5) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 468 497 ] concat +%I +[ +(+1/3) +] Text +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +140 331 98 217 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +140 331 170 235 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +98 217 110 229 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +110 229 116 217 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +116 217 122 247 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +122 247 140 235 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +140 235 146 247 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +146 247 152 229 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +152 229 158 247 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +158 247 170 235 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +288 398 204 194 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +204 194 240 218 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +240 218 252 230 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +252 230 264 218 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +264 218 276 182 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +276 182 288 206 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +288 206 300 230 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +300 230 312 206 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +312 206 324 230 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +288 398 348 230 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +324 230 348 230 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +188 248 212 284 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +212 284 236 248 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +236 248 248 296 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +248 296 272 260 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +272 260 284 296 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +284 296 308 272 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +308 272 320 296 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +260 464 320 296 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +260 464 188 248 Line +%I 2 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 246 341 ] concat +%I +[ +(Slave 1) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 354 341 ] concat +%I +[ +(Slave 2) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 444 341 ] concat +%I +[ +(Slave 3) +] Text +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 35.5 -97.5 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +128 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 339 543.5 ] concat +%I +[ +(2) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 54 -97 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +272 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 411 544 ] concat +%I +[ +(6) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -24.5 -99 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +32 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 291 543.5 ] concat +%I +[ +(7) +] Text +End + +End %I eop + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 130 296 ] concat +%I +100 320 148 320 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 130 296 ] concat +%I +100 164 148 164 Line +%I 2 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 180.5 421.5 ] concat +%I +[ +(d-d') +] Text +End + +Begin %I Line +%I b 65535 +1 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 130 296 ] concat +%I +124 224 124 176 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 130 296 ] concat +%I +124 260 124 308 Line +%I 2 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 384 497 ] concat +%I +[ +(+4/5) +] Text +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 60 -36 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 362 ] concat +%I +356 380 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 453 555.5 ] concat +%I +[ +(8) +] Text +End + +End %I eop + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 504 497 ] concat +%I +[ +(-3/1) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 432 497 ] concat +%I +[ +(<0/4) +] Text +End + +End %I eop + +showpage + + +end +%%EndDocument + + endTexFig + 488 1745 a Fn(Figure)14 b(2:)k(A)c(Snapshot)g(of)f(APHID)i(Searc)o(h)f +(In)g(Op)q(eration)0 1878 y(is)f(in)g(b)q(et)o(w)o(een)i(-5)e(and)g(5.) +18 b(In)13 b(this)h(case,)g(a)f(\\bad)g(b)q(ound")h(searc)o(h)g(is)f +(generated,)i(and)e(the)h(searc)o(h)h(windo)o(w)d(parameters,)0 +1940 y Fm(\013)j Fn(and)f Fm(\014)r Fn(,)h(m)o(ust)f(b)q(e)i(comm)o +(unicated)c(to)j(the)h(sla)o(v)o(e)e(pro)q(cessor.)23 +b(An)o(y)15 b(no)q(des)g(where)h(w)o(e)f(are)h(w)o(aiting)d(for)i +(\\bad)f(b)q(ound")0 2002 y(information)f(are)k(considered)g(as)f +(uncertain)h(b)o(y)f(the)g(master,)g(ev)o(en)h(though)f(w)o(e)g(ha)o(v) +o(e)g(a)g(score)h(b)q(ound)f(for)g(the)h Fm(d)10 b Fk(\000)h +Fm(d)1939 1987 y Fd(0)0 2064 y Fn(ply)k(searc)o(h.)25 +b(Ev)o(en)o(tually)m(,)14 b(the)j(sla)o(v)o(e)e(will)f(return)j(up)q +(dated)f(information)d(that)j(is)f(consisten)o(t)i(with)f(b)q(oth)g +(the)g(original)0 2127 y(information)11 b(and)j(the)g(searc)o(h)h +(windo)o(w)e(requested)824 2112 y Fi(3)845 2127 y Fn(.)0 +2243 y Fc(3.2)56 b(The)18 b(APHID)h(T)-5 b(able)0 2332 +y Fn(If)15 b(a)f(leaf)h(no)q(de)g(is)g(visited)g(b)o(y)g(the)g(master)g +(for)g(the)g(\014rst)h(time,)d(it)i(is)g(statically)f(allo)q(cated)h +(to)f(a)h(sla)o(v)o(e)g(pro)q(cessor.)23 b(This)0 2394 +y(information)14 b(is)j(recorded)h(in)f(a)f(table,)i(the)f +Fl(APHID)h(table)p Fn(,)f(that)g(is)g(shared)h(b)o(y)e(all)g(pro)q +(cessors.)29 b(Figure)17 b(2)g(sho)o(ws)g(an)0 2456 y(example)c(of)g +(ho)o(w)g(the)i(APHID)f(table)g(w)o(ould)f(b)q(e)h(organized)g(at)g(a)f +(giv)o(en)h(p)q(oin)o(t)f(in)h(time.)62 2519 y(The)h(APHID)f(table)g +(is)g(partitioned)g(in)o(to)g(t)o(w)o(o)f(parts:)20 b(one)14 +b(whic)o(h)g(only)g(the)g(master)g(can)g(write)h(to,)f(and)g(one)g +(whic)o(h)p 0 2553 780 2 v 46 2580 a Fh(3)64 2592 y Fg(It)f(ma)o(y)g +(happ)q(en)f(that)h(the)g(original)f(searc)o(h)g(and)h(the)h(\\bad)e(b) +q(ound")g(searc)o(h)h(are)g(inconsisten)o(t)e(with)j(one)f(another,)f +(through)g(the)h(use)0 2631 y(of)h(searc)o(h)e(extensions)f(that)i(ma)o +(y)g(or)h(ma)o(y)f(not)g(b)q(e)g(triggered)f(based)g(on)i(the)f(searc)o +(h)g(windo)o(w)g(used.)22 b(In)13 b(this)h(case,)f(the)g(searc)o(h)g +(explicitly)0 2671 y(requested)c(b)o(y)i(the)g(master)f(o)o(v)o +(errides)f(the)i(informatio)o(n)e(that)h(had)h(b)q(een)f(previously)f +(stored.)965 2828 y Fn(6)p eop +%%Page: 7 7 +7 6 bop 0 195 a Fn(only)14 b(the)h(sla)o(v)o(e)g(that)f(has)h(b)q(een)h +(assigned)f(that)g(piece)h(of)e(w)o(ork)g(can)h(write)g(to.)21 +b(An)o(y)14 b(attempt)g(to)h(write)g(in)o(to)f(the)h(table)0 +257 y(generates)k(a)e(message)g(that)g(informs)f(the)i(sla)o(v)o(e)f +(or)g(the)h(master)f(pro)q(cess)i(of)e(the)h(up)q(date)g(to)f(the)h +(information.)26 b(The)0 320 y(master)13 b(and)f(sla)o(v)o(e)h(only)f +(read)i(their)f(lo)q(cal)f(copies)i(of)e(the)i(information;)c(there)k +(are)f(no)g(explicit)g(messages)g(sen)o(t)h(b)q(et)o(w)o(een)0 +382 y(the)g(master)g(and)g(the)g(sla)o(v)o(e)g(asking)f(for)g +(information.)62 444 y(The)g(master's)f(half)f(of)h(the)h(table)f(is)h +(illustrated)f(ab)q(o)o(v)o(e)g(the)h(dotted)g(line)f(in)g(Figure)g(2.) +17 b(F)m(or)12 b(eac)o(h)h(leaf)f(that)g(has)h(b)q(een)0 +506 y(visited)h(b)o(y)f(the)h(master,)f(there)i(is)f(an)f(en)o(try)i +(in)e(the)h(APHID)g(table.)k(Information)11 b(main)o(tained)h(on)h(the) +i(lea)o(v)o(es)e(includes)0 569 y(the)g(mo)o(v)o(es)e(required)j(to)e +(generate)i(the)f(leaf)f(p)q(ositions)g(from)f(the)i(ro)q(ot)g +Fe(R)p Fn(,)f(the)h(appro)o(ximate)e(lo)q(cation)g(of)h(the)h(leaf)f +(in)g(the)0 631 y(tree)k(\(whic)o(h)e(is)g(used)h(b)o(y)g(the)f(sla)o +(v)o(e)g(to)h(prioritize)f(w)o(ork\),)g(whether)h(this)g(leaf)f(w)o(as) +g(touc)o(hed)h(on)f(the)h(last)f(pass)h(that)f(the)0 +693 y(master)f(executed,)j(and)d(the)i(n)o(um)o(b)q(er)e(of)g(the)i +(sla)o(v)o(e)e(that)h(the)h(leaf)e(w)o(as)h(allo)q(cated)f(to.)62 +756 y(In)h(our)f(example,)f(w)o(e)i(can)g(see)g(that)g(the)g(same)f(n)o +(um)o(b)q(er)f(of)h(lea)o(v)o(es)h(ha)o(v)o(e)f(b)q(een)i(allo)q(cated) +e(to)g(eac)o(h)h(sla)o(v)o(e.)k(Note)c(that)0 818 y(there)i(is)f(an)g +(additional)f(leaf,)g(8,)h(that)g(is)g(not)g(represen)o(ted)j(in)c(the) +i(master's)f Fm(d)1286 803 y Fd(0)1312 818 y Fn(ply)f(searc)o(h)j +(tree.)23 b(This)15 b(leaf)f(no)q(de)i(has)0 880 y(b)q(een)f(visited)g +(on)f(a)g(previous)h(pass)g(of)e(the)i Fm(d)723 865 y +Fd(0)749 880 y Fn(ply)f(searc)o(h)h(tree,)g(and)g(w)o(as)f(not)g(touc)o +(hed)h(on)f(the)h(latest)g(pass.)20 b(Ho)o(w)o(ev)o(er,)0 +942 y(the)14 b(information)c(that)k(the)g(sla)o(v)o(e)f(has)g +(generated)i(ma)o(y)c(b)q(e)j(needed)h(in)e(a)g(later)g(pass)h(of)f +(the)h(tree)g(and)f(is)h(not)f(deleted)h(b)o(y)0 1005 +y(the)g(master.)k(Lea)o(v)o(es)c(are)g(initially)e(allo)q(cated)h(to)h +(the)g(sla)o(v)o(es)g(in)f(a)h(round-robin)f(manner,)f(and)i(ma)o(y)e +(mo)o(v)o(e)g(due)i(to)g(load)0 1067 y(balancing)g(\(as)h(describ)q(ed) +i(in)e(Section)h(3.4\).)k(Although)15 b(there)i(ma)o(y)c(b)q(e)i(b)q +(etter)i(metho)q(ds)e(of)f(allo)q(cating)g(lea)o(v)o(es,)h(it)g(has)0 +1129 y(b)q(een)f(found)f(that)h(this)f(is)g(a)g(reasonable)h(metho)q(d) +f(of)f(initially)f(balancing)h(the)i(load)f(on)g(a)g(small)e(n)o(um)o +(b)q(er)h(of)h(pro)q(cessors.)62 1191 y(The)j(sla)o(v)o(e's)e(part)h +(of)g(the)g(table,)g(illustrated)f(b)o(y)h(the)h(area)f(b)q(elo)o(w)f +(the)i(dotted)g(line,)e(con)o(tains)h(information)d(on)i(the)0 +1254 y(result)f(of)e(searc)o(hing)i(the)g(p)q(osition)e(to)h(v)n +(arious)f(depths)j(of)d(searc)o(h.)19 b(The)12 b(\\b)q(est")h +(information)c(and)j(the)h(ply)e(to)h(whic)o(h)g(the)0 +1316 y(leaf)j(w)o(as)g(examined)f(is)i(giv)o(en)f(underneath)h(eac)o(h) +g(leaf)f(no)q(de)h(in)f(the)h(tree.)24 b(F)m(or)15 b(leaf)g(1,)g(the)h +(score)h(returned)g(is)e(-1)g(with)0 1378 y(a)f(searc)o(h)h(depth)f(of) +g(4.)j(Leaf)d(3)g(illustrates)g(that)g(the)g(score)h(information)c +(returned)16 b(b)o(y)e(the)g(sla)o(v)o(e)g(is)f(not)h(necessarily)h(an) +0 1440 y(exact)h(n)o(um)o(b)q(er.)k(The)15 b(sla)o(v)o(es)g(main)o +(tain)d(an)j(upp)q(er)h(b)q(ound)e(and)h(a)g(lo)o(w)o(er)f(b)q(ound)h +(on)g(the)g(score)h(for)f(eac)o(h)g(ply)g(of)f(searc)o(h)0 +1503 y(depth.)19 b(The)14 b(score)h(is)f(kno)o(wn)f(to)h(b)q(e)h(exact) +f(when)h(the)f(upp)q(er)h(and)f(lo)o(w)o(er)f(b)q(ounds)i(are)f(the)g +(same.)0 1618 y Fc(3.3)56 b(Op)r(eration)17 b(of)i(Sla)n(v)n(e)g(in)f +(APHID)0 1707 y Fn(A)c(sla)o(v)o(e)f(pro)q(cess)i(essen)o(tially)e +(executes)j(the)e(same)e(co)q(de)j(that)e(a)g(sequen)o(tial)h +Fm(\013\014)i Fn(searc)o(her)f(w)o(ould.)i(The)d(pro)q(cess)h(simply)0 +1770 y(rep)q(eats)g(the)g(follo)o(wing)c(three)k(steps)h(un)o(til)d +(the)h(master)g(tells)f(it)h(that)g(the)g(searc)o(h)h(is)f(complete:)51 +1862 y(1.)20 b(Lo)q(ok)13 b(in)h(its)f(p)q(ortion)h(of)f(its)h(lo)q +(cal)f(cop)o(y)h(of)f(the)i(APHID)f(table,)f(and)h(\014nd)g(the)g +(highest)h(priorit)o(y)e(no)q(de)h(to)g(searc)o(h.)51 +1956 y(2.)20 b(Execute)15 b(the)g(searc)o(h.)51 2051 +y(3.)20 b(Rep)q(ort)14 b(the)g(result)h(bac)o(k)f(to)g(the)g(master)g +(\(getting)f(an)h(up)q(date)h(to)e(its)h(APHID)g(table)g(in)g +(return\).)62 2143 y(The)19 b(w)o(ork)e(selection)i(criterion)f(is)g +(primarily)d(based)k(on)f(the)g(depth)h(to)f(whic)o(h)f(the)i(sla)o(v)o +(e)f(has)g(already)f(searc)o(hed)0 2205 y(a)h(no)q(de.)31 +b(As)18 b(w)o(e)g(can)h(see)g(for)e(Sla)o(v)o(e)h(1)g(in)f(Figure)h(2,) +h(lea)o(v)o(es)f(1,)g(4)g(and)g(7)f(ha)o(v)o(e)h(b)q(een)h(searc)o(hed) +h(to)e(4,)g(3)g(and)g(0)f(ply)m(,)0 2268 y(resp)q(ectiv)o(ely)m(.)i(Th) +o(us,)14 b(Sla)o(v)o(e)f(1)g(is)h(attempting)e(to)i(searc)o(h)h(leaf)e +(7)h(to)f(1)h(ply)m(,)e(and)i(will)e(con)o(tin)o(ue)i(to)g(searc)o(h)h +(leaf)e(7)h(up)g(to)f(3)0 2330 y(ply)g(b)o(y)h(using)g(iterativ)o(e)f +(deep)q(ening,)i(if)e(no)h(new)g(w)o(ork)f(arriv)o(es)i(from)d(the)i +(master.)62 2392 y(The)c(secondary)h(criterion)f(is)g(the)g(lo)q +(cation)f(of)g(the)h(no)q(de)h(within)d(the)j(master's)e(game-tree.)16 +b(This)10 b(secondary)h(criterion)0 2455 y(is)f(necessary)j(since)e(it) +f(is)g(usually)g(b)q(ene\014cial)h(to)f(generate)i(the)f(results)h(in)e +(a)g(left)g(to)g(righ)o(t)g(order)h(for)g(the)g(master.)16 +b(Children)0 2517 y(of)e(no)q(des)h(are)g(usually)f(considered)h(in)g +(a)f(b)q(est-to-w)o(orst)h(ordering,)f(implying)e(that)i(the)h +(left-most)e(branc)o(hes)j(at)e(a)h(no)q(de)0 2579 y(ha)o(v)o(e)g(a)g +(higher)g(probabilit)o(y)e(of)i(b)q(eing)g(useful)g(than)g(the)h(righ)o +(t-most)d(ones.)22 b(F)m(or)15 b(Sla)o(v)o(e)f(2)h(in)g(Figure)g(2,)f +(lea)o(v)o(es)i(2)e(and)h(5)0 2641 y(ha)o(v)o(e)f(b)q(oth)h(b)q(een)g +(searc)o(hed)h(to)e(5)g(ply)m(,)f(but)h(leaf)g(2)g(is)g(b)q(eing)h +(searc)o(hed)g(in)f(the)h(sla)o(v)o(e)f(to)g(6)g(ply)g(since)h(it)f(is) +g(further)h(left)f(in)0 2704 y(the)g(tree)i(than)d(leaf)h(5.)965 +2828 y(7)p eop +%%Page: 8 8 +8 7 bop 62 195 a Fn(A)14 b(no)q(de)h(that)f(has)g(a)f(priorit)o(y)h(of) +f(zero)i(\(b)q(ecause)h(it)d(is)h(no)g(longer)f(part)i(of)e(the)h +(master's)g(tree\))h(will)e(not)h(b)q(e)g(selected)0 +257 y(for)d(further)i(searc)o(h.)18 b(F)m(or)11 b(Sla)o(v)o(e)g(3,)h(w) +o(e)g(notice)g(that)f(Leaf)h(8)f(w)o(ould)g(b)q(e)h(searc)o(hed)i(if)c +(it)i(had)f(b)q(een)i(touc)o(hed)f(b)o(y)g(the)g(master.)0 +320 y(Leaf)i(8)f(is)h(ignored)g(b)o(y)f(the)i(sc)o(heduling)f +(algorithm)d(b)q(ecause)16 b(it)d(is)h(not)g(curren)o(tly)h(part)f(of)f +(the)h(master's)g(tree.)62 382 y(Before)19 b(a)f(searc)o(h)h(can)f(b)q +(e)h(executed,)h(an)e Fm(\013\014)i Fn(searc)o(h)f(windo)o(w)e(m)o(ust) +g(b)q(e)i(generated)g(b)o(y)f(the)g(sla)o(v)o(e.)30 b(The)18 +b(master)0 444 y(con)o(tin)o(ually)f(advises)j(the)f(sla)o(v)o(es)g(of) +g(the)g(leaf)s('s)f(lo)q(cation)h(within)f(the)h(master's)g(tree,)i +(and)d(the)i(h)o(yp)q(othetical)f(v)n(alue)0 506 y(of)e(the)g(ro)q(ot)h +(of)e(the)i(master's)f(tree.)29 b(Although)17 b(the)h(width)f(of)f(the) +i(searc)o(h)g(windo)o(w)f(is)g(application-dep)q(enden)o(t,)h(one)0 +569 y(normally)12 b(w)o(an)o(ts)i(to)g(cen)o(ter)i(the)f(windo)o(w)f +(around)g(this)h(h)o(yp)q(othesized)g(ro)q(ot)g(v)n(alue,)e(plus)h(or)h +(min)o(us)d(a)j(factor)f(to)g(re\015ect)0 631 y(the)g(uncertain)o(t)o +(y)h(in)e(it.)62 693 y(There)19 b(are)e(three)h(t)o(yp)q(es)g(of)f(up)q +(date)h(messages)f(that)g(a)g(sla)o(v)o(e)g(receiv)o(es)h(from)e(the)h +(master:)24 b(a)17 b(new)h(piece)g(of)e(w)o(ork)0 756 +y(has)g(b)q(een)h(added)f(to)f(the)i(sla)o(v)o(e)e(pro)q(cessor's)j +(APHID)e(table,)f(the)i(lo)q(cation)d(of)h(a)h(leaf)f(no)q(de)h(within) +f(the)i(master's)e(tree)0 818 y(has)g(c)o(hanged)h(\(c)o(hanging)e(the) +i(secondary)g(w)o(ork)e(sc)o(heduling)i(criterion\),)f(and)g(a)g +(noti\014cation)f(of)g(a)h(\\bad)g(b)q(ound")f(on)h(a)0 +880 y(no)q(de.)21 b(The)15 b(bad)g(b)q(ound)g(message)f(alerts)i(the)f +(sla)o(v)o(e)f(that)h(a)g(p)q(osition's)f(searc)o(h)i(information)c(is) +i(not)h(su\016cien)o(t)g(to)g(sa)o(v)o(e)0 942 y(the)g(no)q(de)h(from)d +(b)q(eing)h(uncertain.)22 b(In)15 b(this)g(case,)g(the)h(sla)o(v)o(e)e +(m)o(ust)g(re-searc)o(h)i(the)g(no)q(de)f(with)f(the)i +Fm(\013\014)h Fn(searc)o(h)f(windo)o(w)0 1005 y(sen)o(t)f(b)o(y)e(the)i +(master)e(to)h(the)g(ply)g(requested.)62 1067 y(As)19 +b(a)g(p)q(erformance)f(impro)o(v)o(emen)o(t,)f(w)o(e)i(w)o(an)o(t)f(to) +h(force)g(the)g(sla)o(v)o(e)f(to)h(alw)o(a)o(ys)f(w)o(ork)g(on)g(no)q +(des)i(for)e(the)h(curren)o(t)0 1129 y(searc)o(h)c(depth)f(of)f(the)h +(master.)j(When)d(all)e(the)i(sla)o(v)o(e's)f(w)o(ork)h(has)f(b)q(een)i +(searc)o(hed)g(to)e(the)h(required)h(depth,)f(rather)g(than)0 +1191 y(b)q(ecoming)g(idle,)g(it)g(starts)i(re-searc)o(hing)g(its)e(w)o +(ork)h(an)f(additional)f(ply)i(deep)q(er,)h(in)e(an)o(ticipation)g(of)g +(the)h(next)g(iteration)0 1254 y(\(depth)g Fm(d)9 b Fn(+)h(1\).)19 +b(When)14 b(this)g(is)g(happ)q(ening,)g(the)h(sla)o(v)o(e)f(routinely)g +(c)o(hec)o(ks)h(the)g(comm)o(unicatio)o(n)d(c)o(hannel)i(for)g +(messages)0 1316 y(from)c(the)i(master.)17 b(If)11 b(the)h(sla)o(v)o(e) +f(receiv)o(es)i(a)e(new)h(piece)h(of)d(w)o(ork)i(to)f(do)g(at)g +Fm(d)t Fk(\000)t Fm(d)1269 1301 y Fd(0)1293 1316 y Fn(ply)g(or)g(less,) +h(the)g(searc)o(h)h(is)e(immediately)0 1378 y(ab)q(orted)j(and)g(con)o +(trol)g(is)g(returned)h(to)f(the)g(sla)o(v)o(e's)g(sc)o(heduling)g +(algorithm.)0 1494 y Fc(3.4)56 b(Load)18 b(Balancing)0 +1583 y Fn(Although)c(the)g(master)g(attemps)g(to)g(giv)o(e)g(an)g +(equal)f(amoun)o(t)g(of)g(w)o(ork)h(to)g(eac)o(h)h(sla)o(v)o(e)f(in)g +(APHID,)g(neither)h(the)f(master)0 1646 y(nor)h(the)h(sla)o(v)o(e)e +(can)i(predict)g(the)f(amoun)o(t)f(of)g(e\013ort)i(required)g(to)f +(complete)f(a)h Fm(d)9 b Fk(\000)i Fm(d)1377 1631 y Fd(0)1403 +1646 y Fn(ply)j(searc)o(h)j(for)d(a)h(giv)o(en)g(piece)h(of)0 +1708 y(w)o(ork.)i(In)13 b(games)f(suc)o(h)i(as)f(c)o(hess,)i(there)f +(are)g(no)f(completely)f(reliable)h(indicators)g(of)g(the)h +(\\e\013ort")f(required)i(for)d(a)h(giv)o(en)0 1770 y(searc)o(h.)19 +b(Th)o(us,)14 b(load)f(im)o(balances)f(can)i(o)q(ccur)h(based)g(on)e +(the)i(allo)q(cation)d(of)h(w)o(ork)h(to)g(sla)o(v)o(es.)62 +1833 y(The)j(master)g(kno)o(ws)f(all)g(of)g(the)i(information)13 +b(ab)q(out)k(ho)o(w)g(man)o(y)d(uncertain)k(no)q(des)g(it)e(is)h(w)o +(aiting)e(for)h(from)f(eac)o(h)0 1895 y(sla)o(v)o(e.)24 +b(Th)o(us,)16 b(the)g(master)g(has)g(information)d(on)i(when)i(to)e(mo) +o(v)o(e)g(lea)o(v)o(es)h(from)e(the)i Fm(d)1405 1880 +y Fd(0)1432 1895 y Fn(ply)g(tree)h(from)d(an)i Fl(overworke)n(d)0 +1957 y(slave)f Fn(\(a)g(sla)o(v)o(e)g(with)g(a)g(large)h(n)o(um)o(b)q +(er)e(of)h(uncertain)h(no)q(des\))g(to)f(an)g Fl(underworke)n(d)i +(slave)e Fn(\(a)g(sla)o(v)o(e)g(with)g(no)g(uncertain)0 +2019 y(no)q(des\).)24 b(This)15 b(yields)g(a)g(tradeo\013)h(b)q(et)o(w) +o(een)h(faster)f(con)o(v)o(ergence)h(for)e(a)h(giv)o(en)f(ply)f(searc)o +(h)j(of)e(the)h(tree)h(and)e(additional)0 2082 y(searc)o(h)g(o)o(v)o +(erhead,)f(as)g(discussed)h(in)f(Section)g(4.)0 2198 +y Fc(3.5)56 b(Implem)o(en)n(tation)0 2287 y Fn(The)17 +b(APHID)f(algorithm)e(has)j(b)q(een)g(written)g(as)g(an)f +(application-indep)q(enden)o(t)g(library)g(of)f(C)i(routines.)26 +b(The)17 b(library)0 2349 y(w)o(as)12 b(written)g(to)f(pro)o(vide)h +(minim)o(al)c(in)o(terv)o(en)o(tion)j(in)o(to)g(a)h(w)o(orking)e(v)o +(ersion)i(of)f(sequen)o(tial)h Fm(\013\014)i Fn(\(or)e(its)f(common)e +(v)n(arian)o(ts:)0 2411 y(NegaScout[18,)k(20)o(])g(and)g(Principal)g(V) +m(ariation)f(Searc)o(h)i(\(PVS\))g([16)o(]\).)k(Since)c(the)g(library)e +(is)i(application-indep)q(enden)o(t,)0 2474 y(a)c(p)q(oten)o(tial)g +(user)i(m)o(ust)e(write)g(a)h(few)f(application-dep)q(enden)o(t)h +(routines)g(\(suc)o(h)h(as)f(mo)o(v)o(e)d(format,)h(ho)o(w)i(to)f(mak)o +(e/unmak)o(e)0 2536 y(mo)o(v)o(es,)j(p)q(osition)i(format,)e(setting)i +(a)g(windo)o(w)f(for)g(a)h(sla)o(v)o(e's)f(searc)o(h,)i +Fl(etc)p Fn(.\).)21 b(APHID's)15 b(message)g(passing)g(w)o(as)f +(written)0 2598 y(using)g(PVM)g([23)o(])f(to)h(allo)o(w)e(for)i(the)g +(maxim)o(um)9 b(p)q(ortabilit)o(y)k(among)e(a)o(v)n(ailable)h(hardw)o +(are.)62 2660 y(T)m(o)h(parallelize)f(a)i(sequen)o(tial)f +Fm(\013\014)j Fn(program,)11 b(the)j(user)g(mo)q(di\014es)f(his)g(or)g +(her)h(searc)o(h)h(routine)f(as)f(sho)o(wn)g(in)g(Figure)h(3.)965 +2828 y(8)p eop +%%Page: 9 9 +9 8 bop 0 195 a Fn(The)15 b(APHID)f(c)o(hanges)h(are)f(mark)o(ed)f(b)o +(y)h(shading,)f(and)h(easily)g(\014t)g(in)o(to)g(standard)g +Fm(\013\014)j Fn(framew)o(orks.)g(This)d(one)h(piece)g(of)0 +257 y(co)q(de)g(functions)f(as)g(the)g(searc)o(h)h(algorithm)c(for)j(b) +q(oth)g(the)g(master)g(and)g(the)g(sla)o(v)o(e)g(pro)q(cesses.)62 +320 y(There)i(are)f(a)g(few)f(additional)f(calls)i(that)f(ha)o(v)o(e)h +(to)f(b)q(e)i(added)f(to)f(the)i(iterativ)o(e)e(deep)q(ening)i(routine) +f(that)g(calls)f Fm(\013\014)r Fn(,)0 382 y(outlined)f(in)h(Figure)g +(4.)62 444 y(Initially)m(,)c(it)i(w)o(as)g(an)o(ticipated)g(that)h(all) +e(users)j(w)o(ould)d(w)o(an)o(t)h(to)h(searc)o(h)g(in)f(parallel)f +(from)g(the)i(ro)q(ot)f(of)g(the)h(game)e(tree.)0 506 +y(Ho)o(w)o(ev)o(er,)i(there)i(are)e(some)f(programs)g(that)h(wish)g(to) +g(handle)g(the)h(ro)q(ot)f(of)f(the)i(game)d(tree)k(in)d(a)h +(di\013eren)o(t)h(w)o(a)o(y)e(than)h(the)0 569 y(other)j(lea)o(v)o(es)f +(of)f(the)i(searc)o(h)g(tree)g(\(b)o(y)f(adding)f(calls)h(to)g(the)g +(time-con)o(trol)f(mec)o(hanism,)e(and)j(sp)q(ecial)g(handling)f(of)g +(the)0 631 y Fm(\013\014)19 b Fn(searc)o(h)f(windo)o(w\).)25 +b(APHID)17 b(has)g(b)q(een)h(generalized)f(to)g(in)o(tegrate)g(with)f +(this)h(st)o(yle)g(of)f(searc)o(hing)h(the)g(game)e(tree;)0 +693 y(Figure)e(5)f(illustrates)g(the)h(c)o(hanges)g(necessary)m(.)20 +b(The)12 b(only)g(signi\014can)o(t)g(c)o(hange)h(from)d(Figure)j(4)f +(is)g(the)h(addition)f(of)g(a)g(call)0 756 y(to)i Fe(aphid)p +164 756 14 2 v 14 w(intnode)p 332 756 V 15 w(premove)p +Fn(.)62 818 y(There)h(are)g(t)o(w)o(o)e(calls)g(that)h(are)h(inserted)g +(in)o(to)e(the)i(main)c(program,)h(whic)o(h)i(are)g(illustrated)g(in)f +(Figure)h(6.)62 880 y(A)k(brief)g(explanation)f(of)g(the)i(parameters)f +(and)g(function)f(of)h(eac)o(h)g(of)g(these)h Fe(aphid)p +1461 880 V 33 w Fn(routines)f(can)g(b)q(e)h(found)e(in)0 +942 y(App)q(endix)d(A.)0 1080 y Fo(4)69 b(Exp)r(erimen)n(ts)0 +1183 y Fn(The)12 b(APHID)f(game-indep)q(enden)o(t)h(library)e(w)o(as)i +(inserted)g(in)o(to)f Fj(TheTurk)h Fn(c)o(hess)h(program,)d(written)i +(b)o(y)f(Yngvi)g(Bjorns-)0 1245 y(son)16 b(and)g(Andreas)h(Junghanns)g +(at)f(the)h(Univ)o(ersit)o(y)f(of)f(Alb)q(erta.)25 b(With)16 +b(less)h(than)f(one)g(da)o(y)g(of)f(programming)e(e\013ort,)0 +1307 y(w)o(e)j(had)g(a)g(running)f(parallel)g(program)g(based)h(on)g +(the)g(APHID)h(algorithm)c(that)j(could)g(run)g(on)g(a)f(series)j(of)d +(w)o(orksta-)0 1370 y(tions.)i(Along)11 b(with)h(the)h(additional)d +(calls)h(added)i(to)e(PVS,)h(the)h(iterativ)o(e)f(deep)q(ening)h +(routine,)f(and)g(the)g(main)e(program,)0 1432 y(roughly)15 +b(100)g(lines)h(of)f(co)q(de)i(w)o(ere)g(de\014ned)g(for)e(the)i +Fe(aphid)p 970 1432 V 14 w(stub)p 1072 1432 V 31 w Fn(routines,)g +(whose)f(purp)q(ose)h(is)f(brie\015y)g(describ)q(ed)h(in)0 +1494 y(App)q(endix)d(A.)62 1557 y(T)m(o)j(test)h(the)g(algorithm,)d +Fj(TheTurk)j Fn(w)o(as)g(programmed)c(to)k(searc)o(h)g(the)g(24)f +(Bratk)o(o-Kop)q(ec)h(p)q(ositions)f([11)o(])g(to)g(a)0 +1619 y(depth)e(of)e Fm(d)e Fn(=)h(8)h(ply)m(,)g(with)g(the)i(master)e +(con)o(trolling)g(the)h(top)g Fm(d)1031 1604 y Fd(0)1054 +1619 y Fn(=)e(3)h(ply)h(of)f(the)h(tree.)62 1681 y(P)o(arallel)e(tests) +i(w)o(ere)f(run)g(on)g(4,)f(8,)g(12)g(and)h(16)f(w)o(orkstations)g(on)h +(a)f(net)o(w)o(ork)h(of)f(SUN)h(4s.)18 b(One)13 b(w)o(orkstation)f(in)g +(eac)o(h)0 1743 y(exp)q(erimen)o(t)i(w)o(as)g(completely)f(o)q(ccupied) +i(b)o(y)e(the)i Fe(master)e Fn(pro)q(cess,)i(while)f(the)g(other)h(w)o +(orkstations)f(eac)o(h)g(ran)g(a)g Fe(slave)0 1806 y +Fn(pro)q(cess.)20 b(On)14 b(the)h(a)o(v)n(ailable)c(hardw)o(are,)j +Fj(TheTurk)h Fn(visits)e(appro)o(ximately)f(2500)g(no)q(des)j(p)q(er)g +(second.)62 1868 y(P)o(arallel)c(and)h(sequen)o(tial)g(algorithms)e +(are)i(notoriously)g(p)q(o)q(or)g(when)g(it)g(comes)g(to)g(exact)g(con) +o(v)o(ergence)i(when)f(the)f(full)0 1930 y(v)o(ersion)i(of)f(the)i +(program)d(is)i(used)h([14)o(].)i(F)m(or)d(example,)e(di\013eren)o(t)j +(searc)o(h)g(windo)o(ws)e(cause)i(di\013eren)o(t)g(searc)o(h)g +(extensions)0 1992 y(to)h(b)q(e)g(turned)h(on,)f(causing)g(di\013eren)o +(t)h(alpha-b)q(eta)e(results.)25 b(Th)o(us,)17 b(all)d(searc)o(h)k +(extensions)f(and)e(n)o(ull)g(mo)o(v)o(e)f(searc)o(hing)0 +2055 y(w)o(ere)20 b(turned)g(o\013)f(for)g(this)g(exp)q(erimen)o(t.)34 +b(Since)20 b(some)e(w)o(ork)h(could)g(b)q(e)h(ev)n(aluated)f(to)g +Fm(d)12 b Fn(+)h(1-ply)18 b(b)q(efore)i(the)g Fm(d)p +Fn(-ply)0 2117 y(result)d(is)f(\014nished,)g(w)o(e)h(also)e(forced)i +(the)f(transp)q(osition)g(table)g(to)g(rep)q(ort)h(only)e(transp)q +(osition)h(table)g(scores)i(that)e(had)0 2179 y(b)q(een)g(searc)o(hed)h +(to)d(the)i(exact)f(depth)h(\(as)f(in)g(Figure)g(3\).)21 +b(Quiescence)c(searc)o(h)f(w)o(as)f(left)g(in)f Fj(TheTurk)i +Fn(to)e(prev)o(en)o(t)i(the)0 2241 y(ev)n(aluations)d(from)f(b)q(eing)i +(signi\014can)o(tly)f(unstable.)62 2304 y(Although)g(this)f(list)h(of)f +(c)o(hanges)i(is)e(incomplete)g(to)h(guaran)o(tee)g(the)h(same)e(minim) +o(ax)d(v)n(alue)k(is)f(returned)j(b)o(y)d(b)q(oth)h(the)0 +2366 y(sequen)o(tial)g(and)g(parallel)f(programs,)g(this)h(list)g +(constitutes)i(the)f(c)o(hanges)g(made)e(to)h Fj(TheTurk)h +Fn(without)f(doing)f(serious)0 2428 y(damage)f(to)h(the)h(p)q +(erformance)g(of)e(the)j(program.)h(In)e(the)g(v)o(ersion)g(tested,)h +(o)o(v)o(er)e(90\045)g(of)f(the)j(parallel)d(searc)o(hes)j(returned)0 +2491 y(the)g(same)e(minim)o(ax)e(v)n(alue)j(as)g(the)h(sequen)o(tial)f +(searc)o(h,)h(and)f(the)h(principal)e(v)n(ariation)g(w)o(as)h(correct)i +(for)e(all)e(but)j(1)f(of)f(the)0 2553 y(96)h(searc)o(hes)j(executed)g +(in)d(parallel.)62 2615 y(Figure)e(7)f(illustrates)h(the)g(a)o(v)o +(erage)g(sp)q(eedups)i(for)d(5)g(to)h(8)f(ply)g(searc)o(hes,)j(whic)o +(h)e(are)g(the)g(searc)o(hes)i(that)d(w)o(ere)i(executed)0 +2677 y(in)h(parallel.)k(The)e(graph)e(sho)o(ws)i(that)f(as)f(the)i +(depth)g(of)e(the)h(searc)o(h)h(increases,)g(so)f(do)q(es)h(the)g(sp)q +(eedup.)965 2828 y(9)p eop +%%Page: 10 10 +10 9 bop 482 329 a + 15582380 33154007 1184071 3025960 24010342 51178209 startTexFig + 482 329 a +%%BeginDocument: code4.ps + +/arrowHeight 10 def +/arrowWidth 5 def + +/IdrawDict 51 dict def +IdrawDict begin + +/reencodeISO { +dup dup findfont dup length dict begin +{ 1 index /FID ne { def }{ pop pop } ifelse } forall +/Encoding ISOLatin1Encoding def +currentdict end definefont +} def + +/ISOLatin1Encoding [ +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright +/parenleft/parenright/asterisk/plus/comma/minus/period/slash +/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon +/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N +/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright +/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m +/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/dotlessi/grave/acute/circumflex/tilde/macron/breve +/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut +/ogonek/caron/space/exclamdown/cent/sterling/currency/yen/brokenbar +/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot +/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior +/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine +/guillemotright/onequarter/onehalf/threequarters/questiondown +/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla +/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex +/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis +/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute +/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis +/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave +/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex +/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis +/yacute/thorn/ydieresis +] def +/Courier reencodeISO def + +/none null def +/numGraphicParameters 17 def +/stringLimit 65535 def + +/Begin { +save +numGraphicParameters dict begin +} def + +/End { +end +restore +} def + +/SetB { +dup type /nulltype eq { +pop +false /brushRightArrow idef +false /brushLeftArrow idef +true /brushNone idef +} { +/brushDashOffset idef +/brushDashArray idef +0 ne /brushRightArrow idef +0 ne /brushLeftArrow idef +/brushWidth idef +false /brushNone idef +} ifelse +} def + +/SetCFg { +/fgblue idef +/fggreen idef +/fgred idef +} def + +/SetCBg { +/bgblue idef +/bggreen idef +/bgred idef +} def + +/SetF { +/printSize idef +/printFont idef +} def + +/SetP { +dup type /nulltype eq { +pop true /patternNone idef +} { +dup -1 eq { +/patternGrayLevel idef +/patternString idef +} { +/patternGrayLevel idef +} ifelse +false /patternNone idef +} ifelse +} def + +/BSpl { +0 begin +storexyn +newpath +n 1 gt { +0 0 0 0 0 0 1 1 true subspline +n 2 gt { +0 0 0 0 1 1 2 2 false subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 2 copy false subspline +} if +n 2 sub dup n 1 sub dup 2 copy 2 copy false subspline +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Circ { +newpath +0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/CBSpl { +0 begin +dup 2 gt { +storexyn +newpath +n 1 sub dup 0 0 1 1 2 2 true subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 0 0 false subspline +n 2 sub dup n 1 sub dup 0 0 1 1 false subspline +patternNone not { ifill } if +brushNone not { istroke } if +} { +Poly +} ifelse +end +} dup 0 4 dict put def + +/Elli { +0 begin +newpath +4 2 roll +translate +scale +0 0 1 0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 1 dict put def + +/Line { +0 begin +2 storexyn +newpath +x 0 get y 0 get moveto +x 1 get y 1 get lineto +brushNone not { istroke } if +0 0 1 1 leftarrow +0 0 1 1 rightarrow +end +} dup 0 4 dict put def + +/MLine { +0 begin +storexyn +newpath +n 1 gt { +x 0 get y 0 get moveto +1 1 n 1 sub { +/i exch def +x i get y i get lineto +} for +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Poly { +3 1 roll +newpath +moveto +-1 add +{ lineto } repeat +closepath +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/Rect { +0 begin +/t exch def +/r exch def +/b exch def +/l exch def +newpath +l b moveto +l t lineto +r t lineto +r b lineto +closepath +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 4 dict put def + +/Text { +ishow +} def + +/idef { +dup where { pop pop pop } { exch def } ifelse +} def + +/ifill { +0 begin +gsave +patternGrayLevel -1 ne { +fgred bgred fgred sub patternGrayLevel mul add +fggreen bggreen fggreen sub patternGrayLevel mul add +fgblue bgblue fgblue sub patternGrayLevel mul add setrgbcolor +eofill +} { +eoclip +originalCTM setmatrix +pathbbox /t exch def /r exch def /b exch def /l exch def +/w r l sub ceiling cvi def +/h t b sub ceiling cvi def +/imageByteWidth w 8 div ceiling cvi def +/imageHeight h def +bgred bggreen bgblue setrgbcolor +eofill +fgred fggreen fgblue setrgbcolor +w 0 gt h 0 gt and { +l b translate w h scale +w h true [w 0 0 h neg 0 h] { patternproc } imagemask +} if +} ifelse +grestore +end +} dup 0 8 dict put def + +/istroke { +gsave +brushDashOffset -1 eq { +[] 0 setdash +1 setgray +} { +brushDashArray brushDashOffset setdash +fgred fggreen fgblue setrgbcolor +} ifelse +brushWidth setlinewidth +originalCTM setmatrix +stroke +grestore +} def + +/ishow { +0 begin +gsave +fgred fggreen fgblue setrgbcolor +/fontDict printFont printSize scalefont dup setfont def +/descender fontDict begin 0 [FontBBox] 1 get FontMatrix end +transform exch pop def +/vertoffset 1 printSize sub descender sub def { +0 vertoffset moveto show +/vertoffset vertoffset printSize sub def +} forall +grestore +end +} dup 0 3 dict put def +/patternproc { +0 begin +/patternByteLength patternString length def +/patternHeight patternByteLength 8 mul sqrt cvi def +/patternWidth patternHeight def +/patternByteWidth patternWidth 8 idiv def +/imageByteMaxLength imageByteWidth imageHeight mul +stringLimit patternByteWidth sub min def +/imageMaxHeight imageByteMaxLength imageByteWidth idiv patternHeight idiv +patternHeight mul patternHeight max def +/imageHeight imageHeight imageMaxHeight sub store +/imageString imageByteWidth imageMaxHeight mul patternByteWidth add string def +0 1 imageMaxHeight 1 sub { +/y exch def +/patternRow y patternByteWidth mul patternByteLength mod def +/patternRowString patternString patternRow patternByteWidth getinterval def +/imageRow y imageByteWidth mul def +0 patternByteWidth imageByteWidth 1 sub { +/x exch def +imageString imageRow x add patternRowString putinterval +} for +} for +imageString +end +} dup 0 12 dict put def + +/min { +dup 3 2 roll dup 4 3 roll lt { exch } if pop +} def + +/max { +dup 3 2 roll dup 4 3 roll gt { exch } if pop +} def + +/midpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 x1 add 2 div +y0 y1 add 2 div +end +} dup 0 4 dict put def + +/thirdpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 2 mul x1 add 3 div +y0 2 mul y1 add 3 div +end +} dup 0 4 dict put def + +/subspline { +0 begin +/movetoNeeded exch def +y exch get /y3 exch def +x exch get /x3 exch def +y exch get /y2 exch def +x exch get /x2 exch def +y exch get /y1 exch def +x exch get /x1 exch def +y exch get /y0 exch def +x exch get /x0 exch def +x1 y1 x2 y2 thirdpoint +/p1y exch def +/p1x exch def +x2 y2 x1 y1 thirdpoint +/p2y exch def +/p2x exch def +x1 y1 x0 y0 thirdpoint +p1x p1y midpoint +/p0y exch def +/p0x exch def +x2 y2 x3 y3 thirdpoint +p2x p2y midpoint +/p3y exch def +/p3x exch def +movetoNeeded { p0x p0y moveto } if +p1x p1y p2x p2y p3x p3y curveto +end +} dup 0 17 dict put def + +/storexyn { +/n exch def +/y n array def +/x n array def +n 1 sub -1 0 { +/i exch def +y i 3 2 roll put +x i 3 2 roll put +} for +} def + +/SSten { +fgred fggreen fgblue setrgbcolor +dup true exch 1 0 0 -1 0 6 -1 roll matrix astore +} def + +/FSten { +dup 3 -1 roll dup 4 1 roll exch +newpath +0 0 moveto +dup 0 exch lineto +exch dup 3 1 roll exch lineto +0 lineto +closepath +bgred bggreen bgblue setrgbcolor +eofill +SSten +} def + +/Rast { +exch dup 3 1 roll 1 0 0 -1 0 6 -1 roll matrix astore +} def + + +/arrowhead { +0 begin +transform originalCTM itransform +/taily exch def +/tailx exch def +transform originalCTM itransform +/tipy exch def +/tipx exch def +/dy tipy taily sub def +/dx tipx tailx sub def +/angle dx 0 ne dy 0 ne or { dy dx atan } { 90 } ifelse def +gsave +originalCTM setmatrix +tipx tipy translate +angle rotate +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +patternNone not { +originalCTM setmatrix +/padtip arrowHeight 2 exp 0.25 arrowWidth 2 exp mul add sqrt brushWidth mul +arrowWidth div def +/padtail brushWidth 2 div def +tipx tipy translate +angle rotate +padtip 0 translate +arrowHeight padtip add padtail add arrowHeight div dup scale +arrowheadpath +ifill +} if +brushNone not { +originalCTM setmatrix +tipx tipy translate +angle rotate +arrowheadpath +istroke +} if +grestore +end +} dup 0 9 dict put def + +/arrowheadpath { +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +} def + +/leftarrow { +0 begin +y exch get /taily exch def +x exch get /tailx exch def +y exch get /tipy exch def +x exch get /tipx exch def +brushLeftArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + +/rightarrow { +0 begin +y exch get /tipy exch def +x exch get /tipx exch def +y exch get /taily exch def +x exch get /tailx exch def +brushRightArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + + +%I Idraw 10 Grid 6 6 + + +Begin +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 0.799705 0 0 0.799705 0 0 ] concat +/originalCTM matrix currentmatrix def + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 0.99763 -0 -0 3.92857 18.0284 -414.643 ] concat +%I +12 231 432 243 Rect +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 0.99763 -0 -0 3.07143 18.0284 -128.357 ] concat +%I +12 231 432 243 Rect +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 -0 -0 1 18 477 ] concat +%I +12 231 432 243 Rect +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 -0 -0 1 18 -57 ] concat +%I +12 231 432 243 Rect +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 -0 -0 1 18 -27 ] concat +%I +12 231 432 243 Rect +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 -0 -0 1 18 177 ] concat +%I +12 231 432 243 Rect +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 -0 -0 1 18 219 ] concat +%I +12 231 432 243 Rect +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 -0 -0 1 18 81 ] concat +%I +12 231 432 243 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 42 957 ] concat +%I +[ +(int PVS\(p, alpha, beta, depth, plytogo\)) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 42 945 ] concat +%I +[ +(position p;) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 42 933 ] concat +%I +[ +(int alpha, beta;) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 42 921 ] concat +%I +[ +(int depth, plytogo;) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 42 909 ] concat +%I +[ +({) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 873 ] concat +%I +[ +(int h_length; /* ply position previously searched to */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 897 ] concat +%I +[ +(char *p_hash; /* pointer to hash value */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 885 ] concat +%I +[ +(char *p_key; /* pointer to hash table "lock" */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 861 ] concat +%I +[ +(int h_score; /* score for h_length ply */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 849 ] concat +%I +[ +(int h_flag; /* VALID, LBOUND or UBOUND */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 837 ] concat +%I +[ +(move *h_move; /* recommended move for h_length ply */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 825 ] concat +%I +[ +(int width; /* number of moves in move list */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 813 ] concat +%I +[ +(int i; /* move counter */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 801 ] concat +%I +[ +(int value; /* score of child PVS call */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 783 ] concat +%I +[ +(/* Generate hash value and key for this position */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 771 ] concat +%I +[ +(generate_hash\(p, p_hash, p_key\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 759 ] concat +%I +[ +(/* Fetch information from local transposition table */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 747 ] concat +%I +[ +(retrieve\(p_hash, p_kley, h_length, h_score, h_flag, h_move\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 729 ] concat +%I +[ +(/* If we have searched position deep enough, use score info */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 705 ] concat +%I +[ +(if \(flag == VALID\) { return\(h_score\); }) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 669 ] concat +%I +[ +(if \(alpha >= beta\) { return\(h_score\); }) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 657 ] concat +%I +[ +(}) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 639 ] concat +%I +[ +(/* Evaluate position if at bottom of the tree */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 591 ] concat +%I +[ +(}) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 573 ] concat +%I +[ +(/* Generate move list, evaluate position if no moves */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 549 ] concat +%I +[ +(if \(width == 0\) { return\(evaluate\(p\)\); }) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 501 ] concat +%I +[ +(}) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 681 ] concat +%I +[ +(if \(flag == UBOUND\) { beta = min\(beta,h_score\); }) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 693 ] concat +%I +[ +(if \(flag == LBOUND\) { alpha = max\(alpha,h_score\); }) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 483 ] concat +%I +[ +(score = -INFINITY;) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 471 ] concat +%I +[ +(lower = alpha; upper = beta;) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 441 ] concat +%I +[ +(/* Loop through moves in move list */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 429 ] concat +%I +[ +(for\(i=1; \(i <= width && score <= beta\); i++ \) {) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 405 ] concat +%I +[ +(make_move\(p, move[i]\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 387 ] concat +%I +[ +(value = -PVS\(p, -upper, -lower, depth+1, plytogo-1\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 375 ] concat +%I +[ +(if \(value > score && i > 1\) {) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 120 363 ] concat +%I +[ +(value = -PVS\(p, -beta, -value, depth+1, plytogo-1\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 351 ] concat +%I +[ +(}) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 333 ] concat +%I +[ +(unmake_move\(p,move[i]\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 309 ] concat +%I +[ +(if \(value > score\) {) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 120 297 ] concat +%I +[ +(score = value;) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 120 285 ] concat +%I +[ +(move_opt = move[i];) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 273 ] concat +%I +[ +(}) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 255 ] concat +%I +[ +(/* Set bounds for next search */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 243 ] concat +%I +[ +(lower = max\(alpha, score\); upper = lower+1;) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 231 ] concat +%I +[ +(} /* for all moves */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 195 ] concat +%I +[ +(/* Write information into local trans. table */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 171 ] concat +%I +[ +(h_flag = VALID;) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 561 ] concat +%I +[ +(width = generate\(p, h_move\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 159 ] concat +%I +[ +(if \(score <= alpha\) { h_flag = UBOUND; }) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 147 ] concat +%I +[ +(if \(score >= beta\) { h_flag = LBOUND; }) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 135 ] concat +%I +[ +(if \(h_length <= plytogo\) {) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 123 ] concat +%I +[ +(store\(p_hash, p_key, plytogo, score, h_flag, move_opt\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 111 ] concat +%I +[ +(}) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 99 ] concat +%I +[ +(return\(score\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 48 87 ] concat +%I +[ +(} /* function PVS */) +] Text +End + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 2 -0 -0 2 -190 -34 ] concat +%I +107 47 323 503 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 627 ] concat +%I +[ +(if \(plytogo <= 0\) { return\(evaluate\(p\)\); }) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 717 ] concat +%I +[ +(if \(aphid_master\(\) == FALSE && h_length == plytogo\) {) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 615 ] concat +%I +[ +(if \(aphid_horizon\(depth\)\) {) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 537 ] concat +%I +[ +(if \(aphid_checkalarm\(\) != FALSE\) {) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 459 ] concat +%I +[ +(aphid_intnode_start\(depth, p_hash, p_key\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 417 ] concat +%I +[ +(aphid_intnode_move\(depth, &\(move[i]\)\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 321 ] concat +%I +[ +(aphid_intnode_update\(depth, value\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 213 ] concat +%I +[ +(if \(score >= beta\) { aphid_intnode_fixbound\(depth\); }) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 183 ] concat +%I +[ +(aphid_intnode_end\(depth, &score\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 525 ] concat +%I +[ +(terminate_search = TRUE;) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 603 ] concat +%I +[ +(return\(aphid_eval_leaf\(alpha,beta,depth,p_hash,p_key\)\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 96 513 ] concat +%I +[ +(return\(0\); /* Should exit PVS quickly when alarm on */) +] Text +End + +End %I eop + +showpage + + +end +%%EndDocument + + endTexFig + 390 2520 a Fn(Figure)14 b(3:)j(Ho)o(w)d(APHID)g(Mo)q(di\014es)g(A)g(T) +o(ypical)f(PVS)h(Implemen)o(tation)954 2828 y(10)p eop +%%Page: 11 11 +11 10 bop 459 188 a + 16292818 4736286 1184071 44665815 23615651 51178209 startTexFig + 459 188 a +%%BeginDocument: code5.ps + +/arrowHeight 10 def +/arrowWidth 5 def + +/IdrawDict 51 dict def +IdrawDict begin + +/reencodeISO { +dup dup findfont dup length dict begin +{ 1 index /FID ne { def }{ pop pop } ifelse } forall +/Encoding ISOLatin1Encoding def +currentdict end definefont +} def + +/ISOLatin1Encoding [ +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright +/parenleft/parenright/asterisk/plus/comma/minus/period/slash +/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon +/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N +/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright +/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m +/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/dotlessi/grave/acute/circumflex/tilde/macron/breve +/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut +/ogonek/caron/space/exclamdown/cent/sterling/currency/yen/brokenbar +/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot +/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior +/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine +/guillemotright/onequarter/onehalf/threequarters/questiondown +/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla +/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex +/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis +/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute +/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis +/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave +/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex +/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis +/yacute/thorn/ydieresis +] def +/Courier reencodeISO def + +/none null def +/numGraphicParameters 17 def +/stringLimit 65535 def + +/Begin { +save +numGraphicParameters dict begin +} def + +/End { +end +restore +} def + +/SetB { +dup type /nulltype eq { +pop +false /brushRightArrow idef +false /brushLeftArrow idef +true /brushNone idef +} { +/brushDashOffset idef +/brushDashArray idef +0 ne /brushRightArrow idef +0 ne /brushLeftArrow idef +/brushWidth idef +false /brushNone idef +} ifelse +} def + +/SetCFg { +/fgblue idef +/fggreen idef +/fgred idef +} def + +/SetCBg { +/bgblue idef +/bggreen idef +/bgred idef +} def + +/SetF { +/printSize idef +/printFont idef +} def + +/SetP { +dup type /nulltype eq { +pop true /patternNone idef +} { +dup -1 eq { +/patternGrayLevel idef +/patternString idef +} { +/patternGrayLevel idef +} ifelse +false /patternNone idef +} ifelse +} def + +/BSpl { +0 begin +storexyn +newpath +n 1 gt { +0 0 0 0 0 0 1 1 true subspline +n 2 gt { +0 0 0 0 1 1 2 2 false subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 2 copy false subspline +} if +n 2 sub dup n 1 sub dup 2 copy 2 copy false subspline +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Circ { +newpath +0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/CBSpl { +0 begin +dup 2 gt { +storexyn +newpath +n 1 sub dup 0 0 1 1 2 2 true subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 0 0 false subspline +n 2 sub dup n 1 sub dup 0 0 1 1 false subspline +patternNone not { ifill } if +brushNone not { istroke } if +} { +Poly +} ifelse +end +} dup 0 4 dict put def + +/Elli { +0 begin +newpath +4 2 roll +translate +scale +0 0 1 0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 1 dict put def + +/Line { +0 begin +2 storexyn +newpath +x 0 get y 0 get moveto +x 1 get y 1 get lineto +brushNone not { istroke } if +0 0 1 1 leftarrow +0 0 1 1 rightarrow +end +} dup 0 4 dict put def + +/MLine { +0 begin +storexyn +newpath +n 1 gt { +x 0 get y 0 get moveto +1 1 n 1 sub { +/i exch def +x i get y i get lineto +} for +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Poly { +3 1 roll +newpath +moveto +-1 add +{ lineto } repeat +closepath +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/Rect { +0 begin +/t exch def +/r exch def +/b exch def +/l exch def +newpath +l b moveto +l t lineto +r t lineto +r b lineto +closepath +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 4 dict put def + +/Text { +ishow +} def + +/idef { +dup where { pop pop pop } { exch def } ifelse +} def + +/ifill { +0 begin +gsave +patternGrayLevel -1 ne { +fgred bgred fgred sub patternGrayLevel mul add +fggreen bggreen fggreen sub patternGrayLevel mul add +fgblue bgblue fgblue sub patternGrayLevel mul add setrgbcolor +eofill +} { +eoclip +originalCTM setmatrix +pathbbox /t exch def /r exch def /b exch def /l exch def +/w r l sub ceiling cvi def +/h t b sub ceiling cvi def +/imageByteWidth w 8 div ceiling cvi def +/imageHeight h def +bgred bggreen bgblue setrgbcolor +eofill +fgred fggreen fgblue setrgbcolor +w 0 gt h 0 gt and { +l b translate w h scale +w h true [w 0 0 h neg 0 h] { patternproc } imagemask +} if +} ifelse +grestore +end +} dup 0 8 dict put def + +/istroke { +gsave +brushDashOffset -1 eq { +[] 0 setdash +1 setgray +} { +brushDashArray brushDashOffset setdash +fgred fggreen fgblue setrgbcolor +} ifelse +brushWidth setlinewidth +originalCTM setmatrix +stroke +grestore +} def + +/ishow { +0 begin +gsave +fgred fggreen fgblue setrgbcolor +/fontDict printFont printSize scalefont dup setfont def +/descender fontDict begin 0 [FontBBox] 1 get FontMatrix end +transform exch pop def +/vertoffset 1 printSize sub descender sub def { +0 vertoffset moveto show +/vertoffset vertoffset printSize sub def +} forall +grestore +end +} dup 0 3 dict put def +/patternproc { +0 begin +/patternByteLength patternString length def +/patternHeight patternByteLength 8 mul sqrt cvi def +/patternWidth patternHeight def +/patternByteWidth patternWidth 8 idiv def +/imageByteMaxLength imageByteWidth imageHeight mul +stringLimit patternByteWidth sub min def +/imageMaxHeight imageByteMaxLength imageByteWidth idiv patternHeight idiv +patternHeight mul patternHeight max def +/imageHeight imageHeight imageMaxHeight sub store +/imageString imageByteWidth imageMaxHeight mul patternByteWidth add string def +0 1 imageMaxHeight 1 sub { +/y exch def +/patternRow y patternByteWidth mul patternByteLength mod def +/patternRowString patternString patternRow patternByteWidth getinterval def +/imageRow y imageByteWidth mul def +0 patternByteWidth imageByteWidth 1 sub { +/x exch def +imageString imageRow x add patternRowString putinterval +} for +} for +imageString +end +} dup 0 12 dict put def + +/min { +dup 3 2 roll dup 4 3 roll lt { exch } if pop +} def + +/max { +dup 3 2 roll dup 4 3 roll gt { exch } if pop +} def + +/midpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 x1 add 2 div +y0 y1 add 2 div +end +} dup 0 4 dict put def + +/thirdpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 2 mul x1 add 3 div +y0 2 mul y1 add 3 div +end +} dup 0 4 dict put def + +/subspline { +0 begin +/movetoNeeded exch def +y exch get /y3 exch def +x exch get /x3 exch def +y exch get /y2 exch def +x exch get /x2 exch def +y exch get /y1 exch def +x exch get /x1 exch def +y exch get /y0 exch def +x exch get /x0 exch def +x1 y1 x2 y2 thirdpoint +/p1y exch def +/p1x exch def +x2 y2 x1 y1 thirdpoint +/p2y exch def +/p2x exch def +x1 y1 x0 y0 thirdpoint +p1x p1y midpoint +/p0y exch def +/p0x exch def +x2 y2 x3 y3 thirdpoint +p2x p2y midpoint +/p3y exch def +/p3x exch def +movetoNeeded { p0x p0y moveto } if +p1x p1y p2x p2y p3x p3y curveto +end +} dup 0 17 dict put def + +/storexyn { +/n exch def +/y n array def +/x n array def +n 1 sub -1 0 { +/i exch def +y i 3 2 roll put +x i 3 2 roll put +} for +} def + +/SSten { +fgred fggreen fgblue setrgbcolor +dup true exch 1 0 0 -1 0 6 -1 roll matrix astore +} def + +/FSten { +dup 3 -1 roll dup 4 1 roll exch +newpath +0 0 moveto +dup 0 exch lineto +exch dup 3 1 roll exch lineto +0 lineto +closepath +bgred bggreen bgblue setrgbcolor +eofill +SSten +} def + +/Rast { +exch dup 3 1 roll 1 0 0 -1 0 6 -1 roll matrix astore +} def + + +/arrowhead { +0 begin +transform originalCTM itransform +/taily exch def +/tailx exch def +transform originalCTM itransform +/tipy exch def +/tipx exch def +/dy tipy taily sub def +/dx tipx tailx sub def +/angle dx 0 ne dy 0 ne or { dy dx atan } { 90 } ifelse def +gsave +originalCTM setmatrix +tipx tipy translate +angle rotate +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +patternNone not { +originalCTM setmatrix +/padtip arrowHeight 2 exp 0.25 arrowWidth 2 exp mul add sqrt brushWidth mul +arrowWidth div def +/padtail brushWidth 2 div def +tipx tipy translate +angle rotate +padtip 0 translate +arrowHeight padtip add padtail add arrowHeight div dup scale +arrowheadpath +ifill +} if +brushNone not { +originalCTM setmatrix +tipx tipy translate +angle rotate +arrowheadpath +istroke +} if +grestore +end +} dup 0 9 dict put def + +/arrowheadpath { +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +} def + +/leftarrow { +0 begin +y exch get /taily exch def +x exch get /tailx exch def +y exch get /tipy exch def +x exch get /tipx exch def +brushLeftArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + +/rightarrow { +0 begin +y exch get /tipy exch def +x exch get /tipx exch def +y exch get /taily exch def +x exch get /tailx exch def +brushRightArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + + +%I Idraw 10 Grid 8 8 + + +Begin +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 0.799705 0 0 0.799705 0 0 ] concat +/originalCTM matrix currentmatrix def + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 -0 -0 1 -125 612 ] concat +%I +155 342 563 354 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 36 951 ] concat +%I +[ +(for\(plytogo=1;\(plytogo <= MAXDEPTH && done == FALSE\); plytogo++\) {) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 939 ] concat +%I +[ +(/* Set up search */) +] Text +End + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1.00951 -0 -0 1.12603 -126.417 566.628 ] concat +%I +149 252 569 360 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 36 963 ] concat +%I +[ +(aphid_initsearch\(MAXDEPTH\);) +] Text +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 0 0 1 -125 596 ] concat +%I +155 294 563 318 Rect +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 0 0 1 -125 596 ] concat +%I +155 258 563 270 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 887 ] concat +%I +[ +(/* Print out results of search */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 36 875 ] concat +%I +[ +(}) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 911 ] concat +%I +[ +(/* Call to aphid_rootsearch replaces call to PVS */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 899 ] concat +%I +[ +(score = aphid_rootsearch\(0,plytogo,guess-eps,guess+eps\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 36 863 ] concat +%I +[ +(aphid_endsearch\(\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 61 925 ] concat +%I +[ +(/* Search at root around value \(guess\) with small error \(eps\) */) +] Text +End + +End %I eop + +showpage + + +end +%%EndDocument + + endTexFig + 385 579 a Fn(Figure)14 b(4:)k(Ho)o(w)c(APHID)g(Mo)q(di\014es)g(the)g +(Iterativ)o(e)h(Deep)q(ening)f(Routine)465 689 y + 16117604 19418804 1184071 24405032 23549870 51178209 startTexFig + 465 +689 a +%%BeginDocument: code6.ps + +/arrowHeight 10 def +/arrowWidth 5 def + +/IdrawDict 51 dict def +IdrawDict begin + +/reencodeISO { +dup dup findfont dup length dict begin +{ 1 index /FID ne { def }{ pop pop } ifelse } forall +/Encoding ISOLatin1Encoding def +currentdict end definefont +} def + +/ISOLatin1Encoding [ +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright +/parenleft/parenright/asterisk/plus/comma/minus/period/slash +/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon +/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N +/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright +/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m +/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/dotlessi/grave/acute/circumflex/tilde/macron/breve +/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut +/ogonek/caron/space/exclamdown/cent/sterling/currency/yen/brokenbar +/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot +/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior +/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine +/guillemotright/onequarter/onehalf/threequarters/questiondown +/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla +/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex +/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis +/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute +/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis +/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave +/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex +/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis +/yacute/thorn/ydieresis +] def +/Courier reencodeISO def + +/none null def +/numGraphicParameters 17 def +/stringLimit 65535 def + +/Begin { +save +numGraphicParameters dict begin +} def + +/End { +end +restore +} def + +/SetB { +dup type /nulltype eq { +pop +false /brushRightArrow idef +false /brushLeftArrow idef +true /brushNone idef +} { +/brushDashOffset idef +/brushDashArray idef +0 ne /brushRightArrow idef +0 ne /brushLeftArrow idef +/brushWidth idef +false /brushNone idef +} ifelse +} def + +/SetCFg { +/fgblue idef +/fggreen idef +/fgred idef +} def + +/SetCBg { +/bgblue idef +/bggreen idef +/bgred idef +} def + +/SetF { +/printSize idef +/printFont idef +} def + +/SetP { +dup type /nulltype eq { +pop true /patternNone idef +} { +dup -1 eq { +/patternGrayLevel idef +/patternString idef +} { +/patternGrayLevel idef +} ifelse +false /patternNone idef +} ifelse +} def + +/BSpl { +0 begin +storexyn +newpath +n 1 gt { +0 0 0 0 0 0 1 1 true subspline +n 2 gt { +0 0 0 0 1 1 2 2 false subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 2 copy false subspline +} if +n 2 sub dup n 1 sub dup 2 copy 2 copy false subspline +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Circ { +newpath +0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/CBSpl { +0 begin +dup 2 gt { +storexyn +newpath +n 1 sub dup 0 0 1 1 2 2 true subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 0 0 false subspline +n 2 sub dup n 1 sub dup 0 0 1 1 false subspline +patternNone not { ifill } if +brushNone not { istroke } if +} { +Poly +} ifelse +end +} dup 0 4 dict put def + +/Elli { +0 begin +newpath +4 2 roll +translate +scale +0 0 1 0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 1 dict put def + +/Line { +0 begin +2 storexyn +newpath +x 0 get y 0 get moveto +x 1 get y 1 get lineto +brushNone not { istroke } if +0 0 1 1 leftarrow +0 0 1 1 rightarrow +end +} dup 0 4 dict put def + +/MLine { +0 begin +storexyn +newpath +n 1 gt { +x 0 get y 0 get moveto +1 1 n 1 sub { +/i exch def +x i get y i get lineto +} for +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Poly { +3 1 roll +newpath +moveto +-1 add +{ lineto } repeat +closepath +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/Rect { +0 begin +/t exch def +/r exch def +/b exch def +/l exch def +newpath +l b moveto +l t lineto +r t lineto +r b lineto +closepath +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 4 dict put def + +/Text { +ishow +} def + +/idef { +dup where { pop pop pop } { exch def } ifelse +} def + +/ifill { +0 begin +gsave +patternGrayLevel -1 ne { +fgred bgred fgred sub patternGrayLevel mul add +fggreen bggreen fggreen sub patternGrayLevel mul add +fgblue bgblue fgblue sub patternGrayLevel mul add setrgbcolor +eofill +} { +eoclip +originalCTM setmatrix +pathbbox /t exch def /r exch def /b exch def /l exch def +/w r l sub ceiling cvi def +/h t b sub ceiling cvi def +/imageByteWidth w 8 div ceiling cvi def +/imageHeight h def +bgred bggreen bgblue setrgbcolor +eofill +fgred fggreen fgblue setrgbcolor +w 0 gt h 0 gt and { +l b translate w h scale +w h true [w 0 0 h neg 0 h] { patternproc } imagemask +} if +} ifelse +grestore +end +} dup 0 8 dict put def + +/istroke { +gsave +brushDashOffset -1 eq { +[] 0 setdash +1 setgray +} { +brushDashArray brushDashOffset setdash +fgred fggreen fgblue setrgbcolor +} ifelse +brushWidth setlinewidth +originalCTM setmatrix +stroke +grestore +} def + +/ishow { +0 begin +gsave +fgred fggreen fgblue setrgbcolor +/fontDict printFont printSize scalefont dup setfont def +/descender fontDict begin 0 [FontBBox] 1 get FontMatrix end +transform exch pop def +/vertoffset 1 printSize sub descender sub def { +0 vertoffset moveto show +/vertoffset vertoffset printSize sub def +} forall +grestore +end +} dup 0 3 dict put def +/patternproc { +0 begin +/patternByteLength patternString length def +/patternHeight patternByteLength 8 mul sqrt cvi def +/patternWidth patternHeight def +/patternByteWidth patternWidth 8 idiv def +/imageByteMaxLength imageByteWidth imageHeight mul +stringLimit patternByteWidth sub min def +/imageMaxHeight imageByteMaxLength imageByteWidth idiv patternHeight idiv +patternHeight mul patternHeight max def +/imageHeight imageHeight imageMaxHeight sub store +/imageString imageByteWidth imageMaxHeight mul patternByteWidth add string def +0 1 imageMaxHeight 1 sub { +/y exch def +/patternRow y patternByteWidth mul patternByteLength mod def +/patternRowString patternString patternRow patternByteWidth getinterval def +/imageRow y imageByteWidth mul def +0 patternByteWidth imageByteWidth 1 sub { +/x exch def +imageString imageRow x add patternRowString putinterval +} for +} for +imageString +end +} dup 0 12 dict put def + +/min { +dup 3 2 roll dup 4 3 roll lt { exch } if pop +} def + +/max { +dup 3 2 roll dup 4 3 roll gt { exch } if pop +} def + +/midpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 x1 add 2 div +y0 y1 add 2 div +end +} dup 0 4 dict put def + +/thirdpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 2 mul x1 add 3 div +y0 2 mul y1 add 3 div +end +} dup 0 4 dict put def + +/subspline { +0 begin +/movetoNeeded exch def +y exch get /y3 exch def +x exch get /x3 exch def +y exch get /y2 exch def +x exch get /x2 exch def +y exch get /y1 exch def +x exch get /x1 exch def +y exch get /y0 exch def +x exch get /x0 exch def +x1 y1 x2 y2 thirdpoint +/p1y exch def +/p1x exch def +x2 y2 x1 y1 thirdpoint +/p2y exch def +/p2x exch def +x1 y1 x0 y0 thirdpoint +p1x p1y midpoint +/p0y exch def +/p0x exch def +x2 y2 x3 y3 thirdpoint +p2x p2y midpoint +/p3y exch def +/p3x exch def +movetoNeeded { p0x p0y moveto } if +p1x p1y p2x p2y p3x p3y curveto +end +} dup 0 17 dict put def + +/storexyn { +/n exch def +/y n array def +/x n array def +n 1 sub -1 0 { +/i exch def +y i 3 2 roll put +x i 3 2 roll put +} for +} def + +/SSten { +fgred fggreen fgblue setrgbcolor +dup true exch 1 0 0 -1 0 6 -1 roll matrix astore +} def + +/FSten { +dup 3 -1 roll dup 4 1 roll exch +newpath +0 0 moveto +dup 0 exch lineto +exch dup 3 1 roll exch lineto +0 lineto +closepath +bgred bggreen bgblue setrgbcolor +eofill +SSten +} def + +/Rast { +exch dup 3 1 roll 1 0 0 -1 0 6 -1 roll matrix astore +} def + + +/arrowhead { +0 begin +transform originalCTM itransform +/taily exch def +/tailx exch def +transform originalCTM itransform +/tipy exch def +/tipx exch def +/dy tipy taily sub def +/dx tipx tailx sub def +/angle dx 0 ne dy 0 ne or { dy dx atan } { 90 } ifelse def +gsave +originalCTM setmatrix +tipx tipy translate +angle rotate +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +patternNone not { +originalCTM setmatrix +/padtip arrowHeight 2 exp 0.25 arrowWidth 2 exp mul add sqrt brushWidth mul +arrowWidth div def +/padtail brushWidth 2 div def +tipx tipy translate +angle rotate +padtip 0 translate +arrowHeight padtip add padtail add arrowHeight div dup scale +arrowheadpath +ifill +} if +brushNone not { +originalCTM setmatrix +tipx tipy translate +angle rotate +arrowheadpath +istroke +} if +grestore +end +} dup 0 9 dict put def + +/arrowheadpath { +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +} def + +/leftarrow { +0 begin +y exch get /taily exch def +x exch get /tailx exch def +y exch get /tipy exch def +x exch get /tipx exch def +brushLeftArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + +/rightarrow { +0 begin +y exch get /tipy exch def +x exch get /tipx exch def +y exch get /taily exch def +x exch get /tailx exch def +brushRightArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + + +%I Idraw 10 Grid 8 8 + + +Begin +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 0.799705 0 0 0.799705 0 0 ] concat +/originalCTM matrix currentmatrix def + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 -0 -0 1 -125 559 ] concat +%I +155 173 563 197 Rect +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 -0 -0 1 -125 559 ] concat +%I +155 209 563 221 Rect +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 -0 -0 1 -125 559 ] concat +%I +155 323 563 335 Rect +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 -0 -0 1 -125 612 ] concat +%I +155 342 563 354 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 36 951 ] concat +%I +[ +(for\(plytogo=1;\(plytogo <= MAXDEPTH && done == FALSE\); plytogo++\) {) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 36 903 ] concat +%I +[ +(}) +] Text +End + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1.00711 -0 -0 4.68604 -126.059 -714.975 ] concat +%I +149 252 569 360 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 915 ] concat +%I +[ +(/* Print out results of search */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 927 ] concat +%I +[ +(score = ROOT_PVS\(root_pos,guess-eps,guess+eps,0,plytogo\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 36 867 ] concat +%I +[ +(ROOT_PVS\(root_pos, alpha, beta, depth, plytogo\)) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 36 855 ] concat +%I +[ +(...) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 36 843 ] concat +%I +[ +({) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 831 ] concat +%I +[ +(...) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 819 ] concat +%I +[ +(/* Search PV Move */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 807 ] concat +%I +[ +(lower = alpha;) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 36 789 ] concat +%I +[ +(search_best_move:) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 765 ] concat +%I +[ +(make_move\(p,bestmove\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 729 ] concat +%I +[ +(unmake_move\(p,bestmove\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 36 963 ] concat +%I +[ +(aphid_initsearch\(MAXDEPTH\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 36 891 ] concat +%I +[ +(aphid_endsearch\(\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 777 ] concat +%I +[ +(aphid_intnode_premove\(depth, &bestmove\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 753 ] concat +%I +[ +(/* aphid_rootsearch replaces typical call to PVS */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 939 ] concat +%I +[ +(/* Set up search with small window \(eps\) around guess */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 741 ] concat +%I +[ +(oldscore = -aphid_rootsearch\(depth+1,plytogo-1,-beta,-lower\);) +] Text +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 0 0 1 -125 437 ] concat +%I +155 159 563 183 Rect +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 0 0 1 -125 437 ] concat +%I +155 207 563 219 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 84 641 ] concat +%I +[ +(make_move\(p,move[i]\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 84 629 ] concat +%I +[ +(/* Check if move beats PV move by more than delta */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 581 ] concat +%I +[ +(}) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 84 539 ] concat +%I +[ +(bestmove = move[i];) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 84 527 ] concat +%I +[ +(lower = newscore;) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 503 ] concat +%I +[ +(}) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 491 ] concat +%I +[ +(...) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 36 479 ] concat +%I +[ +(} /* function ROOT_PVS */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 84 653 ] concat +%I +[ +(aphid_intnode_premove\(depth,&move[i]\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 84 593 ] concat +%I +[ +(unmake_move\(p,move[i]\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 210 605 ] concat +%I +[ +(-oldscore-delta-1, -oldscore-delta\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 84 617 ] concat +%I +[ +(newscore = -aphid_rootsearch\(depth+1, plytogo-1,) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 84 515 ] concat +%I +[ +(if \(newscore < beta\) { goto search_best_move; }) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 84 551 ] concat +%I +[ +(/* set new best move and score and research \(if necc.\) */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 665 ] concat +%I +[ +(for\(i=2;\(i<=width && newscore <= oldscore+delta; i++\) {) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 677 ] concat +%I +[ +(newscore = oldscore;) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 563 ] concat +%I +[ +(if \(newscore > oldscore+delta\) {) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 60 711 ] concat +%I +[ +(/* Search other moves at root, and only switch if move beats */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 59 698 ] concat +%I +[ +(/* PV score \(oldscore\) by a small margin \(delta\) */) +] Text +End + +End %I eop + +showpage + + +end +%%EndDocument + + endTexFig + 222 2010 a Fn(Figure)g(5:)k(Ho)o(w)c(APHID)g(Mo)q(di\014es)g(Sp)q +(ecial)g(Handling)e(Of)i(The)h(Ro)q(ot)e(Of)h(The)g(Game)e(T)m(ree)489 +2120 y + 15345567 7104430 1447198 41639854 22102671 51178209 startTexFig + 489 2120 a +%%BeginDocument: code7.ps + +/arrowHeight 10 def +/arrowWidth 5 def + +/IdrawDict 51 dict def +IdrawDict begin + +/reencodeISO { +dup dup findfont dup length dict begin +{ 1 index /FID ne { def }{ pop pop } ifelse } forall +/Encoding ISOLatin1Encoding def +currentdict end definefont +} def + +/ISOLatin1Encoding [ +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright +/parenleft/parenright/asterisk/plus/comma/minus/period/slash +/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon +/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N +/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright +/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m +/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/dotlessi/grave/acute/circumflex/tilde/macron/breve +/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut +/ogonek/caron/space/exclamdown/cent/sterling/currency/yen/brokenbar +/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot +/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior +/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine +/guillemotright/onequarter/onehalf/threequarters/questiondown +/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla +/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex +/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis +/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute +/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis +/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave +/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex +/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis +/yacute/thorn/ydieresis +] def +/Courier reencodeISO def + +/none null def +/numGraphicParameters 17 def +/stringLimit 65535 def + +/Begin { +save +numGraphicParameters dict begin +} def + +/End { +end +restore +} def + +/SetB { +dup type /nulltype eq { +pop +false /brushRightArrow idef +false /brushLeftArrow idef +true /brushNone idef +} { +/brushDashOffset idef +/brushDashArray idef +0 ne /brushRightArrow idef +0 ne /brushLeftArrow idef +/brushWidth idef +false /brushNone idef +} ifelse +} def + +/SetCFg { +/fgblue idef +/fggreen idef +/fgred idef +} def + +/SetCBg { +/bgblue idef +/bggreen idef +/bgred idef +} def + +/SetF { +/printSize idef +/printFont idef +} def + +/SetP { +dup type /nulltype eq { +pop true /patternNone idef +} { +dup -1 eq { +/patternGrayLevel idef +/patternString idef +} { +/patternGrayLevel idef +} ifelse +false /patternNone idef +} ifelse +} def + +/BSpl { +0 begin +storexyn +newpath +n 1 gt { +0 0 0 0 0 0 1 1 true subspline +n 2 gt { +0 0 0 0 1 1 2 2 false subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 2 copy false subspline +} if +n 2 sub dup n 1 sub dup 2 copy 2 copy false subspline +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Circ { +newpath +0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/CBSpl { +0 begin +dup 2 gt { +storexyn +newpath +n 1 sub dup 0 0 1 1 2 2 true subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 0 0 false subspline +n 2 sub dup n 1 sub dup 0 0 1 1 false subspline +patternNone not { ifill } if +brushNone not { istroke } if +} { +Poly +} ifelse +end +} dup 0 4 dict put def + +/Elli { +0 begin +newpath +4 2 roll +translate +scale +0 0 1 0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 1 dict put def + +/Line { +0 begin +2 storexyn +newpath +x 0 get y 0 get moveto +x 1 get y 1 get lineto +brushNone not { istroke } if +0 0 1 1 leftarrow +0 0 1 1 rightarrow +end +} dup 0 4 dict put def + +/MLine { +0 begin +storexyn +newpath +n 1 gt { +x 0 get y 0 get moveto +1 1 n 1 sub { +/i exch def +x i get y i get lineto +} for +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Poly { +3 1 roll +newpath +moveto +-1 add +{ lineto } repeat +closepath +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/Rect { +0 begin +/t exch def +/r exch def +/b exch def +/l exch def +newpath +l b moveto +l t lineto +r t lineto +r b lineto +closepath +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 4 dict put def + +/Text { +ishow +} def + +/idef { +dup where { pop pop pop } { exch def } ifelse +} def + +/ifill { +0 begin +gsave +patternGrayLevel -1 ne { +fgred bgred fgred sub patternGrayLevel mul add +fggreen bggreen fggreen sub patternGrayLevel mul add +fgblue bgblue fgblue sub patternGrayLevel mul add setrgbcolor +eofill +} { +eoclip +originalCTM setmatrix +pathbbox /t exch def /r exch def /b exch def /l exch def +/w r l sub ceiling cvi def +/h t b sub ceiling cvi def +/imageByteWidth w 8 div ceiling cvi def +/imageHeight h def +bgred bggreen bgblue setrgbcolor +eofill +fgred fggreen fgblue setrgbcolor +w 0 gt h 0 gt and { +l b translate w h scale +w h true [w 0 0 h neg 0 h] { patternproc } imagemask +} if +} ifelse +grestore +end +} dup 0 8 dict put def + +/istroke { +gsave +brushDashOffset -1 eq { +[] 0 setdash +1 setgray +} { +brushDashArray brushDashOffset setdash +fgred fggreen fgblue setrgbcolor +} ifelse +brushWidth setlinewidth +originalCTM setmatrix +stroke +grestore +} def + +/ishow { +0 begin +gsave +fgred fggreen fgblue setrgbcolor +/fontDict printFont printSize scalefont dup setfont def +/descender fontDict begin 0 [FontBBox] 1 get FontMatrix end +transform exch pop def +/vertoffset 1 printSize sub descender sub def { +0 vertoffset moveto show +/vertoffset vertoffset printSize sub def +} forall +grestore +end +} dup 0 3 dict put def +/patternproc { +0 begin +/patternByteLength patternString length def +/patternHeight patternByteLength 8 mul sqrt cvi def +/patternWidth patternHeight def +/patternByteWidth patternWidth 8 idiv def +/imageByteMaxLength imageByteWidth imageHeight mul +stringLimit patternByteWidth sub min def +/imageMaxHeight imageByteMaxLength imageByteWidth idiv patternHeight idiv +patternHeight mul patternHeight max def +/imageHeight imageHeight imageMaxHeight sub store +/imageString imageByteWidth imageMaxHeight mul patternByteWidth add string def +0 1 imageMaxHeight 1 sub { +/y exch def +/patternRow y patternByteWidth mul patternByteLength mod def +/patternRowString patternString patternRow patternByteWidth getinterval def +/imageRow y imageByteWidth mul def +0 patternByteWidth imageByteWidth 1 sub { +/x exch def +imageString imageRow x add patternRowString putinterval +} for +} for +imageString +end +} dup 0 12 dict put def + +/min { +dup 3 2 roll dup 4 3 roll lt { exch } if pop +} def + +/max { +dup 3 2 roll dup 4 3 roll gt { exch } if pop +} def + +/midpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 x1 add 2 div +y0 y1 add 2 div +end +} dup 0 4 dict put def + +/thirdpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 2 mul x1 add 3 div +y0 2 mul y1 add 3 div +end +} dup 0 4 dict put def + +/subspline { +0 begin +/movetoNeeded exch def +y exch get /y3 exch def +x exch get /x3 exch def +y exch get /y2 exch def +x exch get /x2 exch def +y exch get /y1 exch def +x exch get /x1 exch def +y exch get /y0 exch def +x exch get /x0 exch def +x1 y1 x2 y2 thirdpoint +/p1y exch def +/p1x exch def +x2 y2 x1 y1 thirdpoint +/p2y exch def +/p2x exch def +x1 y1 x0 y0 thirdpoint +p1x p1y midpoint +/p0y exch def +/p0x exch def +x2 y2 x3 y3 thirdpoint +p2x p2y midpoint +/p3y exch def +/p3x exch def +movetoNeeded { p0x p0y moveto } if +p1x p1y p2x p2y p3x p3y curveto +end +} dup 0 17 dict put def + +/storexyn { +/n exch def +/y n array def +/x n array def +n 1 sub -1 0 { +/i exch def +y i 3 2 roll put +x i 3 2 roll put +} for +} def + +/SSten { +fgred fggreen fgblue setrgbcolor +dup true exch 1 0 0 -1 0 6 -1 roll matrix astore +} def + +/FSten { +dup 3 -1 roll dup 4 1 roll exch +newpath +0 0 moveto +dup 0 exch lineto +exch dup 3 1 roll exch lineto +0 lineto +closepath +bgred bggreen bgblue setrgbcolor +eofill +SSten +} def + +/Rast { +exch dup 3 1 roll 1 0 0 -1 0 6 -1 roll matrix astore +} def + + +/arrowhead { +0 begin +transform originalCTM itransform +/taily exch def +/tailx exch def +transform originalCTM itransform +/tipy exch def +/tipx exch def +/dy tipy taily sub def +/dx tipx tailx sub def +/angle dx 0 ne dy 0 ne or { dy dx atan } { 90 } ifelse def +gsave +originalCTM setmatrix +tipx tipy translate +angle rotate +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +patternNone not { +originalCTM setmatrix +/padtip arrowHeight 2 exp 0.25 arrowWidth 2 exp mul add sqrt brushWidth mul +arrowWidth div def +/padtail brushWidth 2 div def +tipx tipy translate +angle rotate +padtip 0 translate +arrowHeight padtip add padtail add arrowHeight div dup scale +arrowheadpath +ifill +} if +brushNone not { +originalCTM setmatrix +tipx tipy translate +angle rotate +arrowheadpath +istroke +} if +grestore +end +} dup 0 9 dict put def + +/arrowheadpath { +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +} def + +/leftarrow { +0 begin +y exch get /taily exch def +x exch get /tailx exch def +y exch get /tipy exch def +x exch get /tipx exch def +brushLeftArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + +/rightarrow { +0 begin +y exch get /tipy exch def +x exch get /tipx exch def +y exch get /taily exch def +x exch get /tailx exch def +brushRightArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + + +%I Idraw 10 Grid 8 8 + + +Begin +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 0.799705 0 0 0.799705 0 0 ] concat +/originalCTM matrix currentmatrix def + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 -0 -0 1 -125 612 ] concat +%I +161 216 539 228 Rect +End + +Begin %I Rect +none SetB %I b n +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +0.95 SetP +%I t +[ 1 -0 -0 1 -125 612 ] concat +%I +161 276 539 288 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 42 963 ] concat +%I +[ +(int main\(argc, argv\)) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 42 951 ] concat +%I +[ +(int argc;) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 42 939 ] concat +%I +[ +(char *argv[];) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 42 927 ] concat +%I +[ +({) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 915 ] concat +%I +[ +(/* Initialization required by any process in system */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 867 ] concat +%I +[ +(/* Initialization required only by the master process */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 825 ] concat +%I +[ +(exit\(0\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 42 813 ] concat +%I +[ +(}) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 855 ] concat +%I +[ +(/* Play game */) +] Text +End + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.997449 -0 -0 0.962766 -124.605 625.404 ] concat +%I +155 174 545 360 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 885 ] concat +%I +[ +(/* Only the absolute master process gets here */) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 897 ] concat +%I +[ +(aphid_startup\(argv\);) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-courier-medium-r-normal-*-10-*-*-*-*-*-*-* +Courier 10 SetF +%I t +[ 1 0 0 1 72 837 ] concat +%I +[ +(aphid_exit\(\);) +] Text +End + +End %I eop + +showpage + + +end +%%EndDocument + + endTexFig + 503 2661 a Fn(Figure)i(6:)k(Ho)o(w)13 b(APHID)h(Mo)q(di\014es)h(The)f +(Main)f(Program)954 2828 y(11)p eop +%%Page: 12 12 +12 11 bop 336 154 a + 20176580 14208860 3289088 3289088 50651955 36443095 startTexFig + 336 154 a +%%BeginDocument: graph5.ps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.100 0.100 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +840 351 M +6129 0 V +840 351 M +0 4618 V +LTb +840 351 M +63 0 V +6066 0 R +-63 0 V +756 351 M +(0) Rshow +840 928 M +63 0 V +6066 0 R +-63 0 V +756 928 M +(1) Rshow +840 1506 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(2) Rshow +840 2083 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(3) Rshow +840 2660 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(4) Rshow +840 3237 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(5) Rshow +840 3815 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(6) Rshow +840 4392 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(7) Rshow +840 4969 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(8) Rshow +840 351 M +0 63 V +0 4555 R +0 -63 V +840 211 M +(0) Cshow +2372 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(5) Cshow +3905 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(10) Cshow +5437 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(15) Cshow +6969 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(20) Cshow +840 351 M +6129 0 V +0 4618 V +-6129 0 V +840 351 L +140 2660 M +currentpoint gsave translate 90 rotate 0 0 M +(Speedup) Cshow +grestore +3904 71 M +(Number of Processors) Cshow +LT0 +6486 4766 M +(5 ply) Rshow +6570 4766 M +252 0 V +2066 790 M +3292 980 L +1225 41 V +1226 75 V +6654 4766 D +2066 790 D +3292 980 D +4517 1021 D +5743 1096 D +LT1 +6486 4626 M +(6 ply) Rshow +6570 4626 M +252 0 V +2066 1067 M +1226 467 V +1225 266 V +1226 300 V +6654 4626 A +2066 1067 A +3292 1534 A +4517 1800 A +5743 2100 A +LT2 +6486 4486 M +(7 ply) Rshow +6570 4486 M +252 0 V +2066 1055 M +1226 664 V +1225 491 V +1226 548 V +6654 4486 B +2066 1055 B +3292 1719 B +4517 2210 B +5743 2758 B +LT3 +6486 4346 M +(8 ply) Rshow +6570 4346 M +252 0 V +2066 1176 M +3292 2181 L +1225 877 V +1226 768 V +6654 4346 C +2066 1176 C +3292 2181 C +4517 3058 C +5743 3826 C +stroke +grestore +end +showpage +%%EndDocument + + endTexFig + 394 1145 a Fn(Figure)14 b(7:)j(Sp)q(eedups)f(at)e(V)m(arious)f(Depths) +i(for)e(APHID)h(in)g Fj(TheTurk)62 1278 y Fn(The)f(24)f(p)q(ositions)g +(ha)o(v)o(e)h(b)q(een)g(sorted)h(b)o(y)e(the)h(size)g(of)f(the)h +(sequen)o(tial)g(searc)o(h)g(tree,)h(and)e(divided)g(in)o(to)g(three)i +(groups)0 1340 y(of)f(equal)h(size.)19 b(Figure)14 b(8)f(illustrates)h +(the)h(a)o(v)o(erage)f(sp)q(eedup)h(at)f(8)f(ply)h(for)f(eac)o(h)i +(third)f(of)f(the)h(complete)g(test)h(set.)62 1402 y(The)f(o)o(v)o +(erheads)g(in)f(the)g(algorithm)e(are)j(illustrated)f(in)f(Figure)i(9)f +(as)g(p)q(ercen)o(tages)i(of)e(the)h(sequen)o(tial)f(time)f(required)0 +1464 y(to)18 b(searc)o(h)i(all)d(24)h(p)q(ositions.)31 +b(The)19 b Fl(total)g(overhe)n(ad)f Fn(represen)o(ts)j(the)e +(additional)e(computing)g(time)g(required)i(b)o(y)f(the)0 +1527 y(parallel)13 b(algorithm)e(to)j(ac)o(hiev)o(e)g(the)g(same)f +(result:)486 1638 y(total)c(o)o(v)o(erhead)j(=)801 1610 +y(\(parallel)d(time)17 b Fk(\003)h Fn(n\))9 b Fk(\000)h +Fn(sequen)o(tial)f(time)p 801 1629 658 2 v 995 1667 a(sequen)o(tial)g +(time)0 1749 y(where)15 b Fm(n)f Fn(is)g(the)g(n)o(um)o(b)q(er)f(of)g +(pro)q(cessors.)21 b(The)14 b(total)f(o)o(v)o(erhead)h(is)g(also)f(a)h +(sum)f(of)g(the)i(four)e(o)o(v)o(erheads:)78 1853 y(total)8 +b(o)o(v)o(erhead)k(=)g(master)d(o)o(v)o(erhead)g(+)h(parallelization)d +(o)o(v)o(erhead)j(+)f(sp)q(eculativ)o(e)h(searc)o(h)h(+)e(searc)o(h)i +(o)o(v)o(erhead)p Fm(:)62 1957 y Fn(The)17 b Fl(master)f(overhe)n(ad)h +Fn(is)f(the)g(appro)o(ximate)e(p)q(enalt)o(y)i(incurred)h(b)o(y)f(ha)o +(ving)f(a)h(single)g(pro)q(cessor)h(b)q(eing)f(allo)q(cated)0 +2019 y(completely)d(to)g(the)i(handling)e(of)g(the)h(master.)k(This)c +(is)f(not)h(simply)1123 2003 y Fi(1)p 1121 2010 21 2 +v 1121 2034 a Fb(n)1147 2019 y Fn(,)f(but)h(is)g(the)g(time)f(tak)o(en) +h(a)o(w)o(a)o(y)f(b)o(y)g(the)i(master:)655 2137 y(master)9 +b(o)o(v)o(erhead)j(=)1031 2109 y(parallel)c(time)p 1008 +2128 271 2 v 1008 2166 a(sequen)o(tial)h(time)1283 2137 +y Fm(:)62 2248 y Fn(The)18 b Fl(p)n(ar)n(al)r(lelization)e(overhe)n(ad) +i Fn(is)f(the)g(p)q(enalt)o(y)g(incurred)h(b)o(y)f(the)g(APHID-library) +g(on)f(the)i(sp)q(eed)g(of)f(the)g(sla)o(v)o(es.)0 2311 +y(In)e(the)h(parallel)f(algorithm,)d(the)k(sla)o(v)o(es)f(w)o(ere)i +(visiting)d(2000)g(no)q(des)i(p)q(er)h(second.)23 b(The)16 +b(di\013erence)h(b)q(et)o(w)o(een)g(this)e(rate)0 2373 +y(and)g(the)g(sequen)o(tial)g(program's)e(no)q(de)i(rate)g(is)f(deriv)o +(ed)i(partially)d(from)g(the)i(o)o(v)o(erhead)g(of)f(using)g(PVM,)h +(and)g(partially)0 2435 y(from)f(the)i(w)o(ork-sc)o(heduling)f +(algorithm)e(on)i(eac)o(h)h(sla)o(v)o(e.)23 b(In)15 b(the)h(authors')g +(exp)q(erience,)h(this)f(complexit)o(y)d(o)o(v)o(erhead)j(is)0 +2497 y(appro)o(ximately)11 b(the)k(same)e(as)h(implemen)o(tatio)o(ns)e +(of)h(YBW)h(on)g(similar)d(hardw)o(are.)62 2560 y(The)16 +b Fl(se)n(ar)n(ch)f(overhe)n(ad)g Fn(starts)h(at)f(70\045)f(and)g +(increases)j(v)o(ery)e(gradually)f(as)g(w)o(e)i(increase)g(from)d(4)h +(to)h(16)f(pro)q(cessors.)0 2622 y(Most)i(of)g(the)h(searc)o(h)g(o)o(v) +o(erhead)g(is)f(incurred)h(b)o(y)f(attempting)f(to)h(do)g(searc)o(hes)i +(b)q(efore)f(the)g(correct)g(searc)o(h)h(windo)o(w)d(is)0 +2684 y(a)o(v)n(ailable.)g(Th)o(us,)c(the)h(sla)o(v)o(es)f(use)h +Fm(\013\014)h Fn(searc)o(h)g(windo)o(ws)d(that)h(are)h(larger)f(than)g +(those)h(in)e(the)i(sequen)o(tial)f(program.)16 b(Most)954 +2828 y(12)p eop +%%Page: 13 13 +13 12 bop 336 283 a + 20176580 14208860 3289088 3289088 50651955 36443095 startTexFig + 336 283 a +%%BeginDocument: graph6.ps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.100 0.100 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +840 351 M +6129 0 V +840 351 M +0 4618 V +LTb +840 351 M +63 0 V +6066 0 R +-63 0 V +756 351 M +(0) Rshow +840 928 M +63 0 V +6066 0 R +-63 0 V +756 928 M +(1) Rshow +840 1506 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(2) Rshow +840 2083 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(3) Rshow +840 2660 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(4) Rshow +840 3237 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(5) Rshow +840 3815 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(6) Rshow +840 4392 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(7) Rshow +840 4969 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(8) Rshow +840 351 M +0 63 V +0 4555 R +0 -63 V +840 211 M +(0) Cshow +2372 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(5) Cshow +3905 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(10) Cshow +5437 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(15) Cshow +6969 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(20) Cshow +840 351 M +6129 0 V +0 4618 V +-6129 0 V +840 351 L +140 2660 M +currentpoint gsave translate 90 rotate 0 0 M +(Speedup) Cshow +grestore +3904 71 M +(Number of Processors) Cshow +LT0 +6486 4766 M +(Small) Rshow +6570 4766 M +252 0 V +2066 1136 M +1226 797 V +1225 698 V +1226 641 V +6654 4766 D +2066 1136 D +3292 1933 D +4517 2631 D +5743 3272 D +LT1 +6486 4626 M +(Medium) Rshow +6570 4626 M +252 0 V +2066 1101 M +3292 2146 L +1225 681 V +1226 809 V +6654 4626 A +2066 1101 A +3292 2146 A +4517 2827 A +5743 3636 A +LT2 +6486 4486 M +(Large) Rshow +6570 4486 M +252 0 V +2066 1234 M +3292 2239 L +4517 3272 L +1226 756 V +6654 4486 B +2066 1234 B +3292 2239 B +4517 3272 B +5743 4028 B +stroke +grestore +end +showpage +%%EndDocument + + endTexFig + 340 1274 a Fn(Figure)14 b(8:)k(Sp)q(eedups)d(for)f(Di\013eren)o(t)g +(Size)h(Problems)e(at)h(8)f(Ply)h(in)f Fj(TheTurk)336 +1575 y + 20176580 14208860 3289088 3289088 50651955 36443095 startTexFig + 336 1575 a +%%BeginDocument: graph4.ps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.100 0.100 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +840 351 M +6129 0 V +840 351 M +0 4618 V +LTb +840 351 M +63 0 V +6066 0 R +-63 0 V +756 351 M +(0) Rshow +840 1275 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(50) Rshow +840 2198 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(100) Rshow +840 3122 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(150) Rshow +840 4045 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(200) Rshow +840 4969 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(250) Rshow +840 351 M +0 63 V +0 4555 R +0 -63 V +840 211 M +(0) Cshow +2372 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(5) Cshow +3905 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(10) Cshow +5437 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(15) Cshow +6969 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(20) Cshow +840 351 M +6129 0 V +0 4618 V +-6129 0 V +840 351 L +140 2660 M +currentpoint gsave translate 90 rotate 0 0 M +(Percent Overhead) Cshow +grestore +3904 71 M +(Number of Processors) Cshow +LT0 +6486 4766 M +(Search Overhead) Rshow +6570 4766 M +252 0 V +2066 1699 M +1226 113 V +1225 94 V +1226 96 V +6654 4766 D +2066 1699 D +3292 1812 D +4517 1906 D +5743 2002 D +LT1 +6486 4626 M +(Speculative Search) Rshow +6570 4626 M +252 0 V +2066 567 M +1226 33 V +1225 71 V +1226 85 V +6654 4626 A +2066 567 A +3292 600 A +4517 671 A +5743 756 A +LT2 +6486 4486 M +(Parallelization Overhead) Rshow +6570 4486 M +252 0 V +2066 802 M +1226 66 V +1225 96 V +1226 87 V +6654 4486 B +2066 802 B +3292 868 B +4517 964 B +5743 1051 B +LT3 +6486 4346 M +(Master Overhead) Rshow +6570 4346 M +252 0 V +2066 1638 M +3292 933 L +4517 744 L +5743 658 L +6654 4346 C +2066 1638 C +3292 933 C +4517 744 C +5743 658 C +LT4 +6486 4206 M +(Total Overhead) Rshow +6570 4206 M +252 0 V +2066 3656 M +3292 3161 L +1225 72 V +1226 181 V +6654 4206 T +2066 3656 T +3292 3161 T +4517 3233 T +5743 3414 T +stroke +grestore +end +showpage +%%EndDocument + + endTexFig + 475 2566 a Fn(Figure)h(9:)k(Ov)o(erheads)d(at)f(8)g(Ply)f(for)h(APHID) +g(in)f Fj(TheTurk)954 2828 y Fn(13)p eop +%%Page: 14 14 +14 13 bop 0 195 a Fn(of)13 b(the)h(increase)h(in)e(searc)o(h)i(o)o(v)o +(erhead)f(as)g(w)o(e)f(increase)i(the)g(n)o(um)o(b)q(er)d(of)h(pro)q +(cessors)j(can)e(b)q(e)g(attributed)g(to)g(information)0 +257 y(de\014ciency)m(,)21 b(since)e(there)i(is)d(no)h(common)d(shared)k +(data)e(b)q(et)o(w)o(een)j(the)e(pro)q(cesses)j(\(suc)o(h)e(as)f(a)f +(shared)i(transp)q(osition)0 320 y(table\).)62 382 y(Since)e(w)o(e)f +(only)f(searc)o(h)j(eac)o(h)e(p)q(osition)f(to)h(8)g(ply)m(,)g(the)g +(async)o(hronous)h(nature)g(of)e(the)i(sla)o(v)o(es)f(will)e(result)j +(in)f(some)0 444 y(w)o(ork)d(b)q(eing)h(done)f(at)h(9)f(ply)g(\(or)g +(more\).)19 b(The)c Fl(sp)n(e)n(culative)g(se)n(ar)n(ch)g +Fn(line)f(represen)o(ts)j(the)e(amoun)o(t)d(of)i(additional)f(searc)o +(h)0 506 y(b)q(ey)o(ond)f(what)g(the)g(sequen)o(tial)g(algorithm)d(w)o +(ould)i(ha)o(v)o(e)h(done.)18 b(Ho)o(w)o(ev)o(er,)12 +b(in)f(our)h(exp)q(erimen)o(ts,)g(the)g(sp)q(eculativ)o(e)h(searc)o(h)0 +569 y(results)k(w)o(ere)f(not)g(used)g(so)g(that)f(the)i(parallel)d +(program)g(pro)q(duces)j(the)f(iden)o(tical)f(results)i(as)e(the)i +(sequen)o(tial)e(v)o(ersion,)0 631 y(v)o(erifying)h(APHID's)g +(correctness)q(.)29 b(In)17 b(a)f(real)h(tournamen)o(t)f(game,)f(this)i +(sp)q(eculativ)o(e)h(searc)o(h)g(could)e(b)q(e)i(used)f(to)g(lo)q(ok)0 +693 y(an)e(extra)h(mo)o(v)o(e)d(ahead)j(on)f(some)f(k)o(ey)h(v)n +(ariations,)f(since)i(it)f(is)g(highly)f(lik)o(ely)g(that)i(the)f(mo)o +(v)o(es)f(extended)j(a)e(ply)g(ahead)0 756 y(w)o(ould)g(b)q(e)h(in)e +(the)i(left-most)e(branc)o(hes)j(of)e(the)h(tree.)23 +b(Note)16 b(that)g(other)g(algorithms,)d(suc)o(h)j(as)f(Y)m(oung)g +(Brothers)i(W)m(ait,)0 818 y(ha)o(v)o(e)d(pro)q(cessors)i(go)d(idle)h +(when)g(there)h(is)f(no)g(w)o(ork)f(left)h(to)g(do)f(on)h(the)g(curren) +o(t)i(iteration.)62 880 y(As)f(discussed)h(earlier,)d(load)h(balancing) +f(w)o(as)h(used)h(for)e(generating)i(the)f(results)h(giv)o(en)f(here.) +20 b(This)14 b(is)g(based)g(on)g(the)0 942 y(assumption)e(that)h(the)h +(primary)e(metric)g(to)h(measuring)g(a)g(parallel)f(program's)f(p)q +(erformance)i(is)g(the)h(sp)q(eed)h(with)e(whic)o(h)0 +1005 y(it)k(ac)o(hiev)o(es)g(a)g Fm(d)p Fn(-ply)e(result.)28 +b(Ho)o(w)o(ev)o(er,)18 b(one)f(could)g(argue)g(that)g(the)g(qualit)o(y) +f(of)g(the)i(result)f(ac)o(hiev)o(ed)g(is)g(equiv)n(alen)o(t,)0 +1067 y(irresp)q(ectiv)o(e)22 b(of)d(the)h(sp)q(eedup.)38 +b(The)20 b(additional)e(sp)q(eculativ)o(e)j(searc)o(h)g(done)f(in)g +(cases)h(where)g(the)f(load)f(balance)h(is)0 1129 y(incorrect)15 +b(could)f(b)q(e)g(used)h(to)f(impro)o(v)o(e)e(the)i(qualit)o(y)f(of)g +(the)i(result)f(returned.)62 1191 y(Other)e(results)f(for)f(parallel)f +(searc)o(h)j(algorithms)c(on)i(a)g(net)o(w)o(ork)h(of)e(w)o +(orkstations)h(ha)o(v)o(e)h(b)q(een)g(presen)o(ted)i(for)d(the)g(game)0 +1254 y(of)k(c)o(hess)h([21].)j(A)d(distributed)g(transp)q(osition)f +(table)g(w)o(as)g(used)h(to)g(impro)o(v)o(e)d(the)j(p)q(erformance)f +(of)g(the)h Fj(P)l(araPhoenix)0 1316 y Fn(c)o(hess)c(searc)o(hes,)h +(and)e(a)f(sp)q(eedup)j(of)d(7)g(w)o(as)h(ac)o(hiev)o(ed)g(on)f(16)h +(pro)q(cessors.)19 b(Although)9 b(these)i(results)g(are)f(marginally)c +(b)q(etter)0 1378 y(than)14 b(the)g(results)h(presen)o(ted)h(here,)e +(the)h(scalabilit)o(y)d(of)h(the)h(algorithm)e(w)o(as)h(extrap)q +(olated)h(to)g(a)f(sp)q(eedup)j(of)d(at)h(most)e(8)0 +1440 y(on)g(32)f(pro)q(cessors.)20 b(Based)13 b(on)f(the)g(graphs)h +(presen)o(ted)h(earlier)e(in)g(this)g(section,)h(w)o(e)f(b)q(eliev)o(e) +g(the)h(APHID)f(algorithm)d(will)0 1503 y(outp)q(erform)16 +b(on)g(a)g(larger)h(n)o(um)o(b)q(er)f(of)g(pro)q(cessors.)28 +b(The)17 b(b)q(ene\014cial)g(e\013ects)i(of)d(the)h(distributed)h +(transp)q(osition)e(table)0 1565 y(are)i(deriv)o(ed)g(primarily)d(in)j +(the)g(top)g(plies)f(of)g(the)i(searc)o(h)g(tree,)g(and)f(these)h(b)q +(ene\014ts)g(are)f(duplicated)g(in)f(APHID)h(b)o(y)0 +1627 y(main)o(taining)10 b(the)15 b(top)f Fm(d)397 1612 +y Fd(0)422 1627 y Fn(ply)f(exclusiv)o(ely)h(on)g(the)g(master)g(pro)q +(cessor.)62 1689 y(Although)c(the)h(results)g(presen)o(ted)h(here)g +(for)e(c)o(hess)h(are)g(promising,)d(w)o(e)j(b)q(eliev)o(e)f(that)h(b)q +(etter)g(results)h(can)e(b)q(e)h(ac)o(hiev)o(ed.)0 1752 +y(The)16 b(results)g(for)f(parallelizing)e Fj(Key)m(ano)p +Fn(,)k(an)e(Othello)g(program,)e(yield)i(a)f(9-fold)g(sp)q(eedup)j +(with)e(the)g(APHID)h(library)0 1814 y(without)f(the)g(use)h(of)e(load) +g(balancing.)20 b(The)c(main)d(di\013erence)k(b)q(et)o(w)o(een)f(the)f +(results)i(is)d(that)h(the)h(searc)o(h)g(o)o(v)o(erhead)f(for)0 +1876 y Fj(Key)m(ano)h Fn(is)e(less)g(than)g(half)f(of)g(the)i +Fj(TheTurk)p Fn('s)f(70\045)f(searc)o(h)i(o)o(v)o(erhead.)62 +1939 y(The)g(authors)g(ha)o(v)o(e)f(come)f(up)h(with)g(t)o(w)o(o)g(p)q +(ossible)h(h)o(yp)q(otheses)g(for)f(this)h(discrepancy)m(.)20 +b(The)14 b(\014rst)h(is)g(that)f Fj(Key)m(ano)0 2001 +y Fn(do)q(es)f(not)e(use)i(quiescen)o(t)g(searc)o(h.)19 +b(As)12 b(a)f(consequence,)k(the)d(sizes)h(of)e(the)i(v)n(arious)e +(pieces)i(of)e(w)o(ork)h(are)g(more)f(predictable;)0 +2063 y(hence,)i(load)e(balancing)g(is)g(not)h(necessary)m(.)19 +b(Load)11 b(balancing)g(causes)i(searc)o(h)g(o)o(v)o(erhead)f(since)g +(it)g(forces)g(a)g(new)g(pro)q(cessor)0 2125 y(to)f(rep)q(eat)i(searc)o +(hes)h(done)e(b)o(y)f(a)g(di\013eren)o(t)i(pro)q(cessor.)19 +b(The)12 b(load)f(balancing)f(is)i(partially)e(resp)q(onsible)j(for)e +(the)h(di\013erence)0 2188 y(in)i(searc)o(h)h(o)o(v)o(erhead.)k(The)c +(second)g(p)q(ossible)f(reason)h(is)f(that)g(the)h(searc)o(h)g(windo)o +(ws)f(in)f(the)i(sla)o(v)o(es)f(can,)g(in)g(some)f(cases,)0 +2250 y(b)q(e)g(larger)f(than)h(the)g(minim)o(al)c(windo)o(w)i(used)i +(in)f(the)h(sequen)o(tial)g(program.)i(Although)d(this)h(larger)f +(windo)o(w)g(is)g(common)0 2312 y(to)i(b)q(oth)h(parallel)e(implemen)o +(tatio)o(ns,)f(it)i(has)g(a)g(m)o(uc)o(h)f(larger)i(e\013ect)h(on)e +(the)h(size)g(of)e(the)i(trees)h(searc)o(hed)g(in)e Fj(TheTurk)0 +2374 y Fn(than)g(in)f Fj(Key)m(ano)p Fn(.)62 2437 y(The)i(APHID)g +(algorithm)c(can)k(supp)q(ort)g(a)f(shared)i(transp)q(osition)e(table,) +g(but)g(the)h(algorithm)d(do)q(es)j(not)g(dep)q(end)g(on)0 +2499 y(its)g(presence.)22 b(Th)o(us,)15 b(the)g(algorithm)d(gets)j(go)q +(o)q(d)f(p)q(erformance)h(on)f(a)h(lo)q(osely-coupled)f(net)o(w)o(ork)h +(of)f(w)o(orkstations)g(and)0 2561 y(will)e(p)q(erform)h(ev)o(en)i(b)q +(etter)h(on)d(tigh)o(tly-coupled)g(pro)q(cessors.)954 +2828 y(14)p eop +%%Page: 15 15 +15 14 bop 0 195 a Fo(5)69 b(Conclusions)22 b(and)i(F)-6 +b(uture)23 b(W)-6 b(ork)0 298 y Fn(The)14 b(APHID)f(algorithm)e(yields) +i(go)q(o)q(d)g(sp)q(eedups)i(on)e(a)g(net)o(w)o(ork)g(of)g(w)o +(orkstations)g(without)g(the)h(necessit)o(y)g(of)f(a)g(shared)0 +361 y(transp)q(osition)g(table.)18 b(Although)13 b(the)i(authors)f(are) +g(pleased)g(with)f(these)i(preliminary)c(results,)k(a)e(lot)g(of)g(w)o +(ork)g(is)h(left)f(to)0 423 y(b)q(e)i(done.)62 485 y(Our)e(curren)o(t)h +(implemen)o(tation)9 b(of)j(APHID)g(uses)i(a)e(\014xed-depth)h(horizon) +g(for)f(the)h(master's)e(tree.)19 b(As)13 b(men)o(tioned)e(in)0 +548 y(our)i(discussion)h(of)f(load)f(balancing,)g(all)g(p)q(ositions)h +(are)h(not)f(equal)g(in)g(the)h(amoun)o(t)e(of)h(searc)o(h)h(e\013ort)g +(they)g(require)g(for)f(a)0 610 y(\014xed)g(depth)g(of)e(searc)o(h.)19 +b(APHID)13 b(is)f(b)q(eing)g(generalized)h(to)f(supp)q(ort)h(a)f +(dynamically)e(c)o(hanging)h(horizon)h(in)g(the)h(master.)62 +672 y(Instead)h(of)e(basing)h(the)g(results)i(of)d(the)i(algorithm)c +(on)j(the)g(sp)q(eedup,)i(w)o(e)e(are)g(also)g(in)o(terested)h(in)f +(the)g(qualit)o(y)f(of)g(the)0 734 y(results)i(returned)h(b)o(y)d(the)i +(algorithm.)h(This)e(alternativ)o(e)g(view)f(of)h(parallel)f(p)q +(erformance)g(is)h(curren)o(tly)h(b)q(eing)f(explored.)62 +797 y(The)i(results)g(rep)q(orted)h(here)f(are)g(based)g(on)e(a)h +(simple)f(master/sla)o(v)o(e)g(relationship.)18 b(As)d(the)g(n)o(um)o +(b)q(er)e(of)h(pro)q(cessors)0 859 y(increases,)f(the)f(master)f +(increasingly)h(b)q(ecomes)f(a)h(b)q(ottlenec)o(k.)18 +b(APHID)11 b(has)h(b)q(een)h(generalized)f(to)f(w)o(ork)h(in)f(a)g +(hierarc)o(hi-)0 921 y(cal)j(pro)q(cess)j(tree,)e(although)f(this)h +(asp)q(ect)h(of)e(the)h(algorithm)d(has)j(not)f(b)q(een)i(tested)g +(here.)22 b(Mid-lev)o(el)13 b(pro)q(cesses)18 b(w)o(ould)0 +983 y(b)q(eha)o(v)o(e)c(as)f(a)g(sla)o(v)o(e)g(to)o(w)o(ard)g(their)h +(master,)e(and)i(as)f(a)g(master)g(to)o(w)o(ard)g(their)h(sla)o(v)o +(es.)j(The)d(scalabilit)o(y)e(of)h(the)h(algorithm)0 +1046 y(has)g(y)o(et)h(to)f(b)q(e)h(demonstrated)f(on)g(arc)o +(hitectures)i(of)e(more)f(than)h(16)g(pro)q(cessors,)i(due)f(to)f +(resource)i(limitations)11 b(during)0 1108 y(the)j(academic)f(y)o(ear.) +62 1170 y(P)o(erhaps)i(the)e(biggest)h(con)o(tribution)f(of)f(APHID)i +(is)f(that)g(it)g(easily)g(\014ts)h(in)f(to)g(an)g(existing)g(sequen)o +(tial)g Fm(\013\014)j Fn(program.)0 1232 y(Not)h(only)e(has)i(APHID)g +(b)q(een)h(in)o(tegrated)f(in)o(to)f Fj(TheTurk)h Fn(and)f +Fj(Key)m(ano)p Fn(,)j(APHID)e(has)g(b)q(een)g(in)o(tegrated)g(in)o(to)f +(the)0 1295 y(c)o(hec)o(k)o(ers)g(program)d Fj(Chinook)j +Fn(with)e(one)g(afterno)q(on)h(of)f(e\013ort.)1033 1280 +y Fi(4)1072 1295 y Fn(In)g(con)o(trast,)h(the)g(v)o(ersion)g(of)e +Fj(Chinook)j Fn(used)f(in)f(the)0 1357 y(1994)f(matc)o(h)g(v)o(ersus)i +(Tinsley)e(to)q(ok)h(4)f(to)h(6)g(w)o(eeks)h(to)e(implemen)o(t)e([15].) +0 1494 y Fo(6)69 b(Ac)n(kno)n(wledgemen)n(ts)0 1598 y +Fn(This)14 b(w)o(ork)f(w)o(as)h(supp)q(orted)h(b)o(y)f(the)h(Natural)e +(Sciences)j(and)d(Engineering)h(Researc)o(h)h(Council)f(of)f(Canada.)0 +1735 y Fo(References)21 1818 y Fn([1])19 b(S.)d(G.)g(Akl,)f(D.)h(T.)g +(Barnard,)h(and)f(R.)f(J.)h(Doran.)25 b(Design,)16 b(Analysis)g(and)g +(Implemen)o(tation)d(of)j(a)g(P)o(arallel)f(T)m(ree)85 +1859 y(Searc)o(h)g(Algorithm.)i Fl(IEEE)f(T)m(r)n(ansactions)f(on)h +(Pattern)f(A)o(nalysis)g(and)h(Machine)g(Intel)r(ligenc)n(e)p +Fn(,)e(P)m(AMI-4\(2\):192{)85 1901 y(203,)f(1982.)21 +1975 y([2])19 b(G.)13 b(M.)h(Baudet.)k Fl(The)d(Design)g(and)h +(Analysis)e(of)h(Algorithms)f(for)g(Asynchr)n(onous)i(Multipr)n(o)n(c)n +(essors)p Fn(.)h(PhD)d(thesis,)85 2017 y(Carnegie)g(Mellon)g(Univ)o +(ersit)o(y)m(,)f(Pittsburgh,)h(P)m(A,)f(1978.)k(Av)n(ailable)12 +b(as)i(T)m(ec)o(h.)g(Rept.)f(CMU-CS-78-116.)21 2092 y([3])19 +b(V.-D.)j(Cung.)44 b Fl(Contribution)23 b(\022)-21 b(a)23 +b(l'A)o(lgorithmique)e(Non)j(Num)o(\023)-20 b(erique)23 +b(Par)n(al)r(l)o(\022)-20 b(ele:)34 b(Explor)n(ation)23 +b(d'Esp)n(ac)n(es)h(de)85 2133 y(R)n(e)n(cher)n(che)p +Fn(.)19 b(PhD)13 b(thesis,)i(Univ)o(ersit)o(\023)-20 +b(e)14 b(P)o(aris)g(VI,)g(April)f(1994.)21 2208 y([4])19 +b(V.)12 b(Da)o(vid.)h Fl(A)o(lgorithmique)f(p)n(ar)n(al)r(l)o(\022)-20 +b(ele)12 b(sur)h(les)g(arbr)n(es)f(de)i(d)o(\023)-20 +b(ecision)13 b(et)g(r)n(aisonnement)g(en)h(temps)f(c)n(ontr)n(aint)g(-) +f(Etude)85 2249 y(et)j(applic)n(ation)g(au)h(minimax)p +Fn(.)i(PhD)13 b(thesis,)i(ENSAE,)f(T)m(oulouse,)f(F)m(rance,)h(1993.)21 +2324 y([5])19 b(R.)34 b(F)m(eldmann.)78 b Fl(Spielb)n(aumsuche)35 +b(mit)e(massiv)h(p)n(ar)n(al)r(lelen)g(Systemen)p Fn(.)80 +b(PhD)35 b(thesis,)40 b(Univ)o(ersit\177)-21 b(at-)85 +2365 y(Gesam)o(tho)q(c)o(hsc)o(h)o(ule)13 b(P)o(aderb)q(orn,)h(P)o +(aderb)q(orn,)g(German)o(y)m(,)c(Ma)o(y)j(1993.)j(In)d(German)f({)h +(English)g(translation)f(a)o(v)n(ail-)85 2407 y(able.)21 +2482 y([6])19 b(E.)f(W.)e(F)m(elten)i(and)f(S.)h(W.)e(Otto.)29 +b(Chess)19 b(on)f(a)f(Hyp)q(ercub)q(e.)31 b(In)17 b(G.)g(F)m(o)o(x,)g +(editor,)h Fl(Pr)n(o)n(c)n(e)n(e)n(dings)g(of)h(The)f(Thir)n(d)85 +2523 y(Confer)n(enc)n(e)13 b(on)g(Hyp)n(er)n(cub)n(e)f(Concurr)n(ent)h +(Computers)f(and)h(Applic)n(ations)p Fn(,)e(v)o(olume)f(I)q +(I-Applications,)h(pages)g(1329{)85 2565 y(1341,)i(P)o(assadena,)h(CA,) +f(1988.)p 0 2599 780 2 v 46 2626 a Fh(4)64 2638 y Fg(The)e(results)f +(for)h Fa(Chinook)i Fg(w)o(ere)e(not)g(a)o(v)n(ailable)e(at)i(the)g +(time)g(of)g(writing.)954 2828 y Fn(15)p eop +%%Page: 16 16 +16 15 bop 21 195 a Fn([7])19 b(C.)c(F)m(erguson)h(and)g(R.)f(E.)g +(Korf.)23 b(Distributed)16 b(T)m(ree)g(Searc)o(h)h(and)e(its)h +(Application)f(to)g(Alpha-Beta)h(Pruning.)23 b(In)85 +237 y Fl(Pr)n(o)n(c)n(e)n(e)n(dings)15 b(of)g(AAAI-88)p +Fn(,)e(pages)h(128{132,)e(Sain)o(t)h(P)o(aul,)g(MN,)h(August)g(1988.)21 +311 y([8])19 b(R.D.)14 b(Green)o(blatt,)h(D.E.)e(Eastlak)o(e,)i(and)g +(S.D.)f(Cro)q(c)o(k)o(er.)22 b(The)15 b(Green)o(blatt)g(Chess)i +(Program.)i(In)c Fl(Pr)n(o)n(c)n(e)n(e)n(dings)h(of)85 +353 y(the)f(F)m(al)r(l)g(Joint)f(Computer)h(Confer)n(enc)n(e)p +Fn(,)e(pages)h(801{810,)e(1967.)21 428 y([9])19 b(F.-h.)c(Hsu.)22 +b Fl(L)n(ar)n(ge)16 b(Sc)n(ale)g(Par)n(al)r(lelization)f(of)h(A)o +(lpha-Beta)h(Se)n(ar)n(ch:)k(A)o(n)c(A)o(lgorithmic)d(and)j(A)o(r)n +(chite)n(ctur)n(al)e(Study)p Fn(.)85 469 y(PhD)g(thesis,)h(Carnegie)g +(Mellon)e(Univ)o(ersit)o(y)m(,)g(Pittsburgh,)i(U.S.A.,)e(1990.)20 +b(Also)15 b(T)m(ec)o(h.)g(Rept.)g(CMU-CS-90-108,)85 511 +y(Carnegie)f(Mellon)g(Univ)o(ersit)o(y)m(,)f(F)m(eb.)g(1990.)0 +585 y([10])19 b(R.)11 b(M.)h(Hy)o(att,)g(B.)g(W.)f(Suter,)i(and)e(H.)h +(L.)f(Nelson.)16 b(A)c(P)o(arallel)f(Alpha/Beta)h(T)m(ree)g(Searc)o +(hing)g(Algorithm.)h Fl(Par)n(al)r(lel)85 627 y(Computing)p +Fn(,)h(10\(3\):299{308,)d(1989.)0 702 y([11])19 b(D.)f(Kop)q(ec)i(and)f +(I.)f(Bratk)o(o.)33 b(The)19 b(Bratk)o(o-Kop)q(ec)h(Exp)q(erimen)o(t:) +28 b(A)19 b(Comparison)d(of)j(Human)e(and)i(Computer)85 +743 y(Performance)11 b(in)f(Chess.)j(In)d(M.R.B.)f(Clark)o(e,)i +(editor,)f Fl(A)n(dvanc)n(es)j(in)e(Computer)h(Chess)f(3)p +Fn(,)g(pages)g(57{72.)d(P)o(ermagon)85 785 y(Press,)15 +b(Oxford,)f(1982.)0 859 y([12])19 b(B.)14 b(C.)g(Kuszmaul.)k +Fl(Synchr)n(onize)n(d)e(MIMD)g(Computing)p Fn(.)k(PhD)14 +b(thesis,)h(Massac)o(h)o(usetts)h(Institute)f(of)f(T)m(ec)o(hnology)m +(,)85 901 y(Cam)o(bridge,)e(MA,)i(1994.)0 976 y([13])19 +b(G.)e(Lindstrom.)28 b(The)18 b(Key)g(No)q(de)g(Metho)q(d:)26 +b(A)18 b(Highly-P)o(arallel)d(Alpha-Beta)j(Algorithm.)26 +b(T)m(ec)o(hnical)18 b(Rep)q(ort)85 1017 y(UUCS)c(83-101,)e(Univ)o +(ersit)o(y)i(of)g(Utah,)f(Departmen)o(t)g(of)h(Computer)f(Science,)i +(Salt)e(Lak)o(e)h(Cit)o(y)m(,)e(UT,)h(Marc)o(h)i(1983.)0 +1092 y([14])k(C.-P)m(.)11 b(P)m(.)g(Lu.)j(P)o(arallel)d(Searc)o(h)h(of) +f(Narro)o(w)h(Game)e(Trees.)16 b(Master's)d(thesis,)f(Departmen)o(t)f +(of)g(Computing)f(Science,)85 1133 y(Univ)o(ersit)o(y)k(of)f(Alb)q +(erta,)h(Edmon)o(ton,)e(Canada,)h(1993.)0 1208 y([15])19 +b(P)m(.)13 b(Lu.)18 b(Priv)n(ate)c(comm)o(unication.)o(,)d(1996.)0 +1283 y([16])19 b(T.)11 b(A.)f(Marsland)h(and)g(M.)f(S.)h(Campb)q(ell.)g +(Parallel)f(Searc)o(h)i(of)e(Strongly)g(Ordered)j(Game)c(Trees.)15 +b Fl(A)o(CM)d(Computing)85 1324 y(Surveys)p Fn(,)i(14\(4\):533{551,)d +(1982.)0 1399 y([17])19 b(M.)14 b(M.)f(Newb)q(orn.)20 +b(Unsync)o(hronized)15 b(Iterativ)o(e)g(Deep)q(ening)f(P)o(arallel)f +(Alpha-Beta)h(Searc)o(h.)20 b Fl(IEEE)15 b(T)m(r)n(ansactions)85 +1440 y(on)h(Pattern)e(A)o(nalysis)h(and)h(Machine)g(Intel)r(ligenc)n(e) +p Fn(,)d(P)m(AMI-10\(5\):687{694,)d(1988.)0 1515 y([18])19 +b(J.)c(P)o(earl.)21 b(Asymptotic)14 b(Prop)q(erties)j(of)d(Minimax)e +(Trees)17 b(and)d(Game-Searc)o(hing)g(Pro)q(cedures.)23 +b Fl(A)o(rti\014cial)15 b(Intel)r(li-)85 1557 y(genc)n(e)p +Fn(,)f(14:113{138,)d(1980.)0 1631 y([19])19 b(A.)d(Plaat,)g(J.)g(Sc)o +(hae\013er,)i(W.)e(Pijls,)g(and)g(A.)g(de)h(Bruin.)25 +b(Nearly)17 b(Optimal)d(Minimax)g(T)m(ree)j(Searc)o(h?)35 +b(T)m(ec)o(hnical)85 1673 y(Rep)q(ort)17 b(94-19,)e(Departmen)o(t)h(of) +g(Computing)e(Science,)k(Univ)o(ersit)o(y)e(of)f(Alb)q(erta,)i(Edmon)o +(ton,)e(Alta.,)h(Decem)o(b)q(er)85 1714 y(1994.)0 1789 +y([20])j(A.)14 b(Reinefeld.)k(An)c(Impro)o(v)o(emen)o(t)d(to)j(the)g +(Scout)h(Tree-Searc)o(h)g(Algorithm.)h Fl(ICCA)e(Journal)p +Fn(,)g(6\(4\):4{14,)d(1983.)0 1864 y([21])19 b(J.)11 +b(Sc)o(hae\013er.)k(Distributed)d(Game-T)m(ree)e(Searc)o(hing.)j +Fl(Journal)g(of)f(Par)n(al)r(lel)f(and)i(Distribute)n(d)f(Computing)p +Fn(,)f(6\(2\):90{)85 1905 y(114,)i(1989.)0 1980 y([22])19 +b(I.)12 b(R.)g(Stein)o(b)q(erg)h(and)g(M.)f(Solomon.)h(Searc)o(hing)g +(Game)d(Trees)k(in)e(P)o(arallel.)j(In)e Fl(Pr)n(o)n(c)n(c)n(e)n(dings) +g(of)h(the)f(1990)i(Interna-)85 2022 y(tional)i(Confer)n(enc)n(e)f(on)h +(Par)n(al)r(lel)e(Pr)n(o)n(c)n(essing)h(\(vol.)g(3\))p +Fn(,)g(pages)g(9{17,)e(Univ)o(ersit)o(y)h(P)o(ark,)h(P)m(A,)f(1990.)f +(P)o(enn.)h(State)85 2063 y(Univ)o(ersit)o(y)f(Press.)0 +2138 y([23])19 b(V.)e(Sunderam.)28 b(PVM:)17 b(A)h(F)m(ramew)o(ork)d +(for)i(P)o(arallel)g(Distributed)g(Computing.)26 b Fl(Concurr)n(ency:)g +(Pr)n(actic)n(e)17 b(and)85 2179 y(Exp)n(erienc)n(e)p +Fn(,)d(2\(4\):315{339,)d(Decem)o(b)q(er)j(1990.)0 2254 +y([24])19 b(J.-C.)25 b(W)m(eill.)51 b Fl(Pr)n(o)n(gr)n(ammes)25 +b(d')o(\023)-20 b(eche)n(cs)26 b(de)g(championnat:)41 +b(ar)n(chite)n(ctur)n(e)25 b(lo)n(giciel)r(le)f(synth)o(\022)-20 +b(ese)27 b(de)f(fonctions)85 2296 y(d')o(\023)-20 b(evaluations,)15 +b(p)n(ar)n(al)r(l)o(\023)-20 b(elisme)14 b(de)h(r)n(e)n(cher)n(che)p +Fn(.)j(PhD)13 b(thesis,)i(Univ)o(ersit)o(\023)-20 b(e)14 +b(P)o(aris)g(8,)f(Jan)o(uary)h(1995.)954 2828 y(16)p +eop +%%Page: 17 17 +17 16 bop 0 195 a Fo(A)69 b(Description)21 b(of)i(APHID)f(In)n(terface) +0 294 y Fc(A.1)56 b(T)n(yp)r(es)18 b(of)h(Pro)r(cesses)f(within)g +(APHID)62 363 y Fk(\017)j Fe(absolute)f(master)p Fn(:)25 +b(The)18 b(single)g(pro)q(cess)h(whic)o(h)f(in)o(v)o(ok)o(es)g(all)e +(other)j(pro)q(cesses)h(within)e(the)g(APHID)g(pro)q(cess)104 +404 y(hierarc)o(h)o(y)m(,)13 b(whic)o(h)h(o)q(ccupies)h(the)f(highest)h +(lev)o(el)e(in)h(the)g(pro)q(cess)i(hierarc)o(h)o(y)m(.)62 +476 y Fk(\017)21 b Fe(slave)p Fn(:)g(An)o(y)16 b(pro)q(cess)i(that)e(m) +o(ust)f(rep)q(ort)i(its)f(searc)o(h)h(results)g(to)f(a)g(pro)q(cess)i +(ab)q(o)o(v)o(e)d(it)h(in)g(the)g(hierarc)o(h)o(y)m(.)25 +b(With)104 518 y(this)14 b(de\014nition,)f(a)g(pro)q(cess)j(is)e +(either)h(the)f(absolute)g(master)f(or)h(a)g(sla)o(v)o(e,)f(and)h(can)g +(not)g(b)q(e)g(b)q(oth.)62 589 y Fk(\017)21 b Fe(master)p +Fn(:)e(An)o(y)14 b(pro)q(cess)j(that)e(has)g(pro)q(cesses)j(underneath) +e(it)e(in)h(the)g(hierarc)o(h)o(y)m(.)21 b(Note)15 b(that)g(it)g(is)g +(p)q(ossible)g(for)f(a)104 631 y(pro)q(cess)h(to)f(b)q(e)h(b)q(oth)f(a) +f(master)h(and)f(a)h(sla)o(v)o(e)g(if)f(the)h(pro)q(cess)i(hierarc)o(h) +o(y)e(has)g(m)o(ultiple)e(lev)o(els.)0 746 y Fc(A.2)56 +b(Constan)n(ts)20 b(T)-5 b(o)19 b(Be)f(De\014ned)0 814 +y Fn(Since)c(the)h(library)e(is)h(application-indep)q(enden)o(t,)f +(some)g(de\014nitions)h(of)f(ho)o(w)g(things)h(are)h(implem)o(en)o(ted) +d(m)o(ust)h(b)q(e)h(giv)o(en)0 856 y(to)g(the)g(APHID)g(library)m(.)62 +932 y Fk(\017)21 b Fe(APHID)p 217 932 14 2 v 14 w(HASHTYPESIZE)p +Fn(:)11 b(The)k(size)f(\(in)g(b)o(ytes\))h(of)e(the)h(hash)g(v)n(alue)g +(used)h(in)e(y)o(our)h(program.)62 1003 y Fk(\017)21 +b Fe(APHID)p 217 1003 V 14 w(HASHKEYSIZE)p Fn(:)10 b(The)i(size)h(\(in) +f(b)o(ytes\))h(of)f(the)h(\\lo)q(c)o(k")e(used)i(to)f(guaran)o(tee)h +(that)f(t)o(w)o(o)g(p)q(ositions)f(sharing)h(the)104 +1045 y(same)h(hash)h(v)n(alue)f(are)h(the)h(same.)62 +1117 y Fk(\017)21 b Fe(APHID)p 217 1117 V 14 w(MOVESIZE)p +Fn(:)12 b(The)i(size)h(\(in)f(b)o(ytes\))g(of)g(the)g(represen)o +(tation)i(of)d(a)h(mo)o(v)o(e)e(in)h(the)i(application.)62 +1189 y Fk(\017)21 b Fe(APHID)p 217 1189 V 14 w(MINUSINF)15 +b Fn(and)h Fe(APHID)p 615 1189 V 15 w(PLUSINF)p Fn(:)e(Sp)q +(eci\014cations)j(of)e(v)n(alues)h(smaller)f(than)h(the)h(minim)n(um)o +(,)c(and)j(larger)104 1230 y(than)e(the)g(maxim)n(um)o(,)c(that)k(the)h +(\\ev)n(aluation")d(could)i(p)q(ossibly)f(return,)i(resp)q(ectiv)o(ely) +m(.)62 1302 y Fk(\017)21 b Fe(APHID)p 217 1302 V 14 w(INVALIDSCORE)p +Fn(:)13 b(A)j(v)n(alue)g(that)g(is)g(outside)g(the)g(range)h(represen)o +(ted)h(b)o(y)e(the)h(minim)n(um)11 b(and)16 b(maxim)n(um)104 +1344 y(v)n(alues)d(sp)q(eci\014ed)j(previously)m(.)62 +1415 y Fk(\017)21 b Fe(APHID)p 217 1415 V 14 w(LOG2)p +319 1415 V 15 w(TABSIZE)p Fn(:)16 b(The)j(size)g(of)e(the)i(APHID)f +(table)g(that)g(y)o(ou)g(in)o(tend)g(on)g(using)g(to)g(share)h(b)q(et)o +(w)o(een)g(the)104 1457 y(master)c(and)h(the)g(sla)o(v)o(es,)g(tak)o +(en)f(to)h(a)f(base)i(2)e(logarithm.)21 b(F)m(or)15 b(example,)g(a)g(v) +n(alue)g(of)g(14)g(indicates)h(an)g(APHID)104 1503 y(table)e(with)f(2) +323 1488 y Fi(14)370 1503 y Fn(=)e(16384)i(en)o(tries.)62 +1575 y Fk(\017)21 b Fe(APHID)p 217 1575 V 14 w(MAXSLAVEPLYSEARCH)p +Fn(:)7 b(The)j(maxim)o(um)c("plytogo")i(v)n(alue)i(that)g(y)o(ou)g +(could)g(p)q(ossibly)g(exp)q(ect)i(to)e(hand)g(to)g(a)104 +1616 y(sla)o(v)o(e)g(to)g(searc)o(h.)18 b(Note)10 b(that)g(this)h(v)n +(alue)e(should)h(not)g(b)q(e)h(excessiv)o(ely)g(large,)g(since)g(this)f +(and)g Fe(APHID)p 1683 1616 V 15 w(LOG2)p 1786 1616 V +14 w(TABSIZE)104 1658 y Fn(are)k(the)h(leading)e(determinan)o(ts)g(in)h +(the)g(amoun)o(t)e(of)h(memory)f(used)j(b)o(y)e(the)i(APHID)f(library)m +(.)62 1730 y Fk(\017)21 b Fe(APHID)p 217 1730 V 14 w +(MAXMASTERPLYSEARCH)p Fn(:)10 b(The)k(maxim)o(um)9 b(depth)15 +b(that)f(w)o(e)g(exp)q(ect)h(the)g(master)e(should)h(reac)o(h.)62 +1802 y Fk(\017)21 b Fe(APHID)p 217 1802 V 14 w(SLAVENODESTOCOMM)p +Fn(:)15 b(This)j(should)g(b)q(e)g(set)h(to)f(the)h(n)o(um)o(b)q(er)e +(of)h(no)q(des)h(that)f(the)g(sequen)o(tial)h(program)104 +1843 y(visits)13 b(on)h(the)h(t)o(yp)q(e)f(of)f(pro)q(cessor)j(b)q +(eing)e(used,)g(divided)g(b)o(y)f(10.)0 1958 y Fc(A.3)56 +b(Standard)19 b(V)-5 b(ariables)19 b(Used)62 2026 y Fk(\017)i +Fe(argv)p Fn(:)e(Standard)c(argumen)o(t)e(list.)20 b(Used)c(to)f +(instan)o(tiate)f(the)h(sla)o(v)o(es)g(with)g(the)g(same)f(parameters)h +(as)g(the)g(initial)104 2068 y(program.)62 2140 y Fk(\017)21 +b Fe(depth)p Fn(:)c(The)d(n)o(um)o(b)q(er)f(of)g(ply)h(the)g(curren)o +(t)i(no)q(de)e(is)g(a)o(w)o(a)o(y)f(from)f(the)i(ro)q(ot)g(of)f(the)i +(game)d(tree.)62 2212 y Fk(\017)21 b Fe(plytogo)p Fn(:)15 +b(The)c(n)o(um)o(b)q(er)f(of)g(ply)h(un)o(til)f(w)o(e)h(reac)o(h)g(the) +h(b)q(ottom)d(of)h(the)i(game)d(tree.)18 b(In)11 b(a)g(searc)o(h)h +(with)e(no)h(extensions)104 2253 y(or)j(forw)o(ard)f(pruning,)g +Fe(plytogo)21 b(+)g(depth)13 b Fn(should)h(b)q(e)g(constan)o(t.)62 +2325 y Fk(\017)21 b Fe(&move[i])10 b Fn(or)i Fe(&bestmove)p +Fn(:)j(A)d(p)q(oin)o(ter)g(to)f(an)h(area)g(of)f Fe(APHID)p +1098 2325 V 15 w(MOVESIZE)f Fn(b)o(ytes)i(whic)o(h)g(sp)q(eci\014es)h +(the)g(mo)o(v)o(e)d(b)q(eing)104 2367 y(pla)o(y)o(ed.)62 +2438 y Fk(\017)21 b Fe(p)p 129 2438 V 15 w(hash)p Fn(:)c(A)d(p)q(oin)o +(ter)g(to)g(an)g(area)g(of)f Fe(APHID)p 805 2438 V 15 +w(HASHTYPESIZE)e Fn(b)o(ytes)k(that)f(con)o(tains)g(the)g(curren)o(t)h +(hash)g(v)n(alue.)62 2510 y Fk(\017)21 b Fe(p)p 129 2510 +V 15 w(key)p Fn(:)c(A)c(p)q(oin)o(ter)g(to)f(an)g(area)h +Fe(APHID)p 729 2510 V 15 w(HASHKEYSIZE)d Fn(b)o(ytes)k(that)e(con)o +(tains)h(a)f(lo)q(c)o(k)g(whic)o(h)h(can)g(\\guaran)o(tee")f(the)104 +2552 y(b)q(oard)i(stored)h(in)e(the)h(lo)q(cation)f(of)h(the)g(hash)g +(table)g(is)g(correct.)62 2624 y Fk(\017)21 b Fe(alpha)13 +b Fn(and)g Fe(beta)p Fn(:)k(Searc)o(h)e(windo)o(w)e(used)i(b)o(y)f +Fm(\013\014)i Fn(implemen)o(tatio)o(n;)11 b(they)j(are)g(exp)q(ected)i +(to)e(b)q(e)h(32-bit)e(in)o(tegers.)62 2696 y Fk(\017)21 +b Fe(value)13 b Fn(and)g Fe(score)p Fn(:)k(V)m(alues)d(of)f(leaf)g(no)q +(des;)i(they)f(are)g(exp)q(ected)i(to)e(b)q(e)h(32-bit)e(in)o(tegers)h +(for)g(this)g(library)m(.)954 2828 y(17)p eop +%%Page: 18 18 +18 17 bop 0 195 a Fc(A.4)56 b(Stubs)19 b(T)-5 b(o)19 +b(Be)f(W)-5 b(ritten)62 263 y Fk(\017)21 b Fe(int)g(aphid)p +304 263 14 2 v 15 w(stub)p 407 263 V 14 w(encodeinit\(char)e(*msg\))p +Fn(:)k(Pro)o(vides)17 b(the)g(absolute)g(master)f(with)h(a)f(4000-b)o +(yte)g(bu\013er)i(to)104 305 y(store)g(all)d(p)q(ertinen)o(t)k +(information)14 b(ab)q(out)i(the)i(ro)q(ot)f(of)f(the)i(game)d(tree.)29 +b(The)17 b(return)i(v)n(alue)d(is)h(the)g(n)o(um)o(b)q(er)g(of)104 +346 y(b)o(ytes)d(used)h(in)f(the)g(string)g Fe(msg)p +Fn(.)62 421 y Fk(\017)21 b Fe(int)g(aphid)p 304 421 V +15 w(stub)p 407 421 V 14 w(decodeinit\(int)e(msg)p 814 +421 V 15 w(ln,)j(char)f(*msg\))p Fn(:)15 b(All)9 b(other)i(pro)q +(cesses)j(in)c(the)h(system,)f(aside)h(from)104 463 y(the)i(absolute)f +(master,)g(receiv)o(e)i(the)f(message)f(length)g(and)g(the)h(message)f +(enco)q(ded)i(b)o(y)e Fe(aphid)p 1606 463 V 15 w(stub)p +1709 463 V 15 w(encodeinit)p Fn(,)104 504 y(and)h(should)h(set)h(the)f +(ro)q(ot)g(of)g(their)g(game)e(tree,)j(accordingly)m(.)62 +579 y Fk(\017)21 b Fe(void)g(aphid)p 326 579 V 14 w(stub)p +428 579 V 15 w(movedownpath\(int)e(num)p 880 579 V 15 +w(moves,)h(char)h(*movepath\))p Fn(:)15 b(Called)10 b(b)o(y)h(the)h +(sla)o(v)o(es,)f(a)g(series)i(of)104 620 y Fe(num)p 173 +620 V 15 w(moves)d Fn(mo)o(v)o(es)h(is)g(giv)o(en)h(in)f +Fe(movepath)p Fn(,)f(with)h(eac)o(h)h(mo)o(v)o(e)e(b)q(eing)i +Fe(APHID)p 1328 620 V 15 w(MOVESIZE)e Fn(b)o(ytes)i(long.)17 +b(The)12 b(routine)104 662 y(should)h(pla)o(y)g(through)h(the)h(mo)o(v) +o(es)d(giv)o(en)i(in)f Fe(movepath)f Fn(from)h(the)h(ro)q(ot)g(of)f +(the)i(game)d(tree.)62 737 y Fk(\017)21 b Fe(void)g(aphid)p +326 737 V 14 w(stub)p 428 737 V 15 w(moveuppath\(int)e(num)p +836 737 V 15 w(moves,)i(char)g(*movepath\))p Fn(:)14 +b(Called)d(b)o(y)g(the)h(sla)o(v)o(es,)f(should)g(com-)104 +778 y(pletely)j(undo)f(an)o(y)h(c)o(hanges)g(made)f(b)o(y)h +Fe(aphid)p 856 778 V 14 w(stub)p 958 778 V 15 w(movedownpath)p +Fn(.)62 853 y Fk(\017)21 b Fe(int)g(aphid)p 304 853 V +15 w(stub)p 407 853 V 14 w(iterativedeepening\(i)o(nt)e(depth,)h(int)h +(last,)g(int)g(max\))p Fn(:)d(Called)13 b(b)o(y)h(the)h(sla)o(v)o(es,)f +(this)104 894 y(routine)j(should)f(return)i(the)g(searc)o(h)g(depth)f +(for)g(the)g(next)g(searc)o(h)h(of)f(a)f(leaf)g(no)q(de)i(from)d(a)h +(master's)g(tree.)28 b(F)m(or)104 936 y(most)12 b(programs)h(that)h(do) +g(iterativ)o(e)g(deep)q(ening)g(in)g(1)f(ply)h(steps,)h(this)f(should)f +(simply)f(return)j Fe(last)21 b(+)h(1)p Fn(.)62 1011 +y Fk(\017)f Fe(void)g(aphid)p 326 1011 V 14 w(stub)p +428 1011 V 15 w(preparesearch\(int)e(depth,)h(int)h(plytogo,)f(int)i +(winstats[],)d(int)i(*alpha,)104 1052 y(int)g(*beta\))p +Fn(:)16 b(Called)10 b(b)o(y)i(the)g(sla)o(v)o(es,)f(this)h(routine)g +(sets)g(the)g(initial)e(windo)o(w)h(searc)o(hed)i(b)o(y)e(the)h(sla)o +(v)o(es.)17 b(Statistics)104 1094 y(on)12 b(previous)h(searc)o(hes)h +(and)f(the)g(curren)o(t)h(guessed)g(score)g(at)e(the)h(ro)q(ot)g(are)f +(passed)i(in)e(via)g(the)h Fe(winstats[])d Fn(arra)o(y)m(.)104 +1135 y(The)j(routine)f(should)h(set)g Fe(*alpha)e Fn(and)h +Fe(*beta)g Fn(b)q(efore)h(terminating.)j(F)m(urthermore,)c(this)g +(routine)h(should)f(ensure)104 1177 y(that)i(an)o(y)f(global)f("alarm") +g(states)j(ha)o(v)o(e)e(b)q(een)i(turned)g(o\013.)62 +1251 y Fk(\017)21 b Fe(int)g(aphid)p 304 1251 V 15 w(stub)p +407 1251 V 14 w(alphabeta\(int)f(depth,)g(int)h(plytogo,)f(int)i +(alpha,)e(int)h(beta\))p Fn(:)c(Called)c(b)o(y)h(b)q(oth)104 +1293 y(the)f(master)e(and)h(the)h(sla)o(v)o(es,)f(this)g(routine)g +(should)g(call)g(y)o(our)g(implem)o(en)o(tation)d(of)j +Fm(\013\014)r Fn(,)g(and)g(return)h(the)g(minim)o(ax)104 +1334 y(v)n(alue)g(bac)o(k)h(to)g(the)g(APHID)g(library)m(.)62 +1409 y Fk(\017)21 b Fe(int)g(aphid)p 304 1409 V 15 w(stub)p +407 1409 V 14 w(evaluate\(int)f(depth,)g(int)i(alpha,)e(int)h(beta\))p +Fn(:)c(Called)c(b)o(y)g(the)h(master)f(the)h(\014rst)g(time)104 +1451 y(it)g(visits)h(a)f(leaf)g(of)g(its)h(tree,)g(this)g(routine)g +(should)f(simply)f(call)h(y)o(our)g(ev)n(aluation)f(routine)i(and)g +(return)g(the)h(score)104 1492 y(for)d(the)i(p)q(osition)e(reac)o(hed)i +(at)f Fe(depth)f Fn(ply)g(within)g(the)i(tree.)62 1567 +y Fk(\017)21 b Fe(int)g(aphid)p 304 1567 V 15 w(stub)p +407 1567 V 14 w(stopsearch\(int)e(pass)p 836 1567 V 15 +w(stats[]\))p Fn(:)j(Called)16 b(only)f(b)o(y)i(the)g(absolute)f +(master)g(pro)q(cess,)j(this)104 1608 y(routine)d(should)g(c)o(hec)o(k) +h(y)o(our)e(timer)g(and)h(determine)g(if)f(y)o(our)h(time)e(limit)f +(has)k(b)q(een)g(exceeded)h(for)d(a)h(searc)o(h.)25 b(If)104 +1650 y(the)14 b(time)f(limit)e(has)j(b)q(een)h(exceeded,)h(this)e +(routine)g(should)f(return)i(1;)f(otherwise,)g(0.)62 +1725 y Fk(\017)21 b Fe(int)g(aphid)p 304 1725 V 15 w(stub)p +407 1725 V 14 w(visited\(\))p Fn(:)c(Called)d(b)o(y)g(the)g(sla)o(v)o +(es,)g(this)g(should)g(return)i(a)e(global)e(coun)o(t)j(of)e(the)i(n)o +(um)o(b)q(er)f(of)104 1766 y(no)q(des)g(visited)g(b)o(y)g(the)g +(program.)0 1882 y Fc(A.5)56 b(In)n(terface)18 b(Calls)h(Used)f(b)n(y)h +(Master)g(and)g(Sla)n(v)n(e)62 1951 y Fk(\017)i Fe(void)g(aphid)p +326 1951 V 14 w(startup\(argv\))p Fn(:)k(In)19 b(the)g(\014rst)h(pro)q +(cess)g(run,)g(PVM)f(is)g(spa)o(wned)g(on)g(the)g(mac)o(hines)f(sp)q +(eci\014ed,)104 1992 y(and)c(a)f(sla)o(v)o(e)h(pro)q(cess)i(is)e(spa)o +(wned)g(with)g(the)h(same)e(argumen)o(t)g(list)g Fe(\(argv\))g +Fn(as)h(the)h(master,)e(as)h(sp)q(eci\014ed)i(b)o(y)d(the)104 +2034 y Fe(aphid.config)e Fn(\014le.)18 b(In)c(a)g(spa)o(wned)g(pro)q +(cess,)h(the)g(APHID)f(library)f(nev)o(er)i(exits)f(this)g(function)g +(call.)62 2108 y Fk(\017)21 b Fe(void)g(aphid)p 326 2108 +V 14 w(exit\(\))p Fn(:)j(This)17 b(routine)h(remo)o(v)o(es)e(a)h(pro)q +(cess)j(from)15 b(the)j(PVM)g(group,)f(and)g(it)g(should)g(b)q(e)h +(called)104 2150 y(b)q(efore)e(an)o(y)f(pro)q(cess)j(exits)e(\(due)g +(to)g(errors)h(or)e(normal)f(completion\).)21 b(If)16 +b(the)g(pro)q(cess)h(is)f(the)g(absolute)g(master,)104 +2191 y(completion)11 b(of)i(this)h(routine)f(ensures)j(that)d(all)f(of) +h(the)h(spa)o(wned)g(pro)q(cesses)i(ha)o(v)o(e)d(b)q(een)i(sh)o(ut)f +(do)o(wn)f(successfully)m(.)62 2266 y Fk(\017)21 b Fe(int)g(aphid)p +304 2266 V 15 w(master\(\))p Fn(:)16 b(Returns)f(1)e(if)g(the)i(pro)q +(cess)h(is)d(a)h(master)f(in)h(the)g(hierarc)o(h)o(y)m(,)g(and)f(0)h +(otherwise.)62 2341 y Fk(\017)21 b Fe(int)g(aphid)p 304 +2341 V 15 w(slave\(\))p Fn(:)14 b(Returns)d(1)f(if)g(the)h(pro)q(cess)h +(w)o(as)e(spa)o(wned,)h(returns)h(0)e(if)f(it)h(is)g(the)h(absolute)f +(master)g(pro)q(cess)104 2382 y(whic)o(h)k(spa)o(wned)h(the)g(other)g +(pro)q(cesses.)23 b(Note)15 b(that)f(a)h(pro)q(cess)h(can)f(b)q(e)g(b)q +(oth)f(a)h(sla)o(v)o(e)f(and)g(a)g(master)g(dep)q(ending)104 +2424 y(on)f(the)i(hierarc)o(h)o(y)f(sp)q(eci\014ed)i(in)d +Fe(aphid.config)p Fn(.)954 2828 y(18)p eop +%%Page: 19 19 +19 18 bop 0 195 a Fc(A.6)56 b(In)n(terface)18 b(Calls)h(Used)f(b)n(y)h +(Masters)g(Only)62 263 y Fk(\017)i Fe(void)g(aphid)p +326 263 14 2 v 14 w(initserach\(int)e(maxdepth\))p Fn(:)d(Called)d(b)o +(y)h(the)g(absolute)g(master)g(pro)q(cess,)h(this)f(pro)q(cedure)h +(pre-)104 305 y(pares)i(to)g(start)g(a)f(searc)o(h)i(in)e(parallel.)26 +b(This)16 b(routine)h(calls)f Fe(aphid)p 1212 305 V 15 +w(stub)p 1315 305 V 15 w(encodeinit)p Fn(,)f(and)h(then)h(informs)e +(all)104 346 y(of)e(the)i(other)g(pro)q(cesses)i(of)c(the)i(curren)o(t) +h(state)f(of)e(the)i(game.)i(The)e(parameter)f(indicates)g(the)h(maxim) +n(um)10 b(depth)104 388 y(that)k(an)o(y)f(pro)q(cess)j(is)e(nominall)o +(y)d(allo)o(w)o(ed)i(to)g(searc)o(h,)i Fl(not)g(including)h(se)n(ar)n +(ch)e(extensions)p Fn(.)62 463 y Fk(\017)21 b Fe(int)g(aphid)p +304 463 V 15 w(rootsearch\(int)e(depth,)h(int)h(plytogo,)f(int)i +(alpha,)e(int)h(beta\))p Fn(:)26 b(This)18 b(routine)h(is)f(called)104 +504 y(b)o(y)d(the)h(absolute)g(master,)e(instead)i(of)f(calling)f(the)i +(t)o(ypical)f Fm(\013\014)i Fn(implemen)o(taiton.)i(It)d(allo)o(ws)e(a) +h(master)g(pro)q(cess)104 546 y(to)i(do)g(m)o(ultiple)e(passes)k(of)e +(the)h(tree)g(un)o(til)f(the)h(searc)o(h)g(is)g(completed,)f(or)g(the)h +(alarm)d(has)j(b)q(een)g(signalled)f(via)104 587 y Fe(aphid)p +217 587 V 14 w(stub)p 319 587 V 15 w(stopsearch)p Fn(.)f(If)e(the)g +(searc)o(h)i(is)d(allo)o(w)o(ed)g(to)h(complete,)f(this)h(routine)g +(returns)h(the)g(minim)o(ax)c(v)n(alue)104 629 y(of)i(the)i(tree)g +(that)f(it)f(has)h(b)q(een)h(ask)o(ed)f(to)g(searc)o(h.)62 +703 y Fk(\017)21 b Fe(int)g(aphid)p 304 703 V 15 w(intnode)p +473 703 V 14 w(premove\(int)e(depth,)i(char)g(*moveptr\))p +Fn(:)15 b(Called)d(b)o(y)h(the)g(absolute)g(master,)e(this)i(rou-)104 +745 y(tine)h(stores)h(mo)o(v)o(es)e(made)f(b)q(efore)j(a)f(call)f(to)g +Fe(aphid)p 938 745 V 15 w(rootsearch)f Fn(in)h(the)i(mo)o(v)o(e)d +(list.)62 820 y Fk(\017)21 b Fe(void)g(aphid)p 326 820 +V 14 w(endsearch\(\))p Fn(:)15 b(The)e(absolute)f(master)g(should)g +(call)f(this)i(routine)f(when)h(it)f(is)g(\014nished)h(searc)o(hing)f +(a)104 861 y(tree)i(that)e(has)h(b)q(een)h(called)e(;)h(it)f(stops)h +(the)g(sla)o(v)o(es)g(from)e(w)o(orking)g(on)i(the)g(lea)o(v)o(es)g(of) +f(the)h(game)e(tree)j(and)e(prepares)104 903 y(the)i(sla)o(v)o(es)g(to) +g(receiv)o(e)h(a)f(new)g(ro)q(ot)g(p)q(osition.)62 977 +y Fk(\017)21 b Fe(void)g(aphid)p 326 977 V 14 w(horizon\(int)f(depth\)) +p Fn(:)15 b(A)d(\\master")e(pro)q(cess)j(calls)e(this)h(routine)f(to)g +(determine)h(if)e(it)h(has)h(reac)o(hed)104 1019 y(its)i(arti\014cial)f +(horizon.)62 1094 y Fk(\017)21 b Fe(void)g(aphid)p 326 +1094 V 14 w(eval)p 428 1094 V 15 w(leaf\(int)f(alpha,)h(int)g(beta,)g +(int)g(depth,)g(char)g(*p)p 1403 1094 V 15 w(hash,)g(char)g(*p)p +1702 1094 V 15 w(key\))p Fn(:)104 1135 y(This)10 b(routine)h +(determines)g(a)f(score)i(v)n(alue)d(for)h(the)i(leaf,)e(based)h(on)f +(the)h(b)q(est)h(information)7 b(a)o(v)n(ailable)h(to)j(the)g(master.) +104 1177 y Fe(p)p 129 1177 V 15 w(hash)i Fn(and)h Fe(p)p +348 1177 V 15 w(key)g Fn(are)g(required)h(to)f(determine)f(if)g(this)h +(no)q(de)h(has)f(b)q(een)h(previously)e(visited.)62 1251 +y Fk(\017)21 b Fe(void)g(aphid)p 326 1251 V 14 w(intnode)p +494 1251 V 15 w(start\(int)f(depth,)g(char)h(*p)p 1032 +1251 V 15 w(hash,)g(char)g(*p)p 1331 1251 V 15 w(key\))p +Fn(:)16 b(Called)11 b(b)o(y)g(a)h(master)f(pro)q(cess,)104 +1293 y(this)j(routine)g(initializes)e(b)q(ound)i(gathering)g +(information)d(for)i(an)h(in)o(terior)f(no)q(de)h(within)f(the)i(game)d +(tree.)19 b Fe(p)p 1850 1293 V 16 w(hash)104 1334 y Fn(and)13 +b Fe(p)p 209 1334 V 16 w(key)g Fn(are)h(required)h(to)f(determine)g(if) +f(this)h(no)q(de)g(has)g(b)q(een)h(previously)f(visited.)62 +1409 y Fk(\017)21 b Fe(void)g(aphid)p 326 1409 V 14 w(intnode)p +494 1409 V 15 w(move\(int)f(depth,)g(char)h(*moveptr\))p +Fn(:)k(Called)18 b(b)o(y)g(a)g(master)g(pro)q(cess,)i(this)f(routine) +104 1451 y(inserts)c(the)f(mo)o(v)o(e)e(p)q(oin)o(ted)i(to)f(b)o(y)h +Fe(moveptr)e Fn(in)o(to)h(a)h(hidden)g(mo)o(v)o(e)e(list)h(that)h(will) +e(ev)o(en)o(tually)h(b)q(e)i(sen)o(t)f(to)g(a)f(sla)o(v)o(e)104 +1492 y(in)g Fe(aphid)p 265 1492 V 15 w(eval)p 368 1492 +V 15 w(leaf)p Fn(.)62 1567 y Fk(\017)21 b Fe(void)g(aphid)p +326 1567 V 14 w(intnode)p 494 1567 V 15 w(update\(int)e(depth,)i(int)g +(value\))p Fn(:)27 b(Called)19 b(b)o(y)f(the)i(master)f(pro)q(cess,)j +(this)d(routine)104 1608 y(tak)o(es)d(the)g(v)n(alue)f(returned)j(b)o +(y)d(the)i(c)o(hild)e Fm(\013\014)j Fn(call)d(and)h(uses)h(it)e(to)h +(up)q(date)g(the)h(hidden)e(\\b)q(ound")h(information)104 +1650 y(gathered)f(for)e(ev)o(ery)i(no)q(de)f(in)f(the)i(master's)e +(tree.)62 1725 y Fk(\017)21 b Fe(void)g(aphid)p 326 1725 +V 14 w(intnode)p 494 1725 V 15 w(fixbound\(int)e(depth\))p +Fn(:)h(In)c(the)g(case)h(of)e(a)h(cuto\013,)g(this)g(routine)g(will)e +(\014x)h(the)i(hidden)104 1766 y(b)q(ound)d(information)d(when)j(not)g +(all)f(mo)o(v)o(es)f(ha)o(v)o(e)i(b)q(een)h(fully)d(explored.)62 +1841 y Fk(\017)21 b Fe(void)g(aphid)p 326 1841 V 14 w(intnode)p +494 1841 V 15 w(end\(int)f(depth,)h(int)g(*score\))p +Fn(;)12 b(This)j(routine)f(is)g(called)g(b)o(y)h(a)f(master)f(for)h(ev) +o(ery)i(in-)104 1882 y(ternal)d(no)q(de)g(within)f(the)i(tree,)g(and)e +(ensures)j(that)e(the)g(score)i(returned)f(is)f(consisten)o(t)h(with)e +(previously)h(gathered)104 1924 y(information)e(ab)q(out)j(the)g(no)q +(de.)0 2040 y Fc(A.7)56 b(In)n(terface)18 b(Calls)h(Used)f(b)n(y)h(Sla) +n(v)n(es)g(Only)62 2108 y Fk(\017)i Fe(int)g(aphid)p +304 2108 V 15 w(checkalarm\(\))p Fn(:)e(This)d(routine)h(c)o(hec)o(ks)g +(to)f(see)h(if)f(a)f(searc)o(h)j(should)e(b)q(e)g(terminated.)24 +b(If)16 b(the)h(v)n(alue)104 2150 y(returned)f(is)e(equal)f(to)h(0,)g +(the)h(searc)o(h)g(should)f(con)o(tin)o(ue.)19 b(If)13 +b(the)i(v)n(alue)f(returned)h(is)f(not)h(equal)e(to)h(0,)g(the)g +(curren)o(t)104 2191 y(searc)o(h)h(has)f(b)q(een)h(in)o(terrupted,)g +(and)e(w)o(e)h(should)g(terminate)f(it)h(in)f(a)h(\\nice")g(w)o(a)o(y)m +(.)954 2828 y(19)p eop +%%Page: 20 20 +20 19 bop 0 195 a Fc(A.8)56 b(The)18 b(\\aphid.con\014g")h(File)e +(Description)62 263 y Fk(\017)k Fn(The)15 b(\014rst)g(line)f(con)o +(tains)h(t)o(w)o(o)f(in)o(tegers:)21 b(The)15 b(n)o(um)o(b)q(er)f(of)g +(lev)o(els)g(in)g(the)i(pro)q(cess)g(hierarc)o(h)o(y)m(,)e(and)h(the)g +(minim)n(um)104 305 y(gran)o(ularit)o(y)d(of)i(w)o(ork)f(that)h(w)o(e)g +(are)h(allo)q(cated)e(in)g(parallel.)62 380 y Fk(\017)21 +b Fn(The)d(next)g(lines)g(eac)o(h)g(con)o(tain)g(one)g(in)o(teger,)g +(eac)o(h)g(in)o(teger)h(represen)o(ting)g(the)f(v)n(alue)g(of)f +Fm(d)1607 365 y Fd(0)1636 380 y Fn(for)g(a)h(lev)o(el)f(in)g(the)104 +421 y(pro)q(cess)e(hierarc)o(h)o(y)m(.)62 496 y Fk(\017)21 +b Fn(The)14 b(last)g(lines)g(indicate)h(what)f(mac)o(hines)f(the)i(pro) +q(cesses)i(should)c(b)q(e)i(spa)o(wned)g(on,)f(and)g(what)g(executable) +h(is)f(to)104 537 y(b)q(e)j(run,)g(one)g(line)f(p)q(er)i(pro)q(cess)g +(to)f(b)q(e)g(spa)o(wned.)27 b(By)17 b(default,)f(APHID)h(will)e(spa)o +(wn)i(an)f(executable)i(with)e(the)104 579 y(same)d(program)f(name)h +(as)h(the)h(original)d(program)g(unless)j(a)f Fe(#)f +Fn(c)o(haracter)j(app)q(ears)e(on)g(the)h(line,)e(whic)o(h)h(indicates) +104 620 y(a)h(separation)h(b)q(et)o(w)o(een)h(the)f(mac)o(hine)e(name)g +(and)i(the)g(program)e(name.)22 b(The)16 b(absolute)f(master)g(pro)q +(cess)j(is)d(not)104 662 y(listed)c(in)f(this)h(hierarc)o(h)o(y)m(.)17 +b(A)10 b(pro)q(cess)j(hierarc)o(h)o(y)e(can)g(b)q(e)g(sp)q(eci\014ed)i +(using)d(tabs)h(to)g(mo)o(v)o(e)e(the)i(start)h(of)e(the)h(mac)o(hine) +104 703 y(name)h(o)o(v)o(er)i(in)g(the)g(\014le.)954 +2828 y(20)p eop +%%Trailer +end +userdict /end-hook known{end-hook}if +%%EOF diff --git a/parallel/ciancarini94comparison.ps b/parallel/ciancarini94comparison.ps new file mode 100755 index 0000000..ec7f5d1 --- /dev/null +++ b/parallel/ciancarini94comparison.ps @@ -0,0 +1,24943 @@ +%!PS-Adobe-2.0 +%%Title: tr14 +%%Creator: PrintMonitor +%%CreationDate: Monday, May 23, 1994 +%%Pages: (atend) +%%BoundingBox: ? ? ? ? +%%PageBoundingBox: 28 30 566 811 +%%For: cianca +%%DocumentProcSets: "(AppleDict md)" 71 0 +%% © Copyright Apple Computer, Inc. 1989-91 All Rights Reserved. +%%EndComments +%%BeginProcSet: "(AppleDict md)" 71 0 +userdict/LW{save statusdict/product get(LaserWriter)anchorsearch +exch pop{dup length 0 eq{pop 1}{( Plus)eq{2}{3}ifelse}ifelse}{0}ifelse exch restore}bind put +userdict/downloadOK known not{userdict/downloadOK{systemdict dup/eexec known exch/cexec known and LW dup 1 ne exch 2 ne and and vmstatus exch sub exch pop 120000 gt and}bind put}if +userdict/type42known known not{userdict/type42known systemdict/resourcestatus known{42/FontType resourcestatus{pop pop true}{false}ifelse }{false}ifelse put}if +type42known not downloadOK and {userdict begin /*charpath /charpath load def/charpathflag false def/charpath{userdict/charpathflag true put userdict/*charpath get exec userdict/charpathflag false put}bind def end}if +userdict/checkload known not{userdict/checkload{{pop exec} {save 3 dict begin/mystring 6050 string def +exch/endstring exch def{currentfile mystring readline not{stop}if endstring eq{exit}if}loop end restore pop}ifelse}bind put}if +userdict/LW+{LW 2 eq}bind put +userdict/ok known not{userdict/ok{systemdict/statusdict known dup{LW 0 gt and}if}bind put}if +systemdict/currentpacking known{currentpacking true setpacking}if +/md 270 dict def md begin +/av 71 def +/T true def/F false def/mtx matrix def/s75 75 string def/sa8 8 string def/sb8 8 string def +/sc8 8 string def/sd8 8 string def/s1 ( ) def/pxs 1 def/pys 1 def +/ns false def +1 0 mtx defaultmatrix dtransform exch atan/pa exch def/nlw .24 def/ppr [-32 -29.52 762 582.48] def +/pgr [0 0 0 0] def +/pgs 1 def/por true def/xb 500 array def/so true def/tso true def/fillflag false def/pnm 1 def/fmv true def +/sfl false def/ma 0 def/invertflag false def/dbinvertflag false def/xflip false def/yflip false def/noflips true def/scaleby96 false def/fNote true def/fBitStretch true def +/4colors false def/fg (Rvd\001\001\000\000\177) def +/bdf{bind def}bind def +/xdf{exch def}bdf +/xl{neg exch neg translate}bdf +/fp{pnsh 0 ne pnsv 0 ne and}bdf +/nop{}bdf/lnop[/nop load]cvx bdf +/vrb[ +{fp{fg 6 get 0 ne{gsave stroke grestore}{gsave 1 setlinewidth pnsh pnsv scale stroke grestore}ifelse}if newpath}bind +/eofill load +dup +/newpath load +2 index +dup +{clip newpath}bind +{}bind +dup +2 copy +]def +/sgd systemdict/setpagedevice known{{2 dict begin/PreRenderingEnhance exch def/Policies 1 dict dup/PreRenderingEnhance 1 put def currentdict end setpagedevice}}{{pop}}ifelse bdf + +/svsc systemdict/currentcolorscreen known{{currentcolorscreen/dkspf xdf/dkrot xdf/dkfreq xdf/dyspf xdf/dyrot xdf/dyfreq xdf/dmspf xdf/dmrot xdf/dmfreq xdf +/dcspf xdf/dcrot xdf/dcfreq xdf}}{{currentscreen/spf xdf/rot xdf/freq xdf}}ifelse bdf +/doop{vrb exch get exec}bdf +/psu{/udf xdf/tso xdf /fNote xdf/fBitStretch xdf/scaleby96 xdf/yflip xdf/xflip xdf +/invertflag xdf/dbinvertflag invertflag statusdict begin version cvr 47.0 ge product (LaserWriter) eq not and end invertflag and {not}if def +xflip yflip or{/noflips false def}if +/pgs xdf 2 index .72 mul exch div/pys xdf div .72 mul/pxs xdf ppr astore pop pgr astore pop/por xdf sn and/so xdf}bdf +/tab{userdict /11x17 known{userdict begin /11x17 load exec end}{statusdict /setpage known{statusdict begin 792 1224 1 setpage end}{statusdict /setpageparams known{statusdict begin 792 1224 0 1 setpageparams end}if}ifelse}ifelse}bdf +/a3Size{userdict /a3 known{userdict begin /a3 load exec end}{statusdict /setpageparams known{statusdict begin 842 1191 0 1 setpageparams end}if}ifelse}bdf +/txpose{fNote{smalls}{bigs}ifelse pgs get exec pxs pys scale ppr aload pop por{noflips{pop exch neg exch translate pop 1 -1 scale}if +xflip yflip and{pop exch neg exch translate 180 rotate 1 -1 scale ppr 3 get ppr 1 get neg sub neg ppr 2 get ppr 0 get neg sub neg translate}if +xflip yflip not and{pop exch neg exch translate pop 180 rotate ppr 3 get ppr 1 get neg sub neg 0 translate}if yflip xflip not and{ppr 1 get neg ppr 0 get neg translate}if} +{noflips{translate pop pop 270 rotate 1 -1 scale}if xflip yflip and{translate pop pop 90 rotate 1 -1 scale ppr 3 get ppr 1 get neg sub neg ppr 2 get ppr 0 get neg sub neg translate}if +xflip yflip not and{translate pop pop 90 rotate ppr 3 get ppr 1 get neg sub neg 0 translate}if yflip xflip not and{translate pop pop 270 rotate ppr 2 get ppr 0 get neg sub neg 0 exch translate}if}ifelse +statusdict begin/waittimeout where{pop waittimeout 300 lt{statusdict/waittimeout 300 put}if}if end +scaleby96{ppr aload pop 4 -1 roll add 2 div 3 1 roll add 2 div 2 copy translate .96 dup scale neg exch neg exch translate}if}bdf +/fr{4 copy pgr aload pop 3 -1 roll add 3 1 roll exch add 6 2 roll 3 -1 roll +sub 3 1 roll exch sub 3 -1 roll exch div 3 1 roll div exch scale pop pop xl}bdf +/obl{{0.212557 mul}{pop 0}ifelse}bdf +/sfd{ps fg 5 -1 roll get mul 100 div 0 ps 5 -1 roll obl ps neg 0 0 6a astore makefont setfont}bdf +/fnt{findfont sfd}bdf +/bt{sa 3 1 roll 3 index and put}bdf +/sa(\000\000\000\000\000\000\000\000\000\000)def +/fs{0 1 bt 1 2 bt 2 4 bt 3 8 bt 4 16 bt 5 32 bt 6 64 bt 7 128 bt sa exch 8 exch put}bdf +/mx1 matrix def +/mx2 matrix def +/mx3 matrix def +/bu{currentpoint 4colors{currentcmykcolor}{currentrgbcolor}ifelse currentlinewidth currentlinecap currentlinejoin +currentdash exch aload length fg 5 sfl{1}{0}ifelse put pnsv pnsh +2t aload pop 3a aload pop mx2 aload pop mx1 aload pop mtx currentmatrix aload pop +mx3 aload pop ps pm restore/ps xdf mx3 astore pop}bdf +/bn{/pm save def mx3 setmatrix newpath 0 0 moveto ct dup 39 get 0 exch getinterval cvx exec mtx astore setmatrix mx1 astore pop mx2 astore pop 3a +astore pop 2t astore pop/pnsh xdf/pnsv xdf gw +/sfl fg 5 get 0 ne def array astore exch setdash setlinejoin setlinecap +setlinewidth 4colors{mysetcmykcolor}{setrgbcolor}ifelse moveto}bdf +/fc{save vmstatus exch sub 50000 lt +{(%%[|0|]%%)=print flush}if pop restore}bdf +/tc{32768 div add 3 1 roll 32768 div add 2t astore pop}bdf +/3a [0 0 0] def +/2t 2 array def +/tp{3a astore pop}bdf +/tt{mx2 currentmatrix pop currentpoint 2 copy 2t aload pop qa 2 copy translate 3a aload pop exch dup 0 eq +{pop}{1 eq{-1 1}{1 -1}ifelse scale}ifelse rotate pop neg exch neg exch translate moveto}bdf +/te{mx2 setmatrix}bdf +/th{3 -1 roll div 3 1 roll exch div 2 copy mx1 scale pop scale/sfl true def}bdf +/tu{1 1 mx1 itransform scale/sfl false def}bdf +/ts{1 1 mx1 transform scale/sfl true def}bdf +/fz{/ps xdf}bdf +/dv{dup 0 ne{div}{pop}ifelse}bdf +/pop4{pop pop pop pop}bdf +/it{sfl{mx1 itransform}if}bdf +/gm{exch it moveto}bdf/rm{it rmoveto}bdf +/lm{currentpoint sfl{mx1 transform}if exch pop sub 0 exch it rmoveto}bdf +/fm{statusdict/manualfeed known}bdf +/se{statusdict exch/manualfeed exch put}bdf +/mf{dup/ma exch def 0 gt{fm se/t1 5 st ok ma 1 gt and{/t2 0 st/t3 0 st +statusdict/manualfeedtimeout 3600 put +}if}if}bdf +/jn{/statusdict where exch pop{statusdict exch /jobname exch put}if}bdf +/pen{pnm mul/pnsh xdf pnm mul/pnsv xdf pnsh setlinewidth}bdf +/min{2 copy gt{exch}if pop}bdf +/max{2 copy lt{exch}if pop}bdf +/dh{fg 6 1 put array astore dup {1 pxs div mul exch}forall astore exch pop exch pop exch setdash}bdf +/ih[currentdash]def +/rh{fg 6 0 put ih aload pop setdash}bdf +/dl{gsave nlw pys div setlinewidth 0 setgray}bdf +/dlin{exch currentpoint currentlinewidth 2 div dup +translate newpath moveto lineto currentpoint stroke grestore moveto}bdf +/lin{fg 6 get 0 ne{exch lineto currentpoint 0 doop moveto} +{exch currentpoint/pnlv xdf/pnlh xdf gsave newpath/@1 xdf/@2 xdf fp{pnlh @2 lt{pnlv @1 ge +{pnlh pnlv moveto @2 @1 lineto pnsh 0 rlineto +0 pnsv rlineto pnlh pnsh add pnlv pnsv add lineto pnsh neg 0 rlineto} +{pnlh pnlv moveto pnsh 0 rlineto @2 pnsh add @1 lineto 0 pnsv rlineto +pnsh neg 0 rlineto pnlh pnlv pnsv add lineto}ifelse}{pnlv @1 gt +{@2 @1 moveto pnsh 0 rlineto pnlh pnsh add pnlv lineto 0 pnsv rlineto +pnsh neg 0 rlineto @2 @1 pnsv add lineto}{pnlh pnlv moveto pnsh 0 rlineto +0 pnsv rlineto @2 pnsh add @1 pnsv add lineto pnsh neg 0 rlineto +0 pnsv neg rlineto}ifelse}ifelse +closepath fill}if @2 @1 grestore moveto}ifelse}bdf +/gw{/pnm fg 3 get fg 4 get div def}bdf +/lw{fg exch 4 exch put fg exch 3 exch put gw pnsv pnsh pen}bdf +/barc{/@1 xdf/@2 xdf/@3 xdf/@4 xdf/@5 xdf +/@6 xdf/@7 xdf/@8 xdf gsave +@5 @7 add 2 div @6 @8 add 2 div translate newpath 0 0 moveto +@5 @7 sub @6 @8 sub mtx currentmatrix pop scale @1{newpath}if +0 0 0.5 @4 @3 arc @4 @3 sub abs 360 ge{closepath}if +mtx setmatrix @2 doop grestore}bdf +/ar{dup 0 eq barc}bdf +/ov{0 exch 360 exch true barc}bdf +/rc{dup/@t xdf 0 eq{4 copy 3 -1 roll eq 3 1 roll eq and{pnsv 2 div sub exch pnsh 2 div sub exch 4 2 roll pnsv 2 div add exch pnsh 2 div add exch +/@t 1 def}if}if currentpoint 6 2 roll newpath 4 copy 4 2 roll exch moveto 6 -1 roll lineto lineto lineto closepath @t doop moveto}bdf +/mup{dup pnsh 2 div le exch pnsv 2 div le or}bdf +/rr{/@1 xdf 2. div/@2 xdf 2. div/@3 xdf +/@4 xdf/@5 xdf/@6 xdf/@7 xdf +@7 @5 eq @6 @4 eq @2 mup or or{@7 @6 @5 @4 @1 rc} +{@4 @6 sub 2. div dup @2 lt{/@2 xdf}{pop}ifelse +@5 @7 sub 2. div dup @2 lt{/@2 xdf}{pop}ifelse +@1 0 eq{/@2 @2 pnsh 2 div 2 copy gt{sub def}{0 pop4}ifelse}if +currentpoint newpath +@4 @6 add 2. div @7 moveto +@4 @7 @4 @5 @2 arcto pop4 +@4 @5 @6 @5 @2 arcto pop4 +@6 @5 @6 @7 @2 arcto pop4 +@6 @7 @4 @7 @2 arcto pop4 +closepath @1 doop moveto}ifelse}bdf +/pr{gsave newpath/pl{exch moveto/pl{exch lineto}def}def}bdf +/pl{exch lineto}bdf +/ep{dup 0 eq{{moveto}{exch lin}{}{(%%[|1|]%%)= flush}pathforall +pop grestore}{doop grestore}ifelse currentpoint newpath moveto}bdf +/gr{64. div setgray}bdf +/savescreen{ns not{/ns true def systemdict/currentcolorscreen known{currentcolorscreen/pkspf xdf/pkrot xdf/pkfreq xdf/pyspf xdf/pyrot xdf/pyfreq xdf/pmspf xdf/pmrot xdf/pmfreq xdf +/pcspf xdf/pcrot xdf/pcfreq xdf}{currentscreen/sspf xdf/srot xdf/sfreq xdf}ifelse}if}bdf +/restorescreen{/ns false def systemdict/setcolorscreen known{pcfreq pcrot/pcspf load pmfreq pmrot/pmspf load pyfreq pyrot/pyspf load +pkfreq pkrot/pkspf load setcolorscreen}{sfreq srot/sspf load setscreen}ifelse}bdf +/pat{savescreen sa8 +copy pop 9.375 pa por not{90 add}if{1 add 4 mul cvi sa8 exch get exch 1 add 4 mul cvi 7 sub bitshift 1 and}setscreen exch not{gr}{pop}ifelse}bdf +/sg{restorescreen gr}bdf +/cpat{savescreen 10 2 roll 7 -1 roll sa8 copy pop 9.375 pa por not{90 add}if{1 add 4 mul cvi sa8 exch get exch 1 add 4 mul cvi 7 sub bitshift 1 and}8 -1 roll sb8 copy pop 9.375 pa por not{90 add}if{1 add 4 mul cvi sb8 +exch get exch 1 add 4 mul cvi 7 sub bitshift 1 and}9 -1 roll sc8 copy pop 9.375 pa por not{90 add}if{1 add 4 mul cvi sc8 exch get exch 1 add 4 mul cvi 7 sub bitshift 1 and}10 -1 roll sd8 copy pop 9.375 pa por not{90 add}if{1 add 4 mul cvi sd8 +exch get exch 1 add 4 mul cvi 7 sub bitshift 1 and}psuedo1 dsc 4{4 -1 roll 1 exch 64 div sub}repeat mysetcmykcolor pop pop}bdf +systemdict/setcolorscreen known{/psuedo1 lnop bdf/dsc/setcolorscreen load def}{/psuedo1{16{pop}repeat sa8 copy pop 9.375 pa por not{90 add}if{1 add 4 mul cvi sa8 exch get exch 1 add 4 mul cvi 7 sub bitshift 1 and}}bdf +/bwsc{setscreen dup gr 0 exch 0 exch 64 exch 64 exch 64 exch}bdf/dsc/bwsc load def +}ifelse +systemdict/setcmykcolor known{/mysetcmykcolor /setcmykcolor load def}{/mysetcmykcolor{1 sub 4 1 roll 3{3 index add neg dup 0 lt{pop 0}if 3 1 roll}repeat setrgbcolor pop}bdf}ifelse +/dc{transform round .5 sub exch round .5 sub exch itransform}bdf +/sn{userdict/smooth4 known}bdf +/x8{3 bitshift}bdf +/x4{2 bitshift}bdf +/d4{-2 bitshift}bdf +/d8{-3 bitshift}bdf +/rb{15 add -4 bitshift 1 bitshift}bdf +/db{/@7 save def/@1 xdf/@2 xdf/@3 xdf/@4 xdf/@5 xdf/@6 @5 @3 4 add mul def +dc translate scale/xdbit 1 1 idtransform abs/ydbit exch def abs def{0 0 1 ydbit add 1 10 rc clip}if +@1 0 eq @1 4 eq or{currentrgbcolor 1 setgray ydbit 0 1 ydbit add 1 2 rc setrgbcolor}if +@1 3 eq @1 7 eq or{1 setgray}{currentrgbcolor 2 index eq exch 2 index eq and exch pop{0 setgray}if}ifelse/@9 @1 0 eq @1 1 eq @1 3 eq or or dbinvertflag xor def/@13 @6 def +@2 fBitStretch or{/@10 @4 x4 def/@11 @3 x4 def/@12 @10 rb def/@13 @12 @11 mul def/@15 1 1 dtransform abs/calcY 1 index def round cvi/@14 exch def +abs/calcX 1 index def round cvi scaleby96 not{1 add}if def/@16 @15 rb def/@17 @16 @14 mul def}if +sn @13 60000 lt and @2 fBitStretch or and{mtx currentmatrix dup 1 get exch 2 get 0. eq exch 0. eq and @17 60000 lt and fBitStretch and{@16 3 bitshift @14 @9 [calcX 0 0 calcY 0 0]{@17 string @13 string +currentfile @6 string readhexstring pop 1 index @4 @3 @5 @12 @2 smooth4 +@10 @11 @12 dup string 5 index @15 @14 @16 dup string stretch}imagemask}{@12 x8 @11 @9 [@10 0 0 @11 0 0]{@13 string +currentfile @6 string readhexstring pop 1 index @4 @3 @5 @12 @2 smooth4}imagemask}ifelse}{@5 3 bitshift @3 4 add @9 [@4 0 0 @3 0 2]{currentfile @6 string readhexstring pop}imagemask}ifelse +@7 restore}bdf +systemdict/setcmykcolor known{/psuedo lnop bdf/di/colorimage load def}{/routines[{.3 mul add 1}bind{.59 mul add 2}bind{.11 mul add round cvi str exch i exch put/i i 1 add def 0 0}bind]def +/psuedo{/i 0 def 0 exch 0 exch{exch routines exch get exec}forall pop pop str}bdf/bwi{pop pop image}bdf/di/bwi load def}ifelse +/cdb{/@7 save def/@1 xdf/@2 xdf/@3 xdf/@4 xdf/@5 xdf +systemdict/setcmykcolor known not{dc}if translate scale /@6 xdf +/@18 @5 dup 60000 ge{pop 60000}if string def @6 not{/str @18 0 @18 length 3 idiv getinterval def}if @4 @3 8 [@4 0 0 @3 0 0]@6{{currentfile @18 readhexstring pop}image}{{currentfile @18 readhexstring pop psuedo}false 3 di}ifelse @7 restore}bdf +/wd 16 dict def +/mfont 14 dict def +/mdf{mfont wcheck not{/mfont 14 dict def}if mfont begin xdf end}bdf +/cf{{1 index/FID ne{def}{pop pop}ifelse}forall}bdf/rf{/@1 exch def/@2 exch def +FontDirectory @2 known{cleartomark pop}{findfont dup begin dup length @1 add dict begin +cf{/Encoding macvec def}{Encoding dup length array copy/Encoding exch def +counttomark 2 idiv{Encoding 3 1 roll put}repeat}ifelse +pop +exec currentdict end end @2 exch definefont pop}ifelse}bdf +/bmbc{exch begin wd begin +/cr xdf +save +CharTable cr 6 mul 6 getinterval{}forall +/bitheight xdf/bitwidth xdf +.96 div/width xdf +Gkernmax add/XOffset xdf Gdescent add/YOffset xdf/rowbytes xdf +rowbytes 255 eq{0 0 0 0 0 0 setcachedevice} +{Gnormsize dup scale +width 0 XOffset YOffset bitwidth XOffset add bitheight YOffset add +setcachedevice +rowbytes 0 ne{ +XOffset YOffset translate newpath 0 0 moveto +bitwidth bitheight scale +sn{ +/xSmt bitwidth x4 def +/ySmt bitheight x4 def +/rSmt xSmt rb def +rSmt x8 ySmt true +[xSmt 0 0 ySmt neg 0 ySmt] +{rSmt ySmt mul string CharData cr get +1 index bitwidth bitheight rowbytes rSmt tso smooth4} +}{rowbytes 3 bitshift bitheight 4 add true +[bitwidth 0 0 bitheight neg 0 bitheight 2 add] +{CharData cr get} +}ifelse +imagemask +}if +}ifelse +restore +end end +}bdf +/bb{.96 exch div/Gnormsize mdf 2 index +/Gkernmax mdf 1 index/Gdescent mdf +3 index div 4 1 roll +2 index div 1. 5 2 roll +exch div 4 1 roll +4 array astore/FontBBox mdf +}bdf +/cdf{mfont/CharData get 3 1 roll put}bdf +/bf{ +mfont begin +/FontType 3 def +/FontMatrix [1 0 0 1 0 0] def +/Encoding macvec def +/MFontType 0 def +/BuildChar/bmbc load def +end +mfont definefont pop +}bdf +/wi LW 1 eq{{gsave 0 0 0 0 0 0 0 0 moveto lineto lineto lineto closepath clip stringwidth grestore}bind}{/stringwidth load}ifelse def +/aps{0 get 124 eq}bdf +/xc{s75 cvs dup}bdf +/xp{put cvn}bdf +/scs{xc 3 67 put dup 0 95 xp}bdf +/sos{xc 3 79 xp}bdf +/sbs{xc 1 66 xp}bdf +/sis{xc 2 73 xp}bdf +/sob{xc 2 79 xp}bdf +/sss{xc 4 83 xp}bdf +/dd{exch 1 index add 3 1 roll add exch}bdf +/smc{moveto dup show}bdf +/ndf2{udf{dup /FontType get 0 eq{/FDepVector get{dup /FontType get 0 eq{ndf2}{dup /df2 known{begin df2 0 null put end +}{pop}ifelse}ifelse}forall}{/df2 known{dup begin df2 0 null put end}if}ifelse}{pop}ifelse}bdf +/kwn{FontDirectory 1 index known{findfont dup ndf2 exch pop}}bdf +/gl{1 currentgray sub setgray}bdf +/newmm{dup /FontType get 0 eq{dup maxlength dict begin{1 index/FID ne 2 index/UniqueID ne and{def}{pop pop}ifelse}forall currentdict end +dup /FDepVector 2 copy get[exch 6 index exch 6 index exch{newmm 3 1 roll}forall pop pop] put dup +}{/mfont 10 dict def mfont begin/FontMatrix [1 0 0 1 0 0] def +/FontType 3 def/Encoding macvec def/df 1 index def/df2 1 array def/FontBBox [0 0 1 1] def/StyleCode 2 index def +/mbc{bcarray StyleCode get}def/BuildChar{exch begin wd begin/cr exch def/cs s1 dup 0 cr put def df /MFontType known not{ +df2 0 get null eq{df dup length 2 add dict begin{1 index/FID ne 2 index/UniqueID ne and{def}{pop pop}ifelse}forall +/StrokeWidth 1 0 FontMatrix idtransform pop dup nlw mul pys div ps div exch 0.012 mul 2 copy le{exch}if pop def/PaintType 2 def currentdict end +/q exch definefont df2 exch 0 exch put}if}if mbc exec end end}def end mfont}ifelse +3 index exch definefont exch pop}bdf +/mb{dup sbs kwn{0 2 index findfont newmm exch pop exch pop exch pop}ifelse sfd}bdf +/mo{dup sos kwn{2 2 index findfont newmm exch pop exch pop exch pop}ifelse sfd}bdf +/ms{dup sss kwn{4 2 index findfont newmm exch pop exch pop exch pop}ifelse sfd}bdf +/ou{dup sos kwn{mfont/df2 known{mfont begin df2 0 null put end}if 3 2 index findfont newmm exch pop exch pop exch pop}ifelse sfd}bdf +/su{dup sss kwn{mfont/df2 known{mfont begin df2 0 null put end}if 5 2 index findfont newmm exch pop exch pop exch pop}ifelse sfd}bdf +/ao{/fmv true def ou}bdf/as{/fmv true def su}bdf +/vo{/fmv false def ou}bdf/vs{/fmv false def su}bdf +/c{currentrgbcolor dup 4 1 roll eq 3 1 roll eq and/gray xdf}bdf +/bcarray[{/da .03 def df setfont gsave cs wi 1 index 0 ne{exch da add exch}if grestore setcharwidth +cs 0 0 smc da 0 smc da da smc 0 da moveto show}bind dup{/da 1 ps div def df setfont gsave cs wi 1 index 0 ne{exch da add exch}if grestore setcharwidth +cs 0 0 smc da 0 smc da da smc 0 da smc c gray{gl}{1 setgray}ifelse da 2. div dup moveto show}bind +{df setfont gsave cs wi grestore setcharwidth c gray{gl}{currentrgbcolor 1 setgray}ifelse cs 0 0 smc df2 0 get setfont +gray{gl}{4 1 roll setrgbcolor}ifelse 0 0 moveto show}bind +{/da 1 ps div def/ds .05 def/da2 da 2. div def df setfont gsave cs wi 1 index 0 ne{exch ds add da2 add exch}if grestore setcharwidth +cs ds da2 add .01 add 0 smc 0 ds da2 sub translate 0 0 smc da 0 smc da da smc 0 da smc c gray{gl}{1 setgray}ifelse da 2. div dup moveto show}bind +{/da .05 def df setfont gsave cs wi 1 index 0 ne{exch da add exch}if grestore setcharwidth c cs da .01 add 0 smc 0 da translate +gray{gl}{currentrgbcolor 1 setgray 4 -1 roll}ifelse 0 0 smc gray{gl}{4 1 roll setrgbcolor}ifelse df2 0 get setfont 0 0 moveto show}bind]def +/st{1000 mul usertime add dup 2147483647 gt{2147483647 sub}if def}bdf +/the{usertime sub dup 0 lt exch -2147483648 gt and}bdf +/6a 6 array def +/2a 2 array def +/3q 3 array def +/qs{3 -1 roll sub exch 3 -1 roll sub exch}bdf +/qa{3 -1 roll add exch 3 -1 roll add exch}bdf +/qm{3 -1 roll 1 index mul 3 1 roll mul}bdf +/qn{6a exch get mul}bdf +/qA .166667 def/qB .833333 def/qC .5 def +/qx{6a astore pop +qA 0 qn qB 2 qn add qA 1 qn qB 3 qn add +qB 2 qn qA 4 qn add qB 3 qn qA 5 qn add +qC 2 qn qC 4 qn add qC 3 qn qC 5 qn add}bdf +/qp{6 copy 12 -2 roll pop pop}bdf +/qc{exch qp qx curveto}bdf +/qi{{exch 4 copy 2a astore aload pop qa .5 qm newpath moveto}{exch 2 copy 6 -2 roll 2 qm qs 4 2 roll}ifelse}bdf +/qq{{qc 2a aload pop qx curveto}{exch 4 copy qs qa qx curveto}ifelse}bdf +/pt{currentpoint newpath moveto}bdf +/qf{/fillflag true def}bdf +/ec{dup 4 and 0 ne{closepath}if 1 and 0 ne{0 doop}if grestore currentpoint newpath moveto/fillflag false def}bdf +/eu{currentpoint fp{0 ep}{grestore newpath}ifelse moveto/fillflag false def}bdf +/bp{currentpoint newpath 2 copy moveto}bdf +/ef{gsave fillflag{gsave eofill grestore}if}bdf +/sm{0 exch{@1 eq{1 add}if}forall}bdf +/lshow{4 1 roll exch/@1 exch def{1 index wi pop sub 1 index sm dv 0 @1 4 -1 roll widthshow}{1 index wi pop sub +1 index dup sm 10 mul exch length 1 sub add dv dup 10. mul 0 @1 4 -1 roll 0 6 -1 roll awidthshow}ifelse}bdf +/setTxMode{sa 9 2 index put exch not{3 eq{1}{0}ifelse setgray}{pop}ifelse}bdf +/SwToSym{{}mark false/Symbol/|______Symbol 0 rf 0 sa 6 get 0 ne{pop 1}{sa 7 get 0 eq{pop 2}if}ifelse +sa 1 get 0 ne/|______Symbol +sa 4 get 0 ne{vs}{sa 3 get 0 ne{vo}{fnt}ifelse}ifelse}bdf +/mc{0 3 1 roll transform neg exch pop}bdf +/ul{dup 0 ne sa 2 get 0 ne and{gsave 0 0 +/UnderlinePosition kif{mc}{ps -10 div}ifelse/UnderlineThickness kif{mc}{ps 15 div}ifelse +abs setlinewidth neg rmoveto +sa 4 get 0 ne{gsave currentlinewidth 2. div dup rmoveto currentpoint newpath moveto +2 copy rlineto stroke grestore}if +sa 3 get sa 4 get or 0 ne{gsave currentrgbcolor dup 4 1 roll eq 3 1 roll eq and{gl}{1 setgray}ifelse 2 copy rlineto stroke grestore rlineto strokepath nlw pys div setlinewidth}{rlineto}ifelse +stroke grestore}{pop}ifelse}bdf +/sgt{2 copy known{get true}{pop pop false}ifelse}bdf +/kif{currentfont dup/FontMatrix get exch/FontInfo sgt{true}{currentfont/df sgt +{dup/FontInfo sgt{3 1 roll/FontMatrix get mtx concatmatrix exch true}{pop pop pop false} +ifelse}{pop pop false}ifelse}ifelse{3 -1 roll sgt{exch true}{pop false}ifelse}{false}ifelse}bdf +/blank/Times-Roman findfont/CharStrings get/space get def +/macvec 256 array def +/NUL/SOH/STX/ETX/EOT/ENQ/ACK/BEL/BS/HT/LF/VT/FF/CR/SO/SI +/DLE/DC1/DC2/DC3/DC4/NAK/SYN/ETB/CAN/EM/SUB/ESC/FS/GS/RS/US +macvec 0 32 getinterval astore pop +macvec 32/Times-Roman findfont/Encoding get +32 96 getinterval putinterval macvec dup 39/quotesingle put 96/grave put +/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute +/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave +/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute +/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis +/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls +/registered/copyright/trademark/acute/dieresis/notequal/AE/Oslash +/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdiff/summation +/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash +/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta/guillemotleft +/guillemotright/ellipsis/blank/Agrave/Atilde/Otilde/OE/oe +/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/lozenge +/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl +/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand/Acircumflex/Ecircumflex/Aacute +/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave/Oacute/Ocircumflex +/apple/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde +/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron +macvec 128 128 getinterval astore pop +{}mark true/Courier/|______Courier 0 rf +{/Metrics 21 dict begin/zero 600 def/one 600 def/two 600 def/three 600 def/four 600 def/five 600 def/six 600 def/seven 600 def/eight 600 def +/nine 600 def/comma 600 def/period 600 def/dollar 600 def/numbersign 600 def/percent 600 def/plus 600 def/hyphen 600 def/E 600 def/parenleft 600 def/parenright 600 def/space 600 def +currentdict end def currentdict/UniqueID known{/UniqueID 16#800000 def}if/FontBBox FontBBox 4 array astore def}mark true/Helvetica/|______Seattle 1 rf +/oldsettransfer/settransfer load def +/concatprocs{/proc2 exch cvlit def/proc1 exch cvlit def/newproc proc1 length proc2 length add array def +newproc 0 proc1 putinterval newproc proc1 length proc2 putinterval newproc cvx}def +/settransfer{currenttransfer concatprocs oldsettransfer}def +/PaintBlack{{1 exch sub}settransfer gsave newpath clippath 1 setgray fill grestore}def +/od{(Rvd\001\001\000\000\177) fg copy pop txpose +1 0 mtx defaultmatrix dtransform exch atan/pa exch def +newpath clippath mark +{transform{itransform moveto}}{transform{itransform lineto}} +{6 -2 roll transform 6 -2 roll transform 6 -2 roll transform +{itransform 6 2 roll itransform 6 2 roll itransform 6 2 roll curveto}} +{{closepath}}pathforall newpath counttomark array astore/gc xdf pop ct 39 0 put +10 fz 0 fs 2 F/|______Courier fnt invertflag{PaintBlack}if +statusdict/processcolors known{statusdict begin processcolors end 4 eq{/4colors true def}if}if}bdf +/cd{}bdf +/op{/sfl false def systemdict/currentcolorscreen known{dcfreq dcrot/dcspf load dmfreq dmrot/dmspf load dyfreq dyrot/dyspf load +dkfreq dkrot/dkspf load setcolorscreen}{freq rot/spf load setscreen}ifelse savescreen +/ns false def/pm save def}bdf +/cp{not{userdict/#copies 0 put}if ma 0 gt{{t1 the{exit}if}loop}if{/copypage load exec}{/showpage load exec}ifelse pm restore}bdf +/px{0 3 1 roll tp tt}bdf +/psb{/us save def}bdf +/pse{us restore}bdf +/ct 40 string def +/nc{currentpoint initclip newpath gc{dup type dup/arraytype eq exch/packedarraytype eq or{exec}if} +forall clip newpath moveto}def +/kp{ct 0 2 index length 2 index 39 2 index put getinterval copy cvx exec mx3 currentmatrix pop}bdf +end +LW 1 eq userdict/a4small known not and{/a4small +[[300 72 div 0 0 -300 72 div -120 3381] +280 3255 +{statusdict/jobstate (printing) put 0 setblink +margins +exch 196 add exch 304 add 8 div round cvi frametoroket +statusdict/jobstate (busy) put +1 setblink} +/framedevice load +60 45{dup mul exch dup mul add 1.0 exch sub}/setscreen load +{}/settransfer load/initgraphics load/erasepage load]cvx +statusdict begin bind end readonly def}if +md begin/bigs[lnop userdict/letter known{/letter load}{lnop}ifelse userdict/legal known{/legal load}{lnop}ifelse userdict/a4 known{/a4 load}{lnop}ifelse userdict/b5 known{/b5 load}{lnop}ifelse +lnop lnop lnop /tab load/a3Size load]def +/smalls[lnop userdict/lettersmall known{/lettersmall load}{userdict/note known{/note load}{lnop}ifelse}ifelse +userdict/legal known{/legal load}{lnop}ifelse userdict/a4small known{/a4small load}{lnop}ifelse +userdict/b5 known{/b5 load}{userdict/note known{/note load}{lnop}ifelse}ifelse lnop lnop lnop /tab load/a3Size load]def end +systemdict/currentpacking known{setpacking}if +{currentfile eexec} ( %endeexec) ok userdict/stretch known not and checkload +373A767D4B7FD94FE5903B7014B1B8D3BED02632C855D56F458B118ACF3AF73FC4EF5E81F5749042B5F9CF1016D093B75F250B7D8280B2EACE05A37037F7BDF6E12226D7D4E2DF2C52FAFD5FD40FE72A0D3AC4BD485D8369D4C87636E920D1DAF222D92155A9CB1667E715F0B82799B37CC8F5B32B74B39CF494536DC39C7EF04A7BCB29E2CEC79073CADCCFB23B4AA1363F876F5121B618071B7B4EB1E5DE75FAA2368A3E5DB2B198623AFE92AE9484270FE7F57A850E88C0D3EEA156611C91D8E480D4370B025CCA6929A2BF40AD3D01B2CB7EE6DFB46E12A830542337F7819B67F9765210F76DB06F34DA5B13A11759305C582E16D2B854939F6D9121F2A4F285282F5DCD3D15896D121E3D6F5BE79E087451BB0ED233CDBEF090D3B4AC2DC34B97E70C61D95FB072B8C12D2ABD843520949A39DCF99E2C1AA8FBCD025E47E0A82A8D96E75BAF40F52AD402495BBD4DE0F356C8B14E764874E639C9F045A0D1908EC6456EB6C5B8A6F826192F767EF2C55A21C58F5F9CC1F59247B55F2387828C7FE89D5E7D8484D1BC86CB6673BDBE4FE17DD9BDE95224FE645136F41330BF155A4DDE1B0A32233BF471CE58FBC660DC7E641B0A0D30018454E2191C414A3011FF3FED1C0D88FE1FF9F75DCC456D097947226FBEC92509146D3A4CFFC0471B31C53222ED9DD88566F60F6C0D705AD79DACF53B070026F083ED28B5CF757AAA0A169F6F320A75E9D2ED50ABD939AF85B6346C2ADB25D168F10508E1516D194C635E6B187FADEA0829DBF0390C0F003F0265E215BC96CA3CC13D4A8E01570BE193CA75A620728CD275ACF1986EFFB3A13419FE55EA7C4467B7E7EEDC1FC29C9F8C46A557D2CCDB914EF7B93E7530D555DFC2398AFC68CAD991F062EF85BAA1884EC166C7C5DF8543666D8C41BE267D706BD1588F1F662F705CAE4D29DC38EF66BFAA89470D8A099B6F1B4587F7B024412276106FCD3EB5AE17A5D1DF1781992DC40EA0A992F706F701304CEA9D9073E7A74F1E687D81C3E5841D31CF86855BAAAD9B5D30317C75150A857C6B114735315CDD1AEF36C26BBB0645499406DEE2F24B3B1C72FEC97C7BA31AA2CDAB25418BB1DC4C7E4757F1D625087B0FD0300C03A65F2A72CE734925735277E034CDCF599129679F70CC8B66E03878851DB75041F275E1E5761F3EC753BE1359CA364A22047AE4886217F9259FE19FF5B116E8019B98B143114B313E8BEF87EC949D85C82E0812E6F50525E73890AF362CC8EE8A85F4197E6AC18638EF12E56A808D439AF1BFD363F140314BF4E534485C42F1856688CC35288E8D770120A420FB9F1FCF8AE8BD6D6156CC23E6C51119FE4DE1B68C9DF3487E9974BF9ED31F8D3CE93FF101867319F2FF492D5D398B4F09A66F2F55BCAB34B99173B7EE89039D00DD21A7B3A52E9F028F8301B5FC12D409412E064513BC579AAC498F577EA8ECD1FE3E42DC3CC320786C7B00194FEDF344402C33FC492D4BA86992B01683F440220FFE756BC88A94223D316078D69D33560E8EAB76B24CB7AA4320CF435593D76F624324ABE00B5587A4F283C725EA24567133F25F472B5E2E4474DDB5A16AC5F2DF32350395D3E3892FE361F4D5C9A610C654C9227614FBBAFF3356A90A2266E00F66234061075491571A65616211257F160000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +cleartomark + %endeexec + +{currentfile eexec} ( %endeexec) ok userdict/smooth4 known not and checkload +F94E00EE41A71C59E5CAEED1EDBCF23D1DBA1EE99B9BB356492923BD8B1BA83A87CEB0E07377A31FD6241E814681118E17DC7CACE570399506E6E441B871B6043831BD03EFC11DBBD8001EE2FF8CFBD485065D455A2E15AC36F1A84AD8789FA6461199C7CD14CB9FD64D4B06452B7FC0A8FC263F70F1CCB893295D4DE70ADAB771C0F84396FA98C60B11DA02ABA157298DF0A23621853BEF167443A985ADC09BEFFD51CB4D29179E2B34609EF38A49DA61F4BFC256A3DE0732D7D29754A194857B9C9E9971227AA1DD0611FBB10E44E5FF66C062D9C24ED3290529330BC317825E876929582DB0E39B9FC5EFD20CC1D4F94920EB9C534D0DA90DE70D25BC7287319CF28602B3F46633C242CAFC8905E960317E3C2FA20AB8DB06ADBAF292FC7BA2CA14EE65DF28B99CC11666B70AD33E8E1D57D63D4B89ECC615AE5747C1CA752C833D8D6DE54CD4A0350B44310555CE3BD2C615ADD27B634CDB350AF3A432CE78AACD2909A5B586F666CD87919A36DB1CBE86B3CE281DFD01CD7E1B8A18A4B415CECBFF79A5C4390A15EA77D14D6BE12BAB5A8268C3F286D0590060647CABED674443CD258F11415E866AB330A251691B61F2422A61AFE59B6B4FBDCF85ED9BA0F8E483C034089E6877FF5923698D3A0DC0EED6B9CFD32DF0839BC4EA5F6D1FCB6DD0920391E57E84745131D02D100179F4E0A68EC0A5FF6680A6F463D038B04AF63FFA13D743B995A26A743C26D387209023C91DE43DF047A16F328AC9DDC08573B38BE9EA341EA16C78EC32F3A1B36B90D95A50610F4D050EC1C33497F3F3A81A1B4C8BEF0BA84EE2FAA32DC112DAC490AF53E1749C4A0D866CAF7B893E52383B0D38065C333FB122B700D7246F7EE87D942AE3DB5C1DD77E9E76C80CC5AD63D28DFED0E229CE604673F78CD47F258FDF5BF3A3EAEC5C9BC8E482D8DBA9D268A35DA8C095A690679ED2123E8B8F5E4826FA3B199EAA5D482D4B6AA86572E387CECEB7149C8947F41D6339328A748A17F8C4AD3B0555F1E409450BA0C564F1F488BB5096EB003568D4D5EF6489897E27409547D0EE4487D30184793B0F27BD265A64BDB3EA6761569DA955620C612E718677B77D6D81B999C6298877AFE0D1D6F6F358377A8BD2402F669C64B972B3A065EF7DD4BDEFFFE17E63DB8898FA6E69166B710AAD6BA2EA9AF61E4B8C8701638D4D6E4DFFFC192AEF6BC027095C4C72D748979675BA29FAF61E75343E14E61034602E5A79CD2519796ED6A9CC4EDEA46A9B59D4A807E786B5EE46F25B0360BC8E7C12D723122CDEEF247C9776F4C99C8EBED6828AA19744B5ADF0D07D95D98B3072372388D41B0FAB1CCE2775170679575ECDCA13B22A17FE9C6605C3445F58F1A829512DAB6C528F83580C8AA53C35D605F626F5AD0B7FC1EA87D69A835E3F53A1F450FB0AF42A5772F89D92A50D10F15BDBDA409F50C0B8AB93FE8A16D029DD8BB5C480D1466735ED4D9CAF637E5ECD6C2ECB6BF3B3EFBEE7AB936D2C568E3009D156B87CACB1FB3A48A70BC91B2EC35CC9147FFB1A524E2B2F2E4E2C1B12F1C1C63768BB95CD62FEC01CBA79B9FA282DD4DF49990F27FF8EE4E2DDE2F0ACD83BC9D4BE0090192C7A799967EC4DC2D63C0835E22D4C4B366D7FDCF3A05A4B53DF780F986EF25C79B665D5C00EFF7F17C0BB6D544F9D83A7FDAC47D9C5683A656011374253C918FF6EA64749DD971B2300DD5320033E01EC591F6318CCE94CE2B81C04322EC52B624E50643B52391CCD2AB56396A2AD8E2D3CA61B80D9D4CC363B2DF7863526958CDF3497E36648406C317E58EC563E7C26149A2A3C643ADFB39A8DD92974C6D2A2A9D7B71CDF3FEBBF32BB02E7B45CF53AAEAD5E963A4AA4AF9A149A08A4EC303D5F2369977E93F54897EEAD31B06C5845D63F49D65F8E5573962241A57CCD717CE6CA8C784A11192943616EA059B51BC38429E18D0121FCBB6FBD5D909B0D89E616C66DEF6A0F165A7030BD911A1B120468329CBB006C8D37720E531CF31E878CB4AAAC137633675C3D546F5162487AB35F470C042BDEB945E0F2532BF92AA6FD53434440221ECD3533A7AA89900CB19EFE2CD872DF8B7969AF0D3B72BF31DC5DD69CA6460966F61AB17CB507964098DBA3AF122EEC3128A9BAFE1034493F372B36BD1351205E9043A67C544402D8BCE24358C8A5CE33867A00794CF7097D59C88279A11EE9C854E7E7AAE881F9828C569D208F5F33375F59E9A3818CFA38AAD0CBFBA32F9F44A8BB79DE4C40E3886457C16DA4A27953AA1E99472E35F2323F0BAA5E37DC28CBA46FEFB73B190016055ADD4D27615D748499A0E1C4B8C7EC339C1C4D95A813A85918A8D01EEB485DDCDCEA6EA3F2C2A9D85C139CD90CCB352634F9AFE836BCAC0C274E352BA2071B5269D5DE4CCDE3FF990CBA974980C7332AE1545A9C60D5D1459D3AE95C1AC065733AF14FADB440A110DD539563B8D850CD0704C52F3F7CCCB53630D776560CBD22D8FF08F5B354487A171AEC15F5F54DE9CAB668BCAC573E788D92762EF63E76087005F4AC2D02E0CAC173C11BE62ACE5DC4D3374F2F9746C9981E125FF9AB8CAE76D13039E2C54DFD708E028A619EA1ED78E6B46F06DF0D0B74BBEDD8C190C7C0CEBDE8F7A4888CC36575313478DD2CFE392E9BB7B2416955D44B7024A3BA43FBF37293B386D64746D7748895411D243FAEC50638F2AA33337D7FA018ADDAC5835A0DDFAE99AD6299DFB4CA6872C59853E3AC12FC9E3D26629C5B49CF844C87B3C4BFBE3074E3A1CE6984758C20C661084381CD6B4582D84F19C0000B5FC0DCB42B567E396031601C095D7016283EBE5F13CD8A3A374A74DDBBABD36081149F8BC242085F2F7297CC97FD3B8BAD206D8AC9707A39ECCC7963B522E08DA391A1EF12DD4D746DBDDDCC0834F88160CF189A9645567CEC2F023A571AF0DFD15DB85B744C28C000DF53B05F8F210841F6E87A04F20C777B7C0BE6182BE2E90226E5301A12532A745F2FAAA81637CF11B78CD2B99A4D18B862D6C5DBD31793FB16A2D9AAD376D4484D75AA833D0068B1D34DB74E3302480854E3B5484D8A47E39A89A2FA927BC3641EA7F8E004FDE4C2F08D40D99F1ACB47CAF6887629BF6DFE12968D297596D28CE0CF148B12E7DCB49FB94F5ADBD214C3A6CE1E249831BA9EB8A189F2CE1ABE39A7B537253E369A508A2AF2ADB9463F9B56BBBFF31D535FF997F537C6675C196E7ECBD493F652FA7CC6D9C1CA3379BFDB5AF7513C6E834054494296B91A6EE800114363D5D5D0759F41B4DECB653B9DE3E94583579EF549ED5F3FAFB12661ABC0C57A332406517ED3454EDED34B386C60F78DC976266E0EAF54FC245FB0E3EFC8016236436B599C1C97A8C5E0AC8F7836161873C71F01ED9CC25C236420F41FD8277993D3959205912FA0927B59E3DAE7377D82079447D6E41EE5AEC0DFFF79AF8F4ED47F17EE708FEA45877860D56F8CBCE65A061E8E1CA4A5FBAF0E13429A7F0ADB6F178FA449F46CC539BBC0107E3A53B1C362A04B20E6D721E7E6E1E4976A11DDC98C7614D22B53DFBB6DAE533AC9BE882021A735C30DAA4A44AED09F49A390E8CFF59BD9C30667AF21B03EC5CEBD5C2C3AA2769E8D714191A48E7DDF50B13D1560E82EFB65FCE601AE9E8C351FBA1DED80B7351314E7F9F9A784BFE3759B7E322A84E7B51F9DC5F5D9C8050CD79B27C0A4B0DD68A3C27A948AD6858E35B960D2DEA838C479CAEA83B1A912174ACB2100E55E7A14892D7A9B3711FF0B20065C1995B49E1F23464A92DD140642E3A7B1973849E64D1A3CF60000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +cleartomark + %endeexec + +%%EndProcSet + +%%EndProlog +%%BeginDocumentSetup +md begin +F sgd +svsc + +T T 0 0 781 538 -30 -28 811 566 100 72 72 3 F F F F T T T F psu +(cianca; document: tr14)jn +0 mf +od +%%EndDocumentSetup +%%Page: ? 1 +op +0 0 781 538 fr +0 0 xl +1 1 pen +0 0 gm +(nc 0 0 781 538 6 rc)kp +64 gr +-30 -28 -29 -27 4 rc +30 28 xl +psb +0 setgray + +1 -1 scale + +0 -841 translate + +/wp$xorig 0 def + +/wp$yorig 0 def + +/wp$y 841 def + +/wp$x 594 def + +/wp$page 1 def + +/wp$fpage (1) def + +/wp$date (5/23/94) def + +/wp$time (10:26 AM) def + +/wp$box { newpath 0 0 moveto wp$x 0 rlineto 0 wp$y rlineto wp$x neg 0 rlineto closepath } def + +wp$box clip newpath + +/wp$top 110 def + +/wp$bottom 85 def + +/wp$left 79 def + +/wp$right 70 def + +/wp$col 1 def + +/wp$colx 445 def + +/wp$colxb 0 def + +gsave + +initgraphics + +/cm {28.34646 mul} def + +%% Background gray level (1 is white) + +0.96 setgray + +%% lower-left corner of logo with respect to lower-left corner of page + +%% the following values are appropriate for A4 format + +1.5 cm 9 cm translate + +0 0 moveto + +%% magnification of logo (1 = 3cm) + +/lsize 6 def + +%% change scaling for the logo + +72 300 div lsize mul dup scale + +%%{1 eq {1} {0.96} ifelse} settransfer + +%% bitmap image of logo + +%% scanned from a letterhead of the rettore and edited by hand + +356 356 + +false + +[1 0 0 -1 0 356] + +< + +fffffffffffffffffffffffffffffffffffffffff80000007fffffffffffffffffffffff + +fffffffffffffffff0 + +ffffffffffffffffffffffffffffffffffffffc000000000001fffffffffffffffffffff + +fffffffffffffffff0 + +fffffffffffffffffffffffffffffffffffff8000000000000003fffffffffffffffffff + +fffffffffffffffff0 + +fffffffffffffffffffffffffffffffffffe000000000000000003ffffffffffffffffff + +fffffffffffffffff0 + +ffffffffffffffffffffffffffffffffffc00000000000000000001fffffffffffffffff + +fffffffffffffffff0 + +fffffffffffffffffffffffffffffffffc0000000000000000000001ffffffffffffffff + +fffffffffffffffff0 + +ffffffffffffffffffffffffffffffffc0000000003fffe0000000001fffffffffffffff + +fffffffffffffffff0 + +fffffffffffffffffffffffffffffffe00000000ffff01ffff00000003ffffffffffffff + +fffffffffffffffff0 + +fffffffffffffffffffffffffffffff0000003fff8000003fffc0000007fffffffffffff + +fffffffffffffffff0 + +ffffffffffffffffffffffffffffff8000007ff80001ff8001ffe000000fffffffffffff + +fffffffffffffffff0 + +fffffffffffffffffffffffffffffc000007fc007ffffffff001ff800001ffffffffffff + +fffffffffffffffff0 + +ffffffffffffffffffffffffffffe000007f00fffffffffffff80ff800007fffffffffff + +fffffffffffffffff0 + +ffffffffffffffffffffffffffff800003f01ffffffc01ffffff807f000007ffffffffff + +fffffffffffffffff0 + +fffffffffffffffffffffffffffc00007e03fffffffc01fffffffe07f00001ffffffffff + +fffffffffffffffff0 + +fffffffffffffffffffffffffff00001f03ffffffffe73ffffffffe07f00003fffffffff + +fffffffffffffffff0 + +ffffffffffffffffffffffffff80001f07ffffffffcf773ffffffffe0fe0000fffffffff + +fffffffffffffffff0 + +fffffffffffffffffffffffffe0000f83fffffffffc6723fffffffffc0fc0003ffffffff + +fffffffffffffffff0 + +fffffffffffffffffffffffff80003c1ffffffffffc0703ffffffffffc3f0000ffffffff + +fffffffffffffffff0 + +ffffffffffffffffffffffffe0001e0fffffffffffcfffbfffffffffff87c0003fffffff + +fffffffffffffffff0 + +ffffffffffffffffffffffff8000707fffffffffffcfffbfffffeffffff0f8000fffffff + +fffffffffffffffff0 + +fffffffffffffffffffffffe0003c3ffffffbfffffc0703fffffedfffffe1f0003ffffff + +fffffffffffffffff0 + +fffffffffffffffffffffff8001e0ffffffbbfffffc4723fffffedffffff87c000ffffff + +fffffffffffffffff0 + +ffffffffffffffffffffffe000787ffffffbbfffffcf773fffffecfffffff1f0007fffff + +fffffffffffffffff0 + +ffffffffffffffffffffffc001e1fffffffb1ffffffe73ffffffc4fffffffc7c001fffff + +fffffffffffffffff0 + +ffffffffffffffffffffff000707fffffff31ffffffc01ffffffc47fffffff0f0007ffff + +fffffffffffffffff0 + +fffffffffffffffffffffc001c3ffffffff31ffffffc01ffffffc47fffffffc3c001ffff + +fffffffffffffffff0 + +fffffffffffffffffffff80078ffffffff631fffffffffffffffc45ffffffff8f0007fff + +fffffffffffffffff0 + +ffffffffffffffffffffe000e3f3ffffff631fffffffffffffffc45ffffffffc3c003fff + +fffffffffffffffff0 + +ffffffffffffffffffffc0038fe3ffffff231ffffffe03ffffffc44ffffffcff0f000fff + +fffffffffffffffff0 + +ffffffffffffffffffff000e1fc1fffffc231ffff8000000ffffc44efffffc7fc78007ff + +fffffffffffffffff0 + +fffffffffffffffffffe00387fc0fffffc231ff000000000007fc44cfffff83ff1e003ff + +fffffffffffffffff0 + +fffffffffffffffffffc0071ff807ffffc231c00000000000000c44cfffff03ff87800ff + +fffffffffffffffff0 + +fffffffffffffffffff001c7ff003ffffc211000000000000000c44cffffe01ffe1c007f + +fffffffffffffffff0 + +ffffffffffffffffffe0031ffe003ffff8211000000000000000444c7fffe00fff8f001f + +fffffffffffffffff0 + +ffffffffffffffffff800e3ffe001ffff821100000000000000044447fffc007ffe7800f + +fffffffffffffffff0 + +ffffffffffffffffff0038fffc000ffff821100000000000000044447fff8007fff1e003 + +fffffffffffffffff0 + +fffffffffffffffffc0071fff8404ffff861100000000000000044447fff8843fffc7001 + +fffffffffffffffff0 + +fffffffffffffffff800c7fff0c027ff08611000000000000000444447ff1041fffe3c00 + +fffffffffffffffff0 + +fffffffffffffffff0039ffff18127f80861100002fffffe0000c44440fe3049ffff8e00 + +3ffffffffffffffff0 + +ffffffffffffffffe0063fffe31133c008611003fffffffff800e444403e6264ffffc780 + +1ffffffffffffffff0 + +ffffffffffffffff801cffffc61119800861307ffffff37ffff0e444400cc6627ffff3c0 + +0ffffffffffffffff0 + +ffffffffffffffff0039fbff86311d8008653fffe200e00303ffc444400cc6733ffdf8e0 + +07fffffffffffffff0 + +fffffffffffffffe0063fbff8c319cc008453fe2cc1e663fe01fc4444019c671bff8fe78 + +03fffffffffffffff0 + +fffffffffffffffc00cfb1ff1c718e4008451e03fffe4e3fff01c44440338e78dff8df1c + +00fffffffffffffff0 + +fffffffffffffff0019f31fe3871c7600845187f860b4c3fffffc00540278e78cff8df8e + +007ffffffffffffff0 + +ffffffffffffffe0063f31fe78f1c7a0004583ae0f27088fffff000560679e7c67facfc7 + +003ffffffffffffff0 + +ffffffffffffffc00c7f35fcf8f1e3903045842f5f47018fffff010560cf1e7c77fecdf3 + +c01ffffffffffffff0 + +ffffffffffffff8019ff35f9f1f1e399f84586cf0f874107ffff0115788e3e7e3bfacdf9 + +e00ffffffffffffff0 + +ffffffffffffff0033fb25f9e1f1f1cfff45074fbfff4023ffff01357f9ffe7ffdfacdfc + +7007fffffffffffff0 + +fffffffffffffe00e7db2ef3e3f3f8c7ff45031fff045863ffff0135ffffffffffffcdff + +3803fffffffffffff0 + +fffffffffffffc018fd91effffffffffff4403fff87e5e01ffff01ffffffffffffffcddf + +9c01fffffffffffff0 + +fffffffffffff8031fd90e27ffffffffff4403e0f9ff7f907ffe01ff0ffffe3ffffe8ddf + +ce00fffffffffffff0 + +fffffffffffff0063fd93173f3ffcff99b44100079ff7fd43ffe110f0c5e781ce1c80cdf + +e7007ffffffffffff0 + +ffffffffffffe00c7fd130200191c6900144103f79ff7fe11ffe11040c00501c21c0089f + +f3803ffffffffffff0 + +ffffffffffffc018ffd1207801d0e690490411ff79ff6ff40ffe11840400811c0782009f + +f9c01ffffffffffff0 + +ffffffffffff8033ffd1205807b87610484419ff79fe6ff887fe11a60843838c01b7c09f + +fce00ffffffffffff0 + +ffffffffffff0067ffd1349c073c321c8c4c19ff79fc6ffcc3fe11200fc3c78f8035e09f + +fe7007fffffffffff0 + +fffffffffffe00cfffd1318c067e3219664d5cff7c04effe21fc91002643c447807a609f + +ff3803fffffffffff0 + +fffffffffffc019fffd171020ce3121b834c5cf87ffce7ff08fc901403038c23805b409f + +ff9c01fffffffffff0 + +fffffffffff8033fff917a0118e30e12830e5c00fffce7ff927c901e018389018431408f + +ffc600fffffffffff0 + +fffffffffff0067fff917c2110fb861b83ac5c7ffffce7ffc03d901e40c301c98468c08f + +ffe3007ffffffffff0 + +fffffffffff00cffff917807b1ff661dc1ac5e7ffffdf7ffe409901ce06312c800c0608f + +fff1807ffffffffff0 + +ffffffffffe019ffff917606833f701b01ad5e3ffff9f3fff253913920333e8c0180608f + +fff9c03ffffffffff0 + +ffffffffffc033ffff917402c73e783304ad5f3ffc03f3fff88391330a1b3f1e0103508f + +fffce01ffffffffff0 + +ffffffffff8023ffff93fc4a4f8ff83706ad5f003c3ffbfffc0791e39f0a783f02836c8f + +fffe700ffffffffff0 + +ffffffffff0067ffff93fcee7fc3fcd51fad5f981cfbf9fffe07938f9fc0fc7fa4c3e48f + +ffff3807fffffffff0 + +fffffffffe00cfffff93ffffffe7ffffffad5fcf9cf369ffff0f93bfdff4fe7fc623f48f + +ffff9c03fffffffff0 + +fffffffffe019fffff92000000000000000d5fef9cf66dffff9f987e7fe7fd7c7221f08f + +ffffce03fffffffff0 + +fffffffffc033fffff93000001e1c004d2005ff79ce664ffff3f9900000000000000188f + +ffffee01fffffffff0 + +fffffffff8067fffff9207c02200011412685ffb9cee66ffff7f9803218c19982702008f + +ffffe700fffffffff0 + +fffffffff00cffffff1318c003c849143a685dfddece66fffeffb907318c139c270215af + +fffff3807ffffffff0 + +fffffffff008ffffff1301e8138c4f12b4485dfede1a677ff9ffb907118c878ee7cb058f + +fffff9c03ffffffff0 + +ffffffffe019ffffff1317c93f063f13a7485dff1e38e7bff3ffb94e1f8ce787e7ad350f + +fffffcc03ffffffff0 + +ffffffffc033ffffff13933c06121b1c73084dff8c7ae6dfeff7b97ccc8ecc07e7a5f50f + +fffffee01ffffffff0 + +ffffffff8067ffffff131f3c0631011c5b004dffe070e6ef9ff7b95ccc888c22e644954f + +fffffe700ffffffff0 + +ffffffff804ffffffd121f1c34218f0cf9a04ceff9f4e3707ff3b909e78d87a0468ed54f + +ffffff380ffffffff0 + +ffffffff00dffffff9120e5e3845c70cbde24ceffff4e37fffd3b959e78f07c0c5a65444 + +ffffff9c07fffffff0 + +fffffffe019ffffff112840c38c7430f3ce24ceffff4e37fffd3b978278f23d0c7227444 + +fffcffcc03fffffff0 + +fffffffe033ff3ffe11384ed3180630fc0e24ceffff4e37fffd3b9f8138e211842207444 + +3ff27fee01fffffff0 + +fffffffc027fe1ffc1130ac60380e10e40604cefffece37fffd3b9f0938c380c46583544 + +3fe0bfe701fffffff0 + +fffffff8067f80ff81131bc203c1f00c48624cefffec01bfffd3b971f18838260c593544 + +1fe01ff300fffffff0 + +fffffff80cff00ff01131b8f05e1f80ed8224c6fffec01bfffd3b872e180844308ac3504 + +0fe21ff980fffffff0 + +fffffff009ff04fe0113130507e13818f0204c6fffec01bfffd3b862c081840019a43504 + +07e67ff9c07ffffff0 + +ffffffe011ff04fe011337940000181cf0304c6fffcc009fff93b866c8018c0003269504 + +03f8fffcc03ffffff0 + +ffffffe033ff81fc01037600001f000066104c67ffd8e09fff93b82e78007ff800129d04 + +01fffffee03ffffff0 + +ffffffc027fffff80103480003fff80068004c67ffd800dfff93b80e3801fffe00001c06 + +01fffffe701ffffff0 + +ffffffc04ffffff00103c0001ffffe007ae04c67ff9800dfff93b81f3007ffff0e004c06 + +00ffffff301ffffff0 + +ffffff80cffffff00103003f9ffffc7f0fe04c67ff9800cfff93b81f0387ffff3ff04402 + +007fffffb80ffffff0 + +ffffff009fffffe0010200ff8ffffcffe1e0cc67ff9810cfff93bc7e1fe3fffe7ffe4442 + +003fffff9c07fffff0 + +ffffff019fffffc0030007ffe7fff9fff840cc67ff38f04fff933c78fff9fffcffffe442 + +003fffffcc07fffff0 + +fffffe013fffff8007009ffffbfff3fffe02cc67ff39202fff933c73fffcfffbffffe043 + +001fffffce03fffff0 + +fffffe027fffff800f01fffffdffe7ffff82ec67ff380027ff933c5fffff7ffbfffff043 + +800fffffe603fffff0 + +fffffc067fffff001f01fffffeffcfffffe2ec67ff390007ff91381fffffdff7fffffd63 + +c007fffff701fffff0 + +fffffc04fffffe003f63ffffff7f9ffffffbcc67ff718037ff9139fffffff7effffffff3 + +c007fffff380fffff0 + +fffff80cfffffe003f73ffffffbfffffffffec67ff71f837ff91f9fffffffbdffe7ffe33 + +e003fffff980fffff0 + +fffff809fffffc007c03fffffff07ffffffce467ff41e037ff91f9fff03ffdbff98ffe01 + +f001fffff9c07ffff0 + +fffff01bfffff800fc03ffffffefcffffffc0467fe412013ff91c1ffefcffebff7f3fe03 + +f801fffffcc07ffff0 + +fffff013fffff001fc63ffffffdfe7fffffc0467fe41001bff91c0ff9fe7ffffeffdfe03 + +f800fffffce03ffff0 + +ffffe037c0fff001fc61ffffcfdc73fffffc0467fe81801bff9100ffb83bffffef0efe13 + +fc007ffffe603ffff0 + +ffffc027807fe003fce1fffe213013fffffc0447fe81f819ff9101ff700bfffffc06ffff + +fe007fffff701ffff0 + +ffffc04f001fe007fefffffcf8200bfffffffc47fc81fab9ff91ffff600bfffff8037fff + +fe003fffcf301ffff0 + +ffffc04f0009c007fefffffdcc0903fffffffc47fca1fa89ff91fdff6007fffff8037ff7 + +ff003fff01300ffff0 + +ffff809f0c01800ffe77fff80003e3fffffffc47fde1e105ff917dff600ffffff0037f77 + +ff801ffe01980ffff0 + +ffff009f0f01800ffe77fff800d7affffffefc47f9e1610cff917dff820ffffff4037f77 + +ff800fc6009c07fff0 + +ffff013e0f83001ffe67fff870cd4ffffffef447f981650cff917dffc30ffffffe06ef77 + +ffc00f8600cc07fff0 + +ffff013e0fc7003ffe67fffc21c72ffffffef047f9c12d0cff913dfff01ffffffc9ddf73 + +ffc0070610ce07fff0 + +fffe037c27fe003ffe67fffe41c50ffffffef047fbe1fd9efe913dfff01ffffffc9f9f73 + +ffe00704106603fff0 + +fffe027863fc007ffe67fffe438407fffffef047fba3fd967e913dfff80ffffffc9fbf73 + +fff00310306703fff0 + +fffe067800fc00787e67fffe430013fffffef057fb2bfc827e913df87807fffffd9f3f73 + +ff700300307301fff0 + +fffc04ff801800f03e67ffff0000f9fffffef053f3ab3c867e913dfc0003fffff30c7f73 + +fe38018e23f301fff0 + +fff804ffe01801f11c67fffe000678fffffef043f3ab0c873e913dfc0071ffffc2107f73 + +fc1801c06ffb80fff0 + +fff809fff81001e19067fffe001f20fffffef103f68b0cc33e913dfe03e0ffff0070ff73 + +f01c00e07ff980fff0 + +fff809fffe3003e08067fffc003f00fffffef107f64b9cc13e913dfe11c07ffe33f0ff73 + +e00c00fffffdc0fff0 + +fff013ffff6003f80267fff8087f883ffffcf103e643fcc13e903dff08887ffe77e0ff73 + +c08e007ffffcc07ff0 + +fff013ffffe007c40667fff813bfc23ffffcf113e653b4c1be903dfe0c1c3ffc7fc07f73 + +000e007ffffcc07ff0 + +ffe033c03fe007870267fff81f9fe03ffffcf317ec532441be903dfc0e3c3ff8ffc07f72 + +101f003ffffe607ff0 + +ffe027800fc00f87c267fff8078f203ffffcf317ec5326409e903df8c77c3ff8ffc03f73 + +3c3f803ffffe603ff0 + +ffe0270007c00f8c6267fffc0086000ffffcf313edd326409e903df8c7fc3ff1ef883f73 + +ffc7801fffff703ff0 + +ffc06f2303801f8c7e67fffc3c000207fffcf313edd3fe609e903df0e7f83ff1ef983f73 + +fe03801fffff301ff0 + +ffc04f27c3801f80c667fffc3c000383fffcf393ccd3fe60de903df863e09fe1cf183f73 + +f800c00fffff301ff0 + +ffc04f27e1801fc04667fffe080c0261fffcf39bdc13fe605e903df803c00fc1ce103f73 + +f818c00fffffb81ff0 + +ff809f27e1003e400e67fffe000c0601fffcf39bde93fe601e903df80198000000007f73 + +f01ce00fffff981ff0 + +ff809f03c3007c301e67fffe001c6610fffcf39bde1326600e903df87038000000267f73 + +f19d6007fa1f980ff0 + +ff809f8003007c383e67ffff003cf300fffcf39b921726602e903df870780000f8707f73 + +f1de7007f80fcc0ff0 + +ff013fc00200781ffe67fffe003cf8cc61fcf39b90970e702e923df823f84020f8003f73 + +f1fe3003f18fcc0ff0 + +ff013ff00600f803fe67fffe001cf8e07f7cf39bb0b7be702e823dfc01f87fe2f0003f73 + +f3e03003f19fcc07f0 + +ff013ff80c00f8c07e67fffe821cf8e18ffcf39bb9b7fe7026803dfd08f87ff1f0007f73 + +ff803803f81fe407f0 + +ff027ffffc00fcf07e67fffca31cf0f203fcf39b3fb7fe7077803dfc0cf83ff1f000ff73 + +fc001801fe3fe607f0 + +fe027ffff801f3fe7e67fffd279cc1fa01fcf39b33b72770b7c07dfc1cf83ff83801ff73 + +fc3e1801ffffe603f0 + +fe027ffff801e03ffe67fffd279c07fa00bcf3bfe337277097fffdfc10783ff01f01ff73 + +fcff3c00fffff603f0 + +fe067ffff803e00ffe67fffae41c1fff003cf3bfe137277017ff7dfc00783ff80101ff73 + +ffffc400fffff303f0 + +fc04f81ff003c301fe67fffb40387fffc07cf3bfe977bf781ffb3dfc02787ffc0101ff73 + +fe000400fffff303f0 + +fc04e00f7003c301fe27fffa4013ff7fc07cf3bfff7fff7e3ffb3dfe02383ffc0301ff73 + +fe00c600fffff301f0 + +fc04e0022007c01dfe27fff3c00ff63fc07cf3bfffffffffffef7dfe02383ffc8301ff73 + +ff1806007ffffb81f0 + +fc0de0002007f81ffe27fff1e003343fc000f3bc7ffffffff0ef7dff82383ffc9f01ff73 + +fff00f007ffff981f0 + +fc09c0802007fc03fe27fff1c001001f8000f3b8207ffff8e0ef3dff06383ffc1f01ff73 + +ffc01b007ffff981f0 + +f809c1e0600fff03fe27ffe1c010001f867cf3b8203e2ed140ef7dff06383ffc0f03ff7b + +ffc7e3007ffffd80f0 + +f81bc4f8e00f81fffe200001c000000e027cf3b8203e2c1840e77dff06203ffc0703ff7b + +ffcc03803ffffdc0f0 + +f813c47fc00f8007fe2003c1c00000ce107cf3b8203c040044e77dff06203ffc0123ff73 + +fff007803ffffcc0f0 + +f813800fc00f0407fe27ffc1c00007fc303cf3b8003c250481e73dff06203ffc2023ff7b + +fff078803ffffcc0f0 + +f0138000c01f07cffe27ffc3c80007fc303cf3b8103c23f091e73dff06303ffc2031ff7b + +ffe1f0801ffffcc070 + +f0138000801f003ffe27ffc3c800043c303cf3b8143823d202673dff06303ffc2030ff7b + +ffe180c01ffffee070 + +f037ff80801e000ffe27ffc780008c0d013cf3b8001871c890673dff06303ffc2030ff7b + +ffe000c01ffffe6070 + +f027ffe0803e000ffe27ffcf80188c41013cf3b8411871e110673dff04303ffc2030ff7b + +ffe01fc01ffffe6070 + +e027fff9803e0f1ffe27ffe7801c1e40007cf3b88110f1c454733dff00303ffc2010ff7b + +fff1fec00ffffe6030 + +e027ffff803f00fffe27ffe7c09e5e60007cf3b88910f8f080733dff30303ffc40107f73 + +fffff0400f1ffe6030 + +e02fffff003f803ffe27ffe7801ffe7c01fef398890088c641733dff30303ffc44107f73 + +fff060200e00077030 + +e06fffff007ffc3ffe67ffe7001fee6f9f3ef398ac0004402bf33dff30303ffc50107f73 + +fff0c0200e00033030 + +e04ff1ff007ffe3ffe67ffe7001fe403fe3ef398a48064d201f33dff30303ffc50107f73 + +fff886200e00113030 + +e04f80ff007fce3ffe67ffe7001fe0400e1ef398b40344114cf33dff30303ffc50107f73 + +fff80c300600093030 + +e04f003f007fcffffe67ffff001fe1c00f1ef3983403c00105f33dff36303ffc52187f73 + +fffc1ff007038d3030 + +c04e001e0073fffffe67ffff001fc0e0010ef3987047c0044ef33dff36303ffc51187f73 + +fffffff0078f8d3010 + +c04e400e00f00c7ffe67ffff103e06e0010ef39810e4d1900ef33dff34323ffc91187f73 + +fffff3f007ff093010 + +c0de440600f0007ffe67fffffffe0740030cf3da08cde30222733dff34323ffc91187f73 + +fffff3f00700199810 + +c0de4f8600f1c07ffe67ffffffff07c0030cf3d358cf630840f33dff20323ffc91107f73 + +ffffff900300399810 + +c09e4f8600f0c0fffe67ffbffffe13c0020cf3d730cb07c1e0f73dffa0323ff811107f73 + +fffff018031ff99810 + +c09e478600f007fffe67000003fe39c0000cf3df00db0f80c5ff3dffa0223ff811107f73 + +ffffc01803000c9810 + +c09e200400f800fffe67fffffff03c81000cf3dfe4ffffc9ffff3dff80207ff81110ff73 + +ffff00780300049810 + +c09f100400fff8fffe67fffffff81f82004cf3c38d9fff03fe0f3dff00007ff82010ff73 + +ffff0ff8039fc69810 + +809f800c01fffffffe67f0001ff84b06004cf3c1080186000c077dff00f8fff8201fff73 + +fffe1fc803ffe49800 + +809fe01c01f000fffe6000000000ff0010ccf3c180030300080f7dffe1c1fff4364fff73 + +fffe100803f004dc00 + +81bffffc01e000fffe67fffffff0ff8832e4fbc080030200680f7dffe0c1fff7264fff73 + +fffe000c03c008dc00 + +81bffffc01e003fffe67fffffff8ff907664fbc0c002004008cf7dffe1c1ffff066fff73 + +ffff800c01c011cc00 + +81bffffc01fffffffe67ffffffe00383fc64fbc2c000007870ef7dfffffffffffe7fff73 + +fffffffc01c003cc00 + +813ffffc01f019fffe67fffffff0ffa7fcf4fb86407030f8d00f7dfffffffffffe7fff73 + +ffff000c01c387cc00 + +813e187801e001fffe67fffffff1fffffcf4fb8440783078880f7dffffffffffffffff73 + +ffff000401e3ffcc00 + +813c003801e181fffe67fffffffffffffefcfb8060780879d20f7dffffffffffffffff73 + +ffff180401ffffcc00 + +8138c31801c3f3fffe67fffffffffffffffcfb8828700439f3dffdffffffffffffffff73 + +ffff18c401ffffcc00 + +8139041801c1fffffe07fffffffffffffffc3b882c600419e3dff9ffffffffffffffff01 + +ffff000401ffffcc00 + +8130001803c001fff8000000000000000000038c04602619e3ce00000000000000000001 + +ffff000c01f3f1cc00 + +8130401803e001fff803fffffffffffffffc000d0440c608f0ce00fffffffffffffffe01 + +ffff821e01c1e04c00 + +8132631803fffdfff800000000000000000003999e40050078ce00000000000000000201 + +ffffc7fe01c0004c00 + +0132631803f00ffff807fffffffffffffffec3d81a030180448e3dfffffffff800000331 + +fffffffe01c0024c00 + +0132001803e003fffe7ffffffffffffffffee3d800070180cc8ffdffffffffffffffff79 + +ffff000601c18e4c00 + +013a001803c1c3fffe7ffffffffffffffffec39c000703c08f8efdbe1fffeda60003ff79 + +ffff000601e0024c00 + +013bf01803c1c3fffe7623a08ff20011ec2ec380000f01c0cb8e1d005e4788821780eb79 + +ffff800e01fe3a4c00 + +0138001803c007fffe36131c0b03c32e04dec3a00000006040861d0dfd03089fe4d98f79 + +fffffffe01fe3a4c00 + +0138001803f81ffffe3711c38f3a22fde49ec3a00003ff80004e1d3ff507f88112680b79 + +ffffe01e01dd384c00 + +0138ff9803fffbfffe371ed0896f34d5d90ec3a0000fffc0004e1d3c3e0ffffde28c0b79 + +ffffc00601c1004c00 + +013ffff803e0e3fffe37397ccf87fd6479eee3c03fcfffc3804e1d1e2ef4689ff60c1379 + +ffff870601c1704c00 + +013ffff803c003fffe3631bbff00df60f866e3c3fff7ffbff80e1d01df0f88d483821379 + +ffff8fc601c000cc00 + +013ffff803c003fffe7613460d0072000396e3fffffbffffff061d801804288680822779 + +fffe000601c001cc00 + +013ffff803c7fffffe7701fa0f180f01063ee3ffffffffffffe39dc05bfffdfff3feff79 + +fffc000e01c3e1cc00 + +013ffff803c003fffe77fffffffffffffffee1fffd69c617fffbfdffffffffffffffff79 + +fffc701e01ffffcc00 + +813ffff803c003fffe7ffffffffffffffffee3ff6ffebbfc7ffffdffffffffffffffff71 + +ffffffe601ffffcc00 + +813ffff801c7fffffefffffffffffffffffee3fdffffb3ffd7ff09fffffffffffffe1101 + +ffffc00401ffffcc00 + +813ffff801f807fffc00000000000000000001f7ffff87fff9ff007ffffffffffc600001 + +ffff800401ffffcc00 + +813ffff801e003fffc03ffffffffffffffa003efffffffffff7f683f00000000000000f9 + +ffff8ffc01ffffcc00 + +813ffff801e3e1fffef00000000000000021ffbffffefdffffbffc0000000000000000f9 + +ffff8fe401f81fcc00 + +813ffffc01c3e1fffef20000000000000027ff7ffff9fc7fffef7c0000040000000000f9 + +ffff800401f007cc00 + +813ffffc01c183fffe7200001002000000eff7ffffe7ff3fffff580a4007c183a90000f9 + +ffff800401e003cc00 + +813ffffc01e007fffe721fad0ccf83fc23edf7ffffdfffdfffff1c1c6607418fad3d80f9 + +ffff9f0401c001cc00 + +81bffffc01f03ffffe7221a04e637d4ed32df3ffff9fffefffff1cbc770c076faf7ca0f9 + +fffffffc03c3c5c800 + +81bffffc01ffc7fffe7223625e1cc032b10df3ffffffffffffff1cacdf2d0e67ac5e78f1 + +fffffffc03c464c800 + +80bfe3fc01ff01fffe7213735e38413d910df3ffffffffffffff1ca0cb281c33a8de20f1 + +ffffe01c03c464d810 + +80bfc1fc01f800fffe7202f35e33e125110df3ffffffffffffff1ca0c72a3d19a9b730f1 + +ffff801c03c0649810 + +c09fc0fc01f00cfffe7207d95ceaf527e88df3ffffffcfffffff1ca1872a37088b3318f1 + +ffff000c03c1409810 + +c09f8c7c00e38cfffe726c1d59d9152ac8c9f3fffffe33ffffff5cb1032e718c831118f1 + +ffff000c03e0409810 + +c09f807c00e388fffe725f1f5bc9bd37a469f3fffffdfcffffff5cb1e12c7003863888f1 + +fffffffc03f0c09810 + +c09f807e00e000fffe7a5a0f436999292669f3fffffbff7fffff5cb32128dc0b046cc0f1 + +fffffffc03ffff9810 + +c09ff1fe00e000fffe7a380144c895292269f3fffff7ff3fffff5cb220a99c6188e4c2f1 + +fffffffc03ffff9810 + +c09ffffe00f3fffffe7a68014100e633216df3ffffe7ff3fffff5cb300a9dee48987e2f1 + +fffffffc07ffffb810 + +c0dffffe00ff8ffffe7c48414000133107edf3ffffef079fffff5cb7800bc0003101f2f1 + +fffff3f807ffffb010 + +c04ffffe007f8cfffe7cc3fe4000086002edf3ffffce039fffff1ca40002fff0230032f1 + +fffff3f807ffff3010 + +c04fffff007ff87ffe79a40203fffc40006df3ffffcc019fffff1cae4201ffff000026f1 + +fff87ff8078fff3030 + +e04fffff007f807ffe3960001ffffc00002df3ffffccf99fffff1caf07e1ffff1ffc3e71 + +fff803f807007f3030 + +e04fffff007e007ffe1800ff1ffffe3f800df3ffffcdf09fffff1cb87ff8fffe7ffffe71 + +fff800380720033030 + +e04fffff007c03bffe1807ffe7ffe3fff80df3ffffcc269fffff1c28fffe3ff8ffffe471 + +fffb00180f00c32030 + +e06fffff003c7c3ffe183ffff9ffc3fffe4df3ffffec00bfffff5c3fffff9ff1fffffc71 + +ffffc0180f00426030 + +e027ffff003c003ffe207ffffe7f8fffffcdf3ffffe5883fffff7c3fffffdfe7fffffe71 + +ffffc6180ffc026030 + +f027ffff803c003ffe60ffffff1fbfffffcdf3fffff1487ff8ff7d7fffffefcffffffe71 + +fffbc6181fff066070 + +f027ffff803e03fffe61ffffffcf7ffffffff3fffff8b4fc907f7ffffffff7dffffffe71 + +fff1c0181fff066070 + +f027ffff801e3e1ffff7ffffffe6fffffffdf3fffffc78fc007f7ffffffffbbffffffef1 + +fff8f0701fff064070 + +f033ffff801e3c0ffff7fffffffffffffffcf3fffffc00fc207ffc7ffffffffffffffef1 + +fff80ff01f0e24c070 + +f013ffffc01e000ffff7fffffffffffffff8f1ffffe601f8205c003ffffff97fffcffc00 + +fffc07e01e0024c0f0 + +f813fff1c01f00fff801fffffffffffffff801ffffce01f80014003ffff813a1ffb3fc00 + +fffe03e03c0064c0f0 + +f813fff8c00fc3c7f801ffffffe03ffffff801ffff9c10382024003fff87f7bf3f7cfc01 + +ffcc41e03c03ccc0f0 + +f819fff8c00fff07f801ffffff9fdffffff001fffe7810082062003fff7ff73feefefc00 + +ffc071c03c301d80f0 + +f809f000e00ff803f801ffffff3067fffff001fffc7810006060003fd87ff87ff1ff7c00 + +ffc001c07e3c7980f0 + +fc09e000e0070003f805ffffff6017fffff07ffff87000006061803f3e3ffffffd00ff38 + +ffdc01c07ffff981f0 + +fc09e401e00701c3fef7fffffe4017fffffffffff8c040007279fd3f703fffffff00ff38 + +ffff81807ffffb81f0 + +fc0de407f0079fc7fef7fffffec707fffffff7fff080c010fb38fc3cc01fffffff80ff78 + +ff3fff807ffffb01f0 + +fc04e4ff1007bf07fe63fffffec207fffffde7fff101c00088187c1dc05fffffffe01f78 + +ff07e780fffff301f0 + +fe04e4601003fc0ffe63fffffec007fffffde7ffe000c01080183cfc807fffffffe00f78 + +ff00e700ff7ef303f0 + +fe04f0001003f01ffe63fffffec80ffffffce7ffe000800800113cfe82fffffffff80f78 + +ff300700f81c7203f0 + +fe0670001801e0fffe63ffffff4c0ffffff8f7ffe038830c00013cfe03dfffffffdc6770 + +fffc0701f0002603f0 + +fe0271001801e3c1fe63ffffffc00ffffff8f7ffe070c3c180033cfe03dfffffffcf7730 + +ffff8e01e0002607f0 + +ff02780e1801e3c0fe63ffffffc00ffffff8f7ffc0b0c1f00203bcff03bfffffffc7f330 + +ffff8e03cc006407f0 + +ff03383fdc00ffc8fe63ffffffe00ffffff8f7ffc090c0000207bcff803fffffff807330 + +ffc79c03c8406c07f0 + +ff01387ffc00f8c8fe63ffffffa02ffffff8f7ffc093f0000787bcffc07ffff3ef802330 + +fe019c03c9f8cc07f0 + +ff813cfffc0070f8fe77ffffff07e7fffff8f7ff9c8bf0007cffbcffc07fffe0e7802170 + +fc00f807d8ffcc0ff0 + +ff81bff866007001fe77fffffe0071fffff8f1ff9c8ff1807cf7bcffc43f0fe1e7803170 + +f840f807983f980ff0 + +ff809ff846003801de77fffffc0038fffff8f1ff988ffbf9fce7bcffc01fcff1e7803170 + +f8c470078607981ff0 + +ffc09f0c63003c079e77fffff80038fffffcf0ff98cffffffe67bcffc00fcffff3803370 + +f0e4700f8101981ff0 + +ffc0ce0c63003fff0e77fffff000007ffffcf07fd879ffffffe7bcffc10f8fff70033b78 + +ffe4600ffc61301ff0 + +ffc04f0c61801e630e77fffff040303ffffcf001c3f83fffffc7bcffc10f9fff32031f78 + +e3fc601ffe11301ff0 + +ffe04f0c61801e630e77fffff0c8703ffffcf00003fcbf83ff07bcffc02e9ffb9e233c78 + +e026c01fff83303ff0 + +ffe0670c09c00e000e77ffffe0fc7018e3fcf601807ffe03fc07bcffc0001ff80f238738 + +e807c01fffc6603ff0 + +ffe0270001c00f001277ffffc0fc700041fcf601c000001ff8c7bcffc0003ff047e00639 + +f803803e3fe6603ff0 + +fff03380c3e007002277ffff00f8781000fcf6038c00003fe0c7bcffc0007ff0f7c00239 + +80e3003c1ffec07ff0 + +fff0138007e007c1e277ffff01fffc3020fcf7038fffffe60187bcffc200fff9f1100239 + +806300781ffcc07ff0 + +fff013c00ff003ffc277fc010fbff83c21fcf701c1e7f8c20107bcffe001fffff1388039 + +dc0200780ffcc0fff0 + +fff819f01ff003ff8277f8011e0a307821fcf711c183f0826607bcffe003fffff9f84139 + +fe0600f881f980fff0 + +fff809fffff001fe0677f0031cc000f03dfcf71fc001e001640fbcfff063c0fffff80339 + +fe0e00f800f980fff0 + +fffc0dfff07801e00677f00730c03ff01ffcf63fc000e001eccf3cfff0e3c07fff180139 + +ffbc01ef007301fff0 + +fffc0cfff01800e07e77e10fe0e03ff01ffcf63f8000e001fdcf3cfff871fe7fffd80138 + +fff801c1c13301fff0 + +fffc06fff00c00f1fe77e113c7e43ff0f5fcf61f0c00e000ef9f3cfff0f8f67ffffc0138 + +fff803c0712203fff0 + +fffe027c180c007bfe77e393c7e03fe0c03cf61f3c006000efff3cfff07272fffffc0138 + +fff003c0002603fff0 + +fffe0370198e007ffe77e383c1c01fe0c03cf61e7c204400ffff3cfff04260fffffc0138 + +ffe007c0002607fff0 + +ffff01301907003ffe77e203e04087e1801cf708fe304c00f7ffbcfff00020fffffec138 + +ffe007b0204c07fff0 + +ffff01b93907001ffe77c003e00083e3811cf701fe10080073ff9cffe00020fffffe6738 + +ffc00f0d004c07fff0 + +ffff80981f07801ffe778001e0008183811cf78ffe081020707f9cffe00000ffffff7f38 + +ff801e0280980ffff0 + +ffff80d8100f800ffe778001c00000c0011cf7ffe6006020700f9cffe00000ffffffed38 + +ff801e00c1980ffff0 + +ffffc04c000fc007fe770001c0020060173cf7be0600600030879cffe07000fffffff338 + +ff003e0401301ffff0 + +ffffc06e001fc007fe770831c00200639ffcf73c0e00202030479cffe03800fffffff838 + +ff003f0201301ffff0 + +ffffe026023fe003fe77083080000073f83cf7380e0f0020300f9cffe31c00ffffffff38 + +fe007ff102603ffff0 + +ffffe037807ff001fe77000180000063c83cf6383e0ff060180f9cffe31e00ffffffff38 + +fe00fff802603ffff0 + +fffff013e0fff001fe776403800c0003683cf600300ffce01b1f9cffe03c007fffffff38 + +fc00fffc04c07ffff0 + +fffff01bfffff800fe77cc03c01c0003683cf400000ff8e00fff9cffe070007fffffff38 + +f801fffff8c07ffff0 + +fffff809fffffc007e77cc03c0080000249cf660000ff8e20fff9cfff01c007fffffff38 + +f001fffff980fffff0 + +fffff80cfffffc007e778c018008020324dcf7f7f00ff1e20fff9cfff03f207fffffff38 + +e003fffffb80fffff0 + +fffffc06fffffe003e778d01887c82032edcf7fff003ffe21fff9ce0203e207fffffff38 + +c007fffff301fffff0 + +fffffc067fffff001e770d008c7da7032efcf7fff801ffffffff9cc0003e727fffffff38 + +c007ffffe601fffff0 + +fffffe037fffff000e7719008c7dee076ffcf7ffffffffffffff9cc0007ef27fffffff38 + +800fffffe603fffff0 + +fffffe013fffff80067719008e7fee07fffcf7ffffffffffffff9cc701fff27fffffff38 + +801fffffcc07fffff0 + +ffffff01bfffffc0067619008fffe007fffcf3ffffffffffffff9ce00ff3f27fffffff38 + +803fffffdc07fffff0 + +ffffff009fffffe0067619004fff83cffc7cf3ffffffffffffff9cc03fc7f27fffffff38 + +803fffff980ffffff0 + +ffffff80cfffffe0067638007ff07f8e0e3cf3ffffffffffffff9c80ff0ff27fffffff38 + +807fffff380ffffff0 + +ffffffc06ffffff0067438007fffff8c033cf204007fffc000079cfc7c3ff23fffffff38 + +80ffffff301ffffff0 + +ffffffc027ffdff806707a847fffff8003fcf307e1fffffe1fff9cf800ff001fffffff38 + +80ffc7fe601ffffff0 + +ffffffe037ff0cfc0670f0e47fffffc607fcf3ffffffffffffff9ce003e0001fffffff38 + +81ff03fee03ffffff0 + +ffffffe013ff0cfc0670c000ffffffff87fcf3ffffffffffffff9cc01fff67ffffffff38 + +83fc03fcc07ffffff0 + +fffffff019ff04fe06630009fffffffff7fcf3ffffffffffffff9cc7ffffffffffffff38 + +87fcc7f9807ffffff0 + +fffffff80dff60ff0662001ffffffffffffcf3ffffffffffffff9cdfffffffffffffff38 + +8ffc67fb80fffffff0 + +fffffff804ff60ff84620ffffffffffffffcf3ffffffffffffff9cffffffffffffffff38 + +9ffe07f300fffffff0 + +fffffffc027f81ffc467fffffffffffffffcf3ffffffffffffff9cffffffffffffffff38 + +bfffffe601fffffff0 + +fffffffc033fe3ffe5f7fffffffffffffffcf3ffffffffffffff9cffffffffffffffff3c + +ffffffee03fffffff0 + +fffffffe01bfffffe7fffffffffffffffffcf7ffffffffffffff9cffffffffffffffff38 + +ffffffcc03fffffff0 + +ffffffff009ffffffc7fffe0000000000000f0000000000000001c000000000000000000 + +7fffff9807fffffff0 + +ffffffff804ffffffc000000000000000000f0000000000000003dfc0000000000000000 + +7fffff300ffffffff0 + +ffffffff806ffffffc0ffffffffffffffffcf7ffffffffffffffbdffffffffffffffff00 + +7ffffe301ffffffff0 + +ffffffffc027fffffc000000000000000000f0000000000000003d000000000000000000 + +7ffffe601ffffffff0 + +ffffffffe033fffffefffffffffffffffffcf060007fffffffffbdffffffffffffffff1d + +fffffcc03ffffffff0 + +fffffffff019fffffef7fffffffffffffffcffffffffffffffffbdffffffffffffffff3d + +fffff9807ffffffff0 + +fffffffff00cfffffee7fffffffffffffffcffffffffffffffffbdffffffffffffffff39 + +fffff3807ffffffff0 + +fffffffff8067ffffee7fffffffffffffffcf7ffffffffffffffbdffffffffffffffff39 + +ffffe700fffffffff0 + +fffffffffc033ffffee7fffffffffffffffde7ffffffffffffffbdffffffffffffffff38 + +ffffe601fffffffff0 + +fffffffffe01bffffee7ffffffc3f0e6040de7c73cc7ffcf840fbdf7ffffffffffffff38 + +ffffcc03fffffffff0 + +fffffffffe009ffffee713279481f041030de7040cc7e0060407bd82323e6883e3252fb8 + +ffff9803fffffffff0 + +ffffffffff00cffffee611279481f141013de60404c7e0062447bd02123e4881c1252fb8 + +ffff3007fffffffff0 + +ffffffffff8067fffee4202794991049933de678c4c440643c67bd0a12724899cd252fb8 + +fffe700ffffffffff0 + +ffffffffffc033fffe644c2494811049933de678c4c444640c67bd1cd26248994d252fb8 + +fffce01ffffffffff0 + +ffffffffffe019fffe644c249481f080933de60444c7c4623c67bd1c927e48814f212bb8 + +fff8c03ffffffffff0 + +fffffffffff00cfffe6420079081f1c0931ce7040445c4623447bd0c120e4083c53123b8 + +fff9807ffffffffff0 + +fffffffffff0067ffe6611039088f1c0921ce7860c41c463040fbd82100e4081e13323b8 + +fff3007ffffffffff0 + +fffffffffff8033ffe671301908c71f3fe1ce7ffbc01ceff8c1fbdc2300c6188f33b2338 + +ffe600fffffffffff0 + +fffffffffffc019ffe77fffffffffffffffcefffffffffffffffbdffffffffffffffff38 + +ffcc01fffffffffff0 + +fffffffffffe00cffe77fffffffffffffffcefffffffffffffffbdffffffffffffffff38 + +ff9c03fffffffffff0 + +ffffffffffff0067fe77fffffffffffffffcefffffffffffffffbdffffffffffffffff38 + +ff3007fffffffffff0 + +ffffffffffff8033fe67fffffffffffffffcefffffffffffffffbd000000000000000039 + +fc600ffffffffffff0 + +ffffffffffffc019fc77fffffffffffffffcefe0401ff840c03fbdfffffffffffffffe01 + +f8c01ffffffffffff0 + +ffffffffffffe00cf837fffffffffffffffee7c0401fe040403fbd800000000000000001 + +f1803ffffffffffff0 + +fffffffffffff00678000000000000000000e48fc899e266513fbdc000000000000003fc + +e3007ffffffffffff0 + +fffffffffffff80338000001fffffffffff8e480f8f1c6627127bdffffffffffffffffff + +c600fffffffffffff0 + +fffffffffffffc019ffffffff8000ffffff8e580f8fbc06071e7bdfffffc0000ffffffff + +8c01fffffffffffff0 + +fffffffffffffe00cffffffff80000fffff8e787f8ffc06071ffbcfffff00001ffffffff + +3803fffffffffffff0 + +ffffffffffffff0067fffffffe00001ffff8e7c0787f042231ffbcffff800007fffffffe + +7007fffffffffffff0 + +ffffffffffffff8031ffffffff800007fff8e7e0787f062230ffb8fffe00001ffffffffc + +c00ffffffffffffff0 + +ffffffffffffffc01cffffffffc00001fff8efffffffffffffffb8fff800003ffffffff1 + +801ffffffffffffff0 + +ffffffffffffffe0067ffffffff000003ff8efffffffffffffffb8ffc00000ffffffffe7 + +003ffffffffffffff0 + +fffffffffffffff0033ffffffffc000007f8efffffffffffffffb8fe000003ffffffffce + +00fffffffffffffff0 + +fffffffffffffffc01cfffffffff000000f8fc0000000000000000f000000fffffffff9c + +01fffffffffffffff0 + +fffffffffffffffe0067ffffffffc000001c0000000000000000078000003ffffffffe30 + +03fffffffffffffff0 + +ffffffffffffffff0033fffffffff0000007f8fffffffffff8007c000000fffffffffc60 + +07fffffffffffffff0 + +ffffffffffffffff8019fffffffffc0000000fffffffffffffffc0000003fffffffff9c0 + +0ffffffffffffffff0 + +ffffffffffffffffc00c7ffffe3fff80000001fffffffffffff00000001fffc9ffffe300 + +1ffffffffffffffff0 + +fffffffffffffffff0073ffff307fff000000007fffffffffe000000007fff01ffffce00 + +7ffffffffffffffff0 + +fffffffffffffffff8018ffff007fffc0000000003fffffe0000000003ffff00ffff1c00 + +fffffffffffffffff0 + +fffffffffffffffffc00c7fff067ffff8000000000000000000000001fffff087ffe3801 + +fffffffffffffffff0 + +fffffffffffffffffe0033fff247fffff000000000000000000000007fffff28fff8e003 + +fffffffffffffffff0 + +ffffffffffffffffff0008fff98ffffffe0000000000000000000003ffffff31fff1800f + +fffffffffffffffff0 + +ffffffffffffffffffc0063ff81fffffffc00000000000000000001fffffff81ffc7001f + +fffffffffffffffff0 + +ffffffffffffffffffe0019ffffffffffffc000000000000000001ffffffffdfff1c003f + +fffffffffffffffff0 + +fffffffffffffffffff80047ffffffffffffc0000000000000001ffffffffffffe3800ff + +fffffffffffffffff0 + +fffffffffffffffffffc0021fffffffffe0fff00000000000003fa1ffffffffff8e001ff + +fffffffffffffffff0 + +ffffffffffffffffffff00187ffffffffe07fffc0000000001ffc01fffffffffe38007ff + +fffffffffffffffff0 + +ffffffffffffffffffff80061ffffffffe0707fffe000007ffff801fffffffff8f000fff + +fffffffffffffffff0 + +ffffffffffffffffffffe00187fffffffe4f03fffffffffff0ff001ffffffffe1c003fff + +fffffffffffffffff0 + +fffffffffffffffffffff80061fffffffe4f03fc07ffffff807e201ffffffffc7000ffff + +fffffffffffffffff0 + +fffffffffffffffffffffc0018fffffffe4f27f003c0c3ff80fe631ffffffff1c001ffff + +fffffffffffffffff0 + +ffffffffffffffffffffff00061ffffffe4f27c003c000ffccfe71ffffffff870007ffff + +fffffffffffffffff0 + +ffffffffffffffffffffffc00187fffffc5f678833c0067fccff00fffffffe1c001fffff + +fffffffffffffffff0 + +ffffffffffffffffffffffe00061fffffc9f47b123cc027fecff803ffffff870003fffff + +fffffffffffffffff0 + +fffffffffffffffffffffff800183ffff89f473383cc327fe4f3c01fffffe3c000ffffff + +fffffffffffffffff0 + +fffffffffffffffffffffffe00060ffff89e476787ccf27ee6e3391fffff0e0003ffffff + +fffffffffffffffff0 + +ffffffffffffffffffffffff8001c3fff83e476787ccf27c6663099ffff878000fffffff + +fffffffffffffffff0 + +ffffffffffffffffffffffffe000383ff03e4f6707ccf27c3643011fffc1e0003fffffff + +fffffffffffffffff0 + +fffffffffffffffffffffffff8000f07fe3c4f2727ccf27e1241001ffe078000ffffffff + +fffffffffffffffff0 + +fffffffffffffffffffffffffe0000c1fffc0f2327cce01e0201003ff03c0003ffffffff + +fffffffffffffffff0 + +ffffffffffffffffffffffffff8000383ffc0f8027cce01e0201007fc1e0000fffffffff + +fffffffffffffffff0 + +ffffffffffffffffffffffffffe0000781ffcfc027cce01e0001bff81f00003fffffffff + +fffffffffffffffff0 + +fffffffffffffffffffffffffffc0000f01fffe003c0e01f0001ff80780001ffffffffff + +fffffffffffffffff0 + +ffffffffffffffffffffffffffff00000f00fff80380e01f0037f80780000fffffffffff + +fffffffffffffffff0 + +ffffffffffffffffffffffffffffe00000f00fffe7fff03fffff007800003fffffffffff + +fffffffffffffffff0 + +fffffffffffffffffffffffffffff800000f800fffffffffff000f800001ffffffffffff + +fffffffffffffffff0 + +ffffffffffffffffffffffffffffff000000fc0003ffffff8003f8000007ffffffffffff + +fffffffffffffffff0 + +ffffffffffffffffffffffffffffffe0000007f00000000003fe0000003fffffffffffff + +fffffffffffffffff0 + +fffffffffffffffffffffffffffffffc0000000ffe000003ff00000003ffffffffffffff + +fffffffffffffffff0 + +ffffffffffffffffffffffffffffffffc000000003ffffff000000001fffffffffffffff + +fffffffffffffffff0 + +fffffffffffffffffffffffffffffffffc0000000000000000000001ffffffffffffffff + +fffffffffffffffff0 + +ffffffffffffffffffffffffffffffffffe00000000000000000000fffffffffffffffff + +fffffffffffffffff0 + +fffffffffffffffffffffffffffffffffffe000000000000000003ffffffffffffffffff + +fffffffffffffffff0 + +fffffffffffffffffffffffffffffffffffff8000000000000007fffffffffffffffffff + +fffffffffffffffff0 + +ffffffffffffffffffffffffffffffffffffffc000000000000fffffffffffffffffffff + +fffffffffffffffff0 + +ffffffffffffffffffffffffffffffffffffffffc00000003fffffffffffffffffffffff + +fffffffffffffffff0 + +> + +imagemask + +grestore + +pse +-30 -28 xl +196 69 gm +(nc 0 0 781 538 6 rc)kp +F 1 setTxMode +1 fs +bu fc +{}mark T /Times-Bold /|______Times-Bold 0 rf +bn +18 fz +bu fc +2 F /|______Times-Bold fnt +bn +(A Comparison of Parallel Search Algorithms based on)show +213 225 gm +(Tree Splitting)show +289 227 gm +14 fz +bu fc +2 F /|______Times-Bold fnt +bn +(Paolo Ciancarini)show +410 182 gm +(Technical Report UBLCS-94-14)show +439 249 gm +0 fs +bu fc +{}mark T /Times-Roman /|______Times-Roman 0 rf +bn +bu fc +2 F /|______Times-Roman fnt +bn +(May 1994)show +633 183 gm +(Laboratory for Computer Science)show +651 215 gm +(University of Bologna)show +669 199 gm +(Piazza di Porta S. Donato, 5)show +687 216 gm +(40127 Bologna \(Italy\))show +F T cp +%%Page: ? 2 +op +30 28 811 566 fr +0 0 xl +1 1 pen +0 0 gm +(nc 0 0 0 0 6 rc)kp +139 79 gm +(nc 30 28 811 566 6 rc)kp +F 1 setTxMode +0 fs +10 fz +bu fc +2 F /|______Times-Roman fnt +bn +1.17721 0. 32 0.11772 0.(The University of Bologna Laboratory for Computer Science Research Technical Reports are available via)awidthshow +153 79 gm +0.77774 0. 32 0.07777 0.(anonymous FTP from the area )awidthshow +bu fc +{}mark T /Courier /|______Courier 0 rf +bn +bu fc +2 F /|______Courier fnt +bn +0.29316 0.(ftp.cs.unibo.it:/pub/TR/UBLCS)ashow +bu fc +2 F /|______Times-Roman fnt +bn +0.91796 0. 32 0.09179 0.( in compressed PostScript format.)awidthshow +167 79 gm +1.05239 0. 32 0.10523 0.(Abstracts are available from the same host in the directory )awidthshow +bu fc +2 F /|______Courier fnt +bn +0.42799 0.(/pub/TR/UBLCS/ABSTRACTS)ashow +bu fc +2 F /|______Times-Roman fnt +bn +0.83404 0. 32 0.08340 0.( in plain text)awidthshow +181 79 gm +(format. All local authors can be reached via e-mail at the address )show +2 fs +bu fc +{}mark T /Times-Italic /|______Times-Italic 0 rf +bn +bu fc +2 F /|______Times-Italic fnt +bn +(last-name)show +0 fs +bu fc +2 F /|______Courier fnt +bn +(@cs.unibo.it.)show +207 79 gm +1 fs +11 fz +bu fc +2 F /|______Times-Bold fnt +bn +(UBLCS Technical Report Series)show +232 80 gm +0 fs +10 fz +bu fc +2 F /|______Times-Roman fnt +bn +(93-1)show +232 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +2.19955 0. 32 0.21995 0.(Consistent Global States of Distributed Systems: Fundamental Concepts and Mechanism)awidthshow +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +1.11801 0. 32 0.11180 0.(, by \205.)awidthshow +245 110 gm +(Babao)show +245 136 gm +(g;\371lu and K. Marzullo, January 1993.)show +258 80 gm +(93-2)show +258 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(Understanding Non-Blocking Atomic Commitment)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(, by \205. Babao)show +258 368 gm +(g;\371lu and S. Toueg, January 1993.)show +271 80 gm +(93-3)show +271 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(Anchors and Paths in a Hypertext Publishing System)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(, by C. Maioli and F. Vitali, February 1993.)show +284 80 gm +(93-4)show +284 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(A Formalization of Priority Inversion)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(, by \205. Babao)show +284 316 gm +(g;\371lu, K. Marzullo and F. Schneider, March 1993.)show +297 80 gm +(93-5)show +297 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +0.68313 0. 32 0.06831 0.(Some Modifications to the Dexter Model for the Formal Description of Hypertexts)awidthshow +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.52368 0. 32 0.05236 0.(, by S. Lamberti, C.)awidthshow +310 110 gm +(Maioli and F. Vitali, April 1993.)show +323 80 gm +(93-6)show +323 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +0.50613 0. 32 0.05061 0.(Versioning Issues in a Collaborative Distributed Hypertext)awidthshow +11 fz +bu fc +2 F /|______Times-Italic fnt +bn +( )show +323 354 gm +10 fz +bu fc +2 F /|______Times-Italic fnt +bn +0.18540 0.(System)ashow +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.49468 0. 32 0.04946 0.(, by C. Maioli, S. Sola and F. Vitali,)awidthshow +336 110 gm +(April 1993.)show +349 80 gm +(93-7)show +349 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(Distributed Programming with Logic Tuple Spaces)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(, by P. Ciancarini, April 1993.)show +362 80 gm +(93-8)show +362 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(Coordinating Rule-Based Software Processes with ESP)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(, by P. Ciancarini, April 1993.)show +375 80 gm +(93-9)show +375 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(What is Logic Programming good for in Software Engineering)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(, by P. Ciancarini and G. Levi, April 1993.)show +388 80 gm +(93-10)show +388 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +0.84320 0. 32 0.08432 0.(Scheduling Real Time Tasks: A Performance Study)awidthshow +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.59097 0. 32 0.05909 0.(, by F. Panzieri, L. Donatiello and L. Poretti, May)awidthshow +401 110 gm +(1993.)show +414 80 gm +(93-11)show +414 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +0.58334 0. 32 0.05833 0.(Specification and Detection of Behavioral Patterns in Distributed Computations)awidthshow +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.37704 0. 32 0.03770 0.(, by \205. Babao)awidthshow +414 498 gm +0.54534 0. 32 0.05453 0.(g;\371lu and)awidthshow +427 110 gm +(M. Raynal, May 1993.)show +440 80 gm +(93-12)show +440 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(Interaction Systems II: The Practice of Optimal Reductions)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(, by A. Asperti and C. Laneve, May 1993.)show +453 80 gm +(93-13)show +453 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +1.00616 0. 32 0.10061 0.(Reliability Analysis of Tree-Based Structures and its Application to Fault-Tolerant VLSI Systems)awidthshow +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.61645 0. 32 0.06164 0.(, by)awidthshow +466 110 gm +(Marco Roccetti, June 1993.)show +479 80 gm +(93-14)show +479 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(Guard Compilation in Logic Shared Dataspace Languages)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(, by M. Garpari, June 1993.)show +492 80 gm +(93-15)show +492 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +1.16424 0. 32 0.11642 0.(Data Algorithm: A Numerical Method to Extract Shape Information from Gray Scale Images)awidthshow +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.66116 0. 32 0.06611 0.(, by R.)awidthshow +505 110 gm +(Davoli and F. Tamburini, June 1993.)show +518 80 gm +(93-16)show +518 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(Towards Performance Evaluation in Process Algebra)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(, by R. Gorrieri and M. Roccetti, July 1993.)show +531 80 gm +(93-17)show +531 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(Split and ST Bisimulation Semantics)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(, by R. Gorrieri and C. Laneve, July 1993.)show +544 80 gm +(93-18)show +544 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(Multilanguage Interoperability)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(, by G. Attardi and M. Gaspari, July 1993.)show +557 80 gm +(93-19)show +557 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +0.20431 0. 32 0.02043 0.(HERMES: an Expert System for the Prognosis of Hepatic Diseases)awidthshow +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.14709 0. 32 0.01470 0.(, by I. Bonf\210, C. Maioli, F. Sarti, G.L.)awidthshow +570 110 gm +(Milandri and P.R. Dal Monte, September 1993)show +583 80 gm +(93-20)show +583 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(An Information Flow Security Property for CCS)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(, by R. Focardi and R. Gorrieri, October 1993.)show +596 80 gm +(93-21)show +596 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(A Classification of Security Properties)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(, by R. Focardi and R. Gorrieri, October 1993.)show +609 80 gm +(93-22)show +609 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(Real Time Systems: A Tutorial)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(, by F. Panzieri and R. Davoli, October 1993.)show +622 80 gm +(93-23)show +622 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +-0.00643 0.(A Scalable Architecture for Reliable Distributed Multimedia Applications)ashow +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +-0.00637 0.(, by F. Panzieri and M. Roccetti,)ashow +635 110 gm +(October 1993.)show +648 80 gm +(93-24)show +648 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(Wide-Area Distribution Issues in Hypertext Systems)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(, by C. Maioli, S. Sola and F. Vitali, October 1993.)show +661 80 gm +(93-25)show +661 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(On Relating Some Models for Concurrency)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(, by P. Degano, R. Gorrieri and S. Vigna, October 1993.)show +674 80 gm +(93-26)show +674 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +1.45263 0. 32 0.14526 0.(Axiomatising ST Bisimulation Equivalence)awidthshow +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.88378 0. 32 0.08837 0.(, by N. Busi, R. van Glabbeek and R. Gorrieri, December)awidthshow +687 110 gm +(1993.)show +700 80 gm +(93-27)show +700 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +1.48498 0. 32 0.14849 0.(A Theory of Processes with Durational Actions)awidthshow +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +1.30096 0. 32 0.13009 0.(, by R. Gorrieri, M. Roccetti and E. Stancampiano,)awidthshow +713 110 gm +(December 1993.)show +F T cp +%%Page: ? 3 +op +30 28 811 566 fr +0 0 xl +1 1 pen +0 0 gm +(nc 0 0 0 0 6 rc)kp +801 525 gm +(nc 30 28 811 566 6 rc)kp +F 1 setTxMode +0 fs +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(1)show +146 79 gm +1 fs +18 fz +bu fc +2 F /|______Times-Bold fnt +bn +2.25738 0. 32 0.22573 0.(A Comparison of Parallel Search Algorithms based on)awidthshow +164 79 gm +(Tree Splitting)show +217 79 gm +12 fz +bu fc +2 F /|______Times-Bold fnt +bn +(Paolo Ciancarini)show +0 -4 rm +9 fz +bu fc +2 F /|______Times-Bold fnt +bn +(1)show +294 79 gm +0 fs +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(Technical Report UBLCS-94-14)show +322 79 gm +(May 1994)show +363 79 gm +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(Abstract)show +380 79 gm +2 fs +10 fz +bu fc +2 F /|______Times-Italic fnt +bn +0.01831 0. 32 0.00183 0.(We have used a distributed programming environment to compare a number of parallel search algorithms in the)awidthshow +394 79 gm +0.43136 0. 32 0.04313 0.(domain of chess. The environment runs on a network of workstations; it is based on Linda for coordination of)awidthshow +408 79 gm +0.84838 0. 32 0.08483 0.(the search and on GNUChess for chess knowledge. In order to make a practical comparison, we have built)awidthshow +422 79 gm +0.43441 0. 32 0.04344 0.(several parallel programs using different search algorithms. We have formalized and classified the concept of)awidthshow +436 79 gm +0.34042 0. 32 0.03404 0.(parallel search algorithms based game tree splitting. The algorithms have been classified in two main classes:)awidthshow +450 79 gm +0.46676 0. 32 0.04667 0.(static and dynamic. We show that on a workstation network static algorithms are more efficient than dynamic)awidthshow +464 79 gm +(ones. Our results confirm and broaden older works by Marsland, Campbell, Schaeffer, and others.)show +739 79 gm +0 fs +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(\321\321\321)show +749 79 gm +1 fs +9 fz +bu fc +2 F /|______Times-Bold fnt +bn +(1)show +0 1 rm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(.)show +750 94 gm +(E-mail: cianca@cs.unibo.it)show +F T cp +%%Page: ? 4 +op +30 28 811 566 fr +0 0 xl +1 1 pen +0 0 gm +(nc 0 0 0 0 6 rc)kp +91 336 gm +(nc 30 28 811 566 6 rc)kp +F 1 setTxMode +0 fs +bu fc +{}mark T /Helvetica /|______Helvetica 0 rf +bn +10 fz +bu fc +2 F /|______Helvetica fnt +bn +(A Comparison of Parallel Search Algorithms)show +773 79 gm +(UBLCS-94-14)show +773 519 gm +(2)show +134 79 gm +1 fs +12 fz +bu fc +2 F /|______Times-Bold fnt +bn +(1. Introduction)show +147 79 gm +0 fs +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +1.81762 0. 32 0.18176 0.(The alphabeta algorithm is the basis of most sequential programs that search game trees. Its)awidthshow +158 79 gm +0.35644 0. 32 0.03564 0.(efficiency is decisive in chess playing programs, whose playing strength can be precisely measured)awidthshow +169 79 gm +1.08215 0. 32 0.10821 0.(using the Elo system [Elo86]. For instance, some experiments found that improving 5 times the)awidthshow +180 79 gm +0.24139 0. 32 0.02413 0.(running time of such an algorithm the playing strength of a chess programs improves about 200 Elo)awidthshow +191 79 gm +0.08392 0. 32 0.00839 0.(points [Tho82]. One could expect that multiprocessors and multicomputers should be very helpful in)awidthshow +202 79 gm +1.07360 0. 32 0.10736 0.(building stronger chess programs. However, it is well known that the efficient parallelization of)awidthshow +213 79 gm +0.75637 0. 32 0.07563 0.(alphabeta is a difficult problem [FinFis82]. Several different ways to parallelism in chess playing)awidthshow +224 79 gm +(programs have been explored; a short survey is found in [BalVRe86]. The main methods are:)show +236 88 gm +2.15698 0. 32 0.21569 0.(i\) Parallel aspiration search [Bau78]: the alphabeta window is partitioned in a number of)awidthshow +247 101 gm +0.00518 0. 32 0.00051 0.(contiguous segments, that are used by different processors to explore the same game tree; this is)awidthshow +258 101 gm +(a form of OR-parallelism.)show +271 88 gm +1.79580 0. 32 0.17958 0.(ii\) Parallel evaluation by special hardware; )awidthshow +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +0.39163 0.(e.g.)ashow +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +1.88949 0. 32 0.18894 0.(, HITECH uses parallel hardware for move)awidthshow +282 101 gm +2.09396 0. 32 0.20939 0.(generation [Ebe86], while Deep Thought [Hsu90] uses parallel hardware for evaluating)awidthshow +293 101 gm +(positions.)show +306 88 gm +0.44219 0. 32 0.04421 0.(iii\) Mapping the search space on the processor set by a hash function: this is advantageous if the)awidthshow +317 101 gm +1.15493 0. 32 0.11549 0.(search space contains several duplicate states; )awidthshow +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +0.24205 0.(e.g.)ashow +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +1.09634 0. 32 0.10963 0.(, [Sti91] describes how the whole search)awidthshow +328 101 gm +(space of some chess endings was mapped on a Connection Machine.)show +341 88 gm +0.93551 0. 32 0.09355 0.(iv\) Parallel search of \322splitted\323 game tree: the game tree is decomposed assigning its nodes to)awidthshow +352 101 gm +(different search processes.)show +364 79 gm +0.66818 0. 32 0.06681 0.(The last method is the most widely studied and used. For instance, in [MarCam82] several search)awidthshow +375 79 gm +0.26077 0. 32 0.02607 0.(algorithms were described and compared; other experiments with different algorithms are described)awidthshow +386 79 gm +0.56335 0. 32 0.05633 0.(in [MOS86]. However, after those seminal papers we found no newer survey works on comparing)awidthshow +397 79 gm +0.09002 0. 32 0.00900 0.(parallel algorithms, although new ones have been invented. We decided to test the flexibility and the)awidthshow +408 79 gm +0.59478 0. 32 0.05947 0.(performance of a modern parallel language in implementing such algorithms on a general purpose)awidthshow +419 79 gm +(network.)show +430 79 gm +2.87628 0. 32 0.28762 0.(Thus, in this paper we compare some parallel search algorithms based on tree splitting,)awidthshow +441 79 gm +1.16760 0. 32 0.11676 0.(implementing them all in the same hw/sw environment, )awidthshow +441 342 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(i.e.,)show +441 358 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +1.26510 0. 32 0.12651 0.( C-Linda [SCA90] on a network of)awidthshow +452 79 gm +0.90667 0. 32 0.09066 0.(workstations. We have developed a chess-oriented software library based on a publicly available)awidthshow +463 79 gm +0.73593 0. 32 0.07359 0.(program, namely GNUChess \(courtesy of Open Software Foundation\). Using these tools we have)awidthshow +474 79 gm +0.55084 0. 32 0.05508 0.(built several parallel playing programs, embedding different parallel search algorithms; in order to)awidthshow +485 79 gm +1.41540 0. 32 0.14154 0.(simplify comparison with results reported in other papers, our experiments were made using a)awidthshow +496 79 gm +(standard set of tests [BraKop82].)show +507 79 gm +0.30136 0. 32 0.03013 0.(This paper has the following structure: in Sect. 2 we define the concept of static and dynamic game)awidthshow +518 79 gm +0.22994 0. 32 0.02299 0.(tree splitting; in Sect. 3 we discuss how parallel search algorithms can be programmed in Linda; we)awidthshow +529 79 gm +0.27206 0. 32 0.02720 0.(summarise our experiments on static splitting algorithms in Sect.4, whereas Sect.5 contains data for)awidthshow +540 79 gm +0.39337 0. 32 0.03933 0.(dynamic splitting algorithms. In Sect.6 we make a number of comparisons with results obtained by)awidthshow +551 79 gm +(other researchers.)show +581 79 gm +1 fs +12 fz +bu fc +2 F /|______Times-Bold fnt +bn +(2. A classification of splitting criteria)show +594 79 gm +0 fs +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.18798 0. 32 0.01879 0.(There are several ways for handling a game tree during a parallel search, that basically differ for the)awidthshow +605 79 gm +0.64132 0. 32 0.06413 0.(splitting rules they use. We define some concepts in order to highlight properties of such splitting)awidthshow +616 79 gm +(rules. Consider the following definitions:)show +628 88 gm +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(Def)show +628 104 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.72631 0. 32 0.07263 0.(. )awidthshow +628 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +0.00660 0.(Splitting)ashow +628 147 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.59432 0. 32 0.05943 0.(: Let A be a game tree and N={N)awidthshow +628 300 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.20324 0.(1)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.50598 0. 32 0.05059 0.(, N)awidthshow +628 318 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.19212 0.(2)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.49163 0. 32 0.04916 0.(, \311, N)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.19212 0.(n)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.56747 0. 32 0.05674 0.(} its set of nodes; let P={P)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.19212 0.(1)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.41320 0. 32 0.04132 0.(, P)awidthshow +628 494 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.15512 0.(2)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.51040 0. 32 0.05104 0.(, \311,)awidthshow +643 101 gm +(P)show +643 107 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.10221 0.(m)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.17745 0. 32 0.01774 0.(} a set of processes. A )awidthshow +643 216 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +0.00639 0.(splitting)ashow +643 252 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.19348 0. 32 0.01934 0.( for A in P is a function D:N)awidthshow +643 379 gm +bu fc +{}mark F /Symbol /|______Symbol 0 rf +bn +bu fc +2 F /|______Symbol fnt +bn +0.12472 0.(\256)ashow +bu fc +2 F /|______Times-Roman fnt +bn +0.17547 0. 32 0.01754 0.(P which maps each node of A)awidthshow +655 101 gm +(to a process in P.)show +668 88 gm +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(Def)show +668 104 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.82168 0. 32 0.08216 0.(. )awidthshow +668 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +1.02569 0. 32 0.10256 0.(Explorer and supervisor processes)awidthshow +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.49407 0. 32 0.04940 0.(: Let D be a splitting for the game tree A to the set P of)awidthshow +683 101 gm +1.24938 0. 32 0.12493 0.(processes; let N be the nodes of A and N)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.22651 0.(i)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +1.26876 0. 32 0.12687 0.( a generic node \(N)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.22651 0.(i)ashow +11 fz +bu fc +2 F /|______Symbol fnt +bn +0.71040 0.(\316)ashow +bu fc +2 F /|______Times-Roman fnt +bn +1.18743 0. 32 0.11874 0.(N\). We call )awidthshow +683 454 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +0.00755 0.(explorer)ashow +683 491 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +1.53289 0. 32 0.15328 0.( of N)awidthshow +683 517 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(i)show +699 101 gm +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.35369 0. 32 0.03536 0.(\(according to D\) the process D\(N)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(i)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.30151 0. 32 0.03015 0.(\). Moreover, let )awidthshow +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +0.10374 0.(father)ashow +699 351 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.48904 0. 32 0.04890 0.(: N)awidthshow +699 365 gm +bu fc +2 F /|______Symbol fnt +bn +0.25772 0.(\256)ashow +bu fc +2 F /|______Times-Roman fnt +bn +0.36575 0. 32 0.03657 0.(N be a function that associates a)awidthshow +711 101 gm +1.37420 0. 32 0.13742 0.(node with its predecessor node \(we define the root node as predecessor of itself\); we call)awidthshow +722 101 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(supervisor)show +722 147 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +( of N)show +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(i)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +( \(according to D\) the process D\(father\(N)show +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(i)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(\)\).)show +734 79 gm +0.84487 0. 32 0.08448 0.(After a splitting the evaluation of a subtree is assigned to a specific process named )awidthshow +734 464 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +0.00755 0.(explorer)ashow +734 501 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.94177 0. 32 0.09417 0.(. For)awidthshow +745 79 gm +0.42999 0. 32 0.04299 0.(instance, let \(N)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.05787 0.(i)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.10260 0.(,P)ashow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.05787 0.(j)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.25680 0. 32 0.02568 0.(\) be a pair in D; since N)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.05787 0.(i)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.36682 0. 32 0.03668 0.( fully identifies the subtree S)awidthshow +745 397 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.07580 0.(i)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.35919 0. 32 0.03591 0.( of which it is the root, the)awidthshow +F T cp +%%Page: ? 5 +op +30 28 811 566 fr +0 0 xl +1 1 pen +0 0 gm +(nc 0 0 0 0 6 rc)kp +91 336 gm +(nc 30 28 811 566 6 rc)kp +F 1 setTxMode +0 fs +10 fz +bu fc +2 F /|______Helvetica fnt +bn +(A Comparison of Parallel Search Algorithms)show +773 79 gm +(UBLCS-94-14)show +773 519 gm +(3)show +118 79 gm +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.13336 0. 32 0.01333 0.(minimax value for subtree S)awidthshow +118 204 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(i)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.13778 0. 32 0.01377 0.( must be computed by explorer P)awidthshow +118 352 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(j)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.13641 0. 32 0.01364 0.(. To evaluate a subtree S)awidthshow +118 463 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(i)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.12878 0. 32 0.01287 0.( the explorer)awidthshow +129 79 gm +(P)show +129 85 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.07980 0. 32 0.00798 0.(j )awidthshow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.32028 0. 32 0.03202 0.(has to know the minimax values of the subtrees whose roots are the successors of N)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.05039 0.(i)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.34561 0. 32 0.03456 0.(; function D)awidthshow +140 79 gm +0.05783 0. 32 0.00578 0.(defines an explorer for each of such subtrees as well. Let N)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(s)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.03936 0. 32 0.00393 0.( be one of N)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(i)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.06500 0. 32 0.00650 0.(\325s successors and P)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(s)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.02426 0.(=D\(N)ashow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(s)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(\))show +151 79 gm +0.24230 0. 32 0.02423 0.(the corresponding explorer. Which relation is established between P)awidthshow +151 382 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.06809 0.(j)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.29953 0. 32 0.02995 0.( and P)awidthshow +151 412 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.05468 0.(s)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.26626 0. 32 0.02662 0.(? There is a dependence)awidthshow +162 79 gm +0.83358 0. 32 0.08335 0.(of P)awidthshow +162 98 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.20744 0.(s)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.75210 0. 32 0.07521 0.( from P)awidthshow +162 136 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.12579 0.(j)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.79711 0. 32 0.07971 0.( because the minimax value of the subtree assigned to P)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.17608 0.(s)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.52780 0. 32 0.05278 0.( is used by P)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.12579 0.(j)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.56365 0. 32 0.05636 0.(, and P)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.17608 0.(s)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.86746 0. 32 0.08674 0.( must)awidthshow +173 79 gm +(report to this process. We call P)show +173 219 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(j)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +( )show +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(supervisor)show +173 269 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +( of N)show +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(s)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +( because it manages Ns\325minimax value.)show +184 79 gm +0.04608 0. 32 0.00460 0.(Thus, a game tree splitting establishes a hierarchic relationship among processes. Such a relationship)awidthshow +195 79 gm +-0.00288 0.(changes dynamically \(i.e., during the tree visit\) depending on the relationship among subtrees visited)ashow +206 79 gm +0.55511 0. 32 0.05551 0.(by the processes at any time. In fact, it may happen that, in a subsequent stage of the visit, P)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.09809 0.(i)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.55648 0. 32 0.05564 0.( will)awidthshow +217 79 gm +0.85998 0. 32 0.08599 0.(have to communicate to P)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.16860 0.(s)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.69030 0. 32 0.06903 0.( the result of its search because the subtree it visited is included in the)awidthshow +228 79 gm +(subtree explored by P)show +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(s)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +( .)show +(nc 252 109 454 494 6 rc)kp +0 gr +254.5 266.5 279.5 292.5 0 ov +270 270 gm +(nc 260 269 272 291 6 rc)kp +F 1 setTxMode + +%%BeginFont: Geneva +bu fc +22 0 -6 30 24 bb +218 array /CharData mdf +<001C00000000 +FF1CFFFF0000 +001C00000000 +001C00000000 +001C00000000 +001C00000000 +FF1CFFFF0000 +FF1CFFFF0000 +FF1CFFFF0000 +001C10100000 +FF1CFFFF0000 +FF1CFFFF0000 +FF1CFFFF0000 +001C00000000 +FF1CFFFF0000 +FF1CFFFF0000 +FF1CFFFF0000 +FF1CFFFF0000 +FF1CFFFF0000 +FF1CFFFF0000 +FF1CFFFF0000 +FF1CFFFF0000 +FF1CFFFF0000 +FF1CFFFF0000 +FF1CFFFF0000 +FF1CFFFF0000 +FF1CFFFF0000 +FF1CFFFF0000 +FF1CFFFF0000 +FF1CFFFF0000 +FF1CFFFF0000 +FF1CFFFF0000 +001C08080000 +020603060112 +0214020A0504 +020E02120E0A +0204020E0916 +020602120E12 +040602120F12 +021402060104 +0205020A0514 +0205030A0514 +020D01100E0B +020B020E0909 +020202080306 +020F020E0A01 +020602060102 +0206020E0912 +020602100C12 +020606100312 +020602100C12 +020602100C12 +020602100E12 +020602100C12 +020602100C12 +020602100C12 +020602100C12 +020602100C12 +02060206010C +020202080310 +0208030C070D +020D020E0A05 +0208020C070D +020603100B12 +040603140F10 +040602120F12 +020602100C12 +020602100C12 +020602100C12 +0206020E0A12 +0206020E0A12 +020602100C12 +020602100C12 +0206040A0112 +0206000E0C12 +020602100D12 +0206020E0A12 +040601120F12 +020602100C12 +020601100D12 +020603100B12 +020601100D12 +020602100C12 +020602100C12 +020601100D12 +020602100C12 +020603120D12 +040602161312 +0206010E0B12 +0206010E0B12 +0206020E0A12 +020402080416 +0206020E0A14 +020402080416 +021501080603 +040600101001 +021402080404 +0206020E0A0E +0206020E0A12 +0206020E0A0E +0206020E0A12 +0206020E0A0E +0206020C0812 +0200020E0A14 +0206020E0A12 +0206030A0312 +0200020C0618 +0206020E0A12 +0206030A0312 +04060216110E +0206020E0A0E +0206020E0A0E +0202020E0A12 +0202020E0A12 +0206020C090E +0206020E0A0E +0206020C0812 +0206020E0A0E +0206010E0B0E +04060216110E +0206020E0A0E +0200010E0B14 +0206020E0A0E +0204030A0516 +020402060116 +0204020A0516 +021502100C03 +001C00000000 +040602120F16 +040602120F16 +020102100C17 +0206020E0A16 +020602100C16 +020601100D16 +020602100C16 +0206020E0A13 +0206020E0A13 +0206020E0A13 +0206020E0A12 +0206020E0A12 +0206020E0A15 +0201020E0A13 +0206020E0A13 +0206020E0A13 +0206020E0A13 +0206020E0A12 +0206030A0413 +0206030A0313 +0206020A0613 +0206020A0512 +0206020E0A13 +0206020E0A13 +0206020E0A13 +0206020E0A13 +0206020E0A12 +0206020E0A12 +0206020E0A13 +0206020E0A13 +0206020E0A13 +0206020E0A12 +0211020A0509 +0213030C0505 +0206020E0A12 +020602100C12 +020603100A12 +020802100C0C +020602100C12 +020602120D12 +040602140F0F +040602140F0F +021102160E07 +021402080404 +0217020A0501 +020B01100D09 +040603181312 +020602100C12 +040A01161307 +0207020E090D +0206020C080F +0206020C080F +0206010E0B12 +020203120D12 +0206020E0A11 +020602100C12 +020602120E12 +040602140F0F +0200010A071B +020B020C070D +020B020C070D +020603140E12 +04060116130E +0206020E0A0E +020602100B12 +020604080112 +020B020E0A05 +040602141015 +0200010A071B +020B01100D08 +040601120F0F +020601100C0D +020603100C0D +040602140F02 +001C10100000 +040601120F16 +040601120F16 +020601100D16 +040602181412 +04060216120E +020D020C0801 +020D02120E01 +0213030E0605 +0213050E0605 +021303080205 +021303080205 +020B010E0B09 +020802120D0E +0200020E0B18 +0406021E1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +FFFFFFFF1810 +> +/CharTable mdf +217< +00000000 +00000000 +01C00000 +03800000 +07000400 +0C0FCC00 +383FEC00 +6CFFF800 +FFFFF000 +FFFFF000 +FFFFF000 +1FFFF300 +0FFFEF00 +0FE1FC00 +1E01F800 +7C00E000 +E0000000 +80000000 +00000000 +00000000 +>cdf +216< +0000 +0000 +2080 +2080 +0000 +0000 +8020 +8020 +8020 +4040 +4040 +4040 +2080 +2080 +1100 +1100 +0A00 +0A00 +0400 +0400 +0800 +0800 +1000 +1000 +2000 +2000 +0000 +0000 +>cdf +215< +0000 +0000 +0200 +0500 +0880 +1040 +2020 +4010 +8008 +8008 +4010 +2020 +1040 +0880 +0500 +0200 +0000 +0000 +>cdf +214< +0000 +0000 +0400 +0400 +0000 +0000 +FFE0 +0000 +0000 +0400 +0400 +0000 +0000 +>cdf +213< +0000 +0000 +C000 +4000 +4000 +4000 +8000 +0000 +0000 +>cdf +212< +0000 +0000 +4000 +8000 +8000 +8000 +C000 +0000 +0000 +>cdf +211< +0000 +0000 +CC00 +4400 +4400 +4400 +8800 +0000 +0000 +>cdf +210< +0000 +0000 +4400 +8800 +8800 +8800 +CC00 +0000 +0000 +>cdf +209< +0000 +0000 +FFFC +0000 +0000 +>cdf +208< +0000 +0000 +FF00 +0000 +0000 +>cdf +207< +00000000 +00000000 +1E0E0000 +21110000 +40A08000 +40408000 +80404000 +80404000 +807FC000 +80400000 +80400000 +80400000 +40400000 +40A08000 +21110000 +1E0E0000 +00000000 +00000000 +>cdf +206< +00000000 +00000000 +071FF000 +18D00000 +20300000 +40100000 +40100000 +80100000 +80100000 +80100000 +801FC000 +80100000 +80100000 +80100000 +80100000 +40100000 +40100000 +20300000 +18D00000 +071FF000 +00000000 +00000000 +>cdf +205< +0000 +0000 +1C40 +2380 +0000 +0000 +0700 +18C0 +2020 +4010 +4010 +8008 +8008 +8008 +8008 +8008 +8008 +8008 +8008 +4010 +4010 +2020 +18C0 +0700 +0000 +0000 +>cdf +204< +00000000 +00000000 +07100000 +08E00000 +00000000 +00000000 +01000000 +01000000 +01000000 +02800000 +02800000 +04400000 +04400000 +08200000 +08200000 +10100000 +10100000 +3FF80000 +20080000 +20080000 +40040000 +40040000 +80020000 +80020000 +00000000 +00000000 +>cdf +203< +00000000 +00000000 +02000000 +01000000 +00800000 +00000000 +01000000 +01000000 +01000000 +02800000 +02800000 +04400000 +04400000 +08200000 +08200000 +10100000 +10100000 +3FF80000 +20080000 +20080000 +40040000 +40040000 +80020000 +80020000 +00000000 +00000000 +>cdf +201< +00000000 +00000000 +81020000 +81020000 +00000000 +00000000 +>cdf +200< +0000 +0000 +8400 +4200 +2100 +1080 +0840 +0420 +0210 +0420 +0840 +1080 +2100 +4200 +8400 +0000 +0000 +>cdf +199< +0000 +0000 +0210 +0420 +0840 +1080 +2100 +4200 +8400 +4200 +2100 +1080 +0840 +0420 +0210 +0000 +0000 +>cdf +198< +00000000 +00000000 +01000000 +01000000 +02800000 +02800000 +04400000 +04400000 +08200000 +08200000 +10100000 +10100000 +20080000 +20080000 +40040000 +40040000 +FFFE0000 +00000000 +00000000 +>cdf +197< +0000 +0000 +3C08 +4210 +81E0 +0000 +0000 +3C08 +4210 +81E0 +0000 +0000 +>cdf +196< +0000 +0000 +0600 +0800 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +7C00 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +2000 +C000 +0000 +0000 +>cdf +195< +00000000 +00000000 +000F0000 +00080000 +00080000 +00100000 +00100000 +00100000 +00200000 +00200000 +00200000 +00400000 +00400000 +00400000 +30800000 +50800000 +88800000 +09000000 +05000000 +05000000 +02000000 +02000000 +02000000 +00000000 +00000000 +>cdf +194< +0000 +0000 +FFC0 +0040 +0040 +0040 +0040 +0000 +0000 +>cdf +193< +0000 +0000 +8000 +8000 +0000 +0000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +0000 +0000 +>cdf +192< +0000 +0000 +0400 +0400 +0000 +0000 +0400 +0400 +0400 +0800 +0800 +1000 +2000 +4000 +8000 +8020 +8020 +8040 +4080 +3F00 +0000 +0000 +>cdf +191< +0000 +0000 +1E40 +2140 +4080 +4080 +8140 +8240 +8440 +8840 +9040 +A040 +4080 +4080 +A100 +9E00 +0000 +0000 +>cdf +190< +00000000 +00000000 +1F0F0000 +60908000 +80604000 +00404000 +00C02000 +03402000 +0C7FE000 +30400000 +40400000 +80400000 +80400000 +80E04000 +43508000 +3C4F0000 +00000000 +00000000 +>cdf +189< +0000 +0000 +0FC0 +3030 +4008 +4008 +8004 +8004 +8004 +8004 +8004 +8004 +8004 +4008 +4008 +2010 +2010 +1020 +0840 +3870 +0000 +0000 +>cdf +188< +0000 +0000 +3800 +4400 +8200 +8200 +8200 +8200 +8200 +8200 +4400 +3800 +0000 +0000 +FE00 +0000 +0000 +>cdf +187< +0000 +0000 +3C00 +4200 +8200 +0E00 +3200 +4200 +8200 +8600 +8A00 +7200 +0000 +0000 +FE00 +0000 +0000 +>cdf +186< +0000 +0000 +0600 +0800 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +2000 +C000 +0000 +0000 +>cdf +185< +00000000 +00000000 +00020000 +3FFC0000 +48080000 +88080000 +08080000 +08080000 +08080000 +08080000 +08080000 +08080000 +08080000 +08080000 +08080000 +08080000 +10100000 +00000000 +00000000 +>cdf +184< +0000 +0000 +FFFC +2010 +2010 +2010 +2010 +2010 +2010 +2010 +2010 +2010 +2010 +2010 +2010 +2010 +2010 +2010 +2010 +2010 +0000 +0000 +>cdf +183< +0000 +0000 +FFF0 +4010 +2010 +1000 +0800 +0400 +0200 +0100 +0080 +0080 +0100 +0200 +0400 +0800 +1000 +2010 +4010 +FFF0 +0000 +0000 +>cdf +182< +0000 +0000 +3800 +0600 +0100 +0080 +0080 +0040 +07C0 +1840 +2040 +4040 +4040 +8040 +8080 +8080 +8100 +4200 +3C00 +0000 +0000 +>cdf +181< +0000 +0000 +4040 +4040 +4040 +4040 +4040 +4040 +4040 +4040 +4040 +4040 +4040 +6040 +50A0 +4F18 +4000 +4000 +4000 +8000 +0000 +0000 +>cdf +180< +0000 +0000 +8020 +4040 +2080 +1100 +7BC0 +0400 +0400 +0400 +0400 +7FC0 +0400 +0400 +0400 +0400 +0400 +0400 +0400 +0400 +0000 +0000 +>cdf +179< +0000 +0000 +4000 +2000 +1000 +0800 +0400 +0200 +0100 +0200 +0400 +0800 +1000 +2000 +4000 +0000 +FF00 +0000 +0000 +>cdf +178< +0000 +0000 +0200 +0400 +0800 +1000 +2000 +4000 +8000 +4000 +2000 +1000 +0800 +0400 +0200 +0000 +FF00 +0000 +0000 +>cdf +177< +0000 +0000 +0800 +0800 +0800 +0800 +FF80 +0800 +0800 +0800 +0800 +0000 +0000 +0000 +FF80 +0000 +0000 +>cdf +176< +00000000 +00000000 +3C078000 +43184000 +80A02000 +80402000 +80A02000 +43184000 +3C078000 +00000000 +00000000 +>cdf +175< +0000 +0000 +0F10 +30D0 +4020 +4020 +8050 +8090 +8090 +8110 +8210 +8410 +8810 +9010 +9010 +A010 +4020 +4020 +B0C0 +8F00 +0000 +0000 +>cdf +174< +00000000 +00000000 +00FFE000 +00C00000 +01400000 +01400000 +02400000 +02400000 +04400000 +04400000 +0FFF8000 +08400000 +10400000 +10400000 +20400000 +20400000 +40400000 +40400000 +80400000 +807FE000 +00000000 +00000000 +>cdf +173< +0000 +0000 +0020 +0040 +FFF8 +0100 +0200 +0400 +FFF8 +1000 +2000 +0000 +0000 +>cdf +172< +0000 +0000 +8800 +0000 +0000 +>cdf +171< +0000 +0000 +1000 +2000 +4000 +8000 +0000 +0000 +>cdf +170< +0000 +0000 +F904 +218C +2154 +2124 +2104 +2104 +2104 +0000 +0000 +>cdf +169< +00000000 +00000000 +0FE00000 +30180000 +600C0000 +40040000 +83820000 +84420000 +84020000 +84020000 +84020000 +84420000 +83820000 +40040000 +600C0000 +30180000 +0FE00000 +00000000 +00000000 +>cdf +168< +00000000 +00000000 +0FE00000 +30180000 +600C0000 +40040000 +87820000 +84420000 +84420000 +87820000 +85020000 +84820000 +84420000 +40040000 +600C0000 +30180000 +0FE00000 +00000000 +00000000 +>cdf +167< +0000 +0000 +0FC0 +1020 +2010 +2010 +2010 +2010 +2020 +20C0 +2020 +2010 +2008 +2008 +2008 +2008 +2008 +2010 +2060 +C380 +0000 +0000 +>cdf +166< +0000 +0000 +0F30 +3120 +4120 +4120 +8120 +8120 +8120 +8120 +4120 +4120 +3120 +0F20 +0120 +0120 +0120 +0120 +0120 +0120 +0000 +0000 +>cdf +165< +0000 +0000 +0F00 +3FC0 +7FE0 +7FE0 +FFF0 +FFF0 +FFF0 +FFF0 +7FE0 +7FE0 +3FC0 +0F00 +0000 +0000 +>cdf +164< +0000 +0000 +3F00 +4080 +8040 +8040 +8000 +6000 +9800 +8600 +8180 +6040 +1840 +0640 +0180 +0040 +8040 +8040 +4080 +3F00 +0000 +0000 +>cdf +163< +0000 +0000 +0F00 +1080 +2000 +2000 +2000 +2000 +2000 +2000 +FC00 +2000 +2000 +2000 +2000 +2000 +2010 +2010 +2020 +FFC0 +0000 +0000 +>cdf +162< +0000 +0000 +0400 +0400 +1F00 +2480 +4440 +4400 +8400 +8400 +8400 +8400 +8400 +8400 +4400 +4440 +2480 +1F00 +0400 +0400 +0000 +0000 +>cdf +161< +0000 +0000 +7000 +8800 +8800 +8800 +7000 +0000 +0000 +>cdf +160< +0000 +0000 +2000 +2000 +F800 +2000 +2000 +2000 +2000 +2000 +2000 +0000 +0000 +>cdf +159< +0000 +0000 +2100 +2100 +0000 +0000 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +4040 +40C0 +2140 +1E40 +0000 +0000 +>cdf +158< +0000 +0000 +0C00 +1200 +2100 +0000 +0000 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +4040 +40C0 +2140 +1E40 +0000 +0000 +>cdf +157< +0000 +0000 +1000 +0800 +0400 +0000 +0000 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +4040 +40C0 +2140 +1E40 +0000 +0000 +>cdf +156< +0000 +0000 +0200 +0400 +0800 +0000 +0000 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +4040 +40C0 +2140 +1E40 +0000 +0000 +>cdf +155< +0000 +0000 +3880 +4700 +0000 +0000 +1E00 +2100 +4080 +4080 +8040 +8040 +8040 +8040 +8040 +8040 +4080 +4080 +2100 +1E00 +0000 +0000 +>cdf +154< +0000 +0000 +2100 +2100 +0000 +0000 +1E00 +2100 +4080 +4080 +8040 +8040 +8040 +8040 +8040 +8040 +4080 +4080 +2100 +1E00 +0000 +0000 +>cdf +153< +0000 +0000 +0C00 +1200 +2100 +0000 +0000 +1E00 +2100 +4080 +4080 +8040 +8040 +8040 +8040 +8040 +8040 +4080 +4080 +2100 +1E00 +0000 +0000 +>cdf +152< +0000 +0000 +0800 +0400 +0200 +0000 +0000 +1E00 +2100 +4080 +4080 +8040 +8040 +8040 +8040 +8040 +8040 +4080 +4080 +2100 +1E00 +0000 +0000 +>cdf +151< +0000 +0000 +0200 +0400 +0800 +0000 +0000 +1E00 +2100 +4080 +4080 +8040 +8040 +8040 +8040 +8040 +8040 +4080 +4080 +2100 +1E00 +0000 +0000 +>cdf +150< +0000 +0000 +3880 +4700 +0000 +0000 +0000 +9E00 +A100 +C080 +8080 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +0000 +0000 +>cdf +149< +0000 +0000 +8800 +8800 +0000 +0000 +7000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +0000 +0000 +>cdf +148< +0000 +0000 +3000 +4800 +8400 +0000 +0000 +7000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +0000 +0000 +>cdf +147< +0000 +0000 +8000 +4000 +2000 +0000 +0000 +E000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +0000 +0000 +>cdf +146< +0000 +0000 +1000 +2000 +4000 +0000 +0000 +E000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +0000 +0000 +>cdf +145< +0000 +0000 +1100 +1100 +0000 +0000 +1E00 +2100 +4080 +4080 +8040 +8040 +FFC0 +8000 +8000 +8000 +4000 +4080 +2100 +1E00 +0000 +0000 +>cdf +144< +0000 +0000 +0C00 +1200 +2100 +0000 +0000 +1E00 +2100 +4080 +4080 +8040 +8040 +FFC0 +8000 +8000 +8000 +4000 +4080 +2100 +1E00 +0000 +0000 +>cdf +143< +0000 +0000 +1000 +0800 +0400 +0000 +0000 +1E00 +2100 +4080 +4080 +8040 +8040 +FFC0 +8000 +8000 +8000 +4000 +4080 +2100 +1E00 +0000 +0000 +>cdf +142< +0000 +0000 +0200 +0400 +0800 +0000 +0000 +1E00 +2100 +4080 +4080 +8040 +8040 +FFC0 +8000 +8000 +8000 +4000 +4080 +2100 +1E00 +0000 +0000 +>cdf +141< +0000 +0000 +1F00 +2080 +4040 +4000 +8000 +8000 +8000 +8000 +8000 +8000 +4000 +4040 +2080 +1F00 +0400 +0600 +0200 +0400 +0800 +0000 +0000 +>cdf +140< +0000 +0000 +0E00 +1100 +1100 +1100 +0E00 +0000 +0000 +1F00 +6080 +8040 +0040 +00C0 +0340 +0C40 +3040 +4040 +8040 +8040 +80C0 +4340 +3C40 +0000 +0000 +>cdf +139< +0000 +0000 +3880 +4700 +0000 +0000 +1F00 +6080 +8040 +0040 +00C0 +0340 +0C40 +3040 +4040 +8040 +8040 +80C0 +4340 +3C40 +0000 +0000 +>cdf +138< +0000 +0000 +1100 +1100 +0000 +0000 +1F00 +6080 +8040 +0040 +00C0 +0340 +0C40 +3040 +4040 +8040 +8040 +80C0 +4340 +3C40 +0000 +0000 +>cdf +137< +0000 +0000 +0C00 +1200 +2100 +0000 +0000 +1F00 +6080 +8040 +0040 +00C0 +0340 +0C40 +3040 +4040 +8040 +8040 +80C0 +4340 +3C40 +0000 +0000 +>cdf +136< +0000 +0000 +0800 +0400 +0200 +0000 +0000 +1F00 +6080 +8040 +0040 +00C0 +0340 +0C40 +3040 +4040 +8040 +8040 +80C0 +4340 +3C40 +0000 +0000 +>cdf +135< +0000 +0000 +0200 +0400 +0800 +0000 +0000 +1F00 +6080 +8040 +0040 +00C0 +0340 +0C40 +3040 +4040 +8040 +8040 +80C0 +4340 +3C40 +0000 +0000 +>cdf +134< +0000 +0000 +1080 +1080 +0000 +0000 +8010 +8010 +8010 +8010 +8010 +8010 +8010 +8010 +8010 +8010 +8010 +8010 +8010 +8010 +4020 +4020 +30C0 +0F00 +0000 +0000 +>cdf +133< +0000 +0000 +0880 +0880 +0000 +0000 +0700 +18C0 +2020 +4010 +4010 +8008 +8008 +8008 +8008 +8008 +8008 +8008 +8008 +4010 +4010 +2020 +18C0 +0700 +0000 +0000 +>cdf +132< +0000 +0000 +3880 +4700 +0000 +0000 +8010 +C010 +C010 +A010 +A010 +9010 +8810 +8810 +8410 +8210 +8210 +8110 +8090 +8090 +8050 +8030 +8030 +8010 +0000 +0000 +>cdf +131< +0000 +0000 +0200 +0400 +0800 +0000 +FFC0 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +FF00 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +FFC0 +0000 +0000 +>cdf +130< +0000 +0000 +0FC0 +3020 +4010 +4000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +4000 +4010 +3020 +0FC0 +0200 +0300 +0100 +0100 +0200 +0000 +0000 +>cdf +129< +00000000 +00000000 +03800000 +04400000 +04400000 +03800000 +01000000 +01000000 +01000000 +02800000 +02800000 +04400000 +04400000 +08200000 +08200000 +10100000 +10100000 +3FF80000 +20080000 +20080000 +40040000 +40040000 +80020000 +80020000 +00000000 +00000000 +>cdf +128< +00000000 +00000000 +04400000 +04400000 +00000000 +00000000 +01000000 +01000000 +01000000 +02800000 +02800000 +04400000 +04400000 +08200000 +08200000 +10100000 +10100000 +3FF80000 +20080000 +20080000 +40040000 +40040000 +80020000 +80020000 +00000000 +00000000 +>cdf +126< +0000 +0000 +3810 +4420 +83C0 +0000 +0000 +>cdf +125< +0000 +0000 +C000 +2000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +0800 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +2000 +C000 +0000 +0000 +>cdf +124< +0000 +0000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +0000 +0000 +>cdf +123< +0000 +0000 +1800 +2000 +4000 +4000 +4000 +4000 +4000 +4000 +4000 +4000 +8000 +4000 +4000 +4000 +4000 +4000 +4000 +4000 +4000 +4000 +2000 +1800 +0000 +0000 +>cdf +122< +0000 +0000 +FFC0 +0040 +0080 +0100 +0200 +0200 +0400 +0800 +1000 +1000 +2000 +4000 +8000 +FFC0 +0000 +0000 +>cdf +121< +0000 +0000 +8020 +8020 +4040 +4040 +4040 +2080 +2080 +1100 +1100 +1100 +0A00 +0A00 +0400 +0400 +0800 +0800 +1000 +1000 +2000 +2000 +0000 +0000 +>cdf +120< +0000 +0000 +8040 +8040 +4080 +2100 +2100 +1200 +0C00 +0C00 +1200 +2100 +2100 +4080 +8040 +8040 +0000 +0000 +>cdf +119< +00000000 +00000000 +80808000 +80808000 +80808000 +41410000 +41410000 +41410000 +22220000 +22220000 +22220000 +14140000 +14140000 +14140000 +08080000 +08080000 +00000000 +00000000 +>cdf +118< +0000 +0000 +8020 +8020 +4040 +4040 +4040 +2080 +2080 +1100 +1100 +1100 +0A00 +0A00 +0400 +0400 +0000 +0000 +>cdf +117< +0000 +0000 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +4040 +40C0 +2140 +1E40 +0000 +0000 +>cdf +116< +0000 +0000 +2000 +2000 +2000 +2000 +FE00 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +1100 +0E00 +0000 +0000 +>cdf +115< +0000 +0000 +3F00 +4080 +8040 +8000 +8000 +4000 +3F00 +0080 +0040 +0040 +0040 +8040 +4080 +3F00 +0000 +0000 +>cdf +114< +0000 +0000 +9E00 +A100 +C080 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +0000 +0000 +>cdf +113< +0000 +0000 +1E40 +2140 +40C0 +4040 +8040 +8040 +8040 +8040 +8040 +8040 +4040 +40C0 +2140 +1E40 +0040 +0040 +0040 +0040 +0000 +0000 +>cdf +112< +0000 +0000 +9E00 +A100 +C080 +8080 +8040 +8040 +8040 +8040 +8040 +8040 +8080 +C080 +A100 +9E00 +8000 +8000 +8000 +8000 +0000 +0000 +>cdf +111< +0000 +0000 +1E00 +2100 +4080 +4080 +8040 +8040 +8040 +8040 +8040 +8040 +4080 +4080 +2100 +1E00 +0000 +0000 +>cdf +110< +0000 +0000 +9E00 +A100 +C080 +8080 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +0000 +0000 +>cdf +109< +00000000 +00000000 +9C1E0000 +A2210000 +C1408000 +80808000 +80808000 +80808000 +80808000 +80808000 +80808000 +80808000 +80808000 +80808000 +80808000 +80808000 +00000000 +00000000 +>cdf +108< +0000 +0000 +E000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +0000 +0000 +>cdf +107< +0000 +0000 +8000 +8000 +8000 +8000 +8080 +8100 +8200 +8400 +8800 +9000 +E000 +9000 +8800 +8400 +8200 +8100 +8080 +8040 +0000 +0000 +>cdf +106< +0000 +0000 +0400 +0400 +0000 +0000 +1C00 +0400 +0400 +0400 +0400 +0400 +0400 +0400 +0400 +0400 +0400 +0400 +0400 +0400 +0400 +0400 +0400 +0400 +8800 +7000 +0000 +0000 +>cdf +105< +0000 +0000 +2000 +2000 +0000 +0000 +E000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +0000 +0000 +>cdf +104< +0000 +0000 +8000 +8000 +8000 +8000 +9E00 +A100 +C080 +8080 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +8040 +0000 +0000 +>cdf +103< +0000 +0000 +1E40 +2140 +40C0 +4040 +8040 +8040 +8040 +8040 +8040 +8040 +4040 +40C0 +2140 +1E40 +0040 +0040 +0040 +4080 +2100 +1E00 +0000 +0000 +>cdf +102< +0000 +0000 +0E00 +1100 +2000 +2000 +FC00 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +0000 +0000 +>cdf +101< +0000 +0000 +1E00 +2100 +4080 +4080 +8040 +8040 +FFC0 +8000 +8000 +8000 +4000 +4080 +2100 +1E00 +0000 +0000 +>cdf +100< +0000 +0000 +0040 +0040 +0040 +0040 +1E40 +2140 +40C0 +4040 +8040 +8040 +8040 +8040 +8040 +8040 +4040 +40C0 +2140 +1E40 +0000 +0000 +>cdf +99< +0000 +0000 +1F00 +2080 +4040 +4000 +8000 +8000 +8000 +8000 +8000 +8000 +4000 +4040 +2080 +1F00 +0000 +0000 +>cdf +98< +0000 +0000 +8000 +8000 +8000 +8000 +9E00 +A100 +C080 +8080 +8040 +8040 +8040 +8040 +8040 +8040 +8080 +C080 +A100 +9E00 +0000 +0000 +>cdf +97< +0000 +0000 +1F00 +6080 +8040 +0040 +00C0 +0340 +0C40 +3040 +4040 +8040 +8040 +80C0 +4340 +3C40 +0000 +0000 +>cdf +96< +0000 +0000 +8000 +4000 +2000 +1000 +0000 +0000 +>cdf +95< +00000000 +00000000 +FFFF0000 +00000000 +00000000 +>cdf +94< +0000 +0000 +3000 +4800 +8400 +0000 +0000 +>cdf +93< +0000 +0000 +F000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +1000 +F000 +0000 +0000 +>cdf +92< +0000 +0000 +8000 +8000 +4000 +4000 +2000 +2000 +1000 +1000 +0800 +0800 +0400 +0400 +0200 +0200 +0100 +0100 +0080 +0080 +0040 +0040 +0000 +0000 +>cdf +91< +0000 +0000 +F000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +F000 +0000 +0000 +>cdf +90< +0000 +0000 +FFC0 +0040 +0080 +0080 +0100 +0200 +0200 +0400 +0400 +0800 +0800 +1000 +2000 +2000 +4000 +4000 +8000 +FFC0 +0000 +0000 +>cdf +89< +0000 +0000 +8020 +8020 +4040 +4040 +2080 +2080 +1100 +1100 +0A00 +0A00 +0400 +0400 +0400 +0400 +0400 +0400 +0400 +0400 +0000 +0000 +>cdf +88< +0000 +0000 +8020 +8020 +4040 +4040 +2080 +1100 +1100 +0A00 +0400 +0400 +0A00 +1100 +1100 +2080 +4040 +4040 +8020 +8020 +0000 +0000 +>cdf +87< +00000000 +00000000 +80002000 +80002000 +80002000 +40404000 +40404000 +40404000 +20A08000 +20A08000 +20A08000 +11110000 +11110000 +11110000 +0A0A0000 +0A0A0000 +0A0A0000 +04040000 +04040000 +04040000 +00000000 +00000000 +>cdf +86< +0000 +0000 +8008 +8008 +4010 +4010 +4010 +2020 +2020 +2020 +1040 +1040 +1040 +0880 +0880 +0880 +0500 +0500 +0200 +0200 +0000 +0000 +>cdf +85< +0000 +0000 +8010 +8010 +8010 +8010 +8010 +8010 +8010 +8010 +8010 +8010 +8010 +8010 +8010 +8010 +4020 +4020 +30C0 +0F00 +0000 +0000 +>cdf +84< +0000 +0000 +FFF8 +0200 +0200 +0200 +0200 +0200 +0200 +0200 +0200 +0200 +0200 +0200 +0200 +0200 +0200 +0200 +0200 +0200 +0000 +0000 +>cdf +83< +0000 +0000 +3F80 +4040 +8020 +8000 +8000 +8000 +6000 +1F00 +00C0 +0020 +0020 +0010 +0010 +0010 +8020 +8020 +60C0 +1F00 +0000 +0000 +>cdf +82< +0000 +0000 +FF00 +80C0 +8020 +8020 +8010 +8010 +8010 +8020 +8020 +80C0 +FF80 +8080 +8040 +8040 +8020 +8020 +8010 +8010 +0000 +0000 +>cdf +81< +0000 +0000 +0700 +18C0 +2020 +4010 +4010 +8008 +8008 +8008 +8008 +8008 +8008 +8008 +8008 +4090 +4050 +2020 +18D0 +0708 +0000 +0000 +>cdf +80< +0000 +0000 +FE00 +8180 +8040 +8040 +8020 +8020 +8020 +8020 +8040 +8040 +8180 +FE00 +8000 +8000 +8000 +8000 +8000 +8000 +0000 +0000 +>cdf +79< +0000 +0000 +0700 +18C0 +2020 +4010 +4010 +8008 +8008 +8008 +8008 +8008 +8008 +8008 +8008 +4010 +4010 +2020 +18C0 +0700 +0000 +0000 +>cdf +78< +0000 +0000 +8010 +C010 +C010 +A010 +A010 +9010 +8810 +8810 +8410 +8210 +8210 +8110 +8090 +8090 +8050 +8030 +8030 +8010 +0000 +0000 +>cdf +77< +00000000 +00000000 +80020000 +C0060000 +A00A0000 +90120000 +88220000 +84420000 +82820000 +81020000 +80020000 +80020000 +80020000 +80020000 +80020000 +80020000 +80020000 +80020000 +80020000 +80020000 +00000000 +00000000 +>cdf +76< +0000 +0000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +FFC0 +0000 +0000 +>cdf +75< +0000 +0000 +8010 +8020 +8040 +8080 +8100 +8200 +8400 +8800 +9000 +A800 +C400 +8200 +8100 +8080 +8040 +8020 +8010 +8008 +0000 +0000 +>cdf +74< +0000 +0000 +0010 +0010 +0010 +0010 +0010 +0010 +0010 +0010 +0010 +0010 +0010 +0010 +8010 +8010 +8020 +4020 +30C0 +0F00 +0000 +0000 +>cdf +73< +0000 +0000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +0000 +0000 +>cdf +72< +0000 +0000 +8010 +8010 +8010 +8010 +8010 +8010 +8010 +8010 +FFF0 +8010 +8010 +8010 +8010 +8010 +8010 +8010 +8010 +8010 +0000 +0000 +>cdf +71< +0000 +0000 +0F80 +3040 +4020 +4000 +8000 +8000 +8000 +8000 +83F0 +8010 +8010 +8010 +8010 +8010 +4020 +4020 +30C0 +0F00 +0000 +0000 +>cdf +70< +0000 +0000 +FFC0 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +FF00 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +0000 +0000 +>cdf +69< +0000 +0000 +FFC0 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +FF00 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +FFC0 +0000 +0000 +>cdf +68< +0000 +0000 +FE00 +8180 +8040 +8020 +8020 +8010 +8010 +8010 +8010 +8010 +8010 +8010 +8010 +8020 +8020 +8040 +8180 +FE00 +0000 +0000 +>cdf +67< +0000 +0000 +0FC0 +3020 +4010 +4000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +4000 +4010 +3020 +0FC0 +0000 +0000 +>cdf +66< +0000 +0000 +FF80 +8040 +8020 +8020 +8020 +8020 +8040 +FF80 +8040 +8020 +8010 +8010 +8010 +8010 +8010 +8020 +8040 +FF80 +0000 +0000 +>cdf +65< +00000000 +00000000 +01000000 +01000000 +01000000 +02800000 +02800000 +04400000 +04400000 +08200000 +08200000 +10100000 +10100000 +3FF80000 +20080000 +20080000 +40040000 +40040000 +80020000 +80020000 +00000000 +00000000 +>cdf +64< +00000000 +00000000 +07C00000 +18300000 +20080000 +40040000 +43C40000 +84220000 +88220000 +88220000 +88220000 +88220000 +84640000 +43980000 +40000000 +20000000 +18000000 +07C00000 +00000000 +00000000 +>cdf +63< +0000 +0000 +1F80 +2040 +4020 +8020 +8020 +0020 +0040 +0080 +0100 +0200 +0200 +0400 +0400 +0400 +0000 +0000 +0400 +0400 +0000 +0000 +>cdf +62< +0000 +0000 +8000 +4000 +2000 +1000 +0800 +0400 +0200 +0400 +0800 +1000 +2000 +4000 +8000 +0000 +0000 +>cdf +61< +0000 +0000 +FFC0 +0000 +0000 +0000 +FFC0 +0000 +0000 +>cdf +60< +0000 +0000 +0200 +0400 +0800 +1000 +2000 +4000 +8000 +4000 +2000 +1000 +0800 +0400 +0200 +0000 +0000 +>cdf +59< +0000 +0000 +2000 +2000 +0000 +0000 +0000 +0000 +0000 +0000 +0000 +0000 +6000 +2000 +2000 +2000 +4000 +8000 +0000 +0000 +>cdf +58< +0000 +0000 +8000 +8000 +0000 +0000 +0000 +0000 +0000 +0000 +0000 +0000 +8000 +8000 +0000 +0000 +>cdf +57< +0000 +0000 +0F00 +30C0 +4020 +4020 +8010 +8010 +8010 +8010 +4010 +4030 +30D0 +0F10 +0010 +0020 +0020 +0040 +0180 +1E00 +0000 +0000 +>cdf +56< +0000 +0000 +1F80 +2040 +4020 +4020 +4020 +4020 +2040 +1F80 +2040 +4020 +4020 +8010 +8010 +8010 +4020 +4020 +30C0 +0F00 +0000 +0000 +>cdf +55< +0000 +0000 +FFF0 +0010 +0010 +0020 +0020 +0040 +0040 +0080 +0080 +0100 +0100 +0200 +0200 +0400 +0400 +0800 +0800 +0800 +0000 +0000 +>cdf +54< +0000 +0000 +07C0 +1800 +2000 +4000 +4000 +8000 +8F00 +B0C0 +C020 +8020 +8010 +8010 +8010 +8010 +4020 +4020 +30C0 +0F00 +0000 +0000 +>cdf +53< +0000 +0000 +FFE0 +8000 +8000 +8000 +8000 +8000 +FF00 +00C0 +0020 +0020 +0010 +0010 +0010 +0010 +0020 +8020 +60C0 +1F00 +0000 +0000 +>cdf +52< +0000 +0000 +0010 +0030 +0050 +0090 +0110 +0210 +0410 +0810 +1010 +2010 +4010 +8010 +FFFC +0010 +0010 +0010 +0010 +0010 +0000 +0000 +>cdf +51< +0000 +0000 +FFF0 +0020 +0040 +0080 +0100 +0200 +0700 +0080 +0040 +0040 +0020 +0020 +0020 +0020 +0040 +8040 +6180 +1E00 +0000 +0000 +>cdf +50< +0000 +0000 +0F80 +3040 +4020 +8010 +8010 +0010 +0010 +0020 +0040 +0080 +0100 +0200 +0400 +0800 +1000 +2000 +4000 +FFF0 +0000 +0000 +>cdf +49< +0000 +0000 +2000 +6000 +A000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +2000 +0000 +0000 +>cdf +48< +0000 +0000 +0F00 +1080 +2040 +4020 +4020 +8010 +8010 +8010 +8010 +8010 +8010 +8010 +8010 +4020 +4020 +2040 +1080 +0F00 +0000 +0000 +>cdf +47< +0000 +0000 +0080 +0080 +0100 +0100 +0200 +0200 +0400 +0400 +0800 +0800 +1000 +1000 +2000 +2000 +4000 +4000 +8000 +8000 +0000 +0000 +>cdf +46< +0000 +0000 +8000 +8000 +0000 +0000 +>cdf +45< +0000 +0000 +FFC0 +0000 +0000 +>cdf +44< +0000 +0000 +6000 +2000 +2000 +2000 +4000 +8000 +0000 +0000 +>cdf +43< +0000 +0000 +0800 +0800 +0800 +0800 +FF80 +0800 +0800 +0800 +0800 +0000 +0000 +>cdf +42< +0000 +0000 +2010 +1020 +0840 +0480 +0300 +FFFC +0300 +0480 +0840 +1020 +2010 +0000 +0000 +>cdf +41< +0000 +0000 +8000 +4000 +2000 +2000 +1000 +1000 +0800 +0800 +0800 +0800 +0800 +0800 +0800 +0800 +1000 +1000 +2000 +2000 +4000 +8000 +0000 +0000 +>cdf +40< +0000 +0000 +0800 +1000 +2000 +2000 +4000 +4000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +4000 +4000 +2000 +2000 +1000 +0800 +0000 +0000 +>cdf +39< +0000 +0000 +8000 +8000 +8000 +8000 +0000 +0000 +>cdf +38< +00000000 +00000000 +0E000000 +11000000 +20800000 +20800000 +21000000 +22000000 +14000000 +08000000 +14000000 +22000000 +41040000 +40880000 +80500000 +80200000 +80500000 +40880000 +21040000 +1E020000 +00000000 +00000000 +>cdf +37< +0000 +0000 +37F8 +4804 +8404 +8408 +8410 +8420 +4840 +3080 +0100 +0200 +0430 +0848 +1084 +2084 +2084 +4084 +4048 +4030 +0000 +0000 +>cdf +36< +0000 +0000 +0800 +0800 +3E00 +4900 +8880 +8880 +8800 +4800 +2800 +1800 +0C00 +0A00 +0900 +0880 +0880 +0880 +8880 +8880 +4900 +3E00 +0800 +0800 +0000 +0000 +>cdf +35< +0000 +0000 +0220 +0220 +3FFC +0440 +0440 +0880 +0880 +FFF0 +1100 +1100 +0000 +0000 +>cdf +34< +0000 +0000 +8800 +8800 +8800 +8800 +0000 +0000 +>cdf +33< +0000 +0000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +8000 +0000 +0000 +8000 +8000 +0000 +0000 +>cdf +/|______Geneva bf +bn +%%EndFont +9 fz +bu fc +2 F /|______Geneva fnt +bn +-0.33325 0.(Root)ashow +(nc 252 109 454 494 6 rc)kp +0 gr +309.5 142.5 334.5 167.5 0 ov +365.5 111.5 391.5 136.5 0 ov +367.5 174.5 392.5 199.5 0 ov +365 123 gm +334 154 lin +367 186 lin +310.5 266.5 336.5 292.5 0 ov +426.5 391.5 452.5 417.5 0 ov +428.5 454.5 453.5 480.5 0 ov +426 403 gm +395 434 lin +428 467 lin +312.5 390.5 337.5 415.5 0 ov +368.5 359.5 394.5 384.5 0 ov +370.5 422.5 395.5 447.5 0 ov +368 371 gm +337 402 lin +370 434 lin +279 279 gm +310 279 lin +279 279 gm +311 402 lin +309 154 gm +279 279 lin +382 140 gm +(nc 374 139 385 150 6 rc)kp +F 1 setTxMode +bu fc +2 F /|______Helvetica fnt +bn +(P)show +6 fz +bu fc +2 F /|______Helvetica fnt +bn +(4)show +383 203 gm +(nc 375 202 386 214 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(P)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(3)show +382 182 gm +(nc 374 181 385 197 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(N)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(32)show +381 118 gm +(nc 373 117 384 133 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(N)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(31)show +441 397 gm +(nc 433 396 444 412 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(N)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(41)show +442 461 gm +(nc 434 460 445 476 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(N)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(42)show +383 366 gm +(nc 375 365 386 381 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(N)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(35)show +384 428 gm +(nc 376 427 387 443 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(N)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(36)show +325 149 gm +(nc 317 148 328 164 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(N)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(21)show +326 273 gm +(nc 318 272 329 288 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(N)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(22)show +325 397 gm +(nc 317 396 328 412 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(N)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(23)show +269 297 gm +(nc 261 296 272 307 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(P)show +6 fz +bu fc +2 F /|______Helvetica fnt +bn +(1)show +326 170 gm +(nc 318 169 329 180 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(P)show +6 fz +bu fc +2 F /|______Helvetica fnt +bn +(4)show +443 483 gm +(nc 435 482 446 493 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(P)show +6 fz +bu fc +2 F /|______Helvetica fnt +bn +(3)show +326 418 gm +(nc 318 417 329 429 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(P)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(2)show +383 450 gm +(nc 375 449 386 461 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(P)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(3)show +326 296 gm +(nc 318 295 329 307 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(P)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(1)show +443 420 gm +(nc 435 419 446 431 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(P)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(2)show +382 387 gm +(nc 374 386 385 398 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(P)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(2)show +(nc 252 109 454 494 6 rc)kp +0 gr +368.5 299.5 394.5 325.5 0 ov +367 248 gm +336 279 lin +368 312 lin +382 242 gm +(nc 374 241 385 257 6 rc)kp +F 1 setTxMode +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(N)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(33)show +383 306 gm +(nc 375 305 386 321 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(N)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(34)show +384 328 gm +(nc 376 327 387 338 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(P)show +6 fz +bu fc +2 F /|______Helvetica fnt +bn +(2)show +383 265 gm +(nc 375 264 386 276 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(P)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(1)show +(nc 252 109 454 494 6 rc)kp +0 gr +367.5 235.5 392.5 261.5 0 ov +241 77 gm +(nc 30 28 811 566 6 rc)kp +241 525 lin +482 240 gm +F 1 setTxMode +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(Fig.1 )show +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(Splitting a game tree)show +500 77 gm +0 gr +500 525 lin +519 79 gm +F 1 setTxMode +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.25543 0. 32 0.02554 0.(Fig.1 shows a game tree splitting; nodes are labelled with the name of the explorer of the subtree of)awidthshow +530 79 gm +0.64910 0. 32 0.06491 0.(which they are root. Some processes are explorers of several subtrees; nevertheless, at any instant)awidthshow +541 79 gm +1.11099 0. 32 0.11109 0.(during the search, they will be engaged in the visit of no more than one subtree. Therefore, the)awidthshow +552 79 gm +0.66833 0. 32 0.06683 0.(description of a splitting should include the visit order followed by each process; this information)awidthshow +563 79 gm +0.02639 0. 32 0.00263 0.(represents the \322dynamic\323 component of the splitting. In Fig.2 it is shown an example \(with reference)awidthshow +574 79 gm +(to the game tree in Fig.1\).)show +614 228 gm +(nc 601 227 669 383 6 rc)kp +12 fz +bu fc +2 F /|______Helvetica fnt +bn +(P)show +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(1)show +12 fz +bu fc +2 F /|______Helvetica fnt +bn +(: N)show +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(33)show +12 fz +bu fc +2 F /|______Symbol fnt +bn +(\256)show +614 278 gm +bu fc +2 F /|______Helvetica fnt +bn +(N)show +614 287 gm +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(22)show +12 fz +bu fc +2 F /|______Symbol fnt +bn +(\256)show +614 309 gm +bu fc +2 F /|______Helvetica fnt +bn +(Root)show +631 228 gm +(P)show +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(2)show +12 fz +bu fc +2 F /|______Helvetica fnt +bn +(: N)show +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(35)show +12 fz +bu fc +2 F /|______Symbol fnt +bn +(\256)show +631 278 gm +bu fc +2 F /|______Helvetica fnt +bn +(N)show +631 287 gm +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(41)show +12 fz +bu fc +2 F /|______Symbol fnt +bn +(\256)show +631 309 gm +bu fc +2 F /|______Helvetica fnt +bn +(N)show +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(23)show +12 fz +bu fc +2 F /|______Symbol fnt +bn +(\256)show +631 339 gm +bu fc +2 F /|______Helvetica fnt +bn +(N)show +631 348 gm +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(34)show +648 228 gm +12 fz +bu fc +2 F /|______Helvetica fnt +bn +(P)show +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(3)show +12 fz +bu fc +2 F /|______Helvetica fnt +bn +(: N)show +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(32)show +12 fz +bu fc +2 F /|______Symbol fnt +bn +(\256)show +648 278 gm +bu fc +2 F /|______Helvetica fnt +bn +(N)show +648 287 gm +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(42)show +12 fz +bu fc +2 F /|______Symbol fnt +bn +(\256)show +648 309 gm +bu fc +2 F /|______Helvetica fnt +bn +(N)show +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(36)show +665 228 gm +12 fz +bu fc +2 F /|______Helvetica fnt +bn +(P)show +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(4)show +12 fz +bu fc +2 F /|______Helvetica fnt +bn +(: N)show +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(31)show +12 fz +bu fc +2 F /|______Symbol fnt +bn +(\256)show +665 278 gm +bu fc +2 F /|______Helvetica fnt +bn +(N)show +665 287 gm +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(21)show +(nc 598 218 671 384 6 rc)kp +0 gr +600.5 220.5 670.5 362.5 0 rc +587 77 gm +(nc 30 28 811 566 6 rc)kp +587 525 lin +699 186 gm +F 1 setTxMode +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(Fig.2)show +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +( Splitting: evaluation order by every process)show +717 77 gm +0 gr +717 525 lin +736 79 gm +F 1 setTxMode +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +1.19064 0. 32 0.11906 0.(In general, it is impossible to fix the visiting order of every subtree, because it depends on the)awidthshow +747 79 gm +0.00778 0. 32 0.00077 0.(processes\325 relative speeds. Nevertheless, there are some synchronisation points marking the stages of)awidthshow +F T cp +%%Page: ? 6 +op +30 28 811 566 fr +0 0 xl +1 1 pen +0 0 gm +(nc 0 0 0 0 6 rc)kp +91 336 gm +(nc 30 28 811 566 6 rc)kp +F 1 setTxMode +0 fs +10 fz +bu fc +2 F /|______Helvetica fnt +bn +(A Comparison of Parallel Search Algorithms)show +773 79 gm +(UBLCS-94-14)show +773 519 gm +(4)show +118 79 gm +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.19485 0. 32 0.01948 0.(the visit: a process can completely search a subtree S only after having received the minimax values)awidthshow +129 79 gm +1.06338 0. 32 0.10633 0.(of all S\325subtrees. Fig.3 depicts a snapshot of the search of game tree in Fig.1, with the splitting)awidthshow +140 79 gm +(specified in Fig.2.)show +185 369 gm +(nc 172 368 240 502 6 rc)kp +12 fz +bu fc +2 F /|______Helvetica fnt +bn +(P)show +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(1)show +12 fz +bu fc +2 F /|______Helvetica fnt +bn +(: N)show +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(33)show +12 fz +bu fc +2 F /|______Symbol fnt +bn +(\256)show +185 419 gm +bu fc +2 F /|______Helvetica fnt +bn +(N)show +185 428 gm +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(22)show +12 fz +bu fc +2 F /|______Symbol fnt +bn +(\256)show +185 450 gm +bu fc +2 F /|______Helvetica fnt +bn +(Root)show +202 369 gm +(P)show +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(2)show +12 fz +bu fc +2 F /|______Helvetica fnt +bn +(: N)show +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(35)show +12 fz +bu fc +2 F /|______Symbol fnt +bn +(\256)show +202 419 gm +bu fc +2 F /|______Helvetica fnt +bn +(N)show +202 428 gm +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(41)show +12 fz +bu fc +2 F /|______Symbol fnt +bn +(\256)show +202 450 gm +bu fc +2 F /|______Helvetica fnt +bn +(N)show +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(23)show +12 fz +bu fc +2 F /|______Symbol fnt +bn +(\256)show +202 480 gm +bu fc +2 F /|______Helvetica fnt +bn +(N)show +202 489 gm +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(34)show +219 369 gm +12 fz +bu fc +2 F /|______Helvetica fnt +bn +(P)show +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(3)show +12 fz +bu fc +2 F /|______Helvetica fnt +bn +(: N)show +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(32)show +12 fz +bu fc +2 F /|______Symbol fnt +bn +(\256)show +219 419 gm +bu fc +2 F /|______Helvetica fnt +bn +(N)show +219 428 gm +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(42)show +12 fz +bu fc +2 F /|______Symbol fnt +bn +(\256)show +219 450 gm +bu fc +2 F /|______Helvetica fnt +bn +(N)show +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(36)show +236 369 gm +12 fz +bu fc +2 F /|______Helvetica fnt +bn +(P)show +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(4)show +12 fz +bu fc +2 F /|______Helvetica fnt +bn +(: N)show +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(31)show +12 fz +bu fc +2 F /|______Symbol fnt +bn +(\256)show +236 419 gm +bu fc +2 F /|______Helvetica fnt +bn +(N)show +236 428 gm +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(21)show +(nc 164 97 366 505 6 rc)kp +0 gr +171.5 361.5 241.5 503.5 0 rc +2 2 pen +224 389 gm +237 402 lin +237 388 gm +224 401 lin +224 420 gm +237 432 lin +237 419 gm +224 432 lin +190 390 gm +203 403 lin +203 389 gm +190 402 lin +174 389 gm +187 402 lin +187 388 gm +174 401 lin +207 420 gm +219 432 lin +219 419 gm +207 432 lin +207 389 gm +219 402 lin +219 388 gm +207 401 lin +1 1 pen +166.5 169.5 191.5 195.5 0 ov +182 174 gm +(nc 172 173 184 195 6 rc)kp +F 1 setTxMode +bu fc +2 F /|______Geneva fnt +bn +-0.33325 0.(Root)ashow +2 2 pen +(nc 164 97 366 505 6 rc)kp +0 gr +222 169 248 195 0 ov +338 275 364 301 0 ov +1 1 pen +338 287 gm +307 318 lin +0 0 2 9 12 2 dh +340 351 lin +rh +psb +pse +224.5 274.5 249.5 299.5 0 ov +2 2 pen +282 306 307 331 0 ov +0 0 2 9 5 2 dh +1 1 pen +280 255 gm +249 286 lin +rh +psb +pse +282 318 lin +191 182 gm +222 182 lin +191 183 gm +223 286 lin +0 0 2 9 5 2 dh +232 99 gm +191 182 lin +rh +psb +pse +353 281 gm +(nc 345 280 356 296 6 rc)kp +F 1 setTxMode +bu fc +2 F /|______Helvetica fnt +bn +(N)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(41)show +296 312 gm +(nc 288 311 299 328 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(N)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(36)show +238 176 gm +(nc 230 175 241 191 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(N)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(22)show +237 281 gm +(nc 229 280 240 296 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(N)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(23)show +181 200 gm +(nc 173 199 184 210 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(P)show +6 fz +bu fc +2 F /|______Helvetica fnt +bn +(1)show +238 302 gm +(nc 230 301 241 313 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(P)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(2)show +295 334 gm +(nc 287 333 298 345 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(P)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(3)show +238 199 gm +(nc 230 198 241 210 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(P)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(1)show +355 304 gm +(nc 347 303 358 315 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(P)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(2)show +(nc 164 97 366 505 6 rc)kp +0 gr +280.5 202.5 306.5 228.5 0 ov +0 0 2 9 5 2 dh +279 151 gm +248 182 lin +rh +psb +pse +280 215 lin +295 209 gm +(nc 287 208 298 225 6 rc)kp +F 1 setTxMode +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(N)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(34)show +296 231 gm +(nc 288 230 299 241 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(P)show +6 fz +bu fc +2 F /|______Helvetica fnt +bn +(2)show +153 77 gm +(nc 30 28 811 566 6 rc)kp +0 gr +153 525 lin +394 202 gm +F 1 setTxMode +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(Fig.3 )show +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(Snapshot of a splitting during search)show +412 77 gm +0 gr +412 525 lin +431 79 gm +F 1 setTxMode +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +1.40029 0. 32 0.14002 0.(In Fig.3 process P)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.38081 0.(4)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +1.14730 0. 32 0.11473 0.( is idle because it has completed its own list of tasks; P)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.38081 0.(1)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +1.08932 0. 32 0.10893 0.( is waiting for N)awidthshow +431 512 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(34)show +442 79 gm +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.39398 0. 32 0.03939 0.(minimax value from process P)awidthshow +442 216 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.12751 0.(2)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.46432 0. 32 0.04643 0.(; likewise, P)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.12751 0.(3)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.35842 0. 32 0.03584 0.( is waiting for N)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.12751 0.(41)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.40191 0. 32 0.04019 0.( value from P)awidthshow +442 423 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.12092 0.(2)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.47790 0. 32 0.04779 0.(. Therefore, P)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.12092 0.(2)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.27145 0. 32 0.02714 0.( is the)awidthshow +453 79 gm +0.43975 0. 32 0.04397 0.(only process working at present: it is evaluating N)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.11721 0.(41)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.42282 0. 32 0.04228 0.(. There is a hierarchic relation between P)awidthshow +453 499 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.13636 0.(3)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.43426 0. 32 0.04342 0.( and)awidthshow +464 79 gm +(P)show +464 85 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(2)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(: it will be reversed when, having completed N)show +464 295 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(36)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +( evaluation, P)show +464 364 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(3)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +( sends a message to P)show +464 463 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(2)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +( .)show +475 79 gm +0.93658 0. 32 0.09365 0.(The main problem in searching a game tree by a splitting method is to decide when the subtree)awidthshow +475 520 gm +(-)show +486 79 gm +1.91757 0. 32 0.19175 0.(process association should be established. Usually, it makes no sense to allocate subtrees to)awidthshow +497 79 gm +(processes before search starts, because of the following reasons:)show +509 88 gm +(\245 it is necessary to know the whole tree;)show +526 88 gm +1.29272 0. 32 0.12927 0.(\245 the\312)awidthshow +526 112 gm +bu fc +2 F /|______Symbol fnt +bn +0.49502 0.(ab)ashow +bu fc +2 F /|______Times-Roman fnt +bn +1.19796 0. 32 0.11979 0.( algorithm property of cutting subtrees makes useless the visit of some of them. It is)awidthshow +538 101 gm +0.39840 0. 32 0.03984 0.(impossible to determine )awidthshow +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +0.39581 0. 32 0.03958 0.(a priori)awidthshow +538 245 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.45089 0. 32 0.04508 0.( the identity of these subtrees and then to obtain at run-time a)awidthshow +549 101 gm +(uniform load distribution.)show +561 79 gm +1.13494 0. 32 0.11349 0.(At search time we usually have the following scenery: some "lucky" processes complete search)awidthshow +572 79 gm +0.15518 0. 32 0.01551 0.(before others \()awidthshow +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +0.03363 0.(e.g.)ashow +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.14312 0. 32 0.01431 0.(, because of better cuts\) and will remain idle. Every solution for avoiding idleness)awidthshow +583 79 gm +1.27334 0. 32 0.12733 0.(must be dynamic, )awidthshow +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +0.33239 0.(i.e.)ashow +583 179 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +1.44989 0. 32 0.14498 0.(, it must provide mechanisms able, during the search, to reassign to idle)awidthshow +594 79 gm +0.41198 0. 32 0.04119 0.(processes subtrees already assigned to overloaded processes. Therefore, a classification of splitting)awidthshow +605 79 gm +0.27206 0. 32 0.02720 0.(methods in static and dynamic is not really meaningful, because actually the only plausible solution)awidthshow +616 79 gm +0.58578 0. 32 0.05857 0.(is dynamic. On the other hand, it makes sense to distinguish different approaches according to the)awidthshow +627 79 gm +(time they establish nodes where it will occur a splitting.)show +639 88 gm +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(Def)show +639 104 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.78430 0. 32 0.07843 0.(. )awidthshow +639 110 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +0.40939 0. 32 0.04093 0.(Splitting node)awidthshow +639 172 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.72387 0. 32 0.07238 0.(: Let D be a splitting for game tree A; let N)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.14743 0.(i)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.61416 0. 32 0.06141 0.( be a node of A; N)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.14743 0.(i)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.34484 0. 32 0.03448 0.( is a )awidthshow +639 484 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +0.00639 0.(splitting)ashow +654 101 gm +(node)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +( \(according to D\) )show +bu fc +2 F /|______Symbol fnt +bn +(\333 $)show +bu fc +2 F /|______Times-Roman fnt +bn +(N)show +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(j)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(: N)show +654 242 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(i)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(=father\(N)show +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(j)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(\) and D\(N)show +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(j)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(\))show +currentfont SwToSym +(\271)show +setfont +(D\(N)show +654 364 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(i)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(\).)show +667 79 gm +0.38619 0. 32 0.03861 0.(A splitting node is one at which it is established the generation of a parallel search task, )awidthshow +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +0.11729 0.(i.e.)ashow +667 490 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.39413 0. 32 0.03941 0.(, where)awidthshow +678 79 gm +1.34124 0. 32 0.13412 0.(some of its subtrees are visited by processes different from its explorer. We can now state the)awidthshow +689 79 gm +(following classification:)show +701 88 gm +(\245 a )show +701 102 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(static)show +701 125 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +( splitting algorithm decides all the splitting nodes before the search starts;)show +714 88 gm +(\245 a )show +714 102 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(dynamic)show +714 139 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +( algorithm decides some splitting nodes only during the search.)show +745 79 gm +1 fs +12 fz +bu fc +2 F /|______Times-Bold fnt +bn +(3. Parallel search on a network of workstations)show +F T cp +%%Page: ? 7 +op +30 28 811 566 fr +0 0 xl +1 1 pen +0 0 gm +(nc 0 0 0 0 6 rc)kp +91 336 gm +(nc 30 28 811 566 6 rc)kp +F 1 setTxMode +0 fs +10 fz +bu fc +2 F /|______Helvetica fnt +bn +(A Comparison of Parallel Search Algorithms)show +773 79 gm +(UBLCS-94-14)show +773 519 gm +(5)show +118 79 gm +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.48721 0. 32 0.04872 0.(High-level parallel programming languages are gaining momentum, because they simplify the task)awidthshow +129 79 gm +0.53451 0. 32 0.05345 0.(of building software for the novel architectures with several processors. Parallel search algorithms)awidthshow +140 79 gm +(are good tests for these new languages.)show +151 79 gm +0.06134 0. 32 0.00613 0.(Parallel search algorithms have been programmed in several languages; for instance, in [ABD82] we)awidthshow +162 79 gm +0.90576 0. 32 0.09057 0.(find an algorithm based on semaphore primitives; in [Eli90] the Orca language was used. In this)awidthshow +173 79 gm +2.62359 0. 32 0.26235 0.(paper we will use Linda, a coordination language that consists of a small set of parallel)awidthshow +184 79 gm +0.30395 0. 32 0.03039 0.(programming primitives that can be added to any sequential language [CarGel90]. These primitives)awidthshow +195 79 gm +(associatively access a )show +195 177 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(tuple space)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +( shared among processes.)show +206 79 gm +0.74050 0. 32 0.07405 0.(There are several possible software architectures that can all be programmed in Linda; one of the)awidthshow +217 79 gm +0.73242 0. 32 0.07324 0.(most useful is the )awidthshow +217 163 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +0.15429 0.(master-worker)ashow +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.53817 0. 32 0.05381 0.( model. According to this model tasks created during the parallel)awidthshow +228 79 gm +0.18966 0. 32 0.01896 0.(evaluation of a program are dynamically distributed among processors. The parallel program should)awidthshow +239 79 gm +(be structured as follows:)show +251 88 gm +(\245 a )show +251 102 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(master)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +( process generates tasks and coordinates the collection of solutions;)show +264 88 gm +0.61599 0. 32 0.06159 0.(\245 several identical )awidthshow +264 172 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(worker)show +264 203 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.63095 0. 32 0.06309 0.( processes pick and execute tasks and return task results to the master;)awidthshow +275 101 gm +(when a task is terminated, a new task can be chosen;)show +288 88 gm +0.14007 0. 32 0.01400 0.(\245 in the tuple space there are two main kinds of tuples: active tuples for tasks \(we call this multiset)awidthshow +299 101 gm +(the agenda\), and passive tuples that represent task results.)show +311 79 gm +1.13449 0. 32 0.11344 0.(The master)awidthshow +311 130 gm +1.33850 0. 32 0.13385 0.(-worker model allows to structure the supervisor of a node as a master process that)awidthshow +322 79 gm +0.12695 0. 32 0.01269 0.(coordinates several explorers as workers. This is simple to model: in the following program only the)awidthshow +333 79 gm +(root is a splitting node.)show +340 78 gm +(nc 336 79 348 525 6 rc)kp +0 gr +340 525 lin +368 97 gm +(nc 30 28 811 566 6 rc)kp +F 1 setTxMode +10 fz +bu fc +2 F /|______Courier fnt +bn +(int\312master_main\(int\312n_worker,int\312depth\))show +379 97 gm +({)show +390 97 gm +(position\312*root,*successor;)show +401 97 gm +(int\312nmoves,minimax,i,master\(\),worker\(\);)show +412 97 gm +(for \(i=0;i<n_worker;i++\))show +423 115 gm +(eval \("worker",worker\(depth\)\); /* create n workers */)show +434 97 gm +(while \(!end\(\)\))show +445 115 gm +({)show +456 115 gm +(load_new_position \(&root\); /* a new game tree */)show +467 115 gm +(nmoves=genmoves\(root,&successor\);)show +478 115 gm +(if \(nmoves==0\) /* no search to do? */)show +489 133 gm +(return\(evaluate\(root\)\);)show +500 115 gm +(out \("root",*root\); /* put new tree in agenda */)show +511 115 gm +(out\312\("sync",n_worker\);)show +522 115 gm +(for \(i=0;i<n_worker;i++\))show +533 133 gm +(out\312\("job",NEW_POSITION\); /* new job */)show +544 115 gm +0.42297 0. 32 0.04229 0.(in\312\("sync",0\); /* master continues only after all workers are ready)awidthshow +555 97 gm +(*/)show +566 115 gm +(minimax=master\(n_worker,nmoves,depth,successor\);/* search */)show +577 115 gm +(in\312\("root",*root\); /* delete visited tree */)show +588 115 gm +(})show +599 97 gm +(for \(i=0;i<n_worker;i++\))show +610 115 gm +({)show +621 115 gm +(out\("job",QUIT\); /* end of task */)show +632 115 gm +(in\("worker", 0\); /* delete worker */)show +643 115 gm +(})show +654 97 gm +(return \(0\);)show +665 97 gm +(})show +687 97 gm +(int\312master\(int\312n_worker,int\312nmoves\))show +698 97 gm +({)show +709 97 gm +(int\312nmoves,local_score,subtree,free,best;)show +720 97 gm +(local_score=-INFINITE; /* initialize local score */)show +731 97 gm +(out\312\("score", local_score\); /* initialize global score */)show +742 97 gm +(free = n_worker;)show +753 97 gm +(subtree = 1;)show +F T cp +%%Page: ? 8 +op +30 28 811 566 fr +0 0 xl +1 1 pen +0 0 gm +(nc 0 0 0 0 6 rc)kp +91 336 gm +(nc 30 28 811 566 6 rc)kp +F 1 setTxMode +0 fs +10 fz +bu fc +2 F /|______Helvetica fnt +bn +(A Comparison of Parallel Search Algorithms)show +773 79 gm +(UBLCS-94-14)show +773 519 gm +(6)show +119 97 gm +bu fc +2 F /|______Courier fnt +bn +(while \(\(subtree <= nmoves\) || \(free<n_worker\)\))show +130 205 gm +(/* loop terminates when job done */)show +141 115 gm +(if \(\(subtree <= nmoves\) && \(free>0\)\))show +152 169 gm +(/* more tasks in agenda and a worker is idle? */)show +163 133 gm +({ out\("job",subtree\); /* insert search task in agenda */)show +174 133 gm +(free--;)show +185 133 gm +(subtree++;)show +196 133 gm +(})show +207 115 gm +(else /* wait completion of a task */)show +218 133 gm +({)show +229 133 gm +(in \("result",?value,?r_subtree\); /* get result */)show +240 133 gm +(if \(value>local_score\) /* improved score? */)show +251 151 gm +({ local_score=value; /* local update of score */)show +262 151 gm +(in \("score",?int\);)show +273 151 gm +(out\("score",local_score\); /* global update of score */)show +284 151 gm +(best=r_subtree;)show +295 151 gm +(})show +306 133 gm +(free++;})show +317 97 gm +(in \("score",?int\); /* to avoid interference with next search */)show +329 97 gm +(return \(local_score\);)show +340 97 gm +(})show +360 233 gm +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(Fig)show +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(.)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(4)show +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +( Core algorithm: master)show +378 77 gm +0 gr +378 525 lin +397 79 gm +F 1 setTxMode +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.75927 0. 32 0.07592 0.(Creating and terminating an active tuple for each task is an expensive activity in Network Linda,)awidthshow +408 79 gm +1.31683 0. 32 0.13168 0.(thus we have defined a general worker structure that can survive the end of a task and can be)awidthshow +419 79 gm +(specialized when it is necessary.)show +426 78 gm +(nc 422 79 434 525 6 rc)kp +0 gr +426 525 lin +455 97 gm +(nc 30 28 811 566 6 rc)kp +F 1 setTxMode +10 fz +bu fc +2 F /|______Courier fnt +bn +(int\312worker\(int depth\))show +467 97 gm +({)show +479 97 gm +(position *root,*successor,*tree_pointer;)show +491 97 gm +(int nmoves,subtree,score,value,job_type,quit,s;)show +503 97 gm +(quit=false;)show +515 97 gm +(while\(!quit\))show +527 115 gm +({)show +539 115 gm +(in\("job",?job_type\);)show +551 115 gm +(switch\312\(job_type\))show +563 133 gm +({)show +575 133 gm +(case\312QUIT: /* terminate */)show +587 151 gm +(quit=true;)show +599 151 gm +(break;)show +611 133 gm +(case\312NEW_POSITION: /* new game tree */)show +623 151 gm +(in\("position",?*root\);)show +635 151 gm +(in\("sync",?s\);)show +647 151 gm +(out\("sync",s-1\);)show +659 151 gm +(nmoves=genmoves\(root,&successor\);)show +671 151 gm +(break;)show +683 133 gm +(default: /* sequential )show +bu fc +2 F /|______Symbol fnt +bn +(ab)show +bu fc +2 F /|______Courier fnt +bn +( */)show +695 151 gm +(subtree=job_type;)show +707 151 gm +(tree_pointer=successor+subtree-1;)show +719 151 gm +(makemove\(tree_pointer\);)show +731 151 gm +(rd\("score",?score\); /* update local score */)show +743 151 gm +(value=-alphabeta\(tree_pointer,-INFINITE,-score,depth\);)show +F T cp +%%Page: ? 9 +op +30 28 811 566 fr +0 0 xl +1 1 pen +0 0 gm +(nc 0 0 0 0 6 rc)kp +91 336 gm +(nc 30 28 811 566 6 rc)kp +F 1 setTxMode +0 fs +10 fz +bu fc +2 F /|______Helvetica fnt +bn +(A Comparison of Parallel Search Algorithms)show +773 79 gm +(UBLCS-94-14)show +773 519 gm +(7)show +119 151 gm +bu fc +2 F /|______Courier fnt +bn +(out\("result",value,subtree\);)show +131 151 gm +(undomove\(tree_pointer\);)show +143 151 gm +(break;)show +155 133 gm +(})show +167 115 gm +(})show +179 97 gm +(return\312\(0\);})show +199 232 gm +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(Fig)show +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(.)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(5)show +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +( Core algorithm: worker)show +217 77 gm +0 gr +217 525 lin +236 79 gm +F 1 setTxMode +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +1.33102 0. 32 0.13310 0.(Our goal is to compare some parallel search strategies with their sequential versions. We have)awidthshow +247 79 gm +1.65176 0. 32 0.16517 0.(developed and tested different programs all based on such an algorithm. The experiments we)awidthshow +258 79 gm +1.15219 0. 32 0.11521 0.(describe used the Bratko)awidthshow +258 193 gm +1.17324 0. 32 0.11732 0.(-Kopec positions [BraKop82] to measure the speedup on an increasing)awidthshow +269 79 gm +(number of workstations.)show +280 79 gm +0.13885 0. 32 0.01388 0.(The most important value we measured is time T to search a game tree. For sequential versions, this)awidthshow +295 79 gm +0.11901 0. 32 0.01190 0.(is defined as the interval between the root invocation of )awidthshow +295 328 gm +bu fc +2 F /|______Symbol fnt +bn +0.03961 0.(ab)ashow +bu fc +2 F /|______Times-Roman fnt +bn +0.11077 0. 32 0.01107 0.( and its termination \(we actually measure)awidthshow +307 79 gm +0.33569 0. 32 0.03356 0.(CPU time used for such an evaluation\). For the parallel versions, we let the master to measure time)awidthshow +318 79 gm +1.42822 0. 32 0.14282 0.(between the distribution of the root node and the collection of its minimax value \(for such an)awidthshow +329 79 gm +0.63201 0. 32 0.06320 0.(evaluation we used real time; the network was used during unloaded hours\). Other parameters we)awidthshow +340 79 gm +(recorded are shown in Fig.6.)show +369 110 gm +1 fs +10 fz +bu fc +2 F /|______Times-Bold fnt +bn +(Procs)show +369 167 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(processors used for the search \(master+workers\))show +355 80 gm +0 gr +355 82 lin +355 80 gm +357 80 lin +357 82 gm +357 82 lin +357 82 lin +355 83 gm +355 161 lin +357 83 gm +357 161 lin +355 162 gm +355 164 lin +357 162 gm +357 164 lin +355 165 gm +355 468 lin +357 165 gm +357 468 lin +355 469 gm +355 471 lin +357 471 lin +357 469 gm +357 469 lin +357 469 lin +358 80 gm +371 80 lin +358 82 gm +371 82 lin +358 162 gm +371 162 lin +358 469 gm +371 469 lin +358 471 gm +371 471 lin +390 119 gm +F 1 setTxMode +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(T)show +386 167 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(total search time in seconds for all 24 positions)show +372 82 gm +0 gr +374 82 lin +372 80 gm +374 80 lin +372 83 gm +372 161 lin +374 83 gm +374 161 lin +372 162 gm +372 164 lin +374 162 gm +374 164 lin +372 165 gm +372 468 lin +374 165 gm +374 468 lin +372 471 gm +374 471 lin +372 469 gm +374 469 lin +375 80 gm +392 80 lin +375 82 gm +392 82 lin +375 162 gm +392 162 lin +375 469 gm +392 469 lin +375 471 gm +392 471 lin +411 119 gm +F 1 setTxMode +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(N)show +407 167 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(total searched nodes for all 24 positions)show +393 82 gm +0 gr +395 82 lin +393 80 gm +395 80 lin +393 83 gm +393 161 lin +395 83 gm +395 161 lin +393 162 gm +393 164 lin +395 162 gm +395 164 lin +393 165 gm +393 468 lin +395 165 gm +395 468 lin +393 471 gm +395 471 lin +393 469 gm +395 469 lin +396 80 gm +413 80 lin +396 82 gm +413 82 lin +396 162 gm +413 162 lin +396 469 gm +413 469 lin +396 471 gm +413 471 lin +437 119 gm +F 1 setTxMode +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(S)show +434 167 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(speedup )show +0 0 pen +445 254 gm +(nc 419 202 445 254 6 rc)kp +0 gr +445 254 lin +psb +currentpoint +pse +419 202 gm +419 202 lin +psb +30 dict begin +currentpoint 3 -1 roll sub neg 3 1 roll sub 1664 div 832 3 -1 roll exch div scale currentpoint translate 64 46 translate +-23 434 moveto +/fs 0 def +/sf {exch dup /fs exch def dup neg matrix scale makefont setfont} def +/f1 {findfont dup /cf exch def sf} def +/ns {cf sf} def +320 /Helvetica f1 +(\() show +99 434 moveto +320 /Symbol f1 +(=) show +760 233 moveto +320 /Helvetica f1 +(T) show +955 233 moveto +256 /Helvetica f1 +(1) show +392 679 moveto +320 /Helvetica f1 +(T) show +587 679 moveto +256 ns +(nr) show +821 679 moveto +256 /Helvetica f1 +(.) show +920 679 moveto +256 /Helvetica f1 +(proc) show +/thick 0 def +/th { dup setlinewidth /thick exch def } def +16 th 366 351 moveto 1077 0 rlineto stroke +1463 434 moveto +320 /Helvetica f1 +(\)) show +end +pse +1 1 pen +414 82 gm +(nc 30 28 811 566 6 rc)kp +416 82 lin +414 80 gm +416 80 lin +414 83 gm +414 161 lin +416 83 gm +416 161 lin +414 162 gm +414 164 lin +416 162 gm +416 164 lin +414 165 gm +414 468 lin +416 165 gm +416 468 lin +414 471 gm +416 471 lin +414 469 gm +416 469 lin +417 80 gm +445 80 lin +417 82 gm +445 82 lin +417 162 gm +445 162 lin +417 469 gm +445 469 lin +417 471 gm +445 471 lin +469 119 gm +F 1 setTxMode +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(E)show +466 167 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(relative efficiency )show +0 0 pen +477 295 gm +(nc 451 244 477 295 6 rc)kp +0 gr +477 295 lin +psb +currentpoint +pse +451 244 gm +451 244 lin +psb +30 dict begin +currentpoint 3 -1 roll sub neg 3 1 roll sub 1632 div 832 3 -1 roll exch div scale currentpoint translate 64 42 translate +-23 438 moveto +/fs 0 def +/sf {exch dup /fs exch def dup neg matrix scale makefont setfont} def +/f1 {findfont dup /cf exch def sf} def +/ns {cf sf} def +320 /Helvetica f1 +(\() show +99 438 moveto +320 /Symbol f1 +(=) show +783 237 moveto +320 /Helvetica f1 +(S) show +376 683 moveto +(nr) show +660 683 moveto +320 /Helvetica f1 +(.) show +768 683 moveto +320 /Helvetica f1 +(proc) show +/thick 0 def +/th { dup setlinewidth /thick exch def } def +16 th 366 355 moveto 1046 0 rlineto stroke +1432 438 moveto +320 /Helvetica f1 +(\)) show +end +pse +1 1 pen +446 82 gm +(nc 30 28 811 566 6 rc)kp +448 82 lin +446 80 gm +448 80 lin +446 83 gm +446 161 lin +448 83 gm +448 161 lin +446 162 gm +446 164 lin +448 162 gm +448 164 lin +446 165 gm +446 468 lin +448 165 gm +448 468 lin +446 471 gm +448 471 lin +446 469 gm +448 469 lin +449 80 gm +477 80 lin +449 82 gm +477 82 lin +449 162 gm +477 162 lin +449 469 gm +477 469 lin +449 471 gm +477 471 lin +492 112 gm +F 1 setTxMode +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(Fpm)show +492 167 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(average production factor)show +478 82 gm +0 gr +480 82 lin +478 80 gm +480 80 lin +478 83 gm +478 161 lin +480 83 gm +480 161 lin +478 162 gm +478 164 lin +480 162 gm +480 164 lin +478 165 gm +478 468 lin +480 165 gm +480 468 lin +478 471 gm +480 471 lin +478 469 gm +480 469 lin +481 80 gm +494 80 lin +481 82 gm +494 82 lin +481 162 gm +494 162 lin +481 469 gm +494 469 lin +481 471 gm +494 471 lin +509 109 gm +F 1 setTxMode +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(Fpmw)show +509 167 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(average production factor for workers)show +495 82 gm +0 gr +497 82 lin +495 80 gm +497 80 lin +495 83 gm +495 161 lin +497 83 gm +497 161 lin +495 162 gm +495 164 lin +497 162 gm +497 164 lin +495 165 gm +495 468 lin +497 165 gm +497 468 lin +495 471 gm +497 471 lin +495 469 gm +497 469 lin +498 80 gm +511 80 lin +498 82 gm +511 82 lin +498 162 gm +511 162 lin +498 469 gm +511 469 lin +498 471 gm +511 471 lin +535 116 gm +F 1 setTxMode +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(SO)show +532 167 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(search overhead )show +0 0 pen +541 299 gm +(nc 517 234 541 299 6 rc)kp +0 gr +541 299 lin +psb +currentpoint +pse +517 234 gm +517 234 lin +psb +30 dict begin +currentpoint 3 -1 roll sub neg 3 1 roll sub 2080 div 768 3 -1 roll exch div scale currentpoint translate 64 46 translate +-23 434 moveto +/fs 0 def +/sf {exch dup /fs exch def dup neg matrix scale makefont setfont} def +/f1 {findfont dup /cf exch def sf} def +/ns {cf sf} def +320 /Helvetica f1 +(\() show +99 434 moveto +320 /Symbol f1 +(=) show +374 233 moveto +320 /Helvetica f1 +(N) show +605 233 moveto +256 ns +(nr) show +839 233 moveto +256 /Helvetica f1 +(.) show +938 233 moveto +256 /Helvetica f1 +(proc) show +751 679 moveto +320 ns +(N) show +963 679 moveto +256 /Helvetica f1 +(1) show +/thick 0 def +/th { dup setlinewidth /thick exch def } def +16 th 366 351 moveto 1095 0 rlineto stroke +1538 434 moveto +320 /Symbol f1 +(-) show +1757 434 moveto +320 /Helvetica f1 +(1) show +1888 434 moveto +320 /Helvetica f1 +(\)) show +end +pse +1 1 pen +512 82 gm +(nc 30 28 811 566 6 rc)kp +514 82 lin +512 80 gm +514 80 lin +512 83 gm +512 161 lin +514 83 gm +514 161 lin +512 162 gm +512 164 lin +514 162 gm +514 164 lin +512 165 gm +512 468 lin +514 165 gm +514 468 lin +512 471 gm +514 471 lin +512 469 gm +514 469 lin +515 80 gm +541 80 lin +515 82 gm +541 82 lin +515 162 gm +541 162 lin +515 469 gm +541 469 lin +515 471 gm +541 471 lin +565 117 gm +F 1 setTxMode +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(SS)show +562 167 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(search speed )show +0 0 pen +571 246 gm +(nc 547 220 571 246 6 rc)kp +0 gr +571 246 lin +psb +currentpoint +pse +547 220 gm +547 220 lin +psb +30 dict begin +currentpoint 3 -1 roll sub neg 3 1 roll sub 832 div 768 3 -1 roll exch div scale currentpoint translate 64 46 translate +-23 434 moveto +/fs 0 def +/sf {exch dup /fs exch def dup neg matrix scale makefont setfont} def +/f1 {findfont dup /cf exch def sf} def +/ns {cf sf} def +320 /Helvetica f1 +(\() show +99 434 moveto +320 /Symbol f1 +(=) show +374 233 moveto +320 /Helvetica f1 +(N) show +392 679 moveto +(T) show +/thick 0 def +/th { dup setlinewidth /thick exch def } def +16 th 366 351 moveto 247 0 rlineto stroke +633 434 moveto +320 /Helvetica f1 +(\)) show +end +pse +1 1 pen +542 82 gm +(nc 30 28 811 566 6 rc)kp +544 82 lin +542 80 gm +544 80 lin +542 83 gm +542 161 lin +544 83 gm +544 161 lin +542 162 gm +542 164 lin +544 162 gm +544 164 lin +542 165 gm +542 468 lin +544 165 gm +544 468 lin +542 471 gm +544 471 lin +542 469 gm +544 469 lin +545 80 gm +571 80 lin +545 82 gm +571 82 lin +545 162 gm +571 162 lin +545 469 gm +571 469 lin +545 471 gm +571 471 lin +595 114 gm +F 1 setTxMode +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(S)show +9 fz +bu fc +2 F /|______Times-Bold fnt +bn +(SS)show +592 167 gm +0 fs +10 fz +bu fc +2 F /|______Times-Roman fnt +bn +(speed gain )show +0 0 pen +601 271 gm +(nc 577 211 601 271 6 rc)kp +0 gr +601 271 lin +psb +currentpoint +pse +577 211 gm +577 211 lin +psb +30 dict begin +currentpoint 3 -1 roll sub neg 3 1 roll sub 1920 div 768 3 -1 roll exch div scale currentpoint translate 64 46 translate +-23 434 moveto +/fs 0 def +/sf {exch dup /fs exch def dup neg matrix scale makefont setfont} def +/f1 {findfont dup /cf exch def sf} def +/ns {cf sf} def +320 /Helvetica f1 +(\() show +99 434 moveto +320 /Symbol f1 +(=) show +389 233 moveto +320 /Helvetica f1 +(VR) show +866 233 moveto +256 ns +(nr) show +1100 233 moveto +256 /Helvetica f1 +(.) show +1199 233 moveto +256 /Helvetica f1 +(proc) show +778 679 moveto +320 ns +(VR) show +1214 679 moveto +256 /Helvetica f1 +(1) show +/thick 0 def +/th { dup setlinewidth /thick exch def } def +16 th 366 351 moveto 1356 0 rlineto stroke +1742 434 moveto +320 /Helvetica f1 +(\)) show +end +pse +1 1 pen +572 82 gm +(nc 30 28 811 566 6 rc)kp +574 82 lin +572 80 gm +574 80 lin +572 83 gm +572 161 lin +574 83 gm +574 161 lin +572 162 gm +572 164 lin +574 162 gm +574 164 lin +572 165 gm +572 468 lin +574 165 gm +574 468 lin +572 471 gm +574 471 lin +572 469 gm +574 469 lin +575 80 gm +601 80 lin +575 82 gm +601 82 lin +604 80 gm +604 82 lin +602 80 gm +604 80 lin +602 82 gm +602 82 lin +602 82 lin +602 83 gm +602 161 lin +604 83 gm +604 161 lin +575 162 gm +601 162 lin +602 162 gm +602 164 lin +604 162 gm +604 164 lin +602 165 gm +602 468 lin +604 165 gm +604 468 lin +575 469 gm +601 469 lin +575 471 gm +601 471 lin +604 469 gm +604 471 lin +602 471 gm +604 471 lin +602 469 gm +602 469 lin +602 469 lin +616 79 gm +F 1 setTxMode +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(Fig 6)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +( )show +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(Parameters we measured in the experiments)show +632 79 gm +0 fs +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.66162 0. 32 0.06616 0.(All experiments were done fixing a search depth of 5 plies, for comparison with other papers that)awidthshow +643 79 gm +0.46813 0. 32 0.04681 0.(used the same search depth. We have used 11 Sun Sparcstations in periods when they were free of)awidthshow +654 79 gm +(other tasks.)show +684 79 gm +1 fs +12 fz +bu fc +2 F /|______Times-Bold fnt +bn +(4. Static splitting)show +697 79 gm +0 fs +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.44723 0. 32 0.04472 0.(Let us discuss preliminarly a few results we can expect from our experiments. Let B the branching)awidthshow +708 79 gm +(factor typical of chess game trees, and N)show +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(w )show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(the number of processors available for explorers:)show +720 88 gm +(\245\312the core algorithm efficiency should be proportional to the ratio B/N)show +720 396 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(w)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +( [MarCam82];)show +737 88 gm +0.22293 0. 32 0.02229 0.(\245\312for a game tree with B=40, an )awidthshow +bu fc +2 F /|______Symbol fnt +bn +0.10455 0.(ab)ashow +bu fc +2 F /|______Times-Roman fnt +bn +0.24337 0. 32 0.02433 0.( search is equivalent to a minimax search of a tree with branch)awidthshow +749 101 gm +(factor B=7 [Gil72]. Thus, if we had N)show +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(w)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(=40 explorers, the ideal average speedup should be 7.)show +F T cp +%%Page: ? 10 +op +30 28 811 566 fr +0 0 xl +1 1 pen +0 0 gm +(nc 0 0 0 0 6 rc)kp +91 336 gm +(nc 30 28 811 566 6 rc)kp +F 1 setTxMode +0 fs +10 fz +bu fc +2 F /|______Helvetica fnt +bn +(A Comparison of Parallel Search Algorithms)show +773 79 gm +(UBLCS-94-14)show +773 519 gm +(8)show +136 96 gm +1 fs +9 fz +bu fc +2 F /|______Times-Bold fnt +bn +(Procs)show +136 141 gm +10 fz +bu fc +2 F /|______Times-Bold fnt +bn +(T\(sec\))show +136 188 gm +9 fz +bu fc +2 F /|______Times-Bold fnt +bn +(N \(nodes\))show +136 249 gm +10 fz +bu fc +2 F /|______Times-Bold fnt +bn +(S)show +136 282 gm +(E)show +136 310 gm +(Fpm)show +136 344 gm +9 fz +bu fc +2 F /|______Times-Bold fnt +bn +(Fpmw)show +136 385 gm +10 fz +bu fc +2 F /|______Times-Bold fnt +bn +(SO)show +136 425 gm +9 fz +bu fc +2 F /|______Times-Bold fnt +bn +(SS \(nodes/sec\))show +136 505 gm +10 fz +bu fc +2 F /|______Times-Bold fnt +bn +(Sss)show +122 80 gm +0 gr +122 82 lin +122 80 gm +124 80 lin +124 82 gm +124 82 lin +124 82 lin +122 83 gm +122 128 lin +124 83 gm +124 128 lin +122 129 gm +122 131 lin +124 129 gm +124 131 lin +122 132 gm +122 175 lin +124 132 gm +124 175 lin +122 176 gm +122 178 lin +124 176 gm +124 178 lin +122 179 gm +122 232 lin +124 179 gm +124 232 lin +122 233 gm +122 235 lin +124 233 gm +124 235 lin +122 236 gm +122 266 lin +124 236 gm +124 266 lin +122 267 gm +122 269 lin +124 267 gm +124 269 lin +122 270 gm +122 300 lin +124 270 gm +124 300 lin +122 301 gm +122 303 lin +124 301 gm +124 303 lin +122 304 gm +122 334 lin +124 304 gm +124 334 lin +122 335 gm +122 337 lin +124 335 gm +124 337 lin +122 338 gm +122 372 lin +124 338 gm +124 372 lin +122 373 gm +122 375 lin +124 373 gm +124 375 lin +122 376 gm +122 406 lin +124 376 gm +124 406 lin +122 407 gm +122 409 lin +124 407 gm +124 409 lin +122 410 gm +122 492 lin +124 410 gm +124 492 lin +122 493 gm +122 495 lin +124 493 gm +124 495 lin +122 496 gm +122 526 lin +124 496 gm +124 526 lin +122 527 gm +122 529 lin +124 529 lin +124 527 gm +124 527 lin +124 527 lin +125 80 gm +138 80 lin +125 82 gm +138 82 lin +125 129 gm +138 129 lin +125 131 gm +138 131 lin +125 176 gm +138 176 lin +125 178 gm +138 178 lin +125 233 gm +138 233 lin +125 235 gm +138 235 lin +125 267 gm +138 267 lin +125 269 gm +138 269 lin +125 301 gm +138 301 lin +125 303 gm +138 303 lin +125 335 gm +138 335 lin +125 337 gm +138 337 lin +125 373 gm +138 373 lin +125 375 gm +138 375 lin +125 407 gm +138 407 lin +125 409 gm +138 409 lin +125 493 gm +138 493 lin +125 495 gm +138 495 lin +125 527 gm +138 527 lin +125 529 gm +138 529 lin +153 104 gm +F 1 setTxMode +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(1)show +153 144 gm +(8301)show +153 189 gm +(5347545)show +153 247 gm +(---)show +153 281 gm +(---)show +153 315 gm +(---)show +153 351 gm +(---)show +153 387 gm +(---)show +153 444 gm +(644)show +153 507 gm +(---)show +139 82 gm +0 gr +141 82 lin +139 80 gm +141 80 lin +139 83 gm +139 128 lin +141 83 gm +141 128 lin +139 131 gm +139 131 lin +141 129 gm +141 129 lin +139 129 gm +139 129 lin +141 131 gm +141 131 lin +139 132 gm +139 175 lin +141 132 gm +141 175 lin +139 178 gm +139 178 lin +141 176 gm +141 176 lin +139 176 gm +139 176 lin +141 178 gm +141 178 lin +139 179 gm +139 232 lin +141 179 gm +141 232 lin +139 235 gm +139 235 lin +141 233 gm +141 233 lin +139 233 gm +139 233 lin +141 235 gm +141 235 lin +139 236 gm +139 266 lin +141 236 gm +141 266 lin +139 269 gm +139 269 lin +141 267 gm +141 267 lin +139 267 gm +139 267 lin +141 269 gm +141 269 lin +139 270 gm +139 300 lin +141 270 gm +141 300 lin +139 303 gm +139 303 lin +141 301 gm +141 301 lin +139 301 gm +139 301 lin +141 303 gm +141 303 lin +139 304 gm +139 334 lin +141 304 gm +141 334 lin +139 337 gm +139 337 lin +141 335 gm +141 335 lin +139 335 gm +139 335 lin +141 337 gm +141 337 lin +139 338 gm +139 372 lin +141 338 gm +141 372 lin +139 375 gm +139 375 lin +141 373 gm +141 373 lin +139 373 gm +139 373 lin +141 375 gm +141 375 lin +139 376 gm +139 406 lin +141 376 gm +141 406 lin +139 409 gm +139 409 lin +141 407 gm +141 407 lin +139 407 gm +139 407 lin +141 409 gm +141 409 lin +139 410 gm +139 492 lin +141 410 gm +141 492 lin +139 495 gm +139 495 lin +141 493 gm +141 493 lin +139 493 gm +139 493 lin +141 495 gm +141 495 lin +139 496 gm +139 526 lin +141 496 gm +141 526 lin +139 529 gm +141 529 lin +139 527 gm +141 527 lin +142 80 gm +155 80 lin +142 82 gm +155 82 lin +142 129 gm +155 129 lin +142 131 gm +155 131 lin +142 176 gm +155 176 lin +142 178 gm +155 178 lin +142 233 gm +155 233 lin +142 235 gm +155 235 lin +142 267 gm +155 267 lin +142 269 gm +155 269 lin +142 301 gm +155 301 lin +142 303 gm +155 303 lin +142 335 gm +155 335 lin +142 337 gm +155 337 lin +142 373 gm +155 373 lin +142 375 gm +155 375 lin +142 407 gm +155 407 lin +142 409 gm +155 409 lin +142 493 gm +155 493 lin +142 495 gm +155 495 lin +142 527 gm +155 527 lin +142 529 gm +155 529 lin +168 104 gm +F 1 setTxMode +(3)show +168 144 gm +(4571)show +168 189 gm +(5754203)show +168 243 gm +(1.82)show +168 277 gm +(0.61)show +168 311 gm +(0.66)show +168 347 gm +(0.98)show +168 383 gm +(0.08)show +168 442 gm +(1259)show +168 503 gm +(1.95)show +156 82 gm +0 gr +156 82 lin +156 80 gm +156 80 lin +156 83 gm +156 128 lin +156 131 gm +156 131 lin +156 129 gm +156 129 lin +156 132 gm +156 175 lin +156 178 gm +156 178 lin +156 176 gm +156 176 lin +156 179 gm +156 232 lin +156 235 gm +156 235 lin +156 233 gm +156 233 lin +156 236 gm +156 266 lin +156 269 gm +156 269 lin +156 267 gm +156 267 lin +156 270 gm +156 300 lin +156 303 gm +156 303 lin +156 301 gm +156 301 lin +156 304 gm +156 334 lin +156 337 gm +156 337 lin +156 335 gm +156 335 lin +156 338 gm +156 372 lin +156 375 gm +156 375 lin +156 373 gm +156 373 lin +156 376 gm +156 406 lin +156 409 gm +156 409 lin +156 407 gm +156 407 lin +156 410 gm +156 492 lin +156 495 gm +156 495 lin +156 493 gm +156 493 lin +156 496 gm +156 526 lin +156 529 gm +156 529 lin +156 527 gm +156 527 lin +157 80 gm +170 80 lin +157 82 gm +170 82 lin +157 129 gm +170 129 lin +157 131 gm +170 131 lin +157 176 gm +170 176 lin +157 178 gm +170 178 lin +157 233 gm +170 233 lin +157 235 gm +170 235 lin +157 267 gm +170 267 lin +157 269 gm +170 269 lin +157 301 gm +170 301 lin +157 303 gm +170 303 lin +157 335 gm +170 335 lin +157 337 gm +170 337 lin +157 373 gm +170 373 lin +157 375 gm +170 375 lin +157 407 gm +170 407 lin +157 409 gm +170 409 lin +157 493 gm +170 493 lin +157 495 gm +170 495 lin +157 527 gm +170 527 lin +157 529 gm +170 529 lin +183 104 gm +F 1 setTxMode +(5)show +183 144 gm +(2770)show +183 189 gm +(6599460)show +183 243 gm +(3.00)show +183 277 gm +(0.60)show +183 311 gm +(0.75)show +183 347 gm +(0.93)show +183 383 gm +(0.23)show +183 442 gm +(2382)show +183 503 gm +(3.70)show +171 82 gm +0 gr +171 82 lin +171 80 gm +171 80 lin +171 83 gm +171 128 lin +171 131 gm +171 131 lin +171 129 gm +171 129 lin +171 132 gm +171 175 lin +171 178 gm +171 178 lin +171 176 gm +171 176 lin +171 179 gm +171 232 lin +171 235 gm +171 235 lin +171 233 gm +171 233 lin +171 236 gm +171 266 lin +171 269 gm +171 269 lin +171 267 gm +171 267 lin +171 270 gm +171 300 lin +171 303 gm +171 303 lin +171 301 gm +171 301 lin +171 304 gm +171 334 lin +171 337 gm +171 337 lin +171 335 gm +171 335 lin +171 338 gm +171 372 lin +171 375 gm +171 375 lin +171 373 gm +171 373 lin +171 376 gm +171 406 lin +171 409 gm +171 409 lin +171 407 gm +171 407 lin +171 410 gm +171 492 lin +171 495 gm +171 495 lin +171 493 gm +171 493 lin +171 496 gm +171 526 lin +171 529 gm +171 529 lin +171 527 gm +171 527 lin +172 80 gm +185 80 lin +172 82 gm +185 82 lin +172 129 gm +185 129 lin +172 131 gm +185 131 lin +172 176 gm +185 176 lin +172 178 gm +185 178 lin +172 233 gm +185 233 lin +172 235 gm +185 235 lin +172 267 gm +185 267 lin +172 269 gm +185 269 lin +172 301 gm +185 301 lin +172 303 gm +185 303 lin +172 335 gm +185 335 lin +172 337 gm +185 337 lin +172 373 gm +185 373 lin +172 375 gm +185 375 lin +172 407 gm +185 407 lin +172 409 gm +185 409 lin +172 493 gm +185 493 lin +172 495 gm +185 495 lin +172 527 gm +185 527 lin +172 529 gm +185 529 lin +198 104 gm +F 1 setTxMode +(7)show +198 144 gm +(2242)show +198 189 gm +(7236560)show +198 243 gm +(3.70)show +198 277 gm +(0.53)show +198 311 gm +(0.71)show +198 347 gm +(0.83)show +198 383 gm +(0.35)show +198 442 gm +(3228)show +198 503 gm +(5.01)show +186 82 gm +0 gr +186 82 lin +186 80 gm +186 80 lin +186 83 gm +186 128 lin +186 131 gm +186 131 lin +186 129 gm +186 129 lin +186 132 gm +186 175 lin +186 178 gm +186 178 lin +186 176 gm +186 176 lin +186 179 gm +186 232 lin +186 235 gm +186 235 lin +186 233 gm +186 233 lin +186 236 gm +186 266 lin +186 269 gm +186 269 lin +186 267 gm +186 267 lin +186 270 gm +186 300 lin +186 303 gm +186 303 lin +186 301 gm +186 301 lin +186 304 gm +186 334 lin +186 337 gm +186 337 lin +186 335 gm +186 335 lin +186 338 gm +186 372 lin +186 375 gm +186 375 lin +186 373 gm +186 373 lin +186 376 gm +186 406 lin +186 409 gm +186 409 lin +186 407 gm +186 407 lin +186 410 gm +186 492 lin +186 495 gm +186 495 lin +186 493 gm +186 493 lin +186 496 gm +186 526 lin +186 529 gm +186 529 lin +186 527 gm +186 527 lin +187 80 gm +200 80 lin +187 82 gm +200 82 lin +187 129 gm +200 129 lin +187 131 gm +200 131 lin +187 176 gm +200 176 lin +187 178 gm +200 178 lin +187 233 gm +200 233 lin +187 235 gm +200 235 lin +187 267 gm +200 267 lin +187 269 gm +200 269 lin +187 301 gm +200 301 lin +187 303 gm +200 303 lin +187 335 gm +200 335 lin +187 337 gm +200 337 lin +187 373 gm +200 373 lin +187 375 gm +200 375 lin +187 407 gm +200 407 lin +187 409 gm +200 409 lin +187 493 gm +200 493 lin +187 495 gm +200 495 lin +187 527 gm +200 527 lin +187 529 gm +200 529 lin +213 104 gm +F 1 setTxMode +(9)show +213 144 gm +(1988)show +213 189 gm +(7876769)show +213 243 gm +(4.18)show +213 277 gm +(0.46)show +213 311 gm +(0.68)show +213 347 gm +(0.77)show +213 383 gm +(0.47)show +213 442 gm +(3962)show +213 503 gm +(6.15)show +201 82 gm +0 gr +201 82 lin +201 80 gm +201 80 lin +201 83 gm +201 128 lin +201 131 gm +201 131 lin +201 129 gm +201 129 lin +201 132 gm +201 175 lin +201 178 gm +201 178 lin +201 176 gm +201 176 lin +201 179 gm +201 232 lin +201 235 gm +201 235 lin +201 233 gm +201 233 lin +201 236 gm +201 266 lin +201 269 gm +201 269 lin +201 267 gm +201 267 lin +201 270 gm +201 300 lin +201 303 gm +201 303 lin +201 301 gm +201 301 lin +201 304 gm +201 334 lin +201 337 gm +201 337 lin +201 335 gm +201 335 lin +201 338 gm +201 372 lin +201 375 gm +201 375 lin +201 373 gm +201 373 lin +201 376 gm +201 406 lin +201 409 gm +201 409 lin +201 407 gm +201 407 lin +201 410 gm +201 492 lin +201 495 gm +201 495 lin +201 493 gm +201 493 lin +201 496 gm +201 526 lin +201 529 gm +201 529 lin +201 527 gm +201 527 lin +202 80 gm +215 80 lin +202 82 gm +215 82 lin +202 129 gm +215 129 lin +202 131 gm +215 131 lin +202 176 gm +215 176 lin +202 178 gm +215 178 lin +202 233 gm +215 233 lin +202 235 gm +215 235 lin +202 267 gm +215 267 lin +202 269 gm +215 269 lin +202 301 gm +215 301 lin +202 303 gm +215 303 lin +202 335 gm +215 335 lin +202 337 gm +215 337 lin +202 373 gm +215 373 lin +202 375 gm +215 375 lin +202 407 gm +215 407 lin +202 409 gm +215 409 lin +202 493 gm +215 493 lin +202 495 gm +215 495 lin +202 527 gm +215 527 lin +202 529 gm +215 529 lin +228 101 gm +F 1 setTxMode +(11)show +228 144 gm +(1786)show +228 189 gm +(8521288)show +228 243 gm +(4.65)show +228 277 gm +(0.42)show +228 311 gm +(0.66)show +228 347 gm +(0.73)show +228 383 gm +(0.59)show +228 442 gm +(4771)show +228 503 gm +(7.41)show +216 82 gm +0 gr +216 82 lin +216 80 gm +216 80 lin +216 83 gm +216 128 lin +216 131 gm +216 131 lin +216 129 gm +216 129 lin +216 132 gm +216 175 lin +216 178 gm +216 178 lin +216 176 gm +216 176 lin +216 179 gm +216 232 lin +216 235 gm +216 235 lin +216 233 gm +216 233 lin +216 236 gm +216 266 lin +216 269 gm +216 269 lin +216 267 gm +216 267 lin +216 270 gm +216 300 lin +216 303 gm +216 303 lin +216 301 gm +216 301 lin +216 304 gm +216 334 lin +216 337 gm +216 337 lin +216 335 gm +216 335 lin +216 338 gm +216 372 lin +216 375 gm +216 375 lin +216 373 gm +216 373 lin +216 376 gm +216 406 lin +216 409 gm +216 409 lin +216 407 gm +216 407 lin +216 410 gm +216 492 lin +216 495 gm +216 495 lin +216 493 gm +216 493 lin +216 496 gm +216 526 lin +216 529 gm +216 529 lin +216 527 gm +216 527 lin +217 80 gm +230 80 lin +217 82 gm +230 82 lin +233 80 gm +233 82 lin +231 80 gm +233 80 lin +231 82 gm +231 82 lin +231 82 lin +231 83 gm +231 128 lin +233 83 gm +233 128 lin +217 129 gm +230 129 lin +217 131 gm +230 131 lin +231 129 gm +231 131 lin +233 129 gm +233 131 lin +231 132 gm +231 175 lin +233 132 gm +233 175 lin +217 176 gm +230 176 lin +217 178 gm +230 178 lin +231 176 gm +231 178 lin +233 176 gm +233 178 lin +231 179 gm +231 232 lin +233 179 gm +233 232 lin +217 233 gm +230 233 lin +217 235 gm +230 235 lin +231 233 gm +231 235 lin +233 233 gm +233 235 lin +231 236 gm +231 266 lin +233 236 gm +233 266 lin +217 267 gm +230 267 lin +217 269 gm +230 269 lin +231 267 gm +231 269 lin +233 267 gm +233 269 lin +231 270 gm +231 300 lin +233 270 gm +233 300 lin +217 301 gm +230 301 lin +217 303 gm +230 303 lin +231 301 gm +231 303 lin +233 301 gm +233 303 lin +231 304 gm +231 334 lin +233 304 gm +233 334 lin +217 335 gm +230 335 lin +217 337 gm +230 337 lin +231 335 gm +231 337 lin +233 335 gm +233 337 lin +231 338 gm +231 372 lin +233 338 gm +233 372 lin +217 373 gm +230 373 lin +217 375 gm +230 375 lin +231 373 gm +231 375 lin +233 373 gm +233 375 lin +231 376 gm +231 406 lin +233 376 gm +233 406 lin +217 407 gm +230 407 lin +217 409 gm +230 409 lin +231 407 gm +231 409 lin +233 407 gm +233 409 lin +231 410 gm +231 492 lin +233 410 gm +233 492 lin +217 493 gm +230 493 lin +217 495 gm +230 495 lin +231 493 gm +231 495 lin +233 493 gm +233 495 lin +231 496 gm +231 526 lin +233 496 gm +233 526 lin +217 527 gm +230 527 lin +217 529 gm +230 529 lin +233 527 gm +233 529 lin +231 529 gm +233 529 lin +231 527 gm +231 527 lin +231 527 lin +245 79 gm +F 1 setTxMode +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(Fig. 7)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +( )show +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(Results of experiments for core algorithm)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +( \(basic master worker\))show +261 79 gm +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.32440 0. 32 0.03244 0.(In Fig. 7 we show data for the core algorithm. The reported speedup is low; moreover, values for E)awidthshow +272 79 gm +(tell that adding processors we increase all overheads:)show +284 88 gm +2.20611 0. 32 0.22061 0.(\245\312search overhead: compare real speedup S with ideal speedup S)awidthshow +284 403 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.49050 0.(ss)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +2.22335 0. 32 0.22233 0.(. For instance, with 11)awidthshow +295 101 gm +2.43774 0. 32 0.24377 0.(processors we have a 37% loss \(S)awidthshow +295 271 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.33930 0.(ss)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +2.01950 0. 32 0.20195 0.(=7.41\312vs\312S=4.65\). This loss is caused by minimum)awidthshow +306 101 gm +0.54733 0. 32 0.05473 0.(cooperation. We also remark that search overhead increases with more processors because all)awidthshow +317 101 gm +0.40542 0. 32 0.04054 0.(workers start with value = -)awidthshow +currentfont SwToSym +0.40542 0. 32 0.04054 0.(\245)awidthshow +setfont +0.40542 0. 32 0.04054 0.( , whereas the sequential search has a good approximation of the)awidthshow +328 101 gm +(value starting from the second subtree.)show +341 88 gm +1.70776 0. 32 0.17077 0.(\245\312communication and synchronization overhead: F)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.38545 0.(pm)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +1.18698 0. 32 0.11869 0.( increases until 5 processors \(75%\) then)awidthshow +352 101 gm +0.20828 0. 32 0.02082 0.(decreases; for 11 processors the F)awidthshow +352 251 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.07923 0.(pm)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.21224 0. 32 0.02122 0.( value is almost the same as with 3 processors \(66%\). This)awidthshow +363 101 gm +0.66604 0. 32 0.06660 0.(is explained by the fact that the master is idle most of the time, so if we use one process per)awidthshow +374 101 gm +(processor a processor is idle as well.)show +404 96 gm +1 fs +10 fz +bu fc +2 F /|______Times-Bold fnt +bn +(Procs)show +404 145 gm +(T\312\(sec\))show +404 200 gm +(N\312\(nodes\))show +404 271 gm +(S)show +404 308 gm +(E)show +404 338 gm +(Fpm)show +404 378 gm +(SO)show +404 416 gm +(SS\312\(nodes/sec\))show +404 502 gm +(Sss)show +390 80 gm +0 gr +390 82 lin +390 80 gm +392 80 lin +392 82 gm +392 82 lin +392 82 lin +390 83 gm +390 131 lin +392 83 gm +392 131 lin +390 132 gm +390 134 lin +392 132 gm +392 134 lin +390 135 gm +390 182 lin +392 135 gm +392 182 lin +390 183 gm +390 185 lin +392 183 gm +392 185 lin +390 186 gm +390 253 lin +392 186 gm +392 253 lin +390 254 gm +390 256 lin +392 254 gm +392 256 lin +390 257 gm +390 290 lin +392 257 gm +392 290 lin +390 291 gm +390 293 lin +392 291 gm +392 293 lin +390 294 gm +390 327 lin +392 294 gm +392 327 lin +390 328 gm +390 330 lin +392 328 gm +392 330 lin +390 331 gm +390 364 lin +392 331 gm +392 364 lin +390 365 gm +390 367 lin +392 365 gm +392 367 lin +390 368 gm +390 400 lin +392 368 gm +392 400 lin +390 401 gm +390 403 lin +392 401 gm +392 403 lin +390 404 gm +390 487 lin +392 404 gm +392 487 lin +390 488 gm +390 490 lin +392 488 gm +392 490 lin +390 491 gm +390 524 lin +392 491 gm +392 524 lin +390 525 gm +390 527 lin +392 527 lin +392 525 gm +392 525 lin +392 525 lin +393 80 gm +406 80 lin +393 82 gm +406 82 lin +393 132 gm +406 132 lin +393 134 gm +406 134 lin +393 183 gm +406 183 lin +393 185 gm +406 185 lin +393 254 gm +406 254 lin +393 256 gm +406 256 lin +393 291 gm +406 291 lin +393 293 gm +406 293 lin +393 328 gm +406 328 lin +393 330 gm +406 330 lin +393 365 gm +406 365 lin +393 367 gm +406 367 lin +393 401 gm +406 401 lin +393 403 gm +406 403 lin +393 488 gm +406 488 lin +393 490 gm +406 490 lin +393 525 gm +406 525 lin +393 527 gm +406 527 lin +421 105 gm +F 1 setTxMode +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(1)show +421 149 gm +(8301)show +421 203 gm +(5347545)show +421 269 gm +(---)show +421 306 gm +(---)show +421 343 gm +(---)show +421 380 gm +(---)show +421 439 gm +(644)show +421 503 gm +(---)show +407 82 gm +0 gr +409 82 lin +407 80 gm +409 80 lin +407 83 gm +407 131 lin +409 83 gm +409 131 lin +407 134 gm +407 134 lin +409 132 gm +409 132 lin +407 132 gm +407 132 lin +409 134 gm +409 134 lin +407 135 gm +407 182 lin +409 135 gm +409 182 lin +407 185 gm +407 185 lin +409 183 gm +409 183 lin +407 183 gm +407 183 lin +409 185 gm +409 185 lin +407 186 gm +407 253 lin +409 186 gm +409 253 lin +407 256 gm +407 256 lin +409 254 gm +409 254 lin +407 254 gm +407 254 lin +409 256 gm +409 256 lin +407 257 gm +407 290 lin +409 257 gm +409 290 lin +407 293 gm +407 293 lin +409 291 gm +409 291 lin +407 291 gm +407 291 lin +409 293 gm +409 293 lin +407 294 gm +407 327 lin +409 294 gm +409 327 lin +407 330 gm +407 330 lin +409 328 gm +409 328 lin +407 328 gm +407 328 lin +409 330 gm +409 330 lin +407 331 gm +407 364 lin +409 331 gm +409 364 lin +407 367 gm +407 367 lin +409 365 gm +409 365 lin +407 365 gm +407 365 lin +409 367 gm +409 367 lin +407 368 gm +407 400 lin +409 368 gm +409 400 lin +407 403 gm +407 403 lin +409 401 gm +409 401 lin +407 401 gm +407 401 lin +409 403 gm +409 403 lin +407 404 gm +407 487 lin +409 404 gm +409 487 lin +407 490 gm +407 490 lin +409 488 gm +409 488 lin +407 488 gm +407 488 lin +409 490 gm +409 490 lin +407 491 gm +407 524 lin +409 491 gm +409 524 lin +407 527 gm +409 527 lin +407 525 gm +409 525 lin +410 80 gm +423 80 lin +410 82 gm +423 82 lin +410 132 gm +423 132 lin +410 134 gm +423 134 lin +410 183 gm +423 183 lin +410 185 gm +423 185 lin +410 254 gm +423 254 lin +410 256 gm +423 256 lin +410 291 gm +423 291 lin +410 293 gm +423 293 lin +410 328 gm +423 328 lin +410 330 gm +423 330 lin +410 365 gm +423 365 lin +410 367 gm +423 367 lin +410 401 gm +423 401 lin +410 403 gm +423 403 lin +410 488 gm +423 488 lin +410 490 gm +423 490 lin +410 525 gm +423 525 lin +410 527 gm +423 527 lin +436 105 gm +F 1 setTxMode +(3)show +436 149 gm +(4544)show +436 203 gm +(5860668)show +436 265 gm +(1.83)show +436 302 gm +(0.61)show +436 339 gm +(0.70)show +436 376 gm +(0.10)show +436 436 gm +(1290)show +436 499 gm +(2.00)show +424 82 gm +0 gr +424 82 lin +424 80 gm +424 80 lin +424 83 gm +424 131 lin +424 134 gm +424 134 lin +424 132 gm +424 132 lin +424 135 gm +424 182 lin +424 185 gm +424 185 lin +424 183 gm +424 183 lin +424 186 gm +424 253 lin +424 256 gm +424 256 lin +424 254 gm +424 254 lin +424 257 gm +424 290 lin +424 293 gm +424 293 lin +424 291 gm +424 291 lin +424 294 gm +424 327 lin +424 330 gm +424 330 lin +424 328 gm +424 328 lin +424 331 gm +424 364 lin +424 367 gm +424 367 lin +424 365 gm +424 365 lin +424 368 gm +424 400 lin +424 403 gm +424 403 lin +424 401 gm +424 401 lin +424 404 gm +424 487 lin +424 490 gm +424 490 lin +424 488 gm +424 488 lin +424 491 gm +424 524 lin +424 527 gm +424 527 lin +424 525 gm +424 525 lin +425 80 gm +438 80 lin +425 82 gm +438 82 lin +425 132 gm +438 132 lin +425 134 gm +438 134 lin +425 183 gm +438 183 lin +425 185 gm +438 185 lin +425 254 gm +438 254 lin +425 256 gm +438 256 lin +425 291 gm +438 291 lin +425 293 gm +438 293 lin +425 328 gm +438 328 lin +425 330 gm +438 330 lin +425 365 gm +438 365 lin +425 367 gm +438 367 lin +425 401 gm +438 401 lin +425 403 gm +438 403 lin +425 488 gm +438 488 lin +425 490 gm +438 490 lin +425 525 gm +438 525 lin +425 527 gm +438 527 lin +451 105 gm +F 1 setTxMode +(5)show +451 149 gm +(3173)show +451 203 gm +(6330053)show +451 265 gm +(2.62)show +451 302 gm +(0.52)show +451 339 gm +(0.66)show +451 376 gm +(0.18)show +451 436 gm +(1995)show +451 499 gm +(3.10)show +439 82 gm +0 gr +439 82 lin +439 80 gm +439 80 lin +439 83 gm +439 131 lin +439 134 gm +439 134 lin +439 132 gm +439 132 lin +439 135 gm +439 182 lin +439 185 gm +439 185 lin +439 183 gm +439 183 lin +439 186 gm +439 253 lin +439 256 gm +439 256 lin +439 254 gm +439 254 lin +439 257 gm +439 290 lin +439 293 gm +439 293 lin +439 291 gm +439 291 lin +439 294 gm +439 327 lin +439 330 gm +439 330 lin +439 328 gm +439 328 lin +439 331 gm +439 364 lin +439 367 gm +439 367 lin +439 365 gm +439 365 lin +439 368 gm +439 400 lin +439 403 gm +439 403 lin +439 401 gm +439 401 lin +439 404 gm +439 487 lin +439 490 gm +439 490 lin +439 488 gm +439 488 lin +439 491 gm +439 524 lin +439 527 gm +439 527 lin +439 525 gm +439 525 lin +440 80 gm +453 80 lin +440 82 gm +453 82 lin +440 132 gm +453 132 lin +440 134 gm +453 134 lin +440 183 gm +453 183 lin +440 185 gm +453 185 lin +440 254 gm +453 254 lin +440 256 gm +453 256 lin +440 291 gm +453 291 lin +440 293 gm +453 293 lin +440 328 gm +453 328 lin +440 330 gm +453 330 lin +440 365 gm +453 365 lin +440 367 gm +453 367 lin +440 401 gm +453 401 lin +440 403 gm +453 403 lin +440 488 gm +453 488 lin +440 490 gm +453 490 lin +440 525 gm +453 525 lin +440 527 gm +453 527 lin +466 105 gm +F 1 setTxMode +(7)show +466 149 gm +(2779)show +466 203 gm +(6867688)show +466 265 gm +(2.99)show +466 302 gm +(0.43)show +466 339 gm +(0.61)show +466 376 gm +(0.28)show +466 436 gm +(2471)show +466 499 gm +(3.84)show +454 82 gm +0 gr +454 82 lin +454 80 gm +454 80 lin +454 83 gm +454 131 lin +454 134 gm +454 134 lin +454 132 gm +454 132 lin +454 135 gm +454 182 lin +454 185 gm +454 185 lin +454 183 gm +454 183 lin +454 186 gm +454 253 lin +454 256 gm +454 256 lin +454 254 gm +454 254 lin +454 257 gm +454 290 lin +454 293 gm +454 293 lin +454 291 gm +454 291 lin +454 294 gm +454 327 lin +454 330 gm +454 330 lin +454 328 gm +454 328 lin +454 331 gm +454 364 lin +454 367 gm +454 367 lin +454 365 gm +454 365 lin +454 368 gm +454 400 lin +454 403 gm +454 403 lin +454 401 gm +454 401 lin +454 404 gm +454 487 lin +454 490 gm +454 490 lin +454 488 gm +454 488 lin +454 491 gm +454 524 lin +454 527 gm +454 527 lin +454 525 gm +454 525 lin +455 80 gm +468 80 lin +455 82 gm +468 82 lin +455 132 gm +468 132 lin +455 134 gm +468 134 lin +455 183 gm +468 183 lin +455 185 gm +468 185 lin +455 254 gm +468 254 lin +455 256 gm +468 256 lin +455 291 gm +468 291 lin +455 293 gm +468 293 lin +455 328 gm +468 328 lin +455 330 gm +468 330 lin +455 365 gm +468 365 lin +455 367 gm +468 367 lin +455 401 gm +468 401 lin +455 403 gm +468 403 lin +455 488 gm +468 488 lin +455 490 gm +468 490 lin +455 525 gm +468 525 lin +455 527 gm +468 527 lin +481 105 gm +F 1 setTxMode +(9)show +481 149 gm +(2517)show +481 203 gm +(7310806)show +481 265 gm +(3.30)show +481 302 gm +(0.37)show +481 339 gm +(0.57)show +481 376 gm +(0.37)show +481 436 gm +(2905)show +481 499 gm +(4.51)show +469 82 gm +0 gr +469 82 lin +469 80 gm +469 80 lin +469 83 gm +469 131 lin +469 134 gm +469 134 lin +469 132 gm +469 132 lin +469 135 gm +469 182 lin +469 185 gm +469 185 lin +469 183 gm +469 183 lin +469 186 gm +469 253 lin +469 256 gm +469 256 lin +469 254 gm +469 254 lin +469 257 gm +469 290 lin +469 293 gm +469 293 lin +469 291 gm +469 291 lin +469 294 gm +469 327 lin +469 330 gm +469 330 lin +469 328 gm +469 328 lin +469 331 gm +469 364 lin +469 367 gm +469 367 lin +469 365 gm +469 365 lin +469 368 gm +469 400 lin +469 403 gm +469 403 lin +469 401 gm +469 401 lin +469 404 gm +469 487 lin +469 490 gm +469 490 lin +469 488 gm +469 488 lin +469 491 gm +469 524 lin +469 527 gm +469 527 lin +469 525 gm +469 525 lin +470 80 gm +483 80 lin +470 82 gm +483 82 lin +470 132 gm +483 132 lin +470 134 gm +483 134 lin +470 183 gm +483 183 lin +470 185 gm +483 185 lin +470 254 gm +483 254 lin +470 256 gm +483 256 lin +470 291 gm +483 291 lin +470 293 gm +483 293 lin +470 328 gm +483 328 lin +470 330 gm +483 330 lin +470 365 gm +483 365 lin +470 367 gm +483 367 lin +470 401 gm +483 401 lin +470 403 gm +483 403 lin +470 488 gm +483 488 lin +470 490 gm +483 490 lin +470 525 gm +483 525 lin +470 527 gm +483 527 lin +496 103 gm +F 1 setTxMode +(11)show +496 149 gm +(2310)show +496 203 gm +(7990369)show +496 265 gm +(3.59)show +496 302 gm +(0.33)show +496 339 gm +(0.54)show +496 376 gm +(0.49)show +496 436 gm +(3459)show +496 499 gm +(5.37)show +484 82 gm +0 gr +484 82 lin +484 80 gm +484 80 lin +484 83 gm +484 131 lin +484 134 gm +484 134 lin +484 132 gm +484 132 lin +484 135 gm +484 182 lin +484 185 gm +484 185 lin +484 183 gm +484 183 lin +484 186 gm +484 253 lin +484 256 gm +484 256 lin +484 254 gm +484 254 lin +484 257 gm +484 290 lin +484 293 gm +484 293 lin +484 291 gm +484 291 lin +484 294 gm +484 327 lin +484 330 gm +484 330 lin +484 328 gm +484 328 lin +484 331 gm +484 364 lin +484 367 gm +484 367 lin +484 365 gm +484 365 lin +484 368 gm +484 400 lin +484 403 gm +484 403 lin +484 401 gm +484 401 lin +484 404 gm +484 487 lin +484 490 gm +484 490 lin +484 488 gm +484 488 lin +484 491 gm +484 524 lin +484 527 gm +484 527 lin +484 525 gm +484 525 lin +485 80 gm +498 80 lin +485 82 gm +498 82 lin +501 80 gm +501 82 lin +499 80 gm +501 80 lin +499 82 gm +499 82 lin +499 82 lin +499 83 gm +499 131 lin +501 83 gm +501 131 lin +485 132 gm +498 132 lin +485 134 gm +498 134 lin +499 132 gm +499 134 lin +501 132 gm +501 134 lin +499 135 gm +499 182 lin +501 135 gm +501 182 lin +485 183 gm +498 183 lin +485 185 gm +498 185 lin +499 183 gm +499 185 lin +501 183 gm +501 185 lin +499 186 gm +499 253 lin +501 186 gm +501 253 lin +485 254 gm +498 254 lin +485 256 gm +498 256 lin +499 254 gm +499 256 lin +501 254 gm +501 256 lin +499 257 gm +499 290 lin +501 257 gm +501 290 lin +485 291 gm +498 291 lin +485 293 gm +498 293 lin +499 291 gm +499 293 lin +501 291 gm +501 293 lin +499 294 gm +499 327 lin +501 294 gm +501 327 lin +485 328 gm +498 328 lin +485 330 gm +498 330 lin +499 328 gm +499 330 lin +501 328 gm +501 330 lin +499 331 gm +499 364 lin +501 331 gm +501 364 lin +485 365 gm +498 365 lin +485 367 gm +498 367 lin +499 365 gm +499 367 lin +501 365 gm +501 367 lin +499 368 gm +499 400 lin +501 368 gm +501 400 lin +485 401 gm +498 401 lin +485 403 gm +498 403 lin +499 401 gm +499 403 lin +501 401 gm +501 403 lin +499 404 gm +499 487 lin +501 404 gm +501 487 lin +485 488 gm +498 488 lin +485 490 gm +498 490 lin +499 488 gm +499 490 lin +501 488 gm +501 490 lin +499 491 gm +499 524 lin +501 491 gm +501 524 lin +485 525 gm +498 525 lin +485 527 gm +498 527 lin +501 525 gm +501 527 lin +499 527 gm +501 527 lin +499 525 gm +499 525 lin +499 525 lin +513 79 gm +F 1 setTxMode +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(Fig)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(.)show +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(8)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +( )show +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(Static splitting, master does part of the search)show +530 101 gm +0 fs +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.02517 0. 32 0.00251 0.(We should allocate a worker on the master processor; unfortunately, Fig.8 shows that this is not)awidthshow +541 101 gm +0.28411 0. 32 0.02841 0.(a good idea, because a master process should be able to generate new tasks rapidly when other)awidthshow +552 101 gm +1.02462 0. 32 0.10246 0.(processors become idle: when a processor is shared by the master and a worker the answer)awidthshow +563 101 gm +(times for master become too slow.)show +593 96 gm +1 fs +10 fz +bu fc +2 F /|______Times-Bold fnt +bn +(Procs)show +593 145 gm +(T\312\(sec\))show +593 203 gm +(N\312\(nodi\))show +593 271 gm +(S)show +593 308 gm +(E)show +593 338 gm +(Fpm)show +593 378 gm +(SO)show +593 419 gm +(SS\312\(nodi/sec\))show +593 502 gm +(Sss)show +579 80 gm +0 gr +579 82 lin +579 80 gm +581 80 lin +581 82 gm +581 82 lin +581 82 lin +579 83 gm +579 131 lin +581 83 gm +581 131 lin +579 132 gm +579 134 lin +581 132 gm +581 134 lin +579 135 gm +579 182 lin +581 135 gm +581 182 lin +579 183 gm +579 185 lin +581 183 gm +581 185 lin +579 186 gm +579 253 lin +581 186 gm +581 253 lin +579 254 gm +579 256 lin +581 254 gm +581 256 lin +579 257 gm +579 290 lin +581 257 gm +581 290 lin +579 291 gm +579 293 lin +581 291 gm +581 293 lin +579 294 gm +579 327 lin +581 294 gm +581 327 lin +579 328 gm +579 330 lin +581 328 gm +581 330 lin +579 331 gm +579 364 lin +581 331 gm +581 364 lin +579 365 gm +579 367 lin +581 365 gm +581 367 lin +579 368 gm +579 400 lin +581 368 gm +581 400 lin +579 401 gm +579 403 lin +581 401 gm +581 403 lin +579 404 gm +579 487 lin +581 404 gm +581 487 lin +579 488 gm +579 490 lin +581 488 gm +581 490 lin +579 491 gm +579 524 lin +581 491 gm +581 524 lin +579 525 gm +579 527 lin +581 527 lin +581 525 gm +581 525 lin +581 525 lin +582 80 gm +595 80 lin +582 82 gm +595 82 lin +582 132 gm +595 132 lin +582 134 gm +595 134 lin +582 183 gm +595 183 lin +582 185 gm +595 185 lin +582 254 gm +595 254 lin +582 256 gm +595 256 lin +582 291 gm +595 291 lin +582 293 gm +595 293 lin +582 328 gm +595 328 lin +582 330 gm +595 330 lin +582 365 gm +595 365 lin +582 367 gm +595 367 lin +582 401 gm +595 401 lin +582 403 gm +595 403 lin +582 488 gm +595 488 lin +582 490 gm +595 490 lin +582 525 gm +595 525 lin +582 527 gm +595 527 lin +610 105 gm +F 1 setTxMode +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(1)show +610 149 gm +(8301)show +610 203 gm +(5347545)show +610 269 gm +(---)show +610 306 gm +(---)show +610 343 gm +(---)show +610 380 gm +(---)show +610 439 gm +(644)show +610 503 gm +(---)show +596 82 gm +0 gr +598 82 lin +596 80 gm +598 80 lin +596 83 gm +596 131 lin +598 83 gm +598 131 lin +596 134 gm +596 134 lin +598 132 gm +598 132 lin +596 132 gm +596 132 lin +598 134 gm +598 134 lin +596 135 gm +596 182 lin +598 135 gm +598 182 lin +596 185 gm +596 185 lin +598 183 gm +598 183 lin +596 183 gm +596 183 lin +598 185 gm +598 185 lin +596 186 gm +596 253 lin +598 186 gm +598 253 lin +596 256 gm +596 256 lin +598 254 gm +598 254 lin +596 254 gm +596 254 lin +598 256 gm +598 256 lin +596 257 gm +596 290 lin +598 257 gm +598 290 lin +596 293 gm +596 293 lin +598 291 gm +598 291 lin +596 291 gm +596 291 lin +598 293 gm +598 293 lin +596 294 gm +596 327 lin +598 294 gm +598 327 lin +596 330 gm +596 330 lin +598 328 gm +598 328 lin +596 328 gm +596 328 lin +598 330 gm +598 330 lin +596 331 gm +596 364 lin +598 331 gm +598 364 lin +596 367 gm +596 367 lin +598 365 gm +598 365 lin +596 365 gm +596 365 lin +598 367 gm +598 367 lin +596 368 gm +596 400 lin +598 368 gm +598 400 lin +596 403 gm +596 403 lin +598 401 gm +598 401 lin +596 401 gm +596 401 lin +598 403 gm +598 403 lin +596 404 gm +596 487 lin +598 404 gm +598 487 lin +596 490 gm +596 490 lin +598 488 gm +598 488 lin +596 488 gm +596 488 lin +598 490 gm +598 490 lin +596 491 gm +596 524 lin +598 491 gm +598 524 lin +596 527 gm +598 527 lin +596 525 gm +598 525 lin +599 80 gm +612 80 lin +599 82 gm +612 82 lin +599 132 gm +612 132 lin +599 134 gm +612 134 lin +599 183 gm +612 183 lin +599 185 gm +612 185 lin +599 254 gm +612 254 lin +599 256 gm +612 256 lin +599 291 gm +612 291 lin +599 293 gm +612 293 lin +599 328 gm +612 328 lin +599 330 gm +612 330 lin +599 365 gm +612 365 lin +599 367 gm +612 367 lin +599 401 gm +612 401 lin +599 403 gm +612 403 lin +599 488 gm +612 488 lin +599 490 gm +612 490 lin +599 525 gm +612 525 lin +599 527 gm +612 527 lin +625 105 gm +F 1 setTxMode +(3)show +625 149 gm +(3298)show +625 203 gm +(6156027)show +625 265 gm +(2.52)show +625 302 gm +(0.84)show +625 339 gm +(0.96)show +625 376 gm +(0.15)show +625 436 gm +(1867)show +625 499 gm +(2.90)show +613 82 gm +0 gr +613 82 lin +613 80 gm +613 80 lin +613 83 gm +613 131 lin +613 134 gm +613 134 lin +613 132 gm +613 132 lin +613 135 gm +613 182 lin +613 185 gm +613 185 lin +613 183 gm +613 183 lin +613 186 gm +613 253 lin +613 256 gm +613 256 lin +613 254 gm +613 254 lin +613 257 gm +613 290 lin +613 293 gm +613 293 lin +613 291 gm +613 291 lin +613 294 gm +613 327 lin +613 330 gm +613 330 lin +613 328 gm +613 328 lin +613 331 gm +613 364 lin +613 367 gm +613 367 lin +613 365 gm +613 365 lin +613 368 gm +613 400 lin +613 403 gm +613 403 lin +613 401 gm +613 401 lin +613 404 gm +613 487 lin +613 490 gm +613 490 lin +613 488 gm +613 488 lin +613 491 gm +613 524 lin +613 527 gm +613 527 lin +613 525 gm +613 525 lin +614 80 gm +627 80 lin +614 82 gm +627 82 lin +614 132 gm +627 132 lin +614 134 gm +627 134 lin +614 183 gm +627 183 lin +614 185 gm +627 185 lin +614 254 gm +627 254 lin +614 256 gm +627 256 lin +614 291 gm +627 291 lin +614 293 gm +627 293 lin +614 328 gm +627 328 lin +614 330 gm +627 330 lin +614 365 gm +627 365 lin +614 367 gm +627 367 lin +614 401 gm +627 401 lin +614 403 gm +627 403 lin +614 488 gm +627 488 lin +614 490 gm +627 490 lin +614 525 gm +627 525 lin +614 527 gm +627 527 lin +640 105 gm +F 1 setTxMode +(5)show +640 149 gm +(2382)show +640 203 gm +(6945194)show +640 265 gm +(3.48)show +640 302 gm +(0.70)show +640 339 gm +(0.91)show +640 376 gm +(0.30)show +640 436 gm +(2916)show +640 499 gm +(4.53)show +628 82 gm +0 gr +628 82 lin +628 80 gm +628 80 lin +628 83 gm +628 131 lin +628 134 gm +628 134 lin +628 132 gm +628 132 lin +628 135 gm +628 182 lin +628 185 gm +628 185 lin +628 183 gm +628 183 lin +628 186 gm +628 253 lin +628 256 gm +628 256 lin +628 254 gm +628 254 lin +628 257 gm +628 290 lin +628 293 gm +628 293 lin +628 291 gm +628 291 lin +628 294 gm +628 327 lin +628 330 gm +628 330 lin +628 328 gm +628 328 lin +628 331 gm +628 364 lin +628 367 gm +628 367 lin +628 365 gm +628 365 lin +628 368 gm +628 400 lin +628 403 gm +628 403 lin +628 401 gm +628 401 lin +628 404 gm +628 487 lin +628 490 gm +628 490 lin +628 488 gm +628 488 lin +628 491 gm +628 524 lin +628 527 gm +628 527 lin +628 525 gm +628 525 lin +629 80 gm +642 80 lin +629 82 gm +642 82 lin +629 132 gm +642 132 lin +629 134 gm +642 134 lin +629 183 gm +642 183 lin +629 185 gm +642 185 lin +629 254 gm +642 254 lin +629 256 gm +642 256 lin +629 291 gm +642 291 lin +629 293 gm +642 293 lin +629 328 gm +642 328 lin +629 330 gm +642 330 lin +629 365 gm +642 365 lin +629 367 gm +642 367 lin +629 401 gm +642 401 lin +629 403 gm +642 403 lin +629 488 gm +642 488 lin +629 490 gm +642 490 lin +629 525 gm +642 525 lin +629 527 gm +642 527 lin +655 105 gm +F 1 setTxMode +(7)show +655 149 gm +(2064)show +655 203 gm +(7524137)show +655 265 gm +(4.02)show +655 302 gm +(0.57)show +655 339 gm +(0.81)show +655 376 gm +(0.41)show +655 436 gm +(3645)show +655 499 gm +(5.66)show +643 82 gm +0 gr +643 82 lin +643 80 gm +643 80 lin +643 83 gm +643 131 lin +643 134 gm +643 134 lin +643 132 gm +643 132 lin +643 135 gm +643 182 lin +643 185 gm +643 185 lin +643 183 gm +643 183 lin +643 186 gm +643 253 lin +643 256 gm +643 256 lin +643 254 gm +643 254 lin +643 257 gm +643 290 lin +643 293 gm +643 293 lin +643 291 gm +643 291 lin +643 294 gm +643 327 lin +643 330 gm +643 330 lin +643 328 gm +643 328 lin +643 331 gm +643 364 lin +643 367 gm +643 367 lin +643 365 gm +643 365 lin +643 368 gm +643 400 lin +643 403 gm +643 403 lin +643 401 gm +643 401 lin +643 404 gm +643 487 lin +643 490 gm +643 490 lin +643 488 gm +643 488 lin +643 491 gm +643 524 lin +643 527 gm +643 527 lin +643 525 gm +643 525 lin +644 80 gm +657 80 lin +644 82 gm +657 82 lin +644 132 gm +657 132 lin +644 134 gm +657 134 lin +644 183 gm +657 183 lin +644 185 gm +657 185 lin +644 254 gm +657 254 lin +644 256 gm +657 256 lin +644 291 gm +657 291 lin +644 293 gm +657 293 lin +644 328 gm +657 328 lin +644 330 gm +657 330 lin +644 365 gm +657 365 lin +644 367 gm +657 367 lin +644 401 gm +657 401 lin +644 403 gm +657 403 lin +644 488 gm +657 488 lin +644 490 gm +657 490 lin +644 525 gm +657 525 lin +644 527 gm +657 527 lin +670 105 gm +F 1 setTxMode +(9)show +670 149 gm +(1798)show +670 203 gm +(8186074)show +670 265 gm +(4.62)show +670 302 gm +(0.51)show +670 339 gm +(0.77)show +670 376 gm +(0.53)show +670 436 gm +(4553)show +670 499 gm +(7.07)show +658 82 gm +0 gr +658 82 lin +658 80 gm +658 80 lin +658 83 gm +658 131 lin +658 134 gm +658 134 lin +658 132 gm +658 132 lin +658 135 gm +658 182 lin +658 185 gm +658 185 lin +658 183 gm +658 183 lin +658 186 gm +658 253 lin +658 256 gm +658 256 lin +658 254 gm +658 254 lin +658 257 gm +658 290 lin +658 293 gm +658 293 lin +658 291 gm +658 291 lin +658 294 gm +658 327 lin +658 330 gm +658 330 lin +658 328 gm +658 328 lin +658 331 gm +658 364 lin +658 367 gm +658 367 lin +658 365 gm +658 365 lin +658 368 gm +658 400 lin +658 403 gm +658 403 lin +658 401 gm +658 401 lin +658 404 gm +658 487 lin +658 490 gm +658 490 lin +658 488 gm +658 488 lin +658 491 gm +658 524 lin +658 527 gm +658 527 lin +658 525 gm +658 525 lin +659 80 gm +672 80 lin +659 82 gm +672 82 lin +659 132 gm +672 132 lin +659 134 gm +672 134 lin +659 183 gm +672 183 lin +659 185 gm +672 185 lin +659 254 gm +672 254 lin +659 256 gm +672 256 lin +659 291 gm +672 291 lin +659 293 gm +672 293 lin +659 328 gm +672 328 lin +659 330 gm +672 330 lin +659 365 gm +672 365 lin +659 367 gm +672 367 lin +659 401 gm +672 401 lin +659 403 gm +672 403 lin +659 488 gm +672 488 lin +659 490 gm +672 490 lin +659 525 gm +672 525 lin +659 527 gm +672 527 lin +685 103 gm +F 1 setTxMode +(11)show +685 149 gm +(1751)show +685 203 gm +(8746752)show +685 265 gm +(4.74)show +685 302 gm +(0.43)show +685 339 gm +(0.71)show +685 376 gm +(0.64)show +685 436 gm +(4995)show +685 499 gm +(7.75)show +673 82 gm +0 gr +673 82 lin +673 80 gm +673 80 lin +673 83 gm +673 131 lin +673 134 gm +673 134 lin +673 132 gm +673 132 lin +673 135 gm +673 182 lin +673 185 gm +673 185 lin +673 183 gm +673 183 lin +673 186 gm +673 253 lin +673 256 gm +673 256 lin +673 254 gm +673 254 lin +673 257 gm +673 290 lin +673 293 gm +673 293 lin +673 291 gm +673 291 lin +673 294 gm +673 327 lin +673 330 gm +673 330 lin +673 328 gm +673 328 lin +673 331 gm +673 364 lin +673 367 gm +673 367 lin +673 365 gm +673 365 lin +673 368 gm +673 400 lin +673 403 gm +673 403 lin +673 401 gm +673 401 lin +673 404 gm +673 487 lin +673 490 gm +673 490 lin +673 488 gm +673 488 lin +673 491 gm +673 524 lin +673 527 gm +673 527 lin +673 525 gm +673 525 lin +674 80 gm +687 80 lin +674 82 gm +687 82 lin +690 80 gm +690 82 lin +688 80 gm +690 80 lin +688 82 gm +688 82 lin +688 82 lin +688 83 gm +688 131 lin +690 83 gm +690 131 lin +674 132 gm +687 132 lin +674 134 gm +687 134 lin +688 132 gm +688 134 lin +690 132 gm +690 134 lin +688 135 gm +688 182 lin +690 135 gm +690 182 lin +674 183 gm +687 183 lin +674 185 gm +687 185 lin +688 183 gm +688 185 lin +690 183 gm +690 185 lin +688 186 gm +688 253 lin +690 186 gm +690 253 lin +674 254 gm +687 254 lin +674 256 gm +687 256 lin +688 254 gm +688 256 lin +690 254 gm +690 256 lin +688 257 gm +688 290 lin +690 257 gm +690 290 lin +674 291 gm +687 291 lin +674 293 gm +687 293 lin +688 291 gm +688 293 lin +690 291 gm +690 293 lin +688 294 gm +688 327 lin +690 294 gm +690 327 lin +674 328 gm +687 328 lin +674 330 gm +687 330 lin +688 328 gm +688 330 lin +690 328 gm +690 330 lin +688 331 gm +688 364 lin +690 331 gm +690 364 lin +674 365 gm +687 365 lin +674 367 gm +687 367 lin +688 365 gm +688 367 lin +690 365 gm +690 367 lin +688 368 gm +688 400 lin +690 368 gm +690 400 lin +674 401 gm +687 401 lin +674 403 gm +687 403 lin +688 401 gm +688 403 lin +690 401 gm +690 403 lin +688 404 gm +688 487 lin +690 404 gm +690 487 lin +674 488 gm +687 488 lin +674 490 gm +687 490 lin +688 488 gm +688 490 lin +690 488 gm +690 490 lin +688 491 gm +688 524 lin +690 491 gm +690 524 lin +674 525 gm +687 525 lin +674 527 gm +687 527 lin +690 525 gm +690 527 lin +688 527 gm +690 527 lin +688 525 gm +688 525 lin +688 525 lin +702 79 gm +F 1 setTxMode +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(Fig.9)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +( )show +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(Static splitting, no master \(democratic cooperation\))show +718 79 gm +0 fs +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.72952 0. 32 0.07295 0.(The core algorithm can be rewritten to get a more efficient program: there is no need to maintain)awidthshow +729 79 gm +0.48248 0. 32 0.04824 0.(alive the master if the workers are able to handle the results. We call this variant of master-worker)awidthshow +740 79 gm +-0.00064 0.(\322democratic coperation\323. Data shown in Fig.9 show an improvement with respect to the pure master-)ashow +751 79 gm +0.28015 0. 32 0.02801 0.(worker paradigm. However, such data also show that search overhead increased, because a\) there is)awidthshow +F T cp +%%Page: ? 11 +op +30 28 811 566 fr +0 0 xl +1 1 pen +0 0 gm +(nc 0 0 0 0 6 rc)kp +91 336 gm +(nc 30 28 811 566 6 rc)kp +F 1 setTxMode +0 fs +10 fz +bu fc +2 F /|______Helvetica fnt +bn +(A Comparison of Parallel Search Algorithms)show +773 79 gm +(UBLCS-94-14)show +773 519 gm +(9)show +118 79 gm +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.70068 0. 32 0.07006 0.(one more process cooperating in the search, and b\) each worker starts executing a new task more)awidthshow +129 79 gm +0.61386 0. 32 0.06138 0.(rapidly, so it is less likely that it can use data from other explorers that finish while it is idle. The)awidthshow +140 79 gm +0.40039 0. 32 0.04003 0.(most important consideration is that the algorithms get similar results as we increase processors. In)awidthshow +151 79 gm +0.63476 0. 32 0.06347 0.(fact, let P be the total number of processors and E\(P\) number of exploring processors; let C\(P\)be:)awidthshow +0 0 pen +185 223 gm +(nc 155 79 185 223 6 rc)kp +0 gr +185 223 lin +psb +currentpoint +pse +155 79 gm +155 79 lin +psb +30 dict begin +currentpoint 3 -1 roll sub neg 3 1 roll sub 4608 div 960 3 -1 roll exch div scale currentpoint translate 64 44 translate +-12 500 moveto +/fs 0 def +/sf {exch dup /fs exch def dup neg matrix scale makefont setfont} def +/f1 {findfont dup /cf exch def sf} def +/ns {cf sf} def +384 /Times-Roman f1 +(C) show +246 500 moveto +(\() show +390 500 moveto +(P) show +619 500 moveto +(\)) show +829 500 moveto +(=) show +1174 261 moveto +(E) show +1408 261 moveto +224 ns +(master) show +2091 261 moveto +(-) show +2247 261 moveto +(worker) show +2894 261 moveto +384 ns +(\() show +3038 261 moveto +(P) show +3267 261 moveto +(\)) show +1418 793 moveto +(E) show +1652 793 moveto +224 ns +(democratic) show +2651 793 moveto +384 ns +(\() show +2795 793 moveto +(P) show +3024 793 moveto +(\)) show +/thick 0 def +/th { dup setlinewidth /thick exch def } def +16 th 1146 401 moveto 2262 0 rlineto stroke +3509 500 moveto +(=) show +3854 261 moveto +(P) show +4142 261 moveto +(-) show +4306 261 moveto +(1) show +4051 793 moveto +(P) show +3826 401 moveto 663 0 rlineto stroke +end +pse +1 1 pen +172 223 gm +(nc 30 28 811 566 6 rc)kp +F 1 setTxMode +2.31613 0. 32 0.23161 0.(. The ratio among production factors is proportional to C\(P\),)awidthshow +193 79 gm +4.52468 0. 32 0.45246 0.(whereas the ratio among value of search overhead is inversely proportional; since)awidthshow +0 0 pen +227 265 gm +(nc 197 79 227 265 6 rc)kp +0 gr +227 265 lin +psb +currentpoint +pse +197 79 gm +197 79 lin +psb +30 dict begin +currentpoint 3 -1 roll sub neg 3 1 roll sub 5952 div 960 3 -1 roll exch div scale currentpoint translate 64 44 translate +12 500 moveto +/fs 0 def +/sf {exch dup /fs exch def dup neg matrix scale makefont setfont} def +/f1 {findfont dup /cf exch def sf} def +/ns {cf sf} def +384 /Times-Roman f1 +(lim) show +16 724 moveto +224 /Times-Italic f1 +(p) show +142 724 moveto +224 /Symbol f1 +(\256) show +383 724 moveto +(\245) show +909 500 moveto +384 /Times-Italic f1 +(C) show +1173 500 moveto +384 /Times-Roman f1 +(\() show +1327 500 moveto +384 /Times-Italic f1 +(P) show +1571 500 moveto +384 /Times-Roman f1 +(\)) show +1788 500 moveto +384 /Symbol f1 +(=) show +2064 500 moveto +384 /Times-Roman f1 +(1) show +2594 500 moveto +384 /Times-Italic f1 +(and) show +3574 500 moveto +384 /Times-Roman f1 +(lim) show +3578 724 moveto +224 /Times-Italic f1 +(p) show +3704 724 moveto +224 /Symbol f1 +(\256) show +3945 724 moveto +(\245) show +4798 261 moveto +384 /Times-Roman f1 +(1) show +4503 793 moveto +384 /Times-Italic f1 +(C) show +4767 793 moveto +384 /Times-Roman f1 +(\() show +4921 793 moveto +384 /Times-Italic f1 +(P) show +5165 793 moveto +384 /Times-Roman f1 +(\)) show +/thick 0 def +/th { dup setlinewidth /thick exch def } def +16 th 4483 401 moveto 823 0 rlineto stroke +5414 500 moveto +384 /Symbol f1 +(=) show +5690 500 moveto +384 /Times-Roman f1 +(1) show +end +pse +1 1 pen +214 265 gm +(nc 30 28 811 566 6 rc)kp +F 1 setTxMode +( the two algorithms are asyntotically equivalent.)show +254 79 gm +1 fs +12 fz +bu fc +2 F /|______Times-Bold fnt +bn +(4.1 Ordered game trees: iterative deepening and top level sorting)show +267 79 gm +0 fs +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.68984 0. 32 0.06898 0.(In the algorithms presented above there is no sorting of nodes; however, it is well known that the)awidthshow +282 79 gm +2.09381 0. 32 0.20938 0.(execution of )awidthshow +282 143 gm +bu fc +2 F /|______Symbol fnt +bn +0.69818 0.(ab)ashow +bu fc +2 F /|______Times-Roman fnt +bn +1.98272 0. 32 0.19827 0.( algorithm improves if game tree nodes are ordered [MarCam82]. We have)awidthshow +294 79 gm +0.63858 0. 32 0.06385 0.(implemented such a sorting, and the resulting search algorithm has been tested with the following)awidthshow +305 79 gm +0.10040 0. 32 0.01004 0.(parameters for iterative deepening: INIT=2-plies, MAX=5-plies; thresold for parallel search: 3)awidthshow +305 496 gm +(-plies.)show +320 79 gm +0.18295 0. 32 0.01829 0.(The sequential algorithm we used for comparison is )awidthshow +bu fc +2 F /|______Symbol fnt +bn +0.06732 0.(ab)ashow +bu fc +2 F /|______Times-Roman fnt +bn +0.18188 0. 32 0.01818 0.( with iterative deepening and same INIT and)awidthshow +332 79 gm +(MAX.)show +361 96 gm +1 fs +10 fz +bu fc +2 F /|______Times-Bold fnt +bn +(Procs)show +361 145 gm +(T\312\(sec\))show +361 200 gm +(N\312\(nodes\))show +361 271 gm +(S)show +361 308 gm +(E)show +361 338 gm +(Fpm)show +361 378 gm +(SO)show +361 418 gm +(SS )show +9 fz +bu fc +2 F /|______Times-Bold fnt +bn +(\(nodes/sec\))show +361 502 gm +10 fz +bu fc +2 F /|______Times-Bold fnt +bn +(Sss)show +347 80 gm +0 gr +347 82 lin +347 80 gm +349 80 lin +349 82 gm +349 82 lin +349 82 lin +347 83 gm +347 131 lin +349 83 gm +349 131 lin +347 132 gm +347 134 lin +349 132 gm +349 134 lin +347 135 gm +347 182 lin +349 135 gm +349 182 lin +347 183 gm +347 185 lin +349 183 gm +349 185 lin +347 186 gm +347 253 lin +349 186 gm +349 253 lin +347 254 gm +347 256 lin +349 254 gm +349 256 lin +347 257 gm +347 290 lin +349 257 gm +349 290 lin +347 291 gm +347 293 lin +349 291 gm +349 293 lin +347 294 gm +347 327 lin +349 294 gm +349 327 lin +347 328 gm +347 330 lin +349 328 gm +349 330 lin +347 331 gm +347 364 lin +349 331 gm +349 364 lin +347 365 gm +347 367 lin +349 365 gm +349 367 lin +347 368 gm +347 400 lin +349 368 gm +349 400 lin +347 401 gm +347 403 lin +349 401 gm +349 403 lin +347 404 gm +347 487 lin +349 404 gm +349 487 lin +347 488 gm +347 490 lin +349 488 gm +349 490 lin +347 491 gm +347 524 lin +349 491 gm +349 524 lin +347 525 gm +347 527 lin +349 527 lin +349 525 gm +349 525 lin +349 525 lin +350 80 gm +363 80 lin +350 82 gm +363 82 lin +350 132 gm +363 132 lin +350 134 gm +363 134 lin +350 183 gm +363 183 lin +350 185 gm +363 185 lin +350 254 gm +363 254 lin +350 256 gm +363 256 lin +350 291 gm +363 291 lin +350 293 gm +363 293 lin +350 328 gm +363 328 lin +350 330 gm +363 330 lin +350 365 gm +363 365 lin +350 367 gm +363 367 lin +350 401 gm +363 401 lin +350 403 gm +363 403 lin +350 488 gm +363 488 lin +350 490 gm +363 490 lin +350 525 gm +363 525 lin +350 527 gm +363 527 lin +378 105 gm +F 1 setTxMode +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(1)show +378 149 gm +(6740)show +378 203 gm +(4529971)show +378 269 gm +(---)show +378 306 gm +(---)show +378 343 gm +(---)show +378 380 gm +(---)show +378 439 gm +(672)show +378 503 gm +(---)show +364 82 gm +0 gr +366 82 lin +364 80 gm +366 80 lin +364 83 gm +364 131 lin +366 83 gm +366 131 lin +364 134 gm +364 134 lin +366 132 gm +366 132 lin +364 132 gm +364 132 lin +366 134 gm +366 134 lin +364 135 gm +364 182 lin +366 135 gm +366 182 lin +364 185 gm +364 185 lin +366 183 gm +366 183 lin +364 183 gm +364 183 lin +366 185 gm +366 185 lin +364 186 gm +364 253 lin +366 186 gm +366 253 lin +364 256 gm +364 256 lin +366 254 gm +366 254 lin +364 254 gm +364 254 lin +366 256 gm +366 256 lin +364 257 gm +364 290 lin +366 257 gm +366 290 lin +364 293 gm +364 293 lin +366 291 gm +366 291 lin +364 291 gm +364 291 lin +366 293 gm +366 293 lin +364 294 gm +364 327 lin +366 294 gm +366 327 lin +364 330 gm +364 330 lin +366 328 gm +366 328 lin +364 328 gm +364 328 lin +366 330 gm +366 330 lin +364 331 gm +364 364 lin +366 331 gm +366 364 lin +364 367 gm +364 367 lin +366 365 gm +366 365 lin +364 365 gm +364 365 lin +366 367 gm +366 367 lin +364 368 gm +364 400 lin +366 368 gm +366 400 lin +364 403 gm +364 403 lin +366 401 gm +366 401 lin +364 401 gm +364 401 lin +366 403 gm +366 403 lin +364 404 gm +364 487 lin +366 404 gm +366 487 lin +364 490 gm +364 490 lin +366 488 gm +366 488 lin +364 488 gm +364 488 lin +366 490 gm +366 490 lin +364 491 gm +364 524 lin +366 491 gm +366 524 lin +364 527 gm +366 527 lin +364 525 gm +366 525 lin +367 80 gm +380 80 lin +367 82 gm +380 82 lin +367 132 gm +380 132 lin +367 134 gm +380 134 lin +367 183 gm +380 183 lin +367 185 gm +380 185 lin +367 254 gm +380 254 lin +367 256 gm +380 256 lin +367 291 gm +380 291 lin +367 293 gm +380 293 lin +367 328 gm +380 328 lin +367 330 gm +380 330 lin +367 365 gm +380 365 lin +367 367 gm +380 367 lin +367 401 gm +380 401 lin +367 403 gm +380 403 lin +367 488 gm +380 488 lin +367 490 gm +380 490 lin +367 525 gm +380 525 lin +367 527 gm +380 527 lin +393 105 gm +F 1 setTxMode +(3)show +393 149 gm +(2884)show +393 203 gm +(5415125)show +393 265 gm +(2.34)show +393 302 gm +(0.78)show +393 339 gm +(0.94)show +393 376 gm +(0.20)show +393 436 gm +(1878)show +393 499 gm +(2.79)show +381 82 gm +0 gr +381 82 lin +381 80 gm +381 80 lin +381 83 gm +381 131 lin +381 134 gm +381 134 lin +381 132 gm +381 132 lin +381 135 gm +381 182 lin +381 185 gm +381 185 lin +381 183 gm +381 183 lin +381 186 gm +381 253 lin +381 256 gm +381 256 lin +381 254 gm +381 254 lin +381 257 gm +381 290 lin +381 293 gm +381 293 lin +381 291 gm +381 291 lin +381 294 gm +381 327 lin +381 330 gm +381 330 lin +381 328 gm +381 328 lin +381 331 gm +381 364 lin +381 367 gm +381 367 lin +381 365 gm +381 365 lin +381 368 gm +381 400 lin +381 403 gm +381 403 lin +381 401 gm +381 401 lin +381 404 gm +381 487 lin +381 490 gm +381 490 lin +381 488 gm +381 488 lin +381 491 gm +381 524 lin +381 527 gm +381 527 lin +381 525 gm +381 525 lin +382 80 gm +395 80 lin +382 82 gm +395 82 lin +382 132 gm +395 132 lin +382 134 gm +395 134 lin +382 183 gm +395 183 lin +382 185 gm +395 185 lin +382 254 gm +395 254 lin +382 256 gm +395 256 lin +382 291 gm +395 291 lin +382 293 gm +395 293 lin +382 328 gm +395 328 lin +382 330 gm +395 330 lin +382 365 gm +395 365 lin +382 367 gm +395 367 lin +382 401 gm +395 401 lin +382 403 gm +395 403 lin +382 488 gm +395 488 lin +382 490 gm +395 490 lin +382 525 gm +395 525 lin +382 527 gm +395 527 lin +408 105 gm +F 1 setTxMode +(5)show +408 149 gm +(2229)show +408 203 gm +(6307062)show +408 265 gm +(3.02)show +408 302 gm +(0.60)show +408 339 gm +(0.87)show +408 376 gm +(0.39)show +408 436 gm +(2830)show +408 499 gm +(4.21)show +396 82 gm +0 gr +396 82 lin +396 80 gm +396 80 lin +396 83 gm +396 131 lin +396 134 gm +396 134 lin +396 132 gm +396 132 lin +396 135 gm +396 182 lin +396 185 gm +396 185 lin +396 183 gm +396 183 lin +396 186 gm +396 253 lin +396 256 gm +396 256 lin +396 254 gm +396 254 lin +396 257 gm +396 290 lin +396 293 gm +396 293 lin +396 291 gm +396 291 lin +396 294 gm +396 327 lin +396 330 gm +396 330 lin +396 328 gm +396 328 lin +396 331 gm +396 364 lin +396 367 gm +396 367 lin +396 365 gm +396 365 lin +396 368 gm +396 400 lin +396 403 gm +396 403 lin +396 401 gm +396 401 lin +396 404 gm +396 487 lin +396 490 gm +396 490 lin +396 488 gm +396 488 lin +396 491 gm +396 524 lin +396 527 gm +396 527 lin +396 525 gm +396 525 lin +397 80 gm +410 80 lin +397 82 gm +410 82 lin +397 132 gm +410 132 lin +397 134 gm +410 134 lin +397 183 gm +410 183 lin +397 185 gm +410 185 lin +397 254 gm +410 254 lin +397 256 gm +410 256 lin +397 291 gm +410 291 lin +397 293 gm +410 293 lin +397 328 gm +410 328 lin +397 330 gm +410 330 lin +397 365 gm +410 365 lin +397 367 gm +410 367 lin +397 401 gm +410 401 lin +397 403 gm +410 403 lin +397 488 gm +410 488 lin +397 490 gm +410 490 lin +397 525 gm +410 525 lin +397 527 gm +410 527 lin +423 105 gm +F 1 setTxMode +(7)show +423 149 gm +(2007)show +423 203 gm +(7317370)show +423 265 gm +(3.36)show +423 302 gm +(0.48)show +423 339 gm +(0.80)show +423 376 gm +(0.62)show +423 436 gm +(3646)show +423 499 gm +(5.42)show +411 82 gm +0 gr +411 82 lin +411 80 gm +411 80 lin +411 83 gm +411 131 lin +411 134 gm +411 134 lin +411 132 gm +411 132 lin +411 135 gm +411 182 lin +411 185 gm +411 185 lin +411 183 gm +411 183 lin +411 186 gm +411 253 lin +411 256 gm +411 256 lin +411 254 gm +411 254 lin +411 257 gm +411 290 lin +411 293 gm +411 293 lin +411 291 gm +411 291 lin +411 294 gm +411 327 lin +411 330 gm +411 330 lin +411 328 gm +411 328 lin +411 331 gm +411 364 lin +411 367 gm +411 367 lin +411 365 gm +411 365 lin +411 368 gm +411 400 lin +411 403 gm +411 403 lin +411 401 gm +411 401 lin +411 404 gm +411 487 lin +411 490 gm +411 490 lin +411 488 gm +411 488 lin +411 491 gm +411 524 lin +411 527 gm +411 527 lin +411 525 gm +411 525 lin +412 80 gm +425 80 lin +412 82 gm +425 82 lin +412 132 gm +425 132 lin +412 134 gm +425 134 lin +412 183 gm +425 183 lin +412 185 gm +425 185 lin +412 254 gm +425 254 lin +412 256 gm +425 256 lin +412 291 gm +425 291 lin +412 293 gm +425 293 lin +412 328 gm +425 328 lin +412 330 gm +425 330 lin +412 365 gm +425 365 lin +412 367 gm +425 367 lin +412 401 gm +425 401 lin +412 403 gm +425 403 lin +412 488 gm +425 488 lin +412 490 gm +425 490 lin +412 525 gm +425 525 lin +412 527 gm +425 527 lin +438 105 gm +F 1 setTxMode +(9)show +438 149 gm +(1839)show +438 203 gm +(8187769)show +438 265 gm +(3.67)show +438 302 gm +(0.41)show +438 339 gm +(0.75)show +438 376 gm +(0.81)show +438 436 gm +(4452)show +438 499 gm +(6.62)show +426 82 gm +0 gr +426 82 lin +426 80 gm +426 80 lin +426 83 gm +426 131 lin +426 134 gm +426 134 lin +426 132 gm +426 132 lin +426 135 gm +426 182 lin +426 185 gm +426 185 lin +426 183 gm +426 183 lin +426 186 gm +426 253 lin +426 256 gm +426 256 lin +426 254 gm +426 254 lin +426 257 gm +426 290 lin +426 293 gm +426 293 lin +426 291 gm +426 291 lin +426 294 gm +426 327 lin +426 330 gm +426 330 lin +426 328 gm +426 328 lin +426 331 gm +426 364 lin +426 367 gm +426 367 lin +426 365 gm +426 365 lin +426 368 gm +426 400 lin +426 403 gm +426 403 lin +426 401 gm +426 401 lin +426 404 gm +426 487 lin +426 490 gm +426 490 lin +426 488 gm +426 488 lin +426 491 gm +426 524 lin +426 527 gm +426 527 lin +426 525 gm +426 525 lin +427 80 gm +440 80 lin +427 82 gm +440 82 lin +427 132 gm +440 132 lin +427 134 gm +440 134 lin +427 183 gm +440 183 lin +427 185 gm +440 185 lin +427 254 gm +440 254 lin +427 256 gm +440 256 lin +427 291 gm +440 291 lin +427 293 gm +440 293 lin +427 328 gm +440 328 lin +427 330 gm +440 330 lin +427 365 gm +440 365 lin +427 367 gm +440 367 lin +427 401 gm +440 401 lin +427 403 gm +440 403 lin +427 488 gm +440 488 lin +427 490 gm +440 490 lin +427 525 gm +440 525 lin +427 527 gm +440 527 lin +453 103 gm +F 1 setTxMode +(11)show +453 149 gm +(1825)show +453 203 gm +(8980505)show +453 265 gm +(3.69)show +453 302 gm +(0.34)show +453 339 gm +(0.71)show +453 376 gm +(0.98)show +453 436 gm +(4921)show +453 499 gm +(7.32)show +441 82 gm +0 gr +441 82 lin +441 80 gm +441 80 lin +441 83 gm +441 131 lin +441 134 gm +441 134 lin +441 132 gm +441 132 lin +441 135 gm +441 182 lin +441 185 gm +441 185 lin +441 183 gm +441 183 lin +441 186 gm +441 253 lin +441 256 gm +441 256 lin +441 254 gm +441 254 lin +441 257 gm +441 290 lin +441 293 gm +441 293 lin +441 291 gm +441 291 lin +441 294 gm +441 327 lin +441 330 gm +441 330 lin +441 328 gm +441 328 lin +441 331 gm +441 364 lin +441 367 gm +441 367 lin +441 365 gm +441 365 lin +441 368 gm +441 400 lin +441 403 gm +441 403 lin +441 401 gm +441 401 lin +441 404 gm +441 487 lin +441 490 gm +441 490 lin +441 488 gm +441 488 lin +441 491 gm +441 524 lin +441 527 gm +441 527 lin +441 525 gm +441 525 lin +442 80 gm +455 80 lin +442 82 gm +455 82 lin +458 80 gm +458 82 lin +456 80 gm +458 80 lin +456 82 gm +456 82 lin +456 82 lin +456 83 gm +456 131 lin +458 83 gm +458 131 lin +442 132 gm +455 132 lin +442 134 gm +455 134 lin +456 132 gm +456 134 lin +458 132 gm +458 134 lin +456 135 gm +456 182 lin +458 135 gm +458 182 lin +442 183 gm +455 183 lin +442 185 gm +455 185 lin +456 183 gm +456 185 lin +458 183 gm +458 185 lin +456 186 gm +456 253 lin +458 186 gm +458 253 lin +442 254 gm +455 254 lin +442 256 gm +455 256 lin +456 254 gm +456 256 lin +458 254 gm +458 256 lin +456 257 gm +456 290 lin +458 257 gm +458 290 lin +442 291 gm +455 291 lin +442 293 gm +455 293 lin +456 291 gm +456 293 lin +458 291 gm +458 293 lin +456 294 gm +456 327 lin +458 294 gm +458 327 lin +442 328 gm +455 328 lin +442 330 gm +455 330 lin +456 328 gm +456 330 lin +458 328 gm +458 330 lin +456 331 gm +456 364 lin +458 331 gm +458 364 lin +442 365 gm +455 365 lin +442 367 gm +455 367 lin +456 365 gm +456 367 lin +458 365 gm +458 367 lin +456 368 gm +456 400 lin +458 368 gm +458 400 lin +442 401 gm +455 401 lin +442 403 gm +455 403 lin +456 401 gm +456 403 lin +458 401 gm +458 403 lin +456 404 gm +456 487 lin +458 404 gm +458 487 lin +442 488 gm +455 488 lin +442 490 gm +455 490 lin +456 488 gm +456 490 lin +458 488 gm +458 490 lin +456 491 gm +456 524 lin +458 491 gm +458 524 lin +442 525 gm +455 525 lin +442 527 gm +455 527 lin +458 525 gm +458 527 lin +456 527 gm +458 527 lin +456 525 gm +456 525 lin +456 525 lin +470 79 gm +F 1 setTxMode +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(Fig.10)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +( )show +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(Basic algorithm, iterative deepening and top-level sorting)show +486 79 gm +0 fs +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +1.85195 0. 32 0.18519 0.(The most impressive result in Fig.10 is the increasing of search overhead SO \(98% with 11)awidthshow +497 79 gm +0.59921 0. 32 0.05992 0.(processors\). The number of visited nodes is larger for 9 and 11 processors. On the other hand, the)awidthshow +508 79 gm +1.22573 0. 32 0.12257 0.(sequential version benefits from the new heuristics: the visited nodes are decreasd of 17%. We)awidthshow +519 79 gm +1.15554 0. 32 0.11555 0.(explain this with the fact that parallel search initially cannot gain any advantage from top level)awidthshow +530 79 gm +(sorting, since all processes start simultaneously with initial score equal to -)show +currentfont SwToSym +(\245)show +setfont +(.)show +541 79 gm +0.40695 0. 32 0.04069 0.(Moreover, with respect to no iterative deepening, in this case visited nodes include also all internal)awidthshow +552 79 gm +0.11657 0. 32 0.01165 0.(nodes: this explains the total count with 11 processors. However, the average production factor Fpm)awidthshow +563 79 gm +(decreases of 2%: there is a larger synchronization overhead due to search in the internal tree.)show +593 79 gm +1 fs +12 fz +bu fc +2 F /|______Times-Bold fnt +bn +(4.2 Reducing the search overhead)show +606 79 gm +0 fs +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(Search overhead is caused:)show +618 88 gm +(\245\312by lack of sharing of score during search;)show +631 88 gm +(\245\312initial score = -)show +currentfont SwToSym +(\245)show +setfont +( for the first N)show +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(w)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +( tasks \(N)show +631 277 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(w)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +( = # explorers\).)show +643 79 gm +0.40771 0. 32 0.04077 0.(We try to overcome such problems introducing a tuple storing a global score that all local searches)awidthshow +654 79 gm +1.10519 0. 32 0.11051 0.(can query. The global score tuple that can be read at any moment, but we must be careful with)awidthshow +665 79 gm +1.13174 0. 32 0.11317 0.(reading such a tuple, because it may be a very expensive operation. Thus, we try to make only)awidthshow +676 79 gm +0.11413 0. 32 0.01141 0.("useful" readings: after each reading of the global score the explorer puts in the tuple space a private)awidthshow +687 79 gm +0.35781 0. 32 0.03578 0.(tuple. When a worker modifies the global score it removes all private tuples, so that they can know)awidthshow +699 79 gm +0.66818 0. 32 0.06681 0.(when an update was done. In C-Linda )awidthshow +bu fc +2 F /|______Courier fnt +bn +0.27516 0.(out)ashow +bu fc +2 F /|______Times-Roman fnt +bn +0.73806 0. 32 0.07380 0.( operations are local and inexpensive, whereas )awidthshow +bu fc +2 F /|______Courier fnt +bn +0.27517 0.(in)ashow +bu fc +2 F /|______Times-Roman fnt +bn +0.51879 0. 32 0.05187 0.( are)awidthshow +710 79 gm +0.23971 0. 32 0.02397 0.(based on broadcasting and are expensive. Deletion of private tuples is expensive as well, but it does)awidthshow +721 79 gm +(not happen frequently. Fig.11 shows the evaluation of such an algorithm.)show +F T cp +%%Page: ? 12 +op +30 28 811 566 fr +0 0 xl +1 1 pen +0 0 gm +(nc 0 0 0 0 6 rc)kp +91 336 gm +(nc 30 28 811 566 6 rc)kp +F 1 setTxMode +0 fs +10 fz +bu fc +2 F /|______Helvetica fnt +bn +(A Comparison of Parallel Search Algorithms)show +773 79 gm +(UBLCS-94-14)show +773 514 gm +(10)show +124 96 gm +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(Procs)show +124 145 gm +(T\312\(sec\))show +124 200 gm +(N\312\(nodes\))show +124 271 gm +(S)show +124 308 gm +(E)show +124 338 gm +(Fpm)show +124 378 gm +(SO)show +124 416 gm +(SS\312\(nodes/sec\))show +124 502 gm +(Sss)show +110 80 gm +0 gr +110 82 lin +110 80 gm +112 80 lin +112 82 gm +112 82 lin +112 82 lin +110 83 gm +110 131 lin +112 83 gm +112 131 lin +110 132 gm +110 134 lin +112 132 gm +112 134 lin +110 135 gm +110 182 lin +112 135 gm +112 182 lin +110 183 gm +110 185 lin +112 183 gm +112 185 lin +110 186 gm +110 253 lin +112 186 gm +112 253 lin +110 254 gm +110 256 lin +112 254 gm +112 256 lin +110 257 gm +110 290 lin +112 257 gm +112 290 lin +110 291 gm +110 293 lin +112 291 gm +112 293 lin +110 294 gm +110 327 lin +112 294 gm +112 327 lin +110 328 gm +110 330 lin +112 328 gm +112 330 lin +110 331 gm +110 364 lin +112 331 gm +112 364 lin +110 365 gm +110 367 lin +112 365 gm +112 367 lin +110 368 gm +110 400 lin +112 368 gm +112 400 lin +110 401 gm +110 403 lin +112 401 gm +112 403 lin +110 404 gm +110 487 lin +112 404 gm +112 487 lin +110 488 gm +110 490 lin +112 488 gm +112 490 lin +110 491 gm +110 524 lin +112 491 gm +112 524 lin +110 525 gm +110 527 lin +112 527 lin +112 525 gm +112 525 lin +112 525 lin +113 80 gm +126 80 lin +113 82 gm +126 82 lin +113 132 gm +126 132 lin +113 134 gm +126 134 lin +113 183 gm +126 183 lin +113 185 gm +126 185 lin +113 254 gm +126 254 lin +113 256 gm +126 256 lin +113 291 gm +126 291 lin +113 293 gm +126 293 lin +113 328 gm +126 328 lin +113 330 gm +126 330 lin +113 365 gm +126 365 lin +113 367 gm +126 367 lin +113 401 gm +126 401 lin +113 403 gm +126 403 lin +113 488 gm +126 488 lin +113 490 gm +126 490 lin +113 525 gm +126 525 lin +113 527 gm +126 527 lin +141 105 gm +F 1 setTxMode +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(1)show +141 149 gm +(6740)show +141 203 gm +(4529971)show +141 269 gm +(---)show +141 306 gm +(---)show +141 343 gm +(---)show +141 380 gm +(---)show +141 439 gm +(672)show +141 503 gm +(---)show +127 82 gm +0 gr +129 82 lin +127 80 gm +129 80 lin +127 83 gm +127 131 lin +129 83 gm +129 131 lin +127 134 gm +127 134 lin +129 132 gm +129 132 lin +127 132 gm +127 132 lin +129 134 gm +129 134 lin +127 135 gm +127 182 lin +129 135 gm +129 182 lin +127 185 gm +127 185 lin +129 183 gm +129 183 lin +127 183 gm +127 183 lin +129 185 gm +129 185 lin +127 186 gm +127 253 lin +129 186 gm +129 253 lin +127 256 gm +127 256 lin +129 254 gm +129 254 lin +127 254 gm +127 254 lin +129 256 gm +129 256 lin +127 257 gm +127 290 lin +129 257 gm +129 290 lin +127 293 gm +127 293 lin +129 291 gm +129 291 lin +127 291 gm +127 291 lin +129 293 gm +129 293 lin +127 294 gm +127 327 lin +129 294 gm +129 327 lin +127 330 gm +127 330 lin +129 328 gm +129 328 lin +127 328 gm +127 328 lin +129 330 gm +129 330 lin +127 331 gm +127 364 lin +129 331 gm +129 364 lin +127 367 gm +127 367 lin +129 365 gm +129 365 lin +127 365 gm +127 365 lin +129 367 gm +129 367 lin +127 368 gm +127 400 lin +129 368 gm +129 400 lin +127 403 gm +127 403 lin +129 401 gm +129 401 lin +127 401 gm +127 401 lin +129 403 gm +129 403 lin +127 404 gm +127 487 lin +129 404 gm +129 487 lin +127 490 gm +127 490 lin +129 488 gm +129 488 lin +127 488 gm +127 488 lin +129 490 gm +129 490 lin +127 491 gm +127 524 lin +129 491 gm +129 524 lin +127 527 gm +129 527 lin +127 525 gm +129 525 lin +130 80 gm +143 80 lin +130 82 gm +143 82 lin +130 132 gm +143 132 lin +130 134 gm +143 134 lin +130 183 gm +143 183 lin +130 185 gm +143 185 lin +130 254 gm +143 254 lin +130 256 gm +143 256 lin +130 291 gm +143 291 lin +130 293 gm +143 293 lin +130 328 gm +143 328 lin +130 330 gm +143 330 lin +130 365 gm +143 365 lin +130 367 gm +143 367 lin +130 401 gm +143 401 lin +130 403 gm +143 403 lin +130 488 gm +143 488 lin +130 490 gm +143 490 lin +130 525 gm +143 525 lin +130 527 gm +143 527 lin +156 105 gm +F 1 setTxMode +(3)show +156 149 gm +(2689)show +156 203 gm +(4995937)show +156 265 gm +(2.51)show +156 302 gm +(0.84)show +156 339 gm +(0.94)show +156 376 gm +(0.10)show +156 436 gm +(1858)show +156 499 gm +(2.76)show +144 82 gm +0 gr +144 82 lin +144 80 gm +144 80 lin +144 83 gm +144 131 lin +144 134 gm +144 134 lin +144 132 gm +144 132 lin +144 135 gm +144 182 lin +144 185 gm +144 185 lin +144 183 gm +144 183 lin +144 186 gm +144 253 lin +144 256 gm +144 256 lin +144 254 gm +144 254 lin +144 257 gm +144 290 lin +144 293 gm +144 293 lin +144 291 gm +144 291 lin +144 294 gm +144 327 lin +144 330 gm +144 330 lin +144 328 gm +144 328 lin +144 331 gm +144 364 lin +144 367 gm +144 367 lin +144 365 gm +144 365 lin +144 368 gm +144 400 lin +144 403 gm +144 403 lin +144 401 gm +144 401 lin +144 404 gm +144 487 lin +144 490 gm +144 490 lin +144 488 gm +144 488 lin +144 491 gm +144 524 lin +144 527 gm +144 527 lin +144 525 gm +144 525 lin +145 80 gm +158 80 lin +145 82 gm +158 82 lin +145 132 gm +158 132 lin +145 134 gm +158 134 lin +145 183 gm +158 183 lin +145 185 gm +158 185 lin +145 254 gm +158 254 lin +145 256 gm +158 256 lin +145 291 gm +158 291 lin +145 293 gm +158 293 lin +145 328 gm +158 328 lin +145 330 gm +158 330 lin +145 365 gm +158 365 lin +145 367 gm +158 367 lin +145 401 gm +158 401 lin +145 403 gm +158 403 lin +145 488 gm +158 488 lin +145 490 gm +158 490 lin +145 525 gm +158 525 lin +145 527 gm +158 527 lin +171 105 gm +F 1 setTxMode +(5)show +171 149 gm +(1854)show +171 203 gm +(5346599)show +171 265 gm +(3.64)show +171 302 gm +(0.73)show +171 339 gm +(0.88)show +171 376 gm +(0.18)show +171 436 gm +(2884)show +171 499 gm +(4.29)show +159 82 gm +0 gr +159 82 lin +159 80 gm +159 80 lin +159 83 gm +159 131 lin +159 134 gm +159 134 lin +159 132 gm +159 132 lin +159 135 gm +159 182 lin +159 185 gm +159 185 lin +159 183 gm +159 183 lin +159 186 gm +159 253 lin +159 256 gm +159 256 lin +159 254 gm +159 254 lin +159 257 gm +159 290 lin +159 293 gm +159 293 lin +159 291 gm +159 291 lin +159 294 gm +159 327 lin +159 330 gm +159 330 lin +159 328 gm +159 328 lin +159 331 gm +159 364 lin +159 367 gm +159 367 lin +159 365 gm +159 365 lin +159 368 gm +159 400 lin +159 403 gm +159 403 lin +159 401 gm +159 401 lin +159 404 gm +159 487 lin +159 490 gm +159 490 lin +159 488 gm +159 488 lin +159 491 gm +159 524 lin +159 527 gm +159 527 lin +159 525 gm +159 525 lin +160 80 gm +173 80 lin +160 82 gm +173 82 lin +160 132 gm +173 132 lin +160 134 gm +173 134 lin +160 183 gm +173 183 lin +160 185 gm +173 185 lin +160 254 gm +173 254 lin +160 256 gm +173 256 lin +160 291 gm +173 291 lin +160 293 gm +173 293 lin +160 328 gm +173 328 lin +160 330 gm +173 330 lin +160 365 gm +173 365 lin +160 367 gm +173 367 lin +160 401 gm +173 401 lin +160 403 gm +173 403 lin +160 488 gm +173 488 lin +160 490 gm +173 490 lin +160 525 gm +173 525 lin +160 527 gm +173 527 lin +186 105 gm +F 1 setTxMode +(7)show +186 149 gm +(1485)show +186 203 gm +(5634915)show +186 265 gm +(4.54)show +186 302 gm +(0.65)show +186 339 gm +(0.81)show +186 376 gm +(0.24)show +186 436 gm +(3795)show +186 499 gm +(5.65)show +174 82 gm +0 gr +174 82 lin +174 80 gm +174 80 lin +174 83 gm +174 131 lin +174 134 gm +174 134 lin +174 132 gm +174 132 lin +174 135 gm +174 182 lin +174 185 gm +174 185 lin +174 183 gm +174 183 lin +174 186 gm +174 253 lin +174 256 gm +174 256 lin +174 254 gm +174 254 lin +174 257 gm +174 290 lin +174 293 gm +174 293 lin +174 291 gm +174 291 lin +174 294 gm +174 327 lin +174 330 gm +174 330 lin +174 328 gm +174 328 lin +174 331 gm +174 364 lin +174 367 gm +174 367 lin +174 365 gm +174 365 lin +174 368 gm +174 400 lin +174 403 gm +174 403 lin +174 401 gm +174 401 lin +174 404 gm +174 487 lin +174 490 gm +174 490 lin +174 488 gm +174 488 lin +174 491 gm +174 524 lin +174 527 gm +174 527 lin +174 525 gm +174 525 lin +175 80 gm +188 80 lin +175 82 gm +188 82 lin +175 132 gm +188 132 lin +175 134 gm +188 134 lin +175 183 gm +188 183 lin +175 185 gm +188 185 lin +175 254 gm +188 254 lin +175 256 gm +188 256 lin +175 291 gm +188 291 lin +175 293 gm +188 293 lin +175 328 gm +188 328 lin +175 330 gm +188 330 lin +175 365 gm +188 365 lin +175 367 gm +188 367 lin +175 401 gm +188 401 lin +175 403 gm +188 403 lin +175 488 gm +188 488 lin +175 490 gm +188 490 lin +175 525 gm +188 525 lin +175 527 gm +188 527 lin +201 105 gm +F 1 setTxMode +(9)show +201 149 gm +(1315)show +201 203 gm +(5936185)show +201 265 gm +(5.13)show +201 302 gm +(0.57)show +201 339 gm +(0.77)show +201 376 gm +(0.31)show +201 436 gm +(4514)show +201 499 gm +(6.72)show +189 82 gm +0 gr +189 82 lin +189 80 gm +189 80 lin +189 83 gm +189 131 lin +189 134 gm +189 134 lin +189 132 gm +189 132 lin +189 135 gm +189 182 lin +189 185 gm +189 185 lin +189 183 gm +189 183 lin +189 186 gm +189 253 lin +189 256 gm +189 256 lin +189 254 gm +189 254 lin +189 257 gm +189 290 lin +189 293 gm +189 293 lin +189 291 gm +189 291 lin +189 294 gm +189 327 lin +189 330 gm +189 330 lin +189 328 gm +189 328 lin +189 331 gm +189 364 lin +189 367 gm +189 367 lin +189 365 gm +189 365 lin +189 368 gm +189 400 lin +189 403 gm +189 403 lin +189 401 gm +189 401 lin +189 404 gm +189 487 lin +189 490 gm +189 490 lin +189 488 gm +189 488 lin +189 491 gm +189 524 lin +189 527 gm +189 527 lin +189 525 gm +189 525 lin +190 80 gm +203 80 lin +190 82 gm +203 82 lin +190 132 gm +203 132 lin +190 134 gm +203 134 lin +190 183 gm +203 183 lin +190 185 gm +203 185 lin +190 254 gm +203 254 lin +190 256 gm +203 256 lin +190 291 gm +203 291 lin +190 293 gm +203 293 lin +190 328 gm +203 328 lin +190 330 gm +203 330 lin +190 365 gm +203 365 lin +190 367 gm +203 367 lin +190 401 gm +203 401 lin +190 403 gm +203 403 lin +190 488 gm +203 488 lin +190 490 gm +203 490 lin +190 525 gm +203 525 lin +190 527 gm +203 527 lin +216 103 gm +F 1 setTxMode +(11)show +216 149 gm +(1280)show +216 203 gm +(6726213)show +216 265 gm +(5.27)show +216 302 gm +(0.48)show +216 339 gm +(0.74)show +216 376 gm +(0.48)show +216 436 gm +(5255)show +216 499 gm +(7.82)show +204 82 gm +0 gr +204 82 lin +204 80 gm +204 80 lin +204 83 gm +204 131 lin +204 134 gm +204 134 lin +204 132 gm +204 132 lin +204 135 gm +204 182 lin +204 185 gm +204 185 lin +204 183 gm +204 183 lin +204 186 gm +204 253 lin +204 256 gm +204 256 lin +204 254 gm +204 254 lin +204 257 gm +204 290 lin +204 293 gm +204 293 lin +204 291 gm +204 291 lin +204 294 gm +204 327 lin +204 330 gm +204 330 lin +204 328 gm +204 328 lin +204 331 gm +204 364 lin +204 367 gm +204 367 lin +204 365 gm +204 365 lin +204 368 gm +204 400 lin +204 403 gm +204 403 lin +204 401 gm +204 401 lin +204 404 gm +204 487 lin +204 490 gm +204 490 lin +204 488 gm +204 488 lin +204 491 gm +204 524 lin +204 527 gm +204 527 lin +204 525 gm +204 525 lin +205 80 gm +218 80 lin +205 82 gm +218 82 lin +221 80 gm +221 82 lin +219 80 gm +221 80 lin +219 82 gm +219 82 lin +219 82 lin +219 83 gm +219 131 lin +221 83 gm +221 131 lin +205 132 gm +218 132 lin +205 134 gm +218 134 lin +219 132 gm +219 134 lin +221 132 gm +221 134 lin +219 135 gm +219 182 lin +221 135 gm +221 182 lin +205 183 gm +218 183 lin +205 185 gm +218 185 lin +219 183 gm +219 185 lin +221 183 gm +221 185 lin +219 186 gm +219 253 lin +221 186 gm +221 253 lin +205 254 gm +218 254 lin +205 256 gm +218 256 lin +219 254 gm +219 256 lin +221 254 gm +221 256 lin +219 257 gm +219 290 lin +221 257 gm +221 290 lin +205 291 gm +218 291 lin +205 293 gm +218 293 lin +219 291 gm +219 293 lin +221 291 gm +221 293 lin +219 294 gm +219 327 lin +221 294 gm +221 327 lin +205 328 gm +218 328 lin +205 330 gm +218 330 lin +219 328 gm +219 330 lin +221 328 gm +221 330 lin +219 331 gm +219 364 lin +221 331 gm +221 364 lin +205 365 gm +218 365 lin +205 367 gm +218 367 lin +219 365 gm +219 367 lin +221 365 gm +221 367 lin +219 368 gm +219 400 lin +221 368 gm +221 400 lin +205 401 gm +218 401 lin +205 403 gm +218 403 lin +219 401 gm +219 403 lin +221 401 gm +221 403 lin +219 404 gm +219 487 lin +221 404 gm +221 487 lin +205 488 gm +218 488 lin +205 490 gm +218 490 lin +219 488 gm +219 490 lin +221 488 gm +221 490 lin +219 491 gm +219 524 lin +221 491 gm +221 524 lin +205 525 gm +218 525 lin +205 527 gm +218 527 lin +221 525 gm +221 527 lin +219 527 gm +221 527 lin +219 525 gm +219 525 lin +219 525 lin +233 79 gm +F 1 setTxMode +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(Fig.11)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +( )show +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(Score sharing)show +249 79 gm +0 fs +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +1.28097 0. 32 0.12809 0.(This table shows that we have achieved the goal of reducing search overhead SO \(62% with 9)awidthshow +264 79 gm +0.64041 0. 32 0.06404 0.(processors\); the speedup with 11 processors was improved of 42% \(3.69 )awidthshow +bu fc +2 F /|______Symbol fnt +bn +0.38940 0.(\256)ashow +bu fc +2 F /|______Times-Roman fnt +bn +0.52368 0. 32 0.05236 0.( 5.27\). Values for F)awidthshow +264 511 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(pm)show +276 79 gm +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.95855 0. 32 0.09585 0.(are approximated: they do not take in account overhead due to updating the local score. We can)awidthshow +287 79 gm +(evaluate such an overhead as follows:)show +298 79 gm +0.60348 0. 32 0.06034 0.(\245\312with P processors, let Fpmr be the real production factor and OC due to score sharing; we have)awidthshow +309 79 gm +(that:)show +0 0 pen +359 337 gm +(nc 313 164 359 337 6 rc)kp +0 gr +359 337 lin +psb +currentpoint +pse +313 164 gm +313 164 lin +psb +30 dict begin +currentpoint 3 -1 roll sub neg 3 1 roll sub 5536 div 1472 3 -1 roll exch div scale currentpoint translate 64 52 translate +-18 523 moveto +/fs 0 def +/sf {exch dup /fs exch def dup neg matrix scale makefont setfont} def +/f1 {findfont dup /cf exch def sf} def +/ns {cf sf} def +384 /Helvetica f1 +(S) show +238 523 moveto +224 ns +(VR) show +663 523 moveto +384 /Symbol f1 +(=) show +963 523 moveto +384 /Helvetica f1 +(P) show +1269 523 moveto +384 /Symbol f1 +(\327) show +1395 523 moveto +384 /Helvetica f1 +(F) show +1629 523 moveto +224 ns +(pmr) show +2121 523 moveto +384 /Symbol f1 +(\336) show +2581 523 moveto +384 /Helvetica f1 +(F) show +2815 523 moveto +224 ns +(pmr) show +3305 523 moveto +384 ns +(=) show +3652 284 moveto +(S) show +3908 284 moveto +224 ns +(VR) show +3804 816 moveto +384 ns +(P) show +/thick 0 def +/th { dup setlinewidth /thick exch def } def +16 th 3638 424 moveto 603 0 rlineto stroke +-34 1313 moveto +(F) show +200 1313 moveto +224 ns +(pm) show +618 1313 moveto +384 /Symbol f1 +(=) show +918 1313 moveto +384 /Helvetica f1 +(F) show +1152 1313 moveto +224 ns +(pmr) show +1626 1313 moveto +384 /Symbol f1 +(+) show +1914 1313 moveto +384 /Helvetica f1 +(OC) show +2582 1313 moveto +384 /Symbol f1 +(\336) show +3062 1313 moveto +384 /Helvetica f1 +(OC) show +3728 1313 moveto +(=) show +4027 1313 moveto +(F) show +4261 1313 moveto +224 ns +(pm) show +4634 1313 moveto +384 ns +(-) show +4805 1313 moveto +(F) show +5039 1313 moveto +224 ns +(pmr) show +end +pse +1 1 pen +368 79 gm +(nc 30 28 811 566 6 rc)kp +F 1 setTxMode +(\245 in particular, with 11 processors:)show +0 0 pen +418 372 gm +(nc 372 164 418 372 6 rc)kp +0 gr +418 372 lin +psb +currentpoint +pse +372 164 gm +372 164 lin +psb +30 dict begin +currentpoint 3 -1 roll sub neg 3 1 roll sub 6656 div 1472 3 -1 roll exch div scale currentpoint translate 64 36 translate +-34 523 moveto +/fs 0 def +/sf {exch dup /fs exch def dup neg matrix scale makefont setfont} def +/f1 {findfont dup /cf exch def sf} def +/ns {cf sf} def +384 /Helvetica f1 +(F) show +200 523 moveto +224 ns +(pmr) show +601 523 moveto +384 /Helvetica f1 +(\() show +721 523 moveto +384 /Helvetica f1 +(11) show +1101 523 moveto +384 /Helvetica f1 +(\)) show +1323 523 moveto +384 /Symbol f1 +(=) show +1671 284 moveto +384 /Helvetica f1 +(S) show +1927 284 moveto +224 ns +(VR) show +1823 816 moveto +384 ns +(P) show +/thick 0 def +/th { dup setlinewidth /thick exch def } def +16 th 1657 424 moveto 603 0 rlineto stroke +2384 523 moveto +384 /Symbol f1 +(=) show +2733 284 moveto +384 /Helvetica f1 +(7) show +2947 284 moveto +384 /Helvetica f1 +(.) show +3086 284 moveto +384 /Helvetica f1 +(82) show +2930 816 moveto +(11) show +2718 424 moveto 809 0 rlineto stroke +3651 523 moveto +384 /Symbol f1 +(=) show +3969 523 moveto +384 /Helvetica f1 +(0) show +4178 523 moveto +384 /Helvetica f1 +(.) show +4314 523 moveto +384 /Helvetica f1 +(71) show +-14 1313 moveto +384 /Helvetica f1 +(OC) show +563 1313 moveto +384 /Helvetica f1 +(\() show +683 1313 moveto +384 /Helvetica f1 +(11) show +1063 1313 moveto +384 /Helvetica f1 +(\)) show +1285 1313 moveto +384 /Symbol f1 +(=) show +1585 1313 moveto +384 /Helvetica f1 +(F) show +1819 1313 moveto +224 ns +(pm) show +2205 1313 moveto +384 /Symbol f1 +(-) show +2472 1313 moveto +384 /Helvetica f1 +(F) show +2706 1313 moveto +224 ns +(pmr) show +3211 1313 moveto +384 /Symbol f1 +(=) show +3529 1313 moveto +384 /Helvetica f1 +(0) show +3738 1313 moveto +384 /Helvetica f1 +(.) show +3874 1313 moveto +384 /Helvetica f1 +(74) show +4378 1313 moveto +384 /Symbol f1 +(-) show +4663 1313 moveto +384 /Helvetica f1 +(0) show +4872 1313 moveto +384 /Helvetica f1 +(.) show +5008 1313 moveto +384 /Helvetica f1 +(71) show +5478 1313 moveto +384 /Symbol f1 +(=) show +5796 1313 moveto +384 /Helvetica f1 +(0) show +6005 1313 moveto +384 /Helvetica f1 +(.) show +6142 1313 moveto +384 /Helvetica f1 +(03) show +end +pse +1 1 pen +427 79 gm +(nc 30 28 811 566 6 rc)kp +F 1 setTxMode +0.10513 0. 32 0.01051 0.(Communication overhead is not negligible, however the improvements in search overhead are worth)awidthshow +438 79 gm +(such a price.)show +468 79 gm +1 fs +12 fz +bu fc +2 F /|______Times-Bold fnt +bn +(4.3 PVSplit)show +481 79 gm +0 fs +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.94223 0. 32 0.09422 0.(We have tested PVSplit with iterative deepening \(INIT=2-plies and MAX=5-plies\) and top-level)awidthshow +492 79 gm +0.78674 0. 32 0.07867 0.(sorting; moreover, THRESOLD=3-plies. We have made two sets of experiments, with or without)awidthshow +503 79 gm +(global score.)show +532 96 gm +1 fs +10 fz +bu fc +2 F /|______Times-Bold fnt +bn +(procs)show +532 145 gm +(T\312\(sec\))show +532 200 gm +(N\312\(nodes\))show +532 271 gm +(S)show +532 308 gm +(E)show +532 338 gm +(Fpm)show +532 378 gm +(SO)show +532 416 gm +(SS\312\(nodes/sec\))show +532 502 gm +(Sss)show +518 80 gm +0 gr +518 82 lin +518 80 gm +520 80 lin +520 82 gm +520 82 lin +520 82 lin +518 83 gm +518 131 lin +520 83 gm +520 131 lin +518 132 gm +518 134 lin +520 132 gm +520 134 lin +518 135 gm +518 182 lin +520 135 gm +520 182 lin +518 183 gm +518 185 lin +520 183 gm +520 185 lin +518 186 gm +518 253 lin +520 186 gm +520 253 lin +518 254 gm +518 256 lin +520 254 gm +520 256 lin +518 257 gm +518 290 lin +520 257 gm +520 290 lin +518 291 gm +518 293 lin +520 291 gm +520 293 lin +518 294 gm +518 327 lin +520 294 gm +520 327 lin +518 328 gm +518 330 lin +520 328 gm +520 330 lin +518 331 gm +518 364 lin +520 331 gm +520 364 lin +518 365 gm +518 367 lin +520 365 gm +520 367 lin +518 368 gm +518 400 lin +520 368 gm +520 400 lin +518 401 gm +518 403 lin +520 401 gm +520 403 lin +518 404 gm +518 487 lin +520 404 gm +520 487 lin +518 488 gm +518 490 lin +520 488 gm +520 490 lin +518 491 gm +518 524 lin +520 491 gm +520 524 lin +518 525 gm +518 527 lin +520 527 lin +520 525 gm +520 525 lin +520 525 lin +521 80 gm +534 80 lin +521 82 gm +534 82 lin +521 132 gm +534 132 lin +521 134 gm +534 134 lin +521 183 gm +534 183 lin +521 185 gm +534 185 lin +521 254 gm +534 254 lin +521 256 gm +534 256 lin +521 291 gm +534 291 lin +521 293 gm +534 293 lin +521 328 gm +534 328 lin +521 330 gm +534 330 lin +521 365 gm +534 365 lin +521 367 gm +534 367 lin +521 401 gm +534 401 lin +521 403 gm +534 403 lin +521 488 gm +534 488 lin +521 490 gm +534 490 lin +521 525 gm +534 525 lin +521 527 gm +534 527 lin +549 105 gm +F 1 setTxMode +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(1)show +549 149 gm +(6740)show +549 203 gm +(4529971)show +549 269 gm +(---)show +549 306 gm +(---)show +549 343 gm +(---)show +549 380 gm +(---)show +549 439 gm +(672)show +549 503 gm +(---)show +535 82 gm +0 gr +537 82 lin +535 80 gm +537 80 lin +535 83 gm +535 131 lin +537 83 gm +537 131 lin +535 134 gm +535 134 lin +537 132 gm +537 132 lin +535 132 gm +535 132 lin +537 134 gm +537 134 lin +535 135 gm +535 182 lin +537 135 gm +537 182 lin +535 185 gm +535 185 lin +537 183 gm +537 183 lin +535 183 gm +535 183 lin +537 185 gm +537 185 lin +535 186 gm +535 253 lin +537 186 gm +537 253 lin +535 256 gm +535 256 lin +537 254 gm +537 254 lin +535 254 gm +535 254 lin +537 256 gm +537 256 lin +535 257 gm +535 290 lin +537 257 gm +537 290 lin +535 293 gm +535 293 lin +537 291 gm +537 291 lin +535 291 gm +535 291 lin +537 293 gm +537 293 lin +535 294 gm +535 327 lin +537 294 gm +537 327 lin +535 330 gm +535 330 lin +537 328 gm +537 328 lin +535 328 gm +535 328 lin +537 330 gm +537 330 lin +535 331 gm +535 364 lin +537 331 gm +537 364 lin +535 367 gm +535 367 lin +537 365 gm +537 365 lin +535 365 gm +535 365 lin +537 367 gm +537 367 lin +535 368 gm +535 400 lin +537 368 gm +537 400 lin +535 403 gm +535 403 lin +537 401 gm +537 401 lin +535 401 gm +535 401 lin +537 403 gm +537 403 lin +535 404 gm +535 487 lin +537 404 gm +537 487 lin +535 490 gm +535 490 lin +537 488 gm +537 488 lin +535 488 gm +535 488 lin +537 490 gm +537 490 lin +535 491 gm +535 524 lin +537 491 gm +537 524 lin +535 527 gm +537 527 lin +535 525 gm +537 525 lin +538 80 gm +551 80 lin +538 82 gm +551 82 lin +538 132 gm +551 132 lin +538 134 gm +551 134 lin +538 183 gm +551 183 lin +538 185 gm +551 185 lin +538 254 gm +551 254 lin +538 256 gm +551 256 lin +538 291 gm +551 291 lin +538 293 gm +551 293 lin +538 328 gm +551 328 lin +538 330 gm +551 330 lin +538 365 gm +551 365 lin +538 367 gm +551 367 lin +538 401 gm +551 401 lin +538 403 gm +551 403 lin +538 488 gm +551 488 lin +538 490 gm +551 490 lin +538 525 gm +551 525 lin +538 527 gm +551 527 lin +564 105 gm +F 1 setTxMode +(3)show +564 149 gm +(2693)show +564 203 gm +(4949981)show +564 265 gm +(2.50)show +564 302 gm +(0.83)show +564 339 gm +(0.91)show +564 376 gm +(0.09)show +564 436 gm +(1838)show +564 499 gm +(2.73)show +552 82 gm +0 gr +552 82 lin +552 80 gm +552 80 lin +552 83 gm +552 131 lin +552 134 gm +552 134 lin +552 132 gm +552 132 lin +552 135 gm +552 182 lin +552 185 gm +552 185 lin +552 183 gm +552 183 lin +552 186 gm +552 253 lin +552 256 gm +552 256 lin +552 254 gm +552 254 lin +552 257 gm +552 290 lin +552 293 gm +552 293 lin +552 291 gm +552 291 lin +552 294 gm +552 327 lin +552 330 gm +552 330 lin +552 328 gm +552 328 lin +552 331 gm +552 364 lin +552 367 gm +552 367 lin +552 365 gm +552 365 lin +552 368 gm +552 400 lin +552 403 gm +552 403 lin +552 401 gm +552 401 lin +552 404 gm +552 487 lin +552 490 gm +552 490 lin +552 488 gm +552 488 lin +552 491 gm +552 524 lin +552 527 gm +552 527 lin +552 525 gm +552 525 lin +553 80 gm +566 80 lin +553 82 gm +566 82 lin +553 132 gm +566 132 lin +553 134 gm +566 134 lin +553 183 gm +566 183 lin +553 185 gm +566 185 lin +553 254 gm +566 254 lin +553 256 gm +566 256 lin +553 291 gm +566 291 lin +553 293 gm +566 293 lin +553 328 gm +566 328 lin +553 330 gm +566 330 lin +553 365 gm +566 365 lin +553 367 gm +566 367 lin +553 401 gm +566 401 lin +553 403 gm +566 403 lin +553 488 gm +566 488 lin +553 490 gm +566 490 lin +553 525 gm +566 525 lin +553 527 gm +566 527 lin +579 105 gm +F 1 setTxMode +(5)show +579 149 gm +(1931)show +579 203 gm +(5349308)show +579 265 gm +(3.49)show +579 302 gm +(0.70)show +579 339 gm +(0.82)show +579 376 gm +(0.18)show +579 436 gm +(2770)show +579 499 gm +(4.12)show +567 82 gm +0 gr +567 82 lin +567 80 gm +567 80 lin +567 83 gm +567 131 lin +567 134 gm +567 134 lin +567 132 gm +567 132 lin +567 135 gm +567 182 lin +567 185 gm +567 185 lin +567 183 gm +567 183 lin +567 186 gm +567 253 lin +567 256 gm +567 256 lin +567 254 gm +567 254 lin +567 257 gm +567 290 lin +567 293 gm +567 293 lin +567 291 gm +567 291 lin +567 294 gm +567 327 lin +567 330 gm +567 330 lin +567 328 gm +567 328 lin +567 331 gm +567 364 lin +567 367 gm +567 367 lin +567 365 gm +567 365 lin +567 368 gm +567 400 lin +567 403 gm +567 403 lin +567 401 gm +567 401 lin +567 404 gm +567 487 lin +567 490 gm +567 490 lin +567 488 gm +567 488 lin +567 491 gm +567 524 lin +567 527 gm +567 527 lin +567 525 gm +567 525 lin +568 80 gm +581 80 lin +568 82 gm +581 82 lin +568 132 gm +581 132 lin +568 134 gm +581 134 lin +568 183 gm +581 183 lin +568 185 gm +581 185 lin +568 254 gm +581 254 lin +568 256 gm +581 256 lin +568 291 gm +581 291 lin +568 293 gm +581 293 lin +568 328 gm +581 328 lin +568 330 gm +581 330 lin +568 365 gm +581 365 lin +568 367 gm +581 367 lin +568 401 gm +581 401 lin +568 403 gm +581 403 lin +568 488 gm +581 488 lin +568 490 gm +581 490 lin +568 525 gm +581 525 lin +568 527 gm +581 527 lin +594 105 gm +F 1 setTxMode +(7)show +594 149 gm +(1659)show +594 203 gm +(5657469)show +594 265 gm +(4.06)show +594 302 gm +(0.58)show +594 339 gm +(0.75)show +594 376 gm +(0.25)show +594 436 gm +(3410)show +594 499 gm +(5.07)show +582 82 gm +0 gr +582 82 lin +582 80 gm +582 80 lin +582 83 gm +582 131 lin +582 134 gm +582 134 lin +582 132 gm +582 132 lin +582 135 gm +582 182 lin +582 185 gm +582 185 lin +582 183 gm +582 183 lin +582 186 gm +582 253 lin +582 256 gm +582 256 lin +582 254 gm +582 254 lin +582 257 gm +582 290 lin +582 293 gm +582 293 lin +582 291 gm +582 291 lin +582 294 gm +582 327 lin +582 330 gm +582 330 lin +582 328 gm +582 328 lin +582 331 gm +582 364 lin +582 367 gm +582 367 lin +582 365 gm +582 365 lin +582 368 gm +582 400 lin +582 403 gm +582 403 lin +582 401 gm +582 401 lin +582 404 gm +582 487 lin +582 490 gm +582 490 lin +582 488 gm +582 488 lin +582 491 gm +582 524 lin +582 527 gm +582 527 lin +582 525 gm +582 525 lin +583 80 gm +596 80 lin +583 82 gm +596 82 lin +583 132 gm +596 132 lin +583 134 gm +596 134 lin +583 183 gm +596 183 lin +583 185 gm +596 185 lin +583 254 gm +596 254 lin +583 256 gm +596 256 lin +583 291 gm +596 291 lin +583 293 gm +596 293 lin +583 328 gm +596 328 lin +583 330 gm +596 330 lin +583 365 gm +596 365 lin +583 367 gm +596 367 lin +583 401 gm +596 401 lin +583 403 gm +596 403 lin +583 488 gm +596 488 lin +583 490 gm +596 490 lin +583 525 gm +596 525 lin +583 527 gm +596 527 lin +609 105 gm +F 1 setTxMode +(9)show +609 149 gm +(1502)show +609 203 gm +(6130143)show +609 265 gm +(4.49)show +609 302 gm +(0.50)show +609 339 gm +(0.67)show +609 376 gm +(0.35)show +609 436 gm +(4081)show +609 499 gm +(6.07)show +597 82 gm +0 gr +597 82 lin +597 80 gm +597 80 lin +597 83 gm +597 131 lin +597 134 gm +597 134 lin +597 132 gm +597 132 lin +597 135 gm +597 182 lin +597 185 gm +597 185 lin +597 183 gm +597 183 lin +597 186 gm +597 253 lin +597 256 gm +597 256 lin +597 254 gm +597 254 lin +597 257 gm +597 290 lin +597 293 gm +597 293 lin +597 291 gm +597 291 lin +597 294 gm +597 327 lin +597 330 gm +597 330 lin +597 328 gm +597 328 lin +597 331 gm +597 364 lin +597 367 gm +597 367 lin +597 365 gm +597 365 lin +597 368 gm +597 400 lin +597 403 gm +597 403 lin +597 401 gm +597 401 lin +597 404 gm +597 487 lin +597 490 gm +597 490 lin +597 488 gm +597 488 lin +597 491 gm +597 524 lin +597 527 gm +597 527 lin +597 525 gm +597 525 lin +598 80 gm +611 80 lin +598 82 gm +611 82 lin +598 132 gm +611 132 lin +598 134 gm +611 134 lin +598 183 gm +611 183 lin +598 185 gm +611 185 lin +598 254 gm +611 254 lin +598 256 gm +611 256 lin +598 291 gm +611 291 lin +598 293 gm +611 293 lin +598 328 gm +611 328 lin +598 330 gm +611 330 lin +598 365 gm +611 365 lin +598 367 gm +611 367 lin +598 401 gm +611 401 lin +598 403 gm +611 403 lin +598 488 gm +611 488 lin +598 490 gm +611 490 lin +598 525 gm +611 525 lin +598 527 gm +611 527 lin +624 103 gm +F 1 setTxMode +(11)show +624 149 gm +(1446)show +624 203 gm +(6445828)show +624 265 gm +(4.66)show +624 302 gm +(0.42)show +624 339 gm +(0.60)show +624 376 gm +(0.42)show +624 436 gm +(4458)show +624 499 gm +(6.63)show +612 82 gm +0 gr +612 82 lin +612 80 gm +612 80 lin +612 83 gm +612 131 lin +612 134 gm +612 134 lin +612 132 gm +612 132 lin +612 135 gm +612 182 lin +612 185 gm +612 185 lin +612 183 gm +612 183 lin +612 186 gm +612 253 lin +612 256 gm +612 256 lin +612 254 gm +612 254 lin +612 257 gm +612 290 lin +612 293 gm +612 293 lin +612 291 gm +612 291 lin +612 294 gm +612 327 lin +612 330 gm +612 330 lin +612 328 gm +612 328 lin +612 331 gm +612 364 lin +612 367 gm +612 367 lin +612 365 gm +612 365 lin +612 368 gm +612 400 lin +612 403 gm +612 403 lin +612 401 gm +612 401 lin +612 404 gm +612 487 lin +612 490 gm +612 490 lin +612 488 gm +612 488 lin +612 491 gm +612 524 lin +612 527 gm +612 527 lin +612 525 gm +612 525 lin +613 80 gm +626 80 lin +613 82 gm +626 82 lin +629 80 gm +629 82 lin +627 80 gm +629 80 lin +627 82 gm +627 82 lin +627 82 lin +627 83 gm +627 131 lin +629 83 gm +629 131 lin +613 132 gm +626 132 lin +613 134 gm +626 134 lin +627 132 gm +627 134 lin +629 132 gm +629 134 lin +627 135 gm +627 182 lin +629 135 gm +629 182 lin +613 183 gm +626 183 lin +613 185 gm +626 185 lin +627 183 gm +627 185 lin +629 183 gm +629 185 lin +627 186 gm +627 253 lin +629 186 gm +629 253 lin +613 254 gm +626 254 lin +613 256 gm +626 256 lin +627 254 gm +627 256 lin +629 254 gm +629 256 lin +627 257 gm +627 290 lin +629 257 gm +629 290 lin +613 291 gm +626 291 lin +613 293 gm +626 293 lin +627 291 gm +627 293 lin +629 291 gm +629 293 lin +627 294 gm +627 327 lin +629 294 gm +629 327 lin +613 328 gm +626 328 lin +613 330 gm +626 330 lin +627 328 gm +627 330 lin +629 328 gm +629 330 lin +627 331 gm +627 364 lin +629 331 gm +629 364 lin +613 365 gm +626 365 lin +613 367 gm +626 367 lin +627 365 gm +627 367 lin +629 365 gm +629 367 lin +627 368 gm +627 400 lin +629 368 gm +629 400 lin +613 401 gm +626 401 lin +613 403 gm +626 403 lin +627 401 gm +627 403 lin +629 401 gm +629 403 lin +627 404 gm +627 487 lin +629 404 gm +629 487 lin +613 488 gm +626 488 lin +613 490 gm +626 490 lin +627 488 gm +627 490 lin +629 488 gm +629 490 lin +627 491 gm +627 524 lin +629 491 gm +629 524 lin +613 525 gm +626 525 lin +613 527 gm +626 527 lin +629 525 gm +629 527 lin +627 527 gm +629 527 lin +627 525 gm +627 525 lin +627 525 lin +641 79 gm +F 1 setTxMode +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(Fig. 12 )show +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(PVSplit without score sharing)show +657 79 gm +0 fs +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.10940 0. 32 0.01094 0.(PVSplit reduces search overhead with respect to score sharing \(see Fig.11\), however its efficiency is)awidthshow +668 79 gm +0.78536 0. 32 0.07853 0.(lower. Compare the production factors: PVSplit gives very low values \(14% with 11 processors\).)awidthshow +679 79 gm +0.79605 0. 32 0.07960 0.(The reason is the synchronization necessary along the principal variation; we can reduce such an)awidthshow +690 79 gm +(overhead with a more balanced load distribution.)show +701 79 gm +0.02395 0. 32 0.00239 0.(We also have to take into account the fixed cost of each splitting: communication overhead has to be)awidthshow +712 79 gm +(multiplied for each node in the principal variation that is used for parallel splitting.)show +F T cp +%%Page: ? 13 +op +30 28 811 566 fr +0 0 xl +1 1 pen +0 0 gm +(nc 0 0 0 0 6 rc)kp +91 336 gm +(nc 30 28 811 566 6 rc)kp +F 1 setTxMode +0 fs +10 fz +bu fc +2 F /|______Helvetica fnt +bn +(A Comparison of Parallel Search Algorithms)show +773 79 gm +(UBLCS-94-14)show +773 514 gm +(11)show +124 96 gm +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(Procs)show +124 145 gm +(T\312\(sec\))show +124 200 gm +(N\312\(nodes\))show +124 271 gm +(S)show +124 308 gm +(E)show +124 338 gm +(Fpm)show +124 378 gm +(SO)show +124 416 gm +(SS\312\(nodes/sec\))show +124 502 gm +(Sss)show +110 80 gm +0 gr +110 82 lin +110 80 gm +112 80 lin +112 82 gm +112 82 lin +112 82 lin +110 83 gm +110 131 lin +112 83 gm +112 131 lin +110 132 gm +110 134 lin +112 132 gm +112 134 lin +110 135 gm +110 182 lin +112 135 gm +112 182 lin +110 183 gm +110 185 lin +112 183 gm +112 185 lin +110 186 gm +110 253 lin +112 186 gm +112 253 lin +110 254 gm +110 256 lin +112 254 gm +112 256 lin +110 257 gm +110 290 lin +112 257 gm +112 290 lin +110 291 gm +110 293 lin +112 291 gm +112 293 lin +110 294 gm +110 327 lin +112 294 gm +112 327 lin +110 328 gm +110 330 lin +112 328 gm +112 330 lin +110 331 gm +110 364 lin +112 331 gm +112 364 lin +110 365 gm +110 367 lin +112 365 gm +112 367 lin +110 368 gm +110 400 lin +112 368 gm +112 400 lin +110 401 gm +110 403 lin +112 401 gm +112 403 lin +110 404 gm +110 487 lin +112 404 gm +112 487 lin +110 488 gm +110 490 lin +112 488 gm +112 490 lin +110 491 gm +110 524 lin +112 491 gm +112 524 lin +110 525 gm +110 527 lin +112 527 lin +112 525 gm +112 525 lin +112 525 lin +113 80 gm +126 80 lin +113 82 gm +126 82 lin +113 132 gm +126 132 lin +113 134 gm +126 134 lin +113 183 gm +126 183 lin +113 185 gm +126 185 lin +113 254 gm +126 254 lin +113 256 gm +126 256 lin +113 291 gm +126 291 lin +113 293 gm +126 293 lin +113 328 gm +126 328 lin +113 330 gm +126 330 lin +113 365 gm +126 365 lin +113 367 gm +126 367 lin +113 401 gm +126 401 lin +113 403 gm +126 403 lin +113 488 gm +126 488 lin +113 490 gm +126 490 lin +113 525 gm +126 525 lin +113 527 gm +126 527 lin +141 105 gm +F 1 setTxMode +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(1)show +141 149 gm +(6740)show +141 203 gm +(4529971)show +141 269 gm +(---)show +141 306 gm +(---)show +141 343 gm +(---)show +141 380 gm +(---)show +141 439 gm +(672)show +141 503 gm +(---)show +127 82 gm +0 gr +129 82 lin +127 80 gm +129 80 lin +127 83 gm +127 131 lin +129 83 gm +129 131 lin +127 134 gm +127 134 lin +129 132 gm +129 132 lin +127 132 gm +127 132 lin +129 134 gm +129 134 lin +127 135 gm +127 182 lin +129 135 gm +129 182 lin +127 185 gm +127 185 lin +129 183 gm +129 183 lin +127 183 gm +127 183 lin +129 185 gm +129 185 lin +127 186 gm +127 253 lin +129 186 gm +129 253 lin +127 256 gm +127 256 lin +129 254 gm +129 254 lin +127 254 gm +127 254 lin +129 256 gm +129 256 lin +127 257 gm +127 290 lin +129 257 gm +129 290 lin +127 293 gm +127 293 lin +129 291 gm +129 291 lin +127 291 gm +127 291 lin +129 293 gm +129 293 lin +127 294 gm +127 327 lin +129 294 gm +129 327 lin +127 330 gm +127 330 lin +129 328 gm +129 328 lin +127 328 gm +127 328 lin +129 330 gm +129 330 lin +127 331 gm +127 364 lin +129 331 gm +129 364 lin +127 367 gm +127 367 lin +129 365 gm +129 365 lin +127 365 gm +127 365 lin +129 367 gm +129 367 lin +127 368 gm +127 400 lin +129 368 gm +129 400 lin +127 403 gm +127 403 lin +129 401 gm +129 401 lin +127 401 gm +127 401 lin +129 403 gm +129 403 lin +127 404 gm +127 487 lin +129 404 gm +129 487 lin +127 490 gm +127 490 lin +129 488 gm +129 488 lin +127 488 gm +127 488 lin +129 490 gm +129 490 lin +127 491 gm +127 524 lin +129 491 gm +129 524 lin +127 527 gm +129 527 lin +127 525 gm +129 525 lin +130 80 gm +143 80 lin +130 82 gm +143 82 lin +130 132 gm +143 132 lin +130 134 gm +143 134 lin +130 183 gm +143 183 lin +130 185 gm +143 185 lin +130 254 gm +143 254 lin +130 256 gm +143 256 lin +130 291 gm +143 291 lin +130 293 gm +143 293 lin +130 328 gm +143 328 lin +130 330 gm +143 330 lin +130 365 gm +143 365 lin +130 367 gm +143 367 lin +130 401 gm +143 401 lin +130 403 gm +143 403 lin +130 488 gm +143 488 lin +130 490 gm +143 490 lin +130 525 gm +143 525 lin +130 527 gm +143 527 lin +156 105 gm +F 1 setTxMode +(3)show +156 149 gm +(2640)show +156 203 gm +(4770665)show +156 265 gm +(2.55)show +156 302 gm +(0.85)show +156 339 gm +(0.91)show +156 376 gm +(0.05)show +156 436 gm +(1807)show +156 499 gm +(2.69)show +144 82 gm +0 gr +144 82 lin +144 80 gm +144 80 lin +144 83 gm +144 131 lin +144 134 gm +144 134 lin +144 132 gm +144 132 lin +144 135 gm +144 182 lin +144 185 gm +144 185 lin +144 183 gm +144 183 lin +144 186 gm +144 253 lin +144 256 gm +144 256 lin +144 254 gm +144 254 lin +144 257 gm +144 290 lin +144 293 gm +144 293 lin +144 291 gm +144 291 lin +144 294 gm +144 327 lin +144 330 gm +144 330 lin +144 328 gm +144 328 lin +144 331 gm +144 364 lin +144 367 gm +144 367 lin +144 365 gm +144 365 lin +144 368 gm +144 400 lin +144 403 gm +144 403 lin +144 401 gm +144 401 lin +144 404 gm +144 487 lin +144 490 gm +144 490 lin +144 488 gm +144 488 lin +144 491 gm +144 524 lin +144 527 gm +144 527 lin +144 525 gm +144 525 lin +145 80 gm +158 80 lin +145 82 gm +158 82 lin +145 132 gm +158 132 lin +145 134 gm +158 134 lin +145 183 gm +158 183 lin +145 185 gm +158 185 lin +145 254 gm +158 254 lin +145 256 gm +158 256 lin +145 291 gm +158 291 lin +145 293 gm +158 293 lin +145 328 gm +158 328 lin +145 330 gm +158 330 lin +145 365 gm +158 365 lin +145 367 gm +158 367 lin +145 401 gm +158 401 lin +145 403 gm +158 403 lin +145 488 gm +158 488 lin +145 490 gm +158 490 lin +145 525 gm +158 525 lin +145 527 gm +158 527 lin +171 105 gm +F 1 setTxMode +(5)show +171 149 gm +(1797)show +171 203 gm +(5020905)show +171 265 gm +(3.75)show +171 302 gm +(0.75)show +171 339 gm +(0.84)show +171 376 gm +(0.11)show +171 436 gm +(2794)show +171 499 gm +(4.16)show +159 82 gm +0 gr +159 82 lin +159 80 gm +159 80 lin +159 83 gm +159 131 lin +159 134 gm +159 134 lin +159 132 gm +159 132 lin +159 135 gm +159 182 lin +159 185 gm +159 185 lin +159 183 gm +159 183 lin +159 186 gm +159 253 lin +159 256 gm +159 256 lin +159 254 gm +159 254 lin +159 257 gm +159 290 lin +159 293 gm +159 293 lin +159 291 gm +159 291 lin +159 294 gm +159 327 lin +159 330 gm +159 330 lin +159 328 gm +159 328 lin +159 331 gm +159 364 lin +159 367 gm +159 367 lin +159 365 gm +159 365 lin +159 368 gm +159 400 lin +159 403 gm +159 403 lin +159 401 gm +159 401 lin +159 404 gm +159 487 lin +159 490 gm +159 490 lin +159 488 gm +159 488 lin +159 491 gm +159 524 lin +159 527 gm +159 527 lin +159 525 gm +159 525 lin +160 80 gm +173 80 lin +160 82 gm +173 82 lin +160 132 gm +173 132 lin +160 134 gm +173 134 lin +160 183 gm +173 183 lin +160 185 gm +173 185 lin +160 254 gm +173 254 lin +160 256 gm +173 256 lin +160 291 gm +173 291 lin +160 293 gm +173 293 lin +160 328 gm +173 328 lin +160 330 gm +173 330 lin +160 365 gm +173 365 lin +160 367 gm +173 367 lin +160 401 gm +173 401 lin +160 403 gm +173 403 lin +160 488 gm +173 488 lin +160 490 gm +173 490 lin +160 525 gm +173 525 lin +160 527 gm +173 527 lin +186 105 gm +F 1 setTxMode +(7)show +186 149 gm +(1443)show +186 203 gm +(5228542)show +186 265 gm +(4.67)show +186 302 gm +(0.67)show +186 339 gm +(0.77)show +186 376 gm +(0.15)show +186 436 gm +(3623)show +186 499 gm +(5.39)show +174 82 gm +0 gr +174 82 lin +174 80 gm +174 80 lin +174 83 gm +174 131 lin +174 134 gm +174 134 lin +174 132 gm +174 132 lin +174 135 gm +174 182 lin +174 185 gm +174 185 lin +174 183 gm +174 183 lin +174 186 gm +174 253 lin +174 256 gm +174 256 lin +174 254 gm +174 254 lin +174 257 gm +174 290 lin +174 293 gm +174 293 lin +174 291 gm +174 291 lin +174 294 gm +174 327 lin +174 330 gm +174 330 lin +174 328 gm +174 328 lin +174 331 gm +174 364 lin +174 367 gm +174 367 lin +174 365 gm +174 365 lin +174 368 gm +174 400 lin +174 403 gm +174 403 lin +174 401 gm +174 401 lin +174 404 gm +174 487 lin +174 490 gm +174 490 lin +174 488 gm +174 488 lin +174 491 gm +174 524 lin +174 527 gm +174 527 lin +174 525 gm +174 525 lin +175 80 gm +188 80 lin +175 82 gm +188 82 lin +175 132 gm +188 132 lin +175 134 gm +188 134 lin +175 183 gm +188 183 lin +175 185 gm +188 185 lin +175 254 gm +188 254 lin +175 256 gm +188 256 lin +175 291 gm +188 291 lin +175 293 gm +188 293 lin +175 328 gm +188 328 lin +175 330 gm +188 330 lin +175 365 gm +188 365 lin +175 367 gm +188 367 lin +175 401 gm +188 401 lin +175 403 gm +188 403 lin +175 488 gm +188 488 lin +175 490 gm +188 490 lin +175 525 gm +188 525 lin +175 527 gm +188 527 lin +201 105 gm +F 1 setTxMode +(9)show +201 149 gm +(1255)show +201 203 gm +(5358664)show +201 265 gm +(5.37)show +201 302 gm +(0.60)show +201 339 gm +(0.71)show +201 376 gm +(0.18)show +201 436 gm +(4270)show +201 499 gm +(6.35)show +189 82 gm +0 gr +189 82 lin +189 80 gm +189 80 lin +189 83 gm +189 131 lin +189 134 gm +189 134 lin +189 132 gm +189 132 lin +189 135 gm +189 182 lin +189 185 gm +189 185 lin +189 183 gm +189 183 lin +189 186 gm +189 253 lin +189 256 gm +189 256 lin +189 254 gm +189 254 lin +189 257 gm +189 290 lin +189 293 gm +189 293 lin +189 291 gm +189 291 lin +189 294 gm +189 327 lin +189 330 gm +189 330 lin +189 328 gm +189 328 lin +189 331 gm +189 364 lin +189 367 gm +189 367 lin +189 365 gm +189 365 lin +189 368 gm +189 400 lin +189 403 gm +189 403 lin +189 401 gm +189 401 lin +189 404 gm +189 487 lin +189 490 gm +189 490 lin +189 488 gm +189 488 lin +189 491 gm +189 524 lin +189 527 gm +189 527 lin +189 525 gm +189 525 lin +190 80 gm +203 80 lin +190 82 gm +203 82 lin +190 132 gm +203 132 lin +190 134 gm +203 134 lin +190 183 gm +203 183 lin +190 185 gm +203 185 lin +190 254 gm +203 254 lin +190 256 gm +203 256 lin +190 291 gm +203 291 lin +190 293 gm +203 293 lin +190 328 gm +203 328 lin +190 330 gm +203 330 lin +190 365 gm +203 365 lin +190 367 gm +203 367 lin +190 401 gm +203 401 lin +190 403 gm +203 403 lin +190 488 gm +203 488 lin +190 490 gm +203 490 lin +190 525 gm +203 525 lin +190 527 gm +203 527 lin +216 103 gm +F 1 setTxMode +(11)show +216 149 gm +(1210)show +216 203 gm +(5704328)show +216 265 gm +(5.57)show +216 302 gm +(0.51)show +216 339 gm +(0.64)show +216 376 gm +(0.26)show +216 436 gm +(4714)show +216 499 gm +(7.01)show +204 82 gm +0 gr +204 82 lin +204 80 gm +204 80 lin +204 83 gm +204 131 lin +204 134 gm +204 134 lin +204 132 gm +204 132 lin +204 135 gm +204 182 lin +204 185 gm +204 185 lin +204 183 gm +204 183 lin +204 186 gm +204 253 lin +204 256 gm +204 256 lin +204 254 gm +204 254 lin +204 257 gm +204 290 lin +204 293 gm +204 293 lin +204 291 gm +204 291 lin +204 294 gm +204 327 lin +204 330 gm +204 330 lin +204 328 gm +204 328 lin +204 331 gm +204 364 lin +204 367 gm +204 367 lin +204 365 gm +204 365 lin +204 368 gm +204 400 lin +204 403 gm +204 403 lin +204 401 gm +204 401 lin +204 404 gm +204 487 lin +204 490 gm +204 490 lin +204 488 gm +204 488 lin +204 491 gm +204 524 lin +204 527 gm +204 527 lin +204 525 gm +204 525 lin +205 80 gm +218 80 lin +205 82 gm +218 82 lin +221 80 gm +221 82 lin +219 80 gm +221 80 lin +219 82 gm +219 82 lin +219 82 lin +219 83 gm +219 131 lin +221 83 gm +221 131 lin +205 132 gm +218 132 lin +205 134 gm +218 134 lin +219 132 gm +219 134 lin +221 132 gm +221 134 lin +219 135 gm +219 182 lin +221 135 gm +221 182 lin +205 183 gm +218 183 lin +205 185 gm +218 185 lin +219 183 gm +219 185 lin +221 183 gm +221 185 lin +219 186 gm +219 253 lin +221 186 gm +221 253 lin +205 254 gm +218 254 lin +205 256 gm +218 256 lin +219 254 gm +219 256 lin +221 254 gm +221 256 lin +219 257 gm +219 290 lin +221 257 gm +221 290 lin +205 291 gm +218 291 lin +205 293 gm +218 293 lin +219 291 gm +219 293 lin +221 291 gm +221 293 lin +219 294 gm +219 327 lin +221 294 gm +221 327 lin +205 328 gm +218 328 lin +205 330 gm +218 330 lin +219 328 gm +219 330 lin +221 328 gm +221 330 lin +219 331 gm +219 364 lin +221 331 gm +221 364 lin +205 365 gm +218 365 lin +205 367 gm +218 367 lin +219 365 gm +219 367 lin +221 365 gm +221 367 lin +219 368 gm +219 400 lin +221 368 gm +221 400 lin +205 401 gm +218 401 lin +205 403 gm +218 403 lin +219 401 gm +219 403 lin +221 401 gm +221 403 lin +219 404 gm +219 487 lin +221 404 gm +221 487 lin +205 488 gm +218 488 lin +205 490 gm +218 490 lin +219 488 gm +219 490 lin +221 488 gm +221 490 lin +219 491 gm +219 524 lin +221 491 gm +221 524 lin +205 525 gm +218 525 lin +205 527 gm +218 527 lin +221 525 gm +221 527 lin +219 527 gm +221 527 lin +219 525 gm +219 525 lin +219 525 lin +233 79 gm +F 1 setTxMode +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(Fig.13)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +( )show +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(PVSplit with score sharing)show +249 79 gm +0 fs +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.65200 0. 32 0.06520 0.(Applying score sharing to PVSplit we reduce search overhead without loss \(Fig.13\): in fact, these)awidthshow +260 79 gm +(heuristics handle different parts of the game tree:)show +272 88 gm +(\245\312PVSplit is used in search of subtrees 2..P \(if we use P processors\))show +285 88 gm +(\245\312score sharing is used for subtrees after the Pth subtree.)show +297 79 gm +0.34881 0. 32 0.03488 0.(This algorithm gives the best speedups among those we have tested. We remark that there is a high)awidthshow +308 79 gm +(synchronization overhead caused by nodes along the principal variation.)show +338 79 gm +1 fs +12 fz +bu fc +2 F /|______Times-Bold fnt +bn +(5. Dynamic splitting)show +351 79 gm +0 fs +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.84838 0. 32 0.08483 0.(The main problem with static splitting is load distribution. The master-worker model is based on)awidthshow +362 79 gm +0.72189 0. 32 0.07218 0.(sequential jobs that are perfomed without attempting to parallelize them and are assigned without)awidthshow +377 79 gm +1.80435 0. 32 0.18043 0.(estimating the computational costs. Since for parallel )awidthshow +377 337 gm +bu fc +2 F /|______Symbol fnt +bn +0.74351 0.(ab)ashow +bu fc +2 F /|______Times-Roman fnt +bn +1.89697 0. 32 0.18969 0.( we cannot schedule jobs aiming at)awidthshow +389 79 gm +(minimizing idle times, there is no way of dynamically balancing the load.)show +419 79 gm +1 fs +12 fz +bu fc +2 F /|______Times-Bold fnt +bn +(5.1 Dynamic job allocation)show +432 79 gm +0 fs +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.39657 0. 32 0.03965 0.(A first solution to this problem consists of avoiding \322atomic\323 sequential jobs. We defined a variant)awidthshow +443 79 gm +0.75973 0. 32 0.07597 0.(of the core algorithm in which when there are no more jobs in the agenda the workers that finish)awidthshow +454 79 gm +0.38314 0. 32 0.03831 0.(their jobs help the busy ones. This means that a busy worker accepts help and splits its search tree,)awidthshow +465 79 gm +0.56610 0. 32 0.05661 0.(becoming a supervisor. We will apply this idea only to children of the root node. Since we cannot)awidthshow +476 79 gm +0.63034 0. 32 0.06303 0.(forecast how long the evaluation of a subtree will take, nor which nodes will be assigned to other)awidthshow +487 79 gm +(processors, we classify this a dynamic splitting algorithm.)show +498 79 gm +1.57165 0. 32 0.15716 0.(There are several choice to implement cooperation among workers: we have implemented the)awidthshow +509 79 gm +(following one.)show +521 88 gm +1.35116 0. 32 0.13511 0.(\245\312An explorer E)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.20555 0.(f)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +1.13021 0. 32 0.11302 0.( completes a search job and finds an empty agenda; however, there are other)awidthshow +532 101 gm +(workers still busy. E)show +532 191 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(f)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +( notifies to be free to a busy worker E)show +532 359 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(r)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +( ;)show +545 88 gm +(\245\312E)show +545 101 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(r)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +( decomposes its subtree S, and sends tasks to free explorers;)show +557 79 gm +(Processes that cooperate to the search are dynamically partitioned in three sets:)show +569 88 gm +(\245\312set F of processes that completed their tasks and become free;)show +582 88 gm +(\245\312set R)show +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(p)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +( of processes that distribute their subtrees;)show +595 88 gm +(\245\312set R)show +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(s)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +( of processes that sequentially evaluate their subtrees.)show +F T cp +%%Page: ? 14 +op +30 28 811 566 fr +0 0 xl +1 1 pen +0 0 gm +(nc 0 0 0 0 6 rc)kp +91 336 gm +(nc 30 28 811 566 6 rc)kp +F 1 setTxMode +0 fs +10 fz +bu fc +2 F /|______Helvetica fnt +bn +(A Comparison of Parallel Search Algorithms)show +773 79 gm +(UBLCS-94-14)show +773 514 gm +(12)show +781 538 734 505 th +158 243 gm +tu +(nc 110 104 505 499 6 rc)kp +ts +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(P1)show +tu +ts +157 270 gm +(P2)show +tu +ts +158 297 gm +(P3)show +tu +ts +158 322 gm +(P4)show +tu +0 gr +146.5 238.5 163.5 256.5 0 rc +146.5 266.5 163.5 284.5 0 rc +146.5 293.5 163.5 310.5 0 rc +146.5 318.5 163.5 335.5 0 rc +ts +238 253 gm +F 1 setTxMode +(P1)show +tu +ts +237 279 gm +(P2)show +tu +ts +238 306 gm +(P4)show +tu +ts +281 279 gm +(P3)show +tu +0 gr +226.5 248.5 243.5 266.5 0 rc +226.5 275.5 243.5 293.5 0 rc +226.5 302.5 243.5 319.5 0 rc +269.5 275.5 286.5 292.5 0 rc +244 284 gm +269 284 lin +ts +346 260 gm +F 1 setTxMode +(P1)show +tu +ts +345 295 gm +(P4)show +tu +ts +391 258 gm +(P2)show +tu +0 gr +334.5 255.5 352.5 272.5 0 rc +334.5 291.5 351.5 309.5 0 rc +379.5 254.5 396.5 272.5 0 rc +ts +390 295 gm +F 1 setTxMode +(P3)show +tu +0 gr +378.5 291.5 396.5 308.5 0 rc +352 263 gm +378 263 lin +ts +147 361 gm +F 1 setTxMode +(Rs={P1,P2,P3,P4})show +157 361 gm +(Rp=)show +167 361 gm +(F=)show +tu +ts +250 372 gm +(Rs={P1,P4})show +260 372 gm +(Rp={P2})show +271 372 gm +(F={P3})show +tu +352 263 gm +0 gr +378 300 lin +ts +356 374 gm +F 1 setTxMode +(Rs={P4})show +367 374 gm +(Rp={P1})show +377 374 gm +(F={P2,P3})show +tu +ts +465 371 gm +(Rs=)show +475 371 gm +(Rp={P4})show +485 371 gm +(F={P1,P2,P3})show +tu +0 gr +136.5 358.5 174.5 431.5 0 rc +239.5 358.5 276.5 431.5 0 rc +347.5 358.5 385.5 431.5 0 rc +453.5 358.5 491.5 431.5 0 rc +ts +498 249 gm +F 1 setTxMode +(P1)show +tu +ts +497 276 gm +(P2)show +tu +ts +498 302 gm +(P3)show +tu +0 gr +486.5 245.5 503.5 262.5 0 rc +486.5 272.5 503.5 289.5 0 rc +486.5 299.5 503.5 316.5 0 rc +459 280 gm +486 280 lin +459 281 gm +486 308 lin +459 280 gm +486 253 lin +ts +453 276 gm +F 1 setTxMode +(P4)show +tu +0 gr +442.5 271.5 459.5 288.5 0 rc +pr +226 396 pl +216 392 pl +216 396 pl +216 398 pl +226 396 pl +4 ep +188 396 gm +216 396 lin +pr +332 396 pl +323 392 pl +323 396 pl +323 398 pl +332 396 pl +4 ep +295 396 gm +323 396 lin +pr +439 396 pl +430 392 pl +430 396 pl +430 398 pl +439 396 pl +4 ep +402 396 gm +430 396 lin +ts +246 108 gm +F 1 setTxMode +(democratic cooperation)show +257 108 gm +(at first level;)show +267 108 gm +(master-worker)show +277 108 gm +(with second level)show +tu +0 gr +427.5 106.5 443.5 216.5 0 rc +239.5 106.5 290.5 206.5 0 rc +164.5 110.5 180.5 214.5 0 rc +pr +159 229 pl +165 222 pl +162 221 pl +158 220 pl +159 229 pl +4 ep +164 212 gm +158 234 lin +pr +259 247 pl +264 238 pl +260 238 pl +258 237 pl +259 247 pl +4 ep +266 207 gm +260 238 lin +pr +332 242 pl +325 236 pl +323 238 pl +322 241 pl +332 242 pl +4 ep +265 207 gm +323 238 lin +pr +458 245 pl +454 236 pl +451 238 pl +449 239 pl +458 245 pl +4 ep +434 216 gm +451 238 lin +ts +175 112 gm +F 1 setTxMode +(democratic cooperation)show +tu +ts +465 386 gm +bu fc +2 F /|______Symbol fnt +bn +(\306)show +tu +ts +167 371 gm +(\306)show +tu +ts +158 377 gm +(\306)show +tu +ts +194 405 gm +bu fc +2 F /|______Helvetica fnt +bn +(P3 terminates a search)show +204 405 gm +(and informs P2;)show +214 405 gm +(P2 distributes a subtree)show +tu +ts +302 408 gm +(P2 terminates;)show +312 408 gm +(P1 distributes)show +323 408 gm +(two subtrees)show +tu +ts +410 405 gm +(P1 terminates;)show +420 405 gm +(P4 distributes)show +431 405 gm +(three subtrees)show +tu +ts +438 114 gm +(pure master-worker)show +tu +99 77 gm +(nc 30 28 811 566 6 rc)kp +0 gr +99 525 lin +544 244 gm +F 1 setTxMode +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(Fig.14)show +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +( Dynamic splitting)show +562 77 gm +0 gr +562 525 lin +581 79 gm +F 1 setTxMode +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.55099 0. 32 0.05509 0.(In this way we put a limit to the splittings that can happen at run-time, that are expensive: at most)awidthshow +592 79 gm +0.97015 0. 32 0.09701 0.(they are #F. Thus, the algorithm executed by each worker on its own subtree amounts to classic)awidthshow +603 79 gm +0.13885 0. 32 0.01388 0.(alphabeta until another worker declares to be available to help, after that the master-worker model is)awidthshow +614 79 gm +(used. The following table summarizes the results obtained with this algorithm.)show +643 96 gm +1 fs +10 fz +bu fc +2 F /|______Times-Bold fnt +bn +(Procs)show +643 145 gm +(T\312\(sec\))show +643 200 gm +(N\312\(nodes\))show +643 271 gm +(S)show +643 308 gm +(E)show +643 338 gm +(Fpm)show +643 378 gm +(SO)show +643 416 gm +(SS\312\(nodes/sec\))show +643 502 gm +(Sss)show +629 80 gm +0 gr +629 82 lin +629 80 gm +631 80 lin +631 82 gm +631 82 lin +631 82 lin +629 83 gm +629 131 lin +631 83 gm +631 131 lin +629 132 gm +629 134 lin +631 132 gm +631 134 lin +629 135 gm +629 182 lin +631 135 gm +631 182 lin +629 183 gm +629 185 lin +631 183 gm +631 185 lin +629 186 gm +629 253 lin +631 186 gm +631 253 lin +629 254 gm +629 256 lin +631 254 gm +631 256 lin +629 257 gm +629 290 lin +631 257 gm +631 290 lin +629 291 gm +629 293 lin +631 291 gm +631 293 lin +629 294 gm +629 327 lin +631 294 gm +631 327 lin +629 328 gm +629 330 lin +631 328 gm +631 330 lin +629 331 gm +629 364 lin +631 331 gm +631 364 lin +629 365 gm +629 367 lin +631 365 gm +631 367 lin +629 368 gm +629 400 lin +631 368 gm +631 400 lin +629 401 gm +629 403 lin +631 401 gm +631 403 lin +629 404 gm +629 487 lin +631 404 gm +631 487 lin +629 488 gm +629 490 lin +631 488 gm +631 490 lin +629 491 gm +629 524 lin +631 491 gm +631 524 lin +629 525 gm +629 527 lin +631 527 lin +631 525 gm +631 525 lin +631 525 lin +632 80 gm +645 80 lin +632 82 gm +645 82 lin +632 132 gm +645 132 lin +632 134 gm +645 134 lin +632 183 gm +645 183 lin +632 185 gm +645 185 lin +632 254 gm +645 254 lin +632 256 gm +645 256 lin +632 291 gm +645 291 lin +632 293 gm +645 293 lin +632 328 gm +645 328 lin +632 330 gm +645 330 lin +632 365 gm +645 365 lin +632 367 gm +645 367 lin +632 401 gm +645 401 lin +632 403 gm +645 403 lin +632 488 gm +645 488 lin +632 490 gm +645 490 lin +632 525 gm +645 525 lin +632 527 gm +645 527 lin +660 105 gm +F 1 setTxMode +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(1)show +660 149 gm +(6740)show +660 203 gm +(4529971)show +660 269 gm +(---)show +660 306 gm +(---)show +660 343 gm +(---)show +660 380 gm +(---)show +660 439 gm +(672)show +660 503 gm +(---)show +646 82 gm +0 gr +648 82 lin +646 80 gm +648 80 lin +646 83 gm +646 131 lin +648 83 gm +648 131 lin +646 134 gm +646 134 lin +648 132 gm +648 132 lin +646 132 gm +646 132 lin +648 134 gm +648 134 lin +646 135 gm +646 182 lin +648 135 gm +648 182 lin +646 185 gm +646 185 lin +648 183 gm +648 183 lin +646 183 gm +646 183 lin +648 185 gm +648 185 lin +646 186 gm +646 253 lin +648 186 gm +648 253 lin +646 256 gm +646 256 lin +648 254 gm +648 254 lin +646 254 gm +646 254 lin +648 256 gm +648 256 lin +646 257 gm +646 290 lin +648 257 gm +648 290 lin +646 293 gm +646 293 lin +648 291 gm +648 291 lin +646 291 gm +646 291 lin +648 293 gm +648 293 lin +646 294 gm +646 327 lin +648 294 gm +648 327 lin +646 330 gm +646 330 lin +648 328 gm +648 328 lin +646 328 gm +646 328 lin +648 330 gm +648 330 lin +646 331 gm +646 364 lin +648 331 gm +648 364 lin +646 367 gm +646 367 lin +648 365 gm +648 365 lin +646 365 gm +646 365 lin +648 367 gm +648 367 lin +646 368 gm +646 400 lin +648 368 gm +648 400 lin +646 403 gm +646 403 lin +648 401 gm +648 401 lin +646 401 gm +646 401 lin +648 403 gm +648 403 lin +646 404 gm +646 487 lin +648 404 gm +648 487 lin +646 490 gm +646 490 lin +648 488 gm +648 488 lin +646 488 gm +646 488 lin +648 490 gm +648 490 lin +646 491 gm +646 524 lin +648 491 gm +648 524 lin +646 527 gm +648 527 lin +646 525 gm +648 525 lin +649 80 gm +662 80 lin +649 82 gm +662 82 lin +649 132 gm +662 132 lin +649 134 gm +662 134 lin +649 183 gm +662 183 lin +649 185 gm +662 185 lin +649 254 gm +662 254 lin +649 256 gm +662 256 lin +649 291 gm +662 291 lin +649 293 gm +662 293 lin +649 328 gm +662 328 lin +649 330 gm +662 330 lin +649 365 gm +662 365 lin +649 367 gm +662 367 lin +649 401 gm +662 401 lin +649 403 gm +662 403 lin +649 488 gm +662 488 lin +649 490 gm +662 490 lin +649 525 gm +662 525 lin +649 527 gm +662 527 lin +675 105 gm +F 1 setTxMode +(3)show +675 149 gm +(3019)show +675 203 gm +(5251659)show +675 265 gm +(2.23)show +675 302 gm +(0.74)show +675 339 gm +(0.93)show +675 376 gm +(0.16)show +675 436 gm +(1740)show +675 499 gm +(2.59)show +663 82 gm +0 gr +663 82 lin +663 80 gm +663 80 lin +663 83 gm +663 131 lin +663 134 gm +663 134 lin +663 132 gm +663 132 lin +663 135 gm +663 182 lin +663 185 gm +663 185 lin +663 183 gm +663 183 lin +663 186 gm +663 253 lin +663 256 gm +663 256 lin +663 254 gm +663 254 lin +663 257 gm +663 290 lin +663 293 gm +663 293 lin +663 291 gm +663 291 lin +663 294 gm +663 327 lin +663 330 gm +663 330 lin +663 328 gm +663 328 lin +663 331 gm +663 364 lin +663 367 gm +663 367 lin +663 365 gm +663 365 lin +663 368 gm +663 400 lin +663 403 gm +663 403 lin +663 401 gm +663 401 lin +663 404 gm +663 487 lin +663 490 gm +663 490 lin +663 488 gm +663 488 lin +663 491 gm +663 524 lin +663 527 gm +663 527 lin +663 525 gm +663 525 lin +664 80 gm +677 80 lin +664 82 gm +677 82 lin +664 132 gm +677 132 lin +664 134 gm +677 134 lin +664 183 gm +677 183 lin +664 185 gm +677 185 lin +664 254 gm +677 254 lin +664 256 gm +677 256 lin +664 291 gm +677 291 lin +664 293 gm +677 293 lin +664 328 gm +677 328 lin +664 330 gm +677 330 lin +664 365 gm +677 365 lin +664 367 gm +677 367 lin +664 401 gm +677 401 lin +664 403 gm +677 403 lin +664 488 gm +677 488 lin +664 490 gm +677 490 lin +664 525 gm +677 525 lin +664 527 gm +677 527 lin +690 105 gm +F 1 setTxMode +(5)show +690 149 gm +(2216)show +690 203 gm +(6322002)show +690 265 gm +(3.04)show +690 302 gm +(0.61)show +690 339 gm +(0.92)show +690 376 gm +(0.40)show +690 436 gm +(2853)show +690 499 gm +(4.24)show +678 82 gm +0 gr +678 82 lin +678 80 gm +678 80 lin +678 83 gm +678 131 lin +678 134 gm +678 134 lin +678 132 gm +678 132 lin +678 135 gm +678 182 lin +678 185 gm +678 185 lin +678 183 gm +678 183 lin +678 186 gm +678 253 lin +678 256 gm +678 256 lin +678 254 gm +678 254 lin +678 257 gm +678 290 lin +678 293 gm +678 293 lin +678 291 gm +678 291 lin +678 294 gm +678 327 lin +678 330 gm +678 330 lin +678 328 gm +678 328 lin +678 331 gm +678 364 lin +678 367 gm +678 367 lin +678 365 gm +678 365 lin +678 368 gm +678 400 lin +678 403 gm +678 403 lin +678 401 gm +678 401 lin +678 404 gm +678 487 lin +678 490 gm +678 490 lin +678 488 gm +678 488 lin +678 491 gm +678 524 lin +678 527 gm +678 527 lin +678 525 gm +678 525 lin +679 80 gm +692 80 lin +679 82 gm +692 82 lin +679 132 gm +692 132 lin +679 134 gm +692 134 lin +679 183 gm +692 183 lin +679 185 gm +692 185 lin +679 254 gm +692 254 lin +679 256 gm +692 256 lin +679 291 gm +692 291 lin +679 293 gm +692 293 lin +679 328 gm +692 328 lin +679 330 gm +692 330 lin +679 365 gm +692 365 lin +679 367 gm +692 367 lin +679 401 gm +692 401 lin +679 403 gm +692 403 lin +679 488 gm +692 488 lin +679 490 gm +692 490 lin +679 525 gm +692 525 lin +679 527 gm +692 527 lin +705 105 gm +F 1 setTxMode +(7)show +705 149 gm +(1921)show +705 203 gm +(7291629)show +705 265 gm +(3.51)show +705 302 gm +(0.50)show +705 339 gm +(0.91)show +705 376 gm +(0.61)show +705 436 gm +(3796)show +705 499 gm +(5.65)show +693 82 gm +0 gr +693 82 lin +693 80 gm +693 80 lin +693 83 gm +693 131 lin +693 134 gm +693 134 lin +693 132 gm +693 132 lin +693 135 gm +693 182 lin +693 185 gm +693 185 lin +693 183 gm +693 183 lin +693 186 gm +693 253 lin +693 256 gm +693 256 lin +693 254 gm +693 254 lin +693 257 gm +693 290 lin +693 293 gm +693 293 lin +693 291 gm +693 291 lin +693 294 gm +693 327 lin +693 330 gm +693 330 lin +693 328 gm +693 328 lin +693 331 gm +693 364 lin +693 367 gm +693 367 lin +693 365 gm +693 365 lin +693 368 gm +693 400 lin +693 403 gm +693 403 lin +693 401 gm +693 401 lin +693 404 gm +693 487 lin +693 490 gm +693 490 lin +693 488 gm +693 488 lin +693 491 gm +693 524 lin +693 527 gm +693 527 lin +693 525 gm +693 525 lin +694 80 gm +707 80 lin +694 82 gm +707 82 lin +694 132 gm +707 132 lin +694 134 gm +707 134 lin +694 183 gm +707 183 lin +694 185 gm +707 185 lin +694 254 gm +707 254 lin +694 256 gm +707 256 lin +694 291 gm +707 291 lin +694 293 gm +707 293 lin +694 328 gm +707 328 lin +694 330 gm +707 330 lin +694 365 gm +707 365 lin +694 367 gm +707 367 lin +694 401 gm +707 401 lin +694 403 gm +707 403 lin +694 488 gm +707 488 lin +694 490 gm +707 490 lin +694 525 gm +707 525 lin +694 527 gm +707 527 lin +720 105 gm +F 1 setTxMode +(9)show +720 149 gm +(1721)show +720 203 gm +(8300115)show +720 265 gm +(3.92)show +720 302 gm +(0.44)show +720 339 gm +(0.91)show +720 376 gm +(0.83)show +720 436 gm +(4823)show +720 499 gm +(7.18)show +708 82 gm +0 gr +708 82 lin +708 80 gm +708 80 lin +708 83 gm +708 131 lin +708 134 gm +708 134 lin +708 132 gm +708 132 lin +708 135 gm +708 182 lin +708 185 gm +708 185 lin +708 183 gm +708 183 lin +708 186 gm +708 253 lin +708 256 gm +708 256 lin +708 254 gm +708 254 lin +708 257 gm +708 290 lin +708 293 gm +708 293 lin +708 291 gm +708 291 lin +708 294 gm +708 327 lin +708 330 gm +708 330 lin +708 328 gm +708 328 lin +708 331 gm +708 364 lin +708 367 gm +708 367 lin +708 365 gm +708 365 lin +708 368 gm +708 400 lin +708 403 gm +708 403 lin +708 401 gm +708 401 lin +708 404 gm +708 487 lin +708 490 gm +708 490 lin +708 488 gm +708 488 lin +708 491 gm +708 524 lin +708 527 gm +708 527 lin +708 525 gm +708 525 lin +709 80 gm +722 80 lin +709 82 gm +722 82 lin +709 132 gm +722 132 lin +709 134 gm +722 134 lin +709 183 gm +722 183 lin +709 185 gm +722 185 lin +709 254 gm +722 254 lin +709 256 gm +722 256 lin +709 291 gm +722 291 lin +709 293 gm +722 293 lin +709 328 gm +722 328 lin +709 330 gm +722 330 lin +709 365 gm +722 365 lin +709 367 gm +722 367 lin +709 401 gm +722 401 lin +709 403 gm +722 403 lin +709 488 gm +722 488 lin +709 490 gm +722 490 lin +709 525 gm +722 525 lin +709 527 gm +722 527 lin +735 103 gm +F 1 setTxMode +(11)show +735 149 gm +(1600)show +735 203 gm +(9439299)show +735 265 gm +(4.21)show +735 302 gm +(0.38)show +735 339 gm +(0.90)show +735 376 gm +(1.08)show +735 436 gm +(5900)show +735 499 gm +(8.78)show +723 82 gm +0 gr +723 82 lin +723 80 gm +723 80 lin +723 83 gm +723 131 lin +723 134 gm +723 134 lin +723 132 gm +723 132 lin +723 135 gm +723 182 lin +723 185 gm +723 185 lin +723 183 gm +723 183 lin +723 186 gm +723 253 lin +723 256 gm +723 256 lin +723 254 gm +723 254 lin +723 257 gm +723 290 lin +723 293 gm +723 293 lin +723 291 gm +723 291 lin +723 294 gm +723 327 lin +723 330 gm +723 330 lin +723 328 gm +723 328 lin +723 331 gm +723 364 lin +723 367 gm +723 367 lin +723 365 gm +723 365 lin +723 368 gm +723 400 lin +723 403 gm +723 403 lin +723 401 gm +723 401 lin +723 404 gm +723 487 lin +723 490 gm +723 490 lin +723 488 gm +723 488 lin +723 491 gm +723 524 lin +723 527 gm +723 527 lin +723 525 gm +723 525 lin +724 80 gm +737 80 lin +724 82 gm +737 82 lin +740 80 gm +740 82 lin +738 80 gm +740 80 lin +738 82 gm +738 82 lin +738 82 lin +738 83 gm +738 131 lin +740 83 gm +740 131 lin +724 132 gm +737 132 lin +724 134 gm +737 134 lin +738 132 gm +738 134 lin +740 132 gm +740 134 lin +738 135 gm +738 182 lin +740 135 gm +740 182 lin +724 183 gm +737 183 lin +724 185 gm +737 185 lin +738 183 gm +738 185 lin +740 183 gm +740 185 lin +738 186 gm +738 253 lin +740 186 gm +740 253 lin +724 254 gm +737 254 lin +724 256 gm +737 256 lin +738 254 gm +738 256 lin +740 254 gm +740 256 lin +738 257 gm +738 290 lin +740 257 gm +740 290 lin +724 291 gm +737 291 lin +724 293 gm +737 293 lin +738 291 gm +738 293 lin +740 291 gm +740 293 lin +738 294 gm +738 327 lin +740 294 gm +740 327 lin +724 328 gm +737 328 lin +724 330 gm +737 330 lin +738 328 gm +738 330 lin +740 328 gm +740 330 lin +738 331 gm +738 364 lin +740 331 gm +740 364 lin +724 365 gm +737 365 lin +724 367 gm +737 367 lin +738 365 gm +738 367 lin +740 365 gm +740 367 lin +738 368 gm +738 400 lin +740 368 gm +740 400 lin +724 401 gm +737 401 lin +724 403 gm +737 403 lin +738 401 gm +738 403 lin +740 401 gm +740 403 lin +738 404 gm +738 487 lin +740 404 gm +740 487 lin +724 488 gm +737 488 lin +724 490 gm +737 490 lin +738 488 gm +738 490 lin +740 488 gm +740 490 lin +738 491 gm +738 524 lin +740 491 gm +740 524 lin +724 525 gm +737 525 lin +724 527 gm +737 527 lin +740 525 gm +740 527 lin +738 527 gm +740 527 lin +738 525 gm +738 525 lin +738 525 lin +752 79 gm +F 1 setTxMode +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(Fig.15)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +( )show +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(Dynamic splitting of top level)show +F T cp +%%Page: ? 15 +op +30 28 811 566 fr +0 0 xl +1 1 pen +0 0 gm +(nc 0 0 0 0 6 rc)kp +91 336 gm +(nc 30 28 811 566 6 rc)kp +F 1 setTxMode +0 fs +10 fz +bu fc +2 F /|______Helvetica fnt +bn +(A Comparison of Parallel Search Algorithms)show +773 79 gm +(UBLCS-94-14)show +773 514 gm +(13)show +122 79 gm +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +1.24938 0. 32 0.12493 0.(Compare this table with Fig.9. The average production factor is improved \(0.71)awidthshow +122 452 gm +bu fc +2 F /|______Symbol fnt +bn +0.69747 0.(\256)ashow +bu fc +2 F /|______Times-Roman fnt +bn +1.14624 0. 32 0.11462 0.(0.90 with 11)awidthshow +134 79 gm +1.77536 0. 32 0.17753 0.(processors\): this means that load balancing was better. More interestingly, such parameter is)awidthshow +145 79 gm +0.11734 0. 32 0.01173 0.(constant: the difference between 3 and 11 processors amounts only to 3%, so that there is little room)awidthshow +156 79 gm +0.57464 0. 32 0.05746 0.(to improve such values applying dynamic splitting also at lower levels of the game tree. Although)awidthshow +167 79 gm +0.54336 0. 32 0.05433 0.(search overhead is very high \(108% with 11 processors\), this waste does not overcome the gain in)awidthshow +178 79 gm +(synchronisation overhead.)show +189 79 gm +0.50170 0. 32 0.05017 0.(We have also tested a dynamic version of PVSplit, enriched with iterative deepening and top level)awidthshow +200 79 gm +(sorting; no global score is implemented \(Fig.16\).)show +229 96 gm +1 fs +10 fz +bu fc +2 F /|______Times-Bold fnt +bn +(Procs)show +229 145 gm +(T\312\(sec\))show +229 200 gm +(N\312\(nodes\))show +229 271 gm +(S)show +229 308 gm +(E)show +229 338 gm +(Fpm)show +229 378 gm +(SO)show +229 416 gm +(SS\312\(nodes/sec\))show +229 504 gm +(Ss)show +215 80 gm +0 gr +215 82 lin +215 80 gm +217 80 lin +217 82 gm +217 82 lin +217 82 lin +215 83 gm +215 131 lin +217 83 gm +217 131 lin +215 132 gm +215 134 lin +217 132 gm +217 134 lin +215 135 gm +215 182 lin +217 135 gm +217 182 lin +215 183 gm +215 185 lin +217 183 gm +217 185 lin +215 186 gm +215 253 lin +217 186 gm +217 253 lin +215 254 gm +215 256 lin +217 254 gm +217 256 lin +215 257 gm +215 290 lin +217 257 gm +217 290 lin +215 291 gm +215 293 lin +217 291 gm +217 293 lin +215 294 gm +215 327 lin +217 294 gm +217 327 lin +215 328 gm +215 330 lin +217 328 gm +217 330 lin +215 331 gm +215 364 lin +217 331 gm +217 364 lin +215 365 gm +215 367 lin +217 365 gm +217 367 lin +215 368 gm +215 400 lin +217 368 gm +217 400 lin +215 401 gm +215 403 lin +217 401 gm +217 403 lin +215 404 gm +215 487 lin +217 404 gm +217 487 lin +215 488 gm +215 490 lin +217 488 gm +217 490 lin +215 491 gm +215 524 lin +217 491 gm +217 524 lin +215 525 gm +215 527 lin +217 527 lin +217 525 gm +217 525 lin +217 525 lin +218 80 gm +231 80 lin +218 82 gm +231 82 lin +218 132 gm +231 132 lin +218 134 gm +231 134 lin +218 183 gm +231 183 lin +218 185 gm +231 185 lin +218 254 gm +231 254 lin +218 256 gm +231 256 lin +218 291 gm +231 291 lin +218 293 gm +231 293 lin +218 328 gm +231 328 lin +218 330 gm +231 330 lin +218 365 gm +231 365 lin +218 367 gm +231 367 lin +218 401 gm +231 401 lin +218 403 gm +231 403 lin +218 488 gm +231 488 lin +218 490 gm +231 490 lin +218 525 gm +231 525 lin +218 527 gm +231 527 lin +246 105 gm +F 1 setTxMode +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(1)show +246 149 gm +(6740)show +246 203 gm +(4529971)show +246 269 gm +(---)show +246 306 gm +(---)show +246 343 gm +(---)show +246 380 gm +(---)show +246 439 gm +(672)show +246 503 gm +(---)show +232 82 gm +0 gr +234 82 lin +232 80 gm +234 80 lin +232 83 gm +232 131 lin +234 83 gm +234 131 lin +232 134 gm +232 134 lin +234 132 gm +234 132 lin +232 132 gm +232 132 lin +234 134 gm +234 134 lin +232 135 gm +232 182 lin +234 135 gm +234 182 lin +232 185 gm +232 185 lin +234 183 gm +234 183 lin +232 183 gm +232 183 lin +234 185 gm +234 185 lin +232 186 gm +232 253 lin +234 186 gm +234 253 lin +232 256 gm +232 256 lin +234 254 gm +234 254 lin +232 254 gm +232 254 lin +234 256 gm +234 256 lin +232 257 gm +232 290 lin +234 257 gm +234 290 lin +232 293 gm +232 293 lin +234 291 gm +234 291 lin +232 291 gm +232 291 lin +234 293 gm +234 293 lin +232 294 gm +232 327 lin +234 294 gm +234 327 lin +232 330 gm +232 330 lin +234 328 gm +234 328 lin +232 328 gm +232 328 lin +234 330 gm +234 330 lin +232 331 gm +232 364 lin +234 331 gm +234 364 lin +232 367 gm +232 367 lin +234 365 gm +234 365 lin +232 365 gm +232 365 lin +234 367 gm +234 367 lin +232 368 gm +232 400 lin +234 368 gm +234 400 lin +232 403 gm +232 403 lin +234 401 gm +234 401 lin +232 401 gm +232 401 lin +234 403 gm +234 403 lin +232 404 gm +232 487 lin +234 404 gm +234 487 lin +232 490 gm +232 490 lin +234 488 gm +234 488 lin +232 488 gm +232 488 lin +234 490 gm +234 490 lin +232 491 gm +232 524 lin +234 491 gm +234 524 lin +232 527 gm +234 527 lin +232 525 gm +234 525 lin +235 80 gm +248 80 lin +235 82 gm +248 82 lin +235 132 gm +248 132 lin +235 134 gm +248 134 lin +235 183 gm +248 183 lin +235 185 gm +248 185 lin +235 254 gm +248 254 lin +235 256 gm +248 256 lin +235 291 gm +248 291 lin +235 293 gm +248 293 lin +235 328 gm +248 328 lin +235 330 gm +248 330 lin +235 365 gm +248 365 lin +235 367 gm +248 367 lin +235 401 gm +248 401 lin +235 403 gm +248 403 lin +235 488 gm +248 488 lin +235 490 gm +248 490 lin +235 525 gm +248 525 lin +235 527 gm +248 527 lin +261 105 gm +F 1 setTxMode +(3)show +261 149 gm +(2532)show +261 203 gm +(4899016)show +261 265 gm +(2.66)show +261 302 gm +(0.89)show +261 339 gm +(0.90)show +261 376 gm +(0.08)show +261 436 gm +(1935)show +261 499 gm +(2.88)show +249 82 gm +0 gr +249 82 lin +249 80 gm +249 80 lin +249 83 gm +249 131 lin +249 134 gm +249 134 lin +249 132 gm +249 132 lin +249 135 gm +249 182 lin +249 185 gm +249 185 lin +249 183 gm +249 183 lin +249 186 gm +249 253 lin +249 256 gm +249 256 lin +249 254 gm +249 254 lin +249 257 gm +249 290 lin +249 293 gm +249 293 lin +249 291 gm +249 291 lin +249 294 gm +249 327 lin +249 330 gm +249 330 lin +249 328 gm +249 328 lin +249 331 gm +249 364 lin +249 367 gm +249 367 lin +249 365 gm +249 365 lin +249 368 gm +249 400 lin +249 403 gm +249 403 lin +249 401 gm +249 401 lin +249 404 gm +249 487 lin +249 490 gm +249 490 lin +249 488 gm +249 488 lin +249 491 gm +249 524 lin +249 527 gm +249 527 lin +249 525 gm +249 525 lin +250 80 gm +263 80 lin +250 82 gm +263 82 lin +250 132 gm +263 132 lin +250 134 gm +263 134 lin +250 183 gm +263 183 lin +250 185 gm +263 185 lin +250 254 gm +263 254 lin +250 256 gm +263 256 lin +250 291 gm +263 291 lin +250 293 gm +263 293 lin +250 328 gm +263 328 lin +250 330 gm +263 330 lin +250 365 gm +263 365 lin +250 367 gm +263 367 lin +250 401 gm +263 401 lin +250 403 gm +263 403 lin +250 488 gm +263 488 lin +250 490 gm +263 490 lin +250 525 gm +263 525 lin +250 527 gm +263 527 lin +276 105 gm +F 1 setTxMode +(5)show +276 149 gm +(1805)show +276 203 gm +(5453978)show +276 265 gm +(3.73)show +276 302 gm +(0.75)show +276 339 gm +(0.88)show +276 376 gm +(0.20)show +276 436 gm +(3022)show +276 499 gm +(4.50)show +264 82 gm +0 gr +264 82 lin +264 80 gm +264 80 lin +264 83 gm +264 131 lin +264 134 gm +264 134 lin +264 132 gm +264 132 lin +264 135 gm +264 182 lin +264 185 gm +264 185 lin +264 183 gm +264 183 lin +264 186 gm +264 253 lin +264 256 gm +264 256 lin +264 254 gm +264 254 lin +264 257 gm +264 290 lin +264 293 gm +264 293 lin +264 291 gm +264 291 lin +264 294 gm +264 327 lin +264 330 gm +264 330 lin +264 328 gm +264 328 lin +264 331 gm +264 364 lin +264 367 gm +264 367 lin +264 365 gm +264 365 lin +264 368 gm +264 400 lin +264 403 gm +264 403 lin +264 401 gm +264 401 lin +264 404 gm +264 487 lin +264 490 gm +264 490 lin +264 488 gm +264 488 lin +264 491 gm +264 524 lin +264 527 gm +264 527 lin +264 525 gm +264 525 lin +265 80 gm +278 80 lin +265 82 gm +278 82 lin +265 132 gm +278 132 lin +265 134 gm +278 134 lin +265 183 gm +278 183 lin +265 185 gm +278 185 lin +265 254 gm +278 254 lin +265 256 gm +278 256 lin +265 291 gm +278 291 lin +265 293 gm +278 293 lin +265 328 gm +278 328 lin +265 330 gm +278 330 lin +265 365 gm +278 365 lin +265 367 gm +278 367 lin +265 401 gm +278 401 lin +265 403 gm +278 403 lin +265 488 gm +278 488 lin +265 490 gm +278 490 lin +265 525 gm +278 525 lin +265 527 gm +278 527 lin +291 105 gm +F 1 setTxMode +(7)show +291 149 gm +(1486)show +291 203 gm +(5886412)show +291 265 gm +(4.54)show +291 302 gm +(0.65)show +291 339 gm +(0.87)show +291 376 gm +(0.30)show +291 436 gm +(3961)show +291 499 gm +(5.89)show +279 82 gm +0 gr +279 82 lin +279 80 gm +279 80 lin +279 83 gm +279 131 lin +279 134 gm +279 134 lin +279 132 gm +279 132 lin +279 135 gm +279 182 lin +279 185 gm +279 185 lin +279 183 gm +279 183 lin +279 186 gm +279 253 lin +279 256 gm +279 256 lin +279 254 gm +279 254 lin +279 257 gm +279 290 lin +279 293 gm +279 293 lin +279 291 gm +279 291 lin +279 294 gm +279 327 lin +279 330 gm +279 330 lin +279 328 gm +279 328 lin +279 331 gm +279 364 lin +279 367 gm +279 367 lin +279 365 gm +279 365 lin +279 368 gm +279 400 lin +279 403 gm +279 403 lin +279 401 gm +279 401 lin +279 404 gm +279 487 lin +279 490 gm +279 490 lin +279 488 gm +279 488 lin +279 491 gm +279 524 lin +279 527 gm +279 527 lin +279 525 gm +279 525 lin +280 80 gm +293 80 lin +280 82 gm +293 82 lin +280 132 gm +293 132 lin +280 134 gm +293 134 lin +280 183 gm +293 183 lin +280 185 gm +293 185 lin +280 254 gm +293 254 lin +280 256 gm +293 256 lin +280 291 gm +293 291 lin +280 293 gm +293 293 lin +280 328 gm +293 328 lin +280 330 gm +293 330 lin +280 365 gm +293 365 lin +280 367 gm +293 367 lin +280 401 gm +293 401 lin +280 403 gm +293 403 lin +280 488 gm +293 488 lin +280 490 gm +293 490 lin +280 525 gm +293 525 lin +280 527 gm +293 527 lin +306 105 gm +F 1 setTxMode +(9)show +306 149 gm +(1315)show +306 203 gm +(6386703)show +306 265 gm +(5.13)show +306 302 gm +(0.57)show +306 339 gm +(0.84)show +306 376 gm +(0.41)show +306 436 gm +(4857)show +306 499 gm +(7.23)show +294 82 gm +0 gr +294 82 lin +294 80 gm +294 80 lin +294 83 gm +294 131 lin +294 134 gm +294 134 lin +294 132 gm +294 132 lin +294 135 gm +294 182 lin +294 185 gm +294 185 lin +294 183 gm +294 183 lin +294 186 gm +294 253 lin +294 256 gm +294 256 lin +294 254 gm +294 254 lin +294 257 gm +294 290 lin +294 293 gm +294 293 lin +294 291 gm +294 291 lin +294 294 gm +294 327 lin +294 330 gm +294 330 lin +294 328 gm +294 328 lin +294 331 gm +294 364 lin +294 367 gm +294 367 lin +294 365 gm +294 365 lin +294 368 gm +294 400 lin +294 403 gm +294 403 lin +294 401 gm +294 401 lin +294 404 gm +294 487 lin +294 490 gm +294 490 lin +294 488 gm +294 488 lin +294 491 gm +294 524 lin +294 527 gm +294 527 lin +294 525 gm +294 525 lin +295 80 gm +308 80 lin +295 82 gm +308 82 lin +295 132 gm +308 132 lin +295 134 gm +308 134 lin +295 183 gm +308 183 lin +295 185 gm +308 185 lin +295 254 gm +308 254 lin +295 256 gm +308 256 lin +295 291 gm +308 291 lin +295 293 gm +308 293 lin +295 328 gm +308 328 lin +295 330 gm +308 330 lin +295 365 gm +308 365 lin +295 367 gm +308 367 lin +295 401 gm +308 401 lin +295 403 gm +308 403 lin +295 488 gm +308 488 lin +295 490 gm +308 490 lin +295 525 gm +308 525 lin +295 527 gm +308 527 lin +321 103 gm +F 1 setTxMode +(11)show +321 149 gm +(1208)show +321 203 gm +(6789922)show +321 265 gm +(5.58)show +321 302 gm +(0.51)show +321 339 gm +(0.80)show +321 376 gm +(0.50)show +321 436 gm +(5621)show +321 499 gm +(8.36)show +309 82 gm +0 gr +309 82 lin +309 80 gm +309 80 lin +309 83 gm +309 131 lin +309 134 gm +309 134 lin +309 132 gm +309 132 lin +309 135 gm +309 182 lin +309 185 gm +309 185 lin +309 183 gm +309 183 lin +309 186 gm +309 253 lin +309 256 gm +309 256 lin +309 254 gm +309 254 lin +309 257 gm +309 290 lin +309 293 gm +309 293 lin +309 291 gm +309 291 lin +309 294 gm +309 327 lin +309 330 gm +309 330 lin +309 328 gm +309 328 lin +309 331 gm +309 364 lin +309 367 gm +309 367 lin +309 365 gm +309 365 lin +309 368 gm +309 400 lin +309 403 gm +309 403 lin +309 401 gm +309 401 lin +309 404 gm +309 487 lin +309 490 gm +309 490 lin +309 488 gm +309 488 lin +309 491 gm +309 524 lin +309 527 gm +309 527 lin +309 525 gm +309 525 lin +310 80 gm +323 80 lin +310 82 gm +323 82 lin +326 80 gm +326 82 lin +324 80 gm +326 80 lin +324 82 gm +324 82 lin +324 82 lin +324 83 gm +324 131 lin +326 83 gm +326 131 lin +310 132 gm +323 132 lin +310 134 gm +323 134 lin +324 132 gm +324 134 lin +326 132 gm +326 134 lin +324 135 gm +324 182 lin +326 135 gm +326 182 lin +310 183 gm +323 183 lin +310 185 gm +323 185 lin +324 183 gm +324 185 lin +326 183 gm +326 185 lin +324 186 gm +324 253 lin +326 186 gm +326 253 lin +310 254 gm +323 254 lin +310 256 gm +323 256 lin +324 254 gm +324 256 lin +326 254 gm +326 256 lin +324 257 gm +324 290 lin +326 257 gm +326 290 lin +310 291 gm +323 291 lin +310 293 gm +323 293 lin +324 291 gm +324 293 lin +326 291 gm +326 293 lin +324 294 gm +324 327 lin +326 294 gm +326 327 lin +310 328 gm +323 328 lin +310 330 gm +323 330 lin +324 328 gm +324 330 lin +326 328 gm +326 330 lin +324 331 gm +324 364 lin +326 331 gm +326 364 lin +310 365 gm +323 365 lin +310 367 gm +323 367 lin +324 365 gm +324 367 lin +326 365 gm +326 367 lin +324 368 gm +324 400 lin +326 368 gm +326 400 lin +310 401 gm +323 401 lin +310 403 gm +323 403 lin +324 401 gm +324 403 lin +326 401 gm +326 403 lin +324 404 gm +324 487 lin +326 404 gm +326 487 lin +310 488 gm +323 488 lin +310 490 gm +323 490 lin +324 488 gm +324 490 lin +326 488 gm +326 490 lin +324 491 gm +324 524 lin +326 491 gm +326 524 lin +310 525 gm +323 525 lin +310 527 gm +323 527 lin +326 525 gm +326 527 lin +324 527 gm +326 527 lin +324 525 gm +324 525 lin +324 525 lin +338 79 gm +F 1 setTxMode +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(Fig.16)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +( )show +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(Dynamic PVSplit)show +354 79 gm +0 fs +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.38436 0. 32 0.03843 0.(Search overhead is low, and efficiency is good: the speedup S with 11 processors was improved of)awidthshow +365 79 gm +(24% with respect to data shown in\312Fig.11.)show +395 79 gm +1 fs +12 fz +bu fc +2 F /|______Times-Bold fnt +bn +(5.2 A discussion of dynamic splitting)show +408 79 gm +0 fs +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.89706 0. 32 0.08970 0.(The algorithm described in Sect. 5.1 is not really representative of dynamic splitting methods. A)awidthshow +419 79 gm +(more general definition of such a concept should answer to the following questions:)show +431 88 gm +(\245\312when a supervisor process P visiting a node N should create a new parallel task?)show +444 88 gm +(\245\312who executes the task?)show +457 88 gm +(\245\312which data can be use to make a splitting decision?)show +469 79 gm +0.21591 0. 32 0.02159 0.(Consider the game tree in Fig.17; process P is responsible of its evaluation because it was given the)awidthshow +484 79 gm +0.60699 0. 32 0.06069 0.(root. According to the depth)awidthshow +484 207 gm +0.67794 0. 32 0.06779 0.(-first rule used in )awidthshow +484 289 gm +bu fc +2 F /|______Symbol fnt +bn +0.20346 0.(ab)ashow +bu fc +2 F /|______Times-Roman fnt +bn +0.57464 0. 32 0.05746 0.(, we have the following sequence for successors:)awidthshow +496 79 gm +(N)show +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(1)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(, N)show +496 103 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(2)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(, N)show +496 120 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(3)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(.)show +(nc 520 237 675 366 6 rc)kp +0 gr +601.5 241.5 628.5 268.5 0 ov +601.5 285.5 628.5 312.5 0 ov +601.5 329.5 628.5 356.5 0 ov +522.5 285.5 548.5 312.5 0 ov +616 250 gm +(nc 608 249 619 261 6 rc)kp +F 1 setTxMode +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(N)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(1)show +617 295 gm +(nc 609 294 620 306 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(N)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(2)show +616 339 gm +(nc 608 338 619 350 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(N)show +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(3)show +538 316 gm +(nc 530 315 541 323 6 rc)kp +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(P)show +601 299 gm +(nc 520 237 675 366 6 rc)kp +0 gr +548 299 lin +601 343 lin +0 0 2 9 6 2 dh +548 299 gm +601 255 lin +rh +psb +pse +0 0 2 9 6 2 dh +599 239 gm +628 271 lin +rh +psb +pse +0 0 2 9 6 2 dh +628 240 gm +595 268 lin +rh +psb +pse +617 359 gm +(nc 608 358 620 365 6 rc)kp +F 1 setTxMode +10 fz +bu fc +2 F /|______Helvetica fnt +bn +(?)show +616 315 gm +(nc 607 314 619 321 6 rc)kp +(?)show +628 299 gm +(nc 520 237 675 366 6 rc)kp +0 gr +673 282 lin +628 299 gm +673 311 lin +673 282 gm +673 311 lin +0 0 2 9 6 2 dh +628 255 gm +673 239 lin +rh +psb +pse +0 0 2 9 6 2 dh +628 255 gm +673 268 lin +rh +psb +pse +0 0 2 9 6 2 dh +673 239 gm +673 268 lin +rh +psb +pse +628 343 gm +673 326 lin +628 343 gm +673 355 lin +673 326 gm +673 355 lin +537 290 gm +(nc 529 289 540 310 6 rc)kp +F 1 setTxMode +9 fz +bu fc +2 F /|______Helvetica fnt +bn +(Root)show +509 77 gm +(nc 30 28 811 566 6 rc)kp +0 gr +509 525 lin +703 131 gm +F 1 setTxMode +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(Fig.17)show +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +( Problems with dynamic splitting: who has to evaluate N2 and N3?)show +721 77 gm +0 gr +721 525 lin +740 79 gm +F 1 setTxMode +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.05569 0. 32 0.00556 0.(Suppose the subtree with root N)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(1)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.04531 0. 32 0.00453 0.( has been evaluated; if no cuts were produced P has to start the visit)awidthshow +751 79 gm +0.49194 0. 32 0.04919 0.(of N)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.15614 0.(2)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.47515 0. 32 0.04751 0.(, i.e. it generates the task of visiting N)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.15614 0.(2)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.45867 0. 32 0.04586 0.(. It can happen that P itself is assigned to this task, so)awidthshow +F T cp +%%Page: ? 16 +op +30 28 811 566 fr +0 0 xl +1 1 pen +0 0 gm +(nc 0 0 0 0 6 rc)kp +91 336 gm +(nc 30 28 811 566 6 rc)kp +F 1 setTxMode +0 fs +10 fz +bu fc +2 F /|______Helvetica fnt +bn +(A Comparison of Parallel Search Algorithms)show +773 79 gm +(UBLCS-94-14)show +773 514 gm +(14)show +118 79 gm +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.66665 0. 32 0.06666 0.(that only when such a visit is completed N)awidthshow +118 274 gm +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.20846 0.(3)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.66177 0. 32 0.06617 0.( will be evaluated, unless a cut is produced. If P were)awidthshow +129 79 gm +0.21484 0. 32 0.02148 0.(assigned all successors of the root node shown in Fig.17, then actually no splitting would have been)awidthshow +140 79 gm +0.04959 0. 32 0.00495 0.(done in the root. Instead, suppose that N)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(2)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.04257 0. 32 0.00425 0.( is given to a process Q different from P; then, P should not)awidthshow +151 79 gm +0.30273 0. 32 0.03027 0.(block itself waiting for Q, but should continue the visit and allocate a task for the evaluation of N)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.08947 0.(3)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(.)show +162 79 gm +0.87707 0. 32 0.08770 0.(In this way we have a splitting only if this is really necessary; moreover, we improve control on)awidthshow +173 79 gm +(search overhead and load balancing.)show +184 79 gm +1.54342 0. 32 0.15434 0.(An important decision when using of this kind of algorithm is the knowledge necessary for a)awidthshow +195 79 gm +0.94299 0. 32 0.09429 0.(splitting. There are two kinds of knowledge that are necessary for a process P to take a splitting)awidthshow +206 79 gm +(decision on a node N:)show +218 88 gm +0.76568 0. 32 0.07656 0.(- local knowledge, )awidthshow +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +0.15858 0.(i.e)ashow +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.63476 0. 32 0.06347 0.(. data owned by the process P itself that is going to decide a splitting. For)awidthshow +229 101 gm +0.12954 0. 32 0.01295 0.(instance, knowledge on the level of N in the game tree, or on the size of the subtree whose root)awidthshow +240 101 gm +(is N, is local.)show +253 88 gm +0.03265 0. 32 0.00326 0.(- global knowledge, )awidthshow +253 178 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(i.e)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.02944 0. 32 0.00294 0.(. data that have to be asked to the operating environment. For instance, how)awidthshow +264 101 gm +1.16287 0. 32 0.11628 0.(many processors are idle or how many tasks are still in the agenda are examples of global)awidthshow +275 101 gm +(knowledge.)show +287 79 gm +0.30563 0. 32 0.03056 0.(Suppose that in order to decide if N is a splitting node we only use knowledge local to P, assigning)awidthshow +298 79 gm +0.62866 0. 32 0.06286 0.(N and its subtree to P itself: the decision will be very rapid. However, load balancing will rapidly)awidthshow +309 79 gm +0.19454 0. 32 0.01945 0.(deteriorate. Thus, we need to combine both form of knowledge; we achieve this taking a decision in)awidthshow +320 79 gm +(two steps:)show +332 88 gm +(i\)\312let P be the supervisor of N; we make a local test to see if P itself can take charge of N;)show +345 88 gm +0.44586 0. 32 0.04458 0.(ii\)\312if not, we use global knowledge to choose a different supervisor. This implies communicating)awidthshow +356 101 gm +(with other processes.)show +368 79 gm +1.46865 0. 32 0.14686 0.(We put all global data in tuples: both the task to be assigned to a worker, corresponding to a)awidthshow +379 79 gm +0.64743 0. 32 0.06474 0.(splitting, and data to make splitting decisions. A node N becomes a splitting node when search of)awidthshow +390 79 gm +0.07965 0. 32 0.00796 0.(one of its children is given to another process. A splitting decision needs data that can be either local)awidthshow +401 79 gm +0.11535 0. 32 0.01153 0.(or non-local. In general non-local data are more expensive to acquire, thus we classify splitting rules)awidthshow +412 79 gm +0.48583 0. 32 0.04858 0.(built in the Boolean function as local or global. Local rules say when it is not convenient to start a)awidthshow +423 79 gm +(parallel task; if local rules require splitting, then global data are acquired.)show +434 79 gm +(This is a very partial list of criteria based on local data:)show +446 88 gm +1.15356 0. 32 0.11535 0.(\245\312subtree size: small subtrees are not distributed. Subtree size should be measured in terms of)awidthshow +457 101 gm +0.61340 0. 32 0.06134 0.(nodes, but this figure is not known before the visit; however, it is possible to estimate such a)awidthshow +472 101 gm +0.11322 0. 32 0.01132 0.(quantity knowing the tree depth and the wideness of the initial )awidthshow +bu fc +2 F /|______Symbol fnt +bn +0.04614 0.(ab)ashow +bu fc +2 F /|______Times-Roman fnt +bn +0.14205 0. 32 0.01420 0.( window [Bau78]. A measure)awidthshow +484 101 gm +(simpler to obtain is given by the tree depth [Eli90].)show +497 88 gm +0.10589 0. 32 0.01058 0.(\245\312"young-brothers-wait" [FMMV89]: aims at reducing search overhead if the game tree is ordered.)awidthshow +508 101 gm +0.99380 0. 32 0.09938 0.(The first successor of a node has to be completely evaluated before proceeding in the visit.)awidthshow +519 101 gm +2.21588 0. 32 0.22158 0.(Thus a node N has to be evaluated by its supervisor if it is the first to be visited. A)awidthshow +530 101 gm +2.09609 0. 32 0.20960 0.(generalisation of this method consists of avoiding the distribution of the first K \(K>1\))awidthshow +541 101 gm +0.37506 0. 32 0.03750 0.(successors. For ordered game trees the best moves are with high probability "on the left", thus)awidthshow +556 101 gm +(if we give priority to this side we get better )show +556 293 gm +bu fc +2 F /|______Symbol fnt +bn +(ab)show +bu fc +2 F /|______Times-Roman fnt +bn +( windows for continuing the search in parallel.)show +570 88 gm +1.08642 0. 32 0.10864 0.(\245\312limiting the max. number of children visited in parallel: the idea is to get a good amount of)awidthshow +581 101 gm +1.09680 0. 32 0.10968 0.(information from incomplete searches. The supervisor only need to know how many nodes)awidthshow +592 101 gm +(were distributed but not yet entirely searched.)show +604 79 gm +(The following criteria are based on global knowledge:)show +616 88 gm +0.44174 0. 32 0.04417 0.(\245\312limiting the number of tasks in agenda, aiming at reducing synchronisation overhead. In fact, if)awidthshow +627 101 gm +1.18713 0. 32 0.11871 0.(tasks were too many with respect to the available processors, the task originators could be)awidthshow +638 101 gm +1.72622 0. 32 0.17262 0.(strongly slowed. A typical value that can be chosen as maximum is the total number of)awidthshow +649 101 gm +0.63552 0. 32 0.06355 0.(processors. We put a counter in a single tuple; the counter is incremented by supervisors and)awidthshow +660 101 gm +(decremented by workers.)show +673 88 gm +0.15594 0. 32 0.01559 0.(\245\312splitting only in case of idle processor: we avoid that a task remains too much time in agenda, so)awidthshow +684 101 gm +1.12258 0. 32 0.11225 0.(that we reduce synchronisation overhead. We need to count how many processors are idle,)awidthshow +695 101 gm +(again with a counter tuple.)show +707 79 gm +(Now we are ready to describe a dynamic algorithm parametric wrt the splitting rules.)show +737 79 gm +1 fs +12 fz +bu fc +2 F /|______Times-Bold fnt +bn +(5.3 A general algorithm for dynamic splitting)show +F T cp +%%Page: ? 17 +op +30 28 811 566 fr +0 0 xl +1 1 pen +0 0 gm +(nc 0 0 0 0 6 rc)kp +91 336 gm +(nc 30 28 811 566 6 rc)kp +F 1 setTxMode +0 fs +10 fz +bu fc +2 F /|______Helvetica fnt +bn +(A Comparison of Parallel Search Algorithms)show +773 79 gm +(UBLCS-94-14)show +773 514 gm +(15)show +118 79 gm +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +1.21017 0. 32 0.12101 0.(We have designed a software architecture that is easy to adapt to different splitting algorithms.)awidthshow +129 79 gm +0.08255 0. 32 0.00825 0.(Given a splitting criterion, we specialise the core algorithm aiming at maximising the efficiency. We)awidthshow +140 79 gm +0.30303 0. 32 0.03030 0.(note that we could treat most static splitting algorithms as special cases of trivial dynamic splitting,)awidthshow +151 79 gm +1.00021 0. 32 0.10002 0.(however we would lose most of the optimisations that were possible because the splitting nodes)awidthshow +162 79 gm +(were well known or in a small number.)show +173 79 gm +1.19873 0. 32 0.11987 0.(The core algorithm for dynamic splitting allows that any node can be a splitting node. Data on)awidthshow +184 79 gm +1.79733 0. 32 0.17973 0.(arbitrary nodes is much more expensive to transmit and to receive: communication overhead)awidthshow +195 79 gm +(increases, especially on a network of workstations.)show +206 79 gm +0.08758 0. 32 0.00875 0.(Moreover, each task has to be identified independently form the worker that executes it; thus to each)awidthshow +217 79 gm +1.59393 0. 32 0.15939 0.(node N we associate a signature that will be inherited by all N successors; such an idea was)awidthshow +228 79 gm +1.32034 0. 32 0.13203 0.(introduced in [Eli90]. When a cut occurs, all parallel search having the same signature will be)awidthshow +239 79 gm +(terminated, because they are now useless.)show +250 79 gm +0.01724 0. 32 0.00172 0.(Each new splitting node is associated to a new signature; since in the core algorithm a parallel search)awidthshow +261 79 gm +0.26687 0. 32 0.02668 0.(can be started at any level in the tree, nodes of the same subtree obtain different signatures. When a)awidthshow +272 79 gm +0.44692 0. 32 0.04469 0.(cut is generated for the top-level of a subtree all parallel searches of its branches should terminate,)awidthshow +283 79 gm +0.81695 0. 32 0.08169 0.(even if the signatures are different. The signature is a distributed data structure whose root is the)awidthshow +294 79 gm +0.65292 0. 32 0.06529 0.(signature of the game tree root. Suppose that a node N has a signature S inherited from its father;)awidthshow +305 79 gm +(suppose that N is chosen as splitting node: it get s a new signature T.)show +(nc 330 96 543 506 6 rc)kp +64 gr +412 146 435 169 1 ov +0 gr +412.5 146.5 434.5 168.5 0 ov +64 gr +468 113 490 135 1 ov +0 gr +468.5 113.5 489.5 134.5 0 ov +64 gr +519 98 542 120 1 ov +0 gr +519.5 98.5 541.5 119.5 0 ov +64 gr +519 126 542 148 1 ov +0 gr +519.5 126.5 541.5 147.5 0 ov +489 124 gm +519 136 lin +489 124 gm +519 108 lin +64 gr +468 175 490 198 1 ov +0 gr +468.5 175.5 489.5 197.5 0 ov +64 gr +519 160 542 182 1 ov +0 gr +519.5 160.5 541.5 181.5 0 ov +64 gr +519 188 542 210 1 ov +0 gr +519.5 188.5 541.5 209.5 0 ov +489 186 gm +519 199 lin +489 186 gm +519 170 lin +434 156 gm +468 187 lin +434 156 gm +468 123 lin +64 gr +412 278 435 300 1 ov +0 gr +412.5 278.5 434.5 299.5 0 ov +64 gr +468 245 490 267 1 ov +0 gr +468.5 245.5 489.5 266.5 0 ov +64 gr +519 229 542 252 1 ov +0 gr +519.5 229.5 541.5 251.5 0 ov +64 gr +519 258 542 280 1 ov +0 gr +519.5 258.5 541.5 279.5 0 ov +489 256 gm +519 268 lin +0 0 2 9 6 2 dh +489 256 gm +519 240 lin +rh +psb +pse +64 gr +468 307 490 330 1 ov +0 gr +468.5 307.5 489.5 329.5 0 ov +64 gr +519 292 542 314 1 ov +0 gr +519.5 292.5 541.5 313.5 0 ov +64 gr +519 320 542 342 1 ov +0 gr +519.5 320.5 541.5 341.5 0 ov +489 318 gm +519 331 lin +489 318 gm +519 302 lin +434 288 gm +468 319 lin +434 288 gm +468 256 lin +64 gr +413 410 436 432 1 ov +0 gr +413.5 410.5 435.5 431.5 0 ov +64 gr +468 377 490 399 1 ov +0 gr +468.5 377.5 489.5 398.5 0 ov +64 gr +519 361 542 383 1 ov +0 gr +519.5 361.5 541.5 382.5 0 ov +64 gr +519 389 542 412 1 ov +0 gr +519.5 389.5 541.5 411.5 0 ov +0 0 2 9 6 2 dh +489 387 gm +519 400 lin +rh +psb +pse +489 387 gm +519 372 lin +64 gr +469 439 491 461 1 ov +0 gr +469.5 439.5 490.5 460.5 0 ov +64 gr +520 423 543 446 1 ov +0 gr +520.5 423.5 542.5 445.5 0 ov +64 gr +519 452 542 474 1 ov +0 gr +519.5 452.5 541.5 473.5 0 ov +489 450 gm +519 462 lin +489 450 gm +519 434 lin +434 420 gm +468 450 lin +0 0 2 9 6 2 dh +434 420 gm +468 387 lin +rh +psb +pse +64 gr +353 278 375 300 1 ov +0 gr +353.5 278.5 374.5 299.5 0 ov +0 0 2 9 6 2 dh +374 290 gm +412 290 lin +rh +psb +pse +0 0 2 9 6 2 dh +374 290 gm +412 158 lin +rh +psb +pse +374 289 gm +412 420 lin +64 gr +361 282 368 300 1 rc +366 283 gm +(nc 361 282 368 300 6 rc)kp +F 1 setTxMode +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(0)show +366 287 gm +bu fc +2 F /|______Symbol fnt +bn +(\256)show +366 294 gm +bu fc +2 F /|______Helvetica fnt +bn +(1)show +(nc 330 96 543 506 6 rc)kp +64 gr +417 154 429 162 1 rc +426 155 gm +(nc 417 154 429 162 6 rc)kp +F 1 setTxMode +10 fz +bu fc +2 F /|______Helvetica fnt +bn +(1)show +(nc 330 96 543 506 6 rc)kp +64 gr +417 285 429 293 1 rc +426 286 gm +(nc 417 285 429 293 6 rc)kp +F 1 setTxMode +(1)show +(nc 330 96 543 506 6 rc)kp +64 gr +420 413 427 430 1 rc +425 414 gm +(nc 420 413 427 430 6 rc)kp +F 1 setTxMode +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(1)show +425 418 gm +bu fc +2 F /|______Symbol fnt +bn +(\256)show +425 425 gm +bu fc +2 F /|______Helvetica fnt +bn +(2)show +(nc 330 96 543 506 6 rc)kp +64 gr +475 250 482 267 1 rc +480 251 gm +(nc 475 250 482 267 6 rc)kp +F 1 setTxMode +(1)show +480 255 gm +bu fc +2 F /|______Symbol fnt +bn +(\256)show +480 262 gm +bu fc +2 F /|______Helvetica fnt +bn +(3)show +(nc 330 96 543 506 6 rc)kp +64 gr +524 267 536 275 1 rc +533 268 gm +(nc 524 267 536 275 6 rc)kp +F 1 setTxMode +10 fz +bu fc +2 F /|______Helvetica fnt +bn +(3)show +(nc 330 96 543 506 6 rc)kp +64 gr +525 329 537 337 1 rc +534 330 gm +(nc 525 329 537 337 6 rc)kp +F 1 setTxMode +(1)show +(nc 330 96 543 506 6 rc)kp +64 gr +523 301 535 309 1 rc +532 302 gm +(nc 523 301 535 309 6 rc)kp +F 1 setTxMode +(1)show +(nc 330 96 543 506 6 rc)kp +64 gr +524 239 536 247 1 rc +533 240 gm +(nc 524 239 536 247 6 rc)kp +F 1 setTxMode +(3)show +(nc 330 96 543 506 6 rc)kp +64 gr +473 185 485 193 1 rc +482 186 gm +(nc 473 185 485 193 6 rc)kp +F 1 setTxMode +(1)show +(nc 330 96 543 506 6 rc)kp +64 gr +524 198 536 206 1 rc +533 199 gm +(nc 524 198 536 206 6 rc)kp +F 1 setTxMode +(1)show +(nc 330 96 543 506 6 rc)kp +64 gr +524 169 536 177 1 rc +533 170 gm +(nc 524 169 536 177 6 rc)kp +F 1 setTxMode +(1)show +(nc 330 96 543 506 6 rc)kp +64 gr +524 136 536 144 1 rc +533 137 gm +(nc 524 136 536 144 6 rc)kp +F 1 setTxMode +(1)show +(nc 330 96 543 506 6 rc)kp +64 gr +524 107 536 115 1 rc +533 108 gm +(nc 524 107 536 115 6 rc)kp +F 1 setTxMode +(1)show +(nc 330 96 543 506 6 rc)kp +64 gr +472 122 484 130 1 rc +481 123 gm +(nc 472 122 484 130 6 rc)kp +F 1 setTxMode +(1)show +(nc 330 96 543 506 6 rc)kp +64 gr +471 317 483 325 1 rc +480 318 gm +(nc 471 317 483 325 6 rc)kp +F 1 setTxMode +(1)show +(nc 330 96 543 506 6 rc)kp +64 gr +474 382 481 399 1 rc +479 383 gm +(nc 474 382 481 399 6 rc)kp +F 1 setTxMode +7 fz +bu fc +2 F /|______Helvetica fnt +bn +(2)show +479 387 gm +bu fc +2 F /|______Symbol fnt +bn +(\256)show +479 394 gm +bu fc +2 F /|______Helvetica fnt +bn +(4)show +(nc 330 96 543 506 6 rc)kp +64 gr +472 448 484 456 1 rc +481 449 gm +(nc 472 448 484 456 6 rc)kp +F 1 setTxMode +10 fz +bu fc +2 F /|______Helvetica fnt +bn +(2)show +(nc 330 96 543 506 6 rc)kp +64 gr +524 432 536 440 1 rc +533 433 gm +(nc 524 432 536 440 6 rc)kp +F 1 setTxMode +(2)show +(nc 330 96 543 506 6 rc)kp +64 gr +524 461 536 469 1 rc +533 462 gm +(nc 524 461 536 469 6 rc)kp +F 1 setTxMode +(2)show +(nc 330 96 543 506 6 rc)kp +64 gr +524 369 536 377 1 rc +533 370 gm +(nc 524 369 536 377 6 rc)kp +F 1 setTxMode +(4)show +(nc 330 96 543 506 6 rc)kp +64 gr +524 399 536 407 1 rc +533 400 gm +(nc 524 399 536 407 6 rc)kp +F 1 setTxMode +(4)show +(nc 330 96 543 506 6 rc)kp +64 gr +376 215 388 229 1 rc +385 216 gm +(nc 376 215 388 229 6 rc)kp +F 1 setTxMode +(\(a\))show +(nc 330 96 543 506 6 rc)kp +64 gr +437 388 449 402 1 rc +446 389 gm +(nc 437 388 449 402 6 rc)kp +F 1 setTxMode +(\(b\))show +(nc 330 96 543 506 6 rc)kp +64 gr +495 232 507 246 1 rc +504 233 gm +(nc 495 232 507 246 6 rc)kp +F 1 setTxMode +(\(c\))show +(nc 330 96 543 506 6 rc)kp +64 gr +492 364 504 378 1 rc +501 365 gm +(nc 492 364 504 378 6 rc)kp +F 1 setTxMode +(\(d\))show +0 0 pen +355 317 gm +(nc 330 96 543 506 6 rc)kp +64 gr +355 317 lin +nc ct 39 0 put +pr +360 308 pl +355 317 pl +358 318 pl +362 318 pl +360 308 pl +4 ep +360 308 gm +bp +355 317 T qi +355 317 qc +358 318 qc +358 318 qc +362 318 qc +362 318 qc +360 308 qc +360 308 T qq +qf +qf +ef +0 gr +15 ec +(nc 330 96 543 506 6 rc)kp +1 1 pen +358 318 gm +0 gr +350 376 lin +64 gr +332 377 382 506 1 rc +0 gr +332.5 377.5 381.5 505.5 0 rc +64 gr +333 386 381 494 1 rc +342 387 gm +(nc 333 386 381 494 6 rc)kp +F 1 setTxMode +(A decomposition node)show +354 387 gm +(defines a signature)show +366 387 gm +(different from that)show +378 387 gm +(inherited from the father)show +318 77 gm +(nc 30 28 811 566 6 rc)kp +0 gr +318 525 lin +572 235 gm +F 1 setTxMode +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(Fig.18)show +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +( Assigning a signature)show +590 77 gm +0 gr +590 525 lin +609 79 gm +F 1 setTxMode +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.43762 0. 32 0.04376 0.(In Fig.18 it is shown a game tree; dotted lines represents subtrees distributed to other processors; a)awidthshow +620 79 gm +0.45349 0. 32 0.04534 0.(node label is the local signature. The depicted game tree includes four local splittings. Splitting \(a\))awidthshow +631 79 gm +(distributes tasks for searching leftmost subtrees; other splittings distribute a single task only.)show +661 79 gm +1 fs +12 fz +bu fc +2 F /|______Times-Bold fnt +bn +(5.4 Results)show +674 79 gm +0 fs +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.35888 0. 32 0.03588 0.(We tested the algorithm for dynamic splitting with several splitting criteria; we found that the most)awidthshow +685 79 gm +(interesting were the following:)show +697 88 gm +0.18385 0.(\245\312)ashow +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +1.16302 0. 32 0.11630 0.(Policy A)awidthshow +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +1.10183 0. 32 0.11018 0.(: local condition: young)awidthshow +697 244 gm +0.95367 0. 32 0.09536 0.(-brothers-wait without distributing small subtrees \(depth)awidthshow +currentfont SwToSym +0.95367 0. 32 0.09536 0.(\243)awidthshow +setfont +0.95367 0. 32 0.09536 0.(2\);)awidthshow +708 101 gm +0.14068 0. 32 0.01406 0.(global condition: splitting is allowed only if there is an idle worker and the agenda contains \(P)awidthshow +708 519 gm +(-)show +719 101 gm +(1\) tasks.)show +732 88 gm +(\245\312)show +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(Policy B)show +732 131 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(: no signature tree; splitting is allowed even if there are no idle workers.)show +744 79 gm +(The corresponding tests are shown in Figg.19 and 20.)show +F T cp +%%Page: ? 18 +op +30 28 811 566 fr +0 0 xl +1 1 pen +0 0 gm +(nc 0 0 0 0 6 rc)kp +91 336 gm +(nc 30 28 811 566 6 rc)kp +F 1 setTxMode +0 fs +10 fz +bu fc +2 F /|______Helvetica fnt +bn +(A Comparison of Parallel Search Algorithms)show +773 79 gm +(UBLCS-94-14)show +773 514 gm +(16)show +136 96 gm +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(Procs)show +136 145 gm +(T\312\(sec\))show +136 200 gm +(N\312\(nodes\))show +136 271 gm +(S)show +136 308 gm +(E)show +136 338 gm +(Fpm)show +136 378 gm +(SO)show +136 416 gm +(SS\312\(nodes/sec\))show +136 502 gm +(Sss)show +122 80 gm +0 gr +122 82 lin +122 80 gm +124 80 lin +124 82 gm +124 82 lin +124 82 lin +122 83 gm +122 131 lin +124 83 gm +124 131 lin +122 132 gm +122 134 lin +124 132 gm +124 134 lin +122 135 gm +122 182 lin +124 135 gm +124 182 lin +122 183 gm +122 185 lin +124 183 gm +124 185 lin +122 186 gm +122 253 lin +124 186 gm +124 253 lin +122 254 gm +122 256 lin +124 254 gm +124 256 lin +122 257 gm +122 290 lin +124 257 gm +124 290 lin +122 291 gm +122 293 lin +124 291 gm +124 293 lin +122 294 gm +122 327 lin +124 294 gm +124 327 lin +122 328 gm +122 330 lin +124 328 gm +124 330 lin +122 331 gm +122 364 lin +124 331 gm +124 364 lin +122 365 gm +122 367 lin +124 365 gm +124 367 lin +122 368 gm +122 400 lin +124 368 gm +124 400 lin +122 401 gm +122 403 lin +124 401 gm +124 403 lin +122 404 gm +122 487 lin +124 404 gm +124 487 lin +122 488 gm +122 490 lin +124 488 gm +124 490 lin +122 491 gm +122 524 lin +124 491 gm +124 524 lin +122 525 gm +122 527 lin +124 527 lin +124 525 gm +124 525 lin +124 525 lin +125 80 gm +138 80 lin +125 82 gm +138 82 lin +125 132 gm +138 132 lin +125 134 gm +138 134 lin +125 183 gm +138 183 lin +125 185 gm +138 185 lin +125 254 gm +138 254 lin +125 256 gm +138 256 lin +125 291 gm +138 291 lin +125 293 gm +138 293 lin +125 328 gm +138 328 lin +125 330 gm +138 330 lin +125 365 gm +138 365 lin +125 367 gm +138 367 lin +125 401 gm +138 401 lin +125 403 gm +138 403 lin +125 488 gm +138 488 lin +125 490 gm +138 490 lin +125 525 gm +138 525 lin +125 527 gm +138 527 lin +153 105 gm +F 1 setTxMode +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(1)show +152 149 gm +(8301)show +152 203 gm +(5347545)show +152 269 gm +(---)show +152 306 gm +(---)show +152 343 gm +(---)show +152 380 gm +(---)show +152 439 gm +(644)show +152 503 gm +(---)show +139 82 gm +0 gr +141 82 lin +139 80 gm +141 80 lin +139 83 gm +139 131 lin +141 83 gm +141 131 lin +139 134 gm +139 134 lin +141 132 gm +141 132 lin +139 132 gm +139 132 lin +141 134 gm +141 134 lin +139 135 gm +139 182 lin +141 135 gm +141 182 lin +139 185 gm +139 185 lin +141 183 gm +141 183 lin +139 183 gm +139 183 lin +141 185 gm +141 185 lin +139 186 gm +139 253 lin +141 186 gm +141 253 lin +139 256 gm +139 256 lin +141 254 gm +141 254 lin +139 254 gm +139 254 lin +141 256 gm +141 256 lin +139 257 gm +139 290 lin +141 257 gm +141 290 lin +139 293 gm +139 293 lin +141 291 gm +141 291 lin +139 291 gm +139 291 lin +141 293 gm +141 293 lin +139 294 gm +139 327 lin +141 294 gm +141 327 lin +139 330 gm +139 330 lin +141 328 gm +141 328 lin +139 328 gm +139 328 lin +141 330 gm +141 330 lin +139 331 gm +139 364 lin +141 331 gm +141 364 lin +139 367 gm +139 367 lin +141 365 gm +141 365 lin +139 365 gm +139 365 lin +141 367 gm +141 367 lin +139 368 gm +139 400 lin +141 368 gm +141 400 lin +139 403 gm +139 403 lin +141 401 gm +141 401 lin +139 401 gm +139 401 lin +141 403 gm +141 403 lin +139 404 gm +139 487 lin +141 404 gm +141 487 lin +139 490 gm +139 490 lin +141 488 gm +141 488 lin +139 488 gm +139 488 lin +141 490 gm +141 490 lin +139 491 gm +139 524 lin +141 491 gm +141 524 lin +139 527 gm +141 527 lin +139 525 gm +141 525 lin +142 80 gm +155 80 lin +142 82 gm +155 82 lin +142 132 gm +155 132 lin +142 134 gm +155 134 lin +142 183 gm +155 183 lin +142 185 gm +155 185 lin +142 254 gm +155 254 lin +142 256 gm +155 256 lin +142 291 gm +155 291 lin +142 293 gm +155 293 lin +142 328 gm +155 328 lin +142 330 gm +155 330 lin +142 365 gm +155 365 lin +142 367 gm +155 367 lin +142 401 gm +155 401 lin +142 403 gm +155 403 lin +142 488 gm +155 488 lin +142 490 gm +155 490 lin +142 525 gm +155 525 lin +142 527 gm +155 527 lin +167 105 gm +F 1 setTxMode +(3)show +167 149 gm +(3797)show +167 203 gm +(6206534)show +167 265 gm +(2.19)show +167 302 gm +(0.73)show +167 339 gm +(0.85)show +167 376 gm +(0.16)show +167 436 gm +(1635)show +167 499 gm +(2.54)show +156 82 gm +0 gr +156 82 lin +156 80 gm +156 80 lin +156 83 gm +156 131 lin +156 134 gm +156 134 lin +156 132 gm +156 132 lin +156 135 gm +156 182 lin +156 185 gm +156 185 lin +156 183 gm +156 183 lin +156 186 gm +156 253 lin +156 256 gm +156 256 lin +156 254 gm +156 254 lin +156 257 gm +156 290 lin +156 293 gm +156 293 lin +156 291 gm +156 291 lin +156 294 gm +156 327 lin +156 330 gm +156 330 lin +156 328 gm +156 328 lin +156 331 gm +156 364 lin +156 367 gm +156 367 lin +156 365 gm +156 365 lin +156 368 gm +156 400 lin +156 403 gm +156 403 lin +156 401 gm +156 401 lin +156 404 gm +156 487 lin +156 490 gm +156 490 lin +156 488 gm +156 488 lin +156 491 gm +156 524 lin +156 527 gm +156 527 lin +156 525 gm +156 525 lin +157 80 gm +169 80 lin +157 82 gm +169 82 lin +157 132 gm +169 132 lin +157 134 gm +169 134 lin +157 183 gm +169 183 lin +157 185 gm +169 185 lin +157 254 gm +169 254 lin +157 256 gm +169 256 lin +157 291 gm +169 291 lin +157 293 gm +169 293 lin +157 328 gm +169 328 lin +157 330 gm +169 330 lin +157 365 gm +169 365 lin +157 367 gm +169 367 lin +157 401 gm +169 401 lin +157 403 gm +169 403 lin +157 488 gm +169 488 lin +157 490 gm +169 490 lin +157 525 gm +169 525 lin +157 527 gm +169 527 lin +181 105 gm +F 1 setTxMode +(5)show +181 149 gm +(2634)show +181 203 gm +(6829036)show +181 265 gm +(3.15)show +181 302 gm +(0.63)show +181 339 gm +(0.82)show +181 376 gm +(0.28)show +181 436 gm +(2593)show +181 499 gm +(4.02)show +170 82 gm +0 gr +170 82 lin +170 80 gm +170 80 lin +170 83 gm +170 131 lin +170 134 gm +170 134 lin +170 132 gm +170 132 lin +170 135 gm +170 182 lin +170 185 gm +170 185 lin +170 183 gm +170 183 lin +170 186 gm +170 253 lin +170 256 gm +170 256 lin +170 254 gm +170 254 lin +170 257 gm +170 290 lin +170 293 gm +170 293 lin +170 291 gm +170 291 lin +170 294 gm +170 327 lin +170 330 gm +170 330 lin +170 328 gm +170 328 lin +170 331 gm +170 364 lin +170 367 gm +170 367 lin +170 365 gm +170 365 lin +170 368 gm +170 400 lin +170 403 gm +170 403 lin +170 401 gm +170 401 lin +170 404 gm +170 487 lin +170 490 gm +170 490 lin +170 488 gm +170 488 lin +170 491 gm +170 524 lin +170 527 gm +170 527 lin +170 525 gm +170 525 lin +171 80 gm +183 80 lin +171 82 gm +183 82 lin +171 132 gm +183 132 lin +171 134 gm +183 134 lin +171 183 gm +183 183 lin +171 185 gm +183 185 lin +171 254 gm +183 254 lin +171 256 gm +183 256 lin +171 291 gm +183 291 lin +171 293 gm +183 293 lin +171 328 gm +183 328 lin +171 330 gm +183 330 lin +171 365 gm +183 365 lin +171 367 gm +183 367 lin +171 401 gm +183 401 lin +171 403 gm +183 403 lin +171 488 gm +183 488 lin +171 490 gm +183 490 lin +171 525 gm +183 525 lin +171 527 gm +183 527 lin +196 105 gm +F 1 setTxMode +(7)show +196 149 gm +(2133)show +196 203 gm +(7407997)show +196 265 gm +(3.89)show +196 302 gm +(0.56)show +196 339 gm +(0.77)show +196 376 gm +(0.39)show +196 436 gm +(3473)show +196 499 gm +(5.39)show +184 82 gm +0 gr +184 82 lin +184 80 gm +184 80 lin +184 83 gm +184 131 lin +184 134 gm +184 134 lin +184 132 gm +184 132 lin +184 135 gm +184 182 lin +184 185 gm +184 185 lin +184 183 gm +184 183 lin +184 186 gm +184 253 lin +184 256 gm +184 256 lin +184 254 gm +184 254 lin +184 257 gm +184 290 lin +184 293 gm +184 293 lin +184 291 gm +184 291 lin +184 294 gm +184 327 lin +184 330 gm +184 330 lin +184 328 gm +184 328 lin +184 331 gm +184 364 lin +184 367 gm +184 367 lin +184 365 gm +184 365 lin +184 368 gm +184 400 lin +184 403 gm +184 403 lin +184 401 gm +184 401 lin +184 404 gm +184 487 lin +184 490 gm +184 490 lin +184 488 gm +184 488 lin +184 491 gm +184 524 lin +184 527 gm +184 527 lin +184 525 gm +184 525 lin +185 80 gm +198 80 lin +185 82 gm +198 82 lin +185 132 gm +198 132 lin +185 134 gm +198 134 lin +185 183 gm +198 183 lin +185 185 gm +198 185 lin +185 254 gm +198 254 lin +185 256 gm +198 256 lin +185 291 gm +198 291 lin +185 293 gm +198 293 lin +185 328 gm +198 328 lin +185 330 gm +198 330 lin +185 365 gm +198 365 lin +185 367 gm +198 367 lin +185 401 gm +198 401 lin +185 403 gm +198 403 lin +185 488 gm +198 488 lin +185 490 gm +198 490 lin +185 525 gm +198 525 lin +185 527 gm +198 527 lin +211 105 gm +F 1 setTxMode +(9)show +211 149 gm +(1878)show +211 203 gm +(7810188)show +211 265 gm +(4.42)show +211 302 gm +(0.49)show +211 339 gm +(0.74)show +211 376 gm +(0.46)show +211 436 gm +(4159)show +211 499 gm +(6.46)show +199 82 gm +0 gr +199 82 lin +199 80 gm +199 80 lin +199 83 gm +199 131 lin +199 134 gm +199 134 lin +199 132 gm +199 132 lin +199 135 gm +199 182 lin +199 185 gm +199 185 lin +199 183 gm +199 183 lin +199 186 gm +199 253 lin +199 256 gm +199 256 lin +199 254 gm +199 254 lin +199 257 gm +199 290 lin +199 293 gm +199 293 lin +199 291 gm +199 291 lin +199 294 gm +199 327 lin +199 330 gm +199 330 lin +199 328 gm +199 328 lin +199 331 gm +199 364 lin +199 367 gm +199 367 lin +199 365 gm +199 365 lin +199 368 gm +199 400 lin +199 403 gm +199 403 lin +199 401 gm +199 401 lin +199 404 gm +199 487 lin +199 490 gm +199 490 lin +199 488 gm +199 488 lin +199 491 gm +199 524 lin +199 527 gm +199 527 lin +199 525 gm +199 525 lin +200 80 gm +213 80 lin +200 82 gm +213 82 lin +200 132 gm +213 132 lin +200 134 gm +213 134 lin +200 183 gm +213 183 lin +200 185 gm +213 185 lin +200 254 gm +213 254 lin +200 256 gm +213 256 lin +200 291 gm +213 291 lin +200 293 gm +213 293 lin +200 328 gm +213 328 lin +200 330 gm +213 330 lin +200 365 gm +213 365 lin +200 367 gm +213 367 lin +200 401 gm +213 401 lin +200 403 gm +213 403 lin +200 488 gm +213 488 lin +200 490 gm +213 490 lin +200 525 gm +213 525 lin +200 527 gm +213 527 lin +225 103 gm +F 1 setTxMode +(11)show +225 149 gm +(1699)show +225 203 gm +(8205839)show +225 265 gm +(4.89)show +225 302 gm +(0.44)show +225 339 gm +(0.70)show +225 376 gm +(0.53)show +225 436 gm +(4830)show +225 499 gm +(7.50)show +214 82 gm +0 gr +214 82 lin +214 80 gm +214 80 lin +214 83 gm +214 131 lin +214 134 gm +214 134 lin +214 132 gm +214 132 lin +214 135 gm +214 182 lin +214 185 gm +214 185 lin +214 183 gm +214 183 lin +214 186 gm +214 253 lin +214 256 gm +214 256 lin +214 254 gm +214 254 lin +214 257 gm +214 290 lin +214 293 gm +214 293 lin +214 291 gm +214 291 lin +214 294 gm +214 327 lin +214 330 gm +214 330 lin +214 328 gm +214 328 lin +214 331 gm +214 364 lin +214 367 gm +214 367 lin +214 365 gm +214 365 lin +214 368 gm +214 400 lin +214 403 gm +214 403 lin +214 401 gm +214 401 lin +214 404 gm +214 487 lin +214 490 gm +214 490 lin +214 488 gm +214 488 lin +214 491 gm +214 524 lin +214 527 gm +214 527 lin +214 525 gm +214 525 lin +215 80 gm +227 80 lin +215 82 gm +227 82 lin +230 80 gm +230 82 lin +228 80 gm +230 80 lin +228 82 gm +228 82 lin +228 82 lin +228 83 gm +228 131 lin +230 83 gm +230 131 lin +215 132 gm +227 132 lin +215 134 gm +227 134 lin +228 132 gm +228 134 lin +230 132 gm +230 134 lin +228 135 gm +228 182 lin +230 135 gm +230 182 lin +215 183 gm +227 183 lin +215 185 gm +227 185 lin +228 183 gm +228 185 lin +230 183 gm +230 185 lin +228 186 gm +228 253 lin +230 186 gm +230 253 lin +215 254 gm +227 254 lin +215 256 gm +227 256 lin +228 254 gm +228 256 lin +230 254 gm +230 256 lin +228 257 gm +228 290 lin +230 257 gm +230 290 lin +215 291 gm +227 291 lin +215 293 gm +227 293 lin +228 291 gm +228 293 lin +230 291 gm +230 293 lin +228 294 gm +228 327 lin +230 294 gm +230 327 lin +215 328 gm +227 328 lin +215 330 gm +227 330 lin +228 328 gm +228 330 lin +230 328 gm +230 330 lin +228 331 gm +228 364 lin +230 331 gm +230 364 lin +215 365 gm +227 365 lin +215 367 gm +227 367 lin +228 365 gm +228 367 lin +230 365 gm +230 367 lin +228 368 gm +228 400 lin +230 368 gm +230 400 lin +215 401 gm +227 401 lin +215 403 gm +227 403 lin +228 401 gm +228 403 lin +230 401 gm +230 403 lin +228 404 gm +228 487 lin +230 404 gm +230 487 lin +215 488 gm +227 488 lin +215 490 gm +227 490 lin +228 488 gm +228 490 lin +230 488 gm +230 490 lin +228 491 gm +228 524 lin +230 491 gm +230 524 lin +215 525 gm +227 525 lin +215 527 gm +227 527 lin +230 525 gm +230 527 lin +228 527 gm +230 527 lin +228 525 gm +228 525 lin +228 525 lin +242 79 gm +F 1 setTxMode +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(Fig.19)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +( )show +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(Young-brothers-wait \(Policy A\))show +276 96 gm +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(Procs)show +276 145 gm +(T\312\(sec\))show +276 200 gm +(N\312\(nodes\))show +276 271 gm +(S)show +276 308 gm +(E)show +276 338 gm +(Fpm)show +276 378 gm +(SO)show +276 416 gm +(SS\312\(nodes/sec\))show +276 502 gm +(Sss)show +262 80 gm +0 gr +262 82 lin +262 80 gm +264 80 lin +264 82 gm +264 82 lin +264 82 lin +262 83 gm +262 131 lin +264 83 gm +264 131 lin +262 132 gm +262 134 lin +264 132 gm +264 134 lin +262 135 gm +262 182 lin +264 135 gm +264 182 lin +262 183 gm +262 185 lin +264 183 gm +264 185 lin +262 186 gm +262 253 lin +264 186 gm +264 253 lin +262 254 gm +262 256 lin +264 254 gm +264 256 lin +262 257 gm +262 290 lin +264 257 gm +264 290 lin +262 291 gm +262 293 lin +264 291 gm +264 293 lin +262 294 gm +262 327 lin +264 294 gm +264 327 lin +262 328 gm +262 330 lin +264 328 gm +264 330 lin +262 331 gm +262 364 lin +264 331 gm +264 364 lin +262 365 gm +262 367 lin +264 365 gm +264 367 lin +262 368 gm +262 400 lin +264 368 gm +264 400 lin +262 401 gm +262 403 lin +264 401 gm +264 403 lin +262 404 gm +262 487 lin +264 404 gm +264 487 lin +262 488 gm +262 490 lin +264 488 gm +264 490 lin +262 491 gm +262 524 lin +264 491 gm +264 524 lin +262 525 gm +262 527 lin +264 527 lin +264 525 gm +264 525 lin +264 525 lin +265 80 gm +278 80 lin +265 82 gm +278 82 lin +265 132 gm +278 132 lin +265 134 gm +278 134 lin +265 183 gm +278 183 lin +265 185 gm +278 185 lin +265 254 gm +278 254 lin +265 256 gm +278 256 lin +265 291 gm +278 291 lin +265 293 gm +278 293 lin +265 328 gm +278 328 lin +265 330 gm +278 330 lin +265 365 gm +278 365 lin +265 367 gm +278 367 lin +265 401 gm +278 401 lin +265 403 gm +278 403 lin +265 488 gm +278 488 lin +265 490 gm +278 490 lin +265 525 gm +278 525 lin +265 527 gm +278 527 lin +293 105 gm +F 1 setTxMode +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(1)show +293 149 gm +(8301)show +293 203 gm +(5347545)show +293 269 gm +(---)show +293 306 gm +(---)show +293 343 gm +(---)show +293 380 gm +(---)show +293 439 gm +(644)show +293 503 gm +(---)show +279 82 gm +0 gr +281 82 lin +279 80 gm +281 80 lin +279 83 gm +279 131 lin +281 83 gm +281 131 lin +279 134 gm +279 134 lin +281 132 gm +281 132 lin +279 132 gm +279 132 lin +281 134 gm +281 134 lin +279 135 gm +279 182 lin +281 135 gm +281 182 lin +279 185 gm +279 185 lin +281 183 gm +281 183 lin +279 183 gm +279 183 lin +281 185 gm +281 185 lin +279 186 gm +279 253 lin +281 186 gm +281 253 lin +279 256 gm +279 256 lin +281 254 gm +281 254 lin +279 254 gm +279 254 lin +281 256 gm +281 256 lin +279 257 gm +279 290 lin +281 257 gm +281 290 lin +279 293 gm +279 293 lin +281 291 gm +281 291 lin +279 291 gm +279 291 lin +281 293 gm +281 293 lin +279 294 gm +279 327 lin +281 294 gm +281 327 lin +279 330 gm +279 330 lin +281 328 gm +281 328 lin +279 328 gm +279 328 lin +281 330 gm +281 330 lin +279 331 gm +279 364 lin +281 331 gm +281 364 lin +279 367 gm +279 367 lin +281 365 gm +281 365 lin +279 365 gm +279 365 lin +281 367 gm +281 367 lin +279 368 gm +279 400 lin +281 368 gm +281 400 lin +279 403 gm +279 403 lin +281 401 gm +281 401 lin +279 401 gm +279 401 lin +281 403 gm +281 403 lin +279 404 gm +279 487 lin +281 404 gm +281 487 lin +279 490 gm +279 490 lin +281 488 gm +281 488 lin +279 488 gm +279 488 lin +281 490 gm +281 490 lin +279 491 gm +279 524 lin +281 491 gm +281 524 lin +279 527 gm +281 527 lin +279 525 gm +281 525 lin +282 80 gm +295 80 lin +282 82 gm +295 82 lin +282 132 gm +295 132 lin +282 134 gm +295 134 lin +282 183 gm +295 183 lin +282 185 gm +295 185 lin +282 254 gm +295 254 lin +282 256 gm +295 256 lin +282 291 gm +295 291 lin +282 293 gm +295 293 lin +282 328 gm +295 328 lin +282 330 gm +295 330 lin +282 365 gm +295 365 lin +282 367 gm +295 367 lin +282 401 gm +295 401 lin +282 403 gm +295 403 lin +282 488 gm +295 488 lin +282 490 gm +295 490 lin +282 525 gm +295 525 lin +282 527 gm +295 527 lin +308 105 gm +F 1 setTxMode +(3)show +308 149 gm +(4629)show +308 203 gm +(6476838)show +308 265 gm +(1.79)show +308 302 gm +(0.60)show +308 339 gm +(0.84)show +308 376 gm +(0.21)show +308 436 gm +(1399)show +308 499 gm +(2.17)show +296 82 gm +0 gr +296 82 lin +296 80 gm +296 80 lin +296 83 gm +296 131 lin +296 134 gm +296 134 lin +296 132 gm +296 132 lin +296 135 gm +296 182 lin +296 185 gm +296 185 lin +296 183 gm +296 183 lin +296 186 gm +296 253 lin +296 256 gm +296 256 lin +296 254 gm +296 254 lin +296 257 gm +296 290 lin +296 293 gm +296 293 lin +296 291 gm +296 291 lin +296 294 gm +296 327 lin +296 330 gm +296 330 lin +296 328 gm +296 328 lin +296 331 gm +296 364 lin +296 367 gm +296 367 lin +296 365 gm +296 365 lin +296 368 gm +296 400 lin +296 403 gm +296 403 lin +296 401 gm +296 401 lin +296 404 gm +296 487 lin +296 490 gm +296 490 lin +296 488 gm +296 488 lin +296 491 gm +296 524 lin +296 527 gm +296 527 lin +296 525 gm +296 525 lin +297 80 gm +310 80 lin +297 82 gm +310 82 lin +297 132 gm +310 132 lin +297 134 gm +310 134 lin +297 183 gm +310 183 lin +297 185 gm +310 185 lin +297 254 gm +310 254 lin +297 256 gm +310 256 lin +297 291 gm +310 291 lin +297 293 gm +310 293 lin +297 328 gm +310 328 lin +297 330 gm +310 330 lin +297 365 gm +310 365 lin +297 367 gm +310 367 lin +297 401 gm +310 401 lin +297 403 gm +310 403 lin +297 488 gm +310 488 lin +297 490 gm +310 490 lin +297 525 gm +310 525 lin +297 527 gm +310 527 lin +323 105 gm +F 1 setTxMode +(5)show +323 149 gm +(2798)show +323 203 gm +(7280335)show +323 265 gm +(2.97)show +323 302 gm +(0.59)show +323 339 gm +(0.88)show +323 376 gm +(0.36)show +323 436 gm +(2602)show +323 499 gm +(4.04)show +311 82 gm +0 gr +311 82 lin +311 80 gm +311 80 lin +311 83 gm +311 131 lin +311 134 gm +311 134 lin +311 132 gm +311 132 lin +311 135 gm +311 182 lin +311 185 gm +311 185 lin +311 183 gm +311 183 lin +311 186 gm +311 253 lin +311 256 gm +311 256 lin +311 254 gm +311 254 lin +311 257 gm +311 290 lin +311 293 gm +311 293 lin +311 291 gm +311 291 lin +311 294 gm +311 327 lin +311 330 gm +311 330 lin +311 328 gm +311 328 lin +311 331 gm +311 364 lin +311 367 gm +311 367 lin +311 365 gm +311 365 lin +311 368 gm +311 400 lin +311 403 gm +311 403 lin +311 401 gm +311 401 lin +311 404 gm +311 487 lin +311 490 gm +311 490 lin +311 488 gm +311 488 lin +311 491 gm +311 524 lin +311 527 gm +311 527 lin +311 525 gm +311 525 lin +312 80 gm +325 80 lin +312 82 gm +325 82 lin +312 132 gm +325 132 lin +312 134 gm +325 134 lin +312 183 gm +325 183 lin +312 185 gm +325 185 lin +312 254 gm +325 254 lin +312 256 gm +325 256 lin +312 291 gm +325 291 lin +312 293 gm +325 293 lin +312 328 gm +325 328 lin +312 330 gm +325 330 lin +312 365 gm +325 365 lin +312 367 gm +325 367 lin +312 401 gm +325 401 lin +312 403 gm +325 403 lin +312 488 gm +325 488 lin +312 490 gm +325 490 lin +312 525 gm +325 525 lin +312 527 gm +325 527 lin +338 105 gm +F 1 setTxMode +(7)show +338 149 gm +(2223)show +338 203 gm +(8133582)show +338 265 gm +(3.73)show +338 302 gm +(0.53)show +338 339 gm +(0.89)show +338 376 gm +(0.52)show +338 436 gm +(3659)show +338 499 gm +(5.68)show +326 82 gm +0 gr +326 82 lin +326 80 gm +326 80 lin +326 83 gm +326 131 lin +326 134 gm +326 134 lin +326 132 gm +326 132 lin +326 135 gm +326 182 lin +326 185 gm +326 185 lin +326 183 gm +326 183 lin +326 186 gm +326 253 lin +326 256 gm +326 256 lin +326 254 gm +326 254 lin +326 257 gm +326 290 lin +326 293 gm +326 293 lin +326 291 gm +326 291 lin +326 294 gm +326 327 lin +326 330 gm +326 330 lin +326 328 gm +326 328 lin +326 331 gm +326 364 lin +326 367 gm +326 367 lin +326 365 gm +326 365 lin +326 368 gm +326 400 lin +326 403 gm +326 403 lin +326 401 gm +326 401 lin +326 404 gm +326 487 lin +326 490 gm +326 490 lin +326 488 gm +326 488 lin +326 491 gm +326 524 lin +326 527 gm +326 527 lin +326 525 gm +326 525 lin +327 80 gm +340 80 lin +327 82 gm +340 82 lin +327 132 gm +340 132 lin +327 134 gm +340 134 lin +327 183 gm +340 183 lin +327 185 gm +340 185 lin +327 254 gm +340 254 lin +327 256 gm +340 256 lin +327 291 gm +340 291 lin +327 293 gm +340 293 lin +327 328 gm +340 328 lin +327 330 gm +340 330 lin +327 365 gm +340 365 lin +327 367 gm +340 367 lin +327 401 gm +340 401 lin +327 403 gm +340 403 lin +327 488 gm +340 488 lin +327 490 gm +340 490 lin +327 525 gm +340 525 lin +327 527 gm +340 527 lin +353 105 gm +F 1 setTxMode +(9)show +353 149 gm +(1972)show +353 203 gm +(8541944)show +353 265 gm +(4.21)show +353 302 gm +(0.47)show +353 339 gm +(0.89)show +353 376 gm +(0.60)show +353 436 gm +(4332)show +353 499 gm +(6.72)show +341 82 gm +0 gr +341 82 lin +341 80 gm +341 80 lin +341 83 gm +341 131 lin +341 134 gm +341 134 lin +341 132 gm +341 132 lin +341 135 gm +341 182 lin +341 185 gm +341 185 lin +341 183 gm +341 183 lin +341 186 gm +341 253 lin +341 256 gm +341 256 lin +341 254 gm +341 254 lin +341 257 gm +341 290 lin +341 293 gm +341 293 lin +341 291 gm +341 291 lin +341 294 gm +341 327 lin +341 330 gm +341 330 lin +341 328 gm +341 328 lin +341 331 gm +341 364 lin +341 367 gm +341 367 lin +341 365 gm +341 365 lin +341 368 gm +341 400 lin +341 403 gm +341 403 lin +341 401 gm +341 401 lin +341 404 gm +341 487 lin +341 490 gm +341 490 lin +341 488 gm +341 488 lin +341 491 gm +341 524 lin +341 527 gm +341 527 lin +341 525 gm +341 525 lin +342 80 gm +355 80 lin +342 82 gm +355 82 lin +342 132 gm +355 132 lin +342 134 gm +355 134 lin +342 183 gm +355 183 lin +342 185 gm +355 185 lin +342 254 gm +355 254 lin +342 256 gm +355 256 lin +342 291 gm +355 291 lin +342 293 gm +355 293 lin +342 328 gm +355 328 lin +342 330 gm +355 330 lin +342 365 gm +355 365 lin +342 367 gm +355 367 lin +342 401 gm +355 401 lin +342 403 gm +355 403 lin +342 488 gm +355 488 lin +342 490 gm +355 490 lin +342 525 gm +355 525 lin +342 527 gm +355 527 lin +368 103 gm +F 1 setTxMode +(11)show +368 149 gm +(1663)show +368 203 gm +(8689459)show +368 265 gm +(4.99)show +368 302 gm +(0.45)show +368 339 gm +(0.89)show +368 376 gm +(0.62)show +368 436 gm +(5225)show +368 499 gm +(8.11)show +356 82 gm +0 gr +356 82 lin +356 80 gm +356 80 lin +356 83 gm +356 131 lin +356 134 gm +356 134 lin +356 132 gm +356 132 lin +356 135 gm +356 182 lin +356 185 gm +356 185 lin +356 183 gm +356 183 lin +356 186 gm +356 253 lin +356 256 gm +356 256 lin +356 254 gm +356 254 lin +356 257 gm +356 290 lin +356 293 gm +356 293 lin +356 291 gm +356 291 lin +356 294 gm +356 327 lin +356 330 gm +356 330 lin +356 328 gm +356 328 lin +356 331 gm +356 364 lin +356 367 gm +356 367 lin +356 365 gm +356 365 lin +356 368 gm +356 400 lin +356 403 gm +356 403 lin +356 401 gm +356 401 lin +356 404 gm +356 487 lin +356 490 gm +356 490 lin +356 488 gm +356 488 lin +356 491 gm +356 524 lin +356 527 gm +356 527 lin +356 525 gm +356 525 lin +357 80 gm +370 80 lin +357 82 gm +370 82 lin +373 80 gm +373 82 lin +371 80 gm +373 80 lin +371 82 gm +371 82 lin +371 82 lin +371 83 gm +371 131 lin +373 83 gm +373 131 lin +357 132 gm +370 132 lin +357 134 gm +370 134 lin +371 132 gm +371 134 lin +373 132 gm +373 134 lin +371 135 gm +371 182 lin +373 135 gm +373 182 lin +357 183 gm +370 183 lin +357 185 gm +370 185 lin +371 183 gm +371 185 lin +373 183 gm +373 185 lin +371 186 gm +371 253 lin +373 186 gm +373 253 lin +357 254 gm +370 254 lin +357 256 gm +370 256 lin +371 254 gm +371 256 lin +373 254 gm +373 256 lin +371 257 gm +371 290 lin +373 257 gm +373 290 lin +357 291 gm +370 291 lin +357 293 gm +370 293 lin +371 291 gm +371 293 lin +373 291 gm +373 293 lin +371 294 gm +371 327 lin +373 294 gm +373 327 lin +357 328 gm +370 328 lin +357 330 gm +370 330 lin +371 328 gm +371 330 lin +373 328 gm +373 330 lin +371 331 gm +371 364 lin +373 331 gm +373 364 lin +357 365 gm +370 365 lin +357 367 gm +370 367 lin +371 365 gm +371 367 lin +373 365 gm +373 367 lin +371 368 gm +371 400 lin +373 368 gm +373 400 lin +357 401 gm +370 401 lin +357 403 gm +370 403 lin +371 401 gm +371 403 lin +373 401 gm +373 403 lin +371 404 gm +371 487 lin +373 404 gm +373 487 lin +357 488 gm +370 488 lin +357 490 gm +370 490 lin +371 488 gm +371 490 lin +373 488 gm +373 490 lin +371 491 gm +371 524 lin +373 491 gm +373 524 lin +357 525 gm +370 525 lin +357 527 gm +370 527 lin +373 525 gm +373 527 lin +371 527 gm +373 527 lin +371 525 gm +371 525 lin +371 525 lin +385 79 gm +F 1 setTxMode +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(Fig.20)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +( )show +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(Young-brothers-wait \(Policy B\))show +401 79 gm +0 fs +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.80612 0. 32 0.08061 0.(These tables show several differences, although the policies are similar. Policy A gives a smaller)awidthshow +412 79 gm +0.13977 0. 32 0.01397 0.(search overhead, thanks to the signature tree; moreover, using less processors policy A is better than)awidthshow +423 79 gm +1.55426 0. 32 0.15542 0.(B. However, the production factor in A deteriorates with more processors, because the global)awidthshow +434 79 gm +0.20507 0. 32 0.02050 0.(condition it uses reduces the response time for each new task, even if there are "often" idle workers.)awidthshow +445 79 gm +0.20172 0. 32 0.02017 0.(On the other hand, policy B increments the average number of tasks in the agenda, and it lowers the)awidthshow +456 79 gm +0.15075 0. 32 0.01507 0.(coupling between the master and the workers. With 11 processors, we have a high production factor)awidthshow +467 79 gm +0.84869 0. 32 0.08486 0.(\(89%\). This algorithm results in a finer splitting and higher communication overhead due to task)awidthshow +478 79 gm +-0.00103 0.(distribution and collection of results. Let us try to analyze such an overhead. Look at the F)ashow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +(pm)show +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +( column)show +489 79 gm +0.65643 0. 32 0.06564 0.(in Fig.21: such values include also communication overhead. Thus, we should split F)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.20443 0.(pm)ashow +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.37826 0. 32 0.03782 0.( into F)awidthshow +9 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.25767 0.(pmr)ashow +500 79 gm +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(\(real productivity\) e OC \(communication overhead\):)show +529 98 gm +1 fs +10 fz +bu fc +2 F /|______Times-Bold fnt +bn +(Procs)show +529 146 gm +(Fpm)show +529 181 gm +(Fpmr)show +529 223 gm +(OC)show +515 80 gm +0 gr +515 82 lin +515 80 gm +517 80 lin +517 82 gm +517 82 lin +517 82 lin +515 83 gm +515 135 lin +517 83 gm +517 135 lin +515 136 gm +515 138 lin +517 136 gm +517 138 lin +515 139 gm +515 172 lin +517 139 gm +517 172 lin +515 173 gm +515 175 lin +517 173 gm +517 175 lin +515 176 gm +515 209 lin +517 176 gm +517 209 lin +515 210 gm +515 212 lin +517 210 gm +517 212 lin +515 213 gm +515 246 lin +517 213 gm +517 246 lin +515 247 gm +515 249 lin +517 249 lin +517 247 gm +517 247 lin +517 247 lin +518 80 gm +531 80 lin +518 82 gm +531 82 lin +518 136 gm +531 136 lin +518 138 gm +531 138 lin +518 173 gm +531 173 lin +518 175 gm +531 175 lin +518 210 gm +531 210 lin +518 212 gm +531 212 lin +518 247 gm +531 247 lin +518 249 gm +531 249 lin +546 107 gm +F 1 setTxMode +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(3)show +546 147 gm +(0.85)show +546 184 gm +(0.84)show +546 221 gm +(0.01)show +532 82 gm +0 gr +534 82 lin +532 80 gm +534 80 lin +532 83 gm +532 135 lin +534 83 gm +534 135 lin +532 138 gm +532 138 lin +534 136 gm +534 136 lin +532 136 gm +532 136 lin +534 138 gm +534 138 lin +532 139 gm +532 172 lin +534 139 gm +534 172 lin +532 175 gm +532 175 lin +534 173 gm +534 173 lin +532 173 gm +532 173 lin +534 175 gm +534 175 lin +532 176 gm +532 209 lin +534 176 gm +534 209 lin +532 212 gm +532 212 lin +534 210 gm +534 210 lin +532 210 gm +532 210 lin +534 212 gm +534 212 lin +532 213 gm +532 246 lin +534 213 gm +534 246 lin +532 249 gm +534 249 lin +532 247 gm +534 247 lin +535 80 gm +548 80 lin +535 82 gm +548 82 lin +535 136 gm +548 136 lin +535 138 gm +548 138 lin +535 173 gm +548 173 lin +535 175 gm +548 175 lin +535 210 gm +548 210 lin +535 212 gm +548 212 lin +535 247 gm +548 247 lin +535 249 gm +548 249 lin +561 107 gm +F 1 setTxMode +(5)show +561 147 gm +(0.88)show +561 184 gm +(0.80)show +561 221 gm +(0.08)show +549 82 gm +0 gr +549 82 lin +549 80 gm +549 80 lin +549 83 gm +549 135 lin +549 138 gm +549 138 lin +549 136 gm +549 136 lin +549 139 gm +549 172 lin +549 175 gm +549 175 lin +549 173 gm +549 173 lin +549 176 gm +549 209 lin +549 212 gm +549 212 lin +549 210 gm +549 210 lin +549 213 gm +549 246 lin +549 249 gm +549 249 lin +549 247 gm +549 247 lin +550 80 gm +563 80 lin +550 82 gm +563 82 lin +550 136 gm +563 136 lin +550 138 gm +563 138 lin +550 173 gm +563 173 lin +550 175 gm +563 175 lin +550 210 gm +563 210 lin +550 212 gm +563 212 lin +550 247 gm +563 247 lin +550 249 gm +563 249 lin +576 107 gm +F 1 setTxMode +(7)show +576 147 gm +(0.89)show +576 184 gm +(0.80)show +576 221 gm +(0.09)show +564 82 gm +0 gr +564 82 lin +564 80 gm +564 80 lin +564 83 gm +564 135 lin +564 138 gm +564 138 lin +564 136 gm +564 136 lin +564 139 gm +564 172 lin +564 175 gm +564 175 lin +564 173 gm +564 173 lin +564 176 gm +564 209 lin +564 212 gm +564 212 lin +564 210 gm +564 210 lin +564 213 gm +564 246 lin +564 249 gm +564 249 lin +564 247 gm +564 247 lin +565 80 gm +578 80 lin +565 82 gm +578 82 lin +565 136 gm +578 136 lin +565 138 gm +578 138 lin +565 173 gm +578 173 lin +565 175 gm +578 175 lin +565 210 gm +578 210 lin +565 212 gm +578 212 lin +565 247 gm +578 247 lin +565 249 gm +578 249 lin +591 107 gm +F 1 setTxMode +(9)show +591 147 gm +(0.89)show +591 184 gm +(0.75)show +591 221 gm +(0.14)show +579 82 gm +0 gr +579 82 lin +579 80 gm +579 80 lin +579 83 gm +579 135 lin +579 138 gm +579 138 lin +579 136 gm +579 136 lin +579 139 gm +579 172 lin +579 175 gm +579 175 lin +579 173 gm +579 173 lin +579 176 gm +579 209 lin +579 212 gm +579 212 lin +579 210 gm +579 210 lin +579 213 gm +579 246 lin +579 249 gm +579 249 lin +579 247 gm +579 247 lin +580 80 gm +593 80 lin +580 82 gm +593 82 lin +580 136 gm +593 136 lin +580 138 gm +593 138 lin +580 173 gm +593 173 lin +580 175 gm +593 175 lin +580 210 gm +593 210 lin +580 212 gm +593 212 lin +580 247 gm +593 247 lin +580 249 gm +593 249 lin +606 105 gm +F 1 setTxMode +(11)show +606 147 gm +(0.89)show +606 184 gm +(0.73)show +606 221 gm +(0.16)show +594 82 gm +0 gr +594 82 lin +594 80 gm +594 80 lin +594 83 gm +594 135 lin +594 138 gm +594 138 lin +594 136 gm +594 136 lin +594 139 gm +594 172 lin +594 175 gm +594 175 lin +594 173 gm +594 173 lin +594 176 gm +594 209 lin +594 212 gm +594 212 lin +594 210 gm +594 210 lin +594 213 gm +594 246 lin +594 249 gm +594 249 lin +594 247 gm +594 247 lin +595 80 gm +608 80 lin +595 82 gm +608 82 lin +611 80 gm +611 82 lin +609 80 gm +611 80 lin +609 82 gm +609 82 lin +609 82 lin +609 83 gm +609 135 lin +611 83 gm +611 135 lin +595 136 gm +608 136 lin +595 138 gm +608 138 lin +609 136 gm +609 138 lin +611 136 gm +611 138 lin +609 139 gm +609 172 lin +611 139 gm +611 172 lin +595 173 gm +608 173 lin +595 175 gm +608 175 lin +609 173 gm +609 175 lin +611 173 gm +611 175 lin +609 176 gm +609 209 lin +611 176 gm +611 209 lin +595 210 gm +608 210 lin +595 212 gm +608 212 lin +609 210 gm +609 212 lin +611 210 gm +611 212 lin +609 213 gm +609 246 lin +611 213 gm +611 246 lin +595 247 gm +608 247 lin +595 249 gm +608 249 lin +611 247 gm +611 249 lin +609 249 gm +611 249 lin +609 247 gm +609 247 lin +609 247 lin +623 79 gm +F 1 setTxMode +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +(Fig.21)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +( )show +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(Policy B: analyizing the average production factor)show +639 79 gm +0 fs +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +2.32254 0. 32 0.23225 0.(Such a table shows that the cost to be paid for communication overhead on a network of)awidthshow +650 79 gm +(workstations is high.)show +680 79 gm +1 fs +12 fz +bu fc +2 F /|______Times-Bold fnt +bn +(6. Conclusions)show +693 79 gm +0 fs +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.09750 0. 32 0.00975 0.(We have compared a number of parallel search algorithms in the domain of chess. We used Linda to)awidthshow +704 79 gm +2.65197 0. 32 0.26519 0.(develop two basic programs, one for static splitting and one for dynamic splitting. Their)awidthshow +715 79 gm +1.17568 0. 32 0.11756 0.(performances were progressively improved, especially using democratic cooperation with a low)awidthshow +726 79 gm +0.44967 0. 32 0.04496 0.(number of processors. For all algorithms we have sistematically measured the speedup S. We have)awidthshow +737 79 gm +0.63659 0. 32 0.06365 0.(seen that the theoretically optimum speedup S=N with N processors is impossible to reach for the)awidthshow +748 79 gm +(following reasons:)show +F T cp +%%Page: ? 19 +op +30 28 811 566 fr +0 0 xl +1 1 pen +0 0 gm +(nc 0 0 0 0 6 rc)kp +91 336 gm +(nc 30 28 811 566 6 rc)kp +F 1 setTxMode +0 fs +10 fz +bu fc +2 F /|______Helvetica fnt +bn +(A Comparison of Parallel Search Algorithms)show +773 79 gm +(UBLCS-94-14)show +773 514 gm +(17)show +118 88 gm +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +(\245\312commmunication overhead, given by messages betwen processors;)show +131 88 gm +(\245\312search overhead, given by duplication of subtree evaluation;)show +144 88 gm +(\245\312synchronisation overhead, given by bad load balancing.)show +156 79 gm +0.64361 0. 32 0.06436 0.(The most annoying problem is the coupling among these overheads: if we tried to reduce one, we)awidthshow +167 79 gm +0.73684 0. 32 0.07368 0.(got always an increase in another. For instance, the algorithm with dynamic splitting of the game)awidthshow +178 79 gm +0.86013 0. 32 0.08601 0.(tree top level \(Fig.15\) gives the best load balancing \(Fpm=90% with 11 processors\), but also the)awidthshow +189 79 gm +(worst search overhead \(SO=108% with 11 processors\).)show +200 79 gm +0.15335 0. 32 0.01533 0.(Thus, we searched for a tradeoff among the overheads. Our results say that the best results are given)awidthshow +211 79 gm +1.15768 0. 32 0.11576 0.(by PVSplit combined either with score sharing \(S=5.57 with 11 processors; see Fig.13\) or with)awidthshow +222 79 gm +(dynamic distribution \(S=5.58 with 11 processors; see Fig.16\).)show +233 79 gm +1.33804 0. 32 0.13380 0.(Our results can easily be compared with results obtained by other researchers. For instance, in)awidthshow +244 79 gm +0.79193 0. 32 0.07919 0.([MOS86] a speedup of 3.66 with 5 workstations is reported; such a measure was obtained with a)awidthshow +255 79 gm +0.22323 0. 32 0.02232 0.(depth of 7 plies on the Bratko-Kopec test; with a shallower depth \(5 plies\) we got a speedup of 3.49)awidthshow +266 79 gm +1.10260 0. 32 0.11026 0.(\(3.75 with score sharing\). In [Sch89] a speedup of 4.78 with 7 processors, depth of 7 plies was)awidthshow +277 79 gm +0.07385 0. 32 0.00738 0.(obtained for DPVSplit; we got a speedup of 4.54 \(depth = 5 plies\). These results seem to say that the)awidthshow +288 79 gm +1.30981 0. 32 0.13098 0.(use of the Linda programming model does not introduce any special overhead for this class of)awidthshow +299 79 gm +(programs.)show +310 79 gm +0.55175 0. 32 0.05517 0.(On the other hand, we got bad comparison results for algorithms based on dynamic distribution of)awidthshow +321 79 gm +2.16812 0. 32 0.21681 0.(search. However, the problem seems to be the hardware architecture, not the programming)awidthshow +332 79 gm +(environment; in fact, we found the following results in literature:)show +345 88 gm +10 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.34454 0. 32 0.03445 0.(\245\312[Eli90] reports that the program Oracol, based on dynamic splitting and written in Orca, gets a maximum)awidthshow +356 101 gm +(speedup of 5.5 on a multiprocessor with shared memory and 10 processors.)show +369 88 gm +1.61331 0. 32 0.16133 0.(\245\312[FMM92] presents a dynamic algorithm based on "young-brothers-wait". On a transputer with 256)awidthshow +380 101 gm +(processors, the authors report a surprising speedup of 126 \(depth 8-plies\).)show +391 79 gm +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.74722 0. 32 0.07472 0.(These results suggest that dynamic splitting algorithms can offer good performances, but only on)awidthshow +402 79 gm +0.29296 0. 32 0.02929 0.(shared memory or on massive parallel systems where communication and fine-grain parallelism are)awidthshow +413 79 gm +0.30899 0. 32 0.03089 0.(cheap. It would be interesting to test out general dynamic splitting algorithm on these architectures.)awidthshow +424 79 gm +1.09130 0. 32 0.10913 0.(Also, it would be interesting to verify in massively parallel machines the asyntotic convergence)awidthshow +435 79 gm +(postulated in [MOS86] for static splitting methods .)show +457 79 gm +1 fs +bu fc +2 F /|______Times-Bold fnt +bn +0.00860 0.(Acknowledgements)ashow +457 170 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +3.80035 0. 32 0.38003 0.(. This paper has been partially supported by ESPRIT BRA Project)awidthshow +468 79 gm +0.03295 0. 32 0.00329 0.(BROADCAST and by Italian CNR.)awidthshow +F T cp +%%Page: ? 20 +op +30 28 811 566 fr +0 0 xl +1 1 pen +0 0 gm +(nc 0 0 0 0 6 rc)kp +91 476 gm +(nc 30 28 811 566 6 rc)kp +F 1 setTxMode +0 fs +10 fz +bu fc +2 F /|______Helvetica fnt +bn +(Bibliography)show +773 79 gm +(UBLCS-94-14)show +773 514 gm +(18)show +134 79 gm +1 fs +12 fz +bu fc +2 F /|______Times-Bold fnt +bn +(Bibliography)show +158 79 gm +0 fs +11 fz +bu fc +2 F /|______Times-Roman fnt +bn +0.00982 0.([ABD82])ashow +158 130 gm +0.88424 0. 32 0.08842 0.(S.Akl, D.Barnard, R.Doran, "Design, Analysis, and Implementation of a Parallel Tree)awidthshow +169 130 gm +0.81619 0. 32 0.08161 0.(Search Algorithm", )awidthshow +169 221 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +0.82031 0. 32 0.08203 0.(IEEE Transactions on Pattern Analysis and Machine Intelligence,)awidthshow +180 130 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(4\(2\), \(1982\), 192-203.)show +191 79 gm +0.11459 0. 32 0.01145 0.([BalvRe86] H.Bal, R.vanRenesse, "A summary of parallel alpha-beta search results", )awidthshow +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +0.16403 0. 32 0.01640 0.(ICCA Journal)awidthshow +191 520 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(,)show +202 130 gm +(\(Sep.1986\), 146-149.)show +213 79 gm +0.00852 0.([Bau78])ashow +213 130 gm +0.95748 0. 32 0.09574 0.(G.Baudet, "The design and analysis of algorithms for asynchronous multiprocessors",)awidthshow +224 130 gm +(Ph.D. Thesis, CS Dept., Carnegie-Mellon Univ., \(Apr.1978\).)show +235 79 gm +1.93359 0. 32 0.19335 0.([BraKop82] I.Bratko, D.Kopec, "The Bratko-Kopec experiment: a comparison of human and)awidthshow +246 130 gm +1.90719 0. 32 0.19071 0.(computer performance in chess", )awidthshow +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +1.87927 0. 32 0.18792 0.(Advances in Computer Chess 3)awidthshow +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +1.51840 0. 32 0.15184 0.(, M Clarke \(Ed.\),)awidthshow +257 130 gm +(\(1982\), 57)show +257 175 gm +(-72, Pergamon Press.)show +268 79 gm +0.81268 0. 32 0.08126 0.([CarGel90] N.Carriero, D.Gelernter, )awidthshow +268 247 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +1.04995 0. 32 0.10499 0.(How to write parallel programs. A first course)awidthshow +268 464 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +1.11068 0. 32 0.11106 0.(, MIT Press,)awidthshow +279 130 gm +(1990.)show +290 79 gm +([Ebe86])show +290 130 gm +(C.Ebeling, )show +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(All the Right Moves: A VLSI Architecture for Chess)show +290 406 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(, MIT Press, 1986.)show +301 79 gm +([Eli90])show +301 130 gm +0.07461 0. 32 0.00746 0.(R.Elias, "Oracol, A Chess Problem Solver in Orca", Dept. of Mathematics and Computer)awidthshow +312 130 gm +(Science, Vrije Universiteit, Amsterdam, \(1990\).)show +323 79 gm +([Elo86])show +323 130 gm +(A.Elo, The Rating of Chessplayers: Past and Present, 2nd Ed., Arco, 1986.)show +334 79 gm +0.01040 0.([FMM91])ashow +334 130 gm +0.47592 0. 32 0.04759 0.(R.Feldmann, P.Mysliwietz, B.Monien, "A Fully Distributed Chess Program", )awidthshow +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +0.12760 0.(Advances)ashow +345 130 gm +(in computer chess)show +345 209 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +( 6, D. Beal \(Ed.\), \(1991\), 1)show +345 330 gm +(-27.)show +356 79 gm +0.01040 0.([FMM92])ashow +356 130 gm +1.51596 0. 32 0.15159 0.(R.Feldmann, P.Mysliwietz, B.Monien, "Experiments with a Fully-Distributed Chess)awidthshow +367 130 gm +1.80343 0. 32 0.18034 0.(Program", )awidthshow +367 181 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +1.83212 0. 32 0.18321 0.(Heuristic Programming in AI)awidthshow +367 321 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +1.69158 0. 32 0.16915 0.(, J.VanDenHerik and\312V.Allis \(Eds.\), Hellis)awidthshow +378 130 gm +(Horwood, \(1992\), 72-87.)show +389 79 gm +0.00732 0.([FelOtt88])ashow +389 130 gm +2.39242 0. 32 0.23924 0.(E.Felten, S.Otto, "A Highly Parallel Chess Program", )awidthshow +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +2.52624 0. 32 0.25262 0.(Proc. of the International)awidthshow +400 130 gm +(Conference on Fifth Generation Computer Systems)show +400 356 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(, \(1988\), 1001-1009.)show +411 79 gm +0.00732 0.([FisFin80])ashow +411 130 gm +0.42098 0. 32 0.04209 0.(J.Fishburn, R.Finkel, "Parallelism in Alpha-Beta Search on Arachne", Technical Report)awidthshow +422 130 gm +(394, CS. Dept., Univ. of Wisconsin, Madison, \(Jul.1980\).)show +433 79 gm +0.00732 0.([FinFis82])ashow +433 130 gm +0.40954 0. 32 0.04095 0.(J.Fishburn, R.Finkel, "Parallelism in alpha-beta search", )awidthshow +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +0.57022 0. 32 0.05702 0.(Artificial Intelligence)awidthshow +433 479 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +0.62805 0. 32 0.06280 0.(, Vol. 19,)awidthshow +444 130 gm +(\(1982\), 89)show +444 175 gm +(-106.)show +455 79 gm +0.21102 0. 32 0.02110 0.([FMMV89] R.Feldmann, P.Mysliwietz, B.Monien, O.Vornberger, "Distributed Game-Tree Search",)awidthshow +466 130 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(ICCA Journal)show +466 192 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(, Vol.12, No.2, \(1989\), 65-73.)show +477 79 gm +([Gil72])show +477 130 gm +1.13174 0. 32 0.11317 0.(J.Gillogly, "The Technology Chess Program", )awidthshow +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +1.52526 0. 32 0.15252 0.(Artificial Intelligence)awidthshow +477 445 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +1.66229 0. 32 0.16622 0.(, Vol. 3, \(1972\),)awidthshow +488 130 gm +(145-163.)show +499 79 gm +0.00852 0.([Hsu90])ashow +499 130 gm +0.22567 0. 32 0.02256 0.(F.Hsu, "Large scale parallelization of alpha)awidthshow +499 323 gm +0.22186 0. 32 0.02218 0.(-beta search: an algorithmic and architectural)awidthshow +510 130 gm +0.32073 0. 32 0.03207 0.(study with computer chess", Ph.D. thesis, Carnegie Mellon University, Pittsburgh, \(Feb.)awidthshow +521 130 gm +(1990\).)show +532 79 gm +0.00939 0.([SCA90])ashow +532 130 gm +2.24731 0. 32 0.22473 0.("C-Linda Reference Manual", Scientific Computing Associates Inc., New Haven,)awidthshow +543 130 gm +(Connecticut, \(1990\).)show +554 79 gm +0.00982 0.([MBS91])ashow +554 130 gm +1.20208 0. 32 0.12020 0.(T.Marsland, T.Breitkreutz, S.Sutphen, \322A network multiprocessor for experiments in)awidthshow +565 130 gm +(parallelism\323, )show +565 189 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(Concurrency: Practice and Experience)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(, 3\(3\), \(Jun.1991\), 203-219.)show +576 79 gm +0.81314 0. 32 0.08131 0.([MarCam82] T.Marsland, M.Campbell, "Parallel Search of Strongly Ordered Game Trees", )awidthshow +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +0.43041 0.(ACM)ashow +587 130 gm +(Computing Surveys)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(, Vol.14, No.4, \(Dec.1982\), 533-551.)show +598 79 gm +0.00996 0.([MOS86])ashow +598 130 gm +3.57879 0. 32 0.35787 0.(T.Marsland, M.Olafsson,J.Schaeffer, "Multiprocessor tree-search experiments",)awidthshow +609 130 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(Adavances in Computer Chess 4)show +609 273 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(, Pergamon Press, \(1986\), 37-51.)show +620 79 gm +([Sch89])show +620 130 gm +1.27441 0. 32 0.12744 0.(J.Schaeffer, "Distributed Game-Tree Searching", )awidthshow +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +1.08673 0. 32 0.10867 0.(Journal of Parallel and Distributed)awidthshow +631 130 gm +(Computing)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(, 6, \(1989\), 90-114.)show +642 79 gm +([Sti91])show +642 130 gm +3.38684 0. 32 0.33868 0.(L.Stiller, "Group Graphs and Computational Symmetry on Massively Parallel)awidthshow +653 130 gm +(Architecture", )show +653 195 gm +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +(The Journal of Supercomputing)show +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +(, 5, \(1991\), 99-117.)show +664 79 gm +0.00852 0.([Tho82])ashow +664 130 gm +1.79061 0. 32 0.17906 0.(K.Thompson, "Computer Chess Strength", )awidthshow +2 fs +bu fc +2 F /|______Times-Italic fnt +bn +1.52160 0. 32 0.15216 0.(Advances in Computer Chess 3)awidthshow +664 481 gm +0 fs +bu fc +2 F /|______Times-Roman fnt +bn +1.78756 0. 32 0.17875 0.(, M.R.B.)awidthshow +675 130 gm +(Clarke \(Ed.\), Pergamon Press, \(1982\), 55-56.)show +F T cp +%%Trailer +cd +end +%%Pages: 20 0 +%%EOF diff --git a/parallel/dop7.ps b/parallel/dop7.ps new file mode 100755 index 0000000..eff0ac1 --- /dev/null +++ b/parallel/dop7.ps @@ -0,0 +1,1844 @@ +%!PS-Adobe-2.0 +%%Creator: dvipsk 5.58f Copyright 1986, 1994 Radical Eye Software +%%Title: dop7.dvi +%%Pages: 14 +%%PageOrder: Ascend +%%BoundingBox: 0 0 612 792 +%%DocumentFonts: Helvetica Courier Helvetica-Bold Helvetica-Oblique +%%DocumentPaperSizes: Letter +%%EndComments +%DVIPSCommandLine: dvips -o dop7.ps dop7 +%DVIPSParameters: dpi=600, comments removed +%DVIPSSource: TeX output 1998.10.27:1114 +%%BeginProcSet: fix-lj4si-ps-bug.pro +/fixcurrentmatrix { + statusdict /product known { + statusdict /product get (HP LaserJet 4Si) eq { + /version where { + /version get (2011.110) eq { + matrix currentmatrix + dup dup 0 get 32768 mul round 32768 div 0 exch put + dup dup 3 get 32768 mul round 32768 div 3 exch put + systemdict /setmatrix get exec + } if + } if + } if + } if +} bind def + +/setmatrix { + systemdict /setmatrix get exec + fixcurrentmatrix +} bind def +%%EndProcSet +%%BeginProcSet: tex.pro +/TeXDict 250 dict def TeXDict begin /N{def}def /B{bind def}N /S{exch}N +/X{S N}B /TR{translate}N /isls false N /vsize 11 72 mul N /hsize 8.5 72 +mul N /landplus90{false}def /@rigin{isls{[0 landplus90{1 -1}{-1 1} +ifelse 0 0 0]concat}if 72 Resolution div 72 VResolution div neg scale +isls{landplus90{VResolution 72 div vsize mul 0 exch}{Resolution -72 div +hsize mul 0}ifelse TR}if Resolution VResolution vsize -72 div 1 add mul +TR[matrix currentmatrix{dup dup round sub abs 0.00001 lt{round}if} +forall round exch round exch]setmatrix}N /@landscape{/isls true N}B +/@manualfeed{statusdict /manualfeed true put}B /@copies{/#copies X}B +/FMat[1 0 0 -1 0 0]N /FBB[0 0 0 0]N /nn 0 N /IE 0 N /ctr 0 N /df-tail{ +/nn 8 dict N nn begin /FontType 3 N /FontMatrix fntrx N /FontBBox FBB N +string /base X array /BitMaps X /BuildChar{CharBuilder}N /Encoding IE N +end dup{/foo setfont}2 array copy cvx N load 0 nn put /ctr 0 N[}B /df{ +/sf 1 N /fntrx FMat N df-tail}B /dfs{div /sf X /fntrx[sf 0 0 sf neg 0 0] +N df-tail}B /E{pop nn dup definefont setfont}B /ch-width{ch-data dup +length 5 sub get}B /ch-height{ch-data dup length 4 sub get}B /ch-xoff{ +128 ch-data dup length 3 sub get sub}B /ch-yoff{ch-data dup length 2 sub +get 127 sub}B /ch-dx{ch-data dup length 1 sub get}B /ch-image{ch-data +dup type /stringtype ne{ctr get /ctr ctr 1 add N}if}B /id 0 N /rw 0 N +/rc 0 N /gp 0 N /cp 0 N /G 0 N /sf 0 N /CharBuilder{save 3 1 roll S dup +/base get 2 index get S /BitMaps get S get /ch-data X pop /ctr 0 N ch-dx +0 ch-xoff ch-yoff ch-height sub ch-xoff ch-width add ch-yoff +setcachedevice ch-width ch-height true[1 0 0 -1 -.1 ch-xoff sub ch-yoff +.1 sub]{ch-image}imagemask restore}B /D{/cc X dup type /stringtype ne{]} +if nn /base get cc ctr put nn /BitMaps get S ctr S sf 1 ne{dup dup +length 1 sub dup 2 index S get sf div put}if put /ctr ctr 1 add N}B /I{ +cc 1 add D}B /bop{userdict /bop-hook known{bop-hook}if /SI save N @rigin +0 0 moveto /V matrix currentmatrix dup 1 get dup mul exch 0 get dup mul +add .99 lt{/QV}{/RV}ifelse load def pop pop}N /eop{SI restore userdict +/eop-hook known{eop-hook}if showpage}N /@start{userdict /start-hook +known{start-hook}if pop /VResolution X /Resolution X 1000 div /DVImag X +/IE 256 array N 0 1 255{IE S 1 string dup 0 3 index put cvn put}for +65781.76 div /vsize X 65781.76 div /hsize X}N /p{show}N /RMat[1 0 0 -1 0 +0]N /BDot 260 string N /rulex 0 N /ruley 0 N /v{/ruley X /rulex X V}B /V +{}B /RV statusdict begin /product where{pop product dup length 7 ge{0 7 +getinterval dup(Display)eq exch 0 4 getinterval(NeXT)eq or}{pop false} +ifelse}{false}ifelse end{{gsave TR -.1 .1 TR 1 1 scale rulex ruley false +RMat{BDot}imagemask grestore}}{{gsave TR -.1 .1 TR rulex ruley scale 1 1 +false RMat{BDot}imagemask grestore}}ifelse B /QV{gsave newpath transform +round exch round exch itransform moveto rulex 0 rlineto 0 ruley neg +rlineto rulex neg 0 rlineto fill grestore}B /a{moveto}B /delta 0 N /tail +{dup /delta X 0 rmoveto}B /M{S p delta add tail}B /b{S p tail}B /c{-4 M} +B /d{-3 M}B /e{-2 M}B /f{-1 M}B /g{0 M}B /h{1 M}B /i{2 M}B /j{3 M}B /k{ +4 M}B /w{0 rmoveto}B /l{p -4 w}B /m{p -3 w}B /n{p -2 w}B /o{p -1 w}B /q{ +p 1 w}B /r{p 2 w}B /s{p 3 w}B /t{p 4 w}B /x{0 S rmoveto}B /y{3 2 roll p +a}B /bos{/SS save N}B /eos{SS restore}B end +%%EndProcSet +%%BeginFont: Helvetica +% @@psencodingfile@{ +% author = "S. Rahtz, P. MacKay, Alan Jeffrey, B. Horn, K. Berry", +% version = "0.6", +% date = "22 June 1996", +% filename = "8r.enc", +% email = "kb@@mail.tug.org", +% address = "135 Center Hill Rd. // Plymouth, MA 02360", +% codetable = "ISO/ASCII", +% checksum = "119 662 4424", +% docstring = "Encoding for TrueType or Type 1 fonts to be used with TeX." +% @} +% +% Idea is to have all the characters normally included in Type 1 fonts +% available for typesetting. This is effectively the characters in Adobe +% Standard Encoding + ISO Latin 1 + extra characters from Lucida. +% +% Character code assignments were made as follows: +% +% (1) the Windows ANSI characters are almost all in their Windows ANSI +% positions, because some Windows users cannot easily reencode the +% fonts, and it makes no difference on other systems. The only Windows +% ANSI characters not available are those that make no sense for +% typesetting -- rubout (127 decimal), nobreakspace (160), softhyphen +% (173). quotesingle and grave are moved just because it's such an +% irritation not having them in TeX positions. +% +% (2) Remaining characters are assigned arbitrarily to the lower part +% of the range, avoiding 0, 10 and 13 in case we meet dumb software. +% +% (3) Y&Y Lucida Bright includes some extra text characters; in the +% hopes that other PostScript fonts, perhaps created for public +% consumption, will include them, they are included starting at 0x12. +% +% (4) Remaining positions left undefined are for use in (hopefully) +% upward-compatible revisions, if someday more characters are generally +% available. +% +% (5) hyphen appears twice for compatibility with both ASCII and Windows. +% +/TeXBase1Encoding [ +% 0x00 (encoded characters from Adobe Standard not in Windows 3.1) + /.notdef /dotaccent /fi /fl + /fraction /hungarumlaut /Lslash /lslash + /ogonek /ring /.notdef + /breve /minus /.notdef +% These are the only two remaining unencoded characters, so may as +% well include them. + /Zcaron /zcaron +% 0x10 + /caron /dotlessi +% (unusual TeX characters available in, e.g., Lucida Bright) + /dotlessj /ff /ffi /ffl + /.notdef /.notdef /.notdef /.notdef + /.notdef /.notdef /.notdef /.notdef + % very contentious; it's so painful not having quoteleft and quoteright + % at 96 and 145 that we move the things normally found there down to here. + /grave /quotesingle +% 0x20 (ASCII begins) + /space /exclam /quotedbl /numbersign + /dollar /percent /ampersand /quoteright + /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash +% 0x30 + /zero /one /two /three /four /five /six /seven + /eight /nine /colon /semicolon /less /equal /greater /question +% 0x40 + /at /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O +% 0x50 + /P /Q /R /S /T /U /V /W + /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore +% 0x60 + /quoteleft /a /b /c /d /e /f /g /h /i /j /k /l /m /n /o +% 0x70 + /p /q /r /s /t /u /v /w + /x /y /z /braceleft /bar /braceright /asciitilde + /.notdef % rubout; ASCII ends +% 0x80 + /.notdef /.notdef /quotesinglbase /florin + /quotedblbase /ellipsis /dagger /daggerdbl + /circumflex /perthousand /Scaron /guilsinglleft + /OE /.notdef /.notdef /.notdef +% 0x90 + /.notdef /.notdef /.notdef /quotedblleft + /quotedblright /bullet /endash /emdash + /tilde /trademark /scaron /guilsinglright + /oe /.notdef /.notdef /Ydieresis +% 0xA0 + /.notdef % nobreakspace + /exclamdown /cent /sterling + /currency /yen /brokenbar /section + /dieresis /copyright /ordfeminine /guillemotleft + /logicalnot + /hyphen % Y&Y (also at 45); Windows' softhyphen + /registered + /macron +% 0xD0 + /degree /plusminus /twosuperior /threesuperior + /acute /mu /paragraph /periodcentered + /cedilla /onesuperior /ordmasculine /guillemotright + /onequarter /onehalf /threequarters /questiondown +% 0xC0 + /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla + /Egrave /Eacute /Ecircumflex /Edieresis + /Igrave /Iacute /Icircumflex /Idieresis +% 0xD0 + /Eth /Ntilde /Ograve /Oacute + /Ocircumflex /Otilde /Odieresis /multiply + /Oslash /Ugrave /Uacute /Ucircumflex + /Udieresis /Yacute /Thorn /germandbls +% 0xE0 + /agrave /aacute /acircumflex /atilde + /adieresis /aring /ae /ccedilla + /egrave /eacute /ecircumflex /edieresis + /igrave /iacute /icircumflex /idieresis +% 0xF0 + /eth /ntilde /ograve /oacute + /ocircumflex /otilde /odieresis /divide + /oslash /ugrave /uacute /ucircumflex + /udieresis /yacute /thorn /ydieresis +] def +%%EndFont +%%BeginProcSet: texps.pro +TeXDict begin /rf{findfont dup length 1 add dict begin{1 index /FID ne 2 +index /UniqueID ne and{def}{pop pop}ifelse}forall[1 index 0 6 -1 roll +exec 0 exch 5 -1 roll VResolution Resolution div mul neg 0 0]/Metrics +exch def dict begin Encoding{exch dup type /integertype ne{pop pop 1 sub +dup 0 le{pop}{[}ifelse}{FontMatrix 0 get div Metrics 0 get div def} +ifelse}forall Metrics /Metrics currentdict end def[2 index currentdict +end definefont 3 -1 roll makefont /setfont load]cvx def}def +/ObliqueSlant{dup sin S cos div neg}B /SlantFont{4 index mul add}def +/ExtendFont{3 -1 roll mul exch}def /ReEncodeFont{/Encoding exch def}def +end +%%EndProcSet +%%BeginProcSet: special.pro +TeXDict begin /SDict 200 dict N SDict begin /@SpecialDefaults{/hs 612 N +/vs 792 N /ho 0 N /vo 0 N /hsc 1 N /vsc 1 N /ang 0 N /CLIP 0 N /rwiSeen +false N /rhiSeen false N /letter{}N /note{}N /a4{}N /legal{}N}B +/@scaleunit 100 N /@hscale{@scaleunit div /hsc X}B /@vscale{@scaleunit +div /vsc X}B /@hsize{/hs X /CLIP 1 N}B /@vsize{/vs X /CLIP 1 N}B /@clip{ +/CLIP 2 N}B /@hoffset{/ho X}B /@voffset{/vo X}B /@angle{/ang X}B /@rwi{ +10 div /rwi X /rwiSeen true N}B /@rhi{10 div /rhi X /rhiSeen true N}B +/@llx{/llx X}B /@lly{/lly X}B /@urx{/urx X}B /@ury{/ury X}B /magscale +true def end /@MacSetUp{userdict /md known{userdict /md get type +/dicttype eq{userdict begin md length 10 add md maxlength ge{/md md dup +length 20 add dict copy def}if end md begin /letter{}N /note{}N /legal{} +N /od{txpose 1 0 mtx defaultmatrix dtransform S atan/pa X newpath +clippath mark{transform{itransform moveto}}{transform{itransform lineto} +}{6 -2 roll transform 6 -2 roll transform 6 -2 roll transform{ +itransform 6 2 roll itransform 6 2 roll itransform 6 2 roll curveto}}{{ +closepath}}pathforall newpath counttomark array astore /gc xdf pop ct 39 +0 put 10 fz 0 fs 2 F/|______Courier fnt invertflag{PaintBlack}if}N +/txpose{pxs pys scale ppr aload pop por{noflips{pop S neg S TR pop 1 -1 +scale}if xflip yflip and{pop S neg S TR 180 rotate 1 -1 scale ppr 3 get +ppr 1 get neg sub neg ppr 2 get ppr 0 get neg sub neg TR}if xflip yflip +not and{pop S neg S TR pop 180 rotate ppr 3 get ppr 1 get neg sub neg 0 +TR}if yflip xflip not and{ppr 1 get neg ppr 0 get neg TR}if}{noflips{TR +pop pop 270 rotate 1 -1 scale}if xflip yflip and{TR pop pop 90 rotate 1 +-1 scale ppr 3 get ppr 1 get neg sub neg ppr 2 get ppr 0 get neg sub neg +TR}if xflip yflip not and{TR pop pop 90 rotate ppr 3 get ppr 1 get neg +sub neg 0 TR}if yflip xflip not and{TR pop pop 270 rotate ppr 2 get ppr +0 get neg sub neg 0 S TR}if}ifelse scaleby96{ppr aload pop 4 -1 roll add +2 div 3 1 roll add 2 div 2 copy TR .96 dup scale neg S neg S TR}if}N /cp +{pop pop showpage pm restore}N end}if}if}N /normalscale{Resolution 72 +div VResolution 72 div neg scale magscale{DVImag dup scale}if 0 setgray} +N /psfts{S 65781.76 div N}N /startTexFig{/psf$SavedState save N userdict +maxlength dict begin /magscale true def normalscale currentpoint TR +/psf$ury psfts /psf$urx psfts /psf$lly psfts /psf$llx psfts /psf$y psfts +/psf$x psfts currentpoint /psf$cy X /psf$cx X /psf$sx psf$x psf$urx +psf$llx sub div N /psf$sy psf$y psf$ury psf$lly sub div N psf$sx psf$sy +scale psf$cx psf$sx div psf$llx sub psf$cy psf$sy div psf$ury sub TR +/showpage{}N /erasepage{}N /copypage{}N /p 3 def @MacSetUp}N /doclip{ +psf$llx psf$lly psf$urx psf$ury currentpoint 6 2 roll newpath 4 copy 4 2 +roll moveto 6 -1 roll S lineto S lineto S lineto closepath clip newpath +moveto}N /endTexFig{end psf$SavedState restore}N /@beginspecial{SDict +begin /SpecialSave save N gsave normalscale currentpoint TR +@SpecialDefaults count /ocount X /dcount countdictstack N}N /@setspecial +{CLIP 1 eq{newpath 0 0 moveto hs 0 rlineto 0 vs rlineto hs neg 0 rlineto +closepath clip}if ho vo TR hsc vsc scale ang rotate rwiSeen{rwi urx llx +sub div rhiSeen{rhi ury lly sub div}{dup}ifelse scale llx neg lly neg TR +}{rhiSeen{rhi ury lly sub div dup scale llx neg lly neg TR}if}ifelse +CLIP 2 eq{newpath llx lly moveto urx lly lineto urx ury lineto llx ury +lineto closepath clip}if /showpage{}N /erasepage{}N /copypage{}N newpath +}N /@endspecial{count ocount sub{pop}repeat countdictstack dcount sub{ +end}repeat grestore SpecialSave restore end}N /@defspecial{SDict begin} +N /@fedspecial{end}B /li{lineto}B /rl{rlineto}B /rc{rcurveto}B /np{ +/SaveX currentpoint /SaveY X N 1 setlinecap newpath}N /st{stroke SaveX +SaveY moveto}N /fil{fill SaveX SaveY moveto}N /ellipse{/endangle X +/startangle X /yrad X /xrad X /savematrix matrix currentmatrix N TR xrad +yrad scale 0 0 1 startangle endangle arc savematrix setmatrix}N end +%%EndProcSet +TeXDict begin 40258431 52099146 1000 600 600 (dop7.dvi) +@start /Fa 134[45 1[45 45 45 45 45 45 45 45 45 45 45 +45 45 1[45 45 45 45 45 45 45 45 45 38[45 10[45 45 46[{ + TeXBase1Encoding ReEncodeFont }26 75.000000 /Courier +rf /Fb 82[25 50[37 37 1[54 37 42 21 37 25 42 42 42 42 +62 17 2[17 42 42 21 42 42 37 42 42 12[46 50 54 1[50 58 +54 62 42 1[37 21 54 58 46 50 54 54 50 50 6[21 42 42 1[42 +42 3[42 2[21 1[21 41[37 2[{ TeXBase1Encoding ReEncodeFont }51 +75.000000 /Helvetica-Oblique rf /Fc 3 50 df<7FFFFFFFFFFF80FFFFFFFFFFFFC0 +FFFFFFFFFFFFC07FFFFFFFFFFF803204799641>0 D<6000000006F80000000FFC000000 +1F7E0000003F3F0000007E1F800000FC0FC00001F807E00003F003F00007E001F8000FC0 +00FC001F80007E003F00003F007E00001F80FC00000FC1F8000007E3F0000003F7E00000 +01FFC0000000FF800000007F000000007F00000000FF80000001FFC0000003F7E0000007 +E3F000000FC1F800001F80FC00003F007E00007E003F0000FC001F8001F8000FC003F000 +07E007E00003F00FC00001F81F800000FC3F0000007E7E0000003FFC0000001FF8000000 +0F6000000006282874A841>2 D<000FF000000007F000003FFE0000003FFE0000FFFF80 +0000FFFF0003FFFFC00003F807C007F07FF00007C001E00F801FF8000F8000F00F0007FC +003E0000701E0003FE007C0000383C0001FF007800001C380000FF80F000001C7000007F +C1F000000E7000003FE3E000000E6000001FF3C00000066000001FF780000006E000000F +FF80000007C0000007FF00000003C0000003FE00000003C0000003FE00000003C0000001 +FF00000003C0000000FF80000003C00000007FC0000003C00000007FC0000003C0000000 +FFE0000003E0000001FFF000000760000001EFF800000660000003CFF800000670000007 +C7FC00000E7000000F83FE00000E3800000F01FF00001C3800001E00FF80003C1C00003E +007FC000780E00007C003FE000F00F0001F0001FF801F0078003E0000FFE0FE003E01FC0 +0003FFFFC000FFFF000001FFFF00007FFC0000007FFC00000FE00000000FF00048267BA4 +53>49 D E /Fd 82[28 56[28 46 32 1[51 51 51 74 23 2[23 +51 1[28 46 1[46 1[46 12[51 55 2[55 8[65 51 3[60 66[{ + TeXBase1Encoding ReEncodeFont }21 83.333336 /Helvetica-Bold +rf /Fe 7 121 df<387CFEFEFE7C3807077A8614>58 D<001F8000007FC00000F0E70003 +C03F0007803F000F001F000F001F001E001F003E003E003C003E007C003E007C003E00F8 +007C00F8007C00F8007C00F8007C00F000F800F000F830F000F830F000F830F001F060F0 +01F0607803F060780EF0C03C1CF9801FF07F8007C01E001C1B7C9924>97 +D<000FE0003FF800F81C01E00E03803E07807E0F007E1E007C3E007C3C00007C00007C00 +00F80000F80000F80000F80000F00000F00000F00000F00004F0000C7800187800303C00 +E01E07C00FFF0003F800171B7C991E>99 D<000FC0007FF000F03803C01C07801C0F001C +1F001C1E001C3E00387C00707C07E07FFF80FFFC00F80000F80000F80000F80000F00000 +F00000F0000478000C7800183800303C00E01E07C00FFF0003F800161B7C991F>101 +D<00F007C001FC1FF0031E7878061EE03C061FC01C0C1F801E0C1F001E0C3F001E183F00 +1F183E001F003E001F007E001F007E003E007C003E007C003E00FC003E00FC007C00F800 +7C00F8007801F800F001F800F001F801E001F803C003FC078003FE1F0003E7FC0003E1F0 +0007E0000007E0000007C0000007C000000FC000000FC000000F8000001F800000FFF800 +00FFF800002025809922>112 D<000FE0007FF800F03C01C00E03C01E07803E07803E07 +803C0F80180FE00007FF0007FFC003FFE001FFF000FFF80007F80001F83C00F87E00787E +0078FC00F0F800F07001E07003C03C0F801FFE0007F800171B7C991F>115 +D<007C03C001FF0FF007079C300E03B0780C03F0F81803E1F83003E1F83003E1F06007C0 +E06007C0000007C0000007C000000F8000000F8000000F8000000F8000001F0000001F00 +30381F00307C1F0060FC3E0060FC3E00C0F87E00C0F06F038070C707003F83FE001F01F8 +001D1B7D9926>120 D E /Ff 5 94 df<0000600000E00001C0000380000700000E0000 +1E00003C0000780000780000F00001E00001E00003C00003C00007C0000780000F80000F +00000F00001F00001E00001E00003E00003E00003E00007C00007C00007C00007C00007C +00007C0000F80000F80000F80000F80000F80000F80000F80000F80000F80000F80000F8 +0000F80000F80000F80000F80000F80000F80000F800007C00007C00007C00007C00007C +00007C00003E00003E00003E00001E00001E00001F00000F00000F00000F800007800007 +C00003C00003C00001E00001E00000F000007800007800003C00001E00000E0000070000 +03800001C00000E0000060135278BD20>40 D<C00000E000007000003800001C00000E00 +000F000007800003C00003C00001E00000F00000F000007800007800007C00003C00003E +00001E00001E00001F00000F00000F00000F80000F80000F800007C00007C00007C00007 +C00007C00007C00003E00003E00003E00003E00003E00003E00003E00003E00003E00003 +E00003E00003E00003E00003E00003E00003E00003E00003E00007C00007C00007C00007 +C00007C00007C0000F80000F80000F80000F00000F00001F00001E00001E00003E00003C +00007C0000780000780000F00000F00001E00003C00003C0000780000F00000E00001C00 +00380000700000E00000C0000013527CBD20>I<00000030000000000000780000000000 +007800000000000078000000000000780000000000007800000000000078000000000000 +780000000000007800000000000078000000000000780000000000007800000000000078 +000000000000780000000000007800000000000078000000000000780000000000007800 +000000000078000000000000780000000000007800000000000078000000000000780000 +0000000078000000000000780000007FFFFFFFFFFFF8FFFFFFFFFFFFFCFFFFFFFFFFFFFC +7FFFFFFFFFFFF80000007800000000000078000000000000780000000000007800000000 +000078000000000000780000000000007800000000000078000000000000780000000000 +007800000000000078000000000000780000000000007800000000000078000000000000 +780000000000007800000000000078000000000000780000000000007800000000000078 +000000000000780000000000007800000000000078000000000000780000000000003000 +000036367BAF41>43 D<FFF8FFF8FFF8FFF8F000F000F000F000F000F000F000F000F000 +F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000 +F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000 +F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000 +F000F000F000F000F000F000F000F000F000F000F000F000FFF8FFF8FFF8FFF80D5378BD +17>91 D<FFF8FFF8FFF8FFF8007800780078007800780078007800780078007800780078 +007800780078007800780078007800780078007800780078007800780078007800780078 +007800780078007800780078007800780078007800780078007800780078007800780078 +007800780078007800780078007800780078007800780078007800780078007800780078 +007800780078007800780078007800780078FFF8FFF8FFF8FFF80D537FBD17>93 +D E /Fg 206[28 49[{ TeXBase1Encoding ReEncodeFont }1 +50.000000 /Helvetica rf /Fh 202[32 2[32 32 32 48[{ + TeXBase1Encoding ReEncodeFont }4 58.333336 /Helvetica +rf /Fi 12 117 df<00003FC000000000FFF800000007E07C0000000F801F0000003F00 +1F800C007E000F800C00FC0007C01C01F80007E01803F00007E01807E00003E0380FE000 +03F0300FC00003F0301FC00003F0703F800003F0603F800003F0E07F800003F0C07F0000 +03F1C07F000003F1807F000003F380FF000003F300FE000003F700FE000003FE00FE0000 +03FC00FE000003FC00FC000003F800FC000003F000FC000003F000FC000003F000FC0000 +03F0007E000007F0007E00000FF0003E00001DF8183F000079F8181F0000E1F8380F8007 +C0F83007E03F007CF001FFF8003FC0003FC0000F802E267DA435>11 +D<00000001FC0000000007FF800000001E07C00000007801E0000000E001F0000001C000 +F80000038000F80000070000F800000E0000FC00001C0000FC0000380000FC0000300000 +FC0000700001FC0000600001F80000E00001F80000C00001F80001C00003F80001800003 +F00003800003F00003000007E00003000007C0000700000FC0000600001F80000600FFBF +00000E01FFFC00000C0381F800000C03FFFE00000C00FF1F00001C00001F80001800000F +80001800000FC0001800000FC0003800000FC00030000007E00030000007E0003000000F +E0007000000FE0006000000FE0006000000FE0006000000FE000E000001FE000C000001F +C000C000001FC000C000001FC001C000003FC001C000003F8001C000003F8001C000007F +0003C000007F0003C00000FE0003C00000FC0003E00001F80007600003F00006700007E0 +000638000FC000061C001F80000E0E003F00000C0780FC00000C01FFF000000C007F8000 +001C00000000001800000000001800000000001800000000003800000000003000000000 +003000000000003000000000007000000000006000000000006000000000006000000000 +00E00000000000C00000000000C000000000002E4B7EBA2F>I<00003FF00001FFF0000F +FFE0003FC000007F000000FC000003F8000007F0000007E000000FE000001FC000001FC0 +00003F8000003F8000007FFFFE007FFFFF007FFFFF007F000000FF000000FE000000FE00 +0000FE000000FE000000FE0000007E0000007E0000007E0000007E0000003E0000003F00 +00001F0000000F8000600FC000E003E003C001F01F00007FFC00000FE0001C257DA322> +15 D<1C007F00FF80FF80FF80FF80FF807F001C000909798817>58 +D<1C007F00FF80FF80FFC0FFC0FFC07FC01CC000C000C000C000C001C001800180038003 +00070006000E001C003800700060000A19798817>I<0000000C0000001E0000003E0000 +003E0000003C0000007C0000007C00000078000000F8000000F8000000F0000001F00000 +01F0000001E0000003E0000003E0000003C0000007C0000007C00000078000000F800000 +0F8000000F0000001F0000001F0000001E0000003E0000003E0000003C0000007C000000 +7C00000078000000F8000000F8000000F0000001F0000001F0000001E0000003E0000003 +E0000007C0000007C00000078000000F8000000F8000000F0000001F0000001F0000001E +0000003E0000003E0000003C0000007C0000007C00000078000000F8000000F8000000F0 +000001F0000001F0000001E0000003E0000003E0000003C0000007C0000007C000000780 +00000F8000000F8000000F0000001F0000001F0000001E0000003E0000003E0000003C00 +00007C0000007C00000078000000F8000000F8000000F0000000600000001F537BBD2A> +61 D<00000001FF00000000001FFFF000000000FE01FC00000003F0007E00000007C000 +1F8000001F80000FC000003E000007E00000FC000003F00001F8000003F00003F0000001 +F80007E0000001F8000FC0000000FC001F80000000FC003F00000000FE007F000000007E +00FE000000007E00FC000000007F01FC000000007F03F8000000007F03F8000000007F07 +F0000000007F07F0000000007F0FF0000000007F0FE0000000007F1FE000000000FF1FE0 +00000000FF3FC000000000FF3FC000000000FF3FC000000000FF7F8000000001FE7F8000 +000001FE7F8000000001FE7F8000000001FEFF8000000003FCFF0000000003FCFF000000 +0003FCFF0000000007F8FF0000000007F8FF000000000FF0FF000000000FF0FF00000000 +0FE0FF000000001FE0FF000000001FC0FF000000003F807F000000007F807F000000007F +007F00000000FE007F00000001FC003F80000001F8003F80000003F8001F80000007F000 +1FC000000FE0000FC000001F800007E000003F000007F000007E000003F00001F8000001 +FC0003F00000007E000FC00000003F807F0000000007FFF80000000000FF80000000383D +7CBA3F>79 D<7FFFFC01FFFFF800FFFF80FFFFFC01FFFFF800FFFF80FFFFFC01FFFFF000 +FFFF8003FF000007FC00000FF80003FC000007F8000003E00001FC000007F8000003C000 +01FC000003F8000003800001FC000003F8000003000001FC000003F8000007000001FC00 +0003F8000006000001FC000007F800000C000001FC000007F800000C000001FC00000FF8 +000018000001FC00000FF8000018000001FC00001BF8000030000001FC00001BF8000060 +000001FC000033F8000060000001FE000073F80000C0000001FE000063F80000C0000000 +FE0000C3F8000180000000FE0000C3FC000180000000FE000183FC000300000000FE0001 +81FC000700000000FE000301FC000600000000FE000701FC000C00000000FE000601FC00 +0C00000000FE000C01FC001800000000FE000C01FC001800000000FE001801FC00300000 +0000FE001801FC007000000000FE003001FC006000000000FE003001FC00C000000000FE +006001FC00C000000000FF00E001FC018000000000FF00C001FC0180000000007F018001 +FC0300000000007F018001FE0300000000007F030001FE0600000000007F030000FE0E00 +000000007F060000FE0C00000000007F0E0000FE1800000000007F0C0000FE1800000000 +007F180000FE3000000000007F180000FE3000000000007F300000FE6000000000007F30 +0000FEE000000000007F600000FEC000000000007F600000FF8000000000007FC00000FF +8000000000007F800000FF0000000000007F800000FF0000000000003F000000FE000000 +0000003F000000FE0000000000003E0000007C0000000000003E00000078000000000000 +3C000000780000000000003C000000700000000000003800000070000000000000300000 +00600000000000513B7CB84E>87 D<0003F0000001FFF0000001FFF0000001FFF0000000 +07F000000007E000000007E000000007E00000000FE00000000FC00000000FC00000000F +C00000001FC00000001F800000001F800000001F800000003F800000003F000000003F00 +0000003F000000007F000000007E0007C0007E001FF0007E00783800FE00E0F800FC01C1 +FC00FC0383FC00FC0707FC01FC0E07FC01F81C07F801F83803F001F87001E003F8E00000 +03F1C0000003F380000003F700000007FE00000007FE00000007FFE0000007E7F800000F +E0FE00000FC07F00000FC03F80000FC01F80001FC01FC0001F800FC0301F800FC0301F80 +0FC0703F801FC0603F001F80603F001F80603F001F80E07F001F80C07E001F81C07E000F +81807E000F8380FE00078700FC0003FE00380000F800263B7CB92B>107 +D<03E0007F000007F801FFE0000E3C0781F0001C3E1E00F800383F3800FC00303F7000FC +00303FE0007C00703FC0007C00603F80007C00603F80007C00E03F0000FC00C07F0000FC +00C07E0000FC00C07E0000FC00007E0001FC0000FE0001F80000FC0001F80000FC0001F8 +0000FC0003F80001FC0003F00001F80003F00001F80007F00001F80007E00003F80007E0 +0003F0000FE03003F0000FC03003F0001FC07007F0001F806007E0001F806007E0001F80 +E007E0001F00C00FE0001F01C00FC0001F01800FC0001F03800FC0001F07001FC0000F0E +001F800007FC0007000001F0002C267EA432>110 D<000F8003F000001FE00FFC000039 +F03C1F000070F8700F8000E0FDE007C000C0FF8007C000C0FF0007E001C0FE0003E00180 +FE0003F00180FC0003F00381FC0003F00301FC0003F00301F80003F00301F80003F00003 +F80007F00003F80007F00003F00007F00003F00007F00007F0000FF00007F0000FF00007 +E0000FE00007E0000FE0000FE0001FE0000FE0001FC0000FC0001FC0000FC0003F80001F +C0003F80001FC0007F00001F80007E00001F8000FE00003F8000FC00003FC001F800003F +C003F000003FE007E000007F700F8000007F383F0000007E1FFC0000007E07E0000000FE +0000000000FE0000000000FC0000000000FC0000000001FC0000000001FC0000000001F8 +0000000001F80000000003F80000000003F80000000003F00000000007F000000000FFFF +C0000000FFFFC0000000FFFFC00000002C3583A42A>112 D<0001C0000003E0000007E0 +000007E0000007E0000007E000000FE000000FC000000FC000000FC000001FC000001F80 +00001F8000001F8000003F8000003F00007FFFFF807FFFFF80FFFFFF80007E0000007E00 +00007E000000FE000000FC000000FC000000FC000001FC000001F8000001F8000001F800 +0003F8000003F0000003F0000003F0000007F0000007E0000007E0000007E000000FE000 +000FC006000FC006000FC00E001FC00C001F801C001F8018001F8038001F8070001F8060 +001F80E0000F81C0000787800003FE000000F8000019357EB31E>116 +D E /Fj 82[39 53[90 65 71 39 65 45 71 71 71 71 103 32 +65 1[32 71 71 39 65 71 65 1[65 12[71 78 84 1[78 90 5[32 +84 90 71 1[84 84 84 84 8[65 65 65 65 65 65 65 65 49[{ + TeXBase1Encoding ReEncodeFont }43 116.666672 /Helvetica-Bold +rf /Fk 82[28 24[28 28 24[42 42 42 60 42 46 23 42 28 46 +46 46 46 69 18 42 18 18 46 46 23 46 46 42 46 46 3[23 +1[23 1[55 1[78 55 60 51 55 60 65 55 65 60 69 46 55 1[23 +60 65 51 55 60 60 55 55 5[23 23 46 46 46 46 46 46 46 +46 46 46 1[23 1[23 1[32 28 28 18 35[42 42 2[{ + TeXBase1Encoding ReEncodeFont }74 83.333336 /Helvetica +rf /Fl 82[22 51[33 1[48 33 37 18 33 22 1[37 37 37 55 +15 33 1[15 37 37 18 37 37 33 37 37 12[41 44 48 1[44 52 +48 1[37 2[18 48 52 41 44 48 48 1[44 7[37 37 37 37 37 +37 37 37 37 37 18 18 1[18 40[33 33 2[{ TeXBase1Encoding ReEncodeFont } +53 66.666664 /Helvetica rf /Fm 1 4 df<006000007000006000006000406020E060 +70F861F07E67E01FFF8007FE0000F00007FE001FFF807E67E0F861F0E060704060200060 +0000600000700000600014157B9620>3 D E /Fn 82[25 21[75 +42 25[19 1[37 37 37 54 37 42 21 37 25 42 42 42 42 62 +17 37 17 17 42 42 21 42 42 37 42 42 3[21 1[21 46 50 1[71 +50 54 46 50 54 58 50 58 54 62 42 50 37 21 54 58 46 50 +54 54 50 50 6[21 42 42 42 42 42 42 42 42 42 42 21 21 +1[21 1[29 25 25 17 35[37 37 2[{ TeXBase1Encoding ReEncodeFont }77 +75.000000 /Helvetica rf /Fo 139[25 42 29 14[42 46 42 +31[54 65[{ TeXBase1Encoding ReEncodeFont }7 75.000000 +/Helvetica-Bold rf /Fp 134[60 3[60 1[60 60 1[60 1[60 +60 1[60 3[60 1[60 60 60 1[60 32[60 17[60 46[{ + TeXBase1Encoding ReEncodeFont }15 100.000000 /Courier +rf /Fq 1 4 df<000C0000001E0000001E0000001E0000001E0000001E0000601E018078 +1E0780FC0C0FC07F0C3F803F8C7F0007CCF80001FFE000007F8000001E0000007F800001 +FFE00007CCF8003F8C7F007F0C3F80FC0C0FC0781E0780601E0180001E0000001E000000 +1E0000001E0000001E0000000C00001A1D7C9E23>3 D E /Fr 134[50 +2[50 55 28 50 33 1[55 55 55 83 22 2[22 55 1[28 55 55 +50 1[55 8[66 94 66 72 1[66 2[66 1[72 83 55 66 1[28 1[78 +61 1[72 72 1[66 6[28 55 55 55 55 55 55 55 55 55 55 3[28 +2[33 33 40[{ TeXBase1Encoding ReEncodeFont }48 100.000000 +/Helvetica rf /Fs 1 4 df<00007000000000F800000000F800000000F800000000F8 +00000000F800000000F800000000F800000000F80000000070000078007000F07C007001 +F0FF007007F87F80700FF03FE0703FE00FF0707F8003F870FE0000FE73F800003F77E000 +000FFF80000003FE00000000F800000003FE0000000FFF8000003F77E00000FE73F80003 +F870FE000FF0707F803FE0703FE07F80700FF0FF007007F87C007001F078007000F00000 +7000000000F800000000F800000000F800000000F800000000F800000000F800000000F8 +00000000F800000000700000252B7AAD32>3 D E /Ft 82[47 50[71 +4[78 39 71 47 78 78 78 78 118 31 2[31 78 1[39 78 1[71 +78 78 12[86 94 2[94 110 10[102 2[94 65[{ TeXBase1Encoding ReEncodeFont } +25 141.666672 /Helvetica rf end +%%EndProlog +%%BeginSetup +%%Feature: *Resolution 600dpi +TeXDict begin +%%PaperSize: Letter + +%%EndSetup +%%Page: 1 1 +1 0 bop 181 739 a Ft(State\255of\255the\255Art)43 b(in)d(Parallel)i +(Search)e(T)-16 b(echniques)42 b(for)e(Discrete)1264 +967 y(Optimization)h(Problems)2722 915 y Fs(\003)1217 +1297 y Fr(Ananth)29 b(Grama)1864 1261 y Fq(\003)1904 +1297 y Fr(,)f(and)h(V)n(ipin)g(Kumar)2693 1261 y Fq(\003\003)1209 +1551 y(\003)1249 1587 y Fr(Department)g(of)f(Computer)h(Sciences)1015 +1733 y(Purdue)h(University)-7 b(,)27 b(W)n(est)h(Lafayette,)g(IN)f +(47907)538 1878 y Fp(ayg@cs.purdue.edu)p Fr(,)c(Ph:)40 +b(\(765\))29 b(494)g(6964,)g(F)-5 b(AX:)28 b(\(765\))h(494)g(0739)1216 +2132 y Fq(\003\003)1291 2169 y Fr(Department)g(of)f(Computer)h(Science) +924 2314 y(University)f(of)g(Minnesota,)h(Minneapolis,)h(MN)e(55455)568 +2459 y Fp(kumar@cs.umn.edu)p Fr(,)c(Ph:)39 b(\(612\))29 +b(624)g(8023,)g(F)-5 b(AX:)28 b(\(612\))h(625)g(0572)1842 +2916 y Fo(Abstract)363 3102 y Fn(Discrete)k(optimization)e(problems)h +(arise)i(in)f(a)h(variety)f(of)h(domains)f(such)h(as)g(VLSI)f(design,)j +(transportation,)251 3216 y(scheduling)18 b(and)j(management,)d(and)i +(design)g(optimization.)28 b(V)l(ery)21 b(often,)f(these)g(problems)g +(are)h(solved)f(using)g(state)251 3331 y(space)29 b(search)h +(techniques.)55 b(Due)30 b(to)g(the)f(high)g(computational)d +(requirements)i(and)h(inherent)f(parallel)f(nature)h(of)251 +3445 y(search)21 b(techniques,)f(there)h(has)g(been)g(a)h(great)e(deal) +h(of)h(interest)e(in)h(the)g(development)f(of)h(parallel)e(search)j +(methods)251 3559 y(since)33 b(the)h(dawn)f(of)h(parallel)d(computing.) +68 b(Signi\002cant)32 b(advances)h(have)g(been)g(made)g(in)h(the)f(use) +h(of)g(powerful)251 3673 y(heuristics)21 b(and)g(parallel)e(processing) +i(to)h(solve)g(large)f(scale)h(discrete)f(optimization)e(problems.)33 +b(Problem)21 b(instances)251 3787 y(that)j(were)g(considered)f +(computationally)f(intractable)g(only)j(a)g(few)g(years)g(back)g(are)g +(routinely)e(solved)h(currently)g(on)251 3901 y(server\255class)f +(symmetric)h(multi\255processors)d(and)h(small)h(workstation)f +(clusters.)36 b(Parallel)21 b(game\255playing)f(programs)251 +4015 y(are)d(challenging)c(the)k(best)g(human)g(minds)g(at)g(games)h +(like)f(chess.)28 b(In)17 b(this)g(paper)l(,)f(we)i(describe)e(the)h +(state)g(of)g(the)g(art)g(in)251 4130 y(parallel)d(algorithms)h(used)i +(for)g(solving)f(discrete)g(optimization)f(problems.)26 +b(W)o(e)16 b(address)h(heuristic)e(and)i(non\255heuristic)251 +4244 y(techniques)c(for)j(searching)e(graphs)h(as)h(well)f(as)h(trees,) +g(and)f(speedup)f(anomalies)g(in)i(parallel)d(search)i(that)g(are)h +(caused)251 4358 y(by)k(the)g(inherent)e(speculative)g(nature)h(of)h +(search)g(techniques.)p 43 4427 1560 4 v 127 4481 a Fm(\003)163 +4504 y Fl(This)f(work)h(is)g(sponsored)g(by)h(the)f(by)g(Army)h +(Research)f(Of)o(\002ce)h(contract)g(DA/DAAG55\25598\2551\2550441,)h +(NSF)d(Grant)i(EIA9876014,)g(and)f(by)g(Army)43 4603 +y(High)30 b(Performance)h(Computing)g(Research)f(Center)h(under)f(the)g +(auspices)h(of)f(the)h(Department)g(of)g(the)f(Army)-5 +b(,)35 b(Army)c(Research)g(Laboratory)43 4701 y(cooperative)20 +b(agreement)g(number)g(DAAH04\25595\2552\2550003/contract)h(number)f +(DAAH04\25595\255C\2550008,)g(the)g(content)g(of)g(which)g(does)f(not)h +(necessarily)43 4800 y(re\003ect)f(the)g(position)f(or)h(the)g(policy)f +(of)h(the)g(government,)g(and)g(no)f(of)o(\002cial)g(endorsement)h +(should)g(be)f(inferred.)1970 5610 y Fk(1)p eop +%%Page: 2 2 +2 1 bop 43 345 a Fj(1)116 b(Introduction)43 630 y Fk(The)21 +b(generalized)h(discrete)f(optimization)i(problem)f(\(DOP\))e(deals)h +(with)h(minimizing)h(an)e(objective)h(function)g(of)f(a)g(set)g(of)43 +755 y(variables)e(that)f(are)h(allowed)g(only)g(discrete)f(values.)31 +b(An)19 b(instance)f(of)h(this)f(class)g(is)g(the)h(integer)g +(programming)g(problem)43 879 y(in)26 b(which)g(only)g(integer)g +(solutions)g(are)g(admissible)h(for)e(a)h(linear)h(programming)f +(\(LP\))g(model.)41 b(Other)25 b(instances)g(arise)43 +1004 y(in)d(diverse)f(domains)h(such)e(as)h(VLSI)h(design)g +(\(placement)g(of)g(VLSI)g(components)f(on)h(a)f(die)h(to)g(minimize)g +(silicon)g(area\),)43 1128 y(robotics)k(\(robot)h(motion)g(planning\),) +i(and)e(logistics)g(\(visiting)g(all)g(vertices)f(of)g(a)h(graph)g +(while)g(minimizing)i(edge)e(cost\).)43 1253 y(Most)f(such)g(problems)h +(are)g(NP)f(complete;)k(hence)c(their)h(solution)h(time)f(increases)f +(exponentially)i(in)f(the)g(size)f(of)h(the)43 1377 y(problem)h(for)e +(all)i(known)f(algorithms.)44 b(One)27 b(may)f(argue)i(that)f(it)g(is)g +(pointless)g(to)g(apply)g(parallel)i(processing)d(to)h(these)43 +1502 y(problems)21 b(since)g(we)g(can)f(never)h(reduce)g(their)g +(worst\255case)e(run)i(time)h(to)f(a)g(polynomial)h(without)g(using)f +(an)g(exponential)43 1626 y(number)37 b(of)f(processors.)69 +b(However)-5 b(,)40 b(the)c(average\255time)h(complexity)f(of)h +(heuristic)f(search)f(algorithms)i(for)f(some)43 1751 +y(problems)31 b(is)f(polynomial)i([38)q(,)e(46)q(].)54 +b(Furthermore,)32 b(there)f(are)f(heuristic)h(search)e(algorithms)i +(that)g(\002nd)g(suboptimal)43 1875 y(solutions)25 b(for)g(speci\002c)f +(problems)h(in)g(polynomial)i(time.)38 b(In)25 b(such)f(cases,)g +(bigger)h(problem)h(instances)e(can)h(be)g(solved)43 +2000 y(using)31 b(parallel)h(computers.)55 b(Many)30 +b(DOPs)g(\(such)g(as)g(robot)h(motion)g(planning,)k(speech)30 +b(understanding,)k(and)d(task)43 2124 y(scheduling\))25 +b(require)f(real\255time)i(solutions.)36 b(For)24 b(these)g +(applications,)i(parallel)g(processing)e(may)g(be)h(the)f(only)h(way)f +(to)43 2249 y(obtain)j(acceptable)f(performance.)39 b(Problems)26 +b(for)g(which)f(optimal)i(solutions)f(are)g(highly)g(desirable)g(can)g +(sometimes)43 2374 y(be)c(solved)g(for)f(moderate)i(sized)e(instances)g +(in)i(a)f(reasonable)g(amount)h(of)e(time)i(by)e(using)h(parallel)i +(search)d(techniques)43 2498 y(\(for)i(example,)h(VLSI)g +(\003oor\255plan)f(optimization\).)43 2683 y(Due)32 b(to)f(the)h(high)g +(computational)h(requirement)f(and)g(inherent)g(parallel)h(nature)e(of) +h(search)e(techniques,)k(there)d(has)43 2807 y(been)f(great)g(interest) +g(in)g(the)g(development)h(of)f(parallel)h(search)e(methods)h(since)f +(the)h(dawn)g(of)g(parallel)h(computing.)43 2932 y(In)24 +b(fact,)g(parallel)h(search)e(programs)h(were)f(among)i(the)f(\002rst)f +(non\255numerical)i(programs)e(written)h(for)g(early)g(generation)43 +3056 y(parallel)c(machines)e(such)f(as)h(HEP)h(and)f(C.mmp.)31 +b(There)18 b(are)g(many)g(characteristics)f(of)h(search)f(techniques)i +(that)f(make)43 3181 y(their)28 b(parallel)i(formulations)f(very)d(dif) +o(ferent)j(from)e(those)h(of)g(traditional)i(numerical)f(algorithms,)h +(but)e(much)g(closer)f(to)43 3305 y(other)22 b(non\255numerical)g +(algorithms.)32 b(Parallel)24 b(search)c(algorithms)i(rely)f(on)h +(dynamic)f(data)h(structures,)e(which)i(makes)f(it)43 +3430 y(dif)o(\002cult)j(to)h(use)f(static)h(work)f(distribution)h +(techniques.)38 b(There)24 b(is)g(potential)j(for)d(speculative)h(work) +f(both)h(in)g(serial)g(and)43 3554 y(parallel)30 b(search)e +(algorithms.)49 b(Hence)28 b(load)i(balancing)f(algorithms)h(for)e +(parallel)i(search)e(must)g(consider)g(qualitative)43 +3679 y(information)34 b(as)e(well.)61 b(Some)33 b(search)e(algorithms)i +(require)g(use)f(of)g(large)h(global)h(hash)e(structures,)h(which)g +(can)f(be)43 3803 y(hard)27 b(to)g(implement)i(on)f(losely)f(coupled)h +(parallel)g(architectures.)44 b(T)m(remendous)27 b(advances)f(have)h +(been)h(made)f(both)43 3928 y(in)d(theoretical)h(and)f(applied)h +(aspects)e(of)h(parallel)h(search)e(techniques)h([11)q(].)34 +b(These)23 b(techniques)h(have)g(been)g(used)g(to)43 +4052 y(solve)19 b(problems)g(that)h(are)f(well)h(beyond)g(the)f(scope)g +(of)g(conventional)h(serial)g(processors.)29 b(In)19 +b(this)h(paper)-5 b(,)20 b(we)g(provide)f(a)43 4177 y(brief)i(overview) +g(of)g(commonly)g(used)g(sequential)h(search)e(methods,)h(and)h +(present)e(the)i(state\255of\255the\255art)e(in)h(the)g(parallel)43 +4302 y(formulations)j(of)g(various)e(search)g(techniques.)43 +4701 y Fj(2)116 b(Overview)32 b(of)g(Search)f(T)-9 b(echniques)43 +4986 y Fk(V)k(ery)24 b(often)h(a)f(discrete)g(optimization)i(problem)f +(is)f(formulated)h(as)f(the)h(problem)g(of)f(\002nding)h(a)f(path)g(in) +h(a)f(graph)h(from)f(a)43 5110 y(designated)j(initial)i(node)e(to)f +(one)h(of)g(several)f(possible)g(goals)h([38)q(,)f(20].)42 +b(Such)27 b(a)f(graph)h(is)f(called)h(a)g(state)f(space.)42 +b(In)43 5235 y(some)22 b(problems,)g(any)g(solution)h(path)f(between)g +(the)h(initial)g(node)g(and)f(a)g(goal)g(node)h(is)e(acceptable,)i +(whereas)f(in)g(other)43 5359 y(problems)f(a)g(cost)f(is)h(associated)g +(with)h(each)e(path)i(and)f(a)g(minimum)i(cost)d(solution)i(is)f +(desired.)32 b(In)21 b(many)g(applications,)1970 5610 +y(2)p eop +%%Page: 3 3 +3 2 bop 43 344 a Fk(it)29 b(is)g(possible)h(to)f(compute)g(a)g(lower)g +(bound)h(on)f(the)g(cost)f(of)i(a)f(solution)h(path)f(that)g(passes)f +(through)i(a)f(given)g(state.)43 469 y(This)23 b(cost)f(is)h(also)h +(called)g(a)f(heuristic)g(estimate.)43 653 y(T)-5 b(wo)31 +b(commonly)g(used)f(techniques)h(for)g(searching)f(state)h(spaces)e +(are)i(depth\255\002rst)e(and)i(best\255\002rst)e(search.)54 +b(Depth\255)43 778 y(\002rst)32 b(search)g(techniques)h(start)f(from)h +(an)g(initial)i(state)e(and)g(generate)h(a)f(set)f(of)i(successor)c +(states.)61 b(One)33 b(of)g(these)43 903 y(most)28 b(recently)g +(generated)g(states)g(is)g(then)g(selected)h(for)e(expansion)i(at)f +(each)g(step.)47 b(Many)28 b(variants)g(of)g(this)g(simple)43 +1027 y(DFS)34 b(technique)g(exist.)64 b(In)34 b(one)g(such)f(variant,)j +(the)e(successor)d(states)i(of)h(a)g(node)g(are)g(ordered)g(on)f(the)h +(basis)g(of)43 1152 y(their)i(likelihood)h(of)f(yielding)h(a)e +(solution.)70 b(This)36 b(search)e(technique)j(is)e(referred)g(to)g(as) +g(directed\255DFS)h(or)f(ordered)43 1276 y(backtracking.)c(In)20 +b(many)g(applications,)j(early)d(branches)g(explored)h(by)f(DFS)g +(techniques)h(may)f(lead)h(to)g(large)g(subtrees)43 1401 +y(containing)27 b(no)f(solutions)g(when)g(solutions)h(may)e(be)h +(available)i(close)d(to)h(the)g(root)g(on)g(alternate)g(branches.)40 +b(In)26 b(these)43 1525 y(cases,)33 b(it)f(is)g(useful)h(to)f(limit)h +(the)g(depth)f(in)h(terms)e(of)h(cost)g(or)f(number)i(of)f(edges,)i(to) +e(which)g(exhaustive)g(search)f(is)43 1650 y(performed.)j(If)23 +b(no)h(desirable)g(solution)h(is)e(found)h(in)g(this)f(limited)j +(search,)c(the)i(limit)h(is)e(revised)g(and)h(search)f(performed)43 +1774 y(again.)50 b(The)29 b(limit)h(can)f(be)g(de\002ned)g(in)g(terms)f +(of)h(tree)g(depth)g(\(depth\255bounded)h(DFS\),)e(or)h(in)g(terms)f +(of)h(solution)h(cost)43 1899 y(\(IDA*\).)39 b(In)25 +b(depth\255\002rst)f(search,)h(if)h(the)g(lower)f(bound)h(of)g(a)f +(node)h(is)f(larger)g(than)h(the)g(cost)e(of)h(the)h(best)f(solution)h +(found)43 2023 y(thus)17 b(far)-5 b(,)19 b(then)e(the)h(node)f(can)g +(be)g(pruned.)31 b(This)17 b(technique)h(is)f(referred)g(to)g(as)g +(depth\255\002rst)f(branch\255and\255bound)h(\(DFBB\).)43 +2208 y(In)j(all)h(algorithms)g(based)f(on)h(the)f(DFS)g(technique,)i +(once)e(a)g(successor)e(node)j Fi(n)e Fk(is)h(selected)h(for)f +(expansion,)h(its)f(sibling)43 2332 y(nodes)29 b(are)f(expanded)h(only) +g(after)g(the)f(entire)i(tree)e(rooted)h(at)g(node)g +Fi(n)f Fk(is)g(expanded,)j(even)d(if)h(successors)d(of)j +Fi(n)f Fk(are)43 2457 y(much)g(less)f(promising)h(than)g(the)g +(siblings)g(of)g Fi(n)p Fk(.)45 b(Thus,)28 b(these)g(algorithms)g(make) +g(use)f(of)h(the)g(heuristic)f(information)43 2581 y(only)21 +b(on)g(a)g(local)g(scale)f(to)h(order)g(the)g(successors)d(of)i(a)h +(node.)32 b(DFBB)21 b(and)h(IDA*)f(also)g(make)f(a)h(limited)i(use)d +(of)h(heuristic)43 2706 y(information)j(on)f(a)f(global)i(scale)f(as)f +(they)g(prune)h(a)f(node)h(if)g(it)g(is)g(less)f(promising)h(than)g(a)f +(previously)h(found)g(solution)g(or)43 2830 y(bound.)34 +b(As)23 b(we)h(will)g(discuss)f(later)-5 b(,)24 b(this)g(limited)h(use) +e(of)h(heuristics)f(makes)g(it)g(easy)g(to)h(develop)g(parallel)h +(formulations)43 2955 y(of)e(DFS)g(algorithms.)43 3140 +y(In)h(contrast)g(to)g(DFS,)g(best\255\002rst)f(search)g(algorithms)i +(expand)f(the)h(most)f(promising)g(node)h(currently)f(available)h(on)g +(the)43 3264 y(search)i(frontier)-5 b(,)30 b(and)f(thus)e(make)h +(complete)h(use)f(of)g(the)g(available)i(heuristic)e(information.)49 +b(The)28 b(search)f(frontier)h(is)43 3389 y(maintained)g(as)d(a)g +(priority)h(queue,)h(and)f(is)f(commonly)h(referred)f(to)g(as)g(the)h +(OPEN)g(list)2893 3359 y Fh(1)2930 3389 y Fk(.)39 b(A)26 +b(well)h(known)e(algorithm)i(of)43 3513 y(this)i(type)g(is)g(A*,)i +(also)e(referred)f(to)h(as)g(best\255\002rst)e(branch)h(and)i(bound)f +(\(BFBB\).)g(A)h(major)f(price)g(paid)g(for)g(this)g(use)g(of)43 +3638 y(heuristic)c(information)h(in)f(a)f(global)i(context)f(is)f(that) +h(BFS)g(requires)f(memory)h(proportional)h(to)e(the)h(size)f(of)h(the)g +(search)43 3762 y(frontier)-5 b(,)38 b(which)c(is)g(often)h +(exponential)h(in)e(the)h(depth)g(of)f(the)g(solution.)67 +b(In)34 b(contrast,)i(all)g(DFS)e(algorithms)h(require)43 +3887 y(memory)23 b(proportional)h(to)g(the)f(depth)h(of)f(the)h +(solution)g(path.)43 4071 y(In)19 b(many)g(applications,)i(identical)g +(states)d(can)h(be)g(reached)g(from)g(multiple)i(paths.)31 +b(Re\255expansion)19 b(of)g(these)g(states)f(can)43 4196 +y(be)26 b(avoided)f(if)h(the)g(search)e(technique)i(checks)e(every)g +(generated)i(node)f(for)g(possible)h(replications.)40 +b(BFS)25 b(strategies)43 4320 y(support)d(replication)h(checking)e(by)h +(maintaining)i(a)e(list)h(of)f(all)g(the)h(expanded)f(nodes)g(\(and)g +(their)g(costs\))f(on)h(a)g(list)g(called)43 4445 y(CLOSED)384 +4415 y Fh(1)421 4445 y Fk(.)31 b(DFS)19 b(based)g(techniques)g(do)h +(not)f(support)g(replication)h(checking,)g(and)f(thus)g(essentially)g +(unroll)h(the)g(graph)43 4569 y(into)28 b(a)f(tree.)44 +b(Unrolling)29 b(graphs)d(into)i(trees)f(can)f(have)h(overheads)g +(ranging)h(from)f(a)g(constant)g(factor)f(to)h(exponential)43 +4694 y(depending)d(on)f(the)g(structure)f(of)h(the)f(graph.)33 +b(In)23 b(the)g(latter)g(case,)f(DFS)h(techniques)g(may)f(be)h +(unsuitable,)h(as)e(they)h(will)43 4819 y(need)28 b(to)g(expand)h(many) +e(more)h(nodes)g(than)g(BFS.)h(Finally)-6 b(,)29 b(simple)g(and)f +(directed)g(DFS)g(are)g(generally)g(used)g(to)g(\002nd)43 +4943 y(the)e(\002rst)f(solution)i(that)f(they)g(encounter)g(in)g(the)h +(search)e(space,)h(whereas)f(DFBB,)i(IDA*,)g(and)g(BFS)f(\002nd)g(a)g +(least)g(cost)43 5068 y(solution.)34 b(This)22 b(taxonomy)h(of)h +(search)e(characteristics)g(is)h(illustrated)h(in)g(Figure)f(1.)p +43 5139 1560 4 v 131 5196 a Fg(1)163 5219 y Fl(OPEN)17 +b(and)g(CLOSED)g(data)h(structures)g(are)f(called)g(lists)h(for)f +(historical)g(reasons.)26 b(In)18 b(fact,)h(OPEN)e(list)h(is)f +(typically)g(implemented)g(using)g(a)g(heap)43 5318 y(and)h(CLOSED)h +(list)f(is)h(implemented)g(as)f(a)h(hash)f(table.)1970 +5610 y Fk(3)p eop +%%Page: 4 4 +4 3 bop 43 344 a Fk(Although)36 b(a)e(central)g(component)h(of)f(most)g +(parallel)i(search)d(algorithms)i(is)f(a)g(dynamic)g(load)h(balancing)g +(scheme,)43 469 y(the)j(parallel)g(formulation)h(is)e(impacted)h(by)f +(the)g(nature)h(of)f(the)h(search)e(space,)k(the)e(use)f(of)g +(heuristics,)j(memory)43 593 y(requirements,)20 b(and)f(the)f(desired)h +(solution)g(quality)-6 b(.)32 b(In)18 b(the)h(following)h(sections,)f +(we)f(discuss)f(the)i(parallel)h(formulations)43 718 +y(developed)k(for)f(various)g(search)f(algorithms.)205 +2054 y @beginspecial 0 @llx 0 @lly 455 @urx 154 @ury +4320 @rwi @setspecial +%%BeginDocument: search.eps +%Magnification: 0.80 +/$F2psDict 200 dict def +$F2psDict begin +$F2psDict /mtrx matrix put +/col-1 {0 setgray} bind def +/col0 {0.000 0.000 0.000 srgb} bind def +/col1 {0.000 0.000 1.000 srgb} bind def +/col2 {0.000 1.000 0.000 srgb} bind def +/col3 {0.000 1.000 1.000 srgb} bind def +/col4 {1.000 0.000 0.000 srgb} bind def +/col5 {1.000 0.000 1.000 srgb} bind def +/col6 {1.000 1.000 0.000 srgb} bind def +/col7 {1.000 1.000 1.000 srgb} bind def +/col8 {0.000 0.000 0.560 srgb} bind def +/col9 {0.000 0.000 0.690 srgb} bind def +/col10 {0.000 0.000 0.820 srgb} bind def +/col11 {0.530 0.810 1.000 srgb} bind def +/col12 {0.000 0.560 0.000 srgb} bind def +/col13 {0.000 0.690 0.000 srgb} bind def +/col14 {0.000 0.820 0.000 srgb} bind def +/col15 {0.000 0.560 0.560 srgb} bind def +/col16 {0.000 0.690 0.690 srgb} bind def +/col17 {0.000 0.820 0.820 srgb} bind def +/col18 {0.560 0.000 0.000 srgb} bind def +/col19 {0.690 0.000 0.000 srgb} bind def +/col20 {0.820 0.000 0.000 srgb} bind def +/col21 {0.560 0.000 0.560 srgb} bind def +/col22 {0.690 0.000 0.690 srgb} bind def +/col23 {0.820 0.000 0.820 srgb} bind def +/col24 {0.500 0.190 0.000 srgb} bind def +/col25 {0.630 0.250 0.000 srgb} bind def +/col26 {0.750 0.380 0.000 srgb} bind def +/col27 {1.000 0.500 0.500 srgb} bind def +/col28 {1.000 0.630 0.630 srgb} bind def +/col29 {1.000 0.750 0.750 srgb} bind def +/col30 {1.000 0.880 0.880 srgb} bind def +/col31 {1.000 0.840 0.000 srgb} bind def + +end +save +-72.0 233.0 translate +1 -1 scale + +/cp {closepath} bind def +/ef {eofill} bind def +/gr {grestore} bind def +/gs {gsave} bind def +/sa {save} bind def +/rs {restore} bind def +/l {lineto} bind def +/m {moveto} bind def +/rm {rmoveto} bind def +/n {newpath} bind def +/s {stroke} bind def +/sh {show} bind def +/slc {setlinecap} bind def +/slj {setlinejoin} bind def +/slw {setlinewidth} bind def +/srgb {setrgbcolor} bind def +/rot {rotate} bind def +/sc {scale} bind def +/sd {setdash} bind def +/ff {findfont} bind def +/sf {setfont} bind def +/scf {scalefont} bind def +/sw {stringwidth} bind def +/tr {translate} bind def +/tnt {dup dup currentrgbcolor + 4 -2 roll dup 1 exch sub 3 -1 roll mul add + 4 -2 roll dup 1 exch sub 3 -1 roll mul add + 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} + bind def +/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul + 4 -2 roll mul srgb} bind def +/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def +/$F2psEnd {$F2psEnteredState restore end} def + +$F2psBegin +10 setmiterlimit +n 0 792 m 0 0 l 612 0 l 612 792 l cp clip + 0.04800 0.04800 sc +7.500 slw +% Polyline +n 6600 2100 m 6675 2100 l 6675 4275 l 6600 4275 l gs col-1 s gr +% Polyline +n 6600 4500 m 6675 4500 l 6675 4800 l 6600 4800 l gs col-1 s gr +% Polyline +n 8400 2100 m 8475 2100 l 8475 2475 l 8400 2475 l gs col-1 s gr +% Polyline +n 8400 2700 m 8475 2700 l 8475 3075 l 8400 3075 l gs col-1 s gr +% Polyline +n 8400 3300 m 8475 3300 l 8475 4275 l 8400 4275 l gs col-1 s gr +% Polyline +n 8400 4500 m 8475 4500 l 8475 4800 l 8400 4800 l gs col-1 s gr +% Polyline +n 9900 2100 m 9975 2100 l 9975 3075 l 9900 3075 l gs col-1 s gr +% Polyline +n 9900 3300 m 9975 3300 l 9975 4800 l 9900 4800 l gs col-1 s gr +% Polyline +n 5025 2100 m 5100 2100 l 5100 4275 l 5025 4275 l gs col-1 s gr +% Polyline +n 5025 4500 m 5100 4500 l 5100 4800 l 5025 4800 l gs col-1 s gr +/Helvetica ff 180.00 scf sf +1500 2400 m +gs 1 -1 sc (Simple DFS \(Backtracking\)) col-1 sh gr +/Helvetica ff 180.00 scf sf +1500 3000 m +gs 1 -1 sc (Directed DFS \(Ordered Backtracking\)) col-1 sh gr +/Helvetica ff 180.00 scf sf +1500 3600 m +gs 1 -1 sc (Depth-First Branch and Bound) col-1 sh gr +/Helvetica ff 180.00 scf sf +1500 4200 m +gs 1 -1 sc (IDA*) col-1 sh gr +/Helvetica ff 180.00 scf sf +1500 4800 m +gs 1 -1 sc (Best-First Search / A*) col-1 sh gr +/Helvetica ff 180.00 scf sf +6975 3000 m +gs 1 -1 sc (Linear) col-1 sh gr +/Helvetica ff 180.00 scf sf +6975 3240 m +gs 1 -1 sc (in) col-1 sh gr +/Helvetica ff 180.00 scf sf +6975 3480 m +gs 1 -1 sc (Depth) col-1 sh gr +/Helvetica ff 180.00 scf sf +6975 4725 m +gs 1 -1 sc (Exponential) col-1 sh gr +/Helvetica ff 180.00 scf sf +6675 2040 m +gs 1 -1 sc (Requirement) col-1 sh gr +/Helvetica ff 180.00 scf sf +8775 2325 m +gs 1 -1 sc (None) col-1 sh gr +/Helvetica ff 180.00 scf sf +8775 2925 m +gs 1 -1 sc (Local) col-1 sh gr +/Helvetica ff 180.00 scf sf +8775 3750 m +gs 1 -1 sc (Partially) col-1 sh gr +/Helvetica ff 180.00 scf sf +8775 3990 m +gs 1 -1 sc (Global) col-1 sh gr +/Helvetica ff 180.00 scf sf +8775 4725 m +gs 1 -1 sc (Global) col-1 sh gr +/Helvetica ff 180.00 scf sf +8475 1800 m +gs 1 -1 sc (Heuristic) col-1 sh gr +/Helvetica ff 180.00 scf sf +9975 1800 m +gs 1 -1 sc (Solution) col-1 sh gr +/Helvetica ff 180.00 scf sf +9975 2040 m +gs 1 -1 sc (Quality) col-1 sh gr +/Helvetica ff 180.00 scf sf +10275 2625 m +gs 1 -1 sc (Any) col-1 sh gr +/Helvetica ff 180.00 scf sf +10275 2865 m +gs 1 -1 sc (Solution) col-1 sh gr +/Helvetica ff 180.00 scf sf +10275 4050 m +gs 1 -1 sc (Best) col-1 sh gr +/Helvetica ff 180.00 scf sf +10275 4290 m +gs 1 -1 sc (Solution) col-1 sh gr +/Helvetica ff 180.00 scf sf +6675 1800 m +gs 1 -1 sc (Memory) col-1 sh gr +/Helvetica ff 180.00 scf sf +5100 1800 m +gs 1 -1 sc (Nature of) col-1 sh gr +/Helvetica ff 180.00 scf sf +5100 2040 m +gs 1 -1 sc (Search Space) col-1 sh gr +/Helvetica ff 180.00 scf sf +5400 3075 m +gs 1 -1 sc (Tree) col-1 sh gr +/Helvetica ff 180.00 scf sf +5400 3315 m +gs 1 -1 sc (Search) col-1 sh gr +/Helvetica ff 180.00 scf sf +5400 4575 m +gs 1 -1 sc (Graph/Tree) col-1 sh gr +/Helvetica ff 180.00 scf sf +5400 4815 m +gs 1 -1 sc (Search) col-1 sh gr +$F2psEnd +rs +%%EndDocument + @endspecial 603 2262 a(Figure)h(1:)33 b(V)-6 b(arious)23 +b(enumerative)h(search)e(procedures)g(and)i(their)g(characteristics.)43 +2701 y Fj(3)116 b(Depth\255First)31 b(Search)43 2986 +y Fk(Depth\255\002rst)21 b(search)h(is)h(particularly)f(amenable)i(to)f +(parallel)h(processing)e(primarily)h(because)g(a)f(subtree)h(rooted)f +(at)h(any)43 3110 y(node)h(can)f(be)h(searched)f(relatively)h +(independently)h(of)e(the)h(search)f(at)g(other)h(nodes)f(or)h +(subtrees.)32 b(In)24 b(fact,)f(searching)43 3235 y(dif)o(ferent)39 +b(subtrees)g(concurrently)f(requires)h(either)g(no)h(communication)g +(\(e.g.,)j(backtracking,)f(IDA*\))d(or)g(minimal)43 3359 +y(communication)33 b(\(e.g.,)g(DFBB\).)f(This)f(is)h(due)g(to)f(the)h +(fact)f(that)h(DFS)g(techniques)g(do)f(not)h(make)g(use)f(of)g +(heuristics)43 3484 y(on)d(a)g(global)i(scale.)46 b(It)28 +b(would)h(therefore)f(seem)g(that)h(by)e(statically)h(assigning)h +(nodes)f(in)g(a)g(tree)g(to)h(processors,)e(it)h(is)43 +3608 y(possible)22 b(to)g(derive)g(parallel)i(formulations.)33 +b(However)-5 b(,)22 b(for)g(most)f(applications,)j(trees)d(generated)i +(by)e(DFS)h(tend)h(to)f(be)43 3733 y(highly)g(irregular)-5 +b(,)22 b(and)f(it)g(is)g(very)f(dif)o(\002cult)g(to)h(estimate)h(the)f +(work)f(associated)h(with)g(a)g(node)h(a\255priori.)31 +b(Hence,)22 b(any)e(static)43 3857 y(allocation)j(of)e(subtrees)g(to)g +(processors)f(is)h(bound)h(to)f(result)g(in)h(signi\002cant)g(load)g +(imbalance)g(among)g(processors.)30 b(The)43 3982 y(core)25 +b(of)g(parallel)i(formulations)g(of)e(DFS)h(algorithms)g(is)f(thus)g(a) +h(dynamic)f(load)h(balancing)h(technique)f(that)g(minimizes)43 +4106 y(inter\255processor)c(communication)i(and)g(processor)d(idling.) +43 4291 y(A)26 b(number)g(of)g(load)g(distribution)h(techniques)f(have) +g(been)g(developed)g(for)g(parallel)h(DFS)e([25)q(,)g(41)q(,)g(22)q(,)g +(17)q(,)g(21)q(].)39 b(Load)43 4415 y(balancing)26 b(techniques)f(may)f +(be)h(receiver)f(initiated)j(or)d(sender)g(initiated.)39 +b(In)25 b(receiver)f(initiated)i(techniques,)g(when)f(a)43 +4540 y(processor)g(becomes)h(idle,)i(it)f(requests)f(a)h(selected)f +(processor)f(for)h(work.)42 b(Many)26 b(dif)o(ferent)h(selection)g +(policies)g(have)43 4665 y(been)19 b(proposed)g(such)f(as)g(use)h(of)g +(a)f(centralized)h(server)-5 b(,)19 b(random)g(polling)i([12],)f +(nearest)e(neighbor)i([25],)g(global)g(round\255)43 4789 +y(robin)i([25)q(],)g(and)g(asynchronous)e(round)i(robin)g([12,)g(25].) +32 b(In)22 b(contrast)f(to)h(receiver)f(initiated)i(load)g(balancing,)g +(in)f(sender)43 4914 y(initiated)e(schemes,)e(a)g(processor)f(sends)g +(work)g(to)i(selected)f(processors)e(as)h(it)i(is)e(generated.)32 +b(Selection)19 b(strategies)f(for)43 5038 y(sender)h(initiated)i(work)e +(transfers)f(include)j(hierarchical)e(techniques)h(\(with)g +(super\255servers,)d(servers)h(and)h(clients\))g([13)q(],)43 +5163 y(random)k(sampling)h([25)q(],)f(and)g(near\255neighbor)h +(techniques)f([41].)33 b(The)22 b(quanta)i(of)f(work)f(farmed)h(out)h +(to)f(processors)d(in)43 5287 y(sender)27 b(and)h(receiver)e(initiated) +j(schemes)e(ranges)g(from)g(a)g(single)h(state)g(\(node)f(in)h(the)g +(tree\))e(to)i(forests)e(of)i(subtrees)1970 5610 y(4)p +eop +%%Page: 5 5 +5 4 bop 43 344 a Fk(resulting)21 b(from)g(stack)f(splitting)i([12,)f +(25].)32 b(Schemes)21 b(for)f(fault)i(tolerance)f(using)g +(acknowledgements)h(have)e(also)h(been)43 469 y(built)j(into)g(load)g +(balancing)h(techniques)e([12)q(].)43 653 y(The)34 b(performance)f(and) +h(scalability)g(of)g(these)f(techniques)h(is)f(often)i(dependent)f(on)g +(the)g(underlying)g(architecture.)43 778 y(Many)e(of)g(these)f +(techniques)h(are,)i(in)f(principle)f(scalable,)j(i.e.,)f(they)e +(result)g(in)g(linear)h(speedup)f(on)g(increasing)g(the)43 +903 y(number)c(of)f(processors)f Fi(p)h Fk(as)g(long)h(as)f(the)g(size) +g(of)h(the)g(search)e(space)h(grows)f(fast)i(enough)g(with)g +Fi(p)p Fk(.)45 b(It)27 b(is)g(desirable)43 1027 y(that)21 +b(this)f(required)h(rate)f(of)h(growth)f(of)h(problem)g(size)f(\(also)g +(referred)g(to)h(as)f(the)g(Isoef)o(\002ciency)f(metric)h([24)q(]\))g +(be)g(as)g(small)43 1152 y(as)k(possible)h(since)g(it)g(allows)g(the)g +(use)f(of)h(a)f(larger)h(number)g(of)g(processors)d(ef)o(fectively)i +(for)h(solving)g(a)f(given)h(problem)43 1276 y(instance.)43 +1461 y(The)17 b(irregular)h(and)g(dynamic)f(nature)g(of)h(the)f(search) +g(space)f(makes)h(it)h(dif)o(\002cult)f(to)g(precisely)g(compute)g(the) +h(performance)43 1585 y(and)34 b(scalability)h(of)f(parallel)i(DFS.)e +(However)-5 b(,)37 b(for)d(trees)f(with)i(branching)f(factor)g(greater) +g(than)g(1)25 b Ff(+)f Fi(\017)34 b Fk(\(for)f(a)h(small)43 +1710 y(constant)28 b Fi(\017)p Fk(\),)h(it)g(is)g(often)g(possible)g +(to)f(partition)i(the)f(computation)g(associated)g(with)g(a)f +(collection)h(of)g(nodes)g(into)g(two)43 1834 y(parts)21 +b(such)h(that)g(the)g(smaller)h(of)f(these)f(two)i(parts)e(can)h(be)g +(guaranteed)h(to)f(have)f(a)h(minimum)i(\002xed)d(constant)h(fraction) +43 1959 y(of)38 b(the)g(computation)h(associated)f(with)g(the)g +(original)i(node.)77 b(This)37 b(property)h(has)f(been)i(used)f(to)g +(derive)f(parallel)43 2083 y(formulations)c(of)g(DFS)f(with)h(isoef)o +(\002ciency)e(of)h Fi(O)r Ff(\()p Fi(p)14 b Fk(log)1856 +2043 y Fh(2)1906 2083 y Fi(p)p Ff(\))32 b Fk(on)h(hypercube)f(and)g +Fi(O)r Ff(\()p Fi(p)2866 2053 y Fh(1)p Fe(:)p Fh(5)2969 +2083 y Fk(log)15 b Fi(p)p Ff(\))32 b Fk(on)h(mesh)f(connected)43 +2208 y(parallel)25 b(computers)d([25)q(].)43 2392 y(The)27 +b(parallel)h(formulation)g(of)f(DFS)g(described)g(above)g(can)f(be)h +(applied)i(to)e(DFBB)g(with)g(one)g(minor)h(modi\002cation.)44 +b(In)43 2517 y(DFBB,)19 b(we)g(need)h(to)f(keep)g(all)h(the)f +(processors)e(informed)j(of)f(the)g(current)f(best)h(solution.)32 +b(On)19 b(a)g(shared)f(address)h(space)43 2641 y(architecture,)29 +b(this)f(can)f(be)h(done)h(easily)f(by)f(maintaining)k(a)d(global)h +(best)f(solution)g(in)h(globally)g(accessible)e(memory)-6 +b(.)43 2766 y(On)22 b(a)f(message)h(passing)g(computer)-5 +b(,)22 b(this)g(can)g(be)g(done)g(by)g(allowing)h(each)f(processor)e +(to)i(maintain)i(the)e(current)f(best)43 2891 y(solution)33 +b(known)f(to)g(it.)60 b(Whenever)32 b(a)g(processor)f(\002nds)g(a)h +(solution)h(path)g(better)f(than)h(the)f(current)f(best)h(known,)j(it) +43 3015 y(broadcasts)25 b(it)h(to)g(all)h(the)f(other)g(processors)d +(which)j(update)h(\(if)f(necessary\))d(their)j(current)g(best)f +(solution)i(path.)41 b(Note)43 3140 y(that)20 b(if)h(a)f(processor)s(') +o(s)e(current)h(best)h(solution)h(path)f(is)g(worse)g(than)g(the)g +(global)i(best)e(solution)h(path,)g(then)f(it)h(only)f(af)o(fects)43 +3264 y(the)25 b(ef)o(\002ciency)f(of)h(the)h(search)e(but)h(not)h(its)f +(correctness.)36 b(The)25 b(overhead)g(for)g(maintaining)i(the)f +(current)e(best)h(solution)43 3389 y(tends)20 b(to)g(be)h(a)f(small)h +(fraction)f(of)g(the)h(overhead)f(for)g(dynamic)g(load)h(balancing.)32 +b(Parallel)22 b(formulations)f(of)g(DFBB)f(have)43 3513 +y(been)k(shown)f(to)g(yield)h(near)f(linear)h(speedups)f(for)g(many)g +(problems)h(and)f(architectures)g([45,)g(27,)h(8,)f(7,)g(1].)43 +3839 y Fd(T)-6 b(ermination)22 b(of)h(Parallel)h(Search)43 +4089 y Fk(If)30 b(only)g(one)g(solution)h(is)f(desired)g(to)g(a)g +(problem)h(instance)f(being)h(solved)e(using)i(depth\255\002rst)d +(search,)j(then)g(as)e(soon)43 4214 y(as)g(any)f(processor)g(\002nds)g +(a)h(solution,)j(search)c(at)h(other)g(processors)e(needs)i(to)g(be)h +(terminated.)51 b(On)29 b(some)f(parallel)43 4338 y(architectures,)23 +b(it)h(is)g(possible)g(for)g(one)g(processor)e(to)i(interrupt)g(other)g +(processors)e(and)i(send)g(them)g(a)g(special)g(signal.)43 +4463 y(If)29 b(such)f(a)h(mechanism)h(is)e(not)i(available,)i(then)d +(each)g(processor)e(needs)i(to)g(perform)g(a)g(periodic)h(check)e(to)h +(see)f(if)i(a)43 4587 y(solution)24 b(has)f(been)h(found.)43 +4772 y(If)c(all)g(the)g(solutions)g(\(or)f(all)h(best)g(solutions\))f +(to)h(a)g(problem)g(instance)g(are)f(desired,)i(then)f(parallel)h(DFS)e +(searches)f(a)i(well)43 4896 y(de\002ned)28 b(portion)h(of)f(the)h +(entire)g(search)e(tree)h(\(determined)h(by)e(the)i(speci\002c)e +(algorithm)i(and)f(heuristic)h(used\).)46 b(Since)43 +5021 y(this)22 b(search)e(space)h(is)g(dynamically)h(allocated)h(to)e +(processors,)f(it)i(is)f(not)h(suf)o(\002cient)e(to)i(poll)g(each)f +(processor)f(serially)i(to)43 5146 y(check)f(if)i(they)g(have)f +(exhausted)g(their)h(work.)32 b(The)22 b(reason)g(is)h(that)g(a)f +(processor)f(may)h(pick)g(up)h(work)f(after)g(it)h(has)f(been)43 +5270 y(polled.)52 b(Hence)29 b(a)h(distributed)g(termination)h +(detection)f(algorithm)g(is)f(needed)i(to)e(ensure)g(that)h(all)g +(processors)d(have)1970 5610 y(5)p eop +%%Page: 6 6 +6 5 bop 43 344 a Fk(indeed)24 b(exhausted)f(the)h(search)e(space)h +([5].)43 744 y Fj(4)116 b(Best\255First)31 b(Search)43 +1029 y Fk(Best\255\002rst)k(search)g(techniques)i(are)f(more)g(dif)o +(\002cult)g(to)h(parallelize)h(for)e(the)h(following)h(two)e(reasons:) +58 b(\(i\))36 b(they)g(use)43 1153 y(heuristics)19 b(on)i(a)f(global)h +(scale,)f(making)h(it)f(harder)g(to)g(utilize)h(the)f(full)h(power)f +(of)g(heuristics)f(in)i(a)f(parallel)h(setting;)h(and)e(\(ii\))43 +1278 y(they)h(need)h(to)g(maintain)h(the)f(CLOSED)g(list)f(if)h(the)g +(search)f(space)f(is)i(a)f(graph.)32 b(W)o(e)22 b(\002rst)e(discuss)g +(parallel)j(formulations)43 1402 y(of)g(best\255\002rst)f(search)g(in)i +(the)f(context)g(of)g(state\255space)f(trees,)h(and)h(subsequently)f +(discuss)f(the)h(case)g(for)g(graphs.)43 1587 y(BFS)f(methods)g(may)f +(appear)h(inherently)g(serial)g(since)f(they)g(require)h(expansion)g +(of)g(the)f(most)h(promising)g(node)g(on)g(the)43 1711 +y(OPEN)27 b(list)h(at)f(each)g(step.)44 b(However)-5 +b(,)28 b(it)g(is)f(possible)g(that)h(many)f(nodes)g(on)g(the)g(OPEN)h +(list)f(are)g(equally)h(promising,)43 1836 y(in)f(which)g(case,)h(they) +e(can)h(all)h(be)f(expanded)g(concurrently)-6 b(.)43 +b(If)27 b(the)g(number)g(of)g(such)f(\(equally\))i(promising)f(nodes)g +(is)43 1960 y(fewer)22 b(than)h(the)g(number)f(of)h(available)h +(processors,)c(then)j(the)g(other)f(less)g(promising)h(nodes)g +(available)g(on)g(OPEN)g(list)43 2085 y(can)h(be)h(searched)f(by)h(the) +g(idle)g(processors.)35 b(These)25 b(less)f(promising)h(nodes)g(may)f +(not)h(be)g(searched)f(by)h(serial)f(BFS,)43 2209 y(and)29 +b(thus)f(form)h(speculative)f(work.)48 b(The)28 b(ef)o(fective)g +(degree)h(of)g(concurrency)d(of)j(such)f(a)g(formulation)i(is)e +(essentially)43 2334 y(equal)22 b(to)g(the)f(average)g(number)h(of)f +(nodes)g(available)i(on)f(the)f(OPEN)h(list)f(such)g(that)g(their)h +(cost)e(is)h(less)g(than)h(that)f(of)h(the)43 2458 y(optimal)f +(solution.)32 b(Since)20 b(the)g(cost)f(of)g(the)h(optimal)h(solution)f +(is)g(unknown,)g(a)g(good)f(strategy)g(is)g(to)h(always)f(expand)h +(only)43 2583 y(the)k Fi(p)p Fk(\255most)f(promising)i(nodes)f +(currently)f(available)j(on)e(the)g(OPEN)g(list;)h(where)f +Fi(p)f Fk(is)h(the)g(number)h(of)f(processors.)32 b(As)43 +2707 y(long)24 b(as)f Fi(p)g Fk(is)g(no)h(more)f(than)h(the)g(ef)o +(fective)f(degree)g(of)h(concurrency)-6 b(,)21 b(all)k(processors)c +(will)j(tend)g(to)g(search)e(nodes)i(that)43 2832 y(will)j(also)e(be)h +(searched)f(by)g(serial)h(BFS.)g(The)f(ef)o(fective)g(degree)h(of)g +(concurrency)d(is)i(usually)h(dependent)h(on)f(the)f(size)43 +2957 y(of)e(the)g(search)e(space)h(\(larger)h(spaces)e(have)i(higher)g +(degree)g(of)g(concurrency\))d(and)j(the)g(heuristic)g(function)g +(\(stronger)43 3081 y(heuristics)g(lead)h(to)f(smaller)h(degree)f(of)g +(concurrency\).)43 3266 y(The)28 b(basic)g(data)g(structure)f(of)h +(BFS,)h(the)f(OPEN)g(list,)i(is)e(a)g(priority)g(queue)g(that)h(must)f +(support)g(removal)g(of)g(the)g(best)43 3390 y(entry)i(in)g(the)h +(queue)g(and)g(insertion)f(of)h(nodes)f(into)h(the)g(queue.)54 +b(The)30 b(data)h(structure)e(most)h(often)h(used)f(for)g(this)g(is)43 +3515 y(a)h(heap.)56 b(The)31 b(simplest)g(parallel)i(formulation)f(of)f +(BFS)h(uses)e(multiple)j(processors)28 b(working)j(on)g(a)g(heap)h +(stored)e(in)43 3639 y(globally)h(addressable)e(memory)-6 +b(.)51 b(Each)29 b(processor)f(locks)g(the)i(heap)g(and)g(picks)e(out)i +(the)g(current)e(best)h(node.)52 b(The)43 3764 y(heap)32 +b(is)g(unlocked)g(and)g(the)g(node)g(is)g(expanded)g(to)g(yield)g(its)g +(children.)58 b(These)32 b(children)g(are)f(reinserted)h(into)h(the)43 +3888 y(heap)24 b(with)f(appropriate)h(locking.)32 b(The)23 +b(use)g(of)g(a)g(global)i(heap)e(is)g(a)g(source)f(of)h(contention.)33 +b(If)23 b(the)h(time)f(taken)g(to)g(lock,)43 4013 y(remove,)h(and)h +(unlock)f(the)g(top)g(element)i(of)e(the)g(heap)h(is)f +Fi(t)1947 4025 y Fe(access)2164 4013 y Fk(and)h(time)g(for)f(expansion) +g(is)g Fi(t)3145 4025 y Fe(exp)3252 4013 y Fk(,)h(then)f(the)h(speedup) +43 4137 y(of)e(the)h(formulation)h(is)e(bounded)h(by)f +Ff(\()p Fi(t)1310 4149 y Fe(access)1522 4137 y Ff(+)18 +b Fi(t)1635 4149 y Fe(exp)1742 4137 y Ff(\))p Fi(=t)1846 +4149 y Fe(access)2040 4137 y Fk(.)43 4322 y(Many)26 b(techniques)h +(have)g(been)g(developed)g(to)g(ef)o(fectively)f(reduce)g +Fi(t)2327 4334 y Fe(access)2547 4322 y Fk(and)h(thus)f(increase)g(the)h +(available)h(paral\255)43 4446 y(lelism.)33 b(These)22 +b(techniques)h(support)g(multiple)h(operations)f(on)g(heaps)f(stored)h +(in)g(shared)f(memory)g(while)i(maintaining)43 4571 y(the)35 +b(strict)e(deletion)j(and)f(insertion)g(ordering)g([42].)66 +b(The)34 b(performance)h(of)f(these)g(schemes)g(scales)f(to)i(dozens)f +(of)43 4695 y(processors)21 b(but)j(is)f(ultimately)h(limited)h(by)e +(the)g(locking)h(and)f(access)f(times)h(as)g(speci\002ed)g(above.)43 +4880 y(Another)k(way)e(of)i(alleviating)h(the)e(contention)h(overhead)f +(associated)g(with)h(a)f(single)h(global)g(heap)g(is)f(to)g(use)g +(multiple)43 5005 y(heaps.)38 b(The)24 b(concept)h(of)g +Fi(p)f Fk(processors)f(sharing)i(a)g(single)g(heap)h(can)e(be)h +(relaxed)g(to)g Fi(k)j Fk(processors)23 b(sharing)i(a)f(heap)43 +5129 y(with)g Fi(p=k)i Fk(heaps)d(in)h(all.)35 b(The)23 +b(number)h Fi(k)i Fk(is)d(selected)h(by)f(studying)h(the)f(overheads)h +(associated)f(with)h(communication)43 5254 y(and)18 b(locking,)i +(contention,)g(and)e(node)h(expansion)f(time.)32 b(In)18 +b(the)g(extreme)g(case,)g(each)g(processor)f(has)g(its)h(own)g(heap.)32 +b(A)1970 5610 y(6)p eop +%%Page: 7 7 +7 6 bop 43 344 a Fk(simple)20 b(parallel)g(formulation)g(based)f(on)g +(multiple)h(heaps)f(starts)f(with)h(the)g(initial)i(state)d(in)h(a)g +(single)h(heap.)31 b(As)19 b(additional)43 469 y(nodes)i(are)h +(generated,)g(they)f(are)g(farmed)h(out)g(to)f(other)g(heaps)h(\(using) +f(schemes)f(similar)i(to)g(load)g(balancing)g(in)g(DFS\).)43 +593 y(Once)17 b(all)i(the)g(heaps)f(have)g(been)g(populated,)j +(processors)16 b(can)h(perform)h(BFS)h(on)f(individual)i(heaps.)31 +b(This)17 b(formulation)43 718 y(has)g(a)g(signi\002cant)g(drawback)f +(in)h(that)h(although)g(it)g(balances)f(computation)h(among)f +(processors,)g(it)g(does)g(not)g(guarantee)43 842 y(the)k(quality)h(of) +f(nodes)g(individual)i(processors)c(explore.)32 b(Consequently)-6 +b(,)21 b(processors)e(may)i(spend)g(considerable)g(time)43 +967 y(exploring)j(parts)f(of)g(the)g(search)g(space)f(that)i(may)f(not) +g(be)h(explored)f(by)g(the)g(serial)h(formulation.)43 +1152 y(T)-9 b(o)27 b(alleviate)j(this)d(drawback)g(of)h(excess)e(work)h +(performed)h(by)g(the)g(parallel)h(formulation,)i(one)d(must)f(ensure)h +(that)g(all)43 1276 y(heaps)35 b(have)f(a)h(share)f(of)h(the)g(most)f +(promising)h(nodes)g(globally)h(available.)68 b(This)35 +b(process,)h(also)e(referred)h(to)f(as)43 1401 y(quality)22 +b(equalization,)i(ensures)d(that)h(the)g(best)f(nodes)h(available)h +(globally)g(are)e(evenly)h(distributed)g(across)e(the)i(heaps.)43 +1525 y(Since)27 b(the)g(quality)h(of)f(the)g(nodes)g(changes)f(as)h +(computation)h(proceeds,)f(quality)g(equalization)i(must)e(be)g +(performed)43 1650 y(periodically)-6 b(.)50 b(A)29 b(variety)f(of)h +(triggers)f(and)h(mechanisms)g(have)f(been)i(used)e(for)h(quality)g +(equalization)i([30,)e(6,)g(45,)g(4].)43 1774 y(A)k(simple)g +(triggering)g(mechanism)g(tracks)e(the)i(best)f(node)h(in)g(the)g +(system.)59 b(The)32 b(best)g(node)h(in)g(the)g(local)g(heap)g(is)43 +1899 y(compared)21 b(to)g(the)g(best)g(node)g(in)h(the)f(system)f(and)h +(if)g(it)g(is)g(considerably)g(worse,)g(an)g(equalization)i(process)c +(is)i(initiated.)43 2023 y(Alternately)-6 b(,)24 b(an)g(equalization)h +(process)c(may)i(be)h(initiated)h(periodically)-6 b(.)43 +2208 y(Quality)26 b(equalization)i(requires)e(movement)h(of)f(nodes)g +(between)h(heaps.)41 b(This)26 b(movement)h(of)f(nodes)g(can)g(be)g +(struc\255)43 2332 y(tured)33 b(\(into)f(a)h(ring,)i(or)d(via)h(a)f +(shared)g(blackboard\))h(or)f(randomized.)61 b(In)32 +b(randomized)h(equalization,)k(a)c(processor)43 2457 +y(periodically)i(selects)f(a)g(random)h(heap,)i(picks)c(up)i(the)f +(best)g(node)h(from)f(the)h(heap,)i(and)e(inserts)e(it)i(into)g(the)f +(local)43 2581 y(heap.)56 b(Alternately)-6 b(,)33 b(heaps)e(can)f(be)h +(organized)g(into)h(hierarchical)f(structures.)53 b(At)31 +b(the)g(lower)g(levels,)i(equalization)43 2706 y(is)28 +b(performed)h(more)g(frequently)g(than)g(the)g(higher)g(levels)f(in)h +(the)g(hierarchy)-6 b(.)48 b(Several)29 b(triggering)g(mechanisms)g +(and)43 2830 y(redistribution)c(strategies)f(have)g(been)g(explored)h +([6,)f(47].)35 b(It)24 b(has)g(been)g(shown)g(that)g(these)g(schemes)f +(are)h(capable)h(of)43 2955 y(providing)k(linearly)g(increasing)f +(speedups)h(with)f(number)h(of)f(processors)e(if)j(the)f(problem)h +(size)f(is)g(increased)g(appro\255)43 3080 y(priately)-6 +b(.)41 b(Speci\002cally)-6 b(,)26 b(scalable)g(parallel)i(formulations) +e(of)g(best\255\002rst)e(tree)i(search)f(with)h(isoef)o(\002ciency)e +(of)i Fi(O)r Ff(\()p Fi(p)14 b Fk(log)3819 3039 y Fh(2)3869 +3080 y Fi(p)p Ff(\))43 3204 y Fk(on)26 b(hypercube)f(architectures)g +(have)h(been)g(developed)h([30].)41 b(Using)25 b(these)h(schemes,)g +(speedups)f(in)i(excess)d(of)i(950)43 3329 y(have)20 +b(been)g(demonstrated)g(on)h(1024)f(processor)e(hypercubes)h(in)h(the)g +(context)g(of)g(TSPs)g(formulated)h(as)e(best\255\002rst)f(tree)43 +3453 y(search)k(problems)i([6].)43 3779 y Fd(Best\255First)f(Search)h +(of)e(State)h(Space)h(Graphs)43 4029 y Fk(Ef)o(\002cient)19 +b(parallel)j(implementation)g(of)e(BFS)g(on)g(state)g(space)f(graphs)g +(requires)h(a)g(distributed)g(mechanism)g(that)g(allows)43 +4154 y(many)h(processors)e(to)j(perform)f(duplicate)i(checking)d(or)h +(insertions)h(into)g(the)f(CLOSED)h(list)g(concurrently)-6 +b(.)30 b(The)22 b(nature)43 4278 y(of)h(implementation)j(of)e(this)f +(mechanism)g(is)g(dependent)i(on)e(the)h(underlying)g(parallel)g +(architecture.)43 4463 y(In)d(shared)f(address)g(space)g(machines,)h +(insertion)g(of)g(nodes)f(into)i(the)e(closed)h(list)g(requires)f +(locking)h(of)f(the)h(list.)32 b(If)21 b(there)43 4587 +y(is)26 b(a)h(single)g(lock)f(associated)g(with)h(the)f(entire)h(list,) +h(the)e(list)h(must)f(be)h(locked)f(approximately)h(as)f(many)g(times)h +(as)f(the)43 4712 y(total)32 b(number)g(of)f(nodes)g(expanded.)57 +b(This)31 b(represents)f(a)h(serial)h(bottleneck.)56 +b(The)32 b(bottleneck)f(can)g(be)g(alleviated)43 4836 +y(by)25 b(associating)g(multiple)i(locks)d(with)i(the)g(closed)f(list.) +38 b(Processors)24 b(lock)g(only)i(relevant)f(parts)g(of)g(the)h +(closed)f(list)g(into)43 4961 y(which)d(the)h(node)g(is)f(being)h +(inserted.)32 b(Message)22 b(passing)g(formulations)i(of)e(this)g +(parallel)i(search)d(technique)i(distribute)43 5086 y(the)35 +b(closed)f(list)h(across)e(the)i(processors.)65 b(Each)35 +b(processor)e(expands)h(a)h(node)g(and)g(hashes)f(the)h(successors)d +(to)43 5210 y(appropriate)38 b(processors)c(via)j(a)g(message.)73 +b(The)37 b(destination)h(processor)d(checks)g(for)i(replication)h(and)f +(sends)f(a)43 5335 y(message)19 b(back)g(specifying)h(whether)f(the)h +(node)g(exists)f(in)h(the)g(closed)f(list)h(or)g(not.)31 +b(Such)20 b(a)f(protocol)h(requires)g(two\255way)1970 +5610 y(7)p eop +%%Page: 8 8 +8 7 bop 43 344 a Fk(cooperation)24 b(between)f(various)f(processors.)31 +b(Each)23 b(processor)e(must)i(periodically)g(check)f(for)h(incoming)h +(messages,)43 469 y(process)e(them)h(and)h(send)f(appropriate)h +(responses.)43 653 y(A)29 b(simpler)g(parallel)h(formulation)g(uses)d +(the)i(hash)f(function)h(both)g(for)g(replication)g(checking)f(and)h +(for)f(qualitative)j(and)43 778 y(quantitative)26 b(load)g(balance.)38 +b(In)25 b(this)g(formulation,)i(the)e(successors)d(of)j(a)g(node)g(are) +g(hashed)g(to)g(appropriate)g(proces\255)43 903 y(sors.)36 +b(The)25 b(destination)h(processor)d(checks)g(for)h(replication)i(as)f +(before.)37 b(However)-5 b(,)25 b(instead)g(of)g(sending)h(a)f +(response)43 1027 y(back,)18 b(it)h(inserts)e(the)i(successor)c(nodes)j +(into)h(its)f(own)g(open)h(list.)31 b(This)17 b(has)h(two)g(main)h +(advantages:)30 b(\(i\))18 b(it)g(eliminates)i(the)43 +1152 y(need)f(for)f(a)g(return)g(message)g(and)h(wait)g(at)f(the)h +(source)e(processor;)h(and)h(\(ii\))f(the)h(randomized)g(hash)f +(function)h(serves)d(as)43 1276 y(the)24 b(method)g(for)g(balancing)h +(load)f(qualitatively)h(and)f(quantitatively)-6 b(.)35 +b(These)23 b(schemes)g(have)h(been)g(studied)g(by)f(many)43 +1401 y(researchers)g([33)q(,)i(30].)38 b(Assuming)26 +b(a)f(perfectly)g(random)g(hash)g(function,)i(it)e(has)g(been)h(shown)f +(that)g(if)h(the)f(number)h(of)43 1525 y(nodes)d(originating)i(at)f +(each)f(processor)e(grows)i(as)f Fi(O)r Ff(\()p Fk(log)16 +b Fi(p)p Ff(\))p Fk(,)23 b(then)h(each)f(processor)e(will)k(have)e +(asymptotically)g(equal)43 1650 y(number)h(of)f(nodes)g(after)g(the)h +(hash)f(operation)h([33].)43 1834 y(One)31 b(of)g(the)g(major)h +(drawbacks)e(of)h(graph)g(search)f(techniques)h(such)g(as)f(BFS)i(is)f +(that)g(their)g(memory)g(requirement)43 1959 y(grows)c(linearly)h(with) +g(the)g(search)f(space.)44 b(For)27 b(large)h(problems,)h(this)f +(memory)f(requirement)h(becomes)g(prohibitive.)43 2083 +y(Many)17 b(limited\255memory)i(variants)e(of)g(heuristic)g(search)g +(have)g(been)h(developed.)31 b(These)17 b(techniques)h(rely)f(on)g +(retraction)43 2208 y(or)28 b(delayed)h(expansion)f(of)g(less)g +(promising)h(nodes)f(to)g(reduce)g(memory)g(requirement.)48 +b(In)29 b(the)f(parallel)i(processing)43 2332 y(context,)23 +b(retractions)f(lead)i(to)g(additional)h(communication)g(and)e +(indexing)h(for)f(parent\255child)h(relationships)g([9].)43 +2732 y Fj(5)116 b(Game)32 b(T)-6 b(ree)32 b(Search)43 +3017 y Fk(Min\255max)27 b(techniques)g(such)f(as)h Fi(\013)21 +b Fc(\000)f Fi(\014)31 b Fk(game)c(tree)g(search)f(are)g(extensively)h +(used)g(in)g(game\255playing)h(programs.)43 b(In)43 3141 +y(this)28 b(algorithm,)j(the)d(minimax)h(value)g(of)f(a)g(node)h(is)f +(determined)h(for)f(a)g(given)h(search)e(window)h Ff([)p +Fi(\013;)14 b(\014)t Ff(])p Fk(.)48 b(This)28 b(window)43 +3266 y(serves)19 b(to)h(prune)g(signi\002cant)g(parts)g(of)g(the)g +(tree)g(that)h(do)f(not)g(ef)o(fect)g(the)g(minimax)h(evaluation)h(of)e +(the)g(root.)32 b(Initially)-6 b(,)22 b(this)43 3390 +y(window)27 b(is)f(set)g(to)g Ff([)p Fc(\0001)p Fi(;)14 +b Fc(1)p Ff(])p Fk(.)41 b(The)26 b(\002rst)e(child)j(of)f(a)g(node)h +(is)f(searched)g(with)g(the)h(same)f(window)g(as)g(the)g(parent.)42 +b(The)43 3515 y(window)26 b(of)f(other)h(children)g(is)f(narrowed)g(on) +h(the)f(basis)g(of)h(results)e(from)i(previously)e(visited)i(children.) +39 b(This)25 b(process)43 3639 y(is)f(continued)h(until)g(a)f +(speci\002ed)g(depth)g(is)g(reached,)g(or)g(the)g(branch)g(has)g(no)g +(successors.)32 b(V)-6 b(ariants)24 b(of)h(this)f(algorithm)43 +3764 y(are)f(based)g(on)h(iterative)f(deepening,)i(which)f(guides)f +(search)g(based)g(on)g(results)g(from)g(previous)g(iterations.)43 +3948 y(Min\255max)31 b(techniques)f(present)g(considerable)h +(challenges)h(for)e(parallel)i(processing.)53 b(Conceptually)-6 +b(,)33 b Fi(\013)23 b Fc(\000)f Fi(\014)34 b Fk(game)43 +4073 y(tree)20 b(search)f(algorithm)i(can)e(also)h(be)h(viewed)f(as)f +(a)h(depth\255\002rst)f(branch\255and\255bound)h(algorithm)h([23)q(])e +(that)i(searches)d(for)43 4197 y(a)25 b(maximum)g(payof)o(f)f(strategy) +g(among)h(all)h(strategies)f(represented)f(in)h(the)g(game)g(tree.)37 +b(However)-5 b(,)25 b(game)g(trees)f(tend)43 4322 y(to)30 +b(be)f(strongly)g(ordered.)51 b(Therefore,)31 b(naive)f(parallel)h +(formulations)f(may)f(expand)h(a)f(large)h(number)g(of)f(nodes)h(that) +43 4446 y(are)23 b(not)g(expanded)g(by)g(the)g(serial)g(formulation.)34 +b(Second,)24 b(the)f(information)h(about)g(the)f(current)f(best)h +(strategy)f(cannot)43 4571 y(be)27 b(captured)f(by)h(a)f(single)i +(node,)g(as)e(the)h(aim)g(is)g(to)f(\002nd)h(a)f(best)h(winning)h +(strategy)e(rather)g(than)h(a)g(winning)h(position.)43 +4695 y(Ef)o(fective)h(propagation)i(of)f(this)g(information)h(to)f +(other)f(processors)f(searching)h(disjoint)i(parts)e(of)h(the)g(search) +f(space)43 4820 y(is)e(much)g(harder)f(compared)h(to)g(sharing)g(of)g +(the)g(cost)f(of)h(current)g(best)f(solution)i(in)f(traditional)i(DFBB) +e(algorithms.)45 b(A)43 4945 y(number)22 b(of)g(researchers)e(have)i +(investigated)h(parallel)g(formulations)g(of)f Fi(\013)16 +b Fc(\000)f Fi(\014)26 b Fk([10,)c(34,)g(40].)32 b(The)22 +b(problem)h(of)f(excess)43 5069 y(node)f(expansions)g(is)f(handled)i +(by)e(using)h(a)g(prioritized)g(work)f(distribution)i(in)f(which)g(the) +g(tree)g(is)f(expanded)h(left)h(to)f(right)43 5194 y(in)30 +b(a)g(sweeping)h(pattern)f(also)g(referred)f(to)h(as)g(the)g(\223Y)-8 +b(oung)31 b(Brothers)e(W)m(ait)i(Concept\224.)52 b(Using)30 +b(these)g(optimizations)43 5318 y(along)24 b(with)f(dynamic)f(load)i +(balancing,)g(researchers)d(have)h(demonstrated)h(speedups)g(of)f(as)h +(much)f(as)g(two)h(orders)f(of)1970 5610 y(8)p eop +%%Page: 9 9 +9 8 bop 43 344 a Fk(magnitude)25 b(on)e(a)g(variety)g(of)g(parallel)i +(platforms.)43 529 y(The)36 b(utility)h(of)f(parallel)i(processing)d +(has)h(been)h(demonstrated)f(in)h(the)f(context)g(of)g(a)g(number)g(of) +h(games,)i(and)d(in)43 653 y(particular)-5 b(,)29 b(Chess.)44 +b(W)o(ork)26 b(on)h(large)h(scale)f(parallel)h Fi(\013)22 +b Fc(\000)e Fi(\014)31 b Fk(search)26 b(led)i(to)g(the)f(development)h +(of)g(deep)g(thought)g([15])43 778 y(in)37 b(1990.)73 +b(This)37 b(program)f(was)g(capable)h(of)g(playing)g(chess)f(at)g +(grandmaster)h(level.)73 b(Subsequent)38 b(advances)d(in)43 +903 y(the)30 b(use)f(of)g(dedicated)i(hardware,)g(parallel)f +(processing,)h(and)f(algorithms)g(resulted)f(in)h(the)g(development)g +(of)g(IBM')o(s)43 1027 y(Deep)c(Blue)g([16,)g(14])f(that)h(beat)g(the)g +(reigning)g(world)g(champion)g(Gary)e(Kasparov)-6 b(.)38 +b(Feldmann)27 b(et)e(al.)h([40)q(])f(developed)43 1152 +y(a)33 b(distributed)g(chess)e(program)i(that)f(is)h(acknowledged)g(to) +f(be)h(one)g(of)f(the)h(best)f(computer)h(chess)e(players)h(based)43 +1276 y(entirely)24 b(on)f(general)h(purpose)f(hardware.)43 +1675 y Fj(6)116 b(Speedup)31 b(Anomalies)h(in)h(Parallel)f +(Formulations)g(of)g(Search)f(Algorithms)43 1960 y Fk(In)21 +b(parallel)i(search)d(algorithms,)j(the)e(speedup)h(can)f(dif)o(fer)g +(greatly)g(from)g(one)h(execution)f(to)h(another)-5 b(.)32 +b(This)21 b(is)g(because)43 2085 y(the)32 b(portions)g(of)f(the)h +(search)f(space)g(examined)h(by)g(dif)o(ferent)f(processors)f(are)h +(determined)i(dynamically)f(and)g(can)43 2209 y(be)27 +b(dif)o(ferent)g(for)g(dif)o(ferent)g(executions.)44 +b(A)27 b(number)g(of)g(researchers)e(have)i(observed)f(and)h(analyzed)g +(the)g(existence)43 2334 y(of)j(these)h(speedup)f(anomalies.)55 +b(An)31 b(acceleration)g(anomaly)g(manifests)f(itself)h(in)g(the)f +(form)h(of)f(a)g(speedup)h(greater)43 2458 y(than)e Fi(p)g +Fk(on)g Fi(p)g Fk(processors)e(when)i(parallel)i(search)d(does)g(less)h +(work)f(than)h(the)h(serial)f(search)f(algorithm)i([26)q(,)f(29].)50 +b(A)43 2583 y(speedup)18 b(of)f(less)g(than)g Fi(p)p +Fk(,)h(attributed)g(to)g(excess)d(work)h(done)i(by)f(the)g(parallel)i +(formulation)g(compared)e(to)g(the)h(sequential)43 2707 +y(formulation,)34 b(is)c(termed)h(as)e(a)i(deceleration)g(anomaly)g +([26)q(,)f(28].)54 b(The)30 b(ratio)h Fi(W)2712 2719 +y Fe(p)2751 2707 y Fi(=W)2871 2719 y Fe(s)2906 2707 y +Fk(,)h(where)f Fi(W)3296 2719 y Fe(p)3365 2707 y Fk(and)f +Fi(W)3611 2719 y Fe(s)3677 2707 y Fk(are)h(the)43 2832 +y(number)24 b(of)f(nodes)g(searched)g(by)f(parallel)j(and)f(serial)f +(formulations,)h(is)f(called)h(the)g(search)e(overhead)h(factor)-5 +b(.)43 3017 y(Speedup)28 b(anomalies)h(can)e(easily)g(occur)f(in)i +(parallel)g(depth\255\002rst)f(search)f(for)h(\002nding)g(any)g +(solution,)j(as)c(certain)i(exe\255)43 3141 y(cution)i(sequences)f(may) +g(\002nd)g(a)h(solution)g(much)f(earlier)h(than)g(others.)51 +b(However)-5 b(,)31 b(it)f(appears)f(natural)h(that,)i(on)e(the)43 +3266 y(average,)22 b(the)f(search)f(overhead)i(factor)e(for)h(parallel) +i(DFS)e(should)h(always)f(be)g(greater)g(than)h(or)f(equal)h(to)g(one.) +32 b(Other\255)43 3390 y(wise)23 b(the)h(serial)f(search)g(algorithm)h +(is)f(not)h(optimal;)h(i.e.,)f(the)f(emulation)i(of)f(parallel)g(DFS)f +(on)h(a)f(single)h(processor)e(will)43 3515 y(be)k(faster)g(than)h +(sequential)g(DFS.)f(Surprisingly)-6 b(,)28 b(there)e(are)g +(situations,)h(in)g(which)f(parallel)i(DFS)e(can)g(have)g(a)g(search)43 +3639 y(overhead)i(factor)f(of)g(less)g(than)h(1)g(on)g(the)f(average,)i +(implying)g(that)f(the)g(serial)f(search)g(algorithm)i(in)f(the)g +(situation)g(is)43 3764 y(suboptimal.)43 b(Kumar)27 b(and)g(Rao)f([43]) +h(show)f(that)g(if)h(no)g(heuristic)f(information)i(is)e(available)i +(to)e(order)g(the)h(successors)43 3888 y(of)i(a)f(node,)j(then)d(on)h +(the)g(average,)h(the)e(speedup)h(obtained)h(by)e(parallel)i(DFS)e(is)g +(superlinear)h(if)g(the)g(distribution)h(of)43 4013 y(solutions)d(is)g +(non\255uniform.)43 b(This)27 b(model)g(is)g(validated)h(by)e +(experiments)g(on)h(synthetic)f(state\255space)g(trees)g(modeling)43 +4137 y(the)j(hackers)e(problem,)k(the)e(15\255puzzle)f(problem)i(and)f +(the)g Fi(n)p Fk(\255Queens)e(problem.)50 b(In)29 b(all)g(these)g +(experiments,)h(serial)43 4262 y(and)i(parallel)h(DFS)e(do)g(not)h(use) +f(any)g(heuristic)h(ordering,)i(and)d(select)g(successors)e +(arbitrarily)-6 b(.)57 b(The)31 b(basic)g(reason)43 4386 +y(for)23 b(this)h(phenomenon)h(is)e(that)h(parallel)h(search)e(can)g +(invest)g(resources)f(into)j(multiple)g(regions)f(of)f(the)h(search)f +(frontier)43 4511 y(concurrently)-6 b(.)35 b(When)26 +b(the)e(solution)i(density)e(in)h(dif)o(ferent)g(regions)g(of)f(the)h +(search)f(frontier)g(is)h(non\255uniform)g(and)g(these)43 +4635 y(non\255uniformities)32 b(are)f(not)g(known)g(a)g(priori,)i(then) +f(sequential)g(search)e(has)g(an)i(equal)f(chance)g(of)g(searching)g(a) +g(low)43 4760 y(density)19 b(region)h(\(and)f(thus)g(be)h(forced)f(to)g +(expand)h(many)f(nodes\))g(or)g(a)g(high)h(density)f(region.)32 +b(On)19 b(the)h(contrary)-6 b(,)18 b(parallel)43 4885 +y(search)25 b(can)h(search)f(all)h(regions)g(at)g(the)h(same)f(time,)h +(ensuring)f(that)g(at)g(least)h(some)e(processors)f(are)i(searching)g +(the)43 5009 y(high)e(density)f(regions.)43 5194 y(If)k(good)g +(heuristics)f(are)g(available)i(to)f(order)f(the)g(successors)e(of)j +(nodes)f(in)h(DFS,)g(then)g(the)f(search)g(overhead)g(factor)43 +5318 y(of)k(parallel)h(DFS)f(may)g(be)g(greater)g(than)g(one.)53 +b(The)30 b(reason)g(is)f(that)i(some)f(processors)d(may)j(search)f +(unpromising)1970 5610 y(9)p eop +%%Page: 10 10 +10 9 bop 43 344 a Fk(areas)25 b(of)g(the)h(search)e(space.)38 +b(This)25 b(phenomenon)i(is)e(most)g(visible)h(in)g(the)f(context)g(of) +g Fi(\013)20 b Fc(\000)g Fi(\014)29 b Fk(search)24 b(of)i(game)f(trees) +43 469 y(for)f(which)h(strong)e(ordering)i(heuristics)f(are)g +(available.)38 b(Kale)25 b(and)g(Saletore)g([19])g(present)f(a)g +(scheme)g(that)h(combines)43 593 y(the)h(information)h(about)f(the)g +(ordering)h(and)f(depth)g(of)g(nodes)f(to)h(perform)g(load)g(balancing) +h(among)f(processors.)38 b(This)43 718 y(scheme)15 b(largely)g +(maintains)h(the)f(depth\255\002rst)f(heuristic)h(order)f(of)i(search)d +(across)h(processors,)g(and)i(results)e(in)h(consistent)43 +842 y(linear)32 b(speedup.)55 b(Even)31 b(in)g(the)g(presence)f(of)h +(good)g(ordering)h(heuristics,)g(parallel)g(DFS)f(may)f(lead)i(to)e +(superlinear)43 967 y(speedup.)i(For)21 b(example,)h(this)f(can)f +(happen)i(if)f(there)g(is)g(a)g(non\255zero)g(probability)h(that)f(the) +g(heuristic)g(can)g(guide)h(search)43 1092 y(to)h(large)h(regions)f +(that)h(do)f(not)h(contain)f(any)g(solutions)h([43].)43 +1276 y(In)k(parallel)h(BFS,)g(the)f(search)f(overhead)g(can)h(be)g +(greater)g(than)g(one)g(if)h(some)e(processors)f(expand)i(nodes)g(that) +g(are)43 1401 y(never)f(expanded)h(by)f(serial)h(BFS)g(\(e.g.,)g(nodes) +g(that)g(have)f(higher)h(bound)g(than)g(the)g(cost)f(of)g(the)h +(optimal)h(solution\).)43 1525 y(In)j(fact,)h(it)f(can)f(be)h(shown)f +(that)h(for)f(any)h(given)g(BFS)f(instance,)j(there)e(exists)e(a)i +(constant)f Fi(k)j Fk(such)d(that)h(expanding)43 1650 +y(more)25 b(than)g Fi(k)j Fk(nodes)d(in)g(parallel)h(from)f(a)g(global) +h(open)g(list)f(leads)g(to)g(wasted)g(computation)h([26].)38 +b(This)24 b(situation)i(gets)43 1774 y(worse)j(with)i(distributed)g +(open)f(lists)g(since)g(expanded)g(nodes)h(have)e(locally)i(minimum)h +(heuristics)d(that)h(are)g(not)h(the)43 1899 y(best)23 +b(nodes)g(across)f(all)i(open)g(lists.)43 2083 y(The)29 +b(search)f(overhead)g(for)h(parallel)h(BFS)g(can)e(also)h(be)g(less)f +(than)i(one.)49 b(This)29 b(can)f(happen)i(when)f(multiple)i(nodes)43 +2208 y(on)c(the)g(open)g(list)h(have)e(identical)i(heuristic)f(values,) +h(but)f(require)g(dif)o(ferent)g(amount)h(of)f(search)e(to)i(detect)g +(a)g(solution)43 2332 y(\(or)h(to)h(\002nd)g(out)g(that)g(the)g(node)h +(does)e(not)i(lead)f(to)g(optimal)i(solution\).)50 b(Hence,)30 +b(if)f(a)g(parallel)h(algorithm)h(happens)e(to)43 2457 +y(explore)h(the)h(better)g(nodes)f(\002rst,)h(then)g(it)f(can)g(result) +h(in)f(acceleration)h(anomalies,)j(and)c(vice)g(versa.)53 +b(It)30 b(is)h(possible)43 2581 y(to)39 b(derive)g(properties)f(of)h +(the)g(heuristic)g(function)g(such)f(that)h(superlinearity)h(ef)o +(fects)d(in)j(parallel)g(BFS)f(are)f(made)43 2706 y(deterministic)24 +b([29,)g(32].)43 3105 y Fj(7)116 b(Role)32 b(of)g(Heuristics)43 +3390 y Fk(Heuristics)e(form)g(the)h(most)g(important)g(component)g(of)g +(search)f(techniques,)j(and)e(parallel)h(formulations)f(of)g(search)43 +3515 y(algorithms)22 b(must)f(be)h(viewed)g(in)g(the)f(context)g(of)h +(these)f(heuristics.)32 b(In)21 b(BFS)h(techniques,)g(heuristics)f +(focus)g(search)f(by)43 3639 y(lowering)j(the)f(ef)o(fective)g +(branching)g(factor)-5 b(.)32 b(In)22 b(DFBB)g(methods,)h(heuristics)e +(provide)h(better)h(bounds,)f(and)g(thus)g(serve)43 3764 +y(to)h(prune)h(the)f(search)f(space.)43 3948 y(Often,)f(there)g(is)g(a) +f(tradeof)o(f)h(between)g(the)g(strength)g(of)g(the)g(heuristic)f(and)h +(the)g(ef)o(fective)g(size)f(of)h(search)e(space.)32 +b(Better)43 4073 y(heuristics)21 b(result)g(in)h(smaller)g(search)f +(spaces)f(but)i(are)f(also)h(more)f(expensive)g(to)h(compute.)32 +b(For)21 b(example,)h(an)g(impor\255)43 4197 y(tant)27 +b(application)h(of)e(strong)g(heuristics)g(is)g(in)h(the)g(computation) +g(of)g(bounds)f(for)g(mixed)h(integer)g(programming)g(\(MIP\).)43 +4322 y(Mixed)36 b(integer)g(programming)h(has)e(seen)g(signi\002cant)h +(advances)f(over)g(the)g(years)g([18].)70 b(Whereas)35 +b(\002fteen)h(years)43 4446 y(back,)c(MIP)f(problems)f(with)h(100)g +(integer)g(variables)g(were)f(considered)g(challenging,)k(today)-6 +b(,)32 b(many)f(problems)f(with)43 4571 y(up)25 b(to)g(1000)h(integer)f +(variables)g(can)g(be)g(solved)g(on)g(workstation)f(class)g(machines)h +(using)g(branch\255and\255cut)g(methods.)43 4695 y(Largest)35 +b(known)h(instances)f(of)h(TSPs)g(and)g(QAPs)f(have)h(been)g(solved)f +(using)h(branch\255and\255bound)g(with)g(powerful)43 +4820 y(heuristics)e([3,)h(35].)66 b(The)34 b(presence)g(of)h(ef)o +(fective)f(heuristics)g(may)g(prune)h(the)f(search)g(space)g +(considerably)-6 b(.)66 b(For)43 4945 y(example,)24 b(when)f(Padberg)h +(and)f(Rinaldi)h(introduced)g(the)f(branch\255and\255cut)f(algorithm)i +(in)g(1987,)f(they)g(used)g(it)g(to)g(solve)43 5069 y(a)i(532)g(city)e +(TSP)-11 b(,)26 b(which)e(was)g(the)h(largest)g(TSP)g(solved)f +(optimally)i(at)f(that)g(time.)37 b(Subsequent)25 b(improvements)g(to)g +(the)43 5194 y(method)d(led)g(to)f(the)g(solution)i(of)e(a)g(a)g(2,392) +h(city)f(problem)g([36)q(].)32 b(More)21 b(recently)-6 +b(,)21 b(using)g(cutting)h(planes,)g(problems)f(with)43 +5318 y(over)f(7,000)h(cities)g(have)f(been)i(solved)e([18)q(])g(on)h +(serial)g(machines.)32 b(However)-5 b(,)21 b(for)f(many)h(problems)g +(of)f(interest,)i(the)f(re\255)1947 5610 y(10)p eop +%%Page: 11 11 +11 10 bop 43 344 a Fk(duced)21 b(search)f(space)g(still)i(requires)f +(the)g(use)g(of)g(parallelism)i([3,)e(35,)g(44,)g(31)q(].)31 +b(Use)21 b(of)g(powerful)h(heuristics)e(combined)43 469 +y(with)26 b(ef)o(fective)f(parallel)i(processing)d(has)h(enabled)i(the) +f(solution)g(of)g(extremely)f(large)g(problems)h([35].)39 +b(For)25 b(example,)43 593 y(QAP)k(problems)f(from)h(the)f(Nugent)h +(and)g(Eschermann)g(test)f(suites)g(with)h(up)f(to)h(4)p +Fi(:)p Fk(8)22 b Fc(\002)f Fk(10)3028 563 y Fh(10)3125 +593 y Fk(nodes)28 b(\(Nugent22)h(with)43 718 y(Gilmore\255Lawler)f +(bound\))g(were)f(solved)g(on)g(a)h(NEC)f(Cenju\2553)h(parallel)h +(computer)e(in)h(under)g(nine)g(days)e([3].)45 b(Another)43 +842 y(dazzling)31 b(demonstration)h(of)f(this)g(was)g(presented)g(by)f +(the)h(IBM)h(Deep)f(Blue.)57 b(Deep)31 b(blue)h(used)e(a)h(combination) +i(of)43 967 y(dedicated)h(hardware)e(for)h(generating)h(and)f +(evaluating)h(board)f(positions)g(and)h(parallel)g(search)e(of)h(the)g +(game)g(tree)43 1092 y(using)24 b(an)f(IBM)h(SP2)g(to)f(beat)h(the)f +(current)g(world)g(chess)f(champion,)i(Garry)e(Kasparov)g([16)q(,)h +(14].)43 1276 y(Heuristics)g(have)h(several)g(important)g(implications) +i(for)e(exploiting)h(parallelism.)36 b(Strong)25 b(heuristics)e(narrow) +h(the)g(state)43 1401 y(space)18 b(and)h(thus)g(reduce)f(the)h +(concurrency)e(available)j(in)f(the)g(search)f(space.)31 +b(Use)18 b(of)h(powerful)g(heuristics)f(pose)h(other)43 +1525 y(computational)30 b(challenges)f(for)e(parallel)j(processing)d +(as)h(well.)48 b(For)27 b(example,)j(in)e(branch\255and\255cut)g +(methods,)h(a)f(cut)43 1650 y(generated)e(at)g(a)g(certain)f(state)h +(may)f(be)h(required)g(by)f(other)h(states.)39 b(Therefore,)26 +b(in)g(addition)h(to)f(balancing)h(load,)g(the)43 1774 +y(parallel)g(branch\255and\255cut)e(formulation)i(must)e(also)h +(partition)h(cuts)e(among)h(processors)d(so)j(that)g(processors)d +(working)43 1899 y(in)h(certain)f(LP)h(domains)f(have)g(access)f(to)h +(the)h(desired)f(cuts)f([2)q(,)h(27,)g(8].)43 2083 y(In)35 +b(addition)h(to)f(inter\255node)g(parallelism)h(that)f(has)f(been)h +(discussed)f(until)i(this)e(point,)39 b(intra\255node)c(parallelism)h +(can)43 2208 y(become)21 b(a)h(viable)g(option)g(if)f(the)h(heuristic)f +(is)g(computationally)i(expensive.)31 b(For)21 b(example,)h(the)f +(assignment)h(heuristic)43 2332 y(of)27 b(Pekny)g(et)h(al.)45 +b(has)27 b(been)h(ef)o(fectively)f(parallelized)i(for)e(solving)g +(large)h(instances)f(of)g(TSPs)g([35)q(].)44 b(If)28 +b(the)f(degree)h(of)43 2457 y(inter\255node)h(parallelism)h(is)d +(small,)j(this)f(form)f(of)g(parallelism)i(provides)d(a)i(desirable)f +(alternative.)49 b(Another)28 b(example)43 2581 y(of)e(this)h(is)f(in)g +(the)h(solution)g(of)g(MIP)f(problems)h(using)f(branch\255and\255cut)g +(methods.)42 b(Branch\255and\255cut)25 b(methods)i(rely)f(on)43 +2706 y(LP)f(relaxation)h(for)f(generating)h(lower)f(bounds)g(of)g +(partially)h(instantiated)g(solutions)g(followed)g(by)e(generation)i +(of)f(valid)43 2830 y(inequalities)33 b([18].)55 b(These)30 +b(LP)h(relaxations)f(constitute)h(a)g(major)g(part)f(of)h(the)g +(overall)g(computation)g(time.)55 b(Many)31 b(of)43 2955 +y(the)25 b(industrial)i(codes)d(rely)h(on)g(Simplex)i(to)e(solve)g(the) +g(LP)h(problem)g(since)f(it)g(can)g(adapt)h(the)f(solution)i(to)e +(added)h(rows)43 3080 y(and)e(columns.)35 b(While)26 +b(interior)f(point)f(methods)h(are)f(better)g(suited)g(to)g +(parallelism,)i(they)e(tend)h(to)f(be)g(less)g(ef)o(\002cient)f(for)43 +3204 y(reoptimizing)k(LP)f(solutions)g(with)f(added)i(rows)d(and)i +(columns)f(\(in)h(branch\255and\255cut)e(methods\).)40 +b(LP)25 b(relaxation)i(using)43 3329 y(Simplex)j(has)e(been)i(shown)e +(to)h(parallelize)i(well)e(on)g(small)h(numbers)e(of)h(processors)e +(but)i(ef)o(forts)f(to)g(scale)h(to)g(larger)43 3453 +y(numbers)e(of)h(processors)d(have)i(not)h(been)f(successful.)44 +b(LP)27 b(based)h(branch)f(and)g(bound)h(methods)g(have)f(also)g(been) +43 3578 y(used)g(for)f(solving)h(quadratic)g(assignment)g(problems)g +(using)g(iterative)h(solvers)d(such)h(as)g(preconditioned)j(Conjugate) +43 3702 y(Gradient)37 b(to)h(approximately)f(compute)h(the)f(interior)h +(point)g(directions)f([37].)74 b(These)37 b(methods)g(have)g(been)h +(used)43 3827 y(to)30 b(compute)f(lower)h(bounds)g(using)g(linear)g +(programs)f(with)h(over)f(150,000)h(constraints)f(and)h(300,000)h +(variables)e(for)43 3951 y(solving)20 b(QAPs.)32 b(These)19 +b(and)i(other)f(iterative)h(solvers)e(parallelize)j(very)c(ef)o +(fectively)i(to)g(a)h(large)f(number)h(of)f(processors.)43 +4076 y(A)25 b(general)g(parallel)g(framework)f(for)g(computing)h +(heuristic)f(solutions)h(to)f(problems)h(is)f(presented)g(by)g +(Pramanick)h(and)43 4200 y(Kuhl)f([39)q(].)43 4600 y +Fj(8)116 b(Concluding)32 b(Remarks)43 4885 y Fk(Great)e(advances)g +(have)h(been)h(made)f(in)g(the)g(development)h(of)f(scalable)g +(parallel)i(formulations)f(of)f(various)f(search)43 5009 +y(methods)h(in)h(the)f(past)g(two)g(decades.)56 b(Performance)31 +b(and)g(scalability)h(of)f(load)h(balancing)g(techniques)g(for)e +(parallel)43 5134 y(depth\255\002rst)36 b(search)g(methods)i(is)f +(largely)g(understood,)k(and)d(it)g(is)f(unlikely)g(that)h(any)f(new)g +(methods)h(will)g(perform)43 5258 y(signi\002cantly)32 +b(better)g(than)g(the)g(existing)g(methods.)59 b(Parallel)34 +b(best\255\002rst)c(search)g(methods)j(require)f(qualitative)h(load) +1947 5610 y(11)p eop +%%Page: 12 12 +12 11 bop 43 344 a Fk(balancing)39 b(in)g(addition)h(to)e(quantitative) +h(load)g(balancing)g(used)f(in)h(depth\255\002rst)e(search,)k(and)d +(are)g(thus)g(harder)g(to)43 469 y(analyze.)h(However)-5 +b(,)25 b(many)g(methods)h(for)f(qualitative)i(load)f(balancing)g(have)f +(been)h(developed)g(and)g(shown)f(to)g(have)43 593 y(provably)h(good)i +(performance)e(under)h(a)g(reasonable)g(set)g(of)f(assumptions.)43 +b(For)27 b(a)f(wide)i(variety)e(of)h(problems,)g(both)43 +718 y(best\255\002rst)33 b(and)i(depth\255\002rst)e(search)h(methods)h +(have)f(shown)h(excellent)g(performance)g(and)g(scalability)g(up)g(to)f +(1024)43 842 y(processors)22 b([45)q(,)i(25)q(,)g(1,)h(40,)f(30)q(,)g +(44)q(].)36 b(Attention)26 b(has)e(now)h(shifted)g(to)g(the)f +(development)i(of)f(software)f(environments)43 967 y(that)g(allow)g +(practitioners)f(to)g(solve)g(real)h(problems)f(on)h(parallel)g +(machines)g([4].)43 1152 y(It)33 b(is)g(important)h(to)f(note)g(that)h +(parallel)g(processing)f(can)f(only)h(provide)h(speed)f(up)g +(proportional)h(to)f(the)g(number)h(of)43 1276 y(processors.)g(Hence,) +24 b(parallel)i(search)d(can)h(be)h(used)f(to)h(solve)f +(signi\002cantly)g(bigger)h(instances)f(of)g(the)h(problem)g(only)43 +1401 y(if)i(the)g(search)f(space)g(grows)g(as)h(a)g(small)g(exponent)g +(of)g(problem)h(size.)42 b(Hence,)28 b(challenges)g(remain)f(in)g +(discovering)43 1525 y(better)c(heuristics)g(that)h(reduce)f(the)g +(growth)g(of)h(the)f(search)g(space.)32 b(Indeed,)24 +b(for)f(many)g(problems,)g(gains)h(due)f(to)h(new)43 +1650 y(powerful)31 b(heuristics)e(may)g(be)i(much)e(higher)i(than)f +(those)g(due)g(to)g(massively)f(parallel)j(formulations)e(using)h +(existing)43 1774 y(heuristics.)h(These)23 b(powerful)h(heuristics)e +(may)h(also)h(of)o(fer)e(new)i(opportunities)g(for)f(exploiting)i +(parallelism.)43 2154 y Fj(References)85 2371 y Fn([1])40 +b(S.)19 b(Arvindam,)f(V)o(ipin)f(Kumar)l(,)h(and)g(V)-7 +b(.)18 b(Nageshwara)f(Rao.)25 b(Floorplan)16 b(optimization)f(on)k +(multiprocessors.)24 b(In)18 b Fb(Proceedings)f(of)209 +2486 y(the)j(1989)f(International)d(Conference)i(on)i(Computer)e +(Design)p Fn(,)h(1989.)85 2625 y([2])40 b(R.)17 b(E.)h(Bixby)-6 +b(,)18 b(W)l(.)f(Cook,)g(A.)g(Cox,)h(and)e(E.)h(Lee.)22 +b(Parallel)15 b(mixed)i(integer)e(programming.)20 b(T)-8 +b(echnical)15 b(Report)h(CRPC)h(TR)h(95554,)209 2739 +y(Center)h(for)h(Research)g(on)g(Parallel)d(Computation,)h(Research)h +(Monograph,)f(1995.)85 2878 y([3])40 b(Adrian)20 b(Brungger)l(,)f +(Ambros)i(Marzetta,)g(Jens)h(Clausen,)e(and)g(Michael)h(Perregaard.)28 +b(Solving)20 b(large\255scale)f(qap)i(problems)f(in)209 +2992 y(parallel)e(with)h(the)h(search)g(library)f(zram.)29 +b Fb(Journal)19 b(of)h(Parallel)e(and)h(Distributed)f(Computing)p +Fn(,)g(50:157\226169,)e(1998.)85 3131 y([4])40 b(B.)57 +b(L.)g(Cun)f(and)g(C.)i(Roucairol.)123 b(BOB:)57 b(A)g(uni\002ed)f +(platform)f(for)i(implementing)d(branch\255and\255bound)e(like)k +(al\255)209 3246 y(gorithms.)132 b(T)-8 b(echnical)58 +b(Report)g(N95/16,)68 b(Universiti)58 b(de)h(V)l(ersailles)f(Saint)h +(Quentin,)67 b(1995.)132 b(A)o(vailable)57 b(from)209 +3360 y Fa(http://www.prism.uvsq.fr/english/paralle)o(l/cr/b)o(ob)p +2371 3360 23 4 v 21 w(us.html)p Fn(.)85 3499 y([5])40 +b(E.)29 b(W)l(.)f(Dijkstra,)i(W)l(.)e(H.)g(Seijen,)h(and)e(A.)i(J.)g +(M.)g(V)-6 b(an)28 b(Gasteren.)49 b(Derivation)26 b(of)i(a)h +(termination)c(detection)h(algorithm)g(for)i(a)209 3613 +y(distributed)18 b(computation.)25 b Fb(Information)18 +b(Processing)h(Letters)p Fn(,)g(16\2555:217\226219,)d(1983.)85 +3752 y([6])40 b(S.)28 b(Dutt)f(and)f(N.)i(R.)f(Mahapatra.)45 +b(Scalable)25 b(load\255balancing)e(strategies)j(for)h(parallel)d(a*)k +(algorithms.)45 b Fb(Journal)26 b(of)h(Parallel)209 3866 +y(and)f(Distributed)e(Computing)p Fn(,)h(22\(3\):488\226505,)e(Sept.)i +(1994.)43 b(Special)25 b(Issue)i(on)e(Scalability)g(of)h(Parallel)e +(Algorithms)g(and)209 3981 y(Architectures.)85 4120 y([7])40 +b(Jonathan)13 b(Eckstein.)19 b(Parallel)13 b(branch\255and\255bound)d +(methods)k(for)h(mixed\255integer)d(programming)h(on)h(the)h(cm\2555.) +20 b Fb(SIAM)15 b(Journal)209 4234 y(on)20 b(Optimization)p +Fn(,)e(4\(4\):794\226814,)e(1994.)85 4373 y([8])40 b(Jonathan)14 +b(Eckstein.)22 b(Distributed)13 b(versus)k(centralized)d(storage)h(and) +g(control)g(for)h(parallel)e(branch)h(and)g(bound:)25 +b(Mixed)16 b(integer)209 4487 y(programming)i(on)i(the)g(cm\2555.)28 +b Fb(Computational)17 b(Optimization)h(and)h(Applications)p +Fn(,)f(7\(2\):199\226220,)e(1997.)85 4626 y([9])40 b(M.)22 +b(Evett,)f(James)h(Hendler)l(,)d(Ambujashka)h(Mahanti,)g(and)g(Dana)g +(Nau.)31 b(PRA*:)f(A)22 b(memory\255limited)d(heuristic)h(search)h +(proce\255)209 4741 y(dure)i(for)h(the)f(connection)e(machine.)37 +b(In)24 b Fb(Proceedings)d(of)j(the)f(Third)g(Symposium)g(on)h(the)f +(Frontiers)f(of)i(Massively)g(Parallel)209 4855 y(Computation)p +Fn(,)17 b(pages)j(145\226149,)d(1990.)43 4994 y([10])40 +b(Chris)17 b(Ferguson)e(and)h(Richard)g(Korf.)22 b(Distributed)15 +b(tree)h(search)h(and)f(its)h(application)d(to)j(alpha\255beta)d +(pruning.)20 b(In)d Fb(Proceedings)209 5108 y(of)j(the)g(1988)f +(National)f(Conference)g(on)i(Arti\002cial)f(Intelligence)p +Fn(,)d(August)k(1988.)43 5247 y([11])40 b(A.)33 b(Ferreira)d(and)i(P) +-10 b(.)33 b(Pardalos,)g(editors.)59 b Fb(Solving)31 +b(Combinatorial)e(Optimization)h(Problems)i(in)g(Parallel:)50 +b(Methods)31 b(and)209 5361 y(T)-7 b(echniques)p Fn(,)18 +b(volume)i(1054)f(of)h Fb(LNCS)g(State\255of\255the\255Art)c(Surveys)p +Fn(.)29 b(Springer\255V)l(erlag,)16 b(1996.)1947 5610 +y Fk(12)p eop +%%Page: 13 13 +13 12 bop 43 344 a Fn([12])40 b(Raphael)27 b(A.)i(Finkel)e(and)h(Udi)g +(Manber)l(.)50 b(DIB)29 b(\255)g(a)g(distributed)d(implementation)f(of) +j(backtracking.)50 b Fb(ACM)29 b(T)-6 b(ransactions)28 +b(of)209 459 y(Programming)18 b(Languages)g(and)h(Systems)p +Fn(,)i(9)g(No.)f(2:235\226256,)c(April)j(1987.)43 606 +y([13])40 b(M.)30 b(Furuichi,)f(K.)h(T)-8 b(aki,)31 b(and)d(N.)h +(Ichiyoshi.)52 b(A)29 b(multi\255level)e(load)h(balancing)f(scheme)i +(for)g(OR\255parallel)e(exhaustive)h(search)209 720 y(programs)20 +b(on)g(the)h(Multi\255PSI.)28 b(In)20 b Fb(Proceedings)f(of)i(the)f +(Second)g(ACM)h(SIGPLAN)f(Symposium)h(on)f(Principles)f(and)h(Practice) +209 834 y(of)g(Parallel)e(Programming)p Fn(,)g(pages)h(50\22659,)g +(1990.)43 982 y([14])40 b(Scott)19 b(Hamilton)d(and)i(Lee)g(Garber)l(.) +24 b(Deep)18 b(Blue')o(s)f(hardware\255software)e(synergy)-6 +b(.)26 b Fb(IEEE)18 b(Computer)p Fn(,)g(30\(10\):29\22635,)c(October) +209 1096 y(1997.)43 1243 y([15])40 b(F)-8 b(.\255H.)21 +b(Hsu.)33 b(Large)20 b(scale)i(parallelization)17 b(of)22 +b(alpha\255beta)c(search:)31 b(An)22 b(algorithmic)d(and)i +(architectural)f(study)h(with)h(computer)209 1357 y(chess.)29 +b(T)-8 b(echnical)18 b(report,)h(Carnegie)f(Mellon)h(University)-6 +b(,)20 b(Pittsburgh,)e(P)-6 b(A,)20 b(1990.)27 b(Ph.D.)20 +b(Thesis.)43 1505 y([16])40 b(F)-8 b(.\255H.)19 b(Hsu,)h(M.)f(S.)h +(Campbell,)d(and)i(A.)h(J.)g(Hoane.)25 b(Deep)19 b(Blue)f(system)j +(overview)l(.)26 b(In)19 b Fb(Conference)e(proceedings)g(of)i(the)g +(1995)209 1619 y(International)d(Conference)i(on)i(Supercomputing,)d +(Barcelona,)h(Spain)p Fn(,)g(pages)h(240\226244,)f(1995.)43 +1766 y([17])40 b(V)o(irendra)24 b(K.)i(Janakiram,)h(Dharma)e(P)-10 +b(.)27 b(Agrawal,)f(and)f(Ram)i(Mehrotra.)43 b(A)26 b(randomized)e +(parallel)g(backtracking)h(algorithm.)209 1880 y Fb(IEEE)20 +b(T)-6 b(ransactions)19 b(on)h(Computers)p Fn(,)f(C\25537)h(\(12\),)f +(1988.)43 2028 y([18])40 b(L.)28 b(Johnson,)h(G.)g(Nemhauser)l(,)f(and) +g(M.)g(Savelsbergh.)48 b(Progress)27 b(in)h(integer)e(programming:)42 +b(An)28 b(exposition.)48 b(T)-8 b(echnical)209 2142 y(report,)35 +b(School)c(of)i(Industrial)e(and)h(Systems)i(Engineering,)e(Georgia)f +(Institute)g(of)h(T)-8 b(echnology)i(,)34 b(1997.)60 +b(A)o(vailable)31 b(from)209 2256 y Fa(http://akula.isye.gatech.edu/)40 +b(mwps/mwps.html)p Fn(.)43 2403 y([19])g(L.)19 b(V)-7 +b(.)20 b(Kale)e(and)g(V)-7 b(.)20 b(Saletore.)k(Parallel)17 +b(state\255space)h(search)h(for)g(a)g(\002rst)h(solution)d(with)i +(consistent)f(linear)g(speedups.)25 b Fb(Interna\255)209 +2517 y(tional)19 b(Journal)f(of)i(Parallel)e(Programming)p +Fn(,)g(3,)i(August)g(1990.)43 2665 y([20])40 b(L.)20 +b(N.)h(Kanal)e(and)g(V)o(ipin)g(Kumar)l(.)27 b Fb(Search)20 +b(in)g(Arti\002cial)f(Intelligence)p Fn(.)25 b(Springer\255V)l(erlag,) +15 b(New)20 b(Y)-7 b(ork,)21 b(NY)-10 b(,)20 b(1988.)43 +2812 y([21])40 b(R.)21 b(Karp)f(and)g(Y)-10 b(.)21 b(Zhang.)28 +b(Randomized)18 b(parallel)g(algorithms)h(for)h(backtrack)h(search)g +(and)f(branch\255and\255bound)15 b(computation.)209 2926 +y Fb(Journal)k(of)h(ACM)p Fn(,)h(40:765\226789,)16 b(1993.)43 +3074 y([22])40 b(George)20 b(Karypis)g(and)g(V)o(ipin)e(Kumar)l(.)29 +b(Unstructured)19 b(T)m(ree)h(Search)g(on)g(SIMD)h(Parallel)d +(Computers.)28 b Fb(IEEE)21 b(T)-6 b(ransactions)19 b(on)209 +3188 y(Parallel)f(and)h(Distributed)f(Systems)p Fn(,)j(5\(10\),)e +(October)h(1994.)43 3335 y([23])40 b(V)-7 b(.)24 b(Kumar)f(and)g(L.)g +(N.)h(Kanal.)36 b(A)24 b(general)d(branch\255and\255bound)e +(formulations)i(for)j(understanding)19 b(and)k(synthesizing)f(and/or) +209 3449 y(tree)e(search)g(procedures.)26 b Fb(Arti\002cial)20 +b(Intelligence)p Fn(,)c(21:179\226198,)g(1983.)43 3597 +y([24])40 b(V)o(ipin)23 b(Kumar)l(,)h(Ananth)e(Grama,)j(Anshul)e +(Gupta,)h(and)g(George)e(Karypis.)39 b Fb(Introduction)21 +b(to)j(Parallel)e(Computing:)33 b(Algorithm)209 3711 +y(Design)19 b(and)h(Analysis)p Fn(.)28 b(Benjamin)18 +b(Cummings/)i(Addison)e(W)o(esley)i(\(ISBN)g(0\2558053\2553170\2550\),) +15 b(Redwod)k(City)-6 b(,)21 b(1994.)43 3858 y([25])40 +b(V)o(ipin)17 b(Kumar)l(,)h(Ananth)f(Grama,)h(and)g(V)-7 +b(.)19 b(Nageshwara)d(Rao.)25 b(Scalable)17 b(load)g(balancing)f +(techniques)g(for)j(parallel)c(computers.)209 3972 y +Fb(Journal)k(of)h(Parallel)e(and)h(Distributed)f(Computing)p +Fn(,)g(22\(1\):60\22679,)e(July)21 b(1994.)43 4120 y([26])40 +b(T)-8 b(.)27 b(H.)h(Lai)e(and)h(Sartaj)f(Sahni.)46 b(Anomalies)25 +b(in)i(parallel)e(branch)i(and)f(bound)g(algorithms.)45 +b Fb(Communications)25 b(of)i(the)g(ACM)p Fn(,)209 4234 +y(pages)19 b(594\226602,)f(1984.)43 4381 y([27])40 b(Eva)19 +b(K.)h(Lee)e(and)g(John)h(E.)g(Mitchell.)25 b(Computational)15 +b(experience)i(of)i(an)f(interior\255point)d(algorithm)i(in)i(a)g +(parallel)d(branch\255and\255)209 4495 y(cut)21 b(framework.)27 +b(In)20 b Fb(Proceedings)e(for)i(SIAM)h(Conference)d(on)i(Parallel)d +(Processing)j(for)g(Scienti\002c)f(Computing)p Fn(,)f(1997.)43 +4643 y([28])40 b(G.)28 b(J.)g(Li)f(and)g(B.)g(W)l(.)h(W)m(ah.)46 +b(Computational)24 b(ef)o(\002ciency)j(of)g(combinatorial)e(or\255tree) +h(searches.)47 b Fb(IEEE)27 b(T)-6 b(rans.)27 b(on)g(Software)209 +4757 y(Engineering)p Fn(,)16 b(16\(1\):13\22631,)h(Jan.)j(1990.)43 +4904 y([29])40 b(Guo\255Jie)22 b(Li)h(and)f(Benjamin)f(W)l(.)h(W)m(ah.) +35 b(Coping)21 b(with)i(anomalies)e(in)h(parallel)e +(branch\255and\255bound)e(algorithms.)34 b Fb(IEEE)23 +b(T)-6 b(rans\255)209 5019 y(actions)20 b(on)g(Computers)p +Fn(,)e(C\22635,)i(June)f(1986.)43 5166 y([30])40 b(N.)18 +b(R.)f(Mahapatra)e(and)i(S.)h(Dutt.)k(Scalable)16 b(global)f(and)i +(local)f(hashing)g(strategies)g(for)h(duplicate)e(pruning)g(in)i +(parallel)d(a*)k(graph)209 5280 y(search.)28 b Fb(IEEE)20 +b(T)-6 b(rans.)20 b(Parallel)e(and)i(Distributed)d(Systems)p +Fn(,)k(8\(7\),)f(July)g(1997.)1947 5610 y Fk(13)p eop +%%Page: 14 14 +14 13 bop 43 344 a Fn([31])40 b(B.)19 b(Mans,)g(T)-8 +b(.)18 b(Mautor)l(,)g(and)g(C.)h(Roucairol.)k(A)c(parallel)d(depth)i +(\002rst)h(search)g(branch)e(and)h(bound)f(for)h(the)g(quadratic)f +(assignment)209 459 y(problem.)27 b Fb(European)18 b(Journal)g(of)i +(Operational)d(Research)p Fn(,)j(81\(3\):617\226628,)15 +b(1995.)43 606 y([32])40 b(B.)21 b(Mans)g(and)e(C.)i(Roucairol.)27 +b(Performances)19 b(of)h(parallel)e(branch)i(and)f(bound)g(algorithms)g +(with)h(best\255\002rst)g(search.)29 b Fb(Discrete)209 +720 y(Applied)18 b(Mathematics)p Fn(,)h(66\(1\):57\22676,)e(April)i +(1996.)43 867 y([33])40 b(G.)19 b(Manzini)f(and)g(M.)h(Somalvico.)25 +b(Probabilistic)16 b(performance)h(analysis)h(of)h(heuristic)e(search)i +(using)f(parallel)e(hash)i(tables.)25 b(In)209 982 y +Fb(Proceedings)18 b(of)i(the)g(International)c(Symposium)k(on)g +(Arti\002cial)f(Intelligence)e(and)i(Mathematics)p Fn(,)g(1990.)43 +1129 y([34])40 b(T)-8 b(.)16 b(A.)g(Marsland)f(and)g(M.)h(Campbell.)j +(Parallel)14 b(search)h(of)h(strongly)f(ordered)f(game)h(trees.)21 +b Fb(Computing)14 b(Surveys)p Fn(,)j(14:533\226551,)209 +1243 y(1982.)43 1390 y([35])40 b(D.)24 b(L.)g(Miller)e(and)h(J.)h(F)-8 +b(.)24 b(Pekny)-6 b(.)38 b(The)23 b(role)f(of)i(performance)e(metrics)h +(for)h(parallel)d(mathematical)g(programming)h(algorithms.)209 +1505 y Fb(ORSA)f(Journal)d(on)i(Computing)p Fn(,)e(5\(1\),)i(1993.)43 +1652 y([36])40 b(M.)33 b(Padberg)e(and)g(G.)i(Rinaldi.)59 +b(A)33 b(branch\255and\255cut)c(algorithm)h(for)j(the)f(resolution)e +(of)i(large\255scale)e(symmetric)k(traveling)209 1766 +y(salesman)20 b(problems.)27 b Fb(SIAM)20 b(Rev)-6 b(.)p +Fn(,)21 b(33:60\226100,)16 b(1991.)43 1913 y([37])40 +b(P)-10 b(.)20 b(Pardalos,)e(Y)-10 b(.)20 b(Li,)f(K.G.)g(Ramakrishna,)f +(and)g(M.G.C.)i(Resende.)25 b(Lower)18 b(bounds)g(for)i(the)e +(quadratic)f(assignment)h(problem.)209 2028 y Fb(Annals)c(of)h +(Operations)f(Research)p Fn(,)h(50:387\226411,)d(1994.)18 +b(Special)c(V)l(olume)g(on)h(Applications)d(of)j(Combinatorial)d +(Optimization.)43 2175 y([38])40 b(Judea)23 b(Pearl.)38 +b Fb(Heuristics\255Intelligent)19 b(Search)24 b(Strategies)e(for)i +(Computer)f(Problem)f(Solving)p Fn(.)38 b(Addison\255W)o(esley)-6 +b(,)22 b(Reading,)209 2289 y(MA,)f(1984.)43 2437 y([39])40 +b(Ira)35 b(Pramanick)f(and)h(Jon)f(G.)i(Kuhl.)66 b(An)35 +b(inherently)e(parallel)f(method)i(for)g(heuristic)g +(problem\255solving:)55 b(Part)34 b(i\255general)209 +2551 y(framework.)28 b Fb(IEEE)20 b(T)-6 b(ransactions)19 +b(on)h(Parallel)d(and)j(Distributed)e(Systems)p Fn(,)j(6\(10\),)e +(October)g(1995.)43 2698 y([40])40 b(B.)18 b(Monien)e(R.)i(Feldmann,)e +(P)-10 b(.)18 b(Mysliwietz.)24 b(Studying)16 b(overheads)g(in)h +(massively)h(parallel)d(min/max\255tree)h(evaluation.)21 +b(In)d Fb(Proc.)209 2812 y(of)i(the)g(6th)g(ACM)g(Symposium)g(on)g +(Parallel)e(Algorithms)h(and)g(Architectures)p Fn(,)g(pages)g +(94\226103,)f(1994.)43 2960 y([41])40 b(A.)26 b(G.)g(Ranade.)40 +b(Optimal)24 b(speedup)f(for)j(backtrack)f(search)g(on)g(a)h +(butter\003y)e(network.)41 b(In)26 b Fb(Proceedings)d(of)i(the)g(Third) +f(ACM)209 3074 y(Symposium)c(on)g(Parallel)e(Algorithms)h(and)g +(Architectures)p Fn(,)g(1991.)43 3221 y([42])40 b(V)-7 +b(.)30 b(Nageshwara)e(Rao)h(and)g(V)-7 b(.)30 b(Kumar)l(.)53 +b(Concurrent)28 b(access)j(of)f(priority)e(queues.)52 +b Fb(IEEE)30 b(T)-6 b(ransactions)28 b(on)i(Computers)p +Fn(,)209 3335 y(C\25537\(12\),)18 b(1988.)43 3483 y([43])40 +b(V)-7 b(.)23 b(Nageshwara)d(Rao)i(and)g(V)o(ipin)f(Kumar)l(.)33 +b(On)23 b(the)f(ef)o(\002cicency)g(of)h(parallel)c(backtracking.)33 +b Fb(IEEE)23 b(T)-6 b(ransactions)21 b(on)h(Parallel)209 +3597 y(and)f(Distributed)f(Systems)p Fn(,)j(4\(4\):427\226437,)17 +b(April)k(1993.)31 b(Also)22 b(available)d(as)j(T)-8 +b(echnical)20 b(Report)h(TR)h(90\25555,)e(Department)g(of)209 +3711 y(Computer)f(Science,)g(University)h(of)g(Minnesota,)e +(Minneapolis,)g(MN.)43 3858 y([44])40 b(C.)26 b(Roucairol.)41 +b(A)26 b(parallel)d(branch)h(and)h(bound)f(algorithm)f(for)j(the)f +(quadratic)e(assignment)i(problem.)41 b Fb(Discr)m(.)26 +b(Appl.)e(Math.)p Fn(,)209 3972 y(18:211\226225,)16 b(1987.)43 +4120 y([45])40 b(B.)29 b(Monien)e(S.)i(T)-8 b(schvke,)31 +b(R.)e(L|ling.)50 b(Solving)27 b(the)h(traveling)f(salesman)h(problem)f +(with)h(a)h(distributed)d(branch\255and\255bound)209 +4234 y(algorithm)21 b(on)j(a)f(1024)f(processor)h(network.)36 +b(In)23 b Fb(Proc.)h(of)f(the)g(9th)g(International)c(Parallel)i +(Processing)i(Symposium)p Fn(,)g(pages)209 4348 y(182\226189,)18 +b(Santa)h(Barbara,)f(CA,)i(April)f(1995.)43 4495 y([46])40 +b(Benjamin)20 b(W)l(.)i(W)m(ah,)f(Gou\255Jie)g(Li,)h(and)f(C.)i(F)-8 +b(.)21 b(Y)l(u.)33 b(Multiprocessing)19 b(of)j(combinatorial)d(search)j +(problems.)31 b Fb(IEEE)22 b(Computer)p Fn(,)209 4610 +y(June)e(1985.)43 4757 y([47])40 b(Benjamin)20 b(W)l(.)i(W)m(ah)f(and)g +(Y)-10 b(.)22 b(W)l(.)g(Eva)g(Ma.)33 b(MANIP\227a)21 +b(multicomputer)f(architecture)g(for)h(solving)g(combinatorial)e +(extremum\255)209 4871 y(search)h(problems.)27 b Fb(IEEE)20 +b(T)-6 b(ransactions)19 b(on)h(Computers)p Fn(,)f(c\22633,)h(May)g +(1984.)1947 5610 y Fk(14)p eop +%%Trailer +end +userdict /end-hook known{end-hook}if +%%EOF diff --git a/parallel/jpdc.ps b/parallel/jpdc.ps new file mode 100755 index 0000000..87d8934 --- /dev/null +++ b/parallel/jpdc.ps @@ -0,0 +1,12898 @@ +%!PS-Adobe-2.0 +%%Creator: dvipsk 5.58f Copyright 1986, 1994 Radical Eye Software +%%Title: journal.dvi +%%Pages: 39 +%%PageOrder: Ascend +%%BoundingBox: 0 0 612 792 +%%DocumentFonts: Times-Roman Times-Bold Times-Italic Courier +%%DocumentPaperSizes: Letter +%%EndComments +%DVIPSCommandLine: dvips journal -t letter -o journal.ps +%DVIPSParameters: dpi=600, comments removed +%DVIPSSource: TeX output 1999.02.12:1313 +%%BeginProcSet: tex.pro +/TeXDict 250 dict def TeXDict begin /N{def}def /B{bind def}N /S{exch}N +/X{S N}B /TR{translate}N /isls false N /vsize 11 72 mul N /hsize 8.5 72 +mul N /landplus90{false}def /@rigin{isls{[0 landplus90{1 -1}{-1 1} +ifelse 0 0 0]concat}if 72 Resolution div 72 VResolution div neg scale +isls{landplus90{VResolution 72 div vsize mul 0 exch}{Resolution -72 div +hsize mul 0}ifelse TR}if Resolution VResolution vsize -72 div 1 add mul +TR[matrix currentmatrix{dup dup round sub abs 0.00001 lt{round}if} +forall round exch round exch]setmatrix}N /@landscape{/isls true N}B +/@manualfeed{statusdict /manualfeed true put}B /@copies{/#copies X}B +/FMat[1 0 0 -1 0 0]N /FBB[0 0 0 0]N /nn 0 N /IE 0 N /ctr 0 N /df-tail{ +/nn 8 dict N nn begin /FontType 3 N /FontMatrix fntrx N /FontBBox FBB N +string /base X array /BitMaps X /BuildChar{CharBuilder}N /Encoding IE N +end dup{/foo setfont}2 array copy cvx N load 0 nn put /ctr 0 N[}B /df{ +/sf 1 N /fntrx FMat N df-tail}B /dfs{div /sf X /fntrx[sf 0 0 sf neg 0 0] +N df-tail}B /E{pop nn dup definefont setfont}B /ch-width{ch-data dup +length 5 sub get}B /ch-height{ch-data dup length 4 sub get}B /ch-xoff{ +128 ch-data dup length 3 sub get sub}B /ch-yoff{ch-data dup length 2 sub +get 127 sub}B /ch-dx{ch-data dup length 1 sub get}B /ch-image{ch-data +dup type /stringtype ne{ctr get /ctr ctr 1 add N}if}B /id 0 N /rw 0 N +/rc 0 N /gp 0 N /cp 0 N /G 0 N /sf 0 N /CharBuilder{save 3 1 roll S dup +/base get 2 index get S /BitMaps get S get /ch-data X pop /ctr 0 N ch-dx +0 ch-xoff ch-yoff ch-height sub ch-xoff ch-width add ch-yoff +setcachedevice ch-width ch-height true[1 0 0 -1 -.1 ch-xoff sub ch-yoff +.1 sub]{ch-image}imagemask restore}B /D{/cc X dup type /stringtype ne{]} +if nn /base get cc ctr put nn /BitMaps get S ctr S sf 1 ne{dup dup +length 1 sub dup 2 index S get sf div put}if put /ctr ctr 1 add N}B /I{ +cc 1 add D}B /bop{userdict /bop-hook known{bop-hook}if /SI save N @rigin +0 0 moveto /V matrix currentmatrix dup 1 get dup mul exch 0 get dup mul +add .99 lt{/QV}{/RV}ifelse load def pop pop}N /eop{SI restore userdict +/eop-hook known{eop-hook}if showpage}N /@start{userdict /start-hook +known{start-hook}if pop /VResolution X /Resolution X 1000 div /DVImag X +/IE 256 array N 0 1 255{IE S 1 string dup 0 3 index put cvn put}for +65781.76 div /vsize X 65781.76 div /hsize X}N /p{show}N /RMat[1 0 0 -1 0 +0]N /BDot 260 string N /rulex 0 N /ruley 0 N /v{/ruley X /rulex X V}B /V +{}B /RV statusdict begin /product where{pop product dup length 7 ge{0 7 +getinterval dup(Display)eq exch 0 4 getinterval(NeXT)eq or}{pop false} +ifelse}{false}ifelse end{{gsave TR -.1 .1 TR 1 1 scale rulex ruley false +RMat{BDot}imagemask grestore}}{{gsave TR -.1 .1 TR rulex ruley scale 1 1 +false RMat{BDot}imagemask grestore}}ifelse B /QV{gsave newpath transform +round exch round exch itransform moveto rulex 0 rlineto 0 ruley neg +rlineto rulex neg 0 rlineto fill grestore}B /a{moveto}B /delta 0 N /tail +{dup /delta X 0 rmoveto}B /M{S p delta add tail}B /b{S p tail}B /c{-4 M} +B /d{-3 M}B /e{-2 M}B /f{-1 M}B /g{0 M}B /h{1 M}B /i{2 M}B /j{3 M}B /k{ +4 M}B /w{0 rmoveto}B /l{p -4 w}B /m{p -3 w}B /n{p -2 w}B /o{p -1 w}B /q{ +p 1 w}B /r{p 2 w}B /s{p 3 w}B /t{p 4 w}B /x{0 S rmoveto}B /y{3 2 roll p +a}B /bos{/SS save N}B /eos{SS restore}B end +%%EndProcSet +%%BeginFont: Times-Roman +% @@psencodingfile@{ +% author = "S. Rahtz, P. MacKay, Alan Jeffrey, B. Horn, K. Berry", +% version = "0.6", +% date = "22 June 1996", +% filename = "8r.enc", +% email = "kb@@mail.tug.org", +% address = "135 Center Hill Rd. // Plymouth, MA 02360", +% codetable = "ISO/ASCII", +% checksum = "119 662 4424", +% docstring = "Encoding for TrueType or Type 1 fonts to be used with TeX." +% @} +% +% Idea is to have all the characters normally included in Type 1 fonts +% available for typesetting. This is effectively the characters in Adobe +% Standard Encoding + ISO Latin 1 + extra characters from Lucida. +% +% Character code assignments were made as follows: +% +% (1) the Windows ANSI characters are almost all in their Windows ANSI +% positions, because some Windows users cannot easily reencode the +% fonts, and it makes no difference on other systems. The only Windows +% ANSI characters not available are those that make no sense for +% typesetting -- rubout (127 decimal), nobreakspace (160), softhyphen +% (173). quotesingle and grave are moved just because it's such an +% irritation not having them in TeX positions. +% +% (2) Remaining characters are assigned arbitrarily to the lower part +% of the range, avoiding 0, 10 and 13 in case we meet dumb software. +% +% (3) Y&Y Lucida Bright includes some extra text characters; in the +% hopes that other PostScript fonts, perhaps created for public +% consumption, will include them, they are included starting at 0x12. +% +% (4) Remaining positions left undefined are for use in (hopefully) +% upward-compatible revisions, if someday more characters are generally +% available. +% +% (5) hyphen appears twice for compatibility with both ASCII and Windows. +% +/TeXBase1Encoding [ +% 0x00 (encoded characters from Adobe Standard not in Windows 3.1) + /.notdef /dotaccent /fi /fl + /fraction /hungarumlaut /Lslash /lslash + /ogonek /ring /.notdef + /breve /minus /.notdef +% These are the only two remaining unencoded characters, so may as +% well include them. + /Zcaron /zcaron +% 0x10 + /caron /dotlessi +% (unusual TeX characters available in, e.g., Lucida Bright) + /dotlessj /ff /ffi /ffl + /.notdef /.notdef /.notdef /.notdef + /.notdef /.notdef /.notdef /.notdef + % very contentious; it's so painful not having quoteleft and quoteright + % at 96 and 145 that we move the things normally found there down to here. + /grave /quotesingle +% 0x20 (ASCII begins) + /space /exclam /quotedbl /numbersign + /dollar /percent /ampersand /quoteright + /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash +% 0x30 + /zero /one /two /three /four /five /six /seven + /eight /nine /colon /semicolon /less /equal /greater /question +% 0x40 + /at /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O +% 0x50 + /P /Q /R /S /T /U /V /W + /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore +% 0x60 + /quoteleft /a /b /c /d /e /f /g /h /i /j /k /l /m /n /o +% 0x70 + /p /q /r /s /t /u /v /w + /x /y /z /braceleft /bar /braceright /asciitilde + /.notdef % rubout; ASCII ends +% 0x80 + /.notdef /.notdef /quotesinglbase /florin + /quotedblbase /ellipsis /dagger /daggerdbl + /circumflex /perthousand /Scaron /guilsinglleft + /OE /.notdef /.notdef /.notdef +% 0x90 + /.notdef /.notdef /.notdef /quotedblleft + /quotedblright /bullet /endash /emdash + /tilde /trademark /scaron /guilsinglright + /oe /.notdef /.notdef /Ydieresis +% 0xA0 + /.notdef % nobreakspace + /exclamdown /cent /sterling + /currency /yen /brokenbar /section + /dieresis /copyright /ordfeminine /guillemotleft + /logicalnot + /hyphen % Y&Y (also at 45); Windows' softhyphen + /registered + /macron +% 0xD0 + /degree /plusminus /twosuperior /threesuperior + /acute /mu /paragraph /periodcentered + /cedilla /onesuperior /ordmasculine /guillemotright + /onequarter /onehalf /threequarters /questiondown +% 0xC0 + /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla + /Egrave /Eacute /Ecircumflex /Edieresis + /Igrave /Iacute /Icircumflex /Idieresis +% 0xD0 + /Eth /Ntilde /Ograve /Oacute + /Ocircumflex /Otilde /Odieresis /multiply + /Oslash /Ugrave /Uacute /Ucircumflex + /Udieresis /Yacute /Thorn /germandbls +% 0xE0 + /agrave /aacute /acircumflex /atilde + /adieresis /aring /ae /ccedilla + /egrave /eacute /ecircumflex /edieresis + /igrave /iacute /icircumflex /idieresis +% 0xF0 + /eth /ntilde /ograve /oacute + /ocircumflex /otilde /odieresis /divide + /oslash /ugrave /uacute /ucircumflex + /udieresis /yacute /thorn /ydieresis +] def +%%EndFont +%%BeginProcSet: texps.pro +TeXDict begin /rf{findfont dup length 1 add dict begin{1 index /FID ne 2 +index /UniqueID ne and{def}{pop pop}ifelse}forall[1 index 0 6 -1 roll +exec 0 exch 5 -1 roll VResolution Resolution div mul neg 0 0]/Metrics +exch def dict begin Encoding{exch dup type /integertype ne{pop pop 1 sub +dup 0 le{pop}{[}ifelse}{FontMatrix 0 get div Metrics 0 get div def} +ifelse}forall Metrics /Metrics currentdict end def[2 index currentdict +end definefont 3 -1 roll makefont /setfont load]cvx def}def +/ObliqueSlant{dup sin S cos div neg}B /SlantFont{4 index mul add}def +/ExtendFont{3 -1 roll mul exch}def /ReEncodeFont{/Encoding exch def}def +end +%%EndProcSet +%%BeginProcSet: special.pro +TeXDict begin /SDict 200 dict N SDict begin /@SpecialDefaults{/hs 612 N +/vs 792 N /ho 0 N /vo 0 N /hsc 1 N /vsc 1 N /ang 0 N /CLIP 0 N /rwiSeen +false N /rhiSeen false N /letter{}N /note{}N /a4{}N /legal{}N}B +/@scaleunit 100 N /@hscale{@scaleunit div /hsc X}B /@vscale{@scaleunit +div /vsc X}B /@hsize{/hs X /CLIP 1 N}B /@vsize{/vs X /CLIP 1 N}B /@clip{ +/CLIP 2 N}B /@hoffset{/ho X}B /@voffset{/vo X}B /@angle{/ang X}B /@rwi{ +10 div /rwi X /rwiSeen true N}B /@rhi{10 div /rhi X /rhiSeen true N}B +/@llx{/llx X}B /@lly{/lly X}B /@urx{/urx X}B /@ury{/ury X}B /magscale +true def end /@MacSetUp{userdict /md known{userdict /md get type +/dicttype eq{userdict begin md length 10 add md maxlength ge{/md md dup +length 20 add dict copy def}if end md begin /letter{}N /note{}N /legal{} +N /od{txpose 1 0 mtx defaultmatrix dtransform S atan/pa X newpath +clippath mark{transform{itransform moveto}}{transform{itransform lineto} +}{6 -2 roll transform 6 -2 roll transform 6 -2 roll transform{ +itransform 6 2 roll itransform 6 2 roll itransform 6 2 roll curveto}}{{ +closepath}}pathforall newpath counttomark array astore /gc xdf pop ct 39 +0 put 10 fz 0 fs 2 F/|______Courier fnt invertflag{PaintBlack}if}N +/txpose{pxs pys scale ppr aload pop por{noflips{pop S neg S TR pop 1 -1 +scale}if xflip yflip and{pop S neg S TR 180 rotate 1 -1 scale ppr 3 get +ppr 1 get neg sub neg ppr 2 get ppr 0 get neg sub neg TR}if xflip yflip +not and{pop S neg S TR pop 180 rotate ppr 3 get ppr 1 get neg sub neg 0 +TR}if yflip xflip not and{ppr 1 get neg ppr 0 get neg TR}if}{noflips{TR +pop pop 270 rotate 1 -1 scale}if xflip yflip and{TR pop pop 90 rotate 1 +-1 scale ppr 3 get ppr 1 get neg sub neg ppr 2 get ppr 0 get neg sub neg +TR}if xflip yflip not and{TR pop pop 90 rotate ppr 3 get ppr 1 get neg +sub neg 0 TR}if yflip xflip not and{TR pop pop 270 rotate ppr 2 get ppr +0 get neg sub neg 0 S TR}if}ifelse scaleby96{ppr aload pop 4 -1 roll add +2 div 3 1 roll add 2 div 2 copy TR .96 dup scale neg S neg S TR}if}N /cp +{pop pop showpage pm restore}N end}if}if}N /normalscale{Resolution 72 +div VResolution 72 div neg scale magscale{DVImag dup scale}if 0 setgray} +N /psfts{S 65781.76 div N}N /startTexFig{/psf$SavedState save N userdict +maxlength dict begin /magscale true def normalscale currentpoint TR +/psf$ury psfts /psf$urx psfts /psf$lly psfts /psf$llx psfts /psf$y psfts +/psf$x psfts currentpoint /psf$cy X /psf$cx X /psf$sx psf$x psf$urx +psf$llx sub div N /psf$sy psf$y psf$ury psf$lly sub div N psf$sx psf$sy +scale psf$cx psf$sx div psf$llx sub psf$cy psf$sy div psf$ury sub TR +/showpage{}N /erasepage{}N /copypage{}N /p 3 def @MacSetUp}N /doclip{ +psf$llx psf$lly psf$urx psf$ury currentpoint 6 2 roll newpath 4 copy 4 2 +roll moveto 6 -1 roll S lineto S lineto S lineto closepath clip newpath +moveto}N /endTexFig{end psf$SavedState restore}N /@beginspecial{SDict +begin /SpecialSave save N gsave normalscale currentpoint TR +@SpecialDefaults count /ocount X /dcount countdictstack N}N /@setspecial +{CLIP 1 eq{newpath 0 0 moveto hs 0 rlineto 0 vs rlineto hs neg 0 rlineto +closepath clip}if ho vo TR hsc vsc scale ang rotate rwiSeen{rwi urx llx +sub div rhiSeen{rhi ury lly sub div}{dup}ifelse scale llx neg lly neg TR +}{rhiSeen{rhi ury lly sub div dup scale llx neg lly neg TR}if}ifelse +CLIP 2 eq{newpath llx lly moveto urx lly lineto urx ury lineto llx ury +lineto closepath clip}if /showpage{}N /erasepage{}N /copypage{}N newpath +}N /@endspecial{count ocount sub{pop}repeat countdictstack dcount sub{ +end}repeat grestore SpecialSave restore end}N /@defspecial{SDict begin} +N /@fedspecial{end}B /li{lineto}B /rl{rlineto}B /rc{rcurveto}B /np{ +/SaveX currentpoint /SaveY X N 1 setlinecap newpath}N /st{stroke SaveX +SaveY moveto}N /fil{fill SaveX SaveY moveto}N /ellipse{/endangle X +/startangle X /yrad X /xrad X /savematrix matrix currentmatrix N TR xrad +yrad scale 0 0 1 startangle endangle arc savematrix setmatrix}N end +%%EndProcSet +TeXDict begin 40258431 52099146 1000 600 600 (journal.dvi) +@start /Fa 165[49 58 1[75 1[58 49 1[53 2[58 58 2[58 1[27 +58 58 44 49 3[58 65[{ TeXBase1Encoding ReEncodeFont }15 +79.999924 /Times-Roman rf /Fb 133[60 1[60 1[60 60 60 +60 60 1[60 60 60 60 60 60 1[60 60 2[60 60 60 1[60 14[60 +16[60 65[{ TeXBase1Encoding ReEncodeFont }21 100.000000 +/Courier rf /Fc 1 51 df<01FC0007FF801C0FC03003E06001F06000F8F800F8FC00FC +FC00FCFC007C78007C3000FC0000FC0000F80000F80001F00003E00003C0000780000F00 +001E0000380000700000E00001C00C03800C0600180C00181800183FFFF87FFFF8FFFFF0 +FFFFF016217CA01E>50 D E /Fd 1 101 df<000003E000003FC000003FC0000003C000 +0003C00000078000000780000007800000078000000F0000000F0000000F0000000F0000 +1F1E0000FF9E0001E0DE0003807E0007007C000F003C001E003C003E003C003C0078007C +0078007C0078007C007800F800F000F800F000F800F040F800F060F801E0C07801E0C078 +03E0C03807E1801C1CF3000FF87F0007E03C001B247EA220>100 +D E /Fe 1 101 df<0000001F000003FF000003FF0000003F0000003F0000003E000000 +3E0000007E0000007E0000007C0000007C000000FC000000FC000000F8000000F8000001 +F80007E1F8001FF9F0007C1DF000F80FF001F00FF003E007E007C007E00FC007E01F8007 +E01F8007C03F0007C03F000FC07F000FC07E000F807E000F807E001F80FE001F80FC001F +00FC001F00FC003F02FC003F06FC003E06F8003E06F8007E0E7C00FE0C7C00FC0C7C01FC +1C3E07BE181F0E1E380FFC0FF003F003C0202F7DAD24>100 D E +/Ff 2 13 df<0000003FE000000000000001FFFC0000000000000FFFFF0000000000003F +E03FC00000000000FF000FE00000000001FC0007F00003C00007F80003F80003C0000FF0 +0001FC000380001FE00001FE000380003FC00000FE000780007F800000FF00070000FF00 +0000FF00070001FE0000007F800F0003FE0000007F800E0003FC0000007F800E0007F800 +00007FC01E000FF80000003FC01C000FF80000003FC03C001FF00000003FC038001FF000 +00003FC078003FE00000003FC070003FE00000003FC0F0007FE00000003FC0E0007FC000 +00003FC1E0007FC00000003FC1C0007FC00000003FC3C000FFC00000003FC78000FF8000 +00003FC78000FF800000003FCF0000FF800000003FDE0000FF800000003FDE0000FF0000 +00003FFC0000FF000000003FF80000FF000000003FF00000FF000000003FF00000FF0000 +00003FE00000FF000000003FC00000FF000000003FC00000FF000000003FC00000FF0000 +00003FC00000FF000000003FC000007F00000000FFC000007F80000001FFE000003F8000 +0003FFE000003F8000000F9FE00E001FC000001F1FE01E000FE000007C0FE01C0007F000 +01F80FE03C0003F8000FE007F0780001FE00FF8003F8F800007FFFFE0001FFF000001FFF +F00000FFC0000003FF0000003F000042357BB34A>11 D<000000000001FF000000000000 +000FFFC00000000000007FFFF0000000000000FE01FC000000000003F000FE0000000000 +0FC0007F00000000001F00003F00000000003C00003F80000000007800001F8000000000 +F000001FC000000001E000001FC000000003C000001FC0000000078000001FC00000000F +0000001FE00000001E0000001FE00000001C0000001FE00000003C0000001FE000000078 +0000003FE0000000700000003FC0000000F00000003FC0000001E00000003FC0000001C0 +0000007FC0000003C00000007F80000003800000007F80000007800000007F8000000700 +000000FF0000000700000000FF0000000F00000001FE0000000E00000001FC0000000E00 +000003FC0000001E00000007F80000001C00000007F00000001C0000000FE00000003C00 +07FF1FC000000038001FFFFF8000000038003FFFFE0000000038003803FE000000007800 +3FFFFF0000000070003FFFFF8000000070000FFE1FC0000000700000000FE0000000F000 +00000FE0000000E000000007F0000000E000000007F0000000E000000007F8000001E000 +000003F8000001C000000003F8000001C000000003FC000001C000000003FC000003C000 +000003FC0000038000000003FC0000038000000003FC0000038000000007FC0000078000 +000007FC0000070000000007FC0000070000000007FC0000070000000007FC00000F0000 +00000FFC00000E000000000FF800000E000000000FF800000E000000000FF800001E0000 +00001FF800001E000000001FF000001E000000001FF000001C000000001FF000003C0000 +00003FE000003C000000003FE000003E000000007FC000003E000000007FC000007E0000 +0000FF8000007E00000000FF0000007E00000001FF0000007F00000001FE000000F70000 +0003FC000000E780000007F8000000E38000000FF0000000E3C000000FE0000001E1E000 +001FC0000001C1F000007F80000001C0F80000FF00000001C07E0001FC00000003C01F80 +0FF000000003800FFFFFE0000000038003FFFF00000000038000FFFC0000000007800000 +00000000000700000000000000000700000000000000000700000000000000000F000000 +00000000000E00000000000000000E00000000000000000E00000000000000001E000000 +00000000001C00000000000000001C00000000000000001C00000000000000003C000000 +000000000038000000000000000038000000000000000038000000000000000078000000 +0000000000700000000000000000700000000000000000700000000000000000F0000000 +0000000000F00000000000000000436B7ED342>I E /Fg 134[60 +60 1[60 66 40 47 53 2[60 66 100 33 2[33 66 60 40 53 66 +53 66 60 12[80 66 86 1[73 93 1[113 80 2[47 93 2[80 86 +1[80 86 11[60 60 60 60 60 2[30 40 45[{ TeXBase1Encoding ReEncodeFont } +40 119.999947 /Times-Bold rf /Fh 103[50 32[50 1[50 50 +50 50 1[50 2[50 50 2[50 50 50 1[50 50 50 50 50 38[50 +10[50 50 46[{ TeXBase1Encoding ReEncodeFont }20 83.333336 +/Courier rf /Fi 134[42 42 60 42 42 23 32 28 42 42 42 +42 65 23 42 23 23 42 42 28 37 42 37 42 37 3[28 1[28 3[78 +60 1[51 46 55 1[46 60 60 74 51 60 1[28 60 60 2[60 55 +55 60 7[42 42 42 42 42 42 42 42 42 42 1[21 28 21 2[28 +28 2[69 34[46 2[{ TeXBase1Encoding ReEncodeFont }62 83.333336 +/Times-Roman rf /Fj 8 57 df<00380000780001F8001FF800FEF800E0F80000F80000 +F80000F80000F80000F80000F80000F80000F80000F80000F80000F80000F80000F80000 +F80000F80000F80000F80000F80000F80000F80000F80000F80000F80000F80000F80000 +F80000F80000F80000F80001FC00FFFFF8FFFFF815267BA521>49 +D<00FF000003FFE0000E03F0001800F80030007C0060007E0078003F00FC003F00FE001F +80FE001F80FE001F80FE001F807C001F8000001F8000001F0000003F0000003E0000007E +0000007C000000F8000001F0000003E0000003C00000078000000E0000001C0000003800 +000070018000E001800180018003000300060003000C0003001FFFFF003FFFFF007FFFFE +00FFFFFE00FFFFFE0019267DA521>I<00FF000003FFE0000F01F8001C007C0030007E00 +3C003E007E003F007E003F007E003F007E003F003C003F0000003E0000007E0000007C00 +0000F8000001F0000007E00001FF800001FF00000001E0000000F00000007C0000003E00 +00003F0000001F0000001F8000001F8038001F807C001F80FE001F80FE001F80FE001F00 +FC003F0078003E0070007C003800F8001F01F00007FFC00000FF000019277DA521>I<00 +00380000003800000078000000F8000001F8000001F8000003F8000007F8000006F80000 +0CF800001CF8000018F8000030F8000070F8000060F80000C0F80001C0F8000180F80003 +00F8000700F8000E00F8000C00F8001C00F8003800F8003000F8006000F800E000F800FF +FFFFE0FFFFFFE00000F8000000F8000000F8000000F8000000F8000000F8000000F80000 +01FC00003FFFE0003FFFE01B277EA621>I<18000C001F007C001FFFF8001FFFF0001FFF +E0001FFF800019FC00001800000018000000180000001800000018000000180000001800 +0000187F000019FFE0001F81F0001E0078001C003C0018003E0000003E0000001F000000 +1F0000001F8000001F8030001F807C001F80FC001F80FC001F80FC001F80FC001F00F000 +1F0060003E0070003E0030007C001C00F8000F03E00003FFC00000FE000019277DA521> +I<000FE000003FF80000F81C0001E0060003C01F0007803F000F003F001F003F001E003F +003E001E003E0000007C0000007C0000007C0400007C3FC000FCFFF000FDC07800FF003C +00FF003E00FE001E00FE001F00FE001F00FC001F80FC001F80FC001F80FC001F807C001F +807C001F807C001F807C001F803C001F003E001F001E001E001E003E000F003C00078078 +0003C1F00001FFC000007F000019277DA521>I<300000003C0000003FFFFFE03FFFFFE0 +3FFFFFC07FFFFF807FFFFF807000070060000E0060000C00C0001C00C0003800C0007000 +0000E0000000C0000001C000000380000003800000070000000F0000000E0000001E0000 +001E0000001E0000003E0000003C0000003C0000007C0000007C0000007C0000007C0000 +00FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC000000780000 +1B287DA621>I<007F000003FFE0000781F8000E007C001C001E0038001E0038000F0078 +000F0078000F0078000F007C000F007E001E003F801E003FE03C001FF078000FFCF00007 +FFC00003FF800000FFE00001FFF000079FFC000F07FE001E03FE003C00FF0078003F0078 +001F80F0000F80F0000F80F0000780F0000780F0000780F00007007800070078000E003C +001C001E0038000F80F00003FFE000007F000019277DA521>I E +/Fk 5 50 df<7FFFFFFFFFFFFFE0FFFFFFFFFFFFFFF0FFFFFFFFFFFFFFF07FFFFFFFFFFF +FFE03C04789A4D>0 D<600000000006F8000000000FFC000000001F7E000000003F3F00 +0000007E1F80000000FC0FC0000001F807E0000003F003F0000007E001F800000FC000FC +00001F80007E00003F00003F00007E00001F8000FC00000FC001F8000007E003F0000003 +F007E0000001F80FC0000000FC1F800000007E3F000000003F7E000000001FFC00000000 +0FF80000000007F00000000007F0000000000FF8000000001FFC000000003F7E00000000 +7E3F00000000FC1F80000001F80FC0000003F007E0000007E003F000000FC001F800001F +8000FC00003F00007E00007E00003F0000FC00001F8001F800000FC003F0000007E007E0 +000003F00FC0000001F81F80000000FC3F000000007E7E000000003FFC000000001FF800 +0000000F600000000006303072B04D>2 D<00000000000000E000000000000003F00000 +000000000FF00000000000003FE0000000000000FF80000000000003FE0000000000000F +F80000000000003FE0000000000000FF80000000000003FE0000000000000FF800000000 +00003FE0000000000000FF80000000000003FE0000000000001FF80000000000007FE000 +0000000001FF80000000000007FE0000000000001FF00000000000007FC0000000000001 +FF00000000000007FC0000000000001FF00000000000007FC0000000000001FF00000000 +000007FC0000000000001FF00000000000007FC0000000000000FF00000000000000FF00 +0000000000007FC00000000000001FF000000000000007FC00000000000001FF00000000 +0000007FC00000000000001FF000000000000007FC00000000000001FF00000000000000 +7FC00000000000001FF000000000000007FC00000000000001FF800000000000007FE000 +00000000001FF800000000000007FE00000000000000FF800000000000003FE000000000 +00000FF800000000000003FE00000000000000FF800000000000003FE00000000000000F +F800000000000003FE00000000000000FF800000000000003FE00000000000000FF00000 +0000000003F000000000000000E000000000000000000000000000000000000000000000 +000000000000000000000000000000000000000000000000000000000000000000000000 +000000000000000000000000000000000000000000000000000000000000000000000000 +000000000000000000000000000000000000000000000000000000000000000000007FFF +FFFFFFFFFFE0FFFFFFFFFFFFFFF0FFFFFFFFFFFFFFF07FFFFFFFFFFFFFE03C4E78BE4D> +20 D<7000000000000000FC00000000000000FF000000000000007FC00000000000001F +F000000000000007FC00000000000001FF000000000000007FC00000000000001FF00000 +0000000007FC00000000000001FF000000000000007FC00000000000001FF00000000000 +0007FC00000000000001FF800000000000007FE00000000000001FF800000000000007FE +00000000000000FF800000000000003FE00000000000000FF800000000000003FE000000 +00000000FF800000000000003FE00000000000000FF800000000000003FE000000000000 +00FF800000000000003FE00000000000000FF00000000000000FF00000000000003FE000 +0000000000FF80000000000003FE0000000000000FF80000000000003FE0000000000000 +FF80000000000003FE0000000000000FF80000000000003FE0000000000000FF80000000 +000003FE0000000000001FF80000000000007FE0000000000001FF80000000000007FE00 +00000000001FF00000000000007FC0000000000001FF00000000000007FC000000000000 +1FF00000000000007FC0000000000001FF00000000000007FC0000000000001FF0000000 +0000007FC0000000000000FF00000000000000FC00000000000000700000000000000000 +000000000000000000000000000000000000000000000000000000000000000000000000 +000000000000000000000000000000000000000000000000000000000000000000000000 +000000000000000000000000000000000000000000000000000000000000000000000000 +000000000000000000000000000000000000007FFFFFFFFFFFFFE0FFFFFFFFFFFFFFF0FF +FFFFFFFFFFFFF07FFFFFFFFFFFFFE03C4E78BE4D>I<0001FF00000000003FC00000000F +FFE000000003FFF80000003FFFFC0000000FFFFE0000007FFFFF0000003FE01F000001FF +FFFF8000007E0007C00003F803FFE00001F80001E00007E0007FF00003F00000F0000780 +003FF80007C0000070000F00001FFC000F80000038001E000007FE001F0000001C001C00 +0003FF003E0000000C0038000001FF807C0000000E0038000001FFC0F800000006007000 +0000FFE0F80000000700700000007FF1F00000000700600000003FF3E000000003006000 +00001FFBC00000000300E00000001FFFC00000000380C00000000FFF800000000180C000 +000007FF000000000180C000000003FF000000000180C000000001FF800000000180C000 +000001FFC00000000180C000000000FFC00000000180C0000000007FE00000000180C000 +0000007FF00000000180C000000000FFF80000000180E000000001FFFC00000003806000 +000001EFFC00000003006000000003E7FE00000003007000000007C7FF00000007007000 +00000F83FF8000000700300000000F81FFC000000E00380000001F00FFC000000E001800 +00003E007FE000001C001C0000007C003FF000003C000E000000F8001FFC000078000700 +0001F0000FFE0000F00007800007E00007FF0003F00003C0000FC00003FFE00FE00001F0 +003F000000FFFFFFC000007C03FE0000007FFFFF0000003FFFF80000001FFFFE0000000F +FFE000000003FFF800000001FE00000000007FC00000592D7BAB64>49 +D E /Fl 26 123 df<00000C00001C0000380000700000E00001C00003C0000780000F00 +000F00001E00003C00003C0000780000F80000F00001F00001E00003E00003E00007C000 +07C00007C0000F80000F80000F80001F00001F00001F00003F00003F00003E00003E0000 +7E00007E00007E00007E00007C00007C00007C0000FC0000FC0000FC0000FC0000FC0000 +FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000 +FC0000FC0000FC00007C00007C00007C00007E00007E00007E00007E00003E00003E0000 +3F00003F00001F00001F00001F00000F80000F80000F800007C00007C00007C00003E000 +03E00001E00001F00000F00000F800007800003C00003C00001E00000F00000F00000780 +0003C00001C00000E000007000003800001C00000C166476CA26>40 +D<C00000E000007000003800001C00000E00000F000007800003C00003C00001E00000F0 +0000F000007800007C00003C00003E00001E00001F00001F00000F80000F80000F800007 +C00007C00007C00003E00003E00003E00003F00003F00001F00001F00001F80001F80001 +F80001F80000F80000F80000F80000FC0000FC0000FC0000FC0000FC0000FC0000FC0000 +FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000 +FC0000F80000F80000F80001F80001F80001F80001F80001F00001F00003F00003F00003 +E00003E00003E00007C00007C00007C0000F80000F80000F80001F00001F00001E00003E +00003C00007C0000780000F00000F00001E00003C00003C0000780000F00000E00001C00 +00380000700000E00000C0000016647BCA26>I<00000000C00000000000000001E00000 +000000000001E00000000000000001E00000000000000001E00000000000000001E00000 +000000000001E00000000000000001E00000000000000001E00000000000000001E00000 +000000000001E00000000000000001E00000000000000001E00000000000000001E00000 +000000000001E00000000000000001E00000000000000001E00000000000000001E00000 +000000000001E00000000000000001E00000000000000001E00000000000000001E00000 +000000000001E00000000000000001E00000000000000001E00000000000000001E00000 +000000000001E00000000000000001E00000000000000001E00000000000000001E00000 +00007FFFFFFFFFFFFFFF00FFFFFFFFFFFFFFFF80FFFFFFFFFFFFFFFF807FFFFFFFFFFFFF +FF0000000001E00000000000000001E00000000000000001E00000000000000001E00000 +000000000001E00000000000000001E00000000000000001E00000000000000001E00000 +000000000001E00000000000000001E00000000000000001E00000000000000001E00000 +000000000001E00000000000000001E00000000000000001E00000000000000001E00000 +000000000001E00000000000000001E00000000000000001E00000000000000001E00000 +000000000001E00000000000000001E00000000000000001E00000000000000001E00000 +000000000001E00000000000000001E00000000000000001E00000000000000001E00000 +000000000001E00000000000000000C00000000041407BB84C>43 +D<0000FF00000007FFE000001F81F800003E007C0000FC003F0001F8001F8001F0000F80 +03E00007C007C00003E007C00003E00FC00003F00F800001F01F800001F81F800001F83F +800001FC3F800001FC3F800001FC3F000000FC7F000000FE7F000000FE7F000000FE7F00 +0000FE7F000000FEFF000000FFFF000000FFFF000000FFFF000000FFFF000000FFFF0000 +00FFFF000000FFFF000000FFFF000000FFFF000000FFFF000000FFFF000000FFFF000000 +FFFF000000FFFF000000FFFF000000FFFF000000FFFF000000FFFF000000FFFF000000FF +FF000000FFFF000000FF7F000000FE7F000000FE7F000000FE7F000000FE7F000000FE7F +800001FE3F800001FC3F800001FC3F800001FC1F800001F81F800001F80FC00003F00FC0 +0003F00FC00003F007E00007E003E00007C003F0000FC001F8001F8000FC003F00003E00 +7C00001F81F8000007FFE0000000FF000028447CC131>48 D<000030000000F0000001F0 +000003F000001FF00000FFF000FFFFF000FFE7F000FF07F0000007F0000007F0000007F0 +000007F0000007F0000007F0000007F0000007F0000007F0000007F0000007F0000007F0 +000007F0000007F0000007F0000007F0000007F0000007F0000007F0000007F0000007F0 +000007F0000007F0000007F0000007F0000007F0000007F0000007F0000007F0000007F0 +000007F0000007F0000007F0000007F0000007F0000007F0000007F0000007F0000007F0 +000007F0000007F0000007F0000007F0000007F0000007F0000007F0000007F0000007F0 +000007F0000007F0000007F0000007F000000FF800001FFC007FFFFFFF7FFFFFFF7FFFFF +FF204278C131>I<0000000380000000000380000000000780000000000F80000000000F +80000000001F80000000003F80000000003F80000000007F8000000000FF8000000000FF +8000000001FF8000000003BF80000000033F80000000073F80000000063F800000000C3F +800000001C3F80000000183F80000000303F80000000703F80000000603F80000000C03F +80000001C03F80000001803F80000003003F80000007003F80000006003F8000000C003F +8000001C003F80000018003F80000030003F80000070003F80000060003F800000E0003F +800001C0003F80000180003F80000380003F80000300003F80000600003F80000E00003F +80000C00003F80001800003F80003800003F80003000003F80006000003F8000E000003F +8000FFFFFFFFFFC0FFFFFFFFFFC0FFFFFFFFFFC00000003F80000000003F80000000003F +80000000003F80000000003F80000000003F80000000003F80000000003F80000000003F +80000000003F80000000003F80000000003F80000000003F8000000000FFE00000007FFF +FFC000007FFFFFC000007FFFFFC02A437DC231>52 D<06000000C007C00007C007FC007F +8007FFFFFF0007FFFFFE0007FFFFFC0007FFFFF80007FFFFE00007FFFF8000063FFC0000 +060000000006000000000600000000060000000006000000000600000000060000000006 +000000000600000000060000000006000000000600000000060000000006000000000600 +FF00000607FFC000061F01F000063800FC0006F0007E0007C0003F000780001F80078000 +1FC00700000FC00600000FE000000007F000000007F000000007F000000007F800000003 +F800000003F800000003FC00000003FC00000003FC00000003FC00000003FC3E000003FC +7F000003FCFF800003FCFF800003FCFF800003FCFF800003FCFF800003F8FF000007F8FE +000007F860000007F060000007F07000000FF03000000FE03800001FC01C00001FC01E00 +003F800F00007F00078000FE0003C001FC0001F807F000007FFFE000001FFF00000007F8 +000026447BC131>I<7FFFFFFFFFFFFFFF00FFFFFFFFFFFFFFFF80FFFFFFFFFFFFFFFF80 +7FFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000000000000 +000000000000000000000000000000000000000000000000000000000000000000000000 +000000000000000000000000000000000000000000000000000000000000000000000000 +000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000007FFFFFFFFFFFFFFF00FFFFFFFFFFFFFFFF80FFFFFFFFFFFFFFFF80 +7FFFFFFFFFFFFFFF0041187BA44C>61 D<0007FC000000003FFF80000000F80FE0000003 +C003F00000070001F800000E0000FC00000FC0007E00001FE0007F00001FF0003F80001F +F0003F80001FF0003F80001FF0001FC0001FF0001FC0000FE0001FC0000380001FC00000 +00001FC0000000001FC0000000001FC0000000001FC00000000FFFC0000001FFFFC00000 +0FFE1FC000003FC01FC00000FF001FC00003FC001FC00007F8001FC0000FF0001FC0001F +E0001FC0003FC0001FC0007FC0001FC0007F80001FC0007F80001FC060FF00001FC060FF +00001FC060FF00001FC060FF00003FC060FF00003FC060FF00003FC060FF80007FC0607F +8000EFC0607FC000C7E0C03FC001C7E0C01FE00783F1C007F81E03FF8001FFFC01FF0000 +1FE0007C002B2E7CAC31>97 D<00007F80000003FFF000000FC07C00003F000F0000FC00 +038001F80001C003F8000FC007F0001FE007E0003FE00FE0003FE01FC0003FE01FC0003F +E03F80003FE03F80001FC07F800007007F800000007F800000007F00000000FF00000000 +FF00000000FF00000000FF00000000FF00000000FF00000000FF00000000FF00000000FF +00000000FF00000000FF000000007F000000007F800000007F800000003F800000003F80 +0000303FC00000301FC00000700FE00000600FE00000E007F00000C003F80001C001F800 +038000FC000700003F001E00001FC078000007FFF0000000FF8000242E7DAC2B>99 +D<000000007F000000003FFF000000003FFF000000003FFF0000000001FF0000000000FF +00000000007F00000000007F00000000007F00000000007F00000000007F00000000007F +00000000007F00000000007F00000000007F00000000007F00000000007F00000000007F +00000000007F00000000007F00000000007F00000000007F00000000007F00000000007F +00000000007F0000007F807F000003FFF07F00000FC07C7F00003F000E7F00007E00077F +0000FC0003FF0003F80001FF0007F00000FF0007E00000FF000FE000007F001FC000007F +001FC000007F003F8000007F003F8000007F007F8000007F007F8000007F007F0000007F +00FF0000007F00FF0000007F00FF0000007F00FF0000007F00FF0000007F00FF0000007F +00FF0000007F00FF0000007F00FF0000007F00FF0000007F00FF0000007F007F0000007F +007F8000007F007F8000007F003F8000007F003F8000007F001FC000007F001FC000007F +000FC00000FF000FE00000FF0007F00001FF0003F00003FF0001F800077F8000FC000E7F +C0003F001C7FFE000FC0F87FFE0003FFE07FFE00007F007F002F467DC436>I<0001FE00 +000007FFC000001F03F000007E00FC0000FC007E0001F8003F0003F0003F0007E0001F80 +0FE0001FC00FC0000FC01FC0000FC03F80000FE03F800007E03F800007E07F800007F07F +000007F07F000007F0FF000007F0FF000007F0FF000007F0FFFFFFFFF0FFFFFFFFF0FF00 +000000FF00000000FF00000000FF00000000FF00000000FF000000007F000000007F0000 +00007F800000007F800000003F800000003F800000301FC00000301FC00000700FC00000 +600FE00000E007F00000C003F00001C001F800038000FC000700003E001E00001F80F800 +0003FFE0000000FF0000242E7DAC2B>I<01FC00000000FFFC00000000FFFC00000000FF +FC0000000007FC0000000003FC0000000001FC0000000001FC0000000001FC0000000001 +FC0000000001FC0000000001FC0000000001FC0000000001FC0000000001FC0000000001 +FC0000000001FC0000000001FC0000000001FC0000000001FC0000000001FC0000000001 +FC0000000001FC0000000001FC0000000001FC0000000001FC01FE000001FC07FFC00001 +FC1E07F00001FC3801F80001FC7001FC0001FCE000FC0001FDC000FE0001FD8000FE0001 +FF80007F0001FF00007F0001FF00007F0001FE00007F0001FE00007F0001FE00007F0001 +FC00007F0001FC00007F0001FC00007F0001FC00007F0001FC00007F0001FC00007F0001 +FC00007F0001FC00007F0001FC00007F0001FC00007F0001FC00007F0001FC00007F0001 +FC00007F0001FC00007F0001FC00007F0001FC00007F0001FC00007F0001FC00007F0001 +FC00007F0001FC00007F0001FC00007F0001FC00007F0001FC00007F0001FC00007F0001 +FC00007F0001FC00007F0003FE0000FF80FFFFF83FFFFEFFFFF83FFFFEFFFFF83FFFFE2F +457DC436>104 D<01E00007F80007F8000FFC000FFC000FFC000FFC0007F80007F80001 +E00000000000000000000000000000000000000000000000000000000000000000000000 +000000000001FC00FFFC00FFFC00FFFC0007FC0003FC0001FC0001FC0001FC0001FC0001 +FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC0001 +FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC0001 +FC0001FC0001FC0001FC0001FC0001FC0003FE00FFFFF8FFFFF8FFFFF815437DC21C>I< +01FC00FFFC00FFFC00FFFC0007FC0003FC0001FC0001FC0001FC0001FC0001FC0001FC00 +01FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC00 +01FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC00 +01FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC00 +01FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC0001FC00 +01FC0001FC0001FC0001FC0001FC0003FE00FFFFF8FFFFF8FFFFF815457DC41C>108 +D<01FC00FF00001FE00000FFFC07FFE000FFFC0000FFFC0F03F801E07F0000FFFC3C01FC +07803F800007FC7000FE0E001FC00003FCE0007E1C000FC00001FDC0007F38000FE00001 +FD80007F30000FE00001FF80003FF00007F00001FF00003FE00007F00001FF00003FE000 +07F00001FE00003FC00007F00001FE00003FC00007F00001FE00003FC00007F00001FC00 +003F800007F00001FC00003F800007F00001FC00003F800007F00001FC00003F800007F0 +0001FC00003F800007F00001FC00003F800007F00001FC00003F800007F00001FC00003F +800007F00001FC00003F800007F00001FC00003F800007F00001FC00003F800007F00001 +FC00003F800007F00001FC00003F800007F00001FC00003F800007F00001FC00003F8000 +07F00001FC00003F800007F00001FC00003F800007F00001FC00003F800007F00001FC00 +003F800007F00001FC00003F800007F00001FC00003F800007F00001FC00003F800007F0 +0001FC00003F800007F00001FC00003F800007F00001FC00003F800007F00001FC00003F +800007F00003FE00007FC0000FF800FFFFF81FFFFF03FFFFE0FFFFF81FFFFF03FFFFE0FF +FFF81FFFFF03FFFFE04B2C7DAB52>I<01FC01FE0000FFFC07FFC000FFFC1E07F000FFFC +3801F80007FC7001FC0003FCE000FC0001FDC000FE0001FD8000FE0001FF80007F0001FF +00007F0001FF00007F0001FE00007F0001FE00007F0001FE00007F0001FC00007F0001FC +00007F0001FC00007F0001FC00007F0001FC00007F0001FC00007F0001FC00007F0001FC +00007F0001FC00007F0001FC00007F0001FC00007F0001FC00007F0001FC00007F0001FC +00007F0001FC00007F0001FC00007F0001FC00007F0001FC00007F0001FC00007F0001FC +00007F0001FC00007F0001FC00007F0001FC00007F0001FC00007F0001FC00007F0001FC +00007F0003FE0000FF80FFFFF83FFFFEFFFFF83FFFFEFFFFF83FFFFE2F2C7DAB36>I<00 +007F8000000003FFF00000000FC0FC0000003E001F0000007C000F800000F80007C00001 +F00003E00003E00001F00007C00000F8000FC00000FC000FC00000FC001F8000007E003F +8000007F003F8000007F003F0000003F007F0000003F807F0000003F807F0000003F807F +0000003F80FF0000003FC0FF0000003FC0FF0000003FC0FF0000003FC0FF0000003FC0FF +0000003FC0FF0000003FC0FF0000003FC0FF0000003FC0FF0000003FC07F0000003F807F +0000003F807F8000007F803F8000007F003F8000007F001F8000007E001FC00000FE000F +C00000FC000FE00001FC0007E00001F80003F00003F00001F80007E00000FC000FC00000 +3E001F0000001FC0FE00000007FFF8000000007F8000002A2E7DAC31>I<01FC03FC0000 +FFFC0FFF8000FFFC3C07E000FFFC7001F80007FDE000FE0001FD80007F0001FF80003F80 +01FF00001FC001FE00001FE001FC00000FE001FC00000FF001FC000007F001FC000007F8 +01FC000003F801FC000003FC01FC000003FC01FC000003FC01FC000001FE01FC000001FE +01FC000001FE01FC000001FE01FC000001FE01FC000001FE01FC000001FE01FC000001FE +01FC000001FE01FC000001FE01FC000001FE01FC000003FC01FC000003FC01FC000003FC +01FC000007F801FC000007F801FC000007F001FC00000FF001FE00000FE001FE00001FC0 +01FF00003FC001FF00003F8001FF80007E0001FDC000FC0001FCF003F80001FC3C0FE000 +01FC1FFF800001FC03FC000001FC0000000001FC0000000001FC0000000001FC00000000 +01FC0000000001FC0000000001FC0000000001FC0000000001FC0000000001FC00000000 +01FC0000000001FC0000000001FC0000000001FC0000000003FE00000000FFFFF8000000 +FFFFF8000000FFFFF80000002F3F7DAB36>I<00007F8003000003FFE00700000FE07807 +00003F801C0F00007E000E0F0000FC00071F0003F800039F0007F80001BF0007F00001FF +000FE00000FF001FE00000FF001FC00000FF003FC000007F003FC000007F007F8000007F +007F8000007F007F8000007F00FF0000007F00FF0000007F00FF0000007F00FF0000007F +00FF0000007F00FF0000007F00FF0000007F00FF0000007F00FF0000007F00FF0000007F +00FF0000007F007F8000007F007F8000007F007F8000007F003F8000007F003FC000007F +001FC000007F001FE00000FF000FE00000FF000FF00001FF0007F00001FF0003F80003FF +0001FC00077F0000FE000E7F00003F001C7F00000FC0F87F000003FFE07F0000007F007F +00000000007F00000000007F00000000007F00000000007F00000000007F00000000007F +00000000007F00000000007F00000000007F00000000007F00000000007F00000000007F +00000000007F00000000007F0000000000FF800000003FFFFE0000003FFFFE0000003FFF +FE2F3F7DAB33>I<03F803F0FFF81FFCFFF83C3EFFF8707F07F8E0FF03F9C0FF01F980FF +01FB80FF01FB007E01FB003C01FF000001FE000001FE000001FE000001FE000001FC0000 +01FC000001FC000001FC000001FC000001FC000001FC000001FC000001FC000001FC0000 +01FC000001FC000001FC000001FC000001FC000001FC000001FC000001FC000001FC0000 +01FC000001FC000001FC000001FC000001FC000001FC000003FF0000FFFFFE00FFFFFE00 +FFFFFE00202C7DAB26>I<003FE01801FFFC3807E01F780F0003F81E0001F83C0000F87C +00007878000078F8000038F8000038F8000018F8000018FC000018FC000018FE000018FF +8000007FC000007FFC00003FFFE0001FFFFC000FFFFF0007FFFFC003FFFFE000FFFFF000 +1FFFF80000FFF800000FFC000003FCC00001FEC00000FEC000007EE000007EE000003EE0 +00003EF000003EF000003EF000003EF800003CFC00007CFC000078FE0000F8FF0001F0F3 +8003E0F1F00F80E07FFE00C00FF0001F2E7DAC26>I<0006000000060000000600000006 +000000060000000E0000000E0000000E0000000E0000001E0000001E0000001E0000003E +0000007E0000007E000000FE000001FE000007FE00001FFFFFF0FFFFFFF0FFFFFFF000FE +000000FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE +000000FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE +000000FE000000FE000000FE000000FE000C00FE000C00FE000C00FE000C00FE000C00FE +000C00FE000C00FE000C00FE000C00FE000C007E001C007F0018007F0018003F0038001F +8030001FC0700007E0E00001FFC000007F001E3E7EBC26>I<01FC00007F00FFFC003FFF +00FFFC003FFF00FFFC003FFF0007FC0001FF0003FC0000FF0001FC00007F0001FC00007F +0001FC00007F0001FC00007F0001FC00007F0001FC00007F0001FC00007F0001FC00007F +0001FC00007F0001FC00007F0001FC00007F0001FC00007F0001FC00007F0001FC00007F +0001FC00007F0001FC00007F0001FC00007F0001FC00007F0001FC00007F0001FC00007F +0001FC00007F0001FC00007F0001FC00007F0001FC00007F0001FC00007F0001FC00007F +0001FC0000FF0001FC0000FF0001FC0000FF0001FC0001FF0001FC0001FF0000FC0001FF +0000FE0003FF00007E00077F80007F000E7FC0003F001C7FFE000FC0787FFE0003FFF07F +FE00007F807F002F2D7DAB36>I<FFFFF001FFFCFFFFF001FFFCFFFFF001FFFC07FF0000 +7FE003FE00001F8001FE00001F0001FE00000E0000FE00000E0000FE00000C00007F0000 +1800007F00001800007F80001800003F80003000003F80003000003FC0007000001FC000 +6000001FE0006000000FE000C000000FE000C000000FF001C0000007F00180000007F001 +80000003F80300000003F80300000003FC0700000001FC0600000001FC0600000000FE0C +00000000FE0C00000000FF0C000000007F18000000007F18000000007FB8000000003FB0 +000000003FF0000000001FE0000000001FE0000000001FE0000000000FC0000000000FC0 +00000000078000000000078000000000078000000000030000002E2C7EAA33>I<3FFFFF +FFE03FFFFFFFE03FC0003FE03F00003FC03C00007F80380000FF00380000FF00300001FE +00700003FC00700003FC00700007F80060000FF00060000FF00060001FE00060003FC000 +60003FC00000007F80000000FF00000001FF00000001FE00000003FC00000007FC000000 +07F80000000FF00000001FF00000001FE00060003FC00060007F800060007F80006000FF +0000C001FE0000C001FE0000C003FC0000C007F80000C007F80001C00FF00001C01FE000 +03C01FE00003C03FC00007807F80001F80FF8000FF80FFFFFFFF80FFFFFFFF80232B7DAA +2B>122 D E /Fm 75[33 29[50 27[39 44 44 66 44 50 28 39 +39 1[50 50 50 72 28 44 1[28 50 50 28 44 50 44 50 50 7[55 +1[83 61 72 55 50 61 1[61 72 66 83 55 1[44 33 72 72 61 +61 72 66 61 61 6[33 50 1[50 1[50 50 50 5[33 25 4[33 8[33 +27[50 2[{ TeXBase1Encoding ReEncodeFont }59 100.000000 +/Times-Italic rf /Fn 8 57 df<000C00003C00007C0003FC00FFFC00FC7C00007C00 +007C00007C00007C00007C00007C00007C00007C00007C00007C00007C00007C00007C00 +007C00007C00007C00007C00007C00007C00007C00007C00007C00007C00007C00007C00 +007C00007C00007C00007C00007C00007C00007C00007C00007C00007C0000FE007FFFFE +7FFFFE172C7AAB23>49 D<007F800001FFF0000780FC000E003F001C001F8038000FC070 +000FC0600007E0F00007E0FC0007F0FE0007F0FE0003F0FE0003F0FE0003F07C0007F000 +0007F0000007F0000007E000000FE000000FC000001FC000001F8000003F0000007E0000 +007C000000F8000001F0000003E0000007C000000F8000001E0000003C00000078000000 +F0003000E0003001C0003003800060070000600E0000E01FFFFFE03FFFFFE07FFFFFC0FF +FFFFC0FFFFFFC01C2C7DAB23>I<003FC00001FFF00007C0FC000E007E001C003F001C00 +1F803F001FC03F001FC03F800FC03F000FC03F000FC00C001FC000001FC000001F800000 +1F8000003F0000003E0000007C000000F8000003F00000FFC00000FFF0000000FC000000 +3F0000001F8000001FC000000FC000000FE000000FE0000007F0000007F0380007F07C00 +07F0FE0007F0FE0007F0FE0007F0FE000FE0F8000FE060000FC070001FC038001F801E00 +3F000780FC0001FFF000007FC0001C2D7DAB23>I<00000E0000000E0000001E0000003E +0000003E0000007E000000FE000000FE000001BE000003BE0000033E0000063E00000E3E +00000C3E0000183E0000383E0000303E0000603E0000E03E0000C03E0001803E0003803E +0003003E0006003E000E003E000C003E0018003E0038003E0030003E0060003E00E0003E +00FFFFFFFCFFFFFFFC00003E0000003E0000003E0000003E0000003E0000003E0000003E +0000003E0000003E0000007F00001FFFFC001FFFFC1E2D7EAC23>I<0C0001800FC01F80 +0FFFFF000FFFFE000FFFFC000FFFF0000FFFC0000C7E00000C0000000C0000000C000000 +0C0000000C0000000C0000000C0000000C0000000C1FC0000C7FF8000DE07C000F801F00 +0F001F800E000F800C0007C0000007E0000007E0000003E0000003F0000003F0000003F0 +000003F0780003F0FC0003F0FC0003F0FC0003F0FC0003F0F80007E0E00007E0600007C0 +70000FC038000F801C001F000E003E000780F80001FFE000007F80001C2D7DAB23>I<00 +03F800000FFE00003E078000F8018001F007C003E00FC007C00FC00F800FC00F800FC01F +0007801F0000003E0000003E0000007E0000007E0000007C0000007C0FC000FC3FF000FC +F07C00FDC01E00FF800F00FF000F80FF0007C0FE0007E0FE0007E0FE0003E0FC0003F0FC +0003F0FC0003F0FC0003F07C0003F07C0003F07C0003F07E0003F07E0003F03E0003E03E +0007E01E0007E01F0007C00F000F8007801F0003C03E0001E07C00007FF000001FC0001C +2D7DAB23>I<300000003C0000003FFFFFF83FFFFFF83FFFFFF07FFFFFF07FFFFFE07000 +01C06000018060000380C0000700C0000E00C0000C0000001C0000003800000030000000 +70000000E0000001C0000001C00000038000000380000007000000070000000F0000000E +0000001E0000001E0000003E0000003E0000003E0000003C0000007C0000007C0000007C +0000007C000000FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC +000000FC0000007800001D2E7CAC23>I<001FC00000FFF00003E07C0007801E000F000F +001E0007801E0007803C0003C03C0003C03C0003C03C0003C03E0003C03E0007C03F0007 +801FC00F801FE00F001FF81E000FFC3C0007FFF80003FFE00000FFE000003FF80000FFFC +0003C7FF000783FF801F00FFC01E003FC03C001FE07C0007E0780003F0F80003F0F00001 +F0F00000F0F00000F0F00000F0F00000F0F80000E0780001E07C0001C03C0003C01E0007 +800F800F0007E03C0001FFF000003FC0001C2D7DAB23>I E /Fo +135[72 104 72 80 48 56 64 1[80 72 80 120 40 80 1[40 80 +72 48 64 80 64 1[72 9[143 2[96 80 104 1[88 2[135 3[56 +112 112 1[96 104 104 96 104 10[72 72 72 72 72 72 9[48 +39[{ TeXBase1Encoding ReEncodeFont }42 144.000000 /Times-Bold +rf /Fp 5 102 df<007800FE01FE01FE01FE03FE03FC03FC03FC07F807F807F807F007F0 +0FE00FE00FE00FC01FC01F801F801F803F003F003F003E007E007C007C007C00F800F800 +F800F0000F227EA413>48 D<600000E00000E00000E00000E00000E00000E00000E00000 +E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000 +E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000 +E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000 +E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000 +E00000E00000E00000E00000E00000E00000E00000E00000FFFF80FFFF807FFF80114374 +B11F>98 D<00018000038000038000038000038000038000038000038000038000038000 +038000038000038000038000038000038000038000038000038000038000038000038000 +038000038000038000038000038000038000038000038000038000038000038000038000 +038000038000038000038000038000038000038000038000038000038000038000038000 +038000038000038000038000038000038000038000038000038000038000038000038000 +0380000380000380000380000380000380FFFF80FFFF80FFFF8011437FB11F>I<7FFF80 +FFFF80FFFF80E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000 +E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000 +E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000 +E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000 +E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000 +E00000E00000E00000E00000E00000600000114374B11F>I<FFFF80FFFF80FFFF800003 +800003800003800003800003800003800003800003800003800003800003800003800003 +800003800003800003800003800003800003800003800003800003800003800003800003 +800003800003800003800003800003800003800003800003800003800003800003800003 +800003800003800003800003800003800003800003800003800003800003800003800003 +800003800003800003800003800003800003800003800003800003800003800003800003 +8000038000038000018011437FB11F>I E /Fq 12 119 df<000003FC00000000001FFF +0000000000FE07C000000003F001F000000007E000F80000001FC000FC000E003F80007C +000E007F00003E000C00FE00003F000C01FC00003F001C03F800001F001807F800001F80 +1807F000001F80380FF000001F80301FE000001F80701FE000001FC0603FC000001FC060 +3FC000001FC0E03FC000000FC0C07F8000000FC1C07F8000000FC1807F8000000FC380FF +8000000FC700FF0000000FC600FF0000000FCE00FF0000000FDC00FF0000001FD800FE00 +00001FF800FE0000001FF000FE0000001FE000FE0000001FC000FE0000001FC000FE0000 +001FC000FE0000001FC000FE0000001FC0007E0000003FC0007E0000007FC0003F000000 +EFC0383F000003CFC0381F80000F07C0300FC0001C07C07007E000F803E0E001F00FE001 +E1C0007FFF0000FF80001FF000003E00372D7CAB3E>11 D<0000000003F800000000001F +FF00000000007C0F8000000001E003E0000000078001F00000000E0001F00000001C0000 +F8000000380000F8000000700000FC000000E00000FC000001C00000FC000001800000FC +000003800000FC000007000000FC000006000000FC00000E000001FC00000C000001FC00 +001C000001F8000018000001F8000038000003F0000030000003F0000070000007E00000 +60000007E000006000000FC00000E000000F800000C000001F000000C000003E000001C0 +07FE7C000001801FFFF8000001801807E0000001801FFFF80000038007FCFC0000030000 +007E0000030000007E0000030000003F0000070000003F0000060000003F800006000000 +1F8000060000001FC0000E0000001FC0000C0000001FC0000C0000001FC0000C0000003F +C0001C0000003FC000180000003FC000180000003FC000180000003FC000380000007FC0 +00300000007F8000300000007F8000300000007F800070000000FF800070000000FF0000 +70000000FF000070000001FE0000F0000001FE0000F0000001FC0000F0000003FC0000F0 +000003F80001F0000007F80001B8000007F000019800000FE000019800001FC000039C00 +003F8000030E00007F000003060000FE000003078001F800000701C003F000000600F01F +C0000006003FFF00000006000FF00000000E0000000000000C0000000000000C00000000 +00000C0000000000001C0000000000001800000000000018000000000000180000000000 +003800000000000030000000000000300000000000003000000000000070000000000000 +600000000000006000000000000060000000000000E0000000000000E000000000000036 +597DC537>I<1E007F807F80FFC0FFC0FFC0FFC07F807F801E000A0A78891B>58 +D<00000000000001C000000000000007E00000000000001FE00000000000007FC0000000 +000001FF00000000000007FC0000000000001FF00000000000007FC0000000000001FF00 +00000000000FFC0000000000003FF0000000000000FFC0000000000003FF000000000000 +0FF80000000000003FE0000000000000FF80000000000003FE0000000000001FF8000000 +0000007FE0000000000001FF80000000000007FE0000000000001FF00000000000007FC0 +000000000001FF00000000000007FC0000000000001FF00000000000007FC00000000000 +00FF00000000000000FF000000000000007FC00000000000001FF000000000000007FC00 +000000000001FF000000000000007FC00000000000001FF000000000000007FE00000000 +000001FF800000000000007FE00000000000001FF800000000000003FE00000000000000 +FF800000000000003FE00000000000000FF800000000000003FF00000000000000FFC000 +00000000003FF00000000000000FFC00000000000001FF000000000000007FC000000000 +00001FF000000000000007FC00000000000001FF000000000000007FC00000000000001F +E000000000000007E000000000000001C03B3878B44C>60 D<0000000018000000003C00 +0000007C000000007C000000007800000000F800000000F800000000F000000001F00000 +0001F000000001E000000003E000000003E000000003C000000007C000000007C0000000 +07800000000F800000000F800000001F000000001F000000001E000000003E000000003E +000000003C000000007C000000007C000000007800000000F800000000F800000000F000 +000001F000000001F000000003E000000003E000000003C000000007C000000007C00000 +0007800000000F800000000F800000000F000000001F000000001F000000001E00000000 +3E000000003E000000003C000000007C000000007C00000000F800000000F800000000F0 +00000001F000000001F000000001E000000003E000000003E000000003C000000007C000 +000007C000000007800000000F800000000F800000000F000000001F000000001F000000 +003E000000003E000000003C000000007C000000007C000000007800000000F800000000 +F800000000F000000001F000000001F000000001E000000003E000000003E000000007C0 +00000007C000000007800000000F800000000F800000000F000000001F000000001F0000 +00001E000000003E000000003E000000003C000000007C000000007C0000000078000000 +00F800000000F800000000F000000000600000000026647BCA31>I<7000000000000000 +FC00000000000000FF000000000000007FC00000000000001FF000000000000007FC0000 +0000000001FF000000000000007FC00000000000001FF000000000000007FE0000000000 +0001FF800000000000007FE00000000000001FF800000000000003FE00000000000000FF +800000000000003FE00000000000000FF800000000000003FF00000000000000FFC00000 +000000003FF00000000000000FFC00000000000001FF000000000000007FC00000000000 +001FF000000000000007FC00000000000001FF000000000000007FC00000000000001FE0 +0000000000001FE00000000000007FC0000000000001FF00000000000007FC0000000000 +001FF00000000000007FC0000000000001FF0000000000000FFC0000000000003FF00000 +00000000FFC0000000000003FF0000000000000FF80000000000003FE0000000000000FF +80000000000003FE0000000000001FF80000000000007FE0000000000001FF8000000000 +0007FE0000000000001FF00000000000007FC0000000000001FF00000000000007FC0000 +000000001FF00000000000007FC0000000000000FF00000000000000FC00000000000000 +70000000000000003B3878B44C>I<000FE0000007FFE0000007FFE0000007FFE0000000 +1FC00000000FC00000001FC00000001FC00000001F800000001F800000001F800000003F +800000003F000000003F000000003F000000007F000000007E000000007E000000007E00 +000000FE00000000FC00000000FC00000000FC00000001FC00000001F800000001F80FC0 +0001F83FF00003F8F07C0003F3C03E0003F7001F0003FE001F8007FC000F8007F8000FC0 +07F0000FC007F0000FE00FE0000FE00FC0000FE00FC0000FE00FC0000FE01FC0000FE01F +80000FE01F80000FE01F80001FE03F80001FE03F00001FE03F00001FE03F00003FE07F00 +003FC07E00003FC07E00003FC07E00007FC07E00007F80FC00007F80FC00007F00FC0000 +FF00FC0000FF00FC0001FE007C0001FC007C0001FC007C0003F8007C0007F0007C0007E0 +003C000FE0003E001FC0001E003F80001F007E00000F00FC000007C1F0000001FFC00000 +007F00000023467CC429>98 D<0000000001FC00000000FFFC00000000FFFC00000000FF +FC0000000003F80000000001F80000000003F80000000003F80000000003F00000000003 +F00000000007F00000000007F00000000007E00000000007E0000000000FE0000000000F +E0000000000FC0000000000FC0000000001FC0000000001FC0000000001F80000000001F +80000000003F80000000003F80000000003F0000000FC03F0000007FF07F000001F8387F +000007E01C7E00000FC00E7E00003F0007FE00007F0003FE0000FE0003FC0001FC0003FC +0001F80001FC0003F80001FC0007F00001F8000FF00001F8000FE00003F8001FE00003F8 +001FE00003F0003FC00003F0003FC00007F0007FC00007F0007F800007E0007F800007E0 +007F80000FE000FF80000FE000FF00000FC000FF00000FC000FF00001FC000FF00001FC0 +00FE00001F8000FE00001F8000FE00003F8030FE00003F8070FE00003F0060FE00003F00 +60FE00007F00E0FE00007F00C0FE0000FE00C07E0001FE00C07E0003FE01C03E00073E01 +803F000E3E03801F001C3E03000F80381F070007C0F00F0E0001FFC007FC00007F0001F0 +002E467CC433>100 D<0000007E0000000003FF800000000FC1E0E000001F0073F00000 +7E0033F00000FC003FF00001F8001FF00003F8001FE00007F0000FE0000FE0000FE0000F +E0000FE0001FC0000FC0003FC0000FC0003F80001FC0007F80001FC0007F00001F8000FF +00001F8000FF00003F8001FF00003F8001FE00003F0001FE00003F0001FE00007F0003FE +00007F0003FC00007E0003FC00007E0003FC0000FE0003FC0000FE0003F80000FC0003F8 +0000FC0003F80001FC0003F80001FC0003F80001F80003F80001F80003F80003F80003F8 +0007F80001F80007F00001F8000FF00000F8001FF00000FC003FF000007C0077E000003E +01E7E000001F078FE0000007FE0FE0000001F80FC0000000000FC0000000001FC0000000 +001FC0000000001F80000000001F80000000003F80000000003F80000000003F00000000 +003F00001C00007E00007F0000FE0000FF0000FC0000FF0001F80000FF0003F80000FE00 +07F00000FE000FC00000F8001F8000007C00FE0000001FFFF800000003FFC00000002C40 +7EAB2F>103 D<0000FE000000007FFE000000007FFE000000007FFE0000000001FC0000 +000000FC0000000001FC0000000001FC0000000001F80000000001F80000000003F80000 +000003F80000000003F00000000003F00000000007F00000000007F00000000007E00000 +000007E0000000000FE0000000000FE0000000000FC0000000000FC0000000001FC00000 +00001FC0000000001F80000000001F80003F00003F8000FFC0003F8003C0E0003F000703 +E0003F001E0FE0007F00380FE0007F00701FE0007E00E01FE0007E01C01FE000FE01801F +C000FE0380070000FC0700000000FC0E00000001FC1C00000001FC3800000001F8700000 +0001F8E000000003FBC000000003FF0000000003FF8000000003FFF800000007F1FE0000 +0007F03F80000007E00FE0000007E007F000000FE003F000000FE003F800000FC001F800 +000FC001F800001FC001F801C01FC001F801801F8001F801801F8001F801803F8001F803 +803F8001F803003F0001F003003F0001F007007F0001F006007F0001F00E007E0001F00C +007E0001F01C00FE0000F03800FE0000787000FC00003FE0003800000F80002B467BC433 +>107 D<00F80003FC000003FE001FFF0000071F007C0FC0000E0F80E007E0000C07C3C0 +03E0001C07C70003F0001807CE0001F0003807DC0001F8003007D80001F800300FF80001 +F800700FF00001F800600FE00001F800600FE00001F800E00FC00003F800C01FC00003F0 +00C01F800003F000001F800003F000001F800007F000003F800007E000003F000007E000 +003F000007E000003F00000FE000007F00000FC000007E00000FC000007E00001FC00000 +7E00001F800000FE00001F800000FC00003F800000FC00003F000000FC00003F007001FC +00007F006001F800007E006001F80000FE006001F80000FC00E003F80000FC00C003F000 +00FC01C003F00000F8018003F00000F8038007F00000F8030007E00000F8070007E00000 +F80E0007E00000781C000FE000007C38000FC000001FF0000380000007C000342D7DAB3A +>110 D<003E00000E0000FF80003F8003C3C0007F800703E0007F800601F0007F800E01 +F0007F801C01F0007F801803F0003F803803F0001F803003F0000F803003F0000F807007 +F00007806007E00007806007E0000780E00FE0000700C00FC0000300001FC0000300001F +80000700001F80000600003F80000600003F00000600003F00000E00007F00000C00007E +00000C00007E00000C00007E00001C0000FE0000180000FC0000180000FC0000380000FC +0000300000FC0000700001F80000600001F80000E00001F80000C00001F80001C00000F8 +0001800000F80003800000FC0007000000FC00060000007C000E0000007E001C0000003F +00780000000F81E000000007FFC000000000FE000000292D7DAB2F>118 +D E /Fr 134[45 45 66 45 45 25 35 30 45 45 45 45 71 25 +45 1[25 45 45 30 40 45 40 45 40 12[56 3[51 66 1[81 3[30 +66 3[66 2[66 18[23 30 23 41[51 2[{ TeXBase1Encoding ReEncodeFont }36 +91.249977 /Times-Roman rf /Fs 139[30 35 40 14[40 51 45 +31[66 65[{ TeXBase1Encoding ReEncodeFont }7 91.249977 +/Times-Bold rf /Ft 134[50 3[55 33 39 44 2[50 55 83 28 +55 1[28 55 50 33 44 55 44 55 50 12[66 55 72 1[61 2[94 +66 1[50 1[78 5[66 7[33 58[{ TeXBase1Encoding ReEncodeFont }29 +100.000000 /Times-Bold rf /Fu 75[33 11[33 17[50 1[44 +44 24[44 50 50 72 50 50 28 39 33 50 50 50 50 78 28 50 +28 28 50 50 33 44 50 44 50 44 3[33 1[33 61 72 1[94 72 +72 61 55 66 1[55 72 72 89 61 72 39 33 72 72 55 61 72 +66 66 72 1[44 1[56 1[28 28 50 50 50 50 50 50 50 50 50 +50 28 25 33 25 1[50 33 33 33 1[83 33[55 55 2[{ + TeXBase1Encoding ReEncodeFont }82 100.000000 /Times-Roman +rf /Fv 134[60 2[60 60 33 47 40 1[60 60 60 93 33 60 1[33 +60 60 40 53 60 53 60 53 11[86 73 66 5[106 2[47 1[86 86 +66 73 86 80 80 86 7[60 2[60 3[60 60 2[30 1[30 44[{ + TeXBase1Encoding ReEncodeFont }40 119.999947 /Times-Roman +rf /Fw 134[86 3[86 1[67 57 2[86 86 134 48 3[86 2[76 1[76 +1[76 12[105 96 2[96 6[57 124 124 2[124 2[124 6[48 12[57 +45[{ TeXBase1Encoding ReEncodeFont }22 172.833374 /Times-Roman +rf end +%%EndProlog +%%BeginSetup +%%Feature: *Resolution 600dpi +TeXDict begin +%%PaperSize: Letter + +%%EndSetup +%%Page: 1 1 +1 0 bop 195 506 a Fw(APHID:)44 b(Asynchronous)g(P)m(arallel)h(Game-T)-6 +b(ree)46 b(Search)863 805 y Fv(Mark)29 b(G.)h(Brockington)f(and)h +(Jonathan)e(Schaef)m(fer)1118 955 y(Department)j(of)e(Computing)g +(Science)1441 1104 y(Uni)m(v)n(ersity)h(of)f(Alberta)1249 +1254 y(Edmonton,)g(Alberta)i(T6G)f(2H1)1771 1403 y(Canada)1510 +1637 y(February)g(12,)f(1999)1925 5589 y Fu(1)p eop +%%Page: 2 2 +2 1 bop 146 100 a Ft(Running)26 b(Head:)31 b Fu(APHID:)25 +b(Asynchronous)f(P)o(arallel)g(Game-T)m(ree)h(Search)146 +199 y Ft(Send)i(Pr)n(oofs)d(T)-9 b(o:)146 299 y Fu(Jonathan)24 +b(Schaef)n(fer)146 399 y(615)h(General)g(Services)g(Building)146 +498 y(Department)g(of)f(Computing)g(Science)146 598 y(Uni)n(v)o(ersity) +f(Of)i(Alberta)146 697 y(Edmonton,)e(AB)j(T6G)e(2H1)146 +797 y(Canada)146 897 y(\(403\))h(492-3851)1781 1117 y +Fs(Abstract)380 1293 y Fr(Most)30 b(parallel)i(game-tree)f(search)g +(approaches)i(use)d(synchronous)k(methods,)e(where)e(the)h(w)o(ork)e +(is)244 1406 y(concentrated)j(within)d(a)f(speci\002c)h(part)h(of)e +(the)h(tree,)h(or)e(at)g(a)g(gi)n(v)o(en)h(search)h(depth.)45 +b(This)28 b(article)i(sho)n(ws)244 1519 y(that)19 b(asynchronous)k +(game-tree)d(search)g(algorithms)h(can)e(be)g(as)g(ef)n(\002cient)h(as) +e(or)h(better)h(than)g(synchronous)244 1632 y(methods)25 +b(in)e(determining)j(the)e(minimax)g(v)n(alue.)380 1745 +y(APHID,)f(a)h(ne)n(w)g(asynchronous)29 b(parallel)e(game-tree)f +(search)g(algorithm,)g(is)f(presented.)35 b(APHID)22 +b(is)244 1857 y(implemented)j(as)e(a)g(freely-a)n(v)n(ailable)28 +b(portable)e(library)-6 b(,)24 b(making)g(the)g(algorithm)h(easy)f(to)f +(inte)o(grate)j(into)244 1970 y(a)i(sequential)k(game-tree)e(searching) +h(program.)45 b(APHID)27 b(has)i(been)g(added)h(to)f(four)g(programs)i +(written)244 2083 y(by)d(dif)n(ferent)h(authors.)43 b(APHID)26 +b(yields)j(better)g(speedups)h(than)f(synchronous)i(search)e(methods)g +(for)f(an)244 2196 y(Othello)c(and)g(a)f(check)o(ers)j(program,)f(and)f +(comparable)h(speedups)h(on)e(tw)o(o)f(chess)i(programs.)146 +2495 y Fu(K)n(e)o(yw)o(ords:)k(parallel)c(search,)g(alpha-beta,)g +(computer)f(games,)g(heuristic)g(search.)p eop +%%Page: 3 3 +3 2 bop 146 100 a Ft(List)25 b(of)g(Symbols:)146 299 +y Fq(\013)q(\014)6 b Fu(:)30 b(alpha,)25 b(beta)146 498 +y Fq(d)p Fu(:)31 b(dee)146 697 y Fq(d)197 661 y Fp(0)220 +697 y Fu(:)g(dee)25 b(prime)p eop +%%Page: 1 4 +1 3 bop 0 100 a Fo(1)143 b(Intr)m(oduction)0 402 y Fu(Making)21 +b(computers)g(play)g(games)g(in)g(a)h(skillful)e(manner)l(,)i +(comparable)g(to)f(that)h(of)f(a)h(strong)f(human)g(player)l(,)i(is)0 +601 y(a)e(challenging)g(problem)f(that)h(has)g(attracted)g(the)g +(attention)f(of)h(man)o(y)f(computer)h(scientists)e(o)o(v)o(er)h(the)h +(last)g(\002fty)0 800 y(years.)30 b(T)-8 b(w)o(o-player)22 +b(zero-sum)g(games)f(with)g(perfect)i(information,)e(such)h(as)g +(chess,)g(Othello)3301 764 y Fn(1)3362 800 y Fu(and)g(check)o(ers,)0 +1000 y(are)32 b(programmed)f(using)g(the)g(same)h(basic)g(techniques.) +50 b(The)32 b Fq(\013)q(\014)37 b Fu(algorithm)30 b([9])i(is)f(used)h +(to)f(e)o(xhausti)n(v)o(ely)0 1199 y(search)c(v)n(ariations)d(that)i +(are)g Fq(d)g Fu(mo)o(v)o(es)e(deep)i(in)g(a)g(depth-\002rst)g(manner)g +(to)g(determine)f(the)h(best)f(mo)o(v)o(e)g(and)h(its)0 +1398 y(v)n(alue.)k(A)25 b(lar)n(ge)g(hash)g(table,)g(called)f(the)h +Fm(tr)o(ansposition)c(table)k Fu([5],)g(is)f(used)h(to)f(store)h(pre)n +(viously)e(determined)0 1598 y(best)31 b(mo)o(v)o(es)e(and)i(v)n(alues) +g(for)g(positions.)48 b(The)31 b(v)n(alues)f(from)h(this)f(table)h(are) +h(re-used)f(during)g(the)g(search)g(to)0 1797 y(pre)n(v)o(ent)24 +b(the)g(same)h(position)e(from)i(being)f(e)o(xplored)g(twice.)146 +1996 y(Instead)31 b(of)h(immediately)d(searching)i(a)h(v)n(ariation)e +Fq(d)h Fu(mo)o(v)o(es)e(deep)j(\(or)f Fq(d)g Fm(ply)p +Fu(\),)i(most)d(programs)h(search)0 2195 y(to)c(1)g(ply)-6 +b(,)27 b(then)f(to)h(2)g(ply)-6 b(,)27 b Fm(et)g(ceter)o(a)p +Fu(.)38 b(This)26 b(technique)h(is)g(kno)n(wn)f(as)h +Fm(iter)o(ative)f(deepening)h Fu([16)o(],)h(and)g(is)e(used)0 +2395 y(to)i(acquire)g(mo)o(v)o(e-ordering)f(information)f(in)i(the)g +(transposition)e(table.)41 b(The)28 b(best)g(mo)o(v)o(e)e(for)j(a)f +Fl(\()p Fq(d)d Fk(\000)g Fl(1\))p Fu(-ply)0 2594 y(search)30 +b(is)f(lik)o(ely)f(to)h(be)g(the)g(best)g(mo)o(v)o(e)f(for)h(a)h +Fq(d)p Fu(-ply)e(search,)j(and)e(the)g Fq(\013)q(\014)35 +b Fu(algorithm)28 b(will)g(b)n(uild)g(a)i(smaller)0 2793 +y(search)25 b(tree)h(\(by)e(eliminating,)f(or)i(cutting-of)n(f,)e +(irrele)n(v)n(ant)h(subtrees\))h(if)f(the)h(best)f(mo)o(v)o(e)g(is)g +(searched)h(\002rst.)146 2992 y(A)f(game-playing)f(program)g(that)h +(can)g(out-search)g(its)f(opponent)g(has)g(a)i(high)e(probability)f(of) +i(winning.)29 b(It)0 3192 y(has)23 b(been)g(sho)n(wn)f(that)h(there)g +(is)g(a)g(strong)f(correlation)h(between)g(the)g(search)h(depth)e(and)h +(the)g(relati)n(v)o(e)f(strength)0 3391 y(of)j(chess,)f(Othello)g(and)h +(check)o(ers)g(programs)f([8].)31 b(Thus,)24 b(programs)g(are)h(de)n(v) +o(eloped)e(to)i(search)g(as)g(deeply)f(as)0 3590 y(possible)f(while)i +(staying)e(within)h(the)h(time)f(constraints)f(imposed)h(by)g(the)h +(rules)g(of)f(the)h(game.)146 3789 y(When)c(using)f(parallelism)f(to)h +(search)i(game)e(trees)h(deeper)l(,)h(almost)d(all)i(of)f(the)h +(research)g(has)g(concentrated)0 3989 y(on)32 b(synchronous)e(parallel) +i(search)g(algorithms.)50 b(These)32 b(algorithms)e(force)j(w)o(ork)f +(on)f(one)h(part)g(of)g(the)g(tree)0 4188 y(to)c(be)g(completed)g +(before)g(w)o(ork)h(on)f(the)g(rest)g(of)g(the)g(tree)h(can)g(be)f +(carried)h(out.)40 b(There)29 b(are)g(global)e(synchro-)0 +4387 y(nization)j(points)g(during)g(the)h(search)h(that)e(all)h +(processors)g(must)f(reach)i(before)f(an)o(y)g(process)g(is)f(allo)n +(wed)g(to)0 4586 y(proceed.)j(In)25 b(some)g(synchronous)f(algorithms,) +g(the)h(w)o(ork)g(is)g(synchronized)g(at)g(e)n(v)o(ery)g(choice)h +(along)e(the)i(hy-)0 4786 y(pothesized)i(best-mo)o(v)o(e)e(sequence,)k +(commonly)c(kno)n(wn)h(as)i(the)f(principal)g(v)n(ariation.)40 +b(In)29 b(all)f(synchronized)0 4985 y(algorithms,)23 +b(the)i(w)o(ork)f(is)h(synchronized)f(at)h(the)g(root)f(of)h(the)g +(tree)g(between)g(steps)f(of)h(iterati)n(v)o(e)f(deepening;)g(a)p +0 5074 1560 4 v 112 5136 a Fj(1)149 5166 y Fi(Othello)c(is)h(a)g(re)o +(gistered)e(trademark)f(of)i(Tsukuda)f(Original,)g(licensed)h(by)g +(Anjar)f(Co.)1925 5589 y Fu(1)p eop +%%Page: 2 5 +2 4 bop 0 100 a Fu(complete)24 b Fq(d)p Fu(-ply)g(search)i(must)d(be)i +(\002nished)g(before)g(the)g Fl(\()p Fq(d)c Fl(+)h(1\))p +Fu(-ply)j(search)g(can)g(be)o(gin.)146 299 y(The)33 b(adv)n(antage)f +(of)h(the)f(synchronous)f(approaches)i(is)f(that)g(the)o(y)g(can)h(use) +f(the)h(v)n(alue)f(of)g(the)h(principal)0 498 y(v)n(ariation)19 +b(in)h(the)h(same)f(w)o(ay)g(as)h(the)f(sequential)g(search)h +(algorithm)e(does.)29 b(Synchronous)19 b(parallel)i(algorithms)0 +697 y(are)32 b(successful)e(at)h(k)o(eeping)f(the)h(size)f(of)h(the)g +(search)g(tree)h(b)n(uilt)d(close)i(to)f(the)h(sequential)f(search)h +(tree)g(size,)0 897 y(assuming)d(that)h(processors)g(are)i(able)e(to)g +(share)h(transposition)e(table)h(information)f(in)h(an)h(ef)n +(\002cient)g(manner)-5 b(.)0 1096 y(Ho)n(we)n(v)o(er)l(,)23 +b(there)j(are)f(fundamental)f(problems)g(with)g(synchronous)f(parallel) +i Fq(\013)q(\014)30 b Fu(search)c(algorithms:)120 1347 +y(1.)49 b(There)28 b(are)g(man)o(y)e(times)h(when)g(there)h(is)f(insuf) +n(\002cient)f(parallelism)g(to)h(k)o(eep)h(all)f(the)g(processors)g(b)n +(usy)-6 b(.)244 1546 y(If)29 b(there)f(are)i(more)e(processors)g(than)g +(w)o(ork)g(granules)h(at)f(a)h(synchronization)e(point,)h(then)g(some)g +(pro-)244 1746 y(cessors)23 b(must)g(go)g(idle.)30 b(This)23 +b(idle)g(time)g(increases)h(in)f(magnitude)f(\(and)i(signi\002cance\))g +(as)f(the)h(number)244 1945 y(of)35 b(processors)f(increases.)61 +b(This)35 b(problem)f(is)g(e)o(xacerbated)h(in)g(games)f(that)g(ha)n(v) +o(e)h(a)g(small)f(a)n(v)o(erage)244 2144 y(number)24 +b(of)h(mo)o(v)o(e)e(choices.)120 2412 y(2.)49 b(The)o(y)33 +b(require)i(an)f(ef)n(\002cient)h(implementation)c(of)k(a)f(shared)h +(transposition)d(table)i(between)g(the)g(pro-)244 2612 +y(cesses)24 b(to)f(achie)n(v)o(e)g(high)f(performance.)31 +b(T)-8 b(ypically)i(,)22 b(the)i(algorithms)e(will)g(e)o(xhibit)g(poor) +i(performance)244 2811 y(without)19 b(such)i(a)g(table,)g(since)g(each) +h(processor')-5 b(s)20 b(search)h(results)f(must)g(be)h(made)g(a)n(v)n +(ailable)f(to)h(all)f(other)244 3010 y(processes.)37 +b(Because)28 b(of)f(this,)g(most)e(synchronous)h(algorithms)f(are)j +(tested)f(on)f(shared)h(memory)g(sys-)244 3209 y(tems.)45 +b(On)29 b(distrib)n(uted)g(memory)f(systems,)i(sharing)f(a)h(table)g +(is)f(not)g(as)h(ef)n(\002cient,)h(and)f(the)g(speedups)244 +3409 y(portrayed)25 b(in)f(the)h(literature)f(for)h(shared)g(memory)f +(systems)g(are)h(not)f(achie)n(v)n(able.)120 3677 y(3.)49 +b(Man)o(y)25 b(synchronous)f(algorithms)g(attempt)h(to)g(initiate)g +(parallelism)f(at)i(nodes)f(which)g(are)i(better)e(done)244 +3876 y(sequentially)-6 b(.)59 b(F)o(or)35 b(e)o(xample,)h(ha)n(ving)e +(searched)h(the)g(\002rst)g(branch)g(at)g(a)g(node)g(and)g(not)f(achie) +n(v)o(ed)g(a)244 4075 y(cut-of)n(f,)40 b(the)d(remaining)f(branches)i +(are)g(usually)e(searched)h(in)g(parallel.)68 b(Ho)n(we)n(v)o(er)l(,)39 +b(if)e(the)g(second)244 4275 y(branch)26 b(causes)f(a)h(cut-of)n(f,)f +(then)g(all)h(of)f(the)h(w)o(ork)f(done)g(on)g(the)h(third)f(and)g +(subsequent)f(branches)i(w)o(as)244 4474 y(unnecessary)-6 +b(.)38 b(This)26 b(suggests)g(that)h(parallelism)f(should)g(only)h(be)g +(initiated)f(at)h(nodes)g(where)h(there)g(is)244 4673 +y(a)d(high)f(probability)f(that)i(all)f(branches)h(must)f(be)h +(considered.)120 4941 y(4.)49 b(Man)o(y)21 b(of)h(the)f(synchronous)g +(algorithms)f(do)i(not)f(inte)o(grate)g(well)h(into)f(typical)g +(sequential)g(algorithms.)244 5141 y(This)h(causes)h(man)o(y)f(changes) +h(to)g(the)f(main)h(search)g(algorithm)f(to)g(incorporate)h +(parallelism.)29 b(This)22 b(will)244 5340 y(lik)o(ely)i(result)g(in)g +(a)i(parallel)e(program)h(for)g(which)f(it)g(is)h(dif)n(\002cult)f(to)g +(v)o(erify)g(its)h(correctness.)1925 5589 y(2)p eop +%%Page: 3 6 +3 5 bop 146 100 a Fu(In)28 b(other)e(w)o(ork,)i(a)f(theoretical)g +(model)f(w)o(as)h(de)n(v)o(eloped)f(for)i(comparing)e(a)h(typical)g +(synchronous)f(game-)0 299 y(tree)31 b(search)g(algorithm)e(to)h(an)g +(asynchronous)g(one)g([2].)48 b(The)30 b(theoretical)g(results)g +(indicated)g(that)g(an)g(asyn-)0 498 y(chronous)22 b(algorithm)f(could) +i(outperform)f(a)h(synchronous)f(algorithm)f(on)h(game)h(trees)g +(similar)e(to)i(those)f(seen)0 697 y(in)j(practice.)34 +b(This)25 b(paper)h(sho)n(ws)f(that)g(it)g(is)g(possible)g(for)h +(asynchronous)e(search)i(algorithms)e(to)i(outperform)0 +897 y(their)f(synchronous)e(counterparts)h(in)h(practice.)146 +1096 y(The)g(paper')-5 b(s)25 b(major)f(contrib)n(utions)f(include:)120 +1365 y(1.)49 b(The)36 b(APHID)g(\(Asynchronous)f(P)o(arallel)h +(Hierarchical)h(Iterati)n(v)o(e)e(Deepening\))h(algorithm)e(is)i +(intro-)244 1564 y(duced)19 b(that)f(addresses)h(the)f(pre)n(viously)f +(mentioned)h(problems.)28 b(First,)19 b(the)g(algorithm)e(is)i +(asynchronous)244 1764 y(in)k(nature;)h(it)f(remo)o(v)o(es)f(all)h +(global)f(synchronization)g(points)h(from)g(the)g Fq(\013)q(\014)29 +b Fu(search)24 b(and)f(from)h(iterati)n(v)o(e)244 1963 +y(deepening.)62 b(Second,)38 b(the)d(algorithm)f(does)h(not)g(require)h +(a)f(shared)h(transposition)d(table)i(for)h(mo)o(v)o(e)244 +2162 y(ordering)22 b(information.)28 b(Third,)23 b(parallelism)e(is)h +(only)f(applied)h(at)g(nodes)g(that)g(ha)n(v)o(e)g(a)h(high)f +(probability)244 2361 y(of)j(needing)f(parallelism.)120 +2634 y(2.)49 b(APHID)25 b(has)g(been)g(designed)f(to)g(conform)h(to)f +(the)h(structure)f(of)h(the)g(sequential)f Fq(\013)q(\014)6 +b Fu(-based)24 b(game-tree)244 2833 y(search)35 b(algorithm.)57 +b(Consequently)-6 b(,)35 b(parallelism)e(can)i(be)f(added)g(to)g(an)g +(e)o(xisting)f(application)g(with)244 3033 y(minimal)d(ef)n(fort.)50 +b(APHID)32 b(has)g(been)g(programmed)e(as)i(an)g +(application-independent)d(and)j(portable)244 3232 y(library)-6 +b(.)529 3196 y Fn(2)624 3232 y Fu(This)33 b(w)o(as)g(used)g(to)g +(generate)h(all)f(of)h(the)f(parallel)g(applications)f(reported)i(in)f +(this)f(article.)244 3431 y(Each)25 b(of)g(the)g(implementations)e +(took)h(less)h(than)g(a)g(day)g(of)h(programming)d(time)i(to)f(achie)n +(v)o(e)h(a)g(parallel)244 3630 y(program)k(that)g(e)o(x)o(ecuted)f(in)h +(the)h(same)f(w)o(ay)g(as)h(the)f(sequential)f(program,)i(and)g(a)f(fe) +n(w)h(days)f(of)g(addi-)244 3830 y(tional)i(tuning)g(to)h(achie)n(v)o +(e)g(the)g(reported)g(speedups.)53 b(In)32 b(contrast,)i(adding)e(a)g +(synchronous)f(parallel)244 4029 y(algorithm)23 b(to)i(an)g(e)o +(xisting)e(sequential)g(algorithm)h(may)g(tak)o(e)h(months)e(of)i(w)o +(ork.)120 4302 y(3.)49 b(APHID')-5 b(s)31 b(performance)h(for)g(four)f +(game-playing)f(programs)h(is)g(presented.)50 b(APHID)32 +b(yields)e(better)244 4501 y(speedups)38 b(than)h(synchronous)f(search) +h(methods)f(for)h(an)g(Othello)f(and)h(a)g(check)o(ers)h(program,)i +(and)244 4700 y(comparable)25 b(speedups)f(on)g(tw)o(o)h(chess)f +(programs.)146 4969 y(Section)37 b(2)g(gi)n(v)o(es)e(a)j(brief)f(surv)o +(e)o(y)e(of)i(rele)n(v)n(ant)f(parallel)h(search)g(methods.)66 +b(Section)37 b(3)g(describes)f(the)0 5169 y(APHID)26 +b(algorithm)e(in)i(detail,)f(along)g(with)g(an)h(illustrati)n(v)o(e)d +(e)o(xample)i(of)g(ho)n(w)g(to)g(add)h(APHID)g(into)f(e)o(xisting)p +0 5249 1560 4 v 112 5310 a Fj(2)149 5340 y Fi(It)c(is)g(freely)e(a)n(v) +n(ailable)h(at)h Fh(http://www.cs.ualberta.ca/\230games/a)o(phid/)p +Fi(.)1925 5589 y Fu(3)p eop +%%Page: 4 7 +4 6 bop 0 100 a Fu(sequential)28 b(game-tree)i(search)g(code.)45 +b(Section)29 b(4)g(sho)n(ws)f(the)i(e)o(xperimental)e(results)g(of)i +(adding)f(APHID)g(to)0 299 y(four)c(applications.)k(Section)c(5)g +(summarizes)e(this)h(paper)-5 b(.)0 637 y Fo(2)143 b(Pr)m(e)n(vious)34 +b(W)-11 b(ork)0 889 y Fg(2.1)119 b(The)30 b Ff(\013)q(\014)37 +b Fg(Algorithm)0 1156 y Fu(In)25 b(a)h(tw)o(o)e(player)i(zero-sum)f +(game)f(with)h(perfect)g(information)f(and)h(a)h(\002nite)f(number)g +(of)g(mo)o(v)o(es,)e(an)j(optimal)0 1355 y(strate)o(gy)g(can)h(be)g +(determined)f(by)h(the)f(minimax)g(algorithm.)35 b(In)27 +b(general,)g(minimax)f(is)g(a)h(depth-\002rst)g(search)0 +1554 y(of)h(a)h(game)f(tree.)41 b(Each)29 b(node)f(represents)g(a)g +(position,)g(and)g(the)g(links)f(between)h(nodes)g(represent)h(the)f +(mo)o(v)o(e)0 1753 y(required)k(to)f(reach)h(the)g(ne)o(xt)e(position.) +50 b(The)31 b(player)h(to)f(mo)o(v)o(e)f(alternates)h(at)h(each)g(le)n +(v)o(el)f(of)g(the)h(tree.)51 b(The)0 1953 y(e)n(v)n(aluation)18 +b(of)i(each)h(leaf)g(node)f(in)f(the)h(search)h(is)f(based)g(on)f(an)i +(approximation)d(of)i(whether)g(the)g(\002rst)g(player)h(is)0 +2152 y(going)f(to)h(win)g(the)h(game)e(\(heuristic)h(e)n(v)n(aluation)f +(function\).)29 b(Whene)n(v)o(er)21 b(the)g(\002rst)g(player)h(mo)o(v)o +(es,)e(he)i(chooses)0 2351 y(a)i(mo)o(v)o(e)f(to)g(maximize)g(his)h(e)n +(v)n(aluation)e(\(so-called)h(Max)h(nodes)g(in)f(the)h(search)g +(tree\).)31 b(Con)l(v)o(ersely)-6 b(,)23 b(when)h(the)0 +2550 y(second)i(player)g(has)h(to)f(mo)o(v)o(e)e(at)j(a)f(node,)h(he)f +(will)g(choose)g(the)g(mo)o(v)o(e)f(that)h(minimizes)e(the)i(e)n(v)n +(aluation)f(\(Min)0 2750 y(nodes\).)146 2949 y(Although)c(the)h(tree)g +(is)g(\002nite,)g(it)g(can)g(get)g(quite)f(lar)n(ge.)30 +b(T)-8 b(o)22 b(search)h(a)f(tree)h(of)f(depth)f Fq(d)h +Fu(and)g(with)f Fq(b)i Fu(branches)0 3148 y(at)35 b(e)n(v)o(ery)g +(node,)j Fq(b)658 3112 y Fe(d)735 3148 y Fu(nodes)c(w)o(ould)h(be)h(e)n +(v)n(aluated.)61 b(F)o(ortunately)-6 b(,)37 b(there)e(are)h +(straightforw)o(ard)f(\223bounding\224)0 3347 y(techniques)e(that)g +(can)h(pro)o(v)o(e)e(some)h(e)n(v)n(aluations)e(are)k(irrele)n(v)n +(ant.)55 b(The)34 b(most)e(popular)h(of)h(these)f(is)g(the)h +Fq(\013)q(\014)0 3547 y Fu(algorithm,)23 b(gi)n(v)o(en)h(in)g(Figure)h +(1.)146 3746 y(The)k Fq(\013)q(\014)35 b Fu(algorithm)27 +b(only)h(considers)h(nodes)f(that)h(are)g(rele)n(v)n(ant)f(to)h(the)g +(search)g(windo)n(w)f([)p Fq(\013)q Fu(,)i Fq(\014)6 +b Fu(].)43 b Fq(\013)30 b Fu(rep-)0 3945 y(resents)g(the)f(best)h(v)n +(alue)f(that)h(the)g(side)f(to)h(mo)o(v)o(e)e(can)i(achie)n(v)o(e)g +(thus)f(f)o(ar)h(in)g(the)g(search.)46 b(Additional)29 +b(search)0 4144 y(at)i(this)g(node)g(is)f(intended)h(to)g(\002nd)g(mo)o +(v)o(es)e(that)i(impro)o(v)o(e)f(this)g(lo)n(wer)h(bound)f(\(i.e.)50 +b(ha)n(v)o(e)31 b(a)g(v)n(alue)g Fq(>)40 b(\013)q Fu(\).)49 +b Fq(\014)0 4344 y Fu(is)26 b(the)f(best)h(that)g(the)f(player)i(to)e +(mo)o(v)o(e)g(can)h(achie)n(v)o(e)f(or)l(,)i(con)l(v)o(ersely)-6 +b(,)25 b(the)h(smallest)e(v)n(alue)i(that)f(the)h(opponent)0 +4543 y(can)35 b(pro)o(v)n(ably)e(restrict)h(the)g(side)h(to)f(mo)o(v)o +(e)f(to.)59 b(When)35 b Fq(\013)46 b Fk(\025)g Fq(\014)6 +b Fu(,)37 b(no)d(additional)f(search)j(is)e(needed)g(at)h(this)0 +4742 y(node)c(\(a)g Fm(cut-of)n(f)f Fu(occurs\).)49 b(In)31 +b(ef)n(fect,)h(this)e Fm(prunes)g Fu(parts)g(of)h(the)g(tree)g(that)f +(pro)o(v)n(ably)f(cannot)i(contrib)n(ute)e(to)0 4941 +y(the)c(minimax)e(v)n(alue.)30 b(It)25 b(has)g(been)g(sho)n(wn)f(that)g +(the)h Fq(\013)q(\014)30 b Fu(algorithm)23 b(will)h(return)h(the)g +(correct)g(minimax)f(v)n(alue)0 5141 y(if)30 b(the)g(root)f(position)f +(is)h(searched)i(with)e Fq(\013)38 b Fl(=)f Fk(\0001)p +Fu(,)31 b Fq(\014)43 b Fl(=)36 b(+)p Fk(1)30 b Fu([9].)46 +b(F)o(or)30 b(a)g(depth)f Fq(d)h Fu(tree)g(with)f Fq(b)i +Fu(branches)0 5340 y(at)g(e)n(v)o(ery)f(node,)h Fq(\013)q(\014)36 +b Fu(has)31 b(the)g(potential)e(to)h(search)h(the)g(minimum)d(number)i +(of)h(leaf)g(nodes)f(possible)g(to)g(de-)1925 5589 y(4)p +eop +%%Page: 5 8 +5 7 bop 818 0 a + 17879478 11840716 9275228 18879365 30917427 33154007 startTexFig + 818 0 a +%%BeginDocument: pics/alphabeta-code.ps +%Magnification: 1.00 +/$F2psDict 200 dict def +$F2psDict begin +$F2psDict /mtrx matrix put +/col-1 {0 setgray} bind def +/col0 {0.000 0.000 0.000 srgb} bind def +/col1 {0.000 0.000 1.000 srgb} bind def +/col2 {0.000 1.000 0.000 srgb} bind def +/col3 {0.000 1.000 1.000 srgb} bind def +/col4 {1.000 0.000 0.000 srgb} bind def +/col5 {1.000 0.000 1.000 srgb} bind def +/col6 {1.000 1.000 0.000 srgb} bind def +/col7 {1.000 1.000 1.000 srgb} bind def +/col8 {0.000 0.000 0.560 srgb} bind def +/col9 {0.000 0.000 0.690 srgb} bind def +/col10 {0.000 0.000 0.820 srgb} bind def +/col11 {0.530 0.810 1.000 srgb} bind def +/col12 {0.000 0.560 0.000 srgb} bind def +/col13 {0.000 0.690 0.000 srgb} bind def +/col14 {0.000 0.820 0.000 srgb} bind def +/col15 {0.000 0.560 0.560 srgb} bind def +/col16 {0.000 0.690 0.690 srgb} bind def +/col17 {0.000 0.820 0.820 srgb} bind def +/col18 {0.560 0.000 0.000 srgb} bind def +/col19 {0.690 0.000 0.000 srgb} bind def +/col20 {0.820 0.000 0.000 srgb} bind def +/col21 {0.560 0.000 0.560 srgb} bind def +/col22 {0.690 0.000 0.690 srgb} bind def +/col23 {0.820 0.000 0.820 srgb} bind def +/col24 {0.500 0.190 0.000 srgb} bind def +/col25 {0.630 0.250 0.000 srgb} bind def +/col26 {0.750 0.380 0.000 srgb} bind def +/col27 {1.000 0.500 0.500 srgb} bind def +/col28 {1.000 0.630 0.630 srgb} bind def +/col29 {1.000 0.750 0.750 srgb} bind def +/col30 {1.000 0.880 0.880 srgb} bind def +/col31 {1.000 0.840 0.000 srgb} bind def + +end +save +79.5 561.5 translate +1 -1 scale + +/cp {closepath} bind def +/ef {eofill} bind def +/gr {grestore} bind def +/gs {gsave} bind def +/sa {save} bind def +/rs {restore} bind def +/l {lineto} bind def +/m {moveto} bind def +/rm {rmoveto} bind def +/n {newpath} bind def +/s {stroke} bind def +/sh {show} bind def +/slc {setlinecap} bind def +/slj {setlinejoin} bind def +/slw {setlinewidth} bind def +/srgb {setrgbcolor} bind def +/rot {rotate} bind def +/sc {scale} bind def +/sd {setdash} bind def +/ff {findfont} bind def +/sf {setfont} bind def +/scf {scalefont} bind def +/sw {stringwidth} bind def +/tr {translate} bind def +/tnt {dup dup currentrgbcolor + 4 -2 roll dup 1 exch sub 3 -1 roll mul add + 4 -2 roll dup 1 exch sub 3 -1 roll mul add + 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} + bind def +/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul + 4 -2 roll mul srgb} bind def +/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def +/$F2psEnd {$F2psEnteredState restore end} def + +$F2psBegin +10 setmiterlimit +n 0 792 m 0 0 l 612 0 l 612 792 l cp clip + 0.06000 0.06000 sc +7.500 slw +% Polyline +n 1050 975 m 6500 975 l 6500 4550 l 1050 4550 l cp gs col-1 s gr +/Courier ff 180.00 scf sf +1500 3000 m +gs 1 -1 sc (for\(i=1; i <= numOfSuccessors; i++\) {) col-1 sh gr +/Courier ff 180.00 scf sf +6000 1800 m +gs 1 -1 sc (/* move counter */) dup sw pop neg 0 rm col-1 sh gr +/Courier ff 180.00 scf sf +6000 2000 m +gs 1 -1 sc (/* score returned by search */) dup sw pop neg 0 rm col-1 sh gr +/Courier ff 180.00 scf sf +1500 2000 m +gs 1 -1 sc (int sc;) col-1 sh gr +/Courier ff 180.00 scf sf +1200 4400 m +gs 1 -1 sc (} /* AlphaBeta */) col-1 sh gr +/Courier ff 180.00 scf sf +1500 4000 m +gs 1 -1 sc (return\(alpha\);) col-1 sh gr +/Courier ff 180.00 scf sf +1500 3800 m +gs 1 -1 sc (}) col-1 sh gr +/Courier ff 180.00 scf sf +1800 3600 m +gs 1 -1 sc (if \(alpha >= beta\) { return\(alpha\); }) col-1 sh gr +/Courier ff 180.00 scf sf +1800 3400 m +gs 1 -1 sc (alpha = max\(alpha, sc\);) col-1 sh gr +/Courier ff 180.00 scf sf +1800 3200 m +gs 1 -1 sc (sc = -AlphaBeta\(p.succ[i],-beta,-alpha\);) col-1 sh gr +/Courier ff 180.00 scf sf +1500 2800 m +gs 1 -1 sc (numOfSuccessors = GenerateSuccessors\(p\);) col-1 sh gr +/Courier ff 180.00 scf sf +1500 2400 m +gs 1 -1 sc (if \(EndOfSearch\(p\)\) { return\(Evaluate\(p\)\); }) col-1 sh gr +/Courier ff 180.00 scf sf +1500 1800 m +gs 1 -1 sc (int i;) col-1 sh gr +/Courier ff 180.00 scf sf +1500 1600 m +gs 1 -1 sc (int numOfSuccessors;) col-1 sh gr +/Courier ff 180.00 scf sf +6000 1600 m +gs 1 -1 sc (/* total moves */) dup sw pop neg 0 rm col-1 sh gr +/Courier ff 180.00 scf sf +1200 1200 m +gs 1 -1 sc (int AlphaBeta\(position p, int alpha, int beta\) {) col-1 sh gr +showpage +$F2psEnd +rs +%%EndDocument + + endTexFig + 836 1703 a Fu(Figure)25 b(1:)30 b(A)25 b(Ne)o(gamax)f(F)o(ormulation)f +(of)h(the)h Fq(\013)q(\014)30 b Fu(Algorithm)0 1989 y(termine)24 +b(the)h(minimax)e(v)n(alue:)30 b Fq(b)1168 1952 y Fp(d)1209 +1925 y Fd(d)p 1210 1937 33 4 v 1211 1978 a Fc(2)1251 +1952 y Fp(e)1309 1989 y Fl(+)22 b Fq(b)1448 1952 y Fp(b)1489 +1925 y Fd(d)p 1489 1937 V 1490 1978 a Fc(2)1531 1952 +y Fp(c)1589 1989 y Fk(\000)g Fl(1)j Fu(\(assuming)e(that)h(there)h(are) +h(no)e(transpositions)f(in)h(the)h(tree\).)0 2188 y(This)i(best)h(case) +h(is)f(achie)n(v)o(ed)f(when)h(the)g(\223best\224)h(mo)o(v)o(e)d(is)i +(considered)g(\002rst)g(at)g(all)g(nodes)g(in)g(the)g(search)h(tree)0 +2388 y(\(a)c(perfectly-ordered)h(tree\).)146 2587 y(There)e(is)f(a)g +(portion)f(of)h(the)g Fq(\013)q(\014)29 b Fu(tree)23 +b(that)g(must)f(al)o(w)o(ays)h(be)g(searched)h(to)f(determine)f(the)h +(minimax)f(v)n(alue.)0 2786 y(This)k Fm(critical)f(tr)l(ee)i +Fu(is)f(de\002ned)h(as)g(the)g(perfectly-ordered)g(tree)g(that)f(is)g +(generated)h(when)f Fq(\013)q(\014)32 b Fu(is)27 b(started)f(with)0 +2985 y(the)32 b(search)i(windo)n(w)d(\()p Fk(\0001)p +Fu(,)p Fl(+)p Fk(1)p Fu(\).)54 b(Figure)33 b(2)g(sho)n(ws)e(the)h +(structure)h(of)f(the)h(critical)f(tree.)55 b(Nodes)32 +b(mark)o(ed)0 3185 y(ALL)22 b(ha)n(v)o(e)g(all)g(of)g(their)g +(successors)g(e)o(xplored)f(by)h Fq(\013)q(\014)6 b Fu(.)29 +b(Nodes)22 b(mark)o(ed)g(CUT)g(ha)n(v)o(e)g(at)g(least)g(one)g(branch)h +(that)0 3384 y(can)32 b(cut)f(of)n(f)g(further)g(search)h(at)f(this)g +(node.)50 b(In)31 b(the)g(critical)g(tree,)j(\002rst)d(mo)o(v)o(e)f +(searched)i(at)f(all)g(CUT)h(nodes)0 3583 y(causes)23 +b(a)g(cut-of)n(f.)29 b(CUT)23 b(and)g(ALL)f(nodes)g(are)h(also)g(kno)n +(wn)e(as)i(type-2)f(and)g(type-3)g(nodes,)h(respecti)n(v)o(ely)e([9].) +146 3782 y(The)26 b(principal)f(v)n(ariation)g(\(type-1)h(nodes,)g +(labeled)f(PV)i(in)e(Figure)h(2\))g(of)g(an)g Fq(\013)q(\014)32 +b Fu(critical)25 b(tree)i(is)e(the)h(\002rst)0 3982 y(\(left-most\))e +(branch)g(searched.)32 b(All)24 b(of)g(the)h(PV)g(nodes)f(are)h +(searched)g(with)f(the)g(windo)n(w)f(\()p Fk(\0001)p +Fu(,)p Fl(+)p Fk(1)p Fu(\).)31 b(Thus,)0 4181 y(all)25 +b(children)f(at)h(PV)g(nodes)f(are)i(searched,)f(meaning)f(that)h(the)o +(y)e(are)j(ef)n(fecti)n(v)o(ely)d(ALL)i(nodes.)0 4476 +y Fg(2.2)119 b(P)o(arallel)30 b Ff(\013)q(\014)7 b Fg(-based)30 +b(Sear)n(ch)h(Algorithms)0 4742 y Fu(The)h Fm(PV)-5 b(-Split)30 +b Fu(algorithm)h([13])h(is)g(based)g(on)f(the)h(re)o(gular)g(structure) +g(of)g(the)g(critical)g(game)f(tree.)53 b(The)32 b(\002rst)0 +4941 y(stage)38 b(of)f(the)h(algorithm)e(in)l(v)n(olv)o(es)g(a)j +(recursi)n(v)o(e)e(call)g(to)h(itself)f(as)h(PV)-10 b(-Split)37 +b(tra)n(v)o(els)g(do)n(wn)g(the)h(principal)0 5141 y(v)n(ariation.)28 +b(Once)20 b(the)f(left)h(subtree)f(of)h(a)g(PV)g(node)f(has)h(been)f(e) +o(xamined,)h(all)f(of)h(the)f(other)h(subtrees)f(belo)n(w)g(that)0 +5340 y(PV)27 b(node)f(are)h(searched)f(in)g(parallel.)35 +b(Each)27 b(processor)f(is)f(gi)n(v)o(en)g(one)h(subtree)g(at)h(a)f +(time)g(to)g(search,)h(without)1925 5589 y(5)p eop +%%Page: 6 9 +6 8 bop 825 0 a + 17761071 11840716 5130977 18813583 31443681 36245749 startTexFig + 825 0 a +%%BeginDocument: pics/candidacy2-4.ps + +/arrowHeight 10 def +/arrowWidth 5 def + +/IdrawDict 51 dict def +IdrawDict begin + +/reencodeISO { +dup dup findfont dup length dict begin +{ 1 index /FID ne { def }{ pop pop } ifelse } forall +/Encoding ISOLatin1Encoding def +currentdict end definefont +} def + +/ISOLatin1Encoding [ +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright +/parenleft/parenright/asterisk/plus/comma/minus/period/slash +/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon +/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N +/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright +/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m +/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/dotlessi/grave/acute/circumflex/tilde/macron/breve +/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut +/ogonek/caron/space/exclamdown/cent/sterling/currency/yen/brokenbar +/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot +/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior +/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine +/guillemotright/onequarter/onehalf/threequarters/questiondown +/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla +/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex +/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis +/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute +/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis +/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave +/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex +/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis +/yacute/thorn/ydieresis +] def +/Helvetica reencodeISO def + +/none null def +/numGraphicParameters 17 def +/stringLimit 65535 def + +/Begin { +save +numGraphicParameters dict begin +} def + +/End { +end +restore +} def + +/SetB { +dup type /nulltype eq { +pop +false /brushRightArrow idef +false /brushLeftArrow idef +true /brushNone idef +} { +/brushDashOffset idef +/brushDashArray idef +0 ne /brushRightArrow idef +0 ne /brushLeftArrow idef +/brushWidth idef +false /brushNone idef +} ifelse +} def + +/SetCFg { +/fgblue idef +/fggreen idef +/fgred idef +} def + +/SetCBg { +/bgblue idef +/bggreen idef +/bgred idef +} def + +/SetF { +/printSize idef +/printFont idef +} def + +/SetP { +dup type /nulltype eq { +pop true /patternNone idef +} { +dup -1 eq { +/patternGrayLevel idef +/patternString idef +} { +/patternGrayLevel idef +} ifelse +false /patternNone idef +} ifelse +} def + +/BSpl { +0 begin +storexyn +newpath +n 1 gt { +0 0 0 0 0 0 1 1 true subspline +n 2 gt { +0 0 0 0 1 1 2 2 false subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 2 copy false subspline +} if +n 2 sub dup n 1 sub dup 2 copy 2 copy false subspline +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Circ { +newpath +0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/CBSpl { +0 begin +dup 2 gt { +storexyn +newpath +n 1 sub dup 0 0 1 1 2 2 true subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 0 0 false subspline +n 2 sub dup n 1 sub dup 0 0 1 1 false subspline +patternNone not { ifill } if +brushNone not { istroke } if +} { +Poly +} ifelse +end +} dup 0 4 dict put def + +/Elli { +0 begin +newpath +4 2 roll +translate +scale +0 0 1 0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 1 dict put def + +/Line { +0 begin +2 storexyn +newpath +x 0 get y 0 get moveto +x 1 get y 1 get lineto +brushNone not { istroke } if +0 0 1 1 leftarrow +0 0 1 1 rightarrow +end +} dup 0 4 dict put def + +/MLine { +0 begin +storexyn +newpath +n 1 gt { +x 0 get y 0 get moveto +1 1 n 1 sub { +/i exch def +x i get y i get lineto +} for +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Poly { +3 1 roll +newpath +moveto +-1 add +{ lineto } repeat +closepath +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/Rect { +0 begin +/t exch def +/r exch def +/b exch def +/l exch def +newpath +l b moveto +l t lineto +r t lineto +r b lineto +closepath +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 4 dict put def + +/Text { +ishow +} def + +/idef { +dup where { pop pop pop } { exch def } ifelse +} def + +/ifill { +0 begin +gsave +patternGrayLevel -1 ne { +fgred bgred fgred sub patternGrayLevel mul add +fggreen bggreen fggreen sub patternGrayLevel mul add +fgblue bgblue fgblue sub patternGrayLevel mul add setrgbcolor +eofill +} { +eoclip +originalCTM setmatrix +pathbbox /t exch def /r exch def /b exch def /l exch def +/w r l sub ceiling cvi def +/h t b sub ceiling cvi def +/imageByteWidth w 8 div ceiling cvi def +/imageHeight h def +bgred bggreen bgblue setrgbcolor +eofill +fgred fggreen fgblue setrgbcolor +w 0 gt h 0 gt and { +l b translate w h scale +w h true [w 0 0 h neg 0 h] { patternproc } imagemask +} if +} ifelse +grestore +end +} dup 0 8 dict put def + +/istroke { +gsave +brushDashOffset -1 eq { +[] 0 setdash +1 setgray +} { +brushDashArray brushDashOffset setdash +fgred fggreen fgblue setrgbcolor +} ifelse +brushWidth setlinewidth +originalCTM setmatrix +stroke +grestore +} def + +/ishow { +0 begin +gsave +fgred fggreen fgblue setrgbcolor +/fontDict printFont printSize scalefont dup setfont def +/descender fontDict begin 0 [FontBBox] 1 get FontMatrix end +transform exch pop def +/vertoffset 1 printSize sub descender sub def { +0 vertoffset moveto show +/vertoffset vertoffset printSize sub def +} forall +grestore +end +} dup 0 3 dict put def +/patternproc { +0 begin +/patternByteLength patternString length def +/patternHeight patternByteLength 8 mul sqrt cvi def +/patternWidth patternHeight def +/patternByteWidth patternWidth 8 idiv def +/imageByteMaxLength imageByteWidth imageHeight mul +stringLimit patternByteWidth sub min def +/imageMaxHeight imageByteMaxLength imageByteWidth idiv patternHeight idiv +patternHeight mul patternHeight max def +/imageHeight imageHeight imageMaxHeight sub store +/imageString imageByteWidth imageMaxHeight mul patternByteWidth add string def +0 1 imageMaxHeight 1 sub { +/y exch def +/patternRow y patternByteWidth mul patternByteLength mod def +/patternRowString patternString patternRow patternByteWidth getinterval def +/imageRow y imageByteWidth mul def +0 patternByteWidth imageByteWidth 1 sub { +/x exch def +imageString imageRow x add patternRowString putinterval +} for +} for +imageString +end +} dup 0 12 dict put def + +/min { +dup 3 2 roll dup 4 3 roll lt { exch } if pop +} def + +/max { +dup 3 2 roll dup 4 3 roll gt { exch } if pop +} def + +/midpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 x1 add 2 div +y0 y1 add 2 div +end +} dup 0 4 dict put def + +/thirdpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 2 mul x1 add 3 div +y0 2 mul y1 add 3 div +end +} dup 0 4 dict put def + +/subspline { +0 begin +/movetoNeeded exch def +y exch get /y3 exch def +x exch get /x3 exch def +y exch get /y2 exch def +x exch get /x2 exch def +y exch get /y1 exch def +x exch get /x1 exch def +y exch get /y0 exch def +x exch get /x0 exch def +x1 y1 x2 y2 thirdpoint +/p1y exch def +/p1x exch def +x2 y2 x1 y1 thirdpoint +/p2y exch def +/p2x exch def +x1 y1 x0 y0 thirdpoint +p1x p1y midpoint +/p0y exch def +/p0x exch def +x2 y2 x3 y3 thirdpoint +p2x p2y midpoint +/p3y exch def +/p3x exch def +movetoNeeded { p0x p0y moveto } if +p1x p1y p2x p2y p3x p3y curveto +end +} dup 0 17 dict put def + +/storexyn { +/n exch def +/y n array def +/x n array def +n 1 sub -1 0 { +/i exch def +y i 3 2 roll put +x i 3 2 roll put +} for +} def + +/SSten { +fgred fggreen fgblue setrgbcolor +dup true exch 1 0 0 -1 0 6 -1 roll matrix astore +} def + +/FSten { +dup 3 -1 roll dup 4 1 roll exch +newpath +0 0 moveto +dup 0 exch lineto +exch dup 3 1 roll exch lineto +0 lineto +closepath +bgred bggreen bgblue setrgbcolor +eofill +SSten +} def + +/Rast { +exch dup 3 1 roll 1 0 0 -1 0 6 -1 roll matrix astore +} def + + +/arrowhead { +0 begin +transform originalCTM itransform +/taily exch def +/tailx exch def +transform originalCTM itransform +/tipy exch def +/tipx exch def +/dy tipy taily sub def +/dx tipx tailx sub def +/angle dx 0 ne dy 0 ne or { dy dx atan } { 90 } ifelse def +gsave +originalCTM setmatrix +tipx tipy translate +angle rotate +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +patternNone not { +originalCTM setmatrix +/padtip arrowHeight 2 exp 0.25 arrowWidth 2 exp mul add sqrt brushWidth mul +arrowWidth div def +/padtail brushWidth 2 div def +tipx tipy translate +angle rotate +padtip 0 translate +arrowHeight padtip add padtail add arrowHeight div dup scale +arrowheadpath +ifill +} if +brushNone not { +originalCTM setmatrix +tipx tipy translate +angle rotate +arrowheadpath +istroke +} if +grestore +end +} dup 0 9 dict put def + +/arrowheadpath { +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +} def + +/leftarrow { +0 begin +y exch get /taily exch def +x exch get /tailx exch def +y exch get /tipy exch def +x exch get /tipx exch def +brushLeftArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + +/rightarrow { +0 begin +y exch get /tipy exch def +x exch get /tipx exch def +y exch get /taily exch def +x exch get /tailx exch def +brushRightArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + + +%I Idraw 10 Grid 4.98316 4.98316 + + +Begin +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 0.799705 0 0 0.799705 0 0 ] concat +/originalCTM matrix currentmatrix def + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +200 443 200 353 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +200 443 349 353 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +200 443 50 353 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +50 353 5 263 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +50 353 110 263 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +50 353 65 263 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +109 263 65 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +109 263 109 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +109 263 154 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +169 263 199 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +214 263 244 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 174 50 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 174 65 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 174 79 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 174 57 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 174 72 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +109 174 102 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +154 174 147 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +199 174 184 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +199 174 192 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +199 174 199 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +199 174 207 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +199 174 214 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +244 174 229 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +236 129 244 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +244 174 244 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +244 174 251 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +244 174 259 129 Line +%I 1 +End + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +304 443 15 15 Elli +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 150 0 ] concat + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +139 428 169 458 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 214 676 ] concat +%I +[ +(ALL) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 0 -90 ] concat + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +139 428 169 458 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 214 676 ] concat +%I +[ +(ALL) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -45 -180 ] concat + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +139 428 169 458 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 214 676 ] concat +%I +[ +(ALL) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -89 -269 ] concat + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +139 428 169 458 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 214 676 ] concat +%I +[ +(ALL) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 46 -269 ] concat + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +139 428 169 458 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 214 676 ] concat +%I +[ +(ALL) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 90 -269 ] concat + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +139 428 169 458 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 214 676 ] concat +%I +[ +(ALL) +] Text +End + +End %I eop + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 85 230 ] concat +%I +304 263 274 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 85 230 ] concat +%I +304 263 319 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 85 230 ] concat +%I +304 263 364 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 189 230 ] concat +%I +304 174 349 263 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 189 230 ] concat +%I +349 263 349 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 189 230 ] concat +%I +349 263 394 174 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 85 230 ] concat +%I +274 174 274 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 85 230 ] concat +%I +319 174 319 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 85 230 ] concat +%I +364 174 364 136 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 85 230 ] concat +%I +364 136 364 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 241 230 ] concat +%I +252 174 252 136 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 241 230 ] concat +%I +297 174 297 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 241 230 ] concat +%I +252 136 252 129 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 0 0 1 241 230 ] concat +%I +342 174 342 129 Line +%I 1 +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 224 -269 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 443 14 15 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 124 678 ] concat +%I +[ +(CUT) +] Text +End + +End %I eop + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 226 230 ] concat +%I +148 353 163 263 Line +%I 1 +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 165 -180 ] concat + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +139 428 169 458 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 214 676 ] concat +%I +[ +(ALL) +] Text +End + +End %I eop + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 226 230 ] concat +%I +297 353 312 263 Line +%I 1 +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 314 -180 ] concat + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +139 428 169 458 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 214 676 ] concat +%I +[ +(ALL) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 89 -269 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 443 14 15 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 124 678 ] concat +%I +[ +(CUT) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 44 -269 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 443 14 15 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 124 678 ] concat +%I +[ +(CUT) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 269 -269 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 443 14 15 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 124 678 ] concat +%I +[ +(CUT) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 149 -180 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 443 14 15 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 124 678 ] concat +%I +[ +(CUT) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 104 -180 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 443 14 15 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 124 678 ] concat +%I +[ +(CUT) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 239 -90 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 443 14 15 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 124 678 ] concat +%I +[ +(CUT) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 388 -90 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 443 14 15 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 124 678 ] concat +%I +[ +(CUT) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 313 -269 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 443 14 15 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 124 678 ] concat +%I +[ +(CUT) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 358 -269 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 443 14 15 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 124 678 ] concat +%I +[ +(CUT) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 403 -269 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 443 14 15 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 124 678 ] concat +%I +[ +(CUT) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 448 -269 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +%I p +1 SetP +%I t +[ 1 -0 -0 1 70 230 ] concat +%I +65 443 14 15 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 124 678 ] concat +%I +[ +(CUT) +] Text +End + +End %I eop + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 339 684 ] concat +%I +[ +(PV) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 189 594 ] concat +%I +[ +(PV) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 144 504 ] concat +%I +[ +(PV) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 100 415 ] concat +%I +[ +(PV) +] Text +End + +End %I eop + +showpage + + +end +%%EndDocument + + endTexFig + 1412 1703 a Fu(Figure)25 b(2:)30 b(The)25 b(Critical)g(T)m(ree)0 +1991 y(assistance)f(from)h(other)f(processors.)30 b(After)25 +b(all)g(of)f(the)h(subtrees)f(ha)n(v)o(e)g(been)h(completely)f(e)o +(xplored,)f(that)i(PV)0 2190 y(node)32 b(returns)f(its)g(score)h(to)g +(the)f(PV)h(node)g(abo)o(v)o(e)f(it.)51 b(At)31 b(an)o(y)g(time,)i +(only)e(one)h(node')-5 b(s)31 b(subtrees)g(are)i(being)0 +2389 y(e)o(xamined)f(in)g(parallel.)54 b(The)32 b(major)g(problem)g +(with)g(PV)-10 b(-Split)32 b(is)g(the)h(lar)n(ge)g(amount)e(of)i +(synchronization;)0 2588 y(man)o(y)21 b(processors)h(are)h(often)f +(forced)g(to)g(w)o(ait)g(for)g(long)f(periods)h(of)g(time)f(while)h +(the)g(last)f(une)n(v)n(aluated)g(branch)0 2788 y(of)k(a)g(PV)g(node)g +(is)f(\002nished.)146 2987 y(The)35 b(best)g(speedups)g(for)g(parallel) +g Fq(\013)q(\014)40 b Fu(ha)n(v)o(e)35 b(been)g(reported)g(for)h(the)f +Fm(Y)-9 b(oung)34 b(Br)l(other)o(s)g(W)-9 b(ait)34 b(Concept)0 +3186 y Fu(\(YBWC\))22 b(algorithm)d([3].)30 b(In)21 b(this)e(paper)l(,) +j(YBWC)g(is)e(used)g(as)h(a)g(representati)n(v)o(e)f(of)h(a)g(lar)n(ge) +g(group)f(of)h(popular)0 3385 y(synchronous)e(algorithms)f(\(including) +h(ABD)l(AD)l(A)h([17],)h(Dynamic)f(T)m(ree)g(Splitting)e([7])j(and)f +(Jamboree)g([11]\))0 3585 y(which)28 b(all)h(share)g(the)f(same)h +(underlying)e(parallel)i(algorithm)e(and)i(dif)n(fer)f(only)g(in)h +(implementation)d(details.)0 3784 y(All)38 b(of)h(these)g(algorithms)e +(synchronize)i(at)f(the)h(end)g(of)g(each)g(iteration,)j(and)d(may)f +(also)h(synchronize)f(at)0 3983 y(additional)23 b(points)h(within)f +(each)j(iteration.)146 4182 y(In)32 b(a)g(game)f(tree)h(that)f(has)h +(near)n(-perfect)h(mo)o(v)o(e)d(ordering,)j(there)f(is)f(a)h(high)f +(probability)f(that)h(a)h(node)g(is)0 4382 y(an)c(ALL)g(node)g(if)g +(the)g(left-most)f(branch)h(is)f(e)n(v)n(aluated)g(and)h(does)g(not)f +(cause)i(a)f(cut-of)n(f.)40 b(The)28 b(basic)g(YBWC)0 +4581 y(states)j(that)h(the)g(left-most)e(branch)i(\(the)g(eldest)g +(brother\))g(must)e(be)j(e)n(v)n(aluated)d(before)j(an)o(y)e(other)h +(branches)0 4780 y(\(the)d(young)g(brothers\))g(can)h(be)f(distrib)n +(uted)f(to)h(other)g(processors.)44 b(This)29 b(is)g(not)f(necessarily) +h(limited)f(to)h(the)0 4979 y(principal)35 b(v)n(ariation)g(\(i.e.)65 +b(PV)-10 b(-Split\))37 b(or)f(a)g(pseudo-principal)f(v)n(ariation)g(as) +h(in)g(other)g(algorithms;)k(it)c(can)0 5179 y(happen)g(at)f(an)o(y)g +(node)h(within)e(the)i(game)f(tree.)64 b(The)36 b(optimized)e +(algorithm)g(is)h(called)h(YBWC*.)64 b(In)36 b(this)1925 +5589 y(6)p eop +%%Page: 7 10 +7 9 bop 0 100 a Fu(v)n(ariant,)27 b(young)f(brothers)h(are)g(not)g +(forced)g(to)g(w)o(ait)g(at)g(ALL)g(nodes,)g(allo)n(wing)e(sequential)h +(e)n(v)n(aluation)f(of)i(all)0 299 y(\223reasonable\224)e(mo)o(v)o(es)e +(at)i(CUT)g(nodes.)146 498 y(The)h(UIDP)-9 b(ABS)26 b(algorithm)e(\()p +Fm(Unsync)o(hr)l(onized)g(Iter)o(atively)g(Deepening)h(P)-8 +b(ar)o(allel)24 b(Alpha-Beta)g(Sear)l(c)o(h)p Fu(\))0 +697 y([14])29 b(w)o(as)h(the)f(\002rst)g(attempt)f(to)h(asynchronously) +f(start)h(the)g(ne)o(xt)g(le)n(v)o(el)f(of)h(an)h(iterati)n(v)o(ely)d +(deepened)j(search)0 897 y(instead)d(of)g(synchronizing)f(at)h(the)g +(root)g(of)g(the)g(game)g(tree.)38 b(The)27 b(mo)o(v)o(es)f(from)h(the) +g(root)g(position)e(are)j(parti-)0 1096 y(tioned)20 b(among)f(the)i +(processors,)g(and)f(the)g(processors)h(search)g(their)f(o)n(wn)f +(subset)h(of)h(the)f(mo)o(v)o(es)f(with)h(iterati)n(v)o(e)0 +1295 y(deepening.)29 b(Each)21 b(processor)f(is)g(gi)n(v)o(en)f(the)h +(same)g(initial)f(search)i(windo)n(w)-6 b(,)20 b(b)n(ut)g(some)g(of)g +(the)g(processors)g(may)0 1494 y(ha)n(v)o(e)26 b(changed)g(their)f +(windo)n(ws)g(based)h(on)g(the)f(search)i(results)e(of)h(their)g(mo)o +(v)o(es.)32 b(The)26 b(UIDP)-9 b(ABS)28 b(algorithm)0 +1694 y(combines)h(all)i(the)f(processors')g(results)g(once)g(a)h +(predetermined)f(time)g(limit)e(has)j(been)f(reached.)49 +b(Some)30 b(of)0 1893 y(the)i(mo)o(v)o(es)e(may)i(ha)n(v)o(e)g(been)g +(e)n(v)n(aluated)f(to)h(lar)n(ger)h(depths)e(than)h(those)f(on)h(other) +g(processors,)i(which)d(may)0 2092 y(yield)e(a)h(better)f(quality)f(mo) +o(v)o(e)g(choice.)45 b(Ho)n(we)n(v)o(er)l(,)29 b(it)g(is)g(important)f +(to)h(note)g(that)g(each)h(mo)o(v)o(e)e(may)h(only)g(be)0 +2291 y(searched)23 b(by)g(one)f(processor;)h(thus,)g(the)f(algorithm)f +(can)i(only)f(use)h(as)g(man)o(y)e(processors)i(as)f(there)h(are)h(mo)o +(v)o(es)0 2491 y(at)h(the)f(root)h(of)g(the)f(game)h(tree.)0 +2830 y Fo(3)143 b(The)35 b(APHID)f(Algorithm)0 3133 y +Fu(This)18 b(section)g(describes)h(the)g(Asynchronous)e(P)o(arallel)i +(Hierarchical)g(Iterati)n(v)o(e)f(Deepening)g(\(APHID)3589 +3096 y Fn(3)3629 3133 y Fu(\))i(game-)0 3332 y(tree)29 +b(search)g(algorithm.)40 b(APHID)29 b(represents)g(a)g(departure)g +(from)f(the)g(synchronous)f(algorithms)g(described)0 +3531 y(in)d(Section)g(2)g(and)g(has)g(been)h(designed)e(to)h(address)g +(the)g(problems)f(described)h(in)g(Section)g(1.)30 b(First,)24 +b(the)g(algo-)0 3730 y(rithm)k(is)g(asynchronous)f(in)i(nature;)h(it)e +(remo)o(v)o(es)f(all)i(global)e(synchronization)g(points)h(from)g(the)h +Fq(\013)q(\014)34 b Fu(search)0 3930 y(and)28 b(from)f(iterati)n(v)o(e) +f(deepening.)39 b(Second,)29 b(the)e(algorithm)g(does)g(not)g(require)h +(a)g(shared)g(transposition)d(table)0 4129 y(for)h(mo)o(v)o(e)d +(ordering)i(information,)f(although)g(one)h(can)h(be)f(used)g(if)h +(duplicate)e(detection)h(is)g(important)e(in)i(the)0 +4328 y(underlying)33 b(application.)59 b(Third,)36 b(parallelism)e(is)g +(only)f(applied)h(at)h(nodes)f(that)g(ha)n(v)o(e)g(a)h(high)f +(probability)0 4527 y(of)g(needing)g(parallelism,)h(and)g(this)e +(decision)g(is)h(based)g(on)g(the)g(best)g(information)f(a)n(v)n +(ailable)h(at)g(the)g(time.)0 4727 y(Finally)-6 b(,)24 +b(APHID)h(is)f(designed)g(to)h(easily)f(\002t)h(into)f(an)h(e)o +(xisting)e(sequential)h Fq(\013)q(\014)6 b Fu(-based)24 +b(search)h(algorithm.)146 4926 y(APHID)k(subdi)n(vides)d(the)j(tree)g +(into)e(man)o(y)h(distinct)f(pieces)h(which)g(each)h(process)g(can)f +(search)h(indepen-)p 0 5016 1560 4 v 112 5077 a Fj(3)149 +5107 y Fi(An)d(aphid)e(is)i(a)f(soft-bodied)e(insect)i(that)g(sucks)g +(the)h(sap)f(from)f(plants.)39 b(One)25 b(could)f(say)i(the)f(APHID)g +(algorithm)e(sucks)j(the)0 5206 y(minimax)19 b(v)n(alue)g(from)h(a)g +(game)f(tree.)1925 5589 y Fu(7)p eop +%%Page: 8 11 +8 10 bop 992 0 a + 15132435 7104430 4670504 18813583 35522150 33285570 startTexFig + 992 0 a +%%BeginDocument: pics/aphid-partition.ps +%Magnification: 1.00 +/$F2psDict 200 dict def +$F2psDict begin +$F2psDict /mtrx matrix put +/col-1 {0 setgray} bind def +/col0 {0.000 0.000 0.000 srgb} bind def +/col1 {0.000 0.000 1.000 srgb} bind def +/col2 {0.000 1.000 0.000 srgb} bind def +/col3 {0.000 1.000 1.000 srgb} bind def +/col4 {1.000 0.000 0.000 srgb} bind def +/col5 {1.000 0.000 1.000 srgb} bind def +/col6 {1.000 1.000 0.000 srgb} bind def +/col7 {1.000 1.000 1.000 srgb} bind def +/col8 {0.000 0.000 0.560 srgb} bind def +/col9 {0.000 0.000 0.690 srgb} bind def +/col10 {0.000 0.000 0.820 srgb} bind def +/col11 {0.530 0.810 1.000 srgb} bind def +/col12 {0.000 0.560 0.000 srgb} bind def +/col13 {0.000 0.690 0.000 srgb} bind def +/col14 {0.000 0.820 0.000 srgb} bind def +/col15 {0.000 0.560 0.560 srgb} bind def +/col16 {0.000 0.690 0.690 srgb} bind def +/col17 {0.000 0.820 0.820 srgb} bind def +/col18 {0.560 0.000 0.000 srgb} bind def +/col19 {0.690 0.000 0.000 srgb} bind def +/col20 {0.820 0.000 0.000 srgb} bind def +/col21 {0.560 0.000 0.560 srgb} bind def +/col22 {0.690 0.000 0.690 srgb} bind def +/col23 {0.820 0.000 0.820 srgb} bind def +/col24 {0.500 0.190 0.000 srgb} bind def +/col25 {0.630 0.250 0.000 srgb} bind def +/col26 {0.750 0.380 0.000 srgb} bind def +/col27 {1.000 0.500 0.500 srgb} bind def +/col28 {1.000 0.630 0.630 srgb} bind def +/col29 {1.000 0.750 0.750 srgb} bind def +/col30 {1.000 0.880 0.880 srgb} bind def +/col31 {1.000 0.840 0.000 srgb} bind def + +end +save +34.5 576.0 translate +1 -1 scale + +/cp {closepath} bind def +/ef {eofill} bind def +/gr {grestore} bind def +/gs {gsave} bind def +/sa {save} bind def +/rs {restore} bind def +/l {lineto} bind def +/m {moveto} bind def +/rm {rmoveto} bind def +/n {newpath} bind def +/s {stroke} bind def +/sh {show} bind def +/slc {setlinecap} bind def +/slj {setlinejoin} bind def +/slw {setlinewidth} bind def +/srgb {setrgbcolor} bind def +/rot {rotate} bind def +/sc {scale} bind def +/sd {setdash} bind def +/ff {findfont} bind def +/sf {setfont} bind def +/scf {scalefont} bind def +/sw {stringwidth} bind def +/tr {translate} bind def +/tnt {dup dup currentrgbcolor + 4 -2 roll dup 1 exch sub 3 -1 roll mul add + 4 -2 roll dup 1 exch sub 3 -1 roll mul add + 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} + bind def +/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul + 4 -2 roll mul srgb} bind def + /DrawEllipse { + /endangle exch def + /startangle exch def + /yrad exch def + /xrad exch def + /y exch def + /x exch def + /savematrix mtrx currentmatrix def + x y tr xrad yrad sc 0 0 1 startangle endangle arc + closepath + savematrix setmatrix + } def + +/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def +/$F2psEnd {$F2psEnteredState restore end} def + +$F2psBegin +10 setmiterlimit +n 0 792 m 0 0 l 612 0 l 612 792 l cp clip + 0.06000 0.06000 sc +60.000 slw +% Polyline +n 2775 3075 m 2925 2925 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 2775 2925 m 2925 3075 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 3000 3075 m 3150 2925 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 3000 2925 m 3150 3075 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 3225 3075 m 3375 2925 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 3225 2925 m 3375 3075 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 3450 3075 m 3600 2925 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 3450 2925 m 3600 3075 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 5175 3075 m 5325 2925 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 5175 2925 m 5325 3075 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 5400 3075 m 5550 2925 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 5400 2925 m 5550 3075 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 5625 3075 m 5775 2925 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 5625 2925 m 5775 3075 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 5850 3075 m 6000 2925 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 5850 2925 m 6000 3075 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 6075 3075 m 6225 2925 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 6075 2925 m 6225 3075 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 4425 3075 m 4575 2925 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 4425 2925 m 4575 3075 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 4200 3075 m 4350 2925 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 4200 2925 m 4350 3075 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 3975 3075 m 4125 2925 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 3975 2925 m 4125 3075 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 3750 3075 m 3900 2925 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 3750 2925 m 3900 3075 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 4875 3075 m 5025 2925 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 4875 2925 m 5025 3075 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 4650 3075 m 4800 2925 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 4650 2925 m 4800 3075 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 675 1425 m 825 1275 l gs 1.00 setgray ef gr gs col-1 s gr +% Polyline +n 675 1275 m 825 1425 l gs 1.00 setgray ef gr gs col-1 s gr +7.500 slw +% Ellipse +n 5400 3900 75 75 0 360 DrawEllipse gs 0.00 setgray ef gr gs col-1 s gr + +% Ellipse +n 5175 3900 75 75 0 360 DrawEllipse gs 0.00 setgray ef gr gs col-1 s gr + +% Ellipse +n 4950 3900 75 75 0 360 DrawEllipse gs 0.00 setgray ef gr gs col-1 s gr + +15.000 slw +% Polyline +n 3675 3000 m 3075 4800 l gs col-1 s gr +7.500 slw +% Polyline +n 4626 3004 m 4926 4804 l gs col-1 s gr +15.000 slw +% Polyline +n 4626 3004 m 4926 4804 l gs col-1 s gr +7.500 slw +% Polyline +n 2700 3000 m 6300 3000 l gs col-1 s gr +30.000 slw +% Polyline +gs clippath +8430 4599 m 8400 4719 l 8370 4599 l 8370 4845 l 8430 4845 l cp clip +8370 1401 m 8400 1281 l 8430 1401 l 8430 1155 l 8370 1155 l cp clip +n 8400 1200 m 8400 4800 l gs 1.00 setgray ef gr gs col-1 s gr gr + +% arrowhead +n 8370 1401 m 8400 1281 l 8430 1401 l col-1 s +% arrowhead +n 8430 4599 m 8400 4719 l 8370 4599 l col-1 s +% Polyline +gs clippath +7830 2799 m 7800 2919 l 7770 2799 l 7770 3045 l 7830 3045 l cp clip +7770 1401 m 7800 1281 l 7830 1401 l 7830 1155 l 7770 1155 l cp clip +n 7800 1200 m 7800 3000 l gs 1.00 setgray ef gr gs col-1 s gr gr + +% arrowhead +n 7770 1401 m 7800 1281 l 7830 1401 l col-1 s +% arrowhead +n 7830 2799 m 7800 2919 l 7770 2799 l col-1 s +15.000 slw +% Polyline +n 4500 1200 m 900 4800 l 8100 4800 l 4500 1200 l gs col-1 s gr +% Polyline +n 5100 3000 m 6000 4800 l gs col-1 s gr +/Helvetica ff 270.00 scf sf +4500 2400 m +gs 1 -1 sc (MASTER) dup sw pop 2 div neg 0 rm col-1 sh gr +/Helvetica ff 270.00 scf sf +2400 4200 m +gs 1 -1 sc (SLAVE 1) dup sw pop 2 div neg 0 rm col-1 sh gr +/Helvetica ff 270.00 scf sf +6450 4200 m +gs 1 -1 sc (SLAVE K) dup sw pop 2 div neg 0 rm col-1 sh gr +/Helvetica ff 270.00 scf sf +4050 4200 m +gs 1 -1 sc (SLAVE 2) dup sw pop 2 div neg 0 rm col-1 sh gr +/Helvetica ff 270.00 scf sf +900 1425 m +gs 1 -1 sc (= PIECE OF WORK) col-1 sh gr +/Helvetica ff 270.00 scf sf +7500 2100 m +gs 1 -1 sc (d') col-1 sh gr +/Helvetica ff 270.00 scf sf +8175 3150 m +gs 1 -1 sc (d) col-1 sh gr +showpage +$F2psEnd +rs +%%EndDocument + + endTexFig + 720 1103 a Fu(Figure)25 b(3:)30 b(APHID)25 b(P)o(artitioning)e(Game)i +(T)m(ree)g(Amongst)e(Processes)888 1225 y + 16766447 9472573 9669918 31246336 22892052 38679674 startTexFig + 888 1225 a +%%BeginDocument: pics/location_parallelism.ps + +/arrowHeight 10 def +/arrowWidth 5 def + +/IdrawDict 52 dict def +IdrawDict begin + +/reencodeISO { +dup dup findfont dup length dict begin +{ 1 index /FID ne { def }{ pop pop } ifelse } forall +/Encoding ISOLatin1Encoding def +currentdict end definefont +} def + +/ISOLatin1Encoding [ +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright +/parenleft/parenright/asterisk/plus/comma/minus/period/slash +/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon +/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N +/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright +/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m +/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/dotlessi/grave/acute/circumflex/tilde/macron/breve +/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut +/ogonek/caron/space/exclamdown/cent/sterling/currency/yen/brokenbar +/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot +/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior +/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine +/guillemotright/onequarter/onehalf/threequarters/questiondown +/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla +/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex +/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis +/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute +/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis +/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave +/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex +/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis +/yacute/thorn/ydieresis +] def +/Times-Roman reencodeISO def +/Helvetica reencodeISO def + +/none null def +/numGraphicParameters 17 def +/stringLimit 65535 def + +/Begin { +save +numGraphicParameters dict begin +} def + +/End { +end +restore +} def + +/SetB { +dup type /nulltype eq { +pop +false /brushRightArrow idef +false /brushLeftArrow idef +true /brushNone idef +} { +/brushDashOffset idef +/brushDashArray idef +0 ne /brushRightArrow idef +0 ne /brushLeftArrow idef +/brushWidth idef +false /brushNone idef +} ifelse +} def + +/SetCFg { +/fgblue idef +/fggreen idef +/fgred idef +} def + +/SetCBg { +/bgblue idef +/bggreen idef +/bgred idef +} def + +/SetF { +/printSize idef +/printFont idef +} def + +/SetP { +dup type /nulltype eq { +pop true /patternNone idef +} { +dup -1 eq { +/patternGrayLevel idef +/patternString idef +} { +/patternGrayLevel idef +} ifelse +false /patternNone idef +} ifelse +} def + +/BSpl { +0 begin +storexyn +newpath +n 1 gt { +0 0 0 0 0 0 1 1 true subspline +n 2 gt { +0 0 0 0 1 1 2 2 false subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 2 copy false subspline +} if +n 2 sub dup n 1 sub dup 2 copy 2 copy false subspline +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Circ { +newpath +0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/CBSpl { +0 begin +dup 2 gt { +storexyn +newpath +n 1 sub dup 0 0 1 1 2 2 true subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 0 0 false subspline +n 2 sub dup n 1 sub dup 0 0 1 1 false subspline +patternNone not { ifill } if +brushNone not { istroke } if +} { +Poly +} ifelse +end +} dup 0 4 dict put def + +/Elli { +0 begin +newpath +4 2 roll +translate +scale +0 0 1 0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 1 dict put def + +/Line { +0 begin +2 storexyn +newpath +x 0 get y 0 get moveto +x 1 get y 1 get lineto +brushNone not { istroke } if +0 0 1 1 leftarrow +0 0 1 1 rightarrow +end +} dup 0 4 dict put def + +/MLine { +0 begin +storexyn +newpath +n 1 gt { +x 0 get y 0 get moveto +1 1 n 1 sub { +/i exch def +x i get y i get lineto +} for +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Poly { +3 1 roll +newpath +moveto +-1 add +{ lineto } repeat +closepath +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/Rect { +0 begin +/t exch def +/r exch def +/b exch def +/l exch def +newpath +l b moveto +l t lineto +r t lineto +r b lineto +closepath +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 4 dict put def + +/Text { +ishow +} def + +/idef { +dup where { pop pop pop } { exch def } ifelse +} def + +/ifill { +0 begin +gsave +patternGrayLevel -1 ne { +fgred bgred fgred sub patternGrayLevel mul add +fggreen bggreen fggreen sub patternGrayLevel mul add +fgblue bgblue fgblue sub patternGrayLevel mul add setrgbcolor +eofill +} { +eoclip +originalCTM setmatrix +pathbbox /t exch def /r exch def /b exch def /l exch def +/w r l sub ceiling cvi def +/h t b sub ceiling cvi def +/imageByteWidth w 8 div ceiling cvi def +/imageHeight h def +bgred bggreen bgblue setrgbcolor +eofill +fgred fggreen fgblue setrgbcolor +w 0 gt h 0 gt and { +l b translate w h scale +w h true [w 0 0 h neg 0 h] { patternproc } imagemask +} if +} ifelse +grestore +end +} dup 0 8 dict put def + +/istroke { +gsave +brushDashOffset -1 eq { +[] 0 setdash +1 setgray +} { +brushDashArray brushDashOffset setdash +fgred fggreen fgblue setrgbcolor +} ifelse +brushWidth setlinewidth +originalCTM setmatrix +stroke +grestore +} def + +/ishow { +0 begin +gsave +fgred fggreen fgblue setrgbcolor +/fontDict printFont printSize scalefont dup setfont def +/descender fontDict begin 0 [FontBBox] 1 get FontMatrix end +transform exch pop def +/vertoffset 1 printSize sub descender sub def { +0 vertoffset moveto show +/vertoffset vertoffset printSize sub def +} forall +grestore +end +} dup 0 3 dict put def +/patternproc { +0 begin +/patternByteLength patternString length def +/patternHeight patternByteLength 8 mul sqrt cvi def +/patternWidth patternHeight def +/patternByteWidth patternWidth 8 idiv def +/imageByteMaxLength imageByteWidth imageHeight mul +stringLimit patternByteWidth sub min def +/imageMaxHeight imageByteMaxLength imageByteWidth idiv patternHeight idiv +patternHeight mul patternHeight max def +/imageHeight imageHeight imageMaxHeight sub store +/imageString imageByteWidth imageMaxHeight mul patternByteWidth add string def +0 1 imageMaxHeight 1 sub { +/y exch def +/patternRow y patternByteWidth mul patternByteLength mod def +/patternRowString patternString patternRow patternByteWidth getinterval def +/imageRow y imageByteWidth mul def +0 patternByteWidth imageByteWidth 1 sub { +/x exch def +imageString imageRow x add patternRowString putinterval +} for +} for +imageString +end +} dup 0 12 dict put def + +/min { +dup 3 2 roll dup 4 3 roll lt { exch } if pop +} def + +/max { +dup 3 2 roll dup 4 3 roll gt { exch } if pop +} def + +/midpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 x1 add 2 div +y0 y1 add 2 div +end +} dup 0 4 dict put def + +/thirdpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 2 mul x1 add 3 div +y0 2 mul y1 add 3 div +end +} dup 0 4 dict put def + +/subspline { +0 begin +/movetoNeeded exch def +y exch get /y3 exch def +x exch get /x3 exch def +y exch get /y2 exch def +x exch get /x2 exch def +y exch get /y1 exch def +x exch get /x1 exch def +y exch get /y0 exch def +x exch get /x0 exch def +x1 y1 x2 y2 thirdpoint +/p1y exch def +/p1x exch def +x2 y2 x1 y1 thirdpoint +/p2y exch def +/p2x exch def +x1 y1 x0 y0 thirdpoint +p1x p1y midpoint +/p0y exch def +/p0x exch def +x2 y2 x3 y3 thirdpoint +p2x p2y midpoint +/p3y exch def +/p3x exch def +movetoNeeded { p0x p0y moveto } if +p1x p1y p2x p2y p3x p3y curveto +end +} dup 0 17 dict put def + +/storexyn { +/n exch def +/y n array def +/x n array def +n 1 sub -1 0 { +/i exch def +y i 3 2 roll put +x i 3 2 roll put +} for +} def + +/SSten { +fgred fggreen fgblue setrgbcolor +dup true exch 1 0 0 -1 0 6 -1 roll matrix astore +} def + +/FSten { +dup 3 -1 roll dup 4 1 roll exch +newpath +0 0 moveto +dup 0 exch lineto +exch dup 3 1 roll exch lineto +0 lineto +closepath +bgred bggreen bgblue setrgbcolor +eofill +SSten +} def + +/Rast { +exch dup 3 1 roll 1 0 0 -1 0 6 -1 roll matrix astore +} def + + +/arrowhead { +0 begin +transform originalCTM itransform +/taily exch def +/tailx exch def +transform originalCTM itransform +/tipy exch def +/tipx exch def +/dy tipy taily sub def +/dx tipx tailx sub def +/angle dx 0 ne dy 0 ne or { dy dx atan } { 90 } ifelse def +gsave +originalCTM setmatrix +tipx tipy translate +angle rotate +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +patternNone not { +originalCTM setmatrix +/padtip arrowHeight 2 exp 0.25 arrowWidth 2 exp mul add sqrt brushWidth mul +arrowWidth div def +/padtail brushWidth 2 div def +tipx tipy translate +angle rotate +padtip 0 translate +arrowHeight padtip add padtail add arrowHeight div dup scale +arrowheadpath +ifill +} if +brushNone not { +originalCTM setmatrix +tipx tipy translate +angle rotate +arrowheadpath +istroke +} if +grestore +end +} dup 0 9 dict put def + +/arrowheadpath { +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +} def + +/leftarrow { +0 begin +y exch get /taily exch def +x exch get /tailx exch def +y exch get /tipy exch def +x exch get /tipx exch def +brushLeftArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + +/rightarrow { +0 begin +y exch get /tipy exch def +x exch get /tipx exch def +y exch get /taily exch def +x exch get /tailx exch def +brushRightArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + + +%I Idraw 10 Grid 3 3 + + +Begin +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 0.799705 0 0 0.799705 0 0 ] concat +/originalCTM matrix currentmatrix def + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +117 437 65 332 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +117 437 162 332 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 271 296 ] concat +%I +117 437 65 332 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 271 296 ] concat +%I +117 437 162 332 Line +%I 1 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-times-medium-r-normal-*-12-*-*-*-*-*-*-* +Times-Roman 12 SetF +%I t +[ 1 0 0 1 217 609 ] concat +%I +[ +(APHID) +] Text +End + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 26.5 123.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 30.5 123 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 33.5 123 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 37.5 123 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 42 123.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 45 123.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 49 123.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 52.5 123.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 56 123.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 60 123.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 22.5 123.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 159 96 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 162.5 104 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 166 110.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 170.5 118.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 174 126.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 177 134 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 181 141 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 185 149 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 188.5 156 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 191.5 164 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 156 88.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 151.5 80 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 148 72.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 192 149 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 195.5 149 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 198.5 149 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 191 135 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 195 135 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 199 135 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 203.5 135 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 187 141 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 190 141 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 181 126.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 185 126.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 189 127 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 188.5 118.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 192.5 118.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 196.5 118.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 204.5 118.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 178 110.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 199 110.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 213.5 111 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 184 96 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 208 95.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b 65535 +1 0 0 [] 0 SetB +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 194 156 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 272 76 268 Line +%I 1 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 122 296 ] concat +%I +72 268 76 272 Line +%I 1 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -36.5 92.5 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +100 84 116 100 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +116 100 132 84 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +132 84 148 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +148 116 164 84 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +164 84 180 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +180 116 196 100 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +196 100 212 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +212 116 228 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +228 116 244 100 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +244 100 260 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +260 116 276 100 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +276 100 292 84 Line +%I 2 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 112.5 93 ] concat + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +100 84 116 100 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +116 100 132 84 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +132 84 148 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +148 116 164 84 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +164 84 180 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +180 116 196 100 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +196 100 212 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +212 116 228 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +228 116 244 100 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +244 100 260 116 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +260 116 276 100 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 174 494 ] concat +%I +276 100 292 84 Line +%I 2 +End + +End %I eop + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 226 494 ] concat +%I +136 476 160 476 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 244 596 ] concat +%I +136 272 160 272 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 226 497 ] concat +%I +136 296 160 296 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 244 554 ] concat +%I +136 272 160 272 Line +%I 2 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 297 692 ] concat +%I +[ +(d) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 313.5 716 ] concat +%I +[ +(d') +] Text +End + +Begin %I Line +%I b 65535 +2 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 200 494 ] concat +%I +200 374 200 308 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 200 494 ] concat +%I +200 404 200 470 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 200 494 ] concat +%I +236 452 236 470 Line +%I 2 +End + +Begin %I Line +%I b 65535 +2 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 200 494 ] concat +%I +236 422 236 398 Line +%I 2 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-times-medium-r-normal-*-12-*-*-*-*-*-*-* +Times-Roman 12 SetF +%I t +[ 1 0 0 1 367 609 ] concat +%I +[ +(YBWC*) +] Text +End + +End %I eop + +showpage + + +end +%%EndDocument + + endTexFig + 491 2628 a Fu(Figure)i(4:)30 b(Location)24 b(of)h(P)o(arallelism)f(in) +g(T)-8 b(ypical)25 b(APHID)g(and)g(YBWC*)g(Search)0 2915 +y(dently)j(of)g(each)h(other)-5 b(.)41 b(Figure)29 b(3)f(gi)n(v)o(es)f +(an)i(e)o(xample)f(of)g(ho)n(w)g(the)g(tree)h(w)o(ould)f(be)g(di)n +(vided)f(by)h(the)h(APHID)0 3114 y(algorithm.)g(The)23 +b(\002gure)h(sho)n(ws)e(us)i(a)f(single-le)n(v)o(el)f(master/sla)n(v)o +(e)g(hierarchy)h(\(multiple)f(le)n(v)o(els)g(are)i(possible\).)0 +3314 y(The)k(master)g(process)h(controls)e(the)h(top)g +Fq(d)1511 3278 y Fp(0)1563 3314 y Fu(ply)f(of)i(the)f(game)g(tree,)h +(including)e(the)h(root.)41 b(The)29 b(lea)n(v)o(es)f(of)g(the)0 +3513 y(master')-5 b(s)28 b Fq(d)412 3477 y Fp(0)435 3513 +y Fu(-ply)h(tree)h(are)g(the)f(pieces)g(of)h(w)o(ork)f(that)g(each)h +(sla)n(v)o(e)e(process)h(e)o(xamines.)43 b(Each)30 b(of)f(the)g +Fq(k)k Fu(sla)n(v)o(e)0 3712 y(processes)c(gets)g(a)g(portion)f(of)h +(the)g(master')-5 b(s)28 b(lea)n(v)o(es)h(to)g(search,)h(implicitly)d +(di)n(viding)g(the)i(remainder)g(of)g(the)0 3912 y(tree)d(as)g(sho)n +(wn)e(in)h(Figure)h(3.)33 b(Note)25 b(that)g(the)g(diagram)h(is)f +(partially)f(misleading)g(in)h(that,)h(for)f(load)h(balancing)0 +4111 y(purposes,)e(a)h(sla)n(v)o(e')-5 b(s)24 b(pieces)h(of)f(w)o(ork)h +(are)h(actually)e(distrib)n(uted)f(across)i(the)g(bottom)e(of)i(the)f +(master')-5 b(s)24 b(tree.)146 4310 y(It)31 b(is)g(interesting)f(to)h +(compare)g(APHID)h(against)e(a)h(synchronous)f(parallel)h(algorithm.)49 +b(Figure)31 b(4)g(illus-)0 4509 y(trates)22 b(graphically)f(where)i(w)o +(ork)f(is)f(allocated)h(o)o(v)o(er)f(the)h(course)g(of)h(a)f(typical)f +(APHID)i(and)f(YBWC*)h(search.)0 4709 y(Each)g(location)f(mark)o(ed)h +(with)f(an)h Fb(x)f Fu(sho)n(ws)g(where)h(the)g(parallelism)e +(typically)h(tak)o(es)h(place.)30 b(Although)21 b(more)0 +4908 y(parallelism)j(could)g(be)h(generated)h(in)e(YBWC*,)i(one)f(must) +f(be)h(careful)h(because)f(each)h Fb(x)e Fu(along)h(the)g(left)g(side)0 +5107 y(of)j(the)g(YBWC*)h(tree)f(represents)g(a)h(global)e +(synchronization)f(point,)i(and)g(the)g(rest)g(are)h(local)e +(synchroniza-)0 5306 y(tion)d(points.)1925 5589 y(8)p +eop +%%Page: 9 12 +9 11 bop 146 100 a Fu(In)23 b(APHID,)g(the)g(master)g(process)f(mak)o +(es)h(repeated)g(searches)g(or)g Fm(passes)f Fu(o)o(v)o(er)g(its)g +(part)h(of)g(the)g(game)f(tree.)0 299 y(The)k(master')-5 +b(s)25 b(tree)i(is)f(small)f(and)h(is)f(quickly)g(searched.)35 +b(The)27 b(master)e(is)h(responsible)f(for)h(ensuring)g(that)f(the)0 +498 y(sla)n(v)o(es)h(determine)g(all)g(of)g(the)h(minimax)e(v)n(alues)g +(required)i(to)f(get)g(a)h Fq(d)p Fu(-ply)f Fq(\013)q(\014)32 +b Fu(search)27 b(of)f(the)h(full)f(game)g(tree)0 697 +y(\002nished,)h(after)g(which)g(it)f(proceeds,)h(via)g(iterati)n(v)o(e) +e(deepening,)i(to)f(the)h(ne)o(xt)f(search)h(depth)f(repeatedly)h +(until)0 897 y(the)e(time)f(limit)f(e)o(xpires.)146 1096 +y(Each)28 b(sla)n(v)o(e)e(searches)h(its)f(pieces)h(of)g(w)o(ork)g +Fl(\()p Fq(d)d Fk(\000)g Fq(d)1968 1060 y Fp(0)1991 1096 +y Fl(\))j Fu(plies)f(deep,)i(plus)e(an)o(y)g(search)i(e)o(xtensions)d +(that)h(the)0 1295 y(master)j(requires.)45 b(If)30 b(APHID)g(were)g(a)g +(synchronous)e(algorithm,)h(the)g(sla)n(v)o(es)g(w)o(ould)f(\002nish)h +(their)h(w)o(ork)f(for)0 1494 y(the)23 b(master')-5 b(s)23 +b(depth)g Fq(d)g Fu(iteration,)f(and)i(then)f(w)o(ait)g(for)g(the)h(ne) +o(xt)e(iteration)h(\()p Fq(d)16 b Fl(+)h(1)p Fu(\))24 +b(to)f(be)o(gin.)29 b(APHID')-5 b(s)23 b(sla)n(v)o(es)0 +1694 y(do)g(not)h(sit)f(idle)g(w)o(aiting.)29 b(Instead,)24 +b(the)o(y)f(use)g(iterati)n(v)o(e)f(deepening)i(to)f(search)h(their)g +(w)o(ork)f(lists)g(an)g(additional)0 1893 y(ply)30 b(deeper)h(\(and)f +(be)o(yond,)h(if)f(there)h(is)f(time\))f(without)g(con\002rmation)h +(from)g(the)g(master)-5 b(.)47 b(Thus,)31 b(the)f(sla)n(v)o(es)0 +2092 y(attempt)c(to)h(determine)f(minimax)g(v)n(alues)g(that)h(may)f +(be)i(necessary)-6 b(,)27 b(in)g(anticipation)e(of)j(the)e(master)h +(process)0 2291 y(asking)g(for)h(them.)38 b(The)27 b(sla)n(v)o(es)g +(continue)g(searching)g(until)f(the)i(master)f(signals)f(that)h(the)h +(search)g(at)f(the)h(root)0 2491 y(of)d(the)g(tree)g(has)f(been)h +(terminated.)146 2690 y(By)39 b(partitioning)d(the)i(tree)h(in)f(this)f +(manner)l(,)k(APHID')-5 b(s)38 b(performance)h(does)f(not)g(rely)g(on)g +(the)g(imple-)0 2889 y(mentation)c(of)h(a)g(global)g(shared)g(memory)f +(or)h(a)h(f)o(ast)f(interconnection)f(netw)o(ork)g(between)h(the)g +(processes.)0 3088 y(This)25 b(mak)o(es)g(the)g(APHID)h(algorithm)e +(suitable)h(for)h(loosely-coupled)e(architectures)h(\(such)h(as)f(a)h +(netw)o(ork)f(of)0 3288 y(w)o(orkstations\),)e(as)i(well)g(as)f +(tightly-coupled)f(architectures.)146 3487 y(This)37 +b(section)f(contains)g(a)i(description)e(of)h(the)g(master)g(process)g +(\(Section)g(3.1\),)j(the)d(sla)n(v)o(e)f(processes)0 +3686 y(\(Section)g(3.3\),)i(and)d(the)h(APHID)g(table)f(through)g +(which)g(the)h(master)f(and)g(sla)n(v)o(e)g(communicate)g(\(Section)0 +3885 y(3.2\).)29 b(Balancing)19 b(the)h(w)o(ork)f(load)h(between)f(the) +h(sla)n(v)o(es)e(is)h(discussed)g(in)g(Section)h(3.4.)28 +b(The)20 b(interf)o(ace)g(between)0 4085 y(APHID)25 b(and)g(the)g +(application)e(is)i(described)f(in)h(Section)g(3.5.)0 +4380 y Fg(3.1)119 b(The)30 b(APHID)g(Master)0 4646 y +Fu(The)i(master)f(is)g(responsible)f(for)i(ensuring)f(that)g(the)h +(result)f(of)g(a)h Fq(d)p Fu(-ply)f(search)h(is)f(obtained.)51 +b(The)31 b(amount)0 4846 y(of)c(w)o(ork)g(retained)g(by)f(the)h(master) +l(,)g Fq(d)1329 4809 y Fp(0)1379 4846 y Fu(ply)-6 b(,)27 +b(is)f(automatically)g(determined)g(based)h(on)f(the)h(characteristics) +g(of)0 5045 y(the)f(search)g(tree)g(generated)h(for)f(the)g(root)f +(position)f(and)i(domain-dependent)f(information)f(pro)o(vided)h(by)g +(the)0 5244 y(user)-5 b(.)30 b(Further)25 b(details)g(on)f(the)h +(automatic)f(determination)f(of)i Fq(d)2246 5208 y Fp(0)2294 +5244 y Fu(can)g(be)g(found)f(else)n(where)h([2].)1925 +5589 y(9)p eop +%%Page: 10 13 +10 12 bop 146 100 a Fu(APHID)26 b(completes)d(a)j Fq(d)p +Fu(-ply)e Fq(\013)q(\014)30 b Fu(search)25 b(by)g(repeating)f(the)h +(follo)n(wing)e(steps:)120 407 y(1.)49 b(Ex)o(ecute)37 +b(a)h(quick)f(search)h(\(or)g Fm(pass)p Fu(\))f(of)h(the)f +Fq(d)1967 371 y Fp(0)1990 407 y Fu(-ply)g(tree)h(using)f(the)g +(application')-5 b(s)36 b(sequential)h Fq(\013)q(\014)244 +606 y Fu(algorithm)23 b(\(where)j Fq(d)1009 570 y Fp(0)1059 +606 y Fq(<)i(d)p Fu(\),)d(aided)f(by)h(a)g(transposition)e(table)h +(\(if)h(a)n(v)n(ailable\).)120 888 y(2.)49 b(If)25 b(the)g(search)g +(returns)g(an)g(accurate)g Fq(d)p Fu(-ply)f(v)n(alue,)h(then)f(e)o(xit) +g(the)h(loop.)120 1171 y(3.)49 b(Based)24 b(on)g(the)f(leaf)h(nodes)f +(visited)g(during)g(this)f(pass,)i(report)g(an)o(y)f(changes)g(to)h +(the)f(sla)n(v)o(es')g(w)o(ork)g(lists.)120 1453 y(4.)49 +b(W)-8 b(ait)24 b(for)i(ne)n(w)e(information)f(from)i(a)g(sla)n(v)o(e)f +(process.)120 1735 y(5.)49 b(Go)25 b(to)f(step)g(1.)146 +2042 y(The)32 b Fq(d)384 2006 y Fp(0)407 2042 y Fu(-ply)g(tree)h(is)e +(not)h(k)o(ept)g(in)f(memory)-6 b(.)51 b(Thus,)34 b(on)d(each)i(pass)f +(the)g(tree)g(is)g(tra)n(v)o(ersed)g(to)g(determine)0 +2242 y(an)o(y)g(changes)g(to)f(the)h(w)o(ork)g(required.)53 +b(The)32 b(tree)g(is)g(re)o(generated)g(on)g(each)h(pass)f(by)f(the)h +(application')-5 b(s)31 b Fq(\013)q(\014)0 2441 y Fu(algorithm)23 +b(and)i(transposition)e(table.)30 b(Since)c Fq(d)1668 +2405 y Fp(0)1715 2441 y Fu(is)f(usually)e(small,)h(the)h(cost)f(of)h(a) +g(pass)g(is)f(also)g(small.)146 2640 y(During)e(a)g(pass,)g(when)g(the) +g(master)f(reaches)i(a)f(leaf)h(of)f(the)f Fq(d)2263 +2604 y Fp(0)2286 2640 y Fu(-ply)h(tree,)h(an)f(e)n(v)n(aluation)e(of)i +(that)g(node)f(must)0 2839 y(be)h(done.)29 b(If)22 b(the)f(subtree)g +(underneath)g(that)g(node)g(\()p Fq(d)9 b Fk(\000)g Fq(d)1984 +2803 y Fp(0)2008 2839 y Fu(\))22 b(is)f(smaller)f(than)h +Fq(g)k Fu(ply)c(\(the)g Fm(minimum)g(gr)o(anularity)0 +3039 y Fu(for)j(a)h(piece)f(of)h(parallel)f(w)o(ork\),)g(then)g(the)g +(master)f(searches)i(the)f(remaining)f(\()p Fq(d)d Fk(\000)g +Fq(d)2979 3002 y Fp(0)3002 3039 y Fu(\))k(ply)g(itself.)30 +b(Otherwise,)0 3238 y(the)25 b(node)f(is)h(assigned)f(to)g(a)h(sla)n(v) +o(e)f(processor)-5 b(.)146 3437 y(Assuming)32 b(that)h(the)h(master)f +(does)g(not)g(search)h(the)f(tree)h(underneath)g(a)g(gi)n(v)o(en)e +(node)h(\()p Fq(g)47 b Fk(\024)e Fl(\()p Fq(d)28 b Fk(\000)h +Fq(d)3781 3401 y Fp(0)3804 3437 y Fl(\))p Fu(\),)0 3636 +y(APHID)c(must)f(determine)h(a)g(v)n(alue)f(with)g(respect)i(to)e(the)h +Fq(\013)q(\014)30 b Fu(search)c(windo)n(w)d(at)i(that)g(node)f(without) +g(further)0 3836 y(search.)60 b(F)o(or)35 b(e)o(xample,)h(an)f +Fq(\013)q(\014)40 b Fu(search)35 b(windo)n(w)e(of)h(\(0,5\))h(says)f +(that)g(the)h Fq(\013)q(\014)k Fu(algorithm)33 b(needs)i(to)f(kno)n(w)0 +4035 y(whether)e(the)g(node')-5 b(s)32 b(minimax)e(v)n(alue)i(is)g +Fk(\024)42 b Fl(0)p Fu(,)34 b Fk(\025)42 b Fl(5)p Fu(,)34 +b(or)e(the)g(e)o(xact)g(v)n(alue)g(if)g(it)g(lies)g(in)g(between)g(0)g +(and)g(5.)0 4234 y(W)l(ithout)23 b(kno)n(wing)h(which)g(case)h(is)g +(correct,)g(the)g Fq(\013)q(\014)30 b Fu(search)25 b(may)g(gi)n(v)o(e)e +(inaccurate)i(results.)146 4433 y(If)34 b(the)e(sla)n(v)o(e)h(has)f +(already)h(gi)n(v)o(en)f(the)g(master)h(a)g Fl(\()p Fq(d)28 +b Fk(\000)h Fq(d)2181 4397 y Fp(0)2204 4433 y Fl(\))p +Fu(-ply)j(search)h(result,)i(that)d(v)n(alue)g(is)h(used.)3740 +4397 y Fn(4)3834 4433 y Fu(If)0 4633 y(the)25 b Fl(\()p +Fq(d)d Fk(\000)h Fq(d)409 4596 y Fp(0)432 4633 y Fl(\))p +Fu(-ply)i(result)g(is)g(una)n(v)n(ailable)f(because)h(the)h(sla)n(v)o +(e)e(has)h(not)g(reached)h(that)f(depth)g(of)g(search,)h(or)f(the)0 +4832 y Fl(\()p Fq(d)e Fk(\000)h Fq(d)264 4796 y Fp(0)287 +4832 y Fl(\))p Fu(-ply)h(result)h(has)g(returned)h(a)f(bound)g(that)g +(yields)f(insuf)n(\002cient)g(information)g(on)h(the)g(minimax)f(v)n +(alue)0 5031 y(with)31 b(respect)i(to)f(the)g Fq(\013)q(\014)37 +b Fu(search)c(windo)n(w)-6 b(,)32 b(then)g(the)g(algorithm)e(guesses)i +(at)g(the)g(minimax)f(v)n(alue.)52 b(Going)p 0 5121 1560 +4 v 112 5182 a Fj(4)149 5212 y Fi(In)30 b(the)g(implementations)f +(presented)f(here,)k(the)e(deeper)f(ply)h(v)n(alues)g(are)g(not)f(used) +h(e)n(v)o(en)f(if)i(the)o(y)e(are)h(a)n(v)n(ailable.)54 +b(This)31 b(is)0 5312 y(discussed)20 b(in)g(Section)g(4.)1900 +5589 y Fu(10)p eop +%%Page: 11 14 +11 13 bop 0 100 a Fu(back)36 b(to)f(our)h(earlier)g(e)o(xample,)i(a)e +(v)n(alue)f(of)h Fk(\024)49 b Fl(10)35 b Fu(does)g(not)h(yield)f +(useful)g(information)f(at)i(a)g(node)g(with)0 299 y(an)d +Fq(\013)q(\014)39 b Fu(search)33 b(windo)n(w)f(of)h(\(0,5\),)i(hence)f +(a)f(guessed)g(v)n(alue)f(for)h(this)f(node)h(w)o(ould)g(be)g(used)f +(until)g(a)i(sla)n(v)o(e)0 498 y(could)24 b(return)h(better)f +(information.)30 b(An)o(y)23 b(node)i(where)g(APHID)g(has)g(to)f(guess) +g(at)h(the)f(v)n(alue)g(is)h(mark)o(ed)f(as)h(an)0 697 +y Fm(uncertain)f Fu(node.)146 897 y(F)o(or)j(uncertain)g(nodes,)g +(information)e(gathered)i(from)g(both)f(pre)n(vious)f(searches)j(and)f +(the)f(current)i(search)0 1096 y(is)23 b(used)g(to)f(determine)h(a)h +(guessed)e(v)n(alue.)30 b(The)23 b(guessed)g(v)n(alue)f(is)h(chosen)g +(so)g(that)f(it)h(will)f(not)h(alter)g(the)g(shape)0 +1295 y(or)e(ordering)g(of)h(mo)o(v)o(es)d(within)h(the)h(game)g(tree)g +(until)f(ne)n(w)h(information)f(is)h(recei)n(v)o(ed)g(from)g(a)g(sla)n +(v)o(e)g(processor)-5 b(.)0 1494 y(Details)24 b(of)h(the)g(guessed)f +(score)h(algorithm)e(are)j(pro)o(vided)e(in)g(Appendix)g(A.)146 +1694 y(As)c(minimax)f(v)n(alues)g(get)i(back)o(ed)f(up)g(the)g +Fq(d)1681 1657 y Fp(0)1704 1694 y Fu(-ply)g(tree)h(during)e(the)h +(search,)i(the)e(master)g(maintains)f(a)i(count)0 1893 +y(of)26 b(ho)n(w)f(man)o(y)g(uncertain)h(nodes)f(ha)n(v)o(e)h(been)g(e) +n(v)n(aluated.)33 b(When)26 b(the)g(master)g(has)g(no)f(uncertain)h(e)n +(v)n(aluations)0 2092 y(in)e(its)g Fq(d)272 2056 y Fp(0)295 +2092 y Fu(-ply)h(tree,)g(the)g(v)n(alue)f(of)h(the)f(complete)h +Fq(d)p Fu(-ply)f(tree)h(is)f(accurate,)i(and)f(APHID)g(e)o(xits)f(the)g +(loop.)146 2291 y(Sometimes,)f(the)g Fl(\()p Fq(d)17 +b Fk(\000)g Fq(d)1034 2255 y Fp(0)1056 2291 y Fl(\))p +Fu(-ply)23 b(result)g(may)g(be)g(insuf)n(\002cient)f(for)i(the)f +(master)g(to)g(determine)g(the)g(minimax)0 2491 y(v)n(alue.)47 +b(A)30 b(further)h(search)g(at)f(the)h(same)f(depth,)h(with)f(a)g(dif)n +(ferent)g(search)h(windo)n(w)-6 b(,)30 b(is)g(required)h(when)f(this)0 +2690 y(happens.)k(The)26 b(master)f(sends)h(a)g(message)g(to)f(the)h +(sla)n(v)o(e)g(responsible)e(for)j(searching)f(the)f(node)h(that)g(it)f +(needs)0 2889 y(to)31 b(re-e)o(x)o(ecute)g(the)h(search)g(with)e(a)i +(re)n(vised)f(search)h(windo)n(w)-6 b(.)49 b(The)31 b(sla)n(v)o(e)g +(will)g(e)n(v)o(entually)e(return)j(updated)0 3088 y(information)23 +b(that)g(is)h(consistent)e(with)i(both)f(the)h(original)f(information)f +(and)i(the)g(search)h(windo)n(w)d(requested.)146 3288 +y(APHID)e(solv)o(es)e(one)h(of)g(the)g(problems)f(that)h(synchronous)f +(algorithms)f(ha)n(v)o(e)i(with)f(respect)h(to)g(initializing)0 +3487 y(parallelism)33 b(incorrectly)h(at)g(a)g(potential)f(CUT)h(node.) +58 b(Most)33 b(synchronous)g(algorithms)f(use)i(application-)0 +3686 y(dependent)j(information)g(to)g(determine)h(when)g(to)f(initiate) +g(parallelism.)69 b(By)38 b(using)f(the)h(guessed)f(scores)0 +3885 y(when)d(accurate)h(information)d(is)h(not)h(a)n(v)n(ailable,)h +(the)f(APHID)g(algorithm)e(automatically)h(determines)g(if)h(a)0 +4085 y(subsequent)26 b(child)h(is)g(lik)o(ely)g(to)g(generate)h(a)g +(cut-of)n(f)g(at)f(a)h(f)o(ailed)g(CUT)g(node.)38 b(Nodes)28 +b(which)f(are)h(pruned)f(by)0 4284 y(the)f(master)l(,)g(using)f(either) +h(real)g(or)g(guessed)g(scores,)g(are)h(not)e(searched)i(by)f(the)f +(sla)n(v)o(es.)34 b(If)26 b(it)g(seems)f(unlik)o(ely)0 +4483 y(that)g(the)f(node)h(will)f(be)h(pruned)g(\(e.g.)31 +b(due)25 b(to)g(lo)n(w)f(real/guessed)h(v)n(alues\),)f(then)g(all)h +(children)g(are)g(visited)f(and)0 4682 y(the)e(w)o(ork)h(w)o(ould)e(be) +i(initiated)e(in)h(parallel.)30 b(This)22 b(is)g(all)g(handled)g +(implicitly)e(in)i(an)h(application-independent)0 4882 +y(w)o(ay)i(by)f(the)h Fq(\013)q(\014)30 b Fu(routine.)1900 +5589 y(11)p eop +%%Page: 12 15 +12 14 bop 978 0 a + 15345564 14208860 8420065 17234821 28417720 35653713 startTexFig + 978 0 a +%%BeginDocument: pics/aphid-snapshot.ps + +/arrowHeight 10 def +/arrowWidth 5 def + +/IdrawDict 51 dict def +IdrawDict begin + +/reencodeISO { +dup dup findfont dup length dict begin +{ 1 index /FID ne { def }{ pop pop } ifelse } forall +/Encoding ISOLatin1Encoding def +currentdict end definefont +} def + +/ISOLatin1Encoding [ +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright +/parenleft/parenright/asterisk/plus/comma/minus/period/slash +/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon +/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N +/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright +/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m +/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/dotlessi/grave/acute/circumflex/tilde/macron/breve +/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut +/ogonek/caron/space/exclamdown/cent/sterling/currency/yen/brokenbar +/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot +/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior +/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine +/guillemotright/onequarter/onehalf/threequarters/questiondown +/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla +/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex +/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis +/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute +/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis +/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave +/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex +/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis +/yacute/thorn/ydieresis +] def +/Helvetica reencodeISO def + +/none null def +/numGraphicParameters 17 def +/stringLimit 65535 def + +/Begin { +save +numGraphicParameters dict begin +} def + +/End { +end +restore +} def + +/SetB { +dup type /nulltype eq { +pop +false /brushRightArrow idef +false /brushLeftArrow idef +true /brushNone idef +} { +/brushDashOffset idef +/brushDashArray idef +0 ne /brushRightArrow idef +0 ne /brushLeftArrow idef +/brushWidth idef +false /brushNone idef +} ifelse +} def + +/SetCFg { +/fgblue idef +/fggreen idef +/fgred idef +} def + +/SetCBg { +/bgblue idef +/bggreen idef +/bgred idef +} def + +/SetF { +/printSize idef +/printFont idef +} def + +/SetP { +dup type /nulltype eq { +pop true /patternNone idef +} { +dup -1 eq { +/patternGrayLevel idef +/patternString idef +} { +/patternGrayLevel idef +} ifelse +false /patternNone idef +} ifelse +} def + +/BSpl { +0 begin +storexyn +newpath +n 1 gt { +0 0 0 0 0 0 1 1 true subspline +n 2 gt { +0 0 0 0 1 1 2 2 false subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 2 copy false subspline +} if +n 2 sub dup n 1 sub dup 2 copy 2 copy false subspline +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Circ { +newpath +0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/CBSpl { +0 begin +dup 2 gt { +storexyn +newpath +n 1 sub dup 0 0 1 1 2 2 true subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 0 0 false subspline +n 2 sub dup n 1 sub dup 0 0 1 1 false subspline +patternNone not { ifill } if +brushNone not { istroke } if +} { +Poly +} ifelse +end +} dup 0 4 dict put def + +/Elli { +0 begin +newpath +4 2 roll +translate +scale +0 0 1 0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 1 dict put def + +/Line { +0 begin +2 storexyn +newpath +x 0 get y 0 get moveto +x 1 get y 1 get lineto +brushNone not { istroke } if +0 0 1 1 leftarrow +0 0 1 1 rightarrow +end +} dup 0 4 dict put def + +/MLine { +0 begin +storexyn +newpath +n 1 gt { +x 0 get y 0 get moveto +1 1 n 1 sub { +/i exch def +x i get y i get lineto +} for +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Poly { +3 1 roll +newpath +moveto +-1 add +{ lineto } repeat +closepath +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/Rect { +0 begin +/t exch def +/r exch def +/b exch def +/l exch def +newpath +l b moveto +l t lineto +r t lineto +r b lineto +closepath +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 4 dict put def + +/Text { +ishow +} def + +/idef { +dup where { pop pop pop } { exch def } ifelse +} def + +/ifill { +0 begin +gsave +patternGrayLevel -1 ne { +fgred bgred fgred sub patternGrayLevel mul add +fggreen bggreen fggreen sub patternGrayLevel mul add +fgblue bgblue fgblue sub patternGrayLevel mul add setrgbcolor +eofill +} { +eoclip +originalCTM setmatrix +pathbbox /t exch def /r exch def /b exch def /l exch def +/w r l sub ceiling cvi def +/h t b sub ceiling cvi def +/imageByteWidth w 8 div ceiling cvi def +/imageHeight h def +bgred bggreen bgblue setrgbcolor +eofill +fgred fggreen fgblue setrgbcolor +w 0 gt h 0 gt and { +l b translate w h scale +w h true [w 0 0 h neg 0 h] { patternproc } imagemask +} if +} ifelse +grestore +end +} dup 0 8 dict put def + +/istroke { +gsave +brushDashOffset -1 eq { +[] 0 setdash +1 setgray +} { +brushDashArray brushDashOffset setdash +fgred fggreen fgblue setrgbcolor +} ifelse +brushWidth setlinewidth +originalCTM setmatrix +stroke +grestore +} def + +/ishow { +0 begin +gsave +fgred fggreen fgblue setrgbcolor +/fontDict printFont printSize scalefont dup setfont def +/descender fontDict begin 0 [FontBBox] 1 get FontMatrix end +transform exch pop def +/vertoffset 1 printSize sub descender sub def { +0 vertoffset moveto show +/vertoffset vertoffset printSize sub def +} forall +grestore +end +} dup 0 3 dict put def +/patternproc { +0 begin +/patternByteLength patternString length def +/patternHeight patternByteLength 8 mul sqrt cvi def +/patternWidth patternHeight def +/patternByteWidth patternWidth 8 idiv def +/imageByteMaxLength imageByteWidth imageHeight mul +stringLimit patternByteWidth sub min def +/imageMaxHeight imageByteMaxLength imageByteWidth idiv patternHeight idiv +patternHeight mul patternHeight max def +/imageHeight imageHeight imageMaxHeight sub store +/imageString imageByteWidth imageMaxHeight mul patternByteWidth add string def +0 1 imageMaxHeight 1 sub { +/y exch def +/patternRow y patternByteWidth mul patternByteLength mod def +/patternRowString patternString patternRow patternByteWidth getinterval def +/imageRow y imageByteWidth mul def +0 patternByteWidth imageByteWidth 1 sub { +/x exch def +imageString imageRow x add patternRowString putinterval +} for +} for +imageString +end +} dup 0 12 dict put def + +/min { +dup 3 2 roll dup 4 3 roll lt { exch } if pop +} def + +/max { +dup 3 2 roll dup 4 3 roll gt { exch } if pop +} def + +/midpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 x1 add 2 div +y0 y1 add 2 div +end +} dup 0 4 dict put def + +/thirdpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 2 mul x1 add 3 div +y0 2 mul y1 add 3 div +end +} dup 0 4 dict put def + +/subspline { +0 begin +/movetoNeeded exch def +y exch get /y3 exch def +x exch get /x3 exch def +y exch get /y2 exch def +x exch get /x2 exch def +y exch get /y1 exch def +x exch get /x1 exch def +y exch get /y0 exch def +x exch get /x0 exch def +x1 y1 x2 y2 thirdpoint +/p1y exch def +/p1x exch def +x2 y2 x1 y1 thirdpoint +/p2y exch def +/p2x exch def +x1 y1 x0 y0 thirdpoint +p1x p1y midpoint +/p0y exch def +/p0x exch def +x2 y2 x3 y3 thirdpoint +p2x p2y midpoint +/p3y exch def +/p3x exch def +movetoNeeded { p0x p0y moveto } if +p1x p1y p2x p2y p3x p3y curveto +end +} dup 0 17 dict put def + +/storexyn { +/n exch def +/y n array def +/x n array def +n 1 sub -1 0 { +/i exch def +y i 3 2 roll put +x i 3 2 roll put +} for +} def + +/SSten { +fgred fggreen fgblue setrgbcolor +dup true exch 1 0 0 -1 0 6 -1 roll matrix astore +} def + +/FSten { +dup 3 -1 roll dup 4 1 roll exch +newpath +0 0 moveto +dup 0 exch lineto +exch dup 3 1 roll exch lineto +0 lineto +closepath +bgred bggreen bgblue setrgbcolor +eofill +SSten +} def + +/Rast { +exch dup 3 1 roll 1 0 0 -1 0 6 -1 roll matrix astore +} def + + +/arrowhead { +0 begin +transform originalCTM itransform +/taily exch def +/tailx exch def +transform originalCTM itransform +/tipy exch def +/tipx exch def +/dy tipy taily sub def +/dx tipx tailx sub def +/angle dx 0 ne dy 0 ne or { dy dx atan } { 90 } ifelse def +gsave +originalCTM setmatrix +tipx tipy translate +angle rotate +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +patternNone not { +originalCTM setmatrix +/padtip arrowHeight 2 exp 0.25 arrowWidth 2 exp mul add sqrt brushWidth mul +arrowWidth div def +/padtail brushWidth 2 div def +tipx tipy translate +angle rotate +padtip 0 translate +arrowHeight padtip add padtail add arrowHeight div dup scale +arrowheadpath +ifill +} if +brushNone not { +originalCTM setmatrix +tipx tipy translate +angle rotate +arrowheadpath +istroke +} if +grestore +end +} dup 0 9 dict put def + +/arrowheadpath { +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +} def + +/leftarrow { +0 begin +y exch get /taily exch def +x exch get /tailx exch def +y exch get /tipy exch def +x exch get /tipx exch def +brushLeftArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + +/rightarrow { +0 begin +y exch get /tipy exch def +x exch get /tipx exch def +y exch get /taily exch def +x exch get /tailx exch def +brushRightArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + + +%I Idraw 10 Grid 6 6 + + +Begin +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 0.799705 0 0 0.799705 0 0 ] concat +/originalCTM matrix currentmatrix def + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 5.99997 0 ] concat + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 342 674 ] concat +%I +[ +(Master) +] Text +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 8 26 ] concat + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 315 543.5 ] concat +%I +[ +(1) +] Text +End + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +80 224 12 12 Elli +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -4 26 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +128 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 339 543.5 ] concat +%I +[ +(2) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -10 26 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +164 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 357 544 ] concat +%I +[ +(3) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -16 26 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +200 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 375 544 ] concat +%I +[ +(4) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -22 26 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +236 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 393 544 ] concat +%I +[ +(5) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 104 26 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +32 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 291 543.5 ] concat +%I +[ +(7) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -28 26 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +272 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 411 544 ] concat +%I +[ +(6) +] Text +End + +End %I eop + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +68 260 164 452 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +68 260 272 260 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +164 452 272 260 Line +%I 2 +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -71.5 99 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +308 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 428.5 544 ] concat +%I +[ +(R) +] Text +End + +End %I eop + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 284 612.5 ] concat +%I +[ +(d') +] Text +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 226 395 ] concat +%I +148 518 100 518 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 226 395 ] concat +%I +148 326 100 326 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 226 395 ] concat +%I +124 446 124 506 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 226 395 ] concat +%I +124 410 124 338 Line +%I 2 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 18 -24 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +128 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 339 543.5 ] concat +%I +[ +(2) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 84 -24 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +164 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 357 544 ] concat +%I +[ +(3) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -108 -24 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +200 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 375 544 ] concat +%I +[ +(4) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 0 -24 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +236 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 393 544 ] concat +%I +[ +(5) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 66 -24 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +272 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 411 544 ] concat +%I +[ +(6) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -84 -24 ] concat + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 315 543.5 ] concat +%I +[ +(1) +] Text +End + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +80 224 12 12 Elli +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 12 -24 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +32 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 291 543.5 ] concat +%I +[ +(7) +] Text +End + +End %I eop + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.458861 0 0 0.489848 235.544 397.7 ] concat +%I +232 170 388 266 Rect +End + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.815325 0 0 0.489848 236.845 397.7 ] concat +%I +232 170 364 266 Rect +End + +Begin %I Line +%I b 65520 +1 0 0 [12 4] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1.21519 0 0 0.046875 83.0438 492.703 ] concat +%I +100 241 376 241 Line +%I 1 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 162 515 ] concat +%I +[ +(APHID) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 162 503 ] concat +%I +[ +(Table) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 222 497 ] concat +%I +[ +(-1/4) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 258 497 ] concat +%I +[ +(+2/3) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 297.5 497 ] concat +%I +[ +(?/0) +] Text +End + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 148 395 ] concat +%I +136 170 352 266 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 348 497 ] concat +%I +[ +(+5/5) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 468 497 ] concat +%I +[ +(+1/3) +] Text +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +140 331 98 217 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +140 331 170 235 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +98 217 110 229 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +110 229 116 217 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +116 217 122 247 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +122 247 140 235 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +140 235 146 247 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +146 247 152 229 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +152 229 158 247 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +158 247 170 235 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +288 398 204 194 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +204 194 240 218 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +240 218 252 230 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +252 230 264 218 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +264 218 276 182 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +276 182 288 206 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +288 206 300 230 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +300 230 312 206 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +312 206 324 230 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +288 398 348 230 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +324 230 348 230 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +188 248 212 284 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +212 284 236 248 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +236 248 248 296 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +248 296 272 260 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +272 260 284 296 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +284 296 308 272 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +308 272 320 296 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +260 464 320 296 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 338 230 ] concat +%I +260 464 188 248 Line +%I 2 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 246 341 ] concat +%I +[ +(Slave 1) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 354 341 ] concat +%I +[ +(Slave 2) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 444 341 ] concat +%I +[ +(Slave 3) +] Text +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 35.5 -97.5 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +128 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 339 543.5 ] concat +%I +[ +(2) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 54 -97 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +272 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 411 544 ] concat +%I +[ +(6) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -24.5 -99 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +32 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 291 543.5 ] concat +%I +[ +(7) +] Text +End + +End %I eop + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 130 296 ] concat +%I +100 320 148 320 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 130 296 ] concat +%I +100 164 148 164 Line +%I 2 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 180.5 421.5 ] concat +%I +[ +(d-d') +] Text +End + +Begin %I Line +%I b 65535 +1 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 130 296 ] concat +%I +124 224 124 176 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 130 296 ] concat +%I +124 260 124 308 Line +%I 2 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 384 497 ] concat +%I +[ +(+4/5) +] Text +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 60 -36 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 362 ] concat +%I +356 380 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 453 555.5 ] concat +%I +[ +(8) +] Text +End + +End %I eop + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 504 497 ] concat +%I +[ +(-3/1) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 432 497 ] concat +%I +[ +(<0/4) +] Text +End + +End %I eop + +showpage + + +end +%%EndDocument + + endTexFig + 893 2003 a Fu(Figure)25 b(5:)30 b(A)25 b(Snapshot)f(of)h(APHID)g +(Search)h(in)f(Operation)0 2291 y Fg(3.2)119 b(The)30 +b(APHID)g(T)-11 b(able)0 2557 y Fu(If)35 b(a)g(leaf)h(node)e(is)h +(visited)e(by)i(the)g(master)f(for)h(the)g(\002rst)g(time,)h(it)f(is)f +(allocated)g(to)h(a)g(sla)n(v)o(e)f(process.)61 b(This)0 +2756 y(information)33 b(is)i(recorded)g(in)g(the)f Fm(APHID)h(table)f +Fu(that)h(is)f(shared)h(by)f(all)h(processes.)61 b(Figure)35 +b(5)f(sho)n(ws)g(an)0 2956 y(e)o(xample)24 b(of)h(ho)n(w)f(the)g(APHID) +i(table)e(w)o(ould)g(be)h(or)n(ganized)g(at)g(a)g(gi)n(v)o(en)e(point)h +(in)g(time.)146 3155 y(The)k(table)f(is)g(replicated)h(on)f(the)g +(master)g(and)h(sla)n(v)o(e)f(processes.)38 b(Ho)n(we)n(v)o(er)l(,)27 +b(each)h(sla)n(v)o(e)f(only)g(kno)n(ws)f(of)0 3354 y(the)i(entries)h +(rele)n(v)n(ant)e(to)h(it)g(within)f(the)i(table.)41 +b(F)o(or)29 b(e)o(xample,)f(in)g(Figure)h(5,)g(sla)n(v)o(e)f(1)g(only)g +(kno)n(ws)f(about)h(the)0 3553 y(entries)23 b(for)h(1,)f(4)g(and)g(7.) +30 b(The)24 b(master)l(,)f(which)g(is)g(responsible)f(for)h(distrib)n +(uting)e(the)i(w)o(ork)g(to)g(all)g(of)h(its)e(sla)n(v)o(es,)0 +3753 y(has)j(copies)f(of)h(e)n(v)o(ery)f(table)h(entry)-6 +b(.)146 3952 y(The)39 b(master)f(and)h(sla)n(v)o(e)f(only)g(read)h +(their)f(local)h(copies)f(of)h(the)f(information;)44 +b(there)39 b(are)g(no)g(e)o(xplicit)0 4151 y(messages)19 +b(sent)h(between)g(them)f(asking)g(for)h(information.)28 +b(The)20 b(entries)f(in)h(the)g(APHID)g(table)g(are)g(partitioned)0 +4350 y(into)k(tw)o(o)g(parts:)30 b(one)25 b(which)f(only)g(the)g +(master)h(can)g(write)f(to,)g(and)h(one)g(which)f(only)g(the)g(sla)n(v) +o(e)g(that)g(has)h(been)0 4550 y(assigned)i(that)g(piece)h(of)g(w)o +(ork)g(can)g(write)g(to.)39 b(An)o(y)27 b(attempt)f(to)i(write)f(into)g +(the)h(table)f(generates)h(a)g(message)0 4749 y(that)c(informs)g(the)h +(master)f(or)h(sla)n(v)o(e)f(process)h(to)f(update)h(its)f(replicated)h +(cop)o(y)f(of)h(the)g(table)f(entry)-6 b(.)146 4948 y(The)33 +b(master')-5 b(s)32 b(half)h(of)g(the)g(table)g(is)g(illustrated)e(abo) +o(v)o(e)h(the)h(dashed)g(line)f(in)h(Figure)g(5.)55 b(F)o(or)33 +b(each)h(leaf)0 5147 y(visited)26 b(by)i(the)f(master)l(,)h(there)g(is) +f(an)g(entry)h(in)f(the)g(APHID)h(table.)39 b(Information)27 +b(maintained)f(on)h(the)h(lea)n(v)o(es)1900 5589 y(12)p +eop +%%Page: 13 16 +13 15 bop 0 100 a Fu(includes)20 b(the)g(mo)o(v)o(es)f(required)i(to)f +(generate)h(the)f(leaf)h(positions)e(from)h(the)g(root)h +Fb(R)p Fu(,)f(the)g(approximate)g(location)0 299 y(of)27 +b(the)f(leaf)i(in)e(the)h(tree)g(\(which)f(is)h(used)f(by)h(the)f(sla)n +(v)o(e)g(to)h(prioritize)f(w)o(ork\),)h(whether)g(this)e(leaf)j(w)o(as) +e(visited)0 498 y(on)e(the)g(last)f(pass)h(that)g(the)g(master)g(e)o(x) +o(ecuted,)f(and)h(the)g(number)f(of)i(the)f(sla)n(v)o(e)f(that)h(the)g +(leaf)g(w)o(as)g(assigned)g(to.)146 697 y(In)32 b(our)f(e)o(xample,)i +(roughly)d(the)i(same)f(number)g(of)h(lea)n(v)o(es)f(ha)n(v)o(e)g(been) +h(allocated)f(to)g(each)h(sla)n(v)o(e.)50 b(Note)0 897 +y(that)22 b(there)h(is)g(an)g(additional)e(leaf,)j(8,)f(that)f(is)g +(not)g(represented)i(in)e(the)h(master')-5 b(s)21 b Fq(d)2862 +860 y Fp(0)2885 897 y Fu(-ply)i(search)g(tree.)31 b(This)22 +b(leaf)0 1096 y(node)i(w)o(as)g(visited)f(on)h(a)g(pre)n(vious)f(pass)h +(by)g(the)g(master)l(,)g(b)n(ut)f(w)o(as)h(not)g(visited)f(on)h(the)g +(latest)f(pass.)30 b(Ho)n(we)n(v)o(er)l(,)0 1295 y(the)e(information)e +(that)h(the)h(sla)n(v)o(e)f(has)h(generated)g(about)f(this)g(node)h +(may)f(be)h(needed)g(in)g(a)g(later)g(pass,)g(and)g(is)0 +1494 y(not)23 b(deleted)g(from)g(the)g(table.)30 b(Lea)n(v)o(es)23 +b(are)h(initially)d(allocated)i(to)g(the)g(sla)n(v)o(es)f(in)h(a)h +(round-robin)e(manner)l(,)h(and)0 1694 y(may)h(mo)o(v)o(e)g(due)h(to)f +(load)g(balancing)h(\(as)g(described)f(in)h(Section)g(3.4\).)146 +1893 y(The)i(sla)n(v)o(e')-5 b(s)25 b(part)h(of)h(the)f(table)g(\(the)g +(area)h(belo)n(w)f(the)g(dashed)g(line\))g(contains)g(information)f(on) +h(the)g(min-)0 2092 y(imax)31 b(v)n(alue)g(at)g(v)n(arious)g(depths)f +(of)i(search.)51 b(The)32 b(best)f(information)f(\(with)h(respect)h(to) +f(search)h(depth\))f(and)0 2291 y(the)e(ply)g(to)g(which)g(the)h(leaf)g +(w)o(as)f(e)o(xamined)g(is)g(gi)n(v)o(en)f(underneath)h(each)h(leaf)g +(node.)45 b(F)o(or)29 b(leaf)h(1,)g(the)g(score)0 2491 +y(returned)i(is)f(-1)h(with)f(a)h(search)g(depth)f(of)h(4.)51 +b(Leaf)33 b(3)e(illustrates)g(that)g(the)g(score)h(information)f +(returned)g(by)0 2690 y(the)25 b(sla)n(v)o(e)f(may)h(not)g(al)o(w)o +(ays)g(be)g(an)g(e)o(xact)g(number)-5 b(.)31 b(The)25 +b(sla)n(v)o(es)f(maintain)g(upper)h(and)g(lo)n(wer)f(bounds)g(on)h(the) +0 2889 y(minimax)g(v)n(alue)h(of)h(each)h(node)e(for)h(each)h(ply)e(of) +h(search)g(depth.)2306 2853 y Fn(5)2382 2889 y Fu(This)f(information)f +(is)i(determined)f(by)g(the)0 3088 y(minimax)31 b(v)n(alue)h(returned)h +(and)g(the)g(search)g(windo)n(w)f(used)g(by)h(the)g(sla)n(v)o(e.)54 +b(F)o(or)33 b(simplicity)-6 b(,)32 b(only)g(a)h(single)0 +3288 y(bound)24 b(is)g(sho)n(wn.)146 3487 y(The)32 b(APHID)f(table)g +(data)h(structure)e(must)g(support)h(tw)o(o)f(time)h(critical)g +(operations:)42 b(\002nding)31 b(a)h(node)e(in)0 3686 +y(the)i(table,)i(and)e(adding)f(a)h(node)g(to)g(the)g(table.)52 +b(Hence,)35 b(the)d(APHID)g(table)g(has)g(been)g(implemented)f(as)h(an) +0 3885 y(e)o(xtendible)f(hash)g(table.)52 b(Applications)31 +b(that)g(w)o(ould)g(use)h(APHID)h(generally)f(ha)n(v)o(e)f(a)i +(transposition)d(table;)0 4085 y(the)21 b(transposition)e(table)i +(hashing)g(function)f(can)i(also)f(be)h(used)f(to)g(\002nd)g(and)g(add) +h(lea)n(v)o(es)e(to)h(the)h(APHID)f(table.)0 4380 y Fg(3.3)119 +b(The)30 b(APHID)g(Sla)m(v)o(e)0 4646 y Fu(A)20 b(sla)n(v)o(e)f +(process)g(essentially)f(e)o(x)o(ecutes)h(the)g(same)h(code)f(that)h(a) +f(sequential)g Fq(\013)q(\014)25 b Fu(searcher)c(w)o(ould.)28 +b(The)19 b(sla)n(v)o(e')-5 b(s)0 4846 y(main)24 b(loop)g(simply)f +(repeats)i(the)g(follo)n(wing)e(steps)h(until)g(the)g(master)h(tells)f +(it)g(that)g(the)h(search)g(is)g(complete:)p 0 4935 1560 +4 v 112 4996 a Fj(5)149 5027 y Fi(Note)c(that)f(tw)o(o)g(bounds)f(may)h +(be)g(needed.)j(A)e(search)f(may)g(return)f(an)h(upper)f(bound)f(on)i +(a)g(score.)25 b(That)20 b(node)f(may)h(ha)n(v)o(e)f(to)i(be)0 +5126 y(re-searched)e(to)i(get)g(more)e(information)g(on)h(its)i(score.) +k(The)21 b(second)e(search)i(may)f(return)g(a)h(lo)n(wer)f(bound)f +(that)i(is)g(good)f(enough)e(to)0 5226 y(cause)i(a)h(cutof)n(f.)1900 +5589 y Fu(13)p eop +%%Page: 14 17 +14 16 bop 120 100 a Fu(1.)49 b(Look)24 b(in)h(its)f(local)g(cop)o(y)h +(of)g(the)f(APHID)i(table)e(and)h(\002nd)g(the)f(best)h(node)f(to)h +(search.)120 382 y(2.)49 b(Ex)o(ecute)24 b(the)h(search.)120 +664 y(3.)49 b(Report)25 b(the)g(result)f(back)h(to)f(the)h(master)f +(\(fetching)h(an)o(y)f(update)h(to)f(its)g(APHID)i(table)e(in)h +(return\).)120 946 y(4.)49 b(Go)25 b(to)f(step)g(1.)146 +1254 y(A)g(sla)n(v)o(e)f(chooses)g(the)h(\223best\224)f(node)h(based)f +(on)h(tw)o(o)f(criteria:)30 b(the)24 b(depth)f(to)g(which)g(the)h(node) +f(has)h(already)0 1453 y(been)35 b(searched)g(by)g(the)f(sla)n(v)o(e,)j +(and)d(the)h(node')-5 b(s)34 b(\223priority\224)g(within)f(the)i +(search)g(tree.)61 b(The)35 b(\002rst)f(criterion)0 1652 +y(ensures)28 b(that)g(all)h(pieces)f(of)h(w)o(ork)f(are)h(searched)h +(to)e(equal)g(depths.)41 b(Nodes)28 b(searched)h(to)f(shallo)n(wer)g +(depths)0 1851 y(are)f(preferred)h(o)o(v)o(er)e(those)g(searched)i(to)e +(deeper)i(depths,)e(because)h(the)o(y)f(represent)h(more)g(w)o(ork)f +(to)h(be)f(done.)0 2051 y(In)j(Figure)g(5,)g(sla)n(v)o(e)g(1)f(has)h +(master)f(leaf)i(nodes)e(1,)i(4)e(and)h(7,)h(and)e(the)o(y)g(ha)n(v)o +(e)h(been)g(searched)g(to)g(depths)f(4,)h(3)0 2250 y(and)23 +b(0,)f(respecti)n(v)o(ely)-6 b(.)28 b(Thus,)23 b(sla)n(v)o(e)f(1)g(is)g +(attempting)f(to)h(search)h(leaf)g(7)g(to)f(1)g(ply)-6 +b(,)22 b(and)h(will)f(continue)f(to)i(search)0 2449 y(leaf)i(7)g(up)f +(to)h(3)g(ply)f(using)g(iterati)n(v)o(e)f(deepening,)h(if)h(no)g(ne)n +(w)f(high-priority)f(w)o(ork)i(arri)n(v)o(es)f(from)g(the)h(master)-5 +b(.)146 2648 y(The)33 b(second)e(criterion)h(is)g(the)g(location)f(of)i +(the)f(node)g(within)f(the)h(master')-5 b(s)31 b(latest)h(pass)f(o)o(v) +o(er)h(the)g(tree.)0 2848 y(Children)e(of)g(nodes)g(are)h(usually)e +(considered)h(in)g(a)g(best-to-w)o(orst)f(ordering,)i(implying)d(that)i +(the)g(left-most)0 3047 y(branches)g(at)f(a)h(node)f(are)h(less)f(lik)o +(ely)f(to)h(be)h(pruned)f(than)g(the)g(right-most)e(ones.)44 +b(F)o(or)30 b(sla)n(v)o(e)e(2)i(in)f(Figure)g(5,)0 3246 +y(lea)n(v)o(es)i(2)h(and)f(5)h(ha)n(v)o(e)f(both)g(been)g(searched)h +(to)g(5)f(ply)-6 b(,)32 b(b)n(ut)f(leaf)h(2)f(is)g(being)g(searched)i +(to)e(6)g(ply)g(since)h(it)f(is)0 3445 y(further)25 b(left)g(in)f(the)h +(tree)g(than)f(leaf)i(5.)146 3645 y(Unfortunately)-6 +b(,)27 b(maintaining)f(a)i(complete)f(ordering)h(of)g(each)g(leaf)g(in) +g(the)f(master')-5 b(s)27 b Fq(d)3251 3609 y Fp(0)3274 +3645 y Fu(-ply)h(tree)g(can)g(be)0 3844 y(e)o(xpensi)n(v)o(e.)33 +b(Thus,)25 b(APHID)i(uses)f(a)g(priority)f(scheme)h(to)g(gi)n(v)o(e)f +(an)h(approximation)e(of)j(the)f(second)g(criterion.)0 +4043 y(The)k(formula)f(for)h(the)g(priority)f(is)g(as)h(follo)n(ws:)39 +b(F)o(or)30 b(each)g(principal)f(v)n(ariation)g(node)h(that)f(lies)g +(on)h(the)f(path)0 4242 y(from)d(the)h(root)f(of)h(the)f(tree)h(to)f +(the)h(node)f(in)h(question,)e(four)i(points)e(are)j(added)e(to)g(the)h +(node')-5 b(s)26 b(priority)-6 b(.)34 b(T)-8 b(w)o(o)0 +4442 y(points)25 b(are)i(gi)n(v)o(en)e(to)g(the)h(node')-5 +b(s)26 b(priority)f(if)h(it)g(is)g(considered)g(to)g(be)g(part)g(of)g +(the)h(critical)f(tree.)35 b(The)26 b(priority)0 4641 +y(scheme)k(ensures)g(that)g(the)g(search)h(proceeds)f(in)g(a)h(roughly) +e(left-to-right)g(manner)l(,)j(and)e(that)g(nodes)f(within)0 +4840 y(the)e(critical)f(tree)h(are)h(preferred)f(o)o(v)o(er)f(nodes)g +(that)h(might)e(not)h(be)h(e)n(v)n(aluated.)35 b(Ev)o(ery)26 +b(node)h(visited)e(in)h(a)h(pass)0 5039 y(of)c(the)g(game)g(tree)h(by)f +(the)g(master)f(gets)h(at)h(least)e(4)i(points,)e(since)h(the)g(root)g +(is)f(part)i(of)f(the)g(principal)f(v)n(ariation.)0 5239 +y(Nodes)i(that)g(are)h(not)f(touched)g(on)g(the)g(master')-5 +b(s)24 b(latest)g(pass)g(of)g(the)g(game)g(tree)h(are)g(gi)n(v)o(en)e +(a)i(priority)e(of)i(zero.)1900 5589 y(14)p eop +%%Page: 15 18 +15 17 bop 146 100 a Fu(A)21 b(node)g(with)f(zero)h(priority)f(will)g +(ne)n(v)o(er)g(be)h(selected)g(for)g(further)g(search)g(by)f(a)i(sla)n +(v)o(e.)28 b(F)o(or)21 b(sla)n(v)o(e)f(3,)i(notice)0 +299 y(that)h(leaf)g(8)h(has)f(been)g(searched)h(pre)n(viously)-6 +b(,)21 b(b)n(ut)i(not)f(on)h(the)g(last)g(pass.)30 b(This)22 +b(leaf)i(is)f(ignored)f(by)h(the)g(sla)n(v)o(e')-5 b(s)0 +498 y(w)o(ork)25 b(selection)f(algorithm)f(because)i(it)g(is)f(not)g +(currently)h(part)g(of)f(the)h(master')-5 b(s)24 b(tree.)146 +697 y(If)e(there)g(are)g(nodes)g(that)f(must)f(be)i(searched)g(for)g +(the)f(current)h(iteration)f(of)g(the)h(master)l(,)g(the)f(node)g(with) +g(the)0 897 y(highest)27 b(priority)h(is)g(al)o(w)o(ays)g(scheduled)g +(until)g(it)g(has)g(been)h(searched)g(to)f(the)h(requisite)e(depth.)42 +b(This)27 b(allo)n(ws)0 1096 y(the)g(master')-5 b(s)26 +b(de)n(v)o(elopment)f(of)i(the)g(search)g(tree)h(to)e(proceed)h(in)g +(an)g(orderly)g(manner)-5 b(.)37 b(When)27 b(all)f(nodes)h(at)g(a)0 +1295 y(sla)n(v)o(e)d(ha)n(v)o(e)h(been)g(searched)h(to)f(the)f(master') +-5 b(s)25 b(required)g(depth,)f(the)h(nodes)g(at)g(the)g(lo)n(west)e +(search)j(depth)e(ha)n(v)o(e)0 1494 y(their)h(search)g(e)o(xtended,)f +(with)g(priority)g(v)n(alues)g(as)h(a)g(secondary)f(consideration.)146 +1694 y(Before)32 b(a)f(search)g(can)g(be)f(e)o(x)o(ecuted,)h(an)g +Fq(\013)q(\014)36 b Fu(search)31 b(windo)n(w)e(must)g(be)i(generated)g +(by)f(the)g(sla)n(v)o(e.)47 b(The)0 1893 y(windo)n(w)29 +b(selection)g(algorithm)g(is)g(application-dependent.)46 +b(The)30 b(general-purpose)g(windo)n(w)f(selection)g(al-)0 +2092 y(gorithm)i(used)h(by)f(the)h(applications)f(in)h(this)f(paper)i +(in)l(v)n(olv)o(ed)d(centering)i(the)g(search)h(windo)n(w)d(around)i +(the)0 2291 y(probable)c(minimax)e(v)n(alue)i(of)g(the)g(game)g(tree.) +41 b(The)28 b(search)g(windo)n(w)f(w)o(as)h(made)g(slightly)f(lar)n +(ger)h(to)g(re\003ect)0 2491 y(the)f(amount)e(of)i(uncertainty)f(in)h +(the)f(probable)h(minimax)e(v)n(alue.)36 b(Further)27 +b(details)f(on)h(the)f(algorithm)g(can)h(be)0 2690 y(found)d(in)h +(Appendix)f(B.)0 2985 y Fg(3.4)119 b(Load)30 b(Balancing)0 +3252 y Fu(Although)21 b(the)i(master)g(attempts)f(to)g(gi)n(v)o(e)g(an) +h(equal)g(amount)f(of)h(w)o(ork)f(to)h(each)g(sla)n(v)o(e)g(in)f +(APHID,)i(neither)e(the)0 3451 y(master)h(nor)h(the)f(sla)n(v)o(e)g +(can)h(predict)f(the)h(amount)e(of)i(ef)n(fort)f(required)h(to)f +(complete)g(a)h Fl(\()p Fq(d)17 b Fk(\000)h Fq(d)3261 +3415 y Fp(0)3284 3451 y Fl(\))p Fu(-ply)23 b(search)h(for)0 +3650 y(a)h(gi)n(v)o(en)e(piece)j(of)e(w)o(ork.)31 b(Thus,)24 +b(load)g(imbalances)h(can)g(occur)-5 b(.)146 3849 y(As)22 +b(part)g(of)g(a)g(pass)f(of)h(the)g Fq(d)1120 3813 y +Fp(0)1143 3849 y Fu(-ply)f(tree,)i(the)f(master)f(computes)g(ho)n(w)g +(man)o(y)g(uncertain)g(nodes)g(it)h(is)f(w)o(aiting)0 +4049 y(for)i(from)g(each)h(sla)n(v)o(e.)29 b(The)23 b(master)g(can)g +(mo)o(v)o(e)e(lea)n(v)o(es)i(of)g(the)g Fq(d)2258 4012 +y Fp(0)2281 4049 y Fu(-ply)f(tree)i(from)e(an)i Fm(o)o(verwork)o(ed)f +(slave)g Fu(\(with)0 4248 y(a)g(lar)n(ge)g(number)f(of)h(uncertain)f +(nodes\))g(to)g(an)h Fm(underwork)o(ed)g(slave)f Fu(\(with)g(no)g +(uncertain)h(nodes\).)29 b(This)22 b(yields)0 4447 y(a)39 +b(tradeof)n(f)g(between)g(f)o(aster)g(con)l(v)o(er)n(gence)g(for)g(a)g +(gi)n(v)o(en)f(ply)g(search)h(of)g(the)g(tree)g(and)g(additional)f +(search)0 4646 y(o)o(v)o(erhead,)31 b(since)f(the)g(pre)n(vious)f +(searches)i(for)f(the)g(piece)h(of)f(w)o(ork)g(to)g(be)h(mo)o(v)o(ed)d +(must)i(be)g(re-searched)h(on)0 4846 y(another)25 b(processor)-5 +b(.)146 5045 y(The)39 b(load-balancing)e(algorithm)g(al)o(w)o(ays)h +(attempts)f(to)h(strip)g(pieces)g(of)h(w)o(ork)f(a)o(w)o(ay)g(from)g +(the)g(most)0 5244 y(o)o(v)o(erw)o(ork)o(ed)c(sla)n(v)o(e.)60 +b(The)35 b(algorithm)e(prefers)j(to)e(tak)o(e)h(pieces)g(of)g(w)o(ork)g +(that)f(are)i(small,)g(since)f(the)o(y)f(lead)1900 5589 +y(15)p eop +%%Page: 16 19 +16 18 bop 0 100 a Fu(to)30 b(less)f(duplicated)g(w)o(ork.)47 +b(The)30 b(\002rst)g(uncertain)g(node)f(encountered)h(for)h(each)f(sla) +n(v)o(e)g(during)f(a)h(pass)g(is)g(not)0 299 y(considered)c(for)g +(load-balancing)f(purposes,)g(since)h(it)f(is)h(lik)o(ely)f(being)g +(searched)i(by)e(that)h(sla)n(v)o(e)f(at)h(this)f(time.)0 +498 y(Another)f(stipulation)f(is)h(that)g(the)h(same)f(piece)h(of)g(w)o +(ork)g(cannot)f(be)h(mo)o(v)o(ed)e(twice)h(in)h(a)g(ro)n(w;)f(this)f +(pre)n(v)o(ents)h(a)0 697 y(v)o(ery)g(small)g(piece)h(of)g(w)o(ork)g +(from)f(being)h(passed)f(from)h(process)g(to)f(process.)146 +897 y(Another)i(cause)h(of)f(a)h(load)f(imbalance)g(is)g(a)g(piece)h +(of)f(w)o(ork)g(that)g(is)g(much)g(lar)n(ger)h(than)f(the)g(other)g +(pieces)0 1096 y(of)k(w)o(ork.)47 b(F)o(or)30 b(e)o(xample,)h(the)f +(search)h(tree)f(for)h(a)g(node)f(along)f(the)h(principal)g(v)n +(ariation)f(is)h(generally)g(much)0 1295 y(lar)n(ger)39 +b(than)f(the)g(last)g(subtrees)g(e)o(xamined)f(during)h(a)h(sequential) +e(search.)72 b(When)38 b(there)h(is)f(such)g(a)h(lar)n(ge)0 +1494 y(piece)d(of)f(w)o(ork,)j(multiple)33 b(processes)i(should)f +(participate)h(in)g(computing)e(the)j(minimax)d(v)n(alue.)62 +b(Thus,)37 b(a)0 1694 y(mechanism)27 b(is)g(needed)i(for)f(breaking)g +(a)g(lar)n(ge)g(piece)h(of)f(w)o(ork)g(into)f(a)h(number)g(of)g +(smaller)f(pieces)h(that)g(can)0 1893 y(be)35 b(distrib)n(uted)e(\(via) +i(the)g(load-balancing)f(algorithm\))g(to)g(other)h(processes.)61 +b(This)34 b(can)h(be)g(accomplished)0 2092 y(by)e(mo)o(ving)e(the)i +(master')-5 b(s)32 b(parallelization)g(horizon)h(deeper)h(within)e(the) +h(tree)g(for)h(a)f(lar)n(ge)h(piece)f(of)g(w)o(ork.)0 +2291 y(This)c(allo)n(ws)f(the)h(master)g(to)g(subdi)n(vide)f(a)i +(single)e(piece)i(of)g(w)o(ork)f(into)g(man)o(y)f(smaller)h(pieces.)45 +b(It)29 b(could)g(be)0 2491 y(said)f(that)h(the)f(lar)n(ge)h(piece)h +(of)e(w)o(ork)h(is)f Fm(e)n(xempted)h Fu(from)g(the)g(parallelization)e +(horizon)i(at)f Fq(d)3283 2455 y Fp(0)3306 2491 y Fu(-ply)-6 +b(.)42 b(Note)29 b(that)0 2690 y(ne)n(w)c(pieces)h(of)g(w)o(ork)g +(created)g(from)f(e)o(x)o(emptions)f(can)i(also)f(be)h(e)o(x)o(empted.) +32 b(Thus,)25 b(Figure)h(4)g(is)f(misleading;)0 2889 +y(APHID)g(parallelism)f(does)g(not)h(necessarily)f(occur)h(at)g(the)g +(same)f(depth)h(in)f(the)h(tree.)146 3088 y(The)32 b(master)f(is)g +(responsible)g(for)h(determining)e(the)i(pieces)f(of)h(w)o(ork)f(to)h +(be)g(e)o(x)o(empted.)49 b(It)32 b(bases)f(these)0 3288 +y(decisions)22 b(on)g(the)g(sla)n(v)o(e')-5 b(s)22 b(feedback)h(on)f +(the)h(ef)n(fort)f(required)h(to)f(search)h(each)g(piece)g(of)g(w)o +(ork)f(\(subtree)h(size\).)0 3487 y(Periodically)-6 b(,)35 +b(the)f(master)g(determines)f(the)h(lar)n(gest)g(pieces)g(of)g(w)o(ork) +g(that)g(ha)n(v)o(e)f(been)h(e)o(xplored)g(recently)-6 +b(,)0 3686 y(along)22 b(with)g(the)h(a)n(v)o(erage)g(size)g(of)g(each)h +(piece)f(of)g(w)o(ork.)30 b(If)23 b(the)g(size)g(of)g(the)f(lar)n(gest) +h(piece)g(of)g(w)o(ork)g(is)f Fq(v)27 b Fu(times)0 3885 +y(the)f(size)g(of)g(the)g(a)n(v)o(erage)g(piece)g(of)g(w)o(ork,)h(the)e +(lar)n(gest)h(piece)h(of)f(w)o(ork)f(is)h(subdi)n(vided)e(in)h(future)h +(searches.)35 b Fq(v)0 4085 y Fu(is)24 b(an)h(application-dependent)f +(parameter)h(in)f(APHID.)146 4284 y(The)38 b(nature)h(of)f(the)g +Fq(\013)q(\014)43 b Fu(algorithm)37 b(does)h(not)f(guarantee)i(that)e +(man)o(y)g(more)h(w)o(ork)g(granules)g(will)f(be)0 4483 +y(created)27 b(if)g(the)f(search)h(horizon)f(is)g(e)o(xtended)g(by)g(a) +h(single)f(ply)-6 b(.)34 b(F)o(or)27 b(e)o(xample,)f(if)g(the)h(node)f +(to)g(be)h(e)o(x)o(empted)0 4682 y(is)h(a)g(CUT)h(node,)g(then)f(the)g +(search)g(will)g(lik)o(ely)f(generate)i(a)f(single)g(ALL)g(node.)40 +b(When)29 b(APHID)f(e)o(x)o(empts)f(a)0 4882 y(lar)n(ge)i(piece)f(of)g +(w)o(ork,)h(the)f(horizon)g(is)f(e)o(xtended)h(by)g(2)g(ply)f(to)h +(guarantee)h(that)e(the)h(w)o(ork)g(will)g(be)g(split)f(into)0 +5081 y(multiple)c(pieces.)1900 5589 y(16)p eop +%%Page: 17 20 +17 19 bop 0 100 a Fg(3.5)119 b(Exter)n(nal)30 b(Interface)g(of)f(the)h +(APHID)g(Algorithm)0 366 y Fu(The)25 b(APHID)g(algorithm)f(has)h(been)g +(written)f(as)h(an)g(application-independent)e(library)h(of)h(C)h +(routines)e(\(using)0 565 y(PVM)37 b(for)g(process)g(communication)f +([4]\).)68 b(It)37 b(w)o(as)g(designed)f(to)h(pro)o(vide)f(minimal)f +(interv)o(ention)h(into)g(a)0 765 y(w)o(orking)29 b(v)o(ersion)f(of)i +(sequential)e Fq(\013)q(\014)6 b Fu(.)44 b(F)o(or)30 +b(a)g(program)f(to)g(use)g(the)h(library)-6 b(,)29 b(a)h(fe)n(w)g +(application-dependent)0 964 y(routines)22 b(\(such)h(as)h(mo)o(v)o(e)d +(format,)i(ho)n(w)g(to)g(mak)o(e/unmak)o(e)f(mo)o(v)o(es,)f(setting)h +(a)i(windo)n(w)e(for)h(a)h(sla)n(v)o(e')-5 b(s)22 b(search,)0 +1163 y Fm(etc)p Fu(.\))39 b(must)27 b(be)h(written)e(so)i(that)f(APHID) +h(can)g(access)g(the)f(required)h(information)e(without)g(ha)n(ving)h +(to)g(kno)n(w)0 1362 y(the)e(data)g(structures)f(used)g(in)h(the)f +(application.)146 1562 y(T)-8 b(o)25 b(parallelize)f(a)h(sequential)e +Fq(\013)q(\014)30 b Fu(program,)24 b(the)g(user)h(modi\002es)e(their)i +(search)g(routine)e(as)i(sho)n(wn)e(in)h(Fig-)0 1761 +y(ure)h(6.)32 b(The)25 b(changes)g(required)g(by)g(APHID)h(are)g(mark)o +(ed)f(by)g(shading,)f(and)h(easily)f(\002t)i(into)e(the)h(standard)g +Fq(\013)q(\014)0 1960 y Fu(frame)n(w)o(ork.)42 b(This)28 +b(one)h(piece)g(of)g(code)g(functions)e(as)i(the)g(search)g(algorithm)e +(for)i(both)f(the)h(master)g(and)f(the)0 2159 y(sla)n(v)o(e)22 +b(processes.)30 b(The)22 b Fb(aphid)p 1144 2159 30 4 +v 35 w(master)f Fu(routine)h(identi\002es)g(whether)h(the)f(process)h +(is)f(a)h(master)f(or)h(a)g(sla)n(v)o(e.)0 2359 y(The)j(master)f(uses)h +Fb(aphid)p 976 2359 V 34 w(horizon)f Fu(to)g(tell)g(if)h(it)f(is)h(at)f +(a)i(leaf)f(node)f(in)h(its)f(tree.)34 b(Since)26 b(games)f(are)h +(played)0 2558 y(under)31 b(real-time)g(constraints,)g +Fb(aphid)p 1444 2558 V 35 w(checkalarm)e Fu(is)i(periodically)f(called) +h(to)g(check)h(whether)f(there)0 2757 y(is)i(a)h(reason)g(to)g(abort)f +(the)h(search.)58 b Fb(Aphid)p 1621 2757 V 35 w(intnode)p +2076 2757 V 34 w(start)33 b Fu(and)h Fb(aphid)p 2921 +2757 V 35 w(intnode)p 3376 2757 V 34 w(end)f Fu(tell)g(the)0 +2956 y(master)27 b(that)g(a)h(search)g(is)f(be)o(ginning/ending)e(for)j +(this)e(interior)h(node.)39 b(Which)27 b(searching)h(an)f(interior)g +(node,)0 3156 y Fb(aphid)p 306 3156 V 35 w(intmnode)p +821 3156 V 34 w(move)18 b Fu(k)o(eeps)h(track)g(of)g(which)f(mo)o(v)o +(e)f(is)i(being)f(searched,)j(and)d Fb(aphid)p 3359 3156 +V 35 w(intnode)p 3814 3156 V 34 w(update)0 3355 y Fu(records)25 +b(the)g(v)n(alue)f(of)h(the)g(search.)146 3554 y(In)32 +b(addition)e(to)i(the)f(abo)o(v)o(e,)h(approximately)e(10)i(lines)f(of) +g(code)h(ha)n(v)o(e)f(to)h(be)f(added)h(outside)f(of)g(the)h +Fq(\013)q(\014)0 3753 y Fu(algorithm)25 b(to)g(allo)n(w)g(APHID)i(to)f +(mak)o(e)g(the)g(sequential)f(program)h(into)f(a)h(parallel)g(program.) +35 b(More)26 b(speci\002c)0 3953 y(information)d(on)i(each)g(of)g(the)g +Fb(aphid)p 1388 3953 V 59 w Fu(functions)f(and)h(call-back)g(routines)f +(can)h(be)g(found)f(else)n(where)h([2].)146 4152 y(Other)31 +b(parallel)f Fq(\013)q(\014)6 b Fu(-based)30 b(algorithms)f(require)i +(signi\002cant)f(changes)h(to)f(the)g(sequential)g(search)h(algo-)0 +4351 y(rithms)24 b(used)i(in)f(practice.)34 b(If)26 b(the)f(search)i +(algorithm)d(has)i(been)f(designed)g(without)g(re)o(gard)g(for)h +(multitasking)0 4550 y(or)f(a)f(speci\002c)h(parallel)g(model,)e(inte)o +(grating)g(a)i(parallel)f(algorithm)f(into)h(the)g(code)h(can)f(be)h(a) +g(signi\002cant)f(task.)0 4750 y(By)33 b(using)e(the)h(sequential)f +(algorithm)g(and)h(call-back)h(functions)e(to)h(the)g(user')-5 +b(s)31 b(code)i(whene)n(v)o(er)f(possible,)0 4949 y(APHID)25 +b(represents)f(a)g(signi\002cant)g(decrease)h(in)e(the)h(ef)n(fort)g +(required)h(to)e(achie)n(v)o(e)h(a)g(w)o(orking)g(parallel)g(game-)0 +5148 y(tree)h(search)h(program)e(o)o(v)o(er)g(its)g(synchronous)g +(counterparts.)1900 5589 y(17)p eop +%%Page: 18 21 +18 20 bop 789 188 a + 18334146 37416636 11972280 9472573 28220375 42626580 startTexFig + 789 188 a +%%BeginDocument: pics/aphidcode-alphabeta.ps +%Magnification: 0.50 +/$F2psDict 200 dict def +$F2psDict begin +$F2psDict /mtrx matrix put +/col-1 {0 setgray} bind def +/col0 {0.000 0.000 0.000 srgb} bind def +/col1 {0.000 0.000 1.000 srgb} bind def +/col2 {0.000 1.000 0.000 srgb} bind def +/col3 {0.000 1.000 1.000 srgb} bind def +/col4 {1.000 0.000 0.000 srgb} bind def +/col5 {1.000 0.000 1.000 srgb} bind def +/col6 {1.000 1.000 0.000 srgb} bind def +/col7 {1.000 1.000 1.000 srgb} bind def +/col8 {0.000 0.000 0.560 srgb} bind def +/col9 {0.000 0.000 0.690 srgb} bind def +/col10 {0.000 0.000 0.820 srgb} bind def +/col11 {0.530 0.810 1.000 srgb} bind def +/col12 {0.000 0.560 0.000 srgb} bind def +/col13 {0.000 0.690 0.000 srgb} bind def +/col14 {0.000 0.820 0.000 srgb} bind def +/col15 {0.000 0.560 0.560 srgb} bind def +/col16 {0.000 0.690 0.690 srgb} bind def +/col17 {0.000 0.820 0.820 srgb} bind def +/col18 {0.560 0.000 0.000 srgb} bind def +/col19 {0.690 0.000 0.000 srgb} bind def +/col20 {0.820 0.000 0.000 srgb} bind def +/col21 {0.560 0.000 0.560 srgb} bind def +/col22 {0.690 0.000 0.690 srgb} bind def +/col23 {0.820 0.000 0.820 srgb} bind def +/col24 {0.500 0.190 0.000 srgb} bind def +/col25 {0.630 0.250 0.000 srgb} bind def +/col26 {0.750 0.380 0.000 srgb} bind def +/col27 {1.000 0.500 0.500 srgb} bind def +/col28 {1.000 0.630 0.630 srgb} bind def +/col29 {1.000 0.750 0.750 srgb} bind def +/col30 {1.000 0.880 0.880 srgb} bind def +/col31 {1.000 0.840 0.000 srgb} bind def + +end +save +151.5 664.0 translate +1 -1 scale + +/cp {closepath} bind def +/ef {eofill} bind def +/gr {grestore} bind def +/gs {gsave} bind def +/sa {save} bind def +/rs {restore} bind def +/l {lineto} bind def +/m {moveto} bind def +/rm {rmoveto} bind def +/n {newpath} bind def +/s {stroke} bind def +/sh {show} bind def +/slc {setlinecap} bind def +/slj {setlinejoin} bind def +/slw {setlinewidth} bind def +/srgb {setrgbcolor} bind def +/rot {rotate} bind def +/sc {scale} bind def +/sd {setdash} bind def +/ff {findfont} bind def +/sf {setfont} bind def +/scf {scalefont} bind def +/sw {stringwidth} bind def +/tr {translate} bind def +/tnt {dup dup currentrgbcolor + 4 -2 roll dup 1 exch sub 3 -1 roll mul add + 4 -2 roll dup 1 exch sub 3 -1 roll mul add + 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} + bind def +/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul + 4 -2 roll mul srgb} bind def +/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def +/$F2psEnd {$F2psEnteredState restore end} def + +$F2psBegin +10 setmiterlimit +n 0 792 m 0 0 l 612 0 l 612 792 l cp clip + 0.03000 0.03000 sc +% Polyline +n 1150 5445 m 9150 5445 l 9150 5645 l 1150 5645 l cp gs 0.90 setgray ef gr +% Polyline +n 1150 7245 m 9150 7245 l 9150 7845 l 1150 7845 l cp gs 0.90 setgray ef gr +% Polyline +n 1150 8645 m 9150 8645 l 9150 9445 l 1150 9445 l cp gs 0.90 setgray ef gr +% Polyline +n 1150 10045 m 9150 10045 l 9150 10245 l 1150 10245 l cp gs 0.90 setgray ef gr +% Polyline +n 1150 10645 m 9150 10645 l 9150 10845 l 1150 10845 l cp gs 0.90 setgray ef gr +% Polyline +n 1150 12645 m 9150 12645 l 9150 12845 l 1150 12845 l cp gs 0.90 setgray ef gr +% Polyline +n 1150 14645 m 9150 14645 l 9150 14845 l 1150 14845 l cp gs 0.90 setgray ef gr +7.500 slw +% Polyline +n 1050 575 m 9250 575 l 9250 17300 l 1050 17300 l cp gs col-1 s gr +/Courier ff 180.00 scf sf +1500 1400 m +gs 1 -1 sc (int numOfSuccessors;) col-1 sh gr +/Courier ff 180.00 scf sf +1500 1600 m +gs 1 -1 sc (int gamma;) col-1 sh gr +/Courier ff 180.00 scf sf +1500 1800 m +gs 1 -1 sc (int i;) col-1 sh gr +/Courier ff 180.00 scf sf +1500 2000 m +gs 1 -1 sc (int sc;) col-1 sh gr +/Courier ff 180.00 scf sf +1500 2200 m +gs 1 -1 sc (int under;) col-1 sh gr +/Courier ff 180.00 scf sf +9000 1800 m +gs 1 -1 sc (/* move counter */) dup sw pop neg 0 rm col-1 sh gr +/Courier ff 180.00 scf sf +9000 2000 m +gs 1 -1 sc (/* score returned by search */) dup sw pop neg 0 rm col-1 sh gr +/Courier ff 180.00 scf sf +9000 2200 m +gs 1 -1 sc (/* alpha for move to be searched */) dup sw pop neg 0 rm col-1 sh gr +/Courier ff 180.00 scf sf +9000 2400 m +gs 1 -1 sc (/* beta for move to be searched */) dup sw pop neg 0 rm col-1 sh gr +/Courier ff 180.00 scf sf +1500 4400 m +gs 1 -1 sc (/* Generate hash value and key for this position */) col-1 sh gr +/Courier ff 180.00 scf sf +1500 4800 m +gs 1 -1 sc (/* Fetch information from transposition table */) col-1 sh gr +/Courier ff 180.00 scf sf +1500 5600 m +gs 1 -1 sc (if \(aphid_master\(\) == FALSE && h_length >= plytogo\) {) col-1 sh gr +/Courier ff 180.00 scf sf +1800 5800 m +gs 1 -1 sc (if \(flag == VALID\) { return\(h_score\); }) col-1 sh gr +/Courier ff 180.00 scf sf +1800 6000 m +gs 1 -1 sc (if \(flag == LBOUND\) { alpha = max\(alpha,h_score\); }) col-1 sh gr +/Courier ff 180.00 scf sf +1800 6200 m +gs 1 -1 sc (if \(flag == UBOUND\) { beta = min\(beta,h_score\); }) col-1 sh gr +/Courier ff 180.00 scf sf +1800 6400 m +gs 1 -1 sc (if \(alpha >= beta\) { return\(h_score\); }) col-1 sh gr +/Courier ff 180.00 scf sf +1500 6600 m +gs 1 -1 sc (}) col-1 sh gr +/Courier ff 180.00 scf sf +1500 7000 m +gs 1 -1 sc (/* Evaluate position if at bottom of tree */) col-1 sh gr +/Courier ff 180.00 scf sf +1500 5400 m +gs 1 -1 sc (/* If we have searched position deep enough, use score info */) col-1 sh gr +/Courier ff 180.00 scf sf +1500 7200 m +gs 1 -1 sc (if \(plytogo == 0\) { return\(Evaluate\(p\)\); }) col-1 sh gr +/Courier ff 180.00 scf sf +1500 4600 m +gs 1 -1 sc (generate_hash\(p, p_hash, p_key\);) col-1 sh gr +/Courier ff 180.00 scf sf +1500 5000 m +gs 1 -1 sc (retrieve\(p_hash, p_key, p_entry, h_length, h_score, h_flag, h_move\);) col-1 sh gr +/Courier ff 180.00 scf sf +1500 7400 m +gs 1 -1 sc (if \(aphid_horizon\(depth, plytogo, p_hash, p_key\) == TRUE\) {) col-1 sh gr +/Courier ff 180.00 scf sf +1800 7600 m +gs 1 -1 sc (return\(aphid_eval_leaf\(alpha, beta, depth, plytogo, p_hash, p_key\)\);) col-1 sh gr +/Courier ff 180.00 scf sf +1500 7800 m +gs 1 -1 sc (}) col-1 sh gr +/Courier ff 180.00 scf sf +1500 8200 m +gs 1 -1 sc (/* Generate move list, evaluate position if no moves */) col-1 sh gr +/Courier ff 180.00 scf sf +1500 8400 m +gs 1 -1 sc (numOfSuccessors = GenerateSuccessors\(p\);) col-1 sh gr +/Courier ff 180.00 scf sf +1500 8600 m +gs 1 -1 sc (if \(numOfSuccessors == 0\) { return\(Evaluate\(p\)\); }) col-1 sh gr +/Courier ff 180.00 scf sf +1500 8800 m +gs 1 -1 sc (if \(aphid_checkalarm\(FALSE\) != FALSE\) {) col-1 sh gr +/Courier ff 180.00 scf sf +1800 9000 m +gs 1 -1 sc (terminate_search = TRUE;) col-1 sh gr +/Courier ff 180.00 scf sf +1500 9400 m +gs 1 -1 sc (}) col-1 sh gr +/Courier ff 180.00 scf sf +1500 10000 m +gs 1 -1 sc (under = alpha; over = beta;) col-1 sh gr +/Courier ff 180.00 scf sf +1500 10200 m +gs 1 -1 sc (aphid_intnode_start\(depth, p_hash, p_key\);) col-1 sh gr +/Courier ff 180.00 scf sf +1800 11800 m +gs 1 -1 sc (if \(sc > under && i > 1 && sc < beta && plytogo > 2\) {) col-1 sh gr +/Courier ff 180.00 scf sf +2100 12000 m +gs 1 -1 sc (sc = -AlphaBeta\(p,-beta,-sc,plytogo-1\);) col-1 sh gr +/Courier ff 180.00 scf sf +1800 11600 m +gs 1 -1 sc (/* Is a research necessary? */) col-1 sh gr +/Courier ff 180.00 scf sf +1800 11400 m +gs 1 -1 sc (sc = -AlphaBeta\(p,-over,-under,plytogo-1\);) col-1 sh gr +/Courier ff 180.00 scf sf +1800 10800 m +gs 1 -1 sc (aphid_intnode_move\(depth, &\(movelist[i]\)\);) col-1 sh gr +/Courier ff 180.00 scf sf +1800 11000 m +gs 1 -1 sc (make_move\(p, movelist[i]\);) col-1 sh gr +/Courier ff 180.00 scf sf +1500 3000 m +gs 1 -1 sc (char *p_hash;) col-1 sh gr +/Courier ff 180.00 scf sf +1500 3200 m +gs 1 -1 sc (char *p_key;) col-1 sh gr +/Courier ff 180.00 scf sf +1500 3400 m +gs 1 -1 sc (int h_length;) col-1 sh gr +/Courier ff 180.00 scf sf +1500 3600 m +gs 1 -1 sc (int h_score;) col-1 sh gr +/Courier ff 180.00 scf sf +1500 3800 m +gs 1 -1 sc (int h_flag;) col-1 sh gr +/Courier ff 180.00 scf sf +1500 2800 m +gs 1 -1 sc (char *p_entry;) col-1 sh gr +/Courier ff 180.00 scf sf +9000 2800 m +gs 1 -1 sc (/* pointer to physical location of TT entry */) dup sw pop neg 0 rm col-1 sh gr +/Courier ff 180.00 scf sf +9000 3000 m +gs 1 -1 sc (/* pointer to hash value */) dup sw pop neg 0 rm col-1 sh gr +/Courier ff 180.00 scf sf +9000 3200 m +gs 1 -1 sc (/* pointer to hash table lock */) dup sw pop neg 0 rm col-1 sh gr +/Courier ff 180.00 scf sf +9000 3400 m +gs 1 -1 sc (/* ply position previously searched to */) dup sw pop neg 0 rm col-1 sh gr +/Courier ff 180.00 scf sf +9000 3600 m +gs 1 -1 sc (/* score at h_length ply from TT */) dup sw pop neg 0 rm col-1 sh gr +/Courier ff 180.00 scf sf +9000 3800 m +gs 1 -1 sc (/* type of score \(VALID, LBOUND or UBOUND\) */) dup sw pop neg 0 rm col-1 sh gr +/Courier ff 180.00 scf sf +9000 4000 m +gs 1 -1 sc (/* recommended move from TT */) dup sw pop neg 0 rm col-1 sh gr +/Courier ff 180.00 scf sf +1500 4000 m +gs 1 -1 sc (move h_move;) col-1 sh gr +/Courier ff 180.00 scf sf +1500 2400 m +gs 1 -1 sc (int over;) col-1 sh gr +/Courier ff 180.00 scf sf +1500 2600 m +gs 1 -1 sc (move move_opt;) col-1 sh gr +/Courier ff 180.00 scf sf +9000 2600 m +gs 1 -1 sc (/* current best move */) dup sw pop neg 0 rm col-1 sh gr +/Courier ff 180.00 scf sf +1800 12800 m +gs 1 -1 sc (aphid_intnode_update\(depth, value\);) col-1 sh gr +/Courier ff 180.00 scf sf +1500 1200 m +gs 1 -1 sc (move movelist[MAX_LEGAL_MOVES];) col-1 sh gr +/Courier ff 180.00 scf sf +9000 1200 m +gs 1 -1 sc (/* ordered list of all moves */) dup sw pop neg 0 rm col-1 sh gr +/Courier ff 180.00 scf sf +9000 1400 m +gs 1 -1 sc (/* total number of moves in movelist[] */) dup sw pop neg 0 rm col-1 sh gr +/Courier ff 180.00 scf sf +9000 1600 m +gs 1 -1 sc (/* current best minimax value */) dup sw pop neg 0 rm col-1 sh gr +/Courier ff 180.00 scf sf +1500 10600 m +gs 1 -1 sc (for\(i=1; \(i <= numOfSuccessors && score <= beta\); i++\) {) col-1 sh gr +/Courier ff 180.00 scf sf +1800 14000 m +gs 1 -1 sc (/* set window for next child */) col-1 sh gr +/Courier ff 180.00 scf sf +1800 14200 m +gs 1 -1 sc (under = max\(gamma, alpha\); over = under + 1;) col-1 sh gr +/Courier ff 180.00 scf sf +1500 14400 m +gs 1 -1 sc (}) col-1 sh gr +/Courier ff 180.00 scf sf +1500 15200 m +gs 1 -1 sc (/* Write information into transposition table */) col-1 sh gr +/Courier ff 180.00 scf sf +1800 13000 m +gs 1 -1 sc (if \(sc > gamma\) {) col-1 sh gr +/Courier ff 180.00 scf sf +2100 13200 m +gs 1 -1 sc (gamma = sc;) col-1 sh gr +/Courier ff 180.00 scf sf +2100 13400 m +gs 1 -1 sc (move_opt = movelist[i];) col-1 sh gr +/Courier ff 180.00 scf sf +1800 13600 m +gs 1 -1 sc (}) col-1 sh gr +/Courier ff 180.00 scf sf +1500 9800 m +gs 1 -1 sc (gamma = -INFINITY;) col-1 sh gr +/Courier ff 180.00 scf sf +1500 14800 m +gs 1 -1 sc (aphid_intnode_end\(depth, score, beta\); ) col-1 sh gr +/Courier ff 180.00 scf sf +1800 12200 m +gs 1 -1 sc (}) col-1 sh gr +/Courier ff 180.00 scf sf +1800 12600 m +gs 1 -1 sc (unmake_move\(p, movelist[i]\);) col-1 sh gr +/Courier ff 180.00 scf sf +1500 15400 m +gs 1 -1 sc (h_flag = VALID;) col-1 sh gr +/Courier ff 180.00 scf sf +1500 15600 m +gs 1 -1 sc (if \(score <= alpha\) { h_flag = LBOUND; }) col-1 sh gr +/Courier ff 180.00 scf sf +1500 16000 m +gs 1 -1 sc (if \(h_length <= plytogo\) {) col-1 sh gr +/Courier ff 180.00 scf sf +1500 15800 m +gs 1 -1 sc (if \(score >= beta\) { h_flag = UBOUND; }) col-1 sh gr +/Courier ff 180.00 scf sf +1500 16400 m +gs 1 -1 sc (}) col-1 sh gr +/Courier ff 180.00 scf sf +1800 16200 m +gs 1 -1 sc (p_entry = store\(p_hash, p_key, plytogo, score, h_flag, move_opt\);) col-1 sh gr +/Courier ff 180.00 scf sf +1200 17200 m +gs 1 -1 sc (} /* AlphaBeta */) col-1 sh gr +/Courier ff 180.00 scf sf +1200 800 m +gs 1 -1 sc (int AlphaBeta\(position p, int alpha, int beta, int depth, int plytogo\) {) col-1 sh gr +/Courier ff 180.00 scf sf +1800 9200 m +gs 1 -1 sc (return\(0\); /* Should exit AlphaBeta quickly when alarm on */) col-1 sh gr +/Courier ff 180.00 scf sf +1500 16800 m +gs 1 -1 sc (return\(gamma\);) col-1 sh gr +showpage +$F2psEnd +rs +%%EndDocument + + endTexFig + 770 5131 a Fu(Figure)25 b(6:)30 b(Code)c(Example:)j(APHID)d(within)d +(the)i Fq(\013)q(\014)30 b Fu(Algorithm)1900 5589 y(18)p +eop +%%Page: 19 22 +19 21 bop 146 100 a Fu(It)23 b(should)f(also)h(be)g(noted)f(that,)h(in) +g(terms)f(of)h(ease)h(of)f(use,)g(the)g(APHID)g(library)g(is)f(almost)g +(unique.)29 b(Gi)n(v)o(en)0 299 y(an)22 b Fq(\013)q(\014)27 +b Fu(program)21 b(with)g(the)g(code)h(structured)f(to)g(use)g(the)h +(Cilk)f(directi)n(v)o(es,)g(then)g(parallel)g Fm(sync)o(hr)l(onous)f +Fu(search)0 498 y(algorithms,)f(such)g(as)h(YBWC)h(and)e(PV)-10 +b(-Split,)21 b(can)f(be)f(easily)h(implemented)e([1].)29 +b(Cilk)19 b(uses)g(multiple)f(threads)0 697 y(to)27 b(coordinate)g(the) +g(search,)h(where)g(each)f(thread)h(represents)f(a)g(node)g(where)h(w)o +(ork)f(has)g(been)g(split)f(of)n(f)h(from)0 897 y(its)d(parent.)0 +1236 y Fo(4)143 b(Experimental)33 b(Results)0 1539 y +Fu(Most)c(authors)g(demonstrate)h(the)g(ef)n(fecti)n(v)o(eness)e(of)i +(their)g(parallel)g(algorithm)f(using)g(a)h(single)f(application.)0 +1738 y(Chess)40 b(is)f(often)h(chosen)g(because)g(synchronous)f +(algorithms)f(usually)h(yield)g(good)g(speedups)g(when)h(the)0 +1937 y(branching)24 b(f)o(actor)i(is)e(lar)n(ge.)31 b(In)25 +b(contrast,)g(APHID')-5 b(s)25 b(performance)g(will)f(be)h(presented)g +(using)f(four)g(dif)n(ferent)0 2136 y(applications,)35 +b(each)g(written)f(by)g(dif)n(ferent)g(authors)g(and)g(with)f(dif)n +(ferent)h(coding)g(styles.)58 b(This)34 b(ambitious)0 +2336 y(comparison)27 b(of)i(performance)g(in)f(multiple)e(application)i +(domains)f(is)h(feasible)g(because)h(of)f(APHID')-5 b(s)29 +b(ease)0 2535 y(of)c(inte)o(gration)e(into)h(an)h(e)o(xisting)e +(sequential)h(program.)146 2734 y(This)34 b(section)f(presents)h(e)o +(xperimental)e(results)i(for)g(APHID.)g(Section)g(4.1)g(describes)g +(the)g(e)o(xperimen-)0 2933 y(tal)h(methodology)-6 b(.)60 +b(Section)36 b(4.2)f(describes)g(the)g(o)o(v)o(erhead)g(model)g(used)g +(to)g(analyze)h(performance.)63 b(The)0 3133 y(e)o(xperimental)24 +b(results)g(are)h(presented)g(in)f(Section)h(4.3.)0 3428 +y Fg(4.1)119 b(Methodology)0 3694 y Fu(APHID)19 b(has)g(been)g +(implemented)e(in)i(four)g(applications:)28 b(C)t Fa(H)t(I)t(N)t(O)t(O) +t(K)r Fu(,)e(C)t Fa(R)t(A)t(F)t(T)t(Y)r Fu(,)h(K)t Fa(E)t(Y)-6 +b(A)t(N)t(O)25 b Fu(and)c(T)t Fa(H)t(E)t Fu(T)t Fa(U)t(R)t(K)r +Fu(.)2 3893 y(C)t Fa(H)t(I)t(N)t(O)t(O)t(K)26 b Fu(is)20 +b(the)g(Man)g(vs.)28 b(Machine)20 b(W)-8 b(orld)20 b(Check)o(ers)h +(Champion)e(program)h(\(principal)f(author:)28 b(Jonathan)0 +4093 y(Schaef)n(fer\).)37 b(K)t Fa(E)t(Y)-6 b(A)t(N)t(O)32 +b Fu(is)25 b(a)h(state-of-the-art)g(Othello)e(program,)i(which)f(rank)o +(ed)h(among)f(the)h(top)f(\002)n(v)o(e)g(com-)0 4292 +y(puter)32 b(Othello)e(programs)h(w)o(orldwide)g(from)h(1992)f(to)g +(1996)g(\(author:)44 b(Mark)32 b(Brockington\).)52 b(C)t +Fa(R)t(A)t(F)t(T)t(Y)40 b Fu(is)0 4491 y(a)35 b(strong)f(free)n(w)o +(are)i(chess)f(program)g(\(author:)51 b(Robert)35 b(Hyatt\).)63 +b(T)t Fa(H)t(E)t Fu(T)t Fa(U)t(R)t(K)42 b Fu(is)34 b(a)h(strong)g +(chess)f(program)0 4690 y(designed)g(by)h(tw)o(o)g(graduate)g(students) +f(at)h(the)g(Uni)n(v)o(ersity)e(of)i(Alberta)g(\(Andreas)g(Junghanns)f +(and)h(Yngvi)0 4890 y(Bjornsson\).)63 b(Both)36 b(chess)g(programs)g +(ha)n(v)o(e)f(been)h(participants)f(in)h(a)g(W)-8 b(orld)36 +b(Computer)f(Chess)h(Champi-)0 5089 y(onsip.)52 b(All)32 +b(of)g(the)g(applications)f(ha)n(v)o(e)h(a)h(\002nely-tuned)f +(sequential)f(search)i(algorithm)e(that)h(considers)f(the)0 +5288 y(best)e(mo)o(v)o(e)e(\002rst)i(approximately)e(90\045)i(\(or)g +(more\))g(of)g(the)g(time.)42 b(In)29 b(practice,)h(the)o(y)e(each)i +(search)f(trees)h(that)1900 5589 y(19)p eop +%%Page: 20 23 +20 22 bop 0 100 a Fu(are)26 b(close)e(to)h(the)f(critical)h(tree)g(in)f +(size.)146 299 y(All)g(e)o(xperiments)f(were)j(performed)e(on)g(a)h +(Silicon)f(Graphics)h(Origin)e(2000)h(with)g(64)g(processors.)3631 +263 y Fn(6)3701 299 y Fu(Each)0 498 y(of)34 b(the)g(applications)e +(were)j(compiled)e(with)g(SGI')-5 b(s)34 b Fb(cc)g Fu(compiler)-5 +b(.)57 b(F)o(or)34 b(the)g(parallel)g(tests,)h(tw)o(o)e(dif)n(ferent)0 +697 y(v)o(ersions)h(of)i(the)g(code)g(were)g(compiled.)62 +b(The)36 b(\002rst)g(parallel)f(program)h(could)f(be)h(used)f(at)h +(run-time)f(as)h(a)0 897 y(master)30 b(or)g(a)g(sla)n(v)o(e)g(by)f +(APHID.)i(The)f(second)g(program)g(w)o(as)g(an)g(e)o(x)o(ecutable)f +(that)h(could)f(only)g(be)i(used)e(by)0 1096 y(APHID)34 +b(as)f(a)h(sla)n(v)o(e.)55 b(This)33 b(separation)g(impro)o(v)o(ed)e +(performance,)36 b(since)d(a)h(number)e(of)i(callback)f(routines)0 +1295 y(used)25 b(only)f(by)g(the)h(master)f(impacted)g(the)h +(performance)g(of)g(the)g(sla)n(v)o(es)f(when)g(left)h(in)g(the)f +Fq(\013)q(\014)30 b Fu(algorithm.)146 1494 y(P)o(arallel)i(and)g +(sequential)f(algorithms)f(often)h(do)h(not)f(agree)i(with)e(each)h +(other)f(about)h(the)f(search)i(result)0 1694 y(\(v)n(alue)24 +b(and/or)g(best)g(mo)o(v)o(e\))f(when)h(the)h(full)f(v)o(ersion)f(of)h +(the)h(program)f(is)g(used)g([12].)31 b(F)o(or)24 b(e)o(xample,)f(dif)n +(ferent)0 1893 y(search)g(windo)n(ws)e(can)i(cause)g(dif)n(ferent)f +(search)h(e)o(xtensions)e(to)h(be)g(turned)h(on,)f(resulting)g(in)g(a)h +(dif)n(ferent)f(v)n(alue)0 2092 y(at)33 b(the)h(root.)56 +b(One)33 b(w)o(ould)g(prefer)h(that)f(the)g(parallel)g(and)h +(sequential)e(algorithms)g(return)h(identical)g(v)n(alues)0 +2291 y(and)26 b(principal)f(v)n(ariations,)g(allo)n(wing)f(for)i(a)g +(meaningful)f(comparison.)33 b(It)26 b(is)f(dif)n(\002cult)g(to)h(mak)o +(e)f(this)g(happen)0 2491 y(without)i(se)n(v)o(erely)h(crippling)g(the) +h(program')-5 b(s)28 b(sequential)f(search)j(algorithm.)41 +b(As)29 b(a)g(compromise,)f(most)g(of)0 2690 y(the)20 +b(search)i(result)e(dif)n(ferences)h(can)g(be)f(eliminated)g(by)g +(disabling)f(all)h Fq(\013)q(\014)26 b Fu(windo)n(w-based)20 +b(search)h(e)o(xtensions)0 2889 y(and)h(reductions.)30 +b(This)21 b(does)i(not)f(imply)f(that)h(a)h(\002x)o(ed)f(search)h +(depth)f(w)o(as)h(enforced)g(on)f(the)g(programs.)30 +b(As)22 b(an)0 3088 y(e)o(xample,)30 b(the)g(check)o(ers)g(and)g(chess) +g(programs)f(still)g(used)g(quiescence)h(search)h(to)e(e)o(xtend)g(the) +h(search)g(well)0 3288 y(be)o(yond)24 b(the)g Fq(d)p +Fu(-ply)g(search)i(horizon.)146 3487 y(The)g(size)f(of)g(each)h(of)g +(the)f(searches)h(is)f(important)e(to)i(the)g(observ)o(ed)g(speedup.)32 +b(In)25 b(synchronous)f(parallel)0 3686 y(game-tree)h(search)g +(algorithms,)e(the)i(speedup)f(can)h(be)g(impro)o(v)o(ed)e(arbitrarily) +h(by)h(increasing)f(the)h(size)f(of)h(the)0 3885 y(search)e([15].)30 +b(Ho)n(we)n(v)o(er)l(,)21 b(searching)h(game)g(trees)g(that)g(occur)g +(under)g(tournament)f(time)h(controls)f(is)h(critical)f(to)0 +4085 y(assessing)e(a)h(parallel)f(game-tree)h(search)g(algorithm')-5 +b(s)18 b(performance.)29 b(Thus,)20 b(the)g(size)f(of)h(the)g(indi)n +(vidual)d(tests)0 4284 y(w)o(as)24 b(limited)e(so)h(that)h(the)f(a)n(v) +o(erage)h(time)f(spent)g(searching)h(on)f(a)h(64-processor)g(machine)f +(did)g(not)g(e)o(xceed)h(the)0 4483 y(usual)e(time)h(controls)f(in)g +(the)h(game)f(being)h(studied.)29 b(This)22 b(is)h(180)f(seconds)h(in)f +(chess,)h(60)g(seconds)g(in)f(Othello,)0 4682 y(and)29 +b(120)g(seconds)g(in)f(the)h(game)g(of)g(check)o(ers.)45 +b(Consequently)-6 b(,)29 b(the)g(search)g(depth)g(achie)n(v)o(ed)f +(depended)h(on)0 4882 y(the)f(game)g(being)g(studied)f(and)i(the)f +(position)e(being)i(tested.)41 b(F)o(or)29 b(check)o(ers,)g(the)g +(search)g(depth)e(v)n(aried)h(from)0 5081 y(25)h(to)f(29)h(ply)-6 +b(,)29 b(while)f(for)h(chess)g(it)g(w)o(as)g(11)f(or)i(12)e(ply)-6 +b(.)42 b(F)o(or)29 b(Othello,)g(all)g(positions)e(were)i(searched)h(15) +f(ply)p 0 5171 1560 4 v 112 5232 a Fj(6)149 5262 y Fi(Additional)19 +b(e)o(xperiments)g(ha)n(v)o(e)g(been)h(done)f(using)h(Sun)g(equipment)e +(to)i(test)h(the)f(portability)f(of)h(the)g(APHID)h(library)e([2)o(].) +1900 5589 y Fu(20)p eop +%%Page: 21 24 +21 23 bop 0 100 a Fu(deep.)60 b(The)35 b(parallelization)f(horizon)g(v) +n(aried)g(from)g(4)h(to)f(8)g(ply)g(\(4)h(in)f(chess)h(and)f(Othello,)i +(6)f(to)f(8)g(ply)g(in)0 299 y(check)o(ers\).)63 b(A)36 +b(suitable)e(benchmark)h(set)g(w)o(as)h(chosen)f(for)g(each)h(game:)51 +b(the)35 b(Bratk)o(o-K)m(opec)h(test)f(set)g(for)0 498 +y(chess)25 b([10],)g(positions)e(from)i(the)g(\002rst)g(Chinook-T)m +(insle)o(y)e(match)h(for)i(check)o(ers)g([12)o(],)g(and)f(positions)e +(from)i(a)0 697 y(W)-8 b(orld)24 b(Championship)g(game)g(for)h(Othello) +f([2].)146 897 y(Using)j(a)g(transposition)e(table)i(that)g(is)g(lar)n +(ge)g(enough)g(to)g(accommodate)f(results)h(disco)o(v)o(ered)f(during)g +(the)0 1096 y(search)g(is)f(important.)32 b(that)25 b(k)o(ept)g(the)g +(o)o(v)o(erall)g(size)g(of)h(the)f(program)g(and)h(data)f(belo)n(w)g +(400)g(MB)h(w)o(as)f(chosen.)0 1295 y(It)c(w)o(as)h(unanticipated)e +(that)g(this)h(limitation)e(w)o(ould)h(dramatically)g(af)n(fect)i(the)f +(speedup)g(on)g(a)h(lar)n(ge)f(number)g(of)0 1494 y(processors)g(b)n +(ut,)g(as)g(discussed)f(later)l(,)i(400)f(MB)g(pro)o(v)o(ed)f(to)h(be)g +(inadequate)g(for)g(the)g(lar)n(ge)g(searches)h(attempted)0 +1694 y(in)i(the)h(chess)g(and)g(check)o(ers)g(programs.)146 +1893 y(Distrib)n(uted)g(transposition)f(table)i(schemes)g(quickly)g +(become)g(communication-bound)e(on)i(modern)f(ar)n(-)0 +2092 y(chitectures.)58 b(Thus,)35 b(it)f(is)f(usually)g(infeasible)g +(to)h(implement)e(sharing)h(of)h(transposition)e(table)i(entries)f(on)0 +2291 y(systems)21 b(where)j(shared)f(memory)f(is)g(not)g(a)n(v)n +(ailable)g(in)h(hardw)o(are.)30 b(The)23 b(APHID)h(library)e(contains)g +(a)h(method)0 2491 y(for)g(distrib)n(uting)d(transposition)h(table)h +(information)f(that)i(does)f(not)g(o)o(v)o(erload)g(the)g +(interconnection)g(netw)o(ork.)0 2690 y(Experiments)30 +b(with)g(APHID)h(using)f(distrib)n(uted)f(transposition)g(tables)h(are) +i(a)n(v)n(ailable)e(else)n(where)h([2].)49 b(The)0 2889 +y(e)o(xperiments)19 b(reported)i(in)f(this)g(paper)h(were)g(run)g(on)f +(a)h(shared-memory)g(computer)l(,)f(allo)n(wing)f(us)i(to)f(compare)0 +3088 y(our)25 b(results)f(with)g(those)g(reported)h(in)f(the)h(recent)g +(literature.)146 3288 y(Note)31 b(that)f(the)g(transposition)f(table)h +(size)h(did)f(not)g(increase)h(as)g(the)g(number)f(of)h(processors)f +(increased.)0 3487 y(The)k(sequential)g(tests)f(used)h(e)o(xactly)g +(the)g(same)g(number)g(of)h(table)f(entries)g(as)g(each)h(of)g(the)f +(parallel)g(tests.)0 3686 y(If)d(the)g(parallel)g(run)g(used)g(64)f +(processors,)i(then)f(each)g(process)g(recei)n(v)o(ed)g(1/64th)e(of)i +(the)g(table)g(entries)g(that)0 3885 y(the)d(sequential)f(process)h +(recei)n(v)o(ed.)40 b(Thus,)29 b(the)f(e)o(xperiments)e(measured)i(the) +g(scalability)f(of)h(the)g(number)g(of)0 4085 y(processors)d(and)h(not) +f(the)g(scalability)g(of)h(memory)-6 b(.)32 b(Other)25 +b(researchers)i(ha)n(v)o(e)e(allo)n(wed)g(the)g(number)h(of)f(table)0 +4284 y(entries)34 b(to)g(increase)h(in)f(tandem)g(with)g(the)g(number)g +(of)g(processors.)60 b(This)33 b(can)i(result)f(in)g(an)h(unf)o(air)f +(com-)0 4483 y(parison)29 b(\(and)h(signi\002cantly)f(in\003ated)g +(speedups\))h(because)g(the)f(sequential)g(algorithm')-5 +b(s)28 b(table)h(may)h(not)f(be)0 4682 y(lar)n(ge)e(enough)f(to)h(hold) +f(the)h(critical)f(tree)h(in)g(memory)-6 b(,)26 b(whereas)h(the)g +(parallel)f(v)o(ersion)g(can.)37 b(When)27 b(e)o(xamin-)0 +4882 y(ing)i(the)h(game-tree)g(search)g(literature,)h(the)e(reader)i +(should)e(a)n(v)n(oid)g(directly)g(comparing)g(speedups)h(without)0 +5081 y(understanding)23 b(the)i(conditions)e(under)i(which)f(the)o(y)g +(were)i(achie)n(v)o(ed.)146 5280 y(The)21 b(standard)g(set)g(of)g +(tests)f(for)h(each)h(program)e(in)l(v)n(olv)o(ed)g(e)o(xamining)f(a)i +(\002x)o(ed-depth)g(game)f(tree)h(\(modulo)1900 5589 +y(21)p eop +%%Page: 22 25 +22 24 bop 0 100 a Fu(an)o(y)28 b(quiescence)g(search\))h(and)f(using)f +(a)h(shared)h(memory)e(transposition)f(table,)j(o)o(v)o(er)e(a)h(v)n +(arying)f(number)h(of)0 299 y(processors.)g(Each)20 b(program)e(w)o(as) +h(tested)g(on)g Fq(n)p Fu(=16,)h(32)f(and)g(64)f(processors,)i(using)e +(a)i(single-le)n(v)o(el)d(hierarchy:)0 498 y(one)25 b(master)f +(allocated)h(w)o(ork)f(to)h Fq(n)d Fk(\000)h Fl(1)i Fu(sla)n(v)o(es)e +(for)j(each)f(test)f(position.)146 697 y(There)34 b(are)g(tw)o(o)e +(methods)g(of)h(reporting)g(speedups)f(and)h(o)o(v)o(erheads)f(for)h(a) +h(lar)n(ge)f(number)g(of)g(samples.)0 897 y(The)28 b(\002rst)f(is)g(to) +g(add)h(all)f(of)h(the)f(searches)h(for)g(the)f(multiple)f(positions)f +(together)l(,)j(and)g(perform)f(the)h(speedup)0 1096 +y(and)j(o)o(v)o(erhead)f(analysis)g(on)g(the)h(combined)e(data.)49 +b(The)31 b(second)f(method)g(is)g(to)h(perform)f(the)h(speedup)f(and)0 +1295 y(o)o(v)o(erhead)c(analysis)h(on)f(each)i(indi)n(vidual)d +(position,)h(and)h(a)n(v)o(erage)g(the)g(speedups)g(and)g(o)o(v)o +(erheads.)36 b(The)28 b(sec-)0 1494 y(ond)36 b(method)f(is)h(preferred) +h(\(and)g(used)f(in)g(this)f(paper\))i(because)f(it)g(will)g(not)f(o)o +(v)o(erestimate)g(the)h(observ)o(ed)0 1694 y(speedup)24 +b(for)h(a)h(lar)n(ge)f(number)f(of)h(test)f(positions.)0 +1989 y Fg(4.2)119 b(Ov)o(erheads)30 b(in)h(APHID)0 2255 +y Fu(The)36 b(performance)h(of)g(APHID)g(will)e(be)i(analyzed)f(in)g +(terms)g(of)h(the)f(impediments)e(\(o)o(v)o(erheads\))i(to)g(high)0 +2455 y(parallel)28 b(performance.)41 b(Since)28 b(the)g(o)o(v)o(erhead) +f(model)g(used)h(in)f(this)g(section)h(is)f(slightly)f(dif)n(ferent)i +(than)g(that)0 2654 y(used)d(by)f(other)h(authors,)f(the)g(terminology) +f(used)i(is)f(de\002ned)i(here.)146 2853 y(The)e Fm(total)e(o)o +(verhead)h Fu(represents)g(the)g(additional)e(computing)h(time)g +(required)i(by)e(the)i(parallel)f(algorithm)0 3052 y(on)i +Fq(n)g Fu(processors)f(to)h(achie)n(v)o(e)f(the)g(same)h(result)f(as)h +(the)g(sequential)f(v)o(ersion:)772 3351 y Fl(total)c(o)m(v)m(erhead)30 +b(=)1512 3284 y(\(parallel)20 b(time)43 b Fk(\002)h Fl(n\))23 +b Fk(\000)f Fl(sequen)m(tial)h(time)p 1512 3328 1580 +4 v 1984 3420 a(sequen)m(tial)g(time)3101 3351 y Fq(:)0 +3650 y Fu(The)29 b(total)g(o)o(v)o(erhead)f(can)i(also)f(be)h(computed) +e(by)h(e)o(xamining)e(the)j(component)e(o)o(v)o(erheads)g +(independently)-6 b(.)0 3849 y(The)32 b(three)h(main)e(o)o(v)o(erheads) +g(are)i(\(1\))g(dedicating)e(a)i(processor)f(to)g(be)g(used)g(e)o +(xclusi)n(v)o(ely)d(as)k(a)f(master)g(\(the)0 4049 y(master)f(o)o(v)o +(erhead\),)i(\(2\))f(the)g(ef)n(fecti)n(v)o(e)e(decrease)j(in)e(nodes)h +(per)g(second)f(e)o(xamined)g(\(parallelization)g(o)o(v)o(er)n(-)0 +4248 y(head\),)e(and)f(\(3\))g(the)g(lar)n(ger)g(search)g(tree)h(b)n +(uilt)d(by)i(the)g(parallel)f(algorithm)g(\(total)g(search)h(o)o(v)o +(erhead\).)40 b(There)0 4447 y(is)29 b(no)g(synchronization)f(o)o(v)o +(erhead)g(in)h(the)g(APHID)h(algorithm)e(since)h(the)g(algorithm)f +(operates)h(in)g(an)g(asyn-)0 4646 y(chronous)24 b(manner)-5 +b(.)30 b(The)25 b(breakdo)n(wn)f(of)h(o)o(v)o(erheads)f(can)h(be)g(e)o +(xpressed)f(in)h(the)f(follo)n(wing)f(formula:)380 4945 +y Fl(total)e(o)m(v)m(erhead)85 b(=)d(\(1)22 b(+)g(master)g(o)m(v)m +(erhead)r(\))g Fk(\002)h Fl(\(1)e(+)h(parallelization)c(o)m(v)m(erhead) +r(\))1244 5169 y Fk(\002)k Fl(\(1)g(+)g(total)f(searc)m(h)i(o)m(v)m +(erhead)r(\))p Fq(:)1900 5589 y Fu(22)p eop +%%Page: 23 26 +23 25 bop 146 100 a Fu(The)30 b Fm(master)g(o)o(verhead)g +Fu(is)f(the)h(approximate)f(penalty)h(incurred)g(by)g(ha)n(ving)f(a)i +(single)e(processor)h(being)0 299 y(allocated)24 b(completely)f(to)h +(the)h(handling)e(of)h(the)h(master)-5 b(.)29 b(This)24 +b(is)g(simply)f Fl(1)p Fq(=)p Fl(\()p Fq(n)d Fk(\000)h +Fl(1\))p Fu(,)j(the)h(bene\002t)f(of)h(adding)0 498 y(another)g(sla)n +(v)o(e)f(to)g(the)h(other)g Fq(n)d Fk(\000)h Fl(1)h Fu(sla)n(v)o(es.) +146 697 y(The)37 b Fm(par)o(allelization)32 b(o)o(verhead)k +Fu(is)g(the)g(penalty)f(incurred)i(by)e(the)h(APHID)h(library)f(on)g +(the)g(speed)g(of)0 897 y(the)h(sla)n(v)o(es.)65 b(The)37 +b(dif)n(ference)g(between)g(the)g(rate)g(at)g(which)f(the)h(parallel)f +(sla)n(v)o(es)g(e)o(xplore)g(nodes)h(and)f(the)0 1096 +y(sequential)29 b(program')-5 b(s)28 b(node)i(rate)g(is)f(the)g +(parallelization)g(o)o(v)o(erhead.)44 b(This)29 b(o)o(v)o(erhead)f(is)i +(deri)n(v)o(ed)e(partially)0 1295 y(from)g(the)h(cost)f(of)h(using)f +(PVM,)g(and)h(partially)f(from)g(the)h(w)o(ork-scheduling)e(algorithm)h +(on)g(each)h(sla)n(v)o(e.)42 b(In)0 1494 y(ef)n(fect,)34 +b(the)d(parallelization)g(o)o(v)o(erhead)f(includes)h(synchronization)f +(o)o(v)o(erhead,)j(comple)o(xity)c(o)o(v)o(erhead)i(and)0 +1694 y(communication)23 b(o)o(v)o(erhead,)h(as)h(used)f(in)h(pre)n +(vious)e(parallel)i Fq(\013)q(\014)30 b Fu(models)24 +b([12)o(,)h(15].)146 1893 y(The)d Fm(total)f(sear)l(c)o(h)g(o)o +(verhead)h Fu(represents)f(the)h(number)f(of)h(additional)f(nodes)g +(searched)h(by)g(the)g(algorithm)0 2092 y(while)37 b(attempting)f(to)h +(determine)f(the)i Fq(d)p Fu(-ply)e(minimax)g(v)n(alue.)68 +b(In)37 b(the)h(case)g(of)f(APHID,)h(there)f(are)i(tw)o(o)0 +2291 y(o)o(v)o(erheads)29 b(that)g(combine)g(to)g(mak)o(e)h(the)f +(total)g(search)h(o)o(v)o(erhead:)40 b(the)29 b(search)h(o)o(v)o +(erhead)f(\(as)h(seen)g(in)f(other)0 2491 y(parallel)c(models\))f(and)g +(the)h(speculati)n(v)o(e)e(search.)146 2690 y(The)33 +b Fm(sear)l(c)o(h)g(o)o(verhead)g Fu(represents)g(the)g(additional)f +(nodes)g(searched)i(to)f(achie)n(v)o(e)f(the)h Fq(d)p +Fu(-ply)g(minimax)0 2889 y(v)n(alue.)60 b(This)34 b(can)i(be)f +(computed)e(by)i(di)n(viding)e(the)h(number)h(of)g(nodes)f(e)o(xamined) +g(in)g(the)h(parallel)g(search)0 3088 y(by)29 b(the)g(number)g(of)g +(nodes)g(e)o(xamined)f(in)h(the)g(corresponding)g(sequential)f(search.) +45 b(Most)28 b(of)i(this)e(o)o(v)o(erhead)0 3288 y(is)j(incurred)g +(when)g(the)g(parallel)g(v)o(ersion)f(uses)h(a)g(search)h(windo)n(w)d +(that)i(is)g(not)f(as)h(precise)h(as)f(that)g(used)f(by)0 +3487 y(the)i(sequential)f(v)o(ersion.)51 b(If)32 b(a)g(shared-memory)g +(transposition)e(table)h(is)h(not)f(used,)i(some)f(of)g(the)g(increase) +0 3686 y(in)c(search)g(o)o(v)o(erhead)f(can)i(be)f(attrib)n(uted)f(to)g +(information)g(de\002cienc)o(y)-6 b(,)28 b(since)g(data)g(is)f(not)g +(shared)i(ef)n(\002ciently)0 3885 y(between)c(the)g(processes.)146 +4085 y(The)19 b(remainder)g(of)g(the)g(increase)h(in)e(search)i(o)o(v)o +(erhead)e(is)g(attrib)n(utable)g(to)h(the)g(load-balancing)f +(algorithm.)0 4284 y(The)k(APHID)f(algorithm)f(forces)i(w)o(ork)g(to)f +(be)h(recalculated)f(when)h(it)f(is)g(mo)o(v)o(ed)f(to)h(another)g +(processor)-5 b(.)29 b(When)0 4483 y(there)e(are)h(more)f(processors)g +(in)g(the)g(system,)f(the)h(load-balancing)f(algorithm)g(is)h(more)g +(acti)n(v)o(e)f(in)h(balancing)0 4682 y(the)e(w)o(orkload,)f(thus)g +(causing)g(more)h(search)g(o)o(v)o(erhead.)146 4882 y(Since)33 +b(each)g(position)e(is)h(searched)h(to)f Fq(d)g Fu(ply)-6 +b(,)33 b(the)g(asynchronous)e(nature)i(of)f(the)g(sla)n(v)o(es)g(will)g +(result)f(in)0 5081 y(some)22 b(w)o(ork)g(being)h(done)f(at)h(depth)f +Fl(\()p Fq(d)14 b Fl(+)g(1\))22 b Fu(or)g(greater)-5 +b(.)31 b(The)22 b Fm(speculative)g(sear)l(c)o(h)g Fu(represents)h(the)f +(amount)g(of)0 5280 y(additional)d(search)h(that)g(APHID)g(has)g +(undertak)o(en)g(which)g(is)f(be)o(yond)g(what)h(the)g(sequential)f +(algorithm)g(w)o(ould)1900 5589 y(23)p eop +%%Page: 24 27 +24 26 bop 0 100 a Fu(attempt)22 b(for)i(a)f Fq(d)p Fu(-ply)g(search.)31 +b(It)23 b(can)h(be)f(computed)f(by)h(taking)g(the)g(number)g(of)g +(speculati)n(v)o(e)f(nodes)h(searched)0 299 y(and)35 +b(di)n(viding)f(that)h(by)g(the)g(number)g(of)h(nodes)f(searched)h(in)f +(the)h(sequential)e(case.)64 b(In)35 b(our)h(e)o(xperiments,)0 +498 y(speculati)n(v)o(e)d(search)i(results)e(are)i(computed,)h(b)n(ut)e +(these)g(results)f(are)j(not)d(used)h(to)g(in\003uence)h(the)f(v)n +(alue)g(of)0 697 y(shallo)n(wer)27 b(searches.)43 b(This)27 +b(allo)n(wed)h(the)g(APHID)h(algorithm)e(to)h(produce)h(the)f(same)g +(search)h(v)n(alues)f(as)g(the)0 897 y(sequential)c(v)o(ersion)g(in)g +(most)g(cases.)146 1096 y(Ignoring)32 b(the)g(speculati)n(v)o(e)e +(search)j(results)e(understates)g(the)h(potential)f(of)h(the)g(APHID)h +(algorithm.)51 b(In)0 1295 y(a)32 b(real)g(tournament)e(game,)j +(speculati)n(v)o(e)d(search)i(could)f(be)h(used)f(to)g(look)g(an)h(e)o +(xtra)f(mo)o(v)o(e)f(ahead)i(on)g(some)0 1494 y(k)o(e)o(y)24 +b(v)n(ariations.)29 b(It)c(is)f(highly)g(lik)o(ely)f(that)i(the)f(v)n +(ariations)f(that)i(were)g(speculati)n(v)o(ely)d(e)o(xtended)i(will)g +(be)h(in)f(the)0 1694 y(left-most)j(branches)h(of)g(the)g(tree.)41 +b(Thus,)28 b(sometimes)f(k)o(e)o(y)g(v)n(ariations)g(will)g(be)h +(searched)h(an)f(additional)f(ply)0 1893 y(\(or)21 b(more\))g(deeper)-5 +b(.)30 b(This)20 b(allo)n(ws)g(APHID)i(to)e(\002nd)i(important)d(v)n +(ariations)h(much)g(sooner)h(than)g(a)g(synchronous)0 +2092 y(parallel)k(program)f(with)g(the)h(same)f(observ)o(ed)h(speedup.) +146 2291 y(T)-8 b(o)34 b(quantify)f(the)h(ef)n(fects)f(of)h(speculati)n +(v)o(e)e(search)j(is)e(dif)n(\002cult.)57 b(T)-8 b(o)33 +b(do)h(so)f(means)h(that)f(there)h(must)f(be)0 2491 y(a)j(metric)g(for) +g(measuring)f(the)g(quality)g(of)h(the)f(mo)o(v)o(e)g(selected)g(by)h +(an)g(algorithm.)62 b(There)36 b(are)h(a)f(fe)n(w)g(test)0 +2690 y(sets)27 b(that)g(measure)h(mo)o(v)o(e)e(quality)h(in)g(chess,)h +(where)g(the)g(performance)g(metric)f(is)g(ho)n(w)g(quickly)g(a)g +(program)0 2889 y(determines)32 b(the)g(best)g(mo)o(v)o(e)e(in)i(a)h +(tactical)f(position.)51 b(There)33 b(is)f(insuf)n(\002cient)f(kno)n +(wledge)g(about)h(tactics)f(in)0 3088 y(Othello)h(to)h(design)f(a)i +(similar)e(test.)55 b(Thus,)35 b(the)e(performance)h(metric)f(used)f +(is)h(to)g(compare)g(speedups)g(for)0 3288 y(each)25 +b(program.)0 3583 y Fg(4.3)119 b(T)-11 b(est)29 b(Results)0 +3849 y Fu(Figure)23 b(7)f(gi)n(v)o(es)f(the)h(speedups)g(for)h(each)g +(of)f(the)g(programs)g(tested,)g(while)g(Figure)h(8)f(gi)n(v)o(es)f +(the)h(o)o(v)o(erheads)g(for)0 4049 y(each)j(program)g(on)f(separate)i +(graphs.)146 4248 y(Figure)33 b(7)e(sho)n(ws)g(that)h(the)g(speedups)f +(for)h(the)g(Othello)f(program,)k(K)t Fa(E)t(Y)-6 b(A)t(N)t(O)r +Fu(,)38 b(are)33 b(signi\002cantly)d(lar)n(ger)0 4447 +y(than)k(the)f(speedups)h(for)g(the)f(other)h(three)g(programs.)58 +b(There)34 b(are)h(tw)o(o)e(reasons)h(for)g(this.)57 +b(First,)36 b(the)e(trees)0 4646 y(that)28 b(were)i(measured)e(in)j(K)t +Fa(E)t(Y)-6 b(A)t(N)t(O)34 b Fu(are)c(\002x)o(ed-depth)e(trees,)h +(whereas)h(the)e(other)h(programs)f(had)h(a)g(v)n(ariable)0 +4846 y(search)h(depth)f(due)g(to)g(quiescence)h(searches.)45 +b(This)28 b(mak)o(es)h(the)g(load)g(balancing)g(v)o(ery)g(easy)h(for)h +(K)t Fa(E)t(Y)-6 b(A)t(N)t(O)r Fu(.)0 5045 y(APHID)25 +b(thri)n(v)o(es)d(when)i(there)g(is)g(little)f(v)n(ariance)h(in)g(the)g +(size)g(of)g(each)h(piece)f(of)h(w)o(ork.)30 b(When)24 +b(the)g(equi)n(v)n(alent)0 5244 y(of)h(quiescence)g(search)g(is)g +(added)f(to)j(K)t Fa(E)t(Y)-6 b(A)t(N)t(O)r Fu(,)28 b(the)d(speedup)f +(drops)h(from)f(37)h(to)f(22)h(on)f(64)h(processors)f([2].)1900 +5589 y(24)p eop +%%Page: 25 28 +25 27 bop 1178 0 a + 12191183 10419816 3289088 3289088 42100326 36443095 startTexFig + 1178 0 a +%%BeginDocument: pics/speedup_all.ps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -60 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.100 0.100 scale +0 setgray +/Helvetica findfont 180 scalefont setfont +newpath +LTa +1080 451 M +4544 0 V +-4544 0 R +0 4498 V +LTb +1080 451 M +63 0 V +4481 0 R +-63 0 V +972 451 M +(0) Rshow +1080 951 M +63 0 V +4481 0 R +-63 0 V +972 951 M +(8) Rshow +1080 1451 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(16) Rshow +1080 1950 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(24) Rshow +1080 2450 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(32) Rshow +1080 2950 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(40) Rshow +1080 3450 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(48) Rshow +1080 3949 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(56) Rshow +1080 4449 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(64) Rshow +1080 4949 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(72) Rshow +1080 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(0) Cshow +1585 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(8) Cshow +2090 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(16) Cshow +2595 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(24) Cshow +3100 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(32) Cshow +3604 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(40) Cshow +4109 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(48) Cshow +4614 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(56) Cshow +5119 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(64) Cshow +5624 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(72) Cshow +1080 451 M +4544 0 V +0 4498 V +-4544 0 V +0 -4498 V +504 2700 M +currentpoint gsave translate 90 rotate 0 0 M +(Speedup) Cshow +grestore +3352 -89 M +(Number of Processors) Cshow +LT0 +3163 4637 M +(Perfect Speedup) Rshow +3271 4637 M +324 0 V +1080 451 M +505 500 V +505 500 V +1010 999 V +5119 4449 L +505 500 V +LT1 +3163 4457 M +(Keyano) Rshow +3271 4457 M +324 0 V +1585 810 M +505 345 V +1010 670 V +2019 965 V +3379 4457 D +1585 810 D +2090 1155 D +3100 1825 D +5119 2790 D +LT2 +3163 4277 M +(Chinook) Rshow +3271 4277 M +324 0 V +2090 973 M +1010 154 V +2019 220 V +3379 4277 A +2090 973 A +3100 1127 A +5119 1347 A +LT3 +3163 4097 M +(Crafty) Rshow +3271 4097 M +324 0 V +2090 998 M +1010 488 V +2019 89 V +3379 4097 B +2090 998 B +3100 1486 B +5119 1575 B +LT4 +3163 3917 M +(TheTurk) Rshow +3271 3917 M +324 0 V +2090 981 M +1010 280 V +2019 187 V +3379 3917 C +2090 981 C +3100 1261 C +5119 1448 C +stroke +grestore +end +showpage +%%EndDocument + + endTexFig + 1212 1523 a Fu(Figure)25 b(7:)31 b(Speedups)25 b(for)g(All)f(Programs) +146 1811 y(The)h(second)g(reason)g(is)g(that)f(the)h(transposition)e +(table)i(is)g(not)f(as)h(critical)g(in)g(Othello)f(as)h(it)f(is)h(in)f +(the)h(other)0 2010 y(three)37 b(programs.)65 b(When)36 +b(all)g(64)g(processors)g(attempt)g(to)g(write)g(into)f(a)i(400)f(MB)h +(transposition)d(table,)39 b(a)0 2209 y(processor)32 +b(o)o(v)o(erwrites)f(another)h(processor')-5 b(s)32 b(table)g(entries)g +(frequently)-6 b(.)52 b(This)31 b(inhibits)g(the)h(ability)f(of)h(the)0 +2408 y(processors)f(to)g(detect)g(positions)e(that)i(ha)n(v)o(e)g +(already)g(been)h(searched.)50 b(Duplicate)31 b(node)g(detection)f(via) +h(the)0 2608 y(transposition)k(table)h(is)h(important)e(to)h +(controlling)f(the)i(size)g(of)g(the)f(search)i(tree)f(in)f(chess)h +(and)g(check)o(ers)0 2807 y(programs.)49 b(The)31 b(limited)e(size)j +(of)f(the)g(transposition)e(table)h(is)h(of)g(little)f(importance)h(in) +f(searching)h(Othello)0 3006 y(game)k(trees)g(in)g(parallel,)i(because) +f(achie)n(ving)e(the)h(same)g(position)f(by)h(dif)n(ferent)g(sequences) +g(of)g(mo)o(v)o(es)f(is)0 3205 y(much)27 b(more)h(dif)n(\002cult.)39 +b(Thus,)28 b(better)g(results)f(are)i(obtained)e(when)h(searching)g +(Othello)f(trees)h(than)f(chess)h(or)0 3405 y(check)o(ers)d(trees.)585 +3369 y Fn(7)146 3604 y Fu(In)c(an)g(algorithm)f(that)g(does)g(not)h +(synchronize,)g(it)f(should)g(not)g(be)h(surprising)e(to)i(disco)o(v)o +(er)e(that)i(the)f(lar)n(gest)0 3803 y(portion)29 b(of)h(the)g(total)g +(o)o(v)o(erhead)f(is)h(accounted)g(for)h(by)f(the)g(search)g(o)o(v)o +(erhead)g(and)g(the)g(speculati)n(v)o(e)f(search.)0 4002 +y(As)j(the)g(number)f(of)h(processes)g(increases,)i(the)d(processors)h +(get)g(fe)n(wer)g(pieces)g(of)g(w)o(ork)g(and)g(the)g(need)g(for)0 +4202 y(load)d(balancing)g(increases.)46 b(This)28 b(also)i(allo)n(ws)e +(some)h(of)h(the)f(less)g(b)n(usy)g(sla)n(v)o(es)g(to)g(get)h(further)f +(ahead)h(than)0 4401 y(the)25 b(o)o(v)o(erw)o(ork)o(ed)e(sla)n(v)o(es,) +h(causing)g(a)i(rise)e(in)h(the)f(speculati)n(v)o(e)g(search.)146 +4600 y(T)-8 b(o)19 b(put)f(the)h(APHID)g(results)f(in)h(perspecti)n(v)o +(e,)f(a)i(v)o(ersion)d(of)i(YBWC)h(has)f(been)g(implemented)e(in)j(K)t +Fa(E)t(Y)-6 b(A)t(N)t(O)r Fu(.)0 4799 y(The)27 b(algorithm)f(w)o(as)h +(tak)o(en)h(directly)e(from)h(Feldmann')-5 b(s)27 b(thesis)f([3].)39 +b(A)27 b(considerable)g(ef)n(fort)g(w)o(as)g(spent)g(at-)0 +4999 y(tempting)33 b(to)h(optimize)g(the)g(performance)h(of)g(the)g +(algorithm.)58 b(YBWC)36 b(and)f(APHID)g(were)g(tested)f(under)p +0 5088 1560 4 v 112 5150 a Fj(7)149 5180 y Fi(A)h(lar)o(ger)e +(transposition)f(table)i(\(4-8)f(GB)i(of)e(RAM\))i(for)e(both)g(the)h +(sequential)f(and)h(parallel)f(tests)j(w)o(ould)d(impro)o(v)o(e)f(the)0 +5279 y(speedups)19 b(of)h(the)g(check)o(ers)g(and)f(chess)i(programs.)i +(This)d(w)o(as)h(not)f(possible)g(to)g(test)h(because)f(of)g(resource)f +(constraints.)1900 5589 y Fu(25)p eop +%%Page: 26 29 +26 28 bop 406 0 a + 12191183 10419816 3289088 3289088 42100326 36443095 startTexFig + 406 0 a +%%BeginDocument: pics/overhead_keyano.ps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -60 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.100 0.100 scale +0 setgray +/Helvetica findfont 180 scalefont setfont +newpath +LTa +1080 451 M +4544 0 V +-4544 0 R +0 4498 V +LTb +1080 451 M +63 0 V +4481 0 R +-63 0 V +972 451 M +(0) Rshow +1080 901 M +63 0 V +4481 0 R +-63 0 V +972 901 M +(50) Rshow +1080 1351 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(100) Rshow +1080 1800 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(150) Rshow +1080 2250 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(200) Rshow +1080 2700 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(250) Rshow +1080 3150 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(300) Rshow +1080 3600 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(350) Rshow +1080 4049 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(400) Rshow +1080 4499 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(450) Rshow +1080 4949 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(500) Rshow +1080 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(0) Cshow +1585 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(8) Cshow +2090 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(16) Cshow +2595 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(24) Cshow +3100 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(32) Cshow +3604 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(40) Cshow +4109 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(48) Cshow +4614 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(56) Cshow +5119 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(64) Cshow +5624 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(72) Cshow +1080 451 M +4544 0 V +0 4498 V +-4544 0 V +0 -4498 V +504 2700 M +currentpoint gsave translate 90 rotate 0 0 M +(Overhead \(in Percent\)) Cshow +grestore +3352 -89 M +(Number of Processors) Cshow +3163 4724 M +(Keyano-APHID) Rshow +LT0 +3163 4454 M +(Total Overhead) Rshow +3271 4454 M +324 0 V +1585 885 M +505 10 V +1010 50 V +2019 296 V +3379 4454 D +1585 885 D +2090 895 D +3100 945 D +5119 1241 D +LT1 +3163 4274 M +(Master Overhead) Rshow +3271 4274 M +324 0 V +1585 579 M +505 -68 V +3100 480 L +5119 465 L +3379 4274 A +1585 579 A +2090 511 A +3100 480 A +5119 465 A +LT2 +3163 4094 M +(Search Overhead) Rshow +3271 4094 M +324 0 V +1585 511 M +505 35 V +1010 34 V +5119 847 L +3379 4094 B +1585 511 B +2090 546 B +3100 580 B +5119 847 B +LT3 +3163 3914 M +(Speculative Search) Rshow +3271 3914 M +324 0 V +1585 473 M +505 38 V +1010 70 V +5119 745 L +3379 3914 C +1585 473 C +2090 511 C +3100 581 C +5119 745 C +LT4 +3163 3734 M +(Parallelization Overhead) Rshow +3271 3734 M +324 0 V +1585 626 M +505 2 V +3100 593 L +5119 493 L +3379 3734 T +1585 626 T +2090 628 T +3100 593 T +5119 493 T +stroke +grestore +end +showpage +%%EndDocument + + endTexFig + 1950 0 a + 12191183 10419816 3289088 3289088 42100326 36443095 startTexFig + 1950 0 a +%%BeginDocument: pics/overhead_chinook.ps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -60 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.100 0.100 scale +0 setgray +/Helvetica findfont 180 scalefont setfont +newpath +LTa +1080 451 M +4544 0 V +-4544 0 R +0 4498 V +LTb +1080 451 M +63 0 V +4481 0 R +-63 0 V +972 451 M +(0) Rshow +1080 901 M +63 0 V +4481 0 R +-63 0 V +972 901 M +(50) Rshow +1080 1351 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(100) Rshow +1080 1800 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(150) Rshow +1080 2250 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(200) Rshow +1080 2700 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(250) Rshow +1080 3150 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(300) Rshow +1080 3600 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(350) Rshow +1080 4049 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(400) Rshow +1080 4499 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(450) Rshow +1080 4949 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(500) Rshow +1080 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(0) Cshow +1585 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(8) Cshow +2090 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(16) Cshow +2595 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(24) Cshow +3100 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(32) Cshow +3604 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(40) Cshow +4109 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(48) Cshow +4614 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(56) Cshow +5119 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(64) Cshow +5624 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(72) Cshow +1080 451 M +4544 0 V +0 4498 V +-4544 0 V +0 -4498 V +504 2700 M +currentpoint gsave translate 90 rotate 0 0 M +(Overhead \(in Percent\)) Cshow +grestore +3352 -89 M +(Number of Processors) Cshow +3163 4724 M +(Chinook-APHID) Rshow +LT0 +3163 4454 M +(Total Overhead) Rshow +3271 4454 M +324 0 V +2090 1569 M +3100 3051 L +5119 4570 L +3379 4454 D +2090 1569 D +3100 3051 D +5119 4570 D +LT1 +3163 4274 M +(Master Overhead) Rshow +3271 4274 M +324 0 V +2090 511 M +3100 480 L +5119 465 L +3379 4274 A +2090 511 A +3100 480 A +5119 465 A +LT2 +3163 4094 M +(Search Overhead) Rshow +3271 4094 M +324 0 V +2090 782 M +1010 672 V +2019 583 V +3379 4094 B +2090 782 B +3100 1454 B +5119 2037 B +LT3 +3163 3914 M +(Speculative Search) Rshow +3271 3914 M +324 0 V +2090 908 M +1010 354 V +5119 2401 L +3379 3914 C +2090 908 C +3100 1262 C +5119 2401 C +LT4 +3163 3734 M +(Parallelization Overhead) Rshow +3271 3734 M +324 0 V +2090 617 M +1010 33 V +5119 531 L +3379 3734 T +2090 617 T +3100 650 T +5119 531 T +stroke +grestore +end +showpage +%%EndDocument + + endTexFig + 406 1448 a + 12191183 10419816 3289088 3289088 42100326 36443095 startTexFig + 406 1448 a +%%BeginDocument: pics/overhead_crafty.ps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -60 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.100 0.100 scale +0 setgray +/Helvetica findfont 180 scalefont setfont +newpath +LTa +1080 451 M +4544 0 V +-4544 0 R +0 4498 V +LTb +1080 451 M +63 0 V +4481 0 R +-63 0 V +972 451 M +(0) Rshow +1080 901 M +63 0 V +4481 0 R +-63 0 V +972 901 M +(50) Rshow +1080 1351 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(100) Rshow +1080 1800 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(150) Rshow +1080 2250 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(200) Rshow +1080 2700 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(250) Rshow +1080 3150 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(300) Rshow +1080 3600 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(350) Rshow +1080 4049 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(400) Rshow +1080 4499 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(450) Rshow +1080 4949 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(500) Rshow +1080 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(0) Cshow +1585 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(8) Cshow +2090 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(16) Cshow +2595 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(24) Cshow +3100 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(32) Cshow +3604 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(40) Cshow +4109 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(48) Cshow +4614 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(56) Cshow +5119 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(64) Cshow +5624 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(72) Cshow +1080 451 M +4544 0 V +0 4498 V +-4544 0 V +0 -4498 V +504 2700 M +currentpoint gsave translate 90 rotate 0 0 M +(Overhead \(in Percent\)) Cshow +grestore +3352 -89 M +(Number of Processors) Cshow +3163 4724 M +(Crafty-APHID) Rshow +LT0 +3163 4454 M +(Total Overhead) Rshow +3271 4454 M +324 0 V +2090 1447 M +1010 269 V +5119 3605 L +3379 4454 D +2090 1447 D +3100 1716 D +5119 3605 D +LT1 +3163 4274 M +(Master Overhead) Rshow +3271 4274 M +324 0 V +2090 511 M +3100 480 L +5119 465 L +3379 4274 A +2090 511 A +3100 480 A +5119 465 A +LT2 +3163 4094 M +(Search Overhead) Rshow +3271 4094 M +324 0 V +2090 982 M +1010 177 V +5119 2171 L +3379 4094 B +2090 982 B +3100 1159 B +5119 2171 B +LT3 +3163 3914 M +(Speculative Search) Rshow +3271 3914 M +324 0 V +2090 549 M +3100 829 L +2019 607 V +3379 3914 C +2090 549 C +3100 829 C +5119 1436 C +LT4 +3163 3734 M +(Parallelization Overhead) Rshow +3271 3734 M +324 0 V +2090 688 M +3100 563 L +2019 4 V +3379 3734 T +2090 688 T +3100 563 T +5119 567 T +stroke +grestore +end +showpage +%%EndDocument + + endTexFig + 1950 1448 a + 12191183 10419816 3289088 3289088 42100326 36443095 startTexFig + 1950 1448 a +%%BeginDocument: pics/overhead_theturk.ps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -60 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.100 0.100 scale +0 setgray +/Helvetica findfont 180 scalefont setfont +newpath +LTa +1080 451 M +4544 0 V +-4544 0 R +0 4498 V +LTb +1080 451 M +63 0 V +4481 0 R +-63 0 V +972 451 M +(0) Rshow +1080 901 M +63 0 V +4481 0 R +-63 0 V +972 901 M +(50) Rshow +1080 1351 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(100) Rshow +1080 1800 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(150) Rshow +1080 2250 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(200) Rshow +1080 2700 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(250) Rshow +1080 3150 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(300) Rshow +1080 3600 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(350) Rshow +1080 4049 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(400) Rshow +1080 4499 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(450) Rshow +1080 4949 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(500) Rshow +1080 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(0) Cshow +1585 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(8) Cshow +2090 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(16) Cshow +2595 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(24) Cshow +3100 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(32) Cshow +3604 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(40) Cshow +4109 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(48) Cshow +4614 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(56) Cshow +5119 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(64) Cshow +5624 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(72) Cshow +1080 451 M +4544 0 V +0 4498 V +-4544 0 V +0 -4498 V +504 2700 M +currentpoint gsave translate 90 rotate 0 0 M +(Overhead \(in Percent\)) Cshow +grestore +3352 -89 M +(Number of Processors) Cshow +3163 4724 M +(TheTurk-APHID) Rshow +LT0 +3163 4454 M +(Total Overhead) Rshow +3271 4454 M +324 0 V +2090 1341 M +1010 759 V +5119 3912 L +3379 4454 D +2090 1341 D +3100 2100 D +5119 3912 D +LT1 +3163 4274 M +(Master Overhead) Rshow +3271 4274 M +324 0 V +2090 511 M +3100 480 L +5119 465 L +3379 4274 A +2090 511 A +3100 480 A +5119 465 A +LT2 +3163 4094 M +(Search Overhead) Rshow +3271 4094 M +324 0 V +2090 927 M +1010 792 V +5119 2925 L +3379 4094 B +2090 927 B +3100 1719 B +5119 2925 B +LT3 +3163 3914 M +(Speculative Search) Rshow +3271 3914 M +324 0 V +2090 517 M +1010 80 V +2019 841 V +3379 3914 C +2090 517 C +3100 597 C +5119 1438 C +LT4 +3163 3734 M +(Parallelization Overhead) Rshow +3271 3734 M +324 0 V +2090 669 M +3100 544 L +4477 451 L +3379 3734 T +2090 669 T +3100 544 T +stroke +grestore +end +showpage +%%EndDocument + + endTexFig + 1191 2972 a Fu(Figure)25 b(8:)30 b(Ov)o(erheads)25 b(for)g(All)f +(Programs)0 3259 y(similar)35 b(conditions:)53 b(the)36 +b(same)h(test)f(set,)j(same)d(search)i(depth,)g(and)f(the)f(same)h +(size)g(of)f(shared)h(memory)0 3458 y(transposition)22 +b(table.)31 b(The)24 b(performance)h(of)g(APHID)g(v)o(ersus)f(YBWC)h +(can)g(be)g(seen)g(in)f(Figure)h(9.)30 b(YBWC)c(is)0 +3657 y(rapidly)i(starv)o(ed)h(out)f(of)h(w)o(ork)g(to)g(do)g(once)g(64) +g(processors)f(are)i(reached.)44 b(The)29 b(synchronization)f(o)o(v)o +(erhead)0 3857 y(increases)d(dramatically)f(and)h(the)f(processors)h +(are)g(only)f(b)n(usy)h(60\045)f(of)h(the)g(time.)146 +4056 y(The)33 b(search)g(o)o(v)o(erhead)f(in)g(YBWC)h(starts)f(at)g(a)h +(higher)f(le)n(v)o(el)f(than)i(for)f(APHID)h(on)f(8)h(processors,)h(b)n +(ut)0 4255 y(the)i(search)g(o)o(v)o(erhead)g(in)f(APHID)i(rapidly)e +(increases)h(past)g(the)g(equi)n(v)n(alent)e(le)n(v)o(el)h(in)h(YBWC.)g +(Ho)n(we)n(v)o(er)l(,)0 4454 y(it)c(is)g(important)f(to)i(note)f(that)g +(the)h(o)o(v)o(erhead)e(in)i(APHID)g(is)f(partially)g(due)g(to)g +(speculati)n(v)o(e)f(search.)55 b(When)0 4654 y(APHID)38 +b(is)f(run)h(on)g(64)f(processors,)k(a)d(32.65\045)f(o)o(v)o(erhead)g +(is)g(attrib)n(uted)g(to)g(speculati)n(v)o(e)f(search.)70 +b(If)38 b(the)0 4853 y(search)25 b(were)g(e)o(xtended)f(an)h(e)o(xtra)f +(ply)-6 b(,)23 b(these)i(speculati)n(v)o(e)d(search)j(results)f(w)o +(ould)g(gi)n(v)o(e)f(APHID)i(a)g(head)f(start)0 5052 +y(on)i(the)g(ne)o(xt)g(iteration;)g(YBWC)h(w)o(ould)f(be)h(forced)g(to) +f(attempt)f(the)h(entire)h(search)g(from)f(scratch.)36 +b(YBWC')-5 b(s)0 5251 y(parallelization)21 b(o)o(v)o(erhead)f(is)i +(much)f(lo)n(wer)g(than)g(the)g(equi)n(v)n(alent)f(o)o(v)o(erheads)h +(in)g(APHID.)h(Ho)n(we)n(v)o(er)l(,)f(APHID)1900 5589 +y(26)p eop +%%Page: 27 30 +27 29 bop 406 0 a + 12191183 10419816 3289088 3289088 42100326 36443095 startTexFig + 406 0 a +%%BeginDocument: pics/aphidybw_keyano.ps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -60 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.100 0.100 scale +0 setgray +/Helvetica findfont 180 scalefont setfont +newpath +LTa +1080 451 M +4544 0 V +-4544 0 R +0 4498 V +LTb +1080 451 M +63 0 V +4481 0 R +-63 0 V +972 451 M +(0) Rshow +1080 951 M +63 0 V +4481 0 R +-63 0 V +972 951 M +(8) Rshow +1080 1451 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(16) Rshow +1080 1950 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(24) Rshow +1080 2450 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(32) Rshow +1080 2950 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(40) Rshow +1080 3450 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(48) Rshow +1080 3949 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(56) Rshow +1080 4449 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(64) Rshow +1080 4949 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(72) Rshow +1080 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(0) Cshow +1585 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(8) Cshow +2090 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(16) Cshow +2595 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(24) Cshow +3100 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(32) Cshow +3604 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(40) Cshow +4109 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(48) Cshow +4614 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(56) Cshow +5119 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(64) Cshow +5624 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(72) Cshow +1080 451 M +4544 0 V +0 4498 V +-4544 0 V +0 -4498 V +504 2700 M +currentpoint gsave translate 90 rotate 0 0 M +(Speedup) Cshow +grestore +3352 -89 M +(Number of Processors) Cshow +LT0 +3794 4637 M +(Perfect Speedup) Rshow +3902 4637 M +324 0 V +1080 451 M +505 500 V +505 500 V +1010 999 V +5119 4449 L +505 500 V +LT1 +3794 4457 M +(APHID, fixed-depth, shared TT) Rshow +3902 4457 M +324 0 V +1585 810 M +505 345 V +1010 670 V +2019 965 V +4010 4457 D +1585 810 D +2090 1155 D +3100 1825 D +5119 2790 D +LT2 +3794 4277 M +(YBW, fixed-depth, shared TT) Rshow +3902 4277 M +324 0 V +1585 841 M +505 294 V +1010 462 V +2019 366 V +4010 4277 A +1585 841 A +2090 1135 A +3100 1597 A +5119 1963 A +stroke +grestore +end +showpage +%%EndDocument + + endTexFig + 1950 0 a + 12191183 10419816 3289088 3289088 42100326 36443095 startTexFig + 1950 0 a +%%BeginDocument: pics/overhead_ybwkeyano.ps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -60 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.100 0.100 scale +0 setgray +/Helvetica findfont 180 scalefont setfont +newpath +LTa +1080 451 M +4544 0 V +-4544 0 R +0 4498 V +LTb +1080 451 M +63 0 V +4481 0 R +-63 0 V +972 451 M +(0) Rshow +1080 901 M +63 0 V +4481 0 R +-63 0 V +972 901 M +(50) Rshow +1080 1351 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(100) Rshow +1080 1800 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(150) Rshow +1080 2250 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(200) Rshow +1080 2700 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(250) Rshow +1080 3150 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(300) Rshow +1080 3600 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(350) Rshow +1080 4049 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(400) Rshow +1080 4499 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(450) Rshow +1080 4949 M +63 0 V +4481 0 R +-63 0 V +-4589 0 R +(500) Rshow +1080 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(0) Cshow +1585 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(8) Cshow +2090 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(16) Cshow +2595 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(24) Cshow +3100 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(32) Cshow +3604 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(40) Cshow +4109 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(48) Cshow +4614 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(56) Cshow +5119 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(64) Cshow +5624 451 M +0 63 V +0 4435 R +0 -63 V +0 -4615 R +(72) Cshow +1080 451 M +4544 0 V +0 4498 V +-4544 0 V +0 -4498 V +504 2700 M +currentpoint gsave translate 90 rotate 0 0 M +(Overhead \(in Percent\)) Cshow +grestore +3352 -89 M +(Number of Processors) Cshow +3415 4724 M +(Keyano-YBWC) Rshow +LT0 +3415 4454 M +(Total Overhead) Rshow +3523 4454 M +324 0 V +1585 823 M +505 178 V +1010 355 V +2019 886 V +3631 4454 D +1585 823 D +2090 1001 D +3100 1356 D +5119 2242 D +LT1 +3415 4274 M +(Synchronization Overhead) Rshow +3523 4274 M +324 0 V +1585 468 M +505 137 V +3100 717 L +2019 719 V +3631 4274 A +1585 468 A +2090 605 A +3100 717 A +5119 1436 A +LT2 +3415 4094 M +(Search Overhead) Rshow +3523 4094 M +324 0 V +1585 670 M +505 13 V +3100 806 L +2019 77 V +3631 4094 B +1585 670 B +2090 683 B +3100 806 B +5119 883 B +LT3 +3415 3914 M +(Parallelization Overhead) Rshow +3523 3914 M +324 0 V +1585 468 M +505 11 V +1010 20 V +2019 13 V +3631 3914 C +1585 468 C +2090 479 C +3100 499 C +5119 512 C +stroke +grestore +end +showpage +%%EndDocument + + endTexFig + 167 1523 a Fu(Figure)25 b(9:)30 b(Speedups)25 b(and)g(Ov)o(erheads)f +(for)j(K)t Fa(E)t(Y)-6 b(A)t(N)t(O)31 b Fu(\(YBWC,)26 +b(Fix)o(ed-Depth,)d(Shared)j(Memory\))0 1811 y(ne)n(v)o(er)e(slo)n(ws)g +(do)n(wn)f(to)i(w)o(ait)f(for)h(messages)f(from)h(another)g(processor)f +(or)h(to)g(\002nd)g(w)o(ork.)146 2010 y(The)k(observ)o(ed)g(speedups)f +(for)i(YBWC)g(are)g(in)e(line)h(with)f(other)h(published)f(performance) +i(numbers)e(for)0 2209 y(this)g(algorithm.)41 b(W)-8 +b(eill)28 b(tested)h(YBWC)g(and)g(ABD)l(AD)l(A)g(on)f(a)i(CM-5)e(using) +g(a)h(dif)n(ferent)g(Othello)e(program)0 2408 y([17].)74 +b(YBWC)40 b(achie)n(v)o(ed)f(a)g(9.5-fold)g(speedup)g(and)g(ABD)l(AD)l +(A)g(achie)n(v)o(ed)g(an)g(11-fold)g(speedup)f(on)h(16)0 +2608 y(processors,)24 b(comparable)h(numbers)f(to)g(that)h(achie)n(v)o +(ed)f(by)g(the)j(K)t Fa(E)t(Y)-6 b(A)t(N)t(O)31 b Fu(implementation.) +146 2807 y(Switching)38 b(to)g(the)g(check)o(ers)h(program)f(results,)j +(the)d(speedups)g(for)i(C)t Fa(H)t(I)t(N)t(O)t(O)t(K)45 +b Fu(could)38 b(be)g(described)0 3006 y(as)e(disappointing.)62 +b(Ho)n(we)n(v)o(er)l(,)38 b(other)e(authors)f(that)h(ha)n(v)o(e)f +(attempted)g(to)h(parallelize)g(check)o(ers)h(programs)0 +3205 y(with)29 b(synchronous)f(algorithms)g(ha)n(v)o(e)h(met)g(with)g +(limited)f(success.)44 b(The)30 b(best-kno)n(wn)e(speedup)h(for)h(a)f +(syn-)0 3405 y(chronous)f(algorithm)f(on)i(a)g(high-performance)f +(check)o(ers)i(program)e(is)g(3.32)g(for)h(Lu')-5 b(s)28 +b(Principal)h(V)-11 b(ariation)0 3604 y(Frontier)29 b(Splitting)f(with) +h(Load)g(Balancing)h([12)o(].)45 b(Thus,)30 b(the)f(observ)o(ed)g +(speedup)g(of)g(14.35)g(on)g(64)g(proces-)0 3803 y(sors)24 +b(for)h(APHID)g(is)f(a)h(four)n(-fold)f(impro)o(v)o(ement)e(o)o(v)o(er) +i(pre)n(viously)f(published)g(results)h(for)g(an)o(y)g(synchronous)0 +4002 y(algorithm)f(in)i(the)f(domain)g(of)h(check)o(ers.)146 +4202 y(APHID)i(can)g(yield)f(lar)n(ger)h(observ)o(ed)e(speedups)h(than) +g(synchronous)f(algorithms)f(in)i(domains)f(with)h(lo)n(w)0 +4401 y(branching)h(f)o(actors)i(such)e(as)h(check)o(ers)h(and)f +(Othello.)39 b(Higher)27 b(branching)h(f)o(actors)g(are)h(represented)f +(by)g(tw)o(o)0 4600 y(computer)g(chess)h(programs:)41 +b(C)t Fa(R)t(A)t(F)t(T)t(Y)36 b Fu(and)31 b(T)t Fa(H)t(E)t +Fu(T)t Fa(U)t(R)t(K)r Fu(.)49 b(In)29 b(computer)f(chess)h(algorithms,) +f(synchronous)0 4799 y(parallel)23 b(algorithms)f(achie)n(v)o(e)h +(higher)g(ef)n(\002ciencies)h(because)g(of)f(the)g(increased)h(number)f +(of)g(parallel)h(alterna-)0 4999 y(ti)n(v)o(es)i(a)n(v)n(ailable)h(at)h +(ALL)g(nodes.)39 b(Consider)28 b(W)-8 b(eill')j(s)27 +b(tests)g(on)h(a)g(32-processor)f(CM-5)h(as)g(representati)n(v)o(e)f +(of)0 5198 y(synchronous)19 b(parallel)h(algorithm)f(performance.)30 +b(W)-8 b(eill')j(s)19 b(implementation)f(of)i(YBWC)h(for)g(chess)f +(achie)n(v)o(ed)1900 5589 y(27)p eop +%%Page: 28 31 +28 30 bop 0 100 a Fu(a)22 b(speedup)g(of)g(12)g(on)f(32)h(processors,)g +(and)g(ABD)l(AD)l(A)g(achie)n(v)o(ed)g(a)g(speedup)g(of)g(16)f([17].)30 +b(W)-8 b(eill')j(s)21 b(results)g(are)0 299 y(similar)h(to)g(other)h +(reported)g(speedups)g(with)f(synchronous)g(game-tree)g(search)i +(algorithms.)k(The)23 b(majority)f(of)0 498 y(these)i(algorithms)f(ha)n +(v)o(e)h(been)h(tested)e(under)i(similar)e(conditions)g(to)h(those)f +(used)i(for)f(the)g(chess)h(programs)e(in)0 697 y(this)i(paper)-5 +b(.)33 b(Although)24 b(it)h(is)g(not)g(an)g(objecti)n(v)o(e)f +(comparison)h(between)h(algorithms,)e(the)h(observ)o(ed)g(speedups)0 +897 y(in)33 b(the)g(literature)g(for)g(most)f(synchronous)g(algorithms) +f(are)j(comparable,)h(up)e(to)f(32)h(processors,)i(with)d(the)0 +1096 y(observ)o(ed)24 b(speedups)g(seen)h(for)g(the)g(APHID)g +(algorithm)e(in)i(both)h(T)t Fa(H)t(E)t Fu(T)t Fa(U)t(R)t(K)32 +b Fu(and)26 b(C)t Fa(R)t(A)t(F)t(T)t(Y)r Fu(.)146 1295 +y(Dynamic)h(T)m(ree)h(Splitting,)f(when)h(using)f(the)g(same)h(testing) +e(methodology)g(as)i(described)g(in)f(this)g(paper)l(,)0 +1494 y(achie)n(v)o(ed)18 b(a)i(speedup)f(of)g(8.81)g(on)g(16)g +(processors)g([6].)29 b(Ho)n(we)n(v)o(er)l(,)19 b(a)h(latter)f(paper)g +(which)g(used)g(a)h(non-standard)0 1694 y(testing)27 +b(methodology)g(\(using)g(a)i(series)g(of)f(related)h(positions)e(with) +g(transposition)g(table)h(data)h(carried)g(o)o(v)o(er)0 +1893 y(from)24 b(search)g(to)g(search\))g(yielded)g(a)g(speedup)f(of)h +(11.1)g(on)f(16)h(processors)f([7].)31 b(It)24 b(is)f(not)h(kno)n(wn)e +(whether)i(the)0 2092 y(latter)h(testing)e(methodology)g(is)h +(partially)g(responsible)g(for)h(the)g(dif)n(ference)g(in)f(the)h +(observ)o(ed)f(results.)146 2291 y(Ho)n(we)n(v)o(er)l(,)c(there)f(is)h +(one)f(important)f(data)i(point)f(that)g(is)g(signi\002cantly)f(lar)n +(ger)i(than)g(the)f(reported)h(speedups)0 2491 y(by)g(an)o(y)g(other)g +(author)-5 b(.)28 b(Feldmann')-5 b(s)20 b(Y)-11 b(oung)19 +b(Brothers)i(W)-8 b(ait)20 b(algorithm)f(in)j(Z)t Fa(U)t(G)t(Z)t(W)-6 +b(A)t(N)t(G)27 b Fu(achie)n(v)o(es)20 b(speedups)0 2690 +y(of)27 b(21.83)g(on)g(32)g(processors)g(and)g(37.34)f(on)h(64)g +(processors)g(for)h(7-ply)e(searches)i(for)g(chess)f(that)f(tak)o(e)i +(place)0 2889 y(in)h(tournament)g(time)g([3].)46 b(Results)29 +b(of)h(this)f(calibre)h(ha)n(v)o(e)f(not)g(been)h(reported)g(for)g(an)o +(y)f(other)h(algorithm)e(or)0 3088 y(by)d(an)o(y)f(other)g(author)h +(repeating)g(Feldmann')-5 b(s)23 b(w)o(ork.)146 3288 +y(Why)32 b(are)i(Feldmann')-5 b(s)31 b(observ)o(ed)h(speedups)g(so)g +(lar)n(ge?)55 b(One)33 b(reason)g(is)f(that)i(Z)t Fa(U)t(G)t(Z)t(W)-6 +b(A)t(N)t(G)40 b Fu(is)32 b(a)h(slo)n(w)0 3487 y(sequential)26 +b(program.)38 b(C)t Fa(R)t(A)t(F)t(T)t(Y)c Fu(searches)27 +b(11-)f(and)h(12-ply)f(trees)h(on)f(32)g(processors)h(in)f(the)g(same)h +(a)n(v)o(erage)0 3686 y(time)i(that)i(Z)t Fa(U)t(G)t(Z)t(W)-6 +b(A)t(N)t(G)37 b Fu(searches)30 b(7-ply)e(trees)i(on)f(32)g +(processors.)45 b(Although)28 b(there)h(is)g(a)h(dramatic)f(speed)0 +3885 y(dif)n(ference)36 b(between)g(the)f(SGI)h(Origin)f(2000)g(\(on)g +(which)g(Crafty)i(searches)f(130,000)e(nodes)h(per)h(second\))0 +4085 y(and)23 b(the)g(T)m(ransputer)f(T)-9 b(-800)23 +b(\(where)h(Zugzw)o(ang)e(visits)g(523)g(nodes)h(per)h(second\),)f +(this)f(does)h(not)f(completely)0 4284 y(account)j(for)g(the)f(lar)n +(ge)i(dif)n(ference)f(in)f(search)i(depths.)146 4483 +y(Unlik)o(e)f(other)h(game-playing)e(programs,)k(Z)t +Fa(U)t(G)t(Z)t(W)-6 b(A)t(N)t(G)33 b Fu(spends)25 b(a)h(lar)n(ge)g +(amount)f(of)h(time)f(doing)g(mo)o(v)o(e)0 4682 y(ordering)39 +b(at)h(each)h(node.)75 b(This)39 b(allo)n(ws)i(Z)t Fa(U)t(G)t(Z)t(W)-6 +b(A)t(N)t(G)47 b Fu(to)40 b(use)g(a)g(netw)o(ork)f(of)h(T)m(ransputers) +f(as)h(a)g(shared)0 4882 y(memory)30 b(system)g(with)g(v)o(ery)g +(little)g(loss)g(in)g(performance.)50 b(The)31 b(time)f(spent)g(in)g +(mo)o(v)o(e)g(ordering)g(impro)o(v)o(es)2 5081 y(Z)t +Fa(U)t(G)t(Z)t(W)-6 b(A)t(N)t(G)r Fu(')h(s)37 b(parallel)c(tree)f +(search:)47 b(it)31 b(searches)i(the)g(best)f(mo)o(v)o(e)f(\002rst)h +(96\045)g(of)h(the)f(time,)h(signi\002cantly)0 5280 y(better)28 +b(than)g(most)f(other)h(sequential)f(chess)h(programs.)40 +b(On)28 b(the)g(other)g(hand,)h(most)e(programs)h(use)g(less)f(e)o(x-) +1900 5589 y(28)p eop +%%Page: 29 32 +29 31 bop 312 3 3256 4 v 312 20 V 310 120 4 100 v 493 +120 V 510 120 V 510 120 V 754 90 a Fi(K)n(e)o(yano)p +1251 120 V 1268 120 V 1267 120 V 486 w(Chinook)p 2009 +120 V 2026 120 V 2025 120 V 527 w(Crafty)p 2808 120 V +2825 120 V 2824 120 V 528 w(TheT)l(urk)p 3566 120 V 312 +123 3256 4 v 310 222 4 100 v 493 222 V 510 222 V 895 +222 V 990 193 a(T)-7 b(otal)p 1251 222 V 1268 222 V 1653 +222 V 589 w(T)g(otal)p 2009 222 V 2026 222 V 2411 222 +V 610 w(T)g(otal)p 2808 222 V 2825 222 V 3210 222 V 609 +w(T)g(otal)p 3566 222 V 310 322 V 493 322 V 510 322 V +895 322 V 962 292 a(Search)p 1251 322 V 1268 322 V 1653 +322 V 530 w(Search)p 2009 322 V 2026 322 V 2411 322 V +552 w(Search)p 2808 322 V 2825 322 V 3210 322 V 551 w(Search)p +3566 322 V 310 422 V 383 392 a(n)p 493 422 V 510 422 +V 136 w(Speedup)p 895 422 V 135 w(Ov)o(er)i(.)p 1251 +422 V 1268 422 V 153 w(Speedup)p 1653 422 V 135 w(Ov)o(er)g(.)p +2009 422 V 2026 422 V 153 w(Speedup)p 2411 422 V 155 +w(Ov)o(er)g(.)p 2808 422 V 2825 422 V 174 w(Speedup)p +3210 422 V 135 w(Ov)o(er)g(.)p 3566 422 V 312 425 3256 +4 v 310 525 4 100 v 383 495 a(8)p 493 525 V 510 525 V +206 w(5.74)p 895 525 V 189 w(9.12\045)p 1251 525 V 1268 +525 V 265 w(-)p 1653 525 V 343 w(-)p 2009 525 V 2026 +525 V 359 w(-)p 2411 525 V 363 w(-)p 2808 525 V 2825 +525 V 380 w(-)p 3210 525 V 343 w(-)p 3566 525 V 312 528 +3256 4 v 310 628 4 100 v 362 598 a(16)p 493 628 V 510 +628 V 165 w(11.27)p 895 628 V 147 w(17.26\045)p 1251 +628 V 1268 628 V 184 w(8.35)p 1653 628 V 168 w(87.45\045)p +2009 628 V 2026 628 V 185 w(8.76)p 2411 628 V 210 w(69.9\045)p +2808 628 V 2825 628 V 226 w(8.48)p 3210 628 V 168 w(59.26\045)p +3566 628 V 312 631 3256 4 v 310 731 4 100 v 362 701 a(32)p +493 731 V 510 731 V 165 w(21.99)p 895 731 V 147 w(28.78\045)p +1251 731 V 1268 731 V 163 w(10.82)p 1653 731 V 147 w(201.6\045)p +2009 731 V 2026 731 V 164 w(16.56)p 2411 731 V 168 w(120.7\045)p +2808 731 V 2825 731 V 184 w(12.96)p 3210 731 V 147 w(157.2\045)p +3566 731 V 312 734 3256 4 v 310 834 4 100 v 362 804 a(64)p +493 834 V 510 834 V 165 w(37.44)p 895 834 V 147 w(76.72\045)p +1251 834 V 1268 834 V 163 w(14.35)p 1653 834 V 147 w(393.1\045)p +2009 834 V 2026 834 V 164 w(18.00)p 2411 834 V 147 w(300.65\045)p +2808 834 V 2825 834 V 163 w(15.96)p 3210 834 V 147 w(384.8\045)p +3566 834 V 312 837 3256 4 v 312 853 V 513 1013 a Fu(T)d(able)25 +b(I:)g(Speedup)g(Data)g(for)g(All)f(Programs)h(\(Fix)o(ed-Depth,)f +(Shared)i(Memory\))0 1300 y(pensi)n(v)o(e)19 b(mo)o(v)o(e)g(ordering)i +(heuristics)e(and)i(only)f(search)h(the)g(best)f(more)h(\002rst)f +(80-90\045)h(of)f(the)h(time,)g(increasing)0 1499 y(the)j(node)h(rate)g +(dramatically)-6 b(.)29 b(The)24 b(increase)i(in)e(nodes)g(per)h +(second)f(easily)g(subsumes)f(the)h(additional)g(nodes)0 +1698 y(that)g(must)g(be)h(searched,)g(allo)n(wing)e(most)h(programs)g +(to)h(out-search)g(sequential)g(Z)t Fa(U)t(G)t(Z)t(W)-6 +b(A)t(N)t(G)r Fu(.)146 1898 y(Another)34 b(reason)f(for)h(the)g(e)o +(xtraordinary)f(speedups)g(is)g(that)g(the)g(transposition)f(table)h(w) +o(as)h(allo)n(wed)e(to)0 2097 y(gro)n(w)g(as)h(more)f(T)m(ransputers)g +(were)h(added)g(to)f(the)h(system.)53 b(Thus,)34 b(the)e(observ)o(ed)g +(speedups)g(are)h(illustrat-)0 2296 y(ing)27 b(the)g(po)n(wer)g(of)h +(adding)e(additional)g(processors)i(and)f(transposition)e(table)i +(memory)-6 b(,)27 b(not)g(just)g(additional)0 2495 y(processors.)33 +b(F)o(or)26 b(the)f(lar)n(gest)h(search)g(amongst)e(the)i(test)f(set,)i +(Z)t Fa(U)t(G)t(Z)t(W)-6 b(A)t(N)t(G)33 b Fu(searches)27 +b(61)e(million)f(nodes)h(se-)0 2695 y(quentially)c(with)h(a)i(small)d +(transposition)g(table,)i(and)g(41)f(million)f(nodes)h(in)h(parallel)g +(on)f(256)g(processors)h(with)0 2894 y(a)k(much)f(lar)n(ger)h +(transposition)d(table.)35 b(The)26 b(number)g(of)g(nodes)i(Z)t +Fa(U)t(G)t(Z)t(W)-6 b(A)t(N)t(G)34 b Fu(searches)27 b(sequentially)e(w) +o(ould)0 3093 y(decrease)31 b(if)f(much)f(lar)n(ger)i(transposition)d +(tables)h(were)i(used)f(during)f(the)h(sequential)f(test.)45 +b(This)30 b(w)o(ould,)g(of)0 3293 y(course,)25 b(reduce)g(the)g(observ) +o(ed)f(speedup.)146 3492 y(W)l(ith)33 b(a)g(f)o(ast)h(sequential)e +(program,)j(operating)d(in)h(an)h(en)l(vironment)d(where)j(messages)f +(are)h(not)e(f)o(ast)h(in)0 3691 y(relation)i(to)h(the)f(program,)j +(less)e(than)f(superb)h(mo)o(v)o(e)e(ordering)h(and)h(constant)f +(memory)g(usage)h(in)f(the)h(se-)0 3890 y(quential)23 +b(and)g(parallel)g(runs,)h(it)f(is)g(unlik)o(ely)f(that)h(Feldmann')-5 +b(s)22 b(observ)o(ed)h(speedups)g(can)h(be)f(duplicated)g(with)0 +4090 y(an)o(y)k(synchronous)g(parallel)g(algorithm.)38 +b(Gi)n(v)o(en)27 b(a)h(program)f(without)g(quiescence)h(search,)g(it)g +(is)f(possible)f(to)0 4289 y(generate)i(equi)n(v)n(alent)d(speedups)i +(with)f(asynchronous)h(search.)38 b(Earlier)28 b(it)e(w)o(as)i +(demonstrated)e(that)h(APHID)0 4488 y(can)d(generate)g(speedups)f(of)h +(that)g(calibre)g(in)f(the)h(\002x)o(ed-depth)f(v)o(ersion)f(of)k(K)t +Fa(E)t(Y)-6 b(A)t(N)t(O)r Fu(.)34 b(Ho)n(we)n(v)o(er)l(,)23 +b(quiescence)0 4687 y(search)29 b(is)f(inte)o(gral)f(to)h(modern)g +(chess)g(programs.)41 b(Hence,)29 b(it)f(is)g(unlik)o(ely)f(that)h(an)o +(y)g(asynchronous)f(parallel)0 4887 y(algorithm)c(in)i(chess)f(w)o +(ould)g(achie)n(v)o(e)h(observ)o(ed)f(speedups)g(similar)f(to)i +(Feldmann')-5 b(s)24 b(results.)1900 5589 y(29)p eop +%%Page: 30 33 +30 32 bop 0 100 a Fo(5)143 b(Conclusions)0 402 y Fu(In)25 +b(this)f(paper)l(,)h(the)f(question)g(w)o(as)h(posed)f(as)h(to)f +(whether)h(asynchronous)e(algorithms)g(could)i(be)g(competiti)n(v)o(e)0 +601 y(with)32 b(synchronous)g(algorithms)g(in)h(real)g(applications)f +(searching)h(real)h(game)e(trees.)57 b(The)33 b(results)f(in)h(Sec-)0 +800 y(tion)26 b(4.3,)h(summarized)f(in)g(T)-8 b(able)27 +b(I,)h(sho)n(w)e(that)g(the)h(APHID)g(algorithm)e(can)j(deli)n(v)o(er)d +(superior/competiti)n(v)o(e)0 1000 y(results)f(to)g(that)g(achie)n(v)n +(able)f(by)h(a)h(synchronous)e(algorithm.)29 b(Further)l(,)c(this)e +(performance)i(is)f(easy)h(to)f(achie)n(v)o(e)0 1199 +y(since)h(APHID)g(is)f(easy)h(to)g(inte)o(grate)f(into)g(an)g(e)o +(xisting)f Fq(\013)q(\014)6 b Fu(-searching)25 b(program.)146 +1398 y(Comparing)31 b(APHID)g(to)g(synchronous)f(approaches,)i(it)f(is) +f(interesting)g(to)h(note)f(that)h(APHID')-5 b(s)31 b(results)0 +1598 y(are)36 b(less)f(dependent)g(on)g(the)g(branching)g(f)o(actor)h +(within)e(the)h(tree.)63 b(The)35 b(synchronous)f(search)i(results)e +(are)0 1797 y(highly)d(dependent)h(on)g(the)g(branching)f(f)o(actor;)36 +b(a)d(lar)n(ger)g(branching)e(f)o(actor)i(yields)e(more)h(parallelism)f +(and)0 1996 y(less)26 b(idle)f(time.)34 b(Thus,)26 b(the)g +(asynchronous)f(algorithm)g(in)g(APHID)i(is)f(a)g(better)g(choice)g(in) +g(applications)f(with)0 2195 y(small)f(branching)g(f)o(actors,)h(such)g +(as)f(check)o(ers)i(and)f(Othello.)146 2395 y(The)20 +b(speedups)f(achie)n(v)n(able)g(by)h(the)g(APHID)g(algorithm)f(are)h +(similar)f(to)g(those)h(achie)n(v)o(ed)f(by)g(synchronous)0 +2594 y(parallel)k(algorithms)e(up)i(to)f(32)h(processors)f(for)i +(chess.)29 b(Thus,)23 b(a)g(synchronous)f(parallel)h(algorithm)e(may)i +(be)g(a)0 2793 y(reasonable)k(choice)g(for)g(wide)g(v)n(ariable-depth)e +(game)i(trees.)37 b(Ho)n(we)n(v)o(er)l(,)26 b(when)g(one)h(considers)f +(that)h(APHID)0 2992 y(is)f(\(1\))g(easy)h(to)f(inte)o(grate)f(into)h +(e)o(xisting)e(le)o(gac)o(y)h(code,)i(\(2\))f(can)h(lik)o(ely)e(achie)n +(v)o(e)h(better)g(speedups)g(with)f(more)0 3192 y(transposition)d +(table)h(memory)-6 b(,)23 b(and)h(\(3\))g(has)g(the)g(additional)e +(bene\002t)j(of)f(speculati)n(v)o(e)e(search)i(on)g(some)f(of)h(the)0 +3391 y(k)o(e)o(y)g(v)n(ariations)g(at)g(the)h(ne)o(xt)f(search)h +(depth,)g(then)f(APHID)h(becomes)g(the)f(algorithm)g(of)h(choice.)146 +3590 y(It)h(is)g(hoped)g(that)f(this)g(document,)h(in)f(conjunction)g +(with)g(the)h(freely-a)n(v)n(ailable)g(APHID)g(library)-6 +b(,)26 b(will)f(be)0 3789 y(helpful)32 b(for)i(game-tree)f(researchers) +h(to)f(in)l(v)o(estigate)e(these)i(and)g(other)g(ideas)f(surrounding)g +(asynchronous)0 3989 y(game-tree)25 b(search.)0 4328 +y Fo(6)143 b(Ackno)o(wledgements)0 4630 y Fu(P)o(aul)20 +b(Masiar)g(and)h(Marc)g(Nolte)e(arranged)i(access)g(to)f(the)h +(64-processor)f(SGI)h(Origin)f(2000)f(system)h(in)g(Eagan,)0 +4830 y(Minnesota.)28 b(Charles)20 b(Leiserson,)h(Ask)o(e)f(Plaat)g(and) +g(Boston)g(Uni)n(v)o(ersity)e(arranged)j(access)f(to)g(a)g +(32-processor)0 5029 y(SGI)30 b(Origin)e(2000)g(system.)43 +b(The)29 b(authors)f(w)o(ould)g(also)h(lik)o(e)f(to)h(thank)g(Darse)g +(Billings,)g(Yngvi)f(Bj)8 b(\250)-41 b(ornsson,)0 5228 +y(Murray)38 b(Campbell,)k(Joe)c(Culberson,)j(Y)-10 b(aoqing)38 +b(Gao,)k(Andreas)d(Junghanns,)h(T)-8 b(on)o(y)37 b(Marsland,)42 +b(Monroe)1900 5589 y(30)p eop +%%Page: 31 34 +31 33 bop 0 100 a Fu(Ne)n(wborn,)24 b(Denis)g(P)o(app,)h(John)f +(Samson,)g(and)h(the)g(referees)h(for)f(their)f(helpful)h(suggestions.) +0 436 y Fo(Refer)m(ences)50 738 y Fu([1])49 b(R.)31 b(D.)f(Blumofe,)i +(C.)f(F)-8 b(.)31 b(Joer)n(g,)h(B.)g(C.)f(K)o(uszmaul,)f(C.)h(E.)g +(Leiserson,)g(K.)g(H.)f(Randall,)i(and)f(Y)-13 b(.)31 +b(Zhou.)215 938 y(Cilk:)51 b(An)35 b(Ef)n(\002cient)g(Multithreaded)f +(Runtime)h(System.)69 b(In)35 b Fm(Pr)l(oceedings)f(of)h(PPOPP)g('95)p +Fu(,)j(pages)215 1137 y(207\226216,)23 b(Santa)j(Barbara,)g(CA,)f(July) +f(1995.)50 1413 y([2])49 b(M.)36 b(G.)i(Brockington.)74 +b Fm(Async)o(hrnous)36 b(P)-8 b(ar)o(allel)35 b(Game-T)-5 +b(r)l(ee)38 b(Sear)l(c)o(h)p Fu(.)75 b(PhD)37 b(thesis,)i(Uni)n(v)o +(ersity)c(of)215 1612 y(Alberta,)24 b(Department)h(of)f(Computing)g +(Science,)h(Edmonton,)e(Canada,)j(December)f(1997.)50 +1889 y([3])49 b(R.)32 b(Feldmann.)59 b Fm(Spielbaumsuc)o(he)31 +b(auf)g(Massiv)h(P)-8 b(ar)o(allelen)30 b(Systemen)p +Fu(.)60 b(PhD)32 b(thesis,)h(Uni)n(v)o(ersity)d(of)215 +2088 y(P)o(aderborn,)22 b(P)o(aderborn,)f(German)o(y)-6 +b(,)21 b(May)g(1993.)27 b(English)20 b(translation)g(a)n(v)n(ailable:) +27 b(Game)22 b(T)m(ree)f(Search)215 2287 y(on)j(Massi)n(v)o(ely)f(P)o +(arallel)i(Systems.)50 2564 y([4])49 b(A.)25 b(Geist,)f(A.)h(Be)o +(guelin,)g(J.)g(Dongarra,)g(W)-9 b(.)25 b(Jiang,)f(B.)i(Manchek,)f(and) +g(V)-13 b(.)25 b(Sunderam.)37 b Fm(PVM:)25 b(P)-8 b(ar)o(allel)215 +2763 y(V)h(irtual)33 b(Mac)o(hine)i(\226)h(A)f(User')l(s)g(Guide)g(and) +h(T)-5 b(utorial)33 b(for)i(Network)o(ed)i(P)-8 b(ar)o(allel)33 +b(Computing)p Fu(.)69 b(MIT)215 2962 y(Press,)25 b(1994.)50 +3238 y([5])49 b(R.)36 b(D.)g(Greenblatt,)j(D.)d(E.)f(Eastlak)o(e,)k +(and)d(S.)g(D.)g(Crock)o(er)-5 b(.)72 b(The)36 b(Greenblatt)g(Chess)g +(Program.)72 b(In)215 3438 y Fm(Pr)l(oceedings)23 b(of)i(the)f(F)-7 +b(all)24 b(J)n(oint)f(Computer)i(Confer)l(ence)p Fu(,)g(v)n(olume)f +(31,)g(pages)h(801\226810,)f(1967.)50 3714 y([6])49 b(R.)34 +b(M.)f(Hyatt.)63 b Fm(A)33 b(High-P)-8 b(erformance)33 +b(P)-8 b(ar)o(allel)31 b(Algorithm)h(T)-9 b(o)34 b(Sear)l(c)o(h)f +(Depth-F)l(ir)o(st)e(Game)j(T)-5 b(r)l(ees)p Fu(.)215 +3913 y(PhD)25 b(thesis,)f(Uni)n(v)o(ersity)e(of)j(Alabama,)f +(Birmingham,)g(Alabama,)g(1988.)50 4190 y([7])49 b(R.)22 +b(M.)f(Hyatt.)28 b(The)22 b(Dynamic)f(T)m(ree)g(Splitting)f(P)o +(arallel)i(Search)h(Algorithm.)k Fm(ICCA)22 b(J)n(ournal)p +Fu(,)f(20\(1\):3\226)215 4389 y(19,)j(1997.)50 4665 y([8])49 +b(A.)24 b(Junghanns)e(and)j(J.)e(Schaef)n(fer)-5 b(.)35 +b(Search)25 b(V)-11 b(ersus)24 b(Kno)n(wledge)f(in)h(Game-Playing)f +(Programs)h(Re)n(vis-)215 4864 y(ited.)35 b(In)25 b Fm(Pr)l(oceedings)e +(of)i(IJCAI-97)p Fu(,)g(pages)g(692\226697,)f(Nago)o(ya,)g(Japan,)h +(August)f(1997.)50 5141 y([9])49 b(D.)29 b(E.)f(Knuth)g(and)h(R.)h(W)-9 +b(.)28 b(Moore.)49 b(An)28 b(Analysis)g(of)h(Alpha-Beta)g(Pruning.)49 +b Fm(Arti\002cial)27 b(Intellig)o(ence)p Fu(,)215 5340 +y(6\(3\):293\226326,)c(1975.)1900 5589 y(31)p eop +%%Page: 32 35 +32 34 bop 0 100 a Fu([10])49 b(D.)23 b(K)m(opec)g(and)g(I.)h(Bratk)o +(o.)33 b(The)23 b(Bratk)o(o-K)m(opec)h(Experiment:)k(A)c(Comparison)e +(of)i(Human)f(and)g(Com-)215 299 y(puter)g(Performance)h(in)f(Chess.)32 +b(In)23 b(M.R.B.)g(Clark)o(e,)h(editor)l(,)f Fm(Advances)g(in)g +(Computer)g(Chess)g(3)p Fu(,)g(pages)215 498 y(57\22672.)h(Permagon)h +(Press,)g(1982.)0 780 y([11])49 b(B.)28 b(C.)h(K)o(uszmaul.)44 +b(The)28 b(StarT)-7 b(ech)29 b(Massi)n(v)o(ely-P)o(arallel)d(Chess)i +(Program.)46 b Fm(ICCA)29 b(J)n(ournal)p Fu(,)e(18\(1\):3\226)215 +980 y(19,)d(1995.)0 1262 y([12])49 b(C.-P)-11 b(.)30 +b(P)-11 b(.)30 b(Lu.)51 b(P)o(arallel)29 b(Search)i(of)e(Narro)n(w)h +(Game)f(T)m(rees.)51 b(Master')-5 b(s)29 b(thesis,)g(Uni)n(v)o(ersity)f +(of)h(Alberta,)215 1461 y(Department)24 b(of)h(Computing)e(Science,)j +(Edmonton,)d(Canada,)i(1993.)0 1743 y([13])49 b(T)-7 +b(.)24 b(A.)h(Marsland)f(and)g(M.)h(S.)g(Campbell.)35 +b(P)o(arallel)25 b(Search)h(of)e(Strongly)g(Ordered)i(Game)e(T)m(rees.) +36 b Fm(A)m(CM)215 1943 y(Computing)23 b(Surve)m(ys)p +Fu(,)i(14\(4\):533\226551,)e(1982.)0 2225 y([14])49 b(M.)28 +b(M.)h(Ne)n(wborn.)48 b(Unsynchronized)28 b(Iterati)n(v)o(ely)f +(Deepening)i(P)o(arallel)g(Alpha-Beta)g(Search.)50 b +Fm(IEEE)215 2424 y(T)-5 b(r)o(ansactions)22 b(on)j(P)-8 +b(attern)23 b(Analysis)h(and)g(Mac)o(hine)g(Intellig)o(ence)p +Fu(,)g(P)-9 b(AMI-10\(5\):687\226694,)23 b(1988.)0 2707 +y([15])49 b(J.)23 b(Schaef)n(fer)-5 b(.)33 b(Distrib)n(uted)21 +b(Game-T)m(ree)j(Searching.)32 b Fm(J)n(ournal)22 b(of)h(P)-8 +b(ar)o(allel)21 b(and)i(Distrib)n(uted)e(Comput-)215 +2906 y(ing)p Fu(,)j(6\(2\):90\226114,)f(1989.)0 3188 +y([16])49 b(J.)24 b(J.)g(Scott.)35 b(A)25 b(Chess-Playing)f(Program.)35 +b(In)25 b(B.)g(Meltzer)g(and)f(D.)g(Michie,)g(editors,)g +Fm(Mac)o(hine)g(Intelli-)215 3387 y(g)o(ence)h(4)p Fu(,)g(pages)f +(255\226265.)g(Edinb)n(ur)n(gh)g(Uni)n(v)o(ersity)e(Press,)j(1969.)0 +3670 y([17])49 b(J.-C.)35 b(W)-8 b(eill.)67 b Fm(Pr)l(o)o(gr)o(ammes)32 +b(d')1389 3648 y(\264)1369 3670 y(Ec)o(hecs)j(de)f(Championnat:)50 +b(Ar)l(c)o(hitectur)l(e)34 b(Lo)o(gicielle)o(,)j(Synth)3650 +3671 y(\036)3645 3670 y(ese)d(de)215 3869 y(F)-10 b(onctions)23 +b(d')730 3847 y(\264)711 3869 y(Evaluations,)f(P)-8 b(ar)o(all)1488 +3870 y(\264)1483 3869 y(elisme)23 b(de)i(Rec)o(her)l(c)o(he)p +Fu(.)35 b(PhD)25 b(thesis,)e(Uni)n(v)o(ersit)6 b(\264)-39 +b(e)23 b(P)o(aris)i(8,)f(January)215 4068 y(1995.)35 +b(In)25 b(French.)0 4408 y Fo(A)143 b(The)35 b(Master')-5 +b(s)34 b(Guessed)g(Scor)m(e)h(Algorithm)0 4710 y Fu(APHID)j(has)f(all)g +(of)g(the)h(information)d(about)i(the)g(pre)n(vious)f(depths)h(of)g +Fq(\013)q(\014)43 b Fu(search)38 b(for)f(a)h(node,)i(such)d(as)0 +4909 y(whether)26 b(the)g(score)g(w)o(as)g(a)h(lo)n(wer)e(bound,)h(an)g +(upper)g(bound)f(or)h(an)g(e)o(xact)g(minimax)f(v)n(alue.)33 +b(Other)26 b(informa-)0 5109 y(tion)21 b(includes)h(the)g(\002nal)g +(minimax)f(v)n(alue)h(from)g(each)h(of)f(those)g(depths)f(of)h(search,) +i(as)e(well)g(as)g(a)h(hypothetical)0 5308 y(minimax)28 +b(v)n(alue)h(for)g(the)h(current)g Fq(d)p Fu(-ply)e(search)i(\(the)g +(closest)f(node)g(on)g(the)g(principal)g(v)n(ariation)f(that)h(has)h(a) +1900 5589 y(32)p eop +%%Page: 33 36 +33 35 bop 0 100 a Fu(certain)28 b(v)n(alue\).)38 b(All)27 +b(of)h(this)f(information)f(is)h(used)g(to)g(determine)g(a)h(guessed)f +(score.)40 b(The)27 b(full)g(algorithm)g(is)0 299 y(gi)n(v)o(en)c(in)i +(Figure)g(10.)146 498 y(Starting)i(with)f(the)g(information)g(for)h(a)g +Fl(\()p Fq(d)c Fk(\000)h Fq(d)1817 462 y Fp(0)1863 498 +y Fk(\000)g Fl(1\))p Fu(-ply)i(search,)i(the)f(algorithm)e(checks)i +(successi)n(v)o(ely)0 697 y(shallo)n(wer)e(depths)g(of)h(search)g +(returned)g(by)g(the)f(sla)n(v)o(e)h(until)e(a)j(rele)n(v)n(ant)d +(result)i(is)f(found)h(with)f(respect)h(to)f(the)0 897 +y Fq(\013)q(\014)33 b Fu(search)28 b(windo)n(w)-6 b(.)36 +b(This)26 b(is)h(guaranteed)h(to)f(happen,)g(since)g(the)h(master)f +(stores)f(an)i(e)o(xact)f(e)n(v)n(aluation)e(of)j(a)0 +1096 y(leaf)d(node)g(\(a)g(0-ply)f(search\))i(when)f(the)f(leaf)h(is)g +(\002rst)g(generated)g(and)g(gi)n(v)o(en)e(to)h(a)i(sla)n(v)o(e.)146 +1295 y(Ho)n(we)n(v)o(er)l(,)k(the)f(result)g(returned)g(by)h(the)f(sla) +n(v)o(e)g(should)f(not)h(be)g(used)h(without)e(an)h(adjustment)f(since) +h(the)0 1494 y(minimax)24 b(v)n(alue)h(at)h(the)g(root)f(of)h(the)g +(tree)g(may)g(v)n(ary)f(between)h(dif)n(ferent)g(depths)f(of)h(search.) +34 b(In)26 b(APHID,)g(the)0 1694 y(sla)n(v)o(e')-5 b(s)28 +b(minimax)g(v)n(alue)h(is)g(scaled)h(by)f(the)g(dif)n(ference)h +(between)g(the)f(v)n(alue)g(of)h(the)f(full)g(search)h(that)f(it)g(w)o +(as)0 1893 y(generated)g(for)g(and)f(the)g(hypothetical)f(v)n(alue)h +(of)g(the)g(current)h(search.)42 b(F)o(or)29 b(e)o(xample,)f(if)h(the)f +(current)h(search)0 2092 y(has)k(a)g(hypothetical)d(minimax)h(v)n(alue) +h(of)h(5,)i(and)d(the)h(result)f(of)h Fk(\024)g Fu(6)f(from)h(a)g +(search)g(that)f(had)h(a)g(minimax)0 2291 y(v)n(alue)g(of)h(7)g(at)f +(the)h(root)f(of)h(the)g(game)f(tree)h(is)f(to)h(be)g(used,)h(then)f +(the)f(dif)n(ference)h(of)g(the)g(minimax)e(v)n(alues)0 +2491 y(\(5-7\))26 b(w)o(ould)f(be)g(added)h(to)f(the)h(result.)33 +b(Thus,)25 b(the)g(v)n(alue)g(changes)h(from)f Fk(\024)h +Fu(6)g(for)g(the)f(earlier)i(search)f(to)f Fk(\024)h +Fu(4)0 2690 y(for)g(use)g(as)f(a)h(guessed)f(minimax)g(v)n(alue)g(in)g +(the)g(current)h(search.)34 b(This)25 b(preserv)o(es)h(the)f(mo)o(v)o +(e)f(ordering)h(of)h(the)0 2889 y(pre)n(vious)e(iteration.)146 +3088 y(This)c(algorithm)e(is)i(preferred)h(o)o(v)o(er)e(other)h +(methods)f(for)h(determining)f(an)h(estimated)f(e)n(v)n(aluation)g +(because)0 3288 y(it)k(guarantees)g(that)g(a)h(guessed)e(score)i(will)e +(not)h(disrupt)f(the)h(search)h(tree.)31 b(If)23 b(the)g(old)g(search)h +(result)f(\()p Fk(\024)h Fu(6\))f(w)o(as)0 3487 y(suf)n(\002cient)g(to) +h(cause)h(the)e(tree)i(to)f(be)g(pruned)g(in)f(the)h(earlier)h(search,) +f(the)g(guessed)g(v)n(alue)f(\()p Fk(\024)29 b Fl(4)p +Fu(\))24 b(will)f(lik)o(ely)g(be)0 3686 y(suf)n(\002cient)h(to)h(prune) +f(the)h(tree)g(in)g(the)f(current)h(search.)0 4026 y +Fo(B)143 b(The)35 b(Sla)l(v)o(e')-5 b(s)34 b(W)m(indo)o(w)h(Selection)f +(Algorithm)0 4328 y Fu(The)29 b(windo)n(w)f(selection)g(algorithm)g(is) +g(application-dependent,)h(and)g(can)g(be)g(modi\002ed)g(by)g(editing)f +(a)h(call-)0 4527 y(back)f(function)f(pro)o(vided)g(to)g(the)h +(application)f(programmer)-5 b(.)38 b(Based)29 b(on)e(numerous)g +(tests,)h(a)g(general)g(set)g(of)0 4727 y(rules)d(w)o(as)f(created)i +(for)f(determining)e(small,)h(useful)g Fq(\013)q(\014)31 +b Fu(search)25 b(windo)n(ws)e(in)i(APHID.)146 4926 y(The)39 +b(\002rst)f(recommendation)f(is)h(that)g(the)g(sla)n(v)o(e')-5 +b(s)38 b(search)g(windo)n(w)f(should)h(be)g(centered)h(around)f(the)0 +5125 y(hypothetical)29 b(minimax)g(v)n(alue)i(\(as)g(de\002ned)g(in)g +(Section)f(3.1\),)i(since)f(this)f(is)h(the)f(most)g(lik)o(ely)g(v)n +(alue)g(of)h(the)1900 5589 y(33)p eop +%%Page: 34 37 +34 36 bop 0 100 a Fu(search.)279 63 y Fn(8)355 100 y +Fu(The)26 b(second)h(recommendation)e(is)h(that)g(to)g(increase)h(the)g +(windo)n(w)e(based)h(on)g(ho)n(w)g(\223unstable\224)g(the)0 +299 y(principal)35 b(v)n(ariation)f(may)g(be.)63 b(F)o(or)35 +b(e)o(xample,)i(if)e(the)g(master)g(says)g(that)g(the)g(highest)f +(remaining)g(priority)0 498 y(w)o(ork)i(to)g(be)h(searched)f(is)g(the)g +(same)h(as)f(the)g(piece)h(of)f(w)o(ork)g(that)g(is)g(currently)g +(being)g(e)o(xamined,)i(then)e(a)0 697 y(small)29 b(search)h(windo)n(w) +e(should)g(be)i(chosen)f(because)h(the)f(search)h(is)f(relati)n(v)o +(ely)f(con\002dent)i(of)f(the)h(principal)0 897 y(v)n(ariation.)i(Ho)n +(we)n(v)o(er)l(,)25 b(as)g(the)h(dif)n(ference)g(between)g(the)f(lar)n +(gest)h(priority)e(that)h(the)h(master)f(needs)h(completed)0 +1096 y(and)31 b(the)f(priority)f(of)i(the)f(sla)n(v)o(e')-5 +b(s)30 b(piece)h(of)f(w)o(ork)h(gets)f(lar)n(ger)l(,)i(the)f(search)g +(windo)n(w)e(needs)h(to)h(be)f(lar)n(ger)h(to)0 1295 +y(re\003ect)d(the)f(uncertainty)f(in)h(the)g(principal)f(v)n(ariation.) +36 b(These)27 b(lar)n(ger)h(search)g(windo)n(ws)d(are)j(also)e(used)h +(when)0 1494 y(starting)e(speculati)n(v)o(e)f(searches)i(for)h(future)e +(iterations,)g(since)h(there)g(is)g(no)f(information)g(on)g(the)h(v)n +(alue)f(of)h(the)0 1694 y(principal)e(v)n(ariation)g(at)g(the)h(ne)o +(xt)f(ply)-6 b(.)146 1893 y(These)23 b(recommendations)e(were)i(used)f +(in)g(the)g(windo)n(w)f(selection)g(algorithm)g(for)i(each)g(of)f(the)h +(programs)0 2092 y(tested)h(in)g(Section)h(4.)30 b(The)25 +b(scale)g(and)f(v)n(ariance)h(of)f(the)h(e)n(v)n(aluation)d(function)i +(in)g(each)h(program)g(w)o(as)f(used)g(to)0 2291 y(determine)g(the)h +(constants)f(used)g(to)h(increase)g(or)g(set)f(the)h(initial)e(size)i +(of)g(the)g(sla)n(v)o(e')-5 b(s)23 b(windo)n(w)-6 b(.)p +0 5149 1560 4 v 112 5210 a Fj(8)149 5240 y Fi(When)23 +b(the)g(hypothetical)d(minimax)h(v)n(alue)h(is)i(INV)-11 +b(ALID,)21 b(then)h(this)i(must)e(be)h(a)g(PV)g(node,)f(and)g(an)h +(in\002nite)f(search)h(windo)n(w)0 5340 y(should)c(be)h(chosen.)1900 +5589 y Fu(34)p eop +%%Page: 35 38 +35 37 bop 195 608 a + 27707274 30785863 11446026 16445440 28746629 35587932 startTexFig + 195 608 a +%%BeginDocument: pics/guessed-score.ps +%Magnification: 0.50 +/$F2psDict 200 dict def +$F2psDict begin +$F2psDict /mtrx matrix put +/col-1 {0 setgray} bind def +/col0 {0.000 0.000 0.000 srgb} bind def +/col1 {0.000 0.000 1.000 srgb} bind def +/col2 {0.000 1.000 0.000 srgb} bind def +/col3 {0.000 1.000 1.000 srgb} bind def +/col4 {1.000 0.000 0.000 srgb} bind def +/col5 {1.000 0.000 1.000 srgb} bind def +/col6 {1.000 1.000 0.000 srgb} bind def +/col7 {1.000 1.000 1.000 srgb} bind def +/col8 {0.000 0.000 0.560 srgb} bind def +/col9 {0.000 0.000 0.690 srgb} bind def +/col10 {0.000 0.000 0.820 srgb} bind def +/col11 {0.530 0.810 1.000 srgb} bind def +/col12 {0.000 0.560 0.000 srgb} bind def +/col13 {0.000 0.690 0.000 srgb} bind def +/col14 {0.000 0.820 0.000 srgb} bind def +/col15 {0.000 0.560 0.560 srgb} bind def +/col16 {0.000 0.690 0.690 srgb} bind def +/col17 {0.000 0.820 0.820 srgb} bind def +/col18 {0.560 0.000 0.000 srgb} bind def +/col19 {0.690 0.000 0.000 srgb} bind def +/col20 {0.820 0.000 0.000 srgb} bind def +/col21 {0.560 0.000 0.560 srgb} bind def +/col22 {0.690 0.000 0.690 srgb} bind def +/col23 {0.820 0.000 0.820 srgb} bind def +/col24 {0.500 0.190 0.000 srgb} bind def +/col25 {0.630 0.250 0.000 srgb} bind def +/col26 {0.750 0.380 0.000 srgb} bind def +/col27 {1.000 0.500 0.500 srgb} bind def +/col28 {1.000 0.630 0.630 srgb} bind def +/col29 {1.000 0.750 0.750 srgb} bind def +/col30 {1.000 0.880 0.880 srgb} bind def +/col31 {1.000 0.840 0.000 srgb} bind def + +end +save +143.5 569.5 translate +1 -1 scale + +/cp {closepath} bind def +/ef {eofill} bind def +/gr {grestore} bind def +/gs {gsave} bind def +/sa {save} bind def +/rs {restore} bind def +/l {lineto} bind def +/m {moveto} bind def +/rm {rmoveto} bind def +/n {newpath} bind def +/s {stroke} bind def +/sh {show} bind def +/slc {setlinecap} bind def +/slj {setlinejoin} bind def +/slw {setlinewidth} bind def +/srgb {setrgbcolor} bind def +/rot {rotate} bind def +/sc {scale} bind def +/sd {setdash} bind def +/ff {findfont} bind def +/sf {setfont} bind def +/scf {scalefont} bind def +/sw {stringwidth} bind def +/tr {translate} bind def +/tnt {dup dup currentrgbcolor + 4 -2 roll dup 1 exch sub 3 -1 roll mul add + 4 -2 roll dup 1 exch sub 3 -1 roll mul add + 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} + bind def +/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul + 4 -2 roll mul srgb} bind def +/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def +/$F2psEnd {$F2psEnteredState restore end} def + +$F2psBegin +10 setmiterlimit +n 0 792 m 0 0 l 612 0 l 612 792 l cp clip + 0.03000 0.03000 sc +7.500 slw +% Polyline +n 1050 975 m 9775 975 l 9775 10600 l 1050 10600 l cp gs col-1 s gr +/Courier ff 180.00 scf sf +1200 2000 m +gs 1 -1 sc (int SlaveScoreUppBound\(position p, int d\);) col-1 sh gr +/Courier ff 180.00 scf sf +1200 2800 m +gs 1 -1 sc (int RootMinimax\(int d\);) col-1 sh gr +/Courier ff 180.00 scf sf +1200 4000 m +gs 1 -1 sc (first node visited during a pass by a master.\) */) col-1 sh gr +/Courier ff 180.00 scf sf +1200 4400 m +gs 1 -1 sc (int GuessedScore\(int alpha, int beta, position p, int d, int dprime\)) col-1 sh gr +/Courier ff 180.00 scf sf +1200 4600 m +gs 1 -1 sc ({) col-1 sh gr +/Courier ff 180.00 scf sf +1600 5200 m +gs 1 -1 sc (int hmm; /* working hypothetical minimax value for current depth */) col-1 sh gr +/Courier ff 180.00 scf sf +1600 5800 m +gs 1 -1 sc ({) col-1 sh gr +/Courier ff 180.00 scf sf +2000 6000 m +gs 1 -1 sc (hmm = HypotheticalMinimax\(\);) col-1 sh gr +/Courier ff 180.00 scf sf +2000 6200 m +gs 1 -1 sc (if \(hmm == INVALID\) { hmm = RootMinimax\(depth\); }) col-1 sh gr +/Courier ff 180.00 scf sf +2000 6600 m +gs 1 -1 sc (/* Scale lower and upper bounds if they are not INFINITE to change) col-1 sh gr +/Courier ff 180.00 scf sf +2000 6800 m +gs 1 -1 sc (bias of search result from previous search depth to current depth. */) col-1 sh gr +/Courier ff 180.00 scf sf +2000 7000 m +gs 1 -1 sc (lb = -INFINITY; ub = INFINITY;) col-1 sh gr +/Courier ff 180.00 scf sf +2000 7200 m +gs 1 -1 sc (if \(SlaveScoreLowBound\(p,depth-dprime\) != -INFINITY\)) col-1 sh gr +/Courier ff 180.00 scf sf +2400 7400 m +gs 1 -1 sc (lb = SlaveScoreLowBound\(p,depth-dprime\) + hmm - RootMinimax\(depth\);) col-1 sh gr +/Courier ff 180.00 scf sf +2000 7600 m +gs 1 -1 sc (if \(SlaveScoreUppBound\(p,depth-dprime\) != INFINITY\)) col-1 sh gr +/Courier ff 180.00 scf sf +2400 7800 m +gs 1 -1 sc (ub = SlaveScoreUppBound\(p,depth-dprime\) + hmm - RootMinimax\(depth\);) col-1 sh gr +/Courier ff 180.00 scf sf +2000 8200 m +gs 1 -1 sc (/* Check each bound to see if scaled bounds satisfy constraints. */) col-1 sh gr +/Courier ff 180.00 scf sf +2000 8400 m +gs 1 -1 sc (if \(ub <= alpha\) { return alpha; }) col-1 sh gr +/Courier ff 180.00 scf sf +2000 8600 m +gs 1 -1 sc (if \(lb >= beta\) { return beta; }) col-1 sh gr +/Courier ff 180.00 scf sf +2000 9200 m +gs 1 -1 sc (if \(lb == ub\) { return ub; }) col-1 sh gr +/Courier ff 180.00 scf sf +2000 9000 m +gs 1 -1 sc (/* An exact scaled value is always satisfactory for constraints. */) col-1 sh gr +/Courier ff 180.00 scf sf +2000 9600 m +gs 1 -1 sc (/* NOTE: Loop will always exit at or before depth = dprime, since) col-1 sh gr +/Courier ff 180.00 scf sf +2000 9800 m +gs 1 -1 sc (master stored SlaveScoreLowBound\(p,0\) = SlaveScoreUppBound\(p,0\) = ) col-1 sh gr +/Courier ff 180.00 scf sf +2000 10000 m +gs 1 -1 sc (static evaluation, yielding equal scaled upper/lower bounds. */) col-1 sh gr +/Courier ff 180.00 scf sf +1600 5600 m +gs 1 -1 sc (for \(depth = d-1; depth >= dprime; depth = depth - 1\)) col-1 sh gr +/Courier ff 180.00 scf sf +1600 10200 m +gs 1 -1 sc (}) col-1 sh gr +/Courier ff 180.00 scf sf +1200 10400 m +gs 1 -1 sc (}) col-1 sh gr +/Courier ff 180.00 scf sf +1600 5000 m +gs 1 -1 sc (int ub,lb; /* scaled upper/lower bounds \(if not infinite\) */) col-1 sh gr +/Courier ff 180.00 scf sf +1600 4800 m +gs 1 -1 sc (int depth; /* depth of search where estimate will be derived */) col-1 sh gr +/Courier ff 180.00 scf sf +1200 3800 m +gs 1 -1 sc (current pass, returns INVALID if no PV has been explored \(only happens when) col-1 sh gr +/Courier ff 180.00 scf sf +1200 3600 m +gs 1 -1 sc (/* HypotheticalMinimax returns highest accurate value along current PV in) col-1 sh gr +/Courier ff 180.00 scf sf +1200 3400 m +gs 1 -1 sc (int HypotheticalMinimax\(\);) col-1 sh gr +/Courier ff 180.00 scf sf +1200 3000 m +gs 1 -1 sc (/* RootMinimax returns minimax value from previous search at depth d */) col-1 sh gr +/Courier ff 180.00 scf sf +1200 2400 m +gs 1 -1 sc (position p at depth d if result was <= beta\(p,d\); INFINITY, otherwise. */) col-1 sh gr +/Courier ff 180.00 scf sf +1200 2200 m +gs 1 -1 sc (/* SlaveScoreUppBound returns value from slave's alphabeta search for) col-1 sh gr +/Courier ff 180.00 scf sf +1200 1600 m +gs 1 -1 sc (position p at depth d if result was >= alpha\(p,d\); -INFINITY, otherwise. */) col-1 sh gr +/Courier ff 180.00 scf sf +1200 1400 m +gs 1 -1 sc (/* SlaveScoreLowBound returns value from slave's alphabeta search for) col-1 sh gr +/Courier ff 180.00 scf sf +1200 1200 m +gs 1 -1 sc (int SlaveScoreLowBound\(position p, int d\);) col-1 sh gr +showpage +$F2psEnd +rs +%%EndDocument + + endTexFig + 1015 4711 a Fu(Figure)25 b(10:)30 b(Code)c(F)o(or)e(Guessed)h(Score)h +(Algorithm)1900 5589 y(35)p eop +%%Page: 36 39 +36 38 bop 146 100 a Ft(Mark)37 b(Br)n(ockington)h Fu(recei)n(v)o(ed)d +(a)i(B.Math.)64 b(de)o(gree)36 b(in)g(Pure)h(Math)e(with)h(Computer)f +(Science)i(from)0 299 y(the)c(Uni)n(v)o(ersity)e(of)j(W)-8 +b(aterloo,)35 b(in)e(1992,)i(and)e(recei)n(v)o(ed)g(a)h(Ph.D.)g(in)f +(Computing)f(Science)i(from)f(the)g(Uni-)0 498 y(v)o(ersity)i(of)g +(Alberta)h(in)g(1997.)63 b(His)35 b(research)i(interests)e(include)g +(arti\002cial)h(intelligence,)h(distrib)n(uted)d(and)0 +697 y(parallel)26 b(processing,)h(cryptography)e(and)i(data)f(security) +-6 b(.)35 b(Mark)27 b(is)f(currently)g(w)o(orking)g(at)h(BioW)-8 +b(are)27 b(Corp.,)0 897 y(an)e(interacti)n(v)o(e)e(entertainment)h +(\002rm)h(in)g(Edmonton,)d(Alberta,)j(Canada.)146 1096 +y Ft(J)o(onathan)35 b(Schaeffer)i Fu(recei)n(v)o(ed)d(a)h(B.Sc.)62 +b(de)o(gree)35 b(in)f(Computing)g(Science)h(from)g(the)g(Uni)n(v)o +(ersity)d(of)0 1295 y(T)-8 b(oronto,)26 b(in)g(1978,)g(and)g(recei)n(v) +o(ed)g(an)h(M.Math.)34 b(and)26 b(a)h(Ph.D.)g(in)f(Computer)g(Science)h +(from)f(the)g(Uni)n(v)o(ersity)0 1494 y(of)34 b(W)-8 +b(aterloo)34 b(in)f(1980)h(and)g(1986,)h(respecti)n(v)o(ely)-6 +b(.)56 b(He)35 b(is)e(the)h(principal)f(author)h(of)i(C)t +Fa(H)t(I)t(N)t(O)t(O)t(K)r Fu(,)k(the)34 b(Man-)0 1694 +y(Machine)22 b(W)-8 b(orld)23 b(Champion)f(check)o(ers)h(program.)30 +b(He)23 b(is)f(currently)g(a)h(Professor)g(of)g(Computing)e(Science)j +(at)0 1893 y(the)i(Uni)n(v)o(ersity)e(of)i(Alberta.)35 +b(His)25 b(current)i(research)g(interests)e(include)h(heuristic)f +(search,)i(parallel)f(process-)0 2092 y(ing,)e(and)h(computer)f(games.) +1900 5589 y(36)p eop +%%Trailer +end +userdict /end-hook known{end-hook}if +%%EOF diff --git a/parallel/mthesis.pdf b/parallel/mthesis.pdf new file mode 100644 index 0000000..4bbb8a3 Binary files /dev/null and b/parallel/mthesis.pdf differ diff --git a/parallel/p53-walczak.pdf b/parallel/p53-walczak.pdf new file mode 100644 index 0000000..34d9bda Binary files /dev/null and b/parallel/p53-walczak.pdf differ diff --git a/parallel/p533-marsland.pdf b/parallel/p533-marsland.pdf new file mode 100644 index 0000000..6f6b52b Binary files /dev/null and b/parallel/p533-marsland.pdf differ diff --git a/parallel/p65-campbell.pdf b/parallel/p65-campbell.pdf new file mode 100644 index 0000000..8a88033 Binary files /dev/null and b/parallel/p65-campbell.pdf differ diff --git a/parallel/pami.ps b/parallel/pami.ps new file mode 100755 index 0000000..bf1dafa --- /dev/null +++ b/parallel/pami.ps @@ -0,0 +1,3771 @@ +%!PS +%%Version: 3.3 +%%DocumentFonts: (atend) +%%Pages: (atend) +%%EndComments +% +% Version 3.3 prologue for troff files. +% + +/#copies 1 store +/aspectratio 1 def +/formsperpage 1 def +/landscape false def +/linewidth .3 def +/magnification 1 def +/margin 0 def +/orientation 0 def +/resolution 720 def +/rotation 1 def +/xoffset 0 def +/yoffset 0 def + +/roundpage true def +/useclippath true def +/pagebbox [0 0 612 792] def + +/R /Times-Roman def +/I /Times-Italic def +/B /Times-Bold def +/BI /Times-BoldItalic def +/H /Helvetica def +/HI /Helvetica-Oblique def +/HB /Helvetica-Bold def +/HX /Helvetica-BoldOblique def +/CW /Courier def +/CO /Courier def +/CI /Courier-Oblique def +/CB /Courier-Bold def +/CX /Courier-BoldOblique def +/PA /Palatino-Roman def +/PI /Palatino-Italic def +/PB /Palatino-Bold def +/PX /Palatino-BoldItalic def +/Hr /Helvetica-Narrow def +/Hi /Helvetica-Narrow-Oblique def +/Hb /Helvetica-Narrow-Bold def +/Hx /Helvetica-Narrow-BoldOblique def +/KR /Bookman-Light def +/KI /Bookman-LightItalic def +/KB /Bookman-Demi def +/KX /Bookman-DemiItalic def +/AR /AvantGarde-Book def +/AI /AvantGarde-BookOblique def +/AB /AvantGarde-Demi def +/AX /AvantGarde-DemiOblique def +/NR /NewCenturySchlbk-Roman def +/NI /NewCenturySchlbk-Italic def +/NB /NewCenturySchlbk-Bold def +/NX /NewCenturySchlbk-BoldItalic def +/ZD /ZapfDingbats def +/ZI /ZapfChancery-MediumItalic def +/S /S def +/S1 /S1 def +/GR /Symbol def + +/inch {72 mul} bind def +/min {2 copy gt {exch} if pop} bind def + +/setup { + counttomark 2 idiv {def} repeat pop + + landscape {/orientation 90 orientation add def} if + /scaling 72 resolution div def + linewidth setlinewidth + 1 setlinecap + + pagedimensions + xcenter ycenter translate + orientation rotation mul rotate + width 2 div neg height 2 div translate + xoffset inch yoffset inch neg translate + margin 2 div dup neg translate + magnification dup aspectratio mul scale + scaling scaling scale + + /Symbol /S Sdefs cf + /Times-Roman /S1 S1defs cf + 0 0 moveto +} def + +/pagedimensions { + useclippath userdict /gotpagebbox known not and { + /pagebbox [clippath pathbbox newpath] def + roundpage currentdict /roundpagebbox known and {roundpagebbox} if + } if + pagebbox aload pop + 4 -1 roll exch 4 1 roll 4 copy + landscape {4 2 roll} if + sub /width exch def + sub /height exch def + add 2 div /xcenter exch def + add 2 div /ycenter exch def + userdict /gotpagebbox true put +} def + +/pagesetup { + /page exch def + currentdict /pagedict known currentdict page known and { + page load pagedict exch get cvx exec + } if +} def + +/decodingdefs [ + {counttomark 2 idiv {y moveto show} repeat} + {neg /y exch def counttomark 2 idiv {y moveto show} repeat} + {neg moveto {2 index stringwidth pop sub exch div 0 32 4 -1 roll widthshow} repeat} + {neg moveto {spacewidth sub 0.0 32 4 -1 roll widthshow} repeat} + {counttomark 2 idiv {y moveto show} repeat} + {neg setfunnytext} +] def + +/setdecoding {/t decodingdefs 3 -1 roll get bind def} bind def + +/w {neg moveto show} bind def +/m {neg dup /y exch def moveto} bind def +/done {/lastpage where {pop lastpage} if} def + +/f { + dup /font exch def findfont exch + dup /ptsize exch def scaling div dup /size exch def scalefont setfont + linewidth ptsize mul scaling 10 mul div setlinewidth + /spacewidth ( ) stringwidth pop def +} bind def + +/changefont { + /fontheight exch def + /fontslant exch def + currentfont [ + 1 0 + fontheight ptsize div fontslant sin mul fontslant cos div + fontheight ptsize div + 0 0 + ] makefont setfont +} bind def + +/sf {f} bind def + +/cf { + dup length 2 idiv + /entries exch def + /chtab exch def + /newfont exch def + + findfont dup length 1 add dict + /newdict exch def + {1 index /FID ne {newdict 3 1 roll put} {pop pop} ifelse} forall + + newdict /Metrics entries dict put + newdict /Metrics get + begin + chtab aload pop + 1 1 entries {pop def} for + newfont newdict definefont pop + end +} bind def + +% +% A few arrays used to adjust reference points and character widths in some +% of the printer resident fonts. If square roots are too high try changing +% the lines describing /radical and /radicalex to, +% +% /radical [0 -75 550 0] +% /radicalex [-50 -75 500 0] +% +% Move braceleftbt a bit - default PostScript character is off a bit. +% + +/Sdefs [ + /bracketlefttp [201 500] + /bracketleftbt [201 500] + /bracketrighttp [-81 380] + /bracketrightbt [-83 380] + /braceleftbt [203 490] + /bracketrightex [220 -125 500 0] + /radical [0 0 550 0] + /radicalex [-50 0 500 0] + /parenleftex [-20 -170 0 0] + /integral [100 -50 500 0] + /infinity [10 -75 730 0] +] def + +/S1defs [ + /underscore [0 80 500 0] + /endash [7 90 650 0] +] def +%%EndProlog +%%BeginSetup +mark +/resolution 720 def +setup +2 setdecoding +%%EndSetup +%%Page: 1 1 +/saveobj save def +mark +1 pagesetup +10 B f +(The History Heuristic and)3 1120 1 2320 840 t +(Alpha-Beta Search Enhancements in Practice)4 1943 1 1908 1200 t +10 R f +(Jonathan Schaeffer)1 761 1 2499 1680 t +10 I f +(Abstract -)1 397 1 720 2160 t +10 R f +( have been proposed to help reduce the size of)9 1923(Many enhancements to the alpha-beta algorithm)5 1967 2 1150 2160 t +( recent enhancement, the history heuristic, is described that improves the order in which)13 3591( A)1 128(minimax trees.)1 601 3 720 2400 t +( comprehensive set of experiments is reported which tries all)9 2498( A)1 130( nodes.)1 291(branches are considered at interior)4 1401 4 720 2640 t +( work on)2 387( Previous)1 416( one yields the best performance.)5 1399(combinations of enhancements to determine which)5 2118 4 720 2880 t +( concentrated on the benefits of individual enhancements or a few combina-)11 3051(assessing their performance has)3 1269 2 720 3120 t +( each enhancement should not be taken in isolation; one would like to find the combination)15 3659(tions. However,)1 661 2 720 3360 t +( indicate that the history heuristic and transposition)7 2067( Results)1 348( the greatest reduction in tree size.)6 1384(that provides)1 521 4 720 3600 t +( For)1 202(tables significantly out-perform other alpha-beta enhancements in application generated game trees.)10 4118 2 720 3840 t +( 99% of the possible reductions in tree size,)8 1779(trees up to depth 8, when taken together, they account for over)11 2541 2 720 4080 t +(with the other enhancements yielding insignificant gains.)6 2284 1 720 4320 t +10 I f +( -)1 58(Index Terms)1 524 2 720 4800 t +10 R f +(Alpha-beta search, minimax search, game trees, history heuristic, transposition tables,)9 3685 1 1355 4800 t +(minimal window search, killer heuristic.)4 1615 1 720 5040 t +cleartomark +showpage +saveobj restore +%%EndPage: 1 1 +%%Page: 2 2 +/saveobj save def +mark +2 pagesetup +11 R f +(- 2 -)2 183 1 2788 490 t +11 B f +(1. Introduction)1 739 1 720 840 t +11 R f +(Many modifications and enhancements to the alpha-beta \()7 2546 1 970 1116 t +11 S f +(ab)3516 1116 w +11 R f +(\) algorithm have been proposed)4 1394 1 3646 1116 t +( in)1 119( of the more prominent ones)5 1273( Some)1 313(to increase the efficiency of minimax game tree searching.)8 2615 4 720 1356 t +( tables [2], refutation tables [3],)5 1563(the literature include iterative deepening [1], transposition)6 2757 2 720 1596 t +( of these)2 412( Some)1 327( aspiration search [5] and the killer heuristic [3].)8 2279(minimal window search [4],)3 1302 4 720 1836 t +( each)1 232( However,)1 489( others appear to have questionable merit.)6 1863(search aids seem to be beneficial while)6 1736 4 720 2076 t +( find the combination of features)5 1457(enhancement should not be taken in isolation; one would like to)10 2863 2 720 2316 t +( merits)1 307( experiments assessing the relative)4 1531( Several)1 387(that provides the greatest reduction in tree size.)7 2095 4 720 2556 t +( these features have been reported in the literature, using both artificially constructed)12 3830(of some of)2 490 2 720 2796 t +( trees.)1 262( 7, 8])2 210([6] and application generated [1,)4 1428 3 720 3036 t +(The size of the search tree built by a depth-first)9 2148 1 970 3312 t +11 S f +(ab)3154 3312 w +11 R f +( the order in)3 561(search largely depends on)3 1159 2 3320 3312 t +( minimal)1 398( The)1 228(which branches are considered at interior nodes.)6 2128 3 720 3552 t +11 S f +(ab)3503 3552 w +11 R f +(tree arises if the branch leading)5 1378 1 3662 3552 t +( them in worst to)4 796( Examining)1 551( at all interior nodes.)4 956(to the best minimax score is considered first)7 2017 4 720 3792 t +( it)1 95( the difference between the two extremes is large,)8 2225( Since)1 306(best order results in the maximal tree.)6 1694 4 720 4032 t +( application)1 538( Typically,)1 527( a good ordering of branches at interior nodes.)8 2204(is imperative to obtain)3 1051 4 720 4272 t +(dependent knowledge is applied to make a "best guess" decision on an order to consider them in.)16 4258 1 720 4512 t +( to the)2 294(In this paper, a recent enhancement)5 1592 2 970 4788 t +11 S f +(ab)2893 4788 w +11 R f +(algorithm, the history heuristic, is described)5 1980 1 3060 4788 t +( order in which branches are con-)6 1466( heuristic achieves its performance by improving the)7 2316( The)1 227([9, 10].)1 311 4 720 5028 t +( game trees, the same branch, or)6 1450( In)1 153(sidered at interior nodes.)3 1104 3 720 5268 t +10 I f +(move)3458 5268 w +11 R f +(, will occur many times at dif-)6 1372 1 3668 5268 t +(ferent nodes, or)2 703 1 720 5508 t +10 I f +(positions)1457 5508 w +11 R f +( move is in leading to)5 993( history is maintained of how successful each)7 2056(. A)1 172 3 1819 5508 t +( every different)2 684( information is maintained for)4 1336( This)1 256(the highest minimax score at an interior node.)7 2044 4 720 5748 t +( in)1 115( interior nodes of the tree, moves are examined)8 2080( At)1 168(move, regardless of the originating position.)5 1957 4 720 5988 t +( information is accumulated)3 1233( this manner, previous search)4 1284( In)1 147(order of their prior history of success.)6 1656 4 720 6228 t +(and distributed throughout the tree.)4 1549 1 720 6468 t +( heuristic and)2 608(A series of experiments is reported that assess the performance of the history)12 3462 2 970 6744 t +(the prominent)1 620 1 720 6984 t +11 S f +(ab)1374 6984 w +11 R f +( experiments consisted of trying all possible combi-)7 2312( The)1 231(search enhancements.)1 959 3 1538 6984 t +( The)1 243(nations of enhancements in a chess program to find out which provides the best results.)14 4077 2 720 7224 t +cleartomark +showpage +saveobj restore +%%EndPage: 2 2 +%%Page: 3 3 +/saveobj save def +mark +3 pagesetup +11 R f +(- 3 -)2 183 1 2788 490 t +( each of these enhancements is quantified, providing evidence)8 2722(reductions in tree size achievable by)5 1598 2 720 840 t +( is the first comprehensive test performed in this area; previous)10 2951( This)1 270(of their \(in\)significance.)2 1099 3 720 1080 t +( into account)2 568( this work takes)3 697( Further,)1 408( 7, 8].)2 238(work has been limited to a few select combinations [1,)9 2409 5 720 1320 t +( nodes, something not addressed by previous)6 1983(the effect on tree size of ordering branches at interior)9 2337 2 720 1560 t +(work.)720 1800 w +( with transposition tables provides more)5 1769(The results show that the history heuristic combined)7 2301 2 970 2076 t +(than 99% of the possible reductions in tree size; the others combining for an insignificant)14 4320 1 720 2316 t +( a simple, mechanical way to order branches at interior)9 2570( history heuristic is)3 893(improvement. The)1 857 3 720 2556 t +( time and space overheads of the)6 1456( has none of the implementation, debugging, execution)7 2452(nodes. It)1 412 3 720 2796 t +( of using explicit knowledge, the heuristic uses the implicit)9 2618( Instead)1 374(knowledge-based alternatives.)1 1328 3 720 3036 t +( gives rise)2 456( This)1 257( the tree.)2 391(knowledge of the "experience" it has gained from visiting other parts of)11 3216 4 720 3276 t +( knowledge is better in that an application dependent knowledge-)9 2892(to the apparent paradox that less)5 1428 2 720 3516 t +(based ordering method can be approximated by the history heuristic.)9 3015 1 720 3756 t +11 B f +(2.)720 4116 w +11 S f +(ab)859 4116 w +11 B f +(and its Enhancements)2 1036 1 1017 4116 t +11 R f +(An)970 4392 w +10 I f +(adversary)1135 4392 w +11 R f +(or)1569 4392 w +10 I f +(game)1692 4392 w +11 R f +( types)1 267( Two)1 264(tree is one in which two players alternate making moves.)9 2566 3 1943 4392 t +( at the bottom of the tree are called)8 1555( Nodes)1 339(of nodes in the tree are distinguished.)6 1670 3 720 4632 t +10 I f +(lea f)1 166 1 4312 4632 t +11 R f +(nodes while)1 531 1 4509 4632 t +(those with successors are)3 1118 1 720 4872 t +10 I f +(interior)1867 4872 w +11 R f +( may be referred to as a)6 1058( interior or leaf node)4 918(nodes. An)1 478 3 2205 4872 t +10 I f +(position)4689 4872 w +11 R f +(.)5012 4872 w +(An)720 5112 w +10 I f +(evaluator)882 5112 w +11 R f +( A)1 137( leaf nodes to assign a score measuring the merit of the position.)12 2850(is used at)2 416 3 1296 5112 t +10 I f +(move)4726 5112 w +11 R f +(is)4966 5112 w +(the operation by which a position is transformed into a successor position.)11 3264 1 720 5352 t +( subtree,)1 384(For each)1 391 2 970 5628 t +11 S f +(ab)1785 5628 w +11 R f +(maintains lower \()2 793 1 1955 5628 t +11 S f +(a)2748 5628 w +11 R f +(\) and upper \()3 599 1 2817 5628 t +11 S f +(b)3416 5628 w +11 R f +(\) bounds on the range of minimax)6 1563 1 3477 5628 t +( can be)2 322(values that)1 480 2 720 5868 t +11 I f +(backed-up)1556 5868 w +11 R f +( benefits of the algo-)4 933( The)1 232(to affect the value at the root of the root.)9 1830 3 2045 5868 t +( proven their value must lie)5 1222(rithm come from the elimination of sub-trees without search once it is)11 3098 2 720 6108 t +(outside the)1 481 1 720 6348 t +11 S f +(ab)1230 6348 w +11 R f +( eliminated in this manner are said to be)8 1768( Sub-trees)1 471(search window.)1 689 3 1389 6348 t +11 I f +(cutoff.)4346 6348 w +11 S f +(ab)4681 6348 w +11 R f +(does)4839 6348 w +( the optimal case, for)4 957( In)1 155( growth of the trees; it merely dampens it.)8 1907(not eliminate the exponential)3 1301 4 720 6588 t +(uniform trees of depth)3 994 1 720 6839 t +10 I f +(d)1744 6839 w +11 R f +(\(or)1827 6839 w +10 I f +(d ply)1 202 1 1984 6839 t +11 R f +( branching factor)2 756(\) and)1 227 2 2186 6839 t +10 I f +(w)3198 6839 w +11 R f +(,)3265 6839 w +10 I f +(w)3322 6839 w +7 S f +(\351)3405 6791 w +7 I f +(d /)1 60 1 3440 6782 t +7 R f +(2)3505 6782 w +7 S f +(\371)3540 6791 w +10 S f +(+)3624 6839 w +10 I f +(w)3728 6839 w +7 S f +(\353)3811 6791 w +7 I f +(d /)1 60 1 3846 6782 t +7 R f +(2)3911 6782 w +7 S f +(\373)3946 6791 w +10 S f +(-)4030 6839 w +10 R f +(1)4134 6839 w +11 R f +(leaf nodes need be)3 824 1 4216 6839 t +( the worst case,)3 689( In)1 151(considered [11].)1 716 3 720 7079 t +11 S f +(ab)2309 7079 w +11 R f +(becomes a full minimax search, evaluating)5 1904 1 2472 7079 t +10 I f +(w)4406 7079 w +7 I f +(d)4484 7039 w +11 R f +(leaf nodes.)1 480 1 4560 7079 t +( moves are examined at interior nodes.)6 1855(The size of the tree depends on the order in which)10 2465 2 720 7319 t +cleartomark +showpage +saveobj restore +%%EndPage: 3 3 +%%Page: 4 4 +/saveobj save def +mark +4 pagesetup +11 R f +(- 4 -)2 183 1 2788 490 t +( interior node in the tree pro-)6 1281(Considering the move producing the best minimax score first at each)10 3039 2 720 840 t +(duces the)1 411 1 720 1080 t +10 I f +(minimal)1156 1080 w +11 R f +(or)1512 1080 w +10 I f +(optimally)1628 1080 w +11 R f +(-)2006 1080 w +10 I f +(ordered)2042 1080 w +11 S f +(ab)2386 1080 w +11 R f +(tree.)2544 1080 w +(Many enhancements to)2 1022 1 970 1356 t +11 S f +(ab)2022 1356 w +11 R f +( are usually based on)4 933( They)1 284( in the literature.)3 736(have been suggested)2 905 4 2182 1356 t +(one or more of the following principals:)6 1759 1 720 1596 t +(1\))720 1872 w +11 I f +(ordering)839 1872 w +11 R f +(, improving the order in which moves are examined at interior nodes ,)12 3072 1 1224 1872 t +(2\))720 2148 w +11 I f +(window size)1 540 1 842 2148 t +11 R f +( window \(absolute difference between)4 1689(, the smaller the search)4 1021 2 1382 2148 t +11 S f +(a)4124 2148 w +11 R f +(and)4225 2148 w +11 S f +(b)4415 2148 w +11 R f +(\), the greater)2 564 1 4476 2148 t +(the chance for a cutoff to occur, and)7 1582 1 720 2388 t +(3\))720 2664 w +11 I f +(re-using information)1 927 1 851 2664 t +11 R f +(, saving the results of sub-trees examined in the event that this sub-tree)12 3262 1 1778 2664 t +(re-appears at a later time.)4 1110 1 720 2904 t +(Following is a brief discussion of the major)7 1918 1 720 3180 t +11 S f +(ab)2666 3180 w +11 R f +(enhancements used in practice.)3 1364 1 2824 3180 t +11 B f +(A\) Iterative deepening)2 1079 1 720 3576 t +11 R f +( used to increase the probability that the best)8 2089( technique is)2 586( This)1 267([1, 8].)1 256 4 1842 3576 t +( series of staged searches are carried out to succes-)9 2232( A)1 136(move is searched first at the root of the tree.)9 1952 3 720 3816 t +(sively larger search depths, using the best move found for a)10 2655 1 720 4056 t +10 I f +(d)3404 4056 w +10 S f +(-)3478 4056 w +10 R f +(1)3549 4056 w +11 R f +( first examined)2 669(ply search as the)3 740 2 3631 4056 t +(in a)1 174 1 720 4296 t +10 I f +(d)931 4296 w +11 R f +( gained in the)3 629( the search progresses deeper, more and more confidence is)9 2713( As)1 190(ply search.)1 487 4 1021 4296 t +( cost of an iteration is strongly influenced by the branching factor)11 2977( The)1 235(best move.)1 486 3 720 4536 t +10 I f +(w)4452 4536 w +11 R f +( chess)1 275(. For)1 246 2 4519 4536 t +(programs \(with)1 675 1 720 4776 t +10 I f +(w)1421 4776 w +11 R f +( odd depth is about 8)5 922(typically around 35\), the cost of iterating an extra ply to an)11 2601 2 1517 4776 t +( 3 times \(a consequence of)5 1197(times the cost of the previous search, whereas to an even depth, about)12 3123 2 720 5016 t +(the)720 5256 w +10 S f +(\353 \373)1 113 1 893 5269 t +11 R f +(and)1040 5256 w +10 S f +(\351 \371)1 113 1 1237 5269 t +11 R f +( the cost of performing iterations)5 1474( Thus)1 282(operators in the minimal tree formula\) [1].)6 1900 3 1384 5256 t +(to)720 5501 w +10 R f +( ,)1 33( 2)1 91(1 ,)1 83 3 834 5501 t +(. . .)2 125 1 1107 5476 t +(,)1298 5501 w +10 I f +(d)1364 5501 w +10 S f +(-)1438 5501 w +10 R f +(1)1509 5501 w +11 R f +( that the best move)4 848(ply is only a small price to pay for having high confidence)11 2602 2 1590 5501 t +(is being searched first for the larger)6 1559 1 720 5741 t +10 I f +(d)2304 5741 w +11 R f +(ply search.)1 475 1 2382 5741 t +( in a tourna-)3 546(Iterative deepening is useful when the search is constrained by time \(as, for example,)13 3774 2 720 6017 t +( any point, the search can be terminated with the best move \(to that point\) known.)15 3596( At)1 166(ment game\).)1 549 3 720 6257 t +11 B f +(B\) Transposition tables)2 1106 1 720 6533 t +11 R f +( trees are not necessarily distinct; it may)7 1803( nodes of game)3 680( Interior)1 388([2, 12].)1 311 4 1858 6533 t +( tables take advantage of this)5 1277( These)1 318( more than one path.)4 905(be possible to reach the same position by)7 1820 4 720 6773 t +( searched in the event that the identical position)8 2247(by recording information about each sub-tree)5 2073 2 720 7013 t +( move that leads)3 724( information saved would include the value of the sub-tree, the)10 2786( The)1 229(occurs again.)1 581 4 720 7253 t +cleartomark +showpage +saveobj restore +%%EndPage: 4 4 +%%Page: 5 5 +/saveobj save def +mark +5 pagesetup +11 R f +(- 5 -)2 183 1 2788 490 t +( searching a new sub-tree, the)5 1328( Before)1 358( which the tree was searched.)5 1309(to this value, and the depth to)6 1325 4 720 840 t +( so, depending on)3 777( If)1 128( the current node.)3 768(table is interrogated to see if there is information relevant to)10 2647 4 720 1080 t +(the quality of the information found, the entire sub-tree may not need to be searched.)14 3729 1 720 1320 t +( and it was previously)4 1046( the position is found in the table)7 1582( If)1 147(The tables are used in two ways.)6 1545 4 720 1596 t +( for the sub-tree can be retrieved from the)8 1922(searched to at least the desired depth, then the value)9 2398 2 720 1836 t +( trees)1 245( that this has the potential for building)7 1751(table. Note)1 520 3 720 2076 t +11 I f +(smaller)3275 2076 w +11 R f +(than the minimal game tree by)5 1396 1 3644 2076 t +( the information is not as reliable as)7 1728( If)1 150( without performing any search.)4 1494(eliminating sub-trees)1 948 4 720 2316 t +(desired \(was not previously searched deep enough\) the best move from the previous search can be)15 4320 1 720 2556 t +( a shallower search\) there is a high pro-)8 1754( this move was previously best \(albeit for)7 1846(retrieved. Since)1 720 3 720 2796 t +( transposition tables)2 907( Thus)1 289( tried first.)2 488(bability it is also best for the current depth and should be)11 2636 4 720 3036 t +(allow for the reuse of information and help improve ordering.)9 2709 1 720 3276 t +( the)1 170( As)1 186( are typically implemented as a hash table.)7 1924(To minimize access time, transposition tables)5 2040 4 720 3552 t +( reducing their effectiveness.)3 1278(table becomes full, collisions occur and information lost, potentially)8 3042 2 720 3792 t +(As a consequence, the tables are usually as large as possible.)10 2665 1 720 4032 t +11 B f +(C\) Refutation tables)2 946 1 720 4308 t +11 R f +( Refutation)1 521( is their size.)3 560( major disadvantage of transposition tables)5 1884([3]. The)1 381 4 1694 4308 t +( the advantages of transposition tables, when used with iterative)9 2935(tables attempt to retain one of)5 1385 2 720 4548 t +( each iteration, the search yields a path for)8 1864( For)1 210( memory requirements.)2 1024(deepening, but with smaller)3 1222 4 720 4788 t +( to a leaf node that results in either the correct minimax score or an upper)15 3233(each move from the root)4 1087 2 720 5028 t +( path from the)3 623( This)1 253(bound on its value.)3 842 3 720 5268 t +10 I f +(d)2464 5268 w +10 S f +(-)2538 5268 w +10 R f +(1)2609 5268 w +11 R f +(ply search can be used as the basis for the search to)11 2274 1 2689 5268 t +10 I f +(d)4990 5268 w +11 R f +( iteration's path or)3 857( searching the previous)3 1066(ply. Often,)1 519 3 720 5508 t +11 I f +(refutation)3206 5508 w +11 R f +(for a move as the initial path)6 1355 1 3685 5508 t +(examined for the current iteration will prove sufficient to refute the move one ply deeper.)14 3924 1 720 5748 t +11 B f +(D\) Minimal window)2 987 1 720 6024 t +11 R f +( window searching is a variant of)6 1590( Minimal)1 458([4, 8, 13].)2 412 3 1757 6024 t +11 S f +(ab)4267 6024 w +11 R f +(based on the)2 593 1 4447 6024 t +( remaining moves are inferior until pro-)6 1775(assumption that the first move considered is best and the)9 2545 2 720 6264 t +( that the first branch has been searched with a full win-)11 2467( an interior node, given)4 1039( At)1 170(ven otherwise.)1 644 4 720 6504 t +(dow \()1 256 1 720 6744 t +11 S f +(a)976 6744 w +11 R f +(,)1045 6744 w +11 S f +(b)1104 6744 w +11 R f +(\) and produced a value)4 1010 1 1165 6744 t +10 I f +(v)2203 6744 w +11 R f +( moves are searched with the)5 1280(inside the window, the remaining)4 1482 2 2278 6744 t +(minimal window \()2 830 1 720 6984 t +10 I f +(v)1550 6984 w +10 R f +(,)1602 6984 w +10 I f +(v)1635 6984 w +10 S f +(+)1703 6984 w +10 R f +(1)1774 6984 w +11 R f +( win-)1 238( motivation for minimal window searching is that a smaller)9 2680(\). The)1 298 3 1824 6984 t +( minimal window searching is a probabilistic gamble)7 2416( Essentially,)1 579( smaller tree.)2 594(dow generates a)2 731 4 720 7224 t +cleartomark +showpage +saveobj restore +%%EndPage: 5 5 +%%Page: 6 6 +/saveobj save def +mark +6 pagesetup +11 R f +(- 6 -)2 183 1 2788 490 t +( the gamble proves incorrect,)4 1333( If)1 142(that most moves can be shown to be inferior with little effort.)11 2845 3 720 840 t +( a re-search \(to encompass the range of values \()9 2156(then additional work is required to do)6 1710 2 720 1080 t +10 I f +(v)4586 1080 w +10 S f +(+)4654 1080 w +10 R f +(1 ,)1 83 1 4725 1080 t +10 S f +(b)4849 1080 w +11 R f +(\) \).)1 136 1 4904 1080 t +(At a node with)3 654 1 720 1320 t +10 I f +(w)1400 1320 w +11 R f +(successors,)1496 1320 w +11 S f +(ab)2015 1320 w +11 R f +(only recognizes only one best move, which implies)7 2269 1 2174 1320 t +10 I f +(w)4470 1320 w +10 S f +(-)4561 1320 w +10 R f +(1)4632 1320 w +11 R f +(inferior)4712 1320 w +(ones.)720 1560 w +11 B f +(E\) Aspiration search)2 972 1 720 1836 t +11 R f +( The)1 226([5, 14].)1 311 2 1720 1836 t +11 S f +(ab)2285 1836 w +11 R f +(search is usually started with a)5 1346 1 2443 1836 t +10 R f +(\()3814 1836 w +10 S f +(- \245)1 144 1 3863 1836 t +10 R f +(,)4015 1836 w +10 S f +(\245)4081 1836 w +10 R f +(\))4162 1836 w +11 R f +( If)1 129(search window.)1 688 2 4223 1836 t +( of the search will fall is available, then tighter bounds)10 2442(some idea of the range in which the value)8 1878 2 720 2076 t +( involves using a smaller initial search)6 1783( search)1 321( Aspiration)1 535(can be placed on the initial window.)6 1681 4 720 2316 t +( Other-)1 353( value falls within the window, then the original window was adequate.)11 3269( the)1 175(window. If)1 523 4 720 2556 t +(wise, one must re-search with a wider window.)7 2071 1 720 2796 t +11 B f +(F\) Killer Heuristic)2 915 1 720 3072 t +11 R f +( quickly)1 383( during a search, most moves tried in a position are)10 2486([3]. Often)1 484 3 1687 3072 t +( killer heuristic involves remembering at each depth of)8 2492( The)1 237(refuted, usually by the same move.)5 1591 3 720 3312 t +( next time the same)4 864( The)1 228( most cutoffs \("killers"\).)3 1074(search the move\(s\) which seem to be causing the)8 2154 4 720 3552 t +(depth in the tree is reached, the killer move is retrieved and used, if valid in the current position.)18 4230 1 720 3792 t +( a dramatic effect on tree size, it is)8 1565(Since searching the best move first at interior nodes has)9 2505 2 970 4224 t +( ordering usually)2 761( resources to achieving this)4 1232( Devoting)1 474(important to have a good move ordering.)6 1853 4 720 4464 t +( or refutation table can be used, they help order the)10 2285( positions where the transposition)4 1496( In)1 151(pays off.)1 388 4 720 4704 t +( information acquired from previ-)4 1497(moves by suggesting a likely candidate for best move based on)10 2823 2 720 4944 t +( any information on)3 883( they don't tell how to order the remaining moves, nor give)11 2637( But)1 219(ous searches.)1 581 4 720 5184 t +( method used by most game)5 1273( The)1 234( at nodes where the tables provide no clues.)8 1977(how to order them)3 836 4 720 5424 t +( to apply application dependent heuristic knowledge to each move indicating)10 3436(playing programs is)2 884 2 720 5664 t +( course, any ordering)3 941( Of)1 176( and sort based on these assessments.)6 1664(how good the move is likely to be)7 1539 4 720 5904 t +(is probabilistic guessing since the desirability of a move usually cannot be reliably determined)13 4320 1 720 6144 t +( the knowledge used, this approach)5 1554( on the quality of)4 765( Depending)1 540(without performing some search.)3 1461 4 720 6384 t +(is usually superior to a random ordering.)6 1787 1 720 6624 t +(Several studies have been performed investigating how close)7 2764 1 970 6900 t +11 S f +(ab)3774 6900 w +11 R f +(search with its enhance-)3 1095 1 3945 6900 t +( and Marsland [6] have investigated this)6 1770( Campbell)1 485( tree.)1 220(ments can come to achieving the minimal)6 1845 4 720 7140 t +cleartomark +showpage +saveobj restore +%%EndPage: 6 6 +%%Page: 7 7 +/saveobj save def +mark +7 pagesetup +11 R f +(- 7 -)2 183 1 2788 490 t +( experimented)1 631( 8])1 109(question using artificially-constructed trees, while Gillogly [1] and Marsland [7,)9 3580 3 720 840 t +( experiments considered trees of depths 2 through 6 ply [8].)10 2722( Marsland's)1 559( program.)1 437(using a chess)2 602 4 720 1080 t +(For even depths, the results showed that)6 1775 1 720 1320 t +11 S f +(ab)2526 1320 w +11 R f +(, enhanced with minimal window searching \(the Prin-)7 2384 1 2656 1320 t +( build trees)2 503(cipal Variation Search algorithm\) and refutation and transposition tables, was able to)11 3817 2 720 1560 t +( The)1 227( 1.5.)1 195( odd depths, this was reduced to a factor of)9 1886( For)1 209(within twice the size of the minimal tree.)7 1803 5 720 1800 t +(factor of 2 for even depths is roughly the same as in Campbell and Marsland [6], but these results)18 4320 1 720 2040 t +(were achieved)1 643 1 720 2280 t +11 I f +(without)1408 2280 w +11 R f +( illustrates the danger of)4 1130( This)1 269(using transposition and refutation tables.)4 1856 3 1785 2280 t +( gen-)1 229(using results from artificially-constructed trees as a guideline for how to search application)12 4091 2 720 2520 t +( refutation)1 476( study also showed that for shallow searches, the performance of)10 3048( The)1 247(erated trees.)1 549 4 720 2760 t +( comparable to that of transposition tables, but as the search depth increased, refutation)13 3862(tables was)1 458 2 720 3000 t +(tables out-performed transposition tables \(probably because of transposition table over-loading\).)9 4233 1 720 3240 t +( is usu-)2 321(A variety of studies have been performed demonstrating that minimal window search)11 3749 2 970 3516 t +(ally superior to just)3 866 1 720 3756 t +11 S f +(ab)1618 3756 w +11 R f +( artificially constructed game trees)4 1529( advantage is more pronounced in)5 1505(. The)1 258 3 1748 3756 t +( where the stronger ordering of moves at inte-)8 2044( 8],)1 137( trees [7,)2 389( than in application generated)4 1311([6, 13, 15])2 439 5 720 3996 t +(rior nodes results in smaller trees.)5 1484 1 720 4236 t +( observed no benefits)3 951( Gillogly)1 429( has been questioned.)3 955(The effectiveness of the killer heuristic)5 1735 4 970 4512 t +( is a)2 206( This)1 266( reductions in tree size - as much as 80% [16].)10 2169([1], whereas Hyatt claims significant)4 1679 4 720 4752 t +(popular)720 4992 w +11 S f +(ab)1083 4992 w +11 R f +(enhancement, yet no one really seems to know how effective it is.)11 2896 1 1241 4992 t +11 B f +( History Heuristic)2 843(3. The)1 323 2 720 5352 t +11 R f +(Using the terminology of Newell and Simon [17], a)8 2375 1 970 5628 t +11 I f +(problem space)1 657 1 3387 5628 t +11 R f +(is a set of)3 461 1 4086 5628 t +11 I f +(states)4589 5628 w +11 R f +(and)4882 5628 w +11 I f +(operators)720 5868 w +11 R f +( state of knowledge, one repeatedly)5 1584( from an initial)3 679( Starting)1 412(that map states into states.)4 1182 4 1183 5868 t +( as parameterized)2 793( can be viewed)3 693( Operators)1 500(applies operators to states, looking for a goal state.)8 2334 4 720 6108 t +( In)1 155( operator should do to the state.)6 1433(functions; the parameters providing the specifics of what the)8 2732 3 720 6348 t +( move operation could)3 1013( The)1 235(the context of game trees, states are positions and moves, operators.)10 3072 3 720 6588 t +( function of three parameters: the initial position and the from-square and to-square)12 3672(be viewed as a)3 648 2 720 6828 t +(of the move, producing a new successor position.)7 2171 1 720 7068 t +cleartomark +showpage +saveobj restore +%%EndPage: 7 7 +%%Page: 8 8 +/saveobj save def +mark +8 pagesetup +11 R f +(- 8 -)2 183 1 2788 490 t +( not unique within the tree:)5 1205(For many types of search trees, the parameters of an operator are)11 2865 2 970 840 t +( history heuristic)2 746( The)1 229( states can have the same operator applied yielding new states.)10 2772(two different)1 573 4 720 1080 t +( a correlation between an operator and any success that)9 2459(maintains information on whether there is)5 1861 2 720 1320 t +( an arbitrary state in the problem space, the history heuris-)10 2560( At)1 166( goal.)1 245(the operator has in achieving a)5 1349 4 720 1560 t +(tic prefers to explore operators with a history of success first.)10 2687 1 720 1800 t +( types of game trees, the making of a move from one position yields a successor)15 3638(For many)1 432 2 970 2076 t +( is quite likely that the impor-)6 1335( It)1 127(position that has many of the same properties as its predecessor.)10 2858 3 720 2316 t +( not significantly)2 755(tant features of the position, the ones that dictate what the good moves are, have)14 3565 2 720 2556 t +( the)1 171( Since)1 309( good in the previous position will still be good.)9 2197(changed and that a move considered)5 1643 4 720 2796 t +( analogies to show the)4 1006(two positions are similar, one could take a sophisticated approach and use)11 3314 2 720 3036 t +( this is an expensive proposition.)5 1445( However,)1 484(similarity \(for example [18]\).)3 1287 3 720 3276 t +( move)1 276( A)1 139(As an example, consider the trees built by chess programs.)9 2615 3 970 3552 t +10 I f +(M)4029 3552 w +11 R f +(may be shown to be)4 896 1 4144 3552 t +( similar position may occur, perhaps only differ-)7 2138( on in the search tree a)6 999( Later)1 288(best in one position.)3 895 4 720 3792 t +( difference may not change the position enough to)8 2299( minor)1 302( This)1 263(ing in the location of one piece.)6 1456 4 720 4032 t +(alter move)1 467 1 720 4272 t +10 I f +(M)1213 4272 w +11 R f +( best.)1 233(from still being)2 682 2 1325 4272 t +10 I f +(M)2290 4272 w +11 R f +(, with its prior history of success, may now be the first move)12 2667 1 2373 4272 t +( improves the ordering of moves, increasing the chances of a cut-)11 2877( This)1 253( this position.)2 602(considered in)1 588 4 720 4512 t +(off occurring.)1 602 1 720 4752 t +(In an)1 222 1 970 5028 t +11 S f +(ab)1220 5028 w +11 R f +(framework, a)1 583 1 1378 5028 t +10 I f +( icient)1 230(su ff)1 161 2 1986 5028 t +11 R f +(\(or good\) move at an interior node is defined as one that)11 2469 1 2405 5028 t +( a cutoff, or)3 512(1\) causes)1 535 2 720 5304 t +( no cutoff occurs, the one yielding the best minimax score.)10 2578(2\) if)1 317 2 720 5580 t +(Note that this does not imply that a)7 1547 1 720 5856 t +10 I f +( icient)1 230(su ff)1 161 2 2292 5856 t +11 R f +(move is the)2 508 1 2711 5856 t +10 I f +(best)3244 5856 w +11 R f +( cutoff was)2 489( move causing a)3 711(move. A)1 407 3 3433 5856 t +10 I f +( icient)1 230(su ff)1 161 2 720 6096 t +11 R f +( at that node, but there is no guarantee that had the search con-)13 2745(to cause the search to stop)5 1155 2 1140 6096 t +(tinued, a better \(but irrelevant\) score might have been obtained by a latter move.)13 3529 1 720 6336 t +(Every time a)2 615 1 970 6612 t +10 I f +( icient)1 230(su ff)1 161 2 1637 6612 t +11 R f +( score associated with that move is)6 1695(move is found, the history)4 1262 2 2083 6612 t +( reaching an inte-)3 770( Upon)1 302( scores.)1 331( that are consistently good quickly achieve high)7 2119(increased. Moves)1 798 5 720 6852 t +( a ran-)2 289( than using)2 492( Rather)1 352(rior node, moves are ordered according to their prior history of success.)11 3187 4 720 7092 t +cleartomark +showpage +saveobj restore +%%EndPage: 8 8 +%%Page: 9 9 +/saveobj save def +mark +9 pagesetup +11 R f +(- 9 -)2 183 1 2788 490 t +( in, a move's prior)4 854(dom or knowledge-based approach for deciding the order to consider moves)10 3466 2 720 840 t +( experienced-based, acquir-)2 1209( heuristic is)2 510( The)1 227(history of success can be used as the ordering criteria.)9 2374 4 720 1080 t +( In)1 156( future.)1 326(ing information on what has been seen as an indication of what will be useful in the)16 3838 3 720 1320 t +( This)1 253( tree.)1 220(effect, previous search information is being accumulated and distributed throughout the)10 3847 3 720 1560 t +( is)1 112(implies that the heuristic)3 1119 2 720 1800 t +10 I f +(dynamic)1986 1800 w +11 R f +(; the ordering of branches being adaptive to previous condi-)9 2716 1 2324 1800 t +(tions seen in the search tree.)5 1238 1 720 2040 t +( illustrates the history heuristic in the)6 1658(Figure 1)1 373 2 970 2316 t +11 S f +(ab)3033 2316 w +11 R f +( lines marked with a * are)6 1159(algorithm. The)1 686 2 3195 2316 t +( the sorting operation is not specific to the)8 1861( that)1 195( Note)1 271(those that differ from the standard algorithm.)6 1993 4 720 2556 t +( requires a)2 464(history heuristic; the usual technique of assigning a heuristic-based score to each move)12 3856 2 720 2796 t +( in some)2 384( some applications avoid the sort by generating moves as needed)10 2905( However,)1 490(sort as well.)2 541 4 720 3036 t +( the heuristic is applied at all interior nodes, since one can never)12 2877( note that)2 418( Also)1 268(reasonable order.)1 757 4 720 3276 t +(tell in advance with certainty whether a cutoff will occur or not.)11 2806 1 720 3516 t +( a)1 95( Assuming)1 522( an example of how the heuristic can affect tree searching.)10 2744(Figure 2 shows)2 709 4 970 3792 t +( tree, at interior node)4 950(depth-first, left to right, traversal of the)6 1776 2 720 4032 t +11 I f +(I1)3482 4032 w +11 R f +(, move)1 308 1 3573 4032 t +11 I f +(M)3917 4032 w +11 R f +(was found to be suffi-)4 996 1 4044 4032 t +( the search, at interior node)5 1270( on in)2 280(cient. Later)1 541 3 720 4272 t +11 I f +(I2,)2854 4272 w +11 R f +(move)3016 4272 w +11 I f +(M)3303 4272 w +11 R f +(was one of the successor branches.)5 1603 1 3437 4272 t +(Given no information, the successors of)5 1762 1 720 4512 t +11 I f +(I2)2512 4512 w +11 R f +( the prior)2 407( With)1 278(would be considered in arbitrary order.)5 1722 3 2633 4512 t +(history of success of)3 936 1 720 4752 t +11 I f +(M,)1696 4752 w +11 R f +( of)1 132(the successors)1 636 2 1855 4752 t +11 I f +(I2)2664 4752 w +11 R f +(are re-ordered, allowing)2 1080 1 2796 4752 t +11 I f +(M)3917 4752 w +11 R f +(to be considered first.)3 991 1 4049 4752 t +(Since nodes)1 532 1 720 4992 t +11 I f +(I1)1284 4992 w +11 R f +(and)1407 4992 w +11 I f +(I2)1597 4992 w +11 R f +( a high probability that)4 1016(are not dis-similar, there is)4 1192 2 1720 4992 t +11 I f +(M)3959 4992 w +11 R f +(will also be sufficient)3 959 1 4081 4992 t +(at)720 5232 w +11 I f +(I2,)827 5232 w +11 R f +(thereby reducing the size of tree traversed.)6 1865 1 974 5232 t +( based on two parameters; the)5 1368(The implementation is)2 1013 2 970 5508 t +10 I f +(mapping)3388 5508 w +11 R f +(of moves to history and the)5 1262 1 3778 5508 t +10 I f +(weight)720 5748 w +11 R f +(of a)1 177 1 1025 5748 t +10 I f +( icient)1 230(su ff)1 161 2 1237 5748 t +11 R f +(move. The)1 508 1 1666 5748 t +10 I f +(mapping)2209 5748 w +11 R f +( was to specify a move as a)7 1262(used in the chess program)4 1181 2 2597 5748 t +( the)1 173( Essentially,)1 578(12-bit number \(6-bits from-square, 6-bits to-square\).)5 2364 3 720 5988 t +10 I f +(mapping)3871 5988 w +11 R f +( viewed as)2 487(can be)1 293 2 4260 5988 t +( this simplistic representation hides a lot of the)8 2160( Although)1 485( to the move operator.)4 1020(the parameters)1 655 4 720 6228 t +( it allows for compact)4 963(move details in the operator \(for example, which piece is making the move\),)12 3357 2 720 6468 t +(tables \()1 323 1 720 6708 t +10 R f +(2)1043 6708 w +7 R f +(12)1098 6668 w +11 R f +( more context information \(for example, the)6 1943( Including)1 479( are easily accessed.)3 887(entries\) that)1 524 4 1207 6708 t +( performance \(for a complete discussion, see [9]\).)7 2303(piece moving\) did not significantly increase)5 2017 2 720 6948 t +( to the extreme, the result is a transposition)8 1981(Note that if you carry the idea of including context)9 2339 2 720 7188 t +cleartomark +showpage +saveobj restore +%%EndPage: 9 9 +%%Page: 10 10 +/saveobj save def +mark +10 pagesetup +11 R f +(- 10 -)2 238 1 2761 490 t +(table.)720 840 w +(What should be the history)4 1198 1 970 1116 t +10 I f +(weight)2196 1116 w +11 R f +(of a)1 170 1 2494 1116 t +10 I f +( icient)1 230(su ff)1 161 2 2692 1116 t +11 R f +( are two considerations: First,)4 1321(move? There)1 605 2 3114 1116 t +( sub-tree searched, the more reliable the minimax value \(except in)10 3068(the deeper the)2 650 2 720 1356 t +11 I f +(pathological)4483 1356 w +11 R f +( one idea is to associate higher history scores for)9 2241( Therefore,)1 525(trees, rarely seen in practice [19]\).)5 1554 3 720 1596 t +( deeper the search tree \(and)5 1239( the)1 171( Second,)1 416(moves successful on deep rather than shallow searches.)7 2494 4 720 1836 t +( between two arbitrary positions in the tree and the less)10 2514(hence larger\), the greater the differences)5 1806 2 720 2076 t +( sufficient moves near the root of the tree have more potential)11 2744( Hence,)1 365(they may have in common.)4 1211 3 720 2316 t +( considera-)1 491( These)1 325( than sufficient moves near the leaf nodes.)7 1910(for being useful throughout the tree)5 1594 4 720 2556 t +( the usage of a)4 678(tions led)1 389 2 720 2796 t +10 I f +(weight)1823 2796 w +11 R f +(of)2129 2796 w +10 R f +(2)2256 2796 w +7 I f +(depth)2311 2756 w +11 R f +(, where)1 333 1 2475 2796 t +10 I f +(depth)2844 2796 w +11 R f +( This)1 263(is the depth of the sub-tree searched.)6 1672 2 3105 2796 t +(scheme gives more weight to moves that are)7 1957 1 720 3036 t +10 I f +( icient)1 230(su ff)1 161 2 2703 3036 t +11 R f +( those near)2 479(closer to the root of the tree than)7 1438 2 3123 3036 t +( rather than smaller, sub-trees.)4 1389(the leaves of the tree and favors moves that are roots of larger,)12 2931 2 720 3276 t +(Several other)1 590 1 720 3516 t +10 I f +(weights)1344 3516 w +11 R f +(, such as 1 and)4 681 1 1650 3516 t +10 I f +(depth)2365 3516 w +11 R f +( to be experimentally inferior to)5 1451(, were tried and found)4 1002 2 2587 3516 t +10 R f +(2)720 3756 w +7 I f +(depth)775 3716 w +11 R f +(\(for a complete discussion, see [9]\).)5 1570 1 967 3756 t +( the killer)2 424( Whereas)1 438( the killer heuristic is just a special case of the history heuristic.)12 2802(Note that)1 406 4 970 4032 t +( two successful moves per depth of search, the history heuristic)10 2920(heuristic keeps track of one or)5 1400 2 720 4272 t +( heuristic, "killer" moves would)4 1406( the history)2 496( With)1 276(maintains the success for all moves at all depths.)8 2142 4 720 4512 t +( generality of the history mechanism provides valuable ordering)8 2949( The)1 243(earn high history scores.)3 1128 3 720 4752 t +(information at all nodes; not just those with "killer" moves.)9 2613 1 720 4992 t +( nothing particular to the history heuristic that restricts its usage)10 2846(A final point is that there is)6 1224 2 970 5268 t +(to the)1 259 1 720 5508 t +11 S f +(ab)1018 5508 w +11 R f +( types of search algorithms and applications may be able to use this)12 3083(algorithm. Other)1 771 2 1186 5508 t +( suitable \(operators are not unique to)6 1653( success depends on whether the tree type is)8 1981(technique. The)1 686 3 720 5748 t +( values\) and a suitable)4 984(each node and there is a correlation between using an operator and sub-tree)12 3336 2 720 5988 t +10 I f +(mapping)720 6228 w +11 R f +(and)1098 6228 w +10 I f +(weight)1281 6228 w +11 R f +(can be found.)2 594 1 1576 6228 t +11 B f +( Design)1 346(4. Experiment)1 694 2 720 6588 t +11 R f +( various search features, the chess program)6 2094(To assess the importance of)4 1356 2 970 6864 t +10 I f +(Phoenix)4480 6864 w +11 R f +(was)4870 6864 w +( base program that performs)4 1269( with a)2 318( Starting)1 414(enhanced to turn each one on or off selectively.)8 2153 4 720 7104 t +11 S f +(ab)4910 7104 w +cleartomark +showpage +saveobj restore +%%EndPage: 10 10 +%%Page: 11 11 +/saveobj save def +mark +11 pagesetup +11 R f +(- 11 -)2 238 1 2761 490 t +( combi-)1 342(with iterative deepening, a series of experiments was then performed whereby all possible)12 3978 2 720 840 t +( Bratko-Kopec positions [20])3 1306( The)1 233( search features were tried on a test set of positions.)10 2336(nations of)1 445 4 720 1080 t +( benchmarking of sequential and parallel tree search perfor-)8 2736(have been used extensively for the)5 1584 2 720 1320 t +( deepening is necessary to be able to properly)8 2184( Iterative)1 443( 21, 22].)2 348(mance in chess programs [6,)4 1345 4 720 1560 t +(evaluate refutation tables and hence is not one of the experiment parameters.)11 3364 1 720 1800 t +(The search features used were:)4 1348 1 970 2076 t +( Tables \()2 406(1\) Transposition)1 855 2 720 2352 t +10 I f +(T)1981 2352 w +11 R f +( table contained)2 717(\). The)1 301 2 2037 2352 t +10 R f +(2)3091 2352 w +7 R f +(13)3146 2312 w +10 S f +(=)3273 2352 w +10 R f +(8 , 192)2 241 1 3377 2352 t +11 R f +( through 6,)2 505(entries for depths 2)3 878 2 3657 2352 t +(and)970 2592 w +10 R f +(2)1153 2592 w +7 R f +(16)1208 2552 w +10 S f +(=)1335 2592 w +10 R f +(65 , 536)2 291 1 1439 2592 t +11 R f +(for depths 7 and 8 .)5 850 1 1758 2592 t +( Tables \()2 384(2\) Refutation)1 714 2 720 2868 t +10 I f +(R)1818 2868 w +11 R f +(\).)1879 2868 w +( Window Searching \()3 936(3\) Minimal)1 630 2 720 3144 t +10 I f +(N)2286 3144 w +11 R f +( NegaScout variant [13].)3 1079(\). The)1 290 2 2353 3144 t +( Searching \()2 540(4\) Aspiration)1 714 2 720 3420 t +10 I f +(S)1974 3420 w +11 R f +( result of the previous itera-)5 1247(\), using a one pawn window around the)7 1769 2 2024 3420 t +(tion.)970 3660 w +( using the History Heuristic \()5 1281(5\) Ordering)1 645 2 720 3936 t +10 I f +(H)2646 3936 w +11 R f +(\).)2718 3936 w +(A more detailed description of the implementation of each of these can be found in [9].)15 3832 1 720 4212 t +( some)1 266(To assess the history heuristic as a move ordering mechanism, it is necessary to have)14 3804 2 970 4488 t +( search programs apply application dependent heuristics to try and sug-)10 3130( Most)1 283(basis of comparison.)2 907 3 720 4728 t +( often)1 260( course, the heuristics are only guesses; their validity)8 2372( Of)1 177(gest which moves might be good.)5 1511 4 720 4968 t +( first is)2 317( The)1 231( two undesirable properties.)3 1235( approach has)2 614( This)1 258(cannot be ascertained without search.)4 1665 6 720 5208 t +( the board.)2 487(that the knowledge is \(usually\) static; it is unable to adapt to changing conditions on)14 3833 2 720 5448 t +( problems are)2 615( Both)1 280( the knowledge does not handle exceptions well.)7 2194(The second problem is that)4 1231 4 720 5688 t +( real problem is that there is too)7 1523( The)1 243(symptoms of the same problem: inadequate knowledge.)6 2554 3 720 5928 t +( Most)1 288( the designer must make important cost/benefit decisions.)7 2565(much knowledge to draw on and)5 1467 3 720 6168 t +( effective to implement and so the designer draws on)9 2394(of the knowledge one could use is not cost)8 1926 2 720 6408 t +( inte-)1 231( For)1 211( the time and accepts the resulting consequences.)7 2167(the heuristics that are effective 90% of)6 1711 4 720 6648 t +(rior node move ordering, the consequences can be a poor ordering resulting in a larger search tree.)16 4313 1 720 6888 t +(To have a means of comparison for the history heuristic,)9 2538 1 970 7164 t +10 I f +(Phoenix)3539 7164 w +11 R f +(also has a heuristic-based)3 1139 1 3901 7164 t +cleartomark +showpage +saveobj restore +%%EndPage: 11 11 +%%Page: 12 12 +/saveobj save def +mark +12 pagesetup +11 R f +(- 12 -)2 238 1 2761 490 t +( methods used for ordering the)5 1351( The)1 227( \(developed prior to the history heuristic\).)6 1841(ordering mechanism)1 901 4 720 840 t +( most chess programs, although it is probably more sophisticated than most.)11 3410(moves are similar to)3 910 2 720 1080 t +( move ordering method will)4 1241( This)1 255( 8].)1 137( in fact, superior to the ordering mechanisms used in [7,)10 2486(It is,)1 201 5 720 1320 t +(be referred to as the)4 957 1 720 1560 t +10 I f +(knowledge heuristics)1 857 1 1725 1560 t +11 R f +(since the ordering is based on well-known, human-)7 2407 1 2633 1560 t +( an integral value in the range -25)7 1535( heuristics usually give)3 1039( The)1 235(understandable, chess knowledge.)2 1511 4 720 1800 t +( are combined, but the larger)5 1322( used with the history heuristic, the scores)7 1923( When)1 328(to +25.)1 325 4 720 2040 t +10 I f +(H)4655 2040 w +11 R f +(scores)4767 2040 w +( detailed description of the routine can)6 1720( A)1 140( heuristic scores.)2 745(quickly swamp the smaller knowledge)4 1715 4 720 2280 t +( the experiments have another parameter:)5 1811( Thus,)1 304(be found in [9].)3 684 3 720 2520 t +( using Knowledge Heuristics \(K\).)4 1480(6\) Ordering)1 645 2 720 2796 t +(This implies that a program without)5 1627 1 720 3072 t +10 I f +(K)2381 3072 w +11 R f +(or)2485 3072 w +10 I f +(H)2610 3072 w +11 R f +( just searches the)3 777(has no explicit move ordering and)5 1544 2 2719 3072 t +( not a completely random order, since)6 1705( fact, this is)3 533( In)1 155(moves in the order they were generated in.)7 1927 4 720 3312 t +( the absence of a transposition or refuta-)7 1820( In)1 155( some bias in the order moves are generated.)8 2018(there is)1 327 4 720 3552 t +(tion table move, all program variants consider capture moves before non-capture ones.)11 3801 1 720 3792 t +( the killer)2 452(Finally, for comparison purposes, the experiment has been enhanced to include)10 3618 2 970 4068 t +( considerable doubt as to its effectiveness, a controlled experi-)9 2792( there seems to be)4 815(heuristic. Since)1 713 3 720 4308 t +(ment might provide insight into its effective behavior.)7 2379 1 720 4548 t +( Heuristic \(L\).)2 625(7\) Killer)1 506 2 720 4824 t +(Previous experiments with)2 1181 1 970 5136 t +11 S f +(ab)2183 5136 w +11 R f +(enhancements have neglected the issue of interior move ord-)8 2695 1 2345 5136 t +( using a chess program, it is reasonable to)8 1900( since the experiments were performed)5 1746( 8])1 109( [7,)1 156(ering. In)1 409 5 720 5376 t +( reduce)1 320(assume that some application specific knowledge was used to order the moves and thereby)13 4000 2 720 5616 t +( draw from their experiments, since the order-)7 2045( might question the conclusions they)5 1638( One)1 243(tree size.)1 394 4 720 5856 t +(ing will influence tree size, and tree size may influence the effectiveness of some enhancements.)14 4235 1 720 6096 t +(Excluding the killer heuristic, there are 6 parameters resulting in)9 2930 1 970 6372 t +10 R f +(2)3937 6372 w +7 R f +(6)3992 6332 w +10 S f +(=)4084 6372 w +10 R f +(64)4188 6372 w +11 R f +(different sets of)2 712 1 4328 6372 t +( possible combinations were searched to depths of 2, 3, 4, and)11 2736( All)1 198( be tried.)2 390(enhancements that can)2 996 4 720 6612 t +( killer heuristic is just a special case of the history heuristic, only a few of the)16 3576( the)1 172( Since)1 310(5 ply.)1 262 4 720 6852 t +( just to establish the relationship between)6 1900(combinations with it present were tried)5 1794 2 720 7092 t +10 I f +(L)4453 7092 w +11 R f +(and)4551 7092 w +10 I f +(H)4748 7092 w +11 R f +(. To)1 220 1 4820 7092 t +cleartomark +showpage +saveobj restore +%%EndPage: 12 12 +%%Page: 13 13 +/saveobj save def +mark +13 pagesetup +11 R f +(- 13 -)2 238 1 2761 490 t +( with only those combinations that showed signi-)7 2185(depths of 6, 7, and 8 ply, experiments continued)8 2135 2 720 840 t +( total of 2000 hours of VAX 11/780 equivalent time)9 2290( A)1 136(ficant reductions in tree size through 5 ply.)7 1894 3 720 1080 t +(was required to perform the experiments.)5 1810 1 720 1320 t +11 B f +( Results)1 370(5. Experiment)1 694 2 720 1680 t +11 R f +( the)1 170( From)1 303( search algorithm performance is elapsed CPU time.)7 2350(One measure for comparing)3 1247 4 970 1956 t +( timing)1 337( any)1 207( However,)1 505(implementor's point of view, this is the most important consideration.)9 3271 4 720 2196 t +( bottom)1 356( measure is the number of)5 1208( Another)1 429(results are machine and implementation dependent.)5 2327 4 720 2436 t +( in the literature)3 801(positions \(leaf nodes\) examined \(NBP\), which has been used extensively)9 3519 2 720 2676 t +( NBP is an inadequate measure since it treats all leaf nodes equally and)13 3258( However,)1 494([1, 6, 23, 24].)3 568 3 720 2916 t +( most applications, neither is a reason-)6 1737( fact, for)2 392( In)1 156(assumes interior nodes are of negligible cost.)6 2035 4 720 3156 t +( may be a good theoretical measure, but not a good practical one.)12 2862( NBP)1 271(able assumption.)1 740 3 720 3396 t +( in a manner that is corre-)6 1170(A better measure would be one that measures the size of the tree)12 2900 2 970 3672 t +( The)1 245(lated with program running time.)4 1534 2 720 3912 t +11 I f +(node count \(NC\))2 771 1 2546 3912 t +11 R f +(measure counts all nodes in the tree)6 1676 1 3364 3912 t +( of)1 122( includes interior, leaf, and any nodes in sub-trees built as part)11 2755( This)1 254(where computation occurs.)2 1189 4 720 4152 t +( least for)2 410( At)1 179(leaf node evaluation.)2 943 3 720 4392 t +10 I f +(Phoenix)2290 4392 w +11 R f +( be strongly correlated)3 1020(, this count has been shown to)6 1403 2 2617 4392 t +( execution time overhead of most of the)7 1903( that since the)3 671( Note)1 290(with program running time [9].)4 1456 4 720 4632 t +( dominated by leaf node evaluation\),)5 1696(enhancements is negligible \(the cost being)5 1955 2 720 4872 t +10 I f +(NC)4413 4872 w +11 R f +(accurately)4592 4872 w +( exception is the)3 736( The)1 231(reflects the relative running time of the program variants.)8 2556 3 720 5112 t +10 I f +(K)4274 5112 w +11 R f +(heuristic, since)1 665 1 4375 5112 t +( to it as you want.)5 810(you can add as much or as little knowledge)8 1947 2 720 5352 t +10 I f +(NC)3532 5352 w +11 R f +(has the advantage of factoring)4 1341 1 3699 5352 t +( you view the)3 617( If)1 135(this out of the results.)4 981 3 720 5592 t +10 I f +(NC)2485 5592 w +11 R f +( to note that)3 548(graphs as measuring time, it is important)6 1838 2 2654 5592 t +10 I f +(K)720 5832 w +11 R f +( it added an additional 5% on to the execution)9 2092('s relative time performance is over-stated since)6 2161 2 787 5832 t +( this paper, both the NBP and NC measures will be used.)11 2505(time. In)1 371 2 720 6072 t +( combination of search enhancements would be to)7 2227(The best measure of the performance of a)7 1843 2 970 6348 t +( to know the size)4 754( it is difficult)3 583( Unfortunately,)1 702(compare its tree sizes with that of the minimal tree.)9 2281 4 720 6588 t +( in the tree)3 470(of the minimal tree, due to the variable branching factor and presence of terminal nodes)14 3850 2 720 6828 t +( good method for approximating the minimal tree [25]\).)8 2501(\(although Ebeling has recently devised a)5 1819 2 720 7068 t +( improvement in search efficiency as)5 1712(Instead, performance will be measured as the percentage)7 2608 2 720 7308 t +cleartomark +showpage +saveobj restore +%%EndPage: 13 13 +%%Page: 14 14 +/saveobj save def +mark +14 pagesetup +11 R f +(- 14 -)2 238 1 2761 490 t +( all possi-)2 429( each depth,)2 529( For)1 210(compared to that achievable by the best combination of search features.)10 3152 4 720 840 t +( best result \(using the)4 954(ble combinations of enhancements were tried, with the one giving the)10 3082 2 720 1080 t +10 I f +(NC)4784 1080 w +11 R f +(or)4949 1080 w +10 I f +(NBP)720 1320 w +11 R f +(measure\) being labeled)2 1018 1 938 1320 t +10 I f +(N)1982 1320 w +7 I f +(best)2060 1340 w +11 R f +( program was also run with none of the enhancements \(just)10 2604(. The)1 255 2 2181 1320 t +11 S f +(ab)720 1560 w +11 R f +(with iterative deepening\) yielding)3 1525 1 891 1560 t +10 I f +(N)2454 1560 w +7 I f +(none)2532 1580 w +11 R f +( a given combination of enhancements)5 1758(. For)1 250 2 2676 1560 t +10 I f +(enh)4722 1560 w +11 R f +(, its)1 174 1 4866 1560 t +( of the reduction in tree size from)7 1530(percentage improvements reflects how much)4 2007 2 720 1800 t +10 I f +(N)4291 1800 w +7 I f +(none)4369 1820 w +11 R f +(to)4550 1800 w +10 I f +(N)4670 1800 w +7 I f +(best)4748 1820 w +11 R f +(the)4906 1800 w +(presence of)1 500 1 720 2040 t +10 I f +(enh)1245 2040 w +11 R f +( calculation is done using the formula:)6 1687(achieved. The)1 642 2 1417 2040 t +10 I f +(reduction)2096 2400 w +7 I f +(enh)2490 2420 w +10 S f +(=)2648 2400 w +10 I f +(N)2779 2470 w +7 I f +(none)2857 2490 w +10 S f +(-)3050 2470 w +10 I f +(N)3154 2470 w +7 I f +(best)3232 2490 w +10 I f +(N)2785 2320 w +7 I f +(none)2863 2340 w +10 S f +(-)3056 2320 w +10 I f +(N)3160 2320 w +7 I f +(enh)3238 2340 w +10 S1 f +(_ ____________)1 609 1 2762 2370 t +10 I f +(*)3422 2400 w +10 R f +(100)3513 2400 w +11 R f +( to the addition of a single search)7 1485(Figure 3 shows the percentage reduction in tree size attributable)9 2835 2 720 2686 t +( 4 shows all the combinations)5 1337( Figure)1 349( ply using NBP as a measure.)6 1336( - 8)2 147(enhancement for depths 3)3 1151 5 720 2926 t +(of two enhancements that exceed a 70% reduction.)7 2230 1 720 3166 t +( after)1 235(Figure 3 shows that history heuristic performs well, but its efficiency appears to drop)13 3835 2 970 3442 t +( knowledge heuristic's performance runs almost parallel to)7 2603( The)1 229(depth 7.)1 358 3 720 3682 t +10 I f +(H)3937 3682 w +11 R f +(, albeit with less search)4 1031 1 4009 3682 t +(efficiency. The effectiveness of transposition tables, on the other hand, increases with search)12 4320 1 720 3922 t +( constant performance, regardless of depth, and appear to)8 2509( tables seem to provide)4 1018(depth. Refutation)1 793 3 720 4162 t +( minimal window search provide)4 1531( and)1 206( Aspiration)1 540(be a poor substitute for transposition tables.)6 2043 4 720 4402 t +( 4\), the combination of transposition tables and)7 2150( two enhancements \(Figure)3 1228( With)1 288(small benefits.)1 654 4 720 4642 t +( transposition)1 601( Since)1 304( of the possible reduction in tree size.)7 1671(the history heuristic achieves over 99%)5 1744 4 720 4882 t +( type of search reduction than the history heuristic \(eliminating sub-trees)10 3212(tables provide a different)3 1108 2 720 5122 t +( limited move ordering, versus more comprehensive move ordering\),)8 3035(without search and providing)3 1285 2 720 5362 t +( of these two features indi-)5 1204( performance)1 586( The)1 233(it is not surprising that the two work well together.)9 2297 4 720 5602 t +( Com-)1 311(cates that the other enhancements can provide at most a small percentage of improvement.)13 4009 2 720 5842 t +(bining three or more enhancements does not change this observation \(details can be found in [9]\).)15 4289 1 720 6082 t +(Figures 5 and 6 present the same data using the)9 2116 1 970 6358 t +10 I f +(NC)3115 6358 w +11 R f +(measure and provide a better indication)5 1759 1 3281 6358 t +( and history)2 560( this measure, transposition tables)4 1573( Using)1 340(of how tree size effects execution time.)6 1847 4 720 6598 t +( the search towards)3 873( methods have the advantage of steering)6 1816( Both)1 280(heuristic show up even better.)4 1351 4 720 6838 t +(previously encountered parts of the tree, thereby increasing the computations that can be re-used.)13 4264 1 720 7078 t +cleartomark +showpage +saveobj restore +%%EndPage: 14 14 +%%Page: 15 15 +/saveobj save def +mark +15 pagesetup +11 R f +(- 15 -)2 238 1 2761 490 t +( to oscillate with)3 777(In both Figures 4 and 6, the performance of some enhancements appear)11 3293 2 970 840 t +( mentioned)1 498( As)1 184( to the odd/even depth of the alpha-beta search.)8 2124( is largely attributable)3 983(depth. This)1 531 5 720 1080 t +( to an odd depth is greater)6 1178(in section 2, the incremental cost of growing the tree an additional ply)12 3142 2 720 1320 t +( some combinations of enhancements are tied to search depth, it)10 2941( Since)1 314(than for an even depth.)4 1065 3 720 1560 t +( could)1 278( One)1 244(suggests that a different method for representing the data might be more informative.)12 3798 3 720 1800 t +( depth results, but given the paucity of depths for which results)11 2857(separately plot the odd and even)5 1463 2 720 2040 t +(are available, this was not done.)5 1407 1 720 2280 t +( 8 ply, the percentage improvement attributable to the history heuristic decreases)11 3622(From 7 to)2 448 2 970 2556 t +(\(although significantly less for)3 1356 1 720 2796 t +10 I f +(NC)2104 2796 w +11 R f +(than)2269 2796 w +10 I f +(NBP)2486 2796 w +11 R f +( first is that the)4 670( The)1 228( are two reasons for this.)5 1090(\). There)1 377 4 2675 2796 t +( before, its per-)3 691(trees are getting so large that, although the history heuristic is just as effective as)14 3629 2 720 3036 t +( that the percentage reduction is relative)6 1785( Recall)1 341( seems poorer.)2 647(formance relative to the larger tree)5 1547 4 720 3276 t +( enhancement starts to perform well \(in this case, the tran-)10 2563( an)1 131( If)1 128(to the maximum possible savings.)4 1498 4 720 3516 t +( percentage)1 518(sposition tables\), it can increase the possible savings and as a result, decrease the)13 3802 2 720 3756 t +(improvement attributable to the other enhancements.)5 2319 1 720 3996 t +( the search)2 472( As)1 180( are becoming over-loaded.)3 1205(A second reason is that the history heuristic tables)8 2213 4 970 4272 t +( entries)1 328( Table)1 313( variation in the positions that occur in the tree.)9 2151(becomes deeper, there is a greater)5 1528 4 720 4512 t +( flooded with scores from the lower depths that affect the orderings of moves near the root)16 4035(can be)1 285 2 720 4752 t +( results reported here were constrained to only save history information)10 3255( fact, the)2 407( In)1 160(of the tree.)2 498 4 720 4992 t +(within the first)2 651 1 720 5232 t +10 I f +(depth)1397 5232 w +10 S f +(-)1643 5232 w +10 R f +(1)1714 5232 w +11 R f +( This)1 254( information throughout the entire tree.)5 1726(ply of the tree, but to use the)7 1267 3 1793 5232 t +( can)1 204(constraint provided a small improvement in performance, confirming that history tables)10 4116 2 720 5472 t +(become flooded with information, decreasing their usefulness.)6 2739 1 720 5712 t +( the history heuristic dominates the knowledge heuris-)7 2392(As an interior node ordering heuristic,)5 1678 2 970 5988 t +( be a comment on the quality of the chess)9 1824( this result may)3 680( Again,)1 353(tics approach under all scenarios.)4 1463 4 720 6228 t +( order the moves and that a better routine might be written with)12 3062(specific knowledge used to)3 1258 2 720 6468 t +( interesting feature in the diagrams is that sometimes the combination of both)12 3417( An)1 191(increased effort.)1 712 3 720 6708 t +10 I f +(H)720 6948 w +11 R f +(and)822 6948 w +10 I f +(K degrades)1 461 1 1007 6948 t +11 R f +(the performance compared to)3 1295 1 1499 6948 t +10 I f +(H)2822 6948 w +11 R f +( condition is caused by the two ord-)7 1595(alone. This)1 520 2 2925 6948 t +(ering mechanisms disagreeing over the importance of a move.)8 2833 1 720 7188 t +10 I f +(K)3616 7188 w +11 R f +( highly)1 322(may rate some moves)3 994 2 3724 7188 t +cleartomark +showpage +saveobj restore +%%EndPage: 15 15 +%%Page: 16 16 +/saveobj save def +mark +16 pagesetup +11 R f +(- 16 -)2 238 1 2761 490 t +( the knowledge)2 679( that)1 196( Recall)1 339(that superficially appear to be good but in the current context, are not.)12 3106 4 720 840 t +( history heuristic)2 750( The)1 231(heuristics statically assign scores to moves without performing any search.)9 3339 3 720 1080 t +( his-)1 194( The)1 227( ordering.)1 428(also does not perform search, but makes use of previous search results to do its)14 3471 4 720 1320 t +(tory heuristic is)2 691 1 720 1560 t +10 I f +(adaptive)1439 1560 w +11 R f +( search tree and is)4 793(to the conditions in the)4 1023 2 1814 1560 t +10 I f +(insensitive)3657 1560 w +11 R f +(to application depen-)2 931 1 4109 1560 t +( heuristics fail under conditions of exception, where excep-)8 2632( knowledge)1 512( The)1 229(dent pre-conceptions.)1 947 4 720 1800 t +( inappropriate)1 629( Consequently,)1 706( the heuristics.)2 673(tion is defined as any condition not covered by)8 2203 4 720 2040 t +10 I f +(K)4973 2040 w +11 R f +(scores can decrease the effectiveness of ordering, resulting in larger trees.)10 3231 1 720 2280 t +( the history heuristic.)3 993(Not surprisingly, the killer heuristic shows up as being inferior to)10 3077 2 970 2556 t +( consideration is that there is less overhead in maintaining killer than history informa-)13 3812(However, a)1 508 2 720 2796 t +( high performance machines that implement)5 1957( For)1 213(tion; in particular, no sorting.)4 1308 3 720 3036 t +11 S f +(ab)4230 3036 w +11 R f +(in hardware or)2 648 1 4392 3036 t +(microcode, the simplicity of implementing the killer heuristic may make it preferable \(for exam-)13 4320 1 720 3276 t +(ple, [25]\).)1 436 1 720 3516 t +( the trees)2 440( As)1 200( of transposition tables consistently increases with depth.)7 2660(The performance)1 770 4 970 3792 t +( and therefore more savings to be found.)7 1824(become larger, there are potentially more transpositions)6 2496 2 720 4032 t +( 6 ply, it appears there were)6 1240(However, the savings are limited by the size of the tables used and to)13 3080 2 720 4272 t +( 8, over-loading became a seri-)5 1373( depths 7 and)3 596( For)1 213(few problems with table over-loading problems.)5 2138 4 720 4512 t +( further depths, if performance starts to)6 1848( At)1 188( be increased.)2 643(ous problem and table sizes had to)6 1641 4 720 4752 t +( the size of the tables, reducing the number of collisions that)11 2784(decrease, one can always increase)4 1536 2 720 4992 t +(occur.)720 5232 w +( is)1 114( This)1 264( out-performs the refutation table.)4 1533(In all cases, the transposition table significantly)6 2159 4 970 5508 t +( the refutation tables contain only a small subset of the information available)12 3444(not surprising since)2 876 2 720 5748 t +( refutation and transposi-)3 1116( [8] has published results comparing)5 1617( Marsland)1 474(with transposition tables.)2 1113 4 720 5988 t +( 6 ply searches using transposition tables of size)8 2162( experiments included 2 through)4 1451( His)1 216(tion tables.)1 491 4 720 6228 t +( in perfor-)2 468( all depths examined, refutation tables were found to be roughly comparable)11 3470(8K. For)1 382 3 720 6468 t +( with those reported here, it is)6 1455( comparing these results)3 1140( When)1 342(mance to transposition tables.)3 1383 4 720 6708 t +( program are 3-4 times larger than those)7 1815(important to note that tree sizes obtained by Marsland's)8 2505 2 720 6948 t +(generated by)1 568 1 720 7188 t +10 I f +(Phoenix)1319 7188 w +11 R f +( of)1 124( Because)1 425( \(the 24 Kopec-Bratko positions\).)4 1495(while using the same data set)5 1316 4 1680 7188 t +cleartomark +showpage +saveobj restore +%%EndPage: 16 16 +%%Page: 17 17 +/saveobj save def +mark +17 pagesetup +11 R f +(- 17 -)2 238 1 2761 490 t +( up more quickly and may become over-loaded, reducing its effec-)10 2932(this, the transposition table fills)4 1388 2 720 840 t +( an 8K tran-)3 545( concludes that)2 673( Marsland)1 477(tiveness and making refutation tables look more attractive.)7 2625 4 720 1080 t +( positions. In)2 582(sposition table is too small for 6 ply searches of complex middlegame)11 3111 2 720 1320 t +10 I f +(Phoenix)4442 1320 w +11 R f +(, refu-)1 271 1 4769 1320 t +( examined to 6 ply, again showing little justifi-)8 2091(tation tables and 8K entry transposition have been)7 2229 2 720 1560 t +( to remember an)3 782( main contribution of the refutation table is)7 2039( The)1 247(cation for refutation tables.)3 1252 4 720 1800 t +( is an important enhancement on a)6 1568( This)1 262( information.)1 585(important subset of the transposition table)5 1905 4 720 2040 t +( for machines with)3 854( But)1 227( transposition tables are not possible.)5 1682(memory constrained system where)3 1557 4 720 2280 t +( as the transposition table does not become over-loaded, refutation)9 3097(available memory, as long)3 1223 2 720 2520 t +(tables will always be of minimal benefit.)6 1794 1 720 2760 t +( and minimal window, usually provide a)6 1837(The two search window enhancements, aspiration)5 2233 2 970 3036 t +( with the history heuristic and transposition)6 2065( used)1 256( When)1 344(small improvement in performance.)3 1655 4 720 3276 t +( both)1 225( Since)1 301( and together provide a small reduction in tree size.)9 2261(tables, both enhancements singlely)3 1533 4 720 3516 t +( and cost nothing in additional storage or computation, one might as well)12 3323(are easy to implement)3 997 2 720 3756 t +( benefits, however, are probably going to be)7 1951( The)1 228(include them in any real tree searching program.)7 2141 3 720 3996 t +(small.)720 4236 w +( the his-)2 373( Clearly,)1 416(In conclusion, what is the best combination of alpha-beta enhancements?)9 3281 3 970 4512 t +( loses nothing and gains)4 1087( One)1 245( transposition tables provide most of the savings.)7 2203(tory heuristic and)2 785 4 720 4752 t +(slightly by also including aspiration and minimal window search.)8 2878 1 720 4992 t +( move ordering, it is difficult)5 1278(Since the experiments reported here illustrate the importance of)8 2792 2 970 5268 t +( having addressed the issue of)5 1360( Without)1 426( with those of other researchers.)5 1446(to compare these results)3 1088 4 720 5508 t +( move ordering, some reported results may be heavily biased by a good or poor ord-)15 3753(interior node)1 567 2 720 5748 t +( considering a range of)4 1005( By)1 185( but it is impossible for us to know.)8 1562( 7, 8]\))2 246(ering scheme \(for example [1,)4 1322 5 720 5988 t +( ordering to the knowledge and history heuristics\), the results reported)10 3126(ordering schemes \(from no)3 1194 2 720 6228 t +( used to)2 373(here illustrate the range of efficient versus inefficient alpha-beta searching and can be)12 3947 2 720 6468 t +(assess the effectiveness of interior node ordering methods.)7 2567 1 720 6708 t +( heuristic was added to the chess program)7 1861(The history)1 507 2 970 6984 t +11 I f +(TinkerBelle)3370 6984 w +11 R f +( program used tran-)3 874(. This)1 284 2 3882 6984 t +( the history heuristic)3 986( addition of)2 566( The)1 255(sposition tables and simple move ordering heuristics.)6 2513 4 720 7224 t +cleartomark +showpage +saveobj restore +%%EndPage: 17 17 +%%Page: 18 18 +/saveobj save def +mark +18 pagesetup +11 R f +(- 18 -)2 238 1 2761 490 t +(reduced the size of the average tree by 25%.)8 1938 1 720 840 t +( artificially constructed trees it is easy to calcu-)8 2122( For)1 215( are we to the minimal tree?)6 1262(How close)1 471 4 970 1116 t +( is not necessarily true for application gen-)7 1939( this)1 198( Unfortunately,)1 709(late the size of the minimal tree.)6 1474 4 720 1356 t +( an average branching factor, one can come up with a rough approximation of)13 3465( Using)1 323(erated trees.)1 532 3 720 1596 t +( transposition tables, the)3 1080( Eliminating)1 580(the minimal tree size.)3 956 3 720 1836 t +10 I f +(NBP)3364 1836 w +11 R f +(results show the trees being built)5 1456 1 3584 1836 t +( transposition tables, the trees)4 1357( With)1 289( of the minimal tree.)4 948(to be within a factor of 1.5 times that)8 1726 4 720 2076 t +(become smaller than the minimal tree.)5 1685 1 720 2316 t +11 B f +(6. Conclusions)1 710 1 720 2676 t +11 R f +( inexpensive method for ordering descendants of interior nodes)8 2879(The history heuristic is an)4 1191 2 970 2952 t +( has the advantage of being simple to implement, as)9 2415( It)1 138(that is largely application independent.)4 1767 3 720 3192 t +( algorithm sub-)2 679( The)1 229( consuming, trial-and-error, knowledge-based approach.)4 2475(compared to the time)3 937 4 720 3432 t +( knowledge and, at least in the case of)8 1669(stitutes "experience" for explicit)3 1419 2 720 3672 t +11 S f +(ab)3836 3672 w +11 R f +(searching applied to the)3 1046 1 3994 3672 t +(game of chess, provides a viable alternative.)6 1945 1 720 3912 t +(The heuristic has proven useful for parallel)6 1955 1 970 4188 t +11 S f +(ab)2964 4188 w +11 R f +( network of)2 530( [26] on a)3 457(implementations. In)1 920 3 3133 4188 t +( each processor would maintain its own)6 1776( First,)1 293( tables were used two ways.)5 1256(computers, the history)2 995 4 720 4428 t +( periodically all the local tables would be merged and broadcast to all)12 3088( Second,)1 410(local history table.)2 822 3 720 4668 t +( program per-)2 612( resulted in a noticeable improvement in)6 1807( This)1 258(processors to achieve global sharing.)4 1643 4 720 4908 t +(formance.)720 5148 w +( easy to build trees close to the minimal tree in size, there is noth-)14 2959(Given that it is relatively)4 1111 2 970 5424 t +(ing of interest left to explore in terms of)8 1808 1 720 5664 t +10 I f +( depth)1 263(f ixed)1 202 2 2559 5664 t +11 S f +(ab)3058 5664 w +11 R f +( research efforts are con-)4 1105(searching. New)1 714 2 3221 5664 t +(centrating on)1 609 1 720 5904 t +10 I f +(variable depth)1 596 1 1387 5904 t +11 R f +(searches, so called)2 878 1 2044 5904 t +10 I f +(selective deepening)1 794 1 2980 5904 t +11 R f +( moves)1 349(\(for example, null)2 856 2 3835 5904 t +( singular extensions [29] as enhancements to)6 1995( and)1 192([27, 28])1 338 3 720 6144 t +11 S f +(ab)3278 6144 w +11 R f +( as)1 124( 31])1 164(, and conspiracy numbers [30,)4 1344 3 3408 6144 t +(a new approach to minimax search\).)5 1590 1 720 6384 t +11 B f +(Acknowledgments)720 6744 w +11 R f +( Alexander)1 534( and constructive criticism.)3 1260(Many thanks to Tony Marsland for his guidance)7 2276 3 970 7020 t +(Reinefeld, Murray Campbell, and the anonymous referees provided valuable suggestions.)9 3935 1 720 7260 t +cleartomark +showpage +saveobj restore +%%EndPage: 18 18 +%%Page: 19 19 +/saveobj save def +mark +19 pagesetup +11 R f +(- 19 -)2 238 1 2761 490 t +11 B f +(References)720 840 w +11 R f +( Gillogly,)1 427(1. J.)1 346 2 720 1032 t +11 I f +( of the Technology Chess Program)5 1552(Performance Analysis)1 976 2 1524 1032 t +11 R f +(, Ph.D. thesis, Depart-)3 988 1 4052 1032 t +(ment of Computer Science, Carnegie-Mellon University, 1978.)6 2776 1 995 1152 t +( The Northwestern University Chess Program, in)6 2261( Slate and L.R. Atkin, Chess 4.5 -)7 1606(2. D.J.)1 453 3 720 1308 t +11 I f +(Chess Skill in Man and Machine)5 1479 1 995 1428 t +11 R f +( York, 1977, 82-)3 755(, P.W. Frey \(ed.\), Springer-Verlag, New)5 1811 2 2474 1428 t +(118.)995 1548 w +( and the Killer Heuristic,)4 1142( Akl and M.M. Newborn, The Principle Continuation)7 2433(3. S.G.)1 472 3 720 1704 t +11 I f +(ACM)4808 1704 w +(Annual Conference)1 851 1 995 1824 t +11 R f +(, 1977, 466-473.)2 726 1 1846 1824 t +( Optimal Properties,)2 938( Pearl, Scout: A Simple Game-Searching Algorithm with Proven)8 3036(4. J.)1 346 3 720 1980 t +11 I f +(First Annual National Conference on Artificial Intelligence)6 2619 1 995 2100 t +11 R f +(, Stanford, 1980.)2 738 1 3614 2100 t +( Baudet,)1 390(5. G.)1 382 2 720 2256 t +11 I f +( of Algorithms for Asynchronous Multiprocessors)5 2302(The Design and Analysis)3 1167 2 1543 2256 t +11 R f +(,)5012 2256 w +(Ph.D. thesis, Department of Computer Science, Carnegie-Mellon University, 1978.)8 3660 1 995 2376 t +( and T.A. Marsland, A Comparison of Minimax Tree Search Algorithms,)10 3360( Campbell)1 469(6. M.S.)1 491 3 720 2532 t +11 I f +(Artificial Intelligence 20)2 1082 1 995 2652 t +11 R f +(, \(1983\), 347-367.)2 798 1 2077 2652 t +( Marsland, A Review of Game-Tree Pruning,)6 2060(7. T.A.)1 477 2 720 2808 t +11 I f +(Journal of the International Computer)4 1743 1 3297 2808 t +(Chess Association 9)2 888 1 995 2928 t +11 R f +(, 1 \(1986\), 3-19.)3 716 1 1883 2928 t +( Marsland, Relative Efficiency of Alpha-Beta Implementations,)6 2938(8. T.A.)1 477 2 720 3084 t +11 I f +(International Joint)1 853 1 4187 3084 t +(Conference on Artificial Intelligence)3 1615 1 995 3204 t +11 R f +(, Karlsruhe, 1983, 763-766.)3 1213 1 2610 3204 t +( Schaeffer, Experiments in Search and Knowledge, Ph.D. thesis, Dept. of Computer Sci-)12 3974(9. J.)1 346 2 720 3360 t +(ence, University of Waterloo, 1986.)4 1577 1 995 3480 t +( Schaeffer, The History Heuristic,)4 1511(10. J.)1 346 2 720 3636 t +11 I f +( Associa-)1 413(Journal of the International Computer Chess)5 2016 2 2611 3636 t +(tion 6)1 255 1 995 3756 t +11 R f +(, 3 \(1983\), 16-19.)3 771 1 1250 3756 t +( of Alpha-Beta Pruning,)3 1066( Knuth and R.W. Moore, An Analysis)6 1685(11. D.E.)1 477 3 720 3912 t +11 I f +(Artificial Intelligence 6)2 1033 1 3979 3912 t +11 R f +(,)5012 3912 w +(\(1975\), 293-326.)1 742 1 995 4032 t +( Chess Program,)2 771( Greenblatt, D.E. Eastlake and S.D. Crocker, The Greenblatt)8 2830(12. R.D.)1 484 3 720 4188 t +11 I f +(Fall)4856 4188 w +(Joint Computer Conference 31)3 1359 1 995 4308 t +11 R f +(, \(1967\), 801-810.)2 798 1 2354 4308 t +( Reinefeld, An Improvement of the Scout Tree Search Algorithm,)9 2899(13. A.)1 382 2 720 4464 t +11 I f +( the Interna-)2 553(Journal of)1 457 2 4030 4464 t +(tional Computer Chess Association 6)4 1642 1 995 4584 t +11 R f +(, 4 \(1983\), 4-14.)3 716 1 2637 4584 t +( S.A. Lawless, Parallel Alpha-Beta Search on Arachne,)7 2480( Finkel, J. Fishburn and)4 1071(14. R.A.)1 484 3 720 4740 t +11 I f +(Inter-)4791 4740 w +(national Conference on Parallel Processing)4 1944 1 995 4860 t +11 R f +(, 1980, 235-243.)2 726 1 2939 4860 t +( Marsland, A. Reinefeld and J. Schaeffer, Low Overhead Alternatives to SSS*,)11 3539(15. T.A.)1 477 2 720 5016 t +11 I f +(Artifi-)4770 5016 w +(cial Intelligence 31)2 848 1 995 5136 t +11 R f +(, 1 \(1987\), 185-199.)3 881 1 1843 5136 t +( Hyatt,)1 306(16. R.M.)1 503 2 720 5292 t +11 I f +( A Computer Chess Playing Program)5 1684(Cray Blitz -)2 527 2 1563 5292 t +11 R f +(, M.Sc. thesis, University of)4 1266 1 3774 5292 t +(Southern Mississippi, 1983.)2 1233 1 995 5412 t +( Newell and H.A. Simon, in)5 1231(17. A.)1 382 2 720 5568 t +11 I f +(Human Problem Solving)2 1087 1 2361 5568 t +11 R f +(, Prentice-Hall, 1972.)2 944 1 3448 5568 t +( Adelson-Velskiy, V.L. Arlazarov and M.V. Donskoy, Some Methods of Controlling)10 3812(18. G.M.)1 508 2 720 5724 t +(the Tree Search in Chess Programs,)5 1568 1 995 5844 t +11 I f +(Artificial Intelligence 6)2 1027 1 2591 5844 t +11 R f +(, \(1975\), 361-371.)2 798 1 3618 5844 t +( on Game Trees, Ph.D. thesis, Dept.)6 1611( Nau, Quality of Decision Versus Depth of Search)8 2237(19. D.S.)1 472 3 720 6000 t +(of Computer Science, Duke University, 1979.)5 2016 1 995 6120 t +( Experiment: A Comparison of Human and)6 2026( Kopec and I. Bratko, The Bratko-Kopec)6 1912(20. D.)1 382 3 720 6276 t +(Computer Performance in Chess, in)4 1609 1 995 6396 t +11 I f +( 3)1 91(Advances in Computer Chess)3 1319 2 2641 6396 t +11 R f +(, M.R.B. Clarke \(ed.\),)3 989 1 4051 6396 t +(Pergamon Press, 1982, 57-72.)3 1321 1 995 6516 t +( Program,)1 447( Newborn, A Parallel Search Chess)5 1609(21. M.M.)1 527 3 720 6672 t +11 I f +(ACM Annual Conference)2 1137 1 3344 6672 t +11 R f +(, 1985, 272-)2 559 1 4481 6672 t +(277.)995 6792 w +( Schaeffer, Multiprocessor Tree-Search Experiments, in)5 2486( Marsland, M. Olafsson and J.)5 1357(22. T.A.)1 477 3 720 6948 t +11 I f +(Advances in Computer Chess 4)4 1375 1 995 7068 t +11 R f +(, D. Beal \(ed.\), Pergamon Press, 1985, 37-51.)7 2000 1 2370 7068 t +( and J. Dixon, Experiments with some Programs that Search Game Trees,)11 3292( Slagle)1 307(23. J.)1 346 3 720 7224 t +11 I f +(Journal)4698 7224 w +cleartomark +showpage +saveobj restore +%%EndPage: 19 19 +%%Page: 20 20 +/saveobj save def +mark +20 pagesetup +11 R f +(- 20 -)2 238 1 2761 490 t +11 I f +(of the ACM 2)3 591 1 995 840 t +11 R f +(, \(1969\), 189-207.)2 798 1 1586 840 t +( Strategies in Game)3 903( Muszycka and R. Shinghal, An Empirical Comparison of Pruning)9 3035(24. A.)1 382 3 720 996 t +(Trees,)995 1116 w +11 I f +(IEEE Transactions on Systems, Man, and Cybernetics SMC-15)7 2778 1 1293 1116 t +11 R f +(, 3 \(1985\), 389-399.)3 881 1 4071 1116 t +( A VLSI Architecture for Chess, Ph.D. thesis, Dept. of)9 2465( Ebeling, All the Right Moves:)5 1391(25. Carl)1 464 3 720 1272 t +(Computer Science, Carnegie-Mellon University, 1986.)4 2409 1 995 1392 t +( Schaeffer, Distributed Game-Tree Searching,)4 2050(26. J.)1 346 2 720 1548 t +11 I f +( Distributed Com-)2 822(Journal of Parallel and)3 1065 2 3153 1548 t +(puting)995 1668 w +11 R f +( appear.)1 346( To)1 178(, 1989.)1 304 3 1277 1668 t +( Beal, Null Moves,)3 836(27. D.)1 382 2 720 1824 t +11 I f +(Advances in Computer Chess V)4 1387 1 1966 1824 t +11 R f +(, 1987.)1 304 1 3353 1824 t +( the Null Move in Chess,)5 1108( Goetsch and M. Campbell, Experiments with)6 2018(28. G.)1 382 3 720 1980 t +11 I f +(AAAI Sprint Sym-)2 783 1 4257 1980 t +(posium)995 2100 w +11 R f +(, 1988, 14-18.)2 616 1 1313 2100 t +( Singular Extensions: Adding Selectivity to)5 1954( Anantharaman, M. Campbell and F.H. Hsu,)6 1996(29. T.)1 370 3 720 2256 t +(brute-Force Searching,)1 1004 1 995 2376 t +11 I f +(AAAI Spring Symposium)2 1087 1 2027 2376 t +11 R f +(, 1988, 8-13.)2 561 1 3114 2376 t +( Min-Max Search,)2 832( McAllester, Conspiracy Numbers for)4 1718(30. D.A.)1 489 3 720 2532 t +11 I f +(Artificial Intelligence 35)2 1112 1 3802 2532 t +11 R f +(, 3)1 126 1 4914 2532 t +(\(1988\), 287-310.)1 742 1 995 2652 t +( Schaeffer, Conspiracy Numbers,)3 1459(31. J.)1 346 2 720 2808 t +11 I f +(Artificial Intelligence)1 944 1 2553 2808 t +11 R f +( in)1 115( to appear)2 432( Also)1 264( press.)1 281( In)1 147(, 1989.)1 304 6 3497 2808 t +11 I f +(Advances in Computer Chess V,)4 1415 1 995 2928 t +11 R f +(D. Beal and H. Berliner \(ed.\), Elsevier Press, 1989.)8 2254 1 2438 2928 t +cleartomark +showpage +saveobj restore +%%EndPage: 20 20 +%%Page: 21 21 +/saveobj save def +mark +21 pagesetup +11 R f +(- 21 -)2 238 1 2761 490 t +(Affiliation of author:)2 922 1 995 840 t +( the Department of Computing Science, University of Alberta, Edmon-)9 3214(The author is with)3 831 2 995 1080 t +( work was supported by the National Science and)8 2316( This)1 270(ton, Alberta, Canada T6G 2H1.)4 1459 3 995 1200 t +(Engineering Research Council of Canada.)4 1844 1 995 1320 t +(Footnotes:)995 1680 w +( 1986 World Computer Chess Championship, Cologne, West Ger-)8 3027(1. A competitor in the)4 1018 2 995 1920 t +(many.)995 2040 w +( conducted through to depth 6 and showed minimal signs)9 2571(2. The original experiments were)4 1474 2 995 2280 t +( depths 7 and 8, table conflicts necessitated an increase)9 2460( extended to)2 549( When)1 323(of over-loading.)1 713 4 995 2400 t +(in table size.)2 553 1 995 2520 t +( software predecessor of the chess machine)6 1892(3. A)1 218 2 995 2760 t +11 I f +(Belle.)3133 2760 w +cleartomark +showpage +saveobj restore +%%EndPage: 21 21 +%%Page: 22 22 +/saveobj save def +mark +22 pagesetup +11 R f +(- 22 -)2 238 1 2761 490 t +cleartomark +saveobj restore +%%BeginGlobal +/C /Courier def +%%EndGlobal +/saveobj save def +mark +10 C f +(AlphaBeta\( p : position;)3 1440 1 995 820 t +10 S f +(a)2495 820 w +10 C f +(,)2558 820 w +10 S f +(b)2678 820 w +10 C f +(, depth : integer \) : integer;)6 1800 1 2733 820 t +(var)995 920 w +(bestmove, score, width, m, result : integer;)6 2640 1 1235 1020 t +(rating : array[ 1..MAX_WIDTH ] of integer;)6 2520 1 1235 1120 t +(begin)995 1320 w +( At a leaf node })5 1020( {)1 540(if depth = 0 then)4 1020 3 1235 1420 t +(return\( Evaluate\( p \) \);)4 1440 1 1475 1520 t +(width := GenerateMoves\( moves \);)4 1920 1 1235 1720 t +( No moves in this position })6 1680( {)1 540(if width = 0 then)4 1020 3 1235 1820 t +(return\( Evaluate\( p \) \);)4 1440 1 1475 1920 t +({ Assign history heuristic score to each move })8 2820 1 1235 2120 t +(for m := 1 to width do)6 1320 1 1235 2220 t +( m ] = HistoryTable[ moves[ m ] ];)8 2040(* rating[)1 900 2 995 2320 t +( Put highest rated moves first })6 1920( {)1 240(Sort\( moves, rating \);)3 1320 3 1235 2420 t +(score :=)1 480 1 1235 2620 t +10 S f +(-\245)1775 2620 w +10 R f +(4;)1903 2620 w +(for m := 1 to width do)6 884 1 1095 2720 t +(begin)1170 2820 w +({ Recurse using nega-max variant of)5 1464 1 1220 2920 t +10 S f +(ab)2709 2920 w +10 R f +(})2852 2920 w +(result := -AlphaBeta\( p.moves[m], -)4 1437 1 1220 3020 t +10 S f +(b)2657 3020 w +10 R f +(, -)1 83 1 2712 3020 t +10 S f +(a)2795 3020 w +10 R f +(, depth-1 \);)2 441 1 2858 3020 t +(if result)1 308 1 1220 3120 t +10 S f +(>)1553 3120 w +10 R f +(score then)1 407 1 1633 3120 t +(score := result;)2 594 1 1320 3220 t +({ Check for cut-off })4 838 1 1220 3420 t +(if score)1 296 1 1220 3520 t +10 S f +(>)1541 3520 w +10 R f +(=)1596 3520 w +10 S f +(b)1677 3520 w +10 R f +(then)1757 3520 w +(begin)1270 3620 w +({ Cut-off: no further sub-trees need be examined })8 2019 1 1320 3720 t +(bestmove := moves[ m ];)4 1000 1 1320 3820 t +(goto done;)1 425 1 1320 3920 t +(end;)1270 4020 w +10 S f +(a)1220 4220 w +10 R f +(:= MAX\()1 375 1 1308 4220 t +10 S f +(a)1708 4220 w +10 R f +(, score \);)2 346 1 1771 4220 t +(end;)1170 4320 w +(done:)1045 4520 w +({ Update history score for best move })7 1546 1 1095 4620 t +( bestmove ] = HistoryTable[ bestmove ] + 2)8 1754(* HistoryTable[)1 685 2 995 4720 t +7 I f +(depth)3434 4681 w +10 C f +(;)3606 4720 w +(return\( score \);)2 960 1 1235 4820 t +(end.)995 4920 w +10 B f +(Fig. 1. The History Heuristic and Alpha-Beta.)6 1948 1 2043 5120 t +cleartomark +showpage +saveobj restore +%%EndPage: 22 22 +%%Page: 23 23 +/saveobj save def +mark +23 pagesetup +11 R f +(- 23 -)2 238 1 2761 490 t +cleartomark +saveobj restore +%%BeginGlobal +% +% Version 3.3 drawing procedures for dpost. Automatically pulled in, but only +% when needed. +% + +/inpath false def +/savematrix matrix def + +/Dl { + inpath + {pop pop neg lineto} + {newpath neg moveto neg lineto stroke} + ifelse +} bind def + +/De { + /y1 exch 2 div def + /x1 exch 2 div def + /savematrix savematrix currentmatrix def + neg exch x1 add exch translate + x1 y1 scale + 0 0 1 0 360 + inpath + {1 0 moveto arc savematrix setmatrix} + {newpath arc savematrix setmatrix stroke} + ifelse +} bind def + +/Da { + /dy2 exch def + /dx2 exch def + /dy1 exch def + /dx1 exch def + dy1 add neg exch dx1 add exch + dx1 dx1 mul dy1 dy1 mul add sqrt + dy1 dx1 neg atan + dy2 neg dx2 atan + inpath + {arc} + {newpath arc stroke} + ifelse +} bind def + +/DA { + /dy2 exch def + /dx2 exch def + /dy1 exch def + /dx1 exch def + dy1 add neg exch dx1 add exch + dx1 dx1 mul dy1 dy1 mul add sqrt + dy1 dx1 neg atan + dy2 neg dx2 atan + inpath + {arcn} + {newpath arcn stroke} + ifelse +} bind def + +/Ds { + /y2 exch def + /x2 exch def + /y1 exch def + /x1 exch def + /y0 exch def + /x0 exch def + x0 5 x1 mul add 6 div + y0 5 y1 mul add -6 div + x2 5 x1 mul add 6 div + y2 5 y1 mul add -6 div + x1 x2 add 2 div + y1 y2 add -2 div + inpath + {curveto} + {newpath x0 x1 add 2 div y0 y1 add -2 div moveto curveto stroke} + ifelse +} bind def +%%EndGlobal +/saveobj save def +mark +11 R f +2730 1031 300 300 De +(Root)2773 1053 w +1830 1632 300 300 De +3630 1632 300 300 De +(I2)3735 1654 w +3672 1526 2985 1138 Dl +2087 1526 2774 1138 Dl +1380 2232 300 300 De +1830 2232 300 300 De +2280 2232 300 300 De +1874 1738 1530 2082 Dl +1980 1782 1980 2082 Dl +2086 1738 2430 2082 Dl +2880 2232 300 300 De +(I2.M)2921 2254 w +3330 2232 300 300 De +3929 2232 300 300 De +4379 2232 300 300 De +3672 1738 3029 2082 Dl +(Move M)1 382 1 2882 1909 t +3779 1782 3479 2082 Dl +3780 1782 4080 2082 Dl +3887 1738 4530 2082 Dl +1830 2831 300 300 De +(I1)1935 2853 w +1980 2382 1980 2682 Dl +1380 3432 300 300 De +1830 3432 300 300 De +2280 3432 300 300 De +(I1.M)2322 3454 w +1874 2937 1530 3281 Dl +(Move M)1 382 1 2282 3110 t +1980 2981 1980 3281 Dl +2086 2937 2430 3281 Dl +11 B f +(Fig. 2. History Heuristic Example.)4 1607 1 2214 4325 t +cleartomark +showpage +saveobj restore +%%EndPage: 23 23 +%%Page: 24 24 +/saveobj save def +mark +24 pagesetup +11 R f +(- 24 -)2 238 1 2761 490 t +974 882 974 3422 Dl +5039 882 974 882 Dl +5040 3422 5040 882 Dl +975 3422 5040 3422 Dl +(%)629 2174 w +(depth)2884 3699 w +974 3473 974 3422 Dl +(2)947 3556 w +1482 3473 1482 3422 Dl +(3)1455 3556 w +1990 3473 1990 3422 Dl +(4)1963 3556 w +2499 3473 2499 3422 Dl +(5)2472 3556 w +3006 3473 3006 3422 Dl +(6)2979 3556 w +3515 3473 3515 3422 Dl +(7)3488 3556 w +4023 3473 4023 3422 Dl +(8)3996 3556 w +4531 3473 4531 3422 Dl +(9)4504 3556 w +5040 3473 5040 3422 Dl +(10)4985 3556 w +923 3422 974 3422 Dl +(0)868 3444 w +923 3168 974 3168 Dl +(10)813 3190 w +923 2915 974 2915 Dl +(20)813 2937 w +923 2661 974 2661 Dl +(30)813 2683 w +923 2406 974 2406 Dl +(40)813 2428 w +923 2152 974 2152 Dl +(50)813 2174 w +923 1898 974 1898 Dl +(60)813 1920 w +923 1644 974 1644 Dl +(70)813 1666 w +923 1390 974 1390 Dl +(80)813 1412 w +923 1136 974 1136 Dl +(90)813 1158 w +923 882 974 882 Dl +(100)758 904 w +1990 1262 1482 1161 Dl +2498 1313 1990 1262 Dl +3007 1415 2499 1314 Dl +3514 1126 3006 1415 Dl +4023 1817 3515 1126 Dl +4531 1447 4023 1817 Dl +(H)4582 1442 w +8 R f +(.)1471 1520 w +(.)1496 1525 w +(.)1521 1530 w +(.)1547 1535 w +(.)1573 1540 w +(.)1598 1545 w +(.)1624 1551 w +(.)1649 1556 w +(.)1674 1561 w +(.)1699 1566 w +(.)1725 1571 w +(.)1750 1576 w +(.)1776 1581 w +(.)1801 1586 w +(.)1827 1591 w +(.)1852 1596 w +(.)1878 1601 w +(.)1903 1606 w +(.)1928 1611 w +(.)1953 1616 w +(. .)1 20 1 1979 1622 t +(.)2005 1620 w +(.)2030 1619 w +(.)2056 1617 w +(.)2081 1616 w +(.)2106 1615 w +(.)2131 1614 w +(.)2157 1612 w +(.)2182 1611 w +(.)2208 1610 w +(.)2233 1609 w +(.)2259 1607 w +(.)2284 1606 w +(.)2310 1605 w +(.)2335 1604 w +(.)2360 1602 w +(.)2385 1601 w +(.)2411 1600 w +(.)2437 1599 w +(.)2462 1597 w +(. .)1 20 1 2488 1596 t +(.)2513 1600 w +(.)2538 1604 w +(.)2563 1607 w +(.)2589 1611 w +(.)2614 1615 w +(.)2640 1619 w +(.)2665 1623 w +(.)2691 1627 w +(.)2716 1630 w +(.)2742 1634 w +(.)2767 1638 w +(.)2792 1642 w +(.)2817 1646 w +(.)2843 1649 w +(.)2869 1653 w +(.)2894 1657 w +(.)2920 1661 w +(.)2945 1665 w +(.)2970 1669 w +(. .)1 20 1 2995 1672 t +(.)3015 1655 w +(.)3033 1637 w +(.)3052 1620 w +(.)3071 1602 w +(.)3090 1585 w +(.)3108 1567 w +(.)3127 1550 w +(.)3146 1533 w +(.)3165 1515 w +(.)3184 1497 w +(.)3203 1480 w +(.)3221 1462 w +(.)3240 1445 w +(.)3259 1427 w +(.)3278 1409 w +(.)3297 1392 w +(.)3316 1375 w +(.)3334 1357 w +(.)3353 1340 w +(.)3372 1322 w +(.)3391 1305 w +(.)3410 1287 w +(.)3429 1270 w +(.)3447 1252 w +(.)3466 1234 w +(.)3485 1217 w +(. .)1 20 1 3504 1200 t +(.)3519 1220 w +(.)3535 1241 w +(.)3550 1261 w +(.)3565 1281 w +(.)3581 1302 w +(.)3596 1322 w +(.)3612 1343 w +(.)3627 1363 w +(.)3643 1384 w +(.)3658 1404 w +(.)3673 1425 w +(.)3689 1445 w +(.)3704 1466 w +(.)3720 1486 w +(.)3735 1507 w +(.)3751 1527 w +(.)3766 1548 w +(.)3781 1569 w +(.)3797 1589 w +(.)3812 1610 w +(.)3828 1630 w +(.)3843 1651 w +(.)3858 1671 w +(.)3874 1691 w +(.)3889 1712 w +(.)3905 1732 w +(.)3920 1753 w +(.)3935 1773 w +(.)3951 1794 w +(.)3966 1814 w +(.)3981 1835 w +(.)3997 1855 w +(.)4012 1875 w +11 R f +(K)4074 1894 w +1506 2197 1482 2203 Dl +1554 2185 1530 2191 Dl +1602 2173 1578 2179 Dl +1651 2161 1627 2167 Dl +1699 2148 1675 2154 Dl +1748 2136 1724 2142 Dl +1796 2125 1772 2131 Dl +1844 2112 1820 2118 Dl +1893 2100 1869 2106 Dl +1941 2088 1917 2094 Dl +1989 2076 1965 2082 Dl +2009 2060 1990 2076 Dl +2047 2028 2028 2044 Dl +2084 1996 2065 2012 Dl +2122 1964 2103 1980 Dl +2160 1932 2141 1948 Dl +2197 1900 2178 1916 Dl +2235 1868 2216 1884 Dl +2272 1836 2253 1852 Dl +2310 1804 2291 1820 Dl +2348 1772 2329 1788 Dl +2385 1740 2366 1756 Dl +2423 1708 2404 1724 Dl +2460 1676 2441 1692 Dl +2498 1645 2479 1661 Dl +2522 1636 2499 1644 Dl +2570 1619 2547 1627 Dl +2618 1602 2595 1610 Dl +2666 1585 2643 1593 Dl +2715 1568 2692 1576 Dl +2764 1551 2741 1559 Dl +2812 1534 2789 1542 Dl +2860 1517 2837 1525 Dl +2909 1501 2886 1509 Dl +2957 1483 2934 1491 Dl +3005 1466 2982 1474 Dl +3028 1454 3006 1466 Dl +3073 1428 3051 1440 Dl +3117 1403 3095 1415 Dl +3161 1377 3139 1389 Dl +3205 1351 3183 1363 Dl +3249 1326 3227 1338 Dl +3294 1300 3272 1312 Dl +3338 1274 3316 1286 Dl +3382 1249 3360 1261 Dl +3426 1223 3404 1235 Dl +3470 1198 3448 1210 Dl +3515 1172 3493 1184 Dl +3540 1170 3515 1171 Dl +3588 1168 3563 1169 Dl +3636 1166 3611 1167 Dl +3685 1163 3660 1164 Dl +3733 1161 3708 1162 Dl +3781 1158 3756 1159 Dl +3830 1156 3805 1157 Dl +3878 1153 3853 1154 Dl +3926 1151 3901 1152 Dl +3974 1148 3949 1149 Dl +4023 1146 3998 1147 Dl +4047 1141 4023 1146 Dl +4095 1130 4071 1135 Dl +4144 1120 4120 1125 Dl +4192 1109 4168 1114 Dl +4241 1098 4217 1103 Dl +4289 1087 4265 1092 Dl +4337 1077 4313 1082 Dl +4385 1067 4361 1072 Dl +4434 1056 4410 1061 Dl +4482 1045 4458 1050 Dl +4531 1034 4507 1039 Dl +(T)4582 1081 w +1990 2481 1482 2304 Dl +2498 2382 1990 2483 Dl +3007 2406 2499 2381 Dl +(R)3057 2428 w +1507 3420 1482 3422 Dl +1555 3416 1530 3418 Dl +1603 3411 1578 3413 Dl +1652 3406 1627 3408 Dl +1700 3402 1675 3404 Dl +1748 3397 1723 3399 Dl +1796 3392 1771 3394 Dl +1845 3387 1820 3389 Dl +1893 3382 1868 3384 Dl +1942 3377 1917 3379 Dl +1990 3372 1965 3374 Dl +2015 3369 1990 3372 Dl +2064 3362 2039 3365 Dl +2112 3355 2087 3358 Dl +2160 3347 2135 3350 Dl +2208 3340 2183 3343 Dl +2257 3333 2232 3336 Dl +2305 3325 2280 3328 Dl +2353 3318 2328 3321 Dl +2401 3311 2376 3314 Dl +2450 3303 2425 3306 Dl +2498 3296 2473 3299 Dl +2524 3294 2499 3296 Dl +2572 3289 2547 3291 Dl +2620 3284 2595 3286 Dl +2668 3279 2643 3281 Dl +2717 3274 2692 3276 Dl +2765 3269 2740 3271 Dl +2813 3265 2788 3267 Dl +2861 3260 2836 3262 Dl +2910 3255 2885 3257 Dl +2958 3250 2933 3252 Dl +3006 3245 2981 3247 Dl +(S)3057 3318 w +1990 3397 1482 3422 Dl +2498 3194 1990 3397 Dl +3007 3245 2499 3194 Dl +(N)3057 3216 w +1990 1568 1482 1553 Dl +2498 1639 1990 1568 Dl +3007 1913 2499 1639 Dl +(L)3057 1935 w +11 B f +(Fig. 3. Single Search Enhancement \(NBP\).)5 1984 1 2025 3913 t +cleartomark +showpage +saveobj restore +%%EndPage: 24 24 +%%Page: 25 25 +/saveobj save def +mark +25 pagesetup +11 R f +(- 25 -)2 238 1 2761 490 t +974 882 974 3422 Dl +5039 882 974 882 Dl +5040 3422 5040 882 Dl +975 3422 5040 3422 Dl +(%)629 2174 w +(depth)2884 3699 w +974 3473 974 3422 Dl +(2)947 3556 w +1482 3473 1482 3422 Dl +(3)1455 3556 w +1990 3473 1990 3422 Dl +(4)1963 3556 w +2499 3473 2499 3422 Dl +(5)2472 3556 w +3006 3473 3006 3422 Dl +(6)2979 3556 w +3515 3473 3515 3422 Dl +(7)3488 3556 w +4023 3473 4023 3422 Dl +(8)3996 3556 w +4531 3473 4531 3422 Dl +(9)4504 3556 w +5040 3473 5040 3422 Dl +(10)4985 3556 w +923 3422 974 3422 Dl +(70)813 3444 w +923 2999 974 2999 Dl +(75)813 3021 w +923 2576 974 2576 Dl +(80)813 2598 w +923 2152 974 2152 Dl +(85)813 2174 w +923 1728 974 1728 Dl +(90)813 1750 w +923 1305 974 1305 Dl +(95)813 1327 w +923 882 974 882 Dl +(100)758 904 w +6 R f +1990 1221 1482 1221 Dl +2498 1137 1990 1221 Dl +3007 1052 2499 1136 Dl +3514 907 3006 1051 Dl +4023 907 3515 907 Dl +4531 892 4023 907 Dl +(HT)4612 955 w +4 R f +(.)1476 1645 w +(.)1499 1657 w +(.)1522 1668 w +(.)1545 1680 w +(.)1568 1691 w +(.)1591 1703 w +(.)1614 1714 w +(.)1637 1726 w +(.)1661 1737 w +(.)1684 1749 w +(.)1707 1760 w +(.)1730 1772 w +(.)1753 1783 w +(.)1776 1795 w +(.)1799 1806 w +(.)1822 1818 w +(.)1845 1830 w +(.)1868 1842 w +(.)1891 1853 w +(.)1914 1865 w +(.)1938 1876 w +(.)1961 1888 w +(. .)1 10 1 1984 1899 t +(.)2004 1883 w +(.)2023 1867 w +(.)2043 1850 w +(.)2062 1834 w +(.)2082 1818 w +(.)2102 1801 w +(.)2121 1785 w +(.)2141 1769 w +(.)2160 1752 w +(.)2179 1736 w +(.)2199 1720 w +(.)2218 1703 w +(.)2238 1687 w +(.)2258 1671 w +(.)2277 1654 w +(.)2297 1639 w +(.)2316 1622 w +(.)2336 1606 w +(.)2356 1590 w +(.)2375 1573 w +(.)2395 1557 w +(.)2414 1541 w +(.)2434 1524 w +(.)2453 1508 w +(.)2472 1492 w +(. .)1 10 1 2493 1476 t +(.)2516 1464 w +(.)2539 1452 w +(.)2562 1441 w +(.)2585 1429 w +(.)2608 1417 w +(.)2631 1406 w +(.)2654 1394 w +(.)2677 1383 w +(.)2700 1371 w +(.)2723 1360 w +(.)2747 1348 w +(.)2770 1337 w +(.)2793 1325 w +(.)2816 1314 w +(.)2839 1302 w +(.)2862 1291 w +(.)2885 1279 w +(.)2908 1268 w +(.)2931 1256 w +(.)2954 1245 w +(.)2977 1233 w +(. .)1 10 1 3000 1222 t +(.)3024 1211 w +(.)3047 1200 w +(.)3070 1189 w +(.)3093 1178 w +(.)3116 1168 w +(.)3139 1157 w +(.)3162 1146 w +(.)3185 1135 w +(.)3208 1124 w +(.)3231 1114 w +(.)3254 1103 w +(.)3277 1092 w +(.)3301 1081 w +(.)3324 1070 w +(.)3347 1060 w +(.)3370 1049 w +(.)3393 1038 w +(.)3416 1027 w +(.)3439 1016 w +(.)3462 1006 w +(.)3486 995 w +(. .)1 10 1 3509 984 t +(.)3534 983 w +(.)3560 981 w +(.)3585 980 w +(.)3611 978 w +(.)3636 977 w +(.)3661 975 w +(.)3686 973 w +(.)3712 972 w +(.)3738 970 w +(.)3763 969 w +(.)3789 967 w +(.)3814 966 w +(.)3839 965 w +(.)3864 963 w +(.)3890 961 w +(.)3915 960 w +(.)3941 958 w +(.)3966 957 w +(.)3992 955 w +(.)4017 954 w +6 R f +(KT)4104 965 w +1507 1817 1482 1813 Dl +1555 1825 1530 1821 Dl +1603 1833 1578 1829 Dl +1652 1842 1627 1838 Dl +1700 1850 1675 1846 Dl +1748 1858 1723 1854 Dl +1796 1865 1771 1861 Dl +1845 1873 1820 1869 Dl +1894 1882 1869 1878 Dl +1942 1890 1917 1886 Dl +1990 1898 1965 1894 Dl +2013 1905 1990 1898 Dl +2062 1921 2039 1914 Dl +2110 1938 2087 1931 Dl +2158 1953 2135 1946 Dl +2207 1969 2184 1962 Dl +2255 1986 2232 1979 Dl +2303 2002 2280 1995 Dl +2352 2018 2329 2011 Dl +2401 2034 2378 2027 Dl +2449 2050 2426 2043 Dl +2497 2066 2474 2059 Dl +2522 2078 2499 2067 Dl +2566 2101 2543 2090 Dl +2609 2122 2586 2111 Dl +2653 2145 2630 2134 Dl +2698 2167 2675 2156 Dl +2742 2189 2719 2178 Dl +2786 2211 2763 2200 Dl +2831 2233 2808 2222 Dl +2874 2255 2851 2244 Dl +2918 2277 2895 2266 Dl +2963 2299 2940 2288 Dl +3007 2321 2984 2310 Dl +(HS)3087 2334 w +1990 1983 1482 1475 Dl +2498 2236 1990 1982 Dl +3007 2406 2499 2237 Dl +(HR)3087 2418 w +4 R f +( .)1 0( .)1 26( . . .)3 75( .)1 26( .)1 25( .)1 26( .)1 25( .)1 26( .)1 25( .)1 26( . . .)3 75( .)1 26( .)1 25( . .)2 52(. . .)2 60 15 1476 2153 t +(.)2007 2165 w +(.)2030 2176 w +(.)2053 2188 w +(.)2076 2199 w +(.)2100 2211 w +(.)2123 2222 w +(.)2146 2234 w +(.)2169 2245 w +(.)2192 2257 w +(.)2215 2269 w +(.)2238 2280 w +(.)2262 2292 w +(.)2285 2303 w +(.)2308 2315 w +(.)2331 2326 w +(.)2354 2338 w +(.)2377 2349 w +(.)2400 2361 w +(.)2423 2373 w +(.)2446 2384 w +(.)2470 2396 w +(. .)1 10 1 2493 2407 t +(.)2516 2415 w +(.)2541 2423 w +(.)2565 2431 w +(.)2589 2439 w +(.)2614 2448 w +(.)2637 2456 w +(.)2662 2464 w +(.)2686 2472 w +(.)2710 2479 w +(.)2735 2488 w +(.)2758 2496 w +(.)2783 2504 w +(.)2807 2512 w +(.)2831 2521 w +(.)2856 2528 w +(.)2879 2536 w +(.)2904 2544 w +(.)2928 2552 w +(.)2952 2561 w +(.)2976 2569 w +(.)3000 2577 w +6 R f +(HN)3087 2588 w +2499 3253 2448 3422 Dl +3007 2660 2499 3253 Dl +(NT)3087 2673 w +1990 2659 1482 1982 Dl +2498 2577 1990 2661 Dl +3007 2745 2499 2576 Dl +(KR)3087 2732 w +2460 3401 2448 3422 Dl +2497 3339 2485 3360 Dl +2515 3319 2499 3338 Dl +2547 3281 2531 3300 Dl +2580 3243 2564 3262 Dl +2613 3204 2597 3223 Dl +2646 3166 2630 3185 Dl +2678 3128 2662 3147 Dl +2711 3089 2695 3108 Dl +2744 3051 2728 3070 Dl +2777 3013 2761 3032 Dl +2809 2975 2793 2994 Dl +2842 2937 2826 2956 Dl +2875 2898 2859 2917 Dl +2908 2860 2892 2879 Dl +2940 2822 2924 2841 Dl +2973 2783 2957 2802 Dl +3006 2745 2990 2764 Dl +(ST)3087 2788 w +4 R f +(.)2493 3423 w +(.)2508 3405 w +(.)2525 3385 w +(.)2542 3367 w +(.)2558 3347 w +(.)2574 3328 w +(.)2591 3309 w +(.)2607 3289 w +(.)2624 3271 w +(.)2640 3251 w +(.)2656 3233 w +(.)2673 3213 w +(.)2689 3194 w +(.)2706 3175 w +(.)2722 3156 w +(.)2738 3137 w +(.)2755 3117 w +(.)2771 3099 w +(.)2787 3079 w +(.)2804 3061 w +(.)2820 3041 w +(.)2837 3022 w +(.)2853 3003 w +(.)2869 2983 w +(.)2886 2965 w +(.)2902 2945 w +(.)2919 2927 w +(.)2935 2907 w +(.)2951 2888 w +(.)2968 2869 w +(.)2984 2850 w +(.)3000 2831 w +6 R f +(RT)3087 2842 w +1505 1909 1482 1898 Dl +1549 1931 1526 1920 Dl +1593 1953 1570 1942 Dl +1637 1975 1614 1964 Dl +1681 1997 1658 1986 Dl +1725 2019 1702 2008 Dl +1770 2042 1747 2031 Dl +1814 2063 1791 2052 Dl +1858 2086 1835 2075 Dl +1902 2108 1879 2097 Dl +1946 2129 1923 2118 Dl +1990 2152 1967 2141 Dl +2013 2163 1990 2152 Dl +2057 2185 2034 2174 Dl +2101 2207 2078 2196 Dl +2146 2230 2123 2219 Dl +2190 2251 2167 2240 Dl +2234 2273 2211 2262 Dl +2278 2296 2255 2285 Dl +2322 2317 2299 2306 Dl +2366 2340 2343 2329 Dl +2410 2362 2387 2351 Dl +2455 2384 2432 2373 Dl +2499 2406 2476 2395 Dl +2517 2424 2499 2406 Dl +2551 2459 2533 2441 Dl +2586 2494 2568 2476 Dl +2622 2530 2604 2512 Dl +2656 2564 2638 2546 Dl +2692 2599 2674 2581 Dl +2726 2634 2708 2616 Dl +2761 2669 2743 2651 Dl +2797 2705 2779 2687 Dl +2831 2739 2813 2721 Dl +2867 2774 2849 2756 Dl +2902 2810 2884 2792 Dl +2936 2844 2918 2826 Dl +2972 2880 2954 2862 Dl +3007 2915 2989 2897 Dl +(HK)3087 2927 w +4 R f +(.)1476 2746 w +(.)1499 2757 w +(.)1522 2769 w +(.)1545 2780 w +(.)1568 2792 w +(.)1591 2803 w +(.)1614 2815 w +(.)1637 2827 w +(.)1661 2839 w +(.)1684 2850 w +(.)1707 2862 w +(.)1730 2873 w +(.)1753 2885 w +(.)1776 2896 w +(.)1799 2908 w +(.)1822 2919 w +(.)1845 2931 w +(.)1868 2942 w +(.)1891 2954 w +(.)1914 2965 w +(.)1938 2977 w +(.)1961 2989 w +(. .)1 10 1 1984 3000 t +(.)2008 2992 w +(.)2033 2984 w +(.)2057 2976 w +(.)2081 2968 w +(.)2105 2960 w +(.)2129 2952 w +(.)2154 2944 w +(.)2178 2936 w +(.)2202 2927 w +(.)2226 2919 w +(.)2250 2911 w +(.)2274 2904 w +(.)2299 2896 w +(.)2323 2887 w +(.)2347 2879 w +(.)2372 2871 w +(.)2395 2863 w +(.)2420 2855 w +(.)2444 2847 w +(.)2468 2839 w +(. .)1 10 1 2493 2831 t +(.)2516 2842 w +(.)2539 2854 w +(.)2562 2865 w +(.)2585 2877 w +(.)2608 2888 w +(.)2631 2900 w +(.)2654 2911 w +(.)2677 2923 w +(.)2700 2935 w +(.)2723 2946 w +(.)2747 2958 w +(.)2770 2969 w +(.)2793 2981 w +(.)2816 2992 w +(.)2839 3004 w +(.)2862 3016 w +(.)2885 3027 w +(.)2908 3039 w +(.)2931 3050 w +(.)2954 3062 w +(.)2977 3073 w +(.)3000 3085 w +6 R f +(KS)3087 3096 w +1507 3422 1482 3422 Dl +1560 3422 1535 3422 Dl +1614 3422 1589 3422 Dl +1668 3422 1643 3422 Dl +1722 3422 1697 3422 Dl +1775 3422 1750 3422 Dl +1829 3422 1804 3422 Dl +1882 3422 1857 3422 Dl +1936 3422 1911 3422 Dl +1989 3422 1964 3422 Dl +2013 3411 1990 3422 Dl +2057 3390 2034 3401 Dl +2101 3367 2078 3378 Dl +2146 3345 2123 3356 Dl +2190 3324 2167 3335 Dl +2234 3301 2211 3312 Dl +2278 3280 2255 3291 Dl +2322 3257 2299 3268 Dl +2366 3235 2343 3246 Dl +2410 3213 2387 3224 Dl +2455 3191 2432 3202 Dl +2499 3169 2476 3180 Dl +2522 3179 2499 3168 Dl +2566 3202 2543 3191 Dl +2609 3224 2586 3213 Dl +2653 3245 2630 3234 Dl +2698 3268 2675 3257 Dl +2742 3290 2719 3279 Dl +2786 3312 2763 3301 Dl +2831 3334 2808 3323 Dl +2874 3356 2851 3345 Dl +2918 3378 2895 3367 Dl +2963 3400 2940 3389 Dl +3007 3423 2984 3412 Dl +(KN)3087 3409 w +10 B f +(Fig. 4. Two Search Enhancements \(NBP\).)5 1766 1 2134 3913 t +cleartomark +showpage +saveobj restore +%%EndPage: 25 25 +%%Page: 26 26 +/saveobj save def +mark +26 pagesetup +11 R f +(- 26 -)2 238 1 2761 490 t +974 882 974 3422 Dl +5039 882 974 882 Dl +5040 3422 5040 882 Dl +975 3422 5040 3422 Dl +(%)629 2174 w +(depth)2884 3699 w +974 3473 974 3422 Dl +(2)947 3556 w +1482 3473 1482 3422 Dl +(3)1455 3556 w +1990 3473 1990 3422 Dl +(4)1963 3556 w +2499 3473 2499 3422 Dl +(5)2472 3556 w +3006 3473 3006 3422 Dl +(6)2979 3556 w +3515 3473 3515 3422 Dl +(7)3488 3556 w +4023 3473 4023 3422 Dl +(8)3996 3556 w +4531 3473 4531 3422 Dl +(9)4504 3556 w +5040 3473 5040 3422 Dl +(10)4985 3556 w +923 3422 974 3422 Dl +(0)868 3444 w +923 3168 974 3168 Dl +(10)813 3190 w +923 2915 974 2915 Dl +(20)813 2937 w +923 2661 974 2661 Dl +(30)813 2683 w +923 2406 974 2406 Dl +(40)813 2428 w +923 2152 974 2152 Dl +(50)813 2174 w +923 1898 974 1898 Dl +(60)813 1920 w +923 1644 974 1644 Dl +(70)813 1666 w +923 1390 974 1390 Dl +(80)813 1412 w +923 1136 974 1136 Dl +(90)813 1158 w +923 882 974 882 Dl +(100)758 904 w +1990 1136 1482 1390 Dl +2498 1161 1990 1136 Dl +3007 1415 2499 1161 Dl +3514 1268 3006 1415 Dl +4023 1642 3515 1267 Dl +4531 1324 4023 1644 Dl +(H)4582 1346 w +8 R f +(.)1471 1520 w +(.)1495 1527 w +(.)1519 1535 w +(.)1544 1542 w +(.)1567 1549 w +(.)1592 1556 w +(.)1616 1563 w +(.)1640 1571 w +(.)1665 1578 w +(.)1688 1585 w +(.)1713 1592 w +(.)1737 1599 w +(.)1761 1607 w +(.)1786 1614 w +(.)1809 1622 w +(.)1834 1629 w +(.)1858 1636 w +(.)1882 1643 w +(.)1907 1651 w +(.)1930 1658 w +(.)1955 1665 w +(. .)1 20 1 1979 1672 t +(.)2003 1664 w +(.)2028 1656 w +(.)2052 1647 w +(.)2076 1638 w +(.)2100 1630 w +(.)2124 1622 w +(.)2149 1613 w +(.)2173 1605 w +(.)2197 1596 w +(.)2221 1587 w +(.)2245 1579 w +(.)2269 1571 w +(.)2294 1562 w +(.)2318 1553 w +(.)2342 1545 w +(.)2367 1537 w +(.)2390 1528 w +(.)2415 1520 w +(.)2439 1512 w +(.)2463 1503 w +(. .)1 20 1 2488 1494 t +(.)2513 1498 w +(.)2538 1502 w +(.)2563 1506 w +(.)2589 1509 w +(.)2614 1514 w +(.)2640 1517 w +(.)2665 1521 w +(.)2691 1525 w +(.)2716 1529 w +(.)2742 1533 w +(.)2767 1536 w +(.)2792 1540 w +(.)2817 1544 w +(.)2843 1548 w +(.)2869 1551 w +(.)2894 1556 w +(.)2920 1559 w +(.)2945 1563 w +(.)2970 1567 w +( .)1 26(. .)1 20 2 2995 1571 t +( .)1 25(. .)1 46 2 3046 1570 t +( . .)2 50( .)1 26(. .)1 45 3 3123 1569 t +(. . .)2 72 1 3249 1568 t +( .)1 25(. .)1 46 2 3326 1567 t +( .)1 0( .)1 26( .)1 25( .)1 26(. .)1 45 5 3402 1566 t +(.)3526 1579 w +(.)3548 1591 w +(.)3570 1604 w +(.)3592 1617 w +(.)3614 1630 w +(.)3636 1643 w +(.)3658 1655 w +(.)3681 1668 w +(.)3703 1681 w +(.)3725 1694 w +(.)3747 1707 w +(.)3769 1719 w +(.)3791 1732 w +(.)3813 1745 w +(.)3835 1758 w +(.)3857 1771 w +(.)3879 1783 w +(.)3902 1796 w +(.)3923 1809 w +(.)3946 1822 w +(.)3968 1835 w +(.)3990 1847 w +(.)4012 1860 w +11 R f +(K)4074 1905 w +1503 2598 1482 2610 Dl +1547 2571 1526 2583 Dl +1592 2544 1571 2556 Dl +1635 2518 1614 2530 Dl +1680 2492 1659 2504 Dl +1724 2465 1703 2477 Dl +1768 2438 1747 2450 Dl +1813 2412 1792 2424 Dl +1857 2385 1836 2397 Dl +1901 2358 1880 2370 Dl +1945 2332 1924 2344 Dl +1989 2306 1968 2318 Dl +2008 2286 1990 2304 Dl +2043 2252 2025 2270 Dl +2078 2216 2060 2234 Dl +2113 2182 2095 2200 Dl +2148 2147 2130 2165 Dl +2183 2111 2165 2129 Dl +2219 2077 2201 2095 Dl +2253 2041 2235 2059 Dl +2288 2006 2270 2024 Dl +2323 1972 2305 1990 Dl +2358 1936 2340 1954 Dl +2394 1901 2376 1919 Dl +2428 1866 2410 1884 Dl +2463 1831 2445 1849 Dl +2499 1797 2481 1815 Dl +2522 1786 2499 1797 Dl +2566 1763 2543 1774 Dl +2609 1741 2586 1752 Dl +2653 1719 2630 1730 Dl +2698 1697 2675 1708 Dl +2742 1675 2719 1686 Dl +2786 1653 2763 1664 Dl +2831 1631 2808 1642 Dl +2874 1609 2851 1620 Dl +2918 1587 2895 1598 Dl +2963 1565 2940 1576 Dl +3007 1542 2984 1553 Dl +3027 1530 3006 1542 Dl +3072 1504 3051 1516 Dl +3116 1477 3095 1489 Dl +3160 1451 3139 1463 Dl +3204 1424 3183 1436 Dl +3249 1397 3228 1409 Dl +3293 1371 3272 1383 Dl +3337 1345 3316 1357 Dl +3381 1318 3360 1330 Dl +3425 1291 3404 1303 Dl +3470 1265 3449 1277 Dl +3514 1238 3493 1250 Dl +3540 1235 3515 1237 Dl +3588 1230 3563 1232 Dl +3637 1224 3612 1226 Dl +3685 1219 3660 1221 Dl +3733 1214 3708 1216 Dl +3781 1209 3756 1211 Dl +3830 1204 3805 1206 Dl +3878 1198 3853 1200 Dl +3926 1193 3901 1195 Dl +3974 1188 3949 1190 Dl +4023 1182 3998 1184 Dl +4047 1174 4023 1181 Dl +4095 1161 4071 1168 Dl +4144 1147 4120 1154 Dl +4192 1134 4168 1141 Dl +4241 1120 4217 1127 Dl +4289 1106 4265 1113 Dl +4337 1093 4313 1100 Dl +4386 1080 4362 1087 Dl +4434 1066 4410 1073 Dl +4482 1052 4458 1059 Dl +4531 1039 4507 1046 Dl +(T)4582 1036 w +1990 2509 1482 2661 Dl +2498 2483 1990 2508 Dl +3007 2306 2499 2483 Dl +(R)3057 2326 w +1507 3371 1482 3372 Dl +1555 3368 1530 3369 Dl +1603 3366 1578 3367 Dl +1652 3364 1627 3365 Dl +1700 3361 1675 3362 Dl +1748 3359 1723 3360 Dl +1796 3357 1771 3358 Dl +1845 3354 1820 3355 Dl +1893 3352 1868 3353 Dl +1941 3349 1916 3350 Dl +1989 3347 1964 3348 Dl +2015 3344 1990 3347 Dl +2064 3336 2039 3339 Dl +2112 3329 2087 3332 Dl +2160 3321 2135 3324 Dl +2208 3314 2183 3317 Dl +2257 3307 2232 3310 Dl +2305 3300 2280 3303 Dl +2353 3293 2328 3296 Dl +2401 3285 2376 3288 Dl +2450 3278 2425 3281 Dl +2498 3271 2473 3274 Dl +2524 3269 2499 3270 Dl +2572 3267 2547 3268 Dl +2620 3264 2595 3265 Dl +2668 3262 2643 3263 Dl +2717 3259 2692 3260 Dl +2765 3257 2740 3258 Dl +2813 3255 2788 3256 Dl +2861 3252 2836 3253 Dl +2910 3250 2885 3251 Dl +2958 3247 2933 3248 Dl +3006 3245 2981 3246 Dl +(S)3057 3267 w +1990 3321 1482 3422 Dl +2498 3118 1990 3321 Dl +3007 3093 2499 3118 Dl +(N)3057 3115 w +1990 1523 1482 1802 Dl +2498 1562 1990 1522 Dl +3007 1715 2499 1563 Dl +(L)3057 1737 w +11 B f +(Fig. 5. Single Search Enhancement \(NC\).)5 1922 1 2056 3913 t +cleartomark +showpage +saveobj restore +%%EndPage: 26 26 +%%Page: 27 27 +/saveobj save def +mark +27 pagesetup +11 R f +(- 27 -)2 238 1 2761 490 t +974 882 974 3422 Dl +5039 882 974 882 Dl +5040 3422 5040 882 Dl +975 3422 5040 3422 Dl +(%)629 2174 w +(depth)2884 3699 w +974 3473 974 3422 Dl +(2)947 3556 w +1482 3473 1482 3422 Dl +(3)1455 3556 w +1990 3473 1990 3422 Dl +(4)1963 3556 w +2499 3473 2499 3422 Dl +(5)2472 3556 w +3006 3473 3006 3422 Dl +(6)2979 3556 w +3515 3473 3515 3422 Dl +(7)3488 3556 w +4023 3473 4023 3422 Dl +(8)3996 3556 w +4531 3473 4531 3422 Dl +(9)4504 3556 w +5040 3473 5040 3422 Dl +(10)4985 3556 w +923 3422 974 3422 Dl +(70)813 3444 w +923 2999 974 2999 Dl +(75)813 3021 w +923 2576 974 2576 Dl +(80)813 2598 w +923 2152 974 2152 Dl +(85)813 2174 w +923 1728 974 1728 Dl +(90)813 1750 w +923 1305 974 1305 Dl +(95)813 1327 w +923 882 974 882 Dl +(100)758 904 w +6 R f +1506 1532 1482 1525 Dl +1554 1547 1530 1540 Dl +1602 1561 1578 1554 Dl +1651 1576 1627 1569 Dl +1700 1591 1676 1584 Dl +1748 1605 1724 1598 Dl +1796 1619 1772 1612 Dl +1844 1634 1820 1627 Dl +1893 1648 1869 1641 Dl +1942 1663 1918 1656 Dl +1990 1678 1966 1671 Dl +2011 1690 1990 1678 Dl +2055 1716 2034 1704 Dl +2100 1742 2079 1730 Dl +2144 1767 2123 1755 Dl +2188 1793 2167 1781 Dl +2232 1819 2211 1807 Dl +2276 1845 2255 1833 Dl +2321 1871 2300 1859 Dl +2365 1896 2344 1884 Dl +2409 1922 2388 1910 Dl +2453 1948 2432 1936 Dl +2497 1974 2476 1962 Dl +2519 1989 2499 1974 Dl +2559 2018 2539 2003 Dl +2599 2048 2579 2033 Dl +2640 2077 2620 2062 Dl +2681 2105 2661 2090 Dl +2722 2135 2702 2120 Dl +2762 2164 2742 2149 Dl +2803 2193 2783 2178 Dl +2843 2222 2823 2207 Dl +2884 2252 2864 2237 Dl +2925 2280 2905 2265 Dl +2965 2310 2945 2295 Dl +3006 2339 2986 2324 Dl +(HK)3087 2351 w +1990 1594 1482 2466 Dl +2498 1728 1990 1593 Dl +3007 2473 2499 1728 Dl +(HN)3087 2460 w +4 R f +(.)1476 2593 w +(.)1488 2572 w +(.)1501 2550 w +(.)1514 2528 w +(.)1526 2506 w +(.)1539 2485 w +(.)1552 2463 w +(.)1565 2441 w +(.)1578 2419 w +(.)1590 2397 w +(.)1603 2376 w +(.)1616 2353 w +(.)1629 2332 w +(.)1641 2310 w +(.)1654 2288 w +(.)1667 2266 w +(.)1679 2245 w +(.)1692 2222 w +(.)1704 2201 w +(.)1717 2179 w +(.)1730 2158 w +(.)1742 2135 w +(.)1755 2114 w +(.)1768 2092 w +(.)1781 2070 w +(.)1794 2048 w +(.)1806 2027 w +(.)1819 2005 w +(.)1832 1983 w +(.)1845 1961 w +(.)1857 1939 w +(.)1870 1917 w +(.)1883 1896 w +(.)1895 1874 w +(.)1908 1852 w +(.)1920 1830 w +(.)1933 1808 w +(.)1946 1787 w +(.)1958 1765 w +(.)1971 1743 w +(. .)1 10 1 1984 1721 t +(.)2008 1729 w +(.)2033 1738 w +(.)2057 1747 w +(.)2081 1755 w +(.)2105 1764 w +(.)2129 1772 w +(.)2154 1780 w +(.)2178 1789 w +(.)2202 1798 w +(.)2226 1806 w +(.)2250 1814 w +(.)2274 1823 w +(.)2299 1831 w +(.)2323 1839 w +(.)2347 1848 w +(.)2372 1857 w +(.)2395 1865 w +(.)2420 1873 w +(.)2444 1882 w +(.)2468 1891 w +(. .)1 10 1 2493 1899 t +(.)2513 1914 w +(.)2533 1930 w +(.)2553 1946 w +(.)2574 1961 w +(.)2594 1977 w +(.)2614 1993 w +(.)2634 2008 w +(.)2655 2024 w +(.)2676 2040 w +(.)2696 2055 w +(.)2716 2071 w +(.)2736 2086 w +(.)2757 2101 w +(.)2777 2117 w +(.)2797 2132 w +(.)2817 2148 w +(.)2838 2164 w +(.)2858 2179 w +(.)2879 2195 w +(.)2899 2211 w +(.)2920 2226 w +(.)2940 2242 w +(.)2960 2258 w +(.)2980 2273 w +(.)3000 2289 w +6 R f +(HR)3087 2300 w +1494 2368 1482 2389 Dl +1520 2324 1508 2345 Dl +1546 2279 1534 2300 Dl +1572 2234 1560 2255 Dl +1598 2189 1586 2210 Dl +1624 2144 1612 2165 Dl +1650 2100 1638 2121 Dl +1676 2055 1664 2076 Dl +1703 2010 1691 2031 Dl +1729 1966 1717 1987 Dl +1755 1920 1743 1941 Dl +1781 1876 1769 1897 Dl +1806 1831 1794 1852 Dl +1833 1786 1821 1807 Dl +1859 1742 1847 1763 Dl +1885 1697 1873 1718 Dl +1911 1652 1899 1673 Dl +1938 1607 1926 1628 Dl +1963 1563 1951 1584 Dl +1989 1518 1977 1539 Dl +2015 1517 1990 1517 Dl +2069 1517 2044 1517 Dl +2123 1517 2098 1517 Dl +2176 1517 2151 1517 Dl +2230 1517 2205 1517 Dl +2283 1517 2258 1517 Dl +2337 1517 2312 1517 Dl +2390 1517 2365 1517 Dl +2444 1517 2419 1517 Dl +2498 1517 2473 1517 Dl +2513 1537 2499 1517 Dl +2541 1580 2527 1560 Dl +2570 1622 2556 1602 Dl +2600 1665 2586 1645 Dl +2629 1707 2615 1687 Dl +2657 1750 2643 1730 Dl +2687 1792 2673 1772 Dl +2716 1835 2702 1815 Dl +2744 1878 2730 1858 Dl +2774 1920 2760 1900 Dl +2803 1963 2789 1943 Dl +2832 2005 2818 1985 Dl +2861 2048 2847 2028 Dl +2890 2091 2876 2071 Dl +2919 2133 2905 2113 Dl +2948 2176 2934 2156 Dl +2977 2218 2963 2198 Dl +3007 2261 2993 2241 Dl +(HS)3087 2223 w +1501 2473 1482 2457 Dl +1538 2506 1519 2490 Dl +1576 2538 1557 2522 Dl +1614 2571 1595 2555 Dl +1651 2603 1632 2587 Dl +1689 2636 1670 2620 Dl +1726 2669 1707 2653 Dl +1765 2701 1746 2685 Dl +1802 2734 1783 2718 Dl +1839 2767 1820 2751 Dl +1877 2799 1858 2783 Dl +1915 2831 1896 2815 Dl +1952 2865 1933 2849 Dl +1990 2897 1971 2881 Dl +2006 2879 1990 2898 Dl +2039 2840 2023 2859 Dl +2072 2801 2056 2820 Dl +2104 2762 2088 2781 Dl +2137 2723 2121 2742 Dl +2170 2685 2154 2704 Dl +2203 2646 2187 2665 Dl +2235 2607 2219 2626 Dl +2268 2568 2252 2587 Dl +2302 2529 2286 2548 Dl +2334 2490 2318 2509 Dl +2367 2452 2351 2471 Dl +2399 2413 2383 2432 Dl +2433 2374 2417 2393 Dl +2465 2336 2449 2355 Dl +2498 2297 2482 2316 Dl +2522 2305 2499 2296 Dl +2570 2325 2547 2316 Dl +2618 2344 2595 2335 Dl +2667 2363 2644 2354 Dl +2715 2382 2692 2373 Dl +2764 2402 2741 2393 Dl +2812 2421 2789 2412 Dl +2861 2441 2838 2432 Dl +2909 2460 2886 2451 Dl +2957 2480 2934 2471 Dl +3006 2499 2983 2490 Dl +(KR)3087 2537 w +4 R f +(.)1476 2662 w +(.)1495 2678 w +(.)1515 2695 w +(.)1534 2711 w +(.)1554 2728 w +(.)1574 2744 w +(.)1593 2761 w +(.)1613 2778 w +(.)1632 2794 w +(.)1652 2811 w +(.)1671 2827 w +(.)1691 2844 w +(.)1711 2861 w +(.)1730 2878 w +(.)1750 2894 w +(.)1769 2911 w +(.)1788 2927 w +(.)1808 2944 w +(.)1828 2960 w +(.)1848 2977 w +(.)1867 2994 w +(.)1886 3010 w +(.)1906 3027 w +(.)1925 3043 w +(.)1945 3060 w +(.)1965 3077 w +(. .)1 10 1 1984 3094 t +(.)1999 3073 w +(.)2015 3054 w +(.)2030 3034 w +(.)2046 3014 w +(.)2061 2994 w +(.)2076 2975 w +(.)2092 2955 w +(.)2107 2935 w +(.)2123 2916 w +(.)2138 2896 w +(.)2154 2876 w +(.)2169 2856 w +(.)2184 2837 w +(.)2200 2816 w +(.)2215 2797 w +(.)2231 2777 w +(.)2246 2757 w +(.)2262 2737 w +(.)2277 2718 w +(.)2292 2698 w +(.)2308 2678 w +(.)2323 2659 w +(.)2339 2639 w +(.)2354 2619 w +(.)2369 2599 w +(.)2385 2580 w +(.)2400 2559 w +(.)2416 2540 w +(.)2431 2521 w +(.)2446 2500 w +(.)2462 2481 w +(.)2477 2461 w +(. .)1 10 1 2493 2441 t +(.)2514 2453 w +(.)2537 2464 w +(.)2559 2475 w +(.)2580 2487 w +(.)2603 2498 w +(.)2625 2510 w +(.)2647 2521 w +(.)2669 2533 w +(.)2691 2544 w +(.)2713 2555 w +(.)2735 2567 w +(.)2758 2578 w +(.)2780 2590 w +(.)2802 2601 w +(.)2824 2613 w +(.)2846 2623 w +(.)2868 2635 w +(.)2890 2647 w +(.)2912 2658 w +(.)2934 2670 w +(.)2956 2681 w +(.)2979 2693 w +(.)3000 2703 w +6 R f +(KS)3087 2714 w +1500 2907 1482 2889 Dl +1535 2943 1517 2925 Dl +1570 2978 1552 2960 Dl +1605 3014 1587 2996 Dl +1640 3049 1622 3031 Dl +1675 3085 1657 3067 Dl +1710 3121 1692 3103 Dl +1745 3156 1727 3138 Dl +1780 3192 1762 3174 Dl +1815 3227 1797 3209 Dl +1850 3263 1832 3245 Dl +1885 3299 1867 3281 Dl +1920 3335 1902 3317 Dl +1955 3370 1937 3352 Dl +1990 3406 1972 3388 Dl +2002 3385 1990 3406 Dl +2028 3342 2016 3363 Dl +2054 3298 2042 3319 Dl +2080 3256 2068 3277 Dl +2106 3213 2094 3234 Dl +2133 3170 2121 3191 Dl +2159 3127 2147 3148 Dl +2184 3084 2172 3105 Dl +2210 3041 2198 3062 Dl +2236 2997 2224 3018 Dl +2263 2955 2251 2976 Dl +2289 2912 2277 2933 Dl +2315 2869 2303 2890 Dl +2341 2826 2329 2847 Dl +2367 2783 2355 2804 Dl +2393 2740 2381 2761 Dl +2419 2697 2407 2718 Dl +2445 2654 2433 2675 Dl +2471 2611 2459 2632 Dl +2497 2568 2485 2589 Dl +2521 2578 2499 2567 Dl +2565 2601 2543 2590 Dl +2608 2624 2586 2613 Dl +2653 2646 2631 2635 Dl +2697 2669 2675 2658 Dl +2741 2693 2719 2682 Dl +2786 2715 2764 2704 Dl +2830 2738 2808 2727 Dl +2873 2761 2851 2750 Dl +2917 2783 2895 2772 Dl +2962 2806 2940 2795 Dl +3006 2829 2984 2818 Dl +(KN)3087 2842 w +1990 1357 1482 2483 Dl +2498 1043 1990 1356 Dl +3007 959 2499 1043 Dl +3514 892 3006 958 Dl +4023 907 3515 892 Dl +4531 887 4023 907 Dl +(HT)4612 950 w +4 R f +(.)1476 2271 w +(.)1499 2283 w +(.)1522 2294 w +(.)1545 2305 w +(.)1568 2316 w +(.)1591 2328 w +(.)1614 2338 w +(.)1637 2350 w +(.)1661 2361 w +(.)1684 2372 w +(.)1707 2383 w +(.)1730 2395 w +(.)1753 2406 w +(.)1776 2417 w +(.)1799 2428 w +(.)1822 2439 w +(.)1845 2451 w +(.)1868 2461 w +(.)1891 2473 w +(.)1914 2484 w +(.)1938 2495 w +(.)1961 2506 w +(. .)1 10 1 1984 2518 t +(.)1995 2495 w +(.)2007 2472 w +(.)2018 2449 w +(.)2029 2425 w +(.)2040 2402 w +(.)2052 2379 w +(.)2064 2356 w +(.)2074 2333 w +(.)2086 2311 w +(.)2097 2288 w +(.)2108 2265 w +(.)2120 2242 w +(.)2131 2219 w +(.)2142 2196 w +(.)2154 2173 w +(.)2165 2150 w +(.)2176 2127 w +(.)2187 2104 w +(.)2199 2081 w +(.)2210 2058 w +(.)2221 2035 w +(.)2233 2012 w +(.)2244 1989 w +(.)2255 1966 w +(.)2267 1943 w +(.)2278 1920 w +(.)2289 1897 w +(.)2300 1875 w +(.)2312 1852 w +(.)2323 1829 w +(.)2334 1806 w +(.)2346 1783 w +(.)2357 1759 w +(.)2368 1736 w +(.)2380 1713 w +(.)2390 1690 w +(.)2402 1667 w +(.)2413 1645 w +(.)2424 1622 w +(.)2436 1599 w +(.)2447 1576 w +(.)2459 1553 w +(.)2470 1530 w +(.)2481 1507 w +(. .)1 10 1 2493 1484 t +(.)2518 1481 w +(.)2543 1478 w +(.)2568 1475 w +(.)2594 1472 w +(.)2619 1469 w +(.)2645 1466 w +(.)2670 1463 w +(.)2696 1460 w +(.)2721 1457 w +(.)2747 1454 w +(.)2772 1451 w +(.)2797 1448 w +(.)2822 1446 w +(.)2848 1443 w +(.)2874 1440 w +(.)2899 1436 w +(.)2925 1433 w +(.)2950 1430 w +(.)2975 1428 w +(. .)1 10 1 3000 1425 t +(.)3020 1408 w +(.)3040 1392 w +(.)3059 1375 w +(.)3079 1358 w +(.)3098 1342 w +(.)3118 1325 w +(.)3138 1309 w +(.)3157 1292 w +(.)3177 1276 w +(.)3196 1259 w +(.)3216 1243 w +(.)3235 1226 w +(.)3254 1209 w +(.)3275 1193 w +(.)3294 1176 w +(.)3313 1160 w +(.)3333 1143 w +(.)3352 1127 w +(.)3372 1110 w +(.)3391 1093 w +(.)3411 1077 w +(.)3431 1060 w +(.)3450 1044 w +(.)3470 1027 w +(.)3489 1011 w +( .)1 25( .)1 26( .)1 25( .)1 26( .)1 25( .)1 26( . . .)3 75( .)1 26( .)1 25( . .)2 52( . . .)3 75( .)1 26( .)1 25( .)1 26( .)1 25(. .)1 10 16 3509 994 t +6 R f +(KT)4104 1005 w +3006 2754 2651 3422 Dl +(NT)3087 2766 w +4 R f +(.)2747 3423 w +(.)2760 3402 w +(.)2773 3380 w +(.)2786 3358 w +(.)2800 3336 w +(.)2813 3315 w +(.)2827 3292 w +(.)2840 3271 w +(.)2853 3249 w +(.)2867 3227 w +(.)2880 3205 w +(.)2894 3184 w +(.)2907 3161 w +(.)2920 3140 w +(.)2934 3118 w +(.)2947 3096 w +(.)2961 3074 w +(.)2974 3053 w +(.)2987 3030 w +(.)3000 3009 w +6 R f +(RT)3087 3020 w +2812 3399 2803 3422 Dl +2832 3353 2823 3376 Dl +2851 3306 2842 3329 Dl +2871 3259 2862 3282 Dl +2890 3213 2881 3236 Dl +2909 3166 2900 3189 Dl +2928 3119 2919 3142 Dl +2948 3073 2939 3096 Dl +2967 3026 2958 3049 Dl +2986 2979 2977 3002 Dl +3006 2932 2997 2955 Dl +(ST)3087 2943 w +10 B f +(Fig. 6. Two Search Enhancements \(NC\).)5 1710 1 2162 3913 t +cleartomark +showpage +saveobj restore +%%EndPage: 27 27 +%%Page: 28 28 +/saveobj save def +mark +28 pagesetup +11 R f +(- 28 -)2 238 1 2761 490 t +11 B f +(Fig. 1. The History Heuristic and Alpha-Beta.)6 2148 1 995 840 t +(Fig. 2. History Heuristic Example.)4 1607 1 995 1200 t +(Fig. 3. Single Search Enhancement \(NBP\).)5 1984 1 995 1560 t +(Fig. 4. Two Search Enhancements \(NBP\).)5 1946 1 995 1920 t +(Fig. 5. Single Search Enhancement \(NC\).)5 1922 1 995 2280 t +(Fig. 6. Two Search Enhancements \(NC\).)5 1884 1 995 2640 t +cleartomark +showpage +saveobj restore +%%EndPage: 28 28 +%%Trailer +done +%%Pages: 28 +%%DocumentFonts: Times-Bold Courier Times-Italic Times-Roman Symbol Times-Roman diff --git a/parallel/rbf-europar01.pdf b/parallel/rbf-europar01.pdf new file mode 100755 index 0000000..31b3ab9 --- /dev/null +++ b/parallel/rbf-europar01.pdf @@ -0,0 +1,1820 @@ +%PDF-1.2 +%ÐÓÔÌ +1 0 obj +<< +/Type /Catalog +/Pages 3 0 R +/Outlines 2 0 R +/Dests 5 0 R +/PageMode /UseNone +>> +endobj +2 0 obj +<< +/Type /Outlines +/Count 0 +>> +endobj +3 0 obj +<< +/Type /Pages +/MediaBox [ 0 0 596 842 ] +/Count 10 +/Kids [ 6 0 R 8 0 R 17 0 R 26 0 R 33 0 R 41 0 R 44 0 R 47 0 R 51 0 R 54 0 R ] +>> +endobj +4 0 obj +[ /PDF /Text /ImageC ] +endobj +5 0 obj +<< + +>> +endobj +6 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 56 0 R /F2 58 0 R /F3 60 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 7 0 R +>> +endobj +7 0 obj +<< +/Length 69 0 R +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gat=.gQL=2&UiQ?i1'*`&].dlMk;98W_si"@W*_f=ag?Blk0m9ci>J/rUoCUVRqVN+ma76Kpj<=l0d +#u:\W'd&-(G_o'lACiUo:;&Y$h=#GEB-Ch!1[T,pc=6:F4P)dPj#S8B;XRkOg3e`QCO%rmiRdX24!b +._\\WgVFL<2>4Rs.O6>h5UC]3_Y#qU/[u_:N*:BgqKid@@[=m,FrQGV]VtFT,'jp87`V3a(af24#ua +F[ZaHjU^s\2#oeZ5VKnu6S::0=goJY4Y?bp&)G>D<Yre8LBj!l]MXe=G_/:MMd&%n#qoCn>7t.`o3[ +]]ip3.\sG3RD'M4`W^eY/I5o;K_W)sG1U9Esq-<0ZZYIeE]mFcG3g9WmWOm*"B.mJ3V@SM+L'>MmSV +%,KN8]<>P7WFQc]:ZlntC:8%ClT_*9R4]9+o?+i%gAXo]k`JY.4hfP[W]>_UX#D5\&g93%KFm:p09> +.<rmU2bfBY:4b=bh&UUkaL6)o/H-P+M2Lce;NrHEb^1*DN,kdU&q6E&-EOHYRda)?.=fU)Ii\cnUa& +rFs72aSY)=B;pU&E&=Yf_>'AZCXf!_?Ss("5%d?WQ=Kpb,,tC\\Kkhh7O,A;e^JN@1jbZkN)#s.ES5 +#+Ra-85n]A)Ab4^MolrTE@!_)l:D9/K[IK-_'SQ)F['WgW;FS=QMFac#e`WfWYoo</:4RdG:Xp"Z`s +I=Z4ru6O\i`pc2A]l;e\d8K9Od9]RRT;JQlD8@`@(PCdcu:#qOo6>aV&\9AYr#GBAXjUd;QW<^SQ#D ++qmb<ikrJjf)(O%'e6%2mHaKA$XB"-]OF!6MIE=qfN8j:QZn1B5K'fp2HF3QEJ"UW7SJOZ\!J=CSiY +W[FX&(Z<p2L6MU.)fnn'b(^rC&`"_Z:_[3*f4<-W0=fpGla,a>Mp!@#j4>HT6/L.%/Xl]`^$K[(@Lf +dacFm*G`9A9L1Ih]4=rCD0Z)NHcH.kI*8ifU"2?4GjrPE]op:qo=;]p]dkM"bds?85K#."t6"AG-kk +mJ>I/loE[aM,$$T<%V=9_.T.,a#PK/G)jO@R)R^Wf_+Bk:OoeL@lmFC@`9/6h.:I[nb#GZ^63pG#p# +K,DagY+&&1'>NN=Us]SY3Ym*D_=dC6B-+r/AV.L7'<D<")G%4I+0g[?o@fEgiHlmd>_jbhA)*<EYMA +W\>TR)/I/*cuY@%h$gY]R9$*GTlt(&MpP6W']S)h='dA1[*Gq*4uP(Xca[)-27i5mR7DP*2CV2,6qo +oB4,"g;m+qE$"'P"*^mTZ!NA::RPQn`A/MXYl#LP7m#DdoekU!XR#BuMS95%%rFF=@]"f:X?3?8K"b +iX:([r8=PHtD7i[9iVam%,DaV?"T!`1+P]Y,]CtZ0^RgD,:C>]6ciM@S.Z*'G<cdl(Q0iTP-A;[6"" +hBeja9'"RbZ%prWI-o2,3WpD5*[W:dt5j?YgJ?]i:fHQOoT_;ucpV-;5A.L/um-C?\IJ<`;4RG2T*0 +K5eJ,7Hk0ULbM;gC[fS.\2;;'\B@Z:7E[G:+#bB2k'S'%Ad8,^?;(.:7bT2rV;KG9hR^n\]\6'\*jD +PQ[?$aD1qH.947o=])]!HpeZgdhQ76Utq!kiR$90(,ET!=r@)lkp/9"5e^9WXRK+a#aSF@S2.FF!!u +LH^57Lno=d3d>.6tW,/@,B%OpbYHg[jfbi4iu`Ta&eHt@Z:Y3Z\RhbJhUMR,NLX;0q#I,2Lu+?qUp5 +4t45@BlI@YqM`h(XIh;p0@u%"SK'`=?)s;l="4i'SJAVaR-,MWYJ.UJ03uP*(O,oU\)b<N*2g<pkmH +eW3K_8]$9o-:a;Dqrh*l;]3nQIP[Fb$.7nP19H[mZ1jE[f)pHfB?Fs85a=JhI/*2Z<;@lbtb9Vpb>< +_4hI;QI/:!p@\Tq10i:7#RocOKQ=6F%c#SPaqR#VmnJg`ceWnP&=Q6F#Zrc@j,E&2'-oBuXrRUiFa, +E+HkYbb,7`"9;Lg%!KuC8G;$ihh/WiPsSal#]<7ho`:2BV`UP^'.n,/OsD/I>cu.`eUY6Zcr%%J?'Z +Yq[.r[5]QL&kKI]O0Cn5/W,\2A5fbPa%8!WI&^Fs,ul2=<sE,=?_C-s,,EScY72ri0H,g!A7H2CeLd +#6oj#]X>H_@LSB@Js8fl0h-gh4-j;:\--hh=af-ZaWAmDV?Fca3S0IM.nVH:6WSb&7?`[B\MtQ[a.> +hVlGd"!,7Zi36qY^I!?FB22d/KI;bPXD""q7Fs]H`dW"(O,)&K;2&n0sbVt="1e;b)G^XLm_4sXF)2 +[pH!Kj9$m&/oW<%")=@aCSgB^1.d`s'ug@P]F2gS$a*TuHE/JBBm5$V2Bl/.$Z9AdnoZg5?7p9;h?U +B->MY\EP.F&V_*=eoJD^qe_ft"*Z-:OCMDCaVC_ZL3BS7Ol(ki_48sa;6b-hIf*[?8;#c\fp!u%e!W +hr,.*"QZ`e'si$-+1%8"6hU#SoKhl6O4eUMGihH\DccGED6r0KZ7gm,L_iL4AYW8hEY>).[&T`iMta +sML0^k7%!lQ'TP`[tLdSe!=9<SZS.!3&Qt#tM0&>o02:,7Wg06rS.(ZGe-CKTk(_:_1s'*5"g]=$qC +R?_&\laI<oOkW,[`?][mU-N!BPU4P-t47@!c'!kbgWgCr3L0$9,VMc*79ZB,Om_5tgLD!<KV5eB)<% +s%QD.R+S)@)]=7b/YSO>P+$TSo%-8cXd9o:[GOX;hZ]g;bBR`:E9V2A\'E.e]=MQrK88e:<Wi7H$Lh +hI7VH`?n<ERimZtE/Gn`CK!#:_ocEuZ%`TU*En[!6$O#h!\/0HNdFT0ZeW4r1o,VQqb>\No%r-S'?b +VRJ'-p6WrC.,(d"$FI2Il5-enjs^?\5s%4B(5<'MqO>cs`SD&=dn<TJiu.G)adeYJCS\!'SaBrpXAC ++t5dNXR9';;lmV1S)DT1fuqoSp]XrLuTD2m#p47kD3Nu="V\DEj\.@82TUPW=YlAQns6YO*,NZ)%d\ +1X.^KERaV+FqJorN.jUNX%rkm+-,?=B=`dQbkQ7P/&Z,W\n\`*,.J#>aUVYg=dZB#IKsLkn7CO0AYH +cCBM8<J+*Q<&e@PaKo=8S)H^*qb"/<Tulo.tC<<=_?ek4)',b_SBeA$TQ.p^I8K@bPk8:tXDhN+ZUa +5\a\']FKq^r4]@*mjL\i3G1E5a5kGF9%pK1:-Ju/cm;doQb@h8bc5Q-q]qqedgV#6%]TP*`_k@)D8b +6>r8&VmSi,lqONpZ[+PL\f_Smdi@\dJ5X9#SHW;U3""R/M`6[T^2QKY[P64)k4C8ITh/KspI5B;*>o +u0WtKAL0H3!G>]`U!dShKrGL1mX.D:=XUUE+$i&i9lil[7jk\ED.g$^`@/&=t7&#'S32@j,4-s:+R$ +e4C(VD'Z!"J`<S4W8sF\V_DIY,O;.DkaI`Q?.n^,^CF,Rem95>O5(%),(g+*JCM]SflebM^`!97+rN +VKC"'/]0mN&!"Y)P4/S@FS@N"R8c('08Ya+580`>+94R3^$_&a=pe"efaCH.,jl90^pt((3Ea%^p$R +?u%g4$nTgt9SIbuR">]DS=3E\OL<B8S8rrJd2lKN4<Y_*<IYN/DGa^<\LFQoh7jMa+\38Xk-Jj22Qq +W4CXUfhhQ">m'cp,iJ,fLdhO^XrJ7-^rF4#[Q:+#4V3(k!to%QUFQ\n&/(#hP4k#7I3,umNdR$#a`N +4Z]Kq-i2+'<7nDd6:.9Ra?'7:b8^Ski[")OA^YT-"KMJr4h:KJVBWO\ieRp3AD$Hlm9b88Oue&)`3W +X-:cbBPIkg]MXT-@5UCipOVkuEd1I^Vo/(d8^_[!\1ZQsm#C`8^3eh"qZ,Z+0S8,n7)/N6^1jaD/a1 +9^YpFJn1^$WA"54m[!:.seABie0C0AS%HEGF\p][_@M4#7n@MYb`9p<0m#UD-D3>7Vr.\TBp0UgVJk +B<R_Q)GC'A%$;"E<?I5ni8B6cW:\qi`HGWWo0C@i!;(X#aRiO(O(3;nNsJR"pc,#t0R[(7<)oG]3e> +rsKhFJ\1H;@J[lZ2O$k)D\nXP;Yo6kta.bhFeLD/pj6;inG(nHtYB=1M3G\8EoHKF9):?%>ia[Ofkm +2R-L"cCMqQs]qU90-^Mbkf+SfC"6^iHZ61?<Gp)YIUg^.a5l%@O#A4S`G(TSGJa0nC#(V>:`Rl=`N4 +:`%)oKA2;beD]bm8qD"ejk5$4E:^NL?L8X;G.,[FZ&,-#4s50W?q*0>crr7gnrS(i1,atm7`>eY]Y+ +D[bRM#RI;oicgDUa=5e3uE(UG>c>/@4Ob%&8$\J+Fa+%p+5i?R(T:)]dIm\kK%*\l+EGF;c.en3oVB +#4ce^)P3?N$2/-nrpiUuZ"rd0(fhgAV`jDh]6EVSY:[dD+J.dpYqsKh4&Ek4'keO//a&kGm?j5\n?: +qE-i8d/I3g/eZ/oP!]??tICJ)HSO:Ps_Mu%O5W2@W]E*2P`r3g$SDkKHlRSF,K,9Hgp?)TAg~> +endstream +endobj +8 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F2 58 0 R /F4 62 0 R /F1 56 0 R >> /XObject << /Im1 10 0 R /Im2 11 0 R /Im3 12 0 R /Im3 12 0 R /Im3 12 0 R /Im4 13 0 R /Im3 12 0 R /Im4 13 0 R /Im5 14 0 R /Im4 13 0 R /Im4 13 0 R /Im6 15 0 R /Im4 13 0 R /Im7 16 0 R /Im4 13 0 R /Im6 15 0 R /Im4 13 0 R /Im7 16 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 9 0 R +>> +endobj +9 0 obj +<< +/Length 70 0 R +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +GatU8bECYh(#@2;oIa%,VF;-U.pgnh<MaLE4&b60PQcieR:aYigE\j*q<J-5\.93cberNlb=/]+\;t +^W4TPHXc-O#ZDgo4.q=lDl`Oia;RrVkJ]1DmQs)E7oM:6kuZ<\O?b=M'h%_Hr"r:&tLmd@hKaZ`I@r +K;L#-&Rkhk%VJhA7;)g'0J&1kst?MKnjpngP:RHTrDZd-p><EB&?:f']5GGVE_HdU\QFNcZ=>X*h<& +,Y&d(2O)9(XS)4'sDoXr%m^#UV*C$t'dB67!@Mrht:5sZM$@$e:L\pANmFqB*?(f8HJU?u6g<1\F:[ +Z"8#rc%;CS'>hZ'R6#h5]!ql*?rYY(7\ANojh]GH"rYMlVUF=-p^l_h2GCpp&E`ag/'3g1P!-\>5O) +4%:B$@jeL.P!_A0&,'1!fTprK-+W'?-j#Gg2-<k_FW]AYURLr[r.Q[\K?>IM5&kM=TkJ9b!oD8sKbS +p\be?EXe\9g!ojq)'38<99]6]t)qdc><P5CgZ04Q]&M.MKu!fV.:0M(1+?L8!mH()WuLN,<B"5[+FN +oF>F)Ir%SfYgj$`%ZoTi(3eVCbmt!n%RHiU`&O11/C)_Opfo1qcmt8H`L"S[!>#3[i7i)icBNnGF8F +>'QfRW:8F$0m'.,WQd_;q(g]6#c-rppS!gFK-l2\Z7(]NSQF[h_$FJNl3P`R1JK#Q/)5;q]o+>Ca9% +R*U`[aZ;Gb1'Q_uNq<]ikOi)3H4L8/)DEDs0.Y'Yk-NU-DG`8]"V]j.=u=4]PjkPmH"?WE)1+c0/O_ +"8k+hbgeQcJ:`Fd4if?<$a7RcefbrP;t%rcc)A'NF^O"o+fo[t]AmK!@!<abaB`WiPIa1O@mf=A-A9 +dE@p?k"/4XfnN0"^P7"[W4UDi.QA6jU'L<3Uaj[=q@!$';f^'Q4K[>IZO7@J7t+D+F]<s[4l@f&!_G +d.!`X27J1=TsV$.5kU78Cr*":lk-7M=4N-3dFm5#$CtD$6(AZMmLZhrIA)<do+.TMSqjEmLgDH3dB' +finr]]EXBQE;R0paA-c=)CtB9*dWhq?Qnn;uS<:W5"!Ru9prBCQs$-jb>#S/@e.4pu%7,Bg\X?$jY> +<X(M9CAt51g?.b_JHN5kL=Dm1^cbgO"lYf,$R>M7Z[8?k-:7Lre(:k)&bG-l3$]+&R-kS5.V59XQE! +Aap2nk78#9b$cX$efqN<[=;3ECJUs^9fA*T4Y2\//_-Zf(RTa81g@9tMDPie2G+'W60boCCVUP+pMW +f4_#R/lEb"=#($,GIOOC?o[f:,$Qe"aVKFr:RF9FeL$93\d056[B83g9MK@RM%9FBKFG:p!",+`7Q. +?WNdR6f\GTlKr%bH)iP&#ai^dM&c5:UUb,c:NRnXaE?l'@\$p(^;JoN:;F,,QD*tjAqYOo+Rod!VRI +?<ODJYE;P%UN3Q,7SLopX>CP>YA"si@FZ.4;3fd9j(etVtfT\O"fVsutk-:Ud$H^0"PQ*VT;%3j:6W +3KMiiCY=ahH!XeUR4OAZi,V9`H8<2)V0bCJ]u<Ei4!-*!#f5ra3r/8VDp5Q6[j;;?Yu/-",QIXT)Ut +ma]L?FaoW!M/91(f``\rQZk]oU6mFUW#/[d!K8CWoGAssG(81IBO4j\d]fm#3R%5GG<T':5;[EbKI^ +W!mZX1uQ1/<$SKWr%JX0/)I)8d5c'K5b+:BIb3=@e")&pM'W'ef8H.8H4Kdfc2Z-S;t4'N.E+Zc[l1 +eaR?:dOI%?MVn+d*g^[,Vl(ai><pJ5+(L+LHjT4JLOL<[X5U]?,]WL,#lT3rfO1^WBV(ZX6)ho?s9K +qTF4D@](u-s'^u#Zh#+f*7nV)eKmkG'N[[%bQJa_/NUs70,o.!,/F9)[+YBC%&OEW`>d+Y\[:@1iOB +A[=Me9MG2iQk(KV^@1_=\$u7;k+M'rh]gRpmV20;LU/@pa:6[uWf#\L,3tDaCt[&^Z)2_uEoa5Di=^ +C2/tMn52O]JOmp-[o>i>i`rnIGEC/@G*1CtM!eBtp6"p=Nt7WU0mEjI(6<EIQQ%Y+Ntt/AYj0pEklH +a`_2en&gnaO`6`f/qZ&oq#]";XSSO1IpDQl1HOH+/P34;)OZ`g]M;33[A('D:bC8&fN85r*s]0QH*i +0Mf2(k5c`p$ktnjEMZ^`ot1EXK=A=6G#92F4ONneWnXX2bnb+@)W'Bqc+=.N1@VL,`PJ:\u>ao=C/$ +6:>5mHU;(,;`5#MUA.$^%W]+i=.<2S#4#JL1gnK=>21"Sd$>6%<k_DMr%8%)7A_T@W?(n2b9`\Cg&U +g;\1UViC)u0!VXFa3Q9n9cJ:6q%fX"OK,kjS^hCf"_/3(/ek:T,RbASH\2e-NuV+t10FVtPWE-?GGn +EoN!6Gjm.*8Ve(c6Q7uJ5XP(S>o76aq[KN?PiE9-RT]qS`!2>uhm([B_HEflEJ/"_UgnH`>?0<j/B8 +^Pp2K7&#Vjd3Me+/]fBA\6/Qiq!AeG_F,XfEEC2-"N,-W#4'\1;f")>8>aRf6ibnY&PCHqYMlHdm-, +sKhP0mQic^MNY]ftD<3'j7aB!].u=lt?tGY/[]kHJL3XXOhCpD'+mB-45h]Gm%4n0XuS57FVAK(^&$ +Ri`DR,aP?DEX8[\h7r#C+3aM-MLF#bp/(^GU:(X,o8YoqkY>B+83ep,Y__J[f:;*l%klE;s)AOk21, +YcN2W)),]*GgMKrr(tV[Ed]FK4J+g5F35;ne*R!DkttW:3L0c6tK*HkQYaQDM$e729AE9t'_U5!q5, +LL2&3/Rr+_k$niCL!dBc<?WY,d'-E.q`qp\j$t[2EHQ,1ef[e0/,)?gVs7sR9h`[P*:3-X7F7>5M#o +s0hJSnDlP^X@`#l8j"4iTi;;aEc5Xgq=g\6Y!4U1(b[[8a2p7)a8<3m?6&7*,>.6OhU+L-66;!d5+S +i+lO98VgLF#-itbY2,K'0+2h0M^4D\n$]#QT!R.Js)0KC4m:ucaEF\S080;ag9XE9;o&I(l)OS9V?G +Z;YS8KpE#7n1;6Z=S`j^$T4STp^KL)Hqj"2Y/O1);M^U?SE]H)k3qSg3GchcF&;jVaFXk(cVnqm3>r +h`IFqG-[84/j.#1P*QQNYXU(4hP6f`Tl6B?(F:?!L(@[bD`<8;"(WKj2`A:f\ZnWI^"@(EcB_FE$*X +NlFO-)^,5e/lpdZ(>Z7,^EaY'+PN,LmUk_XlWXpFgn>/_Ji;^!^S-;fn648[PEeL6[hC8l0k2su8@2 +Zl5P7[ua"UH)#]o6R^bcLCMe1^sP"bGBi+Fc<W5oE8f)B[V#-A\1f*=d*KLsPLnH^Ub:Vj-Zk#Z0B< +D^I.jW3JHFaSr<I<c?p5r-<f*,Bag,b8&`R>Ak%U4mDk\(!IKV8?CXUa2=YpFlbNP9jq9HnDSG0Tm5 +rJ!so&S#BWpb+lf\-d8-mNsOYU:TJf]hMOqZ$OME_d&cejDnN3g\eHh^I\8qh5TK0V9T`gnr:Pk"`& +gg4lF-FMW083Dn>!NbBuM!Gf+"rKEts.d36JnhVcr%TMG+2L67.hqc''n9?D5TD/C;>&mJ@"\18Vtk +4#s=`XJ7&"pY`SX='*+P%aZuYX.POGPGpIem)q6V`+.83#1NcncId^k1;hMkA;,=rKlucmO*<B\c!h +&.%YXFhM1`S3(W6=Mikfct+lY"l[;&;V2#.0K<k@gAO`TF(c\j"m7l,4fY(ko_lL=Z6P\SQ%f?p!TD +iIN2f6-MdjmfC.'N+s'1>'_sXC6Sq`m^cbp5TZOD_P-,@mbVtn\+XI]iU8p""[G'pDu_[[CUo3V:H7 +i.1$KPoRjVER:OS;ip^]4MF(0QI1@Z9nQ(-S%[*peobVB]._&k:Jspb7m#%EqZc'h/5@M)jY2PN7Y+ +Og>$LCWe8]T1p:T0Wp`[=(q[J1JU&PEgk-*=lGE:m2=Q9^(1oh]O0<05D!5)4.^EEhB.*upQ(HdiL) +h-e_$)V<J!_$o6@qHV98BHG:qGa:Wp%u:HF:THa4g[:O@9Lm(C,o1T!KABKlpOF$=9_PH6]O6%!(rQ +H<\Hl(/l?TZTM1r-4afPWcNc3Y#\\gso6e"cD#Zi/?mDV/1g4m(:`X;tV7DksogC@Q/HP#NW%DnKH* +mWq,'G3oFmQ?<%>arl"C;#48:Pmo=V\l=D`hJ;;&V5!=>44?G^s-sC\"boi*<T3ATR1JXWV=`r@TJ& +<AQE"D$O@&#/_l(*Fk##_noI@7ECS!!e0cj_'^*;a%e2uch/tO=j&,\#nVRXUb].NPL8Mucd$u8MY8 +phbCuEts.5+YMrEj(HHq!H4Gg\'!;T%d>QKCU0gi8sIG[X"-d`k[emc]ZA8)_T"e0*M'Q^1QoSdA\' +L?57RV[oL]FRBDsSPE(Mm"Prc'gt*@l8QcZ\+'MJ[fY0XdL7[eOSHLV@fE?G"0u5eSG_JXJL\_F+=i +VOP73dLIPkG=U'G%5)gQ+_%g*4Na,adeAfgD2$QdE__/!BD__f?uBW(294l\gY%r`\BJp,>B`,`!&c +`t]L6&E$AYqI?_=Rn<h.lZm/<qT"MmM?*Vp:Z@Da&8NF46q;0a'ZQmA*\Q;p4d=XEBCZqCE,D():*f +cN?/f:OSN-LG`/cb1>g-`^IaUTMQ^uhGkoI-*3mi^+%[0!cQdnR/q$G1^MGZ.NgOX:K"FsO/_%h@It +[]1iK$)ZdN^iGHMPs=gG^i^&Y>RTWN15gQ#YK;YI(5O(Wlm/mA^Pd&)ZK\.W0QBA#o+V.cR4/j8B19 +m'?$OS^5fq@b.n;N/>=EPa7?I(/\RB.?Q\dQ[<6X>ccA&$n3[+3S+MUaWc#9!:_.rd"GioV0]PhhT] +-BYP3=Fnh/HV=4m1^g1H%OS2)hZjJknAE>2d$E1H80Ylb.`;E-'(1ohcpL;.RK<U!EsMC85Z^nE5To +`Ut?2si/@Xsk8M\(Oeb>k(U(D",*;C8Uk,^32r04QfV9)68\6M7Ml@Ai;J&,a1mmf2UYO<$\nJ\0"1 +g0:qh3S4j@;HuDXL&1pj_'AbnqG30`P"l\fh5Q(5'G-Jr02[lJ+cf/tt@uB#UJW^&,%2)hS^MS\G5Y +XMP4j;tkEPt\,LTtUY/<%rpH`=@Fh>D^hi@okqNg.&4rX=Sg"X9'HV^UF0,)U[1St4R74/Xb*gedZM +N,7dQLL-*L>m24jO6B;dZUKKQ,@fq:U'M#n7**%F?jqO`ThCB&31u-;*3g!V1g&fPDt%eA'l8<4''I +m!pks)[rC\`pN0D!k=->uYB3PUGTjIbFpV^stdH;ijaYP=F-s')H37kW1FKM'iT=NEURb"'I&-#-GF +=5$L0<?bsh6$=N?,sb*rrGMn:G`~> +endstream +endobj +10 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 71 0 R +/Name /Im1 +/Width 35 +/Height 58 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Garp'Yn=kr&4Fpl-m5;fd=rlQ.k\XQ(eUP;8l2HOU[o\OJS4?1%E[Go!S/Cg!mrqtr=2jQ]Z@>A*EG +e'Q4L6Ye1jj2->WOtl5/Q46."U(^#HAqr>$1Habi:si*B4:[-sf*I*b9q:dY1Nq1flY["Ea7<DBTm& +N&nmm-(O1Yj,!WW/iVI+Y/(7`SZWg?2X~> +endstream +endobj +11 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 72 0 R +/Name /Im2 +/Width 37 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gat&EYmGqG%#*X[#@;IbH_B:(JrSdr/g/eK$8*[8LgsNmRU>]g:%@bBj@)HTObXPB(BYFX,_H_MW*t +2d<lNk<MIkC*!Zh[S:dGUD/;aHi!PJt@n.;7D$<l*?eCd'XTE!p]%311/5"\X<~> +endstream +endobj +12 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 73 0 R +/Name /Im3 +/Width 36 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +GapA1Yml=>&4"WmZ4o50f2<`r6:s:>aTtR*DD[F6&[$5,:jbP"b5Z1OP"p&BMUk'fI1!u%;9Sr99>8 +XtrdDTJC=KQ;q/t=3$>4>58<Jp(]1Eg7$RZ1_?jPW*'TBj@Cl%hi1b!AhK3a&=:WO#q_#ZLY~> +endstream +endobj +13 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 74 0 R +/Name /Im4 +/Width 32 +/Height 38 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gar'bYml4+&4"W]9Y:j)?k!M(XlKW+BK$8C=BZP;W/MLqJ"Xg>#>u@I#q/+eENp$%4s%454Ee`8N*- +O1HcO=!qrdeo)p'ck@>.-Y92K+1'@TuBl(nWe"XkP~> +endstream +endobj +14 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 75 0 R +/Name /Im5 +/Width 13 +/Height 30 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gar8g_"`KV#7.Vb!5f'.&,779*rnV&"s@H<B<Z$Q"2c$2XC1f(KHD$6(]_8Y'I*~> +endstream +endobj +15 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 76 0 R +/Name /Im6 +/Width 14 +/Height 41 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gar9BiW$gqLZ&KU%n7-._"`Hu"<T<^?jFLMlj*;OY^sPT*X!AA)=2q$%LDBNYXSZsIi&0Z6:F5[!W* +(M"oosu*KL~> +endstream +endobj +16 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 77 0 R +/Name /Im7 +/Width 26 +/Height 27 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +GaqLQYml4;$q/L(>e%ZjKLMW>('TC^b:"6ZdM9WT'^50a]'?L#HU(PrYp/"#=+@iXQ7CV7NsGC!`AY +,'dkR%Z3lN)N61X"9'-nRp~> +endstream +endobj +17 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F5 64 0 R /F1 56 0 R /F2 58 0 R /F4 62 0 R >> /XObject << /Im8 19 0 R /Im9 20 0 R /Im10 21 0 R /Im11 22 0 R /Im3 12 0 R /Im3 12 0 R /Im12 23 0 R /Im13 24 0 R /Im14 25 0 R /Im14 25 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 18 0 R +>> +endobj +18 0 obj +<< +/Length 78 0 R +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +GauHP8U&rZP.pNheBsk#6FeJjI;6;EO"So-A%h'CW"6ik8Ck9dWg9M>^O@AXN!2bF6rImt68Au1'$D +(u6mhQjlBfJfKr\58)rha^KM$ObA\6=?<AC^gK9?d4eHGZ:hBL(ZijZnp8l`$;DXhiA5Q=ue`U/r>W +iDUKM\'`:I#'Jf1T#2dW>D82X6>1e[su(@V=5bSWZ('rmI[4)VGc!c78sbm5)j9YY=oCpcjdYSq]Q= +j4Ql%Q>A*cfmQh$Belp8-o.9Rua[->1)I%oggi,L/JRT=l7ZKJlHQe(jUT1])S)K_AIU1_^\fX/S?b +Y*GF_u7(?.XBV%a%*O.^-_+W_aRCI2;S^-&u>:$!Gucnh(Fe)jH#pGe+gM]DIYi[i]!d8p/=1+$X,G +H05uin_roY=4Y5TeUi8GYeBV4C;B&eC@JF:pi*k?meZh"L]:)?A7Bih,V_rD=';iM&f])sjD?:?l,- +&/2Rj*Q'*`2<)6(`I.N0P=PQarVSOb\+8c:><-ttNkl]dWCXRQB=q7L!?f4,!J6:ht=5L(\!Bo'E8# +I21PDKd-a^StH@1U.-dd_2QBSpFPVP6f<Q%?=u)"J-OXB4%Pa;[)qHJQ75;8D!Z@4oK4e:DbK8b#nq +<;Sb"[irC[s)C8-N](_AZZ7HcbBueUoe%JLNhH.+F$Z51/L0;su1oUdkc4gmhMJ?`LJ"KRO\qO)sbH +dQRXADVo,.0f_;Go`>B-iNaH_i@r!.ilt-'9ha4&S>d1=)<b1nu>7*18KWKIZ9I`!I/ej@C;RC^=CZ +/ckC@F9E*>oKYnLhH&gq3Wa5$5]rHZ]UR;GoMlR4*@QbUW$R%:dLo2T9>+#r_L<bm/P":';GEf*D._ +:N9(A^S,2Qc@D^>.HeMKY+7$]&Y2.0"P'V9ub%#cHlLe?+rqPXFk.Hfs8S=4kpp,QKr_uo:iB-1!S; +@63OC7A&3Qd@"U6W133N.WlB]MfkrSnZh9ZD<cpJ7Y,Jnj&KY^j*HB0n9P1Yi,sH.Ju8AOp`$BBGbK +r(QjlnL/hq"5Zol#P$)CNP.GYGi0'kW?DjRP_`[WsZ6X'%i:nH*6AK-?,rpd.;^_!($Krd>ZD9$]P* +?1Y9TmEE]ag#%&p;\+OqdmiC76;;'IGTT=b`U*fZL2I#gd/iK6Aos7:=,Tm+,MKg(BJM)"/E,,k;;A +-C/4#0iXj8KS7j>APT0Qq\Ns\1tsOg"Sg`MJX4BFrZ%4l&2Qio,XX0VTct=4"cq.Ga[Q8B`YeH8N4Z +N`Jt2cKM37u@NO9ZYDBVA)oscLh2dsAG'#HMAW?4[,bL(.0e.O$OYPr@01sckhNbD4N/3lOQ4Y[c:" +@7!Xr*#1e+KNpG(RU$7rk5Mq!X?.`A;+_M^hS0%(\l<0j>j1dP+e<uc*<]C@YC0]L.Ft)k/OYF^J7E +Z0MiKs["K8`N6)fk0:$oOann*HD+oI6W1>2.`kuh6N'l$!9&[n!h0R#MNV8VIFqD^U1u4?oPM<ZhZ< +I)[4Z:kj6)cg`-He+"TaH=].#9EJ'#FLON-S2?-SY'0ch9D(]/5uRQ;'a\)^q/D6-kj-UnnVQ5XplB +Z6Tjc6o%Y=5EHXq)GTtK?>Bm%4\ue*Qp69IS()0k<0efOjOcHEOR]'oS0_4!A!S9"m`'6C9bKN/cLn +aWj8bfho.:o;*(_p"8VR[BeNdm!K(NW2PDP`>USs]=gTS`JJBtX.hi\nAQUi^5%(4T;M/9L2E!\*># +dK]lOdPd#VgG6r\]R46rlH2!@0Y.TG:bfU90*&3CQohdTMc+m_JYWU_D&/u:)DV1dUi_eLLd>ZD1*- +n/Xj+N&g\*$R/k)dOC97O:\Qmm"ATL.Q7)9X6_]Di*<J:+.O=)j2*15#^<f]beioW>#rSE8e5RB+4' +Aq%M&iOoQ\flP*iKih)GTre21[ngm!Q]uTd+5PV5#6nPq:*=6[PamA$(FhHAP<5]dOn'@`laoGto7; +l!=[O.5HYf(%NC,a1e=g;/K%d9dHF.n]Toj>1T0e\mJ"^>;neF!Xf%/W(b?rn=qqo]CgS2Jd+\s#-6 +,"26K@AU,VO75Idl'V%r@f!(!B<[m[?;a?Q!Fa%\4qQ)+aI4Y0D)mCL;`p%Yc3-$cS>T8m(82=dpJe +C6Yu#09V%ro\\njnF&Vs8BAZN$24GY3.5e4ArcD++?FTq)KC547@18L2->QWBDe.lhsQs6rb6?IY(9 +Epoj9)rXnuKl'+Ik#6"gITgGjsX6nH,pY1#ap\iVqCfkbpYj",;%1N+9OkE"BD@9)Xp3SV],*.""W, ++m+c%JM-Qb2#G[\(Q^e+WeD`+W%A,G+`TYANY(q\h;hqfT%_eskD]]?@pNaAj;EcsAC[6r]n6WJ'RN +kONk&hs]:R4AK]2hY-f-/Z9VqoL!shXH0:P.R.9U>jK.DX(:VZk1l+5"R<%8+FQ0?no;(`b;MW=0mr +\=k^AFCN8Y^3@>nA!NA7C9#I0L!/Sj>CGe6)#&ea3e/Z`>g\*Mju2O@G=Inghsg5jjOXCZ8)=j-LBn +dZ\60t??Bj`^GiSktRAE8It#1/6G`j$pSuoA[d?F)b\@QoV%R0btHmERVQCDP/1kF<Z$rO3Q<2e/MS +/me;M0l!^'hB;kj=CYRSgHA;*H:'kdGbMP&LRP@LeVHF>f";K@YJIW5fqe]@f2^VQ9qt1;%XeA"nBh +qNANi#C?nYoONjc85-Zs+M\Ijk6fa,0s9k`uM4s4Z@na--_a(2i]I`3"$2>8D1ifqZW^kc)PO`'>aq +L"R!8GCopLcnc+KOODTHYo7RdbKti@>(Mfkp'tRL@"G31EaW)Q_9En#WZ5o`h0dL'<u2@_O56Iu,s@ +D_O6s*m;]F0`q_*U.`'>1a`kd_c:'>_KIfg4=MF%GJedHLkXE8Z:8rC6JTrl*ib3j(,9Y8ml.d>:g; +SeNpKOZrZ=2/C]qhCr"UuCS.I52q68ILu<,BK0g5bE4c3mkZ1J?8oVRJ"ea#pE%miL5S/('5o,,pOU +[@TJ/<MOs_Y+uWlHgcG6r\r6WTL;+I>T+OrdQ^GBT19kt68t(8@Hki1E=MPQe-[Yk&l3Sk)Zr/",$/ +Q->bioG<m4T=6<'#G,arGXW'hDhjUrn-pI;^dkgi[-Vpb&0LWD&CqJp]#cQS3l_JDu$4>ik?CL%+e7 +mljIW:7Kg.^EdD%;#pB^3aB3,bG=1C4%Gg3I"/^(4=9^"'je,00n4i><dHJ<K1t'<g(!I)h3=&G3`/ +L:MIc,s0$K:r27;fT<)s@18SjmVe5+%t,FKIjl"F9hp'="aJO]B5-:nP7R8`%)UKSGkk8(ChV\"/@Q +=W/:Fhd/a&B9Olb57XWJkgFj(n\uE:7=$p8\tGKV$;=4a>$hKEtbG9RS&>UkC#u[B>;XC04>"kD_N> +<WppSBooZYcR].4E'l0=_J_3[C2UBPoVL]4.U4F,ofaA=)gbb0u7P5*N3cQDn'Ck-4iurJa!/Wj[;B +?4%SnqdH`U?W:,k&a?7CGN5r&h0JeAeWVKa6gu,C>D+$<.*RJOk^`34A'e;kJB1>asI3KJEj.J?-es +`DWQWVr62.D>3o;iIj@YfLG.uB$it=_.Ua&KZstBlh4$7[T'h4!XD.++k/q?E_m%RJ^t&,<b'cn%t0 +9\TUJR+9u"g`Qm>A'h(GJb4G@L,>l(l4(:%67\f,k)fmNeoIJ6DL6-NmAKmJVlgocT"6k9?ofnoTHL +ZWZpkZh.cost3<]uNE`)4->I(qc2=\8>:I7sdj>e9g@4Zt"b]Yaq(,?oup-fI4pK3469)*B'hq%hk[ +P4O3F@@>>FDo[e98Y)!.B;6O8*2ZP"UL?'BY"7p\c=r0NjC6/r]`LP4&l%n.I>WNi`UYJQ.Ig`c3rG +IUbb__#CnN3U%X?E5>fs!6hE$7]t-7U@4N+`k"ara:G:p`EuS)BqrL#eofK\HkpeZ!H>@fN5j)AH6e +kQL2XfqB#$>jdoIci;&1(\Z<(V$7U.9FVZt3ikE$@<q(9>3?MBW56!DbD:GE&B`e+M,[(&0=Nt?9W& +K[EB(bAF@n\o/j\s(o5_0$IE$(u[1ITlZbCHkO8Iu6`51UVqT9i;Mkt%,`9WoSB;/Xn)A)75C(+ge4 +U,,bk/>Mu9FBmb12]\f'+c;AN.#u0^7:.`^>MXuOs3O[8fWnQqd$hOE9#jfP`[papRHK+1^tbA]0l! +=bnB@W#!GHso60DJUCjQD_>YSp1%W]RW<AEt[bO;$P5,8]HKM6k8Q:JQG8Es@]BC!!^&p>I0K&`DEe +C/q&\_0L1^]CB":;uGYWUIGKnd]F$6&/<M4ugI70+TUHreZh-a,.G\^NDhh%02Sa:3,J58:_<Y!C9T +4I:^b[/sA\Sgp*k0+%g.`m*-d7/D/`0KG'aZO0GuMoGc?_Y0KQ15dNiI7_KbC8+QVRR-IL'tKFt5"F +>e@=PUt\#<3`V^2bTp?0>u`CJTZ))gXbXT\H/la">s#(.WHVu$.R[,Gu%4$)Zb6]+I0?SI,1L\9q`m +%3eqipY(_*rRn'X[AFBdZq^D"HpagCkK80eG]XC/I7O+_3E1jd:oAAk4r*p99796Bt`<_B=W/kh>n+ +&RG#.=DGQkmAq.h#LM;H-.RK-5#qgg>GA>7rQjC.tF*m!+bXiG"P:^IdhHsm+0KQ;").@8UCpWHSX] +)=!0G51Ua7].GF/dAA>tio'jlgM54:mrtCJY@CSIYtLjH@4I&XsF<&P$Yi^'N"1g,sbU(CP!qiC)*& +%(<KSQn*D[MA5rcjP,WF9,:CA)@=$hQf\hao2JFTXh#^Y6s_ttdSR^@\:8nib?-kEoqDh<4<6\I;9( +0`N)oF]Ykd^&@S,fa)nN1MHMBGC@[%MZ@^W[^b$mHT5]M/O/%S`ni'SR+dQ'^bO['Puj;dB(oruh;j +eQ,hB5KkNq=-i%6CRM"'UD&l$k*SL*o/?*b;DS`d1sA0$\M@oC9p_?_4.GPcJ>JQ-9@QLc5K(sa!C$ +9_Y-^[JLqG06s$uh[EAYB(`i4+dpYn@n<fD0H/)o-NdJ>^5O3aTS-)iC*6#r]L3l7][q)@RTQGr\ei +/\mo0B%ZUgMPT8uFYRQM^+Q-K#J/&;NqCFZX\+N(sWQl!ZBKfrKcY$"S9kEV4o:'&9ogKF#.7`7Ui_ +c5dmG5'iBKi'\0k3O>n9at((gm3BD$+Sl\<Fkma,a#,Xuj44-,SqY[WYQlLIc9K5,W#hfQ^MV^q6o. +bHhdPsMYWO"KT1ERTkHNHe?aI<HTqU!V+80@4Dm?F!a6[kQ]'fH1hL<(@hJ=lBflVg%R8FI,c>O(Y\ +QBL]&tuL/]@h/7ArOR_@D3j0)qT#SVd_9`>/I)iI=$foX,[VB^:Q,Zc@fUB\T<1uYWQn$?s@f!qH)` +kZ#&KAj;ca@RWX1$>Sf`L?Z.[Lg+&Ie`A^N*qaQq&h2dTm6C"mi=`:5nSO&"0?7$H'I=n$J'i]pX@. +u%C7at>"Q[n@!:Roo>H&#nA4N4,f1ZI]jr/=AmQ^8\ccXU!u?&\#6LR3^:&_2MWiXK5AZD'!-V'X6t +kWETbCL#UHWCW!Z8e+pc@1KIa).ocIqcnlsU_2'tTg/022</mSUr5;RR_c*9lPjpOU/P^YV@`jSJF# +84.$8K$%'7=LcWUMBP"<nh^td,WbEtcaiR`7l,q:nuGhU4,"n1l+-CDStA&cDZT>E+(l&?9g,3/u!4 +S%RJ7%kDrJ((RIF;(%oeU_cQ<5Nt5!l@,,e'n\sP<kipD<5ZMTaMF%=J)htDo<F?/]ka9WP2&9J&=] +3UV?!"(PFF#KaRg5MdtMDYpst=?SGS0Nj[>Y1pf'*NU'8<[:h26CHo>[a$ZQ<%,KDjj;sRsA_bShl] +>'e+"f><<+;`.*)5nM%,&:p$^Hhem>-V5_Vh!c07CCePA+/E;enV#D`6MXGSMC.BmI2Gj*0ghXU7M< +7[rSaU)/2#FqtakQoFqJ]*+h%562<K>c;LRERaR>?AbC-I-SI-SLKD"@3sjOO(SN2*Z#Sb#L)EnieS +;=ep(,?3ed9_5,N8gUc73"Ni.&GM[7+di2Lh^U\oq!)fu,`Ld4M:5`W]l+e`hci$+CH611WZ1VWZUc +-u9H!J\qD0(uT1m5U$g)o+41iX$L+j^M\p)pf9pU)'D$EpO:DE<L]h>IP6Ci_2_2*qj,kDD)H_/(Im +8JQ)cJ7Zu-k(N'q$h]]/eX32Y'B_7@RHY0t_%BK9rh%*>$UL=>^='b'BC]8B"rsX&LLG\VOh;<EFq< +b6.^?HT3r(FV4"1topH$K2;hn!X]/S4c?TE(gq9Dlmi]h7K=*kn&'*O&'q*SdeDZ_Sr!+%1d\KL,q% +-JnB]'pqYX8qa\Y9^]r<,:c<!^8Eo8S("83PZhse@&s(&-.36CCpq+Bq],i#41-f%l41LLq>JUF/o. +A7]!&`Z$Vs`ETQ'rZSpu)'m,%dMM/BH\H2o#pMW78b`T-NngnqEo*(^V$V!EsHFBn"JVZKA'B#U`[( +!C\k+4i_?i)N(>7YaLu8oXW9:0\8N1eT2JY3YL3(t5["Zqin``^O)UZZL"m3pE[p5!PTVe]muI8KG6 +]HV6;4jr:L:q1o?cn'pS_I:CHl\sN0tE9/#/S59oJnOKPSlP@o(EW"f3dI>m=7-^5+Hou>GndEs,,? +NsG53-'#Gp&_J8^lB<hO8;Y\kMb_ApKbf$WhNo15aoE[tW.7hO(7f&&LV,PRb:]4s#7"Uo$Q*T)>Db +?Y+5G)h9?s%umH(K"$O.2K]`pZX!GnYN*l=~> +endstream +endobj +19 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 79 0 R +/Name /Im8 +/Width 25 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gar8OB4,-*#@_s$Y%M-Ms3JLM+,'AE0`8-[M@ETkhnW(gs*k+Z!ruEd)?'~> +endstream +endobj +20 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 80 0 R +/Name /Im9 +/Width 29 +/Height 50 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gapq>Taemn(e!=!)&SeH7.gnA"];s*7gLY<4ISe1#_iL[s'?V?hufm(j9jIX[M+O<@k/5'hMH(m*;U +?+GPU1Sp>c-Qm9)FA;`HUioot@7X6_Mg*L&N0??aa:FZj9$(F,JjBT0*WHm&Ya'.hP4BA(5Ig>r\a` +'gs~> +endstream +endobj +21 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 81 0 R +/Name /Im10 +/Width 31 +/Height 52 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gar?+Ymj&D$q)23T_&:_=<g6[<_AeFIn!o^7\HPBT,^.r;ES+Uq+`iQ_Ap'G#rQ9=Q9/,cKU*B6oTX +c"`U>9#TsJGP;hu1LKp:Nr-i)9e*,*@Cf&#"'d4ZcV`V&7&o:L#:pFT_B5*YTU=sR.tc!Il_+4Ti^^ +'-n'~> +endstream +endobj +22 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 82 0 R +/Name /Im11 +/Width 33 +/Height 51 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gasc=Yml4+'SKm#M)5?>$PQR6UiR80cjaLf=(285?k[t')Jm+HX7#)?;S":L@)+[H#`T-K=Ps`IQlR +SZnDI]-";+\5:^!<mF2Oa_4?+0#6%g+*S<Eg?Nr2PK16Su`"jN&o+o~> +endstream +endobj +23 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 83 0 R +/Name /Im12 +/Width 28 +/Height 56 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gar8O4M\bJ%)hKt/.]]!%l!p:@<ng(:r;o:)!_/$rrBq:\PGBf~> +endstream +endobj +24 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 84 0 R +/Name /Im13 +/Width 35 +/Height 58 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gau1'Yml4+&4I\7Y[dkpdBtM61>7`)#aA<RaV?'j9:K!gEpnF("6-:N6(n%*.oa0c1'nmC1E3&p)AY +a_8.ahqLSF^%\!O^1a[=MCZau3l*iR0i='`4])kp,KO)k=]^ei,~> +endstream +endobj +25 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 85 0 R +/Name /Im14 +/Width 31 +/Height 52 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gar:%J&&irs+c0aLE-Kg"9&Mu"$kMSI"8t_q11X1is-.(B41W<_KJ1EFUS\.d.'=)L4@^gfZ]*'%Dj +gnJD:?P-P1mb%!"G^%m[l0!9Rlj#6~> +endstream +endobj +26 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 56 0 R /F2 58 0 R /F4 62 0 R >> /XObject << /Im12 23 0 R /Im13 24 0 R /Im15 28 0 R /Im16 29 0 R /Im17 30 0 R /Im18 31 0 R /Im19 32 0 R /Im19 32 0 R /Im19 32 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 27 0 R +>> +endobj +27 0 obj +<< +/Length 86 0 R +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +GatU79on<m'#"%Cn1astMBqKY34$`n"q(R'TRf7:EfajU>8p^c,WSWgY7F404tP.Ip'gXK=gq(e`N! +"C?BtP8pj)JO_oJ[1mlj10B_1lo:^1L>$.](F5G!lGOU+hsDXo2(_drAGhg?(BinM`,ruU/B:5+-fI +J1Q<290HH\ejt9,UfG3rop>00CA@&*nh.>DoQL)G4tM_LPO2Sds%S_pq'>l]WH#b#?d:-[^:ad_n9L +ojEY:N\sH@G[%gp4Le@Pis(ibdPJVboQb*t9CgaP!qeWNoe[^QHPD;F@g6Z-:,>DWr%^8ishVQD.-V +6^859".`_XV*>n6#DefMTSk@PtZ&hoi9*H]i`&3-n^`D^dN@\GcEiF5,P06BVP,Lq"$leO^6oCJb-, +&XZA&+pjDVes@2.WVOGmSUI:4^`Mpj&(@:Z6JqHVF(krPo,`f;EK%=ca_j=)Ka=su2V5hf6nVMHeu^ +oa:aShn9i_CB3?RUa3`^a`=+sN<\N"G_Ke&5s]Gj\`"*R8BV3CHta6*Ek@2Tm)[m]?KQs1_cUeLR&N +9B"R881j2AIq-phbVgm]U"@GEt;Dk[U\*5!_5a:YW[aZ3unGq$uc%@9a+nLi,ENj30Ee6lbu^22Rkp +N\mf_C[>b;BTN>,O**AFGX1#F]bb+fS`=IjZ&(p-%VWqplq-1H>*OtD.:1/DXF$B$Y0"/pKZ:sJ/d[ +,1f,6^J-I;%@5+?OhC#[M5cM/.;*Mb>iHm"_9bI2o<5g$e564t:5:dnQ,3U+EtSM@bY7J0IZ$dXFMJ +o[c[ci-?LX);OE)4(gUi?'=gZ$1!kuiXK%Q00C@-iMI.1$ebV_2_k7+gL)<3;Id-d`EW2B?!:InqXo ++8YIB>o4>r,V&+;eE+lMT`2,m(+a^MQ<:C#[g6Bi1'_ACnIJS.3YQ.u&8G$Vm2$KkH/0aUPs0M@r4Y +q^MeYV1r5f\S!f31[:/8<3nd:KI/)`e$hLA^"WbepatQe>^PN1kl_dml\I"A=sJ#ktl4].e3S`,tjP +A7U&ac`.lAE:PM)fJO6li_]Ql_<B`6B&c]t;*S!AoW;nQ.ec-Gr8ko_[lJod+59A?V^[E7n^0W3bGj +JS3bfiDAMJ]t%<7!s`(,Ch$?=@qB\U1:53l(se3G@4j:M4cCS`(Qqb/(0<YE6)[O9r"hjq6CkmAMGM +>>]rq[?A.H_"\!g$c6/>3lZ8i'h_tg4p$;OH,Og/JAkf,)QKZeV`?s.X/QFWM7),"MI8+0?^b9$'4f +'/.>(lV^](A93ef!]0TL/n)-ID3r2>.DIsCr4L2l%jY(!cc891&I(7mDQYn-4p5H&sK]I)WRog,#c' +)`%(+bV8\k7Fj*lqJ&;5pAUBrg/\<J2:TmVegt'<^+Do;e-Zp0U#E[m+.>'DA"`eTT0JHj7,HX1td: +NE:s>G0]f;i6h;oR-UALqX.b:G6]:l2r"]8dMq#Mc<lK1q(*";WB"9aFftIMZ75@jnFB3l/Y\5/ZC_ +,I5NUhCL4_]YSg`\2CWi*aD/Tlq+8d3EN0c:u.&MB!mHdBq\QJ=0-"WfigGK;`^Y&=bpWuf\jbA<j" +bT?OZ\k'aX\o_h$d+,*Ig+/!t2lKm[<@Y=tk1uW_l4ogBAc?WeqA7*Q0[%Hr/;4h*0C5Yda1>&tS:I +C+if5(nX;+4(.H/^c=C.'^OJc<?G-V/bC1IJ.C^@t%>E)JS';P5N>r>=#lmju(Bm-VrRU(]WnHa5g0 +l1,4ln'>,1Ea\lR9LKll<tu8AiNJ<_*I&"8*-ms(Fkn#!"OWE*EbupA:K:2?p02h/7r7\i7l0q,od+ +t4C[88?qTNeJ"G/T5PKd>Ng0L%0IMCc-/a9^E8M`pRIN"DOK'=J%$:^Tc%q:2TQG5U_\!#VE>*;LCr +O0gEDYm8QqN:Xp'E,I09AY'TE'l]%-%-o,FT\1%?4?D-WZCi.#g]X``Pq.:)2fgCPG%m/H,t@J[&%F +d%>kpPAi4sn_?mj8T[)Yqd]/83A_#7A9fLa?/Z$YR[E/-]g0+ha\`mQ<fXa?[AD"W&SBiP6EI"'Km[ +^;pn25qgDEAu+!H4rgUI_lJt-1m<"araPG44flj8OhZ8l/5QF\P>@>?@L9,.H(O@or@-H<O,CJ<a\: +.$BQ[_;a5I(?-o^dGN66nsE>Y]HH>,\\_KI,MAb-A(^:S3)'&1BU60QoUOKV<^U1@EbcL-]49iUBV> +c8UB<,L_K9U=e]o$7?r^uQOZFlEm"b5R?h_;#Z4XhmU%66%oqT4hu(9P)$ioVPP3sg#[!;lgD9:@`( +8+kW5[tfe\oQW.<l>SdL?sc#ZCG\Wnel3B6hYYr=$YO`3sX0gb9iebfq4UF-3A@N'=`TZ.9XuX*8Bl +Dt[-A;W@>BOj6jA;chJd89q'u3eCMO:^q(%[eUr8UlL/HH!$BD'dEM1bQc:F%.-np@1a'lTeNBO,\k +pFR>g#Y`r]=S*)hk_kU8WT]dc8iCrl!8VntRo;%@HlOVj"+G]XSV^T6>c\.TduZqRhuMYRWE<G.EDM +;8"3=3Ah'lNbq*kW8^<.D)Y(;s?RAe5$oL4F_f\r_6kAK'rQ*roU(='ZS3QH2>FDlXlSKE)j)@+ei! +&ABnn)oSqI*9L-K'D7[:"!nCAp4QQo38K[JR_\p.KSpMOFQX^R)B=mFIbuX4I8Gdj7'2lZ?h4GR91a +/DG/5/?c=MD(?r`!o\Q+q>Tllu+[6n<bDXoMqmI9*RF4j%,T[0$>k'P=$oLiTh`.^.JkR:i3N/M^4X +C6=s=e7/e:jO5:tT,&m<J"fV`JQXDLU*_LWhn,XWg$&Ar=tt1AcKaWAfYnlrBJf$;8W;.C!;_G_MV? +B%2ig#bC2i.k^<Ci)=;=-+7OgtL0"i?pJ[^KE7\1=flPO%Xh!;6k-IP6H:bd[;3)XuFO*$"+XRU[kP +b'p1:Q9S-^\S-s`/^;N0'AROB5gBcj@G#A!A,^V,P<;_$]ebKp%G@/_MB*O6S4qA74[pmS>U`D_j0\ +*Fpfj`1@EWFnPu1.l&Qkbg1TFlmbd'2ph0gD-lKs9\Q2%(P*2rFYXMH@75SbJ,j*X*[se/)6R5!'l/ +[9\G<:/(jX%pCVg2FqPN*U2f7o3ZCA$h1#/?tR*O?toW,DK0Xp@g4<YF'L0CEDU@_QrQ?XsRPXM4EM ++72uNEDJs&*PF6]FaY=(6LY8(lS1WuAOV1"n#I#1)*s$*P4J\_7C*J'>Z/b?`ni2%L3IdBWJNN_$VU +J'D$pfcm,6JPM/IeJFZGZ+]@q7f"-l.dNR,bh/MY5Ob%Y_q>.nh.Jo+B:7Y+_f+`_*5s1-$.\!2.iB +)(fn.S?gVj`Y`%Qi,noN\o8tH>ODq,#;4M,cX_u6T#L?BgloqVXY6[/eQ`/U8%-hURVWT<*6l.j^;] +2pZgEPZS!9%*&3MVFpR6s`X^9$MhpF[Vm*te(VYjbYYu9,IA#.2\JR:M`td^I,EdIZ%oX]g\k)'ur2 +XWlf/9Z'N9hm\I1HY7MMK8Dhm0*?>u"QM3pu.4I'Jm$-N)LsYl$u#oRp3r:XG'\_j/a1&ai&</kCiT +3"4PVQ5g/`c6q-m:^/Dm%p#10a*'f.k8`De@6640X3>b1GppmaT4akUdb$fUQo2l)7:hYQ:"4^s_5A +.I;5-k@Z!!=^fo-a4\LkmJ<)?r185'=??7;cbUXp;>Xsbr,M9@."&d6MECE1E1CubSB`O7TBB!HS,[ +aSM8K:P>u6P;+4H?G[nkrIch5M\9$<bL-@kB?Du]RhRF&r8M2h3o83`(hT!bMG2f>W#Z$-gU%[&hVO +eo$AT+?!j/'^2InLg-8?j[;prAURCI!l?6rp5d)ZsYMs1g&aO[/Nk5)%VDpk-g>'GR=%cNeEa4:>:, +ng!U$>>]2Y[DtE9\c^UnFk%P^.Y.*M3!7d@'^Q=J*VG03U^e]BEC.gKsbQc8uO=lRkL'COUfA^K?RD +/F;9I]Q1=P06:?;dF@/nI940Cc:id$(WO&qPg2F#BIcuXB8$MDq.]&:eZNVU$&50&!Ki>&nTg:8:SV +3s7eA7G,Ft<cnHee$D/=p[@m#@e]2m)>M55NjXC/qB1t>8%/>YEYoE\]Z-@ZO=!/r2+?&tt:M,2FHb +a3;AO9#J?-`63LFhCZSVl#$h#4ndf_#m=B1)A)d*;f>(6NH=!.1J6fITD,?oFX/@Mr$pgqR+8$l1r> +D#%PfD3t$asf)GC[U`aCRXj#_hA#X]R@3Y8&T$=2`A.=jZ)$dt"hO!`'jZioJFOBh=C`K:-Qhm[qI9 +cMX&+Vh>,H+Lle^&$2i2rCd]m)ZcYM=qU?Td5F:!mFO>K5T7O;/50dqr.RpK'a.cG\:_N0"r4Pb$JE +$*Je>mq[R-[%@[EYjBsa<t8SVhZe!D61R>YD<V@G\cLn(g;;"&%`sS3V8_Utii+B0U),jP49!HQ2re +g4S*1``%]@BQYoAB,ZQ">&p*'oDZ(MO<UHsO6qdGPW6m/K0>h9I(kD^=B-Om(&&7<c^\_B2pi`#*k2 +Ul%[LGun"j[&]5WKJPY:K9qGM>\oY6Z'Tt#)ZSu=cT'N2Nf!k$6k0dmleGGQmdZO$HP=LEuQ'#_tTb +7WI\bOkP#G"3J3H7$dGe0j4lsg%H;A\H'8FFn-6E57j6lkZJB+Wg@`i3QCre<([%Ul6Y310_$Hm$Gs +Yr0qU::M)!#AQI^VBuFI<<4X#]p-N?`sHC>dOsbVE.GOS/(H8T[9*/kl#^_ibO6;=(!fGGoJ"THkjT +nOV,5rje5nGbe\bX\<V:)*JIl06fh6;Pkiu0YqS@)P@@HG)jq++7J\PRYs];(P`tkbZeFJ5fP:s@3t +]82o%_iIT04N,Y9]P1L1,['EXk3XQ6S81uledU@<_Q6)<dJ_0?OaJ<>c:R)D`p'95AA=7'STN&[GOl +W8JF7#l:]SP8#c$$L=@PW9fb%1ST\jLSl)#%ba=Y&N7lPM+/UbI,(Yn2D(&d-C~> +endstream +endobj +28 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 87 0 R +/Name /Im15 +/Width 13 +/Height 83 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gb"[2j$+B0?l4jl5LafU2(DW5~> +endstream +endobj +29 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 88 0 R +/Name /Im16 +/Width 50 +/Height 4 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gati7%g!2Jo)A_=<=]ZE!-//ZB`~> +endstream +endobj +30 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 89 0 R +/Name /Im17 +/Width 10 +/Height 25 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gast+W+Yn_!/(SBYl90s!<sr_4M]UbfYH:XbeVN>`k]V;_dL;W^lZ>3!(1E3H2~> +endstream +endobj +31 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 90 0 R +/Name /Im18 +/Width 13 +/Height 83 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gb"[2j$+A9<")7k+6kleLb:IA~> +endstream +endobj +32 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 91 0 R +/Name /Im19 +/Width 30 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +GaqLR0b2)D$qB1t0mN="b!de"XUJ(Dd5VJ2LTZRW/;OULl0usd+Te>j36guk)-u#?M]_4N6W)42KAM +j'q82,@=!q5q+l>,P.1Z,nHCEm7CGT^jM2!K=/g"4-Os$V2&\Cd+2YsekLCGtL:nQV]'95hs~> +endstream +endobj +33 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F2 58 0 R /F1 56 0 R /F4 62 0 R >> /XObject << /Im20 35 0 R /Im13 24 0 R /Im21 36 0 R /Im22 37 0 R /Im12 23 0 R /Im23 38 0 R /Im13 24 0 R /Im22 37 0 R /Im23 38 0 R /Im23 38 0 R /Im16 29 0 R /Im24 39 0 R /Im13 24 0 R /Im13 24 0 R /Im12 23 0 R /Im25 40 0 R /Im16 29 0 R /Im12 23 0 R /Im23 38 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 34 0 R +>> +endobj +34 0 obj +<< +/Length 92 0 R +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gatm?>ArT2'n5n\R)]D5b7[8"qNbs/D1DV'[KcSic%E+VGgt87Z]ZZ\rqhimcUC3]eddQ;=^0JHE\? +8F^-g24]3f_gmXBDnHh\_,amS\<=%--'MtMSp_rKu68Y[hrG=<-EZ.qM1GCSk4]pb\aG)u[:'2b#$o +:CF/+8[=Dat.U0'Ker:pS8]':N7r*PM4d+a[i;WrG=a,PC8fdAR)a#UREgkm,lHjfKF][lJ>3me30h +$q,2FmnqUf$b9,#8rO)$bh/iG.F+$s0KV<h_dP=G;K^X7I\4K*t4.L8J\DlE%'3W/ke6$q!YoI)>04 +R5WIAM2jqbm$D;S@L-TBbg/q<i^"d/<_"%j0RsOphPpqn3r]877hR]CW;As$=p&ihe8!"IS6>W*h@D +(3S@?6:OD;bn*Bj<S<`=d$Ai"<2)cJba1,%#>L-mMsZ%QQXP2C$I9B;/]pLLb\#7Bf8T)1"qM0tp+V +[]2eG*U3cINZ_^a"*=cKmB+>`=AAqA$E0f\;ZeN6;8m^!`(13mM7f(ujGRt.d;c0j]]Mr'JM@m+H=Z +[[#/&H,Cfaf%h>&+dr^@i=a(e(qo;-iN,HiU3&A$rfYa@%\bS%-0UY*iRR82?W&D,Vh;T->>mT%J4L +R.AEmloao]=l\I!dn&HX7&[T"+iBsopE1]XG/9^ce%<h?oqkKT&Y)3R,p7m<Ur3T\#A6F="aU/>gGH +ALA$tT?L?AYE/jge)%)oALoVbX7a?$L!ZQGCj$=cpRYptkQCSt=!]H)sdOlgbZhH^Oj773jZR6aA\d +MI[/N'gc^14H/ZT4M:jD(6D?E?r\+F1?NR@N-gmkHHH@12\3AlU8&m_Of&:3afC][Bg/mYVKCX"l</ +Za0W@G:+HS"i9uEQW&OoD>@*tq<Y+=^`EL%miC>bShD'Sc[OatP<\</QREt''2PNlu,1VS(q*"7Jk0 +XYufn0;LoGdX7;LYoX<(E)T-"VV<RFdZJK>"#EEnZ4J+<C5^B4RaCUa<da+":?j'q[mY:6E&Fiq<L' +J_jRfp_-BK4Ofth#&?pkL_il!i-WE)Oi'4s,oC>jj=^ah=+#Ntm"q:*oJ\ndu+%U=]kY@A.XKZh8Sr +MWg\1%kI,mGEVZ<3:+T'@]!.g/WklV@%2oZq9@h:ncZOo(ieDhc_4ND8_@`k>]W#pP[n%0I!\`@J/( +f8S^T2hXkJ\ZiI!`o[c+;B;.@+M95^3e_\OL?Fp@(P'/OdE*163:9Ln$I04#AS`JP$(`*\8:cj8qtS +9/G7I60h%#Y^2UM_L9-'))>VZ\7$^A`<mR73D:=Y,DYkJb=jV$"7C6hHZaiah7_,H6q*>sQSQ(uCMG +Sip>pf;[.Ng`UZ@("',)p1$!jZ2?]gkM#m`s-o^+c@X18`A''SXm+E6Aj4@&5,AVZpmVZ:"C<g&T=< +bg;J`6Z&M"LPCd2,)6M)M,aD_IOs1%S.!>O9R\Y)u5IE8aP<e199mYQ,.'pLT`?bcL]kZ7mUH0)39# +=(8/6m!ARt,dCr8T@d`"Q:/9Acs<:`Um)_!!tl-`MVJf'S94_3@[C>Xk8Rn%>bcGmh67,U#`5D8gEs +=:;J&A,N'OpdBi+=t74>P#UquqIsol]T."a97<P*7tm!%S^\?N>,!&'OruI$'+nX=Bo'%+FHM9>bAJ +Go/g9MpQ$9OTUH%iMiYpgaD$;L]JFEQLJ[?Q%$q\F;d%m,(hgbJTEetBnj[)1#[0D,TIk+!Gc9dmlj +>G\A[?!lp!:@E&R\jV+L#pGcOR'W#;4]L!_<@XNA+5Of7>/LuTB4bP_r^]gJ1f3\.n,-hn'Ro15W-& +prokfO&0WbqIX_;&H&H?b^O\Gkla\n+1?te+TE*F<TdInbn0/]/C541P&hn<T/UiTX7T":Q*"'[j#b +<_H&YMp4Z3DbXl-c='$,Bh`HW(Z;N<g<>.+t^Pp8\$c'-5Y(@%b!)V("*-jWI5i&:Xi00?4jo41U#\ +MDX*Be=h't0,Z!&R3>[fWeME_+]Z-*?UQ^16Vj_#Ni.4$m"VBKbeqf`B)\5DVeNOh.ZGCj890@Y`th +^]bXUfR,@JG&hVb+c=7s(,L^U/d26n;5m.%la0]O%+[cOd-,p5.&JW+FmZ-CS7)WIB"b*mDr\XS?AG +M"`m!/1nO+1L2MfN*AI=sMeuQ-!srYC&2/rZb&lO;(>D/X)Y$Yo[$HqM_bW3QZAgceOC[C"E(Seui8 +O_pR@FYUd1COB*ZQZ9?QM\oME(9Nm9@`HD<C8L97H.TM0^(>Z'e)Op.o83:sE=Q1aeQ!dR@DkTd;>j +Cn>q]eXs2DI3H67NO]nXk>01*^D',;$p^V<"^hU[s:q9S;T?*jGrFD+iG?^p5tk(#fD_7/;7V!\6<C +=nNVgd6jOhPX(UFk8'%5lGo&3`?*A57]6^j%e(4*n6/2,7\_-F%\`$*qV`nnEo!'=V]oI'?:iZsJOr +)rDBP41o4UOYU9g_E^$]+ccg2uOm.aW^NN(9W^WidF8'gkXJ8e%r/*nT1*S\/tJJ7We,g0-'i$FK=a +Z2(c.=CA;<S"OT4_^(kI+#Be$B;GeHNMm^FTFWqB6C5RJ[aL!U1pGS:2IuFMb?VLej2g;3R>KhRR"b +W"GH#@80pBd;uP)TD-Lf3N[\X4#/l)d\.&*g:n_9P4E=Rr7hq(GM(jT:M;/$a/6Q#^End./Qb?<'K' +hbU@+&ZQ1PZ^_W(k9`MPaLFa1@mD/`hqN1Y5EnRUAn>nm%c9DS$Bi']I+2#n31KniB*o`D=;BBmKZR +lep6#+K6QIV;*'":0M*BLduS*D9EuG(&:6rpJI]PgP"hRh-;WGcZ7Q6h(*VK]e4:Y3e:2E"1.8?cCs +L@QQ=tL7%uSI,e)td9=sPEr4)jV']S,9N`1a>;Du:U^Ho4LXAT2KSl#OIJjqRMC<#.8R",O*ha4#C? +]K/,293H0EcJ<-=hGld%22ZSX!QL\T'&qqSd#X/FFJ,-('CX<5tbWTXq*^)1LVHsX=R9POC3@ER/g> +W?-dgr?6W'58.Oo[^\$Au[%I8"gkTC5YiD,Rl:N2l)H!W"l^OT[S.IY/8a&bKPmRM1CcWCUnC0l.$C +a$05ES:Z_u[0*o+m,%DOgJXX`&FM7'1C=hsi1ID:k-8`'on-h&phC0tK$D\*A\l>PcTB(-4:dV&O=D +e>1;(h-a8_aZn\29<&h0A@M91,ektHk/r8s_/qVPd'[s;K0U+HW@OEtSN2.L<C<C5#fR7EkNh>.YJ' +Aimd&@hpekW,NY5qT\$p+/!<]c5T#[AuL"dGW9Eg=D5<QR]:cD8<)AW<=0.ib7:`ZacB?_t)-/\fi# +[E)i?>:W[gV2/]Q7e+3^i8o)l8D(o^t\LF#o9(mH+?Sm&blDf''fe4lX.pYe;gV#S[kaf/ckqR!r8i +sEE_#^/IW^Z9S%9IP:U;Nrd7W<N43B"i$3/m@`/a&-bld`ePpVS#g/sfS83+seZWkN/L"ihnb1R>'1 +kh9Ir+SXcZVX\8J1e^`%:I_[q(Xh='*Na$fZEG_6/ro?t)T5XeGk?h>?h=?h#B*>:%UW5clUI]<WM] +>3L3GJ84&m4s/`Q!"6b`!_8[T!YWI&K5T>W4[n/"`FDEj:3^CSp"=V(H^LFc]%l*FK+(gr.X:Hd1f< +ON382+nT8Wfq%2,)1UDiADh8mKL(t8Y[4mpNg8)gs!k/_Tr*O=]SF(cdZBh1''RPjbkWeP14/a3$4` +N9h/gmmar7)6js.o_(hH*33uY[-j^VW2YRDR;FG'`E"<D0D#EE>ub.[DVeqC.5"ULfQec)@hGUerFi +LLc,f>_kkE!!Qp#p/)N0$--DOqa:N\CNV4dLOl$A-ap]L-@L_`3Tupf]q+I',n%"jAOfg(,DIp`f\$ +MsT"<Bi?ms6.ue"/E&:c<gN,dj2:1ITJ'B62(.+n#M%,pjd*F3rC=rOd]CbK/ol/?Ed%p,EJ-!8EI2 +&k.!+T-b2e^_HnOgH)6bia5Nbn5=h,+F]#lLLYCS'8Wo[m%?0d(7.)gbR21G=a6dsB\m%F`nJ2fJ`$ +lU;)5#kKORE7R-$C3"D/Xm(^56O,7$Be`B;QpZIf'm+jM@Nj'aH@1<Y!mfNnWk2*-Xc]KM9fkSoldk +mXMFqg$\NA$JMfGOnceO:k.HO$pT<#E16lEC-R?q7JCI;;o1O>;n&QFU$Kh$VWPAO=Z69`m`J52o%6 +%T$4glQ0YL?Gd3F@LRS="VEdK99%U#6\$*:\T];>OH^A`nc%W:'b@'ecF!gLh]K)uhe\4r!Rr<D!^& +`RHA6Skt"puZbk=F$VrY\,;R5(R>M:+;,m'9E0#A'BtBH-!AhrnlBf,fSFg5U/Pbc9&LHiZ06&e"*C +Xqg&q\TZ[U]^pu#Ol*U[\f;a9S^_[`Ok[[&31SL3`[4r.c;%J(O3k9SF3P*c2r=)QOT]M(hRN7*`a" +&K.gV%ip@T9jBD_O8!/EJ<2U&t&$U3^OV^VT6V%_g<HH&>mp[-H=mS.GO#4Kq>$*39_,EQeRl>%4DB +8WpWYcV]O!:5N"l4E90;?o6qj"M#oftgA2l9Z`#3NN9qMJXmuB\L$SLm5'AHW[c8Q0N)!gZ:n@J;L! +p*bH$^81P"kli4]W_F\D"ajik\TKAEf8f(1+Mfp\'0fRbL-#)^_FbD(6m?)arCN!U;RGl]%MnWA(r5 +6sg=,iZGH3Eq/?NZs"4=&dUrRIo(lo+O_c=mS'/'U2oLs7+@;]qC'%5t3oX'p*Z\a)ll1hNY*W6C)B +@L<_tJlhI6KI"!<R4(^,(,RnWGXr5H>hB'kUS:KG&L:l]*D2h?;C3@aK`uG(q3b4Pe`$EETaCJV@IR +<AU3*+G[rj7=75+q>\Nr(;rQ:r&^@G!^L9YagZUP)mk"#L;4Z^O80hA6W\k^fNSI+?k!HQZW44LR![ +Fneq07."IV^/hbQ=d[^Qg@Cu8cKplpPs^SPpSH)_u&lrK6Q`k%be$>n-=$8:2<_OX_cNn,hhhNRhDm +gQ0c4kU:Gr#WA(,`$)6HBTE"cWnFH,OR=P!gRWaQ@oonuON8Jl:eGf$cp4qVc!8(I_>>L`<rq^Rjh\ +]Pr+!'On;QD_-YEoqV'i0:*rAp:&V,'D7&+^>t8FJ5S^LXi<bg-s+McX=+#(o$-iW-AnK^KK\l)>]j +lIAKnHSb#uO;6Xl_Fon3`32h#ET$7?SggeV[E65:*n#YtO>-]:O.RMT_r^\R^N6K?eFQ3'Uq6FnB.\ +[OVtQNa.0gLf-Kk1^dCN+pX?jt6`P7Id<[2diPXBZp"7men$i~> +endstream +endobj +35 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 93 0 R +/Name /Im20 +/Width 35 +/Height 58 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gas3.Ymj&D$j=pE'U1-[aeO*eO#Qm8YXpqY,m=oAkPl6YU,9'j`uX^R+IfaoJQ3\8k(,;97!1'1NWT +om5qa.]L(?D5rYPT'gtja2,MC&_0)4o/ip#^\e*1T-PBElbFKnRY,iXZpZ#:2C:_E(Hg38RfiAU(.W +Q)Ua'-HbC`gj=NOS62*?hT.Y(]~> +endstream +endobj +36 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 94 0 R +/Name /Im21 +/Width 58 +/Height 67 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +GapXR0l"W\'LYFsU*dhG_Cj4N;Jrbl=32%PDIJ?AZ3YI_*C6M0JMZo4mD9Abqu)q$XPic.Y_sOdY5k +8+qPc_*d=Ba9N[HM\b]j,uo"G+]"Y6`-o%OnGIK'K.]&YRJ)fBsm^&m?Qk+piN:GujccKSkZB"3m8j +_"de-bYXgk.+.2ZOc;gpIfhoQX5*9=$Ps"=*b1Kf<n]\.<>0Ha'B\;DQjEF9jdV@?D-DuQGaPSPaMV +_d?7B:@W?"U&utRD=J^5E#KO[*WSNL&A90MqEB77XRl-UTQ@lL\oj_C?L(Yif]lMkJfYa#m?FCjIN2 +k1[8uu1q\moh)~> +endstream +endobj +37 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 95 0 R +/Name /Im22 +/Width 35 +/Height 58 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +GarWtYn=kr&-TdY'Ti,P&8`hj-!)3;m7[6f#RM@.HTX8cTUcZUN^nmG5b=cF7Hi0=-l6AV#$qQ;K() +&]OG<Re(l8U'@1L"]1W[s&YrP:LP+,8<7%4*)[NfSB.eo9pqF<Ji@>iUnpM@L],K^[W1/dE)<Gufir +/B*eb5#N,ott=1J&CI.aC")==@r~> +endstream +endobj +38 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 96 0 R +/Name /Im23 +/Width 33 +/Height 58 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gat>N0b+7>$j=A*:-(=)q#H"":f8G(/,'0=](i7R_NcREK\\.DJrXFmHgRAT"3bb;D,Z.JZ*T8u/jL +=/QQX(N==$Tfccj`i`r!\A8<kD]BH$8VL+"/AMn:BhJ,Z1MY*9Ku66G3=e8Ws[,?Xf\m`;!q:b7X&^ +*n<hbf(B3\jg6~> +endstream +endobj +39 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 97 0 R +/Name /Im24 +/Width 33 +/Height 56 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +GarWsYmnQ('SPH&Eo@K]&<R\U.?LhB,>_8\`M6uYO,u+cPfK=_!><XYfQYYje.n>]8.gj:VbT[9-d' +FohRSdZ0'32Nh<ZIfCb#Brp?c8_T_oUp-T&n_LeSS5VK>\[\;88WafUnL/30#e-r*_hW\;\o`m$Wj8 +oCVlabqQN:MWh+&]&--1IiG'05lk1;OR~> +endstream +endobj +40 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 98 0 R +/Name /Im25 +/Width 35 +/Height 59 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gat&EYml4+&-^F!9VaDq=qFuUdRmP["?(eX(kiRW!:QD-Ts0UuYIWH'gE:D^#I-;Pe.R0Q&3+(5$#! +ehN5UY\km<2;Td+t.bZ7,qOdN`U_,W+JVF(="3)uAMf$Ig>n:.[TB9@ZG&0=$o~> +endstream +endobj +41 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F2 58 0 R /F4 62 0 R /F1 56 0 R >> /XObject << /Im26 43 0 R /Im12 23 0 R /Im16 29 0 R /Im12 23 0 R /Im12 23 0 R /Im20 35 0 R /Im20 35 0 R /Im23 38 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 42 0 R +>> +endobj +42 0 obj +<< +/Length 99 0 R +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gatm?bDt@9(>\^do[4VeA;SfWFq[OXG^ofMP6S=KZV[XN>oN$+Q;m*.?U#gTqiJm^]:C&P#O3dr]T7 +-Z]tF%6mQ^H<n%O:]HhUk%8,!OTG=>?(pS%Eos6$)fMio3Il$X<N72XoHSF5;4r8%=hs6d`H:D3U<o +q]#lZ8f0d0'-3DD;@+"/:WS136CRFrqlY@o1T9a+mlVr(\9$^A/Nuij0e?FrlI;&iPB=g$mK]kI/!F +h$c5#*)[sTFr^h`)<r[uW#Xfk'[H06$iiKYn]"</.3g&;!F1D+nb>'XH+NssQouB#_\[J!'PP<\s=H +DUL$tNVqa2=\NA0g,eQZ8thBc>"Uj*0'"[#E<Vc!6=kg^O-l59?iB07U!Vra6cgU^2i;]K\f8#a=@g +f5[nh\c#trQ,g+:fq7W6dN&0aSVLYM-7b!:OI<Ot(k9/_APe1f/J4dI@J81$-!2c(j8<Ma.kY:e\&j +(I9LJ^@j-r\)T$,;fO%i,l`99n14jV\j;32*gc?q8A='Iu1W=%uVBa'n-=Vc!-1lkCh4[\SX!qJl.f +O,f@3J>DYrFV2-PO@/Mc)%PE@?NHi,1=KZ@U^*G1TV[TO9Z2q7?8lVOp&ESQ/2#XGNsO[(dBUr9<IY ++D(''&n5PVS0VERPN9^(GD)4^Tn9d7-S(`i+HL3X\K1[^9%;@!b9Jjh,CR5k!`5h<JLhale*NUk+11 +"m98,390M^?$opBptW#dR]5&40d!h'!WJIZIG68nFaP5lEY&49Z`+)BJTT<hHN2LeisI(7u3"cVt?` +4U(Pc@1:I(cHQLcaPlfWN<eS($oWBa2+7T/poW40\cQX\/TgXJ)GWQ&>Ya.k;tQ6!!`)+d$G7Vm7%j +]9%sd*4YJ)LUnpIjW?I?u=WN0g8GfX\N@IW;sOaWs4CbLYm7;CE=RU+OjHqhIHC<qY";mkp1$&8nbW +tk,r=Kek/0?A9DV$_odU!-mRkZ_`H'2anqETHQO<M!$u7HB0V9+\+Y-<+&Q:`0t*YBqGIVS)3u)uYQ +Apf/Pg\fh#Kn3ZH?=D\S_gd!3"?0LJg'KjY4(,@d"-k45n;5N+'*Fd*B3)8p@jUo&AiQ!Vd4ldO?p= +!,%I=8Ck:c_UkkHJLW=0N4ekQg%/*9-f4:5<k*^5d/C/QXJX?%Fk2$*0?_XJ?Y$G9.qR!g=7km%U:2 +JmL?pK-\Xba$3qS[[BG3Ka!k#,;gih?=;6J5k?:&WS4ZBX@"jI,:Cc%Pi3DD,PFF;eUrgh$C,cSk3e +8-*U5&sY#B$OEZL%BVn,E,P8;J3Z]jLu\Tp4@TGXoqpjgcorCdHl'Ur^BeI'$]V]/"C_T>R&B4ZEAk +5d%:b+NA0g^<.bGd;COWj4+8X\C%^8F6V"K>`f["50f,h]k*E;d`dk/e:`F%0BB0Gp0OFFd98.%n$O +D;Pg2<;shM;1BW3o37ot3=#?]+="4Wb0B0E,2eE]RI9=Aq00YdcnYJh`+3S/h@^`O39c0^:\C+M\<K +f8HBg8X!%cS[qACafs2$aeliO1=;j\]P;[fnbO+JhA#?50PiJjD=Q:OT"c<N-q9(h:S-JJ1^!>jO+> +Va`$d`$2aCfbt[RqMZu'j*>of2&hSd1-BF+8@G'_8^4<ad+H@.Hr,@K?Y_3eENPpQU$847Cr-/,Zqs +<?VL8^6LJs1HU%L)q2r[Q'\i<:FE3(E':b/pUOP.7SJ;!K+MD4sn'II6^OI*O1!4bE]ki<("]PatN' +.e*h:kCHl%R\2N4nF5%?-QFB8d;panh@WVeMY%PY=g!D(SL_0Or._=G'I^V#+/%t&ol.m8O3j]#=2g +/Pmja@!oBi91<`/+/:i#$K--AP!/l7CKs,ICbF]]r*g.KX"iV0U3?)ADn9lmAAInp]ciQBgf%i$,_! +$*7`u5C?1=Qb6PMT=mg-bQ66[+)PoI!+An1r)o5-G+ldq3JWri>CG.SHG*8c/K5rUoP2nlHqWjNU7" +CNTh\,W,n89<o.uV=p\6!q]T>`8X@m'g2!TO7mTH&)Yu[\XOVn`QT/@<RQq]CV$BU\98bUWgRVg/Q+ +7dXi'4kkji_s6M)dYN(g#6_+>K&NT)@"ECcrI[uS;V5q@od9t?l<g=]&4Q8XsaeL)_"8do]="2:R9S +8Z/:i*Nif_q<2rc>Jr2a\u17eud6j6u#E)[2:YJ,Z$AGZM(p)nPWdf<f[4)rlGqJ@??03ZCckd/E]. +r&I\I^8g$M0\#QB^&s"/-0dn*5p"16k$ufV&8Q2bD)Rt>lIVHt43E`l-i],ptXV7NG9HQ?Q1PH6:q$ +U![+0/*)/6&EWTibIO/>SlU$=dm*,(0&Mb3IXf(Quscr!R)@f'D`jnhj^Hg^!uDFUbV-fui)pV2?ES +"\W+>N8:=]l\]AV9NAoQDD%%$69r>&ZC86;*,*>Y#/b<SdT>UOkaOeQ$7?65f=?`KK":^Oh+B4-Q(3 +p_O;AYoY`]dO,:P_8cki%(W$@*f#>bAp6Z%rsgBEEfhR_jT3Ms3Dr[J_eoBikSZ.XCH$u4FBEuW/7p +Ts8b#c@&F>m\#lp99?)I%:K+C#L9'XQhC=_ol)7B2@>=/KhbW=f>Q/WulGM<5CT$Jd:#LW<T%j]'nP +70&#NI[c94LkX?pSI%/lMG]'f)M@T$&bO7\=+5\o+h75`Q&lV@L&aBOC`Icr.f(4i,+_c[4.`0B"3j +3r,6ULfanSW8H=8)imqiY1*k]_>dm]-&m9qDDfOcq6<OkBc+nq[;0o<n!:C['J.Ha+E/NpZJY&k8;_ +IG1$W0&'DBD&#(GX`nbuBQq[o271Nc,XeVb69LN?Z*+7Q<,GHqVSt<OqKbq>%cX;p<".E)5jdsNl=L +2LmfkA_0,-MSimgkcdp?InoE^io<paSB6?;/oIET39U(*/>i[>Q!8o$ZB,;9/1BuN/:UdU9jD'464$ +m+pgQ+DZuJ/Gnq?a]lsNMsT<TJa4!3@]^j>+?aT1L*d&:d`c01@cKcaWl($Yf9Yu*R!sd2)Whgr^*n +'LG;D:pisu*hfPo^b13)-cr)DcV0"#>Kq/Pd_fRpa:LmZ7o*b$8f,\NO-g\NAE0&U\H^74b-A4LA6a +m^7Gn<Ih5PK;<g?&pgFPVKJ#QWEgYtO_RVuWR(E72,)-]Z`>eg.<U'uh6oGH!4l5tTS2WQNdXjK:,5 +lWA@ETTj/]gV17a+W;nr)CG\WglA]Ge;te5I'!3KoAY]\-8Z/m6SMt;8W4JY]9l2t>RrY7)VN'\4L7 +>WbnNanMH+I=ggUl?@r[*rM@(M9[uE>iH\V&mi0Mp(!ONu3nY-%.Cs*N'F/EHG=/Sli5$`$Io'Uq5' +Mes>*il5(83Dp4=r\.Lj,UWANA?HZ+b>?PW%B9^8Nq6_ejLbs"^&_a&u.8n!jD-<DYt&,c>\0Z*Odb +bL8GmA$'n`D;:ouu.)aaI*E)\J]8j?'R(gk3"cc+oQ1P;O4$KH]9kQolVaFOd=SuY"Q`.&+:2!rldR +%FiGYiVGY+0kh(CJt8Dq'>S>3MVW#i@E-/b,q`X3oH-#+=l=r!G>!5IdPUHe#SB`bqD`<+[Q#e?X?5 +[PG+ObKq3=`Spo(\6p5@<CI>u;StHe[NiJO9OifZ=7fHH.bK84N6Ll\Bg6>bDM7Y4)8MkkZV))PY3W +)<<:5?D#r4>-;K5/fRAVb6kT&3tBtlMQ(Z?bub^!5jTet3[JARi!P7b,>eal^"Sm!lO"ZQ-sM3slc_ +>)q/0?^aM`5mJqOBZa;+i?J,S)?@;$7ba[f>;hh`T\6ud)?D&4X/7J$%$Ts6<K-bA4cg^-#eb1hN52 +7n0S$iUcn-D.?>*W4Ii3tE'66#kW4.F71cSYAW0"$fX=;q<cL^F@mpEnAe^qcFU(?+#oteti_qoY9* +AQ&C[BdNc$iN]T-q:g7&Kg#"$'=3[6sV$(J(nGAbOK;\s%41kHh'M,N"@aiZ:Qq@WQo\838$jb8jRa +'dqTt/;C)f`\Z:H).IV^p"5KgK^V^'A2/[(C7RY-nNhAW6,5B8>iog)4C4-epeLrD'NfSoPn"q1j\A +k^gL=u`XE7[J5%F+e&UtX.k0qNUc%M,4i7+_Y:HGEaO2ro8d6)75N%@;a*j_6_JA/Qo0EWX:E/Nh5Z +qVn&UX94F:Yi8/C3/&r'@bZ%G7.#-_%]B4bG@m:Yr;Hf`HuIZmiX#NS$$oE7iT=T=#.CC7\qd]_!,= +l\neJV2JaJ3%)Z0I;n&9\.%`Uu.f[&^@:G;!LH)t?]37EIEN6A!m&SWA%%'T09Gu,nYWpq2%MJZq&s +adc4[lTUdFgAXf5A2Z$L9LgX9lRmU2jC&j>^UGf,#F"p2kV[c*Go;\]91F'0R-;CnqL$Vb0]p(4*QT +[H)\%nVA?BJQTT1i%KnBW%\N$1*!TelF*j-=H"k@rplb,Ub.O5*3!C+X>`W*IoZs_=\0t71"8r<jMn +Omm%1ho>NYFj8R4L]a3dAi9D0aE'&WV="kU^cY#?r(E>FRZN$`YGS:ltK1"2ZH4YC#TGG-M^bZ6'oW +;?9Af<H[UY;K]7O''3<2rFI<Hb&In-+d)VqN<h%r7mWIR[U#77n55E`,UP`GaBr7d_2&n>W[BL4uB> +(.IGY0%DXQlft"hWblgtZP'rqbO?X(M,?)N9OD]"ZUUD</K;]NdB>Q^>XNAmT%V&"l3+9e-c@"8+8L +$0Y)>`@9ejP/Bj):Ig>E*_1Rb0ah!9*K!+8l:+4,?Jp/(gu#Dn=Y0[f=Pu1TB=%I=HAl&uFH""oIE6 +egKLsY10@9CTK2V:8oP+LgfK@9YGf9TjF%pGcOWTb.njhcH;pfI.7Omh&43M5Cju^k<jusO]eapGF^ +?_#p<LD$.ft7E<:D[24$ftnVk"%Gq]R"%h*/2L65RkL75LY/SMGcg21S?.A?<eR:)dO;bq02>K[q5g +Np#B'UucP._4#4$[KnuiI3]c'KNSf?DWY]Ju`?h,"b6O$J_7$ogfC6"iU$rr.ZM'chG<pMJ]?9EK\2 +7D7Tp_#QIAR4(>\5!C>u2R:lG$6OS3&\(^dM.Yc$4]V<@bVV`Cl[aOUS;;g%)!TM+=[3s@@%%\#[\Z +hjPC_E",CnP,'b28]V$=tPiKeZ6WW[`-GbY18E)/oAnhL:m=?jI%PnKqUIO"A+riu(`^c-q6F0?E#J +U*&iq?%ior5%k+0of"N1<S=2u#uD-HGs3LKY^#ub"o^cH>*WTW(ZAi<8Hno_K0AX@k[&c*3&05*n$. +_*Bo54q,;\u(Kjh]26>jNi-%[H.ob?ZHrrFD@n*g~> +endstream +endobj +43 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 100 0 R +/Name /Im26 +/Width 59 +/Height 57 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gar?m_$Rn"$jG!24a?<!NoF_5R\Mi/Nuk*6INu3kL%%V9q*Ah`)uu,pjksMh:3lp'ZA?,[X.#L0Xf8 +pIf)5';C+[sNhI6s$)s22)N6s$uKN"KT"8</.c<SLL2E"ot20of!md8TdD:\'Uf&B\KBs40%pBE-8A +%V~> +endstream +endobj +44 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 56 0 R /F2 58 0 R /F4 62 0 R >> /XObject << /Im12 23 0 R /Im13 24 0 R /Im13 24 0 R /Im19 32 0 R /Im27 46 0 R /Im13 24 0 R /Im13 24 0 R /Im24 39 0 R /Im1 10 0 R /Im23 38 0 R /Im13 24 0 R /Im17 30 0 R /Im13 24 0 R /Im13 24 0 R /Im13 24 0 R /Im24 39 0 R /Im22 37 0 R /Im13 24 0 R /Im22 37 0 R /Im13 24 0 R /Im21 36 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 45 0 R +>> +endobj +45 0 obj +<< +/Length 101 0 R +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gatm?bECno(#AUc-nF%P/Ik@&YO"$Q-^drE&j)ZT,+Sm+YpIC&W?J7'4's'0`-kI433Cip7Ct5f#i* +J2k<A\*iQ'KHL\FRTmlj.?B_D#g:]s4u$IsY$5>T=T8-FbT='64OTj0`t='s,nratiqT8,C^';6LGC +O\8n@??5K>q,[AE2X<@aWd!nrMQsWG"8kiJg/M-nt4*8D4f(jbUu*4?'?J>/%o5N!qr\\_5t?I&5Tc +;lP!q,C)mI\'U`T_[_KtK"Fao_Hl$*X8J$c$Q%_M'#kRQ"[(iO!IYMnXEjha+5RaQ/Ni,6mXP:#:RX +[u_WAiYC2iC;0=_\aK>\:jchTG3`#:l:JJ;9C,m09O<m+Pgij/2/.kpXtbA,:tS0)KC%pW+VOYe;Um +;$9`;EA<FLg:gG(T]L*]__5s>'[ECgGNX!JgO##GrtU7f%a=3A9R9`3K'dP.Fit2qBY,;OU-?i/3-P +"\OT5^8fod%%rN0?3UY(&M1<O$4p@WTWXH-Ze\f_Z/Zs9c^+pc)sb1<K)g\'[ufX*a;q^;ZDXh&Zmq +f=V)J^mG_$7<Qli7]@P@^&1^JIk:AEL9GnIr<kJF+bL."fQlp*QB#QMA36(#JuWaLuC,A-':ZWr+$" +e3"L0#kgmo5/"S^V:m#?U<_UQ9#Be[>K]A4;ZhNF`5aKZ6">Sm.\ee1T%QZ+E];0!?\(u1T1[^<bFo +tUW\\UGNF?M5b4-HRKp3':PCm%>l$b1g27AMZA1c:Vk*=f^qDpf&E:O.25>XXNXh;_OKJ<nhYgks6! +(VlmNmPPuLW9mAL#0,;eNuP-@&]ADC#TrG+R<qpE6e;hVhNA(W1_[^sf3Rj4hL1iTFA8t^\eUh%q&A +t5#kiKROK2BLAJ)s(!a*#k!A"9('u5ucLJr%iiV*`u8=?X/`)rgTXqM'BV-a^miY\bjlcbS]6:3'HY +HO09fd=<P?pVa#pr1,!'K;qt^N@c(QeKj+kM%q^_X,9[?:,.!3:uFQq/QV%_gj[f(A>-7Zs&kJT":d +>_43sV8h\>tU9*j<nS#NuQFg0@'ga`_p_J3Q2\;qfr=UaF5nrI^<2.'3i-$7E,$p[BR9^p<1%]TKW- +AA=R_`QBd'[DI0Ds[5[';=$0iGtUkOEE\ib7>JmM2eu,:Z&N3i7k(PPDsK1QkNK0?j#6JtfVPSI\mU +E7b^Q;[:jarsW-]`(Q$uYVd\,*^D`uK)Ok*N66,`)1fdcFk'nC((ke2ZTZg!&2kgsI+^H6"bB3Y1s# +l0WEFJ(*j12PPZW;>`($SYp%btK(bAgKktZA>$j#<Q`b8nTc:nh9M^-T(-S1hRG%g5hM>c>oa(4!uI +)g<_<9=V*+qrKGV\.@7J$rR>+u-\?=Z`0A=in+G40D"s*Q8=D@jE"+E$]ODn'1`!dsE2V`)]DBA?Qf +Z5@Q/%4heJ^/6Rhh=5'Cs&-FC:i=r^[O3OBo0B?"lB:IHeZ\:gL#fjS,HeHn%oSXmoJHC5+41KI"i9 +@?GXi1E:bVk`(HJ21L/1moN"0Wl(n^u/cGZ?ChZ;je1O?pm=3n`$CLdpFCK?=$F'4+09m\TKW(j!b? +l>b]u]0j&sO<\2%#5m1eT[RhWJ,4uF,lu,24^"t#"kTbB-p&oW5GQ:JB4.qrDin\I-V4DWM'?PW2Re +,r*eP'sH\06gLJqGt+kg>@njbrWbgA%#>/um=C+iTO&TAYOM'mbcFHk48mp@4+io%<,8h*D)_c;ker ++"m75QHV!]S-@Pl;j[ZX/s`poJm???Ql@?9Me!k,k[i88jG\b.d[$[;nZ&MH+^^NI*rTTeQbEs$N-* +f#bh6R>ffsckTj"0QR\D'a+nj\O6WY#FUp^^2q#XbZVcjRNH0/&]29Qs7cN9a$DFfs`JmQ".UFMsaf +.&3<7nQXD[J,Y_7D&bX.II/3co-80R0&6O!6pfl_1o.c0E`9n0h/lNI$.B12DT,jYnjD!/P<TeS*'n +X2`X(>,G1dodA%*X%%5Q+\?@$8,B1tMR/EPcr0nc1R0baNO0gI,6e&67Z3!9C7h^XqFu\Z-:*mLNW* +:3&/0.4l:$!7@$qfWDgQLG@3oJs$Sg\i!sVTG\n2_0ePO,'[#]'PZ;u%-lRF:kio50DYY6m)s,@XlL +XANu-K4Or(@S5`]JVr^SW$"*bc17I2cp](EDr+,ifC'Y+-hj@;9&0%;9#Th0s_g=;;NHf>q&^G3tXr +TF%OB1oKXti8Kh1n`M]V^"#`\JlKdDV(^J*A)^H\n17]*ir7)MHCg*(/NI5PP.![F/@4A.GeL1::?Q +.uL=s[,BSrjR6M*X,WK(5KY[G;U]oX.$*=E5D]a/GqN"ka/nE=4'>X?Mr*1M+O(#N8ioG_Vga0IS18 +K0e#sj&2.97<b^j=brRV(^#C9AK(jS+3KV)RQIuD3J`H#@cs%C<?@%M7V/\+1(c#*S_H$-29e=0%D" +/,buA]ni6=f05'lL9SF)K<QHCLP]ic*ffT/Yf:ou"Bk]6_9N.-\b"ZXrR\ZJQ2#_LMb2^>N4H?J&EN +99?j6A9,_U;taXl<N8oFf3u':hZnFnOs?^4Pkm@Ahaoi+>d=P64d[9*Wb]b9A1R)3Pr_jaNOQ,haV) +OUMN:(6#Vu&b(0jaIJdUN7)_Q)hK#@0NDrG!`:(!/TtFfZUFufV"d%H5A<(*,)/#3Q_2:Rj5lo'2=F +Pga#'Ii=*;NEt!6'U<fUX-klmmf=8?B:N#^J.;>^k`IVYJF(M.osX<PILm`"\TiIJkY^Mo?+FRaFFM +Z%SDh.r6@1@L/FM(L9#KQXVYifF$U[jj$W1dN8j<;i6YSnpmDqI(%d-%Z,4_4XC*PN5p6pHr5Y3bTW +Yu8UZa>ft_(Dm8>Ui(\Ub((_>1gpSW$5Oub'I/X6$0,,4Ukal*OZ8@=\9)B>%:CuG]-FK)O$7K%=dg +rM*M(Bq'J@[YO/Vu<`9G"oU"3+*Cog=pHjV^saM6T-Z`"__8a^PYAJ%#m0%_B2?_j3%oJdu7+,BReK +#[n4":F+m?V7\""=3R*p@gH%sfIN,"BSSkPDVG=$dD!lo)=o09-`%m(3\c,A<;80'h8QM;Ud-T%W$I +*!>#%YP"'QenN<tCef%&c:BC0QHu,)Z3W,JmiHEDC?G&2QPN]/6F<MjW*O1qo-sR/?d7nc.4dU>3.^ +/k3Z6TBZJ5b(?,bI!fk`)J+g%$[8BC_J*nP/Z210\L?5O[]a=gh74nLhf_Qc$1Z^Z@$m)_l4:q:D@C +Z#Y/#a#,81$YDEXQ%@B$"YF[k#cI5cN=QiW:[dreQV.'N!DW#Obb6]64OAJs>PQ!gP3M`!<7\L<R:, +5tJk<sEB985s7Peo/\5-k\ifi8fL9F>>m.[>QFZa4W,3LS_YbiO]Ol'$)2<P48AY-/8%2\$onR31#d +Hb7]N>eW`NHD4olP"nL1');$gu.XcEGa-01X(1g<U=qqI>]_`g!&*@NOAKloU<0"rc*J1ac\9)@5S6 +c/9h='ZM4%Fe:i]l!uctuq!Ko.:Lj#B48Nj"<XLMto3E8K/2Vc]^Lki^HLjaG><mO]a\cVQg!E\p@Q +eLpc[PF)oZU5b1AN9ijDN_2l%dK"Nm@/Y#/=b&eD9o[BX1B:LQ^?MMrI\@eHOuP]oh:&&qI!p6]jBI +[F?sSSL>Cu>=rFF(77>B3UO#l8AGAEa)UM#:/+;@`LV'TkOJ3WIK[0<R\g-O1P36r,c?Eo=hldG']) +jc:*!Drkr"CP;,$Sn,rSg)"<!nSgk\siDhI^4/5KpUMMkJ(<$=@4^DRZ)V$VH6_:i_CEKhJp@MPl#/ +LZ((WnZ`O`a!'%Z`@Tht/5YieWHf9k-%KQs9h)$%n[/)/^(Kp/,_3KiEDE2ZLq\%=B\tMu4%tT@b]V +h(]Mfnch,n;\,4T^25.aLKLip$_[Hrt"c&2dqR6;[Ng?im;6)=7?K32t<M>TLgj_9[r*pg,h;iXAX2 +iA$%J?H6<rY\58=E?k_#m^2^(N.],u@>6XOMlb*_BrsN<J;c9(m#Mt3d"N#J;.fugN$c*1#+bfMl>\ +!TC2?GLFUZI#!phM;\3Uk%']/Gl)4D->KB@mZ#V[cQ[AX<N^>;!@4#NKrN+#Wi/fZ]Yol/MKVRU2cG +8_*)lG&l$:uT\0:gcSA%@(Bk^3E!_"b'4qCb?;IG3AU`d$-CUKRo=03MuVXe"Nki<`u>t`-=O=kX?e +)O?(\8W&'7O"=q(Q@<:#(BDDZ=A5P\N=j>-*Y%;2SFW+f"-;qH0q&2t;nB*s<B"1bak%9DRF:hRP_W +&G7L7Ym<JC>bH%rB+I@"_76,47'O"qIKB#'ap$:[=)K^]OV/>Wh`p3AKPjcVn=G7oZ?4r;d*&*R55P +S@cD6U64P9K-8H<`D*>7Fa$8!(K5tEC*RYp+n\jhEhsMWOfeT$H(lg+=C\nB%36?pMK=Yh#Bt:K;YP +Zk=FjJYT8hrai?GV%&Rm4*rshDk'NI*"$23<;BG]7,r.^T,I"GYQ=+Qil#Fk)B+4a7H9OjjF28dt1W +NX)kS/%!fiY0V+Wm'KXCs>_n^>50IL_A&N7ruk)4#N"1r?mf\V_gV2=9hdH*+o[*nLg)>+<hthqSF_ +B_'*o<S%dI+:p91Z$1'6TKs7T3A)ir0%*h(3@P\&9D2![m*'$u30m6P%?dqq2o)/0I^@dA]047a?XH +buI>kHiSrTUE#AqL4?@5$50UJ\%+8,=3Zi;@qZFHl,9)VW5GZXM?'!F,itJRV'&a]Wnpd$In>eoJB& +mohu"Pmcef?n;lB<@Wpd-dQG,S2@`q-h!Hb7L\Jmc[!I*E=DKYB#G56"O0Cm5^MZX1P[0R]5qG[S=9 +WFML)Pn?gE\Gc5m0`53_Z&;PpV]3V*uNZC/Vr)TA&IcC^ipV6f,Rha-=u01)>A`l55gf>DFC$NDXG) +u@ct5q8"JJ2g#_j`Vp%+h4cgK)5b9^q+T-kQ\PR4"F'Oo&rha(p")2>7"fSdjVRm<EuG.?nT)$\M*j +IAWc_$097>OLaXYa/XcDj$(go/qfIs?@f.o\gGa%+-EOM[3HQ!`9'c?kLt*i\)SJUZ#o\#]/-XqpIL +=!$[a`a_MO;VS$08f2Winmk%6r1Aq"`#Dn>epb4a6I^-N);e6muYiNFlVE/Y9\(<ZDM,lc]J<d6>F# +0F_-gNuN/LZEe`Q"Z9<WZJ?[<US$He#enJdH@g@G;U!#Pj)Q>@m.pk6P`$HB4?=[k3P8D#oghpP<K/ +2CEs4IpFbRuN,Xl(p-1ePG^\"@V',+dK?=Z`AWHL+XDF=YK#tC'09FK/)&`DN[_`a0M'=HJdN,GoG6 +OUJf#apIRi0TWAX.C+&kL;7bE!]C+IAb)_n3$kEgCB"1W-h%q54%)62/bu]/aB90>jh*^6E1C*XY'o +XF%<4VKA(WVL_4YWq6R\Wr@aB4FB\P15ArIOW;~> +endstream +endobj +46 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 102 0 R +/Name /Im27 +/Width 54 +/Height 22 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gati7%g"u2jSqG@WZEA*5]]b_a*%GAnhm*~> +endstream +endobj +47 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F6 66 0 R /F1 56 0 R /F2 58 0 R >> /XObject << /Im22 37 0 R /Im12 23 0 R /Im2 11 0 R /Im28 49 0 R /Im29 50 0 R /Im12 23 0 R /Im23 38 0 R /Im24 39 0 R /Im13 24 0 R /Im13 24 0 R /Im23 38 0 R /Im28 49 0 R /Im23 38 0 R /Im12 23 0 R /Im29 50 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 48 0 R +>> +endobj +48 0 obj +<< +/Length 103 0 R +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gb!;h?'F<WZ$k6-csqH=7H9lq@si4getso34.7W`m.s!mECPo[0e5lQptqtMU:W^RdR_Zn]^`nbCm+ +i;NUB!.)dIlar%S(3eWhSj0C?-2A`8S$Vq\1KZI%;SQ>K`9bHe&\88'8?f$b_=]88(lQp+=+O8ki.6 +7>(s16L%8:6a7^Y;E>W<)GXhQ9nH9`5c#>-jsOm)&(uEYgsK3/R;Mqj@WL-0[<I2'rH%-b`&i*W^:q +RK?>6Gd`PE)NK'/%c^R]kS8U3S#Q"X>M9]9HJ!u8ZC38^F.Hcng6JG@kju73k4rLMFc^_3&q<I7f<^ +g.l]([PpC]Vi.Ikf](-52)Ud<Xl<miEh5^3<L9I<_3FKs&52@S4BtCa[pN^3%i0.^ZG/LXl#mp7(<a +5::r+QmaTq<S>)I/BcO/@BL*`mS]r6XAl_k;P63WW5;2PR[]gYX:GVYcX>EhqA<'HV0i'#IC+SW?u9 +6mQ=]oc0\;(kGNkkG(&;)V`V)#%cLT1C/BdZO@BL-amaB,jb)2cSC`c`5/D8X1AXP_1bk5Dt?2@N^( +hKk2B)?g[<'p?P@9KH<$@A1pAG>:t@=kfJ5FUU?PCQTC:o.#4Cr##2Kn(FO0.gaRJoM,Ji7HhTY6UF +G*'fqD!%-6!]TYOPFlg='l%?:U55ZbnPJ;C$4q]CKK<%V7"["<r<DeXfI?LP4%_]p:AFJ?S9Eg1uj] +Stj[fB?;2W9M?AU6\L7]mCN)j\D[?">uQ/sCG%-A$@;,EeN`Jo-hO,Oc^(ZqH)8,<V/949Ol3OPQkP +)ABPU'rI-o%U)V^oGk>*aPgZ0G[Z30PeEW.!"`.p@0R/rWM7:-(3>&5Q-ogRAeHI7`*FA:"ga.3D-^ +a63-tWJ4*;J6(K*cX_:pTTNNs#:6Jh2Q#&JO#-:@+P?n7^NY:%GoLI;D1h2;WM@-%dV9k:0A5cFR;A +Y9?ueHoBGdb?03+.J)B/][Y[$dW`HJ?g5dcTl/:$'V=O[SDEG%?!-TbF#$*S;X]EU%dpJXk17+]7:4 +=M(mMuI#ubXC!q^^/BNMF*4i4^i;^]Wp[%U5Qb@7B)I,[p0#3nb1#aB%1Z1KcLr)8*lX@<P;0G.qNn +qGF\i4LCC,Mmh8]"T/@KtDFV1c$%Q;J"Tes4ZO>m=g-g$bC`I,fr)5=k1Y=A`aE9OsAa5mpo%XI#Q1 +aBB[Dl+u#!2Z2\Fhmd*-$QqJgAcq'S6TZE_$?1u84n&c#HtVZZfR#OSjpU(V@3AOtq/38l5+oBf7,` +5jZ#%<?3NT9@l=e04fR#OSjpV2q*(c=],44Md1>k\^&L/D\YZ*8)CDV:q\jq]eJ?b6+0JP&n,W;A0q +gSbQJChBq,-\4%[HTCjQCTb*;WpGNRhI"\h91_>IF-Tu@OSd#0iJ?nHNk],\9eNPV@:\F[76"p-#)" +pAV%cbju5+o'%goJ0a33$-@m8;8gllpN\_q`!#XWXJK?4]^Kb5e>aR+,q-`bKT.*D1FLYZ,!brZ-TU +I*\#ZshW"#1G.!cF@]fR_!1\7I;aTgJB2P8m+m543+tn.`)oZ3tgmRq,oS%AZ)$W><@09%(4\-A)aH +B72\e:st=ZSJD3/h?@cDkl^L=bS?BII07L*-I&J7NE`+cSAG['Ar%"iWKZQ1E4r3(#pC%*__CE7W09 +O0E6e=d4PGKp%OF)PM)*EZ&riqaO#%4J1*6]m3"I=0cXJk!"NegE5S4BOktD_7P%YoFA6BeE_3Ym3P +QZFr>V)lT$/,O]S7t6_Ujru@\'gZG/7A]Y`X8Me8:gB/_YUa;i]fDZbeK#\1B/heaS`)0,4hu^M9N_ +h,VoD[PK<Y4:*T;el&P9+-=g+U:p#:=K_[qJo)$=R=h!etd)K\Y/7u+GACg].qT00nnIA%#ktDI=C` +-lR^XVrAoRd%co=N.eT@dXVU*s$_@Y*d$W_EBC-jsm2,J(kpcoP=0C/dZ4nS7TR-QUKVq.ancl&dFX +PG(=t;2+-kD[5,=XE<'afCaN>p&C2g^E+CL$:#C3/(NH_r,o8mg`PfB3jtF$A.a.IiQ4<uHTqu>U!& +4A%a-=FC"\B/FtDCP/>uhM:5377fc.B?TdDDnhFlfm#n_10g7j6t/Al3r=jTFSS-nMtVelF8S$3?dD +/u$ONP&@`nlV(R-[f`#<0[m6gqk_U]8Mu*CZ.#\ARSTkZ#ZOeKE4:1iJ1q3l;PIj_Xl[46[jB'+Lsp ++3+$gaG]X=VNOVF@ah'@<8@$Gk*2&PeY3-Rglp!&MiA@&W9j`+-Kk:=hd;Tjrg2\<U4DpS1^pul[o9 +l=@9o&&j>RPo_Rf6WHj#54&JU\4'L+BmlWk]siSW7!=Q<fXXhHIqS9YWiU<fjG6<B3gnn!iL-Ku:$_ +T6;$a7@191GhF?>S`ni&Wgc+!Wme:B?TJO)_L6'CY^]8$$RgK--N5DlKf&SY@^etu3U`-4#9@b?/oH +2gJXo>9"Lkhu(8SRWs00E&$uTU*3[C-$W'[h=g!nc&G?c,WrU*s=mYVRs8Y+*QNDU="0-/B>BofX<@ +Mp5_4dDj;io@UFP8K8e\+Sab>Rt1qD8&XrLV'&Jo)@Y"_4QT_b'`NE`F6"FB@K0b4N3Z+iJ>';<t11 +H`\p?:817HPDI;[37ru(i3&1N]<VglJfmqb)9iINZ%*`1"mbN=lUCrktDHG:&_RFXciM0FM3\COP@a +k&XL]'F$%GMP<6AM6ES*&nMT'N2ebk9lRCOfZ\k`O(m@0!Z)E7Irl3:rc*&U+<rNnIpQ=K]agQ#ut' +);R@3>BhmWHKMR=*UAE:P9RPSWDM^N.Di4'II.R0Cj#ZiERo!r<Ti?Yfq#R4FXi&dFO2i<P"H->H\\ +%epsfb0&O++]bA)%0iX7ep%&To!!m9HI:<nhY@mpWS3<is7li+_W9WMMS,C6ZIjqfj?8\2B`K\+ee< +O7$I<md/i[L;^;5*TDo=iq1XYgVOA:1bF#]$uGa@LCJ:kEY/X$=eIohel6%Af5Yr8pTdcO#9&'l0() +A-A?]9a8PP<WH\%+kK]u;;T<4h;SeF[HAAbub+\4EnS>M2;AZIJfUQ&TSIL$/m?[BP4?o)#m"%r4^@ +R2Y:%MG<Nb<un_HHF;mb6X9]Gp("m>%dQa1'.%IMk]A_n'/^WX*TfSgl/7jISpJZ@Ahad2q\?jNrJ$ +omL`i[.;o)k'>R+&jg#qQfk>U\_(nV,leg(\.%RYRW1n_mkhc1#4d:XT[B"')$3QEEU\.Do!g0V_"d +[-nT>9bWgIme-(pd[b@?[3iRA&'m*do7E"[Sf!Mf7\SBb+3&P:+&3$V)4e't<2*?8_)^\eI7Y)05iP +JSst7<Nt2*8<9,"aSap9D7S2l(s`*;Zo8&fnh4TDsl?AfNcOlThfNXqk2i*\1`R@JK3k+0p&0_pj?7 +]RcCS#N!"(38.i<j,NmTMMTiGacB)V0rF#kaVM*,a*AZ7C8f"P'ZDN8*?:_Aoo>Uk/5nDV?G/lmpVg +X8*83a4eaETrc_AL(n`;Z"'.kj,&kU7k?7]`u-Enh[bc?@Dm1[eThJ6CBkVVNTNA$%r[T*eP_*:I<A ++6k4m<<RJWGfcV0?rTVV=bU!>"%JoZVi]lZ^'n<6eCK7Tg+[o2ZrDpsMiHm.?WcOp`BnHb3=P]8d-] +[9:Z/bCe6_.f[4fc:EuD;Tk"1dkq;?ltLudq8M)(q!)ol8VQ,^`TBl)Pa?l[P0$CAdS@WI#h+T4&j_ +![h/81\j_^Dnu!A_`NYB8;.l?gEk`JeL\IP!J1%88tT(\jP=1*[G=8;CK%ABZI*\+Wq7SQ*[8^!k5> +%)<uAK<VpD7!@:W,cT_E!*W.T@hDkpF+IjbmcHGV9gCIL27/s`gr4jV,JqVN<f][QjR>sg>XM].uiB +i=QIVFfK3C5lQ7cHo$o:Irplc&5&qRB(iS[#+7$5r!Rm1J$3cG4Cp,$=8Wa(BP4`,.9cY82\_'"'K& +Qh5;,.X?k<]f[<=E_hm=M]\/!(iUq@M&`W'Q9;\mECYTdn>HL;U)5')jI,G[L:2n%O[F;0EMVK^F!' +`.0fe-fRTRA_1ipDG'BlZjZ(C[,ek!CWkM@H,.e2%B\4s!D@[LW<^jGiYNBdQQAJbajX&['^(S+R>\ +!:8aUS!LC1)iM61W%M#s4_@=-9)>OaF/Pd@#iNY1qV[18^%<nC*\sm0=MD+_;[2#[*=!\p*'OD-l43 +@Pk+sI4kn&Sn-F@FX@JA-](;.7W6W1+n%gaR^XTW!%ZNhHRXiU49EWeI=b?D+ab61)B%LHKg")ck!: +`c]aCNMD\R,q:Eb3f53+RH:h>[&Z*pi+6PpgX78El/*oU/fPV<>XBQ.^nLGe_3on,l'jdFdZhUbl"U +I`YJW%\6""c]T:BHk*%p2>Dt7>cj0+LE;o2K7\eP]S/`/i+]F];&<kq[g55m`5kYQQBCM,fPD?olDh +/0TDnJmBF2bj.,O!P0UKCDX#91"rdCo&&l:95aRT?,$/Bh"Z:H$L1]Fhb([^GufkL?JS&A#]`6$?KX +RCI)UH-J[UR]d;*BjrNdY8CU`)MMAP%+T2:r1.>)e;DW1B(_+a@+n'M98/D9JeY'nDqDJ8Jo1?WV"7 +oIT3#aKID4kUN%LFH(sR66DQ]GOW>h*B2JKh_erK+/&WM^GhtC*KOEld$=/VGWEgb@B./T:Xu2Em`G +sgnV\X?LMVUlU8Iif[<9u_Y.GuDZ]]LKf3`%H]624NP7!Ic84VR'&(W\F1IO=oO1Qa<HD.l5&r6kUe +-Ee+bHg6B-52YbTPh\A&8-Z#1OkB8XX?*"Wg[:L;@?m=#+"1,fU45c_%fV8M]qd.jDU7lN?>@pom)h +5W26f,n>rgch;i/P1TO=fiNYf-C?c\XS$*T-)/+5K)j!*,g3ur1>[R@[OY)cUSMo+uU18T:(g+`R22 +gRY=[KrMQXP(PTeH"j^03MQ%:9m!!1/-]n]0P]I__5)a[#.Zu)@21#/5j5WA/BT&>oLA#i];Z`3,4: +JZ,,O;F$usM>buE':p&M>Oc*O9]lkN<0;i=29XYgl_FF,)4cYfe<>8FZ0o:ZC'fEZ(6eCZEYR+e<q5 +YIATZVS8f.=uLFjl#5M?-r*TGZu[hAnMVF+R-"Ir`GBF:)87<3DW$18gt)h]K*I;cshBBjcY>Fm^LV +#DZ2oMo?I`<M<:)X(UAhbq;ki)7X)>fOFo_S*0Gqn%RM3MLBD]dcB1U\Y\JS9$<OS4`mG0.!dpZ^TQ +%I?c'Pf:'aQ*>MTLg($>^S=;mZ74qN15nFljQ#*#e.NfPS)q1p#)d+jpu7CY)p:39j/Q-ip+fnLVA] +tVP>L*]G(;G6-fm;_[/K7i&E@h`l^p>`_m[XY:;i9W3Ei!VZEm#("hA!*t)#U2YIUp&@U5pKrMQAES +=2aoam,4N)%*@_Ek8'2bZoXGpqq'[,RCEJjKAFc(tPmP^Ik[2@(r(Gqh^eOU]CQrP-f,49_NGRhY?e +=La8%%O#7!M1C$tFCFH5%7S>qFS:GtW9+m9ab!ANbe7j(b.Dl#3N4'N?G(g.%FFBBAftlZ+m[OJf^t +U0[P\MXn6@3D.?k]@,3`3PWD3UA;,'9N1-Ul>T[Y]5ZZfBi-Yh5\NDI!0n>3-'E1a"-'ZOE'h:R8hc +db@E_6N\;2(6&tgA^U4tqKPLO>Lj4uWHD^Kn.IPXQm\D6Z:CO`pJ8h%kooSFR4dcWOaQL^JbXMNNJ2 +2]PV(,d/iO.NLrHbg]\M]>m=7,-V2b&!V.102$BT^S/?jm_Dg\%>qQ8"qQIk?5E"%,S[<D+k&@qc1= +$Ug83:0^j9m31P!FBqqHFP+3^nVA_O\)=c_T!U5&a5!pKj:NuJfW`cfcRb?22UQ6=\=8i*E4?'lT8- +$`ALkfe6G2(PHL=4\:A)5s_E`h3s4,q>*V$;1cLm^^2pAKaI'E0D0U's$W2li-CoD~> +endstream +endobj +49 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 104 0 R +/Name /Im28 +/Width 9 +/Height 9 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gast+W+Yn_!/'qQ1(4.^HjI"~> +endstream +endobj +50 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 105 0 R +/Name /Im29 +/Width 35 +/Height 58 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +GaqKhYmnT)$j9pFTe>%A>/[YsEa^(/NS/t0#Y<uB0_9C<36_b]rl$*m#>gt9\,mn!,YL3e0p!>4A7. +k-m^P!nK9lu=6MmFM)W+/Jg;&A^?q'e?M5NZ;V+;XPr?)k?%5_Id6)3iM@ZQ-GF=Scr.Z8.U;(%*?@ +o6=Q29)uq0B@o\#=_UE:IoS]?ZEDN]JSncj/TBmo,\g.2[0KU#2?mjm/~> +endstream +endobj +51 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F1 56 0 R /F2 58 0 R >> /XObject << /Im8 19 0 R /Im10 21 0 R /Im9 20 0 R /Im30 53 0 R /Im11 22 0 R /Im10 21 0 R /Im9 20 0 R /Im30 53 0 R /Im11 22 0 R /Im24 39 0 R /Im13 24 0 R /Im1 10 0 R /Im2 11 0 R /Im24 39 0 R /Im13 24 0 R /Im12 23 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 52 0 R +>> +endobj +52 0 obj +<< +/Length 106 0 R +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +GatV$6'L%aEl[YJ'Q`'3ZM=b-"Na"`D\H4>/\?1+0(1!FAWIJKBV%$oa8,?.M#MTW7$&H<]8%c\SCY +FoN?9&M-2dT,+*W4Kqu-,uh`dJjF8,Lb]<RcY]/KSZ?[R<MBDSLmm+p;P?172FJ%ba&kJ,l%rm,e*d +gpl>-!],O3UZ'g?.2tM(JQ\mqX%dZXIH)(nSeGTI<mq:I@kG^c-UdJrc38=?c\Dr$sc#ERkFpIZ`Nu +Nl^=pK;b,I=p9;<iO1h%HlLXiDrOdKQ\+1<dIm!(ik)1Ohn#UGd2qmT8$b8D=W;T"`L)*7&Q\EjNh; +l/0Y5Ag5N)77'Isp""-0_0pPYOg.^O;]#WbkFRpZ()%_2C5Ln#jq7j3rMEA=Kjmg:P0pbqtIJh>QBG +hu<U7hYld)h*7^U]8[kUY-D9pqth*K6W_X^\aU]mL-@;e@rSNeZm%mU$9,%GjP$<lmF%]-`hCbIh4P +eB4ajGVWLFeb/R>YnQR6&nA>43Z6QSuqQ].p6Bkg<IVXc/]qL'1\Vt23Wf*CW1Fr]p6R&2Z,k-euY! +@dp:YfB<*(shCDEVFKUN9L:J-8%d'#]l?qrVl-Ko-Fip2lfUOnsSBK*&3'EB\Vs&H(jP&gX>cle+** +NCNtRgcjt?<'\"G\/e9>8@XE(S#=bKS`slr?iQY[=1tZWnpDb)?UV;H.9Hu?$N;r:XqtBTEm[TYbJ, +JF$!m64:D;k-t;&aI#hF7eL5j2)$`]a4>?^jC9RW43<r8>K&]mC0ElHqS3@goQkNNr;]AAn4:!7g+W +Y=J2?-EQ?J#ueT4g+N.7\mfVQ+09'qM*hg@3?=n?T6?:mK&^,j_Lb-",c2tZ)\V>'C\@C0_W\A`XJa +*>B1bbRd"T25)M^:..?2hhNHBZH9H.K,L%X\;Wb7?015XZ?O,`U#1C)U<D4D`eX4UI(V^?f,h76<t. +`,2Tnq"U1<bdPtFFS.X>j06-9`\G\J!bo;9G@S>a4mLK)q)n%b=GFP8B7,b7;!sYM@R$S3pH@li!bV +<=`?PNL)2%ErQsc"%o'52;4@`cgWNmkF5Y!Ff;:=]i9j4p>[Y<lgW8%2psGmos/P+[-[n/NC#ZnmGW +kRA3`Ae6f[f+KS)Z<\6k1$oL>r))IIBMV%SBWd=k)(eEa*.IFFURiH+Jj6TIFZ*9f&*,GDlSifgnB5 +=IC*^@mb-L1Xn%GksK%AAElf^T))hRJ((l&-!b#?],Lg'SXh#(n#)'q:MTL6"Z<PJ.62)%rH[8#e.] +V9bU>VdClI,9`)mRF=tBrC)?aKsWtQ0oZ+/*/K#5IRQ68RO$3\b0"$N$3kj<Z(b2cgP5@Q+e2e%^-, +;r"O?g4&LCB`g(!-_dj/J4N7&E$\$-32,\q4U^2fQ?MReV'[+P_t-4<^UtA25!1`d,\"3[*Qc0iE], +g@uTT*3lbLZ%EQEA'uN/q.1M`OS1.6JVK&FR(Y4FA*bajucjDp$.J,</R;IW:;Q(>U!pbZ"WH$u'PK +g%B0:HltUXfNglW?L7da4JO(mh#A`$0ehEMNaD,V^T3]!5QN&Q.$\419rY+roYT!$S8U8)pZ3fW[R3 +PEo]FY>8@f,Wu8qP#J$K?0cRiN=@31Z)&`dFd?(F:`PC/mWB@5%'^=P(21)"%7)%%jp[ZD:n*f+.)? +@%#^m7_+QI3qI5\6aHu*JI`>cf332e&aCiL"iVC[j&<4jB:!sRN1B50bg%iZ?23M7G8=[GtQF.HXC- +^#B<DWl,$RRJIWPjO='k#!9VgCllb&q]M``C(7gFV_1c28C9o-n8]D"44-t1Gg8\>0g;[%]IB^LjH- +lTU9S5<2os&7EoB'lO=1f&V1IEKSnHk7'>^1K46<m:M_a&ZYbP&kJFO*cU&Y"/!mo*DQJWOa*NDuH6 +](`%`'i_1RN;%Z5g_'b7Qf#D1HZ*I6PZ,J79uI@g\fmgAofbg9WCs@uH-oB?J\,+Ym8Gf*W]KMBLLS +AoB@8Jj;U-;NT+'h8NbXcph/\c``1^RVYITHdRWeiYsTe;j41OB!Z]_ARalic8dS`'HJk;>/3CZ@7H +8^.F&4$;_s*G>-$2,oIeBq?lZ3j#-o.$Eo]R7pf]P^:0)+gDi0>TiZO!^#W:Q#aCV*Zm\hWUMP5\fY +s`gV\PDKr[9omae:'8eK7tk2fZ.I:7M8)LXOE>'W3u7l=6afm)iGm1Yo&RBj>q94`]bJE"?nQ97hnC +tat"qLZNunA+f7A_!Bh2SAU2MDXAb;oR-/Hnl>RjTEe$9n@3gG87*Iu^'tZLR?tp[l1$BWF[#8NohD +543o2m3rdaVJDfFDmc2-f1lYpiDf^`)9aHI,TbU)WD%V92U@njOl=elWAYO4=rCBRI4V=9d%ml*2.: +g9ke*f#BQK9*4H&.48\CVu)CC&%mb(6pEE7Ugpkfp=A5"q.IamFY`8+!4&1"+Dl0e\-\!9-R=g-D:T +9Z=:QL9jV/9:2U9)uZ'C<T![DV#B2fl95b#b0B:^QuCiGL/'KCA*AqQ%7ODC^kW.?u8!XU#`8P2_*F +f9EmCeTg52[6tD7D!*-T>HQ/BM>P'!bLP86XAN^iCq8\p9J3eh)ZDsL-Q#%MNaUf338B4oqBHp)HZ! +A+s!^U+Cm@Ha\M:D<iSH6-u+@)'e7MYK:GmO64HqMG]Q<tDJe-)%*a&@QC*`(hDVJ.Ms<\".thOULF +ae"O2VAE41/p-X+aq0>2kk!qF[0p,keJ[6"?h$%EgL"fs"*4'1:HW;V8)@$MC*Qn?c%7ZBcr_@n"@3 +D]@9-+UT\ViC[gG'@e4\TEdK7M4NK]/4Q&djVXq0*2t)(1Qpce,GU73b6Ued,88I90]dI("8g*K5!> +A,pgp3[A2Ra;j=h7<'T4b&/+o]6:R%GIcM'aS'*VMM@?:WnMb`P+j/W?7K-Ft_/*T_IKHL=>oRMiPW +thi!>`hiV,nu4g6DK`JZ#fTP&IVUCb=a3l+j2#GZ5gXlEX85$C5@U_Lif@7b97k2*8o49WONj\T+<[ +YU6s(-):Pq;1D'*.ELu`k"qk(aPijk:Zr.Dhn^im-'-RWXKHQ!pZ],f*MR<L(6ZIR'jO[^Tp2R]X,` +Q]=@VQrWOBe6#1DO2*"pZVqI%ni"5XEI?;::HsHAIHQa4Sa_)cU?66pVSfTVV,.K';e?-)g.`Q(02J +5nS)JJdRaLCOH`;M5c.oZ*hNGcIPT=MK<t&q2`HSQ9uL"3=AO7k(Z\G(.Cs9>A;-236-%FK.NpNaji +rZI$>3J`RKL&2iKM";9*qqMl^O5PIcFh)j2+A'Kq(#5Igg=5nG^U5tamdN33i=i'A;s*4b%Y3g\Si1 +Z$(M0Gma[W&SL=DT^b=R2@FMn7MmDNDGsF%6t1Z$C"$I-!'?*27)N22kN8J4iBY;,FgT*2mHCZW#!! +Re9\^N%ol^B@1[G^Op7P`fL9^a;,L"5$ApF4Uer(feZKK!`O5)BOl[,X=cQ>,a?F(@Re6+.)ZlQYa( +bm3X@==HA/fM7corO[6pWPmNA-(5)TMis?\`pL1E$g83E)Ns$DLOHd_gjT%Q#"-4^]E)-q5,_M-(6F +_lRFbU-VK&>VdkaMe65\)+NW@@Nr[(rg))&1uYW_!F:$B$\T`V!$I,,5.4?KcMXbC'0fBd[$lsbQrs +d$%oRpI8-(d;UnC*i.Ag>FA.Ei/4Tn!4"#@;_0A8iR?(m>h-1\;e![F2/%'=W15U_Z3Y9'm"&7UHB& +-FIM$rO?/$PeFhbM$T1$#C/?fRk#;&Rl$7`>JJg9G-sM:c>2<Quu_dJLYfNG7^HZaqC,!#W:(*M2\` +:e:\1VDs\[1*"\1l0G#+3"O'c.'tF`+Q;chb%:.%PZY1UXQEAk,9[0?L@7F/%.fn9\G$k:cWC'4/)B +]Q2'G7lD,[a[;)++.:ZlW.n8ebB;3J9P],?3_2dJ.H:^nAcRTh$_!7S@EI+sJ*3#o:'>[#=@`!hkuR +kS%/o7]m=b=77-&:n6hi]<P7G3<VR4,A]2O"0knOcj]O/("2\+I_C&uL9-1*a*IlL>U?P-g?4*I&1F +E]6)NjKiu3`P>[)KRC!*b#$tM@sT%/^k<I3(Pno\!BB(O,3<WigtOeSZ!>DU7+?P@9'Ts?L6HHemcM +e:u>;/IMSk-;irUBXL7)#O(9$Nn1(DL`=6!(+aUJ^TPNHI>u"l&!$0)e<JB6pfI'+JnVYHAIMP:H,X +h<OY7`-mB?l:]Zf(d9fsc'N9jA@V\P-SZ[*rh'hG[\%.@:H3f5+B7W\0g^rdN-gFfhls0RBMT?qRZC +CtF=$uBH;+;rJ;[ZFY0Zo31atp[#H2a%@2+Yf/$Db<XX/T9%HH*b,d]`u?+:'*CTHu!D8Cr[[,OPhr +WBjqAE&0!&Me5Z?oP,$o2&V@WS%iYp(l)^F]SX/g=>m2\#U+sh8ajtJXjiOu>u>q-bMjG38B6=<KId +D)KHQA`:(YLF"H@2(1a(@8&YTbf!(qQek,9q,MBJIW8gG*T6qT@,q-*#&O\qW)_oh]c'C&[1Oc]6dP +gDc?Xcu1`'KNVVHj5Af&.)JL8-q9ZdUK/'50O:d@O`=/bgAJt5Xt:fYO#1]GufQN/8*,3RRp\^LWCl +i7NYrSO:d(063q$u1>dn`V-#7D[Chcl)Fn];H3&tJd7bBC:9C?ko2l(UdaVKMfP!*Mi;<=?naJA1nU +#>13lh=/Tr3Q92qA@/cY=sr`Fj>03EAKeA2ONc)IKV$T%-kVJt^_%GF5#9Ak>60,j!tFB=5pR&(HH@ +KL.E%6tNh]p1?.=Ij'g,7a];'#_f?mJP+\P&8jh0a9`lknZ?Dc6RZJ*"]VXa1Vcb%A`KjWarA><4fb +\J)cf-dRe"Z,$X$8VPrE53fI2@2e$^3&DIu1B+TsB"WEHe>21SQ&W6&XNY*TR,i:S@fYYap>ONd&j< +Ji[]:>]0;ITPaniG%?(DHI/&O+di\'aq(,:lQkqN,Qq[Y<%K(`'0=#CfDOYO[>Zp.k1GZB?[G&'n\& +jC-u;ngUqTJoI2"@lBE$V:iW\]S[=0NghBjFR3<nD'&u@c1JiU'V'CD_XE4k$$hfupU*IKKF>3WGFG +6sqI,H9Q.3gTeKS]</T+5U],+8"<-(]sT8S+s<Yb#ZGi,m5RYu/S?Lh&&*8>i]#\qH&m#!eo&jMn!] +YM:b!M*K]@>D1Kg.aVm#Ek@KQ+`lH>^25uFaD/LLaAKV1nrJ#tV'g\7U@ai4=2hs7Q:$U@3Pmn]s,= +.IK6=D]j+E%;ej0nQ%Y=h3](incF%&2GQ&$frR"/H>FfsR]igr+gCjf/`j:M&fNc<@e#%=nXWqAbSa +N\`'UD&bWpgZ=96a$Ag,OP(W7M$84fbdZ/XRQ]I'[K*n[SY%[VECgm)S,LP+fPK1d5,._!$VOHL_-? +^l-ooG3S)E\QKa82@8WfEW-g7e)8^bF<1I15&gN`th@.A@raB;gil3d/ciOE7QkCV!=KdGd5>`(pSA +kFM5RqgjJWNeqV")uUJ4,N0XC(eIPorSC#_=8!^dl#fk5ZJ@9)N0l90DJjXi-nmju78c0gn6^=hrEC +2[#OVW;:o/F6u@SL`uIX9EC-R1%s;1,4r.6"W)(o<req=[J!`"PU/)p#;HB5hN5goTVukbha)f5:lj +ZgTr=Zq6E^s9#uB)JK-7*`AgGET7f"k<>V&`*2&V"MR_NDk"@Jg'b'2mN6<43T5n;UnJ)"D3LG1-&N +%&BM^rCs3Hn:*-/;W_t'Eeu)TItbm]Z),)5nU@4JuFP#a5+:t.hml?"@'/Vg0uVh?gA]J:n7,]^Y'` +M#_+C\g+4W-?E8g"-u,h4Ij^Eca)VH9/;Mq1-f&*h[*M5[0i1PTUC;?JH3PWEcSg9q7at+W;PVK_VO +N_e:fRD-nm*>F%YB3s#XVbRQL6EG=qM2_Ja)ii?gHUNk'#..)q+2o&dMA,W$pnN9/fh)D/bK$b8ZK\ +Z5,\:@MC)1Biq?h(<`GlZl<@O(,5qW(*e@ZKjgMhHo*$V\hTf>Yjp*H$Nfi@8F\GMFQrKmckR)1<8s +O;@Qs)2YgU#U&PjJ3DXAU.!'$O&"?`!f\3t==T7il2MKIHDlef_r/OVf=,BQo8@55ng+'Je30r0Sj! +bYeY3.E+r?M/L5V[Z)=Pc(iSUFm'-jU_]_S?D*8St]XR!$C8M0^A55'P8\ZQZE/*5p4Z21FgY9?;6P +8d2@BF]JB!^dc4J0Ja(YMeI,+kC(8Gl\j&>A^-3S*G;&2/R(i+H5l^Ohs70[7k7`RS*-O[sqs=-g,\ +q@Dd&4e14UtJUo8EVDqa\50pfOC\3hrWjVA<eriIiB#8$nh2:L?nYL]=2\`a&"nDa&V7SI[@aO6PGu +;?ZDm;!iZH!Bs(He7C!VIB`7o$o]8=e>CR3pm@S==u\TVH)fB^I,K(4\tL+]_87ul@*QP35%&6EQ$C +)Jcp]<l=lm:9cdlZRMGXZ.9fcg%2Eh*9'*Z3qcu\2>e+2!;Dt(c5h;bef%o:NT0+D3IO\V8)kcCb=9 +HD<=:V>]9Xn^PNoD\Q-I\AiYnLA6>!rM[`A^PW=!d:)rY&iqjE`q2D]C5*_BhN/LS$6"!qUG(M=f6u +(dea^aZ[*J3I+1gPil;pB3o6^";dBHGQD_=(OMV/gZh;UtXQ[cf<Cbluno8P9_ShY8g.mF4OOhbTEs +U.A$dmsd0loCq!S4)5aiA*uKTqO0%(X8'&/r,s(m$`Bpp:&N_T/RrV3crX:?ReT<D;C<IJWY(6_cc* +L3[0^.CgJIO8J;3*tI*#P@*cmcJ.k-G(Y@?j5F^e4-MN>$?S0H+>?IsKP[J?L38/P2U\e8DC\k[l-^ +//TcS)@*sO>D9/5\$/(ba&_[+MKc?Yq\L/tUh,3QfCM"?8a"?Ad[o?lKHhnOg/2@^[#oui1^XgP\;I +Wo4Tb>gE631opP@))gCZ09cpP$+.'k<1k0GcU\US:4Dc].ht8cipC@C!bari_RB@3<7F*WH?+9qc>s +<dE^lU1C97$T5So[C@<7[BHC7\Umr,:4L+K$U!L@BmWdM/H-REk)gfV!(1g();g-C>1>P;Q3dYM'S+ +4haac'#&Go#i8_KfS6o`9qNAe`6RHoql@.5L-S2b2XT/9C<`%W<@JO1>*s<*Wa)cN"uXX8$9+m;tg< +`kLS5mJ.TFQd01o=$4Ce[0fJ21CjKn1)DjC]j7-<bP?KGrtifXXpjDKamOHrf#B<CrO_*a?;R3I:sg +`>rtKME&Gtu].0$hKj7eokba@Qt0c\c@E2;apHJ%i1H_WYUElt-_H9PUEF-VJ(NQ^"<M=]^'_[H--4 +C$@r8BN`/&/W5gE&_t,Z$Up0UQEr&C:DXr8,C<`]C>fjmj[3LB6%>MoYf5'QQ70cb1@\sd8KHLaRL< +chsodJ8%O`JP-V?)0-lX$Gs9#sp@k7"%U\rEO7E;8BCj8k4sF-UmRLA\E$nA_eR[[Tn@N!J0ue<u#E +<)6?Ok,o$^0.g";fjZ]_E#-leH2\84;,'%(]rpF?f6gMr$I1`$$aS6JW3&DiU^Bfo>aA\L@MRiihUK +Bt-XHa4C]Vq9Is]6ERbE%!/)c$"J]?Q%5F-9#-EG`:N$#G`F1JW^:EkYJ9Ou_O?!UaArcL9j7+^.F9 +&50;f%Q7Op+mUJTb<C4UN!Vi(6@:Vm8qpY-ij?OrM#%4X=nfCCC&V$.7!:!>J-Oo$XZC5ejJ_oDj\5 +k9,$+^?Z35,f,@lUtMPao%9$d;j1e:3`X,$&\.HYK*j$79@S-pgcF6NF6tC+@B\^IK1-o\[#O..AlN +YfLrJiJ)9X5Ye!id^\e52^!p5tqto":mN,RC^"SD'6;0:CcrmUj=PMpc&!MOg.1?kSO5G6Dm<=oKo3 +SQc][HW]YQ"4k.]r!h2&RS#f;C"G21[-&d^D?_>)f(/Qa5*5EpB"WHC0V3D`7LE/Apj3Ur..5s8Q;X +`tRWq,t#-o_rK@o_h>0R-cGWIIZ[a^A_9Y6J!3k?0e6qG6WV-nn5*FF`_uoiia[?e?_UbBdd]%L/%r +/hN6C<ZY/G1B2#5r\b4pBeKB%XTh`dK>cPY;s=4(Jrb`@n^EU=YD]&uJuOSnbIpp`Ec,^XI^?T$<&i +U\T1kk<VDFI=8O8>42MoDTAW)L%ch,[_iachts9R?q<5ci%j5:J8GXqY\#*;>tD<jf(Es:q4*sm91d +-j#Qbj_"WaJfcE''#LLXgbO&^BEcLZePba3g)Z<mpL[c=9o[J\#7Isd]HWV&2pinbsM<!)l$[^,[jc +$Y@>S7#$E^dR4Zn7$S5VU@HgpI2<edfjsm9P,-VYrI74;TL=EpaLe(Y'h`cE\!X?ACDdn`M*K:inTh +UNc_C'E9;:~> +endstream +endobj +53 0 obj +<< +/Type /XObject +/Subtype /Image +/Length 107 0 R +/Name /Im30 +/Width 31 +/Height 52 +/BitsPerComponent 1 +/ImageMask true +/Decode [1 0] +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gar'bYmggZ$j=@7"GE#t2Emn4/)\CY1eOGELBP]4jcYs*eqDmc^k!+*M2;GS(KXd&b:CoO$Is,A'*X +DN^E<-D(qOPY8)RHKT4Ps^1Gi<L>(O^(i5&HDlS$J*G3hTk/'Ou]N-hW7/t6+R\1!`s2Gbc=QX*E/~> +endstream +endobj +54 0 obj +<< +/Type /Page +/Parent 3 0 R +/Resources << /Font << /F2 58 0 R /F1 56 0 R /F4 62 0 R /F3 60 0 R >> /XObject << /Im20 35 0 R /Im13 24 0 R /Im21 36 0 R /Im1 10 0 R /Im2 11 0 R >> /ProcSet 4 0 R >> +/Annots [ ] +/Contents 55 0 R +>> +endobj +55 0 obj +<< +/Length 108 0 R +/Filter [ /ASCII85Decode /FlateDecode ] +>> +stream +Gatm>968lH'#*[5bV@fA:]q&UUi3OY-1XO5Nhrj_I"=8AL+>I-Hph"arAHo_!ut3KHY^e0\M,9Mh-Y +[1Fb=&Hrn)TYHZs[WI`46^F8'X>"e"/!n;mQi=.c`W#U?lO=HJ5GF19p%FS57fmQY>m&.>W_JW[As6 +S)VBA;A;Smu"\i#$%)K?l"KXGH0?([2G!V82<:)W9V5.nj(-m*?;Ybkhk=&OEUEJ].5t_;LH5[:NdZ +`a))Oh@V>GS0GMujf+,HMOs&%:s1l5j0Di%lVR])+Ee1jWX2aSF%:3"h^"U1N#%`8;7Ua*LFL,NZ%q +G3!?`5U7^TeR$5>H-K?17t@Z")+V?2'[Ij"QjZDk>:h^clu[_OcD,q]k&Bn-9^9U56]9_?c0aL7>h> +427q,jF)CK`t(k^_EbEg6nDN0aM'I&-k/LO-AhmCgPKCuG/W0(ho$`%`jH->.Ea(!4Y2^ST[.m'X[" +BCdFsWgCce:+]EnY0PW\Q8`I&TELb(WN`#6iZ$se.>E6&Tjj&"Cm@Rd<QQi.3nVEpBar\=:)c\oNXO +C>ZLTs[gS$)ab:\VO"Lk@:E1qg'Z1r5A^O&0R>N:hNgs/a&,4OUVH6ec3LK'Lu+[WW@^l0(*%p(n4e +1nE+j\E"PX4Ch+<;C^S/EI@9Q+M3Bcj2(CG9>PK(E+<k(=Ym0CEYmHu-&)Gk\>U74RCOD3kamj($Z3 +]u[LrjUNY_-YC>h'WZrVF&nA5)9Zqd'jj,WNhc3UGL?YWcTKP`bY_bG&]Voi*i1BIi)+8g.>m!Y>3b +Y1;uEN\:4,5-T)IX*X9FDAKIgg`o"nn_#X1>hH^oRWSa,IZ]HnW"hG*9S%FTTLfR->iBj;KO2Ek'3" +`URjh$c,-X0_6epW@`iIGWFnrNhltDob[+a.ce!QK*U1NibGsJKA65oHBQM@KFX`Y3-4GeLLQd$H5/ +B9g?$sk:Z/uTuq;R4i'6n8j''L!:@5kHqPl[k*,?$idCbGlOg:,!nH0Vf0r;f3(AN.gE_91[ROQP$# +`ojXbQ>NH;Xc;m'fT[;H615VprM.'Y"58P//R]`!7J-=2o#UiM*&c0nNPsSm9M)*l<]0`&".4d@ROF +g@u8MNf)V_5*CJ9d@"D33t;@5tV=Sj^TbaM3a!^E/98S81/h$f(L/.26n2,EbCfdth1*ADYlBeJ1.b +G?g:ggCjV(MurZG5Yr\_lj!gZD>UO@lu,m:\WWj;GBba-YnrOU4d0Hn8Rm!"G(BmT69:UlJN&AL!:< +3d%AO`X%%oK9Jt?!8fQIfroc%\*-qY7G%9%?TGiYRcl;M-nUeM7XPacOTG<Ud*Di-+d%9R(pSrD$[: +5$2Wm"$Ll?UdK3)1-_o%n/Z_*knCKqSq']g`sTTRX@kQV*WLieUZ\ZE9.4s3t.0eSL32G(Gf)>30hM +bB4)ZJS@V%.'lnl@Pt;uV-&$4hq\kYgl4j0#ZE8-a.a/QDSs>rf3e]+PJnGs$D>/^`eV3\Halq-peN +5f,EGd_A6B.lgR9WI`;if4PT"@.J7:93m^8/XZB<2phTr7SI;?!5]p'Ncs8i;3/Yo=3s[k;k<,HjHW +2+f%;Ji)NMq%'L>DrHAJ!ZWNd$UNu+?_9<J1PVVoNn)qG&mSGd4U!aK`Z"aNHtm*tBY`Z"+#^&jDX' +Vj8V/Kf2fVHS=oh&?Z?<NlCH$^:+E1P"(0e)=m>!1H"LMM?ojjSE.8s<8XqnN6XNZls\hnt3Rb2m2G +BN/2Pbk@Q9$_>34^G8!S`RQV.lP)UKeiG%)/t^&2(_/9M>O=*4dlQ^c<ti-HWp"NT`'ODTk=+1@7b# +*$-FUFmHgTC%K(95U2>\PVJ4gXCZ5OWG%f'2^]J"/o>j0N0Pj'UbXe_*C9<c7H:7q@i&canm8_im\. +[Y4.:Zhp&gAQ/Yft@V/bM'-nu)2qkYMdOnb:cGeFj9hlE$_@BdK)r]%6*m1%ZGYb/Td=HE]sU&mgBl +3fNf5R9Kh6H$WK(*b);7/h;'?fgSQq7;=3"YFT.9Sp&Y[A*7jb?TY7?+F9IJO,q9.(3I]]DC>a:0P; ++J"2#CSM0j2H$SoT?X/"lg%/8c\Vd#[qVG)-_c.N6L:W3EIR#$X0U<.8#:XPO6=^n8%s%G"CmB7?pP ++:ZER%#>C&N@K9aqiiqXthj*8$#Oc3`gau9J7h&?T4&M+"5Z;3977BK/6aak%qZ77S+@onT+6kqCT5 +p-bM,XCBrDDd\,86[%:%#4a<HfI#\^/2U/0:jDC?L5TTp.^ffkg0j,K^U^/k*BM:M'Q6\Lk$EHZ^fp +R5JiPBJFaLCq,p\*`[*TaW^nN](l$1:i\.jK$UA/@#Z`SgeoCGtf*5gf95_e9_$RD^AfW'2MZ9L&Ok +IHFdlcTb@GR(/2gRBX&r4!cWQ&'gN7]>YqkhQKDqXUaZAP3#.s@&]\/:].6hI,C0L-u!q7A=A1pq#m +aacm]\,'C4f.PX9jOJV5)$!'-/rDF5$m?%=k@q@XZ0U$Uo(R]U\-8Co:hT&4%q?HWL"_o;m$Xn*lrW +-Qf'OE/]gGDfiZni[aY]$N3!N^jc_2#s!.Fh=jdW"'BUN!u8UmEg"YhM@sQJ);&=K+(p;fH"ODBa4/ +)V1GlD4#i6EnMW$XbotSGU=;id;,]<7e2](<m7dVQC9[%J1&C@96q\o2VlHKW91j\o&Dk';&u"t$pJ +(3eZnMMY-a^,e'I'B>/.DL(LmF`S\aR[iBFfGF8k.(/X2VLZKJ)m][+#PJeC]#ai^M3?JP3gig39+A +;7;e_kfX:l%1O>sTb5[aqfHI:JV)T.$$!tis1;<A'j0X2FIdSF;3=`um2rfShPm3a>;&HTXOcIHa:g +)<-+A[E/TTVWTn4Zd.Oj>ainNjWkPu2*F<ONaG%5LVf5RocZi+X]+[3kD^8:h)X`m$S,b?-a>LpB:1 +*_rIs)nF2O#Vt4L,frB5UL#<8glS_6goHd&Xb[5Q/)a?Ud-EH2oZ>qP%+"\p!![)=?Q'6/Hu;;j17E +Re*S`0e><2b?5nQ2dIi?RH.!'`-H1FbUrrmO^p1V_T`Y]r2^D76GJt6ITgp0!^(;;u4fcMUq118`Ls +OE4f`/DDb/2]uEj6Hmg\59OGK#*$c#Md'K!\F.Xn$1t(sYihEg`$"l\)!dM2;"^JakcW'@kBqfuW8k +QL59V]C6Xla0umY[!H+(4I(=>UN/Yka35<q2n,/`Ur7,&g5sqqe]NF>bDR[C^0fipAu'$@67j+jj[c +3b]hEJ,V?O"DGrZIYJY!LW8=D%16))dsg3N`b;!9YW"s&o1$\M"FGD$ON$ZRY%e%Zhoh.fA+_`"HsX +bCOjPpkqH"Au'[4HCZ#T80.7&1HUDSf)ejEToN)SBj"rUr&Lff\/K[gZ#'ak.Lg^j1h*N&53)%'=qh +Gc*ECoBs+f#4)1/nhdaEb&KgsOia],T\5?V*M[F<jd[g0p^<E2b63Vr\]qmC*d,(Y'TY8k&LB+obAF +j'ZPdUA!=CGN?MA$%u,_dU-ZOeTY[G8?E"\M51Pj'a9&2-6II32e.C-ho.1'<mlH"4sRP:Z>M4>Vi> +6]kUtjeQkc<R9bcTE@jl"=7k[i7l,&RLO&Lj`XJV*@aZReqLeR!Mkj+rguN3Y%_K7L*-)0^C)m'=iN +8=[n9a81J[2@[4?Lii=*]*;p5M0C"Dg)2lj/+mu\'>F-U]Rg:pFYlF?:e^cb6r_CUo\Z(,7r'L>5,W +*\4[Ja/V2@I0nl)t.f!,o?]rOU/LhCDL6u'&QbrYlj"$%qd/9;Xf#p5*!U4`?2!Y^5'c$ki'K+o=G) +;Go3ljI'hD1DA*SP^]mYF_UUX?)DMe4P^NJppIgI$QqI;Bld%fUOf=n[/9NS,aQZWr5L<;J[Wk=o8j +/nV^FL0&64("n<DmP!\pMN7Jg<Ah.o67\QLp3P+,7[;dRZqLq&FR,rqu[6PkiT-Boogsq/`-OkPE%" +o#!JTl2(83`g*1#o79-)0+6_Tm"`0@A(a'aj_Nus6sYXXl^BCHm7+rl_&b5X,q]KK'O!Dhr!MFOq8b +=Q3,B7&I7bG3I0I_PYURCsk5qBmX^A;ETs$>1C7IK.eoXOWL<kQ/>eO555I5Xe[J>:<$=)r-5k5_4] +I)kN]Q?E!G?q+2?T3V_cCd*Z1ULGA?VH-;%q[Ajjd",,SqCWcQal6[og/<QpZ5i#Jb8$ENM<!Lo9+$ +N$72Bli(#""dQt/W=l/=^h\0-h:7B6:e>bHi2+>kEmt3:dF.i)3Hoe`qb)W7a1J;8HkNZ;H(t-fP,Z +[61ZeAfm&lmhmcLOc>Mu_IgV"4@,W3Y\:^ZruQr;F*6e/]U/dBHeMV#.f4Y/fAm_[Tr5`\H2^0Ba'1 +8LZM]6.*m^(AO*5;dmD\5TqfTKDR.E\VWLJUS*&ekmKlQ4b@m3PPUp$Gc@+AM^@Y+cpHl$)GrgPhm_ +-Cf_QkKq6^R@+JmkAZ.kOlgO-VC'88mk\G5]c/Oa"uY:rdO$E@p!>VemF.<`VhJBdtm/>UT:S5@_kr +HU2+H=CWsOk[6C92=ukK))fi`rgJJ8UfK#hjmHt=uGm[Phor1hpm/06*PGa$]M66q+-$)iG,\!6q?7 +j\Fk8OmN)a;/V`kEF*"Sl,+#8]bN]Cm)dt(h2MZcl`p!:q.SkG`]2?hOQ<?#5B?f')Ss"/C>JO-`]A +l**Fj''r#)Gjis/Jq&B@?-(NT(=a9:*<rfhc(i\E2.00Yaam19J_C.!FWr%ecGt-M)O-dhMX7M6m3` +r?Ap?~> +endstream +endobj +56 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F1 +/BaseFont /Times-Bold +/Encoding 57 0 R +/FirstChar 0 +/LastChar 255 +>> +endobj +57 0 obj +<< +/Type /Encoding +/BaseEncoding /MacRomanEncoding +/Differences [ 1 /dotaccent /fi /fl /fraction /hungarumlaut /Lslash /lslash /ogonek /ring 11 /breve /minus 14 /Zcaron /zcaron /caron /dotlessi 30 /grave /quotesingle 39 /quoteright 96 /quoteleft 128 /.notdef /.notdef /quotesinglbase /florin /quotedblbase /ellipsis /dagger /daggerdbl /circumflex /perthousand /Scaron /guilsinglleft /OE /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /quotedblleft /quotedblright /bullet /endash /emdash /tilde /trademark /scaron /guilsinglright /oe /.notdef /.notdef /Ydieresis /.notdef /exclamdown 164 /currency /yen /brokenbar /section /dieresis 170 /ordfeminine /guillemotleft /logicalnot /hyphen /registered /macron /degree 178 /twosuperior /threesuperior /acute 182 /paragraph /periodcentered /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf /threequarters /questiondown /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis ] +>> +endobj +58 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F2 +/BaseFont /Times-Roman +/Encoding 59 0 R +/FirstChar 0 +/LastChar 255 +>> +endobj +59 0 obj +<< +/Type /Encoding +/BaseEncoding /MacRomanEncoding +/Differences [ 1 /dotaccent /fi /fl /fraction /hungarumlaut /Lslash /lslash /ogonek /ring 11 /breve /minus 14 /Zcaron /zcaron /caron /dotlessi 30 /grave /quotesingle 39 /quoteright 96 /quoteleft 128 /.notdef /.notdef /quotesinglbase /florin /quotedblbase /ellipsis /dagger /daggerdbl /circumflex /perthousand /Scaron /guilsinglleft /OE /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /quotedblleft /quotedblright /bullet /endash /emdash /tilde /trademark /scaron /guilsinglright /oe /.notdef /.notdef /Ydieresis /.notdef /exclamdown 164 /currency /yen /brokenbar /section /dieresis 170 /ordfeminine /guillemotleft /logicalnot /hyphen /registered /macron /degree 178 /twosuperior /threesuperior /acute 182 /paragraph /periodcentered /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf /threequarters /questiondown /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis ] +>> +endobj +60 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F3 +/BaseFont /Courier +/Encoding 61 0 R +/FirstChar 0 +/LastChar 255 +>> +endobj +61 0 obj +<< +/Type /Encoding +/BaseEncoding /MacRomanEncoding +/Differences [ 1 /dotaccent /fi /fl /fraction /hungarumlaut /Lslash /lslash /ogonek /ring 11 /breve /minus 14 /Zcaron /zcaron /caron /dotlessi 19 /ff /ffi /ffl 30 /grave /quotesingle 39 /quoteright 96 /quoteleft 128 /.notdef /.notdef /quotesinglbase /florin /quotedblbase /ellipsis /dagger /daggerdbl /circumflex /perthousand /Scaron /guilsinglleft /OE /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /quotedblleft /quotedblright /bullet /endash /emdash /tilde /trademark /scaron /guilsinglright /oe /.notdef /.notdef /Ydieresis /.notdef /exclamdown 164 /currency /yen /brokenbar /section /dieresis 170 /ordfeminine /guillemotleft /logicalnot /hyphen /registered /macron /degree 178 /twosuperior /threesuperior /acute 182 /paragraph /periodcentered /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf /threequarters /questiondown /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis ] +>> +endobj +62 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F4 +/BaseFont /Times-Italic +/Encoding 63 0 R +/FirstChar 0 +/LastChar 255 +>> +endobj +63 0 obj +<< +/Type /Encoding +/BaseEncoding /MacRomanEncoding +/Differences [ 1 /dotaccent /fi /fl /fraction /hungarumlaut /Lslash /lslash /ogonek /ring 11 /breve /minus 14 /Zcaron /zcaron /caron /dotlessi 30 /grave /quotesingle 39 /quoteright 96 /quoteleft 128 /.notdef /.notdef /quotesinglbase /florin /quotedblbase /ellipsis /dagger /daggerdbl /circumflex /perthousand /Scaron /guilsinglleft /OE /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /quotedblleft /quotedblright /bullet /endash /emdash /tilde /trademark /scaron /guilsinglright /oe /.notdef /.notdef /Ydieresis /.notdef /exclamdown 164 /currency /yen /brokenbar /section /dieresis 170 /ordfeminine /guillemotleft /logicalnot /hyphen /registered /macron /degree 178 /twosuperior /threesuperior /acute 182 /paragraph /periodcentered /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf /threequarters /questiondown /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis ] +>> +endobj +64 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F5 +/BaseFont /Helvetica-Bold +/Encoding 65 0 R +/FirstChar 0 +/LastChar 255 +>> +endobj +65 0 obj +<< +/Type /Encoding +/BaseEncoding /MacRomanEncoding +/Differences [ 0 /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND 127 /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /space /ND 164 /currency /yen /brokenbar /section /dieresis 170 /multiply /guillemotleft /logicalnot /hyphen /registered /ND /degree 178 /twosuperior /threesuperior /acute 182 /paragraph /periodcentered /cedilla /onesuperior /divide /guillemotright /onequarter /onehalf /threequarters /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /ND /underscoredbl /afii57664 /afii57665 /afii57666 /afii57667 /afii57668 /afii57669 /afii57670 /afii57671 /afii57672 /afii57673 /afii57674 /afii57675 /afii57676 /afii57677 /afii57678 /afii57679 /afii57680 /afii57681 /afii57682 /afii57683 /afii57684 /afii57685 /afii57686 /afii57687 /afii57688 /afii57689 /afii57690 /ND /ND /ND /ND /ND ] +>> +endobj +66 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F6 +/BaseFont /Helvetica +/Encoding 67 0 R +/FirstChar 0 +/LastChar 255 +>> +endobj +67 0 obj +<< +/Type /Encoding +/BaseEncoding /MacRomanEncoding +/Differences [ 39 /quoteright 45 /minus 96 /quoteleft 128 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent /dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron /space /exclamdown 164 /currency /yen /brokenbar /section /dieresis 170 /ordfeminine /guillemotleft /logicalnot /hyphen /registered /macron /degree 178 /twosuperior /threesuperior /acute 182 /paragraph /periodcentered /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf /threequarters /questiondown /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis ] +>> +endobj +68 0 obj +<< +/CreationDate (Mon Feb 19 10:00:41 2001) +/Producer (PStill 1.52 by F.Siegert frank@this.net) +/Title (LNCS_RBF_dvi) +>> +endobj +69 0 obj +4499 +endobj +70 0 obj +5323 +endobj +71 0 obj +193 +endobj +72 0 obj +144 +endobj +73 0 obj +154 +endobj +74 0 obj +123 +endobj +75 0 obj +66 +endobj +76 0 obj +92 +endobj +77 0 obj +104 +endobj +78 0 obj +6753 +endobj +79 0 obj +61 +endobj +80 0 obj +164 +endobj +81 0 obj +165 +endobj +82 0 obj +136 +endobj +83 0 obj +53 +endobj +84 0 obj +133 +endobj +85 0 obj +111 +endobj +86 0 obj +4963 +endobj +87 0 obj +28 +endobj +88 0 obj +30 +endobj +89 0 obj +65 +endobj +90 0 obj +28 +endobj +91 0 obj +154 +endobj +92 0 obj +5266 +endobj +93 0 obj +187 +endobj +94 0 obj +332 +endobj +95 0 obj +188 +endobj +96 0 obj +174 +endobj +97 0 obj +193 +endobj +98 0 obj +144 +endobj +99 0 obj +5257 +endobj +100 0 obj +163 +endobj +101 0 obj +5413 +endobj +102 0 obj +37 +endobj +103 0 obj +5914 +endobj +104 0 obj +27 +endobj +105 0 obj +217 +endobj +106 0 obj +8308 +endobj +107 0 obj +159 +endobj +108 0 obj +4748 +endobj +xref +0 109 +0000000000 65535 f +0000000015 00000 n +0000000112 00000 n +0000000158 00000 n +0000000306 00000 n +0000000345 00000 n +0000000367 00000 n +0000000519 00000 n +0000005111 00000 n +0000005494 00000 n +0000010910 00000 n +0000011310 00000 n +0000011661 00000 n +0000012022 00000 n +0000012352 00000 n +0000012625 00000 n +0000012924 00000 n +0000013235 00000 n +0000013541 00000 n +0000020388 00000 n +0000020656 00000 n +0000021027 00000 n +0000021400 00000 n +0000021744 00000 n +0000022005 00000 n +0000022346 00000 n +0000022665 00000 n +0000022951 00000 n +0000028008 00000 n +0000028244 00000 n +0000028481 00000 n +0000028754 00000 n +0000028990 00000 n +0000029352 00000 n +0000029768 00000 n +0000035128 00000 n +0000035523 00000 n +0000036063 00000 n +0000036459 00000 n +0000036841 00000 n +0000037242 00000 n +0000037594 00000 n +0000037867 00000 n +0000043218 00000 n +0000043590 00000 n +0000044031 00000 n +0000049539 00000 n +0000049785 00000 n +0000050148 00000 n +0000056157 00000 n +0000056391 00000 n +0000056817 00000 n +0000057178 00000 n +0000065581 00000 n +0000065949 00000 n +0000066192 00000 n +0000071035 00000 n +0000071161 00000 n +0000072660 00000 n +0000072787 00000 n +0000074286 00000 n +0000074409 00000 n +0000075925 00000 n +0000076053 00000 n +0000077552 00000 n +0000077682 00000 n +0000078780 00000 n +0000078905 00000 n +0000080227 00000 n +0000080364 00000 n +0000080385 00000 n +0000080406 00000 n +0000080426 00000 n +0000080446 00000 n +0000080466 00000 n +0000080486 00000 n +0000080505 00000 n +0000080524 00000 n +0000080544 00000 n +0000080565 00000 n +0000080584 00000 n +0000080604 00000 n +0000080624 00000 n +0000080644 00000 n +0000080663 00000 n +0000080683 00000 n +0000080703 00000 n +0000080724 00000 n +0000080743 00000 n +0000080762 00000 n +0000080781 00000 n +0000080800 00000 n +0000080820 00000 n +0000080841 00000 n +0000080861 00000 n +0000080881 00000 n +0000080901 00000 n +0000080921 00000 n +0000080941 00000 n +0000080961 00000 n +0000080982 00000 n +0000081003 00000 n +0000081025 00000 n +0000081045 00000 n +0000081067 00000 n +0000081087 00000 n +0000081108 00000 n +0000081130 00000 n +0000081151 00000 n +trailer +<< +/Size 109 +/Root 1 0 R +/Info 68 0 R +>> +startxref +81173 +%%EOF diff --git a/parallel/search.ps b/parallel/search.ps new file mode 100644 index 0000000..3b5be1c --- /dev/null +++ b/parallel/search.ps @@ -0,0 +1,2298 @@ +%!PS-Adobe-3.0 +%%Creator: groff version 1.17.2 +%%CreationDate: Wed Sep 4 21:51:42 2002 +%%DocumentNeededResources: font Times-Roman +%%DocumentSuppliedResources: procset grops 1.17 2 +%%Pages: 27 +%%PageOrder: Ascend +%%Orientation: Portrait +%%EndComments +%%BeginProlog +%%BeginResource: procset grops 1.17 2 +/setpacking where{ +pop +currentpacking +true setpacking +}if +/grops 120 dict dup begin +/SC 32 def +/A/show load def +/B{0 SC 3 -1 roll widthshow}bind def +/C{0 exch ashow}bind def +/D{0 exch 0 SC 5 2 roll awidthshow}bind def +/E{0 rmoveto show}bind def +/F{0 rmoveto 0 SC 3 -1 roll widthshow}bind def +/G{0 rmoveto 0 exch ashow}bind def +/H{0 rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def +/I{0 exch rmoveto show}bind def +/J{0 exch rmoveto 0 SC 3 -1 roll widthshow}bind def +/K{0 exch rmoveto 0 exch ashow}bind def +/L{0 exch rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def +/M{rmoveto show}bind def +/N{rmoveto 0 SC 3 -1 roll widthshow}bind def +/O{rmoveto 0 exch ashow}bind def +/P{rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def +/Q{moveto show}bind def +/R{moveto 0 SC 3 -1 roll widthshow}bind def +/S{moveto 0 exch ashow}bind def +/T{moveto 0 exch 0 SC 5 2 roll awidthshow}bind def +/SF{ +findfont exch +[exch dup 0 exch 0 exch neg 0 0]makefont +dup setfont +[exch/setfont cvx]cvx bind def +}bind def +/MF{ +findfont +[5 2 roll +0 3 1 roll +neg 0 0]makefont +dup setfont +[exch/setfont cvx]cvx bind def +}bind def +/level0 0 def +/RES 0 def +/PL 0 def +/LS 0 def +/MANUAL{ +statusdict begin/manualfeed true store end +}bind def +/PLG{ +gsave newpath clippath pathbbox grestore +exch pop add exch pop +}bind def +/BP{ +/level0 save def +1 setlinecap +1 setlinejoin +72 RES div dup scale +LS{ +90 rotate +}{ +0 PL translate +}ifelse +1 -1 scale +}bind def +/EP{ +level0 restore +showpage +}bind def +/DA{ +newpath arcn stroke +}bind def +/SN{ +transform +.25 sub exch .25 sub exch +round .25 add exch round .25 add exch +itransform +}bind def +/DL{ +SN +moveto +SN +lineto stroke +}bind def +/DC{ +newpath 0 360 arc closepath +}bind def +/TM matrix def +/DE{ +TM currentmatrix pop +translate scale newpath 0 0 .5 0 360 arc closepath +TM setmatrix +}bind def +/RC/rcurveto load def +/RL/rlineto load def +/ST/stroke load def +/MT/moveto load def +/CL/closepath load def +/FL{ +currentgray exch setgray fill setgray +}bind def +/BL/fill load def +/LW/setlinewidth load def +/RE{ +findfont +dup maxlength 1 index/FontName known not{1 add}if dict begin +{ +1 index/FID ne{def}{pop pop}ifelse +}forall +/Encoding exch def +dup/FontName exch def +currentdict end definefont pop +}bind def +/DEFS 0 def +/EBEGIN{ +moveto +DEFS begin +}bind def +/EEND/end load def +/CNT 0 def +/level1 0 def +/PBEGIN{ +/level1 save def +translate +div 3 1 roll div exch scale +neg exch neg exch translate +0 setgray +0 setlinecap +1 setlinewidth +0 setlinejoin +10 setmiterlimit +[]0 setdash +/setstrokeadjust where{ +pop +false setstrokeadjust +}if +/setoverprint where{ +pop +false setoverprint +}if +newpath +/CNT countdictstack def +userdict begin +/showpage{}def +}bind def +/PEND{ +clear +countdictstack CNT sub{end}repeat +level1 restore +}bind def +end def +/setpacking where{ +pop +setpacking +}if +%%EndResource +%%IncludeResource: font Times-Roman +grops begin/DEFS 1 dict def DEFS begin/u{.001 mul}bind def end/RES 72 +def/PL 792 def/LS false def/ENC0[/asciicircum/asciitilde/Scaron/Zcaron +/scaron/zcaron/Ydieresis/trademark/quotesingle/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/space/exclam/quotedbl/numbersign/dollar/percent +/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen +/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon +/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O +/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/circumflex +/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y +/z/braceleft/bar/braceright/tilde/.notdef/quotesinglbase/guillemotleft +/guillemotright/bullet/florin/fraction/perthousand/dagger/daggerdbl +/endash/emdash/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/hungarumlaut +/dotaccent/breve/caron/ring/ogonek/quotedblleft/quotedblright/oe/lslash +/quotedblbase/OE/Lslash/.notdef/exclamdown/cent/sterling/currency/yen +/brokenbar/section/dieresis/copyright/ordfeminine/guilsinglleft +/logicalnot/minus/registered/macron/degree/plusminus/twosuperior +/threesuperior/acute/mu/paragraph/periodcentered/cedilla/onesuperior +/ordmasculine/guilsinglright/onequarter/onehalf/threequarters +/questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE +/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex +/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis +/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn +/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla +/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis +/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash +/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]def +/Times-Roman@0 ENC0/Times-Roman RE +%%EndProlog +%%Page: 1 1 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 11/Times-Roman@0 SF(Abstract)72 96 Q .758(This paper describes a hi\ +gh-performance parallel tree search algorithm that uses Dynamic T)72 120 +R .757(ree Splitting)-.385 F .412 +(\(DTS\) to search alpha/beta minimax g)72 132 R .412 +(ame trees, speci\214cally those for the g)-.055 F .413(ame of chess.) +-.055 F .413(This algorithm)5.913 F(di)72 144 Q .843 +(vides the search tree among se)-.275 F -.165(ve)-.275 G .842 +(ral processors on a shared memory parallel machine.).165 F .842 +(This paper dis-)6.342 F .997(cusses the follo)72 156 R .997 +(wing topics:)-.275 F .997(\(1\) the DTS algorithm, \(2\) ho)6.497 F +3.747(wt)-.275 G .998(he tree is di)-3.747 F .998 +(vided into parallel pieces that)-.275 F .509(can be searched in parall\ +el; \(3\) performance results of the algorithm and \(4\) analysis of th\ +e results to see)72 168 R(where further impro)72 180 Q -.165(ve)-.165 G +(ments might occur).165 E(..)-.605 E 2.75(1. Introduction.)72 204 R(Ov) +72 228 Q 1.11(er the past ten years, high performance computer architec\ +tural designers ha)-.165 F 1.44 -.165(ve t)-.22 H 1.11 +(urned to parallel pro-).165 F .027(cessing to push the performance en) +72 240 R -.165(ve)-.44 G .026(lope to higher and higher le).165 F -.165 +(ve)-.275 G 2.776(ls. Unfortunately).165 F 2.776(,f)-.715 G .026(or man) +-2.776 F 2.776(ya)-.165 G(lgorithms)-2.776 E 1.533 +(in general, and the alpha/beta algorithm in particular)72 252 R 4.283 +(,p)-.44 G 1.533(arallel processing of)-4.283 F 1.534 +(fers a substantial hurdle to)-.275 F -.165(ex)72 264 S +(tracting maximum performance from parallel machines.).165 E 1.81(The a\ +lpha/beta algorithm is based on a highly sequential property of searchi\ +ng that depends on prior)72 288 R(kno)72 300 Q 3.431(wledge to pre)-.275 +F -.165(ve)-.275 G 3.431(nt searching parts of the g).165 F 3.432 +(ame tree that ha)-.055 F 3.762 -.165(ve n)-.22 H 6.182(ob).165 G 3.432 +(earing on the \214nal results)-6.182 F 4.909([Knuth75,Hyatt89]. Since) +72 312 R 4.908(ap)4.908 G 2.158(arallel search tra)-4.908 F -.165(ve) +-.22 G 2.158(rses parts of the tree "simultaneously" such a priori).165 +F(kno)72 324 Q 6.478(wledge is not al)-.275 F -.11(wa)-.11 G 6.478(ys a) +.11 F -.275(va)-.22 G 6.478 +(ilable [Campbell81,Hyatt88,Hyatt89,Hsu90,Lindstrom83,Marsland85,).275 F +(Popo)72 336 Q(wich83,Schaef)-.275 E(fer89,man)-.275 E 2.75(yo)-.165 G +(thers].)-2.75 E 1.814(The best-kno)72 360 R 1.814 +(wn early attempt at searching such trees in parallel w)-.275 F 1.813 +(as the Principal V)-.11 F 1.813(ariation Splitting)-1.221 F 4.248(\(PV\ +S\) algorithm [Hyatt86,Marsland80,Marsland81, Marsland82,Marsland86,Ne) +72 372 R(wborn85,Schaef)-.275 E(fer89].)-.275 E .062(This w)72 384 R +.062(as both simple to understand and easy to implement.)-.11 F .061 +(When starting an N-ply search, one processor)5.561 F .553 +(generates the mo)72 396 R -.165(ve)-.165 G 3.303(sa).165 G 3.303(tt) +-3.303 G .553(he root position, mak)-3.303 F .553(es the \214rst mo)-.11 +F .883 -.165(ve \()-.165 H .553 +(leading to what is often referred to as the).165 F .086 +(left-most descendent position\), then generates the mo)72 408 R -.165 +(ve)-.165 G 2.836(sa).165 G 2.836(tp)-2.836 G .086(ly=2, mak)-2.836 F +.086(es the \214rst mo)-.11 F .416 -.165(ve a)-.165 H -.055(ga).165 G +.086(in, and contin-).055 F .115(ues this until reaching ply=N.)72 420 R +.115(At this point, the processor pool searches all of the mo)5.615 F +-.165(ve)-.165 G 2.865(sa).165 G 2.866(tt)-2.865 G .116 +(his ply \(N\) in)-2.866 F .42(parallel, and the best v)72 432 R .42 +(alue is back)-.275 F .419(ed up to ply N-1.)-.11 F(No)5.919 E 3.169(wt) +-.275 G .419(hat the lo)-3.169 F .419(wer bound for ply N-1 is kno)-.275 +F .419(wn, the)-.275 F .328(rest of the mo)72 444 R -.165(ve)-.165 G +3.078(sa).165 G 3.078(tN)-3.078 G .329 +(-1 are searched in parallel, and the best v)-3.078 F .329(alue ag)-.275 +F .329(ain back)-.055 F .329(ed up to N-2.)-.11 F .329(This contin-) +5.829 F .464(ues until the \214rst root mo)72 456 R .794 -.165(ve h) +-.165 H .464(as been searched and the v).165 F .464(alue is kno)-.275 F +3.214(wn. The)-.275 F .464(remainder of the root mo)3.214 F -.165(ve) +-.165 G(s).165 E .4(are searched in parallel, until none are left.)72 +468 R .4(The ne)5.9 F .4 +(xt iteration is started and the process repeats for depth)-.165 F(N+1.) +72 480 Q .048 +(Performance analysis with this algorithm \(PVS\) produced speedups gi) +72 504 R -.165(ve)-.275 G 2.797(nb).165 G(elo)-2.797 E 2.797(wi)-.275 G +2.797(nt)-2.797 G .047(able 1 [Hyatt88] \(oth-)-2.797 F 1.112(ers ha)72 +516 R 1.442 -.165(ve p)-.22 H 1.112(roduced results v).165 F 1.113 +(ery similar to this\).)-.165 F 1.113(Clearly the performance curv)6.613 +F 3.863(ei)-.165 G 3.863<738d>-3.863 G 1.113(attened badly on the)-3.863 +F .23(upper end, and the C90 with 16 processors and the T90 with 32 are\ + not going to perform as well as might)72 528 R 1.231(be e)72 540 R +1.231(xpected, although the)-.165 F 3.981(ya)-.165 G 1.231 +(re certainly v)-3.981 F 1.231(ery f)-.165 F 3.981(ast. An)-.11 F 1.231 +(upper bound of 5X \(maybe\) does not look v)3.981 F(ery)-.165 E +(attracti)72 552 Q -.165(ve)-.275 G 2.75(,h).165 G -.275(ow)-2.75 G +-2.365 -.275(ev e).275 H 2.75(r[).275 G(Hyatt88].)-2.75 E EP +%%Page: 2 2 +%%BeginPageSetup +BP +%%EndPageSetup +.44 LW 414.465 88.75 197.534 88.75 DL/F0 11/Times-Roman@0 SF 2.75(#p) +203.034 98 S 17.875(rocessors 1)-2.75 F 24.75(248)24.75 G(16)-2.75 E +414.465 102.75 197.534 102.75 DL 32.384(speedup 1.0)203.034 112 R 13.75 +(1.9 3.4 5.4 6.0)16.5 F 414.465 116.75 197.534 116.75 DL 386.965 102.75 +386.965 116.75 DL 356.715 102.75 356.715 116.75 DL 326.465 102.75 +326.465 116.75 DL 296.215 102.75 296.215 116.75 DL 265.965 102.75 +265.965 116.75 DL 414.465 88.75 414.465 116.75 DL 197.534 88.75 197.534 +116.75 DL 386.965 88.75 386.965 116.75 DL 356.715 88.75 356.715 116.75 +DL 326.465 88.75 326.465 116.75 DL 296.215 88.75 296.215 116.75 DL +265.965 88.75 265.965 116.75 DL -.88(Ta)233.427 140.2 S +(ble 1 PVS performance results).88 E 1.656 +(This approach has a couple of f)72 164.2 R 1.656(airly ob)-.11 F 1.656 +(vious dra)-.165 F 4.406(wbacks. First,)-.165 F 1.656 +(notice that all of the processors w)4.406 F(ork)-.11 E .724 +(together at a single node, searching descendent positions in parallel.) +72 176.2 R .725(If the number of possible mo)6.224 F -.165(ve)-.165 G +3.475(si).165 G(s)-3.475 E .368 +(small, or the number of processors is lar)72 188.2 R .368(ge, some ha) +-.198 F .698 -.165(ve n)-.22 H .368(othing to do.).165 F .368(Second, e) +5.868 F -.165(ve)-.275 G .368(ry branch from a gi).165 F -.165(ve)-.275 +G(n).165 E .492(position does not produce a tree of equal size, since s\ +ome branches may gro)72 200.2 R 3.242(wi)-.275 G .492 +(nto complicated positions)-3.242 F .988 +(with lots of checks and search e)72 212.2 R .988(xtensions that mak) +-.165 F 3.738(et)-.11 G .988(he tree v)-3.738 F .988(ery lar)-.165 F +.987(ge, while other branches gro)-.198 F 3.737(wi)-.275 G(nto)-3.737 E +.84(simple positions that are searched quickly)72 224.2 R 6.34(.T)-.715 +G .84(his leads to a load balancing problem where one processor)-6.34 F +(be)72 236.2 Q .312(gins searching a v)-.165 F .312(ery lar)-.165 F .312 +(ge tree and the others \214nish the easy mo)-.198 F -.165(ve)-.165 G +3.062(sa).165 G .312(nd ha)-3.062 F .641 -.165(ve t)-.22 H 3.061(ow).165 +G .311(ait for the remaining)-3.171 F(processor to slo)72 248.2 Q +(wly tra)-.275 E -.165(ve)-.22 G(rse the tree.).165 E .235 +(This second problem is a serious dra)72 272.2 R .235 +(wback, because with a reasonable number of processors, the speedup) +-.165 F .092(can look v)72 284.2 R .092(ery bad if most of the time man) +-.165 F 2.842(yo)-.165 G 2.842(ft)-2.842 G .092(he processors are w) +-2.842 F .092(aiting on one last node to be completed)-.11 F(before the) +72 296.2 Q 2.75(yc)-.165 G(an back up to ply N-1 and start to w)-2.75 E +(ork there.)-.11 E .271(Because of this, when we \214rst mo)72 320.2 R +-.165(ve)-.165 G 3.021(dC).165 G .272 +(ray Blitz to the eight processor Cray YMP)-3.021 F 3.022(,w)-1.221 G +3.022(ed)-3.022 G(isco)-3.022 E -.165(ve)-.165 G .272(red that the).165 +F 2.067(performance w)72 332.2 R 2.067(as only mar)-.11 F 2.067 +(ginally better than it w)-.198 F 2.067(as on the four processor XMP) +-.11 F 4.817(,i)-1.221 G 4.817(fy)-4.817 G 2.067(ou discount the)-4.817 +F(impro)72 344.2 Q -.165(ve)-.165 G 4.166(dc).165 G 1.416 +(lock speed of each YMP processor)-4.166 F 6.916(.T)-.605 G 1.416 +(he \214rst approach we de)-6.916 F -.165(ve)-.275 G 1.417(loped w).165 +F 1.417(as called Enhanced)-.11 F 6.409(Principal V)72 356.2 R 6.409(ar\ +iation Splitting \(EPVS\) and is also pretty easy to understand and imp\ +lement)-1.221 F 3.843([Hyatt88,Hyatt89]. EPVS)72 368.2 R 1.093 +(simply notices whene)3.843 F -.165(ve)-.275 G 3.843(rap).165 G 1.093 +(rocessor at a node runs out of w)-3.843 F 3.843(ork. When)-.11 F(this) +3.843 E 1.711(happens, assuming there are M processors w)72 380.2 R +1.711(orking, we kno)-.11 F 4.461(wt)-.275 G 1.711(hat there are no) +-4.461 F 4.461(wM)-.275 G 1.71(-1 \(or less\) acti)-4.461 F -.165(ve) +-.275 G 1.684(branches remaining.)72 392.2 R 1.685 +(EPVS immediately stops all processors \(which are w)7.185 F 1.685 +(orking at ply P)-.11 F 4.435(,t)-1.221 G 1.685(he current)-4.435 F .419 +(position\) and follo)72 404.2 R .419 +(ws the \214rst remaining ply=P branch tw)-.275 F 3.168(op)-.11 G .418 +(lies and then splits the tree at that point with)-3.168 F 2.751(ap)72 +416.2 S .001(arallel search e)-2.751 F .001(xactly lik)-.165 F 2.751(et) +-.11 G .001(he old PVS idea.)-2.751 F .002(The bene\214t is that no) +5.501 F 2.752(wa)-.275 G .002(ll processors are w)-2.752 F .002 +(orking together)-.11 F .187 +(on a single branch at a node where there is little w)72 428.2 R .187 +(ork, and ha)-.11 F .517 -.165(ve s)-.22 H .187(tepped do).165 F .186 +(wn into the tree to a node with)-.275 F .633(more mo)72 440.2 R -.165 +(ve)-.165 G 3.383(st).165 G 3.383(os)-3.383 G .633(earch, and also a no\ +de where the descendent trees will be smaller since this node is tw) +-3.383 F(o)-.11 E .581(plies deeper in the tree.)72 452.2 R .581 +(It should be noted that this is ef)6.081 F(fecti)-.275 E .911 -.165 +(ve b)-.275 H .58(ecause the transposition table stores the).165 F .231 +(partial results from the searches that are stopped, so that when these\ + branches are searched later)72 464.2 R 2.982(,t)-.44 G .232(he w)-2.982 +F(ork)-.11 E .789 +(is not repeated because the information is found in the table.)72 476.2 +R .788(In case you might w)6.289 F .788(onder wh)-.11 F 3.538(yt)-.055 G +.788(he search)-3.538 F .165(steps further into the tree tw)72 488.2 R +2.915(op)-.11 G .165(lies, rather than one, recall that with alpha/beta\ +, if one ply \(P\) requires that)-2.915 F .2(all mo)72 500.2 R -.165(ve) +-.165 G 2.95(sb).165 G 2.95(es)-2.95 G .2(earched, then the ne)-2.95 F +.199(xt ply \(P+1\) only requires that one mo)-.165 F .529 -.165(ve b) +-.165 H 2.949(es).165 G .199(earched to produce a refu-)-2.949 F 1.168 +(tation \(e)72 512.2 R 1.168(xcept for the case of PV nodes where no mo) +-.165 F -.165(ve)-.165 G 3.918(sh).165 G -2.475 -.22(av e)-3.918 H 1.168 +(yet been searched.\))4.138 F 1.169(Therefore, since we)6.669 F(kno)72 +524.2 Q 3.385(wt)-.275 G .634(hat we are going to e)-3.385 F .634 +(xamine all nodes at P \(since we just back)-.165 F .634 +(ed up the PVS algorithm to ply P\),)-.11 F .847(we kno)72 536.2 R 3.597 +(wt)-.275 G .847(hat all nodes at ply P+2 will most lik)-3.597 F .848 +(ely ha)-.11 F 1.178 -.165(ve t)-.22 H 3.598(ob).165 G 3.598(es)-3.598 G +.848(earched as well, so long as we choose a)-3.598 F(reasonable mo)72 +548.2 Q .33 -.165(ve a)-.165 H 2.75(tp).165 G(ly=P+1.)-2.75 E EP +%%Page: 3 3 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 11/Times-Roman@0 SF 1.83(Performance analysis with this algorithm \ +\(EPVS\) produced speedups that were modest impro)72 96 R -.165(ve)-.165 +G(ments).165 E -.165(ove)72 108 S 3.435(rP).165 G .685(VS, as gi)-3.435 +F -.165(ve)-.275 G 3.435(ni).165 G 3.435(nt)-3.435 G .685(able 2 belo) +-3.435 F 4.865 -.715(w. T)-.275 H .685(his is roughly 20% f).715 F .685 +(aster than PVS on lar)-.11 F .686(ger numbers of proces-)-.198 F .285 +(sors, from the results belo)72 120 R 1.715 -.715(w, b)-.275 H .284(ut \ +the 8 and 16 processor times still are disappointing, and the 32 proces\ +sor).495 F 1.229(results w)72 132 R 1.23(ould be abysmal.)-.11 F +(Clearly)6.73 E 3.98(,ab)-.715 G 1.23 +(etter algorithm had to be found, or we were going to see a v)-3.98 F +(ast)-.275 E(amount of unused processing po)72 144 Q +(wer on future Cray computers [Hyatt88].)-.275 E .44 LW 414.465 164.95 +197.534 164.95 DL 2.75(#p)203.034 174.2 S 17.875(rocessors 1)-2.75 F +24.75(248)24.75 G(16)-2.75 E 414.465 178.95 197.534 178.95 DL 32.384 +(speedup 1.0)203.034 188.2 R 13.75(1.9 3.4 5.4 6.0)16.5 F 414.465 192.95 +197.534 192.95 DL 386.965 178.95 386.965 192.95 DL 356.715 178.95 +356.715 192.95 DL 326.465 178.95 326.465 192.95 DL 296.215 178.95 +296.215 192.95 DL 265.965 178.95 265.965 192.95 DL 414.465 164.95 +414.465 192.95 DL 197.534 164.95 197.534 192.95 DL 386.965 164.95 +386.965 192.95 DL 356.715 164.95 356.715 192.95 DL 326.465 164.95 +326.465 192.95 DL 296.215 164.95 296.215 192.95 DL 265.965 164.95 +265.965 192.95 DL -.88(Ta)230.067 216.4 S +(ble 2 EPVS performance results).88 E 2.75(2. Dynamic)72 240.4 R -.385 +(Tr)2.75 G(ee Splitting algorithm \(DTS\)).385 E .595(Before describing\ + the DTS algorithm in detail, one important point needs e)72 264.4 R +3.345(xplanation. This)-.165 F .595(algorithm is)3.345 F .457(speci\214\ +cally designed for a shared memory multiprocessor architecture.)72 276.4 +R .457(As a result, issues that other pro-)5.957 F 1.152 +(grams and programmers ha)72 288.4 R 1.482 -.165(ve t)-.22 H 3.902(of) +.165 G 1.152(ace \(distrib)-4.012 F 1.152 +(uted transposition tables, killer mo)-.22 F -.165(ve)-.165 G 1.151 +(s, history information).165 F .099 +(and such\) are not an issue here at all.)72 300.4 R .1 +(Some of the decisions in the DTS design w)5.6 F .1(ould lik)-.11 F .1 +(ely cause signi\214-)-.11 F 1.014 +(cant problems on a message-passing architecture, no matter ho)72 312.4 +R 3.764(wf)-.275 G 1.014(ast the communication channel might)-3.874 F +3.479(be. On)72 324.4 R .729(the Cray)3.479 F 3.479(,w)-.715 G .73 +(hich has an absolutely astounding cpu-to-memory bandwidth, mo)-3.479 F +.73(ving a me)-.165 F -.055(ga)-.165 G .73(byte of).055 F 1.693 +(data tak)72 336.4 R 1.693(es v)-.11 F 1.692(ery little time at all, wh\ +ich simply means that in this algorithm, communication costs are)-.165 F +(al)72 348.4 Q -.11(wa)-.11 G .037(ys assumed to be zero.).11 F .037 +(An assumption that w)5.537 F .037(ould f)-.11 F .037 +(ail on other architectures of course, b)-.11 F .038(ut one which)-.22 F +.664(certainly af)72 360.4 R .663 +(fected decisions made while designing the DTS algorithm as well.)-.275 +F .663(It turns out that loading a)6.163 F .649("\215ag w)72 372.4 R +.649(ord" \(which indicates that there is some parallel-processing rela\ +ted task to perform\) and testing it)-.11 F(can be b)72 384.4 Q +(uried in the instruction stream so that the)-.22 E 2.75(yc)-.165 G +(ause no delays at all.j)-2.75 E(2.1 The DTS approach)72 408.4 Q .446 +(In analyzing the pre)72 432.4 R .446(vious tw)-.275 F 3.196(oa)-.11 G +.446(lgorithms, the)-3.196 F 3.196(yb)-.165 G .445(oth suf)-3.196 F .445 +(fer from tw)-.275 F 3.195(od)-.11 G .445(istinct problems:)-3.195 F +.445(\(1\) all processors)5.945 F -.11(wo)72 444.4 S .152 +(rk together at a single node, which is acceptable for middle-g).11 F +.152(ames with 35+ le)-.055 F -.055(ga)-.165 G 2.903(lm).055 G -.165 +(ove)-2.903 G 2.903(s\().165 G -2.475 -.22(av e)-2.903 H .153(rage\), b) +.22 F(ut)-.22 E .175(which does not look attracti)72 456.4 R .505 -.165 +(ve i)-.275 H 2.925(ne).165 G(nd-g)-2.925 E .175 +(ames where the number of le)-.055 F -.055(ga)-.165 G 2.925(lm).055 G +-.165(ove)-2.925 G 2.925(si).165 G 2.925(sm)-2.925 G .175(uch smaller;) +-2.925 F .175(\(2\) if one)5.675 F .366(processor selects a mo)72 468.4 +R .696 -.165(ve t)-.165 H .367(hat leads to a v).165 F .367(ery b)-.165 +F(ush)-.22 E 3.117(yt)-.055 G .367 +(ree, the other processors might end up w)-3.117 F .367(aiting for an) +-.11 F -.165(ex)72 480.4 S .324(tended period before that tree is compl\ +eted, producing long periods where most processors are w).165 F(aiting,) +-.11 E .251(and greatly de)72 492.4 R .251 +(grading parallel performance.)-.165 F .252(The DTS algorithm w)5.752 F +.252(as speci\214cally de)-.11 F -.165(ve)-.275 G .252(loped to a).165 F +-.22(vo)-.22 G .252(id both).22 F(of these problems.)72 504.4 Q .192 +(The \214rst design goal in de)72 528.4 R -.165(ve)-.275 G .191 +(loping the DTS algorithm w).165 F .191 +(as to completely eliminate the cases where a pro-)-.11 F .365(cessor w) +72 540.4 R .366(as idle, with no mo)-.11 F -.165(ve)-.165 G 3.116(sl) +.165 G .366(eft to search, while other processors were b)-3.116 F(usy) +-.22 E 5.866(.I)-.715 G 3.116(na)-5.866 G .366(ccomplishing this, it) +-3.116 F .848(became ob)72 552.4 R .848(vious that the \214rst step w) +-.165 F .847(as to disassociate all of the processors, so there w)-.11 F +.847(as no requirement)-.11 F(that the)72 564.4 Q 2.75(ya)-.165 G +(ll congre)-2.75 E -.055(ga)-.165 G(te at a single node and w).055 E +(ork together searching mo)-.11 E -.165(ve)-.165 G 2.75(su).165 G +(ntil all were completed.)-2.75 E EP +%%Page: 4 4 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 11/Times-Roman@0 SF 2.554(Note that there are alternati)72 96 R +2.884 -.165(ve w)-.275 H 2.554(ays to k).055 F 2.554(eep processors b) +-.11 F(usy)-.22 E 5.304(,b)-.715 G 2.555(esides trying to ha)-5.304 F +2.885 -.165(ve t)-.22 H 2.555(hem all w).165 F(ork)-.11 E(together)72 +108 Q 6.366(.O)-.605 G .866(ne such approach w)-6.366 F .866 +(as used in Phoenix [Schaef)-.11 F .865(fer89], and used tw)-.275 F +3.615(os)-.11 G .865(eparate search engines,)-3.615 F 1.058 +(one a full chess program, the other \(called Minix\) w)72 120 R 1.059 +(as a material-only searcher that searched deeper to)-.11 F .424 +(con\214rm/reject mo)72 132 R -.165(ve)-.165 G 3.174(sp).165 G .424 +(roposed by the full chess program.)-3.174 F(Ob)5.923 E .423 +(viously there is duplicate w)-.165 F .423(ork done in this)-.11 F .88 +(approach, as well as other problems related to choosing a mo)72 144 R +1.21 -.165(ve t)-.165 H 3.63(op).165 G .881 +(lay when the positional search says)-3.63 F .604(play X, b)72 156 R +.604(ut the tactical search says "no.")-.22 F .603 +(This sort of speculati)6.103 F .933 -.165(ve c)-.275 H .603 +(omputing, which is an admission that).165 F .541 +(additional processors w)72 168 R(on')-.11 E 3.291(ts)-.198 G .541 +(peed up the basic search, w)-3.291 F .542(as deemed too inef)-.11 F +.542(\214cient and inef)-.275 F(fecti)-.275 E .872 -.165(ve t)-.275 H +3.292(oc).165 G(on-)-3.292 E(sider)72 180 Q 2.75(,a)-.44 G +(nd something better w)-2.75 E(as desired.)-.11 E 2.554 +(The second design goal w)72 204 R 2.553(as to a)-.11 F -.22(vo)-.22 G +2.553(id completely ripping Cray Blitz apart, ef).22 F(fecti)-.275 E +-.165(ve)-.275 G 2.553(ly starting from).165 F .994(scratch; rather)72 +216 R 3.744(,w)-.44 G 3.744(ew)-3.744 G .994(anted to use the same mo) +-3.854 F 1.324 -.165(ve g)-.165 H .995 +(enerator code, tree search code, mo).165 F 1.325 -.165(ve o)-.165 H +.995(rdering code,).165 F(and so forth for both a one-processor sequent\ +ial program and the multi-processing v)72 228 Q(ersion.)-.165 E 3.071 +(As)72 252 S .321(imple e)-3.071 F .321(xplanation of DTS is f)-.165 F +.321(airly easy to understand, b)-.11 F .321 +(ut it also hides a great deal of comple)-.22 F .321(xity that)-.165 F +1.565(has to be o)72 264 R -.165(ve)-.165 G 1.565 +(rcome when writing and deb).165 F 1.565(ugging the code.)-.22 F 1.566 +(At the be)7.066 F 1.566(ginning of a ne)-.165 F 4.316(wi)-.275 G 1.566 +(teration, DTS)-4.316 F(beha)72 276 Q -.165(ve)-.22 G 3.594(sj).165 G +.844(ust lik)-3.594 F 3.594(eP)-.11 G .844(VS, searching do)-3.594 F +.843 +(wn the left-hand side of the tree from ply=1 up to ply=N, with only) +-.275 F .789(one processor)72 288 R 6.289(.A)-.605 G 3.539(tp)-6.289 G +.789(ly=N, all processors "join the party" and search the ply=N mo) +-3.539 F 1.119 -.165(ve l)-.165 H .789(ist in parallel, just).165 F(lik) +72 300 Q 3.346(eP)-.11 G 3.345(VS/EPVS. Ho)-3.346 F(we)-.275 E -.165(ve) +-.275 G 1.475 -.44(r, w).165 H .595(hen a processor completes the mo).44 +F .925 -.165(ve i)-.165 H 3.345(ti).165 G 3.345(ss)-3.345 G .595 +(earching, and disco)-3.345 F -.165(ve)-.165 G .595(rs there are).165 F +(no more to be searched, DTS reacts to this.)72 312 Q .802(This idle pr\ +ocessor broadcasts \(using shared memory\) that it is idle, and is a)72 +336 R -.275(va)-.22 G .802(ilable to "help" an).275 F 3.552(yo)-.165 G +(ther)-3.552 E .514(processor \214nish searching its tree.)72 348 R .514 +(The b)6.014 F .513 +(usy processors collect the "state of the tree" data, and store it in) +-.22 F 1.558(shared memory for the idle processor to e)72 360 R 4.308 +(xamine. This)-.165 F 1.558 +(idle processor analyzes this data, and decides)4.308 F .057 +(which \(if an)72 372 R .057(y\) of the b)-.165 F .057 +(usy processors seems to ha)-.22 F .386 -.165(ve a t)-.22 H .056 +(ree that is complicated enough that it w).165 F .056(ould be ef)-.11 F +<8c2d>-.275 E .591(cient to help with the search.)72 384 R .592(If such\ + a position is found, the idle processor informs the processor which) +6.092 F -.275(ow)72 396 S(ns that node of this and the).275 E 2.75(y") +-.165 G(join" forces.)-2.75 E 2.07 -.88(To a)72 420 T .31(ccomplish thi\ +s, the idle processor speci\214cally chooses a ply=S position and tells\ + the o).88 F .309(wner that S has)-.275 F .767 +(been chosen as the split-point ply)72 432 R 6.267(.T)-.715 G .768 +(he processor with that subtree in progress then copies the complete) +-6.267 F .008(tree state to a shared memory area called a "split block"\ + \(this tree state includes the v)72 444 R .008(arious search bounds,) +-.275 F(mo)72 456 Q 1.498 -.165(ve l)-.165 H 1.169(ists for each ply un\ +der analysis, current board position and other related search data such\ + as the).165 F .745(repetition list and so forth\).)72 468 R .745 +(Both processors can no)6.245 F 3.494(we)-.275 G .744(xtract mo)-3.659 F +-.165(ve)-.165 G 3.494(sf).165 G .744 +(rom this shared data and search in)-3.494 F 2.92(parallel. Whene)72 480 +R -.165(ve)-.275 G 2.92(ro).165 G .17(ne runs out of w)-2.92 F .171 +(ork, it simply repeats this process.)-.11 F .171 +(In some cases, we might see tw)5.671 F(o)-.11 E .794 +(processors split the tree at ply=8, then one runs out of w)72 492 R +.793(ork, and decides that the other one has the best)-.11 F .401 +(split candidate, and the)72 504 R 3.151(yt)-.165 G .401 +(hen split at ply=10.)-3.151 F .401(The \214rst might run out of w)5.901 +F .402(ork at that split point, and help)-.11 F .586(the other at a ne) +72 516 R 3.336(ws)-.275 G .586(plit point at ply=12.)-3.336 F .586 +(Or it might bail out completely and choose to help another pro-)6.086 F +(cessor)72 528 Q 3.713(,s)-.44 G .964(ince going deeper and deeper spli\ +tting the tree means that each subtree searched is smaller and)-3.713 F +(smaller)72 540 Q 4.25(,a)-.44 G 1.5(nd e)-4.25 F -.165(ve)-.275 G 1.5 +(ntually the tw).165 F 4.25(op)-.11 G 1.5 +(rocessors might spend as much time splitting and sharing as the)-4.25 F +4.249(yd)-.165 G(o)-4.249 E +(searching \(more about this possible condition later)72 552 Q(.\))-.605 +E .893(The o)72 576 R -.165(ve)-.165 G .893(rall ef).165 F .893(fect of\ + this is that the processors start together on a single node, searching\ + in parallel, b)-.275 F(ut)-.22 E EP +%%Page: 5 5 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 11/Times-Roman@0 SF(the)72 96 Q 2.75(yq)-.165 G +(uickly spread out in groups o)-2.75 E -.165(ve)-.165 G 2.75(rt).165 G +(he acti)-2.75 E .33 -.165(ve t)-.275 H +(ree, helping at points where there is w).165 E(ork to be done.)-.11 E +(No)72 120 Q 3.518(wt)-.275 G .768(he ne)-3.518 F .768(xt issue.)-.165 F +.767(Notice that as a processor becomes idle, it can re-split the same \ +tree it w)6.268 F .767(as sharing)-.11 F .561(with another processor)72 +132 R 3.311(,b)-.44 G .561(ut so f)-3.531 F(ar)-.11 E 3.311(,o)-.44 G +.561(nly at deeper plies.)-3.311 F(Wh)6.061 E 3.311(yi)-.055 G 3.311(st) +-3.311 G 3.311(his? Because)-3.311 F .562(it is inef)3.311 F .562 +(\214cient to back up)-.275 F 1.604(to ply N-1 and search branches ther\ +e before ply=N has been completely searched \(remember the \214rst)72 +144 R .033(ply=N split node is a PV node just lik)72 156 R 2.783(eP)-.11 +G .033(VS, and we don')-2.783 F 2.783(tw)-.198 G .033(ant to start w) +-2.893 F .034(orking on ply N-1, until we ha)-.11 F -.165(ve)-.22 G +2.388(the actual score for ply=N\).)72 168 R(Ho)7.888 E(we)-.275 E -.165 +(ve)-.275 G 3.267 -.44(r, e).165 H -.165(ve).165 G(ntually).165 E 5.137 +(,t)-.715 G 2.387(he trees can')-5.137 F 5.137(tb)-.198 G 5.137(ef) +-5.137 G 2.387(urther sub-di)-5.137 F 2.387(vided an)-.275 F 5.137(yf) +-.165 G(urther)-5.137 E .003(because the cost of doing so w)72 180 R +.003(ould be more than the cost of searching the subtree.)-.11 F(No) +5.503 E 2.754(wac)-.275 G .004(ritical decision)-2.754 F +(has to be made, "what to do ne)72 192 Q(xt?")-.165 E .389 +(Since we are using the best-kno)72 216 R .389(wn mo)-.275 F .719 -.165 +(ve o)-.165 H .389 +(rdering heuristics in the alpha/ beta tree, it is lik).165 F .388 +(ely that by the)-.11 F .641(time the \214rst fe)72 228 R 3.391(wm)-.275 +G -.165(ove)-3.391 G 3.391(sa).165 G 3.391(tp)-3.391 G .641(ly=N ha) +-3.391 F .971 -.165(ve b)-.22 H .641(een searched, we kno).165 F 3.391 +(wt)-.275 G .641(he actual score for this node, as mo)-3.391 F -.165(ve) +-.165 G(s).165 E .092(further do)72 240 R .092(wn the list should be w) +-.275 F .092(orse and not impro)-.11 F .421 -.165(ve t)-.165 H .091 +(he score further).165 F 5.591(.T)-.605 G .091(hen, allo)-5.591 F .091 +(wing idle processors to)-.275 F .276(back up to ply=N-1 and start sear\ +ching there before ply=N is completed is probably safe, and this is wha\ +t)72 252 R .129(DTS does.)72 264 R .128(On the rare occasions when the \ +ply=N search completes, and the last branch produces an e)5.629 F -.165 +(ve)-.275 G(n).165 E 1.475(better score, the processors that ha)72 276 R +1.805 -.165(ve b)-.22 H(ack).165 E 1.475 +(ed up to ply=N-1 already are searching with a less ef)-.11 F(\214cient) +-.275 E 3.062(bound. DTS)72 288 R .312 +(notices this and each processor already searching at N-1 is gi)3.062 F +-.165(ve)-.275 G 3.061(nt).165 G .311(he ne)-3.061 F 3.061(w\()-.275 G +.311(correct\) bound as)-3.061 F .261(soon as it is kno)72 300 R 3.012 +(wn. This)-.275 F .262(sounds easy and clean, b)3.012 F .262 +(ut it can cause some interesting problems, because this)-.22 F(ne)72 +312 Q 3.124(wb)-.275 G .374 +(ound might mean most of what a processor has been b)-3.124 F .374 +(usy doing can be thro)-.22 F .373(wn a)-.275 F -.11(wa)-.165 G 3.123 +(ys).11 G .373(ince the ne)-3.123 F(w)-.275 E(bound w)72 324 Q(ould ha) +-.11 E .33 -.165(ve c)-.22 H(aused a cutof).165 E 2.75(fm)-.275 G +(uch sooner than the original bound used.)-2.75 E .813(The best metapho\ +r for describing this might be "ants at a picnic" where the chess tree \ +is the picnic, and)72 348 R .01 +(the ants are the search engines \(processors\).)72 360 R .01 +(The ants start eating on a lar)5.51 F .009(ge crumb, b)-.198 F .009 +(ut as it is eaten a)-.22 F -.11(wa)-.165 G -.715(y,).11 G 1.623 +(it becomes too small and the ants that are displaced mo)72 372 R 1.953 +-.165(ve t)-.165 H 4.373(oa).165 G 1.623(nother crumb and start w)-4.373 +F 1.624(orking there..)-.11 F(Ev)72 384 Q .551 +(entually lots of ants are congre)-.165 F -.055(ga)-.165 G .551 +(ted around a steadily diminishing supply of crumbs, which brings up) +.055 F(the \214nal phase of the DTS algorithm de)72 396 Q -.165(ve)-.275 +G(lopment.).165 E .137 +(In testing this code, we found, on occasion, a position that w)72 420 R +.137(ould blo)-.11 F 2.887(wu)-.275 G 2.887(pa)-2.887 G .138 +(nd produce search times much)-2.887 F .884(longer than e)72 432 R -.165 +(ve)-.275 G 3.634(nt).165 G .884(he single-processor search.)-3.634 F +-.165(Fo)6.384 G 3.634(re).165 G .884(xample, 1 processor w)-3.799 F +.883(ould tak)-.11 F 3.633(e1m)-.11 G .883(inute to do a 10)-3.633 F +.135(ply search, b)72 444 R .135 +(ut with DTS, out of 5,000 test runs, one run w)-.22 F .136(ould tak) +-.11 F 2.886(e1m)-.11 G .136(inute to do a 5 ply search with 16)-2.886 F +3.074(processors. What)72 456 R .324(we found w)3.074 F .323(as a condi\ +tion we later termed a "feeding frenzy" to maintain the ants anal-)-.11 +F(ogy)72 468 Q 6.533(.W)-.715 G 1.033(hat w)-6.533 F 1.033 +(as happening w)-.11 F 1.033(as that as the tree w)-.11 F 1.033 +(as nearly completed, the search reached a point where)-.11 F .597 +(there were no good "split points".)72 480 R .597(DTS w)6.097 F .597 +(as quite good at recognizing when it w)-.11 F .596 +(as appropriate to split a)-.11 F .084 +(tree into parallel slices and when it w)72 492 R .084(as not.)-.11 F +(Unfortunately)5.584 E 2.834(,i)-.715 G 2.834(tw)-2.834 G .084 +(as not so good at determining when it w)-2.944 F(as)-.11 E +(time to quit checking to see if there were an)72 504 Q 2.75(yg)-.165 G +(ood split points.)-2.75 E .187 +(Imagine a case with 16 processors, with 15 idle, and one w)72 528 R +.186(orking trying to search the last 15 nodes left in)-.11 F .836 +(the entire tree.)72 540 R .836(This one processor k)6.336 F .836 +(eeps getting interrupted with "may I help you?", "can I help you?",) +-.11 F .299("could you use some help there?" and so forth, so that rath\ +er than searching, it stays b)72 552 R .298(usy cop)-.22 F .298 +(ying its tree)-.11 F 1.201(state to shared memory so that the idle pro\ +cessors can attempt to \214nd a split point.)72 564 R(The)6.701 E 3.951 +(yf)-.165 G 1.201(ail, and ask)-4.061 F(ag)72 576 Q 2.159(ain, and ag) +-.055 F 4.909(ain. And)-.055 F 2.158(in a v)4.909 F 2.158(ery fe)-.165 F +4.908(wp)-.275 G 2.158(athological cases, this almost hung the search.) +-4.908 F 3.918 -.88(To s)7.658 H(olv).88 E 4.908(et)-.165 G(his)-4.908 E +EP +%%Page: 6 6 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 11/Times-Roman@0 SF 1.617(problem, which only occurred right at the\ + end of an iteration, we chose to add a "thrashing" counter)72 96 R(,) +-.44 E .202(which w)72 108 R .202(as nothing more than a counter that w) +-.11 F .202(as set to some v)-.11 F .201 +(alue when a processor handled one of those)-.275 F .692 +("may I help you?")72 120 R 3.442(queries. Until)6.192 F .693 +(that processor searched N nodes \(N w)3.442 F .693(as the v)-.11 F .693 +(alue set in the thrashing)-.275 F .754(counter\) it w)72 132 R .753 +(ould refuse to answer an)-.11 F 3.503(ym)-.165 G .753 +(ore "may I help you?")-3.503 F .753 +(queries, which eliminated the thrashing)6.253 F +(right at the end of an iteration.)72 144 Q .818(That is a basic e)72 +168 R .819(xplanation of DTS.)-.165 F(Ho)6.319 E(we)-.275 E -.165(ve) +-.275 G 1.699 -.44(r, t).165 H 3.569(oa).44 G .819(ppreciate e)-3.569 F +.819(xactly ho)-.165 F 3.569(wc)-.275 G(omple)-3.569 E 3.569(xa)-.165 G +.819(nd sophisticated this)-3.569 F -2.365 -.275(ev e)72 180 T .252 +(ntually became, the ne).275 F .252(xt step is to look at some of the s\ +peci\214c components and data structures need to)-.165 F(mak)72 192 Q +3.733(et)-.11 G .983(his algorithm perform.)-3.733 F .983 +(First, we need a couple of de\214nitions to mak)6.483 F 3.734(es)-.11 G +.984(ure terminology does not)-3.734 F(obscure the algorithm.)72 204 Q +2.75(2.2 De\214nitions)72 228 R 1.162(Split-point is a node within the \ +tree where it appears that the search must e)72 252 R 1.161 +(xamine all of the successor)-.165 F 2.791(nodes. The)72 264 R .041(qua\ +lity of a split point is related both to its depth \(nodes closer to th\ +e root of the tree represent)2.791 F(lar)72 276 Q 2.328(ger subtrees an\ +d thus are better split points\) and the con\214dence that all of the b\ +ranches must be)-.198 F 2.091(searched must be high.)72 288 R 2.091(Thi\ +s con\214dence is described in section three which discusses choosing s\ +plit)7.591 F(points.)72 300 Q .48(Branching f)72 324 R .48 +(actor is a measure of the comple)-.11 F .48 +(xity of a position reached in the tree search which character)-.165 F +(-)-.22 E .754(izes this comple)72 336 R .754(xity in terms of the a) +-.165 F -.165(ve)-.22 G .755(rage number of successor branches \(le).165 +F -.055(ga)-.165 G 3.505(lm).055 G -.165(ove)-3.505 G .755 +(s\) from this posi-).165 F 3.902(tion. Chess)72 348 R 1.152(seems to a) +3.902 F -.165(ve)-.22 G 1.152(rage around 38 according to man).165 F +3.902(yp)-.165 G 1.152(ublished papers, b)-3.902 F 1.152 +(ut the number can v)-.22 F(ary)-.275 E +(from zero \(mate or stalemate or dra)72 360 Q +(w\) to around 200 \(with man)-.165 E 2.75(yq)-.165 G +(ueens and an open board.\))-2.75 E 2.75(2.3 The)72 384 R(HELP command) +2.75 E .765 +(The HELP command is the primary signaling mechanism within DTS.)72 408 +R(Whene)6.265 E -.165(ve)-.275 G 3.515(rap).165 G .766 +(rocessor is "out of)-3.515 F -.11(wo)72 420 S +(rk" it sends the HELP command to what is ef).11 E(fecti)-.275 E -.165 +(ve)-.275 G(ly the entire group of acti).165 E .33 -.165(ve p)-.275 H +(rocessors.).165 E .444(The HELP command simply requests that an)72 444 +R 3.194(yp)-.165 G .444(rocessors that are acti)-3.194 F -.165(ve)-.275 +G .443(ly searching subtrees temporarily).165 F(stop, cop)72 456 Q 2.75 +(yt)-.11 G(he "tree state" to shared memory)-2.75 E 2.75(,a)-.715 G +(nd then continue searching.)-2.75 E 1.553 +(As these "tree states" become a)72 480 R -.275(va)-.22 G 1.553 +(ilable, the idle processor that initiated the HELP command analyzes) +.275 F 1.005(each state to determine if it can \214nd a satisf)72 492 R +1.004(actory split point.)-.11 F 1.004 +(If not, it simply re-broadcasts the HELP)6.504 F(command.)72 504 Q .07 +(As will be sho)72 528 R .07(wn later)-.275 F 2.82<2c8c>-.44 G .07 +(nding a split point is non-tri)-2.82 F .071(vial, because it is a k) +-.275 F .401 -.165(ey s)-.11 H .071(tep in the DTS algorithm.).165 F(If) +5.571 E 1.209(an incorrect split point is chosen, then it is lik)72 540 +R 1.208(ely that the processors that start to help at that point are) +-.11 F .175(going to search nodes that are not necessary)72 552 R 2.925 +(,w)-.715 G .175(hich does nothing b)-2.925 F .175 +(ut increase the parallel search o)-.22 F -.165(ve)-.165 G(rhead).165 E +(without making the search progress an)72 564 Q 2.75(yf)-.165 G +(aster through the tree.)-2.86 E EP +%%Page: 7 7 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 11/Times-Roman@0 SF .59(An interesting feature here, is that once a\ + processor \214nds a viable split-point, and the Split\(\) operation is) +72 96 R 1.058(performed, whene)72 108 R -.165(ve)-.275 G 3.808(ra).165 G +1.388 -.165(ny o)-3.808 H 1.058(ther processor becomes idle, the).165 F +3.808(yc)-.165 G 1.058(heck for acti)-3.808 F 1.388 -.165(ve s)-.275 H +1.058(plit-points before broad-).165 F 1.037(casting a HELP command.)72 +120 R 1.036(If a processor locates an)6.537 F 3.786(yv)-.165 G 1.036 +(alid split points, and there is w)-4.061 F 1.036(ork remaining at)-.11 +F(an)72 132 Q 3.258(yo)-.165 G 3.258(ft)-3.258 G .508 +(hem, it simply attaches to the split point with the most w)-3.258 F +.509(ork remaining, and does not broadcast a)-.11 F 1.445(help command.) +72 144 R 1.444(This tends to k)6.944 F 1.444(eep the processors w)-.11 F +1.444(orking together in related parts of the tree, which)-.11 F(mak)72 +156 Q .521(es the transposition table and scoring hash tables more ef) +-.11 F(fecti)-.275 E .851 -.165(ve s)-.275 H .521 +(ince the information is more useful).165 F .101 +(among closely related positions.)72 168 R(Ho)5.601 E(we)-.275 E -.165 +(ve)-.275 G .981 -.44(r, i).165 H 2.851(fap).44 G .101 +(rocessor becomes idle, and \214nds no split-point with w)-2.851 F(ork) +-.11 E .665(remaining, it does initiate a HELP command and goes about \ +\214nding a ne)72 180 R 3.416(ws)-.275 G 3.416(plit-point. Other)-3.416 +F(processors)3.416 E .956(will lik)72 192 R .956 +(ely join it at that split point as the)-.11 F 3.706(yb)-.165 G .956 +(ecome idle.)-3.706 F .955 +(Another reason for doing this is that \214nding a)6.456 F .34 +(split point tak)72 204 R .34 +(es time, and once a good one has been located, there')-.11 F 3.09(sn) +-.605 G 3.09(op)-3.09 G .34(oint in locating another until the)-3.09 F +1.863 +(\214rst one has been completed, or at least until there are no more mo) +72 216 R -.165(ve)-.165 G 4.613(sl).165 G 1.863 +(eft at that point that can be)-4.613 F 1.086 +(searched by idle processors.)72 228 R 1.086(In the v)6.586 F 1.087 +(ery w)-.165 F 1.087 +(orst case, with N processors each split point could ha)-.11 F 1.417 +-.165(ve t)-.22 H -.11(wo).165 G .177(processors w)72 240 R .177 +(orking, if the tree is v)-.11 F .176(ery narro)-.165 F 4.356 -.715 +(w. I)-.275 H 2.926(nt).715 G .176(he optimal case, which is f)-2.926 F +.176(airly common in the middle-)-.11 F -.055(ga)72 252 S 1.416 +(me, there are rarely more than one or tw).055 F 4.166(os)-.11 G 1.416 +(plit points, the \214rst is nearly completed, and the second)-4.166 F +(\(ne)72 264 Q +(w\) split point is where each processor goes when it runs out of w) +-.275 E(ork at the original split point.)-.11 E 2.078 -.88(To p)72 288 T +.318(rocess the HELP command, a simple test w).88 F .317 +(as added to the sequential search code.)-.11 F .317(After an)5.817 F +3.067(yn)-.165 G .317(ode is)-3.067 F .91(processed, HELP\(i\) is check) +72 300 R .911(ed, and if set, the tree state is copied to shared memory) +-.11 F 3.661(,t)-.715 G .911(he \215ag is cleared,)-3.661 F .888 +(and the search continues normally)72 312 R 6.388(.T)-.715 G .887 +(his reduces the idle time for a processor to the time required for a) +-6.388 F .712(processor to search one node and return to the top of Sea\ +rch\(\) and then store the "tree state" for the idle)72 324 R .982 +(processor to e)72 336 R 3.732(xamine. \(About)-.165 F .981 +(30 microseconds on a Cray C90.\))3.732 F .981 +(After this time, an idle processor will)6.481 F(ha)72 348 Q .33 -.165 +(ve a)-.22 H 2.75(tl).165 G(east one tree state to e)-2.75 E +(xamine for split points, making this reasonably ef)-.165 E(\214cient.) +-.275 E 1.001(While it sounds lik)72 372 R 3.751(eal)-.11 G 1.001 +(ot of w)-3.751 F 1.001(ait time could accumulate, man)-.11 F 3.751(yt) +-.165 G 1.001(ests on a C90 ha)-3.751 F 1.332 -.165(ve c)-.22 H 1.002 +(on\214rmed that this).165 F -.11(wa)72 384 S .232(it time is ne).11 F +2.982(gligible. In)-.165 F .231(searching for 5-6 minutes of w)2.982 F +.231(all-clock time, typical idle times \(per processor\))-.11 F -2.475 +-.22(av e)72 396 T .566(rage between .01 seconds and .1 seconds.).22 F +.566(On rare occasions \(notably v)6.066 F .566(ery simple endg)-.165 F +.567(ame positions)-.055 F .666(where the branching f)72 408 R .666 +(actor is quite lo)-.11 F .665 +(w\) this has reached one second per processor)-.275 F 3.415(,s)-.44 G +.665(till k)-3.415 F .665(eeping the idle)-.11 F .882 +(time per processor do)72 420 R .882 +(wn to less than .3% of the total search time.)-.275 F .883 +(One major reason for this is that the)6.383 F .279 +(code which selects split points is v)72 432 R .279(ery careful, and f) +-.165 F -.22(avo)-.11 G .279 +(rs nodes near the root of the tree, because the sub-).22 F 1.307 +(trees belo)72 444 R 4.057(wt)-.275 G 1.307 +(hose nodes represent a signi\214cant amount of w)-4.057 F 1.307 +(ork that must be completed before another)-.11 F .703 +(split point must be found.)72 456 R .703 +(The only time that processors are idle is while the)6.203 F 3.452(ya) +-.165 G .702(re w)-3.452 F .702(aiting on other pro-)-.11 F .573 +(cessors to pro)72 468 R .573 +(vide tree state information to one idle processor)-.165 F 3.324(,o)-.44 +G 3.324(rw)-3.324 G .574(hile the)-3.324 F 3.324(ya)-.165 G .574(re w) +-3.324 F .574(aiting on one idle pro-)-.11 F .071 +(cessor to select a split point.)72 480 R .071(If this e)5.571 F -.165 +(ve)-.275 G .071(nt is relati).165 F -.165(ve)-.275 G .07 +(ly rare, as it typically is in DTS, then the opportunities).165 F +(for accumulating e)72 492 Q(xcessi)-.165 E .33 -.165(ve i)-.275 H +(dle time are fe).165 E 2.75(wa)-.275 G(nd f)-2.75 E(ar between.)-.11 E +2.75(2.4 The)72 516 R(Split\(\) operation.)2.75 E .315 +(Split\(\) is called whene)72 540 R -.165(ve)-.275 G 3.065(ra).165 G +3.065(ni)-3.065 G .315 +(dle processor has one or more "tree state" blocks to e)-3.065 F .316 +(xamine when attempt-)-.165 F .267(ing to \214nd a split-point.)72 552 R +.266(Split\(\) \214rst attempts to \214nd a good split point \(section \ +three\) and then sets things)5.767 F(up so that the Select\(\) operatio\ +n described later can function correctly)72 564 Q(.)-.715 E EP +%%Page: 8 8 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 11/Times-Roman@0 SF .557(The \214rst operation performed after a go\ +od split-point is located is to allocate a data structure kno)72 96 R +.557(wn as a)-.275 F 1.231(SPLIT BLOCK.)72 108 R 1.23 +(This data structure is simply an e)6.731 F 1.23 +(xact duplicate of the tree search data structures that)-.165 F .028 +(already e)72 120 R .029(xist in each processor')-.165 F 2.779(sl)-.605 +G .029(ocal memory area.)-2.779 F .029(It contains the v)5.529 F .029 +(arious mo)-.275 F .359 -.165(ve l)-.165 H .029 +(ists, board information,).165 F(scoring information, etc.)72 132 Q .265 +(The Split\(\) operation then copies ALL of the current processor')72 +156 R 3.015(sl)-.605 G .265(ocal tree state information to the SPLIT) +-3.015 F 3.208(BLOCK. \(ALL)72 168 R .458 +(here means that if the current ply is \214v)3.208 F 3.208(e\()-.165 G +.458(5\), then all of the data for plies 1-5 are copied,)-3.208 F -.22 +(bu)72 180 S 4.901(tn).22 G 2.151(ot all of the useless data belo)-4.901 +F 4.901(wp)-.275 G 2.151(ly 5.)-4.901 F 2.151(Note that EVER)7.651 F +2.15(YTHING is copied, so that this global)-.715 F .806 +(\(shared\) memory area has an e)72 192 R .807(xact cop)-.165 F 3.557 +(yo)-.11 G 3.557(ft)-3.557 G .807(he current processor')-3.557 F 3.557 +(ss)-.605 G .807(earch data structures.)-3.557 F .807(It w)6.307 F .807 +(ould no)-.11 F(w)-.275 E .026(be possible for this processor to e)72 +204 R .026(xit, and another processor could cop)-.165 F 2.776(yt)-.11 G +.026(his global data to its pri)-2.776 F -.275(va)-.275 G .025(te mem-) +.275 F .497(ory area and resume the search just as if it were the origi\ +nal processor since it no)72 216 R 3.247(ww)-.275 G .497(ould ha)-3.357 +F .827 -.165(ve a)-.22 H .497(ccess to).165 F -2.365 -.275(ev e)72 228 T +.406(rything the original processor had.).275 F 3.156(\(Note: Cray)5.906 +F .406(Blitz w)3.156 F .405(as written before F)-.11 F .405 +(ortran supported recursion,)-.165 F 1.075 +(and as a result, it did not use the no)72 240 R 3.825(wi)-.275 G 3.825 +(nv)-3.825 G 1.075(ogue "ne)-4.045 F -.055(ga)-.165 G 1.075 +(max" recursi).055 F 1.405 -.165(ve a)-.275 H 1.075 +(lpha/beta search implementation.).165 F .118(As a result, there w)72 +252 R .118(as no problem in implementing the parallel search as e)-.11 F +2.868(xplained. Ne)-.165 F -.055(ga)-.165 G .117(max w).055 F .117 +(ould ha)-.11 F -.165(ve)-.22 G 1.058(made it much more dif)72 264 R +1.058(\214cult, since the call stack is inaccessible to the search code\ + and mo)-.275 F 1.059(ving the tree)-.165 F(state around w)72 276 Q +(ould ha)-.11 E .33 -.165(ve b)-.22 H(een much more dif).165 E +(\214cult [Pearl80].\))-.275 E .733(The Split\(\) operation then passes\ + the address of this SPLIT BLOCK to an)72 300 R 3.483(yp)-.165 G .733 +(rocessors that are currently)-3.483 F .224(idle, so that the)72 312 R +2.974(ym)-.165 G .224(ay be)-2.974 F .224(gin w)-.165 F .224 +(orking at this point immediately)-.11 F 5.725(.T)-.715 G .225 +(he idle processors drop out of their b)-5.725 F(usy)-.22 E -.11(wa)72 +324 S 1.109(it loop since the).11 F 3.859(yn)-.165 G 1.659 -.275(ow h) +-3.859 H -2.475 -.22(av e).275 H 3.859(ap)4.079 G 1.108(ointer to a v) +-3.859 F 1.108(alid SPLIT BLOCK rather than a v)-.275 F 1.108 +(alue of "zero".)-.275 F(The)6.608 E(y)-.165 E(must \214rst cop)72 336 Q +2.75(yt)-.11 G(he global data to their pri)-2.75 E -.275(va)-.275 G +(te memory area, and then be).275 E(gin searching at that point.)-.165 E +.258(The primary reason for cop)72 360 R .258 +(ying ALL of the "splitting" processor')-.11 F 3.009(sd)-.605 G .259 +(ata to the shared memory re)-3.009 F .259(gion is to)-.165 F -.22(avo) +72 372 S 1.046(id an).22 F 3.796(yt)-.165 G 1.045(ype of synchronizatio\ +n delays after searching all branches from the split-point.)-3.796 F +1.045(The speci\214c)6.545 F .607(problem addressed is that the "contro\ +lling" processor \(the one splitting w)72 384 R .608 +(ork for other processors to help)-.11 F .548 +(with\) might choose a branch that is v)72 396 R .548 +(ery simple with a minimum number of nodes and \214nish this branch) +-.165 F .902(quite quickly)72 408 R 6.402(.A)-.715 G .902 +(nother processor might choose a branch that has man)-6.402 F 3.653(yc) +-.165 G .903(hecks and/or search e)-3.653 F(xtensions)-.165 E 1.666 +(and requires an e)72 420 R 1.666(xtended amount of time to search.) +-.165 F 1.666(The controlling processor w)7.166 F 1.665 +(ould often \214nd itself)-.11 F -.11(wa)72 432 S .673 +(iting on other processors to complete their searches and return the v) +.11 F .674(alues for their subtrees before the)-.275 F +(controlling processor could back up the proper v)72 444 Q(alue.)-.275 E +-.44(Wi)72 468 S .375(th the current implementation, this ne).44 F -.165 +(ve)-.275 G 3.125(rh).165 G 3.125(appens. Since)-3.125 F .375 +(ALL processors ha)3.125 F .705 -.165(ve a c)-.22 H .375(omplete cop) +.165 F 3.125(yo)-.11 G 3.125(ft)-3.125 G(he)-3.125 E .694 +(search data, an)72 480 R 3.444(yo)-.165 G 3.444(ft)-3.444 G .694(hem i\ +s capable of \214nishing the search of the nodes in the tree after the \ +split-point is)-3.444 F 2.751(completed. F)72 492 R .001(or e)-.165 F +.001(xample, processor 1 can search from plies 1 through 5 and then ano\ +ther processor selects)-.165 F 1.294(ply=5 as a split-point.)72 504 R +1.295(Processor 2 joins the search at this split-point and selects a br\ +anch to e)6.794 F(xamine.)-.165 E .455(Processor 1 completes the remain\ +der of the branches at this split-point and then sends a HELP command)72 +516 R 1.552 +(to processor 2 so that it can help with the remainder of the comple)72 +528 R 4.303(xb)-.165 G 1.553(ranch processor 2 is searching.)-4.303 F +1.018(When the search \214nally backs up to ply=1, EITHER processor \(b) +72 540 R 1.018(ut not both\) could be in char)-.22 F 1.017(ge of the) +-.198 F .019 +(search at that point; it depends on which one \214nishes \214rst.)72 +552 R .019(In simple terms, this is a "peer)5.519 F .02 +(-to-peer" design,)-.22 F(rather than a "master)72 564 Q(-sla)-.22 E +-.165(ve)-.22 G 2.75("d).165 G(esign, so that all processors are equal.) +-2.75 E EP +%%Page: 9 9 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 11/Times-Roman@0 SF .093 +(The nice feature of this approach is that whene)72 96 R -.165(ve)-.275 +G 2.842(rA).165 G .092(NY processor runs out of w)-2.842 F .092 +(ork at a split-point, it then)-.11 F .49(assists one of the b)72 108 R +.49(usy processors by \214rst sending a HELP command to force the creat\ +ion of a ne)-.22 F 3.241(ws)-.275 G(plit-)-3.241 E .663 +(point where this idle processor can "join in.")72 120 R .663 +(This feature is implemented by a simple rule that pre)6.163 F -.165(ve) +-.275 G(nts).165 E(an)72 132 Q 3.464(yp)-.165 G .714(rocessor from back\ +ing the search up past a split point, unless \(if and only if\) only on\ +e processor is)-3.464 F -.11(wo)72 144 S .181 +(rking on that split point.).11 F .18(The best visual analogy is the g) +5.68 F .18(ame of "leap-frog" where one processor starts)-.055 F .685(o\ +n a position, another helps it, the \214rst \214nishes and "leap-frogs"\ + the second to a position further into the)72 156 R(tree and helps the \ +second processor search at that point, and so forth.)72 168 Q 2.75 +(2.5 The)72 192 R(Select\(\) operation.)2.75 E 1.079(one of the tw)72 +216 R 3.829(og)-.11 G 1.078 +(oals mentioned when designing the DTS algorithm w)-3.829 F 1.078 +(as to a)-.11 F -.22(vo)-.22 G 1.078(id completely re-writing).22 F .307 +(the search code for Cray Blitz.)72 228 R .308 +(This code \(approximately 10,000 lines of FOR)5.807 F .308 +(TRAN, which are replaced)-.66 F .35(by about 20,000 lines of Cray Asse\ +mbly Language [CAL] when running on the C90\) has been de)72 240 R -.165 +(ve)-.275 G(loped).165 E 1.21(and deb)72 252 R 1.21(ugged o)-.22 F -.165 +(ve)-.165 G 3.96(rap).165 G 1.21 +(eriod of years, and altering it signi\214cantly w)-3.96 F 1.211 +(as something the authors w)-.11 F 1.211(anted to)-.11 F -.22(avo)72 264 +S(id if possible since deb).22 E +(ugging the parallel processing code already loomed as a lar)-.22 E +(ge obstacle.)-.198 E -.165(Fo)72 288 S 3.376(rs).165 G(implicity)-3.376 +E 3.376(,t)-.715 G .626(he design retained the original programming met\ +hodology that a processor maintains the)-3.376 F 1.152 +(tree \(subtree, actually\) it is searching by k)72 300 R 1.152 +(eeping all of the related data in local \(pri)-.11 F -.275(va)-.275 G +1.152(te, task common,).275 F(etc.\) memory so that other processors ca\ +n not "change" this information directly)72 312 Q(.)-.715 E(Ho)72 336 Q +(we)-.275 E -.165(ve)-.275 G 1.079 -.44(r, s).165 H .199 +(ince a group of processors must w).44 F .198 +(ork together at some point within the tree, shared memory is)-.11 F +.022(also required to allo)72 348 R 2.772(wt)-.275 G .022 +(his communication.)-2.772 F .022 +(The simple implementation mechanism we chose w)5.522 F .023(as to mod-) +-.11 F(ify the procedure Select\(\) so that it could w)72 360 Q +(ork in this en)-.11 E(vironment.)-.44 E .716 +(Select\(\) is a procedure called to select the ne)72 384 R .715(xt mo) +-.165 F 1.045 -.165(ve a)-.165 H 3.465(tt).165 G .715 +(he current node in the tree.)-3.465 F(Normally)6.215 E 3.465(,i)-.715 G +3.465(te)-3.465 G(xam-)-3.63 E 1.611(ines the mo)72 396 R 1.941 -.165 +(ve l)-.165 H 1.612(ist in the pri).165 F -.275(va)-.275 G 1.612 +(te memory for the current processor and remo).275 F -.165(ve)-.165 G +4.362(so).165 G 1.612(ne of the mo)-4.362 F -.165(ve)-.165 G 4.362(sf) +.165 G(or)-4.362 E -.165(ex)72 408 S 3.946(amination. At).165 F 3.946 +(as)3.946 G 1.196(plit-point, this is slightly more complicated since m\ +ultiple processors are "sharing")-3.946 F(this mo)72 420 Q .33 -.165 +(ve l)-.165 H(ist.).165 E 1.29 +(Select\(\) is unchanged, the only code that w)72 444 R 1.291 +(as modi\214ed w)-.11 F 1.291 +(as the code that actually calls Select\(\) within)-.11 F 2.909 +(Search\(\). Search\(\))72 456 R .159(simply tests to see if the curren\ +t ply is a split point, and if so it copies the shared mo)2.909 F -.165 +(ve)-.165 G .917(list to the local mo)72 468 R 1.248 -.165(ve l)-.165 H +.918(ist, calls Select\(\) to choose one for searching and then remo) +.165 F -.165(ve)-.165 G 3.668(si).165 G 3.668(tf)-3.668 G .918 +(rom the mo)-3.668 F -.165(ve)-.165 G .531 +(list. Search\(\) then copies the local mo)72 480 R .861 -.165(ve l) +-.165 H .53 +(ist back to the shared one \(all protected by a semaphore so that).165 +F .131(no race conditions arise\).)72 492 R .131(If the current ply is \ +not a split point, Select\(\) is simply called normally)5.631 F 5.632 +(.t)-.715 G .132(he fol-)-5.632 F(lo)72 504 Q 1.494(wing code sho)-.275 +F 1.494(ws ho)-.275 F 4.244(wt)-.275 G 1.494(his w)-4.244 F 1.494 +(as implemented.)-.11 F 1.494 +(The major bene\214t here is that Select\(\) is a v)6.994 F 1.493 +(ery lar)-.165 F(ge)-.198 E .6(block of code, that generates mo)72 516 R +-.165(ve)-.165 G .6(s, orders the list, selects mo).165 F -.165(ve)-.165 +G 3.35(sf).165 G .601(rom the list based on things lik)-3.35 F 3.351(ec) +-.11 G(ap-)-3.351 E 1.49(tures and the e)72 528 R 1.49(xpected g)-.165 F +1.49(ain, killer mo)-.055 F -.165(ve)-.165 G 1.49(s, and so forth.).165 +F 1.49(It w)6.99 F 1.49(as considered v)-.11 F 1.489 +(ery desirable to lea)-.165 F 1.819 -.165(ve t)-.22 H(his).165 E +(completely alone, since the assembly v)72 540 Q +(ersion of this module is se)-.165 E -.165(ve)-.275 G +(ral thousand lines long.).165 E(call Select\(\))99.5 564 Q EP +%%Page: 10 10 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 11/Times-Roman@0 SF -.11(wa)72 96 S 2.75(sr).11 G +(eplaced by the follo)-2.75 E(wing lines of code:)-.275 E +(if\(ply .eq. splitl\(taskid\)\) then)99.5 120 Q(call Selget\(\))110.5 +132 Q(call Select\(\))110.5 144 Q(call Selput\(\))110.5 156 Q(else)99.5 +168 Q(call Select\(\))110.5 180 Q(endif)99.5 192 Q .425(In the abo)72 +216 R .755 -.165(ve c)-.165 H .425 +(ode, Selget\(\) sets a semaphore to lock this mo).165 F .755 -.165 +(ve l)-.165 H .425(ist \(there are multiple semaphores so that).165 F +.191(multiple mo)72 228 R .52 -.165(ve l)-.165 H .19(ists can be shared\ + without unnecessary interaction\) and then copies the global mo).165 F +.52 -.165(ve l)-.165 H .19(ist to).165 F .568(the local memory)72 240 R +3.318(.S)-.715 G .568(elect\(\) then operates normally)-3.318 F 6.068 +(.S)-.715 G .568(elput\(\) then copies the mo)-6.068 F .898 -.165(ve l) +-.165 H .569(ist back \(after a mo).165 F -.165(ve)-.165 G +(has been remo)72 252 Q -.165(ve)-.165 G 2.75(df).165 G +(or searching\) and \214nally clears the semaphore.)-2.75 E .752(The v) +72 276 R .751(ector splitl\(taskid\) is set up by the split operation a\ +nd identi\214es the current split point for this pro-)-.165 F .736 +(cessor \(taskid\).)72 288 R .737(It should be noted that this implemen\ +tation is quite good in terms of ef)6.236 F(\214cienc)-.275 E 2.167 +-.715(y, b)-.165 H(ecause).715 E .353(the Selget\(\) \(cop)72 300 R +3.103(ys)-.11 G .352(hared memory to local memory\) and the Selput\(\) \ +\(back to shared memory\) operations)-3.103 F 1.311 +(are rarely used, and on a Cray the)72 312 R 4.061(yv)-.165 G 1.312 +(ectorize quite well and cost v)-4.226 F 1.312(ery little.)-.165 F 1.312 +(Note that this same code)6.812 F -.11(wo)72 324 S .911(rks well withou\ +t parallel processing since Selget\(\) and Selput\(\) are ne).11 F -.165 +(ve)-.275 G 3.661(rc).165 G .911(alled if a Split\(\) operation)-3.661 F +(has not been performed.)72 336 Q 2.75(2.6 The)72 360 R(Mer)2.75 E +(ge\(\) operation.)-.198 E(Whene)72 384 Q -.165(ve)-.275 G 2.897(rap) +.165 G .147(rocessor calls Select\(\) and is told that the mo)-2.897 F +-.165(ve)-.165 G 2.898(sl).165 G .148(ist is empty)-2.898 F 2.898(,t) +-.715 G .148(he \214rst test made by the DTS)-2.898 F .702 +(search algorithm is "is this a split-point?")72 396 R .702 +(If the answer is yes, this processor has computed a v)6.202 F .701 +(alue that)-.275 F .225 +(represents only a subset of the branches from this node.)72 408 R .226 +(The DTS Search no)5.726 F 2.976(wc)-.275 G .226(alls procedure Mer) +-2.976 F .226(ge\(\) to)-.198 F .397(process this partial v)72 420 R +3.147(alue. Mer)-.275 F .396(ge\(\) simply compares the search v)-.198 F +.396(alue from the current partial search with)-.275 F .983 +(the best search v)72 432 R .984(alue for this node yet back)-.275 F +.984(ed up, and remembers the best result.)-.11 F .984 +(It also notes that one)6.484 F 1.367(less processor is w)72 444 R 1.366 +(orking at this split point by decrementing the processor count.)-.11 F +1.366(If this count is no)6.866 F(w)-.275 E -.165(ex)72 456 S .252 +(actly one, the split-point is no longer needed; in this case, Mer).165 +F .252(ge\(\) sends an UNSPLIT command to the)-.198 F +(remaining processor \(described belo)72 468 Q -.715(w.)-.275 G(\)).715 +E .333(After the cleanup is completed via Mer)72 492 R .332 +(ge\(\), the DTS algorithm then returns this processor to its idle loop) +-.198 F .501(where it immediately checks for another split-point to joi\ +n, or else it generates a HELP command to cre-)72 504 R +(ate a split-point.)72 516 Q 2.75(2.7 The)72 540 R +(Unsplit\(\) operation.)2.75 E .076(The ne)72 564 R .076 +(xt-to-last processor w)-.165 F .076(orking on a split point sends an U\ +NSPLIT command to the remaining proces-)-.11 F(sor)72 576 Q 2.818(,w) +-.44 G(hene)-2.818 E -.165(ve)-.275 G 2.818(ri).165 G 2.818<748c>-2.818 +G .068(nds no more w)-2.818 F .068(ork to do at this split point.)-.11 F +.068(The split-point has been completely searched)5.568 F EP +%%Page: 11 11 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 11/Times-Roman@0 SF -.165(ex)72 96 S +(cept for the branch being analyzed by the remaining processor).165 E(.) +-.605 E 2.147(When a processor recei)72 120 R -.165(ve)-.275 G 4.897(sa) +.165 G 4.897(nU)-4.897 G 2.147 +(NSPLIT command, it calls procedure Unsplit\(\) to cleanup the split-) +-4.897 F .221(point\(S\) that ha)72 132 R .551 -.165(ve b)-.22 H .221(e\ +en "almost completed" \(recall that the current processor is STILL sear\ +ching a branch).165 F(at one or more of these e)72 144 Q +(xhausted split-points.\))-.165 E .028(Unsplit\(\) performs tw)72 168 R +2.778(oa)-.11 G 2.778(ctions. The)-2.778 F .028(\214rst action it tak) +2.778 F .027(es is to compare the partial score from the split-point) +-.11 F .42(with its o)72 180 R .42 +(wn partial score for that ply and remember the best one.)-.275 F .42 +(It then deallocates the SPLIT BLOCK)5.92 F .982 +(so that this block can be used whene)72 192 R -.165(ve)-.275 G 3.731 +(ra).165 G .981(nother Split\(\) operation is required.)-3.731 F .981 +(After an Unsplit\(\) opera-)6.481 F(tion, all signs of the pre)72 204 Q +(vious Split\(\) operation are gone.)-.275 E 2.75(2.8 The)72 228 R +(Share\(\) operation.)2.75 E 1.051(Since the ef)72 252 R(\214cienc)-.275 +E 3.801(yo)-.165 G 3.801(ft)-3.801 G 1.051 +(he alpha/beta algorithm directly depends on kno)-3.801 F 1.051 +(wing the best scores back)-.275 F 1.052(ed up)-.11 F 1.525 +(through the tree, whene)72 264 R -.165(ve)-.275 G 4.275(rb).165 G 1.525 +(acking up a ne)-4.275 F 4.274(wb)-.275 G 1.524 +(est score to a split-point ply \(by an)-4.274 F 4.274(yo)-.165 G 4.274 +(ft)-4.274 G 1.524(he processors)-4.274 F -.11(wo)72 276 S +(rking at that split-point\), special action is required.).11 E .971 +(The re)72 300 R .971(gular search procedure Backup\(\) w)-.165 F .972 +(as modi\214ed to check for this condition in the same manner as)-.11 F +1.06(Select\(\) described pre)72 312 R(viously)-.275 E 3.81(,i)-.715 G +3.81(tc)-3.81 G 1.06 +(hecks the SPLITL\(i\) \215ag to determine if it is "w)-3.81 F 1.06 +(orking together" with)-.11 F .182(another processor)72 324 R 5.682(.I) +-.605 G 2.932(fs)-5.682 G .182 +(o, it sends a SHARE command to all processors w)-2.932 F .182 +(orking at this split- point.)-.11 F(These)5.683 E .193 +(processors then call Share\(\) to determine if this ne)72 336 R .193 +(wly back)-.275 F .192(ed up v)-.11 F .192(alue is better than the v) +-.275 F .192(alue in this pro-)-.275 F(cessor')72 348 Q 3.565(ss)-.605 G +3.565(earch. If)-3.565 F .815(so, some quick tests for alpha/beta cutof) +3.565 F .816(fs are made to determine if this ne)-.275 F .816(wly a) +-.275 F -.275(va)-.22 G(il-).275 E(able v)72 360 Q(alue w)-.275 E +(ould prune a)-.11 E -.11(wa)-.165 G 2.75(yp).11 G +(art of the tree currently being searched by this processor)-2.75 E(.) +-.605 E .161(This procedure w)72 384 R .161(as added to address tw)-.11 +F 2.911(op)-.11 G 2.91(roblems. \(1\))-2.911 F .16(When a better v)2.91 +F .16(alue is found at a split-point, ef)-.275 F<8c2d>-.275 E(cienc)72 +396 Q 4.368(yd)-.165 G 1.618(emands that all processors be made a)-4.368 +F -.11(wa)-.165 G 1.619 +(re of it as soon as possible in order to maximize the).11 F .109 +(alpha/beta ef)72 408 R(\214cienc)-.275 E 4.289 -.715(y. \()-.165 H +2.859(2\) W).715 F 2.859(ea)-.88 G .109(nticipated the case where the s\ +earch might create a split-point at a location)-2.859 F .717 +(within the tree where either alpha or beta might be unkno)72 420 R .717 +(wn \(this is the idea of speculati)-.275 F 1.048 -.165(ve s)-.275 H +.718(earching to).165 F -.11(ke)72 432 S .59(ep processors b).11 F .59 +(usy described earlier)-.22 F 3.339(.\) Share\(\))-.605 F .589 +(determines these v)3.339 F .589(alues for the current processor when-) +-.275 F -2.365 -.275(ev e)72 444 T 2.75(rt).275 G(he)-2.75 E 2.75(yb) +-.165 G(ecome a)-2.75 E -.275(va)-.22 G(ilable.).275 E 2.75(3. Choosing) +72 468 R(where to split the tree.)2.75 E 1.027(The most important decis\ +ion that the DTS algorithm frequently addresses is where to split the t\ +ree into)72 492 R 1.083(parallel subtrees.)72 504 R 1.083(If it chooses\ + a good split point, performance is good; if it chooses a poor split po\ +int,)6.583 F(performance suf)72 516 Q(fers.)-.275 E(3.1 Node types PV)72 +540 Q 2.75(,C)-1.419 G(UT and ALL.)-2.75 E 3.097(Knuth and Moore clearl\ +y de\214ned three node classes of nodes within the alpha/beta minimax t\ +ree)72 564 R 4.378([Knut75]. While)72 576 R 1.628(their analysis w)4.378 +F 1.628(as centered on a minimal g)-.11 F 1.627 +(ame-tree with perfect mo)-.055 F 1.957 -.165(ve o)-.165 H 1.627 +(rdering, the).165 F EP +%%Page: 12 12 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 11/Times-Roman@0 SF .386(concepts the)72 96 R 3.136(yp)-.165 G .386 +(resented also apply to "real" alpha/beta trees, e)-3.136 F -.165(ve) +-.275 G 3.136(nt).165 G .386(hough it is impossible to produce per) +-3.136 F(-)-.22 E .611(fect mo)72 108 R .94 -.165(ve o)-.165 H .61 +(rdering [Hyatt89].).165 F .61(In this conte)6.11 F .61 +(xt we use the terminology de)-.165 F -.165(ve)-.275 G .61 +(loped in [Marsland85], which).165 F(uses the terms PV)72 120 Q 2.75(,C) +-1.419 G(UT and ALL instead of type one, tw)-2.75 E 2.75(oa)-.11 G +(nd three.)-2.75 E -.88(Ty)108 144 S .768(pe one \(PV\) nodes.).88 F +.769(The root position is a type one node.)6.268 F .769 +(The \214rst successor)6.269 F .346(of a PV node is also a PV node whil\ +e all other successors of a PV node are CUT)108 156 R 3.17(nodes. PV)108 +168 R .42(nodes require e)3.17 F .421 +(xamination of all their successors.)-.165 F 3.171(AP)5.921 G 3.171(Vn) +-3.171 G .421(ode is easy)-3.171 F .643 +(to recognize, because both alpha and beta are at their original v)108 +180 R .643(alues since noth-)-.275 F(ing has yet been searched.)108 192 +Q -.88(Ty)108 216 S .02(pe tw).88 F 2.77(o\()-.11 G .02(CUT\) nodes.) +-2.77 F 2.771(AC)5.521 G .021 +(UT node is a successor of either a PV node \(as gi)-2.771 F -.165(ve) +-.275 G(n).165 E(abo)108 228 Q -.165(ve)-.165 G 3.434(\)o).165 G 3.433 +(ra)-3.434 G 3.433(nA)-3.433 G .683(LL node.)-3.433 F 3.433(AC)6.183 G +.683(UT node only requires e)-3.433 F .683(xamination of one succes-) +-.165 F .407(sor \(for perfectly ordered g)108 240 R .407(ame trees.\)) +-.055 F .407(This is the node type that we must recog-)5.907 F .99 +(nize and a)108 252 R -.22(vo)-.22 G .989 +(id selecting as a split-point, because with best mo).22 F 1.319 -.165 +(ve o)-.165 H .989(rdering, only).165 F .206 +(one branch needs to be searched, which lea)108 264 R -.165(ve)-.22 G +2.957(sn).165 G 2.957(ow)-2.957 G .207(ork for additional processors,) +-3.067 F(other than w)108 276 Q(ork that is completely unnecessary)-.11 +E(.)-.715 E -.88(Ty)108 300 S 2.43(pe three \(ALL\) nodes.).88 F 2.43 +(An ALL node is a successor of a CUT node and)7.93 F .719(requires e)108 +312 R .72(xamination of all its successor branches.)-.165 F(Ev)6.22 E +.72(en more interesting, mo)-.165 F -.165(ve)-.165 G .335(ordering with\ +in a type three node is completely unimportant and has no ef)108 324 R +.335(fect on)-.275 F 2.053(the total nodes searched.)108 336 R 2.054 +(This is an important node type in a parallel search)7.554 F .806 +(because e)108 348 R -.165(ve)-.275 G .806(ry mo).165 F 1.136 -.165 +(ve m)-.165 H .806(ust be searched, of).165 F .806(fering plenty of w) +-.275 F .805(ork that can be done)-.11 F(in parallel.)108 360 Q 1.164 +(From these de\214nitions, se)72 384 R -.165(ve)-.275 G 1.164 +(ral things become apparent.).165 F 1.164(\(1\) T)6.664 F 1.164 +(ype three \(ALL\) nodes are perfect candi-)-.88 F .276(dates for paral\ +lel searching since all successors must be searched, and the order of t\ +ra)72 396 R -.165(ve)-.22 G .276(rsal for these suc-).165 F .152 +(cessors is unimportant.)72 408 R 2.902(\(2\) T)5.652 F .152(ype tw)-.88 +F 2.902(o\()-.11 G .152(CUT\) nodes must be a)-2.902 F -.22(vo)-.22 G +.153(ided as split points since only one succes-).22 F .225 +(sor must be e)72 420 R 2.975(xamined. If)-.165 F .225 +(such a node is chosen as a split point, e)2.975 F .225 +(xtra branches will be searched, resulting)-.165 F .91(in w)72 432 R .91 +(asted w)-.11 F 3.66(ork. \(3\))-.11 F -.88(Ty)3.66 G .91(pe one \(PV\)\ + nodes appear to be good candidates for parallel search until careful) +.88 F 1.023(study unco)72 444 R -.165(ve)-.165 G 1.023(rs the f).165 F +1.023 +(act that the \214rst successor of a type one node must be completely e) +-.11 F 1.022(xamined before)-.165 F(an)72 456 Q 4.358(yo)-.165 G 4.358 +(ft)-4.358 G 1.608(he other successors.)-4.358 F 1.608(This is required\ + since the \214rst branch establishes a search bound for the)7.108 F +1.174(remainder of the successors, and if the)72 468 R 3.924(ya)-.165 G +1.174(re searched before this bound is kno)-3.924 F 1.174(wn, e)-.275 F +1.174(xtra w)-.165 F 1.174(ork might be)-.11 F(done.)72 480 Q 2.75 +(3.2 Classifying)72 504 R(node types.)2.75 E .563(When a processor gene\ +rates a HELP command, and obtains tree-state data from b)72 528 R .564 +(usy processors, it must)-.22 F .408(\(if possible\) establish a split \ +point so that it \(and other idle processors\) can "join in" and help.) +72 540 R .408(From sec-)5.908 F .39(tion 3.1, it becomes ob)72 552 R .39 +(vious that type ALL nodes mak)-.165 F 3.141(ed)-.11 G .391 +(esirable split points, type PV nodes mak)-3.141 F 3.141(ed)-.11 G(esir) +-3.141 E(-)-.22 E 1.62(able split points AFTER the \214rst successor of\ + the node has been completely searched, and type CUT)72 564 R +(nodes must be a)72 576 Q -.22(vo)-.22 G(ided at all costs.).22 E EP +%%Page: 13 13 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 11/Times-Roman@0 SF 1.52(Cray Blitz contains a function T)72 96 R +1.52(ypeNode\(\), that types an)-.88 F 4.27(yn)-.165 G 1.52 +(ode from ply one to the current ply)-4.27 F 9.771(.t)-.715 G(his)-9.771 +E .574(function is called by function Split\(\) to mak)72 108 R 3.323 +(ea)-.11 G 3.323(ni)-3.323 G .573 +(nitial "guess" of the node types for each ply in the cur)-3.323 F(-) +-.22 E(rent processor')72 120 Q 2.75(ss)-.605 G(earch space.)-2.75 E +.239(It mak)72 144 R .239(es the follo)-.11 F .239(wing assumptions.) +-.275 F .239(If, for the current node being tested, the v)5.739 F .24 +(alues of alpha and beta are)-.275 F .06 +(equal to the initial search windo)72 156 R 1.49 -.715(w, t)-.275 H .06 +(hen this node is a PV node.).715 F .059 +(Otherwise, if the current node is at an odd)5.559 F .683 +(ply and alpha is equal to the lo)72 168 R .684 +(wer initial search bound, or the current node is at an e)-.275 F -.165 +(ve)-.275 G 3.434(np).165 G .684(ly and beta is)-3.434 F +(equal to the upper initial search bound, then the node type is CUT)72 +180 Q 5.5(.F)-.814 G(or all other cases, it is type ALL.)-5.665 E .642 +(Split\(\) uses the abo)72 204 R .971 -.165(ve a)-.165 H .641(lgorithm \ +to set its initial guess for each node type from ply 1 through the curr\ +ent).165 F(ply)72 216 Q 5.915(.N)-.715 G -.165(ex)-5.915 G 3.165(ti).165 +G 3.165(te)-3.165 G .416(nters an "o)-3.165 F -.165(ve)-.165 G .416 +(rride" phase.).165 F .416 +(Split\(\) starts at ply=2 and checks the number of mo)5.916 F -.165(ve) +-.165 G 3.166(st).165 G .416(hat ha)-3.166 F -.165(ve)-.22 G 1.132 +(been zeroed by the search \(the number of mo)72 228 R -.165(ve)-.165 G +3.881(st).165 G 1.131(hat ha)-3.881 F 1.461 -.165(ve a)-.22 H 1.131 +(ctually been searched.\)).165 F -.165(Fo)6.631 G 3.881(ra).165 G 3.881 +(nA)-3.881 G 1.131(LL node,)-3.881 F(man)72 240 Q 3.087(ym)-.165 G -.165 +(ove)-3.087 G 3.087(sa).165 G .338(lready searched increases the "con\ +\214dence" that this is truly an ALL node.)-3.087 F -.165(Fo)5.838 G +3.088(rC).165 G .338(UT nodes,)-3.088 F 1.527(if more than one mo)72 252 +R 1.856 -.165(ve h)-.165 H 1.526 +(as been searched, then the con\214dence for this CUT node is lo).165 F +1.526(wered, since it)-.275 F 1.014 +(should not be necessary to search more than one mo)72 264 R 1.344 -.165 +(ve a)-.165 H -6.513 3.764(ta r).165 H 1.015(eal CUT node.)-3.764 F +1.015(In f)6.515 F 1.015(act, if more than some)-.11 F .361(limit of mo) +72 276 R -.165(ve)-.165 G 3.111(sh).165 G .361(as been e)-3.111 F .361 +(xamined \(currently=3\) then the type for this node is o)-.165 F -.165 +(ve)-.165 G .36(rridden and set to ALL,).165 F .161 +(since it appears that mo)72 288 R .491 -.165(ve o)-.165 H .161 +(rdering has someho).165 F 2.912(wf)-.275 G .162 +(ailed to search the best mo)-3.022 F .492 -.165(ve \214)-.165 H .162 +(rst at some pre).165 F .162(vious ply)-.275 F(.)-.715 E .252 +(After this o)72 312 R -.165(ve)-.165 G .251 +(rride phase, a \214nal simple check is made since it is no).165 F 3.001 +(wp)-.275 G .251(ossible to ha)-3.001 F .581 -.165(ve t)-.22 H .471 -.11 +(wo A).165 H .251(LL nodes on).11 F(successi)72 324 Q .784 -.165(ve p) +-.275 H 3.204(lies. If).165 F .455(this happens, the second ALL node pr\ +obably means that the successor to this node is)3.204 F .306 +(really a CUT node and we are resetting the upper/lo)72 336 R .305 +(wer search bounds after searching a wrong \214rst mo)-.275 F -.165(ve) +-.165 G(some)72 348 Q 3(where. The)-.275 F .25(\214nal o)3 F -.165(ve) +-.165 G .251(rride phase will note the second ALL node, and then force \ +the successor of this).165 F .042 +(node to be type CUT since yet another ALL node can')72 360 R 2.792(tf) +-.198 G(ollo)-2.792 E 2.792(wt)-.275 G .042(his one unless mo)-2.792 F +.371 -.165(ve o)-.165 H .041(rdering is hopelessly).165 F 3.847 +(bad. This)72 372 R 1.097(phase of the o)3.847 F -.165(ve)-.165 G 1.097 +(rride code simply allo).165 F 1.097(ws only tw)-.275 F 3.847(oA)-.11 G +1.097(LL nodes to be consecuti)-3.847 F 1.428 -.165(ve i)-.275 H 3.848 +(nt).165 G 1.098(he tree.)-3.848 F .218 +(After the second ALL node, the ne)72 384 R .218(xt node must be CUT) +-.165 F 2.968(,t)-.814 G .218(he ne)-2.968 F .218(xt ALL, etc.)-.165 F +-.165(Fo)5.718 G 2.968(ra).165 G .218(ll of these o)-2.968 F -.165(ve) +-.165 G .218(rrides the).165 F 1.125(con\214dence is v)72 396 R 1.125 +(ery "lo)-.165 F 1.125(w" and, ag)-.275 F 1.125(ain, the number of mo) +-.055 F -.165(ve)-.165 G 3.875(ss).165 G 1.126 +(earched at each ply is used to impro)-3.875 F 1.456 -.165(ve t)-.165 H +(his).165 E(con\214dence.)72 408 Q .116(This has pro)72 432 R -.165(ve) +-.165 G 2.866(nt).165 G 2.865(ob)-2.866 G 2.865(eac)-2.865 G .115 +(ritical step in the DTS algorithm.)-2.865 F 2.865(Am)5.615 G(istak) +-2.865 E 2.865(eh)-.11 G .115(ere produces se)-2.865 F -.165(ve)-.275 G +.115(re problems later).165 F .657(because the search space is going to\ + increase due to searching branches that the sequential search w)72 444 +R(ould)-.11 E .154(be able to a)72 456 R -.22(vo)-.22 G 2.904(id. The) +.22 F .154(initial estimate w)2.904 F .154(as quite good, b)-.11 F .154 +(ut the o)-.22 F -.165(ve)-.165 G .153(rride phase further impro).165 F +-.165(ve)-.165 G 2.903(dt).165 G .153(he reliabil-)-2.903 F .729 +(ity of choosing a good node for a Split\(\) operation.)72 468 R .73 +(This has been modi\214ed more than an)6.23 F 3.48(yo)-.165 G .73 +(ther part of)-3.48 F .838(the DTS code, because Cray Blitz still \(on \ +occasion\) searches trees in parallel that are much lar)72 480 R .838 +(ger than)-.198 F .15(the same tree searched by only one processor)72 +492 R 5.65(.I)-.605 G 2.9(ft)-5.65 G .151 +(his were 100% accurate, then Cray Blitz w)-2.9 F .151(ould produce)-.11 +F(almost linear speedup as additional processors are added to the searc\ +h.)72 504 Q .599(Others ha)72 528 R .929 -.165(ve t)-.22 H .599 +(ackled this "where to split the tree" in dif).165 F .598(ferent w)-.275 +F .598(ays, and ha)-.11 F .928 -.165(ve p)-.22 H .598 +(roduced interesting results).165 F([Akl82,A)72 540 Q(werb)-1.012 E .569 +(uch85,Baudet78,Feldman90, Feldman93,and others].)-.22 F .57 +(Most all were designed for message-)6.07 F .683 +(passing systems, which made choosing split-points more comple)72 552 R +3.433(xs)-.165 G .683(ince it becomes a serious issue when)-3.433 F 2.09 +(communication costs become a major design consideration.)72 564 R 2.091 +(It should be noted that the only serious)7.59 F .877 +(attempts to control tree search o)72 576 R -.165(ve)-.165 G .877 +(rhead all do so at the e).165 F .877(xpense of synchronization/w)-.165 +F .877(ait penalties.)-.11 F .876(In a)6.376 F EP +%%Page: 14 14 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 11/Times-Roman@0 SF(distrib)72 96 Q .904(uted en)-.22 F .904 +(vironment, this mak)-.44 F .904 +(es a great deal of sense, since the cost of di)-.11 F .904 +(viding a tree into pieces is)-.275 F -.165(ve)72 108 S(ry high.).165 E +(On the Cray architecture, the opposite is true.)5.5 E +(3.3 Choosing a SPLIT ply)72 132 Q .547(The \214rst goal of the Split\(\ +\) procedure is to select an ALL node for splitting since this is the o\ +nly reason-)72 156 R .958(able type of node that w)72 168 R(on')-.11 E +3.708(ta)-.198 G .958(dd an)-3.708 F 3.708(ys)-.165 G .958(earch o) +-3.708 F -.165(ve)-.165 G .958(rhead \(e).165 F .958(xtra nodes.\))-.165 +F .958(Since the o)6.458 F -.165(ve)-.165 G .958(rhead for choosing a) +.165 F .708(SPLIT point is costly)72 180 R 3.457(,am)-.715 G .707(ajor \ +consideration for selecting a split point is to choose a split point th\ +at will)-3.457 F(tak)72 192 Q 3.938(ear)-.11 G 1.188 +(easonable amount of time to search in parallel so Split\(\) w)-3.938 F +(on')-.11 E 3.938(tb)-.198 G 3.939(ei)-3.938 G -2.09 -.44(nv o)-3.939 H +-.11(ke).44 G 3.939(da).11 G -.055(ga)-3.939 G 3.939(in. As).055 F 3.939 +(ag)3.939 G(eneral)-3.939 E .512(rule, nodes at shallo)72 204 R 3.261 +(wd)-.275 G .511(epths represent more w)-3.261 F .511 +(ork than nodes at deep plies, making shallo)-.11 F 3.261(wn)-.275 G +.511(odes desir)-3.261 F(-)-.22 E .486(able split points.)72 216 R .486 +(This can be complicated by at least tw)5.986 F 3.237(of)-.11 G .487 +(eatures of the nodes;)-3.237 F .487(\(1\) the con\214dence of an)5.987 +F .71(ALL node is lo)72 228 R 2.14 -.715(w, m)-.275 H .71(aking it risk) +.715 F 3.46(yt)-.165 G 3.46(os)-3.46 G .709 +(earch it in parallel and possibly introduce e)-3.46 F .709 +(xtra nodes into the tree)-.165 F 1.169 +(search, and \(2\) the node has v)72 240 R 1.169(ery fe)-.165 F 3.919 +(wb)-.275 G 1.169(ranches remaining, so that it will only supply w) +-3.919 F 1.17(ork for a small)-.11 F(number of processors which will fo\ +rce yet another Split\(\) when the remaining processors become idle.)72 +252 Q .461(As can be seen, this is a some)72 276 R .461(what subjecti) +-.275 F .79 -.165(ve d)-.275 H .46 +(ecision, and tuning this code will continue for some time.).165 F .25 +(Other recent modi\214cations to this include questions lik)72 288 R 3 +(e")-.11 G .25(is the king in check at this node?" since this can)-3 F +.26(result in a misleading "w)72 300 R .26(ork estimate.")-.11 F .26 +(Cray Blitz generates pseudo-le)5.76 F -.055(ga)-.165 G 3.009(lm).055 G +-.165(ove)-3.009 G .259(s, and when the king is in).165 F .109 +(check, most of these mo)72 312 R -.165(ve)-.165 G 2.859(sa).165 G .109 +(re, in f)-2.859 F .11(act, ille)-.11 F -.055(ga)-.165 G 2.86(l. If).055 +F .11(these mo)2.86 F -.165(ve)-.165 G 2.86(sa).165 G .11 +(re used to estimate the w)-2.86 F .11(ork to be done at)-.11 F .171 +(this ply)72 324 R 2.921(,ap)-.715 G .17 +(oor SPLIT point will be chosen since man)-2.921 F 2.92(ym)-.165 G -.165 +(ove)-2.92 G 2.92(sa).165 G .17(re a)-2.92 F -.275(va)-.22 G .17 +(ilable, b).275 F .17(ut most will be immediately)-.22 F .332 +(recognized as ille)72 336 R -.055(ga)-.165 G 3.082(lw).055 G .332 +(ith almost no w)-3.082 F .332(ork required to determine this.)-.11 F +(Se)5.833 E -.165(ve)-.275 G .333(ral such features can af).165 F .333 +(fect the)-.275 F 1.625("estimated w)72 348 R 1.625 +(orkload" of a potential split point to mak)-.11 F 4.375(ei)-.11 G 4.375 +(tl)-4.375 G 1.625(ess attracti)-4.375 F -.165(ve)-.275 G 7.125(.A).165 +G 1.625(nother e)-7.125 F 1.624(xample is that the)-.165 F .315 +(search e)72 360 R .316(xtensions used by Cray Blitz at ply=N are af) +-.165 F .316(fected by the e)-.275 F .316 +(xtensions at plies before N in the tree.)-.165 F 1.713 +(The idea is that if something is causing e)72 372 R 1.712 +(xtensions at shallo)-.165 F 4.462(wp)-.275 G 1.712 +(lies, the search should be careful and)-4.462 F -.165(ex)72 384 S .523 +(tend at deeper plies too, to \214nd out what is going on.).165 F .524 +(Therefore, if there are man)6.024 F 3.274(ye)-.165 G .524 +(xtensions before a)-3.439 F .958 +(potential split-point, the subtrees belo)72 396 R 3.708(wt)-.275 G .957 +(hat possible split-point will lik)-3.708 F .957(ely be lar)-.11 F .957 +(ger than normal, a f)-.198 F(act)-.11 E +(that should be considered when choosing from se)72 408 Q -.165(ve)-.275 +G(ral candidate nodes for a split-point.).165 E .309 +(Split\(\) is the single most important function in the DTS algorithm.) +72 432 R .31(When it inadv)5.81 F .31(ertently chooses a CUT)-.165 F +.831(node as a split-point, search o)72 444 R -.165(ve)-.165 G .831 +(rhead increases dramatically).165 F 6.33(.C)-.715 G .83 +(hoosing a PV node potentially increases)-6.33 F 1.145(the search o)72 +456 R -.165(ve)-.165 G 1.146(rhead until the \214rst branch is e).165 F +1.146(xamined and Share\(\) correctly establishes the upper/lo)-.165 F +(wer)-.275 E(search bounds.)72 468 Q 2.75(3.4 Splitting)72 492 R +(at the root)2.75 E .832 +(Splitting the search at the root \(or not\) unco)72 516 R -.165(ve) +-.165 G .832(rs some interesting problems.).165 F .832 +(First, most computer chess)6.332 F .186(programs use the so-called ite\ +rated search where a one ply search is done, then that information is u\ +sed to)72 528 R .137(order the mo)72 540 R -.165(ve)-.165 G 2.887(sf) +.165 G .137(or a tw)-2.887 F 2.887(op)-.11 G .137(ly search, and the in\ +formation from that is used to order a three ply search and)-2.887 F +(so forth.)72 552 Q +(This process is continued until the time allotted for this mo)5.5 E .33 +-.165(ve r)-.165 H(uns out.).165 E 1.096(It should be ob)72 576 R 1.096 +(vious that the reason for doing a "depth+1" search is to \214nd a bett\ +er mo)-.165 F 1.427 -.165(ve t)-.165 H 1.097(han the one).165 F EP +%%Page: 15 15 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 11/Times-Roman@0 SF .85(found from the "depth" search.)72 96 R .849 +(Often, the program does not change its mind from iteration to iteratio\ +n,)6.35 F .347 +(and, in such circumstances, splitting the tree at the root is an e)72 +108 R .347(xcellent idea.)-.165 F .347(After searching the \214rst root) +5.847 F .314(branch completely)72 120 R 3.064(,s)-.715 G .314 +(earching the remainder in parallel introduces almost no o)-3.064 F +-.165(ve)-.165 G .314(rhead \(some arises due to).165 F .768 +(transposition table interaction.\))72 132 R(Ho)6.269 E(we)-.275 E -.165 +(ve)-.275 G 1.649 -.44(r, w).165 H .769(hen the \214rst mo).44 F 1.099 +-.165(ve s)-.165 H .769(earched is not the best, and the program).165 F +.705(ultimately chooses a dif)72 144 R .705(ferent root mo)-.275 F 1.035 +-.165(ve a)-.165 H 3.455(sb).165 G .705 +(est, searching root branches in parallel causes a problem in)-3.455 F +(timed tournament chess g)72 156 Q(ames.)-.055 E .938(From prior analys\ +is [Knuth75,Hyatt88,Hyatt89,Hsu90] the \214rst branch from the root pro\ +duces a subtree)72 180 R .52(much lar)72 192 R .52(ger than the remaind\ +er of the branches \(when the \214rst branch is best.\))-.198 F .519 +(If the program then must)6.019 F .632 +("change its mind" and select a dif)72 204 R .632(ferent mo)-.275 F .962 +-.165(ve a)-.165 H 3.382(sb).165 G .632(est, this mo)-3.382 F .962 -.165 +(ve w)-.165 H .632(ill also produce a much lar).165 F .633(ger subtree) +-.198 F(than the other mo)72 216 Q -.165(ve)-.165 G 2.75(s. This).165 F +("much lar)2.75 E(ger subtree" causes an interesting problem in timed e) +-.198 E -.165(ve)-.275 G(nts.).165 E .148(Consider a case where the sec\ +ond branch is really the one that the "depth+1" search will ultimately \ +select.)72 240 R .816(After searching the \214rst branch \(using parall\ +el processing\) one processor selects the second mo)72 252 R 1.146 -.165 +(ve i)-.165 H 3.566(nt).165 G(he)-3.566 E .346 +(list \(that is really the best mo)72 264 R -.165(ve)-.165 G 3.095(\)a) +.165 G .345(nd starts searching the v)-3.095 F .345(ery lar)-.165 F .345 +(ge subtree it produces.)-.198 F .345(Other processors)5.845 F -.165(ex) +72 276 S .009(amine other root branches that are unimportant.).165 F +.009(If time runs out before the second branch is completely)5.509 F +-.165(ex)72 288 S .389(amined, the \214rst mo).165 F .719 -.165(ve w) +-.165 H .388(ill be chosen, resulting in the program making a w).165 F +.388(orse mo)-.11 F .718 -.165(ve t)-.165 H .388(han it really has).165 +F 2.948(to. An)72 300 R(alternati)2.948 E .528 -.165(ve i)-.275 H 2.949 +(st).165 G 2.949(oh)-2.949 G -2.475 -.22(av e)-2.949 H .199 +(all processors w)3.169 F .199(ork on the \214rst mo)-.11 F -.165(ve) +-.165 G 2.949(,t).165 G .199(hen all processors w)-2.949 F .199 +(ork on the second)-.11 F(mo)72 312 Q -.165(ve)-.165 G 3.6(,a).165 G .85 +(nd so forth.)-3.6 F .849(Then, when a ne)6.349 F 3.599(wb)-.275 G .849 +(est mo)-3.599 F 1.179 -.165(ve i)-.165 H 3.599(ss).165 G .849 +(earched, all processors search it and complete the)-3.599 F +(search before time runs out.)72 324 Q .883(Some might be quick to sugg\ +est that "the search should notice that the un\214nished mo)72 348 R +1.214 -.165(ve h)-.165 H .884(as produced a).165 F(lar)72 360 Q .429 +(ge tree, and is lik)-.198 F .429(ely about to become a ne)-.11 F 3.179 +(wb)-.275 G .429(est, so don')-3.179 F 3.179(tg)-.198 G -2.365 -.275 +(iv e)-3.179 H .428(up until it has been completed.")3.454 F(Ho)5.928 E +(w-)-.275 E -2.365 -.275(ev e)72 372 T 1.181 -.44(r, t).275 H .301 +(here are tw).44 F 3.052(oi)-.11 G .302(ssues with this:)-3.052 F .302 +(\(1\) just because a root mo)5.802 F .632 -.165(ve p)-.165 H .302 +(roduces a tree se).165 F -.165(ve)-.275 G .302(ral orders of magni-) +.165 F .811(tude lar)72 384 R .811(ger than an)-.198 F 3.561(yo)-.165 G +.811(ther \(than the \214rst\) root mo)-3.561 F 1.141 -.165(ve d)-.165 H +.811(oes not imply that this mo).165 F 1.141 -.165(ve i)-.165 H 3.561 +(sb).165 G(etter)-3.561 E 6.311(.I)-.605 G 3.561(tm)-6.311 G .81 +(ight be)-3.561 F(better)72 396 Q 4.048(,o)-.44 G 4.048(ri)-4.048 G +4.048(tm)-4.048 G 1.298(ight simply be a complicated mo)-4.048 F 1.628 +-.165(ve t)-.165 H 1.299 +(hat leads to positions which stimulate lots of search).165 F -.165(ex) +72 408 S .148(tensions and mak).165 F 2.898(et)-.11 G .148 +(he tree quite lar)-2.898 F 2.898(ge. Therefore,)-.198 F .148 +(it is not safe to simply say the tree so f)2.898 F .148(ar is big, w) +-.11 F(ait,)-.11 E .884(because that might tak)72 420 R 3.634(eas)-.11 G +.884(igni\214cant amount of time to \214nish.)-3.634 F .885 +(And note the major problem here is that)6.385 F .068 +(only one processor is searching that branch should we choose to w)72 +432 R .067(ait for a result.)-.11 F .067(\(2\) "Just w)5.567 F .067 +(aiting" is not)-.11 F 3.879(ap)72 444 S 1.129 +(articularly good plan in a timed e)-3.879 F -.165(ve)-.275 G 3.879 +(nt. Since).165 F 1.129(time is a f)3.879 F(actor)-.11 E 3.879(,u)-.44 G +1.129(sing it wisely is a major part of an)-3.879 F(y)-.165 E 1.055 +(chess program, and ha)72 456 R 1.055(ving to b)-.22 F 1.054(urn man) +-.22 F 3.804(ym)-.165 G 1.054(inutes just because the search can')-3.804 +F 3.804(tr)-.198 G(esolv)-3.804 E 3.804(ew)-.165 G 1.054(hether a mo) +-3.804 F -.165(ve)-.165 G(further do)72 468 Q(wn the ply=1 mo)-.275 E +.33 -.165(ve l)-.165 H(ist is better or not can lead to timing dif).165 +E(\214culties.)-.275 E .252(The dra)72 492 R .252 +(wback to solving this is that we "kno)-.165 F .252 +(w" that all branches at the root should be searched \(time per)-.275 F +(-)-.22 E 1.002(mitting\) and that searching them will cause no e)72 504 +R 1.002(xtra o)-.165 F -.165(ve)-.165 G 1.002 +(rhead \(after the \214rst branch establishes a lo).165 F(wer)-.275 E +.621(search bound, assuming that the \214rst mo)72 516 R .951 -.165 +(ve i)-.165 H 3.371(sa).165 G .621(ctually the best mo)-3.371 F -.165 +(ve)-.165 G 6.121(.T).165 G .621(his is true for a lar)-6.121 F .621 +(ge majority of)-.198 F 1.614(positions, \).)72 528 R 1.614 +(The root is therefore a highly f)7.114 F -.22(avo)-.11 G 1.613 +(rable \(from a search o).22 F -.165(ve)-.165 G 1.613 +(rhead point of vie).165 F 1.613(w\) place to)-.275 F 1.085 +(search in parallel.)72 540 R 1.085(If the entire ply=1 mo)6.585 F 1.415 +-.165(ve l)-.165 H 1.085(ist w).165 F 1.086 +(as searched, then splitting at ply=1 w)-.11 F 1.086(ould w)-.11 F 1.086 +(ork well.)-.11 F(Ho)72 552 Q(we)-.275 E -.165(ve)-.275 G 1.257 -.44 +(r, s).165 H .377(ince time can run out and stop the search, e).44 F +.377(xamining the \214rst fe)-.165 F 3.126(wm)-.275 G -.165(ove)-3.126 G +3.126(so).165 G 3.126(nt)-3.126 G .376(he list \(searching)-3.126 F .942 +(each in succession with all processors w)72 564 R .942 +(orking together on each mo)-.11 F -.165(ve)-.165 G 3.692(\)e).165 G +.942(nsures that the \214rst fe)-3.692 F 3.693(wm)-.275 G -.165(ove) +-3.693 G(s).165 E 1.19(are COMPLETEL)72 576 R 3.94(Ye)-1.1 G 1.19 +(xamined before time runs out. \(Note: in Cray Blitz and Crafty)-4.105 F +3.939(,a)-.715 G 3.939(ni)-3.939 G 1.189(teration is not)-3.939 F EP +%%Page: 16 16 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 11/Times-Roman@0 SF .398(completed after time has run out.)72 96 R +(Rather)5.898 E 3.148(,t)-.44 G .398(he search stops, the mo)-3.148 F +.728 -.165(ve i)-.165 H 3.148(sm).165 G .398 +(ade, and then the ponder search)-3.148 F .731 +(picks up and continues searching.\))72 108 R 2.491 -.88(We c)6.231 H +.731(hose to accept this inef).88 F(\214cienc)-.275 E 3.481(y\()-.165 G +.73(searching e)-3.481 F .73(xtra nodes\) in order)-.165 F(to let the p\ +rogram change its mind on the last iteration, if the \214rst mo)72 120 Q +.33 -.165(ve i)-.165 H 2.75(sn).165 G(ot best.)-2.75 E .063 +(This often leads to a li)72 144 R -.165(ve)-.275 G .064(ly debate abou\ +t \(a\) whether or not a parallel search should split at the root and \ +\(b\)).165 F .591 +(whether or not the program should completely search the root mo)72 156 +R .921 -.165(ve l)-.165 H .591(ist before stopping for a time limit.) +.165 F 1.76 -.88(We h)72 168 T -2.475 -.22(av e).88 H -.165(ex)2.97 G +(perimented with possible alternati).165 E .33 -.165(ve a)-.275 H +(lgorithms, b).165 E(ut none ha)-.22 E .33 -.165(ve p)-.22 H(ro).165 E +-.165(ve)-.165 G 2.75(nb).165 G(etter to date.)-2.75 E 2.75(4. DTS)72 +192 R(performance results)2.75 E .117(The DTS algorithm w)72 216 R .117 +(as tested using a Cray C916/1024 computer)-.11 F 5.617(.T)-.605 G .117 +(his machine has 16 processors with a)-5.617 F -.165(cy)72 228 S +(cle time of 4.166 nanoseconds, and also has 1024 million w).165 E +(ords of memory \(eight gig)-.11 E(abytes.\))-.055 E(4.1 T)72 252 Q +(esting methodology)-.77 E .829(In producing these results, all testing\ + used the machine in a dedicated mode so that all of the machine')72 276 +R(s)-.605 E .241(memory w)72 288 R .241(as used, re)-.11 F -.055(ga) +-.165 G .242 +(rdless of the number of processors utilized in each test \(e).055 F +.242(xcept for the one-proces-)-.165 F 1.227(sor test, which is e)72 300 +R 1.227(xplained later\).)-.165 F 1.227 +(Often, particularly when using distrib)6.727 F 1.227(uted machines lik) +-.22 F 3.976(et)-.11 G 1.226(he Hyper)-3.976 F(-)-.22 E 4.252(cubes, ad\ +ding additional processors also adds additional memory [Feldmann90,Feld\ +mann93,K)72 312 R(usz-)-.165 E(maul94,Schaef)72 324 Q(fer89,Y)-.275 E +1.535(ang93], ef)-1.1 F(fecti)-.275 E -.165(ve)-.275 G 1.535 +(ly changing tw).165 F 4.285(os)-.11 G 1.534 +(earch parameters at the same time \(number of)-4.285 F .166 +(processors or total computation po)72 336 R .166 +(wer and total memory a)-.275 F -.275(va)-.22 G 2.916(ilable.\) It).275 +F .166(is then dif)2.916 F .166(\214cult to attrib)-.275 F .166 +(ute the per)-.22 F(-)-.22 E .379(formance impro)72 348 R -.165(ve)-.165 +G .379(ment to additional processor po).165 F .378 +(wer alone as the transposition table is e)-.275 F .378(xtremely impor) +-.165 F(-)-.22 E(tant to search performance and making it lar)72 360 Q +(ger often dramatically speeds up search times.)-.198 E .434 +(The testing done to produce the results gi)72 384 R -.165(ve)-.275 G +3.184(nh).165 G .434(erein dif)-3.184 F .434 +(fers from the testing used in pre)-.275 F .434(vious parallel tree) +-.275 F .378(search algorithms [Hyatt88, Hyatt89, Schaef)72 396 R .378 +(fer89, Feldmann90,others].)-.275 F .378 +(Rather than use a group of unre-)5.878 F 1.856 +(lated chess problems, we elected to tak)72 408 R 4.606(eas)-.11 G -.165 +(eg)-4.606 G 1.856(ment of a real chess g).165 F 1.856(ame and ha)-.055 +F 2.187 -.165(ve t)-.22 H 1.857(he program play).165 F .175 +(through it with v)72 420 R .175(arying numbers of processors.)-.275 F +.175(There are tw)5.675 F 2.925(or)-.11 G .175 +(easons for choosing this approach: \(1\) this)-2.925 F .124 +(is what a chess program is designed to do, "play a complete g)72 432 R +.124(ame", not "search random positions" and \(2\))-.055 F 1.346 +(it is well-kno)72 444 R 1.345(wn that parallel algorithms perform bett\ +er when searching deeper trees [Hyatt88,Hyatt89,)-.275 F(Schaef)72 456 Q +4.903(fer89,others]. When)-.275 F 2.153(searching unrelated problems, t\ +here is no "continuity" between problems.)4.903 F .974 +(When searching a series of mo)72 468 R -.165(ve)-.165 G 3.724(sf).165 G +.974(rom the same g)-3.724 F .974 +(ame, the transposition table, the killer mo)-.055 F 1.304 -.165(ve l) +-.165 H .974(ist, the).165 F .105 +(dynamic scoring parameters, all "tie things together" and allo)72 480 R +2.855(wd)-.275 G .105(eeper searches.)-2.855 F .105 +(Note also, that if you are)5.605 F +(iterested in results on a traditional test lik)72 492 Q 2.75(et)-.11 G +(he K)-2.75 E(opek/Bratk)-.385 E 2.75(op)-.11 G(ositions, the)-2.75 E +2.75(ya)-.165 G(re a)-2.75 E -.275(va)-.22 G(ilable in [Hyatt88].).275 E +1.564(The testing methodology w)72 516 R 1.564(as to tak)-.11 F 4.314 +(et)-.11 G 1.564(he 16-processor log produced during the actual g)-4.314 +F 1.563(ame, and then)-.055 F("contri)72 528 Q -.165(ve)-.275 G 4.302 +("t).165 G 1.552(hings so that the "lesser" con\214gurations w)-4.302 F +1.552(ould do the same amount of w)-.11 F 1.552(ork \(roughly\).)-.11 F +(In)7.053 E 1.257(these tests, if the 16 processor search reached 11 pl\ +ies and searched the \214rst 10 root mo)72 540 R -.165(ve)-.165 G 4.007 +(sb).165 G 1.257(efore the)-4.007 F .21 +(search timed out, then all lessor con\214gurations had to also do e)72 +552 R .21(xactly this same search, which led to some)-.165 F .406 +(embarrassingly long search times for one processor as will be seen.)72 +564 R .405(One other minor note is that the sin-)5.905 F 1.222 +(gle processor times appear to search slightly slo)72 576 R 1.222 +(wer than the equi)-.275 F -.275(va)-.275 G 1.222 +(lent parallel searches, which w).275 F(ould)-.11 E EP +%%Page: 17 17 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 11/Times-Roman@0 SF .019(seem to be counter)72 96 R(-intuiti)-.22 E +-.165(ve)-.275 G 5.518(.H).165 G -.275(ow)-5.518 G -2.365 -.275(ev e) +.275 H .898 -.44(r, d).275 H .018 +(ue to the enormous time required to play through this g).44 F .018 +(ame with-)-.055 F .33(out stopping \(which w)72 108 R .331(ould ha)-.11 +F .661 -.165(ve c)-.22 H .331(leared the transposition table and so for\ +th\) we ran this test on a produc-).165 F .263 +(tion machine, and competed with other processes.)72 120 R .263 +(As a result, memory con\215icts were much higher \(bank)5.763 F 1.866 +(con\215icts to those that are Cray-sa)72 132 R 1.866 +(vvy\) as well as sw)-.22 F 1.866(apping o)-.11 F -.165(ve)-.165 G 1.866 +(rhead which gets char).165 F 1.867(ged to the user)-.198 F(.)-.605 E +(While this is well belo)72 144 Q 2.75(wt)-.275 G(he .1% le)-2.75 E +-.165(ve)-.275 G 2.75(lo).165 G 2.75(fn)-2.75 G +(oise, it is noticeable, and should be remembered.)-2.75 E .978 +(The test positions came from the g)72 168 R .977 +(ame Mchess Pro vs Cray Blitz at the 1993 A)-.055 F .977 +(CM International Com-)-.44 F .112(puter Chess Championship.)72 180 R +.112(\(This g)5.612 F .112(ame is included as Appendix A.\))-.055 F .113 +(This g)5.613 F .113(ame w)-.055 F .113(as chosen after looking)-.11 F +.84(at analysis produced by Cray Blitz during the tournament.)72 192 R +.839(The opening w)6.339 F .839(as a King')-.11 F 3.589(sG)-.605 G .839 +(ambit Accepted)-3.589 F .428 +(where white sacri\214ced a piece for some pa)72 204 R .429 +(wns and a strong attack.)-.165 F .429(C-B sa)5.929 F 3.179(wt)-.165 G +.429(he e)-3.179 F -.275(va)-.275 G .429(luation steadily drop).275 F +.553(as it disco)72 216 R -.165(ve)-.165 G .553(red just ho).165 F 3.303 +(ws)-.275 G .553(trong the attack w)-3.303 F .553(as, then it le)-.11 F +-.165(ve)-.275 G .553(led of).165 F 3.303(fa)-.275 G .552(nd follo) +-3.303 F .552(wed a "tight-rope" for se)-.275 F -.165(ve)-.275 G(ral) +.165 E(mo)72 228 Q -.165(ve)-.165 G 1.286 +(s, making the only possible mo).165 F 1.616 -.165(ve t)-.165 H 1.287 +(hat w).165 F 1.287(ould not lose, then it started f)-.11 F 1.287 +(ailing high repeatedly as it)-.11 F(\214nally survi)72 240 Q -.165(ve) +-.275 G 2.75(dt).165 G(he attack and started a counter)-2.75 E +(-attack that ultimately w)-.22 E(on the g)-.11 E(ame.)-.055 E .275 +(The \214rst position occurs after the sequence of mo)72 264 R -.165(ve) +-.165 G 3.024(s1).165 G 3.024(.e)-3.024 G 3.024(4e)-3.024 G 3.024(52) +-3.024 G 3.024(.N)-3.024 G .274(c3 Nc6 3. f4 e)-3.024 F .274 +(xf4 4. Nf3 g5 5. d4 g4 6.)-.165 F .557(Bc4 gxf3 7. o-o d5)72 276 R .557 +(8. e)6.057 F .557(xd5 Bg4 9. Qd2 ...)-.165 F .558(At this point, C-B w) +6.058 F .558(as "out of book" and quickly disco)-.11 F -.165(ve)-.165 G +(red).165 E .021(that its king w)72 288 R .021(as e)-.11 F .021 +(xposed in the center although it w)-.165 F .021 +(as a piece up and a couple of pa)-.11 F .02(wns do)-.165 F 2.77 +(wn. The)-.275 F -.275(eva)2.77 G(lu-).275 E .972 +(ation steadily dropped for the ne)72 300 R .973(xt fe)-.165 F 3.723(wm) +-.275 G -.165(ove)-3.723 G 3.723(sa).165 G 3.723(sC)-3.723 G .973 +(-B "sa)-3.723 F .973(w" ho)-.165 F 3.723(we)-.275 G .973 +(xposed its king w)-3.888 F 3.723(as. The)-.11 F -.275(eva)3.723 G +(luation).275 E .598(dropped to a point where C-B w)72 312 R .598 +(as about 1/4 pa)-.11 F .597(wn "do)-.165 F .597(wn" at the lo)-.275 F +3.347(wp)-.275 G .597(oint in the g)-3.347 F 3.347(ame. It)-.055 F .597 +(then be)3.347 F -.055(ga)-.165 G 3.347(na).055 G 1.491 +(climb to roughly 1/3 of a pa)72 324 R 1.491(wn "ahead" before disco) +-.165 F -.165(ve)-.165 G 1.492 +(ring that Mchess could force a perpetual dra).165 F -.715(w.)-.165 G +.248(\(This occurred at position 17 where C-B took a long time trying t\ +o \214nd an)72 336 R 2.997(yw)-.165 G .247(ay out of the v)-3.107 F .247 +(ery deep per)-.165 F(-)-.22 E .274(petual check.)72 348 R .274 +(The perpetual w)5.774 F .274(as some 19 plies deep.\))-.11 F -.165(Fo) +5.774 G 3.024(rt).165 G .274(he ne)-3.024 F .274(xt tw)-.165 F 3.024(om) +-.11 G -.165(ove)-3.024 G .274(s, it w).165 F .274(as resigned to a dra) +-.11 F -.715(w,)-.165 G -.22(bu)72 360 S 4.917(tM).22 G 2.167(chess app\ +arently did not search deeply enough to detect the repetition and v) +-4.917 F 2.166(aried, gi)-.275 F 2.166(ving C-B)-.275 F(another chance.) +72 372 Q(From this point on the e)5.5 E -.275(va)-.275 G +(luation climbed steadily).275 E(.)-.715 E .256 +(This particular series of positions of)72 396 R .256 +(fered both "good," "bad" and "normal" positions that C-B searched in) +-.275 F(parallel.)72 408 Q 2.784(A")72 432 S .033 +(good" position is one where the program \214nds the correct mo)-2.784 F +.363 -.165(ve a)-.165 H 2.783(tas).165 G(hallo)-2.783 E 2.783(ws)-.275 G +.033(earch and "sticks with it")-2.783 F .327 +(through later searches and ultimately mak)72 444 R .328(es that mo)-.11 +F -.165(ve)-.165 G 5.828(.T).165 G .328 +(his means that ordering at the root of the tree is)-5.828 F .531 +(perfect, and often means that ordering f)72 456 R .531(arther do)-.11 F +.531(wn in the tree is also quite good, making the search rea-)-.275 F +1.069(sonably ef)72 468 R 3.82(\214cient. These)-.275 F 1.07 +(positions produce good speedups re)3.82 F -.055(ga)-.165 G 1.07 +(rdless of the number of processors used.).055 F +(Positions 20 and 21 are e)72 480 Q(xamples of such positions.)-.165 E +3.761(A")72 504 S 1.01(normal" position is one where the program occasi\ +onally changes its mind at the root, b)-3.761 F 1.01(ut that mo)-.22 F +-.165(ve)-.165 G .143(ordering is still good.)72 516 R .144 +(This lets C-B \214nd the ne)5.643 F 2.894(wb)-.275 G .144(est mo)-2.894 +F .474 -.165(ve a)-.165 H 2.894(tt).165 G .144(he root f)-2.894 F .144 +(aster than it w)-.11 F .144(ould if it could split)-.11 F(the w)72 528 +Q(ork at the root \(pre)-.11 E(vious discussion.\))-.275 E 3.443(A")72 +552 S .692(bad" position is one where e)-3.443 F -.165(ve)-.275 G .692 +(ry iteration un).165 F -.165(ve)-.44 G .692(ils some ne).165 F 3.442 +(wt)-.275 G .692(hreat that the program must then \214nd a)-3.442 F -.11 +(wa)72 564 S 3.25(yt).11 G 3.25(od)-3.25 G .5(efend ag)-3.25 F 3.25 +(ainst. At)-.055 F .5(the be)3.25 F .5(ginning of each ne)-.165 F 3.251 +(wi)-.275 G .501(teration, the best mo)-3.251 F .831 -.165(ve f)-.165 H +.501(rom the pre).165 F .501(vious iteration)-.275 F .707(often f)72 576 +R .707(ails lo)-.11 F 2.137 -.715(w, a)-.275 H .707 +(nd with little help in ordering mo).715 F -.165(ve)-.165 G .707 +(s, the parallel v).165 F .706(ersion of the search be)-.165 F .706 +(gins to search)-.165 F EP +%%Page: 18 18 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 11/Times-Roman@0 SF .389 +(signi\214cantly more nodes than the sequential v)72 96 R 3.14 +(ersion. These)-.165 F .39(positions typically ha)3.14 F .72 -.165(ve p) +-.22 H .39(oor speedup results).165 F .07 +(when compared with a sequential search.)72 108 R .07(An e)5.57 F .07 +(xcellent e)-.165 F .069(xample of this is position 17.)-.165 F .069 +(This is the position)5.569 F 1.575(where C-B disco)72 120 R -.165(ve) +-.165 G 1.575(rs that it can').165 F 4.325(ta)-.198 G -.22(vo)-4.545 G +1.575(id a dra).22 F 4.325(wb)-.165 G 4.325(yr)-4.325 G 1.575 +(epetition \(with best play by the opponent.\))-4.325 F(Mo)7.076 E -.165 +(ve)-.165 G .923(ordering is poor since prior kno)72 132 R .923 +(wledge of good mo)-.275 F -.165(ve)-.165 G 3.673(si).165 G 3.673(sq) +-3.673 G .923(uickly refuted by the dra)-3.673 F .923 +(wing lines found by)-.165 F(the constantly increasing search depth.)72 +144 Q .276(The results include tw)72 168 R 3.026(os)-.11 G .276 +(ets of numbers for each test, where a test used either one, tw)-3.026 F +.277(o, four)-.11 F 3.027(,e)-.44 G .277(ight or six-)-3.027 F .133 +(teen processors.)72 180 R .133 +(The numbers are the clock time required for the search \(w)5.633 F .133 +(all clock time\) and the number)-.11 F(of nodes searched \(which sho)72 +192 Q(ws ho)-.275 E 2.75(wm)-.275 G(uch e)-2.75 E(xtra w)-.165 E +(ork is added by using additional processors.)-.11 E .256 +(These results are summarized belo)72 216 R 3.006(wi)-.275 G 3.006(nt) +-3.006 G .256(able 3, which can be compared to the results for the tw) +-3.006 F 3.007(op)-.11 G(re)-3.007 E(vious)-.275 E(algorithms.)72 228 Q +.44 LW 417.215 248.95 194.784 248.95 DL 2.75(#p)200.284 258.2 S 17.875 +(rocessors 1)-2.75 F 24.75(2481)24.75 G(6)-24.75 E 417.215 262.95 +194.784 262.95 DL 32.384(speedup 1.0)200.284 272.2 R 13.75 +(2.0 3.7 6.6 11.1)16.5 F 417.215 276.95 194.784 276.95 DL 384.215 262.95 +384.215 276.95 DL 353.965 262.95 353.965 276.95 DL 323.715 262.95 +323.715 276.95 DL 293.465 262.95 293.465 276.95 DL 263.215 262.95 +263.215 276.95 DL 417.215 248.95 417.215 276.95 DL 194.784 248.95 +194.784 276.95 DL 384.215 248.95 384.215 276.95 DL 353.965 248.95 +353.965 276.95 DL 323.715 248.95 323.715 276.95 DL 293.465 248.95 +293.465 276.95 DL 263.215 248.95 263.215 276.95 DL -.88(Ta)233.125 300.4 +S(ble 3 DTS performance results).88 E 2.75(5. Performance)72 324.4 R +(analysis)2.75 E .292(The performance results for DTS are presented in \ +table 4 \(search time for each test position in the g)72 348.4 R(ame\),) +-.055 E 1.243(table 5 \(nodes searched for each test position\) and tab\ +le 6 \(the performance impro)72 360.4 R -.165(ve)-.165 G 1.244 +(ment for each test).165 F(position\).)72 372.4 Q 1.37(The simplest w)72 +396.4 R 1.37(ay to analyze the performance is to e)-.11 F 1.369 +(xamine T)-.165 F 1.369(able 3 which gi)-.88 F -.165(ve)-.275 G 4.119 +(st).165 G 1.369(he speedup for each)-4.119 F 4.238(position. This)72 +408.4 R 1.488(table presents the a)4.238 F -.165(ve)-.22 G 1.489 +(rage speedup for tw).165 F 1.489(o, four)-.11 F 4.239(,e)-.44 G 1.489 +(ight and sixteen processors, and is a)-4.239 F .379 +(summary of the timing results from table 6, gi)72 420.4 R .378 +(ving each position a weight of one and di)-.275 F .378 +(viding the sum of)-.275 F .505(the column by 24.)72 432.4 R .506 +(It is interesting to note that there is an in)6.005 F -.165(ve)-.44 G +.506(rse relationship between speedup and total).165 F 1.163 +(nodes searched, which is e)72 444.4 R 1.162(xactly as e)-.165 F 1.162 +(xpected with DTS.)-.165 F 1.162(Recall that DTS does not allo)6.662 F +3.912(wp)-.275 G 1.162(rocessors to)-3.912 F .328(remain idle for an)72 +456.4 R 3.078(ys)-.165 G .328(igni\214cant amount of time, so that poor\ + speedup results has to be the result of search-)-3.078 F +(ing nodes that are unnecessary)72 468.4 Q 2.75(,e)-.715 G +(xactly as the ra)-2.915 E 2.75(wd)-.165 G(ata gi)-2.75 E -.165(ve)-.275 +G 2.75(ns).165 G(ho)-2.75 E(ws.)-.275 E -.165(Fo)72 492.4 S 3.441(rt) +.165 G .691 +(he older Cray XMP machines with a maximum of four processors, an a) +-3.441 F -.165(ve)-.22 G .69(rage speedup of tw).165 F 3.44(o\()-.11 G +(tw)-3.44 E(o)-.11 E .194 +(processors\) and 3.7 \(four processors\) looks e)72 504.4 R .194 +(xtremely ef)-.165 F 2.944(\214cient. Mo)-.275 F .195 +(ving up to an eight processor machine)-.165 F 1.013 +(\(the old YMP line is an e)72 516.4 R 1.013 +(xample\) produces a speedup of 6.6 which, ag)-.165 F 1.013 +(ain, is a reasonable result.)-.055 F(Here)6.512 E .334(doubling the nu\ +mber of processors from four to eight produces a performance impro)72 +528.4 R -.165(ve)-.165 G .334(ment f).165 F .334(actor of 1.8.)-.11 F +(Ho)72 540.4 Q(we)-.275 E -.165(ve)-.275 G 2.493 -.44(r, p).165 H 1.613 +(ushing this further be).44 F 1.613(gins to sho)-.165 F 4.363(wj)-.275 G +1.613(ust ho)-4.363 F 4.363(wd)-.275 G(if)-4.363 E 1.612 +(\214cult parallelizing an alpha/beta tree search)-.275 F 1.164 +(really is.)72 552.4 R 1.164 +(The speedup of 11.1 for 16 processors means that o)6.664 F -.165(ve) +-.165 G 3.915(ro).165 G 1.165(ne quarter of the C90')-3.915 F 3.915(sc) +-.605 G 1.165(ycles were)-4.08 F -.11(wa)72 564.4 S 2.903(sted. F).11 F +.153(or these tests, processor idle time a)-.165 F -.165(ve)-.22 G .153 +(raged under tw).165 F 2.903(os)-.11 G .153 +(econds for each position \(per processor\),)-2.903 F EP +%%Page: 19 19 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 11/Times-Roman@0 SF(sho)72 96 Q .549 +(wing that the parallel search e)-.275 F .55(xamined a signi\214cant nu\ +mber of nodes that the sequential search didn')-.165 F(t)-.198 E(\(e)72 +108 Q 1.019(xamine T)-.165 F 1.018 +(able 2 and compare the 1cpu node counts column to an)-.88 F 3.768(yo) +-.165 G 3.768(ft)-3.768 G 1.018(he others.)-3.768 F -.165(Fo)6.518 G +3.768(rp).165 G 1.018(osition 17 it is)-3.768 F(ob)72 120 Q 1.22 +(vious that the program searched almost three times as man)-.165 F 3.97 +(yn)-.165 G 1.22(odes with 16 processors as it did with)-3.97 F .087 +(one, so that, e)72 132 R -.165(ve)-.275 G 2.837(nt).165 G .086 +(hough the entire machine \(16 processors\) w)-2.837 F .086(as b)-.11 F +(usy)-.22 E 2.836(,t)-.715 G .086(he majority of the processors were) +-2.836 F(doing unnecessary w)72 144 Q(ork.)-.11 E .297(Cray Blitz count\ +s the number of split operations that it attempts, as part of its b)72 +168 R .297(uilt-in performance analy-)-.22 F 3.562(sis. This)72 180 R +.812(count is af)3.562 F .811(fected by tw)-.275 F 3.561(op)-.11 G 3.561 +(arameters; \(1\))-3.561 F .811(the e)3.561 F .811 +(xtra nodes searched by the program, and \(2\) the)-.165 F 1.872 +(total search time.)72 192 R 1.873(In ef)7.373 F 1.873 +(fect, the number of splits per unit of time \(in)-.275 F -.165(ve)-.44 +G 1.873(rsely\) follo).165 F 1.873(ws the e)-.275 F 1.873(xtra nodes) +-.165 F .218(searched by the program.)72 204 R -.165(Fo)5.718 G 2.968 +(rt).165 G .218(hese test positions, the SPLIT count ranged from a lo) +-2.968 F 2.968(wo)-.275 G 2.968(f3)-2.968 G .218(07 to a high of)-2.968 +F -.165(ove)72 216 S 3.225(r1).165 G 3.225(20,000! As)-3.225 F 3.225(ar) +3.225 G .476(esult, this data has not been presented since the speedup \ +table and time tables accu-)-3.225 F 1.63 +(rately predict the split counts obtained from the tests.)72 228 R 1.629 +(The best speedup \(and the fe)7.13 F 1.629(west e)-.275 F 1.629 +(xtra nodes\))-.165 F .716(occurs on positions where fe)72 240 R 3.467 +(ws)-.275 G .717(plit operations are attempted.)-3.467 F 2.477 -.88 +(To a)6.217 H -.22(vo).66 G .717(id a situation of "information o).22 F +-.165(ve)-.165 G -.22(r-).165 G<8d6f>72 252 Q .095 +(w" additional statistics g)-.275 F .095(athered by C-B ha)-.055 F .425 +-.165(ve b)-.22 H .094(een omitted since statistical analysis sho).165 F +.094(ws strong corre-)-.275 F .407(lation among all of the metrics.)72 +264 R .408(One e)5.908 F .408 +(xample is that C-B counts the number of times a processor starts a) +-.165 F .648(parallel task only to be stopped by another because mo)72 +276 R .978 -.165(ve o)-.165 H .648(rdering w).165 F .648 +(as not optimal.)-.11 F .648(These "early stops")6.148 F +(correspond with the "split operations attempted" and with the "e)72 288 +Q(xtra nodes" quite well.)-.165 E 1.25(The most immediate problem in th\ +e current algorithm is that the parallel search e)72 312 R 1.25 +(xamines a signi\214cant)-.165 F .413(number of e)72 324 R .413 +(xtra nodes that the sequential algorithm does not.)-.165 F .413(Much w) +5.913 F .412(ork remains to determine just ho)-.11 F(w)-.275 E -.11(fa) +72 336 S 2.773(rt).11 G .024(his can be reduced.)-2.773 F(Intuiti)5.524 +E -.165(ve)-.275 G(ly).165 E 2.774(,i)-.715 G 2.774(ti)-2.774 G 2.774 +(sn)-2.774 G .024(ot possible to reduce the number of e)-2.774 F .024 +(xtra nodes to zero since this)-.165 F -.11(wo)72 348 S 1.702 +(uld require nearly perfect mo).11 F 2.032 -.165(ve o)-.165 H 4.452 +(rdering. The).165 F(rele)4.452 E -.275(va)-.275 G 1.702 +(nt question is whether or not it is possible to).275 F .418 +(choose a split point more accurately than the present algorithm does.) +72 360 R .419(If some information were a)5.919 F -.275(va)-.22 G(ilable) +.275 E .446(that might be used to predict ho)72 372 R 3.196(wg)-.275 G +.446(ood mo)-3.196 F .776 -.165(ve o)-.165 H .446 +(rdering is at a particular node, better split points might be).165 F +(chosen.)72 384 Q -.165(Fo)72 408 S 3.053(rc).165 G .303 +(urrent machines with sixteen processors \(and e)-3.053 F -.165(ve)-.275 +G 3.053(nf).165 G .303(or future potential supercomputers with up to 64) +-3.053 F .279(processors\) the processor idle time in the current algor\ +ithm does not pose a signi\214cant problem.)72 420 R .278(The cur)5.778 +F(-)-.22 E 1.43(rent idle times of tw)72 432 R 4.181(ot)-.11 G 4.181(ot) +-4.181 G 1.431(hree seconds o)-4.181 F -.165(ve)-.165 G 4.181(ram).165 G +1.761 -.165(ove t)-4.181 H 1.431(hat tak).165 F 1.431 +(es 200 to 500 seconds does not af)-.11 F 1.431(fect the)-.275 F .475(s\ +earch times signi\214cantly for small numbers of processors \(2-16\), b) +72 444 R .475(ut for really lar)-.22 F .474(ge numbers of proces-)-.198 +F(sors, something must be done to a)72 456 Q -.22(vo)-.22 G +(id running into Amdahl').22 E 2.75(sL)-.605 G -.165(aw)-2.75 G(.)-.55 E +.143(This result compares f)72 480 R -.22(avo)-.11 G .143 +(rably with the DPVS \(Dynamic PVS\) algorithm de).22 F -.165(ve)-.275 G +.144(loped for Phoenix \(Schaef-).165 F 3.365(fer89]. The)72 492 R -.165 +(ove)3.365 G .615(rall algorithms seem quite similar).165 F 3.365(,b) +-.44 G .615(ut ag)-3.585 F .615(ain, DTS is designed for a much dif) +-.055 F .614(ferent com-)-.275 F 2.718 +(munication mechanism \(shared memory\) and can o)72 504 R -.165(ve) +-.165 G 2.719(rlook some things that Phoenix [Schaef).165 F(fer89],) +-.275 E(Zugzw)72 516 Q .746(ang [Feldman93], *Socrates [K)-.11 F .746 +(uszmaul], and others ha)-.165 F 1.076 -.165(ve t)-.22 H 3.496(ob).165 G +3.496(ev)-3.496 G .746(ery concerned about because the)-3.661 F .725(co\ +mmunication costs are so signi\214cant in those message passing archite\ +ctures used.)72 528 R .726(In f)6.226 F .726(act, perhaps the)-.11 F +1.313(Deep Thought/Deep Blue hardw)72 540 R 1.312 +(are comes closest to the architecture used by Cray Blitz, b)-.11 F +1.312(ut e)-.22 F -.165(ve)-.275 G 4.062(nt).165 G(his)-4.062 E 1.102 +(chess-speci\214c architecture still does not ha)72 552 R 1.432 -.165 +(ve a u)-.22 H 1.103 +(niform shared memory system that is global across all).165 F +(processors and chess processors [Hsu90].)72 564 Q EP +%%Page: 20 20 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 11/Times-Roman@0 SF(It')72 96 Q 3.367(su)-.605 G .616(nfortunate th\ +at shared memory is an architectural design feature that doesn')-3.367 F +3.366(ts)-.198 G .616(cale to lar)-3.366 F .616(ge numbers)-.198 F .39(\ +of processors, because CB might produce some interesting performance re\ +sults with really lar)72 108 R .39(ge numbers)-.198 F 1.413 +(of processors.)72 120 R(Ho)6.913 E(we)-.275 E -.165(ve)-.275 G 2.293 +-.44(r, t).165 H 1.413(his is not the case, and it is doubtful that a C\ +ray-class machine will support).44 F .474(shared memory on more than 64\ + processors, using a high-speed interconnect lik)72 132 R 3.224(et)-.11 +G .474(he Cray machines use.)-3.224 F .032 +(As a result, this algorithm really will only scale as f)72 144 R .031 +(ar as a shared memory architecture scales.)-.11 F(An)5.531 E 2.781(yd) +-.165 G(elays)-2.781 E 1.782(\(such as those in some architectures that\ + use a hierarchical memory or)72 156 R -.055(ga)-.198 G 1.783 +(nization with v).055 F 1.783(arying delays)-.275 F .496 +(depending on ho)72 168 R 3.246(wf)-.275 G .496 +(ar the memory is from the requesting processor\) will certainly ha) +-3.356 F .826 -.165(ve a)-.22 H 3.246(na).165 G(dv)-3.246 E .496 +(erse ef)-.165 F(fect)-.275 E(on DTS.)72 180 Q EP +%%Page: 21 21 +%%BeginPageSetup +BP +%%EndPageSetup +.44 LW 418.139 88.75 193.86 88.75 DL/F0 11/Times-Roman@0 SF(processors) +298.673 98 Q 418.139 102.75 193.86 102.75 DL 23.375(pos 1)199.36 112 R +35.75(248)35.75 G(16)-6.875 E 418.139 116.75 193.86 116.75 DL 16.5(12) +209.139 126 S 13.75(,830 1,415)-16.5 F 22(832 435)24.75 F(311)16.5 E +418.139 130.75 193.86 130.75 DL 16.5(22)209.139 140 S 13.75(,849 1,424) +-16.5 F 22(791 438)24.75 F(274)16.5 E 418.139 144.75 193.86 144.75 DL +16.5(33)209.139 154 S 13.75(,274 1,637)-16.5 F 22(884 467)24.75 F(239) +16.5 E 418.139 158.75 193.86 158.75 DL 16.5(42)209.139 168 S 13.75 +(,308 1,154)-16.5 F 22(591 349)24.75 F(208)16.5 E 418.139 172.75 193.86 +172.75 DL 16.5(51)209.139 182 S 22(,584 792 440 243)-16.5 F(178)16.5 E +418.139 186.75 193.86 186.75 DL 16.5(64)209.139 196 S 13.75 +(,294 2,147 1,160)-16.5 F 13.75(670 452)24.75 F 418.139 200.75 193.86 +200.75 DL 16.5(71)209.139 210 S 22(,888 993 524 273)-16.5 F(187)16.5 E +418.139 214.75 193.86 214.75 DL 16.5(87)209.139 224 S 13.75 +(,275 3,637 1,966 1,039 680)-16.5 F 418.139 228.75 193.86 228.75 DL 16.5 +(93)209.139 238 S 13.75(,940 1,970 1,094)-16.5 F 13.75(635 398)24.75 F +418.139 242.75 193.86 242.75 DL 13.75(10 2,431 1,215)203.639 252 R 22 +(639 333)24.75 F(187)16.5 E 418.139 256.75 193.86 256.75 DL 13.75 +(11 3,062 1,531)203.639 266 R 22(827 425)24.75 F(247)16.5 E 418.139 +270.75 193.86 270.75 DL 13.75(12 2,518 1,325)203.639 280 R 22(662 364) +24.75 F(219)16.5 E 418.139 284.75 193.86 284.75 DL 13.75(13 2,131 1,121) +203.639 294 R 22(560 313)24.75 F(192)16.5 E 418.139 298.75 193.86 298.75 +DL 13.75(14 1,871)203.639 308 R 22(935 534 296)24.75 F(191)16.5 E +418.139 312.75 193.86 312.75 DL 13.75(15 2,648 1,324)203.639 322 R 22 +(715 378)24.75 F(243)16.5 E 418.139 326.75 193.86 326.75 DL 13.75 +(16 2,347 1,235)203.639 336 R 22(601 321)24.75 F(182)16.5 E 418.139 +340.75 193.86 340.75 DL 13.75(17 4,884 2,872 1,878 1,085 814)203.639 350 +R 418.139 354.75 193.86 354.75 DL 22(18 646 358 222 124)203.639 364 R +(84)22 E 418.139 368.75 193.86 368.75 DL 13.75(19 2,983 1,491)203.639 +378 R 22(785 426)24.75 F(226)16.5 E 418.139 382.75 193.86 382.75 DL +13.75(20 7,473 3,736 1,916 1,083 530)203.639 392 R 418.139 396.75 193.86 +396.75 DL 13.75(21 3,626 1,813)203.639 406 R 22(906 489)24.75 F(237)16.5 +E 418.139 410.75 193.86 410.75 DL 13.75(22 2,560 1,347)203.639 420 R 22 +(691 412)24.75 F(264)16.5 E 418.139 424.75 193.86 424.75 DL 13.75 +(23 2,039 1,019)203.639 434 R 22(536 323)24.75 F(206)16.5 E 418.139 +438.75 193.86 438.75 DL 13.75(24 2,563 1,281)203.639 448 R 22(657 337) +24.75 F(178)16.5 E 418.139 452.75 193.86 452.75 DL 387.889 116.75 +387.889 452.75 DL 346.639 116.75 346.639 452.75 DL 305.389 116.75 +305.389 452.75 DL 264.139 116.75 264.139 452.75 DL 222.889 116.75 +222.889 452.75 DL 418.139 88.75 418.139 452.75 DL 193.86 88.75 193.86 +452.75 DL 387.889 102.75 387.889 452.75 DL 346.639 102.75 346.639 452.75 +DL 305.389 102.75 305.389 452.75 DL 264.139 102.75 264.139 452.75 DL +222.889 88.75 222.889 452.75 DL -.88(Ta)235.297 476.2 S(ble 4 Search T) +.88 E(ime in Seconds)-.385 E EP +%%Page: 22 22 +%%BeginPageSetup +BP +%%EndPageSetup +.44 LW 497.889 88.75 114.11 88.75 DL/F0 11/Times-Roman@0 SF(processors) +298.673 98 Q 497.889 102.75 114.11 102.75 DL 38.5(pos 1)119.61 112 R 66 +(248)66 G(16)-2.75 E 497.889 116.75 114.11 116.75 DL 22(18)129.389 126 S +19.25(7,735,974 89,052,012)-22 F 13.75 +(105,025,123 109,467,495 155,514,410)16.5 F 497.889 130.75 114.11 130.75 +DL 22(28)129.389 140 S 19.25(8,954,757 90,289,077)-22 F 13.75 +(100,568,301 110,988,161 137,965,406)16.5 F 497.889 144.75 114.11 144.75 +DL 16.5(31)129.389 154 S 13.75 +(01,302,792 102,822,332 111,433,074 117,366,515 119,271,093)-16.5 F +497.889 158.75 114.11 158.75 DL 22(47)129.389 168 S 19.25 +(1,726,853 72,802,754 74,853,409 88,137,085)-22 F(104,230,094)16.5 E +497.889 172.75 114.11 172.75 DL 22(54)129.389 182 S 19.25 +(9,386,616 50,127,414 55,834,316 61,619,298 89,506,306)-22 F 497.889 +186.75 114.11 186.75 DL 16.5(61)129.389 196 S 13.75 +(33,238,718 135,237,296 146,562,594 168,838,428 226,225,307)-16.5 F +497.889 200.75 114.11 200.75 DL 22(75)129.389 210 S 19.25 +(8,593,747 62,602,792 66,243,490 68,868,878 93,575,946)-22 F 497.889 +214.75 114.11 214.75 DL 16.5(82)129.389 224 S 13.75 +(25,906,282 229,294,872 248,496,917 261,728,552 340,548,431)-16.5 F +497.889 228.75 114.11 228.75 DL 16.5(91)129.389 238 S 13.75 +(22,264,617 124,098,584 138,226,951 159,930,005 199,204,874)-16.5 F +497.889 242.75 114.11 242.75 DL 19.25 +(10 75,301,353 76,430,872 80,651,716 83,656,702 93,431,597)123.889 252 R +497.889 256.75 114.11 256.75 DL 19.25(11 95,321,494 96,751,315)123.889 +266 R 13.75(104,853,646 107,369,070 123,994,812)16.5 F 497.889 270.75 +114.11 270.75 DL 19.25(12 79,975,416 85,447,418 85,657,884 94,000,085) +123.889 280 R(112,174,209)16.5 E 497.889 284.75 114.11 284.75 DL 19.25 +(13 66,100,160 70,622,802 70,796,754 78,834,155 96,053,649)123.889 294 R +497.889 298.75 114.11 298.75 DL 19.25 +(14 58,099,574 58,971,066 67,561,507 74,791,668 95,627,150)123.889 308 R +497.889 312.75 114.11 312.75 DL 19.25 +(15 84,143,340 85,405,488 92,557,676 97,486,065)123.889 322 R +(124,516,703)16.5 E 497.889 326.75 114.11 326.75 DL 19.25 +(16 75,738,094 80,920,173 79,039,499 84,141,904 94,701,972)123.889 336 R +497.889 340.75 114.11 340.75 DL 13.75 +(17 154,901,225 184,970,278 242,480,013 279,166,418 416,426,105)123.889 +350 R 497.889 354.75 114.11 354.75 DL 19.25 +(18 20,266,629 22,856,254 28,443,165 31,608,146 42,454,639)123.889 364 R +497.889 368.75 114.11 368.75 DL 19.25(19 93,858,903 95,266,785)123.889 +378 R 13.75(100,527,830 108,742,238 114,692,731)16.5 F 497.889 382.75 +114.11 382.75 DL 13.75 +(20 231,206,390 234,674,482 241,284,621 271,751,263 264,493,531)123.889 +392 R 497.889 396.75 114.11 396.75 DL 13.75 +(21 112,457,464 114,144,324 114,425,474 123,247,294 118,558,091)123.889 +406 R 497.889 410.75 114.11 410.75 DL 19.25 +(22 81,302,340 86,865,131 89,432,576)123.889 420 R 13.75 +(106,348,704 135,196,568)16.5 F 497.889 424.75 114.11 424.75 DL 19.25 +(23 63,598,940 64,552,923 68,117,815 81,871,010)123.889 434 R +(103,621,303)16.5 E 497.889 438.75 114.11 438.75 DL 19.25 +(24 80,413,971 81,620,179 83,919,196 85,810,169 90,074,814)123.889 448 R +497.889 452.75 114.11 452.75 DL 429.139 116.75 429.139 452.75 DL 357.639 +116.75 357.639 452.75 DL 286.139 116.75 286.139 452.75 DL 214.639 116.75 +214.639 452.75 DL 143.139 116.75 143.139 452.75 DL 497.889 88.75 497.889 +452.75 DL 114.11 88.75 114.11 452.75 DL 429.139 102.75 429.139 452.75 DL +357.639 102.75 357.639 452.75 DL 286.139 102.75 286.139 452.75 DL +214.639 102.75 214.639 452.75 DL 143.139 88.75 143.139 452.75 DL -.88 +(Ta)238.911 476.2 S(ble 5).88 E -.88(To)5.5 G(tal Nodes Searched).88 E +EP +%%Page: 23 23 +%%BeginPageSetup +BP +%%EndPageSetup +.44 LW 393.582 88.75 218.418 88.75 DL/F0 11/Times-Roman@0 SF(processors) +298.866 98 Q 393.582 102.75 218.418 102.75 DL 13.943(pos 1)224.11 112 R +24.75(2481)20.625 G(6)-24.75 E 393.582 116.75 218.418 116.75 DL 16.5 +(112)234.082 126 S 13.75(.0 3.4 6.5)-16.5 F(9.1)22 E 393.582 130.75 +218.418 130.75 DL 16.5(212)234.082 140 S 13.75(.0 3.6 6.5 10.4)-16.5 F +393.582 144.75 218.418 144.75 DL 16.5(312)234.082 154 S 13.75 +(.0 3.7 7.0 13.7)-16.5 F 393.582 158.75 218.418 158.75 DL 16.5(412) +234.082 168 S 13.75(.0 3.9 6.6 11.1)-16.5 F 393.582 172.75 218.418 +172.75 DL 16.5(512)234.082 182 S 13.75(.0 3.6 6.5)-16.5 F(8.9)22 E +393.582 186.75 218.418 186.75 DL 16.5(612)234.082 196 S 13.75 +(.0 3.7 6.4)-16.5 F(9.5)22 E 393.582 200.75 218.418 200.75 DL 16.5(711) +234.082 210 S 13.75(.9 3.6 6.9 10.1)-16.5 F 393.582 214.75 218.418 +214.75 DL 16.5(812)234.082 224 S 13.75(.0 3.7 7.0 10.7)-16.5 F 393.582 +228.75 218.418 228.75 DL 16.5(912)234.082 238 S 13.75(.0 3.6 6.2)-16.5 F +(9.9)22 E 393.582 242.75 218.418 242.75 DL 13.75(10 1 2.0 3.8 7.3 13.0) +228.582 252 R 393.582 256.75 218.418 256.75 DL 13.75 +(11 1 2.0 3.7 7.2 12.4)228.582 266 R 393.582 270.75 218.418 270.75 DL +13.75(12 1 1.9 3.8 6.9 11.5)228.582 280 R 393.582 284.75 218.418 284.75 +DL 13.75(13 1 1.9 3.8 6.8 11.1)228.582 294 R 393.582 298.75 218.418 +298.75 DL 13.75(14 1 2.0 3.5 6.3)228.582 308 R(9.8)22 E 393.582 312.75 +218.418 312.75 DL 13.75(15 1 2.0 3.7 7.0 10.9)228.582 322 R 393.582 +326.75 218.418 326.75 DL 13.75(16 1 1.9 3.9 7.3 12.9)228.582 336 R +393.582 340.75 218.418 340.75 DL 13.75(17 1 1.7 2.6 4.5)228.582 350 R +(6.0)22 E 393.582 354.75 218.418 354.75 DL 13.75(18 1 1.8 2.9 5.2) +228.582 364 R(7.7)22 E 393.582 368.75 218.418 368.75 DL 13.75 +(19 1 2.0 3.8 7.0 13.2)228.582 378 R 393.582 382.75 218.418 382.75 DL +13.75(20 1 2.0 3.9 6.9 14.1)228.582 392 R 393.582 396.75 218.418 396.75 +DL 13.75(21 1 2.0 4.0 7.4 15.3)228.582 406 R 393.582 410.75 218.418 +410.75 DL 13.75(22 1 1.9 3.7 6.2)228.582 420 R(9.7)22 E 393.582 424.75 +218.418 424.75 DL 13.75(23 1 2.0 3.8 6.3)228.582 434 R(9.9)22 E 393.582 +438.75 218.418 438.75 DL 13.75(24 1 2.0 3.9 7.6 14.4)228.582 448 R +393.582 452.75 218.418 452.75 DL -.22(av)223.918 462 S 16.5(g12).22 G +13.75(.0 3.7 6.6 11.1)-16.5 F 393.582 466.75 218.418 466.75 DL 360.582 +116.75 360.582 466.75 DL 330.332 116.75 330.332 466.75 DL 300.082 116.75 +300.082 466.75 DL 269.832 116.75 269.832 466.75 DL 247.832 116.75 +247.832 466.75 DL 393.582 88.75 393.582 466.75 DL 218.418 88.75 218.418 +466.75 DL 360.582 102.75 360.582 466.75 DL 330.332 102.75 330.332 466.75 +DL 300.082 102.75 300.082 466.75 DL 269.832 102.75 269.832 466.75 DL +247.832 88.75 247.832 466.75 DL -.88(Ta)224.798 490.2 S(ble 6).88 E +-.165(Pa)5.5 G(rallel Processing Speedup).165 E 2.75(6. Future)72 514.2 +R -.11(wo)2.75 G(rk).11 E .824(Perhaps the most signi\214cant future w) +72 538.2 R .824 +(ork for this algorithm lies in selecting split points more accurately) +-.11 F(.)-.715 E -.165(Fo)72 550.2 S 4.713(rs).165 G 1.963 +(ome positions, the current Split\(\) algorithm performs admirably) +-4.713 F 7.462(.F)-.715 G 1.962(or others, it performs poorly)-7.627 F +(.)-.715 E(An)72 562.2 Q(ything that impro)-.165 E -.165(ve)-.165 G 2.75 +(st).165 G(he "poor" cases has a positi)-2.75 E .33 -.165(ve e)-.275 H +-.275(ff).165 G(ect on o).275 E -.165(ve)-.165 G(rall performance.).165 +E EP +%%Page: 24 24 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 11/Times-Roman@0 SF .071(There are at least tw)72 96 R 2.822(oa)-.11 +G .072(pproaches to this problem.)-2.822 F .072 +(One is to more accurately \214nd good split points \(some-)5.572 F .721 +(thing that might be impossible in a signi\214cant number of positions\ +\).)72 108 R .72(Another is to de)6.22 F -.165(ve)-.275 G .72 +(lop some sort of).165 F .501 +(con\214dence in a list of split points, someho)72 120 R 3.251(we)-.275 +G .501(liminating those that are potentially bad.)-3.251 F .502 +(After eliminating)6.002 F .511(such split points, the o)72 132 R -.165 +(ve)-.165 G .511(rhead should drop signi\214cantly).165 F 6.011(.U)-.715 +G(nfortunately)-6.011 E 3.261(,d)-.715 G .511 +(etecting such split points is not)-3.261 F(easy)72 144 Q 5.882(.T)-.715 +G .382(he \214rst step will lik)-5.882 F .383 +(ely be more detailed analysis of the trees searched by C-B.)-.11 F .383 +(The problem with)5.883 F .434(this is that these trees re)72 156 R .434 +(gularly e)-.165 F .433(xceed one billion nodes on a T90, making the v) +-.165 F .433(olume of data some)-.22 F(what)-.275 E(lar)72 168 Q 3.063 +(ge! Such)-.198 F(lar)3.063 E .313(ge trees require recognizing a speci\ +\214c performance feature and then adding instructions to)-.198 F .156 +(the code to measure the feature "in situ" since analyzing such a lar)72 +180 R .156(ge tree by visual inspection is impracti-)-.198 F(cal.)72 192 +Q .913(The current algorithm depends on rapid information sharing and u\ +ses shared memory to implement this)72 216 R 4.45(sharing. The)72 228 R +(ne)4.449 E 1.699(xt logical step in algorithm de)-.165 F -.165(ve)-.275 +G 1.699(lopment is to mo).165 F 2.029 -.165(ve t)-.165 H -2.31 -.275 +(ow a).165 H 1.699(rd a distrib).275 F 1.699(uted architecture.)-.22 F +-.44(Wi)72 240 S .091(th HIPPI and/or other high-performance processor \ +interconnects, a distrib).44 F .091(uted v)-.22 F .092 +(ersion of this algorithm)-.165 F 1.738(should deli)72 252 R -.165(ve) +-.275 G 4.488(rh).165 G 1.738(igh performance if care is tak)-4.488 F +1.737(en to control task granularity \(which is not an issue on)-.11 F +(machines lik)72 264 Q 2.75(et)-.11 G(he C90/T90 with shared memory) +-2.75 E(.\))-.715 E(7. Bibliograph)72 288 Q(y)-.055 E 1.053(S. Akl, D. \ +Barnard, and R. Doran, "The Design, Analysis and Implementation of a P) +72 312 R 1.054(arallel Alpha-Beta)-.165 F 2.925(Algorithm", IEEE T)72 +324 R 2.925(ransactions on P)-.385 F 2.924 +(attern Analysis and Machine Intelligence, P)-.165 F 2.924 +(AMI-4, \(2\) \(1982\),)-1.012 F(\(192-203\).)72 336 Q 1.392(B. A)72 360 +R(werb)-1.012 E 1.392(uch, "A Ne)-.22 F 4.142(wD)-.275 G(istrib)-4.142 E +1.393(uted Depth-First Search Algorithm", Information Processing Letter\ +s \(20\))-.22 F(\(1985\) 147-150.)72 372 Q .363(G. Baudet, "The Design \ +and Analysis of Algorithms for Asynchronous Multiprocessors", Ph. D Dis\ +serta-)72 396 R(tion, Carne)72 408 Q(gie-Mellon Uni)-.165 E -.165(ve) +-.275 G(rsity).165 E 2.75(,P)-.715 G(ittsb)-2.75 E(ur)-.22 E(gh, P)-.198 +E 2.75(a. \(1978\).)-.165 F .892(M. Campbell, "Algorithms for the P)72 +432 R .892(arallel Search of Game T)-.165 F .892 +(rees", M. Sc. Thesis, T)-.385 F .892(echnical Report TR)-.77 F +(81-8, Computer Science Department, Uni)72 444 Q -.165(ve)-.275 G +(rsity of Alberta, Edmonton \(1981\).).165 E 4.095(RF)72 468 S 1.345 +(eldmann, B. Monieni, P)-4.095 F 4.095(.M)-1.221 G 1.345 +(ysliwietz and O. V)-4.095 F(ornber)-1.419 E(ger)-.198 E 4.095(,")-.44 G +(Distrib)-4.095 E 1.345(uted g)-.22 F 1.344(ame tree search," in P)-.055 +F(arallel)-.165 E +(algorithms for machine intelligence and pattern recognition \(1990\).) +72 480 Q 3(RF)72 504 S .25(eldmann, "Game T)-3 F .251 +(ree Search on Massi)-.385 F -.165(ve)-.275 G .251(ly P).165 F .251 +(arallel Systems," Ph.D. Theses, Uni)-.165 F -.165(ve)-.275 G .251 +(rsity of P).165 F(aderborn,)-.165 E(August, 1993.)72 516 Q(R. Fink)72 +540 Q(el and J. Fishb)-.11 E(urn, "P)-.22 E(arallelism in Alpha-Beta Se\ +arch", Arti\214cial Intelligence \(1982\) 89-106.)-.165 E 1.706 +(F-h Hsu, "Lar)72 564 R 1.705(ge scale parallelism of alpha-beta search\ +: an algorithmic and architectural study)-.198 F 1.705(," Ph.D.)-.715 F +(Thesis, Carne)72 576 Q(gie-Mellon Uni)-.165 E -.165(ve)-.275 G +(rsity \(1990\).).165 E EP +%%Page: 25 25 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 11/Times-Roman@0 SF .025(R. Hyatt, B. Suter)72 96 R 2.775(,a)-.44 G +.025(nd H. Nelson, "A P)-2.775 F .026(arallel Alpha/Beta T)-.165 F .026 +(ree Searching Algorithm," P)-.385 F .026(arallel Computing)-.165 F +(10 \(1989\) 299-308.)72 108 Q 1.052(R. Hyatt, "A High-Performance P)72 +132 R 1.052(arallel Algorithm to Search Depth-First Game T)-.165 F 1.051 +(rees," Ph.D. Disserta-)-.385 F(tion, Uni)72 144 Q -.165(ve)-.275 G +(rsity of Alabama at Birmingham, 1988.).165 E 1.7(R. Hyatt, A. Go)72 168 +R(wer)-.275 E 4.45(,a)-.44 G 1.7(nd H. Nelson, "Cray Blitz", Adv)-4.45 F +1.7(ances in Computer Chess 4, Per)-.275 F -.055(ga)-.198 G 1.701 +(mmon Press).055 F(\(1986\) \(8-18\).)72 180 Q .293 +(R. Hyatt, H. Nelson, A. Go)72 204 R(wer)-.275 E 3.043(,")-.44 G .292 +(Cray Blitz - 1984 Chess Champion", T)-3.043 F .292 +(elematics and Informatics \(2\) \(4\),)-.77 F(Per)72 216 Q -.055(ga) +-.198 G(mmon Press Ltd. \(1986\) \(299-305\).).055 E .119(D. Knuth and \ +R. Moore, "An Analysis of Alpha-Beta Pruning", Arti\214cial Intelligenc\ +e 6 \(1975\) \(293-326\).)72 240 R(B. K)72 264 Q +(uszmaul, "Synchronized MIMD Computing," Ph.D. Thesis, MIT)-.165 E 2.75 +(,1)-.814 G(994.)-2.75 E 2.239(G. Lindstrom, "The K)72 288 R 2.569 -.165 +(ey N)-.275 H 2.239(ode Method: A Highly P).165 F 2.239 +(arallel Alpha-Beta Algorithm", T)-.165 F 2.238(echnical Report)-.77 F +(UUCS 83-101, Department of Computer Science, Uni)72 300 Q -.165(ve) +-.275 G(rsity of Utah, 1983.).165 E 1.628 -.814(T. M)72 324 T +(arsland and J. Schaef).814 E(fer)-.275 E 2.75(,C)-.44 G +(omputers, Chess and Cognition, Springer)-2.75 E(-V)-.22 E(erlag, 1990.) +-1.221 E 1.913 -.814(T. M)72 348 T .285(arsland and M. Campbell, "P).814 +F .286(arallel Search of Strongly Ordered Game T)-.165 F .286(rees", A) +-.385 F .286(CM Computing Sur)-.44 F(-)-.22 E -.165(vey)72 360 S 2.75 +(s\().165 G(4\) \(1982\) \(533-551\).)-2.75 E 2.905 -.814(T. A)72 384 T +4.027(.M).814 G 1.277(arsland and F)-4.027 F 4.027(.P)-.88 G(opo)-4.027 +E 4.026(wich, "P)-.275 F 1.276(arallel Game-tree Search", IEEE T)-.165 F +1.276(ransactions on P)-.385 F 1.276(attern Analysis)-.165 F +(and Machine Intelligence, P)72 396 Q(AMI-7, \(1985\) \(442-452\).) +-1.012 E 2.523 -.814(T. M)72 420 T .895(arsland, M. Campbell, and A. Ri) +.814 F -.165(ve)-.275 G .896(ra, "P).165 F .896 +(arallel Search of Game T)-.165 F .896(rees", T)-.385 F .896 +(echnical Report TR 80-7,)-.77 F(Computing Science Department, Uni)72 +432 Q -.165(ve)-.275 G(rsity of Alberta, Edmonton \(1980\).).165 E 2.851 +-.814(T. M)72 456 T 1.222(arsland and M. Campbell, "Methods for P).814 F +1.222(arallel Search of Game T)-.165 F 1.222 +(rees", Proceedings of the 1981)-.385 F +(International Joint Conference on Arti\214cial Intelligence.)72 468 Q +3.843 -.814(T. M)72 492 T 2.215(arsland, M. Olafsson, and J. Schaef).814 +F(fer)-.275 E 4.966(,")-.44 G 2.216(Multiprocessor T)-4.966 F 2.216 +(ree-Search Experiments", Adv)-.385 F 2.216(ances in)-.275 F +(Computer Chess 4, Per)72 504 Q -.055(ga)-.198 G +(mmon Press \(1986\) \(37-51\).).055 E 3.234(M. Ne)72 528 R 3.234 +(wborn, "A P)-.275 F 3.233 +(arallel Search Chess Program", Proceedings, A)-.165 F 3.233 +(CM Annual Conference, \(1985\),)-.44 F(\(272-277\).)72 540 Q .826 +(J. Pearl, "Scout: A Simple Game-Searching Algorithm with Pro)72 564 R +-.165(ve)-.165 G 3.577(nO).165 G .827 +(ptimal Properties", Proceedings of)-3.577 F(the First Annual National \ +Conference on Arti\214cial Intelligence, Stanford, \(1980\).)72 576 Q EP +%%Page: 26 26 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 11/Times-Roman@0 SF 2.219 -.88(F. P)72 96 T(opo).88 E .459 +(wich and T)-.275 F 3.208(.M)-.814 G .458(arsland, "P)-3.208 F .458 +(arabelle: Experiments with a P)-.165 F .458(arallel Chess Program", T) +-.165 F .458(echnical Report)-.77 F +(TR 83-7, Computing Science Department, Uni)72 108 Q -.165(ve)-.275 G +(rsity of Alberta, Edmonton \(1983\).).165 E .612(J. Schaef)72 132 R +(fer)-.275 E 3.362(,")-.44 G(Distrib)-3.362 E .612(uted g)-.22 F .612 +(ame-tree search," Journal of P)-.055 F .612(arallel and Distrib)-.165 F +.612(uted Computing 6 \(2\) \(1989\),)-.22 F(90-114.)72 144 Q .133 +(I. Steinber)72 168 R 2.883(ga)-.198 G .133(nd M. Solomon, "Searching g) +-2.883 F .132 +(ame trees in parallel," Proceedings of the International Confer)-.055 F +(-)-.22 E(ence on P)72 180 Q(arallel Processing \(V)-.165 E +(ol 3\) \(1990\), 9-17.)-1.419 E 1.89(Z. Y)72 204 R 1.89(ang and T)-1.1 +F 4.64(.M)-.814 G 1.89(arsland, "Global States and T)-4.64 F 1.89 +(ime in Distrib)-.385 F 1.89(uted Systems," IEEE Computer Society)-.22 F +(Press, No)72 216 Q -.165(ve)-.165 G(mber 1993.).165 E EP +%%Page: 27 27 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 11/Times-Roman@0 SF(Appendix A)72 96 Q([Ev)72 120 Q(ent "23rd A) +-.165 E(CM International Computer Chess Championship"])-.44 E +([Site "Indianapolis, MD"])72 132 Q([Date "02.14.1993"])72 144 Q +([Round "?"])72 156 Q([White "Mchess Pro"])72 168 Q +([Black "Cray Blitz"])72 180 Q([Result "0-1"])72 192 Q .78(1. e4)72 204 +R .78(e5 2. Nc3 Nc6 3. f4)6.28 F -.165(ex)6.28 G .78(f4 4. Nf3 g5 5. d4) +.165 F .78(g4 6. Bc4 gxf3 7. o-o d5 8. e)6.28 F .78 +(xd5 Bg4 9. Qd2 Na5 10.)-.165 F .744 +(Bb5+ c6 11. Qxf4 Nf6 12. Re1+ Kd7 13. dxc6+ bxc6 14. Ne4 Nx)72 216 R +.744(e4 15. Qxg4+ Kc7 16. Rx)-.165 F .744(e4 cxb5 17.)-.165 F 1.054 +(Qxf3 Qd7 18. Rf4 Be7 19. Rxf7 Raf8 20. Bf4+ Kb6 21. Be5 Rhg8 22. c3)72 +228 R 1.054(Nc6 23. Re1 Qe8 24. Rxf8)6.554 F .718 +(Qxf8 25. Qd5 Rg5 26. a4)72 240 R .718(bxa4 27. c4)6.218 F(Nx)6.218 E +.718(e5 28. Rx)-.165 F .718(e5 Rx)-.165 F .718(e5 29. Qx)-.165 F .719 +(e5 Qd8 30. c5+ Kb5 31. Qe2+ Kb4)-.165 F .585(32. Qd3 Bf6 33. Qc3+ Kb5 \ +34. Qd3+ Kc6 35. Qf3+ Kd7 36. Qe4 Qe7 37. Qb7+ K)72 252 R .585 +(e8 38. Qa8+ Qd8 39.)-.275 F .911(Qc6+ Kf7 40. Qb7+ Kf8 41. d5)72 264 R +.911(Qe7 42. Qb8+ Kf7 43. Kf1 Bxb2 44. g4)6.411 F .912 +(Bc3 45. Kf2 Qxc5+ 46. Kf1)6.411 F(Qc4+ 47. Kf2 Qd4+ 48. Kf3 Qd1+ 49. K) +72 276 Q(e3 Bd2+ 50. Kf2 Qe1+ 51. Kg2 Qe2+)-.275 E EP +%%Trailer +end +%%EOF diff --git a/parallel/the-aphid-parallel.pdf b/parallel/the-aphid-parallel.pdf new file mode 100755 index 0000000..0b34c02 Binary files /dev/null and b/parallel/the-aphid-parallel.pdf differ diff --git a/parallel/the-aphid-parallel.ps b/parallel/the-aphid-parallel.ps new file mode 100755 index 0000000..71e3ce2 --- /dev/null +++ b/parallel/the-aphid-parallel.ps @@ -0,0 +1,3515 @@ +%!PS-Adobe-2.0 +%%Creator: dvipsk 5.58f Copyright 1986, 1994 Radical Eye Software +%%Title: aphidcut.dvi +%%Pages: 5 +%%PageOrder: Ascend +%%BoundingBox: 0 0 612 792 +%%DocumentFonts: Times-Bold Times-Roman Times-Italic Helvetica-Bold +%%+ Courier +%%EndComments +%DVIPSCommandLine: dvips aphidcut +%DVIPSParameters: dpi=300, compressed, comments removed +%DVIPSSource: TeX output 1996.07.17:1230 +%%BeginProcSet: texc.pro +/TeXDict 250 dict def TeXDict begin /N{def}def /B{bind def}N /S{exch}N +/X{S N}B /TR{translate}N /isls false N /vsize 11 72 mul N /hsize 8.5 72 +mul N /landplus90{false}def /@rigin{isls{[0 landplus90{1 -1}{-1 1} +ifelse 0 0 0]concat}if 72 Resolution div 72 VResolution div neg scale +isls{landplus90{VResolution 72 div vsize mul 0 exch}{Resolution -72 div +hsize mul 0}ifelse TR}if Resolution VResolution vsize -72 div 1 add mul +TR[matrix currentmatrix{dup dup round sub abs 0.00001 lt{round}if} +forall round exch round exch]setmatrix}N /@landscape{/isls true N}B +/@manualfeed{statusdict /manualfeed true put}B /@copies{/#copies X}B +/FMat[1 0 0 -1 0 0]N /FBB[0 0 0 0]N /nn 0 N /IE 0 N /ctr 0 N /df-tail{ +/nn 8 dict N nn begin /FontType 3 N /FontMatrix fntrx N /FontBBox FBB N +string /base X array /BitMaps X /BuildChar{CharBuilder}N /Encoding IE N +end dup{/foo setfont}2 array copy cvx N load 0 nn put /ctr 0 N[}B /df{ +/sf 1 N /fntrx FMat N df-tail}B /dfs{div /sf X /fntrx[sf 0 0 sf neg 0 0] +N df-tail}B /E{pop nn dup definefont setfont}B /ch-width{ch-data dup +length 5 sub get}B /ch-height{ch-data dup length 4 sub get}B /ch-xoff{ +128 ch-data dup length 3 sub get sub}B /ch-yoff{ch-data dup length 2 sub +get 127 sub}B /ch-dx{ch-data dup length 1 sub get}B /ch-image{ch-data +dup type /stringtype ne{ctr get /ctr ctr 1 add N}if}B /id 0 N /rw 0 N +/rc 0 N /gp 0 N /cp 0 N /G 0 N /sf 0 N /CharBuilder{save 3 1 roll S dup +/base get 2 index get S /BitMaps get S get /ch-data X pop /ctr 0 N ch-dx +0 ch-xoff ch-yoff ch-height sub ch-xoff ch-width add ch-yoff +setcachedevice ch-width ch-height true[1 0 0 -1 -.1 ch-xoff sub ch-yoff +.1 sub]/id ch-image N /rw ch-width 7 add 8 idiv string N /rc 0 N /gp 0 N +/cp 0 N{rc 0 ne{rc 1 sub /rc X rw}{G}ifelse}imagemask restore}B /G{{id +gp get /gp gp 1 add N dup 18 mod S 18 idiv pl S get exec}loop}B /adv{cp +add /cp X}B /chg{rw cp id gp 4 index getinterval putinterval dup gp add +/gp X adv}B /nd{/cp 0 N rw exit}B /lsh{rw cp 2 copy get dup 0 eq{pop 1}{ +dup 255 eq{pop 254}{dup dup add 255 and S 1 and or}ifelse}ifelse put 1 +adv}B /rsh{rw cp 2 copy get dup 0 eq{pop 128}{dup 255 eq{pop 127}{dup 2 +idiv S 128 and or}ifelse}ifelse put 1 adv}B /clr{rw cp 2 index string +putinterval adv}B /set{rw cp fillstr 0 4 index getinterval putinterval +adv}B /fillstr 18 string 0 1 17{2 copy 255 put pop}for N /pl[{adv 1 chg} +{adv 1 chg nd}{1 add chg}{1 add chg nd}{adv lsh}{adv lsh nd}{adv rsh}{ +adv rsh nd}{1 add adv}{/rc X nd}{1 add set}{1 add clr}{adv 2 chg}{adv 2 +chg nd}{pop nd}]dup{bind pop}forall N /D{/cc X dup type /stringtype ne{] +}if nn /base get cc ctr put nn /BitMaps get S ctr S sf 1 ne{dup dup +length 1 sub dup 2 index S get sf div put}if put /ctr ctr 1 add N}B /I{ +cc 1 add D}B /bop{userdict /bop-hook known{bop-hook}if /SI save N @rigin +0 0 moveto /V matrix currentmatrix dup 1 get dup mul exch 0 get dup mul +add .99 lt{/QV}{/RV}ifelse load def pop pop}N /eop{SI restore userdict +/eop-hook known{eop-hook}if showpage}N /@start{userdict /start-hook +known{start-hook}if pop /VResolution X /Resolution X 1000 div /DVImag X +/IE 256 array N 0 1 255{IE S 1 string dup 0 3 index put cvn put}for +65781.76 div /vsize X 65781.76 div /hsize X}N /p{show}N /RMat[1 0 0 -1 0 +0]N /BDot 260 string N /rulex 0 N /ruley 0 N /v{/ruley X /rulex X V}B /V +{}B /RV statusdict begin /product where{pop product dup length 7 ge{0 7 +getinterval dup(Display)eq exch 0 4 getinterval(NeXT)eq or}{pop false} +ifelse}{false}ifelse end{{gsave TR -.1 .1 TR 1 1 scale rulex ruley false +RMat{BDot}imagemask grestore}}{{gsave TR -.1 .1 TR rulex ruley scale 1 1 +false RMat{BDot}imagemask grestore}}ifelse B /QV{gsave newpath transform +round exch round exch itransform moveto rulex 0 rlineto 0 ruley neg +rlineto rulex neg 0 rlineto fill grestore}B /a{moveto}B /delta 0 N /tail +{dup /delta X 0 rmoveto}B /M{S p delta add tail}B /b{S p tail}B /c{-4 M} +B /d{-3 M}B /e{-2 M}B /f{-1 M}B /g{0 M}B /h{1 M}B /i{2 M}B /j{3 M}B /k{ +4 M}B /w{0 rmoveto}B /l{p -4 w}B /m{p -3 w}B /n{p -2 w}B /o{p -1 w}B /q{ +p 1 w}B /r{p 2 w}B /s{p 3 w}B /t{p 4 w}B /x{0 S rmoveto}B /y{3 2 roll p +a}B /bos{/SS save N}B /eos{SS restore}B end +%%EndProcSet +%%BeginProcSet: texps.pro +TeXDict begin /rf{findfont dup length 1 add dict begin{1 index /FID ne 2 +index /UniqueID ne and{def}{pop pop}ifelse}forall[1 index 0 6 -1 roll +exec 0 exch 5 -1 roll VResolution Resolution div mul neg 0 0]/Metrics +exch def dict begin Encoding{exch dup type /integertype ne{pop pop 1 sub +dup 0 le{pop}{[}ifelse}{FontMatrix 0 get div Metrics 0 get div def} +ifelse}forall Metrics /Metrics currentdict end def[2 index currentdict +end definefont 3 -1 roll makefont /setfont load]cvx def}def +/ObliqueSlant{dup sin S cos div neg}B /SlantFont{4 index mul add}def +/ExtendFont{3 -1 roll mul exch}def /ReEncodeFont{/Encoding exch def}def +end +%%EndProcSet +%%BeginProcSet: special.pro +TeXDict begin /SDict 200 dict N SDict begin /@SpecialDefaults{/hs 612 N +/vs 792 N /ho 0 N /vo 0 N /hsc 1 N /vsc 1 N /ang 0 N /CLIP 0 N /rwiSeen +false N /rhiSeen false N /letter{}N /note{}N /a4{}N /legal{}N}B +/@scaleunit 100 N /@hscale{@scaleunit div /hsc X}B /@vscale{@scaleunit +div /vsc X}B /@hsize{/hs X /CLIP 1 N}B /@vsize{/vs X /CLIP 1 N}B /@clip{ +/CLIP 2 N}B /@hoffset{/ho X}B /@voffset{/vo X}B /@angle{/ang X}B /@rwi{ +10 div /rwi X /rwiSeen true N}B /@rhi{10 div /rhi X /rhiSeen true N}B +/@llx{/llx X}B /@lly{/lly X}B /@urx{/urx X}B /@ury{/ury X}B /magscale +true def end /@MacSetUp{userdict /md known{userdict /md get type +/dicttype eq{userdict begin md length 10 add md maxlength ge{/md md dup +length 20 add dict copy def}if end md begin /letter{}N /note{}N /legal{} +N /od{txpose 1 0 mtx defaultmatrix dtransform S atan/pa X newpath +clippath mark{transform{itransform moveto}}{transform{itransform lineto} +}{6 -2 roll transform 6 -2 roll transform 6 -2 roll transform{ +itransform 6 2 roll itransform 6 2 roll itransform 6 2 roll curveto}}{{ +closepath}}pathforall newpath counttomark array astore /gc xdf pop ct 39 +0 put 10 fz 0 fs 2 F/|______Courier fnt invertflag{PaintBlack}if}N +/txpose{pxs pys scale ppr aload pop por{noflips{pop S neg S TR pop 1 -1 +scale}if xflip yflip and{pop S neg S TR 180 rotate 1 -1 scale ppr 3 get +ppr 1 get neg sub neg ppr 2 get ppr 0 get neg sub neg TR}if xflip yflip +not and{pop S neg S TR pop 180 rotate ppr 3 get ppr 1 get neg sub neg 0 +TR}if yflip xflip not and{ppr 1 get neg ppr 0 get neg TR}if}{noflips{TR +pop pop 270 rotate 1 -1 scale}if xflip yflip and{TR pop pop 90 rotate 1 +-1 scale ppr 3 get ppr 1 get neg sub neg ppr 2 get ppr 0 get neg sub neg +TR}if xflip yflip not and{TR pop pop 90 rotate ppr 3 get ppr 1 get neg +sub neg 0 TR}if yflip xflip not and{TR pop pop 270 rotate ppr 2 get ppr +0 get neg sub neg 0 S TR}if}ifelse scaleby96{ppr aload pop 4 -1 roll add +2 div 3 1 roll add 2 div 2 copy TR .96 dup scale neg S neg S TR}if}N /cp +{pop pop showpage pm restore}N end}if}if}N /normalscale{Resolution 72 +div VResolution 72 div neg scale magscale{DVImag dup scale}if 0 setgray} +N /psfts{S 65781.76 div N}N /startTexFig{/psf$SavedState save N userdict +maxlength dict begin /magscale true def normalscale currentpoint TR +/psf$ury psfts /psf$urx psfts /psf$lly psfts /psf$llx psfts /psf$y psfts +/psf$x psfts currentpoint /psf$cy X /psf$cx X /psf$sx psf$x psf$urx +psf$llx sub div N /psf$sy psf$y psf$ury psf$lly sub div N psf$sx psf$sy +scale psf$cx psf$sx div psf$llx sub psf$cy psf$sy div psf$ury sub TR +/showpage{}N /erasepage{}N /copypage{}N /p 3 def @MacSetUp}N /doclip{ +psf$llx psf$lly psf$urx psf$ury currentpoint 6 2 roll newpath 4 copy 4 2 +roll moveto 6 -1 roll S lineto S lineto S lineto closepath clip newpath +moveto}N /endTexFig{end psf$SavedState restore}N /@beginspecial{SDict +begin /SpecialSave save N gsave normalscale currentpoint TR +@SpecialDefaults count /ocount X /dcount countdictstack N}N /@setspecial +{CLIP 1 eq{newpath 0 0 moveto hs 0 rlineto 0 vs rlineto hs neg 0 rlineto +closepath clip}if ho vo TR hsc vsc scale ang rotate rwiSeen{rwi urx llx +sub div rhiSeen{rhi ury lly sub div}{dup}ifelse scale llx neg lly neg TR +}{rhiSeen{rhi ury lly sub div dup scale llx neg lly neg TR}if}ifelse +CLIP 2 eq{newpath llx lly moveto urx lly lineto urx ury lineto llx ury +lineto closepath clip}if /showpage{}N /erasepage{}N /copypage{}N newpath +}N /@endspecial{count ocount sub{pop}repeat countdictstack dcount sub{ +end}repeat grestore SpecialSave restore end}N /@defspecial{SDict begin} +N /@fedspecial{end}B /li{lineto}B /rl{rlineto}B /rc{rcurveto}B /np{ +/SaveX currentpoint /SaveY X N 1 setlinecap newpath}N /st{stroke SaveX +SaveY moveto}N /fil{fill SaveX SaveY moveto}N /ellipse{/endangle X +/startangle X /yrad X /xrad X /savematrix matrix currentmatrix N TR xrad +yrad scale 0 0 1 startangle endangle arc savematrix setmatrix}N end +%%EndProcSet +TeXDict begin 40258431 52099146 1000 300 300 (aphidcut.dvi) +@start /Fa 2 13 df<EA01F038070C08380C0E10EA1807123000701320126000E01340 +A214801400A3EA601B383063A0380F81C015107F8F19>11 D<EB03C0EB0C301310EB2038 +13401380EA0100A2000213701460EB1FC0131138041F60EB0070A35AA31460001813E014 +C0EB018038140300EA230EEA20F890C7FCA25AA45A1521809916>I +E /Fb 61[12 12 70[15 17 17 1[17 19 10 15 15 1[19 19 19 +27 10 2[10 19 19 10 17 19 17 19 19 13[19 2[23 2[31 2[17 +12 3[23 27 25 1[23 6[12 5[19 6[12 9 4[12 39[{}38 37.500000 +/Times-Italic rf /Fc 55[12 5[12 16[19 54[17 19 19 27 +19 19 10 15 12 1[19 19 19 29 10 19 1[10 19 19 12 17 19 +17 19 17 3[12 1[12 3[35 27 27 23 21 25 1[21 27 1[33 1[27 +15 12 27 27 21 23 27 25 25 27 6[10 19 19 19 19 19 19 +19 19 19 19 1[9 12 9 2[12 12 40[{}65 37.500000 /Times-Roman +rf /Fd 1 111 df<EA30F8EA590C124E129C12981218A2EA301813191331A2EA6032131C +100D7F8C15>110 D E /Fe 23 119 df<1380EA0100120212065AA25AA25AA35AA412E0 +AC1260A47EA37EA27EA27E12027EEA0080092A7C9E10>40 D<7E12407E12307EA27EA27E +A37EA41380AC1300A41206A35AA25AA25A12205A5A092A7E9E10>I<1306ADB612E0A2D8 +0006C7FCAD1B1C7E9720>43 D<5A1207123F12C71207B3A5EAFFF80D1C7C9B15>49 +D<EA07C0EA1830EA201CEA400C130EEAF00F12F81307A21270EA000F130EA2131CA21338 +1370136013C0EA0180EA0300EA0601120C1218EA1002EA3FFE127F12FF101C7E9B15>I< +130CA2131C133CA2135C13DC139CEA011C120312021204120C1208121012301220124012 +C0B512C038001C00A73801FFC0121C7F9B15>52 D<007FB512C0B612E0C9FCA8B612E06C +14C01B0C7E8F20>61 D<EA1FC0EA3070EA78387F12301200A2EA01FCEA0F1C1238127012 +6000E01340A3EA603C38304E80381F870012127E9115>97 D<EB1F801303AAEA03F3EA0E +0BEA1807EA30031270126012E0A6126012701230EA1807EA0E1B3803E3F0141D7F9C17> +100 D<EA07E0EA0C30EA1818EA300CEA700EEA600612E0EAFFFEEAE000A41260EA700212 +30EA1804EA0C18EA03E00F127F9112>I<12FC121CAA137C1387EA1D03001E1380121CAD +38FF9FF0141D7F9C17>104 D<1218123CA21218C7FCA712FC121CB0EAFF80091D7F9C0C> +I<12FC121CB3A9EAFF80091D7F9C0C>108 D<39FC7E07E0391C838838391D019018001E +EBE01C001C13C0AD3AFF8FF8FF8021127F9124>I<EAFC7CEA1C87EA1D03001E1380121C +AD38FF9FF014127F9117>I<EA03F0EA0E1CEA1806487E00701380EA600100E013C0A600 +601380EA700300301300EA1806EA0E1CEA03F012127F9115>I<EAFC7CEA1D87381E0180 +001C13C0EB00E0A21470A614E0A2EB01C0001E1380381D0700EA1CFC90C7FCA7B47E141A +7F9117>I<3803E080EA0E19EA1805EA3807EA7003A212E0A61270A2EA38071218EA0E1B +EA03E3EA0003A7EB1FF0141A7F9116>I<EAFCE0EA1D38EA1E78A2EA1C301300ACEAFFC0 +0D127F9110>I<EA1F90EA2070EA4030EAC010A212E0EAF800EA7F80EA3FE0EA0FF0EA00 +F8EA8038131812C0A2EAE010EAD060EA8FC00D127F9110>I<1204A4120CA2121C123CEA +FFE0EA1C00A91310A5120CEA0E20EA03C00C1A7F9910>I<38FC1F80EA1C03AD1307120C +EA0E1B3803E3F014127F9117>I<38FF07E0383C0380381C0100A2EA0E02A2EA0F06EA07 +04A2EA0388A213C8EA01D0A2EA00E0A3134013127F9116>I E /Ff +173[25 82[{}1 41.666668 /Courier rf /Fg 134[23 2[23 25 +14 23 16 1[25 25 25 1[12 2[12 25 25 14 23 25 23 1[23 +13[28 2[28 32 3[30 1[12 30 1[25 1[30 2[30 13[23 23 23 +2[12 46[{}31 41.666668 /Helvetica-Bold rf /Fh 137[23 +1[15 18 20 1[25 23 25 38 13 2[13 25 1[15 20 2[25 23 12[30 +25 2[28 36 1[43 3[18 36 3[33 2[33 12[23 23 23 23 2[11 +46[{}29 45.833332 /Times-Bold rf /Fi 134[17 1[24 2[9 +13 11 1[17 17 17 26 9 2[9 17 17 11 15 17 2[15 12[20 35[17 +1[8 11 8 44[{}22 33.333332 /Times-Roman rf /Fj 1 50 df<1218127812981218 +AC12FF08107D8F0F>49 D E /Fk 2 4 df<B61280A219027D8A20>0 +D<1203A4EAC30CEAE31CEA7338EA1FE0EA0780A2EA1FE0EA7338EAE31CEAC30CEA0300A4 +0E127D9215>3 D E /Fl 1 49 df<1204120EA2121CA31238A212301270A21260A212C0 +A2070F7F8F0A>48 D E /Fm 1 50 df<120C121C12EC120CAFEAFFC00A137D9211>49 +D E /Fn 69[18 8[21 1[23 23 3[18 47[18 21 21 30 21 21 +12 16 14 21 21 21 21 32 12 21 12 12 21 21 14 18 21 18 +21 18 3[14 1[14 1[30 1[39 30 30 25 23 28 1[23 30 30 37 +25 30 16 14 30 30 23 25 30 28 28 30 5[12 12 21 21 21 +21 21 21 21 21 21 21 12 10 14 10 2[14 14 14 1[35 37[{}76 +41.666668 /Times-Roman rf /Fo 10 123 df<13F8EA030C380E0604EA1C0738380308 +0030138800701390A200E013A0A214C01480A3EA6007EB0B8838307190380F80E016127E +911B>11 D<EB01F0EB0618EB080C1310EB200E13401380141CEA01001418143838020FF0 +EB10C0EB0FE0EB00305AA21438A2481370A314E01218EB01C000141380EB0300EA230EEA +20F890C7FCA25AA45AA217257F9C17>I<90B512E09038F001C03901C003809038800700 +EB000E141E0002131C5C5CC75A495A495A49C7FC5B131E131C5BEB7002495AEA01C0EA03 +8048485A5A000E1318485B48137048485AB5FC1B1C7E9B1C>90 D<EA01E3EA0717EA0C0F +1218EA380E12301270A2485AA4EB3880A3EA607838319900EA1E0E11127E9116>97 +D<EB07E01300A2EB01C0A4EB0380A43801E700EA0717EA0C0F1218EA380E12301270A248 +5AA4EB3880A3EA607838319900EA1E0E131D7E9C16>100 D<EB38C013C5EA0183EA0303 +000713801206120EA2381C0700A4130EA3EA0C1EEA047CEA039CEA001CA25B1260EAF030 +1370EAE0C0007FC7FC121A809114>103 D<EA3C1F384E6180384681C0EA4701128F128E +120EA2381C0380A3EB070000381310A2130E1420387006403830038014127E9119>110 +D<001C13C0EA27011247A238870380A2120EA2381C0700A438180E20A3EA1C1E380C2640 +3807C38013127E9118>117 D<001CEBC080392701C1C0124714C03987038040A2120EA2 +391C070080A3EC0100EA1806A2381C0E02EB0F04380E13083803E1F01A127E911E>119 +D<EA0381EA07C1EA0FF6EA081CEA1008EA0010132013401380EA010012025AEA08041210 +EA3C18EA67F8EA43F0EA81E010127E9113>122 D E /Fp 133[16 +18 1[28 18 21 12 16 16 1[21 21 21 30 12 18 1[12 21 21 +12 18 21 18 21 21 7[23 1[35 2[23 1[25 1[25 30 5[14 30 +3[30 1[25 25 18[10 14 10 2[14 14 40[{}39 41.666668 /Times-Italic +rf /Fq 135[25 36 1[28 17 19 22 1[28 25 28 41 14 28 1[14 +28 25 17 22 28 22 28 25 9[50 2[33 1[36 1[30 6[19 39 1[30 +33 36 36 1[36 11[25 25 25 25 25 2[12 46[{}38 50.000000 +/Times-Bold rf /Fr 2 104 df<EB03C0EB1E0013385B5BB1485A485A000FC7FC12F812 +0FEA03806C7E6C7EB113707F131EEB03C012317DA419>102 D<12F8120FEA03806C7E6C +7EB113707F131EEB03C0EB1E0013385B5BB1485A485A000FC7FC12F812317DA419>I +E /Fs 134[25 2[25 25 14 19 17 1[25 25 25 39 14 25 14 +14 25 25 17 22 25 22 25 22 11[36 30 28 5[44 2[19 1[36 +36 1[30 36 33 33 36 46 9[25 3[25 25 2[12 1[12 44[{}40 +50.000000 /Times-Roman rf /Ft 2 13 df<EB0FC0EB70709038C038013803801C3907 +001E02000E130E001E130F001C1404123C00381408127815105A15201540A21580481400 +A3127014170030EB67043918018788380C0E033903F000F0201A7D9925>11 +D<EC03F0EC0C1CEC300EEC4006EC8007EB010013025B150F5BA249130E151E49131C1538 +15309038403F60EC41C0EC3F60EC0070491338A3153C48C7FCA400021478A31570000614 +F015E0140115C00009EB0380EC07003808800EEB401C38103070EB0FC090C8FCA25AA45A +A45AA220367FA921>I E /Fu 139[20 1[27 2[30 1[50 17 2[17 +33 30 1[27 1[27 1[30 12[40 33 2[37 6[23 47 3[43 2[43 +65[{}18 59.999973 /Times-Bold rf end +%%EndProlog +%%BeginSetup +%%Feature: *Resolution 300dpi +TeXDict begin + +%%EndSetup +%%Page: 1 1 +1 0 bop 400 187 a Fu(The)14 b(APHID)h(Parallel)d Ft(\013\014)19 +b Fu(Sear)o(ch)14 b(Algorithm)487 345 y Fs(Mark)e(G.)h(Brockington)e +(and)i(Jonathan)f(Schaef)o(fer)368 403 y(Department)g(of)g(Computing)f +(Science,)i(University)f(of)g(Alberta)567 461 y(Edmonton,)h(Alberta)f +(T6G)g(2H1)h(Canada)602 519 y Fr(f)p Fs(brock,)f(jonathan)p +Fr(g)p Fs(@cs.ualberta.ca)308 694 y Fq(Abstract)-41 794 +y Fp(This)j(paper)g(intr)n(oduces)h(the)f(APHID)i(\(Asynchr)n(onous)f +(Par)o(-)-91 844 y(allel)g(Hierar)n(chical)i(Iterative)f(Deepening\))g +(game-tr)n(ee)h(sear)n(ch)-91 894 y(algorithm.)36 b(APHID)19 +b(r)n(epr)n(esents)i(a)d(departur)n(e)h(fr)n(om)g(the)f(ap-)-91 +944 y(pr)n(oaches)12 b(used)f(in)g(practice.)17 b(Instead)11 +b(of)g(parallelism)e(based)j(on)-91 993 y(the)k(minimal)f(sear)n(ch)j +(tr)n(ee,)i(APHID)d(uses)g(a)g(truncated)e(game-)-91 +1043 y(tr)n(ee)f(and)f(all)g(of)g(the)g(leaves)h(of)f(that)g(tr)n(ee)h +(ar)n(e)h(sear)n(ched)g(in)e(par)o(-)-91 1093 y(allel.)24 +b(APHID)14 b(has)g(been)g(pr)n(ogrammed)g(as)g(an)f(easy)i(to)e(imple-) +-91 1143 y(ment,)c(game-independent)f Fo(\013\014)k Fp(library)n(,)d +(and)f(has)h(been)h(tested)f(on)-91 1193 y(several)g(game-playing)d(pr) +n(ograms.)13 b(Results)8 b(for)g(an)g(Othello)e(pr)n(o-)-91 +1242 y(gram)h(ar)n(e)h(pr)n(esented)g(her)n(e.)14 b(The)8 +b(algorithm)t(yields)f(good)g(parallel)-91 1292 y(performance)k(on)f(a) +g(network)h(of)f(workstations,)f(without)g(using)g(a)-91 +1342 y(shar)n(ed)i(transposition)c(table.)-91 1485 y +Fq(1.)13 b(Intr)o(oduction)-41 1567 y Fn(The)f(alpha-beta)g(\()p +Fo(\013\014)r Fn(\))g(minimax)g(tree)g(search)h(algorithm)e(has)-91 +1612 y(proven)h(to)h(be)g(a)h(dif)o(\256cult)e(algorithm)f(to)i +(parallelize.)22 b(Although)-91 1658 y(simulations)8 +b(predict)g(excellent)h(parallel)g(performance,)i(most)e(re-)-91 +1704 y(sults)k(are)h(based)g(on)f(an)h(unreasonable)g(set)f(of)g +(assumptions.)24 b(In)-91 1749 y(practice,)12 b(knowing)d(where)j(to)e +(initiate)g(parallel)g(activity)g(is)h(dif)o(\256-)-91 +1795 y(cult)g(since)g(the)h(result)e(of)i(searching)f(one)h(node)f(at)g +(a)h(branch)g(may)-91 1841 y(obviate)d(the)h(parallel)g(work)g(of)g +(the)g(other)g(branches.)-41 1886 y(In)d(real-world)f(implementations,) +h(such)h(as)g(high)e(performance)-91 1932 y(chess,)20 +b(checkers)f(and)e(Othello)f(game-playing)h(programs,)i(the)-91 +1978 y(programs)13 b(suf)o(fer)h(from)f(three)h(major)f(sources)h(of)g +(parallel)f(inef-)-91 2023 y(\256ciency)e(\(a)f(similar)g(model)g(is)g +(presented)h(in)e([6]\).)-41 2069 y(The)15 b(\256rst)f(is)g +Fp(synchr)n(onization)f(over)o(head)p Fn(.)27 b(The)15 +b(search)g(typ-)-91 2115 y(ically)g(has)g(many)h(synchronization)e +(points)g(where)i(there)f(is)h(no)-91 2160 y(work)d(available,)i(which) +f(results)g(in)f(a)h(high)f(percentage)i(of)f(idle)-91 +2206 y(time.)-41 2252 y(The)c(second)f(is)g Fp(parallelization)d(over)o +(head)p Fn(.)15 b(This)9 b(is)g(the)g(over)o(-)-91 2297 +y(head)g(of)f(incorporating)e(the)j(parallel)f(algorithm,)g(which)g +(includes)-91 2343 y(the)i(handling)g(of)g(communication,)h(and)g +(maintaining)e(structures)-91 2389 y(to)g(allow)h(for)g(allocation)f +(of)h(work.)-41 2434 y(The)i(third)d(is)i Fp(sear)n(ch)i(over)o(head)p +Fn(.)18 b(Search)12 b(trees)g(are)g(really)f(di-)-91 +2480 y(rected)k(graphs.)26 b(W)m(ork)13 b(performed)h(on)g(one)h +(processor)f(may)h(be)-91 2526 y(useful)c(to)h(the)g(computations)f(of) +g(another)h(processor)n(.)19 b(If)12 b(this)f(in-)-91 +2571 y(formation)c(is)h(not)g(available,)h(unnecessary)h(search)f(may)g +(be)g(done.)-41 2617 y(These)j(overheads)g(are)h(not)d(independent)h +(of)g(each)i(other)n(.)k(For)-91 2662 y(example,)24 b(increased)e +(communication)e(can)i(help)e(reduce)h(the)987 694 y(search)13 +b(overhead.)20 b(Reducing)11 b(the)h(number)f(of)h(synchronization)987 +740 y(points)i(can)j(increase)g(the)e(search)i(overhead.)31 +b(In)16 b(practice,)i(the)987 786 y(right)7 b(balance)i(between)g +(these)g(sources)h(of)e(program)g(inef)o(\256ciency)987 +831 y(is)13 b(dif)o(\256cult)f(to)g(\256nd,)i(and)f(one)g(usually)f +(performs)h(many)h(experi-)987 877 y(ments)c(to)g(\256nd)g(the)g(right) +f(trade-of)o(fs)h(to)f(maximize)i(performance.)1037 924 +y(Many)g(parallel)g Fo(\013\014)j Fn(algorithms)c(have)i(appeared)g(in) +f(the)g(liter)o(-)987 970 y(ature)g(\(a)g(more)g(complete)f(list)g(is)g +(available)h(elsewhere)g([1]\).)k(The)987 1015 y(PV)l(-Split)10 +b(algorithm)g(recognized)h(that)g(some)h(nodes)f(exist)g(in)g(the)987 +1061 y(search)h(tree)f(where,)h(having)e(searched)j(the)e(\256rst)f +(branch)h(sequen-)987 1107 y(tially)m(,)c(the)g(remaining)g(branches)h +(can)g(be)f(searched)i(in)e(parallel)g([5)o(].)987 1152 +y(Initiating)h(parallelism)i(along)h(the)f(best)h(line)f(of)h(play)m(,) +g(the)f Fp(princi-)987 1198 y(pal)i(variation)p Fn(,)h(was)g(ef)o +(fective)h(for)f(a)g(small)g(number)g(of)g(proces-)987 +1244 y(sors,)g(although)d(variations)h(on)h(this)f(scheme)j(seemed)f +(limited)e(to)987 1289 y(speedups)f(of)g(less)h(than)f(8)g([7].)1037 +1336 y(The)15 b(idea)f(can)h(be)f(generalized)h(to)e(other)h(nodes)g +(in)g(the)g(tree.)987 1382 y(At)f(nodes)g(where)h(the)g(\256rst)f +(branch)h(has)f(been)h(searched)h(and)f(no)987 1427 y(cut-of)o(f)h +(occurred,)i(the)e(rest)g(can)h(likely)e(be)i(searched)h(in)d(paral-) +987 1473 y(lel.)32 b(It)16 b(is)g(a)g(trade-of)o(f)g(\261)g(increased)i +(parallelism)e(versus)g(addi-)987 1519 y(tional)h(search)i(overhead,)i +(since)e(one)f(of)g(these)g(parallel)g(tasks)987 1564 +y(could)10 b(cause)h(a)g(cut-of)o(f.)j(This)c(idea)h(has)g(been)g +(tried)f(by)g(a)g(number)987 1610 y(of)h(researchers,)j(such)d(as)h +(Jamboree)g(search)h([4)o(])e(and)h(ABDADA)987 1656 y([9].)26 +b(The)15 b(best-known)e(instance)h(of)g(this)g(type)g(of)g(algorithm)f +(is)987 1701 y(called)8 b Fp(Y)l(oung)g(Br)n(others)h(W)l(ait)e +Fn(\(YBW\))h(and)g(was)h(implemented)f(in)987 1747 y(the)k +Fo(Z)s(ug)q(z)r(w)q(ang)i Fn(chess)g(program)e([3].)21 +b(YBW)12 b(achieved)h(a)g(344-)987 1793 y(fold)c(speedup)i(using)e(a)i +(network)e(of)h(1024)f(T)o(ransputers.)1037 1839 y(This)h(class)h(of)e +(algorithms)g(cannot)h(achieve)h(a)g(linear)e(speedup)987 +1885 y(primarily)i(due)i(to)f(synchronization)f(overhead;)i(the)f +(search)i(tree)987 1931 y(may)k(have)g(thousands)f(of)g +(synchronization)f(points)h(and)g(there)987 1976 y(are)10 +b(numerous)g(occasions)g(where)g(the)g(processes)h(are)f(starved)g(for) +987 2022 y(work.)21 b(The)14 b(algorithms)d(have)j(low)e(search)i +(overhead,)g(with)e(the)987 2068 y(absolute)c(performance)i(being)e +(strongly)f(linked)h(to)g(the)g(quality)g(of)987 2113 +y(the)i(move)h(ordering)e(within)f(the)i(game-tree.)1037 +2160 y(This)f(paper)h(introduces)f(the)h(Asynchronous)f(Parallel)g +(Hierar)o(-)987 2206 y(chical)g(Iterative)g(Deepening)g(\(APHID\))g +(game-tree)h(search)g(algo-)987 2252 y(rithm.)26 b(The)15 +b(algorithm)f(represents)h(a)g(departure)f(from)h(the)f(ap-)987 +2297 y(proaches)j(used)g(in)g(practice.)34 b(In)16 b(contrast)h(to)f +(other)g(schemes,)987 2343 y(APHID)e(de\256nes)g(a)g(frontier)f(\(a)h +(\256xed)f(number)h(of)g(moves)g(away)987 2389 y(from)e(the)g(root)f +(of)g(the)h(search)i(tree\),)f(and)f(all)f(nodes)h(at)g(the)g(fron-)987 +2434 y(tier)c(are)i(done)f(in)f(parallel.)14 b(Each)c(worker)f(process) +g(is)g(assigned)g(an)987 2480 y(equal)h(number)f(of)g(frontier)f(nodes) +i(to)f(search.)15 b(The)10 b(workers)g(con-)987 2526 +y(tinually)d(search)j(these)g(nodes)f(deeper)h(and)f(deeper)n(,)i +(never)e(having)987 2571 y(to)h(synchronize)g(with)f(a)h(controlling)e +(master)j(process.)k(The)c(mas-)987 2617 y(ter)c(process)h(repeatedly)f +(searches)i(to)e(the)g(frontier)f(to)g(get)i(the)f(latest)987 +2663 y(search)12 b(results.)i(In)d(this)e(way)m(,)j(there)f(is)f(ef)o +(fectively)h(no)f(idle)g(time;)p eop +%%Page: 2 2 +2 1 bop -91 42 a Fn(search)14 b(inef)o(\256ciencies)g(are)f(primarily)f +(due)h(to)g(search)h(overhead.)-91 87 y(APHID')n(s)c(performance)h +(does)g(not)e(rely)h(on)g(the)h(implementation)-91 133 +y(of)h(a)i(distributed)c(transposition)h(table,)j(which)e(makes)i(the)f +(algo-)-91 178 y(rithm)g(suitable)g(for)g(loosely-coupled)f +(architectures)i(\(such)f(as)i(a)-91 224 y(network)c(of)h +(workstations\),)f(as)i(well)f(as)g(tightly-coupled)d(archi-)-91 +270 y(tectures.)-41 323 y(Unlike)f(some)i(parallel)f +Fo(\013\014)j Fn(algorithms,)d(APHID)g(is)h(designed)-91 +369 y(to)e(\256t)g(into)f(a)i(sequential)e Fo(\013\014)k +Fn(structure.)i(APHID)8 b(has)h(been)g(imple-)-91 415 +y(mented)k(as)h(a)g(game-independent)f(library)g(of)g(routines.)22 +b(These,)-91 460 y(combined)10 b(with)f(application-dependent)f +(routines)h(that)h(the)g(user)-91 506 y(supplies,)k(allow)f(a)h +(sequential)f Fo(\013\014)j Fn(program)d(to)g(be)h(easily)f(con-)-91 +551 y(verted)7 b(to)f(a)i(parallel)f(program.)13 b(Although)5 +b(most)i(parallel)f Fo(\013\014)k Fn(pro-)-91 597 y(grams)d(take)g +(months)g(to)f(develop,)h(the)g(game-independent)g(library)-91 +643 y(allows)14 b(users)h(to)f(integrate)g(parallelism)g(into)g(their)g +(application)-91 688 y(with)9 b(only)g(a)i(few)g(hours)e(of)h(work.)-91 +807 y Fq(2.)j(The)f(APHID)h(Algorithm)-41 913 y Fn(Y)l(oung)g(Brothers) +h(W)m(ait)g(and)g(other)g(similar)g(algorithms)g(suf-)-91 +959 y(fer)f(from)h(three)f(serious)h(problems.)23 b(First,)14 +b(the)f(numerous)h(syn-)-91 1004 y(chronization)8 b(points)h(and)h +(occasions)g(where)g(there)g(is)g(little)e(or)i(no)-91 +1050 y(work)e(to)h(be)g(done)g(in)f(parallel)h(result)f(in)h(idle)f +(time.)14 b(This)8 b(suggests)-91 1096 y(that)h(a)h(new)g(algorithm)e +(must)h(strive)g(to)g(reduce)h(or)g(eliminate)f(syn-)-91 +1141 y(chronization)i(and)h(small)h(work)e(lists.)20 +b(Second,)14 b(the)e(chaotic)g(na-)-91 1187 y(ture)h(of)f(a)i +(work-stealing)d(scheduler)i(requires)g(algorithms)f(such)-91 +1233 y(as)i(YBW)g(and)g(Jamboree)h(to)e(use)h(a)g(shared)g +(transposition)d(table)-91 1278 y(to)c(achieve)h(good)e(move)i +(ordering)e(and)h(reasonable)h(performance.)-91 1324 +y(ABDADA)j(requires)g(a)h(shared)g(transposition)d(table)i(to)g +(function)-91 1370 y(correctly)m(.)33 b(Third,)17 b(the)g(program)f +(may)h(initiate)e(parallelism)h(at)-91 1415 y(nodes)8 +b(which)f(are)i(better)e(done)h(sequentially)m(.)k(For)c(example,)h +(hav-)-91 1461 y(ing)d(searched)i(the)f(\256rst)g(branch)g(at)g(a)g +(node)g(and)g(not)f(achieved)i(a)g(cut-)-91 1507 y(of)o(f,)g(Y)l(oung)f +(Brothers)f(W)m(ait)i(\(in)f(its)g(simplest)g(form\))g(permits)g(all)h +(of)-91 1552 y(the)g(remaining)g(branches)h(to)f(be)h(searched)g(in)f +(parallel.)13 b(However)n(,)-91 1598 y(if)d(the)g(second)h(branch,)h +(for)e(example,)i(causes)g(a)f(cut-of)o(f,)f(then)h(all)-91 +1644 y(the)c(parallel)g(work)g(has)h(been)g(wasted.)13 +b(This)8 b(suggests)f(parallelism)-91 1689 y(should)i(only)h(be)h +(initiated)e(at)i(nodes)g(where)g(there)g(is)f(a)i(very)e(high)-91 +1735 y(probability)d(that)j(all)g(branches)h(must)f(be)g(considered.) +-41 1788 y(This)g(section)h(introduces)f(the)h(Asynchronous)f(Parallel) +g(Hier)o(-)-91 1834 y(archical)h(Iterative)g(Deepening)g(\(APHID\))f +(game-tree)i(searching)-91 1880 y(algorithm.)k(APHID)11 +b(has)h(been)g(designed)f(to)g(address)h(the)f(above)-91 +1925 y(three)f(issues.)k(The)c(algorithm)f(is)g(asynchronous)h(in)f +(nature;)g(it)g(re-)-91 1971 y(moves)15 b(all)f(synchronization)f +(points)g(from)i(the)f Fo(\013\014)j Fn(search)f(and)-91 +2017 y(from)11 b(iterative)g(deepening.)18 b(Also,)12 +b(parallelism)g(is)f(only)g(applied)-91 2062 y(at)e(nodes)g(that)f +(have)i(a)f(high)f(probability)e(of)j(needing)f(parallelism.)-91 +2108 y(The)g(top)f Fp(plies)128 2093 y Fm(1)154 2108 +y Fn(of)h(a)g(game-tree)h(near)f(the)f(root)g(vary)g(infrequently)-91 +2154 y(between)13 b(steps)h(of)f(iterative)f(deepening.)23 +b(This)13 b(relative)g(invari-)-91 2199 y(ance)f(of)f(the)g(top)f +(portion)g(of)h(the)g(game-tree)h(is)f(exploited)f(by)g(the)-91 +2245 y(APHID)g(algorithm.)-41 2298 y(In)k(its)h(simplest)g(form,)h +(APHID)f(can)h(be)g(viewed)f(as)h(a)f(mas-)-91 2344 y(ter/slave)8 +b(program)g(although,)g(as)h(discussed)g(later)n(,)g(it)f(can)h(be)f +(gen-)-91 2390 y(eralized)19 b(to)e(a)i(hierarchical)f(processor)h +(tree.)38 b(For)18 b(a)h(depth)f Fo(d)-91 2435 y Fn(search,)9 +b(the)f(master)g(is)g(responsible)f(for)g(the)g(top)g +Fo(d)640 2420 y Fl(0)659 2435 y Fn(ply)g(of)g(the)h(tree,)-91 +2481 y(and)i(the)g(remaining)g Fo(d)e Fk(\000)h Fo(d)312 +2466 y Fl(0)334 2481 y Fn(ply)g(are)i(searched)g(in)f(parallel)g(by)f +(the)-91 2527 y(slaves.)p -91 2585 394 2 v -49 2611 a +Fj(1)-31 2623 y Fi(The)e(ply)h(of)f(a)h(node)f(is)h(its)g(depth)f +(within)h(the)f(game-tree,)g(starting)h(with)g(ply)g(0)-91 +2662 y(at)g(the)g(root)g(of)g(the)g(game-tree.)987 42 +y Fh(2.1.)k(Operation)g(of)f(the)h(Master)g(in)g(APHID)1037 +123 y Fn(The)f(master)h(is)f(responsible)f(for)g(searching)h(the)g(top) +f Fo(d)1850 107 y Fl(0)1873 123 y Fn(ply)g(of)987 168 +y(the)15 b(tree.)29 b(It)15 b(repeatedly)g(traverses)h(this)e(tree)i +(until)d(the)i(correct)987 214 y(minimax)10 b(value)h(has)g(been)g +(determined.)16 b(The)11 b(master)h(is)e(execut-)987 +259 y(ing)f(a)h(normal)g Fo(\013\014)i Fn(search,)f(with)e(the)g +(exception)h(that)f(APHID)g(en-)987 305 y(forces)15 b(an)g +(arti\256cial)f(search)i(horizon)e(at)g Fo(d)1639 290 +y Fl(0)1665 305 y Fn(ply)g(from)h(the)f(root.)987 351 +y(Each)j(leaf)g(node)f(in)f(the)i(master)r(')n(s)f Fo(d)1556 +336 y Fl(0)1583 351 y Fn(ply)g(game-tree)h(is)f(being)987 +396 y(asynchronously)c(searched)i(by)f(the)g(slaves.)23 +b(Before)13 b(describing)987 442 y(the)d(master)r(')n(s)g(stopping)e +(condition,)g(we)i(must)g(\256rst)g(describe)g(how)987 +488 y(the)g(master)h(searches)h(the)e Fo(d)1403 473 y +Fl(0)1425 488 y Fn(ply)f(tree.)1037 534 y(When)f(the)h(master)g +(reaches)h(a)f(leaf)g(of)f(the)g Fo(d)1678 519 y Fl(0)1698 +534 y Fn(ply)g(tree,)h(it)f(uses)h(a)987 580 y(reliable)h(or)f +(approximate)h(value)g(for)f(the)h(leaf,)h(depending)e(on)h(the)987 +626 y(information)f(available.)15 b(If)c(a)g Fo(d)e Fk(\000)h +Fo(d)1532 610 y Fl(0)1554 626 y Fn(ply)g(search)i(result)e(is)h(avail-) +987 671 y(able)e(from)f(the)h(slave,)h(that)e(will)f(be)i(used.)14 +b(However)n(,)c(if)e(the)g Fo(d)d Fk(\000)g Fo(d)1960 +656 y Fl(0)987 717 y Fn(ply)k(result)g(is)h(not)f(available,)h(then)g +(the)f(algorithm)g(uses)h(the)g(deep-)987 762 y(est)e(search)i(result)d +(that)h(has)g(been)h(returned)e(by)h(the)g(slave)h(to)e(gener)o(-)987 +808 y(ate)h(a)g(guessed)f(minimax)g(value.)14 b(Any)6 +b(node)i(where)f(we)h(are)g(forced)987 854 y(to)i(guess)g(are)h(marked) +g(as)g Fp(uncertain)p Fn(.)1037 900 y(As)g(values)f(get)h(backed)g(up)g +(the)f(tree,)i(the)e(master)i(maintains)e(a)987 946 y(count)i(of)g(how) +g(many)g(uncertain)g(nodes)g(have)h(been)g(visited)e(in)h(a)987 +992 y(pass)f(over)g(the)f(tree.)16 b(As)11 b(long)e(as)i(the)g(score)g +(at)g(any)g(of)f(the)h(leaves)987 1037 y(is)g(uncertain,)h(the)f +(master)h(must)f(do)g(another)g(pass)h(over)f(the)h(tree.)987 +1083 y(Once)c(the)f(master)i(has)e(a)h(reliable)f(value)h(for)f(all)g +(the)g(leaves)h(in)f(its)g Fo(d)1960 1068 y Fl(0)987 +1129 y Fn(ply)f(tree,)j(the)e(search)h(of)f(the)g Fo(d)g +Fn(ply)f(tree)i(is)f(complete.)13 b(The)8 b(control-)987 +1174 y(ling)g(program)h(would)f(then)g(proceed)i(to)e(the)h(next)g +(iteration)e(by)i(in-)987 1220 y(crementing)g Fo(d)g +Fn(and)h(asking)f(the)g(master)h(to)f(search)h(the)f(tree)h(again.)1037 +1266 y(The)15 b(slaves)g(are)g(responsible)f(for)f(setting)h(their)f +(own)h(search)987 1312 y(windows,)j(based)g(on)g(information)d(from)i +(the)h(master)n(.)33 b(Some-)987 1358 y(times,)9 b(the)g(information)e +(returned)h(by)g(the)h(slave)g(may)g(not)f(be)h(use-)987 +1403 y(ful)j(to)g(the)h(master)n(.)22 b(For)13 b(example,)i(a)e(slave)g +(can)h(tell)e(the)h(master)987 1449 y(that)e(the)h(score)h(of)f(a)h +(given)e(node)h(is)g(less)h(than)f(30,)g(but)g(the)g(mas-)987 +1495 y(ter)e(may)g(want)f(to)h(know)f(if)g(the)g(score)i(is)e(in)h +(between)g(-5)f(and)h(5.)k(In)987 1540 y(this)9 b(case,)j(a)f(\252bad)f +(bound\272)f(search)j(is)d(generated,)i(and)f(the)g(search)987 +1586 y(window)e(parameters,)k Fo(\013)d Fn(and)h Fo(\014)r +Fn(,)h(must)e(be)h(communicated)h(to)e(the)987 1631 y(slave)j +(processor)n(.)18 b(Any)11 b(nodes)h(where)g(we)g(are)h(waiting)d(for)h +(\252bad)987 1677 y(bound\272)d(information)g(are)h(considered)g(as)h +(uncertain)f(by)g(the)g(mas-)987 1723 y(ter)n(,)k(even)g(though)e(we)i +(have)g(a)g(score)g(bound)e(for)h(the)g Fo(d)g Fk(\000)g +Fo(d)1894 1708 y Fl(0)1918 1723 y Fn(ply)987 1768 y(search.)24 +b(Eventually)m(,)14 b(the)f(slave)h(will)e(return)g(updated)h(informa-) +987 1814 y(tion)7 b(that)i(is)f(consistent)g(with)g(both)g(the)g +(original)f(information)g(and)987 1860 y(the)j(search)h(window)f +(requested.)987 1941 y Fh(2.2.)i(The)g(APHID)f(T)l(able)1037 +2022 y Fn(If)h(a)i(node)e(is)h(visited)e(by)i(the)f(master)i(for)e(the) +h(\256rst)f(time,)i(it)e(is)987 2067 y(statically)d(allocated)h(to)f(a) +i(slave)f(processor)n(.)k(This)c(information)e(is)987 +2113 y(recorded)13 b(in)g(a)h(table,)g(the)f Fp(APHID)h(table)p +Fn(,)f(that)f(is)h(shared)h(by)f(all)987 2159 y(processors.)j(Figure)10 +b(1)h(shows)f(an)i(example)f(of)g(how)f(the)g(APHID)987 +2204 y(table)g(would)f(be)i(or)o(ganized)f(at)g(a)h(given)f(point)f(in) +g(time.)1037 2251 y(The)f(APHID)g(table)f(is)g(partitioned)f(into)g +(two)h(parts:)12 b(one)c(which)987 2296 y(only)j(the)g(master)i(can)g +(write)e(to,)h(and)g(one)g(which)f(only)g(the)h(slave)987 +2342 y(that)e(has)g(been)h(assigned)g(that)e(piece)i(of)f(work)g(can)h +(write)f(to.)k(Any)987 2388 y(attempt)e(to)f(write)h(into)e(the)i +(table)g(generates)h(a)g(message)h(that)d(in-)987 2433 +y(forms)e(the)f(slave)h(or)g(the)f(master)i(process)f(of)f(the)h +(update)g(to)f(the)g(in-)987 2479 y(formation.)k(The)d(master)h(and)e +(slave)h(only)e(read)i(their)f(local)g(copies)987 2525 +y(of)k(the)h(information;)e(there)i(are)g(no)f(explicit)f(messages)k +(sent)d(be-)987 2570 y(tween)e(the)h(master)g(and)f(the)g(slave)h +(asking)e(for)h(information.)1037 2617 y(The)18 b(master)r(')n(s)f +(half)g(of)g(the)g(table)g(is)g(illustrated)e(above)j(the)987 +2662 y(dashed)12 b(line)e(in)h(Figure)g(1.)18 b(For)11 +b(each)h(leaf)g(that)f(has)h(been)g(visited)p eop +%%Page: 3 3 +3 2 bop -85 0 a + 15345564 14208860 8420065 17234821 28417720 35653713 startTexFig + -85 0 a +%%BeginDocument: draw2.ps + +/arrowHeight 10 def +/arrowWidth 5 def + +/IdrawDict 51 dict def +IdrawDict begin + +/reencodeISO { +dup dup findfont dup length dict begin +{ 1 index /FID ne { def }{ pop pop } ifelse } forall +/Encoding ISOLatin1Encoding def +currentdict end definefont +} def + +/ISOLatin1Encoding [ +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright +/parenleft/parenright/asterisk/plus/comma/minus/period/slash +/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon +/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N +/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright +/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m +/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/dotlessi/grave/acute/circumflex/tilde/macron/breve +/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut +/ogonek/caron/space/exclamdown/cent/sterling/currency/yen/brokenbar +/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot +/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior +/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine +/guillemotright/onequarter/onehalf/threequarters/questiondown +/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla +/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex +/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis +/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute +/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis +/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave +/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex +/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis +/yacute/thorn/ydieresis +] def +/Helvetica reencodeISO def + +/none null def +/numGraphicParameters 17 def +/stringLimit 65535 def + +/Begin { +save +numGraphicParameters dict begin +} def + +/End { +end +restore +} def + +/SetB { +dup type /nulltype eq { +pop +false /brushRightArrow idef +false /brushLeftArrow idef +true /brushNone idef +} { +/brushDashOffset idef +/brushDashArray idef +0 ne /brushRightArrow idef +0 ne /brushLeftArrow idef +/brushWidth idef +false /brushNone idef +} ifelse +} def + +/SetCFg { +/fgblue idef +/fggreen idef +/fgred idef +} def + +/SetCBg { +/bgblue idef +/bggreen idef +/bgred idef +} def + +/SetF { +/printSize idef +/printFont idef +} def + +/SetP { +dup type /nulltype eq { +pop true /patternNone idef +} { +dup -1 eq { +/patternGrayLevel idef +/patternString idef +} { +/patternGrayLevel idef +} ifelse +false /patternNone idef +} ifelse +} def + +/BSpl { +0 begin +storexyn +newpath +n 1 gt { +0 0 0 0 0 0 1 1 true subspline +n 2 gt { +0 0 0 0 1 1 2 2 false subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 2 copy false subspline +} if +n 2 sub dup n 1 sub dup 2 copy 2 copy false subspline +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Circ { +newpath +0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/CBSpl { +0 begin +dup 2 gt { +storexyn +newpath +n 1 sub dup 0 0 1 1 2 2 true subspline +1 1 n 3 sub { +/i exch def +i 1 sub dup i dup i 1 add dup i 2 add dup false subspline +} for +n 3 sub dup n 2 sub dup n 1 sub dup 0 0 false subspline +n 2 sub dup n 1 sub dup 0 0 1 1 false subspline +patternNone not { ifill } if +brushNone not { istroke } if +} { +Poly +} ifelse +end +} dup 0 4 dict put def + +/Elli { +0 begin +newpath +4 2 roll +translate +scale +0 0 1 0 360 arc +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 1 dict put def + +/Line { +0 begin +2 storexyn +newpath +x 0 get y 0 get moveto +x 1 get y 1 get lineto +brushNone not { istroke } if +0 0 1 1 leftarrow +0 0 1 1 rightarrow +end +} dup 0 4 dict put def + +/MLine { +0 begin +storexyn +newpath +n 1 gt { +x 0 get y 0 get moveto +1 1 n 1 sub { +/i exch def +x i get y i get lineto +} for +patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if +brushNone not { istroke } if +0 0 1 1 leftarrow +n 2 sub dup n 1 sub dup rightarrow +} if +end +} dup 0 4 dict put def + +/Poly { +3 1 roll +newpath +moveto +-1 add +{ lineto } repeat +closepath +patternNone not { ifill } if +brushNone not { istroke } if +} def + +/Rect { +0 begin +/t exch def +/r exch def +/b exch def +/l exch def +newpath +l b moveto +l t lineto +r t lineto +r b lineto +closepath +patternNone not { ifill } if +brushNone not { istroke } if +end +} dup 0 4 dict put def + +/Text { +ishow +} def + +/idef { +dup where { pop pop pop } { exch def } ifelse +} def + +/ifill { +0 begin +gsave +patternGrayLevel -1 ne { +fgred bgred fgred sub patternGrayLevel mul add +fggreen bggreen fggreen sub patternGrayLevel mul add +fgblue bgblue fgblue sub patternGrayLevel mul add setrgbcolor +eofill +} { +eoclip +originalCTM setmatrix +pathbbox /t exch def /r exch def /b exch def /l exch def +/w r l sub ceiling cvi def +/h t b sub ceiling cvi def +/imageByteWidth w 8 div ceiling cvi def +/imageHeight h def +bgred bggreen bgblue setrgbcolor +eofill +fgred fggreen fgblue setrgbcolor +w 0 gt h 0 gt and { +l b translate w h scale +w h true [w 0 0 h neg 0 h] { patternproc } imagemask +} if +} ifelse +grestore +end +} dup 0 8 dict put def + +/istroke { +gsave +brushDashOffset -1 eq { +[] 0 setdash +1 setgray +} { +brushDashArray brushDashOffset setdash +fgred fggreen fgblue setrgbcolor +} ifelse +brushWidth setlinewidth +originalCTM setmatrix +stroke +grestore +} def + +/ishow { +0 begin +gsave +fgred fggreen fgblue setrgbcolor +/fontDict printFont printSize scalefont dup setfont def +/descender fontDict begin 0 [FontBBox] 1 get FontMatrix end +transform exch pop def +/vertoffset 1 printSize sub descender sub def { +0 vertoffset moveto show +/vertoffset vertoffset printSize sub def +} forall +grestore +end +} dup 0 3 dict put def +/patternproc { +0 begin +/patternByteLength patternString length def +/patternHeight patternByteLength 8 mul sqrt cvi def +/patternWidth patternHeight def +/patternByteWidth patternWidth 8 idiv def +/imageByteMaxLength imageByteWidth imageHeight mul +stringLimit patternByteWidth sub min def +/imageMaxHeight imageByteMaxLength imageByteWidth idiv patternHeight idiv +patternHeight mul patternHeight max def +/imageHeight imageHeight imageMaxHeight sub store +/imageString imageByteWidth imageMaxHeight mul patternByteWidth add string def +0 1 imageMaxHeight 1 sub { +/y exch def +/patternRow y patternByteWidth mul patternByteLength mod def +/patternRowString patternString patternRow patternByteWidth getinterval def +/imageRow y imageByteWidth mul def +0 patternByteWidth imageByteWidth 1 sub { +/x exch def +imageString imageRow x add patternRowString putinterval +} for +} for +imageString +end +} dup 0 12 dict put def + +/min { +dup 3 2 roll dup 4 3 roll lt { exch } if pop +} def + +/max { +dup 3 2 roll dup 4 3 roll gt { exch } if pop +} def + +/midpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 x1 add 2 div +y0 y1 add 2 div +end +} dup 0 4 dict put def + +/thirdpoint { +0 begin +/y1 exch def +/x1 exch def +/y0 exch def +/x0 exch def +x0 2 mul x1 add 3 div +y0 2 mul y1 add 3 div +end +} dup 0 4 dict put def + +/subspline { +0 begin +/movetoNeeded exch def +y exch get /y3 exch def +x exch get /x3 exch def +y exch get /y2 exch def +x exch get /x2 exch def +y exch get /y1 exch def +x exch get /x1 exch def +y exch get /y0 exch def +x exch get /x0 exch def +x1 y1 x2 y2 thirdpoint +/p1y exch def +/p1x exch def +x2 y2 x1 y1 thirdpoint +/p2y exch def +/p2x exch def +x1 y1 x0 y0 thirdpoint +p1x p1y midpoint +/p0y exch def +/p0x exch def +x2 y2 x3 y3 thirdpoint +p2x p2y midpoint +/p3y exch def +/p3x exch def +movetoNeeded { p0x p0y moveto } if +p1x p1y p2x p2y p3x p3y curveto +end +} dup 0 17 dict put def + +/storexyn { +/n exch def +/y n array def +/x n array def +n 1 sub -1 0 { +/i exch def +y i 3 2 roll put +x i 3 2 roll put +} for +} def + +/SSten { +fgred fggreen fgblue setrgbcolor +dup true exch 1 0 0 -1 0 6 -1 roll matrix astore +} def + +/FSten { +dup 3 -1 roll dup 4 1 roll exch +newpath +0 0 moveto +dup 0 exch lineto +exch dup 3 1 roll exch lineto +0 lineto +closepath +bgred bggreen bgblue setrgbcolor +eofill +SSten +} def + +/Rast { +exch dup 3 1 roll 1 0 0 -1 0 6 -1 roll matrix astore +} def + + +/arrowhead { +0 begin +transform originalCTM itransform +/taily exch def +/tailx exch def +transform originalCTM itransform +/tipy exch def +/tipx exch def +/dy tipy taily sub def +/dx tipx tailx sub def +/angle dx 0 ne dy 0 ne or { dy dx atan } { 90 } ifelse def +gsave +originalCTM setmatrix +tipx tipy translate +angle rotate +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +patternNone not { +originalCTM setmatrix +/padtip arrowHeight 2 exp 0.25 arrowWidth 2 exp mul add sqrt brushWidth mul +arrowWidth div def +/padtail brushWidth 2 div def +tipx tipy translate +angle rotate +padtip 0 translate +arrowHeight padtip add padtail add arrowHeight div dup scale +arrowheadpath +ifill +} if +brushNone not { +originalCTM setmatrix +tipx tipy translate +angle rotate +arrowheadpath +istroke +} if +grestore +end +} dup 0 9 dict put def + +/arrowheadpath { +newpath +arrowHeight neg arrowWidth 2 div moveto +0 0 lineto +arrowHeight neg arrowWidth 2 div neg lineto +} def + +/leftarrow { +0 begin +y exch get /taily exch def +x exch get /tailx exch def +y exch get /tipy exch def +x exch get /tipx exch def +brushLeftArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + +/rightarrow { +0 begin +y exch get /tipy exch def +x exch get /tipx exch def +y exch get /taily exch def +x exch get /tailx exch def +brushRightArrow { tipx tipy tailx taily arrowhead } if +end +} dup 0 4 dict put def + + +%I Idraw 10 Grid 6 6 + + +Begin +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 0.799705 0 0 0.799705 0 0 ] concat +/originalCTM matrix currentmatrix def + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 5.99997 0 ] concat + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 342 674 ] concat +%I +[ +(Master) +] Text +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 8 26 ] concat + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 315 543.5 ] concat +%I +[ +(1) +] Text +End + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +80 224 12 12 Elli +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -4 26 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +128 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 339 543.5 ] concat +%I +[ +(2) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -10 26 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +164 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 357 544 ] concat +%I +[ +(3) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -16 26 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +200 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 375 544 ] concat +%I +[ +(4) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -22 26 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +236 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 393 544 ] concat +%I +[ +(5) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 104 26 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +32 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 291 543.5 ] concat +%I +[ +(7) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -28 26 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +272 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 411 544 ] concat +%I +[ +(6) +] Text +End + +End %I eop + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +68 260 164 452 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +68 260 272 260 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +164 452 272 260 Line +%I 2 +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -71.5 99 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +308 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 428.5 544 ] concat +%I +[ +(R) +] Text +End + +End %I eop + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 284 612.5 ] concat +%I +[ +(d') +] Text +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 226 395 ] concat +%I +148 518 100 518 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 226 395 ] concat +%I +148 326 100 326 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 226 395 ] concat +%I +124 446 124 506 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 226 395 ] concat +%I +124 410 124 338 Line +%I 2 +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 12 -24 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +128 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 339 543.5 ] concat +%I +[ +(2) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 114 -24 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +164 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 357 544 ] concat +%I +[ +(3) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -108 -24 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +200 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 375 544 ] concat +%I +[ +(4) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -6.00003 -24 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +236 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 393 544 ] concat +%I +[ +(5) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 96 -24 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +272 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 411 544 ] concat +%I +[ +(6) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -84 -24 ] concat + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 315 543.5 ] concat +%I +[ +(1) +] Text +End + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +80 224 12 12 Elli +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 12 -24 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +32 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 291 543.5 ] concat +%I +[ +(7) +] Text +End + +End %I eop + +Begin %I Line +%I b 65520 +1 0 0 [12 4] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1.21519 0 0 0.046875 83.0438 492.703 ] concat +%I +100 241 376 241 Line +%I 1 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 162 515 ] concat +%I +[ +(APHID) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 162 503 ] concat +%I +[ +(Table) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 222 497 ] concat +%I +[ +(-1/4) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 258 497 ] concat +%I +[ +(+2/3) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 297.5 497 ] concat +%I +[ +(?/0) +] Text +End + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 148 395 ] concat +%I +136 170 352 266 Rect +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 342 497 ] concat +%I +[ +(+5/5) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 498 497 ] concat +%I +[ +(+1/3) +] Text +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +140 331 98 217 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +140 331 170 235 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +98 217 110 229 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +110 229 116 217 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +116 217 122 247 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +122 247 140 235 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +140 235 146 247 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +146 247 152 229 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +152 229 158 247 Line +%I 1 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 0 0 1 130 131 ] concat +%I +158 247 170 235 Line +%I 1 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 246 341 ] concat +%I +[ +(Slave 1) +] Text +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 12 0 ] concat + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +288 398 204 194 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +204 194 240 218 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +240 218 252 230 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +252 230 264 218 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +264 218 276 182 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +276 182 288 206 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +288 206 300 230 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +300 230 312 206 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +312 206 324 230 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +288 398 348 230 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 234 263 ] concat +%I +324 230 348 230 Line +%I 2 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 354 341 ] concat +%I +[ +(Slave 2) +] Text +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 35.5 -97.5 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +128 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 339 543.5 ] concat +%I +[ +(2) +] Text +End + +End %I eop + +End %I eop + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 362 230 ] concat +%I +188 248 212 284 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 362 230 ] concat +%I +212 284 236 248 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 362 230 ] concat +%I +236 248 248 296 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 362 230 ] concat +%I +248 296 272 260 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 362 230 ] concat +%I +272 260 284 296 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 362 230 ] concat +%I +284 296 308 272 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 362 230 ] concat +%I +308 272 320 296 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 362 230 ] concat +%I +260 464 320 296 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 362 230 ] concat +%I +260 464 188 248 Line +%I 2 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 468 341 ] concat +%I +[ +(Slave 3) +] Text +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 78 -97 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +272 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 411 544 ] concat +%I +[ +(6) +] Text +End + +End %I eop + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -24.5 -99 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 428 ] concat +%I +32 224 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 291 543.5 ] concat +%I +[ +(7) +] Text +End + +End %I eop + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 130 296 ] concat +%I +100 320 148 320 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 130 296 ] concat +%I +100 164 148 164 Line +%I 2 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 180.5 421.5 ] concat +%I +[ +(d-d') +] Text +End + +Begin %I Line +%I b 65535 +1 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 130 296 ] concat +%I +124 224 124 176 Line +%I 2 +End + +Begin %I Line +%I b 65535 +1 0 1 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 0 0 0.5 130 296 ] concat +%I +124 260 124 308 Line +%I 2 +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 378 497 ] concat +%I +[ +(+4/5) +] Text +End + +Begin %I Pict +%I b u +%I cfg u +%I cbg u +%I f u +%I p u +%I t +[ 1 0 0 1 -30 -36 ] concat + +Begin %I Elli +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 0.5 -0 -0 0.5 278 362 ] concat +%I +356 380 12 12 Elli +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 453 555.5 ] concat +%I +[ +(8) +] Text +End + +End %I eop + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 414 497 ] concat +%I +[ +(-3/1) +] Text +End + +Begin %I Text +%I cfg Black +0 0 0 SetCFg +%I f -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-* +Helvetica 12 SetF +%I t +[ 1 0 0 1 462 497 ] concat +%I +[ +(<0/4) +] Text +End + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 168 230 ] concat +%I +288 250 360 298 Rect +End + +Begin %I Rect +%I b 65535 +1 0 0 [] 0 SetB +%I cfg Black +0 0 0 SetCFg +%I cbg White +1 1 1 SetCBg +none SetP %I p n +%I t +[ 1 -0 -0 1 174 230 ] concat +%I +162 250 270 298 Rect +End + +End %I eop + +showpage + + +end +%%EndDocument + + endTexFig + -7 966 a Fg(Figure)13 b(1.)e(A)g(Snapshot)i(of)f(an)g(APHID)e(Sear)o +(ch)-91 1095 y Fn(by)d(the)g(master)n(,)j(there)d(is)h(an)f(entry)g(in) +g(the)g(APHID)h(table.)13 b(Informa-)-91 1140 y(tion)6 +b(maintained)i(on)f(the)h(leaves)g(includes)g(the)f(moves)i(required)e +(to)-91 1186 y(generate)j(the)g(leaf)g(positions)e(from)h(the)h(root)f +Ff(R)p Fn(,)h(the)g(approximate)-91 1232 y(location)e(of)i(the)g(leaf)g +(in)f(the)h(tree)g(\(which)f(is)h(used)g(by)f(the)h(slave)g(to)-91 +1277 y(prioritize)h(work\),)j(whether)f(this)f(leaf)i(was)g(touched)f +(on)f(the)i(last)-91 1323 y(pass)f(that)e(the)h(master)h(executed,)h +(and)e(the)g(number)g(of)g(the)g(slave)-91 1369 y(that)d(the)i(leaf)f +(was)h(allocated)f(to.)-41 1414 y(In)g(our)g(example,)j(we)e(can)h(see) +g(that)e(there)h(are)g(approximately)-91 1460 y(the)k(same)j(number)d +(of)h(leaves)g(which)g(have)g(been)g(allocated)g(to)-91 +1506 y(each)e(slave.)24 b(Note)14 b(that)e(there)i(is)f(an)h +(additional)d(leaf,)k(8,)g(that)d(is)-91 1551 y(not)e(represented)h(in) +g(the)g(master)r(')n(s)g Fo(d)454 1536 y Fl(0)476 1551 +y Fn(ply)f(search)i(tree.)17 b(This)11 b(leaf)-91 1597 +y(node)d(has)i(been)f(visited)f(on)g(a)h(previous)f(pass)i(of)e(the)h +Fo(d)705 1582 y Fl(0)725 1597 y Fn(ply)f(search)-91 1643 +y(tree,)14 b(but)d(was)j(not)d(touched)i(on)f(the)g(latest)h(pass.)21 +b(However)n(,)14 b(the)-91 1688 y(information)7 b(that)i(the)g(slave)h +(has)g(generated)f(may)h(be)g(needed)g(in)f(a)-91 1734 +y(later)h(pass)h(of)f(the)g(tree)g(and)h(is)f(not)f(deleted)i(by)e(the) +i(master)n(.)-41 1779 y(Leaves)h(are)g(allocated)e(to)g(the)h(slaves)g +(in)f(a)i(round-robin)c(man-)-91 1825 y(ner)n(.)30 b(Although)13 +b(there)j(may)g(be)g(better)f(methods)g(of)g(allocating)-91 +1871 y(leaves,)c(it)e(has)i(been)f(found)f(that)h(this)f(is)h(a)g +(reasonable)h(method)f(of)-91 1916 y(balancing)g(the)g(work)f(on)h(a)h +(small)f(number)h(of)f(processors.)-41 1962 y(The)f(slave')n(s)g(part)f +(of)g(the)g(table,)i(illustrated)c(by)i(the)h(area)h(below)-91 +2008 y(the)e(dashed)g(line,)g(contains)f(information)f(on)i(the)g +(result)f(of)g(search-)-91 2053 y(ing)j(the)h(position)e(to)i(various)f +(depths)h(of)g(search.)18 b(The)12 b(\252best\272)g(in-)-91 +2099 y(formation)i(and)i(the)f(ply)g(to)g(which)g(the)g(leaf)h(was)g +(examined)g(is)-91 2145 y(given)10 b(underneath)h(each)i(leaf)e(node)h +(in)e(the)h(tree.)18 b(For)11 b(leaf)h(1,)f(the)-91 2190 +y(score)i(returned)f(is)g(-1)g(with)f(a)i(search)h(depth)e(of)g(4.)20 +b(Leaf)14 b(3)e(illus-)-91 2236 y(trates)e(that)f(the)h(score)h +(information)d(returned)h(by)h(the)g(slave)g(is)g(not)-91 +2282 y(necessarily)h(an)h(exact)f(number)n(.)16 b(The)c(slaves)f +(maintain)f(an)i(upper)-91 2327 y(bound)7 b(and)i(a)g(lower)g(bound)e +(on)i(the)f(score)i(for)e(each)i(ply)e(of)g(search)-91 +2373 y(depth.)17 b(The)12 b(score)h(is)e(known)g(to)g(be)h(exact)g +(when)g(the)f(upper)g(and)-91 2419 y(lower)f(bounds)f(are)i(the)f +(same.)-91 2495 y Fh(2.3.)i(Operation)g(of)f(Sla)o(ve)g(in)g(APHID)-41 +2571 y Fn(A)e(slave)g(process)h(essentially)e(executes)i(the)f(same)h +(code)f(that)g(a)-91 2617 y(sequential)i Fo(\013\014)k +Fn(searcher)e(would.)18 b(The)13 b(process)f(simply)g(repeats)-91 +2662 y(the)i(following)d(steps)j(until)e(the)i(master)h(tells)e(it)g +(that)g(the)h(search)987 42 y(is)d(complete.)16 b(The)c(slave)g(looks)e +(in)g(its)h(portion)e(of)h(its)h(local)g(copy)987 87 +y(of)i(the)g(APHID)g(table,)g(and)h(\256nds)e(the)h(highest)f(priority) +f(node)i(to)987 133 y(search.)19 b(The)12 b(slave)g(then)f(executes)i +(the)e(search,)i(and)f(reports)f(the)987 178 y(result)d(back)i(to)e +(the)h(master)g(\(getting)e(an)j(update)e(to)g(its)h(APHID)g(ta-)987 +224 y(ble)h(in)g(return\).)1037 270 y(The)16 b(work)f(selection)h +(criterion)f(is)g(primarily)g(based)h(on)g(the)987 315 +y(depth)11 b(to)g(which)h(the)f(slave)h(has)h(already)f(searched)h(a)f +(node.)19 b(The)987 361 y(secondary)13 b(criterion,)f(if)g(the)h +(primary)f(criterion)f(is)h(the)h(same,)i(is)987 407 +y(based)10 b(on)f(the)h(location)e(of)i(the)f(node)h(within)d(the)j +(master)r(')n(s)g(game-)987 452 y(tree.)24 b(This)13 +b(secondary)h(criterion)f(is)g(necessary)i(since)f(it)f(is)g(usu-)987 +498 y(ally)d(bene\256cial)h(to)f(generate)h(the)g(results)f(in)g(a)h +(left-to-right)d(order)987 544 y(for)g(the)g(master)n(.)14 +b(Children)6 b(of)i(nodes)h(are)g(usually)e(considered)h(in)g(a)987 +589 y(best-to-worst)f(ordering,)h(implying)f(that)h(the)h(left-most)f +(branches)987 635 y(at)j(a)g(node)g(have)g(a)g(higher)f(probability)e +(of)j(being)f(useful)g(than)h(the)987 681 y(right-most)d(ones.)1037 +726 y(A)h(node)g(that)g(has)h(a)g(priority)d(of)i(zero)h(\(because)h +(it)d(is)h(no)g(longer)987 772 y(part)16 b(of)g(the)h(master)r(')n(s)f +(tree\))h(will)e(not)h(be)h(selected)g(for)f(further)987 +818 y(search.)e(For)8 b(Slave)f(2,)i(we)f(notice)f(that)g(Leaf)h(8)g +(would)e(be)i(searched)987 863 y(if)g(it)f(had)h(been)h(touched)e(by)h +(the)g(master)n(.)14 b(Leaf)9 b(8)f(is)g(ignored)f(by)h(the)987 +909 y(scheduling)j(algorithm)f(because)k(it)d(is)g(not)h(currently)e +(part)i(of)g(the)987 955 y(master)r(')n(s)e(tree.)1037 +1000 y(Before)i(a)h(search)g(can)g(be)f(executed,)i(an)f +Fo(\013\014)h Fn(search)g(window)987 1046 y(must)c(be)h(generated)g(by) +f(the)h(slave.)k(The)c(master)h(continually)c(ad-)987 +1092 y(vises)16 b(the)f(slaves)h(of)f(the)h(leaf)r(')n(s)g(location)e +(within)g(the)h(master)r(')n(s)987 1137 y(tree,)i(and)e(the)f(likely)g +(value)h(of)g(the)f(root)g(of)h(the)g(master)r(')n(s)g(tree.)987 +1183 y(Although)f(the)i(width)f(of)h(the)g(search)i(window)d(is)h +(application-)987 1229 y(dependent,)8 b(one)g(normally)f(wants)g(to)h +(center)g(the)f(window)g(around)987 1274 y(this)g(hypothesized)g(root)g +(value,)i(plus)e(or)h(minus)g(a)g(factor)g(to)g(re\257ect)987 +1320 y(the)i(uncertainty)f(in)h(it.)1037 1366 y(There)h(are)g(three)f +(types)g(of)g(update)f(messages)k(that)c(a)i(slave)f(re-)987 +1411 y(ceives)f(from)g(the)f(master:)13 b(a)c(new)g(piece)g(of)f(work)g +(has)h(been)g(added)987 1457 y(to)h(the)h(slave)g(processor)r(')n(s)g +(APHID)f(table,)i(the)e(location)g(of)h(a)g(leaf)987 +1503 y(node)c(within)f(the)h(master)r(')n(s)g(tree)h(has)g(changed)g +(\(changing)e(the)h(sec-)987 1548 y(ondary)14 b(work)g(scheduling)f +(criterion\),)i(and)g(a)g(noti\256cation)e(of)h(a)987 +1594 y(\252bad)e(bound\272)f(on)g(a)h(node.)18 b(The)12 +b(bad)g(bound)f(message)i(alerts)f(the)987 1640 y(slave)e(that)f(a)h +(position')n(s)e(search)i(information)e(is)i(not)e(suf)o(\256cient)i +(to)987 1685 y(save)j(the)f(node)g(from)f(being)h(uncertain.)19 +b(In)12 b(this)f(case,)j(the)e(slave)987 1731 y(must)d(re-search)i(the) +e(node)g(with)g(the)g Fo(\013\014)j Fn(search)e(window)e(sent)i(by)987 +1777 y(the)g(master)h(to)f(the)g(ply)f(requested.)1037 +1822 y(As)16 b(a)h(performance)g(improvement,)g(we)g(want)f(to)f(force) +i(the)987 1868 y(slave)12 b(to)e(always)i(work)e(on)h(nodes)g(for)g +(the)g(current)g(search)h(depth)987 1914 y(of)e(the)h(master)n(.)k +(When)c(all)g(the)f(slave')n(s)h(work)f(has)h(been)g(searched)987 +1959 y(to)e(the)h(required)f(depth,)g(rather)h(than)g(becoming)f(idle,) +h(it)f(starts)g(re-)987 2005 y(searching)h(its)g(nodes)g(an)h +(additional)d(ply)i(deeper)n(,)i(in)d(anticipation)987 +2051 y(of)h(the)g(next)g(iteration)e(\(depth)i Fo(d)e +Fe(+)i(1)p Fn(\).)j(When)e(this)e(is)h(happening,)987 +2096 y(the)k(slave)g(routinely)e(checks)j(the)f(communication)g +(channel)g(for)987 2142 y(messages)e(from)d(the)h(master)n(.)k(If)c +(the)f(slave)h(receives)h(a)g(new)f(piece)987 2188 y(of)f(work)f(to)g +(do)h(at)g Fo(d)d Fk(\000)g Fo(d)1344 2173 y Fl(0)1364 +2188 y Fn(ply)i(or)h(less,)h(the)f(search)h(is)f(immediately)987 +2233 y(aborted)h(and)h(control)e(is)i(returned)f(to)g(the)g(slave')n(s) +h(scheduling)f(al-)987 2279 y(gorithm.)987 2357 y Fh(2.4.)i +(Implementation)1037 2434 y Fn(The)c(APHID)f(algorithm)e(has)j(been)g +(written)e(as)i(an)f(application-)987 2480 y(independent)k(library)g +(of)h(C)h(routines.)19 b(The)13 b(library)e(was)i(written)987 +2526 y(to)g(provide)f(minimal)h(intervention)e(into)h(a)i(working)e +(version)h(of)987 2571 y(sequential)f Fo(\013\014)j Fn(or)d(its)g +(common)h(variants.)20 b(Since)13 b(the)f(library)g(is)987 +2617 y(application-independent,)f(a)j(potential)e(user)h(must)g(write)f +(a)i(few)987 2662 y(application-dependent)c(routines)h(\(such)h(as)g +(move)g(format,)h(how)p eop +%%Page: 4 4 +4 3 bop -132 0 a + 16813814 11840716 3289088 3289088 50651955 36443095 startTexFig + -132 0 a +%%BeginDocument: graph2.ps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.100 0.100 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +840 351 M +6129 0 V +840 351 M +0 4618 V +LTb +840 351 M +63 0 V +6066 0 R +-63 0 V +756 351 M +(0) Rshow +840 1275 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(2) Rshow +840 2198 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(4) Rshow +840 3122 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(6) Rshow +840 4045 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(8) Rshow +840 4969 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(10) Rshow +840 351 M +0 63 V +0 4555 R +0 -63 V +840 211 M +(0) Cshow +2372 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(5) Cshow +3905 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(10) Cshow +5437 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(15) Cshow +6969 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(20) Cshow +840 351 M +6129 0 V +0 4618 V +-6129 0 V +840 351 L +140 2660 M +currentpoint gsave translate 90 rotate 0 0 M +(Speedup) Cshow +grestore +3904 71 M +(Number of Processors) Cshow +LT0 +6486 4766 M +(Linear) Rshow +6570 4766 M +252 0 V +1146 813 M +307 462 V +306 461 V +307 462 V +306 462 V +307 462 V +306 462 V +307 461 V +306 462 V +307 462 V +LT1 +6486 4626 M +(d=7) Rshow +6570 4626 M +252 0 V +2066 610 M +1226 55 V +5743 605 L +6654 4626 D +2066 610 D +3292 665 D +5743 605 D +LT2 +6486 4486 M +(d=8) Rshow +6570 4486 M +252 0 V +2066 785 M +3292 993 L +5743 868 L +6654 4486 A +2066 785 A +3292 993 A +5743 868 A +LT3 +6486 4346 M +(d=9) Rshow +6570 4346 M +252 0 V +2066 1048 M +1226 554 V +2451 0 V +6654 4346 B +2066 1048 B +3292 1602 B +5743 1602 B +LT4 +6486 4206 M +(d=10) Rshow +6570 4206 M +252 0 V +2066 1159 M +1226 804 V +2451 600 V +6654 4206 C +2066 1159 C +3292 1963 C +5743 2563 C +LT5 +6486 4066 M +(d=11) Rshow +6570 4066 M +252 0 V +2066 1298 M +1226 909 V +5743 3681 L +6654 4066 T +2066 1298 T +3292 2207 T +5743 3681 T +LT6 +6486 3926 M +(d=12) Rshow +6570 3926 M +252 0 V +2066 1307 M +3292 2420 L +5743 4235 L +6654 3926 S +2066 1307 S +3292 2420 S +5743 4235 S +stroke +grestore +end +showpage +%%EndDocument + + endTexFig + 35 816 a Fg(Figure)13 b(2.)e(APHID)g(Speedups)i(in)e(K)o(e)o(y)o(ano) +-91 955 y Fn(to)g(make/unmake)h(moves,)h(position)d(format,)i(setting)e +(a)i(window)-91 1001 y(for)h(a)h(slave')n(s)g(search,)i +Fp(etc)p Fn(.\).)25 b(APHID')n(s)13 b(message)i(passing)f(was)-91 +1046 y(written)7 b(using)g(PVM)h([8)o(])g(to)g(allow)f(for)h(the)g +(maximum)g(portability)-91 1092 y(among)i(available)g(hardware.)-41 +1140 y(T)m(o)j(parallelize)h(a)g(sequential)f Fo(\013\014)j +Fn(program,)e(the)f(user)h(modi-)-91 1186 y(\256es)d(their)f +(sequential)g(search)h(routine)f(to)g(add)g(approximately)g(20)-91 +1231 y(lines)e(of)h(code.)14 b(This)9 b(search)h(routine)e(functions)g +(as)h(the)g(search)h(al-)-91 1277 y(gorithm)g(for)g(both)g(the)h +(master)h(and)g(the)f(slave)g(processes.)18 b(There)-91 +1323 y(are)10 b(a)f(few)h(additional)d(procedure)i(calls)h(that)e(have) +i(to)e(be)i(added)f(to)-91 1368 y(the)h(iterative)g(deepening)h +(routine)e(that)h(calls)h(the)f(search)i(routine.)-91 +1414 y(A)d(complete)h(explanation)e(of)h(the)g(current)h(APHID)f +(interface)h(can)-91 1460 y(be)g(found)g(elsewhere)h([2].)-91 +1563 y Fq(3.)i(Experiments)-41 1653 y Fn(The)e(APHID)g +(game-independent)f(library)g(was)h(inserted)g(into)-91 +1699 y(the)d(Othello)f(program,)i(Keyano,)g(which)f(has)h(frequently)e +(\256nished)-91 1744 y(in)f(the)h(top)f(\256ve)i(in)e(international)f +(computer)i(Othello)f(tournaments)-91 1790 y(over)k(the)g(last)g(three) +g(years.)-41 1838 y(T)m(o)e(test)g(the)g(algorithm,)g(Keyano)g(was)h +(programmed)g(to)e(search)-91 1884 y(with)13 b(its)g(midgame)i(search)g +(algorithm)e(to)g(a)i(depth)e(of)h Fo(d)24 b Fe(=)h(12)-91 +1929 y Fn(ply)m(,)14 b(with)e(the)h(master)h(controlling)d(the)i(top)f +Fo(d)607 1914 y Fl(0)640 1929 y Fe(=)22 b(4)13 b Fn(ply)f(of)h(the)-91 +1975 y(tree.)25 b(The)14 b(search)h(depth)e(is)g(typical)g(of)h(what)f +(the)h(parallel)f(pro-)-91 2021 y(gram)c(could)g(achieve)h(within)d +(the)i(tight)e(time)i(constraints)f(of)h(Oth-)-91 2066 +y(ello)i(competitions)f(\(typically)g(30)h(minutes)g(per)h(game\).)19 +b(Deeper)-91 2112 y(searches)d(will)d(yield)h(better)g(speedups,)j(but) +c(are)j(not)d(indicative)-91 2158 y(of)e(what)h(can)g(be)g(achieved)h +(in)e(real)h(time.)19 b(The)12 b(74)f(positions)f(ex-)-91 +2203 y(amined)j(were)g(the)f(positions)f(from)h(move)h(2)f(to)g(move)h +(38)f(in)f(the)-91 2249 y(two)f(games)j(of)e(the)g(1994)f(W)m(orld)g +(Championship)g(\256nal)h(between)-91 2295 y(David)f(Shaman)h(and)f +(Emmanuel)h(Caspard.)-41 2343 y(Parallel)j(tests)h(were)g(run)g(on)f +(4,)i(8)f(and)f(16)h(workstations)e(on)-91 2389 y(a)i(network)e(of)i +(SparcStation)e(IPC)h(computers)h(with)e(12)h(MB)h(of)-91 +2434 y(RAM,)7 b(running)f(the)i(SunOS)f(4.1.4)h(operating)e(system.)14 +b(The)8 b(com-)-91 2480 y(puters)g(are)i(linked)e(with)g(1)h(segment)h +(of)f(10)f(base)i(2)f(\(thin)f(net\))h(Eth-)-91 2526 +y(ernet.)16 b(One)11 b(workstation)e(in)h(each)i(experiment)f(was)h +(completely)-91 2571 y(occupied)7 b(by)f(the)h(master)g(process,)i +(while)d(the)h(other)f(workstations)-91 2617 y(each)16 +b(ran)f(a)g(slave)g(process.)28 b(Figure)15 b(2)f(illustrates)g(the)g +(average)-91 2662 y(speedups)d(for)f(7)h(to)f(12)h(ply)f(searches.)18 +b(The)11 b(graph)g(shows)f(that)h(as)947 0 y + 16813814 11840716 3289088 3289088 50651955 36443095 startTexFig + 947 0 a +%%BeginDocument: graph1.ps +/gnudict 40 dict def +gnudict begin +/Color false def +/Solid false def +/gnulinewidth 5.000 def +/vshift -46 def +/dl {10 mul} def +/hpt 31.5 def +/vpt 31.5 def +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow { currentpoint stroke M + 0 vshift R show } def +/Rshow { currentpoint stroke M + dup stringwidth pop neg vshift R show } def +/Cshow { currentpoint stroke M + dup stringwidth pop -2 div vshift R show } def +/DL { Color {setrgbcolor Solid {pop []} if 0 setdash } + {pop pop pop Solid {pop []} if 0 setdash} ifelse } def +/BL { stroke gnulinewidth 2 mul setlinewidth } def +/AL { stroke gnulinewidth 2 div setlinewidth } def +/PL { stroke gnulinewidth setlinewidth } def +/LTb { BL [] 0 0 0 DL } def +/LTa { AL [1 dl 2 dl] 0 setdash 0 0 0 setrgbcolor } def +/LT0 { PL [] 0 1 0 DL } def +/LT1 { PL [4 dl 2 dl] 0 0 1 DL } def +/LT2 { PL [2 dl 3 dl] 1 0 0 DL } def +/LT3 { PL [1 dl 1.5 dl] 1 0 1 DL } def +/LT4 { PL [5 dl 2 dl 1 dl 2 dl] 0 1 1 DL } def +/LT5 { PL [4 dl 3 dl 1 dl 3 dl] 1 1 0 DL } def +/LT6 { PL [2 dl 2 dl 2 dl 4 dl] 0 0 0 DL } def +/LT7 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 1 0.3 0 DL } def +/LT8 { PL [2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 2 dl 4 dl] 0.5 0.5 0.5 DL } def +/P { stroke [] 0 setdash + currentlinewidth 2 div sub M + 0 currentlinewidth V stroke } def +/D { stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + P } def +/A { stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/B { stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + P } def +/C { stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke } def +/T { stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + P } def +/S { 2 copy A C} def +end +gnudict begin +gsave +50 50 translate +0.100 0.100 scale +0 setgray +/Helvetica findfont 140 scalefont setfont +newpath +LTa +840 351 M +6129 0 V +840 351 M +0 4618 V +LTb +840 351 M +63 0 V +6066 0 R +-63 0 V +756 351 M +(0) Rshow +840 1121 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(20) Rshow +840 1890 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(40) Rshow +840 2660 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(60) Rshow +840 3430 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(80) Rshow +840 4199 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(100) Rshow +840 4969 M +63 0 V +6066 0 R +-63 0 V +-6150 0 R +(120) Rshow +840 351 M +0 63 V +0 4555 R +0 -63 V +840 211 M +(0) Cshow +2372 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(5) Cshow +3905 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(10) Cshow +5437 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(15) Cshow +6969 351 M +0 63 V +0 4555 R +0 -63 V +0 -4695 R +(20) Cshow +840 351 M +6129 0 V +0 4618 V +-6129 0 V +840 351 L +140 2660 M +currentpoint gsave translate 90 rotate 0 0 M +(Percent Overhead) Cshow +grestore +3904 71 M +(Number of Processors) Cshow +LT0 +6486 4766 M +(Search Overhead) Rshow +6570 4766 M +252 0 V +2066 1556 M +1226 46 V +2451 23 V +6654 4766 D +2066 1556 D +3292 1602 D +5743 1625 D +LT1 +6486 4626 M +(Speculative Search) Rshow +6570 4626 M +252 0 V +2066 659 M +3292 978 L +2451 674 V +6654 4626 A +2066 659 A +3292 978 A +5743 1652 A +LT2 +6486 4486 M +(Parallelization Overhead) Rshow +6570 4486 M +252 0 V +2066 563 M +1226 73 V +5743 778 L +6654 4486 B +2066 563 B +3292 636 B +5743 778 B +LT3 +6486 4346 M +(Master Overhead) Rshow +6570 4346 M +252 0 V +2066 2210 M +3292 1209 L +5743 809 L +6654 4346 C +2066 2210 C +3292 1209 C +5743 809 C +LT4 +6486 4206 M +(Total Overhead) Rshow +6570 4206 M +252 0 V +2066 3938 M +3292 3376 L +2451 446 V +6654 4206 T +2066 3938 T +3292 3376 T +5743 3822 T +stroke +grestore +end +showpage +%%EndDocument + + endTexFig + 1214 816 a Fg(Figure)h(3.)g(12)f(Pl)o(y)h(Overheads)987 +956 y Fn(the)e(depth)g(of)g(the)g(search)h(increases,)h(so)e(does)h +(the)f(speedup.)1037 1005 y(The)f(overheads)g(in)f(the)h(algorithm)e +(are)i(illustrated)e(in)h(Figure)h(3)987 1051 y(as)k(percentages)f(of)g +(the)g(sequential)f(time)h(required)f(to)h(search)h(all)987 +1097 y(74)g(positions.)21 b(The)14 b Fp(total)d(over)o(head)j +Fn(represents)g(the)f(additional)987 1142 y(computing)6 +b(time)h(required)f(by)h(the)g(parallel)f(algorithm)g(to)h(achieve)987 +1188 y(the)j(same)i(result:)990 1303 y Fe(total)d(o)o(v)o(erhead)j(=) +1305 1275 y(\(parallel)d(time)17 b Fk(\003)h Fe(n\))9 +b Fk(\000)h Fe(sequen)o(tial)f(time)p 1305 1293 658 2 +v 1499 1331 a(sequen)o(tial)h(time)987 1420 y Fn(where)h +Fo(n)g Fn(is)g(the)g(number)f(of)h(processors.)16 b(The)c(total)d +(overhead)j(is)987 1466 y(also)h(a)h(sum)f(of)g(the)g(four)f +(overheads:)19 b(master)14 b(overhead,)g(paral-)987 1511 +y(lelization)6 b(overhead,)j(speculative)e(search)i(and)e(search)i +(overhead.)1037 1560 y(The)f Fp(master)h(over)o(head)f +Fn(is)g(the)g(approximate)g(penalty)f(incurred)987 1606 +y(by)k(having)g(a)h(single)f(processor)h(being)f(allocated)h +(completely)f(to)987 1651 y(the)g(handling)f(of)h(the)g(master)n(.)18 +b(This)12 b(is)f(not)g(simply)1771 1635 y Fm(1)p 1769 +1642 21 2 v 1769 1666 a Fd(n)1795 1651 y Fn(,)h(but)e(is)i(the)987 +1697 y(time)e(taken)g(away)g(by)g(the)f(master:)14 b(the)c(parallel)f +(time)h(divided)f(by)987 1743 y(the)h(sequential)g(time.)1037 +1792 y(The)j Fp(parallelization)d(over)o(head)k Fn(is)e(the)h(penalty)f +(incurred)h(by)987 1837 y(the)c(APHID)g(library)f(on)g(the)h(speed)h +(of)e(the)h(slaves.)14 b(Keyano)c(visits)987 1883 y(approximately)e +(8700)h(nodes)g(per)h(second)f(on)g(a)h(single)f(SparcSta-)987 +1929 y(tion)g(IPC.)h(Using)f(the)h(APHID)g(library)m(,)g(the)g(slaves)h +(were)g(visiting)987 1974 y(7600)c(nodes)g(per)g(second.)14 +b(The)8 b(dif)o(ference)g(between)g(this)f(rate)g(and)987 +2020 y(the)j(sequential)g(program')n(s)f(node)h(rate)h(is)f(derived)g +(partially)f(from)987 2066 y(the)14 b(overhead)g(of)g(using)f(PVM,)i +(and)f(partially)e(from)i(the)g(work-)987 2111 y(scheduling)c +(algorithm)f(on)h(each)i(slave.)k(In)10 b(the)h(authors')f(experi-)987 +2157 y(ence,)15 b(this)d(parallelization)g(overhead)i(is)e(similar)h +(to)f(implemen-)987 2203 y(tations)i(of)h(YBW)g(on)g(equivalent)f +(hardware)h(\(the)g(results)g(have)987 2248 y(not)9 b(been)h(presented) +g(here)g(because)h(Keyano)f(has)g(been)g(rewritten)987 +2294 y(since)h(the)f(original)e(experiment)i(with)g(YBW)g(in)f(1994\).) +1037 2343 y(The)16 b Fp(sear)n(ch)h(over)o(head)g Fn(starts)f(at)g +(30\045)f(and)g(increases)j(very)987 2389 y(gradually)11 +b(as)h(we)h(increase)g(from)f(4)g(to)f(16)h(processors.)19 +b(Most)12 b(of)987 2434 y(the)c(search)i(overhead)e(is)g(incurred)g(by) +g(attempting)f(to)h(do)g(searches)987 2480 y(before)16 +b(the)f(correct)h(search)h(window)d(is)h(available.)30 +b(Thus,)18 b(the)987 2526 y(slaves)12 b(use)g Fo(\013\014)j +Fn(search)e(windows)d(that)i(are)g(lar)o(ger)g(than)f(those)h(in)987 +2571 y(the)g(sequential)f(program.)19 b(Part)12 b(of)g(the)g(search)h +(overhead)g(is)e(due)987 2617 y(to)f(information)f(de\256ciency)m(,)j +(since)f(there)g(is)g(no)f(common)h(shared)987 2662 y(data)f(between)h +(the)f(slave)h(processes.)p eop +%%Page: 5 5 +5 4 bop -41 42 a Fn(Since)13 b(we)g(only)f(search)h(each)h(position)d +(to)h(12)g(ply)m(,)i(the)e(asyn-)-91 87 y(chronous)c(nature)g(of)h(the) +f(slaves)h(will)f(result)f(in)i(some)g(work)f(being)-91 +133 y(done)k(at)g(13)g(ply)g(\(or)g(more\).)20 b(The)13 +b Fp(speculative)f(sear)n(ch)i Fn(line)d(rep-)-91 178 +y(resents)f(the)f(amount)g(of)g(additional)e(search)k(beyond)d(what)i +(the)f(se-)-91 224 y(quential)d(algorithm)f(would)h(have)h(done.)13 +b(However)n(,)8 b(in)f(our)f(exper)o(-)-91 270 y(iments,)11 +b(the)h(speculative)f(search)h(results)f(were)h(not)e(used)i(so)f(that) +-91 315 y(the)e(parallel)f(program)h(produces)g(the)g(identical)f +(results)h(as)h(the)f(se-)-91 361 y(quential)i(version,)i(verifying)f +(APHID')n(s)g(correctness.)22 b(In)13 b(a)g(real)-91 +407 y(tournament)f(game,)i(this)e(speculative)g(search)i(could)e(be)h +(used)g(to)-91 452 y(look)e(an)i(extra)g(move)g(ahead)g(on)g(some)g +(key)g(variations,)f(since)h(it)-91 498 y(is)e(highly)e(likely)h(that)h +(the)g(moves)g(extended)g(a)h(ply)e(ahead)i(would)-91 +544 y(be)g(in)f(the)g(left-most)g(branches)h(of)f(the)h(tree.)18 +b(Note)11 b(that)g(other)g(al-)-91 589 y(gorithms,)e(such)h(as)h(Y)l +(oung)e(Brothers)g(W)m(ait,)h(have)g(processors)h(go)-91 +635 y(idle)d(when)h(there)g(is)f(no)h(work)f(left)g(to)g(do)h(on)f(the) +h(current)f(iteration.)-41 683 y(W)m(eill)15 b(tested)h(YBW)g(and)g +(ABDADA)g(on)g(a)h(CM-5)e(using)h(a)-91 728 y(dif)o(ferent)f(Othello)f +(program)h([9)o(].)30 b(YBW)15 b(achieved)i(a)f(9.5-fold)-91 +774 y(speedup)d(and)g(ABDADA)g(achieved)g(a)h(1)n(1-fold)e(speedup)h +(on)g(16)-91 820 y(processors.)26 b(Although)12 b(the)h(APHID)h +(results)g(are)h(not)e(as)i(good,)-91 865 y(they)i(were)i(achieved)f +(without)e(a)i(shared)h(transposition)c(table.)-91 911 +y(Both)c(ABDADA)g(and)h(YBW)g(will)f(get)g(poor)g(performance)i(on)f(a) +-91 957 y(network)6 b(of)h(workstations,)f(since)i(the)f(shared)h +(transposition)t(table)-91 1002 y(is)i(critical)g(to)f(the)h +(performance)h(of)f(the)g(algorithms.)-41 1050 y(Other)f(results)g(for) +h(parallel)f(search)i(algorithms)d(on)i(a)g(network)-91 +1095 y(of)h(workstations)g(have)h(been)g(presented)h(for)e(the)h(game)h +(of)e(chess)-91 1141 y([7)o(].)19 b(There)13 b(is)e(more)i(parallelism) +e(available)h(in)f(the)h(wider)f(chess)-91 1187 y(trees,)e(which)e +(results)h(in)f(better)h(speedups)g(in)f(comparison)h(to)f(Oth-)-91 +1232 y(ello)f([9].)13 b(Although,)6 b(a)i(distributed)d(transposition)t +(table)i(was)h(used)-91 1278 y(to)k(improve)g(the)h(performance)g(of)g +(the)f(parallel)g(chess)i(searches,)-91 1324 y(a)h(speedup)g(of)f(7)h +(was)g(possible)f(on)g(16)h(processors.)27 b(These)16 +b(re-)-91 1369 y(sults)10 b(were)i(extrapolated)e(to)h(a)g(speedup)h +(of)e(8)h(on)g(32)g(processors.)-91 1415 y(The)i(bene\256cial)h(ef)o +(fects)f(of)g(the)g(distributed)d(transposition)g(table)-91 +1461 y(are)h(derived)f(primarily)f(in)h(the)g(top)g(plies)g(of)g(the)g +(search)i(tree,)f(and)-91 1506 y(these)h(bene\256ts)g(are)h(duplicated) +e(in)h(APHID)f(by)h(maintaining)e(the)-91 1552 y(top)f +Fo(d)-6 1537 y Fl(0)16 1552 y Fn(ply)g(exclusively)h(on)g(the)g(master) +h(processor)n(.)-41 1600 y(The)d(APHID)h(algorithm)d(can)j(support)e(a) +i(shared)g(transposition)-91 1645 y(table,)17 b(but)e(the)g(algorithm)f +(does)i(not)f(depend)g(on)h(its)f(presence.)-91 1691 +y(Thus,)i(the)e(algorithm)f(gets)i(good)e(performance)i(on)f(a)h +(loosely-)-91 1737 y(coupled)8 b(network)g(of)g(workstations)f(and)h +(will)f(perform)i(even)g(bet-)-91 1782 y(ter)h(on)g(tightly-coupl)o(ed) +e(processors.)-91 1883 y Fq(4.)13 b(Conclusions)e(and)h(Futur)o(e)g(W)m +(ork)-41 1972 y Fn(The)k(APHID)f(algorithm)e(yields)i(good)f(speedups)i +(on)f(a)h(net-)-91 2018 y(work)7 b(of)g(workstations)e(without)g(the)i +(necessity)h(of)f(a)h(shared)g(trans-)-91 2063 y(position)h(table.)16 +b(Although)10 b(the)h(authors)f(are)i(pleased)g(with)e(these)-91 +2109 y(preliminary)f(results,)h(a)h(lot)e(of)h(work)g(is)g(left)f(to)h +(be)h(done.)-41 2156 y(The)20 b(load)e(balancing)h(of)g(the)g(APHID)h +(algorithm)d(has)j(not)-91 2202 y(been)10 b(addressed)g(in)e(this)h +(paper)n(.)14 b(More)9 b(intelligent)e(schemes)k(than)-91 +2248 y(round-robin)e(allocation)i(of)h(work)f(are)i(currently)e(being)h +(investi-)-91 2293 y(gated.)-41 2341 y(Our)7 b(current)f +(implementation)g(of)h(APHID)g(uses)h(a)g(\256xed-depth)-91 +2387 y(horizon)i(for)g(the)h(master)r(')n(s)g(tree.)17 +b(All)11 b(positions)e(are)j(not)e(equal)h(in)-91 2432 +y(the)i(amount)g(of)g(search)i(ef)o(fort)d(they)h(require.)23 +b(APHID)14 b(is)f(being)-91 2478 y(generalized)i(to)e(support)g(a)i +(dynamically)f(changing)g(horizon)f(in)-91 2524 y(the)d(master)n(.)-41 +2571 y(The)17 b(results)g(reported)g(here)g(are)h(based)g(on)f(a)h +(simple)e(mas-)-91 2617 y(ter/slave)j(relationship.)39 +b(As)20 b(the)f(number)g(of)g(processors)h(in-)-91 2663 +y(creases,)29 b(the)23 b(master)g(increasingly)g(becomes)h(a)g +(bottleneck.)987 42 y(APHID)11 b(has)g(been)g(generalized)h(to)e(work)g +(in)h(a)g(hierarchical)g(pro-)987 87 y(cess)i(tree.)19 +b(Mid-level)11 b(processes)i(would)e(behave)h(as)h(a)f(slave)g(to-)987 +133 y(ward)f(their)f(master)n(,)i(and)f(as)h(a)f(master)h(toward)e +(their)g(slaves.)17 b(The)987 178 y(scalability)6 b(of)i(the)g +(algorithm)e(has)i(yet)g(to)f(be)h(demonstrated)g(on)f(ar)o(-)987 +224 y(chitectures)i(of)g(more)h(than)e(16)h(processors,)h(due)g(to)e +(resource)i(lim-)987 270 y(itations.)1037 315 y(Perhaps)g(the)g +(biggest)e(contribution)f(of)i(APHID)h(is)g(that)f(it)f(eas-)987 +361 y(ily)13 b(\256ts)h(into)f(an)h(existing)f(sequential)h +Fo(\013\014)i Fn(program.)26 b(As)14 b(a)h(val-)987 407 +y(idation)h(of)i(this,)h(APHID)f(has)h(been)f(integrated)f(into)g(a)h +(chess)987 452 y(and)e(checkers)h(program)f(with)f(one)i(afternoon)e +(of)h(ef)o(fort.)31 b(The)987 498 y(application-dependent)11 +b(code)j(is)f(roughly)f(150)h(lines,)h(and)f(took)987 +544 y(less)f(than)f(an)h(hour)f(to)g(write.)17 b(Although)10 +b(all)h(of)g(the)h(programs)f(in)987 589 y(the)i(original)e(testing)h +(were)i(designed)f(at)h(the)f(University)e(of)i(Al-)987 +635 y(berta,)f(the)g(second)f(stage)h(of)f(the)h(experiment)f(will)f +(be)i(to)f(release)987 681 y(the)18 b(code)g(to)g(interested)f(members) +i(of)f(the)g(high-performance)987 726 y(games)11 b(community)f(outside) +f(of)h(the)g(University)f(of)h(Alberta.)987 822 y Fq(5.)j +(Acknowledgements)1037 905 y Fn(The)i(authors)f(would)g(like)g(to)h +(thank)f(the)g(other)h(members)h(of)987 951 y(the)10 +b(GAMES)h(group)e(at)h(the)g(University)f(of)h(Alberta)g(for)f(their)h +(as-)987 996 y(sistance)h(and)g(constructive)f(criticisms:)k(Yngvi)c +(Bjornsson,)g(An-)987 1042 y(dreas)15 b(Junghanns,)h(Y)l(aoqing)e(Gao,) +i(T)m(ony)f(Marsland)f(and)h(Aske)987 1088 y(Plaat.)h(The)c(authors)e +(would)g(also)h(like)f(to)h(thank)f(the)h(anonymous)987 +1133 y(referees)k(whose)g(comments)f(were)h(valuable)f(in)f(improving)g +(the)987 1179 y(presentation)8 b(of)h(the)g(original)f(paper)n(.)14 +b(This)9 b(work)g(was)h(supported)987 1225 y(by)g(the)h(Natural)f +(Sciences)i(and)f(Engineering)f(Research)i(Council)987 +1270 y(of)e(Canada.)987 1366 y Fq(Refer)o(ences)992 1449 +y Fc([1])21 b(M.)16 b(G.)g(Brockington.)44 b(A)16 b(T)m(axonomy)e(of)h +(Parallel)h(Game-Tree)1056 1494 y(Search)8 b(Algorithms.)14 +b Fb(ICCA)c(Journal)p Fc(,)d(1996.)13 b(In)c(press.)992 +1538 y([2])21 b(M.)10 b(G.)f(Brockington)g(and)f(J.)h(Schaef)o(fer)n(.) +k(The)8 b(APHID)i(Parallel)f Fa(\013\014)1056 1584 y +Fc(Search)j(Algorithm.)33 b(T)m(echnical)12 b(Report)g(96-07,)i +(Department)e(of)1056 1629 y(Computing)d(Science,)e(University)j(of)f +(Alberta,)h(July)e(1996.)992 1673 y([3])21 b(R.)12 b(Feldmann.)26 +b Fb(Spielbaumsuche)9 b(mit)k(massiv)d(parallelen)h(Syste-)1056 +1719 y(men)p Fc(.)24 b(PhD)11 b(thesis,)g(Universit)r(\310)-14 +b(at-Gesamthochschule)8 b(Paderborn,)1056 1764 y(Paderborn,)g(Germany)n +(,)h(May)f(1993.)992 1808 y([4])21 b(B.)7 b(C.)f(Kuszmaul.)h +Fb(Synchr)o(onize)o(d)t(MIMD)g(Computing)p Fc(.)g(PhD)f(thesis,)1056 +1854 y(M.I.T)m(.,)11 b(Cambridge,)e(MA,)h(1994.)992 1897 +y([5])21 b(T)m(.)c(A.)g(Marsland)e(and)h(M.)h(S.)f(Campbell.)49 +b(Parallel)16 b(Search)f(of)1056 1943 y(Strongly)f(Ordered)g(Game)g +(Trees.)39 b Fb(ACM)14 b(Computing)g(Surveys)p Fc(,)1056 +1989 y(14\(4\):533\261551,)8 b(1982.)992 2032 y([6])21 +b(T)m(.)11 b(A.)g(Marsland,)f(M.)h(Olafsson,)f(and)g(J.)g(Schaef)o(fer) +n(.)19 b(Multiproces-)1056 2078 y(sor)9 b(Tree-Search)e(Experiments.)12 +b(In)e(D.)f(Beal,)g(editor)o(,)g Fb(Advances)d(in)1056 +2124 y(Computer)g(Chess)f(4)p Fc(,)j(pp.)e(37\26151.)g(Permagon)g +(Press,)g(Oxford,)i(1985.)992 2167 y([7])21 b(J.)8 b(Schaef)o(fer)n(.)i +(Distributed)d(game-tree)g(searching.)i Fb(Journal)d(of)i(Par)o(-)1056 +2213 y(allel)i(and)e(Distributed)h(Computing)p Fc(,)g(6\(2\):90\2611)o +(14,)f(1989.)992 2257 y([8])21 b(V)-5 b(.)23 b(Sunderam.)76 +b(PVM:)22 b(A)h(Framework)e(for)i(Parallel)f(Dis-)1056 +2302 y(tributed)10 b(Computing.)j Fb(Concurr)o(ency)o(:)d(Practice)e +(and)h(Experience)p Fc(,)1056 2348 y(2\(4\):315\261339,)f(Dec.)h(1990.) +992 2392 y([9])21 b(J.-C.)13 b(W)m(eill.)32 b Fb(Pr)o(ogrammes)9 +b(d')r(\302)-14 b(echecs)11 b(de)h(championnat:)17 b(ar)o(chi-)1056 +2437 y(tectur)o(e)e(logicielle)h(synth)r(\301)-14 b(ese)14 +b(de)h(fonctions)g(d')r(\302)-14 b(evaluations,)17 b(par)o(-)1056 +2483 y(all)r(\302)-14 b(elisme)9 b(de)g(r)o(echer)o(c)o(he)p +Fc(.)h(PhD)f(thesis,)g(Universit)r(\302)-14 b(e)9 b(Paris)g(8,)g(1995.) +p eop +%%Trailer +end +userdict /end-hook known{end-hook}if +%%EOF diff --git a/programs/ComputerEloList b/programs/ComputerEloList new file mode 100644 index 0000000..4c7726d --- /dev/null +++ b/programs/ComputerEloList @@ -0,0 +1,197 @@ +Computerrangliste nach Werner Stowasser +(Stand: Dezember 1992) + +Ausgewertet wurden: +38.710 Partien "Computer gegen Computer" + 6.044 Partien "Mensch gegen Computer" + +Erklaerung der Abkuerzungen: +GR = Grossrechner +PC = PC-Programm + +Nr. Schachcomputer Elo +---------------------------------------------------------------------- +1. Deep Thought II (GR) 2.520 +2. Deep Thought I (GR) 2.470 +3. Cray Blitz (GR) 2.435 +4. Hitech (GR) 2.400 +5. Mephisto Vancouver 68030 2.322 +6. Mephisto RISC 1 MB ARM2 2.319 +7. Mephisto Lyon 68030 2.310 +8. Saitek Kasparow RISC 2500 512 KB ARM2 2.309 +9. Gideon ChessMachine 512 KB ARM2 (PC) 2.291 +10. The King ChessMachine 512 KB ARM2 (PC) 2.289 +11. M Chess 1.66 AT 80486 (PC) 2.285 +12. Mephisto Portorose 68030 2.281 +13. BeBe (GR) 2.260 +14. Fidelity Elite 68040 2.255 +15. Mephisto Vancouver 68020 2.236 +16. Fidelity Elite 68030 2.235 +17. M Chess 1.41 AT 80486 (PC) 2.228 +18. M Chess 1.66 AT 80386 (PC) 2.224 +19. Fidelity Elite 68020 2.220 +20. Mephisto Lyon 68020 2.210 +21. Belle (GR) 2.200 +22. Mephisto Portorose 68020 2.189 +23. Fidelity Mach IV 68020 2.174 +24. M Chess 1.41 AT 80386 (PC) 2.164 +25. Fidelity Elite Premiere 68000 2.162 + M Chess 1.66 AT 80286 (PC) 2.162 + Mephisto Vancouver 68000 2.162 +28. Fritz AT 80486 (PC) 2.158 +29. Mephisto Berlin 68000 2.155 +30. Fidelity Designer Master 68020 2.149 +31. Mephisto Almeria 68020 2.145 +32. Mephisto Lyon 68000 2.133 +33. Fidelity Elite 68000 X 2 2.123 +34. Chessmaster 3000 AT 80486 (PC) 2.121 +35. Fidelity Elite 68000 2.108 +36. Mephisto Portorose 68000 2.090 +37. M Chess 1.41 AT 80286 (PC) 2.087 +38. Fidelity Mach III 68000 2.079 +39. Novag Diablo/Scorpio 68000 2.077 +40. Mephisto Roma 68020 2.072 +41. Rexchess V. 2.3 AT 80386 (PC) 2.068 +42. Fidelity Designer Master 68000 2.067 + Peri Epsilon 68000 2.067 +44. Mephisto Dallas 68020 2.066 +45. Fritz AT 80386 (PC) 2.065 +46. Zarkov V. 2.5 AT 80386 (PC) 2.064 +47. Mephisto Almeria 68000 2.062 +48. Saitek Kasparow GK 2000 H8 - 10 MHz 2.060 +49. Chessmaster 3000 AT 80386 (PC) 2.023 +50. Mephisto Milano 6502 - 5 MHz 2.020 +51. Mephisto Roma 68000 2.020 +52. Novag Super Expert/Forte C 6502 - 6 MHz 2.018 +53. Mephisto Polgar 6502 - 5 MHz 2.015 +54. Mephisto Dallas 68000 2.014 +55. Mephisto MM V 6502 - 5 MHz 2.011 +56. Mephisto Roma II 68000 2.000 +57. Fidelity Mach II 68000 1.993 +58. Mephisto Academy 6502 - 5 MHz 1.976 +59. Mephisto Amsterdam 68000 1.974 +60. Saitek Leonardo M D 6502 - 10 MHz 1.972 +61. Fidelity Travel Master H8 - 10 MHz 1.968 +62. Novag Super Expert/Forte B 6502 - 6 MHz 1.966 +63. Fritz AT 80286 (PC) 1.959 +64. Fidelity Prestige Avantgarde 6502 - 8 MHz + GME 1.955 +65. Mephisto Mega IV 6502 - 5 MHz 1.954 +66. Mephisto MM IV 6502 - 5 MHz 1.940 +67. Fidelity Excel 68000 1.927 +68. Psion Chess Atari 68000 (PC) 1.925 +69. Fidelity Designer 2100 6502 - 6 MHz 1.922 +70. Saitek Turboking 6502 - 5 MHz 1.919 +71. Saitek Travel Champion H8 - 8 MHz 1.912 +72. Chessmaster 3000 AT 80286 (PC) 1.910 +73. Fidelity Elite Avantgarde 6502 - 5 MHz 1.905 +74. Saitek Leonardo M C 6502 - 8 MHz 1.902 +75. CXG Sphinx Galaxy/Dominator 6502 - 4 MHz 1.900 +76. Novag Super Expert/Forte A 6502 - 5 MHz 1.898 +77. Fidelity Par Excellence 6502 - 5 MHz 1.895 + Fidelity Phantom 6502 - 5 MHz 1.895 +79. Peri Delta 6502 - 5 MHz 1.891 +80. Conchess Plymate Victoria 6502 - 5,5 MHz 1.885 +81. Novag Expert/Forte B 6502 - 5 MHz 1.880 +82. Novag Expert/Forte A 6502 - 5 MHz 1.872 +83. Mephisto College 6502 - 5 MHz 1.868 +84. Fidelity Kishon Chesster 6502 - 3,6 MHz 1.863 +85. Saitek Leonardo M B 6502 - 6 MHz 1.862 +86. Mephisto Monte Carlo/Supermondial 6502 - 4 MHz 1.860 +87. Mephisto Rebell 6502 - 5 MHz 1.851 +88. Saitek Corona 6502 - 6 MHz 1.850 +89. Fidelity Excel Display 6502 - 3 MHz 1.848 +90. Saitek Leonardo M A 6502 - 6 MHz 1.846 +91. Fidelity Excellence 6502 - 4 MHz 1.845 +92. Novag Constellation Expert 6502 - 4 MHz 1.844 + Saitek Stratos 6502 - 6 MHz 1.844 +94. Saitek Advanced Trainer H8 - 7 MHz 1.837 +95. Conchess Plymate 6502 - 5,5 MHz 1.835 + Fidelity Elegance 6502 - 3,6 MHz 1.835 +97. Peri Gamma 6502 - 3 MHz 1.834 +98. Saitek Simultano 6502 - 5 MHz 1.832 +99. Saitek Renaissance 6502 - 4 MHz 1.816 +100. Fidelity Excellence 6502 - 3 MHz 1.810 +101. Mephisto MM II 6502 - 3,7 MHz 1.809 +102. Conchess Plymate 6502 - 4 MHz 1.806 +103. Saitek Turbostar 432 6502 - 4 MHz 1.803 +104. Mephisto Modena 6502 - 4 MHz 1.800 + Novag Superconstellation 6502 - 4 MHz 1.800 +106. Fidelity Elite Glasgow 6502 - 4 MHz 1.797 +107. Novag Super Nova - Single Chip 1.790 +108. Mephisto Glasgow 68000 1.785 +109. Chessplayer 2150 Atari/Amiga 68000 (PC) 1.784 +110. Fidelity Elite Budapest 6502 - 3,6 MHz 1.772 +111. Saitek Kasparov Blitz/Prisma - Single Chip 1.760 +112. Chessmaster 2100 Amiga 68000 (PC) 1.751 +113. Fidelity Elite A/S 6502 - 3,2 MHz 1.750 +114. Novag Constellation Quattro 6502 - 4 MHz 1.748 +115. Fidelity Prestige 6502 - 4 MHz 1.743 +116. Novag Super Vip - Single Chip 1.742 +117. Mephisto B & P 6502 - 3,7 MHz 1.740 +118. Mephisto Europa 6502 - 3 MHz 1.736 +119. Conchess Glasgow 6502 - 4 MHz 1.735 +120. The Final Chesscard 6502 - 5 MHz (PC) 1.733 +121. Novag Constellation 6502 - 3,6 MHz 1.732 +122. Chess Champion 2175 Atari/Amiga 68000 (PC) 1.712 +123. Fidelity Elite 6502 - 4 MHz 1.710 +124. Novag Constellation Primo - Single Chip 1.703 +125. Chessmaster 2000 Atari 68000 (PC) 1.702 +126. Check-Check AT 80386 (PC) 1.695 +127. Fidelity Playmate-S 6502 - 3,2 MHz 1.690 +128. Conchess Glasgow 6502 - 2 MHz 1.685 +129. Novag Constellation 6502 - 2 MHz 1.677 +130. Mephisto Mondial 6502 - 2 MHz 1.675 +131. Fidelity Sensory 12 6502 - 3 MHz 1.670 +132. Novag Amigo - Single Chip 1.650 +133. Fidelity Sensory Super 9 6502 - 2,5 MHz 1.648 +134. Mephisto Schachschule - Single Chip 1.644 +135. Saitek Cavalier - Single Chip 1.642 +136. Saitek Superstar 6502 - 2 MHz 1.630 +137. Mephisto Excalibur II 68000 1.629 +138. Fidelity Sensory 9 6502 - 2 MHz 1.620 +139. Mephisto Excalibur I 68000 1.608 +140. CXG Sphinx Professor - Single Chip 1.595 +141. CXG Super Enterprise - Single Chip 1.585 +142. Steinitz MGS III 6502 - 2,5 MHz 1.584 +143. Bogol 5.0 ASB 6502 - 3 MHz 1.575 +144. Mephisto Mirage 1806 - 8 MHz 1.562 +145. Morphy MGS III 6502 - 2,5 MHz 1.542 +146. Chess 2001 6502 - 4 MHz 1.540 +147. Mephisto III S ESB 6000 1806 - 6,1 MHz 1.534 +148. Fidelity Champion 6502 - 2 MHz 1.530 +149. Saitek Turbo S 6502 - 3 MHz 1.514 +150. Sandy MGS II 6502 - 2 MHz 1.510 +151. SciSys Mark V 1806 - 2,5 MHz 1.495 +152. Sargon ARB 2.0 / MGS II 1806 - 2 MHz 1.480 +153. Destini MM 6502 2 MHz 1.470 +154. Mephisto III 1806 - 3,5 MHz 1.464 +155. Novag Savant Robot 6502 - 2 MHz 1.462 +156. Regence TSB 4 6502 - 2,5 MHz 1.460 +157. Novag Solo - Single Chip 1.443 +158. CXG Enterprise - Single Chip 1.423 +159. Milton 6502 - 2 MHz 1.420 +160. Saitek Turbo - Single Chip 1.416 +161. Sci Sys President Chess 1806 - 2 MHz 1.414 +162. Mephisto II - 1806 - 3,5 MHz 1.412 +163. Fidelity Sensory Voice - Single Chip 1.394 +164. Fidelity Poppy - Single Chip 1.380 + SciSys Mark III Super System - Single Chip 1.380 +166. Peri Beta - Single Chip 1.376 +167. Novag Savant Royal Z80 1.375 +168. Novag Savant II Z80 1.366 +169. Fidelity Voice Z80 1.359 +170. Mephisto Mobil - Single Chip 1.355 +171. Chess King Master - Single Chip 1.324 +172. Fidelity CC 7 Z80 1.311 +173. Boris Diplomat - Single Chip 1.300 + Fidelity CC 10 Z80 1.300 +175. Mephisto Junior - Single Chip 1.294 +176. Fidelity Sensory 6 - Single Chip 1.275 +177. Novag Savant I Z80 1.273 +178. Mephisto Mini - Single Chip 1.268 +179. Boris 2.5 - Single Chip 1.267 +180. Mephisto I - Single Chip 1.252 +181. CXG Sphinx Granada - Single Chip 1.173 +182. SciSys Mark II - Single Chip 1.090 +183. CXG Sphinx Chesscard - Single Chip 1.087 +184. SciSys Mark I - Single Chip 985 diff --git a/programs/FewBits b/programs/FewBits new file mode 100644 index 0000000..68f0ae5 --- /dev/null +++ b/programs/FewBits @@ -0,0 +1,252 @@ +From: TDR@PROVAX.intel.com (toby robison) +Newsgroups: rec.games.chess +Subject: Notating positions in as few bits as possible +Date: 9 Mar 1993 + + +HOW TO NOTATE CHESS POSITIONS IN THE FEWEST AVERAGE BITS PER POSITION + +This article is Copyright (C) by Toby Robison, Princeton NJ USA 1993. +Please name the author when quoting from it. + +This is a discussion, not a solution to this rather difficult problem. + +Several people provided useful information that I will be quoting below: +- pigeons@JSP.UMontreal.CA (Steven Pigeon) +- jn@inf.ethz.ch (J Nievergelt) +- chess@uni-paderborn.de (Peter Rainer) + + + +INTRODUCTION: + +The problem here is to come with ways to encode chess positions +that require, on the average, as few bits as possible. We shall +consider legal positions only (illegal positions being less useful +and requiring more bits). + +We are considering idealized solutions. It should not be necessary +to encode or decode a position very fast, and we accept that any +error in the data may make the positions unreadable. + +It turns out that this problem is similar +to general problems of video compression. Consequently we even have +to consider what sorts of positions are intertesting to us -- +the solution could be different if we want to find the best average +result for "every legal position", or for "every typical legal position +that comes up in good games" or in "every typical position of the sorts +that are published (using a diagram or other direct notation, such +as Forsyth) in chess publications". + +I shall not try to decide which is the proper target for this +investigation. Just please bear in mind that the open question will +affect the solutions we consider later. I shall sidestep this issue by +referring to "common" or "likely" positions, without having any idea +what these are. + +Notating a position also requires indicating which player is "to move" +and whether each player can castle (on each side). Strictly speaking we +should also indicate how long since a pawn has moved, whether en passant +captures are currently possible, and what positions +have occurred in the game (so that draws by repetition can be properly +analyzed). However these requirements simply push us back onto the +solutions that represent the position as the entire game, SO I SHALL +IGNORE THESE REQUIREMENTS. Let us just assume that one bit is set aside +to indicate which player is to move, unless the position is a checkmate. + +It is clear that the solution is less than 200 bits per position. +This is quite good considering that there are 64 squares. +Intuitively we have a budget of about 3 bits (8 possibilities) to +tell us what's going on at each square (11 possibilities for the ten +types of pieces and "empty"). + + +Apparently other people have been working on this problem in print. +Peter Rainer sent me this message: + +>Your approach to chess game compression is not new, +>there has been a paper in the ICCA Journal by +>Ingo Althoeffer discribing the idea. +>I think it was in 1991 or 1992. +>Peter Mysliwietz + +See also the information from Nievergelt, below. + +THE INVESTIGATION: + +APPROACH #1: + +Steven Pigeon starts with the number of legal chess positions, which he +says has been claimed to be 10^43 (but he did not check this out). +That value can be stored in 143 bits, so if we simply state an algorithm +for ordering all possible chess positions, we simply record the ordinal +number of the position. + +The drawback of this approach is that it requires +143 bits for ALL positions, but we ought to shoot for a better average than +that. One way to improve the solution is to find an ordering of all positions +such that more common positions come first in the ordering. THEN we use +a method of compressing the ordinal number of a position that favors +lower numbers. It is HIGHLY SPECULATIVE that any such really useful +ordering could be found of course. But if we find an ordering that +morely makes "sensible" positions come before unlikely and bizzarre ones, +we can waste LOTS of bits on the bizzarre and get an average a lot less +than 143 for "common" positions. + +APPROACH #2: + +One basic approach is to record which squares of the board are +occupied (64 bits), and then try to be extremely efficient about how +to say what the pieces in those squares are. For example, we could assume +that following the first 64 bits there is a code to identify the "first" +piece, then the second, and so on, assuming that we will start at A1 and +work, say, across and then up the board. + +Pigeon puts it this way: + +>The trick is to store the board's occupation as an 8x8 bit matrix, +>(1=occupied,0=free) and then list the pieces in order of presence +>in some list, where the codes for the pieces are derived from a +>Huffman adapative coding (since it is exponential coding), and it +>is the upper bound. Less pieces there is, less space it takes. + +>I'd say I should be able to drop it still a few bits, If I can figure +>a way of "discarding" the 8x8 matrix. + +We should note that as the board gets populated, the number of +possibilites for the remaining pieces is reduced, because we are considering +only legal positions. For example, both kings cannot be in check, there can +only be one king of each color, etc. In addition, pawns cannot be on the +first and last ranks; a white bishop at square A1 prevents a white pawn at +B2, etc. + +This approach is terrific for endgame positions even though it +wastes 64 bits on the board. Eight-piece positions will require less than +100 bits. But a position with all 32 pieces threatens to take a lot more +than 143. Consider for example, that we might need 4.5 bits per piece, +or 144 bits plus the 64 for the position. + +However as Pigeon observes above, if we use a code to represent each piece +that requires few bits for LIKELY occurrence of given pieces at each square, +we might do a lot better. + +APPROACH #3: + +This approach is very much like a pure video compression solution. +We divide the board up into smaller regions (such as 2 squares by +2 squares, but it would be better to make a subdivision based on chess +experience). We then use Huffman or some other probability based encoding to +characterize the piece patterns in each subregion. This approach takes advantage +of the fact that (especially in the late middle and endgames), a relatively +small number of piece patterns is common in each region. + +APPROACH #4: + +This is also a video-based compression technique. We encode where the +pices are based on a probabilistic knowledge of where they are likely to be. +(For example, it takes a lot of bits to place a knight on the rim.) +With a few additional bits to characterize the TYPE of position, this +approach might work well. + +APPROACH #5: + +J. Nievergelt sent me this astonishing claim: + +>It should be possible in under 100 bits. If interested, read: + +>J Nievergelt: Information content of chess positions, ACM SIGART Newsletter +>62, 13-14, April 1977. + +>reprinted in: +>Information content of chess positions: Implications for game-specific +>knowledge of chess players, 283-289 in Machine Intelligence 12, (eds. J. E. +>Hayes, D. Michie, E. Tyugu) , Clarendon Press, Oxford, 1991. + +I have not had a chance to check the reference, but I think 100 bits is +incredibly few. In effect, it means specifying the state of each square +in 1.5 bits, or the state of each piece in 3 or 4 bits. + + +IN SUMMARY: + +We have a number of speculative approaches, unless Nievergelt has +really solved the problem. It seems likely that the best solution should +spend a few bits to characterize the position (opening, early middle, +late middle, endgame; open or closed), since different solutions may apply to +each. In particular, for the OPENING the best solution is either to record the +game moves, or else to encode only those differences that make +the position different from the starting one. + +In any case the validity of any solution must be tested against the +type of positions we WANT to encode, and I really think a lot +of experiemntation would be needed (which nobody probably wants to pay for). + +Please keep your comments coming, I will try to summarize... + +-- toby robison (not robinson) + + + + +From: TDR@PROVAX.intel.com (toby robison) +Newsgroups: rec.games.chess +Subject: Notating positions in as few bits as possible +Date: 29 Mar 1993 + +A number of people responded to me regarding the problem of +notating chess positions in as few bits as possible. +The low bidder for REALISTIC positions seems to be J. Nievergelt, +whose solution, and a related game that looks like fun, are discussed below. + +For a solution that includes UNREALISTIC (but legal) positions, +The key question is how many positions there are. +I received several assertions regarding the number of possible chess +positions (roughly 2^143 ?). If one comes up with a method +for ordering all legal positions, then this number of bits can be +used to notate them. + + +TO NOTATE REALISTIC positions, see: + +J Nievergelt: Information content of chess positions, ACM SIGART Newsletter +62, 13-14, April 1977. It is also reprinted in: +Information content of chess positions: Implications for game-specific +knowledge of chess players, 283-289 in Machine Intelligence 12, (eds. J. E. +Hayes, D. Michie, E. Tyugu) , Clarendon Press, Oxford, 1991. + +or correspond with: jn@inf.ethz.ch (J Nievergelt) + + +JN's method is based on the observation that realistic positions are a small +fraction of the total possible. To verify this, he presents the following game, +which I encourage others to try (I'm going to try it myself). +Person A looks at a realistic position. Person B cannot see it, and asks +A multiple choice questions. Both A and B are KNOWLEDGABLE chess players. +B tries to figure out the position, using questions that require as few +total bits of answer-information as possible. + +It's obvious that a Y/N question requires one bit to record the answer. +A question with 4 choices requires 2 bits. Two three-way questions +together require slightly more than three bits, and so on. +JN's assertion, based on some experimentation, is that about 70 bits-worth +of answers are reasonable figure out positions. + +NOTE that we assume the questioner and responder can apply chess judgment, +so questions like "does the pawn structure suggest a closed French Defense?" +are acceptable. Even more important, the questioner gets to apply judgment +about what to ask next, depending upon the partial information currently known. + +Now to fully comprehend the solution, imagine a sophisticated program that +both asks and answers the questions, and figures out a position. The position +is recorded as the answers to the questions the program asked. To recreate the +position, we run the same program again and supply the same answer bits. + +The problem of creating this GENERAL program is very difficult. +According to JN, it may be impractical to write a program that gets +anywhere near to the best possible solution. Writing a program that requires +about 100 bits per position might be practical, though! + +The basic assertion looks like fun to test. Can you guess straightforward, +typical positions, in less than 100 bits of answer info? In 70? + +- toby robison (not tony, not robinson) diff --git a/programs/PCratings b/programs/PCratings new file mode 100644 index 0000000..d9b48c8 --- /dev/null +++ b/programs/PCratings @@ -0,0 +1,30 @@ +From: ralf@ark.abg.sub.org (Ralf Stephan) +Newsgroups: rec.games.chess +Subject: Latest ratings for PC programs/cards + + +These are the latest ratings from the Svedish list, the Selective Search/ +News Sheet 41 and the Computer Chess Reports 1/92: (from MUDUL 3/92) +All ratings are USCF. For BCF, subtract 100; for FIDE, subtract 200. + + Processor Svedish CCR SS +-------------------------------------------------- +ChessMachine 512k + Schroeder v.2.1 ARM/16 2422 2435 2448 + The King ARM/16 2410 2416 2422 +MChess 1.1-1.66 486/33 2400 2401 2402 +Zarkov 2.6 486/33 2347 +C'Champion 2175 486/33 2343 +MChess 1.1-1.66 386/25-33 2338 +Grandmaster 486/33 ~2300 +Rexchess 2.30 486/33 2290 2294 2298 +Psion 2 486/33 2294 2294 +Zarkov 2.5 486/33 2277 2283 2289 +Knightstalker 486/33 2239 2260 2280 +Rexchess 2.30 386/25-33 2230 +Chessm. 3000 486/33 2187 2174 2161 +Psion 1 486/33 2140 2140 +Colossus x 486/33 2086 2086 +Chessm. 3000 386/25-33 2083 +Chessm. 2100 486/33 2073 2073 +Final Chesscard 6502 1887 1887 diff --git a/programs/SSDF-RatingList b/programs/SSDF-RatingList new file mode 100644 index 0000000..80e45eb --- /dev/null +++ b/programs/SSDF-RatingList @@ -0,0 +1,994 @@ + THE SSDF RATING LIST 1993-02-28 34065 games played + + Rating +- Games Won Oppo + ------ --- ----- --- ---- + 1 Chess Machine 30-32 MHz Schrder 3.1 2388 329 27 91% 2013 + 2 Chess Machine 30 MHz King 2.0 aggr 2343 70 140 75% 2152 + 3 Chess Genius 486/50-66 MHz 2301 85 80 64% 2202 + 4 Chess Machine 30 MHz Schrder 3.0 2281 68 149 76% 2086 + 4 MChess Pro 486/33 MHz 2281 67 133 68% 2148 + 6 Chess Genius 486/33 MHz 2276 69 120 65% 2170 + 7 Mephisto Lyon 68030 36 MHz 2259 59 250 84% 1975 + 8 Mephisto Portorose 68030 36 MHz 2245 47 342 82% 1984 + 8 Mephisto Vancouver 68030 36 MHz 2245 42 346 74% 2060 + 10 MChess Pro 486/50-66 MHz 2233 83 99 73% 2062 + 11 Mephisto RISC 1 MB ARM 2 14 MHz 2232 33 521 73% 2057 + 12 Chess Machine Schrder 512K ARM2 16MHz 2216 33 528 71% 2057 + 12 Saitek RISC 2500 ARM2 14 MHz 128K 2216 43 299 68% 2082 + 14 Chess Machine The King 512K ARM2 16MHz 2209 45 288 72% 2045 + 15 MChess 1.1-1.71 80486 33 MHz 2198 43 326 74% 2019 + 16 Mephisto Lyon 68020 12 MHz 2155 24 932 71% 1997 + 17 Mephisto Vancouver 68020 12 MHz 2153 30 621 71% 1995 + 18 Mephisto Berlin 68 000 12 MHz 2139 42 335 73% 1966 + 19 M Chess 1.1-1.66 80386 25-33 MHz 2129 37 396 66% 2011 + 19 Fritz 2.0 486/33 MHz 2129 76 95 61% 2049 + 21 Mephisto Portorose 68020 12 MHz 2128 26 816 73% 1955 + 21 Fidelity Elite 68030 32 MHz (vers.9) 2128 44 324 75% 1935 + 23 Mephisto Vancouver 68000 12 MHz 2115 30 612 70% 1971 + 24 Mephisto Lyon 68000 12 MHz 2107 25 806 65% 1997 + 25 Mephisto MM 4 Turbo Kit 6502 16 MHz 2091 46 292 73% 1916 + 26 Mephisto Almeria 68020 12 MHz 2088 47 259 70% 1939 + 27 Fidelity Mach IV 68020 20 MHz 2080 26 760 65% 1972 + 28 Mephisto Portorose 68000 12 MHz 2047 28 667 66% 1929 + 29 Kasparov Brute Force H8 10 MHz 2044 137 40 70% 1896 + 30 Mephisto Polgar 6502 10 MHz 2041 42 283 59% 1978 + 31 Fidelity Elite 68000 x 2 (vers. 5) 2036 49 209 57% 1986 + 32 Rex Chess 2.3 80386 25-33 MHz 2030 64 126 59% 1965 + 33 Mephisto Roma 68020 14 MHz 2029 27 712 65% 1919 + 34 Fritz 1.0 80486 33 MHz 2021 63 128 56% 1980 + 35 Mephisto Dallas 68020 14 MHz 2020 34 492 72% 1858 + 36 Mephisto Almeria 68000 12 MHz 2019 32 534 67% 1896 + 37 Zarkov 2.5 80386 25-33 MHz 2018 56 168 61% 1939 + 38 Fritz 1.0 80386 25-33 MHz 2009 67 113 46% 2041 + 39 Novag Diablo 68000 16 MHz 2001 26 713 54% 1973 + 40 Fidelity Mach III 68000 16 MHz 1997 15 2049 56% 1957 + 41 Mephisto MM 5 6502 5 MHz 1979 22 967 54% 1947 + 42 Mephisto Polgar 6502 5 MHz 1971 19 1314 47% 1992 + 42 Mephisto Dallas 68000 12 MHz 1971 21 1074 63% 1876 + 44 Mephisto Roma 68000 12 MHz 1967 18 1452 57% 1920 + 45 Zarkov 2.6 386/25-33 MHz 1966 105 55 64% 1867 + 46 Mephisto Milano 6502 5 MHz 1955 31 490 48% 1972 + 47 Novag Super Expert C 6502 6 MHz Sel 5 1954 19 1242 50% 1956 + 48 Mephisto Academy 6502 5 MHz 1940 20 1193 48% 1956 + 49 Rex Chess 2.3 80386 16-20 MHz 1928 53 174 49% 1934 + 50 Saitek Leonardo Maestro B 6502 18 MHz 1925 72 105 62% 1839 + 51 Mephisto Amsterdam 68000 12 MHz 1924 22 1020 58% 1870 + 52 Mephisto Mega IV 6502 4.9 MHz 1916 18 1354 48% 1934 + 53 Fidelity Excel Mach IIc 68000 12 MHz 1915 23 913 52% 1904 + 54 Saitek Maestro D 6502 10 MHz 1914 25 730 51% 1905 + 55 Novag Expert Turbo Kit 6502 16 MHz 1906 67 120 61% 1825 + 56 Novag Super Expert B 6502 6 MHz sel 4 1904 32 468 51% 1896 + 56 Kasparov GK-2000 H8 10 MHz 1904 48 223 42% 1960 + 58 Fidelity Travel Master H8/330 10 MHz 1902 79 123 22% 2117 + 59 Mephisto MM 4 6502 5 MHz 1901 19 1268 50% 1898 + 60 Chessmaster 3000 386/25-33 MHz 1900 101 59 36% 2005 + 61 Mephisto Modena 6502 4 MHz 1886 41 305 41% 1951 + 62 Psion Atari 68000 8 MHz 1880 18 1463 44% 1924 + 63 CXG Sphinx Galaxy 6502 4 MHz 1875 19 1293 41% 1943 + 63 Fidelity Excel Mach IIa 68000 12 MHz 1875 46 226 47% 1895 + 65 Saitek Turboking II 6502 5 MHz 1872 25 752 41% 1937 + 66 Conchess Plymate Victoria 6502 5.5 MHz 1862 27 657 40% 1931 + 67 Fidelity Excel Club 68000 12 MHz 1854 22 931 51% 1845 + 68 Mephisto Mega IV Brute Force 1840 45 240 50% 1837 + 69 Fidelity Avant Garde 6502 5 MHz 1832 20 1196 46% 1863 + 70 Novag Super Expert/Forte A 6502 5 MHz 1831 21 1118 41% 1895 + 71 Fidelity Par Excellence 6502 5 MHz 1829 23 912 51% 1825 + 72 Mephisto Rebell 6502 5 MHz 1821 20 1233 40% 1891 + 73 Saitek Stratos/Analys B 6502 6 MHz 1817 20 1213 38% 1905 + 74 Novag Forte B 6502 5 MHz 1813 24 837 44% 1857 + 75 Mephisto Super Mondial 6502 4 MHz 1812 20 1205 39% 1894 + 75 Conchess Glasgow 6 MHz 1812 158 41 78% 1593 + 77 Conchess Plymate 6502 5.5 MHz 1808 16 1920 41% 1870 + 78 Saitek Leonardo Maestro A 6502 6 MHz 1807 30 547 45% 1842 + 79 Novag Forte A 6502 5 MHz 1806 22 939 49% 1814 + 79 Saitek Simultano/Corona C 6502 5 MHz 1806 24 927 33% 1929 + 81 Fidelity Excellence 6502 4 MHz 1798 17 1565 43% 1849 + 82 Novag Expert 6502 4 MHz 1784 24 812 43% 1837 + 83 Conchess Plymate 6502 4 MHz 1775 38 343 55% 1739 + 84 Mephisto MM 2 6502 3.7 MHz 1769 48 208 52% 1752 + 85 Fidelity Elegance 6502 3.6 MHz 1761 39 339 61% 1685 + 86 Saitek Turbostar 432 6502 4 MHz 1759 21 1034 46% 1789 + 87 Fidelity Excellence 6502 3 MHz 1753 22 962 42% 1811 + 88 Saitek Kasparov Blitz 1736 50 202 41% 1798 + 89 Novag Super Nova 1732 38 350 40% 1801 + 90 Novag Super Constellation 6502 4 MHz 1728 17 1695 39% 1807 + 91 Conchess Glasgow 6502 4 MHz 1712 37 342 50% 1713 + 92 Chessplayer 2150 Atari/Amiga 1709 67 126 34% 1828 + 93 Mephisto B&P 6502 3.7 MHz 1700 85 78 38% 1787 + 94 The Final Chesscard 6502 5 MHz 1695 65 149 28% 1861 + 95 Mephisto Europa 1685 54 170 45% 1721 + 96 Novag Super VIP 1684 58 174 32% 1812 + 97 Fidelity Elite A/S 6502 3.2 MHz 1677 21 1149 38% 1762 + 98 Chessmaster 2100 Amiga 68000 1676 85 100 25% 1871 + 99 Saitek Superstar 36K 6502 2 MHz 1675 24 958 31% 1814 + 100 Chess Champion 2175 Atari/Amiga 1670 62 157 30% 1818 + 100 Mephisto Exclusive S 1670 80 81 44% 1709 + 102 Fidelity Prestige 6502 4 MHz 1665 40 341 66% 1545 + 103 Conchess Glasgow 6502 2 MHz 1663 24 863 35% 1775 + 104 Novag Quattro 6502 4 MHz 1659 31 560 33% 1786 + 105 Chessmaster 2000 Atari 68000 8 MHz 1651 45 312 25% 1838 + 106 Novag Constellation 6502 3.6 MHz 1644 28 596 46% 1674 + 107 Novag Constellation Primo 1634 58 149 44% 1679 + 108 Fidelity Elite -81 1604 63 151 69% 1468 + 109 Novag Constellation 6502 2 MHz 1596 23 865 50% 1599 + 110 Sargon III 1 MHz 1590 148 27 44% 1630 + 111 Mephisto Mondial 1581 71 100 46% 1609 + 112 CXG Super Enterprise 1561 37 410 31% 1700 + 113 Fidelity Sensory 9 B 1553 87 68 54% 1527 + 114 Fidelity Sensory 9 A 1494 30 511 50% 1495 + 115 Steinitz 1480 39 324 45% 1516 + 116 Mephisto III Modular 1471 53 189 38% 1557 + 117 Mephisto II 6.1 MHz 1470 33 450 46% 1499 + 118 Saitek Turbo 16K 1463 85 90 29% 1616 + 119 Chess 2001 1462 73 101 40% 1536 + 120 Scisys Superstar 1454 55 179 35% 1561 + 121 Mephisto III 6.1 MHz 1452 56 194 29% 1608 + 122 Saitek Turbo S 24K 1431 89 95 24% 1628 + 123 Conchess -82 2 MHz 1408 41 299 41% 1469 + 124 GMC 1385 40 306 44% 1427 + 125 Mephisto II 3.5 MHz 1380 39 306 49% 1388 + 126 Champion Sensory Challenger 1379 38 336 48% 1395 + 127 Mark VI 1375 62 163 28% 1538 + 128 Mark V 1352 38 353 40% 1425 + 129 Morphy 1334 48 220 41% 1399 + 130 Progidy 1266 205 28 23% 1473 + 131 Enterprise S 1182 139 46 24% 1383 + 132 Boris 2.5 1171 97 75 27% 1348 + + + 1 Chess Machine 30-32 MHz Schrder 3.1, 2388 +Ch.Gen 486/50 1-0 MChPro 486/33 1-0 Chess M. King 0.5-0.5 +Mach III 9-2 Polgar 5 MHz 13-0 + + 2 Chess Machine 30 MHz King 2.0 aggr, 2343 +Ch.Gen 486/50 3-1 MChPro 486/33 11-9 Ch.Gen 486/33 13.5-6.5 +MChPro 486/50 1.5-1.5 Meph. RISC 13.5-6.5 RISC 2500 7.5-2.5 +Vancou. 68000 2.5-1.5 Lyon 68000 8-3 Roma 68020 18.5-1.5 +Mach III 6-0 Meph. MM 5 2-0 Polgar 5 MHz 18-2 + + 3 Chess Genius 486/50-66 MHz, 2301 +CM30 Schr 3.0 0.5-0.5 Vancou. 68030 12-8 Chess M Schr 20.5-9.5 +Chess M. King 8.5-5.5 Diablo 68000 3.5-1.5 Polgar 5 MHz 5-0 + + 4 Chess Machine 30 MHz Schrder 3.0, 2281 +Meph. RISC 11-9 RISC 2500 1.5-2.5 M Chess 486 1-0 +Vancou. 68020 11.5-8.5 Vancou. 68000 17.5-2.5 Lyon 68000 15-5 +Roma 68020 4-1 Diablo 68000 16-4 Mach III 10.5-0.5 +Meph. MM 5 6.5-0.5 Polgar 5 MHz 17.5-2.5 + + 5 MChess Pro 486/33 MHz, 2281 +Ch.Gen 486/33 10-9 RISC 2500 6-4 Lyon 68020 8-2 +Vancou. 68020 7-4 Vancou. 68000 14.5-5.5 Lyon 68000 1-1 +Mach III 17-3 Polgar 5 MHz 18-2 + + 6 Chess Genius 486/33 MHz, 2276 +Meph. RISC 11-8 RISC 2500 12.5-7.5 Lyon 68020 0-1 +Lyon 68000 1-0 Mach III 18.5-1.5 Polgar 5 MHz 19-1 + + 7 Mephisto Lyon 68030 36 MHz, 2259 +Chess M Schr 1.5-1.5 M Chess 486 4.5-2.5 Lyon 68020 13.5-6.5 +Lyon 68000 14-6 Mach III 18-2 Meph. MM 5 16.5-3.5 +Polgar 5 MHz 15.5-4.5 Roma 68000 17-3 Super Exp. C 16.5-3.5 +Academy 5 MHz 16.5-3.5 Meph. Mega IV 20-0 Psion Atari 19-1 +Turboking II 18.5-1.5 Plym Victoria 19.5-0.5 + + 8 Mephisto Portorose 68030 36 MHz, 2245 +Portor. 68020 12.5-7.5 Elite 68030 14.5-5.5 Almeria 68020 14-6 +Portor. 68000 14-6 Elite vers.5 14-6 Almeria 68000 16-4 +Mach III 17.5-2.5 Polgar 5 MHz 15.5-4.5 Dallas 68000 19.5-0.5 +Roma 68000 19-1 Super Exp. C 13-7 Academy 5 MHz 17-3 +Amsterdam 19.5-0.5 Meph. Mega IV 17.5-3.5 Maestro D 10 20-0 +Psion Atari 19-1 Sphinx Galaxy 17.5-2.5 Rebell 5 MHz 1-0 + + 9 Mephisto Vancouver 68030 36 MHz, 2245 +MChPro 486/50 1.5-0.5 Meph. RISC 11.5-8.5 Chess M Schr 11-9 +Chess M. King 10-10 M Chess 486 11-9 Vancou. 68020 16-4 +Vancou. 68000 13.5-6.5 Lyon 68000 13-7 Diablo 68000 15.5-4.5 +Meph. MM 5 18.5-1.5 Polgar 5 MHz 16.5-3.5 Dallas 68000 18.5-1.5 +Roma 68000 18-2 Meph. Milano 15.5-4.5 Meph. Mega IV 17.5-2.5 +Psion Atari 19.5-0.5 Sphinx Galaxy 18.5-1.5 Turboking II 4-0 + + 10 MChess Pro 486/50-66 MHz, 2233 +Chess M Schr 5-7 Chess M. King 2-2 Fritz2 486/33 13.5-6.5 +Vancou. 68000 15-5 Meph. Mega IV 18.5-1.5 Super Exp. B 7.5-0.5 +Psion Atari 8.5-1.5 + + 11 Mephisto RISC 1 MB ARM 2 14 MHz, 2232 +Chess M Schr 10.5-9.5 Chess M. King 11-9 M Chess 486 11-10 +Lyon 68020 11-9 Vancou. 68020 14-6 Berlin 68 000 12-8 +Portor. 68020 13.5-6.5 Vancou. 68000 12-8 Diablo 68000 17.5-2.5 +Mach III 18.5-1.5 Meph. MM 5 17.5-2.5 Polgar 5 MHz 18-2 +Dallas 68000 10.5-0.5 Meph. Milano 17.5-2.5 Super Exp. C 17-3 +Academy 5 MHz 17.5-2.5 Meph. Mega IV 19-1 Kasp. GK-2000 10-0 +Mephisto MM 4 18-2 Meph. Modena 18-2 Psion Atari 18.5-1.5 +Sphinx Galaxy 18-2 Turboking II 18.5-1.5 + + 12 Chess Machine Schrder 512K ARM2 16MHz, 2216 +Chess M. King 2-0 M Chess 486 7-7 Lyon 68020 32.5-27.5 +M Chess 386 26-13 Portor. 68020 0.5-0.5 Vancou. 68000 5-2 +Lyon 68000 31.5-14.5 Rex 2.3 33MHz 1.5-0.5 Zark25 386/33 1.5-0.5 +Fritz1 386/33 1.5-0.5 Diablo 68000 18-2 Mach III 35.5-6.5 +Polgar 5 MHz 22-3 Roma 68000 17.5-7.5 Zark26 386/25 2-0 +Super Exp. C 25.5-4.5 Academy 5 MHz 16-4 Amsterdam 20-0 +Meph. Mega IV 9-1 Super Exp. B 14.5-5.5 Psion Atari 3-0 +Sphinx Galaxy 29.5-1.5 Turboking II 19-1 + + 13 Saitek RISC 2500 ARM2 14 MHz 128K, 2216 +M Chess 486 4-0 Vancou. 68020 35.5-24.5 Fritz2 486/33 13.5-6.5 +Vancou. 68000 12-8 Mach IV 68020 28.5-11.5 Fritz1 486/33 12-4 +Mach III 14.5-5.5 Meph. Milano 18-2 Super Exp. C 1.5-1.5 +Kasp. GK-2000 20-0 Travel Master 18-2 Sphinx Galaxy 6-1 +Turboking II 4-1 + + 14 Chess Machine The King 512K ARM2 16MHz, 2209 +M Chess 486 8-3 Lyon 68020 3-2 Vancou. 68020 11-8 +Vancou. 68000 0.5-4.5 Lyon 68000 16.5-7.5 Diablo 68000 21.5-2.5 +Mach III 16.5-3.5 Meph. MM 5 1.5-0.5 Super Exp. C 17-3 +Academy 5 MHz 14-6 Meph. Mega IV 9-1 Psion Atari 23.5-2.5 +Sphinx Galaxy 18.5-1.5 Turboking II 19.5-1.5 + + 15 MChess 1.1-1.71 80486 33 MHz, 2198 +Lyon 68020 9.5-6.5 Vancou. 68020 3-3 Lyon 68000 1.5-1.5 +Portor. 68000 5-0 Roma 68020 7.5-0.5 Polgar 5 MHz 33-7 +Roma 68000 16.5-3.5 Super Exp. C 17.5-2.5 Academy 5 MHz 17-3 +Amsterdam 19-1 Meph. Mega IV 10-0 Travel Master 16.5-3.5 +Psion Atari 17.5-2.5 Sphinx Galaxy 16.5-3.5 Turboking II 18.5-1.5 + + 16 Mephisto Lyon 68020 12 MHz, 2155, (2217 vs humans, 12 games) +Berlin 68 000 9.5-10.5 M Chess 386 41-33 Lyon 68000 10-10 +Mach IV 68020 22.5-17.5 Portor. 68000 12.5-7.5 Polgar 10 MHz 20-10 +Rex 2.3 33MHz 14.5-5.5 Fritz1 486/33 14-6 Zark25 386/33 14-6 +Fritz1 386/33 14-6 Diablo 68000 13-7 Mach III 19-8 +Meph. MM 5 13.5-6.5 Polgar 5 MHz 18-3 Roma 68000 15-5 +Meph. Milano 16-4 Super Exp. C 17-3 Academy 5 MHz 13-7 +Rex 2.3 20MHz 1.5-0.5 Meph. Mega IV 17-3 Excel Mach 2c 31.5-4.5 +Super Exp. B 7.5-2.5 Mephisto MM 4 18.5-1.5 CM3000 386/33 18.5-1.5 +Meph. Modena 17-3 Psion Atari 18-2 Sphinx Galaxy 15-5 +Turboking II 18-2 Plym Victoria 19.5-1.5 Super Exp. A 17.5-2.5 +Rebell 5 MHz 19-1 Stratos 6 MHz 18.5-1.5 Super Mondial 19.5-0.5 +Plymate 5.5 20-0 Simultano C 19-1 Excellence 4 17-2 + + 17 Mephisto Vancouver 68020 12 MHz, 2153 +Berlin 68 000 10.5-10.5 Mach IV 68020 24.5-8.5 Fritz1 386/33 4-1 +Diablo 68000 16.5-3.5 Mach III 2.5-2.5 Meph. MM 5 14.5-5.5 +Polgar 5 MHz 17-4 Meph. Milano 19.5-0.5 Super Exp. C 14.5-5.5 +Academy 5 MHz 18-2 Meph. Mega IV 17-3 Travel Master 17-3 +Mephisto MM 4 16.5-3.5 Meph. Modena 16-4 Psion Atari 17-3 +Sphinx Galaxy 17.5-2.5 Turboking II 17-3 Plym Victoria 17-3 +Super Exp. A 17-3 Rebell 5 MHz 17-3 Stratos 6 MHz 17-3 +Super Mondial 17.5-2.5 Plymate 5.5 20-0 Simultano C 19-1 + + 18 Mephisto Berlin 68 000 12 MHz, 2139 +Portor. 68020 10.5-9.5 Diablo 68000 14.5-5.5 Mach III 6.5-0.5 +Meph. MM 5 16-4 Roma 68000 4-1 Meph. Milano 17-3 +Super Exp. C 27-8 Meph. Mega IV 16-4 Kasp. GK-2000 13-7 +Meph. Modena 16.5-3.5 Plym Victoria 14-2 Mega IV BF 8-0 +Super Mondial 16.5-3.5 Plymate 5.5 17-3 Simultano C 19-4 + + 19 M Chess 1.1-1.66 80386 25-33 MHz, 2129 +Portor. 68020 7.5-5.5 Lyon 68000 29-22 Rex 2.3 33MHz 7.5-2.5 +Zark25 386/33 2.5-1.5 Mach III 1.5-0.5 Meph. MM 5 16.5-10.5 +Polgar 5 MHz 30-7 Academy 5 MHz 15.5-4.5 CM3000 386/33 2-2 +Sphinx Galaxy 20-2 Plym Victoria 22-4 Rebell 5 MHz 3.5-0.5 +Plymate 5.5 12-0 Maestro A 6 5-0 Simultano C 35.5-4.5 +Expert 4 MHz 6-0 + + 20 Fritz 2.0 486/33 MHz, 2129 +Diablo 68000 16-4 Polgar 5 MHz 7-3 Academy 5 MHz 4-1 +Stratos 6 MHz 18-2 + + 21 Mephisto Portorose 68020 12 MHz, 2128, (2181 vs humans, 10 games) +Elite 68030 9.5-14.5 Lyon 68000 10-10 MM 4 Turbo 16 9.5-1.5 +Mach IV 68020 23-17 Portor. 68000 12.5-7.5 Polgar 10 MHz 12.5-7.5 +Roma 68020 2-0 Almeria 68000 13.5-6.5 Mach III 31.5-16.5 +Meph. MM 5 12-8 Polgar 5 MHz 20.5-4.5 Dallas 68000 3.5-0.5 +Roma 68000 18-2 Meph. Milano 15-5 Super Exp. C 33-11 +Academy 5 MHz 12-8 Meph. Mega IV 14.5-5.5 Excel Mach 2c 26.5-5.5 +Maestro D 10 15-6 Super Exp. B 7.5-2.5 Mephisto MM 4 17-3 +Meph. Modena 18-2 Psion Atari 15-5 Sphinx Galaxy 17-3 +Turboking II 17.5-2.5 Plym Victoria 17-3 Avant Garde 19-1 +Super Exp. A 19-1 Rebell 5 MHz 19-1 Stratos 6 MHz 19.5-0.5 +Super Mondial 20.5-4.5 Plymate 5.5 19-1 Simultano C 15-5 +Excellence 4 17-3 Expert 4 MHz 15-1 + + 22 Fidelity Elite 68030 32 MHz (vers.9), 2128 +Portor. 68000 12.5-7.5 Mach III 15-6 Polgar 5 MHz 16.5-3.5 +Super Exp. C 12-8 Academy 5 MHz 13-7 Meph. Mega IV 16.5-3.5 +Maestro D 10 17-3 Psion Atari 17-3 Sphinx Galaxy 17.5-2.5 +Super Exp. A 16-4 Rebell 5 MHz 16-3 Super Mondial 19.5-0.5 +Simultano C 16.5-3.5 Excellence 4 18.5-1.5 + + 23 Mephisto Vancouver 68000 12 MHz, 2115 +Fritz1 386/33 16-4 Diablo 68000 11-9 Mach III 26-15 +Meph. MM 5 29.5-10.5 Meph. Milano 16-4 Super Exp. C 13.5-6.5 +Academy 5 MHz 15.5-4.5 Meph. Mega IV 16.5-3.5 Excel Mach 2c 18-2 +CM3000 386/33 9-4 Psion Atari 14-6 Sphinx Galaxy 17-3 +Turboking II 18-2 Plym Victoria 16-4 Super Exp. A 18-2 +Rebell 5 MHz 16.5-3.5 Stratos 6 MHz 15-5 Super Mondial 17.5-2.5 +Plymate 5.5 19-1 Simultano C 20-0 Excellence 4 19.5-0.5 +Super Const. 18.5-1.5 Meph. Europa 2-0 + + 24 Mephisto Lyon 68000 12 MHz, 2107 +Mach IV 68020 22.5-17.5 Rex 2.3 33MHz 1-0 Fritz1 386/33 6-4 +Diablo 68000 22.5-11.5 Mach III 32.5-6.5 Meph. MM 5 25.5-15.5 +Polgar 5 MHz 16-4 Roma 68000 15-5 Super Exp. C 28-9 +Academy 5 MHz 16.5-3.5 Meph. Mega IV 17-3 Kasp. GK-2000 2-0 +Travel Master 16.5-3.5 Mephisto MM 4 14-6 Psion Atari 17.5-6.5 +Sphinx Galaxy 14-6 Turboking II 17.5-2.5 Plym Victoria 18-2 +Super Exp. A 15.5-4.5 Rebell 5 MHz 16.5-3.5 Stratos 6 MHz 16.5-3.5 +Super Mondial 16.5-3.5 Plymate 5.5 19.5-0.5 Simultano C 17-3 +Excellence 4 17.5-2.5 Super Const. 17-3 + + 25 Mephisto MM 4 Turbo Kit 6502 16 MHz, 2091, (2122 vs humans, 9 games) +Mach IV 68020 16.5-14.5 Roma 68020 7.5-12.5 Mach III 13.5-6.5 +Dallas 68000 21.5-12.5 Roma 68000 14.5-5.5 Amsterdam 1-0 +Excel Mach 2c 4-0 Mephisto MM 4 1-0 Excel Mach 2a 16.5-3.5 +Excel Club 7-2 Super Exp. A 19.5-0.5 Stratos 6 MHz 18.5-1.5 +Forte B 18.5-1.5 Super Mondial 18.5-1.5 Plymate 5.5 16.5-4.5 +Excellence 4 17.5-2.5 + + 26 Mephisto Almeria 68020 12 MHz, 2088, (2030 vs humans, 26 games) +Mach IV 68020 13.5-14.5 Portor. 68000 5.5-6.5 Roma 68020 11.5-8.5 +Almeria 68000 3.5-2.5 Mach III 13-8 Roma 68000 3.5-2.5 +Academy 5 MHz 17.5-2.5 Maestro D 10 2-0 Mephisto MM 4 12.5-7.5 +Psion Atari 17.5-2.5 Sphinx Galaxy 3.5-0.5 Avant Garde 18-2 +Stratos 6 MHz 16.5-3.5 Simultano C 18.5-1.5 Superstar 36K 19-1 + + 27 Fidelity Mach IV 68020 20 MHz, 2080, (2177 vs humans, 19 games) +Roma 68020 24-13 Dallas 68020 13.5-6.5 Almeria 68000 11-9 +Mach III 4-4 Polgar 5 MHz 11.5-8.5 Dallas 68000 7.5-4.5 +Roma 68000 6.5-3.5 Super Exp. C 13-6 Academy 5 MHz 13.5-2.5 +Meph. Mega IV 16.5-3.5 Excel Mach 2c 13-2 Super Exp. B 9.5-2.5 +Travel Master 15-5 Mephisto MM 4 36-11 Psion Atari 17-3 +Sphinx Galaxy 16.5-5.5 Avant Garde 19-1 Par Excell. 15-5 +Rebell 5 MHz 17-6 Stratos 6 MHz 23.5-2.5 Super Mondial 15-2 +Plymate 5.5 36-8 Excellence 4 18.5-1.5 Superstar 36K 20-0 + + 28 Mephisto Portorose 68000 12 MHz, 2047 +Elite vers.5 19-15 Roma 68020 10-10 Mach III 15-10 +Meph. MM 5 11-9 Polgar 5 MHz 16-9 Dallas 68000 14-6 +Super Exp. C 21-8 Academy 5 MHz 20-14 Rex 2.3 20MHz 10.5-9.5 +Meph. Mega IV 14.5-5.5 Maestro D 10 18-9 Super Exp. B 13.5-6.5 +Mephisto MM 4 16-4 Psion Atari 21.5-7.5 Sphinx Galaxy 15-5 +Turboking II 17.5-1.5 Super Exp. A 17-3 Rebell 5 MHz 17.5-2.5 +Stratos 6 MHz 17-3 Super Mondial 14-6 Plymate 5.5 16.5-7.5 +Simultano C 16.5-3.5 Excellence 4 19-1 Super Const. 3-1 +Super VIP 15.5-4.5 Elite A/S 3.2 18-2 + + 29 Kasparov Brute Force H8 10 MHz, 2044 +Meph. MM 5 9.5-2.5 Excel Mach 2c 13-7 Super Const. 5.5-2.5 + + 30 Mephisto Polgar 6502 10 MHz, 2041 +Elite vers.5 13-9 Mach III 21-23 Dallas 68000 14-3 +Roma 68000 14-6 Super Exp. C 15-16 Amsterdam 13-7 +Excel Mach 2c 15-5 Maestro D 10 13-5 Psion Atari 14-6 +Avant Garde 0.5-0.5 Plymate 5.5 16.5-3.5 + + 31 Fidelity Elite 68000 x 2 (vers. 5), 2036 +Almeria 68000 5-5 Dallas 68000 12.5-7.5 Roma 68000 11-9 +Academy 5 MHz 12.5-7.5 Maestro D 10 16-6 Psion Atari 13.5-6.5 +Avant Garde 18.5-2.5 + + 32 Rex Chess 2.3 80386 25-33 MHz, 2030 +Zark25 386/33 0.5-1.5 Mach III 6.5-5.5 Meph. MM 5 1-1 +Polgar 5 MHz 13.5-6.5 Roma 68000 7.5-2.5 Academy 5 MHz 12-8 +Turbostar 432 7-0 Super Const. 18-2 + + 33 Mephisto Roma 68020 14 MHz, 2029, (1979 vs humans, 9 games) +Fritz1 486/33 0-2 Almeria 68000 11-9 Mach III 20.5-19.5 +Dallas 68000 13.5-6.5 Roma 68000 10.5-9.5 Academy 5 MHz 15-6 +Rex 2.3 20MHz 24-5 Amsterdam 11.5-8.5 Meph. Mega IV 14-6 +Excel Mach 2c 26.5-23.5 Maestro D 10 11-9 Mephisto MM 4 14.5-5.5 +Psion Atari 5-1 Sphinx Galaxy 16.5-3.5 Excel Club 16.5-3.5 +Avant Garde 15.5-4.5 Super Exp. A 14.5-5.5 Rebell 5 MHz 9.5-2.5 +Stratos 6 MHz 18-2 Forte B 13.5-6.5 Super Mondial 16.5-3.5 +Plymate 5.5 17.5-2.5 Maestro A 6 15-5 Excellence 4 17.5-2.5 +Expert 4 MHz 14.5-5.5 Excellence 3 17.5-2.5 Super Const. 19-1 +Elite A/S 3.2 18.5-1.5 + + 34 Fritz 1.0 80486 33 MHz, 2021 +Super Exp. C 9.5-10.5 Academy 5 MHz 12-8 Meph. Mega IV 7-3 +Sphinx Galaxy 16.5-3.5 Stratos 6 MHz 14.5-5.5 + + 35 Mephisto Dallas 68020 14 MHz, 2020 +Mach III 10.5-9.5 Dallas 68000 13-7 Super Exp. C 1-2 +Amsterdam 26.5-13.5 Meph. Mega IV 12-8 Excel Mach 2c 15-9 +Mephisto MM 4 14.5-5.5 Excel Mach 2a 14-6 Excel Club 21-8 +Avant Garde 23-8 Par Excell. 16.5-3.5 Rebell 5 MHz 15-5 +Forte B 15.5-4.5 Super Mondial 19-4 Plymate 5.5 17.5-2.5 +Maestro A 6 16.5-4.5 Forte A 16.5-7.5 Excellence 4 16.5-3.5 +Expert 4 MHz 20-6 Turbostar 432 14-6 Excellence 3 28.5-2.5 + + 36 Mephisto Almeria 68000 12 MHz, 2019 +Mach III 21.5-13.5 Polgar 5 MHz 10.5-9.5 Dallas 68000 10.5-9.5 +Roma 68000 10.5-5.5 Academy 5 MHz 11-9 Amsterdam 12-8 +Meph. Mega IV 13-11 Mephisto MM 4 9-2 Psion Atari 20.5-6.5 +Sphinx Galaxy 11.5-5.5 Super Exp. A 14.5-5.5 Par Excell. 8.5-1.5 +Rebell 5 MHz 15.5-4.5 Stratos 6 MHz 20.5-6.5 Plymate 5.5 16.5-3.5 +Simultano C 16.5-3.5 Excellence 4 18.5-1.5 Excellence 3 18-2 +Super Const. 17.5-2.5 Elite A/S 3.2 17.5-2.5 Superstar 36K 20.5-3.5 +Conchess 2MHz 6.5-0.5 + + 37 Zarkov 2.5 80386 25-33 MHz, 2018 +Mach III 12-7 Meph. MM 5 7-5 Polgar 5 MHz 3.5-2.5 +Super Exp. C 6.5-7.5 Academy 5 MHz 10.5-9.5 Super Exp. B 8-2 +Sphinx Galaxy 15.5-4.5 Plym Victoria 4-2 Plymate 5.5 3.5-0.5 +Maestro A 6 9-5 Expert 4 MHz 4-0 Super Const. 1-0 +Chesscard 5 8.5-1.5 + + 38 Fritz 1.0 80386 25-33 MHz, 2009 +Mach III 11.5-8.5 Meph. MM 5 3-1 Polgar 5 MHz 1.5-1.5 +Super Exp. C 6.5-5.5 CM3000 386/33 1.5-0.5 Turboking II 4-1 +Plym Victoria 8-2 + + 39 Novag Diablo 68000 16 MHz, 2001, (1975 vs humans, 9 games) +Mach III 10-10 Meph. MM 5 10-10 Polgar 5 MHz 12.5-7.5 +Roma 68000 11.5-8.5 Meph. Milano 10-10 Super Exp. C 15-5 +Academy 5 MHz 12.5-7.5 Meph. Mega IV 12-8 Kasp. GK-2000 14.5-5.5 +Mephisto MM 4 12-8 Psion Atari 15-9 Sphinx Galaxy 15-7 +Turboking II 15.5-4.5 Plym Victoria 13.5-6.5 Super Exp. A 14.5-5.5 +Rebell 5 MHz 15.5-4.5 Stratos 6 MHz 15-5 Super Mondial 14.5-5.5 +Plymate 5.5 16.5-3.5 Simultano C 15-5 Excellence 4 4-0 +Kasp. Blitz 16.5-3.5 Elite A/S 3.2 18.5-1.5 Superstar 36K 19-1 + + 40 Fidelity Mach III 68000 16 MHz, 1997, (2067 vs humans, 25 games) +Meph. MM 5 13.5-11.5 Polgar 5 MHz 60.5-51.5 Dallas 68000 11-9 +Roma 68000 131.5-90.5 Super Exp. C 40-37 Academy 5 MHz 22.5-14.5 +Rex 2.3 20MHz 5-1 Amsterdam 4-3 Meph. Mega IV 23-19 +Excel Mach 2c 23-12 Maestro D 10 21.5-14.5 Super Exp. B 10-8 +Travel Master 2-1 Mephisto MM 4 22-16 Psion Atari 27.5-11.5 +Sphinx Galaxy 18-16 Turboking II 19.5-7.5 Plym Victoria 14-6 +Excel Club 15.5-4.5 Mega IV BF 16.5-3.5 Avant Garde 17.5-3.5 +Super Exp. A 15-5 Par Excell. 29.5-8.5 Rebell 5 MHz 26.5-6.5 +Stratos 6 MHz 31.5-4.5 Forte B 19.5-5.5 Super Mondial 18-3 +Plymate 5.5 34-8 Maestro A 6 2.5-1.5 Forte A 15-5 +Simultano C 18-4 Excellence 4 28-6 Expert 4 MHz 15.5-4.5 +Excellence 3 17-3 Super Nova 18-3 Super Const. 48-11 +Chesspl. 2150 6-0 Meph. Europa 1.5-1.5 Elite A/S 3.2 18.5-1.5 +Cmaster 2100 16-4 Superstar 36K 16.5-3.5 Champion 2175 1-1 +Conchess 2MHz 18.5-1.5 + + 41 Mephisto MM 5 6502 5 MHz, 1979, (1757 vs humans, 6 games) +Polgar 5 MHz 34-34 Roma 68000 11-9 Meph. Milano 10.5-9.5 +Super Exp. C 12.5-7.5 Academy 5 MHz 11-9 Meph. Mega IV 13-7 +Mephisto MM 4 12.5-7.5 Meph. Modena 13.5-6.5 Psion Atari 13.5-6.5 +Sphinx Galaxy 27.5-14.5 Turboking II 14-6 Plym Victoria 16-4 +Excel Club 8-4 Avant Garde 15.5-4.5 Super Exp. A 15-5 +Rebell 5 MHz 14.5-5.5 Stratos 6 MHz 20.5-7.5 Super Mondial 15.5-5.5 +Plymate 5.5 27-15 Simultano C 15.5-4.5 Excellence 4 17-3 +Super Const. 17.5-2.5 Elite A/S 3.2 14.5-5.5 Superstar 36K 17-3 +Conchess 2MHz 14.5-5.5 Cmaster 2000 16.5-3.5 + + 42 Mephisto Polgar 6502 5 MHz, 1971 +Dallas 68000 9-11 Roma 68000 8-14 Meph. Milano 10-10 +Super Exp. C 9.5-10.5 Academy 5 MHz 11.5-10.5 Rex 2.3 20MHz 5.5-6.5 +Amsterdam 4.5-4.5 Meph. Mega IV 14.5-5.5 Maestro D 10 22.5-17.5 +Super Exp. B 10-10 Travel Master 10.5-9.5 Mephisto MM 4 33.5-9.5 +Psion Atari 26-6 Sphinx Galaxy 15-9 Avant Garde 17.5-2.5 +Super Exp. A 20.5-17.5 Rebell 5 MHz 15.5-4.5 Stratos 6 MHz 14-6 +Super Mondial 16-4 Plymate 5.5 27.5-4.5 Simultano C 15.5-4.5 +Excellence 4 13.5-6.5 Super Nova 17.5-2.5 Super Const. 19-1 +Chesscard 5 18-2 Elite A/S 3.2 3-2 Conchess 2MHz 19-1 +Cmaster 2000 20-4 + + 43 Mephisto Dallas 68000 12 MHz, 1971, (1866 vs humans, 15 games) +Amsterdam 15.5-14.5 Meph. Mega IV 14.5-9.5 Excel Mach 2c 14.5-5.5 +Maestro D 10 3.5-2.5 Mephisto MM 4 42.5-26.5 Psion Atari 14-6 +Sphinx Galaxy 13.5-6.5 Excel Mach 2a 13.5-6.5 Excel Club 13.5-6.5 +Avant Garde 11.5-8.5 Super Exp. A 17.5-5.5 Par Excell. 40.5-18.5 +Rebell 5 MHz 15.5-4.5 Stratos 6 MHz 18.5-1.5 Forte B 59-23 +Super Mondial 19.5-4.5 Plymate 5.5 33-4 Maestro A 6 13.5-6.5 +Forte A 14.5-5.5 Excellence 4 20-7 Expert 4 MHz 38.5-11.5 +Turbostar 432 27.5-7.5 Excellence 3 16.5-3.5 Super Const. 59-11 +Superstar 36K 18-2 Conchess 2MHz 15-5 Quattro 4 MHz 15.5-4.5 + + 44 Mephisto Roma 68000 12 MHz, 1967 +Super Exp. C 16.5-21.5 Academy 5 MHz 11.5-8.5 Rex 2.3 20MHz 3.5-7.5 +Maestro B 18 0.5-2.5 Meph. Mega IV 17-6 Excel Mach 2c 20.5-19.5 +Super Exp. B 4-3 Kasp. GK-2000 13.5-6.5 Mephisto MM 4 19-9 +Psion Atari 27-8 Sphinx Galaxy 13-8 Excel Mach 2a 12-12 +Turboking II 12.5-7.5 Plym Victoria 13-7 Excel Club 16-4 +Mega IV BF 14-6 Avant Garde 20.5-6.5 Super Exp. A 19-5 +Par Excell. 25.5-3.5 Rebell 5 MHz 16.5-4.5 Stratos 6 MHz 36-26 +Forte B 45-15 Super Mondial 14.5-6.5 Plymate 5.5 13-7 +Maestro A 6 17.5-2.5 Forte A 7-1 Simultano C 11.5-5.5 +Excellence 4 17-3 Expert 4 MHz 1-1 Turbostar 432 17.5-4.5 +Excellence 3 36-9 Super Const. 56.5-7.5 Superstar 36K 19-1 +Conchess 2MHz 17.5-2.5 Quattro 4 MHz 18.5-1.5 Cmaster 2000 3.5-0.5 + + 45 Zarkov 2.6 386/25-33 MHz, 1966 +Super Exp. B 6.5-3.5 Kasp. GK-2000 12-8 Plym Victoria 4-3 +Par Excell. 4.5-2.5 Super Mondial 1-0 Chesscard 5 7-1 + + 46 Mephisto Milano 6502 5 MHz, 1955 +Super Exp. C 8.5-11.5 Meph. Mega IV 15.5-14.5 Kasp. GK-2000 7.5-3.5 +Mephisto MM 4 13.5-6.5 Meph. Modena 11-9 Psion Atari 15.5-4.5 +Sphinx Galaxy 7.5-1.5 Plym Victoria 12.5-7.5 Super Exp. A 15-5 +Stratos 6 MHz 12.5-7.5 Super Mondial 16-4 Plymate 5.5 12-8 +Simultano C 14-6 Elite A/S 3.2 17.5-2.5 + + 47 Novag Super Expert C 6502 6 MHz Sel 5, 1954, (1996 vs humans, 15 games) +Academy 5 MHz 12-8 Rex 2.3 20MHz 0.5-0.5 Meph. Mega IV 11.5-10.5 +Excel Mach 2c 19-11 Maestro D 10 8.5-11.5 Mephisto MM 4 11.5-7.5 +Meph. Modena 13-7 Psion Atari 14.5-5.5 Sphinx Galaxy 21-12 +Turboking II 11-9 Plym Victoria 11-9 Excel Club 11-5 +Avant Garde 13-7 Super Exp. A 10.5-9.5 Rebell 5 MHz 10.5-11.5 +Stratos 6 MHz 13.5-6.5 Super Mondial 15.5-4.5 Plymate 5.5 8.5-11.5 +Simultano C 13-7 Excellence 4 14.5-5.5 Expert 4 MHz 15-5 +Excellence 3 6-4 Super Nova 16-4 Super Const. 36.5-9.5 +Elite A/S 3.2 13.5-6.5 Superstar 36K 18.5-1.5 Conchess 2MHz 15.5-4.5 +Cmaster 2000 19.5-1.5 Const. 2 MHz 9.5-0.5 + + 48 Mephisto Academy 6502 5 MHz, 1940, (2057 vs humans, 21 games) +Amsterdam 12-12 Meph. Mega IV 22-11 Excel Mach 2c 12.5-7.5 +Maestro D 10 17-23 Super Exp. B 14-6 Mephisto MM 4 5-3 +Psion Atari 14-6 Sphinx Galaxy 17.5-24.5 Turboking II 12-8 +Plym Victoria 13.5-6.5 Excel Club 21-19 Avant Garde 13-7 +Super Exp. A 15.5-8.5 Rebell 5 MHz 14.5-5.5 Stratos 6 MHz 12.5-7.5 +Super Mondial 12-8 Plymate 5.5 13.5-6.5 Forte A 12.5-7.5 +Simultano C 34-11 Excellence 4 16.5-3.5 Super Nova 14-6 +Conchess 4MHz 1-0 Elite A/S 3.2 14.5-5.5 Superstar 36K 16-4 +Champion 2175 16-4 Conchess 2MHz 6-0 Cmaster 2000 13-2 + + 49 Rex Chess 2.3 80386 16-20 MHz, 1928 +Super Exp. B 2-1 Mephisto MM 4 11-6 Sphinx Galaxy 24.5-15.5 +Excel Club 9.5-4.5 Simultano C 8-11 + + 50 Saitek Leonardo Maestro B 6502 18 MHz, 1925 +Meph. Mega IV 3.5-3.5 Psion Atari 7-5 Excel Club 12.5-7.5 +Rebell 5 MHz 12-8 Forte B 12.5-6.5 Plymate 5.5 15-9 + + 51 Mephisto Amsterdam 68000 12 MHz, 1924 +Meph. Mega IV 10-10 Excel Mach 2c 12.5-12.5 Expert 16 MHz 10.5-9.5 +Super Exp. B 1-2 Mephisto MM 4 12.5-9.5 Psion Atari 9.5-10.5 +Sphinx Galaxy 13-7 Excel Club 31-23 Avant Garde 96.5-58.5 +Super Exp. A 13-7 Par Excell. 28-12 Rebell 5 MHz 12.5-7.5 +Stratos 6 MHz 13-7 Forte B 11.5-8.5 Super Mondial 13-7 +Plymate 5.5 22-7 Maestro A 6 12.5-7.5 Forte A 41-24 +Excellence 4 15.5-4.5 Expert 4 MHz 5-3 Mephisto MM 2 9-1 +Turbostar 432 20-11 Excellence 3 17.5-4.5 Super Const. 62-16 +Mephisto B&P 3.5-0.5 Prestige 4MHz 3-0 Quattro 4 MHz 16.5-3.5 + + 52 Mephisto Mega IV 6502 4.9 MHz, 1916, (1866 vs humans, 28 games) +Excel Mach 2c 16.5-16.5 Maestro D 10 13-22 Super Exp. B 13-7 +Mephisto MM 4 9.5-10.5 Meph. Modena 12-8 Psion Atari 9-11 +Sphinx Galaxy 17-13 Turboking II 9-11 Plym Victoria 13.5-6.5 +Excel Club 11.5-8.5 Avant Garde 13.5-9.5 Super Exp. A 12-8 +Rebell 5 MHz 20-10 Stratos 6 MHz 12.5-7.5 Forte B 52-26 +Super Mondial 9.5-10.5 Plymate 5.5 17-5 Forte A 13.5-6.5 +Simultano C 30.5-4.5 Excellence 4 20.5-3.5 Expert 4 MHz 14.5-5.5 +Turbostar 432 15-5 Excellence 3 19-9 Super Nova 7.5-2.5 +Super Const. 14.5-5.5 Elite A/S 3.2 20.5-4.5 Superstar 36K 17-3 +Champion 2175 2-0 Quattro 4 MHz 9.5-0.5 Cmaster 2000 3-1 +Const. 2 MHz 18.5-0.5 + + 53 Fidelity Excel Mach IIc 68000 12 MHz, 1915 +Mephisto MM 4 13-15 Psion Atari 16.5-3.5 Sphinx Galaxy 13-7 +Excel Club 29-16 Avant Garde 15.5-6.5 Super Exp. A 21.5-20.5 +Par Excell. 6.5-3.5 Rebell 5 MHz 12-8 Stratos 6 MHz 14-6 +Forte B 16.5-3.5 Super Mondial 12.5-7.5 Plymate 5.5 22-10 +Forte A 27-13 Excellence 4 12-8 Expert 4 MHz 13.5-6.5 +Turbostar 432 17-3 Excellence 3 13-7 Super Const. 19.5-10.5 +Elite A/S 3.2 17-3 Superstar 36K 16.5-3.5 + + 54 Saitek Maestro D 6502 10 MHz, 1914, (1722 vs humans, 18 games) +Mephisto MM 4 14-26 Psion Atari 13-7 Sphinx Galaxy 22-18 +Super Exp. A 26.5-16.5 Rebell 5 MHz 24-13 Stratos 6 MHz 25.5-14.5 +Super Mondial 17.5-22.5 Plymate 5.5 23-17 Simultano C 15.5-4.5 +Excellence 4 13.5-6.5 Turbostar 432 2.5-0.5 Super Const. 14.5-5.5 +Elite A/S 3.2 16.5-3.5 Superstar 36K 17.5-2.5 + + 55 Novag Expert Turbo Kit 6502 16 MHz, 1906 +Avant Garde 12-8 Rebell 5 MHz 10.5-9.5 Super Mondial 11-9 +Plymate 5.5 14.5-5.5 Turbostar 432 16-4 + + 56 Novag Super Expert B 6502 6 MHz sel 4, 1904, (1892 vs humans, 9 games) +Mephisto MM 4 8-12 CM3000 386/33 1-3 Psion Atari 10.5-9.5 +Sphinx Galaxy 14-6 Avant Garde 0.5-0.5 Super Exp. A 13-7 +Rebell 5 MHz 10.5-9.5 Stratos 6 MHz 13.5-6.5 Super Mondial 13-7 +Plymate 5.5 15-5 Simultano C 21.5-9.5 Excellence 4 11-9 +Excellence 3 3.5-1.5 Chesscard 5 8.5-1.5 Super VIP 15.5-4.5 +Elite A/S 3.2 13-7 Conchess 2MHz 4-1 Const. 2 MHz 1-0 + + 57 Kasparov GK-2000 H8 10 MHz, 1904 +Meph. Modena 12.5-7.5 Psion Atari 14-6 Turboking II 11-9 +Rebell 5 MHz 12-8 Chesspl. 2150 14-6 + + 59 Mephisto MM 4 6502 5 MHz, 1901 +Psion Atari 19.5-16.5 Sphinx Galaxy 11-9 Excel Mach 2a 12.5-7.5 +Turboking II 5.5-4.5 Plym Victoria 10-10 Excel Club 11-10 +Avant Garde 12-10 Super Exp. A 31-13 Par Excell. 12.5-7.5 +Rebell 5 MHz 16-4 Stratos 6 MHz 18-9 Forte B 14.5-5.5 +Super Mondial 13-7 Plymate 5.5 28.5-11.5 Maestro A 6 12-8 +Forte A 13.5-6.5 Simultano C 11.5-8.5 Excellence 4 11.5-8.5 +Expert 4 MHz 13.5-6.5 Turbostar 432 13.5-6.5 Excellence 3 16.5-3.5 +Super Const. 17-3 Mephisto B&P 6.5-3.5 Elite A/S 3.2 17-3 +Superstar 36K 13.5-6.5 Quattro 4 MHz 14.5-5.5 Cmaster 2000 15.5-1.5 +Super Enterp. 21-5 Turbo S 24K 4-0 + + 60 Chessmaster 3000 386/25-33 MHz, 1900 +Super Mondial 2-2 Chesscard 5 8-4 + + 61 Mephisto Modena 6502 4 MHz, 1886 +Mega IV BF 2.5-2.5 Super Mondial 13-7 Plymate 5.5 14-6 +Simultano C 10.5-9.5 Meph. Europa 15.5-4.5 Elite A/S 3.2 17-3 + + 62 Psion Atari 68000 8 MHz, 1880, (1947 vs humans, 5 games) +Sphinx Galaxy 10-10 Excel Mach 2a 13.5-6.5 Turboking II 9-12 +Plym Victoria 15-5 Excel Club 32.5-18.5 Avant Garde 13.5-7.5 +Super Exp. A 13.5-11.5 Par Excell. 12.5-7.5 Rebell 5 MHz 19-8 +Stratos 6 MHz 16-20 Forte B 13-7 Super Mondial 15-5 +Plymate 5.5 13-9 Maestro A 6 18-14 Forte A 10.5-9.5 +Excellence 4 19.5-9.5 Expert 4 MHz 20-9 Turbostar 432 14.5-5.5 +Excellence 3 22.5-9.5 Kasp. Blitz 14-6 Super Const. 19-4 +Chesspl. 2150 9-6 Mephisto B&P 3-1 Chesscard 5 8-5 +Super VIP 10-0 Superstar 36K 17-3 Champion 2175 6.5-0.5 +Conchess 2MHz 15.5-4.5 Quattro 4 MHz 15.5-4.5 Cmaster 2000 2-0 +Const. 2 MHz 1-0 Super Enterp. 18.5-1.5 + + 63 CXG Sphinx Galaxy 6502 4 MHz, 1875, (1999 vs humans, 28 games) +Turboking II 8-12 Plym Victoria 11.5-8.5 Mega IV BF 4.5-2.5 +Avant Garde 12-8 Rebell 5 MHz 10-10 Stratos 6 MHz 27-12 +Super Mondial 17-3 Plymate 5.5 11.5-8.5 Maestro A 6 1.5-1.5 +Forte A 4.5-3.5 Simultano C 35.5-24.5 Excellence 4 3.5-1.5 +Expert 4 MHz 10.5-9.5 Excellence 3 8-4 Kasp. Blitz 11.5-8.5 +Chesspl. 2150 13.5-6.5 Super VIP 5-0 Elite A/S 3.2 17-3 +Cmaster 2100 15-5 Champion 2175 8.5-11.5 Conchess 2MHz 23.5-9.5 +Const. 3.6MHz 12.5-5.5 Super Enterp. 3-0 + + 64 Fidelity Excel Mach IIa 68000 12 MHz, 1875 +Avant Garde 9.5-10.5 Rebell 5 MHz 12.5-7.5 Plymate 5.5 14-8 +Maestro A 6 15-5 Excellence 3 13.5-6.5 + + 65 Saitek Turboking II 6502 5 MHz, 1872 +Plym Victoria 10.5-9.5 Super Exp. A 12.5-7.5 Rebell 5 MHz 10-10 +Stratos 6 MHz 12.5-7.5 Super Mondial 10.5-9.5 Plymate 5.5 12-8 +Simultano C 12.5-7.5 Excellence 4 10.5-9.5 Super Nova 12-8 +Super Const. 15-5 Elite A/S 3.2 13-7 Cmaster 2100 15-5 +Superstar 36K 16-4 Champion 2175 16.5-3.5 Cmaster 2000 15.5-4.5 + + 66 Conchess Plymate Victoria 6502 5.5 MHz, 1862, (1841 vs humans, 7 games) +Mega IV BF 9.5-10.5 Super Exp. A 11.5-8.5 Rebell 5 MHz 11-9 +Stratos 6 MHz 10-10 Super Mondial 11-9 Plymate 5.5 14-6 +Maestro A 6 7-3 Simultano C 11-9 Excellence 4 0.5-0.5 +Chesscard 5 16.5-3.5 Elite A/S 3.2 18.5-1.5 Superstar 36K 14.5-5.5 +Cmaster 2000 17-3 + + 67 Fidelity Excel Club 68000 12 MHz, 1854, (1774 vs humans, 6 games) +Avant Garde 27-23 Super Exp. A 11-15 Rebell 5 MHz 11.5-8.5 +Stratos 6 MHz 13.5-6.5 Forte B 10.5-9.5 Super Mondial 10-10 +Plymate 5.5 18-6 Maestro A 6 13.5-6.5 Forte A 31.5-18.5 +Excellence 4 16-10 Expert 4 MHz 18-6 Turbostar 432 47.5-31.5 +Excellence 3 15-5 Super Const. 12.5-7.5 Elite A/S 3.2 17.5-2.5 +Superstar 36K 13.5-6.5 Conchess 2MHz 15-5 Quattro 4 MHz 14.5-5.5 +Cmaster 2000 7.5-3.5 Const. 2 MHz 2-0 Super Enterp. 7-1 + + 68 Mephisto Mega IV Brute Force, 1840 +Super Exp. A 8.5-11.5 Rebell 5 MHz 11-9 Stratos 6 MHz 6.5-13.5 +Super Mondial 12-8 Simultano C 11-9 Expert 4 MHz 8.5-3.5 +Super Const. 16.5-6.5 Elite A/S 3.2 22-3 + + 69 Fidelity Avant Garde 6502 5 MHz, 1832 +Super Exp. A 8.5-11.5 Par Excell. 20.5-20.5 Rebell 5 MHz 10-10 +Stratos 6 MHz 12-10 Forte B 11-9 Super Mondial 11-9 +Plymate 5.5 19-17 Maestro A 6 9-11 Forte A 21.5-17.5 +Excellence 4 13-7 Expert 4 MHz 50-35 Plymate 4 MHz 14.5-10.5 +Turbostar 432 20-9 Excellence 3 14-7 Super Const. 23.5-8.5 +Elite A/S 3.2 6-4 Superstar 36K 16-5 Conchess 2MHz 15.5-4.5 +Quattro 4 MHz 15.5-4.5 Cmaster 2000 15.5-4.5 Const. 2 MHz 18-2 + + 70 Novag Super Expert/Forte A 6502 5 MHz, 1831, (1718 vs humans, 9 games) +Rebell 5 MHz 10.5-9.5 Stratos 6 MHz 7-15 Super Mondial 8-12 +Plymate 5.5 12.5-27.5 Maestro A 6 10-10 Simultano C 10-10 +Excellence 4 32-30 Turbostar 432 15-5 Excellence 3 14-6 +Kasp. Blitz 14-6 Super Const. 14-6 Elite A/S 3.2 15.5-4.5 +Superstar 36K 19.5-5.5 Champion 2175 12-8 Conchess 2MHz 14-6 +Quattro 4 MHz 15.5-4.5 + + 71 Fidelity Par Excellence 6502 5 MHz, 1829 +Rebell 5 MHz 21-14 Forte B 15-7 Super Mondial 11.5-8.5 +Plymate 5.5 46.5-41.5 Maestro A 6 10-10 Forte A 47.5-37.5 +Excellence 4 17.5-12.5 Expert 4 MHz 19-15 Plymate 4 MHz 5.5-4.5 +Mephisto MM 2 10.5-9.5 Turbostar 432 12.5-7.5 Excellence 3 11.5-8.5 +Super Nova 8-2 Super Const. 44.5-25.5 Chesscard 5 2-4 +Elite A/S 3.2 16-4 Superstar 36K 16.5-3.5 Conchess 2MHz 16-4 +Quattro 4 MHz 16.5-3.5 Const. 3.6MHz 13-7 Turbo S 24K 7-1 + + 72 Mephisto Rebell 6502 5 MHz, 1821 +Stratos 6 MHz 12.5-7.5 Forte B 20.5-23.5 Super Mondial 13-7 +Plymate 5.5 12.5-8.5 Maestro A 6 13.5-8.5 Forte A 14-11 +Simultano C 11-13 Excellence 4 9.5-10.5 Expert 4 MHz 10-10 +Turbostar 432 10.5-9.5 Excellence 3 14-6 Super Nova 14.5-10.5 +Super Const. 10.5-9.5 Chesspl. 2150 14-6 Mephisto B&P 2-0 +Meph. Europa 5-1 Elite A/S 3.2 12-8 Superstar 36K 14.5-5.5 +Conchess 2MHz 13.5-6.5 Quattro 4 MHz 13.5-6.5 + + 73 Saitek Stratos/Analys B 6502 6 MHz, 1817 +Forte B 8-12 Super Mondial 11-9 Plymate 5.5 8.5-11.5 +Forte A 3-0 Simultano C 10-10 Excellence 4 11-10 +Expert 4 MHz 6-14 Turbostar 432 7.5-4.5 Excellence 3 14-7 +Kasp. Blitz 9-3 Super Nova 14-6 Super Const. 13-7 +Chesscard 5 2-1 Meph. Europa 2-1 Super VIP 9.5-10.5 +Elite A/S 3.2 14-6 Superstar 36K 11-9 Conchess 2MHz 4-0 +Quattro 4 MHz 16-4 Cmaster 2000 14.5-5.5 Const. 2 MHz 6-3 + + 74 Novag Forte B 6502 5 MHz, 1813, (1861 vs humans, 28 games) +Super Mondial 11.5-8.5 Plymate 5.5 25-24 Maestro A 6 9.5-10.5 +Excellence 4 14.5-11.5 Expert 4 MHz 0.5-2.5 Elegance 3.6 3-2 +Turbostar 432 12.5-7.5 Excellence 3 14-6 Super Nova 1.5-0.5 +Super Const. 11-9 Meph. Europa 15.5-4.5 Elite A/S 3.2 14.5-5.5 +Superstar 36K 13-7 Conchess 2MHz 30.5-11.5 Quattro 4 MHz 16.5-3.5 + + 75 Mephisto Super Mondial 6502 4 MHz, 1812 +Plymate 5.5 11.5-16.5 Maestro A 6 11-9 Forte A 8-12 +Simultano C 14.5-5.5 Excellence 4 7.5-12.5 Expert 4 MHz 12-8 +Turbostar 432 8.5-11.5 Excellence 3 9-11 Kasp. Blitz 10-10 +Super Const. 10-10 Chesspl. 2150 15-5 Chesscard 5 15-5 +Elite A/S 3.2 14-6 Cmaster 2100 15.5-4.5 Superstar 36K 14-6 +Conchess 2MHz 16-4 Quattro 4 MHz 15.5-4.5 + + 76 Conchess Glasgow 6 MHz, 1812 +Super Const. 3.5-1.5 Elite A/S 3.2 8.5-3.5 Const. 2 MHz 9-3 +Mephisto III6 11-1 + + 77 Conchess Plymate 6502 5.5 MHz, 1808 +Maestro A 6 14-17 Forte A 47-47 Simultano C 8-11 +Excellence 4 113.5-96.5 Expert 4 MHz 13-9 Mephisto MM 2 2-0 +Elegance 3.6 5.5-4.5 Turbostar 432 20.5-14.5 Excellence 3 14.5-14.5 +Super Nova 9.5-10.5 Super Const. 24.5-7.5 Super VIP 12-8 +Elite A/S 3.2 12.5-7.5 Superstar 36K 11-9 Champion 2175 4-0 +Prestige 4MHz 4-1 Conchess 2MHz 15.5-4.5 Quattro 4 MHz 11-9 +Cmaster 2000 20.5-4.5 Const. 3.6MHz 21.5-4.5 Const. 2 MHz 14.5-5.5 +Sargon III 1M 1-0 Super Enterp. 18.5-1.5 + + 78 Saitek Leonardo Maestro A 6502 6 MHz, 1807, (1896 vs humans, 9 games) +Forte A 8-13 Excellence 4 13-9 Turbostar 432 11-10 +Excellence 3 10.5-9.5 Super Const. 13-7 Superstar 36K 14.5-5.5 +Conchess 2MHz 16-4 Quattro 4 MHz 13-7 Cmaster 2000 1-0 + + 79 Novag Forte A 6502 5 MHz, 1806 +Excellence 4 21.5-29.5 Plymate 4 MHz 7-3 Mephisto MM 2 10.5-9.5 +Elegance 3.6 8.5-11.5 Turbostar 432 19.5-14.5 Excellence 3 10.5-12.5 +Super Const. 21.5-11.5 Elite A/S 3.2 16.5-3.5 Superstar 36K 15.5-4.5 +Conchess 2MHz 13-7 Quattro 4 MHz 18-4 Cmaster 2000 3.5-2.5 +Const. 3.6MHz 16-4 Const. 2 MHz 15-3 Super Enterp. 16.5-3.5 + + 80 Saitek Simultano/Corona C 6502 5 MHz, 1806 +Excellence 4 14.5-10.5 Kasp. Blitz 11-9 Super Nova 6.5-3.5 +Meph. Europa 2-0 Elite A/S 3.2 22.5-17.5 Cmaster 2100 14-6 +Superstar 36K 11.5-3.5 + + 81 Fidelity Excellence 6502 4 MHz, 1798 +Expert 4 MHz 24-22 Plymate 4 MHz 15-14 Mephisto MM 2 12-8 +Turbostar 432 39-39 Excellence 3 12.5-7.5 Kasp. Blitz 13-7 +Super Nova 12.5-7.5 Super Const. 20.5-9.5 Conchess 4MHz 17-7 +Mephisto B&P 0.5-2.5 Super VIP 15.5-4.5 Elite A/S 3.2 13-7 +Superstar 36K 12.5-8.5 Champion 2175 16-4 Conchess 2MHz 17-3 +Quattro 4 MHz 13-7 Cmaster 2000 17.5-2.5 Const. 3.6MHz 24-4 +Const. Primo 5.5-2.5 Const. 2 MHz 2-0 + + 82 Novag Expert 6502 4 MHz, 1784 +Plymate 4 MHz 5.5-14.5 Mephisto MM 2 4-6 Elegance 3.6 11.5-8.5 +Turbostar 432 11-9 Excellence 3 22-13 Super Nova 5.5-5.5 +Super Const. 16.5-12.5 Conchess 4MHz 4.5-2.5 Chesspl. 2150 1.5-1.5 +Mephisto B&P 2-0 Superstar 36K 11-9 Conchess 2MHz 14-6 +Quattro 4 MHz 3-1 Const. 3.6MHz 13.5-6.5 Const. Primo 10.5-2.5 +Super Enterp. 10-1 + + 83 Conchess Plymate 6502 4 MHz, 1775 +Elegance 3.6 25-22 Turbostar 432 9.5-10.5 Excellence 3 11.5-8.5 +Super Const. 38.5-27.5 Elite A/S 3.2 10-10 Superstar 36K 13-7 +Meph. Excl. S 7.5-2.5 Conchess 2MHz 11-9 Const. 3.6MHz 16.5-9.5 + + 84 Mephisto MM 2 6502 3.7 MHz, 1769 +Turbostar 432 16.5-19.5 Excellence 3 7.5-8.5 Super Const. 8.5-6.5 +Elite A/S 3.2 9-5 Superstar 36K 15.5-4.5 Const. 3.6MHz 14-6 +Const. 2 MHz 4-1 + + 85 Fidelity Elegance 6502 3.6 MHz, 1761 +Turbostar 432 16.5-13.5 Excellence 3 0.5-1.5 Super Const. 9-8 +Conchess 4MHz 28.5-23.5 Elite A/S 3.2 11.5-3.5 Meph. Excl. S 8-5 +Conchess 2MHz 7.5-4.5 Const. 3.6MHz 17.5-6.5 Const. 2 MHz 14-6 +Super Enterp. 10.5-1.5 Sensory 9 A 3.5-0.5 Steinitz 3-1 +Mephisto IIIM 4-0 Mephisto II 6 4-0 Chess 2001 2.5-1.5 +Scisys supers 4-0 Mephisto III6 3.5-0.5 Conchess -82 2.5-1.5 +Mark VI 3.5-0.5 Morphy 3-1 + + 86 Saitek Turbostar 432 6502 4 MHz, 1759 +Excellence 3 13-12 Super Const. 31.5-29.5 Conchess 4MHz 10-9 +Mephisto B&P 17.5-9.5 Elite A/S 3.2 15-5 Superstar 36K 10-10 +Meph. Excl. S 3-2 Prestige 4MHz 7-4 Conchess 2MHz 12-8 +Quattro 4 MHz 12-8 Const. 3.6MHz 14.5-7.5 Const. 2 MHz 18-7 +Sargon III 1M 1.5-0.5 Super Enterp. 17-3 Scisys supers 0-1 +Mephisto III6 18.5-1.5 Turbo S 24K 2-1 GMC 1-0 + + 87 Fidelity Excellence 6502 3 MHz, 1753, (1578 vs humans, 5 games) +Super Nova 0-1 Super Const. 30.5-21.5 Conchess 4MHz 14.5-10.5 +Mephisto B&P 4-5 Super VIP 6.5-2.5 Elite A/S 3.2 14.5-5.5 +Superstar 36K 13.5-6.5 Conchess 2MHz 15.5-11.5 Quattro 4 MHz 15-5 +Const. 3.6MHz 21-11 Const. Primo 15-5 Const. 2 MHz 22-4 +Sargon III 1M 1-1 Super Enterp. 14-8 + + 88 Saitek Kasparov Blitz, 1736 +Super Nova 9.5-10.5 Super Enterp. 21-9 + + 89 Novag Super Nova, 1732 +Super Const. 10.5-9.5 Meph. Europa 11-9 Conchess 2MHz 13-7 +Const. 2 MHz 13-7 Super Enterp. 10.5-9.5 + + 90 Novag Super Constellation 6502 4 MHz, 1728, (1555 vs humans, 9 games) +Conchess 4MHz 46-44 Chesspl. 2150 1-0 Mephisto B&P 9.5-7.5 +Chesscard 5 13.5-7.5 Super VIP 5-5 Elite A/S 3.2 10-3 +Superstar 36K 11.5-9.5 Champion 2175 13.5-6.5 Meph. Excl. S 10.5-5.5 +Prestige 4MHz 9.5-10.5 Conchess 2MHz 12.5-11.5 Quattro 4 MHz 14.5-5.5 +Const. 3.6MHz 19.5-5.5 Const. Primo 0.5-0.5 Const. 2 MHz 26-11 +Sargon III 1M 9-3 Meph. Mondial 10-4 Super Enterp. 10.5-1.5 +Sensory 9 A 4.5-1.5 Steinitz 4-0 Mephisto IIIM 16-1 +Mephisto II 6 4-0 Chess 2001 2.5-1.5 Scisys supers 3.5-1.5 +Mephisto III6 21-5 Conchess -82 3-1 GMC 4.5-0.5 +Mark VI 4-0 Mark V 9.5-0.5 Morphy 4-0 + + 91 Conchess Glasgow 6502 4 MHz, 1712 +Elite A/S 3.2 8.5-6.5 Superstar 36K 6-8 Meph. Excl. S 6-7 +Prestige 4MHz 27-12 Const. 3.6MHz 10.5-9.5 Const. 2 MHz 8.5-2.5 +Super Enterp. 5.5-4.5 Scisys supers 1-0 GMC 1-0 + + 92 Chessplayer 2150 Atari/Amiga, 1709 +Conchess 2MHz 11.5-8.5 Const. Primo 0-1 + + 94 The Final Chesscard 6502 5 MHz, 1695 +Const. 2 MHz 5.5-0.5 + + 95 Mephisto Europa, 1685 +Elite A/S 3.2 10.5-9.5 Superstar 36K 9.5-10.5 Conchess 2MHz 13.5-6.5 +Const. 2 MHz 7.5-6.5 Super Enterp. 14-6 + + 96 Novag Super VIP, 1684 +Elite A/S 3.2 12-8 Conchess 2MHz 5-15 + + 97 Fidelity Elite A/S 6502 3.2 MHz, 1677 +Superstar 36K 11.5-8.5 Meph. Excl. S 1.5-1.5 Conchess 2MHz 11.5-8.5 +Quattro 4 MHz 11.5-8.5 Const. 3.6MHz 12.5-16.5 Const. Primo 11-9 +Const. 2 MHz 7-5 Sensory 9 B 3-1 Sensory 9 A 41-13 +Steinitz 28-9 Mephisto IIIM 7-3 Mephisto II 6 11.5-3.5 +Chess 2001 9.5-0.5 Scisys supers 11.5-1.5 Mephisto III6 17.5-3.5 +Turbo S 24K 15-5 Conchess -82 7-1 GMC 1-0 +Mark VI 7-1 Morphy 8.5-0.5 Boris 2.5 0-1 + + 99 Saitek Superstar 36K 6502 2 MHz, 1675 +Conchess 2MHz 11.5-8.5 Quattro 4 MHz 11.5-11.5 Cmaster 2000 9.5-10.5 +Const. 3.6MHz 16.5-13.5 Const. Primo 9.5-10.5 Const. 2 MHz 11-9 +Meph. Mondial 10.5-9.5 Turbo 16K 15-5 Mephisto III6 2.5-1.5 + + 100 Chess Champion 2175 Atari/Amiga, 1670 +Conchess 2MHz 7.5-12.5 Cmaster 2000 0.5-1.5 + + 101 Mephisto Exclusive S, 1670 +Conchess 2MHz 2-2 Const. 3.6MHz 8.5-6.5 Scisys supers 1-0 +GMC 1-0 + + 102 Fidelity Prestige 6502 4 MHz, 1665 +Conchess 2MHz 3.5-3.5 Const. 3.6MHz 5-5 Elite -81 11-11 +Const. 2 MHz 15.5-6.5 Sensory 9 B 8-4 Sensory 9 A 28-6 +Steinitz 10.5-3.5 Mephisto II 6 52-12 Chess 2001 2-0 +Scisys supers 8.5-3.5 Mephisto III6 2-0 Conchess -82 14-4 +Champion chal 4.5-2.5 Mark VI 23-1 Mark V 8.5-1.5 +Morphy 3-0 + + 103 Conchess Glasgow 6502 2 MHz, 1663 +Quattro 4 MHz 7-13 Cmaster 2000 8-12 Const. 3.6MHz 8.5-13.5 +Const. Primo 11.5-8.5 Const. 2 MHz 12.5-7.5 Meph. Mondial 1.5-4.5 +Super Enterp. 12.5-7.5 Mephisto IIIM 1.5-0.5 Turbo S 24K 16-4 +GMC 2-0 + + 104 Novag Quattro 6502 4 MHz, 1659 +Cmaster 2000 9-11 Const. 3.6MHz 12-8 Const. Primo 11-9 +Super Enterp. 14.5-6.5 + + 106 Novag Constellation 6502 3.6 MHz, 1644 +Const. 2 MHz 20-14 Meph. Mondial 9.5-6.5 Super Enterp. 1-1 +Sensory 9 B 1-1 Sensory 9 A 3-1 Steinitz 2.5-1.5 +Mephisto IIIM 21.5-8.5 Mephisto II 6 4-0 Turbo 16K 16-4 +Chess 2001 5.5-0.5 Scisys supers 8.5-0.5 Turbo S 24K 15-5 +Conchess -82 4-0 GMC 4.5-1.5 Mark VI 4-0 +Morphy 3.5-0.5 + + 107 Novag Constellation Primo, 1634 +Const. 2 MHz 3.5-2.5 Super Enterp. 13-7 + + 108 Fidelity Elite -81, 1604 +Const. 2 MHz 4-6 Sensory 9 A 11-5 Steinitz 1-1 +Mephisto II 6 21.5-10.5 Conchess -82 11-3 GMC 13-1 +Mephisto II 3 9-1 Champion chal 11.5-3.5 Mark VI 1-1 +Mark V 9.5-4.5 + + 109 Novag Constellation 6502 2 MHz, 1596 +Sargon III 1M 1-1 Meph. Mondial 13-7 Super Enterp. 34-25 +Sensory 9 B 8-6 Sensory 9 A 34-22 Steinitz 46-17 +Mephisto IIIM 24-12 Mephisto II 6 26.5-10.5 Turbo 16K 16-4 +Chess 2001 13-4 Scisys supers 33.5-20.5 Mephisto III6 15.5-8.5 +Conchess -82 19.5-5.5 GMC 1-1 Mephisto II 3 1-0 +Mark VI 14-2 Mark V 2-0 Morphy 3.5-1.5 +Progidy 9-0 Boris 2.5 1-0 + + 110 Sargon III 1 MHz, 1590 +Conchess -82 6.5-1.5 + + 111 Mephisto Mondial, 1581 +Turbo 16K 11.5-8.5 Mephisto III6 3-1 + + 112 CXG Super Enterprise, 1561 +Turbo 16K 5-5 Mephisto III6 10.5-3.5 Enterprise S 8.5-1.5 + + 113 Fidelity Sensory 9 B, 1553 +Sensory 9 A 1-1 Mephisto IIIM 4-4 Scisys supers 7.5-4.5 +Mephisto III6 1-1 Conchess -82 3.5-0.5 Mark VI 4-0 +Morphy 3.5-0.5 + + 114 Fidelity Sensory 9 A, 1494 +Steinitz 17-18 Mephisto IIIM 13.5-14.5 Mephisto II 6 40.5-29.5 +Chess 2001 1-3 Scisys supers 2-2 Mephisto III6 10.5-4.5 +Conchess -82 18.5-9.5 GMC 18.5-7.5 Mephisto II 3 28.5-11.5 +Champion chal 15.5-6.5 Mark VI 10-7 Mark V 21.5-16.5 +Morphy 1-0 Progidy 4-0 Boris 2.5 3-0 + + 115 Steinitz, 1480, (1546 vs humans, 0 games) +Mephisto IIIM 3-1 Mephisto II 6 20-17 Chess 2001 9-11 +Scisys supers 16-8 Mephisto III6 3.5-1.5 Conchess -82 8.5-3.5 +GMC 17.5-12.5 Mephisto II 3 3.5-1.5 Mark VI 10-8 +Morphy 2.5-2.5 Boris 2.5 1-0 + + 116 Mephisto III Modular, 1471 +Mephisto II 6 1-5 Chess 2001 2-4 Scisys supers 5-1 +Mephisto III6 5-3 Conchess -82 2-2 GMC 3-1 +Mark VI 7.5-4.5 Morphy 2-2 + + 117 Mephisto II 6.1 MHz, 1470 +Chess 2001 2-2 Scisys supers 3-3 Mephisto III6 2-3 +Conchess -82 24-16 GMC 13.5-4.5 Mephisto II 3 15-4 +Champion chal 6-2 Mark VI 16-10 Mark V 29-9 +Morphy 4-1 Progidy 3-2 Boris 2.5 1.5-1.5 + + 119 Chess 2001, 1462 +Scisys supers 2-4 Mephisto III6 3-3 Conchess -82 1.5-2.5 +Mark VI 2.5-1.5 Morphy 3-1 + + 120 Scisys Superstar, 1454 +Mephisto III6 4.5-3.5 Conchess -82 2-2 GMC 1-0 +Mark VI 3-1 Morphy 1.5-2.5 + + 121 Mephisto III 6.1 MHz, 1452 +Conchess -82 4-0 Mark VI 3-1 Morphy 3-2 +Boris 2.5 1-0 + + 122 Saitek Turbo S 24K, 1431 +Champion chal 7-13 + + 123 Conchess -82 2 MHz, 1408 +GMC 2-6 Mephisto II 3 13-5 Champion chal 14.5-11.5 +Mark VI 3.5-4.5 Mark V 14.5-7.5 Morphy 9.5-4.5 +Enterprise S 12-4 Boris 2.5 1.5-0.5 + + 124 GMC, 1385 +Mephisto II 3 20-19 Champion chal 40-40 Mark V 37.5-27.5 +Boris 2.5 2-0 + + 125 Mephisto II 3.5 MHz, 1380 +Champion chal 28.5-14.5 Mark V 25.5-22.5 Morphy 42-28 +Progidy 1.5-0.5 Boris 2.5 10-1 + + 126 Champion Sensory Challenger, 1379 +Mark V 45-36 Morphy 12.5-11.5 Enterprise S 9.5-0.5 + + 127 Mark VI, 1375 +Morphy 3-1 + + 128 Mark V, 1352 +Morphy 6.5-5.5 Progidy 4-4 Boris 2.5 4.5-0.5 + + 129 Morphy, 1334 +Boris 2.5 24.5-10.5 + + 131 Enterprise S, 1182 +Boris 2.5 5-5 + diff --git a/programs/engine-intf.html b/programs/engine-intf.html new file mode 100644 index 0000000..07a2976 --- /dev/null +++ b/programs/engine-intf.html @@ -0,0 +1,1895 @@ +<html> +<head> +<title>Chess Engine Communication Protocol</title> +</head> + +<body> +<hr noshade size="2"> +<h1>Chess Engine Communication Protocol</h1> +<h2><a href="http://www.tim-mann.org/">Tim Mann</a></h2> +<p> +$Id: engine-intf.html,v 2.1 2003/10/27 19:21:00 mann Exp $<br> +Version 2; implemented in xboard/WinBoard 4.2.1 and later.<br> +Changes since version 1 are indicated in <font color=red>red</font>. +<hr noshade size="2"> + +<ul> +<li><a href="#1">1. Introduction</a> +<li><a href="#2">2. Connection</a> +<li><a href="#3">3. Debugging</a> +<li><a href="#4">4. How it got this way</a> +<li><a href="#5">5. WinBoard requires Win32 engines</a> +<li><a href="#6">6. Hints on input/output</a> +<li><a href="#7">7. Signals</a> +<li><a href="#8">8. Commands from xboard to the engine</a> +<li><a href="#9">9. Commands from the engine to xboard</a> +<li><a href="#10">10. Thinking Output</a> +<li><a href="#11">11. Time control</a> +<li><a href="#12">12. Analyze Mode</a> +<li><a href="#13">13. Idioms and backward compatibility features</a> +</ul> + +<hr noshade size="2"> + +<h2><a name="1">1. Introduction</a></h2> + +<p> +This document is a set of rough notes on the protocol that xboard and +WinBoard use to communicate with gnuchessx and other chess engines. +These notes may be useful if you want to connect a different chess +engine to xboard. Throughout the notes, "xboard" means both xboard +and WinBoard except where they are specifically contrasted. +</p> + +<p> +There are two reasons I can imagine someone wanting to do this: +</p> +<ol> +<li>You have, or are developing, a chess engine but you don't want to +write your own graphical interface. +<li>You have, or are developing,a chess engine, and you want to +interface it to the Internet Chess Server. +</ol> + +<p> +In case (2), if you are using xboard, you will need to configure the +"Zippy" code into it, but WinBoard includes this code already. See +the file <a +href="http://www.tim-mann.org/xboard/zippy.README">zippy.README</a> +in the xboard or WinBoard distribution for more information. + +</p> + +<p> +These notes are unpolished, but I've attempted to make them complete +in this release. If you notice any errors, omissions, or misleading +statements, let me know. +</p> + +<p> +I'd like to hear from everyone who is trying to interface their own +chess engine to xboard/WinBoard. Please join the mailing list for +authors of xboard/WinBoard compatible chess engines and post a message +about what you're doing. The list is now hosted by Yahoo Groups; you +can join at <a href="http://groups.yahoo.com/group/chess-engines" +>http://groups.yahoo.com/group/chess-engines</a>, or you can read the +list there without joining. The list is filtered to prevent spam. +</p> + +<h2><a name="2">2. Connection</a></h2> + +<p> +An xboard chess engine runs as a separate process from xboard itself, +connected to xboard through a pair of anonymous pipes. The engine +does not have to do anything special to set up these pipes. xboard +sets up the pipes itself and starts the engine with one pipe as its +standard input and the other as its standard output. The engine then +reads commands from its standard input and writes responses to its +standard output. This is, unfortunately, a little more complicated to +do right than it sounds; see <a href="#6">section 6</a> below. +</p> + +<p> +And yes, contrary to some people's expectations, exactly the same +thing is true for WinBoard. Pipes and standard input/output are +implemented in Win32 and work fine. You don't have to use DDE, COM, +DLLs, BSOD, or any of the other infinite complexity that +Microsoft has created just to talk between two programs. A WinBoard +chess engine is a Win32 console program that simply reads from its +standard input and writes to its standard output. See sections +<a href="#5">5</a> and <a href="#6">6</a> below for additional details. +</p> + +<h2><a name="3">3. Debugging</a></h2> + +<p> +To diagnose problems in your engine's interaction with xboard, use the +-debug flag on xboard's command line to see the messages that are +being exchanged. In WinBoard, these messages are written to the file +WinBoard.debug instead of going to the screen. +</p> + +<p> +You can turn debug mode on or off while WinBoard is running by +pressing Ctrl+Alt+F12. You can turn debug mode on or off while xboard +is running by binding DebugProc to a shortcut key (and pressing the +key!); see the instructions on shortcut keys in the xboard man page. +</p> + +<p> +While your engine is running under xboard/WinBoard, you can send a +command directly to the engine by pressing Shift+1 (xboard) or Alt+1 +(WinBoard 4.0.3 and later). This brings up a dialog that you can type +your command into. Press Shift+2 (Alt+2) instead to send to the +second chess engine in Two Machines mode. On WinBoard 4.0.2 and earlier, +Ctrl+Alt is used in place of Alt; this had to be changed due to a conflict +with typing the @-sign on some European keyboards. +</p> + +<h2><a name="4">4. How it got this way</a></h2> + +<p> +Originally, xboard was just trying to talk to the existing +command-line interface of GNU Chess 3.1+ and 4, which was designed +for people to type commands to. So the communication protocol is very +ad-hoc. It might have been good to redesign it early on, but because +xboard and GNU Chess are separate programs, I didn't want to force +people to upgrade them together to versions that matched. I +particularly wanted to keep new versions of xboard working with old +versions of GNU Chess, to make it easier to compare the play of old +and new gnuchess versions. I didn't foresee the need for a clean +protocol to be used with other chess engines in the future. +</p> + +<p> +Circumstances have changed over the years, and now there are many more +engines that work with xboard. I've had to make the protocol +description more precise, I've added some features that GNU Chess +does not support, and I've specified the standard semantics of a few +features to be slightly different from what GNU Chess 4 does. +</p> + +<p> +<font color=red> +This release of the protocol specification is the first to carry a +version number of its own -- version 2. Previous releases simply +carried a last-modified date and were loosely tied to specific +releases of xboard and WinBoard. The version number "1" applies +generally to all those older versions of the protocol. +</font> + +<font color=red> +<p>Protocol version 2 remains compatible with older engines but has +several new capabilities. In particular, it adds the +"feature" command, a new mechanism for making backward-compatible +changes and extensions to the protocol. Engines that do not support a +particular new feature do not have to use it; new features are not +enabled unless the engine specifically requests them using the feature +command. If an engine does not send the feature command at all, the +protocol behavior is nearly identical to version 1. Several new +features can be selected by the feature command in version 2, +including the "ping" command (recommended for all engines), the +"setboard" command, and many optional parameters. Additional features +will probably be added in future versions. +</p> +</font> + +<h2><a name="5">5. WinBoard requires Win32 engines</a></h2> + +<p> +Due to some Microsoft brain damage that I don't understand, WinBoard +does not work with chess engines that were compiled to use a DOS +extender for 32-bit addressing. (Probably not with 16-bit DOS or +Windows programs either.) WinBoard works only with engines that are +compiled for the Win32 API. You can get a free compiler that targets +the Win32 API from <a href="http://sources.redhat.com/cygwin/" +>http://sources.redhat.com/cygwin/</a>. I think DJGPP 2.x should also +work if you use the RSXNTDJ extension, but I haven't tried it. Of +course, Microsoft Visual C++ will work. Most likely the other +commercial products that support Win32 will work too (Borland, etc.), +but I have not tried them. Delphi has been successfully used to write +engines for WinBoard; if you want to do this, Tony Werten has donated +some <a href="http://www.tim-mann.org/winboard/delphi.txt" >sample +code</a> that should help you get started. +</p> + +<h2><a name="6">6. Hints on input/output</a></h2> + +<p> +Beware of using buffered I/O in your chess engine. The C stdio +library, C++ streams, and the I/O packages in most other languages use +buffering both on input and output. That means two things. First, +when your engine tries to write some characters to xboard, the library +stashes them in an internal buffer and does not actually write them to +the pipe connected to xboard until either the buffer fills up or you +call a special library routine asking for it to be flushed. (In C +stdio, this routine is named <tt>fflush</tt>.) Second, when your engine tries +to read some characters from xboard, the library does not read just +the characters you asked for -- it reads all the characters that are +currently available (up to some limit) and stashes any characters you +are not yet ready for in an internal buffer. The next time you ask to +read, you get the characters from the buffer (if any) before the +library tries to read more data from the actual pipe. +</p> + +<p> +Why does this cause problems? First, on the output side, remember +that your engine produces output in small quantities (say, a few +characters for a move, or a line or two giving the current analysis), +and that data always needs to be delivered to xboard/WinBoard for +display immediately. If you use buffered output, the data you print +will sit in a buffer in your own address space instead of being +delivered. +</p> + +<p> +You can usually fix the output buffering problem by asking for the +buffering to be turned off. In C stdio, you do this by calling +<tt>setbuf(stdout, NULL)</tt>. A more laborious and error-prone +method is to carefully call <tt>fflush(stdout)</tt> after every line +you output; I don't recommend this. In C++, you can try +<tt>cout.setf(ios::unitbuf)</tt>, which is documented in current +editions of "The C++ Programming Language," but not older ones. +Another C++ method that might work is +<tt>cout.rdbuf()->setbuf(NULL, 0)</tt>. Alternatively, you can +carefully call <tt>cout.flush()</tt> after every line you output; +again, I don't recommend this. +</p> + +<p> +Another way to fix the problem is to use unbuffered operating system +calls to write directly to the file descriptor for standard output. +On Unix, this means <tt>write(1, ...)</tt> -- see the man page for write(2). +On Win32, you can use either the Unix-like <tt>_write(1, ...)</tt> or Win32 +native routines like <tt>WriteFile</tt>. +</p> + +<p> +Second, on the input side, you are likely to want to poll during your +search and stop it if new input has come in. If you implement +pondering, you'll need this so that pondering stops when the user +makes a move. You should also poll during normal thinking on your +move, so that you can implement the "?" (move now) command, and so +that you can respond promptly to a "result", "force", or "quit" +command if xboard wants to end the game or terminate your engine. +Buffered input makes polling more complicated -- when you poll, you +must stop your search if there are <em>either</em> characters in the buffer +<em>or</em> characters available from the underlying file descriptor. +</p> + +<p> +The most direct way to fix this problem is to use unbuffered operating +system calls to read (and poll) the underlying file descriptor +directly. On Unix, use <tt>read(0, ...)</tt> to read from standard input, and +use <tt>select()</tt> to poll it. See the man pages read(2) and select(2). +(Don't follow the example of GNU Chess 4 and use the FIONREAD ioctl to +poll for input. It is not very portable; that is, it does not exist +on all versions of Unix, and is broken on some that do have it.) On +Win32, you can use either the Unix-like <tt>_read(0, ...)</tt> or the native +Win32 <tt>ReadFile()</tt> to read. Unfortunately, under Win32, the function to +use for polling is different depending on whether the input device is +a pipe, a console, or something else. (More Microsoft brain damage +here -- did they never hear of device independence?) For pipes, you +can use <tt>PeekNamedPipe</tt> to poll (even when the pipe is unnamed). +For consoles, +you can use <tt>GetNumberOfConsoleInputEvents</tt>. For sockets only, you can +use <tt>select()</tt>. It might be possible to use +<tt>WaitForSingleObject</tt> more +generally, but I have not tried it. Some code to do these things can +be found in Crafty's utility.c, but I don't guarantee that it's all +correct or optimal. +</p> + +<p> +A second way to fix the problem might be to ask your I/O library not +to buffer on input. It should then be safe to poll the underlying +file descriptor as described above. With C, you can try calling +<tt>setbuf(stdin, NULL)</tt>. However, I have never tried this. Also, there +could be problems if you use <tt>scanf()</tt>, at least with certain patterns, +because <tt>scanf()</tt> sometimes needs to read one extra character and "push +it back" into the buffer; hence, there is a one-character pushback +buffer even if you asked for stdio to be unbuffered. With C++, you +can try <tt>cin.rdbuf()->setbuf(NULL, 0)</tt>, but again, I have never tried +this. +</p> + +<p> +A third way to fix the problem is to check whether there are +characters in the buffer whenever you poll. C I/O libraries generally +do not provide any portable way to do this. Under C++, you can use +<tt>cin.rdbuf()->in_avail()</tt>. This method has been reported to +work with +EXchess. Remember that if there are no characters in the buffer, you +still have to poll the underlying file descriptor too, using the +method described above. +</p> + +<p> +A fourth way to fix the problem is to use a separate thread to read +from stdin. This way works well if you are familiar with thread +programming. This thread can be blocked waiting for input to come in +at all times, while the main thread of your engine does its thinking. +When input arrives, you have the thread put the input into a buffer +and set a flag in a global variable. Your search routine then +periodically tests the global variable to see if there is input to +process, and stops if there is. WinBoard and my Win32 ports of ICC +timestamp and FICS timeseal use threads to handle multiple input +sources. +</p> + +<h2><a name="7">7. Signals</a></h2> + +<p>Engines that run on Unix need to be concerned with two Unix +signals: <tt>SIGTERM</tt> and <tt>SIGINT</tt>. This applies both to +engines that run under xboard and (the unusual case of) engines that +WinBoard remotely runs on a Unix host using the -firstHost or +-secondHost feature. It does not apply to engines that run on +Windows, because Windows does not have Unix-style signals. +<font color=red> +Beginning with version 2, you can now turn off the use of +either or both +signals. See the "feature" command in <a href="#6">section 9</a> below. +</font> +</p> + +<p>First, when an engine is sent the "quit" command, it is also given +a <tt>SIGTERM</tt> signal shortly afterward to make sure it goes away. +If your engine reliably responds to "quit", and the signal causes +problems for you, you should either ignore it by calling +<tt>signal(SIGTERM, SIG_IGN)</tt> at the start of your program, +or disable it with the "feature" command.</p> + +<p>Second, xboard will send an interrupt signal (<tt>SIGINT</tt>) at +certain times when it believes the engine may not be listening to user +input (thinking or pondering). WinBoard currently does this only when +the engine is running remotely using the -firstHost or -secondHost +feature, not when it is running locally. You probably need to know +only enough about this grungy feature to keep it from getting in your +way. +</p> + +<p> +The <tt>SIGINT</tt>s are basically tailored to the needs of GNU Chess 4 +on systems where its input polling code is broken or disabled. +Because they work in a rather peculiar way, it is recommended that you +either ignore <tt>SIGINT</tt> by having your engine call +<tt>signal(SIGINT, SIG_IGN)</tt>, or disable it with the "feature" +command.</p> + +<p> +Here are details for the curious. If xboard needs to send a command +when it is the chess engine's move (such as before the "?" command), +it sends a <tt>SIGINT</tt> first. If xboard needs to send commands when it is +not the chess engine's move, but the chess engine may be pondering +(thinking on its opponent's time) or analyzing (analysis or analyze +file mode), xboard sends a <tt>SIGINT</tt> before the first such command only. +Another <tt>SIGINT</tt> is not sent until another move is made, even if xboard +issues more commands. This behavior is necessary for GNU Chess 4. The +first <tt>SIGINT</tt> stops it from pondering until the next move, but on some +systems, GNU Chess 4 will die if it receives a <tt>SIGINT</tt> when not +actually thinking or pondering. +</p> + +<p> +There are two reasons why WinBoard does not send the Win32 equivalent +of <tt>SIGINT</tt> (which is called <tt>CTRL_C_EVENT</tt>) to local +engines. First, the Win32 GNU Chess 4 port does not need it. Second, I +could not find a way to get it to work. Win32 seems to be designed +under the assumption that only console applications, not windowed +applications, would ever want to send a <tt>CTRL_C_EVENT</tt>. +</p> + +<h2><a name="8">8. Commands from xboard to the engine</a></h2> + +<p> +All commands from xboard to the engine end with a newline (\n), even +where that is not explicitly stated. All your output to xboard must +be in complete lines; any form of prompt or partial line will cause +problems. +</p> + +<p> +At the beginning of each game, xboard sends an initialization string. +This is currently "new\nrandom\n" unless the user changes it with the +initString or secondInitString option. +</p> + +<p> +xboard normally reuses the same chess engine process for multiple +games. At the end of a game, xboard will send the "force" command +(see below) to make sure your engine stops thinking about the current +position. It will later send the initString again to start a new +game. If your engine can't play multiple games, you can disable reuse +<font color=red> +either with the "feature" command (beginning in protocol version +2; see below) or +</font> +with xboard's -xreuse (or -xreuse2) command line +option. xboard will then ask the process to quit after each game and +start a new process for the next game. +</p> + +<dl> +<dt><strong>xboard</strong> +<dd>This command will be sent once immediately after your engine +process is started. You can use it to put your engine into "xboard +mode" if that is needed. If your engine prints a prompt to ask for +user input, you must turn off the prompt and output a newline when the +"xboard" command comes in. +<p> + +<dt><font color=red><strong>protover N</strong></font> +<dd><font color=red> +Beginning in protocol version 2 (in which N=2), this command will +be sent immediately after the "xboard" command. If you receive some +other command immediately after "xboard" (such as "new"), you can +assume that protocol version 1 is in use. The "protover" command is +the only new command that xboard always sends in version 2. All other +new commands to the engine are sent only if the engine first enables +them with the "feature" command. Protocol versions will always be +simple integers so that they can easily be compared. + +<p>Your engine should reply to the protover command by sending the +"feature" command (see below) with the list of non-default feature +settings that you require, if any. + +<p>Your engine should never refuse to run due to receiving a higher +protocol version number than it is expecting! New protocol versions +will always be compatible with older ones by default; the larger +version number is simply a hint that additional "feature" command +options added in later protocol versions may be accepted. +</font> +<p> + +<dt><font color=red><strong>accepted</strong></font> +<dt><font color=red><strong>rejected</strong></font> +<dd><font color=red> +These commands may be sent to your engine in reply to the "feature" +command; see its documentation below. +</font> +<p> + +<dt><strong>new</strong> +<dd>Reset the board to the standard chess starting position. Set +White on move. Leave force mode and set the engine to play Black. +Associate the engine's clock with Black and the opponent's clock with +White. Reset clocks and time controls to the start of a new game. +Stop clocks. Do not ponder on this move, even if pondering is on. +Remove any search depth limit previously set by the sd command. +<p> + +<dt><strong>variant VARNAME</strong> +<dd>If the game is not standard chess, but a variant, this command is +sent after "new" and before the first move or "edit" command. Currently +defined variant names are: + +<table> +<tr align="left"><th>wildcastle<td>Shuffle chess where king can castle from d file +<tr align="left"><th>nocastle<td>Shuffle chess with no castling at all +<tr align="left"><th>fischerandom<td>Fischer Random (not supported yet) +<tr align="left"><th>bughouse<td>Bughouse, ICC/FICS rules +<tr align="left"><th>crazyhouse<td>Crazyhouse, ICC/FICS rules +<tr align="left"><th>losers<td>Win by losing all pieces or getting mated (ICC) +<tr align="left"><th>suicide<td>Win by losing all pieces including king, +or by having fewer pieces when one player has no legal moves (FICS) +<tr align="left"><th><font color=red>giveaway</font> +<td><font color=red>Win by losing all pieces including king, +or by having no legal moves (ICC)</font> +<tr align="left"><th>twokings<td>Weird ICC wild 9 +<tr align="left"><th>kriegspiel<td>Kriegspiel (engines not supported) +<tr align="left"><th>atomic<td>Atomic +<tr align="left"><th>3check<td>Win by giving check 3 times +<tr align="left"><th>unknown<td>Unknown variant (not supported) +</table> +<p> + +<dt><strong>quit</strong> +<dd>The chess engine should immediately exit. This command is used +when xboard is itself exiting, and also between games if the -xreuse +command line option is given (or -xreuse2 for the second engine). +See also <a href="#7">Signals</a> above. +<p> + +<dt><strong>random</strong> +<dd>This command is specific to GNU Chess 4. You can either ignore it +completely (that is, treat it as a no-op) or implement it as GNU Chess +does. The command toggles "random" mode (that is, it sets random = +!random). In random mode, the engine adds a small random value to its +evaluation function to vary its play. The "new" command sets random +mode off. +<p> + +<dt><strong>force</strong> +<dd>Set the engine to play neither color ("force mode"). Stop clocks. +The engine should check that moves received in force mode are legal +and made in the proper turn, but should not think, ponder, or make +moves of its own. +<p> + +<dt><strong>go</strong> +<dd>Leave force mode and set the engine to play the color that is on +move. Associate the engine's clock with the color that is on move, +the opponent's clock with the color that is not on move. Start the engine's +clock. Start thinking and eventually make a move. +<p> + +<dt><font color=red><strong>playother</strong></font> +<dd> +<font color=red> +(This command is new in protocol version 2. It is not +sent unless you enable it with the feature command.) +Leave force mode and set the engine to play the color that is <i>not</i> on +move. Associate the opponent's clock with the color that is on move, +the engine's clock with the color that is not on move. Start the opponent's +clock. If pondering is enabled, the engine should begin pondering. +If the engine later receives a move, it should start thinking and eventually +reply. +</font> +<p> + +<dt><strong>white</strong> +<dd> +<font color=red> +(This command is obsolete as of protocol version 2, but is still +sent in some situations to accommodate older engines unless you disable it +with the feature command.) +</font> +Set White on move. Set the engine to play Black. Stop clocks. +<p> + +<dt><strong>black</strong> +<dd> +<font color=red> +(This command is obsolete as of protocol version 2, but is still +sent in some situations to accommodate older engines unless you disable it +with the feature command.) +</font> +Set Black on move. Set the engine to play White. Stop clocks. +<p> + +<dt><strong>level MPS BASE INC</strong> +<dd>Set time controls. See the <a href="#11">Time Control</a> section below. +<p> + +<dt><strong>st TIME</strong> +<dd>Set time controls. See the <a href="#11">Time Control</a> section +below. The commands "level" and "st" are not used together. +<p> + +<dt><strong>sd DEPTH</strong> +<dd>The engine should limit its thinking to DEPTH ply. +<p> + +<dt><strong>time N</strong> +<dd>Set a clock that always belongs to the engine. N is a number in + centiseconds (units of 1/100 second). Even if the engine changes to + playing the opposite color, this clock remains with the engine. +<p> + +<dt><strong>otim N</strong> + +<dd>Set a clock that always belongs to the opponent. N is a number in +centiseconds (units of 1/100 second). Even if the opponent changes to +playing the opposite color, this clock remains with the opponent. +<p> +If needed for purposes of board display in force mode (where the +engine is not participating in the game) the time clock should be +associated with the last color that the engine was set to play, the +otim clock with the opposite color. +</p> + +<p> +<font color=red> +Beginning in protocol version 2, if you can't handle the time and +otim commands, you can use the "feature" command to disable them; see +below. +</font> +The following techniques from older protocol versions also +work: You can ignore the time and otim commands (that is, treat them +as no-ops), or send back "Error (unknown command): time" the first +time you see "time". +</p> + +<dt><strong>MOVE</strong> +<dd>See below for the syntax of moves. If the move is illegal, print +an error message; see the section "<a href="#9">Commands from the engine to +xboard</a>". If the move is legal and in turn, make it. If not in force +mode, stop the opponent's clock, start the engine's clock, start +thinking, and eventually make a move. +<p> +When xboard sends your engine a move, it normally sends coordinate +algebraic notation. Examples: +<p> +<table> +<tr align="left"><td>Normal moves:<td>e2e4 +<tr align="left"><td>Pawn promotion:<td>e7e8q +<tr align="left"><td>Castling:<td>e1g1, e1c1, e8g8, e8c8 +<tr align="left"><td>Bughouse/crazyhouse drop:<td>P@h3 +<tr align="left"><td>ICS Wild 0/1 castling:<td>d1f1, d1b1, d8f8, d8b8 +<tr align="left"><td>FischerRandom castling:<td>O-O, O-O-O (oh, not zero) +</table> + +<p> +<font color=red> +Beginning in protocol version 2, you can use the feature command +to select SAN (standard algebraic notation) instead; for example, e4, +Nf3, exd5, Bxf7+, Qxf7#, e8=Q, O-O, or P@h3. Note that the last form, +P@h3, is a extension to the PGN standard's definition of SAN, which does +not support bughouse or crazyhouse. +</font> +</p> + +<p> +xboard doesn't reliably detect illegal moves, because it does not keep +track of castling unavailability due to king or rook moves, or en +passant availability. If xboard sends an illegal move, send back an +error message so that xboard can retract it and inform the user; see +the section "<a href="#9">Commands from the engine to xboard</a>". +</p> + +<dt><font color=red><strong>usermove MOVE</strong></font> +<dd><font color=red> +By default, moves are sent to the engine without a command name; +the notation is just sent as a line by itself. +Beginning in protocol version 2, you can use the feature command +to cause the command name "usermove" to be sent before the move. +Example: "usermove e2e4". +</font> +</p> + +<dt><strong>?</strong> +<dd>Move now. If your engine is thinking, it should move immediately; + otherwise, the command should be ignored (treated as a no-op). It + is permissible for your engine to always ignore the ? command. The + only bad consequence is that xboard's Move Now menu command will do + nothing. +<p> +It is also permissible for your engine to move immediately if it gets +any command while thinking, as long as it processes the command right +after moving, but it's preferable if you don't do this. For example, +xboard may send post, nopost, easy, hard, force, quit, +<font color=red> +or other commands +</font> +while the engine is on move. +</p> + +<dt><font color=red><strong>ping N</strong></font> +<dd> +<font color=red> +In this command, N is a decimal number. When you receive the command, +reply by sending the string <strong>pong N</strong>, where N is the +same number you received. Important: You must not reply to a "ping" +command until you have finished executing all commands that you +received before it. Pondering does not count; if you receive a ping +while pondering, you should reply immediately and continue pondering. +Because of the way xboard uses the ping command, if you implement the +other commands in this protocol, you should never see a "ping" command +when it is your move; however, if you do, you must not send the "pong" +reply to xboard until after you send your move. For example, xboard +may send "?" immediately followed by "ping". If you implement the "?" +command, you will have moved by the time you see the subsequent ping +command. Similarly, xboard may send a sequence like "force", "new", +"ping". You must not send the pong response until after you have +finished executing the "new" command and are ready for the new game to +start. + +<p> +The ping command is new in protocol version 2 and will not be sent +unless you enable it with the "feature" command. Its purpose is to +allow several race conditions that could occur in previous versions of +the protocol to be fixed, so it is highly recommended that you +implement it. It is especially important in simple engines that do +not ponder and do not poll for input while thinking, but it is needed in all +engines. +</p> +</font> + +<dt><strong>draw</strong> +<dd>The engine's opponent offers the engine a draw. To accept the +draw, send "offer draw". To decline, ignore the offer (that is, send +nothing). If you're playing on ICS, it's possible for the draw offer +to have been withdrawn by the time you accept it, so don't assume the +game is over because you accept a draw offer. Continue playing until +xboard tells you the game is over. See also "offer draw" below. +<p> + +<dt><strong>result RESULT {COMMENT}</strong> +<dd>After the end of each game, xboard will send you a result command. +You can use this command to trigger learning. RESULT is either 1-0, +0-1, 1/2-1/2, or *, indicating whether white won, black won, the game +was a draw, or the game was unfinished. The COMMENT string is purely +a human-readable comment; its content is unspecified and subject to +change. In ICS mode, it is passed through from ICS uninterpreted. +Example: <pre>result 1-0 {White mates}</pre> +<p> +Here are some notes on interpreting the "result" command. Some apply +only to playing on ICS ("Zippy" mode). +</p> + +<p> +If you won but did not just play a mate, your opponent must have +resigned or forfeited. If you lost but were not just mated, you +probably forfeited on time, or perhaps the operator resigned manually. +If there was a draw for some nonobvious reason, perhaps your opponent +called your flag when he had insufficient mating material (or vice +versa), or perhaps the operator agreed to a draw manually. +</p> + +<p> +You will get a result command even if you already know the game ended +-- for example, after you just checkmated your opponent. In fact, if +you send the "RESULT {COMMENT}" command (discussed below), you will +simply get the same thing fed back to you with "result" tacked in +front. You might not always get a "result *" command, however. In +particular, you won't get one in local chess engine mode when the user +stops playing by selecting Reset, Edit Game, Exit or the like. +</p> + +<dt><font color=red><strong>setboard FEN</strong></font> +<dd><font color=red> +The setboard command is the new way to set up positions, beginning +in protocol version 2. It is not used unless it has been selected +with the feature command. Here FEN is a position in Forsythe-Edwards +Notation, as defined in the PGN standard. + +<p><i>Illegal positions:</i> Note that either setboard or edit can +be used to send an illegal position to the engine. The user can +create any position with xboard's Edit Position command (even, say, +an empty board, or a board with 64 white kings and no black ones). +If your engine receives a position that it considers illegal, +I suggest that you send the response "tellusererror Illegal position", +and then respond to any attempted move with "Illegal move" until +the next new, edit, or setboard command.</p> +</font> +<p> + +<dt><strong>edit</strong> +<dd> +<font color=red> +The edit command is the old way to set up positions. For compatibility +with old engines, it is still used by default, but new engines may prefer +to use the feature command (see below) to cause xboard to use setboard instead. +</font> +The edit command puts the chess engine into a special mode, where +it accepts the following subcommands: +<table> +<tr align="left"><th>c<td>change current piece color, initially white +<tr align="left"><th>Pa4 (for example)<td>place pawn of current color on a4 +<tr align="left"><th>xa4 (for example)<td>empty the square a4 (not used by xboard) +<tr align="left"><th>#<td>clear board +<tr align="left"><th>.<td>leave edit mode +</table> +<font color=red> +See the Idioms section below for additional subcommands used in +ChessBase's implementation of the protocol. +</font> + +<p>The edit command does not change the side to move. To set up a +black-on-move position, xboard uses the following command sequence: +</p> +<pre> + new + force + a2a3 + edit + <edit commands> + . +</pre> + +<p> +This sequence is used to avoid the "black" command, which is now +considered obsolete and which many engines never did implement as +specified in this document. +</p> + +<p> +After an edit command is complete, if a king and a rook are on their +home squares, castling is assumed to be available to them. En passant +capture is assumed to be illegal on the current move regardless of the +positions of the pawns. The clock for the 50 move rule starts at +zero, and for purposes of the draw by repetition rule, no prior +positions are deemed to have occurred. +</p> + +<dt><strong>hint</strong> +<dd>If the user asks for a hint, xboard sends your engine the command +"hint". Your engine should respond with "Hint: xxx", where xxx is a +suggested move. If there is no move to suggest, you can ignore the +hint command (that is, treat it as a no-op). +<p> + +<dt><strong>bk</strong> +<dd>If the user selects "Book" from the xboard menu, xboard will send +your engine the command "bk". You can send any text you like as the +response, as long as each line begins with a blank space or tab (\t) +character, and you send an empty line at the end. The text pops up in +a modal information dialog. +<p> + +<dt><strong>undo</strong> +<dd>If the user asks to back up one move, xboard will send you the +"undo" command. xboard will not send this command without putting you +in "force" mode first, so you don't have to worry about what should +happen if the user asks to undo a move your engine made. (GNU Chess 4 +actually switches to playing the opposite color in this case.) +<p> + +<dt><strong>remove</strong> +<dd>If the user asks to retract a move, xboard will send you the +"remove" command. It sends this command only when the user is on +move. Your engine should undo the last two moves (one for each +player) and continue playing the same color. +<p> + +<dt><strong>hard</strong> +<dd>Turn on pondering (thinking on the opponent's time, also known as +"permanent brain"). xboard will not make any assumption about what +your default is for pondering or whether "new" affects this setting. +<p> + +<dt><strong>easy</strong> +<dd>Turn off pondering. +<p> + +<dt><strong>post</strong> +<dd>Turn on thinking/pondering output. +See <a href="#10">Thinking Output</a> section. +<p> + +<dt><strong>nopost</strong> +<dd>Turn off thinking/pondering output. +<p> + +<dt><strong>analyze</strong> +<dd>Enter analyze mode. See <a href="#12">Analyze Mode</a> section. +<p> + +<dt><strong>name X</strong> <dd>This command informs the engine of its +opponent's name. When the engine is playing on a chess server, xboard +obtains the opponent's name from the server. +<font color=red> +When the engine is +playing locally against a human user, xboard obtains the user's login +name from the local operating system. When the engine is playing +locally against another engine, xboard uses either the other engine's +filename or the name that the other engine supplied in the myname +option to the feature command. By default, xboard uses the name +command only when the engine is playing on a chess server. Beginning +in protocol version 2, you can change this with the name option to the +feature command; see below. +</font> +<p> + +<dt><strong>rating</strong> +<dd>In ICS mode, xboard obtains the ICS opponent's rating from the +"Creating:" message that appears before each game. (This message may +not appear on servers using outdated versions of the FICS code.) In +Zippy mode, it sends these ratings on to the chess engine using the +"rating" command. The chess engine's own rating comes first, and if +either opponent is not rated, his rating is given as 0. +<font color=red> +In the future this command may also be used in other modes, if ratings +are known. +</font> +Example: <pre>rating 2600 1500</pre> +<p> + +<dt><font color=red><strong>ics HOSTNAME</strong></font> +<dd><font color=red> +If HOSTNAME is "-", the engine is playing against a local +opponent; otherwise, the engine is playing on an Internet Chess Server +(ICS) with the given hostname. This command is new in protocol +version 2 and is not sent unless the engine has enabled it with +the "feature" command. Example: "ics freechess.org" +</font> +<p> + +<dt><strong>computer</strong> +<dd>The opponent is also a computer chess engine. Some engines alter +their playing style when they receive this command. +<p> + +<dt><font color=red><strong>pause</strong></font> +<dt><font color=red><strong>resume</strong></font> +<dd><font color=red>(These commands are new in protocol +version 2 and will not be sent unless feature pause=1 is set. At +this writing, xboard actually does not use the commands at all, but it +or other interfaces may use them in the future.) +The "pause" command puts the engine into a special state where it +does not think, ponder, or otherwise consume significant CPU time. +The current thinking or pondering (if any) is suspended and both +player's clocks are stopped. The only command that the interface may +send to the engine while it is in the paused state is "resume". The +paused thinking or pondering (if any) resumes from exactly where it +left off, and the clock of the player on move resumes running from +where it stopped. +</font> +</dl> + +<h3>Bughouse commands:</h3> + +<p> +xboard now supports bughouse engines when in Zippy mode. See +<a href="http://www.tim-mann.org/xboard/zippy.README" +>zippy.README</a> for information on Zippy mode and how to turn on the +bughouse support. The bughouse move format is given above. xboard +sends the following additional commands to the engine when in bughouse +mode. +Commands to inform your engine of the partner's game state may +be added in the future. +</p> + +<dl> +<dt><strong>partner <player></strong> +<dd><player> is now your partner for future games. Example: <pre>partner mann</pre> +<p> + +<dt><strong>partner</strong> +<dd>Meaning: You no longer have a partner. +<p> + +<dt><strong>ptell <text></strong> +<dd>Your partner told you <text>, either with a ptell or an ordinary tell. +<p> + +<dt><strong>holding [<white>] [<black>]</strong> +<dd>White currently holds <white>; black currently holds <black>. + Example: <pre>holding [PPPRQ] []</pre> + +<dt><strong>holding [<white>] [<black>] <color><piece></strong> +<dd>White currently holds <white>; black currently holds <black>, after + <color> acquired <piece>. Example: <pre>holding [PPPRQ] [R] BR</pre> +</dl> + +<h2><a name="9">9. Commands from the engine to xboard</a></h2> + +<p> +<font color=red> +In general, an engine should not send any output to xboard that is not +described in this document. As the protocol is extended, newer +versions of xboard may recognize additional strings as commands that +were previously not assigned a meaning. +</font> +</p> + +<dl> +<dt><font color=red> +<strong>feature FEATURE1=VALUE1 FEATURE2=VALUE2 ...</strong> +</font> + +<dd><font color=red> +Beginning with version 2, the protocol includes the "feature" +command, which lets your engine control certain optional protocol +features. Feature settings are written as FEATURE=VALUE, where +FEATURE is a name from the list below and VALUE is the value to be +assigned. Features can take string, integer, or boolean values; the +type of value is listed for each feature. String values are written +in double quotes (for example, <tt>feature myname="Miracle Chess +0.9"</tt>), integers are written in decimal, and boolean values are +written as 0 for false, 1 for true. Any number of features can be set +in one feature command, or multiple feature commands can be given. + +<p> +Your engine should send one or more feature commands immediately after +receiving the "protover" command, since xboard needs to know the +values of some features before sending further commands to the engine. +Because engines that predate protocol version 2 do not send "feature", +xboard uses a timeout mechanism: when it first starts your engine, it +sends "xboard" and "protover N", then listens for feature commands for +two seconds before sending any other commands. To end this timeout +and avoid the wait, set the feature "done=1" at the end of your last +feature command. To increase the timeout, if needed, set the feature +"done=0" before your first feature command and "done=1" at the end. +If needed, it is okay for your engine to set done=0 soon as it starts, +even before it receives the xboard and protover commands. This can be +useful if your engine takes a long time to initialize itself. It +should be harmless even if you are talking to a (version 1) user +interface that does not understand the "feature" command, since such +interfaces generally ignore commands from the engine that they do not +understand. +</p> + +<p> +The feature command is designed to let the protocol change without +breaking engines that were written for older protocol versions. When +a new feature is added to the protocol, its default value is always +chosen to be compatible with older versions of the protocol that did +not have the feature. Any feature that your engine does not set in a +"feature" command retains its default value, so as the protocol +changes, you do not have to change your engine to keep up with it +unless you want to take advantage of a new feature. Because some +features are improvements to the protocol, while others are meant to +cater to engines that do not implement all the protocol features, the +recommended setting for a feature is not always the same as the +default setting. The listing below gives both default and recommended +settings for most features. +</p> + +<p> +You may want to code your engine so as to be able to work with +multiple versions of the engine protocol. Protocol version 1 does not +send the protover command and does not implement the feature command; +if you send a feature command in protocol version 1, it will have no +effect and there will be no response. In protocol version 2 or later, +each feature F that you set generates the response "accepted F" if the +feature is implemented, or "rejected F" if it is not. Thus an engine +author can request any feature without having to keep track of which +protocol version it was introduced in; you need only check whether the +feature is accepted or rejected. This mechanism also makes it +possible for a user interface author to implement a subset of a +protocol version by rejecting some features that are defined in that +version; however, you should realize that engine authors are likely to +code for xboard and may not be prepared to have a feature that they +depend on be rejected. +</p> + +<p> +Here are the features that are currently defined. +</p> +</font> + +<dl> +<dt><font color=red> +<strong>ping</strong> (boolean, default 0, recommended 1) +</font> +<dd><font color=red> +If ping=1, xboard may use the protocol's new "ping" command; +if ping=0, xboard will not use the command. +</font> + +<dt><font color=red> +<strong>setboard</strong> (boolean, default 0, recommended 1) +</font> +<dd><font color=red> +If setboard=1, xboard will use the protocol's new "setboard" command +to set up positions; if setboard=0, it will use the older "edit" command. +</font> + +<dt><font color=red> +<strong>playother</strong> (boolean, default 0, recommended 1) +</font> +<dd><font color=red> +If playother=1, xboard will use the protocol's new "playother" command +when appropriate; if playother=0, it will not use the command. +</font> + +<dt><font color=red> +<strong>san</strong> (boolean, default 0) +</font> +<dd><font color=red> +If san=1, xboard will send moves to the engine in standard algebraic +notation (SAN); for example, Nf3. If san=0, xboard will send moves in +coordinate notation; for example, g1f3. See MOVE in +<a href="#8">section 8</a> above for more details of both kinds of notation. +</font> + +<dt><font color=red> +<strong>usermove</strong> (boolean, default 0) +</font> +<dd><font color=red> +If usermove=1, xboard will send moves to the engine with the +command "usermove MOVE"; if usermove=0, xboard will send just the move, +with no command name. +</font> + +<dt><font color=red> +<strong>time</strong> (boolean, default 1, recommended 1) +</font> +<dd><font color=red> +If time=1, xboard will send the "time" and "otim" commands to +update the engine's clocks; if time=0, it will not. +</font> + +<dt><font color=red> +<strong>draw</strong> (boolean, default 1, recommended 1) +</font> +<dd><font color=red> +If draw=1, xboard will send the "draw" command if the engine's opponent +offers a draw; if draw=0, xboard will not inform the engine about +draw offers. Note that if draw=1, you may receive a draw offer while you +are on move; if this will cause you to move immediately, you should set +draw=0. +</font> + +<dt><font color=red> +<strong>sigint</strong> (boolean, default 1) +</font> +<dd><font color=red> +If sigint=1, xboard may send SIGINT (the interrupt signal) to +the engine as <a href="#7">section 7</a> above; if sigint=0, it will +not. +</font> + +<dt><font color=red> +<strong>sigterm</strong> (boolean, default 1) +</font> +<dd><font color=red> +If sigterm=1, xboard may send SIGTERM (the termination signal) to +the engine as <a href="#7">section 7</a> above; if sigterm=0, it will +not. +</font> + +<dt><font color=red> +<strong>reuse</strong> (boolean, default 1, recommended 1) +</font> +<dd><font color=red> +If reuse=1, xboard may reuse your engine for multiple games. If +reuse=0 (or if the user has set the -xreuse option on xboard's command +line), xboard will kill the engine process after every game and start +a fresh process for the next game. +</font> + +<dt><font color=red> +<strong>analyze</strong> (boolean, default 1, recommended 1) +</font> +<dd><font color=red> +If analyze=0, xboard will not try to use the "analyze" command; it +will pop up an error message if the user asks for analysis mode. If +analyze=1, xboard will try to use the command if the user asks for +analysis mode. +</font> + +<dt><font color=red> +<strong>myname</strong> (string, default determined from engine filename) +</font> +<dd><font color=red> +This feature lets you set the name that xboard will use for your +engine in window banners, in the PGN tags of saved game files, and when +sending the "name" command to another engine. +</font> + +<dt><font color=red> +<strong>variants</strong> (string, see text below) +</font> +<dd><font color=red> +This feature indicates which chess variants your engine accepts. +It should be a comma-separated list of variant names. See the table +under the "variant" command in <a href="#8">section 8</a> above. If +you do not set this feature, xboard will assume by default that your +engine supports all variants. (However, the -zippyVariants +command-line option still limits which variants will be accepted in +Zippy mode.) It is recommended that you set this feature to the +correct value for your engine (just "normal" in most cases) rather +than leaving the default in place, so that the user will get an +appropriate error message if he tries to play a variant that your +engine does not support. +</font> + +<dt><font color=red> +<strong>colors</strong> (boolean, default 1, recommended 0) +</font> +<dd><font color=red> +If colors=1, xboard uses the obsolete "white" and "black" +commands in a stylized way that works with most older chess engines +that require the commands. See the "<a href="#13">Idioms</a>" section +below for details. If colors=0, xboard does not use the "white" and +"black" commands at all. +</font> + +<dt><font color=red> +<strong>ics</strong> (boolean, default 0) +</font> +<dd><font color=red> +If ics=1, xboard will use the protocol's new "ics" command +to inform the engine of whether or not it is playing on a chess server; +if ics=0, it will not. +</font> + +<dt><font color=red> +<strong>name</strong> (boolean, see text below) +</font> +<dd><font color=red> +If name=1, xboard will use the protocol's "name" command +to inform the engine of the opponent's name; if name=0, it will not. +By default, name=1 if the engine is playing on a chess server; name=0 if not. +</font> + +<dt><font color=red> +<strong>pause</strong> (boolean, default 0) +</font> +<dd><font color=red> +If pause=1, xboard may use the protocol's new "pause" command; +if pause=0, xboard assumes that the engine does not support this command. +</font> + +<dt><font color=red> +<strong>done</strong> (integer, no default) +</font> +<dd><font color=red> +If you set done=1 during the initial two-second timeout after +xboard sends you the "xboard" command, the +timeout will end and xboard will not look for any more feature +commands before starting normal operation. +If you set done=0, the initial timeout is increased to one hour; +in this case, you must set done=1 before xboard will enter normal operation. +</font> +</dl> +<p> + +<dt><strong>Illegal move: MOVE</strong> +<dt><strong>Illegal move (REASON): MOVE</strong> +<dd>If your engine receives a MOVE command that is recognizably a move +but is not legal in the current position, your engine must print an +error message in one of the above formats so that xboard can pass the +error on to the user and retract the move. The (REASON) is entirely +optional. Examples: + +<pre> + Illegal move: e2e4 + Illegal move (in check): Nf3 + Illegal move (moving into check): e1g1 +</pre> +<p> +Generally, xboard will never send an ambiguous move, so it does not +matter whether you respond to such a move with an Illegal move message +or an Error message. +</p> + +<dt><strong>Error (ERRORTYPE): COMMAND</strong> +<dd>If your engine receives a command it does not understand or does +not implement, it should print an error message in the above format so +that xboard can parse it. Examples: +<pre> + Error (ambiguous move): Nf3 + Error (unknown command): analyze + Error (command not legal now): undo + Error (too many parameters): level 1 2 3 4 5 6 7 +</pre> + +<dt><strong>move MOVE</strong> +<dd>Your engine is making the move MOVE. Do not echo moves from +xboard with this command; send only new moves made by the engine. + +<font color=red> +<p>For the actual move text from your chess engine (in place of MOVE +above), your move should be either +<ul> +<li>in coordinate notation (e.g., +e2e4, e7e8q) with castling indicated by the King's two-square move (e.g., +e1g1), or +<li>in Standard Algebraic Notation (SAN) as defined in the +Portable Game Notation standard (e.g, e4, Nf3, O-O, cxb5, Nxe4, e8=Q), +with the extension piece@square (e.g., P@f7) to handle piece placement +in bughouse and crazyhouse. +</ul> +xboard itself also accepts some variants of SAN, but for compatibility +with non-xboard interfaces, it is best not to rely on this behavior. +</p> + +<p>Warning: Even though all versions of this protocol specification +have indicated that xboard accepts SAN moves, some non-xboard +interfaces are known to accept only coordinate notation. See the +Idioms section for more information on the known limitations of some +non-xboard interfaces. It should be safe to send SAN moves if you +receive a "protover 2" (or later) command from the interface, but +otherwise it is best to stick to coordinate notation for maximum +compatibility. An even more conservative approach would be for your +engine to send SAN to the interface only if you have set feature san=1 +(which causes the interface to send SAN to you) and have received +"accepted san" in reply. +</p> +</font> + +<dt><strong>RESULT {COMMENT}</strong> <dd>When your engine detects +that the game has ended by rule, your engine must output a line of the +form "RESULT {comment}" (without the quotes), where RESULT is a PGN +result code (1-0, 0-1, or 1/2-1/2), and comment is the reason. Here +"by rule" means that the game is definitely over because of what +happened on the board. In normal chess, this includes checkmate, +stalemate, triple repetition, the 50 move rule, or insufficient +material; it does not include loss on time or the like. +Examples: +<pre> + 0-1 {Black mates} + 1-0 {White mates} + 1/2-1/2 {Draw by repetition} + 1/2-1/2 {Stalemate} +</pre> + +<p> +xboard relays the result to the user, the ICS, the other engine in Two +Machines mode, and the PGN save file as required. +</p> + +<dt><strong>resign</strong> +<dd>If your engine wants to resign, it can send the command "resign". +Alternatively, it can use the "RESULT {comment}" command if the string +"resign" is included in the comment; for example "0-1 {White +resigns}". xboard relays the resignation to the user, the ICS, the +other engine in Two Machines mode, and the PGN save file as required. +<p> + +<dt><strong>offer draw</strong> +<dd>If your engine wants to offer a draw by agreement (as opposed to +claiming a draw by rule), it can send the command "offer draw". +xboard relays the offer to the user, the ICS, the other engine in Two +Machines mode, and the PGN save file as required. In Machine White, +Machine Black, or Two Machines mode, the offer is considered valid +until your engine has made two more moves. +<p> + +<dt><font color=red><strong>tellopponent MESSAGE</strong></font> +<dd><font color=red> +This command lets the engine give a message to its opponent, +independent of whether the opponent is a user on the local machine or +a remote ICS user (Zippy mode). MESSAGE consists of any characters, +including whitespace, to the end of the line. When the engine is +playing against a user on the local machine, xboard pops up an +information dialog containing the message. When the engine is playing +against an opponent on the ICS (Zippy mode), xboard sends "say +MESSAGE\n" to the ICS. +<p> + +<dt><strong>tellothers MESSAGE</strong> +<dd>This command lets the engine give a message to people watching the +game other than the engine's opponent. MESSAGE consists of any +characters, including whitespace, to the end of the line. When the +engine is playing against a user on the local machine, this command +does nothing. When the engine is playing against an opponent on the +ICS (Zippy mode), xboard sends "whisper MESSAGE\n" to the ICS. +<p> + +<dt><strong>tellall MESSAGE</strong> +<dd>This command lets the engine give a message to its opponent and +other people watching the game, +independent of whether the opponent is a user on the local machine or +a remote ICS user (Zippy mode). MESSAGE consists of any characters, +including whitespace, to the end of the line. When the engine is +playing against a user on the local machine, xboard pops up an +information dialog containing the message. When the engine is playing +against an opponent on the ICS (Zippy mode), xboard sends "kibitz +MESSAGE\n" to the ICS. +</font> +<p> + +<dt><strong>telluser MESSAGE</strong> +<dd>xboard pops up an information dialog containing the message. +MESSAGE consists of any characters, including whitespace, to the end +of the line. +<p> + +<dt><strong>tellusererror MESSAGE</strong> +<dd>xboard pops up an error dialog containing the message. +MESSAGE consists of any characters, including whitespace, to the end +of the line. +<p> + +<dt><strong>askuser REPTAG MESSAGE</strong> +<dd>Here REPTAG is a string containing no whitespace, and MESSAGE +consists of any characters, including whitespace, to the end of the +line. xboard pops up a question dialog that says MESSAGE and +has a typein box. If the user types in "bar", xboard sends "REPTAG +bar" to the engine. The user can cancel the dialog and send nothing. +<p> + +<dt><strong>tellics MESSAGE</strong> +<dd>In Zippy mode, xboard sends "MESSAGE\n" to ICS. MESSAGE consists +of any characters, including whitespace, to the end of the line. +<p> + +<dt><font color=red><strong>tellicsnoalias MESSAGE</strong></font> +<dd><font color=red> +In Zippy mode, xboard sends "xMESSAGE\n" to ICS, where "x" is a +character that prevents the ICS from expanding command aliases, if +xboard knows of such a character. (On chessclub.com and chess.net, +"/" is used; on freechess.org, "$" is used.) MESSAGE consists of any +characters, including whitespace, to the end of the line. +</font> +</dl> +<p> + +<h2><a name="10">10. Thinking Output</a></h2> + +<p> +If the user asks your engine to "show thinking", xboard sends your +engine the "post" command. It sends "nopost" to turn thinking off. +In post mode, your engine sends output lines to show the progress of +its thinking. The engine can send as many or few of these lines as it +wants to, whenever it wants to. Typically they would be sent when the +PV (principal variation) changes or the depth changes. The thinking +output should be in the following format: +</p> + +<pre>ply score time nodes pv</pre> + +Where: +<table> +<tr align="left"><th>ply<td>Integer giving current search depth. +<tr align="left"><th>score<td>Integer giving current evaluation in centipawns. +<tr align="left"><th>time<td>Current search time in centiseconds (ex: +1028 = 10.28 seconds). + +<tr align="left"><th>nodes<td>Nodes searched. +<tr align="left"><th>pv<td>Freeform text giving current "best" line. +You can continue the pv onto another line if you start each +continuation line with at least four space characters. +</table> + +<p> +Example: +</p> + +<pre> 9 156 1084 48000 Nf3 Nc6 Nc3 Nf6</pre> + +<p> +Meaning: +</p> + +9 ply, score=1.56, time = 10.84 seconds, nodes=48000, +PV = "Nf3 Nc6 Nc3 Nf6" + +<p> +Longer example from actual Crafty output: +</p> +<pre> + 4 109 14 1435 1. e4 d5 2. Qf3 dxe4 3. Qxe4 Nc6 + 4 116 23 2252 1. Nf3 Nc6 2. e4 e6 + 4 116 27 2589 1. Nf3 Nc6 2. e4 e6 + 5 141 44 4539 1. Nf3 Nc6 2. O-O e5 3. e4 + 5 141 54 5568 1. Nf3 Nc6 2. O-O e5 3. e4 +</pre> + +<p> +You can use the PV to show other things; for instance, while in book, +Crafty shows the observed frequency of different reply moves in its +book. In situations like this where your engine is not really +searching, start the PV with a '(' character: +</p> + +<pre> + 0 0 0 0 (e4 64%, d4 24%) +</pre> + +<p> +GNU Chess output is very slightly different. The ply number is +followed by an extra nonblank character, and the time is in seconds, +not hundredths of seconds. For compatibility, xboard accepts the +extra character and takes it as a flag indicating the different time +units. Example: +</p> + +<pre> + 2. 14 0 38 d1d2 e8e7 + 3+ 78 0 65 d1d2 e8e7 d2d3 + 3& 14 0 89 d1d2 e8e7 d2d3 + 3& 76 0 191 d1e2 e8e7 e2e3 + 3. 76 0 215 d1e2 e8e7 e2e3 + 4& 15 0 366 d1e2 e8e7 e2e3 e7e6 + 4. 15 0 515 d1e2 e8e7 e2e3 e7e6 + 5+ 74 0 702 d1e2 f7f5 e2e3 e8e7 e3f4 + 5& 71 0 1085 d1e2 e8e7 e2e3 e7e6 e3f4 + 5. 71 0 1669 d1e2 e8e7 e2e3 e7e6 e3f4 + 6& 48 0 3035 d1e2 e8e7 e2e3 e7e6 e3e4 f7f5 e4d4 + 6. 48 0 3720 d1e2 e8e7 e2e3 e7e6 e3e4 f7f5 e4d4 + 7& 48 0 6381 d1e2 e8e7 e2e3 e7e6 e3e4 f7f5 e4d4 + 7. 48 0 10056 d1e2 e8e7 e2e3 e7e6 e3e4 f7f5 e4d4 + 8& 66 1 20536 d1e2 e8e7 e2e3 e7e6 e3d4 g7g5 a2a4 f7f5 + 8. 66 1 24387 d1e2 e8e7 e2e3 e7e6 e3d4 g7g5 a2a4 f7f5 + 9& 62 2 38886 d1e2 e8e7 e2e3 e7e6 e3d4 h7h5 a2a4 h5h4 + d4e4 + 9. 62 4 72578 d1e2 e8e7 e2e3 e7e6 e3d4 h7h5 a2a4 h5h4 + d4e4 +10& 34 7 135944 d1e2 e8e7 e2e3 e7e6 e3d4 h7h5 c2c4 h5h4 + d4e4 f7f5 e4f4 +10. 34 9 173474 d1e2 e8e7 e2e3 e7e6 e3d4 h7h5 c2c4 h5h4 + d4e4 f7f5 e4f4 +</pre> + +<p>If your engine is pondering (thinking on its opponent's time) in post +mode, it can show its thinking then too. In this case your engine may +omit the hint move (the move it is assuming its opponent will make) +from the thinking lines <em>if and only if</em> it sends xboard the move in +the usual "Hint: xxx" format before sending the first line. +</p> + +<h2><a name="11">11. Time control</a></h2> + +<p> +xboard supports three styles of time control: conventional chess clocks, +the ICS-style incremental clock, and an exact number of seconds per move. +</p> + +<p>In conventional clock mode, every time control period is the same. +That is, if the time control is 40 moves in 5 minutes, then after each +side has made 40 moves, they each get an additional 5 minutes, and so +on, ad infinitum. At some future time it would be nice to support a +series of distinct time controls. This is very low on my personal +priority list, but code donations to the xboard project are accepted, +so feel free to take a swing at it. I suggest you talk to me first, +though. +</p> + +<p> +The command to set a conventional time control looks like this: +</p> + +<pre> + level 40 5 0 + level 40 0:30 0 +</pre> + +<p> +The 40 means that there are 40 moves per time control. The 5 means +there are 5 minutes in the control. In the second example, the 0:30 +means there are 30 seconds. The final 0 means that we are in +conventional clock mode. +</p> + +<p> +The command to set an incremental time control looks like this: +</p> + +<pre> + level 0 2 12 +</pre> + +<p> +Here the 0 means "play the whole game in this time control period", +the 2 means "base=2 minutes", and the 12 means "inc=12 seconds". As +in conventional clock mode, the second argument to level can be in +minutes and seconds. +</p> + +<p> +At the start of the game, each player's clock is set to base minutes. +Immediately after a player makes a move, inc seconds are added to his +clock. A player's clock counts down while it is his turn. Your flag +can be called whenever your clock is zero or negative. (Your clock +can go negative and then become positive again because of the +increment.) +</p> + +<p> +A special rule on some ICS implementations: if you ask for a game with +base=0, the clocks really start at 10 seconds instead of 0. xboard +itself does not know about this rule, so it passes the 0 on to the +engine instead of changing it to 0:10. +</p> + +<p> +ICS also has time odds games. With time odds, each player has his own +(base, inc) pair, but otherwise things work the same as in normal +games. The Zippy xboard accepts time odds games but ignores the fact +that the opponent's parameters are different; this is perhaps not +quite the right thing to do, but gnuchess doesn't understand time +odds. Time odds games are always unrated. +</p> + +<p> +The command to set an exact number of seconds per move looks like this: +</p> + +<pre> + st 30 +</pre> + +<p> +This means that each move must be made in at most 30 seconds. Time not used +on one move does not accumulate for use on later moves. +</p> + +<h2><a name="12">12. Analyze Mode</a></h2> + +<p>xboard supports analyzing fresh games, edited positions, and games +from files. However, all of these look the same from the chess +engine's perspective. Basically, the engine just has to respond to the +"analyze" command. +<font color=red> +Beginning in protocol version 2, +if your engine does not support analyze mode, it should use +the feature command to set analyze=0. +</font> +The older method of +printing the error message "Error (unknown command): analyze" in +response to the "analyze" command will also work, however. +</p> + +<p> +To enter analyze mode, xboard sends the command sequence "post", "analyze". +Analyze mode in your engine should be +similar to force mode, except that your engine thinks about what move +it would make next if it were on move. Your engine should accept the +following commands while in analyze mode: +</p> + +<ul> +<li>Any legal move, as in force mode +<li><strong>undo</strong> Back up one move and analyze previous position. +<li><strong>new</strong> Reset position to start of game but stay in analyze mode. +<li><font color=red><strong>setboard</strong> if you have set feature setboard=1; otherwise <strong>edit</strong>. Exiting edit mode returns to analyze mode. +</font> +<li><strong>exit</strong> Leave analyze mode. +<li><strong>.</strong> Send a search status update (optional); see below. +<li><font color=red> +<strong>bk</strong> Show book moves from this position, +if any; see above.</font> +<li><font color=red> +<strong>hint</strong> Show the predicted move from this +position, if any; see above.</font> +</ul> + +<p> +If the user selects "Periodic Updates", xboard will send the string +".\n" to the chess engine periodically during analyze mode, unless the +last PV received began with a '(' character. +</p> + +<p> +The chess engine should respond to ".\n" with a line like this: +</p> + +<pre> +stat01: time nodes ply mvleft mvtot <font color=red>mvname</font> +</pre> + +Where: +<table> +<tr align="left"><th>time<td>Elapsed search time in centiseconds (ie: 567 = 5.67 seconds). +<tr align="left"><th>nodes<td>Nodes searched so far. +<tr align="left"><th>ply<td>Search depth so far. +<tr align="left"><th>mvleft<td>Number of moves left to consider at this depth. +<tr align="left"><th>mvtot<td>Total number of moves to consider. +<tr align="left"><th><font color=red>mvname</font><td><font color=red> +Move currently being considered (SAN or coordinate notation). Optional; +added in protocol version 2.</font> +</table> + +<p> +Examples: +</p> +<pre> + stat01: 1234 30000 7 5 30 + stat01: 1234 30000 7 5 30 Nf3 +</pre> + +<p> +Meaning: +</p> + +<p>After 12.34 seconds, I've searched 7 ply/30000 nodes, there are a + total of 30 legal moves, and I have 5 more moves to search + before going to depth 8. In the second example, of the 30 legal + moves, the one I am currently searching is Nf3.</p> + +<p> +Implementation of the "." command is optional. If the engine does not +respond to the "." command with a "stat01..." line, xboard will stop +sending "." commands. If the engine does not implement this command, +the analysis window will use a shortened format to display the engine +info. +</p> + +<p> +To give the user some extra information, the chess engine can output +the strings "++\n" and "--\n", to indicate that the current search is +failing high or low, respectively. You don't have to send anything +else to say "Okay, I'm not failing high/low anymore." xboard will +figure this out itself. +</p> + +<h2><a name="13">13. Idioms and backward compatibility features</a></h2> + +<p> +Some engines have variant interpretations of the force/go/white/black, +time/otim, and hard/easy command sets. +In order to accommodate these older engines, xboard uses these commands +only according to the stylized patterns ("idioms") given in this section. +The obsolete white and black commands +have historically been particularly troublesome, and it is recommended +that new engines set the feature colors=0 and/or ignore the commands. +</p> + +<dl> + +<dt><strong>time N</strong> +<dt><strong>otim N</strong> +<dt><strong>MOVE</strong> +<dd>Sent when the opponent makes a move and the engine is already +playing the opposite color. +<p> + +<dt><strong>white</strong> +<dt><strong>go</strong> +<dd>Sent when the engine is in force mode or playing Black but should +switch to playing White. This sequence is sent only when White is +already on move. +<font color=red> +If you set the feature colors=0, "white" is not sent. +</font> +<p> + +<dt><strong>black</strong> +<dt><strong>go</strong> +<dd>Sent when the engine is in force mode or playing White but should +switch to playing Black. This sequence is sent only when Black is +already on move. +<font color=red> +If you set the feature colors=0, "black" is not sent. +</font> +<p> + +<dt><strong>white</strong> +<dt><strong>time N</strong> +<dt><strong>otim N</strong> +<dt><strong>black</strong> +<dt><strong>go</strong> +<dd>Sent when Black is on move, the engine is in force mode or playing +White, and the engine's clock needs to be updated before it starts +playing. +The initial "white" is a kludge to accommodate GNU Chess +4's variant interpretation of these commands. +<font color=red> +If you set the feature colors=0, "white" and "black" are not sent. +</font> +<p> + +<dt><strong>black</strong> +<dt><strong>time N</strong> +<dt><strong>otim N</strong> +<dt><strong>white</strong> +<dt><strong>go</strong> +<dd>Sent when White is on move, the engine is in force mode or playing +Black, and the engine's clock needs to be updated before it starts +playing. See previous idiom. +The initial "black" is a kludge to accommodate GNU Chess +4's variant interpretation of these commands. +<font color=red> +If you set the feature colors=0, "black" and "white" are not sent. +</font> +<p> + +<dt><strong>hard</strong> +<dt><strong>easy</strong> +<dd>Sent in sequence to turn off pondering if xboard is not sure +whether it is on. When xboard is sure, it will send "hard" or "easy" +alone. xboard does this because "easy" is a toggle in GNU Chess 4 but +"hard" is an absolute on. + +</dl> + +<p> +To support older engines, certain additional commands from the engine +to xboard are also recognized. (These are commands by themselves, not +values to be placed in the comment field of the PGN result code.) +These forms are not recommended for new engines; use the PGN result +code commands or the resign command instead. +</p> + +<table> +<tr align="left"><th>Command <th>Interpreted as +<tr align="left"><td>White resigns <td>0-1 {White resigns} +<tr align="left"><td>Black resigns <td>1-0 {Black resigns} +<tr align="left"><td>White <td>1-0 {White mates} +<tr align="left"><td>Black <td>0-1 {Black mates} +<tr align="left"><td>Draw <td>1/2-1/2 {Draw} +<tr align="left"><td>computer mates <td>1-0 {White mates} or 0-1 {Black mates} +<tr align="left"><td>opponent mates <td>1-0 {White mates} or 0-1 {Black mates} +<tr align="left"><td>computer resigns <td>0-1 {White resigns} or 1-0 {Black resigns} +<tr align="left"><td>game is a draw <td>1/2-1/2 {Draw} +<tr align="left"><td>checkmate <td>1-0 {White mates} or 0-1 {Black mates} +</table> + +<p> +Commands in the above table are recognized if they begin a line and +arbitrary characters follow, so (for example) "White mates" will be +recognized as "White", and "game is a draw by the 50 move rule" will +be recognized as "game is a draw". All the commands are +case-sensitive. +</p> + +<p> +An alternative move syntax is also recognized: +</p> + +<table> +<tr align="left"><th>Command <th>Interpreted as +<tr align="left"><td>NUMBER ... MOVE <td>move MOVE +</table> + +<p> +Here NUMBER means any string of decimal digits, optionally ending in a +period. MOVE is any string containing no whitespace. In this command +format, xboard requires the "..." even if your engine is playing +White. A command of the form NUMBER MOVE will be ignored. This odd +treatment of the commands is needed for compatibility with gnuchessx. +The original reasons for it are lost in the mists of time, but I +suspect it was originally a bug in the earliest versions of xboard, +before I started working on it, which someone "fixed" in the wrong +way, by creating a special version of gnuchess (gnuchessx) instead of +changing xboard. +</p> + +<p> +Any line that contains the words "offer" and "draw" is recognized as +"offer draw". +</p> + +<p> +The "Illegal move" message is recognized even if spelled "illegal +move" and even if the colon (":") is omitted. This accommodates GNU +Chess 4, which prints messages like "Illegal move (no matching +move)e2e4", and old versions of Crafty, which print just "illegal move". +</p> + +<p> +In Zippy mode, for compatibility with older versions of Crafty, +xboard passes through to ICS any line that begins "kibitz", "whisper", +"tell", or "draw". Do not use this feature in new code. Instead, use the +commands "tellall", "tellothers", "tellopponent", "tellics" (if needed), +"1/2-1/2 {COMMENT}", or "offer draw", as appropriate. +</p> + +<p> +<font color=red> +If the engine responds to the "sd DEPTH" command with an error message +indicating the command is not supported (such as "Illegal move: sd"), +xboard sets an internal flag and subsequently uses the command +"depth\nDEPTH" instead, for the benefit of GNU Chess 4. Note the +newline in the middle of this command! New engines should not rely on +this feature. +</font> +</p> + +<p> +<font color=red> +If the engine responds to the "st TIME" command with an error message +indicating the command is not supported (such as "Illegal move: st"), +xboard sets an internal flag and subsequently uses the command "level +1 TIME" instead, for the benefit of GNU Chess 4. Note that this is +not a standard use of the level command, as TIME seconds are not added +after each player makes 1 move; rather, each move is made in at most +TIME seconds. New engines should not implement or rely on this +feature. +</font> +</p> + +<font color=red> +<p> +In support of the -firstHost/-secondHost features, which allow a chess +engine to be run on another machine using the rsh protocol, xboard recognizes +error messages that are likely to come from rsh as fatal errors. The following +messages are currently recognized: +</p> + +<blockquote> +unknown host<br> +No remote directory<br> +not found<br> +No such file<br> +can't alloc<br> +Permission denied<br> +</blockquote> +</font> + +<p> +<font color=red> +ChessBase/Fritz now implements the xboard/winboard protocol and can use +WinBoard-compatible engines in its GUI. ChessBase's version of the +protocol is generally the same as version 1, except that they have +added the commands <strong>fritz</strong>, <strong>reset</strong>, and +<strong>ponder</strong>, and the edit subcommands +<strong>castle</strong> and <strong>ep</strong>. If you want your +engine to work well with the ChessBase/Fritz GUI, you may need to +implement these additional commands, and you should also be aware of +the peculiar way that ChessBase uses the protocol. See their <a +href="http://www.chessbase.com/Products/engines/winboard/tech.htm" +>web page</a> for documentation. +</font> +</p> + +<p> +<font color=red> +ChessMaster 8000 also implements version 1 of the xboard/winboard +protocol and can use WinBoard-compatible engines. The original +release of CM8000 also has one additional restriction: only pure +coordinate notation (e.g., e2e4) is accepted in the move command. A +patch to correct this should be available from The Learning Company +(makers of CM8000) in February 2001. +</font> +</p> + +<hr noshade size="2"> +<address>converted to HTML by <a href="http://www.jakob.at/steffen/">Steffen A. Jakob</a></address> +</body> +</html> diff --git a/programs/harvar93.txt b/programs/harvar93.txt new file mode 100644 index 0000000..7ce4506 --- /dev/null +++ b/programs/harvar93.txt @@ -0,0 +1,519 @@ +4TH HARVARD CUP HUMAN VERSUS COMPUTER CHESS CHALLENGE +Saturday, 6 November 1993, 10:00 AM-5:30 PM +The Computer Museum, Boston + + + +HUMANS: Patrick Wolff, Michael Rohde, Boris Gulko, Joel Benjamin, +Ilya Gurevich, Alexander Ivanov -- all International Grandmasters. + +PROGRAMS: Kasparov's Gambit (Electronic Arts), BattleChess 4000 +SVGA (Interplay Productions), Socrates Exp (Heuristic Software), +M-Chess Professional (M Chess) -- all running on 60MHz Intel Pentium +processor-based systems. Renaissance SPARC (Saitek Industries +Ltd.) -- SPARC processor. ChessSystem R30 (TASC B.V.) -- ARM processor. + +RULES: Six rounds, six games per round, time control G/25, minimum +10 minute intermission between rounds. Chief Arbiter -- Joel Salman. + +PRIZES: 1st place (human), $1000; 2nd place (human), $500. Top +human and top computer have their names engraved on the permanent +Malcolm H. Weiner Trophy and are invited back to the 5th Harvard Cup. + +SPONSORS: Intel Corporation, Electronic Arts, Interplay +Productions, Heuristic Software/Machiavelli Designs Inc., M Chess, +Saitek Industries Ltd., TASC B.V., Prodigy, USA Today Information +Center, Amerigames International, American Chess Foundation, IBM +PC Company (official computer equipment supplier), United States +Chess Federation (official chess equipment supplier). Special +thanks to The Computer Museum and its staff, the Harvard Chess +Club and its members, the Millburn Ridgefield Corporation, +Malcolm H. Wiener, and everyone who volunteered and helped make +the event a success. + +RESULTS: + +PLAYER (FIDE) SocExp CSR30 MCPro BC400 RenSPARC KGambit TOTAL +Benjamin (2620) b 1-0 b 1-0 w 1-0 b 1-0 w 1-0 w 1-0 6.0 +Ivanov (2535) b 0-1 w 1-0 b 1-0 b 1-0 w 1-0 w 1-0 5.0 +Gulko (2635) b 1/2 w 1-0 b =-= w =-= b 1-0 w 1-0 4.5 +Wolff (2585) w 1-0 b =-= w 0-1 b 1-0 w 1-0 b 1-0 4.5 +Gurevich (2575) w =-= w 0-1 b 1-0 w 1-0 b 1-0 b 1-0 4.5 +Rohde (2575) w 0-1 b 0-1 w 1-0 w 0-1 b =-= b 1-0 2.5 + TOTAL 3.0 2.5 1.5 1.5 0.5 0.0 27-9 + TPR* 2588 2528 2395 2395 2168 ---- + SE* 142 144 164 164 257 --- + +(Tournament performance ratings and standard errors calculated by +Mark Glickman using Newton-Raphson algorithm.) + +Final score: Humans 27 -- Computers 9 (75%-25%) +Top Humans: Joel Benjamin, 6-0 ($1000) + Alexander Ivanov, 5-1 ($500) +Top Computer: Socrates Exp, 3-3 + + +ROUND 1 + +Alexander Ivanov -- Kasparov's Gambit +4th Harvard Cup (1) 1993 +1 e4 e5 2 Nf3 Nc6 3 Bb5 a6 4 Ba4 Nf6 5 0-0 Be7 6 Re1 b5 7 Bb3 d6 8 +c3 0-0 9 h3 Nb8 10 d4 Nbd7 11 Nbd2 Bb7 12 Bc2 Re8 13 Nf1 Bf8 14 +Ng3 g6 15 a4 Bg7 16 Bd3 c6 17 Bg5 h6 18 Bd2 Kh7 19 h4 exd4 20 cxd4 +Kg8 21 Qc1 Kh7 22 h5 c5 23 hxg6+ fxg6 24 e5 dxe5 25 dxe5 Ng4 26 +Bxg6+ Kxg6 27 Qc2+ Kf7 28 Qf5+ Kg8 29 Qxg4 Bxf3 30 Qxf3 Nxe5 31 +Qd1 Nc4 32 Rxe8+ Qxe8 33 Bc3 Rd8 34 Qg4 Ne5 35 Bxe5 Qxe5 36 axb5 +axb5 37 Nf5 Kh8 38 Ra6 Qxb2 39 Rg6 Rd4 40 Nxd4 Qa1+ 41 Kh2 Qxd4 42 +Qxd4 Bxd4 43 Rxh6+ Kg7 44 Rb6 Bxf2 45 Rxb5 Bd4 46 Kg3 Kf6 47 Kf4 +Be5+ 48 Ke4 Bd4 49 Rb8 Kg5 50 Rc8 Kf6 51 g4 Kf7 52 Rd8 Kg6 53 Kf4 +Bg7 54 Rd6+ Kf7 55 Kf5 Ke7 56 Re6+ Kd7 57 g5 Bd4 58 Re4 Kd6 59 g6 +Bg7 60 Re6+ Kd7 61 Ra6 Ke7 62 Ra7+ Kf8 63 Ra8+ Ke7 64 Rc8 Bd4 65 +Kg5 Kd6 66 Kh6 Kd7 67 Rxc5 Kd6 68 Rc8 1-0 + +Ilya Gurevich -- BattleChess 4000 SVGA +4th Harvard Cup (1) 1993 +1 e4 e5 2 Nf3 d6 3 d4 Nf6 4 Nc3 Nbd7 5 Bc4 Be7 6 a4 exd4 7 Nxd4 +Ne5 8 Ba2 0-0 9 0-0 Bd7 10 f4 Bg4 11 Qe1 Ng6 12 h3 Bd7 13 Qf2 Qe8 +14 Bd2 Bxa4 15 Nxa4 Nxe4 16 Qe3 Bh4 17 Nc3 Ng3 18 Rf3 Qxe3+ 19 +Bxe3 a6 20 Bf2 Nh5 21 Bxh4 Nxh4 22 Rf2 Rae8 23 g4 Nf6 24 Kh2 Re3 +25 Re2 Rxe2+ 26 Ndxe2 Re8 27 Kg3 Ng6 28 Kf3 Nh4+ 29 Kf2 h5 30 g5 +Ne4+ 31 Nxe4 Rxe4 32 Bd5 Rb4 33 b3 Kf8 34 Bc4 c6 35 Ra4 Rxa4 36 +bxa4 Ng6 37 Bd3 b5 38 axb5 cxb5 39 Bxg6 fxg6 40 Ke3 Kf7 41 Nd4 d5 +42 Kd3 b4 43 Nc6 Ke6 44 Nxb4 a5 45 Nc6 a4 46 Nd4+ Kf7 47 Kc3 a3 +48 Kb3 a2 49 Kxa2 Ke7 50 Kb3 Kd7 51 Kb4 1-0 + +Socrates Exp -- Joel Benjamin +4th Harvard Cup (1) 1993 +1 e4 c5 2 c3 d5 3 exd5 Qxd5 4 d4 Nf6 5 Nf3 Nc6 6 Na3 Bg4 7 Be2 +cxd4 8 cxd4 e5 9 dxe5 Qxd1+ 10 Bxd1 Bb4+ 11 Bd2 Bxd2+ 12 Kxd2 0-0-0+ +13 Kc1 Ne4 14 Rf1 Rd5 15 Nd2 Nxd2 16 Bxg4+ Kb8 17 Re1 Rhd8 18 +f4 Rc5+ 19 Nc2 Nb4 20 Bd1 Nxc2 21 Bxc2 Rdc8 22 Kxd2 Rxc2+ 23 Ke3 +Rxb2 24 Re2 Rc3+ 25 Kf2 Rxe2+ 26 Kxe2 Ra3 27 Kd2 g6 28 g3 h5 29 +Ke2 b5 30 Kd2 Kb7 31 Kc2 Kb6 32 Kb2 Re3 33 Rc1 Re2+ 34 Rc2 Rxc2+ +35 Kxc2 Kc5 36 Kd3 Kd5 37 Ke3 a5 38 Kd3 b4 39 Ke3 a4 40 Kd3 Kc5 41 +h3 Kd5 42 g4 h4 43 f5 gxf5 44 gxf5 Kxe5 45 f6 Kxf6 46 Kc4 b3 47 +axb3 axb3 48 Kxb3 Ke5 49 Kc3 Kf4 50 Kd4 Kg3 51 Ke4 Kxh3 0-1 + +Patrick Wolff -- M-Chess Professional 3.42 +4th Harvard Cup (1) 1993 +1 e4 c5 2 Nf3 d6 3 d4 cxd4 4 Nxd4 Nf6 5 Nc3 a6 6 Bc4 e6 7 Bb3 b5 8 +0-0 Be7 9 Qf3 Qc7 10 Qg3 b4 11 Nce2 0-0 12 Bh6 Ne8 13 c3 bxc3 14 +Nxc3 Nd7 15 Bxe6 fxe6 16 Nxe6 Qc4 17 Bxg7 Qxe6 18 Bxf8+ Kxf8 19 f4 +Rb8 20 b3 Nef6 21 Rae1 Qg4 22 Qxg4 Nxg4 23 h3 Ngf6 24 e5 Ne8 25 +Nd5 Bh4 26 Re3 dxe5 27 fxe5+ Kg7 28 Re4 Bg5 29 Rg4 Kh6 30 Rf5 Ndf6 +31 Rgxg5 Bxf5 32 Rxf5 Nxd5 33 g4 Ng7 34 Rf7 Ne6 35 Kg2 Rc8 36 Kg3 +Ng5 37 Ra7 Rc3+ 38 Kf2 Nxh3+ 39 Ke1 Re3+ 40 Kd2 Nhf4 41 Rxa6+ Kg5 +42 Ra7 Re2+ 43 Kc1 Nd3+ 0-1 + +Renaissance SPARC -- Boris Gulko +4th Harvard Cup (1) 1993 +1 c4 e5 2 Nf3 e4 3 Nd4 Nc6 4 Nxc6 dxc6 5 Nc3 Nf6 6 g3 Bc5 7 Qb3 0-0 +8 Bg2 Re8 9 0-0 h5 10 Na4 Bd4 11 e3 Be5 12 Nc5 h4 13 Nxb7 Qe7 14 +d4 exd3 15 Na5 hxg3 16 Nxc6 gxf2+ 17 Kh1 Qd6 18 c5 Qxc5 19 Nxe5 +Qxe5 20 Rxf2 Bf5 21 Bxa8 Rxa8 22 a4 Ng4 23 Rf4 Be4+ 24 Kg1 Qh5 25 +Qxf7+ Qxf7 26 Rxf7 Kxf7 27 Bd2 Ke6 28 Rc1 Rh8 29 Rc4 Kd5 30 Rd4+ +Ke5 31 Ba5 c5 32 Bc7+ Kf5 33 Rd7 Nf6 34 Rd6 Ne8 35 Rd8 Nxc7 36 +Rxh8 d2 37 Rf8+ Ke5 38 Rf1 Bc2 39 a5 d1/Q 0-1 + +ChessSystem R30 -- Michael Rohde +4th Harvard Cup (1) 1993 +1 d4 Nf6 2 c4 e6 3 Nf3 Bb4+ 4 Bd2 c5 5 Bxb4 cxb4 6 g3 0-0 7 Nbd2 +Nc6 8 Bg2 d6 9 0-0 e5 10 Qc2 Bg4 11 e3 a5 12 dxe5 dxe5 13 Rfd1 Qe7 +14 Ne4 Rad8 15 h3 Bf5 16 Nfd2 Kh8 17 g4 Bg6 18 Rac1 Rd7 19 g5 Ng8 +20 Nf1 Rfd8 21 Nfg3 h6 22 h4 f5 23 Rxd7 Rxd7 24 h5 fxe4 25 hxg6 +Qxg5 26 Bxe4 Nf6 27 Bf5 Rd8 28 Kf1 Nh5 29 Nxh5 Qxh5 30 Be4 Ne7 31 +Bxb7 Nxg6 32 c5 Nh4 33 c6 Qg4 34 c7 Qh3+ 35 Ke1 Rc8 36 Rd1 1-0 + + +ROUND 2 + +Kasparov's Gambit -- Ilya Gurevich +4th Harvard Cup (2) 1993 +1 d4 Nf6 2 c4 g6 3 Nc3 d5 4 Bf4 Bg7 5 e3 c5 6 dxc5 Qa5 7 Rc1 Ne4 8 +cxd5 Nxc3 9 Qd2 Qxa2 10 bxc3 Qa5 11 Nf3 Nd7 12 c6 bxc6 13 dxc6 Nc5 +14 Qb2 Na4 15 Qa3 0-0 16 Nd4 e5 17 Nb3 Qd5 18 Bxe5 Bxe5 19 Qxa4 +Rb8 20 Nd4 Rb2 21 Qxa7 Bh3 22 Qa3 Rfb8 23 c4 Qe4 24 f3 Qh4+ 25 g3 +Qh6 26 Nb5 Bxf1 27 c7 Re8 28 Rxf1 Qxh2 29 Qd3 Bxc7 30 Kd1 Red8 31 +Nd4 Qg2 32 Ra1 Be5 33 Kc1 Bxd4 34 exd4 Re8 0-1 + +BattleChess 4000 SVGA -- Joel Benjamin +4th Harvard Cup (2) 1993 +1 e4 c5 2 Nc3 Nc6 3 f4 e6 4 Nf3 Nge7 5 d4 cxd4 6 Nxd4 d5 7 Nxc6 +bxc6 8 Be3 Rb8 9 Rb1 Qc7 10 Qd2 dxe4 11 Nxe4 Nd5 12 Bc4 f5 13 Bxd5 +cxd5 14 Nc3 Ba6 15 Bd4 Bd6 16 Qe3 Kf7 17 g3 Rb4 18 a3 Rc4 19 b4 +Rc8 20 Kd2 Qd7 21 Rhe1 Be7 22 Rb3 Rxd4+ 23 Qxd4 Bf6 24 Qf2 Bc4 25 +Rbb1 d4 26 Nd1 d3 27 c3 Qa4 28 Rc1 Qxa3 29 h4 Bb3 30 c4 Qxb4+ 31 +Nc3 Bc2 32 Qxa7+ Kg8 33 Re5 Bxe5 34 fxe5 Qxc4 35 Qa3 Qd4 36 Rf1 +Qxe5 37 Rf4 h6 38 Qb4 Rxc3 39 Qxc3 Qe2+ 40 Kc1 Qd1+ 41 Kb2 Qb1+ 42 +Ka3 d2 43 Rd4 d1/Q 44 Rxd1 Bxd1 45 Qc8+ Kh7 46 Qxe6 Qb3+ 47 Qxb3 +Bxb3 48 Kxb3 Kg6 49 Kc4 Kh5 50 Kd3 Kg4 51 Ke2 Kxg3 52 h5 Kg4 53 +Kd3 Kxh5 54 Kc4 f4 0-1 + +Michael Rohde -- Socrates Exp +4th Harvard Cup (2) 1993 +1 Nf3 Nf6 2 c4 b6 3 Nc3 Bb7 4 d4 d5 5 cxd5 Nxd5 6 Qc2 e6 7 e4 Nxc3 +8 bxc3 Nd7 9 Bd3 Be7 10 0-0 0-0 11 Bf4 c5 12 d5 exd5 13 exd5 Bxd5 +14 Bxh7+ Kh8 15 Bf5 Bxf3 16 gxf3 Bg5 17 Bd6 Be7 18 Bg3 Nf6 19 Rfe1 +Rg8 20 Rad1 Qf8 21 Qe2 Re8 22 Bc2 Bd6 23 Qf1 Rxe1 24 Qxe1 Bxg3 25 +hxg3 Qa8 26 Qe7 Qxf3 27 Re1 Qxc3 28 Bb1 Ra8 29 Rd1 Re8 30 Rd8 Qc1+ +31 Kg2 Rxd8 32 Qxd8+ Ng8 33 Be4 Qh6 34 Bd5 Qh5 35 Qd7 Nf6 36 Qc8+ +Kh7 37 Bf3 Qe5 38 Qb7 Qe6 39 Qxa7 c4 40 a4 c3 41 Qc7 Qb3 42 Qc8 c2 +43 Qh3+ Kg6 44 Qc8 Qb2 45 Be2 c1/Q 46 Bd3+ Kg5 47 Qf5+ Kh6 48 Qh3 +Nh5 49 Qf5 Qf6 0-1 + +M-Chess Professional 3.42 -- Alexander Ivanov +4th Harvard Cup (2) 1993 +1 e4 g6 2 d4 Bg7 3 Nc3 c6 4 Bc4 b5 5 Bb3 a5 6 a4 b4 7 Nce2 d5 8 e5 +Na6 9 Bg5 f6 10 exf6 exf6 11 Bf4 Ne7 12 h3 0-0 13 Nf3 g5 14 Bg3 +Ng6 15 h4 g4 16 Nd2 h5 17 c3 Bf5 18 0-0 Bh6 19 Bc2 Bxc2 20 Qxc2 f5 +21 Nb3 Kg7 22 Be5+ Kh7 23 Ng3 Qxh4 24 Nxf5 Qg5 25 Nxh6 Kxh6 26 +Nxa5 Rac8 27 Bd6 Rf6 28 Bxb4 Nxb4 29 cxb4 Nh4 30 Kh1 Nf3 31 g3 +Nxd4 32 Qc3 Nf3 33 Rfd1 Kg7 34 Nb3 h4 35 Nd4 Kf7 36 Kg2 Rh8 37 +gxh4 Nxh4+ 38 Kf1 g3 39 f3 Ng6 40 b5 Nf4 41 Ne2 Rh1+ 42 Ng1 Rxg1+ +43 Kxg1 Ne2+ 44 Kg2 Nxc3 45 Rd3 Ne2 46 Rb3 Nf4+ 47 Kf1 g2+ 48 Kf2 +Re6 49 Re3 Nh3+ 50 Ke2 Qxe3+ 51 Kd1 Qd3+ 52 Kc1 g1/R mate 0-1 + +Patrick Wolff -- Renaissance SPARC +4th Harvard Cup (2) 1993 +1 e4 c5 2 Nf3 d6 3 d4 Nf6 4 Nc3 cxd4 5 Nxd4 g6 6 Be3 Bg7 7 f3 0-0 +8 Qd2 Nc6 9 Bc4 Qa5 10 0-0-0 Bd7 11 Bb3 Rfc8 12 h4 Ne5 13 Kb1 Nc4 +14 Bxc4 Rxc4 15 Nb3 Qc7 16 h5 gxh5 17 Bh6 Kh8 18 Bxg7+ Kxg7 19 Nd5 +Nxd5 20 Qg5+ Kf8 21 exd5 Rc8 22 Qh6+ Ke8 23 Qxh7 Kd8 24 Rd2 Be8 25 +Re1 a5 26 Nd4 Rb4 27 Qe4 Qd7 28 Rde2 Rc7 29 a3 Rb6 30 Kc1 Qa4 31 +Nf5 Qb3 32 Qxe7+ Rxe7 33 cxb3 Rxe2 34 Rxe2 Bd7 35 Nd4 h4 36 Kd2 +Bc8 37 Re1 h3 38 g4 a4 39 b4 Bd7 40 Rh1 Ra6 41 Rxh3 Rb6 42 Rh7 Be8 +43 g5 Kc8 44 f4 Ra6 45 f5 Rb6 46 f6 Kd8 47 g6 fxg6 48 Ne6+ Kc8 49 +Re7 Bf7 50 Rxf7 Kb8 51 Rd7 Ka7 52 f7 1-0 + +Boris Gulko -- ChessSystem R30 +4th Harvard Cup (2) 1993 +1 d4 c6 2 Nf3 Nf6 3 Bf4 d6 4 e3 Nd5 5 Bg3 Qb6 6 Qc1 g6 7 c4 Nf6 8 +Nc3 Bf5 9 Be2 Bg7 10 0-0 0-0 11 c5 dxc5 12 Na4 Qb4 13 Nxc5 Nbd7 14 +a3 Qb6 15 Na4 Qb3 16 Nc3 Nb6 17 Nd2 Qe6 18 Re1 Nfd5 19 e4 Nxc3 20 +bxc3 Bg4 21 f3 Bh5 22 Rb1 Rfc8 23 Qc2 c5 24 d5 Qf6 25 e5 Qg5 26 f4 +Qh6 27 c4 Bxe2 28 Rxe2 Qh5 29 Nf3 Rc7 30 h3 Qf5 31 Qxf5 gxf5 32 +Rc2 Bh6 33 Ne1 Bg7 34 Nd3 f6 35 Bf2 fxe5 36 fxe5 Na4 37 Re1 Rac8 +38 Nf4 Rd7 39 Bh4 b5 40 cxb5 c4 41 e6 Rb7 42 Bxe7 Bc3 43 Rd1 Rxe7 +44 d6 Rg7 45 Nd5 Rb8 46 Nxc3 Nc5 47 Re2 Kf8 48 Rd5 Rg3 49 Rxc5 +Rxc3 50 d7 Ke7 51 Rc8 Rd3 52 Rxb8 1-0 + + +ROUND 3 + +Boris Gulko -- Kasparov's Gambit +4th Harvard Cup (3) 1993 +1 d4 Nf6 2 Bf4 Nc6 3 Nf3 e6 4 c4 Bb4+ 5 Nbd2 d6 6 a3 Bxd2+ 7 Qxd2 +0-0 8 e3 Qe8 9 Be2 e5 10 Bg3 e4 11 Ng1 Bf5 12 Bh4 Qe7 13 Bd1 a6 14 +Ne2 h6 15 Nc3 g5 16 Bg3 Rad8 17 h4 g4 18 h5 d5 19 cxd5 Nxd5 20 +Nxd5 Rxd5 21 Bb3 Rd7 22 Rc1 Be6 23 Bxe6 Qxe6 24 Rc5 f5 25 0-0 Qf7 +26 Qc2 Rfd8 27 Rc1 Re8 28 Qc4 Qxc4 29 R1xc4 Rf8 30 b4 Rff7 31 a4 +Ne7 32 Bxc7 Nd5 33 Be5 Nb6 34 Rc1 Nxa4 35 Rc8+ Rf8 36 Rxf8+ Kxf8 +37 Rc8+ Ke7 38 Rh8 Nb2 39 Rxh6 Nd3 40 Rh7+ Ke6 41 Rxd7 1-0 + +Michael Rohde -- BattleChess 4000 SVGA +4th Harvard Cup (3) 1993 +1 Nf3 Nf6 2 c4 g6 3 Nc3 d5 4 cxd5 Nxd5 5 Qa4+ Nc6 6 Nxd5 Qxd5 7 e4 +Qe6 8 Bb5 Bd7 9 0-0 Bg7 10 d3 Qd6 11 Be3 Bxb2 12 Rab1 Bg7 13 d4 a6 +14 e5 Qe6 15 d5 Qxd5 16 Rfd1 Qe6 17 Bc4 Nxe5 18 Bxe6 Nxf3+ 19 gxf3 +Bxa4 20 Bb3 Bc6 21 Bd5 Bxd5 22 Rxd5 e6 23 Rd2 b6 24 Rc2 Be5 25 f4 +Bd6 26 Kg2 0-0 27 Rc6 Rfd8 28 Kf3 Kf8 29 Ke2 Ke7 30 h3 Kf6 31 Rd1 +Rab8 32 Kf3 Kf5 33 Rg1 h6 34 h4 Rd7 35 Rcc1 Be7 36 Rh1 h5 37 Rc6 +Rb7 38 Rh2 Rd3 39 Rh1 Bd6 40 Rg1 Bxf4 [time] 0-1 + +Socrates Exp -- Alexander Ivanov +4th Harvard Cup (3) 1993 +1 e4 g6 2 d4 Bg7 3 Nf3 d6 4 Be2 b6 5 0-0 Bb7 6 Nc3 e6 7 d5 e5 8 +Be3 Nd7 9 a4 Ne7 10 a5 a6 11 axb6 cxb6 12 Qd2 0-0 13 Bh6 b5 14 +Bxg7 Kxg7 15 Rfe1 h6 16 Rad1 Rc8 17 Bd3 Qc7 18 Nh4 g5 19 Nf3 Nc5 +20 Rc1 Ng6 21 Qe3 Qd7 22 Bf1 b4 23 Na2 a5 24 Nd2 f5 25 exf5 Rxf5 +26 Nc4 Qc7 27 Qh3 Rcf8 28 Ne3 R5f6 29 Qh5 Bc8 30 Qe2 Rxf2 31 Qxf2 +Rxf2 32 Kxf2 Ne4+ 33 Kg1 Qf7 34 Bd3 Qf2+ 35 Kh1 Nc5 36 Re2 Qh4 37 +Bf5 Ba6 38 g3 Qd4 39 c3 bxc3 40 bxc3 Qa4 41 c4 Ne7 42 Rcc2 Qe8 43 +Rf2 Bc8 44 Bxc8 Qxc8 45 Nc3 Nd3 46 Rfd2 Nb4 47 Rb2 Qc5 48 Re2 Qd4 +49 Nb5 Qe4+ 50 Kg1 Qg6 51 Nc7 Kg8 52 Ne6 Qd3 53 Re1 Ng6 54 Rbb1 h5 +55 Nxg5 h4 56 Rbd1 Qb3 57 Ne4 Nd3 58 Rb1 Qa2 59 Rb8+ Kf7 60 Rf1+ +Ke7 61 Nf5+ Kd7 62 Rb7+ Kd8 63 Nxd6 h3 64 Rf8+ Nxf8 65 Nf7+ 1-0 + +Joel Benjamin -- M-Chess Professional 3.42 +4th Harvard Cup (3) 1993 +1 d4 Nf6 2 Nf3 d5 3 c4 e6 4 Nc3 c5 5 cxd5 exd5 6 Bg5 Be7 7 e3 Nc6 +8 dxc5 0-0 9 Rc1 h6 10 Bh4 Be6 11 Be2 Bxc5 12 Nxd5 Qa5+ 13 Qd2 +Qxd2+ 14 Nxd2 Bxd5 15 Rxc5 g5 16 Bg3 Bxg2 17 Rg1 Bh3 18 f4 Nh7 19 +Nf3 Rfc8 20 fxg5 b6 21 Rc3 hxg5 22 Ba6 Bg4 23 Bxc8 Rxc8 24 Ne5 +Nxe5 25 Bxe5 Rxc3 26 Bxc3 Be6 27 Kf2 f6 28 Bd4 a6 29 a3 b5 30 Rc1 +Bc4 31 Rc3 Kf7 32 b3 Bd5 33 Rc7+ Kg6 34 b4 Nf8 35 Ra7 Ne6 36 Rxa6 +Nxd4 37 exd4 Kf5 38 Ke3 Kg6 39 Rd6 Bb3 40 Rb6 Bc4 41 Rc6 Bb3 42 +Rc3 Be6 43 Rc5 Bd7 44 d5 f5 45 Rc7 f4+ 46 Kd4 Bf5 47 d6 Kf6 48 d7 +Ke7 49 d8/Q+ Kxd8 50 Rc5 Bd7 51 Rxg5 f3 52 Ke3 f2 53 Kxf2 Ke7 54 +h4 Kf6 55 Ke3 Be8 56 Kf4 Bc6 57 h5 1-0 + +Renaissance SPARC -- Ilya Gurevich +4th Harvard Cup (3) 1993 +1 Nf3 Nf6 2 d4 g6 3 c4 Bg7 4 Nc3 d5 5 Qa4+ Bd7 6 Qb3 dxc4 7 Qxc4 +a6 8 Bf4 b5 9 Qc5 0-0 10 Bxc7 Qc8 11 Be5 Qxc5 12 dxc5 Nc6 13 e3 +Nxe5 14 Nxe5 Rfc8 15 Nd3 Bf5 16 a4 Bxd3 17 Bxd3 b4 18 Na2 Nd7 19 +c6 Nc5 20 Nxb4 a5 21 Rc1 Nb3 22 Rc4 axb4 23 Rxb4 Na5 24 Be4 Nxc6 +25 Bxc6 Rxc6 26 0-0 Rc2 27 b3 Bf6 28 Rd1 Ra2 29 Rb7 Rc8 30 g3 Rcc2 +31 Rf1 Bg5 32 Kg2 Bxe3 33 Rxe7 Bxf2 34 Kh3 h5 35 Kh4 Kg7 36 Kh3 +Kh6 37 Rxf7 Bg1 38 g4 Rxh2+ 39 Kg3 h4+ 40 Kf4 Rhf2+ 41 Ke4 Rxf7 42 +Rxf7 h3 43 Rf8 h2 44 Rh8+ Kg5 45 Kd3 Kxg4 46 Rh6 g5 47 Rh7 Kg3 48 +Rh5 g4 49 a5 Kg2 50 Ke4 h1/Q 0-1 + +ChessSystem R30 -- Patrick Wolff +4th Harvard Cup (3) 1993 +1 e4 c5 2 c3 Nf6 3 e5 Nd5 4 d4 cxd4 5 cxd4 d6 6 Nf3 Nc6 7 Nc3 dxe5 +8 dxe5 Nxc3 9 Qxd8+ Nxd8 10 bxc3 Bd7 11 Bd3 e6 12 0-0 Rc8 13 Bd2 +h6 14 Rfe1 Bc5 15 Nd4 0-0 16 Nb3 Be7 17 Rad1 Nc6 18 f4 Rfd8 19 Be3 +Be8 20 Bf2 Kf8 21 Re3 b6 22 Rh3 Nb8 23 Bd4 Ba4 24 f5 exf5 25 Bxf5 +Bd7 26 Rf3 Kg8 27 Bxd7 Rxd7 28 Re1 Nc6 29 Rxf7 Nxd4 30 Nxd4 Kxf7 +31 e6+ Ke8 32 exd7+ Kxd7 33 Rd1 Bf6 34 Nb5+ Ke6 35 Nxa7 Rxc3 36 +Nb5 Rc6 37 Re1+ Kd5 38 Rd1+ Kc4 39 Rc1+ Kd5 40 Rd1+ Ke4 41 a4 Ke3 +42 Re1+ Kd3 43 Kf2 Kc2 44 Kf3 Kb3 45 Re4 Rc4 46 Rxc4 Kxc4 47 Nc7 +Kb4 48 Nd5+ Ka5 49 Ke4 Bd8 50 Nc3 Kb4 51 Kd3 Kb3 52 g3 Be7 53 Nd5 +Bc5 54 Nc3 Bb4 55 Nd5 Ba5 56 Ne7 h5 57 Nd5 Kxa4 58 Nf4 b5 59 Nxh5 +Ka3 60 Nxg7 b4 61 Nf5 b3 62 Ne3 Bc7 63 Nd5 b2 64 Kc2 Ka2 65 Nc3+ +Ka1 1/2-1/2 + + +ROUND 4 + +Joel Benjamin -- Kasparov's Gambit +4th Harvard Cup (4) 1993 +1 d4 Nf6 2 Nf3 d5 3 c4 e6 4 Nc3 Be7 5 Bg5 0-0 6 e3 h6 7 Bh4 Ne4 8 +Bxe7 Qxe7 9 Rc1 Nxc3 10 Rxc3 c6 11 Bd3 dxc4 12 Rxc4 Nd7 13 0-0 e5 +14 dxe5 Nxe5 15 Re4 Nxf3+ 16 Qxf3 Be6 17 Bc4 Rad8 18 Bxe6 fxe6 19 +Qe2 Rd5 20 h3 Rfd8 21 b4 Rd2 22 Qc4 R8d5 23 a4 Kh8 24 b5 c5 25 a5 +b6 26 a6 e5 27 Rg4 Qd7 28 Rg6 Rb2 29 Rc6 Rb4 30 Qe2 Rd2 31 Qf3 Kg8 +32 Qg3 Rxb5 33 Rxh6 Qd3 34 Re1 Rbb2 35 Rg6 Qd7 36 Qxe5 Rxf2 37 Kh2 +Ra2 38 e4 Rad2 39 Re3 Rf7 40 Reg3 Re7 41 Qb8+ Qd8 42 Qf4 Rd4 43 +Qg5 Qd7 44 e5 Rd5 45 Qh4 Rexe5 46 Rh6 Qe7 47 Rh8+ Kf7 48 Rf3+ Ke6 +49 Qg4+ Kd6 50 Qc8 Qc7 51 Qa8 Kd7 52 Rg3 Rg5 53 Re8 Kd6 54 Rge3 c4 +55 Rd8+ Qxd8 56 Qxd8+ Kc6 57 Qc8+ Kb5 58 Qc7 Rd2 59 Rg3 Rxg3 60 +Kxg3 Kxa6 61 Qxc4+ Kb7 62 h4 a5 63 Qf4 [time] 1-0 + +BattleChess 4000 SVGA -- Patrick Wolff +4th Harvard Cup (4) 1993 +1 e4 c5 2 Nf3 d6 3 d4 cxd4 4 Nxd4 Nf6 5 Nc3 Nc6 6 Bg5 e6 7 Qd2 Be7 +8 0-0-0 0-0 9 Nb3 Qb6 10 f3 Rd8 11 Be3 Qc7 12 Qf2 d5 13 Kb1 dxe4 +14 Rxd8+ Bxd8 15 Nxe4 Nxe4 16 fxe4 b6 17 Bf4 e5 18 Be3 Be6 19 Bb5 +Be7 20 Rd1 Nd8 21 Qg3 Nb7 22 Bh6 Bf6 23 Rf1 Qd8 24 Be3 Nd6 25 Rd1 +Qc7 26 Bd3 Qc6 27 Nd2 Rc8 28 Rf1 Kh8 29 h4 Nc4 30 Nxc4 Bxc4 31 Bf2 +Bxh4 32 Qh3 Bxd3 33 Qxd3 Rd8 34 Qe2 Bxf2 35 Qxf2 Qxe4 36 Qxf7 Qf4 +37 a3 Rd1+ 38 Rxd1 Qxf7 39 Rd8+ Qg8 40 Rxg8+ Kxg8 41 b4 h5 42 c4 +h4 43 c5 bxc5 44 bxc5 Kf7 45 Kc2 g5 46 Kd3 g4 47 c6 Ke6 48 Ke3 Kd6 +49 Ke2 Kxc6 50 Kf1 h3 51 gxh3 gxh3 52 Kf2 e4 0-1 + +Ilya Gurevich -- Socrates Exp +4th Harvard Cup (4) 1993 +1 e4 e5 2 Nf3 Nf6 3 Nxe5 d6 4 Nf3 Nxe4 5 d3 Nf6 6 d4 g6 7 Bd3 Bg7 +8 Qe2+ Be6 9 Ng5 Qe7 10 0-0 Nc6 11 c3 Bf5 12 Qxe7+ Nxe7 13 Bxf5 +Nxf5 14 Re1+ Kf8 15 Na3 h6 16 Nf3 Re8 17 Bf4 g5 18 Bg3 Nd5 19 Nc2 +Nde7 20 Re4 Nxg3 21 hxg3 f5 22 Re2 Nd5 23 Rae1 Rxe2 24 Rxe2 Kf7 25 +Kf1 Bf6 26 Nd2 h5 27 Nc4 h4 28 N4e3 hxg3 29 fxg3 Ne7 30 Kf2 Rh7 31 +Nb4 Rh2 32 Nbd5 Nxd5 33 Nxd5 Bd8 34 Ne3 Kg6 35 g4 f4 36 Nf5 Bf6 37 +Re8 Rh8 38 Rxh8 Bxh8 39 Kf3 Kf6 40 Ke4 Ke6 41 d5+ Kf7 42 g3 fxg3 +43 Nxg3 Be5 44 Ne2 Kg6 45 Nc1 Kf6 46 Nd3 Bh2 47 c4 a5 48 a3 a4 49 +Kd4 Bg1+ 50 Kc3 Bc5 51 b4 axb3 52 Kxb3 Bd4 53 Kb4 Ke7 54 Kb5 Kd7 +55 a4 c6+ 56 Kb4 Be3 57 Kc3 c5 58 Ne1 Bf4 59 Nf3 b6 60 Ng1 Ke7 61 +Ne2 Be5+ 62 Kd3 Kf6 63 Ke4 Bb2 64 Ng3 Bc1 65 Nh1 Bf4 66 Nf2 Be5 67 +Kf3 Ke7 68 Ne4 Bf4 69 Ke2 Kd7 70 Kd3 Ke7 71 Kc2 Ke8 72 Kb3 Ke7 73 +a5 bxa5 74 Ka4 Kd7 75 Kxa5 Kd8 76 Kb6 Kd7 77 Kb7 Be3 78 Nc3 Bd2 79 +Na4 Ba5 80 Nb6+ Ke8 81 Kc6 Kd8 82 Nd7 Ke7 83 Nb8 Bc3 84 Kc7 Ba5+ +85 Kc8 Kf6 86 Kd7 Be1 87 Kxd6 Bg3+ 88 Kxc5 Bxb8 89 Kc6 Be5 90 d6 +Ke6 91 c5 Bf4 92 Kb7 Bxd6 93 cxd6 Kxd6 94 Kb6 Ke5 95 Kc5 Kf4 96 +Kd4 Kxg4 97 Ke4 Kg3 98 Kf5 g4 99 Ke4 Kf2 100 Kf4 g3 [time] 1/2-1/2 + +M-Chess Professional 3.42 -- Boris Gulko +4th Harvard Cup (4) 1993 +1 e4 g6 2 d4 Bg7 3 Nc3 Nc6 4 d5 Nb8 5 Nf3 d6 6 Bd3 Nf6 7 0-0 0-0 8 +h3 Nbd7 9 Be3 c6 10 Bd4 Qc7 11 Be2 Re8 12 Qd2 a6 13 Qg5 c5 14 Be3 +b5 15 Qh4 b4 16 Na4 e6 17 dxe6 Rxe6 18 Ng5 Re7 19 Bc4 Bb7 20 Rad1 +Ne5 21 Bd5 Bxd5 22 exd5 Rae8 23 Nxc5 h6 24 Nge4 Nxe4 25 Nxe4 Nd7 +26 Ng3 Qxc2 27 Qxb4 Qxb2 28 Qxb2 Bxb2 29 Bxh6 Ba3 30 f3 f5 31 Bg5 +Re5 32 Bf4 R5e7 33 Kh2 Nb6 34 h4 Kf7 35 h5 Kf6 36 h6 Rh7 37 Rd3 +Bc5 38 Bc1 g5 39 Bb2+ Kg6 40 Bd4 Rxh6+ 41 Kg1 Bxd4+ 42 Rxd4 Rh4 43 +Rd2 Re5 44 Rb1 Rxd5 45 Rxd5 Nxd5 46 Rd1 Ne3 47 Rxd6+ Kf7 48 Rxa6 +Rc4 49 Ra3 Rc1+ 50 Kh2 Re1 51 Rb3 Kg6 52 a4 f4 53 Rb6+ Kg7 54 Nh5+ +Kf7 55 g3 Nf1+ 56 Kg2 Nxg3 57 Nxg3 fxg3 58 a5 Ra1 59 a6 Ra4 60 +Kxg3 Kg7 61 Kf2 Ra3 62 Ke2 Kh7 63 Rc6 Kg7 64 Rd6 Kh7 65 Rb6 Kg7 66 +Re6 Kh7 67 Rd6 Kg7 68 Rd7+ Kg6 69 a7 Kf5 70 Rf7+ Kg6 71 Rb7 Kf5 72 +Rc7 Kf6 73 Rh7 Kf5 74 Rb7 Kf4 75 Rf7+ Ke5 76 Kf2 Ke6 77 Rg7 Kf6 78 +Rc7 Kg6 79 Re7 Kf6 80 Rh7 Kg6 81 Rd7 Kf6 82 Rb7 Kg6 83 Ke1 Kf5 84 +Kd2 Kf4 85 Rf7+ Ke5 86 Rd7 Kf4 87 Kc2 Ra6 88 Rf7+ Ke3 89 Kc3 Ra1 +90 Kc4 Ra2 91 Kc5 Ra1 92 Kb6 Rb1+ 93 Kc7 Rc1+ 94 Kb8 Rb1+ 95 Rb7 +Ra1 96 Rb3+ Kf4 97 a8/Q Rxa8+ 98 Kxa8 1/2-1/2 + +Renaissance SPARC -- Michael Rohde +4th Harvard Cup (4) 1993 +1 Nf3 Nf6 2 d4 e6 3 c4 b6 4 Nc3 Bb4 5 Bg5 h6 6 Bd2 Bb7 7 e3 0-0 8 +Bd3 d6 9 0-0 Nbd7 10 Qa4 c5 11 a3 Bxc3 12 Bxc3 Ne4 13 Be1 Rc8 14 +d5 Ndf6 15 dxe6 fxe6 16 Nh4 Ng4 17 Ng6 Qg5 18 Nxf8 Nxe3 19 fxe3 +Nd2 20 Bh7+ Kh8 21 Bg3 Nxf1 22 Nxe6 Qxe3+ 23 Kxf1 Qxe6 24 Qc2 Qe3 +25 Bxd6 Re8 26 Bg6 Re6 27 Bg3 Rxg6 28 Re1 Qg5 29 Re5 Qf6+ 30 Kg1 +Bc6 31 Qe2 Kh7 32 Qd3 Qf7 33 b4 cxb4 34 axb4 Qd7 35 Qxd7 Bxd7 36 +Re7 Bf5 37 Rxa7 Re6 38 Rc7 Re2 39 Bf2 Be4 40 g4 Kg8 41 Bxb6 Rg2+ +42 Kf1 Rxg4 43 Rd7 Bf5 44 Rd8+ Kf7 45 Bd4 Bd3+ 46 Kf2 Bxc4 47 Kf3 +Rg5 48 Rd7+ Kf8 49 Rc7 Bb5 50 Kf4 Rg2 51 h3 Bd3 52 Kf3 Rg5 1/2-1/2 + +Alexander Ivanov -- ChessSystem R30 +4th Harvard Cup (4) 1993 +1 e4 c5 2 Nf3 Nc6 3 d4 cxd4 4 Nxd4 Nf6 5 Nc3 g6 6 Nxc6 bxc6 7 e5 +Ng8 8 Bc4 Bg7 9 Bf4 Qa5 10 0-0 Bxe5 11 Bxe5 Qxe5 12 Re1 Qf4 13 Re4 +Qf6 14 Re3 d5 15 Bxd5 Bf5 16 Ne4 Bxe4 17 Bxe4 Rc8 18 c3 Nh6 19 Qa4 +Kf8 20 Qxa7 Ng4 21 Rg3 Qe6 22 Qd4 Nf6 23 Bd3 c5 24 Qe3 Qxe3 25 +Rxe3 c4 26 Bf1 e6 27 a4 Ke7 28 a5 Rc5 29 Ra4 Nd5 30 Re2 Ra8 31 Rd2 +Raxa5 32 Rxa5 Rxa5 33 Bxc4 Ra1+ 34 Bf1 Ra2 35 Re2 h5 36 g3 g5 37 +Rc2 g4 38 Bc4 Ra1+ 39 Kg2 Kd6 40 Rd2 Kc5 41 Bxd5 exd5 42 Rd4 Ra7 +43 b4+ Kc6 44 c4 dxc4 45 Rxc4+ Kb5 46 Rc5+ Kxb4 47 Rxh5 Kc3 48 Rf5 +Rc7 49 Rf4 Kd3 50 Rxg4 f6 51 Rf4 Rf7 52 h4 Rf8 53 g4 Rg8 54 Kf3 +Rg6 55 h5 Rh6 56 Rf5 Kd4 57 Kf4 Kd3 58 f3 Kd4 59 Ra5 Kd3 60 Ra3+ +Kc4 61 Kf5 Kb5 62 Re3 Kc5 63 Re6 Kd5 64 Rxf6 1-0 + + +ROUND 5 + +Kasparov's Gambit -- Michael Rohde +4th Harvard Cup (5) 1993 +1 d4 Nf6 2 c4 e6 3 Nc3 Bb4 4 Nf3 b6 5 Bg5 h6 6 Bd2 Bb7 7 e3 0-0 8 +Bd3 d6 9 0-0 Nbd7 10 a3 Bxc3 11 Bxc3 Ne4 12 Be1 f5 13 Nd2 Ndf6 14 +f3 Ng5 15 Bg3 Qe7 16 b4 Rad8 17 Qa4 a6 18 Kh1 Rb8 19 Rae1 Ba8 20 +Qxa6 Bc6 21 c5 d5 22 Bc2 Qd7 23 cxb6 Bb5 24 bxc7 Bxa6 25 cxb8/Q +Rxb8 26 Bxb8 Bxf1 27 h4 Nf7 28 Rxf1 Qc8 29 Bxf5 exf5 30 Bf4 Qc3 31 +Nb1 Qb2 32 Bg3 Nh5 33 Kh2 Nxg3 34 Kxg3 Nd6 35 Re1 Nc4 36 Kh3 Qf2 +0-1 + +Boris Gulko -- BattleChess 4000 SVGA +4th Harvard Cup (5) 1993 +1 d4 Nf6 2 Bf4 d5 3 e3 Bf5 4 c4 Nc6 5 Nc3 e6 6 Nf3 Bb4 7 a3 Bxc3+ +8 bxc3 0-0 9 Bg5 Qe7 10 Bd3 Bxd3 11 Qxd3 dxc4 12 Qxc4 h6 13 Bh4 +Qd8 14 0-0 Qd5 15 Qd3 Ne4 16 Rab1 Nd6 17 Nd2 Ne5 18 Qe2 Ng6 19 Bg3 +Qc6 20 c4 Nf5 21 Rb4 Nxg3 22 hxg3 b6 23 Qh5 Rad8 24 Rc1 Rd6 25 Qb5 +e5 26 Qxc6 Rxc6 27 d5 Rd6 28 e4 Re8 29 c5 Rd7 30 Ra4 Ra8 31 cxb6 +cxb6 32 Rc6 Re8 33 Rac4 f6 34 a4 Ra8 35 Kf1 Kf7 36 Nf3 Ne7 37 Rc7 +Ke8 38 Rc2 Kd8 39 R7c3 Rc8 40 Rxc8+ Nxc8 41 Ke2 Nd6 42 Kd3 f5 43 +Nxe5 fxe4+ 44 Kd4 Rc7 45 Nc6+ Ke8 46 g4 Kd7 47 Re2 Kc8 48 Ke5 Kd7 +49 Rc2 Rc8 50 Kd4 Rc7 51 Rc3 Ke8 52 Ke5 Kd7 53 Kd4 Ke8 54 Re3 Kf7 +55 f3 exf3 56 gxf3 h5 57 Re6 Rxc6 58 dxc6 Kxe6 59 gxh5 Ne8 60 Kc4 +Kd6 61 Kd4 Nf6 62 c7 Kxc7 63 Ke5 Nh5 64 Kf5 Ng3+ 65 Kg6 Ne2 66 +Kxg7 Nd4 67 f4 Ne6+ 68 Kf6 Nxf4 69 Ke5 Ne2 70 Kd5 Nc3+ 71 Kc4 Nxa4 +72 Kb5 Nc5 73 Kb4 Kd6 74 Kb5 Kd5 75 Kb4 a6 76 Kc3 a5 77 Kb2 b5 78 +Kc3 b4+ 79 Kb2 Kc4 80 Kc2 Nd3 81 Kd2 b3 82 Ke3 b2 83 Ke4 a4 84 Kf5 +a3 85 Ke6 Nb4 [time] 1/2-1/2 + +Patrick Wolff -- Socrates Exp +4th Harvard Cup (5) 1993 +1 e4 e5 2 Nf3 Nf6 3 Nc3 Bb4 4 Nxe5 0-0 5 Be2 Re8 6 Nd3 Bxc3 7 dxc3 +Nxe4 8 c4 d6 9 0-0 Nc6 10 Nf4 Ne5 11 f3 Nc5 12 Re1 Bf5 13 Be3 Ng6 +14 Qd2 Bxc2 15 Nh5 Bf5 16 g4 Bd7 17 b4 Ne6 18 f4 Nef8 19 f5 Ne5 20 +Bh6 Qh4 21 Qf4 Bc6 22 Bxg7 Nf3+ 23 Bxf3 Rxe1+ 24 Rxe1 Qxe1+ 25 Kg2 +Bxf3+ 26 Qxf3 Qxb4 27 Bc3 Qxc4 28 Nf6+ Kh8 29 Qe3 Qxa2+ 30 Kh3 Qb1 +31 Nd5+ f6 32 Nxf6 Qf1+ 33 Kh4 Qc4 34 Nxh7+ Qxc3 35 Qxc3+ Kxh7 36 +Qxc7+ Kg8 37 f6 Ne6 38 Qe7 Kh8 39 Qxe6 Rf8 40 g5 a5 41 g6 Rg8 42 +Qf7 Rxg6 43 Qxg6 a4 44 Qg7 mate 1-0 + +M-Chess Professional 3.42 -- Ilya Gurevich +4th Harvard Cup (5) 1993 +1 e4 c5 2 Nf3 e6 3 d4 cxd4 4 Nxd4 a6 5 Bd3 Qc7 6 0-0 Nf6 7 Be3 Be7 +8 Nc3 d6 9 Qf3 Nbd7 10 Qg3 0-0 11 Be2 Re8 12 Bh6 Bf8 13 Bd2 b5 14 +a3 Bb7 15 f3 Rac8 16 Kh1 d5 17 Qxc7 Rxc7 18 exd5 Nxd5 19 Bd3 Nc5 +20 Nxd5 Bxd5 21 Be2 g6 22 Bg5 Rcc8 23 Rfd1 Na4 24 Rab1 Ba2 25 Ra1 +Nxb2 26 Rxa2 Nxd1 27 Bxd1 Red8 28 Bxd8 Rxd8 29 c3 e5 30 Rd2 exd4 +31 Rxd4 Rxd4 32 cxd4 Bxa3 33 Kg1 Bb2 34 d5 Kf8 35 Kf2 Ke7 36 Ke3 +Kd6 37 Kd3 a5 38 Be2 Be5 39 Kc2 b4 40 Kb3 Bxh2 41 Ka4 Kxd5 42 Bd1 +Kd4 43 Kxa5 Bd6 44 Bb3 Ke3 45 Bxf7 Kf2 46 Bd5 Kxg2 47 Be4 Kg3 48 +Kb5 Kf4 49 Kc6 h5 50 Kxd6 h4 51 Bxg6 h3 52 Kc5 h2 53 Kxb4 h1/Q 54 +Be4 Qc1 0-1 + +Alexander Ivanov -- Renaissance SPARC +4th Harvard Cup (5) 1993 +1 e4 c6 2 d4 d5 3 e5 Bf5 4 h4 h5 5 c4 e6 6 Nc3 Nd7 7 cxd5 cxd5 8 +Bg5 Be7 9 Qd2 Bxg5 10 hxg5 Rc8 11 Be2 Bg6 12 Nb5 Rc2 13 Qb4 Qxg5 +14 Nf3 Qxg2 15 Rg1 Qh3 16 Nd6+ Kd8 17 Nxb7+ Kc7 18 Qd6+ Kc8 19 Ba6 +Rc7 20 Nc5+ Kd8 21 Ng5 Qf5 22 Ngxe6+ fxe6 23 Nxe6+ Qxe6 24 Qxe6 +Ne7 25 Rxg6 Rc6 26 Qxc6 Nxc6 27 Rxc6 1-0 + +ChessSystem R30 -- Joel Benjamin +4th Harvard Cup (5) 1993 +1 e4 c5 2 c3 d5 3 exd5 Qxd5 4 d4 Nf6 5 Nf3 Nc6 6 dxc5 Qxd1+ 7 Kxd1 +e5 8 b4 Bf5 9 Nbd2 0-0-0 10 b5 Na5 11 Nxe5 Bxc5 12 Nxf7 Ne4 13 Ke1 +Nxf2 14 Be2 Nxh1 15 Nxh8 Rxh8 16 g4 Bg6 17 a4 Nf2 18 Ba3 Re8 19 +Bxc5 Nd3+ 20 Kf1 Nxc5 21 Ra3 Rf8+ 22 Kg1 Rd8 23 Nf3 Nab3 24 c4 Nd4 +25 Nxd4 Rxd4 26 a5 Bd3 27 Bxd3 Rxd3 28 Rxd3 Nxd3 29 h3 Kc7 30 Kg2 +Kd6 31 Kf3 Ne5+ 32 Ke4 Nxc4 33 Kd4 Nxa5 0-1 + + +ROUND 6 + +Kasparov's Gambit -- Patrick Wolff +4th Harvard Cup (6) 1993 +1 d4 Nf6 2 c4 c5 3 d5 b5 4 cxb5 a6 5 bxa6 g6 6 e4 Nxe4 7 Qa4 Nf6 8 +a7 Na6 9 Nf3 Bg7 10 Bxa6 Rxa7 11 Nc3 0-0 12 Qc4 Bxa6 13 Qxc5 Qb8 +14 a4 Rc8 15 Qa3 Rb7 16 a5 Rb3 17 Qa2 Ng4 18 h3 Ne5 19 Nxe5 Bxe5 +20 f4 Bxc3+ 21 bxc3 Rbxc3 22 Bd2 Rc2 23 Qb1 Rxd2 24 Qxb8 Re2+ 0-1 + +BattleChess 4000 SVGA -- Alexander Ivanov +4th Harvard Cup (6) 1993 +1 d4 g6 2 Nf3 Bg7 3 c3 d6 4 e4 Nf6 5 Bd3 Nbd7 6 0-0 e5 7 Bg5 h6 8 +Bd2 0-0 9 Na3 b6 10 Re1 Bb7 11 Nb5 a6 12 Na3 Re8 13 Qc2 exd4 14 +cxd4 d5 15 e5 Ne4 16 b4 c5 17 bxc5 bxc5 18 Rab1 Qc8 19 Bf4 g5 20 +Be3 cxd4 21 Bxd4 g4 22 e6 Rxe6 23 Bxg7 gxf3 24 Qxc8+ Bxc8 25 Bd4 +Ndc5 26 Bxe4 Nxe4 27 g3 Nd2 28 Rbd1 Re2 29 Nc2 Ne4 30 Nb4 Be6 31 +a3 Rc8 32 Rc1 Rc4 33 Red1 Rxd4 34 Rxd4 Rxf2 35 Kh1 Rg2 36 Rf1 Nf2+ +37 Rxf2 Rxf2 38 h4 Re2 39 Rf4 d4 40 Nd3 Bd5 41 Kg1 Rg2+ 42 Kf1 Rd2 +43 Ne5 d3 44 Rg4+ Kf8 45 Rd4 Be6 46 Nxf3 Ra2 47 Ke1 Rxa3 48 Kd2 +Ke7 49 Rxd3 Rxd3+ 50 Kxd3 Kd6 51 Ke4 Bd5+ 52 Kf4 Bxf3 53 Kxf3 Ke5 +54 Ke3 a5 55 Kd3 Kf5 56 Kc4 Kg4 57 Kd4 Kxg3 58 h5 Kg4 59 Kd3 f5 60 +Kc4 f4 61 Kd3 a4 62 Kc3 f3 63 Kb4 f2 64 Kxa4 f1/Q 65 Kb4 Kxh5 66 +Kc5 Kg4 67 Kd5 Kf5 68 Kd4 Qd1+ 69 Kc5 Ke5 70 Kb5 Kd5 71 Kb6 Kd6 72 +Kb7 Qb3+ 73 Ka8 Kc7 0-1 + +Socrates Exp -- Boris Gulko +4th Harvard Cup (6) 1993 +1 e4 g6 2 d4 Bg7 3 Nf3 d6 4 Be2 Nf6 5 Nc3 0-0 6 0-0 Nc6 7 d5 Nb8 8 +Bf4 Nh5 9 Be3 e5 10 dxe6 fxe6 11 Qd2 Nc6 12 Rad1 Qe7 13 Ng5 Bd7 14 +Nb5 Rac8 15 Bxh5 gxh5 16 f4 h6 17 Nf3 Rf7 18 Kh1 a6 19 Nc3 Rcf8 20 +g3 Qf6 21 Nh4 b5 22 a3 Na5 23 Qe1 Nc4 24 Bc1 Bc6 25 Rf3 Rd7 26 b3 +Nb6 27 Rfd3 Qf7 28 Nf3 Re7 29 Be3 Nd7 30 Bf2 Nf6 31 Bd4 Ng4 32 +Bxg7 Qxg7 33 h3 Nf6 34 Kh2 Nd7 35 Nd4 Bb7 36 Re3 h4 37 f5 Ne5 38 +gxh4 Kh8 39 Rg3 Qf6 40 Nxe6 Rxe6 41 fxe6 Nf3+ 42 Rxf3 Qxf3 43 Nd5 +Rg8 44 Qc3+ Qxc3 45 Nxc3 Re8 46 Nd5 Rxe6 47 Nxc7 Rxe4 48 Rxd6 Re2+ +49 Kg3 Rxc2 50 Nxa6 Rc3+ 51 Kg4 Bxa6 52 Rxh6+ Kg7 53 Rxa6 Rxb3 54 +h5 b4 55 h6+ Kh7 56 a4 Rc3 57 Rb6 Rc4+ 58 Kf3 b3 59 a5 Ra4 60 a6 +b2 61 Rxb2 Rxa6 62 Rb4 Kxh6 63 Kg4 Rc6 64 h4 Ra6 65 h5 Rc6 66 Re4 +Ra6 67 Rc4 Rb6 68 Ra4 Rc6 69 Rd4 Rb6 70 Rc4 Ra6 71 Re4 Rb6 72 Rf4 +Rc6 73 Rb4 Rd6 74 Rh4 Rc6 75 Rd4 Rb6 76 Rc4 Ra6 77 Re4 Rb6 78 Ra4 +Rc6 79 Kg4 Rb6 80 Rd4 Rc6 81 Rf4 1/2-1/2 + +Michael Rohde -- M-Chess Professional 3.42 +4th Harvard Cup (6) 1993 +1 Nf3 d5 2 c4 e6 3 d4 Nf6 4 Nc3 c5 5 cxd5 exd5 6 g3 Nc6 7 Bg2 Be7 +8 0-0 0-0 9 Bg5 cxd4 10 Nxd4 Re8 11 Rc1 Bg4 12 h3 Bd7 13 Nb3 Be6 +14 e3 Rc8 15 Qd2 Ne4 16 Nxe4 Bxg5 17 Nxg5 Qxg5 18 Rfd1 Qh5 19 Kh2 +Bg4 20 Re1 Bf3 21 Nd4 Bxg2 22 Kxg2 f6 23 Rc5 Nxd4 24 Qxd4 Rxc5 25 +Qxc5 b6 26 Qd4 Re4 27 Qd3 Ra4 28 Rc1 Rxa2 29 Rc8+ Kf7 30 Rc7+ Kf8 +31 Qb3 Ra5 32 Qb4+ Rc5 33 Rxc5 bxc5 34 Qxc5+ Kg8 35 Qxa7 Qe8 36 +Qd4 Qb5 37 b4 Kf7 38 Qa7+ Kf8 39 Qa5 Qb7 40 Qc5+ Ke8 41 Kf1 Qd7 42 +h4 Qh3+ 43 Ke1 Qh1+ 44 Ke2 Qe4 45 b5 Qg4+ 46 Ke1 Qd7 47 b6 h6 48 +Kd2 g6 49 Kc3 h5 50 Kb4 Qb7 51 Qd6 Qc8 52 Qxd5 Ke7 53 Qc5+ Kd7 54 +Qxc8+ Kxc8 55 e4 1-0 + +Joel Benjamin -- Renaissance SPARC +4th Harvard Cup (6) 1993 +1 d4 d5 2 c4 c6 3 Nc3 Nf6 4 e3 e6 5 Nf3 Nbd7 6 Bd3 Bd6 7 e4 dxe4 8 +Nxe4 Nxe4 9 Bxe4 0-0 10 0-0 c5 11 Bc2 Qb6 12 Qd3 g6 13 Be3 Be7 14 +Rad1 Qxb2 15 Rb1 Qxa2 16 Ra1 Qxa1 17 Rxa1 Rd8 18 dxc5 Nxc5 19 Qc3 +Bd7 20 Ne5 f5 21 Bxc5 Bxc5 22 Nxd7 Rxd7 23 Qe5 Bd4 24 Qxe6+ Rf7 25 +Rd1 Rd8 26 c5 Rdd7 27 Rxd4 Rde7 28 Bb3 Rxe6 29 Bxe6 1-0 + +Ilya Gurevich -- ChessSystem R30 +4th Harvard Cup (6) 1993 +1 e4 e5 2 Nf3 Nc6 3 Bb5 a6 4 Ba4 Nf6 5 0-0 Be7 6 Re1 b5 7 Bb3 0-0 +8 d4 Nxd4 9 Nxd4 exd4 10 e5 Ne8 11 c3 dxc3 12 Nxc3 Bb7 13 Nd5 d6 +14 e6 f5 15 Bf4 Nf6 16 Nxe7+ Qxe7 17 Rc1 Rae8 18 Qd4 Ne4 19 Qa7 c5 +20 Rxe4 fxe4 21 Bxd6 Qxd6 22 e7+ c4 23 exf8/Q+ Rxf8 24 Rd1 Qf6 25 +Bc2 Qxb2 26 Bb1 c3 27 Qc5 Qe2 28 Rf1 Qd2 29 Qe5 c2 30 Qe6+ Kh8 31 +Bxc2 Qxc2 32 Qe7 Qc8 33 h3 Bd5 34 a3 Qf5 35 Qa7 Bc4 36 Rd1 Bd3 37 +Rc1 Qf6 38 Qe3 a5 39 Rc7 b4 40 axb4 axb4 41 Rb7 Qc3 42 Qb6 Qa1+ 43 +Kh2 Qe5+ 44 Kg1 Qc3 45 Kh2 h6 46 h4 Qe5+ 47 Kg1 Rc8 48 g3 Qa1+ 49 +Kh2 Rc1 50 Kh3 Rh1+ 51 Kg4 Qe5 0-1 + diff --git a/programs/minimax.bib b/programs/minimax.bib new file mode 100644 index 0000000..6723d69 --- /dev/null +++ b/programs/minimax.bib @@ -0,0 +1,1338 @@ +@STRING{header = " +----------------------------------------------------------------------------- +File: minimax.bib +Version: V01-005 of April 2nd, 1993 +Author: Claude G. Diderich + 30, Avenue S.Reymondin, CH-1009 Pully, Switzerland, Europe + E-mail: diderich@dma.epfl.ch +Copyright: (c) 1992..93 by Claude G. Diderich, Switzerland + Non commercial usage permitted as long as the above copyright no- + tice is included. +Note: Please send all modifications and additions to this file to + diderich@dma.epfl.ch.AVAILABLE indicates if a copy of the article + is available to me (If you have a copy of an article marked NO, + I would be gratefull if you could send me a copy of it).Any other + indication in the AVAILABLE field are for personal use of the + author. +Thanks: I would like to thank the following persons (in alphabetical or- +MONTH der) for their contributions: + David Barnard <barnard@qucis.queensu.ca>, + Bruno Charlier <bc@info.ucl.ac.be> + Van-Dat Cung <Van-Dat.Cung@inria.fr>, + Rainer Feldmann <chess@uni-paderborn.de>, + Marc Gengler <gengler@lithsun1.epfl.ch>, + Rattikorn Hewett <hewett@cse.fau.edu>, + Toshihide Ibaraki <ibaraki@kuamp.kyoto-u.ac.jp>, + L. V. Kale <kale@cs.uiuc.edu>, + Richard E. Korf <korf@cs.ucla.edu>, + Bradley C. Kuszmauk <bradley@au-bon-pain.lcs.mit.edu>, + T. A. Marsland <tony@cs.ualberta.ca>, + Judea Pearl <judea@cs.ucla.edu>, + Wim Pijls <wimp@cs.eur.nl>, + Udo Sprute <sprute@unibi.hrz.uni-bielefeld.de> +----------------------------------------------------------------------------- +"} + +@STRING{artint = "Artificial Intelligence"} +@STRING{ieeetoc = "{IEEE} Transactions on Computers"} +@STRING{ieeetopami = "{IEEE} Transactions on Pattern Analysis and + Machine Intelligence"} +@STRING{ijprai = "International Journal of Pattern + Recognition and Artificial Intelligence"} +@STRING{iccaj = "ICCA Journal"} +@STRING{jalgo = "Journal of Algorithms"} +@STRING{jpdc = "Journal of Parallel and Distributed Computing"} +@STRING{parcomp = "Parallel Computing"} +@STRING{infocon = "Information and Control"} +@STRING{spex = "Software: Practice and Experience"} + +@INPROCEEDINGS{Abra88, + AUTHOR = "Bruce Abramson and Richard E. Korf", + TITLE = "A Model of Two-player Evaluation Functions", + BOOKTITLE = "Proceedings of the Sixth National Conference on Artificial + Intelligence (AAAI-87)", + ADDRESS = "Seattle, WA", + YEAR = 1987, + MONTH = Jul, + PAGES = "90--94", + AVAILABLE = "ETHICS" +} + +@ARTICLE{Abra89, + AUTHOR = "Bruce Abramson", + TITLE = "Control Strategies for Two-Player Games", + JOURNAL = acmcs, + VOLUME = 21, + NUMBER = 2, + PAGES = "137--161", + MONTH = Jun, + YEAR = 1989 +} + + +@TECHREPORT{Akl79, + AUTHOR = "Selim G. Akl and David T. Barnard and Ralph J. Doran", + TITLE = "Searching Game Trees in Parallel", + INSTITUTION = "Queen's University, Department of Computing and + Information Science", + YEAR = 1979, + MONTH = Nov, + NOTE = "\Star", + AVAILABLE = "NO" +} + +@INPROCEEDINGS{Akl80, + AUTHOR = "Selim G. Akl and David T. Barnard and Ralph J. Doran", + TITLE = "Simulation and Analysis in Deriving Time and Storage + Requirements for a Parallel Alpha-beta Algorithm", + BOOKTITLE = "International Conference on Parallel Processing", + PAGES = "231--234", + YEAR = 1980, + AVAILABLE = "ETHICS" +} + +@ARTICLE{Akl82, + AUTHOR = "Akl, Selim G. and Barnard, David T. and Doran, Ralph J.", + TITLE = "Design, Analysis, and Implementation of a Parallel Tree + Search Algorithm", + JOURNAL = ieeetopami, + YEAR = 1982, + VOLUME = "PAMI-4", + NUMBER = 2, + MONTH = Mar, + PAGES = "192--203" +} + +@INBOOK{Akl89, + AUTHOR = "Selim G. Akl", + TITLE = "The Design and Analysis of Parallel Algorithms", + CHAPTER = "12 -- Traversing Combinatorial Spaces", + PAGES = "310--340", + PUBLISHER = "Prentice Hall", + ADDRESS = "Englewood Cliffs, NJ", + YEAR = 1989, + AVAILABLE = "EPFL-BC" +} + +@TECHREPORT{Almq88, + AUTHOR = "Kenneth Almquist and Neil McKenzie and Kenneth Sloan", + TITLE = "An Inquiry into Parallel Algorithms for Searching + Game Trees", + INSTITUTION = "University of Washington, Department of Computer Science", + ADDRESS = "Seattle, WA", + YEAR = 1988, + MONTH = Dec, + NUMBER = "88-12-03" +} + +@TECHREPORT{Alth88, + AUTHOR = {Ingo Alth\"ofer}, + TITLE = "A Parallel Game Tree Search Algorithm with a Linear + Speedup", + YEAR = 1988, + MONTH = Dec, + NOTE = "submitted to Journal of Algorithms, accepted 1992", + INSTITUTION = {University of Bielefeld, Faculty for Mathematics}, + ADDRESS = "Bielefeld, Germany" +} + +@ARTICLE{Alth90, + AUTHOR = {Ingo Alth\"ofer}, + TITLE = "An Incremental Negamax Algorithm", + JOURNAL = artint, + YEAR = 1990, + VOLUME = 43, + PAGES = "57--65" +} + +@ARTICLE{Alth91, + AUTHOR = {Ingo Alth\"ofer and Bernhard Balkenhol}, + TITLE = "A Game Tree with Distinct Leaf Values which is easy + for the Alpha-beta Algorithm", + JOURNAL = artint, + PAGES = "183--190", + VOLUME = 52, + YEAR = 1991, + AVAILABLE = "EPFL-DMA" +} + +@PHDTHESIS{Amig91, + AUTHOR = "Claude Amiguet", + TITLE = "Contr\^oleurs Distribu\'es pour la Programmation + Heuristique", + SCHOOL = "Swiss Federal Institute of Technology, Department of + Computer Science", + NUMBER = 910, + ADDRESS = "Lausanne, Switzerland", + YEAR = 1991, + NOTE = "In french" +} + +@INPROCEEDINGS{Bal86a, + AUTHOR = "Henri E. Bal and Robbert {van Renesse}", + TITLE = "Parallel Alpha-Beta Search", + BOOKTITLE = "Proceedings NGI-SION Symposium Stimulerende Informatica", + ADDRESS = "Utrecht, Netherlands", + PAGES = "379--385", + MONTH = Apr, + YEAR = 1986, + AVAILABLE = "EPFL-LITH" +} + +@ARTICLE{Ball86b, + AUTHOR = "Henri E. Bal and Robbert {van Renesse}", + TITLE = "A Summary of Parallel Alpha-Beta Search Results", + JOURNAL = iccaj, + YEAR = 1986, + VOLUME = 9, + NUMBER = 3, + PAGES = "146--149", + MONTH = Sep, + NOTE = "\Star", + AVAILABLE = "NO" +} + +@ARTICLE{Ball83, + AUTHOR = "Bruce W. Ballard", + TITLE = "The *-Minimax Search Procedure for Trees Containing Chance + Nodes", + JOURNAL = artint, + VOLUME = 21, + PAGES = "327--350", + YEAR = 1983 +} + +@ARTICLE{Baud78a, + AUTHOR = "G\'erard M. Baudet", + TITLE = "On the Branching Factor of the Alpha-Beta Pruning + Algorithm", + JOURNAL = artint, + VOLUME = 10, + PAGES = "173--199", + YEAR = 1978 +} + +@PHDTHESIS{Baud78b, + AUTHOR = "G\'erard M. Baudet", + TITLE = "The Design and Analysis of Algorithms for Asynchronous + Multiprocessors", + SCHOOL = "Carnegie Mellon University", + YEAR = 1978, + NUMBER = "CMU-CS-78-116", + ADDRESS = "Pittsburgh, PA", + AVAILABLE = "ETHICS MICROFICHES" +} + +@INBOOK{Beal80, + AUTHOR = "D. F. Beal", + CHAPTER = "An Analysis of Minimax", + TITLE = "Advances in Computer Chess 2", + YEAR = 1980, + NOTE = "Editor: M. R. B. Clarke", + PAGES = "103--109", + PUBLISHER = "Edinburgh University Press.", + AVAILABLE = "ETHICS" +} + +@PHDTHESIS{Berl75, + AUTHOR = "Hans Jack Berliner", + TITLE = "Chess as Problem Solving", + SCHOOL = "Carnegie Mellon University", + YEAR = 1975, + ADDRESS = "Pittsburgh, PA", + AVAILABLE = "ETHICS MICROFICHES" +} + +@ARTICLE{Berl89, + AUTHOR = "Hans Jack Berliner and Carl Eberling", + TITLE = "Pattern Knowledge and Search: {T}he {SUPREME} + Architecture", + JOURNAL = artint, + YEAR = 1989, + VOLUME = 38, + NUMBER = 2, + PAGES = "161--198" +} + +@ARTICLE{Berl90, + AUTHOR = "Hans Jack Berliner and Gordon Goetsch and + Murray S. Campbell and Carl Ebeling", + TITLE = "Measuring the Performance Potential of Chess Programs", + JOURNAL = artint, + YEAR = 1990, + VOLUME = 43, + NUMBER = 1, + MONTH = Apr, + PAGES = "7--21", + AVAILABLE = "EPFL-DMA" +} + +@TECHREPORT{Bohm89, + AUTHOR = {Max B\"ohm and Ewald Speckenmeyer}, + TITLE = "A Dynamic Processor Tree for Solving Game Trees in + Parallel", + INSTITUTION = "University of Dortmund, Fachbereich Informatik", + ADDRESS = "Dortmund, Germany", + YEAR = 1989, + AVAILABLE = "Also in: Proceedings SOR '89" +} + +@TECHREPORT{Bord90, + AUTHOR = "Andrei Z. Broder and Anna R. Karlin and Prabhakar + Raghavan and Eli Upfal", + TITLE = "On the Parallel Complexity of Evaluating Game-Trees", + INSTITUTION = "IBM Research Division", + NUMBER = "RR RJ 7729", + MONTH = Oct, + YEAR = 1990, + NOTE = "\Star", + AVAILABLE = "NO" +} + +@INBOOK{Brat82, + AUTHOR = "I. Bratko and M. Gams", + CHAPTER = "Error Analysis of the Minimax Principle", + TITLE = "Advances in Computer Chess 3", + YEAR = 1982, + NOTE = "Editor: M. R. B. Clarke", + PAGES = "1--15", + PUBLISHER = "Pergamon Press", + AVAILABLE = "ETHICS" +} + +@ARTICLE{Camp83, + AUTHOR = "Murray S. Campbell and T. A. Marsland", + TITLE = "A Comparison of Minimax Tree Search Algorithms", + JOURNAL = artint, + VOLUME = 20, + PAGES = "347--367", + YEAR = 1983 +} + +@ARTICLE{Chak92, + AUTHOR = "P. P. Chakrabarti and S. Ghose", + TITLE = "A General Best First Search Algorithm in And/Or Graphs", + JOURNAL = jalgo, + VOLUME = 13, + NUMBER = 2, + PAGES = "177-187", + MONTH = Jun, + YEAR = 1992, + AVAILABLE = "EPFL-DMA" +} + +@TECHREPORT{Cung91, + AUTHOR = "Van-Dat Cung and Catherine Roucairol", + TITLE = "Parallel Minimax Tree Searching", + INSTITUTION = "INRIA", + TYPE = "RR", + NUMBER = 1549, + YEAR = 1991, + MONTH = Nov, + NOTE = "In French, will appear in English" +} + +@ARTICLE{Darw83, + AUTHOR = "Nevin M. Darwish", + TITLE = "A Quantitative Analysis of the Alpha-Beta Pruning + Algorithm", + JOURNAL = artint, + VOLUME = 21, + PAGES = "405--433", + YEAR = 1983 +} + +@TECHREPORT{Dide92, + AUTHOR = "Claude G. Diderich", + TITLE = "Evaluation des Performances de l'Algorithme {SSS*} avec + Phases de Synchronisation sur une Machine Parall\`ele \`a + M\'emoires Distribu\'ees", + ADDRESS = "Lausanne, Switzerland", + INSTITUTION = "Swiss Federal Institute of Technology, Department of + Computer Science, Laboratory for Theoretical Computer + Science", + MONTH = Jun, + YEAR = 1992, + NOTE = "In french", + AVAILABLE = "Contact <diderich@di.epfl.ch> for a copy" +} + +@MASTERSTHESIS{Feld87, + AUTHOR = "Rainer Feldmann and Peter Mysliwietz", + TITLE = "{Parallele Spielbaumsuche}", + NOTE = "Diplomarbeit, In german", + SCHOOL = "University of Paderborn", + ADDRESS = "Paderborn, Germany", + YEAR = 1987, + MONTH = Dec +} + +@ARTICLE{Feld89, + AUTHOR = "Rainer Feldmann and Burkhard Monien and Peter Mysliwietz and + Oliver Vornberger", + TITLE = "Distributed Game Tree Search", + JOURNAL = iccaj, + VOLUME = 12, + NUMBER = 2, + YEAR = 1989, + PAGES = "65--73", + NOTE = "\Star", + AVAILABLE = "NO" +} + +@INPROCEEDINGS{Feld90a, + AUTHOR = "Rainer Feldmann and Burkhard Monien and Peter Mysliwietz and + Oliver Vornberger", + TITLE = "Distributed Game Tree Search", + BOOKTITLE = "Parallel Algorithms for Machine Intelligence and Vision", + EDITOR = "Vipin Kumar, P. S. Gopalakrishnan, Laveen N. Kanal", + PUBLISHER = "Springer-Verlag", + PAGES = "66--101", + YEAR = 1990, + AVAILABLE = "EPFL-BC" +} + +@INBOOK{Feld90b, + AUTHOR = "Rainer Feldmann and Peter Mysliwietz and Burkhard Monien", + TITLE = "Advances in Computer Chess 6", + CHAPTER = "1 --- A Fully Distributed Chess Program", + PAGES = "1--27", + PUBLISHER = "Ellis Horwood", + YEAR = 1990, + AVAILABLE = "ETHICS", + NOTE = "Editor: D. Beal", +} + +@INPROCEEDINGS{Feld90c, + AUTHOR = "Rainer Feldmann, Peter Mysliwietz, Burkhard Monien", + TITLE = "{Spielbaumsuche auf einem Transputernetzwerk}", + BOOKTITLE = "Parallel - Algorithmen und -Rechnerstrukturen (PARS), + Workshop Sprachen und Systeme zur Parallelverarbeitung", + PUBLISHER = {Gesellschaft f\"ur Informatik}, + YEAR = 1990, + MONTH = Jan, + NOTE = "In german" +} + +@INPROCEEDINGS{Feld91a, + AUTHOR = "Rainer Feldmann and Peter Mysliwietz and Burkhard Monien", + TITLE = "Distributed Game Tree Search on a Massively + Parallel System", + BOOKTITLE = "Data structures and efficient algorithms: Final + report on the {DFG} special joint initiative", + PUBLISHER = "Springer-Verlag", + EDITOR = "B. Monien, Th. Ottmann", + PAGES = "270--288", + VOLUME = "LNCS 594", + MONTH = Sep, + YEAR = 1991, + AVAILABLE = "EPFL-BC" +} + +@INPROCEEDINGS{Feld91b, + AUTHOR = "Rainer Feldmann and Peter Mysliwietz and Burkhard Monien", + TITLE = "Experiments with a Fully Distributed Chess Program", + BOOKTITLE = "Heuristic Programming in Artificial Intelligence 3", + EDITOR = "J. van den Herik, V. Allis", + YEAR = 1991, + PAGES = "72--87", + NOTE = "Also in: Tech.Report, University Paderborn, + Paderborn, Germany" + +} + +@INPROCEEDINGS{Felt88, + AUTHOR = "E. W. Felten and S. W. Otto", + TITLE = "Chess on a Hypercube", + BOOKTITLE = "The Third Conference on Hypercube Concurrent + Computers and Applications", + EDITOR = "Geoffrey Fox", + PAGES = "1329--1341", + VOLUME = "II-Applications", + YEAR = 1988, + ADDRESS = "Passadena, CA", + AVAILABLE = "ETHICS" +} + +@INPROCEEDINGS{Ferg88, + AUTHOR = "C. Ferguson and Richard E. Korf", + TITLE = "Distributed Tree Search and its application to + alpha-beta pruning", + BOOKTITLE = "Proceedings of the Seventh National Conference Artificial + Intelligence (AAAI-88)", + ADDRESS = "Minneapolis, MN", + YEAR = 1988, + MONTH = Aug, + PAGES = "128--132", + AVAILABLE = "ETHICS" +} + +@INPROCEEDINGS{Fink80, + AUTHOR = "Raphael A. Finkel and John P. Fishburn", + TITLE = "Parallel Alpha-Beta Search on Arachne", + BOOKTITLE = "IEEE International Conference on Parallel Processing", + PAGES = "235--243", + YEAR = 1980, + NOTE = "\Star", + AVAILABLE = "NO" +} + +@ARTICLE{Fink82, + AUTHOR = "Raphael A. Finkel and John P. Fishburn", + TITLE = "Parallelism in Alpha-Beta Search", + JOURNAL = artint, + YEAR = 1982, + VOLUME = 19, + PAGES = "89--106" +} + +@ARTICLE{Fink83, + AUTHOR = "Raphael A. Finkel and John P. Fishburn", + TITLE = "Improved Speedup Bounds for Parallel Alpha-Beta Search", + JOURNAL = ieeetopami, + YEAR = 1983, + VOLUME = "PAMI-5", + NUMBER = 1, + PAGES = "89--92" +} + +@INBOOK{Fish84, + AUTHOR = "John P. Fishburn", + TITLE = "Analysis of Speedup in Distributed Algorithms", + CHAPTER = "4 -- {P}arallel Alpha-Beta Search", + PAGES = "11-54", + PUBLISHER = "UMI Research Press", + YEAR = 1984, + VOLUME = 14, + SERIES = "Computer Science: Distributed Database Systems", + NOTE = "Revision of thesis (PhD) -- University of Wisconsin, + Madison, 1981" +} + +@TECHREPORT{Full73, + AUTHOR = "S. H. Fuller and J. G. Gaschnig and J. J. Gillogly", + TITLE = "An Analysis of the Alpha-beta Pruning Algorithm", + ADDRESS = "Pittsburgh", + INSTITUTION = "Carnegie-Mellon University, Department of Computer Science", + MONTH = Jul, + YEAR = 1973, + NOTE = "\Star", + AVAILABLE = "NO" +} + +@INPROCEEDINGS{Hewe92, + AUTHOR = "R. Hewett and K. Ganesan", + TITLE = "Consistent Linear Speedup in Parallel Alpha-Beta Search", + BOOKTITLE = "ICCI'92, Computing and Information", + PUBLISHER = "IEEE Computer Society Press", + PAGES = "237--240", + YEAR = 1992, + NOTE = "\Star", + AVAILABLE = "NO" +} + +@ARTICLE{Hiro87, + AUTHOR = "Usui Hiromoto and Yamashita Masafumi and Imai Masaharu and + Ibaraki, Toshihide", + TITLE = "Parallel Searches of Game Trees", + JOURNAL = "Systems and Computers in Japan", + NUMBER = "8", + PAGES = "97--109", + VOLUME = 18, + YEAR = 1987, + AVAILABLE = "ETHICS" +} + +@ARTICLE{Hora90, + AUTHOR = "Helmut Horacek", + TITLE = "Reasonning with Uncertainty in Computer Chess", + JOURNAL = artint, + YEAR = 1990, + VOLUME = 43, + PAGES = "37--56" +} + +@INBOOK{Hsu89, + AUTHOR = "Feng-Hsiung Hsu and T. S. Anantharaman and + Murray S. Campbell and A. Nowatzyk", + TITLE = "Computers, Chess, and Cognition", + CHAPTER = "5 Deep Thought", + PAGES = "55--78", + YEAR = 1990, + PUBLISHER = "Springer Verlag", + AVAILABLE = "ETHICS" +} + +@PHDTHESIS{Hsu90, + AUTHOR = "Feng-Hsiung Hsu", + TITLE = "Large Scale Parallelization of Alpha-Beta Search: An + Algorithmic and Architectural Study with Computer Chess", + SCHOOL = "Carnegie Mellon University", + MONTH = Feb, + YEAR = 1990, + NUMBER = "CMU-CS-90-108", + ADDRESS = "Pittsburgh, PA" +} + +@ARTICLE{Hunt88, + AUTHOR = "Matthew M. Huntbach and F. Warren Burton", + TITLE = "Alpha-Beta Search on Virtual Tree Machines", + JOURNAL = "Information Sciences", + PAGES = "3--17", + VOLUME = 44, + YEAR = 1988, + NOTE = "\Star", + AVAILABLE = "NO" +} + +@ARTICLE{Hyat89, + AUTHOR = "R. M. Hyatt and B. W. Suter", + TITLE = "A Parallel Alpha/Beta Tree Searching Algorithm", + JOURNAL = "Parallel Computing", + PAGES = "299--308", + VOLUME = 10, + YEAR = 1989, + AVAILABLE = "EPFL-BC" +} + +@ARTICLE{Ibar86, + AUTHOR = "Toshihide Ibaraki", + TITLE = "Generalization of Alpha-Beta and {SSS*} Search Procedures", + JOURNAL = artint, + YEAR = 1986, + VOLUME = 29, + PAGES = "73--117" +} + +@INPROCEEDINGS{Ibar87, + AUTHOR = "Toshihide Ibaraki", + TITLE = "Game Solving Procedure {H*} is Unsurpassed", + BOOKTITLE = "Discrete Algorithms and Complexity", + EDITOR = "D. S. Johnson and al.", + PAGES = "185--200", + YEAR = 1987, + PUBLISHER = "Academic Press, Inc.", + AVAILABLE = "ETHICS" +} + +@INPROCEEDINGS{Ibar91a, + AUTHOR = "Toshihide Ibaraki", + TITLE = "Search Algorithms for Minimax Game Trees", + BOOKTITLE = "Comference: Twenty Years NP-Completeness", + ADDRESS = "Sicily, Italy", + MONTH = Jun, + YEAR = 1991, + NOTE = "\Star", + AVAILABLE = "NO" +} + +@ARTICLE{Ibar91b, + AUTHOR = "Toshihide Ibaraki and Yoshiroh Katoh", + TITLE = "Searching Minimax Game Trees Under Memory Space Constraint", + JOURNAL = "Annals of Mathematics and Artificial Intelligence", + PAGES = "141--153", + VOLUME = 1, + YEAR = 1990, + AVAILABLE = "ETHICS" +} + +@ARTICLE{Kain91, + AUTHOR = "Kaindl, Hermann and Shams, Reza and Horacek, Helmut", + TITLE = "Minimax Search Algorithms with and without Aspiration + Windows", + JOURNAL = ieeetopami, + YEAR = 1991, + VOLUME = "PAMI-13", + NUMBER = 12, + MONTH = Dec, + PAGES = "1225--1235" +} + +@INPROCEEDINGS{Karp89, + AUTHOR = "Richard M. Karp and Yanjun Zhang", + TITLE = "On parallel evaluation of game trees", + BOOKTITLE = "First ACM Annual symposium on parallel algorithms and + architectures (SPAA'89)", + PUBLISHER = "ACM", + ADDRESS = "New York, NY", + PAGES = "409--420", + YEAR = 1989, + AVAILABLE = "ETHICS" +} + +@ARTICLE{Kato88, + AUTHOR = "Y. Katoh and Toshihide Ibaraki", + TITLE = "Game Solving Procedure {SSS*} is Unsurpassed", + JOURNAL = "Systems and computers in Japan", + YEAR = 1988, + VOLUME = 19, + NUMBER = 7, + PAGES = "93-103", + AVAILABLE = "ETHICS" +} + +@MASTERSTHESIS{Klei90, + AUTHOR = "Theo Klein Paste and Patrick {van der Laag}", + TITLE = "An Analysis of the {SSS*} Algorithm", + SCHOOL = "Erasmus University Rotterdam", + ADDRESS = "Rotterdam, NL", + YEAR = 1990, + NOTE = "\Star", + AVAILABLE = "NO" +} + +@ARTICLE{Knut75, + AUTHOR = "Donald E. Knuth and Ronald W. Moore", + TITLE = "An Analysis of Alpha-Beta Pruning", + JOURNAL = artint, + VOLUME = 6, + NUMBER = 4, + PAGES = "293--326", + YEAR = 1975 +} + +@ARTICLE{Korf85, + AUTHOR = "Richard E. Korf", + TITLE = "Iterative Deepening: {An} Optimal Admissible Tree Search", + JOURNAL = artint, + VOLUME = 27, + YEAR = 1985, + PAGES = "97--109", + AVAILABLE = "EPFL-DMA" +} + +@INPROCEEDINGS{Korf89, + AUTHOR = "Richard E. Korf", + TITLE = "Generalized Game Trees", + BOOKTITLE = "Proceedings of the International Joint Conference on + Artificial Intelligence (IJCAI-89)", + ADDRESS = "Detroit, MI", + YEAR = 1989, + MONTH = Aug, + PAGES = "328--333", + AVAILABLE = "ETHICS" +} + +@ARTICLE{Korf90, + AUTHOR = "Richard E. Korf", + TITLE = "Depth-Limited Search for Real-Time Problem Solving", + JOURNAL = "The Journal of Real-Time Systems", + PAGES = "7--24", + YEAR = 1990, + AVAILABLE = "EPFL-LITH" +} + +@ARTICLE{Korf91, + AUTHOR = "Richard E. Korf", + TITLE = "Multi-Player alpha-beta pruning", + JOURNAL = artint, + MONTH = Feb, + NUMBER = 1, + YEAR = 1991, + VOLUME = 48, + PAGES = "99--111", + AVAILABLE = "EPFL-DMA" +} + +@PHDTHESIS{Kraa90, + AUTHOR = "H.-J. Kraas", + TITLE = "Zur {Parallelisierung} des {SSS*-Algorithmus}", + SCHOOL = "University of Braunschweig", + ADDRESS = "Braunschweig, Germany", + YEAR = 1990, + NOTE = "In german, \Star", + AVAILABLE = "NO" +} + +@ARTICLE{Kuma83, + AUTHOR = "Vipin Kumar and Laveen N. Kanal", + TITLE = "A General Branch and Bound Formulation for Understanding + and Synthesizing And/Or Tree Search Procedures", + JOURNAL = artint, + PAGES = "179--198", + VOLUME = 21, + YEAR = 1983, + AVAILABLE = "EPFL-DMA" +} + +@ARTICLE{Kuma84, + AUTHOR = "Vipin Kumar and Laveen N. Kanal", + TITLE = "Parallel Branch-and-Bound Formulations for + {AND/OR} Tree Search", + JOURNAL = ieeetopami, + MONTH = Nov, + NUMBER = 6, + PAGES = "768--778", + VOLUME = "PAMI-6", + YEAR = 1984, + AVAILABLE = "EPFL-BC" +} + +@INPROCEEDINGS{Kuma88, + AUTHOR = "Vipin Kumar and Laveen N. Kanal", + TITLE = "A General Branch and Bound Formulation for And/Or Graph + and Game Tree Search", + BOOKTITLE = "Search in Artificial Intelligence", + PUBLISHER = "Springer Verlag", + YEAR = 1988, + AVAILABLE = "ETHICS" +} + +@INPROCEEDINGS{Leif85, + AUTHOR = "Daniel B. Leifker and Laveen N. Kanal", + TITLE = "A Hybrid {SSS*}/Alpha-Beta Algorithm for Parallel + Search of Game Trees", + BOOKTITLE = "Proceedings of the International Joint Conference on + Artificial Intelligence (IJCAI-85)", + PAGES = "1044--1046", + YEAR = 1985, + AVAILABLE = "ETHICS" +} + +@ARTICLE{Leve92, + AUTHOR = "Willem G. Levelt and M. Frans Kaashoek and Henri E. + Bal and Andrew S. Tanenbaum", + TITLE = "A Comparison of Two Paradigms for Distributed + Shared Memory", + JOURNAL = spex, + VOLUME = 22, + NUMBER = 11, + MONTH = Nov, + YEAR = 1992, + PAGES = "985--1010" +} + +@ARTICLE{Li90, + AUTHOR = "Liwu Li and T. A. Marsland", + TITLE = "Probability-Based Game Tree Pruning", + JOURNAL = jalgo, + YEAR = 1990, + MONTH = Mar, + NUMBER = 1, + VOLUME = 11, + PAGES = "27--43", + AVAILABLE = "EPFL-DMA" +} + +@TECHREPORT{Lind83, + AUTHOR = "Gary Lindstrom", + TITLE = "The Key Node Method: A Highly-Parallel Alpha-Beta + Algorithm", + ADDRESS = "Salt Lake City", + INSTITUTION = "University of Utah, Department of Computer Science", + MONTH = Mar, + NUMBER = "UUCS 83-101", + YEAR = 1983, + NOTE = "\Star", + AVAILABLE = "NO" +} + +@MASTERSTHESIS{Low91, + AUTHOR = "Chin-Chau Low", + TITLE = "Parallel Game Tree Searching with Lower and Upper Bounds", + SCHOOL = "University of Illinois at Urbana Campaign", + ADDRESS = "IL", + YEAR = 1991, + ADVISOR = "L.V.Kale" +} + +@ARTICLE{Mars82, + AUTHOR = "T. A. Marsland and Murray S. Campbell", + TITLE = "Parallel Search of Strongly Ordered Game Trees", + JOURNAL = acmcs, + VOLUME = 14, + NUMBER = 4, + PAGES = "533--551", + MONTH = Dec, + YEAR = 1982 +} + +@INPROCEEDINGS{Mars83a, + AUTHOR = "T. A. Marsland", + TITLE = "Relative Efficiency of Alpha-Beta Implementations", + BOOKTITLE = "Proceedings of the International Joint Conference on + Artificial Intelligence (IJCAI-83)", + YEAR = 1983, + PAGES = "763--766", + ADDRESS = "Karlsruhe, Germany", + MONTH = Aug, + NOTE = "\Star", + AVAILABLE = "NO" +} + +@TECHREPORT{Mars83b, + AUTHOR = "T. A. Marsland and Fred Popowich", + TITLE = "Multiprocessor Tree Searching System Design", + INSTITUTION = "University of Alberta, Department of Computer Science", + YEAR = 1983, + NUMBER = "TR 83-06", + ADDRESS = "Edmonton, Canada", + MONTH = Jul +} + +@ARTICLE{Mars85, + AUTHOR = "T. A. Marsland and Fred Popowich", + TITLE = "Parallel Game-Tree Search", + JOURNAL = ieeetopami, + YEAR = 1985, + VOLUME = "PAMI-7", + NUMBER = 4, + MONTH = Jul, + PAGES = "442--452" +} + +@ARTICLE{Mars87, + AUTHOR = "Marsland, T. A. and Reinefeld, Alexander and Schaeffer, + Jonathan", + TITLE = "Low Overhead Alternatives to {SSS*}", + JOURNAL = artint, + VOLUME = 31, + PAGES = "185--199", + YEAR = 1987 +} + +@INBOOK{Mars88, + AUTHOR = "T.A. Marsland and M. Olafsson and Jonathan Schaeffer", + TITLE = "Multiprocessor Tree-Search Experiments", + BOOKTITLE = "Advances in Computer Chess IV", + NOTE = "D.F. Beal (Editor)", + PUBLISHER = "Pergamon Press", + PAGES = "37--51", + YEAR = 1986, + AVAILABLE = "NO" +} + +@ARTICLE{McAl88, + AUTHOR = "David Allen McAllester", + TITLE = "Conspiracy Numbers for Min-Max Searching", + JOURNAL = artint, + VOLUME = 35, + PAGES = "287--310", + YEAR = 1988 +} + +@ARTICLE{Meul90, + AUTHOR = "M. van der Meulen", + TITLE = "Conspiracy Number Search", + JOURNAL = iccaj, + VOLUME = 13, + NUMBER = 1, + YEAR = 1990, + MONTH = Mar, + PAGES = "3--14", + NOTE = "\Star", + AVAILABLE = "NO" +} + +@PHDTHESIS{Mich83, + AUTHOR = "Gerard P. Michon", + TITLE = "Recursive Random Games: {A} Probabilistic Model for + Perfect Information Games", + SCHOOL = "University of California at Los Angeles, Computer + Science Department", + ADDRESS = "Los Angeles, CA", + NUMBER = "840029 (R-32)", + YEAR = 1983 +} + +@INPROCEEDINGS{Moni87, + AUTHOR = "Burkhard Monien and Oliver Vornberger", + TITLE = "Parallel Processing of Combinatorial Search Trees", + BOOKTITLE = " Proceedings International Workshop on Parallel + Algorithms and Architectures, Math. Research Nr. 38, + Akademie - Verlag Berlin", + PAGES = "60--69", + YEAR = 1987, + NOTE = "\Star", + AVAILABLE = "NO" +} + +@ARTICLE{Nau82, + AUTHOR = "Danna S. Nau", + TITLE = "The Last Player Theorem", + JOURNAL = artint, + VOLUME = 18, + PAGES = "53--65", + YEAR = 1982 +} + +@ARTICLE{Nau83, + AUTHOR = "Danna S. Nau", + TITLE = "Pathology on Game Trees Revisited, and an Alternative to + Minimaxing", + JOURNAL = artint, + VOLUME = 21, + PAGES = "221--244", + YEAR = 1983 +} + +@ARTICLE{Newb77, + AUTHOR = "Monroe M. Newborn", + TITLE = "The Efficiency of the Alpha-Beta Search on Trees with + Branch-dependent Terminal Node Scores", + JOURNAL = artint, + VOLUME = 8, + PAGES = "137--153", + YEAR = 1977 +} + +@ARTICLE{Newb88, + AUTHOR = "Monroe M. Newborn", + TITLE = "Unsynchronized Iteratively Deepening Parallel Alpha-Beta + Search", + JOURNAL = ieeetopami, + YEAR = 1988, + VOLUME = "PAMI-10", + NUMBER = 5, + PAGES = "687--694" +} + +@BOOK{Nils80, + AUTHOR = "Nils J. Nilsson", + TITLE = "Principles of Artificial Intelligence", + PUBLISHER = "Tioga Publishing Company", + ADDRESS = "Palo Alto, CA", + YEAR = 1980, + AVAILABLE = "ETHICS" +} + +@ARTICLE{Pear80, + AUTHOR = "Judea Pearl", + TITLE = "Asymptotical Properties of Minimax Trees and Game + Searching Procedures", + JOURNAL = artint, + VOLUME = 14, + NUMBER = 2, + PAGES = "113--138", + YEAR = 1980 +} + +@ARTICLE{Pear82, + AUTHOR = "Judea Pearl", + TITLE = "The Solution for the Branching Factor of the Alpha-Beta + Pruning Algorithm and its Optimality", + JOURNAL = cacm, + MONTH = Aug, + YEAR = 1982, + VOLUME = 25, + NUMBER = 8, + PAGES = "559--564" +} + +@ARTICLE{Pear83, + AUTHOR = "Judea Pearl", + TITLE = "On the Nature of Pathology in Game Searching", + JOURNAL = artint, + VOLUME = 20, + YEAR = 1983, + PAGES = "427--453", + AVAILABLE = "EPFL-DMA" +} + +@BOOK{Pear84, + AUTHOR = "Judea Pearl", + TITLE = "Heuristics -- Intelligent Search Strategies for Computer + Problem Solving", + PUBLISHER = "Addison-Wesley Publishing Co.", + ADDRESS = "Reading, MA", + YEAR = 1984 +} + +@PHDTHESIS{Pijl91, + AUTHOR = "Wim Pijls", + TITLE = "Shortest Paths and Game Trees", + SCHOOL = "Erasmus University Rotterdam", + YEAR = 1991, + MONTH = Nov, + ADDRESS = "Rotterdam, NL" +} + +@TECHREPORT{Pijl92a, + AUTHOR = "Wim Pijls and Arie Bruin", + TITLE = "Another View of the {SSS*} Algorithm", + INSTITUTION = "Erasmus University Rotterdam", + YEAR = 1992, + MONTH = Jan, + ADDRESS = "Rotterdam, NL", + NOTE = "Also in: Algorithms, Proceedings of the International + Symposium, SIGAL'90, Tokyo, Japan, Aug. 1990" +} + +@TECHREPORT{Pijl92b, + AUTHOR = "Wim Pijls and Arie Bruin", + TITLE = "Searching Informed Game Trees", + INSTITUTION = "Erasmus University Rotterdam", + YEAR = 1992, + ADDRESS = "Rotterdam, NL", + NOTE = "Extended abstract. Also in: Proceedings CSN '92 + (Computer Science in the Netherlands), Mathematical + Center, Amsterdam, 1992" +} + +@TECHREPORT{Pijl92c, + AUTHOR = "Wim Pijls and Arie Bruin", + TITLE = "Searching Informed Game Trees", + INSTITUTION = "Erasmus University Rotterdam", + YEAR = 1992, + MONTH = Oct, + ADDRESS = "Rotterdam, NL", + NUMBER = "EUR-CS-92-02" +} + +@INBOOK{Powl90, + AUTHOR = "Powley, C. and C. Ferguson and Richard E. Korf", + TITLE = "Parallel heuristic search: Two approaches", + BOOKTITLE = "Parallel Algorithms for Machine Intelligence and Vision", + YEAR = 1990, + PAGES = "42--65", + PUBLISHER = "Springer-Verlag", + AVAILABLE = "EPFL", + NOTE = "Edited by V. Kumar, P. S. Gopalakrishnan and L.N." +} + +@TECHREPORT{Popo83, + AUTHOR = "Fred Popowich and T. A. Marsland", + TITLE = "Parabelle: Experiences With a Parallel Chess Program", + YEAR = 1983, + MONTH = Aug, + INSTITUTION = "University of Alberta, Department of Computer Science", + ADDRESS = "Edmonton, Canada", + NUMBER = "TR 83-07", + NOTE = "\Star", + AVAILABLE = "NO" +} + +@ARTICLE{Powl91, + AUTHOR = "C. Powley and Richard E. Korf", + TITLE = "Single Agent Parallel Window Search", + JOURNAL = ieeetopami, + YEAR = 1991, + VOLUME = "PAMI-13", + NUMBER = 5, + MONTH = May, + PAGES = "466--477" +} + +@ARTICLE{Prak88, + AUTHOR = "Bettadapu Prakash and T. A. Marsland", + TITLE = "Accuracy and Savings in Depth-Limited Capture Search", + JOURNAL = "International Journal of Man-Machine Studies", + YEAR = 1988, + VOLUME = 29, + NUMBER = 6, + PAGES = "497--502", + AVAILABLE = "ETHICS" +} + +@INPROCEEDINGS{Rein85, + AUTHOR = "Alexander Reinefeld and Jonathan Schaeffer and + T. A. Marsland", + TITLE = "Information Acquisition in Minimal Window Search", + BOOKTITLE = "Proceedings of the International Joint Conference on + Artificial Intelligence (IJCAI-85)", + PAGES = "1040--1043", + VOLUME = 2, + YEAR = 1985, + AVAILABLE = "ETHICS" +} + +@BOOK{Rein89, + AUTHOR = "Alexander Reinefeld", + TITLE = "Spielbaum Suchverfahren", + PUBLISHER = "Springer Verlag", + VOLUME = "Informatik-Fachberichte 200", + YEAR = 1989, + AVAILABLE = "NO" +} + +@TECHREPORT{Reza92, + AUTHOR = "Jaleh Rezaie and Raphael Finkel", + TITLE = "A Comparison of some Parallel Game-Tree Search Algorithms", + INSTITUTION = "University of Kentucky, Department of Computer Science", + ADDRESS = "Lexington, USA", + YEAR = 1992 +} + +@ARTICLE{Rive87, + AUTHOR = "Ronald L. Rivest", + TITLE = "Game Tree Searching by Min/Max Approximation", + JOURNAL = artint, + YEAR = 1987, + VOLUME = 34, + NUMBER = 1, + PAGES = "77--96" +} + +@TECHREPORT{Roiz81, + AUTHOR = "Igor Roizen", + TITLE = "On the Average Number of Terminal Nodes Examined by + Alpha-Beta", + INSTITUTION = "University of California at Los Angeles, Cognitive + Systems Laboratory", + YEAR = 1981, + NUMBER = "UCLA-ENG-CSL-8108", + ADDRESS = "Los Angeles, CA", + NOTE = "\Star", + AVAILABLE = "NO" +} + +@ARTICLE{Roiz83, + AUTHOR = "Igor Roizen and Judea Pearl", + TITLE = "A Minimax Algorithm Better than Alpha-Beta? Yes and No", + JOURNAL = artint, + VOLUME = 21, + PAGES = "199--230", + YEAR = 1983 +} + +@ARTICLE{Scha83, + AUTHOR = "Jonathan Schaeffer", + TITLE = "The History Heuristic", + JOURNAL = iccaj, + VOLUME = 6, + NUMBER = 3, + PAGES = "16--19", + YEAR = 1983, + NOTE = "\Star", + AVAILABLE = "NO" +} + +@ARTICLE{Scha89a, + AUTHOR = "Jonathan Schaeffer", + TITLE = "Distributed Game-Tree Searching", + JOURNAL = jpdc, + VOLUME = 6, + PAGES = "90--114", + YEAR = 1989 +} + +@ARTICLE{Scha89b, + AUTHOR = "Jonathan Schaeffer", + TITLE = "The History Heuristic and Alpha-Beta Search Enhancements + in Practice", + JOURNAL = ieeetopami, + YEAR = 1989, + VOLUME = "PAMI-11", + NUMBER = 1, + MONTH = Nov, + PAGES = "1203--1212" +} + +@ARTICLE{Scha90, + AUTHOR = "Jonathan Schaeffer", + TITLE = "Conspiracy Numbers", + JOURNAL = artint, + YEAR = 1990, + VOLUME = 43, + PAGES = "67--84" +} + +@INBOOK{Schr86, + AUTHOR = {G. Schr\"ufer}, + CHAPTER = "Presence and Absence of Pathology on Game Trees", + TITLE = "Advances in Computer Chess 4", + YEAR = 1986, + NOTE = "Editor: D. F. Beal", + PAGES = "101--112", + PUBLISHER = "Pergamon Press", + AVAILABLE = "ETHICS" +} + +@PHDTHESIS{Schr88, + AUTHOR = {G. Schr\"ufer}, + TITLE = {{Minimax-Suchen Kosten, Qualit\"at und Algorithmen}}, + SCHOOL = "University of Braunschweig", + ADDRESS = "Braunschweig, West Germany", + YEAR = 1988, + NOTE = "In german, \Star", + AVAILABLE = "NO" +} + +@ARTICLE{Shan50, + AUTHOR = "Claude E. Shannon", + TITLE = "Programming a Computer for Playing Chess", + JOURNAL = "Philosophical Magazine", + VOLUME = 41, + PAGES = "256--275", + YEAR = 1950, + NOTE = "\Star", + AVAILABLE = "NO" +} + +@ARTICLE{Shen85, + AUTHOR = "Chien-Chung Shen and Wen-Hsiang Tsai", + TITLE = "A Graph Matching Approach to Optimal Task Assignment + in Distributed Computing Systems Using a Minimax Criterion", + JOURNAL = ieeetoc, + VOLUME = "C-34", + MONTH = Mar, + YEAR = 1985, + PAGES = "197--203", + AVAILABLE = "EPFL-LITH" +} + +@ARTICLE{Shin91, + AUTHOR = "Rajjan Shinghal and Sofia Shved", + TITLE = "Proposed Modifications to Parallel State Space + Search of Game Trees", + JOURNAL = ijprai, + NUMBER = 5, + VOLUME = "5", + PAGES = "809--833", + YEAR = 1991, + AVAILABLE = "ETHICS" +} + +@ARTICLE{Slag69, + AUTHOR = "James H. Slagle and John K. Dixon", + TITLE = "Experiments With SOme Programs That Search Game Trees", + JOURNAL = jacm, + VOLUME = 16, + NUMBER = 2, + YEAR = 1969, + MONTH = Apr, + PAGES = "189--207" +} + +@INPROCEEDINGS{Stei90, + AUTHOR = "Igor Steinberg and Marvin Solomon", + TITLE = "Searching Game Trees in Parallel", + BOOKTITLE = "International Conference on Parallel Processing", + PAGES = "III-9 -- III-17", + YEAR = 1990, + NOTE = "\Star", + AVAILABLE = "NO" +} + +@ARTICLE{Stoc79, + AUTHOR = "G. C. Stockman", + TITLE = "A Minimax Algorithm Better than alpha-beta?", + JOURNAL = artint, + VOLUME = 12, + NUMBER = 2, + PAGES = "179--196", + YEAR = 1979 +} + +@ARTICLE{Tars83, + AUTHOR = "M. Tarsi", + TITLE = "Optimal Search on Some Game Trees", + JOURNAL = jacm, + YEAR = 1983, + VOLUME = 30, + PAGES = "389--396", + MONTH = Jul, + NOTE = "Also as Tech. Report UCLA-ENG-CSL-8108" +} + +@INPROCEEDINGS{Vorn87, + AUTHOR = "Oliver Vornberger and Burkhard Monien", + TITLE = "Parallel Alpha-Beta versus Parallel {SSS*}", + BOOKTITLE = "IFIP Conference on Distributed Processing", + ADDRESS = "Amsterdam, NL", + PUBLISHER = "North-Holland", + PAGES = "613--625", + MONTH = Oct, + YEAR = 1987, + AVAILABLE = "ETHICS" +} diff --git a/programs/minimax.dvi b/programs/minimax.dvi new file mode 100644 index 0000000..9b00755 Binary files /dev/null and b/programs/minimax.dvi differ diff --git a/programs/pentopt.htm b/programs/pentopt.htm new file mode 100644 index 0000000..9cc5788 --- /dev/null +++ b/programs/pentopt.htm @@ -0,0 +1,6723 @@ +<html> +<head> +<title>How to optimize for the Pentium family of microprocessors</title> +<style><!-- + body{font-family:arial,sans-serif;color:black,background-color:"#F0FFE0"} + p{font-family:arial,sans-serif;} + ol{font-family:arial,sans-serif;} + ul{font-family:arial,sans-serif;} + pre{font-family:courier,monospace} + kbd{font-family:courier,monospace;font-weight:540} + h1{font-size:"300%";font-weight:700;text-align:center} + h2{font-size:"150%";font-weight:600;text-align:left;padding-top:1em} + h3{font-size:"110%";font-weight:600;text-align:left} + h4{font-size:"100%";font-weight:500;text-align:left;text-decoration:underline} + td.a2{font-size:"150%";font-weight:600} + td.a3{font-size:"110%";font-weight:600} + td.a4{font-size:"100%";font-weight:600} +--></style> +</head> + +<body text="#000000" bgcolor="#F0FFE0" link="#0000E0" vlink="#E000E0" alink="#FF0000"> +<center><h1>How to optimize for the Pentium<br> +family of microprocessors</h1> +<p> +<small>Copyright © 1996, 2000 by Agner Fog. Last modified 2000-07-03.</small> +</center> +<p> </p> + +<h2>Contents</h2> +<ol> +<li><a href="#1">Introduction</a> +<li><a href="#2">Literature</a> +<li><a href="#3">Calling assembly functions from high level language</a> +<li><a href="#4">Debugging and verifying</a> +<li><a href="#5">Memory model</a> +<li><a href="#6">Alignment</a> +<li><a href="#7">Cache</a> +<li><a href="#8">First time versus repeated execution</a> +<li><a href="#9">Address generation interlock (PPlain and PMMX)</a> +<li><a href="#10">Pairing integer instructions (PPlain and PMMX)</a> + <ol><li><a href="#10_1">Perfect pairing</a> + <li><a href="#10_2">Imperfect pairing</a> + </ol> +<li><a href="#11">Splitting complex instructions into simpler ones (PPlain and PMMX)</a> +<li><a href="#12">Prefixes (PPlain and PMMX)</a> +<li><a href="#13">Overview of PPro, PII and PIII pipeline</a> +<li><a href="#14">Instruction decoding (PPro, PII and PIII)</a> +<li><a href="#15">Instruction fetch (PPro, PII and PIII)</a> +<li><a href="#16">Register renaming (PPro, PII and PIII)</a> + <ol><li><a href="#16_1">Eliminating dependencies</a> + <li><a href="#16_2">Register read stalls</a></ol> +<li><a href="#17">Out of order execution (PPro, PII and PIII)</a> +<li><a href="#18">Retirement (PPro, PII and PIII)</a> +<li><a href="#19">Partial stalls (PPro, PII and PIII)</a> + <ol><li><a href="#19_1">Partial register stalls</a> + <li><a href="#19_2">Partial flags stalls</a> + <li><a href="#19_3">Flags stalls after shifts and rotates</a> + <li><a href="#19_4">Partial memory stalls</a></ol> +<li><a href="#20">Dependency chains (PPro, PII and PIII)</a> +<li><a href="#21">Searching for bottlenecks (PPro, PII and PIII)</a> +<li><a href="#22">Jumps and branches (all processors)</a> + <ol><li><a href="#22_1">Branch prediction in PPlain</a> + <li><a href="#22_2">Branch prediction in PMMX, PPro, PII and PIII</a> + <li><a href="#22_3">Avoiding jumps (all processors)</a> + <li><a href="#22_4">Avoiding conditional jumps by using flags (all processors)</a> + <li><a href="#22_5">Replacing conditional jumps by conditional moves (PPro, PII and PIII)</a></ol> +<li><a href="#23">Reducing code size (all processors)</a> +<li><a href="#24">Scheduling floating point code (PPlain and PMMX)</a> +<li><a href="#25">Loop optimization (all processors)</a> + <ol><li><a href="#25_1">Loops in PPlain and PMMX</a> + <li><a href="#25_2">Loops in PPro, PII and PIII</a></ol> +<li><a href="#26">Problematic Instructions</a> + <ol><li><a href="#26_1">XCHG (all processors)</a> + <li><a href="#26_2">Rotates through carry (all processors)</a> + <li><a href="#26_3">String instructions (all processors)</a> + <li><a href="#26_4">Bit test (all processors)</a> + <li><a href="#26_5">Integer multiplication (all processors)</a> + <li><a href="#26_6">WAIT instruction (all processors)</a> + <li><a href="#26_7">FCOM + FSTSW AX (all processors)</a> + <li><a href="#26_8">FPREM (all processors)</a> + <li><a href="#26_9">FRNDINT (all processors)</a> + <li><a href="#26_10">FSCALE and exponential function (all processors)</a> + <li><a href="#26_11">FPTAN (all processors)</a> + <li><a href="#26_12">FSQRT (PIII)</a> + <li><a href="#26_13">MOV [MEM], ACCUM (PPlain and PMMX)</a> + <li><a href="#26_14">TEST instruction (PPlain and PMMX)</a> + <li><a href="#26_15">Bit scan (PPlain and PMMX)</a> + <li><a href="#26_16">FLDCW (PPro, PII and PIII)</a> + </ol> +<li><a href="#27">Special topics</a> + <ol><li><a href="#27_1">LEA instruction (all processors)</a> + <li><a href="#27_2">Division (all processors)</a> + <li><a href="#27_3">Freeing floating point registers (all processors)</a> + <li><a href="#27_4">Transitions between floating point and MMX instructions PMMX, PII and PIII)</a> + <li><a href="#27_5">Converting from floating point to integer (All processors)</a> + <li><a href="#27_6">Using integer instructions to do floating point operations (All processors)</a> + <li><a href="#27_7">Using floating point instructions to do integer operations (PPlain and PMMX)</a> + <li><a href="#27_8">Moving blocks of data (All processors)</a> + <li><a href="#27_9">Self-modifying code (All processors)</a> + <li><a href="#27_10">Detecting processor type (All processors)</a> + </ol> +<li><a href="#28">List of instruction timings for PPlain and PMMX</a> + <ol><li><a href="#28_1">Integer instructions</a> + <li><a href="#28_2">Floating point instructions</a> + <li><a href="#28_3">MMX instructions (PMMX)</a></ol> +<li><a href="#29">List of instruction timings and micro-op breakdown for PPro, PII and PIII</a> + <ol><li><a href="#29_1">Integer instructions</a> + <li><a href="#29_2">Floating point instructions</a> + <li><a href="#29_3">MMX instructions (PII and PIII)</a> + <li><a href="#29_4">XMM instructions (PIII)</a> + </ol> +<li><a href="#30">Testing speed</a> +<li><a href="#31">Comparison of the different microprocessors</a> +</ol> + +<p> </p> +<h2><a name="1">1</a>. Introduction</h2> +<p>This manual describes in detail how to write optimized assembly language +code, with particular focus on the Pentium® family of microprocessors. +<p> +Most of the information herein is based on my own research. Many people have +sent me useful information and corrections for this manual, and I keep +updating it whenever I have new important information. This manual is +therefore more accurate, detailed, comprehensive and exact than any other +source of information, and it contains many details not found anywhere else. +This information will enable you in many cases to calculate exactly how many +clock cycles a piece of code will take. I do not claim, though, that all +information in this manual is exact: Some timings etc. can be difficult or +impossible to measure exactly, and I do not have access to the inside information +on technical implementations that the writers of Intel manuals have. +<p> +The following versions of Pentium processors are discussed in this manual:<p> +<table border=1> +<tr><td class="a3">abbreviation</td><td class="a3">name</td></tr> +<tr><td>PPlain</td><td>plain old Pentium (without MMX)</td></tr> +<tr><td>PMMX</td><td>Pentium with MMX</td></tr> +<tr><td>PPro</td><td>Pentium Pro</td></tr> +<tr><td>PII</td><td>Pentium II (including Celeron and Xeon)</td></tr> +<tr><td>PIII</td><td>Pentium III (including variants)</td></tr> +</table> +<p> +The assembly language syntax used in this manual is MASM 5.10 syntax. +There is no official standard for X86 assembly language, but this is the +closest you can get to a de facto standard since most assemblers have a +MASM 5.10 compatible mode. (I do not recommend using MASM version 5.10 though, +because it has a serious bug in 32 bit mode. Use TASM or a later version of MASM). +<p> +Some of the remarks in this manual may seem like a criticism of Intel. This should not be +taken to mean that other brands are better. The Pentium family of microprocessors +compare well with competing brands, they are better documented, and have better +testability features. For these reasons, no competing brand has been subjected to the same +level of independent research by me or by anybody else. +<p> +Programming in assembly language is much more difficult than high level language. Making +bugs is very easy, and finding them is very difficult. Now you have been warned! It is +assumed that the reader is already experienced in assembly programming. If not, then +please read some books on the subject and get some programming experience before you +begin to do complicated optimizations. +<p> +The hardware design of the PPlain and PMMX chips has many features which are +optimized specifically for some commonly used instructions or instruction combinations, +rather than using general optimization methods. Consequently, the rules for optimizing +software for this design are complicated and have many exceptions, but the possible gain +in performance may be substantial. The PPro, PII and PIII processors have a very +different design where the processor takes care of much of the optimization work by +executing instructions out of order, but the more complicated design of these processors +generate many potential bottlenecks, so there may be a lot to gain +by optimizing manually for these processors. The Pentium 4 processor has yet +another design, and the optimization guidelines for Pentium 4 are quite different +from previous versions. This manual does not cover the Pentium 4 - the reader is +referred to manuals from Intel. +<p> +Before you start to convert your code to assembly, make sure that your algorithm is optimal. +Often you can improve a piece of code much more by improving the algorithm than by +converting it to assembly code. +<p> +Next, you have to identify the critical parts of your program. Often more than 99% of the +CPU time is spent in the innermost loop of a program. In this case you should optimize only +this loop and leave everything else in high level language. Some assembly programmers +waste a lot of energy optimizing the wrong parts of their programs, the only significant effect +of their effort being that the programs become more difficult to debug and maintain! +<p> +If it is not obvious where the critical parts of your program are then you may use a profiler to +find them. If it turns out that the bottleneck is disk access, then you may modify your +program to make disk access sequential in order to improve disk caching, rather than +turning to assembly programming. If the bottleneck is graphics output then you may look for +a way of reducing the number of calls to graphic procedures. +<p> +Some high level language compilers offer relatively good optimization for specific +processors, but further optimization by hand can usually make it much better. +<p> +Please don't send your programming questions to me. I am not gonna do your homework +for you! +<p> +Good luck with your hunt for nanoseconds! +<p> +<h2><a name="2">2</a>. Literature</h2><p> +A lot of useful literature and tutorials can be downloaded for free from Intel's www site or +acquired in print or on CD-ROM. It is recommended that you study this literature in order to +get acquainted with the microprocessor architecture. However, the documents from Intel are +not always accurate - especially the tutorials have many errors (evidently, they haven't +tested their own examples). +<p> +I will not give the URL's here because the file locations change very often. You can find the +documents you need by using the search facilities at: +<a href="http://developer.intel.com" target="external">developer.intel.com</a> or follow the +links from <a href="http://www.agner.org/assem">www.agner.org/assem</a> +<p> +Some documents are in .PDF format. If you don't have software for viewing or printing .PDF +files, then you may download the Acrobat file reader from <a href="http://www.adobe.com" target="external">www.adobe.com</a> +<p> +The use of MMX and XMM (SIMD) instructions for optimizing specific applications are described in several +application notes. The instruction set is described in various manuals and tutorials. +<p> +VTUNE is a software tool from Intel for optimizing code. I have not tested it and can +therefore not give any evalutation of it here. +<p> +A lot of other sources than Intel also have useful information. These sources are listed in +the FAQ for the newsgroup comp.lang.asm.x86. For other internet ressources follow the +links from <a href="http://www.agner.org/assem">www.agner.org/assem</a> +<p> +<h2><a name="3">3</a>. Calling assembly functions from high level language</h2><p> +You can either use inline assembly or code a subroutine entirely in assembly language and +link it into your project. If you choose the latter option, then it is recommended that you use +a compiler which is capable of translating high level code directly to assembly. This assures +that you get the function calling method right. Most C++ compilers can do this. +<p> +The methods for function calling and name mangling can be quite complicated. There are +many different calling conventions, and the different brands of compilers are not compatible +in this respect. If you are calling assembly language subroutines from C++, then the best +method in terms of consistency and compatibility is to declare your functions <kbd>extern "C"</kbd> +and <kbd>_cdecl</kbd>. The assembly code must then have the function name prefixed by an +underscore (<kbd>_</kbd>) and be assembled with case sensitivity on externals (option -mx). +<p> +If you need to make overloaded functions, overloaded operators, member +functions, and other C++ specialties then you have to code it in C++ first and +make your compiler translate it to assembly in order to get the right linking +information and calling method. These details are different for different brands +of compilers. If you want an assembly function with any other calling method +than <kbd>extern "C"</kbd> and <kbd>_cdecl</kbd> to be callable from code +compiled with different compilers then you need to give it one public name +for each compiler. For example an overloaded square function: +<pre> ; int square (int x); + SQUARE_I PROC NEAR ; integer square function + @square$qi LABEL NEAR ; link name for Borland compiler + ?square@@YAHH@Z LABEL NEAR ; link name for Microsoft compiler + _square__Fi LABEL NEAR ; link name for Gnu compiler + PUBLIC @square$qi, ?square@@YAHH@Z, _square__Fi + MOV EAX, [ESP+4] + IMUL EAX + RET + SQUARE_I ENDP + + ; double square (double x); + SQUARE_D PROC NEAR ; double precision float square function + @square$qd LABEL NEAR ; link name for Borland compiler + ?square@@YANN@Z LABEL NEAR ; link name for Microsoft compiler + _square__Fd LABEL NEAR ; link name for Gnu compiler + PUBLIC @square$qd, ?square@@YANN@Z, _square__Fd + FLD QWORD PTR [ESP+4] + FMUL ST(0), ST(0) + RET + SQUARE_D ENDP</pre> +<p> +The way of transferring parameters depends on the calling convention:</pre><p> +<table border=1 cellpadding=1 cellspacing=1><tr> +<td class="a3"> calling convention </td> +<td class="a3"> parameter order on stack </td> +<td class="a3"> parameters removed by </td></tr> +<tr><td> _cdecl </td><td> first par. at low address +</td><td> caller </td></tr><tr><td> _stdcall </td><td> + first par. at low address </td><td> subroutine </td></tr> +<tr><td> _fastcall </td><td> compiler specific +</td><td> subroutine </td></tr> +<tr><td> _pascal </td><td> first par. at high address +</td><td> subroutine </td> +</tr></table> +<p> +<u>Register usage in 16 bit mode DOS or Windows, C or C++:</u><br> +16-bit return value in <kbd>AX</kbd>, 32-bit return value in <kbd>DX:AX</kbd>, +floating point return value in <kbd>ST(0)</kbd>. Registers <kbd>AX, BX, CX, +DX, ES</kbd> and arithmetic flags may be changed by the procedure; all other +registers must be saved and restored. A procedure can rely on <kbd>SI, DI, BP, DS</kbd> +and <kbd>SS</kbd> being unchanged across a call to another procedure. +<p> +<u>Register usage in 32 bit Windows, C++ and other programming languages:</u><br> +Integer return value in <kbd>EAX</kbd>, floating point return value in <kbd>ST(0)</kbd>. +Registers <kbd>EAX, ECX, EDX</kbd> (not <kbd>EBX</kbd>) may be changed by the procedure; all other +registers must be saved and restored. Segment registers cannot be changed, not even +temporarily. <kbd>CS, DS, ES,</kbd> and <kbd>SS</kbd> all point to the flat segment group. <kbd>FS</kbd> is used by the +operating system. <kbd>GS</kbd> is unused, but reserved. Flags may be changed by the procedure +with the following restrictions: The direction flag is 0 by default. The direction flag may be +set temporarily, but must be cleared before any call or return. The interrupt flag cannot be +cleared. The floating point register stack is empty at the entry of a procedure and must be +empty at return, except for <kbd>ST(0)</kbd> if it is used for return value. MMX registers may be +changed by the procedure and if so cleared by <kbd>EMMS</kbd> before returning and before calling any +other procedure that may use floating point registers. All XMM registers may be modified +by procedures. Rules for passing parameters and return values in XMM registers +are described in Intel's application note AP 589. A procedure can rely on +<kbd>EBX, ESI, EDI, EBP</kbd> and all segment registers being unchanged across +a call to another procedure. +<p> + +<h2><a name="4">4</a>. Debugging and verifying</h2><p> +Debugging assembly code can be quite hard and frustrating, as you probably already have +discovered. I would recommend that you start with writing the piece of code you want to +optimize as a subroutine in a high level language. Next, write a test program that will test +your subroutine thoroughly. Make sure the test program goes into all branches and +boundary cases. +<p> +When your high level language subroutine works with your test program then you are ready +to translate the code to assembly language. +<p> +Now you can start to optimize. Each time you have made a modification you should run it +on the test program to see if it works correctly. +Number all your versions and save them so that you can go back and test them again in +case you discover an error that the test program didn't catch (such as writing to a wrong +address). +<p> +Test the speed of the most critical part of your program with the method described in +chapter <a href="#30">30</a> or with a test program. If the code is significantly slower than expected, then the +most probable causes are: cache misses (chapter <a href="#7">7</a>), misaligned +operands (chapter <a href="#6">6</a>), first +time penalty (chapter <a href="#8">8</a>), branch mispredictions +(chapter <a href="#22">22</a>), instruction fetch problems +(chapter <a href="#15">15</a>), register read stalls (<a href="#16">16</a>), + or long dependency chains (chapter <a href="#20">20</a>). +<p> +Highly optimized code tends to be very difficult to read and understand for others, and even +for yourself when you get back to it after some time. In order to make it possible to maintain +the code it is important that you organize it into small logical units (procedures or macros) +with a well-defined interface and appropriate comments. The more complicated the code is +to read, the more important is a good documentation. +<p> +<h2><a name="5">5</a>. Memory model</h2><p> +The Pentiums are designed primarily for 32 bit code, and the performance is +inferior on 16 bit code. Segmenting your code and data also degrades performance +significantly, so you should generally prefer 32 bit flat mode, and an operating +system which supports this mode. The code examples shown in this +manual assume a 32 bit flat memory model, unless otherwise specified. +<p> +<h2><a name="6">6</a>. Alignment</h2><p> +All data in RAM should be aligned to addresses divisible by 2, 4, 8, or 16 according to this +scheme: +<table border=1 cellpadding=1 cellspacing=1><tr><td> + +</td><td colspan=2 align=center class="a3">alignment</td></tr> +<tr><td align=center class="a3"> operand size </td> +<td align=center class="a3"> PPlain and PMMX </td> +<td align=center class="a3"> PPro, PII and PIII </td></tr> +<tr><td> 1 (byte) </td> +<td align=center>1</td><td align=center>1</td></tr> +<tr><td> 2 (word) </td><td align=center>2</td> +<td align=center>2</td></tr> +<tr><td> 4 (dword) </td> +<td align=center align=center>4</td><td align=center>4</td></tr> +<tr><td> 6 (fword) </td> +<td align=center>4</td><td align=center>8</td></tr> +<tr><td> 8 (qword) </td> +<td align=center>8</td><td align=center>8</td></tr> +<tr><td> 10 (tbyte) </td> +<td align=center>8</td><td align=center>16</td></tr> +<tr><td> 16 (oword) </td> +<td align=center>n.a.</td><td align=center>16</td></tr> +</table> +<p> +On PPlain and PMMX, misaligned data will take at least 3 clock cycles extra to access if a 4 +byte boundary is crossed. The penalty is higher when a cache line boundary is crossed. +<p> +On PPro, PII and PIII, misaligned data will cost you 6-12 clocks extra when a +cache line boundary is crossed. Misaligned operands smaller than 16 bytes that +do not cross a 32 byte boundary give no penalty. +<p> +Aligning data by 8 or 16 on a dword size stack may be a problem. A common method is to set up +an aligned frame pointer. A function with aligned local data may look like this: +<pre>_FuncWithAlign PROC NEAR + PUSH EBP ; prolog code + MOV EBP, ESP + AND EBP, -8 ; align frame pointer by 8 + FLD DWORD PTR [ESP+8] ; function parameter + SUB ESP, LocalSpace + 4 ; allocate local space + FSTP QWORD PTR [EBP-LocalSpace] ; store something in aligned space + ... + ADD ESP, LocalSpace + 4 ; epilog code. restore ESP + POP EBP ; (AGI stall on PPlain/PMMX) + RET +_FuncWithAlign ENDP</pre> +<p> +While aligning data is always important, aligning code is not necessary on the PPlain and +PMMX. Principles for aligning code on PPro, PII and PIII are explained in chapter <a href="#15">15</a>. +<p> +<h2><a name="7">7</a>. Cache</h2><p> +The PPlain and PPro have 8 kb of on-chip cache (level one cache) for code, and 8 kb for +data. The PMMX, PII and PIII have 16 kb for code and 16 kb for data. Data in the level 1 cache +can be read or written to in just one clock cycle, whereas a cache miss may cost many +clock cycles. It is therefore important that you understand how the cache works in order to +use it most efficiently. +<p> +The data cache consists of 256 or 512 lines of 32 bytes each. Each time you read a data +item which is not cached, the processor will read an entire cache line from memory. The +cache lines are always aligned to a physical address divisible by 32. When you have read a +byte at an address divisible by 32, then the next 31 bytes can be read or written to at almost +no extra cost. You can take advantage of this by arranging data items which are used near +each other together into aligned blocks of 32 bytes of memory. If, for example, you have a +loop which accesses two arrays, then you may interleave the two arrays into one array of +structures, so that data which are used together are also stored together. +<p> +If the size of an array or other data structure is a multiple of 32 bytes, then you should +preferably align it by 32. +<p> +The cache is set-associative. This means that a cache line can not be assigned to an +arbitrary memory address. Each cache line has a 7-bit set-value which must match bits 5 +through 11 of the physical RAM address (bit 0-4 define the 32 bytes within a cache line). +The PPlain and PPro have two cache lines for each of the 128 set-values, so there are two +possible cache lines to assign to any RAM address. The PMMX, PII and PIII have four. +<p> +The consequence of this is that the cache can hold no more than two or four different data +blocks which have the same value in bits 5-11 of the address. You can determine if two +addresses have the same set-value by the following method: Strip off the lower 5 bits of +each address to get a value divisible by 32. If the difference between the two truncated +addresses is a multiple of 4096 (=1000H), then the addresses have the same set-value. +<p> +Let me illustrate this by the following piece of code, where ESI holds an address divisible by +32: + +<pre>AGAIN: MOV EAX, [ESI] + MOV EBX, [ESI + 13*4096 + 4] + MOV ECX, [ESI + 20*4096 + 28] + DEC EDX + JNZ AGAIN</pre> +<p> +The three addresses used here all have the same set-value because the differences +between the truncated addresses are multipla of 4096. This loop will perform very poorly on +the PPlain and PPro. At the time you read <kbd>ECX</kbd> there is no free cache +line with the proper set-value so the processor takes the least recently used +of the two possible cache lines, that is the one which was used for <kbd>EAX</kbd>, and +fills it with the data from <kbd>[ESI+20*4096]</kbd> to +<kbd>[ESI+20*4096+31]</kbd> and reads <kbd>ECX</kbd>. +Next, when reading <kbd>EAX</kbd>, you find that the cache +line that held the value for <kbd>EAX</kbd> has now been discarded, so you +take the least recently used +line, which is the one holding the <kbd>EBX</kbd> value, and so on.. +You have nothing but cache misses and the loop takes something like 60 clock +cycles. If the third line is changed to: +<pre> MOV ECX, [ESI + 20*4096 + 32]</pre> +<p> +then we have crossed a 32 byte boundary, so that we do not have the same set-value as in +the first two lines, and there will be no problem assigning a cache line to each of the three +addresses. The loop now takes only 3 clock cycles (except for the first time) - a very +considerable improvement! As already mentioned, the PMMX, PII and PIII have 4-way caches +so that you have four cache lines with the same set-value. (Some Intel documents +erroneously say that the PII cache is 2-way). +<p> +It may be very difficult to determine if your data addresses have the same set-values, +especially if they are scattered around in different segments. The best thing you can do to +avoid problems of this kind is to keep all data used in the critical part or your program within +one contiguous block not bigger than the cache, or two contiguous blocks no bigger than +half that size (for example one block for static data and another block for data on the stack). +This will make sure that your cache lines are used optimally. +<p> +If the critical part of your code accesses big data structures or random data addresses, then +you may want to keep all frequently used variables (counters, pointers, control variables, +etc.) within a single contiguous block of max 4 kbytes so that you have a complete set of +cache lines free for accessing random data. Since you probably need stack space anyway +for subroutine parameters and return addresses, the best thing is to copy all frequently +used static data to dynamic variables on the stack, and copy them back again outside the +critical loop if they have been changed. +<p> +Reading a data item which is not in the level one cache causes an entire cache line to be +filled from the level two cache, which takes approximately 200 ns (that is 20 clocks on a +100 MHz system or 40 clocks on a 200 MHz system), but the bytes you ask for first are +available already after 50-100 ns. If the data item is not in the level two cache either, then +you will get a delay of something like 200-300 ns. This delay will be somewhat longer if you +cross a DRAM page boundary. (The size of a DRAM page is 1 kb for 4 and 8 MB 72 pin +RAM modules, and 2 kb for 16 and 32 MB modules). +<p> +When reading big blocks of data from memory, the speed is limited by the time it takes to fill +cache lines. You can sometimes improve speed by reading data in a non-sequential order: +before you finish reading data from one cache line start reading the first item from the next +cache line. This method can increase reading speed by 20 - 40% when reading from main +memory or level 2 cache on PPlain and PMMX, and from level 2 cache on PPro, PII and PIII. A +disadvantage of this method is of course that the program code becomes extremely clumsy +and complicated. For further information on this trick see <a href="http://www.intelligentfirm.com" target="external">www.intelligentfirm.com</a>. +<p> +When you write to an address which is not in the level 1 cache, then the value will go right +through to the level 2 cache or to the RAM (depending on how the level 2 cache is set up) +on the PPlain and PMMX. This takes approximately 100 ns. If you write eight or more times +to the same 32 byte block of memory without also reading from it, and the block is not in the +level one cache, then it may be advantageous to make a dummy read from the block first to +load it into a cache line. All subsequent writes to the same block will then go to the cache +instead, which takes only one clock cycle. On PPlain and PMMX, there is sometimes a +small penalty for writing repeatedly to the same address without reading in between. +<p> +On PPro, PII and PIII, a write miss will normally load a cache line, but it is possible to setup an +area of memory to perform differently, for example video RAM (See Pentium Pro Family +Developer's Manual, vol. 3: Operating System Writer's Guide"). +<p> +Other ways of speeding up memory reads and writes are discussed in chapter +<a href="#27_8">27.8</a> below. +<p> +The PPlain and PPro have two write buffers, PMMX, PII and PIII have four. On the PMMX, PII and +PIII you may have up to four unfinished writes to uncached memory without delaying the +subsequent instructions. Each write buffer can handle operands up to 64 bits wide. +<p> +Temporary data may conveniently be stored on the stack because the stack area is very +likely to be in the cache. However, you should be aware of the alignment problems +if your data elements are bigger than the stack word size. +<p> +If the life ranges of two data structures do not overlap, then they may share +the same RAM area to increase cache efficiency. This is consistent with the +common practice of allocating space for temporary variables on the stack. +<p> +Storing temporary data in registers is of course even more efficient. Since registers is a +scarce ressource you may want to use <kbd>[ESP]</kbd> rather than <kbd>[EBP]</kbd> for addressing data on the +stack, in order to free <kbd>EBP</kbd> for other purposes. Just don't forget that the value of <kbd>ESP</kbd> +changes every time you do a <kbd>PUSH</kbd> or <kbd>POP</kbd>. +(You cannot use <kbd>ESP</kbd> under 16-bit Windows +because the timer interrupt will modify the high word of <kbd>ESP</kbd> at unpredictable places in your +code.) +<p> +There is a separate cache for code, which is similar to the data cache. The size of the code +cache is 8 kb on PPlain and PPro and 16 kb on the PMMX, PII and PIII. It is important that the +critical part of your code (the innermost loops) fit in the code cache. Frequently used pieces +of code or routines which are used together should preferable be stored near each other. +Seldom used branches or procedures should be put away in the bottom of your code or +somewhere else. +<p> +<h2><a name="8">8</a>. First time versus repeated execution</h2><p> +A piece of code usually takes much more time the first time it is executed than when it is +repeated. The reasons are the following: +<ol> +<li>Loading the code from RAM into the cache takes longer time than executing it. +<li>Any data accessed by the code has to be loaded into the cache, which may take much +more time than executing the instructions. When the code is repeated then the data are +more likely to be in the cache. +<li>Jump instructions will not be in the branch target buffer the first time they execute, and +therefore are less likely to be predicted correctly. See chapter <a href="#22">22</a>. +<li>In the PPlain, decoding the code is a bottleneck. If it takes one clock cycle to determine +the length of an instruction, then it is not possible to decode two instructions per clock +cycle, because the processor doesn't know where the second instruction begins. The +PPlain solves this problem by remembering the length of any instruction which has +remained in the cache since last time it was executed. As a consequence of this, a set +of instructions will not pair in the PPlain the first time they are executed, unless the first +of the two instructions is only one byte long. The PMMX, PPro, PII and PIII have no penalty +on first time decoding. +</ol><p> +For these four reasons, a piece of code inside a loop will generally take much more time the +first time it executes than the subsequent times. +<p> +If you have a big loop which doesn't fit into the code cache then you will get penalties all the +time because it doesn't run from the cache. You should therefore try to reorganize the loop +to make it fit into the cache. +<p> +If you have very many jumps, calls, and branches inside a loop, then you may get the +penalty of branch target buffer misses repeatedly. +<p> +Likewise, if a loop repeatedly accesses a data structure too big for the data cache, then you +will get the penalty of data cache misses all the time. +<p> +<h2><a name="9">9</a>. Address generation interlock (PPlain and PMMX)</h2><p> +It takes one clock cycle to calculate the address needed by an instruction which accesses +memory. Normally, this calculation is done at a separate stage in the pipeline while the +preceding instruction or instruction pair is executing. But if the address depends on the +result of an instruction executing in the preceding clock cycle, then you have to wait an +extra clock cycle for the address to be calculated. This is called an AGI stall. +Example:<br> +<kbd>ADD EBX,4 / MOV EAX,[EBX] ; AGI stall</kbd><br> +The stall in this example can be removed by putting some other instructions in between +<kbd>ADD EBX,4</kbd> and <kbd>MOV EAX,[EBX]</kbd> or by rewriting the code to: +<kbd>MOV EAX,[EBX+4] / ADD EBX,4</kbd> +<p> +You can also get an AGI stall with instructions which use <kbd>ESP</kbd> implicitly +for addressing, such +as <kbd>PUSH, POP, CALL,</kbd> and <kbd>RET</kbd>, if <kbd>ESP</kbd> has been +changed in the preceding clock cycle by +instructions such as <kbd>MOV, ADD,</kbd> or <kbd>SUB</kbd>. +The PPlain and PMMX have special circuitry to +predict the value of <kbd>ESP</kbd> after a stack operation so that you do not +get an AGI delay after +changing <kbd>ESP</kbd> with <kbd>PUSH, POP,</kbd> or <kbd>CALL</kbd>. +You can get an AGI stall after <kbd>RET</kbd> only if it has an +immediate operand to add to <kbd>ESP</kbd>. +<p> +Examples: +<pre>ADD ESP,4 / POP ESI ; AGI stall +POP EAX / POP ESI ; no stall, pair +MOV ESP,EBP / RET ; AGI stall +CALL L1 / L1: MOV EAX,[ESP+8] ; no stall +RET / POP EAX ; no stall +RET 8 / POP EAX ; AGI stall</pre> +<p> +The <kbd>LEA</kbd> instruction is also subject to an AGI stall if it uses a +base or index register which +has been changed in the preceding clock cycle. Example: +<pre>INC ESI / LEA EAX,[EBX+4*ESI] ; AGI stall</pre> +<p> +PPro, PII and PIII have no AGI stalls for memory reads and <kbd>LEA</kbd>, but they do have +AGI stalls for memory writes. This is not very significant unless the subsequent +code has to wait for the write to finish.<p> +<h2><a name="10">10</a>. Pairing integer instructions (PPlain and PMMX)</h2> +<h3><a name="10_1">10.1 Perfect pairing</a></h3><p> +The PPlain and PMMX have two pipelines for executing instructions, called the U-pipe and +the V-pipe. Under certain conditions it is possible to execute two instructions +simultaneously, one in the U-pipe and one in the V-pipe. This can almost double the speed. +It is therefore advantageous to reorder your instructions to make them pair. +<p> +The following instructions are pairable in either pipe: +<ul><li><kbd>MOV</kbd> register, memory, or immediate into register or memory +<li><kbd>PUSH</kbd> register or immediate, <kbd>POP</kbd> register +<li><kbd>LEA, NOP</kbd> +<li><kbd>INC, DEC, ADD, SUB, CMP, AND, OR, XOR,</kbd> +<li>and some forms of <kbd>TEST</kbd> (see chapter <a href="#26_14">26.14</a>) +</ul><p> +The following instructions are pairable in the U-pipe only: +<ul><li><kbd>ADC, SBB</kbd> +<li><kbd>SHR, SAR, SHL, SAL</kbd> with immediate count +<li><kbd>ROR, ROL, RCR, RCL</kbd> with an immediate count of 1 +</ul><p> +The following instructions can execute in either pipe but are only pairable +when in the V-pipe: +<ul><li>near call +<li>short and near jump +<li>short and near conditional jump. +</ul><p> +All other integer instructions can execute in the U-pipe only, and are not pairable. +<p> +Two consecutive instructions will pair when the following conditions are met: +<p> +<u>1.</u> The first instruction is pairable in the U-pipe and the second +instruction is pairable in the V-pipe. +<p> +<u>2.</u> The second instruction does not read or write a register which the first +instruction writes to.<br> +Examples: +<pre> MOV EAX, EBX / MOV ECX, EAX ; read after write, do not pair + MOV EAX, 1 / MOV EAX, 2 ; write after write, do not pair + MOV EBX, EAX / MOV EAX, 2 ; write after read, pair OK + MOV EBX, EAX / MOV ECX, EAX ; read after read, pair OK + MOV EBX, EAX / INC EAX ; read and write after read, pair OK</pre> +<p> +<u>3.</u> In rule 2 partial registers are treated as full registers. Example: +<pre> MOV AL, BL / MOV AH, 0</pre><p> +writes to different parts of the same register, do not pair +<p> +<u>4.</u> Two instructions which both write to parts of the flags register can pair despite rule 2 and +3. Example: +<pre> SHR EAX, 4 / INC EBX ; pair OK</pre> +<p> +<u>5.</u> An instruction which writes to the flags can pair with a conditional jump despite rule 2. +Example: +<pre> CMP EAX, 2 / JA LabelBigger ; pair OK</pre> +<p> +<u>6.</u> The following instruction combinations can pair despite the fact that they both modify the +stack pointer: +<pre> PUSH + PUSH, PUSH + CALL, POP + POP</pre> +<p> +<u><a name="10-7">7.</a></u> There are restrictions on the pairing of instructions with prefix. +There are several types of prefixes: +<ul> +<li>instructions addressing a non-default segment have a segment prefix. +<li>instructions using 16 bit data in 32 bit mode, or 32 bit data in 16 bit mode have an +operand size prefix. +<li>instructions using 32 bit base or index registers in 16 bit mode have an address size +prefix. +<li>repeated string instructions have a repeat prefix. +<li>locked instructions have a <kbd>LOCK</kbd> prefix. +<li>many instructions which were not implemented on the 8086 processor have a two byte +opcode where the first byte is <kbd>0FH</kbd>. The <kbd>0FH</kbd> byte behaves +as a prefix on the PPlain, but +not on the other versions. The most common instructions with <kbd>0FH</kbd> +prefix are: <kbd>MOVZX, +MOVSX, PUSH FS, POP FS, PUSH GS, POP GS, LFS, LGS, LSS, SETcc, BT, +BTC, BTR, BTS, BSF, BSR, SHLD, SHRD,</kbd> and <kbd>IMUL</kbd> with two operands and no +immediate operand. +</ul> +<p> +On the PPlain, a prefixed instruction can only execute in the U-pipe, except for conditional +near jumps. +<p> +On the PMMX, instructions with operand size, address size, or <kbd>0FH</kbd> +prefix can execute in +either pipe, whereas instructions with segment, repeat, or lock prefix can +only execute in the U-pipe. +<p> +<u>8.</u> An instruction which has both a displacement and immediate data is not pairable on the +PPlain and only pairable in the U-pipe on the PMMX: +<pre> MOV DWORD PTR DS:[1000], 0 ; not pairable or only in U-pipe + CMP BYTE PTR [EBX+8], 1 ; not pairable or only in U-pipe + CMP BYTE PTR [EBX], 1 ; pairable + CMP BYTE PTR [EBX+8], AL ; pairable</pre><p> + (Another problem with instructions which have both a displacement and + immediate data on the PMMX is that such instructions may be longer + than 7 bytes, which means that only one instruction can be decoded + per clock cycle, as explained in chapter <a href="#12">12</a>.) +<p> +<u>9.</u> Both instructions must be preloaded and decoded. This is explained in +chapter <a href="#8">8</a>. +<p> +<u>10.</u> There are special pairing rules for MMX instructions on the PMMX: +<ul> +<li>MMX shift, pack or unpack instructions can execute in either pipe but cannot pair with +other MMX shift, pack or unpack instructions. +<li>MMX multiply instructions can execute in either pipe but cannot pair with other MMX +multiply instructions. They take 3 clock cycles and the last 2 clock cycles can overlap +with subsequent instructions in the same way as floating point instructions can (see +chapter <a href="#24">24</a>). +<li>an MMX instruction which accesses memory or integer registers can execute only in the +U-pipe and cannot pair with a non-MMX instruction. +</ul> +<p> + +<h3><a name="10_2">10.2 Imperfect pairing</a></h3><p> +There are situations where the two instructions in a pair will not execute simultaneously, or +only partially overlap in time. They should still be considered a pair, though, because the +first instruction executes in the U-pipe, and the second in the V-pipe. No subsequent +instruction can start to execute before both instructions in the imperfect pair have finished. +<p> +Imperfect pairing will happen in the following cases: +<p> +<u>1.</u> If the second instructions suffers an AGI stall (see chapter <a href="#9">9</a>). +<p> +<u>2.</u> Two instructions cannot access the same DWORD of memory simultaneously. +The following examples assume that <kbd>ESI</kbd> is divisible by 4:<br> +<kbd> MOV AL, [ESI] / MOV BL, [ESI+1]</kbd><br> +The two operands are within the same DWORD, so they cannot execute +simultaneously. The pair takes 2 clock cycles.<br> +<kbd> MOV AL, [ESI+3] / MOV BL, [ESI+4]</kbd><br> +Here the two operands are on each side of a DWORD boundary, so they +pair perfectly, and take only one clock cycle. +<p> +<u>3.</u> Rule 2 is extended to the case where bit 2-4 is the same in the two addresses (cache +bank conflict). For DWORD addresses this means that the difference between the two +addresses should not be divisible by 32. Examples: +<pre> MOV [ESI], EAX / MOV [ESI+32000], EBX ; imperfect pairing + MOV [ESI], EAX / MOV [ESI+32004], EBX ; perfect pairing</pre> +<p> +Pairable integer instructions which do not access memory take one clock cycle to +execute, except for mispredicted jumps. <kbd>MOV</kbd> instructions to or from +memory also take +only one clock cycle if the data area is in the cache and properly aligned. There is no +speed penalty for using complex addressing modes such as scaled index registers. +<p> +A pairable integer instruction which reads from memory, does some calculation, and +stores the result in a register or flags, takes 2 clock cycles. (read/modify instructions). +<p> +A pairable integer instruction which reads from memory, does some calculation, and +writes the result back to the memory, takes 3 clock cycles. (read/modify/write +instructions). +<p> +<u>4.</u> If a read/modify/write instruction is paired with a read/modify or read/modify/write +instruction, then they will pair imperfectly. + +<p> +The number of clock cycles used is given in the following table: +<table border=1 cellpadding=1 cellspacing=1><tr> +<td align="center" class="a3"> +First instruction</td> +<td colspan=3 align="center" class="a3">Second instruction</td></tr> +<tr><td> </td><td align=center> MOV or register only +</td><td align=center> read/modify </td> +<td align=center> read/modify/write </td></tr> +<tr><td align=center> MOV or register only </td> +<td align=center> 1 </td> +<td align=center> 2 </td> +<td align=center> 3 </td></tr> +<tr><td align=center> read/modify </td> +<td align=center> 2 </td> +<td align=center> 2 </td> +<td align=center> 3 </td></tr> +<tr><td align=center> read/modify/write </td> +<td align=center> 3 </td> +<td align=center> 4 </td> +<td align=center> 5 </td></tr> +</table> + +<p>Example:<br><kbd> ADD [mem1], EAX / ADD EBX, [mem2] ; 4 clock cycles<br> ADD EBX, [mem2] / ADD [mem1], EAX ; 3 clock cycles</kbd> +<p> +<u>5.</u> When two paired instructions both take extra time due to cache misses, misalignment, +or jump misprediction, then the pair will take more time than each instruction, but less +than the sum of the two. +<p> +<u>6.</u> A pairable floating point instruction followed by <kbd>FXCH</kbd> + will make imperfect pairing if the +next instruction is not a floating point instruction. +<p> +<p>In order to avoid imperfect pairing you have to know which instructions go into the U-pipe, +and which to the V-pipe. You can find out this by looking backwards in your code and +search for instructions which are unpairable, pairable only in one of the pipes, or cannot pair +due to one of the rules above. +<p> +Imperfect pairing can often be avoided by reordering your instructions. +Example: + <br> +<pre>L1: MOV EAX,[ESI] + MOV EBX,[ESI] + INC ECX</pre><p> + +Here the two <kbd>MOV</kbd> instructions form an imperfect pair because they both access the same +memory location, and the sequence takes 3 clock cycles. You can improve the code by +reordering the instructions so that <kbd>INC ECX</kbd> pairs with one of the +<kbd>MOV</kbd> instructions. + +<pre>L2: MOV EAX,OFFSET A + XOR EBX,EBX + INC EBX + MOV ECX,[EAX] + JMP L1</pre><p> + +The pair <kbd>INC EBX / MOV ECX,[EAX]</kbd> is imperfect because the latter +instruction has an +AGI stall. The sequence takes 4 clocks. If you insert a <kbd>NOP</kbd> or any other instruction so that +<kbd>MOV ECX,[EAX]</kbd> pairs with <kbd>JMP L1</kbd> instead, then the sequence takes only 3 clocks. +<p> +<a name="imperfectpush"> +The next example is in 16 bit mode, assuming that <kbd>SP</kbd> is divisible by 4:</a> + +<pre>L3: PUSH AX + PUSH BX + PUSH CX + PUSH DX + CALL FUNC</pre><p> + +Here the <kbd>PUSH</kbd> instructions form two imperfect pairs, because both operands in each pair go +into the same dword of memory. <kbd>PUSH BX</kbd> could possibly pair perfectly +with <kbd>PUSH CX</kbd> +(because they go on each side of a DWORD boundary) but it doesn't because it has already +been paired with <kbd>PUSH AX</kbd>. The sequence therefore takes 5 clocks. If you insert a <kbd>NOP</kbd> or +any other instruction so that <kbd>PUSH BX</kbd> pairs with <kbd>PUSH CX</kbd>, +and <kbd>PUSH DX</kbd> with <kbd>CALL FUNC</kbd>, +then the sequence will take only 3 clocks. Another way to solve the problem is to make sure +that <kbd>SP</kbd> is not divisible by 4. Knowing whether <kbd>SP</kbd> is +divisible by 4 or not in 16 bit mode can +be difficult, so the best way to avoid this problem is to use 32 bit mode. + +<p> + +<h2><a name="11">11</a>. Splitting complex instructions into simpler ones (PPlain and PMMX)</h2><p> +You may split up read/modify and read/modify/write instructions to improve pairing. +Example:<br> +<kbd> ADD [mem1],EAX / ADD [mem2],EBX ; 5 clock cycles</kbd><br> +This code may be split up into a sequence which takes only 3 clock cycles: +<pre> MOV ECX,[mem1] / MOV EDX,[mem2] / ADD ECX,EAX / ADD EDX,EBX + MOV [mem1],ECX / MOV [mem2],EDX</pre><p> + +Likewise you may split up non-pairable instructions into pairable instructions: +<pre> PUSH [mem1] + PUSH [mem2] ; non-pairable</pre><p> +Split up into: +<pre> MOV EAX,[mem1] + MOV EBX,[mem2] + PUSH EAX + PUSH EBX ; everything pairs</pre><p> + +Other examples of non-pairable instructions which may be split up into simpler pairable +instructions:<br> +<kbd>CDQ</kbd> split into: <kbd>MOV EDX,EAX / SAR EDX,31</kbd><br> +<kbd>NOT EAX</kbd> change to <kbd>XOR EAX,-1</kbd><br> +<kbd>NEG EAX</kbd> split into <kbd>XOR EAX,-1 / INC EAX</kbd><br> +<kbd>MOVZX EAX,BYTE PTR [mem]</kbd> split into <kbd> XOR EAX,EAX / MOV AL,BYTE PTR [mem]</kbd><br> +<kbd>JECXZ</kbd> split into <kbd>TEST ECX,ECX / JZ</kbd><br> +<kbd>LOOP</kbd> split into <kbd>DEC ECX / JNZ</kbd><br> +<kbd>XLAT</kbd> change to <kbd>MOV AL,[EBX+EAX]</kbd> +<p> +If splitting instructions doesn't improve speed, then you may keep the complex or +nonpairable instructions in order to reduce code size. +<p> +Splitting instructions is not needed on the PPro, PII and PIII, except when the split instructions +generate fewer uops. +<p> +<h2><a name="12">12</a>. Prefixes (PPlain and PMMX)</h2><p> +An instruction with one or more prefixes may not be able to execute in the V-pipe (se +<a href="#10-7">chapter 10, sect. 7</a>), and it may take more than one clock cycle to decode. +<p> +On the PPlain, the decoding delay is one clock cycle for each prefix except for the <kbd>0FH</kbd> +prefix of conditional near jumps. +<p> +The PMMX has no decoding delay for <kbd>0FH</kbd> prefix. +Segment and repeat prefixes take one +clock extra to decode. Address and operand size prefixes take two clocks extra to decode. +The PMMX can decode two instructions per clock cycle if the first instruction has a +segment or repeat prefix or no prefix, and the second instruction has no prefix. Instructions +with address or operand size prefixes can only decode alone on the PMMX. Instructions with +more than one prefix take one clock extra for each prefix. +<p> +Address size prefixes can be avoided by using 32 bit mode. Segment prefixes can be +avoided in 32 bit mode by using a flat memory model. Operand size prefixes can be avoided +in 32 bit mode by using only 8 bit and 32 bit integers. +<p> +Where prefixes are unavoidable, the decoding delay may be masked if a preceding +instruction takes more than one clock cycle to execute. The rule for the PPlain is that any +instruction which takes N clock cycles to execute (not to decode) can 'overshadow' the +decoding delay of N-1 prefixes in the next two (sometimes three) instructions or instruction +pairs. In other words, each extra clock cycle that an instruction takes to execute can be +used to decode one prefix in a later instruction. This shadowing effect even extends across +a predicted branch. Any instruction which takes more than one clock cycle to execute, and +any instruction which is delayed because of an AGI stall, cache miss, misalignment, or any +other reason except decoding delay and branch misprediction, has a shadowing effect. +<p> +The PMMX has a similar shadowing effect, but the mechanism is different. Decoded +instructions are stored in a transparent first-in-first-out (FIFO) buffer, which can hold up to +four instructions. As long as there are instructions in the FIFO buffer you get no delay. +When the buffer is empty then instructions are executed as soon as they are decoded. The +buffer is filled when instructions are decoded faster than they are executed, i.e. when you +have unpaired or multi-cycle instructions. The FIFO buffer is emptied when instructions +execute faster than they are decoded, i.e. when you have decoding delays due to prefixes. +The FIFO buffer is empty after a mispredicted branch. The FIFO buffer can receive two +instructions per clock cycle provided that the second instruction is without prefixes and +none of the instructions are longer than 7 bytes. The two execution pipelines (U and V) can +each receive one instruction per clock cycle from the FIFO buffer. +<p> +Examples: <br> +<kbd> CLD / REP MOVSD</kbd><br> +The <kbd>CLD</kbd> instruction takes two clock cycles and can therefore overshadow the decoding +delay of the <kbd>REP</kbd> prefix. The code would take one clock cycle more if the <kbd>CLD</kbd> instruction was +placed far from the <kbd>REP MOVSD.</kbd> +<br> +<kbd> CMP DWORD PTR [EBX],0 / MOV EAX,0 / SETNZ AL</kbd><br> +The <kbd>CMP</kbd> instruction takes two clock cycles here because it is a read/modify instruction. The +<kbd>0FH</kbd> prefix of the <kbd>SETNZ</kbd> instruction is decoded during the second clock cycle of the <kbd>CMP </kbd> +instruction, so that the decoding delay is hidden on the PPlain (The PMMX has no +decoding delay for the <kbd>0FH</kbd>). +<p> +Prefix penalties in PPro, PII and PIII are described in chapter <a href="#14">14</a>. +<p> +<h2><a name="13">13</a>. Overview of PPro, PII and PIII pipeline</h2><p> +The architecture of the PPro, PII and PIII microprocessors is well explained and illustrated in +various manuals and tutorials from Intel. It is recommended that you study this material in +order to get an understanding of how these microprocessors work. I will describe the +structure briefly here with particular focus on those elements that are important for +optimizing code. +<p> +Instruction codes are fetched from the code cache in aligned 16-byte chunks into a double +buffer that can hold two 16-byte chunks. The code is passed on from the double buffer to +the decoders in blocks which I will call ifetch blocks (instruction fetch blocks). The ifetch +blocks are usually 16 bytes long, but not aligned. The purpose of the double-buffer is to +make it possible to decode an instruction that crosses a 16-byte boundary (i.e. an address +divisible by 16). +<p> +The ifetch block goes to the instruction length decoder, which determines where each +instruction begins and ends, and next to the instruction decoders. There are three decoders +so that you can decode up to three instructions in each clock cycle. A group of up to three +instructions that are decoded in the same clock cycle is called a decode group. +<p> +The decoders translate instructions into micro-operations, abbreviated uops. Simple +instructions generate only one uop, while more complex instructions may generate several +uops. For example, the instruction <kbd>ADD EAX,[MEM]</kbd> is decoded into two uops: one for +reading the source operand from memory, and one for doing the addition. The purpose of +splitting instructions into uops is to make the handling later in the system more effective. +<p> +The three decoders are called D0, D1, and D2. D0 can handle all instructions, while D1 +and D2 can handle only simple instructions that generate one uop. +<p> +The uops from the decoders go via a short queue to the register allocation table (RAT). The +execution of uops work on temporary registers which are later written to the permanent +registers <kbd>EAX, EBX</kbd>, etc. The purpose of the RAT is to tell the uops which temporary +registers to use, and to allow register renaming (see later). +<p> +After the RAT, the uops to go the reorder buffer (ROB). The purpose of the ROB is to +enable out-of-order execution. A uop stays in the reservation station until the operands it +needs are available. If an operand for one uop is delayed because a previous uop that +generates the operand is not finished yet, then the ROB may find another uop later in the +queue that can be executed in the meantime in order to save time. +<p> +The uops that are ready for execution are sent to the execution units, which are clustered +around five ports: Port 0 and 1 can handle arithmetic operations, jumps, etc. Port 2 takes +care of all reads from memory, port 3 calculates addresses for memory writes, and port 4 +does memory writes. +<p> +When an instruction has been executed then it is marked in the ROB as ready to retire. It then goes to +the retirement station. Here the contents of the temporary registers used by the uops are +written to the permanent registers. While uops can be executed out of order, they must be +retired in order. +<p> +In the following chapters, I will describe in detail how to optimize the throughput of each step +in the pipeline. +<p> +<h2><a name="14">14</a>. Instruction decoding (PPro, PII and PIII)</h2><p> +I am describing instruction decoding before instruction fetching here because you need to +know how the decoders work in order to understand the possible delays in instruction +fetching. +<p> +The decoders can handle three instructions per clock cycle, but only when certain +conditions are met. Decoder D0 can handle any instruction that generates up to 4 uops in a +single clock cycle. Decoders D1 and D2 can handle only instructions that generate 1 uop +and these instructions can be no more than 8 bytes long. +<p> +To summarize the rules for decoding two or three instructions in the same clock cycle: +<ul> +<li>The first instruction (D0) generates no more than 4 uops, +<li>The second and third instructions generate no more than 1 uop each, +<li>The second and third instructions are no more than 8 bytes long each, +<li>The instructions must be contained within the same 16 bytes ifetch block (see next +chapter). +</ul><p> +There is no limit to the length of the instruction in D0 (despite Intel manuals saying +something else), as long as the three instructions fit into one 16 bytes ifetch block. +<p> +An instruction that generates more than 4 uops takes two or more clock cycles to decode, +and no other instructions can decode in parallel. +<p> +It follows from the rules above that the decoders can produce a maximum of 6 uops per +clock cycle if the first instruction in each decode group generates 4 uops and the next two +generate 1 uop each. The minimum production is 2 uops per clock cycle, which you get +when all instructions generate 2 uops each, so that D1 and D2 are never used. +<p> +For maximum throughput, it is recommended that you order your instructions according to +the 4-1-1 pattern: instructions that generate 2 to 4 uops can be interspearsed with two +simple 1-uop instructions for free, in the sense that they do not add to the decoding time. +Example: +<pre>MOV EBX, [MEM1] ; 1 uop (D0) +INC EBX ; 1 uop (D1) +ADD EAX, [MEM2] ; 2 uops (D0) +ADD [MEM3], EAX ; 4 uops (D0)</pre><p> +This takes 3 clock cycles to decode. You can save one clock cycle by reordering the +instructions into two decode groups: +<pre>ADD EAX, [MEM2] ; 2 uops (D0) +MOV EBX, [MEM1] ; 1 uop (D1) +INC EBX ; 1 uop (D2) +ADD [MEM3], EAX ; 4 uops (D0)</pre><p> + +The decoders now generate 8 uops in two clock cycles, which is probably satisfactory. +Later stages in the pipeline can handle only 3 uops per clock cycle so with a decoding rate +higher than this you can assume that decoding is not a bottleneck. However, complications +in the fetch mechanism can delay decoding as described in the next chapter, so to be safe +you may want to aim at a decoding rate higher than 3 uops per clock cycle. +<p> +You can see how many uops each instruction generates in the tables in chapter <a href="#29">29</a>. +<p> +Instruction prefixes can also incur penalties in the decoders. Instructions can have several +kinds of prefixes: + <ul> +<li>An operand size prefix is needed when you have a 16-bit operand in a 32-bit +environment or vice versa. (Except for instructions that can only have one operand size, +such as <kbd>FNSTSW AX</kbd>). An operand size prefix gives a penalty of a few clocks if the +instruction has an immediate operand of 16 or 32 bits because the length of the operand +is changed by the prefix. Examples: +<pre> ADD BX, 9 ; no penalty because immediate operand is 8 bits + MOV WORD PTR [MEM16], 9 ; penalty because operand is 16 bits </pre> +The last instruction should be changed to: +<pre> MOV EAX, 9 + MOV WORD PTR [MEM16], AX ; no penalty because no immediate</pre> +<li>An address size prefix is used when you use 32-bit addressing in 16 bit mode or vice +versa. This is seldom needed and should generally be avoided. The address size prefix +gives a penalty whenever you have an explicit memory operand (even when there is no +displacement) because the interpretation of the r/m bits in the instruction code is +changed by the prefix. Instructions with only implicit memory operands, such as string +instructions, have no penalty with address size prefix. +<li>Segment prefixes are used when you address data in a non-default data segment. +Segment prefixes give no penalty on the PPro, PII and PIII. +<li>Repeat prefixes and lock prefixes give no penalty in the decoders. +<li>There is always a penalty if you have more than one prefix. This penalty is usually one +clock per prefix. +</ul> +<p> +<h2><a name="15">15</a>. Instruction fetch (PPro, PII and PIII)</h2><p> +The code is fetched in aligned 16-bytes chunks from the code cache and placed in the +double buffer, which is called so because it can contain two such chunks. The code is then +taken from the double buffer and fed to the decoders in blocks which are usually 16 bytes +long, but not necessarily aligned by 16. I will call these blocks ifetch blocks (instruction fetch +blocks). If an ifetch block crosses a 16 byte boundary in the code then it needs to take from +both chunks in the double buffer. So the purpose of the double buffer is to allow instruction +fetching across 16 byte boundaries. +<p> +The double buffer can fetch one 16-bytes chunk per clock cycle and can generate one +ifetch block per clock cycle. The ifetch blocks are usually 16 bytes long, but can be shorter +if there is a predicted jump in the block. (See chapter <a href="#22">22</a> about jump prediction). +<p> +Unfortunately, the double buffer is not big enough for handling fetches around jumps +without delay. If the ifetch block that contains the jump instruction crosses a 16-byte +boundary then the double buffer needs to keep two consecutive aligned 16-bytes chunks of +code in order to generate it. If the first instruction after the jump crosses a 16-byte +boundary, then the double buffer needs to load two new 16-bytes chunks of code before a +valid ifetch block can be generated. This means that, in the worst case, the decoding of the +first instruction after a jump can be delayed for two clock cycles. You get one penalty for a +16-byte boundary in the ifetch block containing the jump instruction, and one penalty for a +16-byte boundary in the first instruction after the jump. You can get bonus if you have more +than one decode group in the ifetch block that contains the jump because this gives the +double buffer extra time to fetch one or two 16-byte chunks of code in advance for the +instructions after the jump. The bonuses can compensate for the penalties according to the +table below. If the double buffer has fetched only one 16-byte chunk of code after the jump, +then the first ifetch block after the jump will be identical to this chunk, that is, aligned to a +16-byte boundary. In other words, the first ifetch block after the jump will not begin at the +first instruction, but at the nearest preceding address divisible by 16. If the double buffer +has had time to load two 16-byte chunks, then the new ifetch block can cross a 16-byte +boundary and begin at the first instruction after the jump. These rules are summarized in +the following <a name="ifetchtable">table:</a><p> + +<table border=1 cellpadding=1 cellspacing=1><tr><td class="a3"> +Number of<br>decode groups<br>in ifetch-block<br>containing jump</td> +<td class="a3">16-byte<br>boundary in this<br>ifetch-block</td> +<td class="a3">16-byte<br>boundary in first<br>instruction after<br>jump</td> +<td class="a3"><br><br>decoder delay</td> +<td class="a3">alignment of first<br>ifetch after jump</td></tr> +<tr><td align="center">1</td> +<td align="center">0</td> +<td align="center">0</td> +<td align="center">0</td> +<td align="center">by 16</td></tr> +<tr><td align="center">1</td> +<td align="center">0</td> +<td align="center">1</td> +<td align="center">1</td> +<td align="center">to instruction</td></tr> +<tr><td align="center">1</td> +<td align="center">1</td> +<td align="center">0</td> +<td align="center">1</td> +<td align="center">by 16</td></tr> +<tr><td align="center">1</td> +<td align="center">1</td> +<td align="center">1</td> +<td align="center">2</td> +<td align="center">to instruction</td></tr> +<tr><td align="center">2</td> +<td align="center">0</td> +<td align="center">0</td> +<td align="center">0</td> +<td align="center">to instruction</td></tr> +<tr><td align="center">2</td> +<td align="center">0</td> +<td align="center">1</td> +<td align="center">0</td> +<td align="center">to instruction</td></tr> +<tr><td align="center">2</td> +<td align="center">1</td> +<td align="center">0</td> +<td align="center">0</td> +<td align="center">by 16</td></tr> +<tr><td align="center">2</td> +<td align="center">1</td> +<td align="center">1</td> +<td align="center">1</td> +<td align="center">to instruction</td></tr> +<tr><td align="center">3 or more</td> +<td align="center">0</td> +<td align="center">0</td> +<td align="center">0</td> +<td align="center">to instruction</td></tr> +<tr><td align="center">3 or more</td> +<td align="center">0</td> +<td align="center">1</td> +<td align="center">0</td> +<td align="center">to instruction</td></tr> +<tr><td align="center">3 or more</td> +<td align="center">1</td> +<td align="center">0</td> +<td align="center">0</td> +<td align="center">to instruction</td></tr> +<tr><td align="center">3 or more</td> +<td align="center">1</td> +<td align="center">1</td> +<td align="center">0</td> +<td align="center">to instruction</td></tr> +</table> +<p>Jumps delay the fetching so that a loop always takes at least two clock cycles more per +iteration than the number of 16 byte boundaries in the loop. +<p> +A further problem with the instruction fetch mechanism is that a new ifetch block is not +generated until the previous one is exhausted. Each ifetch block can contain several +decode groups. If a 16 bytes long ifetch block ends with an unfinished instruction, then the +next ifetch block will begin at the beginning of that instruction. The first instruction in an +ifetch block always goes to decoder D0, and the next two instructions go to D1 and D2, if +possible. The consequence of this is that D1 and D2 are used less than optimally. If the +code is structured according to the recommended 4-1-1 pattern, and an instruction intended +to go into D1 or D2 happens to be the first instruction in an ifetch block, then that instruction +has to go into D0 with the result that one clock cycle is wasted. +This is probably a hardware design flaw. At least it is suboptimal design. +The consequence of this problem is that the time it takes to decode a piece of +code can vary considerably depending on where the first ifetch block begins. +<p> +If decoding speed is critical and you want to avoid these problems then you have to know +where each ifetch block begins. This is quite a tedious job. First you need to make your +code segment paragraph-aligned in order to know where the 16-byte boundaries are. Then +you have to look at the output listing from your assembler to see how long each instruction +is. (It is recommended that you study how instructions are coded so that you can predict the +lengths of the instructions.) If you know where one ifetch block begins then you can find +where the next ifetch block begins in the following way: Make the block 16 bytes long. If it +ends at an instruction boundary then the next block will begin there. If it ends with an +unfinished instruction then the next block will begin at the beginning of this instruction. +(Only the lengths of the instructions counts here, it doesn't matter how many uops they +generate or what they do). This way you can work your way all through the code and mark +where each ifetch block begins. The only problem is knowing where to start. If you know +where one ifetch block is then you can find all the subsequent ones, but you have to know +where the first one begins. Here are some guidelines: + <ul> +<li>The first ifetch block after a jump, call, or return can begin either at the first instruction or +at the nearest preceding 16-bytes boundary, according to the table above. If you align +the first instruction to begin at a 16-byte boundary then you can be sure that the first +ifetch block begins here. You may want to align important subroutine entries and loop +entries by 16 for this purpose. + +<li>If the combined length of two consecutive instructions is more than 16 bytes then you +can be certain that the second one doesn't fit into the same ifetch block as the first one, +and consequently you will always have an ifetch block beginning at the second +instruction. You can use this as a starting point for finding where subsequent ifetch +blocks begin. + +<li>The first ifetch block after a branch misprediction begins at a 16-byte boundary. As +explained in chapter <a href="#22_2">22.2</a>, a loop that repeats more than 5 times will always have a +misprediction when it exits. The first ifetch block after such a loop will therefore begin at +the nearest preceding 16-byte boundary. + +<li>Other serializing events also cause the next ifetch block to start at a 16-byte boundary. +Such events include interrupts, exceptions, self-modifying code, and serializing +instructions such as <kbd>CPUID, IN,</kbd> and <kbd>OUT</kbd>. +</ul> +<p> + +I am sure you want an example now: + +<pre> + address instruction length uops expected decoder + ---------------------------------------------------------------------- + 1000h MOV ECX, 1000 5 1 D0 + 1005h LL: MOV [ESI], EAX 2 2 D0 + 1007h MOV [MEM], 0 10 2 D0 + 1011h LEA EBX, [EAX+200] 6 1 D1 + 1017h MOV BYTE PTR [ESI], 0 3 2 D0 + 101Ah BSR EDX, EAX 3 2 D0 + 101Dh MOV BYTE PTR [ESI+1],0 4 2 D0 + 1021h DEC ECX 1 1 D1 + 1022h JNZ LL 2 1 D2</pre> +<p> +Let's assume that the first ifetch block begins at address 1000h and ends at 1010h. This is +before the end of the <kbd>MOV [MEM],0</kbd> instruction so the next ifetch block will begin at 1007h +and end at 1017h. This is at an instruction boundary so the third ifetch block will begin at +1017h and cover the rest of the loop. The number of clock cycles it takes to decode this is +the number of D0 instructions, which is 5 per iteration of the LL loop. The last ifetch block +contained three decode blocks covering the last five instructions, and it has one 16-byte +boundary (1020h). Looking at the table above we find that the first ifetch block after the +jump will begin at the first instruction after the jump, that is the <kbd>LL</kbd> +label at 1005h, and end at +1015h. This is before the end of the <kbd>LEA</kbd> instruction, so the next ifetch block will go from +1011h to 1021h, and the last one from 1021h covering the rest. Now the <kbd>LEA</kbd> instruction +and the <kbd>DEC</kbd> instruction both fall at the beginning of an ifetch block which forces them to go +into D0. We now have 7 instructions in D0 and the loop takes 7 clocks to decode in the +second iteration. The last ifetch block contains only one decode group + (<kbd>DEC ECX / JNZ LL</kbd>) and has no 16-byte boundary. According to the table, the next ifetch block after the +jump will begin at a 16-byte boundary, which is 1000h. This will give us the same situation +as in the first iteration, and you will see that the loop takes alternatingly 5 and 7 clock cycles +to decode. Since there are no other bottlenecks, the complete loop will take 6000 clocks to +run 1000 iterations. If the starting address had been different so that you had a 16-byte +boundary in the first or the last instruction of the loop then it would take 8000 clocks. If you +reorder the loop so that no D1 or D2 instructions fall at the beginning of an ifetch block then +you can make it take only 5000 clocks. +<p> +The example above was deliberately constructed so that fetch and decoding is the only +bottleneck. The easiest way to avoid this problem is to structure your code to generate +much more than 3 uops per clock cycle so that decoding will not be a bottleneck despite the +penalties described here. In small loops this may not be possible and then you have to find +out how to optimize the instruction fetch and decoding. +<p> +One thing you can do is to change the starting address of your procedure in order to avoid +16-byte boundaries where you don't want them. Remember to make your code segment +paragraph aligned so that you know where the boundaries are. +<p> +If you insert an <kbd>ALIGN 16</kbd> directive before the loop entry then the assembler will put in +<kbd>NOP</kbd>'s and other filler instructions up to the nearest 16 byte boundary. Most assemblers use +the instruction <kbd>XCHG EBX,EBX</kbd> as a 2-byte filler (the so called 2-byte <kbd>NOP</kbd>). Whoever got +this idea, it's a bad one because this instruction takes more time than two <kbd>NOP</kbd>'s on most +processors! If the loop executes many times then whatever is outside the loop is +unimportant in terms of speed and you don't have to care about the suboptimal filler +instructions. But if the time taken by the fillers is important then you may +select the filler instructions manually. +You may as well use filler instructions that do something useful, such as refreshing +a register in order to avoid register read stalls (see chapter <a href="#16_2">16.2</a>) +For example, if you are using register <kbd>EBP</kbd> for addressing but seldom +write to it, then you may use <kbd>MOV EBP,EBP</kbd> or <kbd>ADD EBP, 0</kbd> as +filler in order to reduce the possibilities of register read stalls. +If you have nothing useful to do, you may use <kbd>FXCH ST(0)</kbd> as a good filler +because it doesn't put any load on the execution ports, provided that <kbd>ST(0)</kbd> +contains a valid floating point value. +<p> +Another possible remedy is to reorder your instructions in order to get the ifetch boundaries +where they don't hurt. This can be quite a difficult puzzle and it is not always possible to find +a satisfactory solution. +<p> +Yet another possibility is to manipulate instruction lengths. Sometimes you can substitute +one instruction with another one with a different length. Many instructions can be coded in +different versions with different lengths. The assembler always chooses the shortest +possible version of an instruction, but it is often possible to hard-code a longer version. For +example, <kbd>DEC ECX</kbd> is one byte long, <kbd>SUB ECX,1</kbd> is 3 bytes, and you can code a 6 bytes +version with a long immediate operand using this trick: +<pre> SUB ECX, 9999 + ORG $-4 + DD 1</pre><p> +Instructions with a memory operand can be made one byte longer with a SIB byte, but the +easiest way of making an instruction one byte longer is to add a <kbd>DS:</kbd> +segment prefix (<kbd>DB 3Eh</kbd>). +The microprocessors generally accept redundant and meaningless prefixes (except +<kbd>LOCK</kbd>) as long as the instruction length does not exceed 15 bytes. Even instructions without +a memory operand can have a segment prefix. So if you want the <kbd>DEC ECX</kbd> instruction to be +2 bytes long, write: +<pre> DB 3Eh + DEC ECX</pre><p> +Remember that you get a penalty in the decoder if an instruction has more than one prefix. +It is possible that instructions with meaningless prefixes - especially repeat and +lock prefixes - will be used in future processors for new instructions when there are no +more vacant instruction codes, but I would consider it safe to use a segment prefix +with any instruction. +<p> +With these methods it will usually be possible to put the ifetch boundaries where you want +them, although it can be a tedious puzzle. +<p> +<h2><a name="16">16</a>. Register renaming (PPro, PII and PIII)</h2> +<h3><a name="16_1">16.1 Eliminating dependencies</a></h3><p> +Register renaming is an advanced technique used by these microprocessors to remove +dependencies between different parts of the code. Example: +<pre> MOV EAX, [MEM1] + IMUL EAX, 6 + MOV [MEM2], EAX + MOV EAX, [MEM3] + INC EAX + MOV [MEM4], EAX</pre><p> +Here the last three instructions are independent of the first three in the sense that they don't +need any result from the first three instructions. To optimize this on earlier processors you +would have to use a different register instead of <kbd>EAX</kbd> in the last three instructions and +reorder the instructions so that the last three instructions could execute in parallel with the +first three instructions. The PPro, PII and PIII processors do this for you automatically. They +assign a new temporary register for <kbd>EAX</kbd> every time you write to it. Thereby the +<kbd>MOV EAX,[MEM3]</kbd> instruction becomes independent of the preceding instructions. +With out-of-order execution it is likely to finish the move to <kbd>[MEM4]</kbd> before the slow +<kbd>IMUL</kbd> instruction is finished. +<p> +Register renaming goes fully automatically. A new temporary register is assigned as an +alias for the permanent register every time an instruction writes to this register. An +instruction that both reads and writes a register also causes renaming. For example the +<kbd>INC EAX</kbd> instruction above uses one temporary register for input and another temporary +register for output. This does not remove any dependency, of course, but it has some +significance for subsequent register reads as I will explain later. +<p> +All general purpose registers, stack pointer, flags, floating point registers, +MMX registers, XMM registers and segment registers can be renamed. +Control words, and the floating point status word cannot be renamed and this is the +reason why the use of these registers is slow. There are 40 universal temporary +registers so it is unlikely that you will run out of temporary registers. +<p> +A common way of setting a register to zero is <kbd>XOR EAX,EAX</kbd> or +<kbd>SUB EAX,EAX</kbd>. These +instructions are not recognized as independent of the previous value of the register. If you +want to remove the dependency on slow preceding instructions then use +<kbd> MOV EAX,0.</kbd> +<p> +Register renaming is controlled by the register alias table (RAT) and the reorder buffer +(ROB). The uops from the decoders go to the RAT via a queue, and then to the ROB and +the reservation station. The RAT can handle only 3 uops per clock cycle. This means that +the overall throughput of the microprocessor can never exceed 3 uops per clock cycle on +average. +<p> +There is no practical limit to the number of renamings. The RAT can rename three registers +per clock cycle, and it can even rename the same register three times in one clock cycle. +<p> +<h3><a name="16_2">16.2</a> Register read stalls</h3><p> +But there is another limitation which may be quite serious, and that is that you +can only read two different permanent register names per clock cycle. This +limitation applies to all registers used by an instruction except those registers +that the instruction writes to only. +Example: +<pre> MOV [EDI + ESI], EAX + MOV EBX, [ESP + EBP]</pre><p> +The first instruction generates two uops: one that reads <kbd>EAX</kbd> +and one that reads <kbd>EDI</kbd> and +<kbd>ESI</kbd>. The second instruction generates one uop that reads +<kbd>ESP</kbd> and <kbd>EBP</kbd>. <kbd>EBX</kbd> does not +count as a read because it is only written to by the instruction. Let's assume that these +three uops go through the RAT together. I will use the word triplet for a group of three +consecutive uops that go through the RAT together. Since the ROB can handle only two +permanent register reads per clock cycle and we need five register reads, our triplet will be +delayed for two extra clock cycles before it comes to the reservation station. With 3 or 4 +register reads in the triplet it would be delayed by one clock cycle. +<p> +The same register can be read more than once in the same triplet without adding to the +count. If the instructions above are changed to: +<pre> MOV [EDI + ESI], EDI + MOV EBX, [EDI + EDI]</pre><p> +then you will need only two register reads (<kbd>EDI</kbd> and <kbd>ESI</kbd>) and the triplet will not be delayed. +<p> +A register that is going to be written to by a pending uop is stored in the ROB so that it can +be read for free until it is written back, which takes at least 3 clock cycles, +and usually more. Write-back is the end of the execution stage where the value +becomes available. In other words, you can read any number of registers in the +RAT without stall if their values are not yet available from the execution units. +The reason for this is that when a value becomes available it is immediately +written directly to any subsequent ROB entries that need it. But if the value +has already been written back to a temporary or permanent register when a +subsequent uop that needs it goes into the RAT, then the value has to be read +from the register file, which has only two read ports. There are three pipeline +stages from the RAT to the execution unit so you can be certain that a register +written to in one uop-triplet can be read for free in at least the next three +triplets. If the writeback is delayed by reordering, slow instructions, +dependency chains, cache misses, or by any other kind of stall, then the +register can be read for free further down the instruction stream. +<p> +Example: +<pre> MOV EAX, EBX + SUB ECX, EAX + INC EBX + MOV EDX, [EAX] + ADD ESI, EBX + ADD EDI, ECX</pre><p> +These 6 instructions generate 1 uop each. Let's assume that the first 3 uops go through the +RAT together. These 3 uops read register <kbd>EBX</kbd>, <kbd>ECX</kbd>, and <kbd>EAX</kbd>. But since we are writing to +<kbd>EAX</kbd> before reading it, the read is free and we get no stall. The next three uops read <kbd>EAX</kbd>, +<kbd>ESI</kbd>, <kbd>EBX</kbd>, <kbd>EDI</kbd>, and <kbd>ECX</kbd>. Since both <kbd>EAX</kbd>, <kbd>EBX</kbd> and <kbd>ECX</kbd> have been modified in the +preceding triplet and not yet written back then they can be read for free, so that only <kbd>ESI</kbd> +and <kbd>EDI</kbd> count, and we get no stall in the second triplet either. If the +<kbd>SUB ECX,EAX</kbd> +instruction in the first triplet is changed to <kbd>CMP ECX,EAX</kbd> then <kbd>ECX</kbd> is not written to and we +will get a stall in the second triplet for reading <kbd>ESI</kbd>, <kbd>EDI</kbd> and <kbd>ECX</kbd>. Similarly, if the <kbd>INC</kbd> +<kbd>EBX</kbd> instruction in the first triplet is changed to <kbd>NOP</kbd> or something else then we will get a stall +in the second triplet for reading <kbd>ESI</kbd>, <kbd>EBX</kbd> and <kbd>EDI</kbd>. +<p> +No uop can read more than two registers. Therefore, all instructions that need +to read more than two registers are split up into two or more uops. +<p> +To count the number of register reads, you have to include all registers which are read by +the instruction. This includes integer registers, the flags register, the stack pointer, +floating point registers and MMX registers. +An XMM register counts as two registers, +except when only part of it is used, as e.g. in <kbd>ADDSS</kbd> and <kbd>MOVHLPS</kbd>. +Segment registers and the instruction pointer do not count. +For example, in <kbd>SETZ AL</kbd> you count the flags +register but not <kbd>AL</kbd>. <kbd>ADD EBX,ECX</kbd> counts both <kbd>EBX</kbd> and <kbd>ECX</kbd>, but not the flags because +they are written to only. <kbd>PUSH EAX</kbd> reads <kbd>EAX</kbd> and the +stack pointer and then writes to the stack pointer. +<p> +The <kbd>FXCH</kbd> instruction is a special case. It works by renaming, but doesn't read any values +so that it doesn't count in the rules for register read stalls. An <kbd>FXCH</kbd> instruction behaves +like 1 uop that neither reads nor writes any registers with regard to the rules for register read +stalls. +<p> +Don't confuse uop triplets with decode groups. A decode group can generate from 1 to 6 +uops, and even if the decode group has three instructions and generates three uops there +is no guarantee that the three uops will go into the RAT together. +<p> +The queue between the decoders and the RAT is so short (10 uops) that you cannot +assume that register read stalls do not stall the decoders or that fluctuations +in decoder throughput do not stall the RAT. +<p> +It is very difficult to predict which uops go through the RAT together unless the queue is +empty, and for optimized code the queue should be empty only after mispredicted branches. +Several uops generated by the same instruction do not necessarily go through the RAT +together; the uops are simply taken consecutively from the queue, three at at time. The +sequence is not broken by a predicted jump: uops before and after the jump can go through +the RAT together. Only a mispredicted jump will discard the queue and start over again so +that the next three uops are sure to go into the RAT together. +<p> +If three consecutive uops read more than two different registers then you would of course +prefer that they do not go through the RAT together. The probability that they do is one +third. The penalty of reading three or four written-back registers in one triplet of uops is one +clock cycle. You can think of the one clock delay as equivalent to the load of three more +uops through the RAT. With the probability of 1/3 of the three uops going into the RAT +together, the average penalty will be the equivalent of 3/3 = 1 uop. To calculate the average +time it will take for a piece of code to go through the RAT, add the number of potential +register read stalls to the number of uops and divide by three. You can see that It doesn't +pay to remove the stall by putting in an extra instruction unless you know for sure which +uops go into the RAT together or you can prevent more than one potential register read stall +by one extra instruction. +<p> +In situations where you aim at a throughput of 3 uops per clock, the limit of two permanent +register reads per clock cycle may be a problematic bottleneck to handle. Possible ways to +remove register read stalls are: +<ul><li>keep uops that read the same register close together so that they are likely to go into the +same triplet. +<li>keep uops that read different registers spaced so that they cannot go into the same +triplet. +<li>place uops that read a register no more than 3 - 4 triplets after an instruction that writes +to or modifies this register to make sure it hasn't been written back before it is read (it +doesn't matter if you have a jump between as long as it is predicted). If you have reason +to expect the register write to be delayed for whatever reason then you can safely read +the register somewhat further down the instruction stream. +<li>use absolute addresses instead of pointers in order to reduce the number of register +reads. +<li>you may rename a register in a triplet where it doesn't cause a stall in order to prevent a +read stall for this register in one or more later triplets. Example: +<kbd>MOV ESP,ESP / ... / MOV EAX,[ESP+8]</kbd>. +This method costs an extra uop and therefore doesn't pay unless the expected average +number of read stalls prevented is more than 1/3. +</ul> +<p> +For instructions that generate more than one uop you may want to know the order of the +uops generated by the instruction in order to make a precise analysis of the possibility of +register read stalls. I have therefore listed the most common cases below. +<p> +<u>Writes to memory</u><br> +A memory write generates two uops. The first one (to port 4) is a store operation, reading +the register to store. The second uop (port 3) calculates the memory address, reading any +pointer registers. Examples:<br> +<kbd>MOV [EDI], EAX</kbd><br> +First uop reads <kbd>EAX</kbd>, second uop reads <kbd>EDI</kbd>.<br> +<kbd>FSTP QWORD PTR [EBX+8*ECX]</kbd><br> +First uop reads <kbd>ST(0)</kbd>, second uop reads <kbd>EBX</kbd> and <kbd>ECX.</kbd> +<p> +<u>Read and modify</u><br> +An instruction that reads a memory operand and modifies a register by some arithmetic or +logical operation generates two uops. The first one (port 2) is a memory load instruction +reading any pointer registers, the second uop is an arithmetic instruction (port 0 or 1) +reading and writing to the destination register and possibly writing to the flags. +Example:<br> +<kbd>ADD EAX, [ESI+20]</kbd><br> +First uop reads <kbd>ESI,</kbd> second uop reads <kbd>EAX</kbd> and writes <kbd>EAX</kbd> and flags. +<p> +<u>Read/modify/write</u><br> +A read/modify/write instruction generates four uops. The first uop (port 2) reads any pointer +registers, the second uop (port 0 or 1) reads and writes to any source register and possibly +writes to the flags, the third uop (port 4) reads only the temporary result which doesn't count +here, the fourth uop (port 3) reads any pointer registers again. Since the first and the fourth +uop cannot go into the RAT together you cannot take advantage of the fact that they read +the same pointer registers. Example:<br> +<kbd>OR [ESI+EDI], EAX</kbd><br> +The first uop reads <kbd>ESI</kbd> and <kbd>EDI</kbd>, the second uop reads <kbd>EAX</kbd> and writes <kbd>EAX</kbd> and the +flags, the third uop reads only the temporary result, the fourth uop reads <kbd>ESI</kbd> and <kbd>EDI</kbd> again. No +matter how these uops go into the RAT you can be sure that the uop that reads <kbd>EAX</kbd> goes +together with one of the uops that read <kbd>ESI</kbd> and <kbd>EDI</kbd>. A register read stall is therefore +inevitable for this instruction unless one of the registers has been modified recently. +<p> +<u>Push register</u><br> +A push register instruction generates 3 uops. The first one (port 4) is a store instruction, +reading the register. The second uop (port 3) generates the address, reading the stack +pointer. The third uop (port 0 or 1) subtracts the word size from the stack pointer, reading +and modifying the stack pointer. +<p> +<u>Pop register</u><br> +A pop register instruction generates 2 uops. The first uop (port 2) loads the value, reading +the stack pointer and writing to the register. The second uop (port 0 or 1) adjusts the stack +pointer, reading and modifying the stack pointer. +<p> +<u>Call</u><br> +A near call generates 4 uops (port 1, 4, 3, 01). The first two uops read only the instruction +pointer which doesn't count because it cannot be renamed. The third uop reads the stack +pointer. The last uop reads and modifies the stack pointer. +<p> +<u>Return</u><br> +A near return generates 4 uops (port 2, 01, 01, 1). The first uop reads the stack pointer. +The third uop reads and modifies the stack pointer. +<p> +An example of how to avoid a register read stall is given in example 2.6. +<p> +<h2><a name="17">17</a>. Out of order execution (PPro, PII and PIII)</h2><p> +The reorder buffer (ROB) can hold 40 uops. Each uop waits in the ROB until all its +operands are ready and there is a vacant execution unit for it. This makes out-of-order +execution possible. If one part of the code is delayed because of a cache miss then it won't +delay later parts of the code if they are independent of the delayed operations. +<p> +Writes to memory cannot execute out of order relative to other writes. There are four write +buffers, so if you expect many cache misses on writes or you are writing to uncached +memory then it is recommended that you schedule four writes at at time and make sure the +processor has something else to do before you give it the next four writes. Memory reads +and other instructions can execute out of order, except <kbd>IN, OUT</kbd> and serializing +instructions. +<p> +If your code writes to a memory address and soon after reads from the same address, then +the read may by mistake be executed before the write because the ROB doesn't know the +memory addresses at the time of reordering. This error is detected when the write address +is calculated, and then the read operation (which was executed speculatively) +has to be re-done. The penalty for this is approximately 3 clocks. The only way to avoid this penalty is to +make sure the execution unit has other things to do between a write and a subsequent read +from the same memory address. +<p> +There are several execution units clustered around five ports. Port 0 and 1 are for +arithmetic operations etc. Simple move, arithmetic and logic operations can go to either port 0 or 1, +whichever is vacant first. Port 0 also handles multiplication, division, integer shifts and +rotates, and floating point operations. Port 1 also handles jumps and some MMX +and XMM operations. Port 2 handles all reads from memory and a few string and XMM operations, port 3 calculates addresses for memory +write, and port 4 executes all memory write operations. In chapter <a href="#29">29</a> you'll find a complete +list of the uops generated by code instructions with an indication of which ports they go to. +Note that all memory write operations require two uops, one for port 3 and one for port 4, +while memory read operations use only one uop (port 2). +<p> +In most cases each port can receive one new uop per clock cycle. This means that you can +execute up to 5 uops in the same clock cycle if they go to five different ports, but since +there is a limit of 3 uops per clock earlier in the pipeline you will never execute more than 3 +uops per clock on average. +<p> +You must make sure that no execution port receives more than one third of the uops if you +want to maintain a throughput of 3 uops per clock. Use the table of uops in chapter +<a href="#29">29</a> and +count how many uops go to each port. If port 0 and 1 are saturated while port 2 is free then +you can improve your code by replacing some <kbd>MOV register,register</kbd> +or <kbd>MOV register,immediate</kbd> instructions with + <kbd>MOV register,memory</kbd> in order to move some +of the load from port 0 and 1 to port 2. +<p> +Most uops take only one clock cycle to execute, but multiplications, divisions, and many +floating point operations take more: +<p> +Floating point addition and subtraction takes 3 clocks, but the execution unit is fully +pipelined so that it can receive a new <kbd>FADD</kbd> or <kbd>FSUB</kbd> +in every clock cycle before the +preceding ones are finished (provided, of course, that they are independent). +<p> +Integer multiplication takes 4 clocks, floating point multiplication 5, and +MMX multiplication 3 clocks. Integer and MMX multiplication is pipelined so +that it can receive a new instruction every clock cycle. Floating point +multiplication is partially pipelined: The execution unit can receive a new +<kbd>FMUL</kbd> instruction two clocks after the preceding one, so that the +maximum throughput is one <kbd>FMUL</kbd> per two clock cycles. The holes +between the <kbd>FMUL</kbd>'s cannot be filled by integer multiplications +because they use the same circuitry. XMM additions and multiplications take +3 and 4 clocks respectively, and are fully pipelined. But since each logical XMM +register is implemented as two physical 64-bit registers, you need two uops for a +packed XMM operation, and the throughput will then be one arithmetic XMM +instruction every two clock cycles. XMM add and multiply instructions can execute +in parallel because they don't use the same execution port. +<p> +Integer and floating point division takes up to 39 clocks and is not pipelined. This means +that the execution unit cannot begin a new division until the previous division is finished. +The same applies to squareroot and transcendental functions. +<p> +Also jump instructions, calls, and returns are not fully pipelined. You cannot execute a new +jump in the first clock cycle after a preceding jump. So the maximum throughput for jumps, +calls, and returns is one for every two clocks. +<p> +You should, of course, avoid instructions that generate many uops. +The <kbd>LOOP XX</kbd> +instruction, for example, should be replaced by <kbd>DEC ECX / JNZ XX</kbd>. +<p> +If you have consecutive <kbd>POP</kbd> instructions then you may break them up to reduce the +number of uops: +<pre>POP ECX / POP EBX / POP EAX ; can be changed to: +MOV ECX,[ESP] / MOV EBX,[ESP+4] / MOV EAX,[ESP] / ADD ESP,12</pre> +The former code generates 6 uops, the latter generates only 4 and decodes faster. +Doing the same with <kbd>PUSH</kbd> instructions is less advantageous because the split-up code is likely to +generate register read stalls unless you have other instructions to put in between or the +registers have been renamed recently. Doing it with <kbd>CALL</kbd> and <kbd>RET</kbd> +instructions will +interfere with prediction in the return stack buffer. Note also that the +<kbd>ADD ESP</kbd> instruction can cause an AGI stall in earlier processors. +<p> +<h2><a name="18">18</a>. Retirement (PPro, PII and PIII)</h2><p> +Retirement is a process where the temporary registers used by the uops are copied into the +permanent registers <kbd>EAX, EBX</kbd>, etc. +When a uop has been executed it is marked in the ROB as ready to retire. +<p> +The retirement station can handle three uops per clock cycle. This may not seem like a +problem because the throughput is already limited to 3 uops per clock in the RAT. But +retirement may still be a bottleneck for two reasons. Firstly, instructions must retire in order. +If a uop is executed out of order then it cannot retire before all preceding uops in the order +have retired. And the second limitation is that taken jumps must retire in the first of the three +slots in the retirement station. Just like decoder D1 and D2 can be idle if the next instruction +only fits into D0, the last two slots in the retirement station can be idle if the next uop to +retire is a taken jump. This is significant if you have a small loop where the number of uops +in the loop is not divisible by three. +<p> +All uops stay in the reorder buffer (ROB) until they retire. The ROB can hold 40 uops. This +sets a limit to the number of instructions that can execute during the long delay of a division +or other slow operation. Before the division is finished the ROB will be filled up with +executed uops waiting to retire. Only when the division is finished and retired can the +subsequent uops begin to retire, because retirement takes place in order. +<p> +In case of speculative execution of predicted branches (see chapter <a href="#22">22</a>) the speculatively +executed uops cannot retire until it is certain that the prediction was correct. If the prediction +turns out to be wrong then the speculatively executed uops are discarded without +retirement. +<p> +The following instructions cannot execute speculatively: memory writes, +<kbd>IN, OUT</kbd>, and serializing instructions. +<p> +<h2><a name="19">19</a>. Partial stalls (PPro, PII and PIII)</h2> +<h3><a name="19_1">19.1 Partial register stalls</a></h3><p> +Partial register stall is a problem that occurs when you write to part of a 32 +bit register and later read from the whole register or a bigger part of it. +Example: +<pre> MOV AL, BYTE PTR [M8] + MOV EBX, EAX ; partial register stall</pre><p> +This gives a delay of 5-6 clocks. The reason is that a temporary register has been assigned +to <kbd>AL</kbd> (to make it independent of <kbd>AH</kbd>). +The execution unit has to wait until the write to <kbd>AL</kbd> has +retired before it is possible to combine the value from <kbd>AL</kbd> with the +value of the rest of <kbd>EAX</kbd>. +The stall can be avoided by changing to code to: +<pre> MOVZX EBX, BYTE PTR [MEM8] + AND EAX, 0FFFFFF00h + OR EBX, EAX</pre> +<p> +Of course you can also avoid the partial stalls by putting in other instructions after the write +to the partial register so that it has time to retire before you read from the full register. +<p> +You should be aware of partial stalls whenever you mix different data sizes (8, 16, and 32 +bits): +<pre> MOV BH, 0 + ADD BX, AX ; stall + INC EBX ; stall</pre><p> + +You don't get a stall when reading a partial register after writing to the full register, or a +bigger part of it: +<pre> MOV EAX, [MEM32] + ADD BL, AL ; no stall + ADD BH, AH ; no stall + MOV CX, AX ; no stall + MOV DX, BX ; stall</pre><p> + +The easiest way to avoid partial register stalls is to always use full registers +and use <kbd>MOVZX</kbd> or <kbd>MOVSX</kbd> when reading from smaller memory +operands. These instructions are fast on the +PPro, PII and PIII, but slow on earlier processors. Therefore, a compromise is +offered when you +want your code to perform reasonably well on all processors. The replacement +for <kbd>MOVZX EAX,BYTE PTR [M8]</kbd> looks like this: +<pre> XOR EAX, EAX + MOV AL, BYTE PTR [M8]</pre><p> + +The PPro, PII and PIII processors make a special case out of this combination +to avoid a partial +register stall when later reading from <kbd>EAX</kbd>. +The trick is that a register is tagged as empty +when it is <kbd>XOR</kbd>'ed with itself. The processor remembers that the upper 24 bits of +<kbd>EAX</kbd> are zero, so that a partial stall can be avoided. This mechanism +works only on certain combinations: +<pre> XOR EAX, EAX + MOV AL, 3 + MOV EBX, EAX ; no stall + + XOR AH, AH + MOV AL, 3 + MOV BX, AX ; no stall + + XOR EAX, EAX + MOV AH, 3 + MOV EBX, EAX ; stall + + SUB EBX, EBX + MOV BL, DL + MOV ECX, EBX ; no stall + + MOV EBX, 0 + MOV BL, DL + MOV ECX, EBX ; stall + + MOV BL, DL + XOR EBX, EBX ; no stall</pre><p> + +Setting a register to zero by subtracting it from itself works the same as the +<kbd>XOR</kbd>, but setting it to zero with the <kbd>MOV</kbd> instruction +doesn't prevent the stall. +<p> +You can set the <kbd>XOR</kbd> outside a loop: +<pre> XOR EAX, EAX + MOV ECX, 100 +LL: MOV AL, [ESI] + MOV [EDI], EAX ; no stall + INC ESI + ADD EDI, 4 + DEC ECX + JNZ LL</pre><p> +The processor remembers that the upper 24 bits of <kbd>EAX</kbd> are zero as +long as you don't get +an interrupt, misprediction, or other serializing event. +<p> +You should remember to neutralize any partial register you have used before calling a +subroutine that might push the full register: +<pre> ADD BL, AL + MOV [MEM8], BL + XOR EBX, EBX ; neutralize BL + CALL _HighLevelFunction</pre><p> +Most high level language procedures push <kbd>EBX</kbd> at the start of the +procedure which would generate a partial register stall in the example above +if you hadn't neutralized <kbd>BL</kbd>. +<p> +Setting a register to zero with the <kbd>XOR</kbd> method doesn't break its dependency on earlier +instructions: +<pre> DIV EBX + MOV [MEM], EAX + MOV EAX, 0 ; break dependency + XOR EAX, EAX ; prevent partial register stall + MOV AL, CL + ADD EBX, EAX</pre><p> +Setting <kbd>EAX</kbd> to zero twice here seems redundant, but without +the <kbd>MOV EAX,0</kbd> the last +instructions would have to wait for the slow <kbd>DIV</kbd> to finish, and +without <kbd>XOR EAX,EAX</kbd> you +would have a partial register stall. +<p> +The <kbd>FNSTSW AX</kbd> instruction is special: in 32 bit mode it behaves as +if writing to the entire <kbd>EAX</kbd>. In fact, it does something like this +in 32 bit mode:<br> +<kbd> AND EAX,0FFFF0000h / FNSTSW TEMP / OR EAX,TEMP</kbd><br> +hence, you don't get a partial register stall when reading <kbd>EAX</kbd> +after this instruction in 32 bit mode: +<pre> FNSTSW AX / MOV EBX,EAX ; stall only if 16 bit mode + MOV AX,0 / FNSTSW AX ; stall only if 32 bit mode</pre> + +<p> +<h3><a name="19_2">19.2 Partial flags stalls</a></h3><p> +The flags register can also cause partial register stalls: +<pre> CMP EAX, EBX + INC ECX + JBE XX ; partial flags stall</pre><p> +The <kbd>JBE</kbd> instruction reads both the carry flag and the zero flag. +Since the <kbd>INC</kbd> instruction +changes the zero flag, but not the carry flag, the <kbd>JBE</kbd> instruction has to wait for the two +preceding instructions to retire before it can combine the carry flag from the <kbd>CMP</kbd> instruction +and the zero flag from the <kbd>INC</kbd> instruction. This situation is likely to be a bug rather than an +intended combination of flags. To correct it change <kbd>INC ECX</kbd> to <kbd>ADD ECX,1</kbd>. + A similar +bug that causes a partial flags stall is <kbd>SAHF / JL XX</kbd>. The <kbd>JL</kbd> +instruction tests the sign +flag and the overflow flag, but <kbd>SAHF</kbd> doesn't change the overflow flag. +To correct it, change +<kbd>JL XX</kbd> to <kbd>JS XX</kbd>. +<p> +Unexpectedly (and contrary to what Intel manuals say) you also get a partial flags stall after +an instruction that modifies some of the flag bits when reading only unmodified flag bits: +<pre> CMP EAX, EBX + INC ECX + JC XX ; partial flags stall</pre><p> +but not when reading only modified bits: +<pre> CMP EAX, EBX + INC ECX + JE XX ; no stall</pre><p> + +Partial flags stalls are likely to occur on instructions that read many or +all flags bits, i.e. <kbd>LAHF, PUSHF, PUSHFD</kbd>. The following instructions cause +partial flags stalls when followed by <kbd>LAHF</kbd> or <kbd>PUSHF(D)</kbd>: +<kbd>INC, DEC, TEST</kbd>, bit tests, bit scan, <kbd>CLC, STC, CMC, CLD, STD, CLI, STI, MUL, +IMUL</kbd>, and all shifts and rotates. +The following instructions do not cause partial flags stalls: +<kbd>AND, OR, XOR, ADD, ADC, SUB, SBB, CMP, NEG</kbd>. +It is strange that <kbd>TEST</kbd> and <kbd>AND</kbd> behave differently while, by definition, they +do exactly the same thing to the flags. You may use a <kbd>SETcc</kbd> + instruction instead of <kbd>LAHF</kbd> +or <kbd>PUSHF(D)</kbd> for storing the value of a flag in order to avoid a stall. +<p> +Examples: +<pre> INC EAX / PUSHFD ; stall + ADD EAX,1 / PUSHFD ; no stall + + SHR EAX,1 / PUSHFD ; stall + SHR EAX,1 / OR EAX,EAX / PUSHFD ; no stall + + TEST EBX,EBX / LAHF ; stall + AND EBX,EBX / LAHF ; no stall + TEST EBX,EBX / SETZ AL ; no stall + + CLC / SETZ AL ; stall + CLD / SETZ AL ; no stall</pre><p> +The penalty for partial flags stalls is approximately 4 clocks. +<p> + +<h3><a name="19_3">19.3 Flags stalls after shifts and rotates</a></h3><p> +You can get a stall resembling the partial flags stall when reading any flag +bit after a shift or rotate, except for shifts and rotates by one (short form): +<pre> SHR EAX,1 / JZ XX ; no stall + SHR EAX,2 / JZ XX ; stall + SHR EAX,2 / OR EAX,EAX / JZ XX ; no stall + + SHR EAX,5 / JC XX ; stall + SHR EAX,4 / SHR EAX,1 / JC XX ; no stall + + SHR EAX,CL / JZ XX ; stall, even if CL = 1 + SHRD EAX,EBX,1 / JZ XX ; stall + ROL EBX,8 / JC XX ; stall</pre><p> + +The penalty for these stalls is approximately 4 clocks. +<p> + +<h3><a name="19_4">19.4 Partial memory stalls</a></h3><p> +A partial memory stall is somewhat analogous to a partial register stall. It occurs when you +mix data sizes for the same memory address: +<pre> MOV BYTE PTR [ESI], AL + MOV EBX, DWORD PTR [ESI] ; partial memory stall</pre><p> +Here you get a stall because the processor has to combine the byte written from AL with the +next three bytes, which were in memory before, to get the four bytes needed for +reading into <kbd>EBX</kbd>. The penalty is approximately 7-8 clocks. +<p> +Unlike the partial register stalls, you also get a partial memory stall when you write a bigger +operand to memory and then read part of it, if the smaller part doesn't start at the same +address: +<pre> MOV DWORD PTR [ESI], EAX + MOV BL, BYTE PTR [ESI] ; no stall + MOV BH, BYTE PTR [ESI+1] ; stall</pre><p> +You can avoid this stall by changing the last line to <kbd>MOV BH,AH</kbd>, +but such a solution is not +possible in a situation like this: +<pre> FISTP QWORD PTR [EDI] + MOV EAX, DWORD PTR [EDI] + MOV EDX, DWORD PTR [EDI+4] ; stall</pre><p> + +Interestingly, you can also get a partial memory stall when writing and reading completely +different addresses if they happen to have the same set-value in different cache banks: +<pre> MOV BYTE PTR [ESI], AL + MOV EBX, DWORD PTR [ESI+4092] ; no stall + MOV ECX, DWORD PTR [ESI+4096] ; stall</pre> +<p> +<h2><a name="20">20</a>. Dependency chains (PPro, PII and PIII)</h2><p> +A series of instructions where each instruction depends on the result of the preceding one +is called a dependency chain. Long dependency chains should be avoided, if possible, +because they prevent out-of-order and parallel execution. +<p> +Example: +<pre> MOV EAX, [MEM1] + ADD EAX, [MEM2] + ADD EAX, [MEM3] + ADD EAX, [MEM4] + MOV [MEM5], EAX</pre><p> +In this eaxmple, the <kbd>ADD</kbd> instructions generate 2 uops each, one for reading from memory +(port 2), and one for adding (port 0 or 1). The read uops can execute out or order, while the +add uops must wait for the previous uops to finish. This dependency chain does not take +very long to execute, because each addition adds only 1 clock to the execution time. But if +you have slow instructions like multiplications, or even worse: divisions, then you should +definitely do something to break the dependency chain. The way to do this is to use multiple +accumulators: +<pre> MOV EAX, [MEM1] ; start first chain + MOV EBX, [MEM2] ; start other chain in different accumulator + IMUL EAX, [MEM3] + IMUL EBX, [MEM4] + IMUL EAX, EBX ; join chains in the end + MOV [MEM5], EAX</pre><p> +Here, the second <kbd>IMUL</kbd> instruction can start before the first one is finished. +Since the <kbd>IMUL</kbd> instruction has a delay of 4 clocks and is fully pipelined, you +may have up to 4 accumulators. +<p> +Division is not pipelined so you cannot do the same with chained divisions, +but you can of course multiply all the divisors and do only one division in +the end. +<p> +Floating point instructions have a longer delay than integer instructions, so +you should definitely break up long dependency chains with floating point +instructions: +<pre> FLD [MEM1] ; start first chain + FLD [MEM2] ; start second chain in different accumulator + FADD [MEM3] + FXCH + FADD [MEM4] + FXCH + FADD [MEM5] + FADD ; join chains in the end + FSTP [MEM6]</pre><p> +You need a lot of <kbd>FXCH</kbd> instructions for this, but don't worry: they +are cheap. <kbd>FXCH</kbd> +instructions are resolved in the RAT by register renaming so they don't +put any load on the execution ports. An <kbd>FXCH</kbd> does count as 1 uop in the RAT, +ROB, and retirement station, though. +<p> +If the dependency chain is long you may need three accumulators: +<pre> FLD [MEM1] ; start first chain + FLD [MEM2] ; start second chain + FLD [MEM3] ; start third chain + FADD [MEM4] ; third chain + FXCH ST(1) + FADD [MEM5] ; second chain + FXCH ST(2) + FADD [MEM6] ; first chain + FXCH ST(1) + FADD [MEM7] ; third chain + FXCH ST(2) + FADD [MEM8] ; second chain + FXCH ST(1) + FADD ; join first and third chain + FADD ; join with second chain + FSTP [MEM9]</pre><p> + +Avoid storing intermediate data in memory and read them immediately afterwards: +<pre> MOV [TEMP], EAX + MOV EBX, [TEMP]</pre><p> +There is a penalty for attempting to read from a memory address before a previous write to +that address is finished. In the example above, change the last instruction to +<kbd>MOV EBX,EAX</kbd> +or put some other instructions in between. +<p> +There is one situation where you cannot avoid storing intermediate data in memory, and +that is when transferring data from an integer register to a floating point register, or vice +versa. For example: +<pre> MOV EAX, [MEM1] + ADD EAX, [MEM2] + MOV [TEMP], EAX + FILD [TEMP]</pre><p> +If you don't have anything to put in between the write to <kbd>TEMP</kbd> and the +read from <kbd>TEMP</kbd>, then +you may consider using a floating point register instead of <kbd>EAX</kbd>: +<pre> FILD [MEM1] + FIADD [MEM2]</pre><p> + +Consecutive jumps, calls, or returns may also be considered dependency chains. The +throughput for these instructions is one jump per two clock cycles. It is therefore +recommended that you give the microprocessor something else to do between the jumps. +<p> +<h2><a name="21">21</a>. Searching for bottlenecks (PPro, PII and PIII)</h2><p> +When optimizing code for these processors, it is important to analyze where the +bottlenecks are. Spending time on optimizing away one bottleneck doesn't make sense if +there is another bottleneck which is narrower. +<p> +If you expect code cache misses then you should restructure your code to keep the most +used parts of code together. +<p> +If you expect many data cache misses then forget about everything else and concentrate +on how to restructure your data to reduce the number of cache misses (chapter <a href="#7">7</a>), and +avoid long dependency chains after a data read cache miss (chapter <a href="#20">20</a>). +<p> +If you have many divisions then try to reduce them (chapter <a href="#27_2">27.2</a>) and make sure the +processor has something else to do during the divisions. +<p> +Dependency chains tend to hamper out-of-order execution (chapter <a href="#20">20</a>). Try to break long +dependency chains, especially if they contain slow instructions such as multiplication, +division, and floating point instructions. +<p> +If you have many jumps, calls, or returns, and especially if the jumps are poorly predictable, +then try if some of them can be avoided. Replace conditional jumps with conditional moves +if possible, and replace small procedures with macros (chapter <a href="#22_3">22.3</a>). +<p> +If you are mixing different data sizes (8, 16, and 32 bit integers) then look out for partial +stalls. If you use <kbd>PUSHF</kbd> or <kbd>LAHF</kbd> instructions then look out for partial flags stalls. Avoid +testing flags after shifts or rotates by more than 1 (chapter <a href="#19">19</a>). +<p> +If you aim at a throughput of 3 uops per clock cycle then be aware of possible delays in +instruction fetch and decoding (chapter and <a href="#14">14</a> and <a href="#15">15</a>), especially in small loops. +<p> +The limit of two permanent register reads per clock cycle may reduce your throughput to +less than 3 uops per clock cycle (chapter <a href="#16_2">16.2</a>). This is likely to happen if you often read +registers more than 4 clock cycles after they last were modified. This may, for example, +happen if you often use pointers for addressing your data but seldom modify the pointers. +<p> +A throughput of 3 uops per clock requires that no execution port gets more than one third of +the uops (chapter <a href="#17">17</a>). +<p> +The retirement station can handle 3 uops per clock, but may be slightly less effective for +taken jumps (chapter <a href="#18">18</a>). + +<p> +<h2><a name="22">22</a>. Jumps and branches (all processors)</h2><p> +The Pentium family of processors attempt to predict where a jump will go to, and whether a +conditional jump will be taken or fall through. If the prediction is correct, then it can save a +considerable amount of time by loading the subsequent instructions into the pipeline and +start decoding them before the jump is executed. If the prediction turns out to be wrong, +then the pipeline has to be flushed, which will cost a penalty depending on the length of the +pipeline. +<p> +The predictions are based on a Branch Target Buffer (BTB) which stores the history for +each branch or jump instruction and makes predictions based on the prior history of +executions of each instruction. The BTB is organized like a set-associative cache where +new entries are allocated according to a pseudo-random replacement method. +<p> +When optimizing code, it is important to minimize the number of misprediction penalties. +This requires a good understanding of how the jump prediction works. +<p> +The branch prediction mechanisms are not described adequately in Intel manuals or +anywhere else. I am therefore giving a very detailed description here. This information is +based on my own research (with the help of Karki Jitendra Bahadur for the PPlain). +<p> +In the following, I will use the term 'control transfer instruction' for any instruction which can +change the instruction pointer, including conditional and unconditional, direct and indirect, +near and far, jumps, calls, and returns. All these instructions use prediction. +<p> + +<h3><a name="22_1">22.1 Branch prediction in PPlain</a></h3><p> +The branch prediction mechanism for the PPlain is very different from the other three +processors. Information found in Intel documents and elsewhere on this subject is directly +misleading, and following the advises given is such documents is likely to lead to +sub-optimal code. +<p> +The PPlain has a branch target buffer (BTB), which can hold information for up to 256 jump +instructions. The BTB is organized like a 4-way set-associative cache with 64 entries per +way. This means that the BTB can hold no more than 4 entries with the same set value. +Unlike the data cache, the BTB uses a pseudo random replacement algorithm, which +means that a new entry will not necessarily displace the least recently used entry of the +same set-value. How the set-value is calculated will be explained later. Each BTB entry +stores the address of the jump target and a prediction state, which can have four different +values: +<p> +state 0: "strongly not taken" <br> +state 1: "weakly not taken" <br> +state 2: "weakly taken" <br> +state 3: "strongly taken"<p> + +A branch instruction is predicted to jump when in state 2 or 3, and to fall through when in +state 0 or 1. The state transition works like a two-bit counter, so that the state is +incremented when the branch is taken, and decremented when it falls through. The counter +saturates, rather than wrap around, so that it does not decrement beyond 0 or increment +beyond 3. Ideally, this would provide a reasonably good prediction, because a branch +instruction would have to deviate twice from what it does most of the time, before the +prediction changes. +<p> +However, this mechanism has been compromised by the fact that state 0 also means +'unused BTB entry'. So a BTB entry in state 0 is the same as no BTB entry. This makes +sense, because a branch instruction is predicted to fall through if it has no BTB entry. This +improves the utilization of the BTB, because a branch instruction which is seldom taken will +most of the time not take up any BTB entry. +<p> +Now, if a jumping instruction has no BTB entry, then a new BTB entry will be generated, +and this new entry will always be set to state 3. This means that it is impossible to go from +state 0 to state 1 (except for a very special case discussed later). From state 0 you can only +go to state 3, if the branch is taken. If the branch falls through, then it will stay out of the +BTB. +<p> +This is a serious design flaw. By throwing state 0 entries out of the BTB and always setting +new entries to state 3, the designers apparently have given priority to minimizing the first +time penalty for unconditional jumps and branches often taken, and ignored that this +seriously compromises the basic idea behind the mechanism and reduces the performance +in small innermost loops. The consequence of this flaw is, that a branch instruction which +falls through most of the time will have up to three times as many mispredictions as a +branch instruction which is taken most of the time. (Apparently, Intel engineers +have been unaware of this flaw until I published my findings). +<p> +You may take this asymmetry into account by organizing your branches so that they are +taken more often than not. Consider for example this if-then-else construction: +<pre> TEST EAX,EAX + JZ A + <branch 1> + JMP E +A: <branch 2> +E:</pre> +<p> +If branch 1 is executed more often than branch 2, and branch 2 is seldom executed twice in +succession, then you can reduce the number of branch mispredictions by up to a factor 3 +by swapping the two branches so that the branch instruction will jump more often than fall +through: +<pre> TEST EAX,EAX + JNZ A + <branch 2> + JMP E +A: <branch 1> +E:</pre><p> + +(This is contrary to the recommendations in Intel's manuals and tutorials). +<p> +There may be reasons to put the most often executed branch first, however: +<ol> +<li>Putting seldom executed branches away in the bottom of your code can improve code +cache utilization. +<li>A branch instruction seldom taken will stay out of the BTB most of the time, possibly +improving BTB utilization. +<li>The branch instruction will be predicted as not taken if it has been flushed out of the +BTB by other branch instructions. +<li>The asymmetry in branch prediction only exists on the PPlain. +</ol> +<p> +These considerations have little weight, however, for small critical loops, so I would still +recommend organizing branches with a skewed distribution so that the branch instruction is +taken more often than not, unless branch 2 is executed so seldom, that misprediction +doesn't matter. +<p> +Likewise, you should preferably organize loops with the testing branch instruction at the +bottom, as in this example: +<pre> MOV ECX, [N] +L: MOV [EDI],EAX + ADD EDI,4 + DEC ECX + JNZ L</pre><p> +If N is high, then the JNZ instruction here will be taken more often than not, and never fall +through twice in succession. +<p> +Consider the situation where a branch is taken every second time. The first time it jumps +the BTB entry will go into state 3, and will then alternate between state 2 and 3. It is +predicted to jump all the time, which gives 50% mispredictions. <a name="worstpred">Assume now that it deviates +from this regular pattern and falls through an extra time</a>. The jump pattern is:<pre> +01010100101010101010101, where 0 means nojump, and 1 means jump. + ^</pre> +The extra nojump is indicated with a <kbd>^</kbd> above. After this incident, the BTB entry will alternate +between state 1 and 2, which gives 100% mispredictions. It will continue in this unfortunate +mode until there is another deviation from the 0101 pattern. This is the worst case for this +branch prediction mechanism. +<p> +<h4>22.1.2 BTB is looking ahead (PPlain)</h4> +The BTB mechanism is counting instruction pairs, rather than single instructions, so you +have to know how instructions are pairing in order to analyze where a BTB entry is stored. +The BTB entry for any control instruction is attached to the address of the U-pipe +instruction in the preceding instruction pair. (An unpaired instruction counts as one pair). +Example: +<pre> SHR EAX,1 + MOV EBX,[ESI] + CMP EAX,EBX + JB L</pre><p> +Here <kbd>SHR</kbd> pairs with <kbd>MOV</kbd>, and <kbd>CMP</kbd> pairs with +<kbd>JB</kbd>. The BTB entry for <kbd>JB L</kbd> is thus +attached to the address of the <kbd>SHR EAX,1</kbd> instruction. When this BTB entry is met, and if it +is in state 2 or 3, then the Pentium will read the target address from the BTB entry, and load +the instructions following L into the pipeline. This happens before the branch instruction has +been decoded, so the Pentium relies solely on the information in the BTB when doing this. +<p> +You may remember, that instructions are seldom pairing the first time they are executed +(see chapter <a href="#8">8</a>). If the instructions above are not pairing, then the BTB entry should be +attached to the address of the <kbd>CMP</kbd> instruction, and this entry would be wrong on the next +execution, when instructions are pairing. However, in most cases the PPlain is smart +enough to not make a BTB entry when there is an unused pairing opportunity, so you don't +get a BTB entry until the second execution, and hence you won't get a prediction until the +third execution. (In the rare case, where every second instruction is a single-byte +instruction, you may get a BTB entry on the first execution which becomes invalid in the +second execution, but since the instruction it is attached to will then go to the V-pipe, it is +ignored and gives no penalty. A BTB entry is only read if it is attached to the address of a +U-pipe instruction). +<p> +A BTB entry is identified by its set-value which is equal to bits 0-5 of the address it is +attached to. Bits 6-31 are then stored in the BTB as a tag. Addresses which are spaced a +multiple of 64 bytes apart will have the same set-value. You can have no more than four +BTB entries with the same set-value. If you want to check whether your jump instructions +contend for the same BTB entries, then you have to compare bits 0-5 of the addresses of +the U-pipe instructions in the preceding instruction pairs. This is very tedious, and I have +never heard of anybody doing so. There are no tools available to do this job for you. +<p> +<h4>22.1.3 Consecutive branches (PPlain)</h4><p> +When a jump is mispredicted, then the pipeline gets flushed. If the next instruction pair +executed also contains a control transfer instruction, then the PPlain won't load its target +because it cannot load a new target while the pipeline is being flushed. The result is that the +second jump instruction is predicted to fall through regardless of the state of its BTB entry. +Therefore, if the second jump is also taken, then you will get another penalty. The state of +the BTB entry for the second jump instruction does get correctly updated, though. If you +have a long chain of control transfer instructions, and the first jump in the chain is +mispredicted, then the pipeline will get flushed all the time, and you will get nothing but +mispredictions until you meet an instruction pair which does not jump. The most extreme +case of this is a loop which jumps to itself: It will get a misprediction penalty for each +iteration. +<p> +This is not the only problem with consecutive control transfer instructions. Another problem +is that you can have another branch instruction between a BTB entry and the control +transfer instruction it belongs to. If the first branch instruction jumps to somewhere else, +then strange things may happen. Consider this example: +<pre> SHR EAX,1 + MOV EBX,[ESI] + CMP EAX,EBX + JB L1 + JMP L2 + +L1: MOV EAX,EBX + INC EBX</pre><p> + +When <kbd>JB L1</kbd> falls through, then you will get a BTB entry for +<kbd>JMP L2</kbd> attached to the +address of <kbd>CMP EAX,EBX</kbd>. But what will happen when <kbd>JB L1</kbd> +later is taken? At the time +when the BTB entry for <kbd>JMP L2</kbd> is read, the processor doesn't know that the next +instruction pair does not contain a jump instruction, so it will actually predict the instruction +pair <kbd>MOV EAX,EBX / INC EBX</kbd> to jump to <kbd>L2</kbd>. +The penalty for predicting non-jump +instructions to jump is 3 clock cycles. The BTB entry for <kbd>JMP L2</kbd> will get its state +decremented, because it is applied to something which doesn't jump. If we keep going to +<kbd>L1</kbd>, then the BTB entry for <kbd>JMP L2</kbd> will be decremented to state 1 and 0, so that the +problem will disappear until next time <kbd>JMP L2</kbd> is executed. +<p> +The penalty for predicting the non-jumping instructions to jump only occurs when the jump +to <kbd>L1</kbd> is predicted. In the case that <kbd>JB L1</kbd> is mispredictedly +jumping, then the pipeline gets +flushed and we won't get the false <kbd>L2</kbd> target loaded, so in this case we will not see the +penalty of predicting the non-jumping instructions to jump, but we do get the BTB entry for +<kbd>JMP L2</kbd> decremented. +<p> +Suppose, now, that we replace the <kbd>INC EBX</kbd> instruction above with another jump +instruction. This third jump instruction will then use the same BTB entry as +<kbd>JMP L2</kbd> with +the possible penalty of predicting a wrong target, (unless it happens to also +have <kbd>L2</kbd> as target). +<p> +To summarize, consecutive jumps can lead to the following problems: +<ul> +<li>failure to load a jump target when the pipeline is being flushed by a preceding +mispredicted jump. +<li>a BTB entry being mis-applied to non-jumping instructions and predicting them to jump. +<li>a second consequence of the above is that a mis-applied BTB entry will get its state +decremented, possibly leading to a later misprediction of the jump it belongs to. Even +unconditional jumps can be predicted to fall through for this reason. +<li>two jump instructions may share the same BTB entry, leading to the prediction of a +wrong target. +</ul> +<p> + +All this mess may give you a lot of penalties, so you should definitely avoid having an +instruction pair containing a jump immediately after another poorly predictable control +transfer instruction or its target. +<p> +It is time for another illustrative example: +<pre> CALL P + TEST EAX,EAX + JZ L2 +L1: MOV [EDI],EBX + ADD EDI,4 + DEC EAX + JNZ L1 +L2: CALL P</pre><p> + +This looks like a quite nice and normal piece of code: A function call, a loop which is +bypassed when the count is zero, and another function call. How many problems can you +spot in this program? +<p> +First, we may note that the function <kbd>P</kbd> is called alternatingly from two different locations. +This means that the target for the return from <kbd>P</kbd> will be changing all the time. Consequently, +the return from <kbd>P</kbd> will always be mispredicted. +<p> +Assume, now, that <kbd>EAX</kbd> is zero. The jump to <kbd>L2</kbd> will not have its target loaded because the +mispredicted return caused a pipeline flush. Next, the second <kbd>CALL P</kbd> will also fail to have +its target loaded because <kbd>JZ L2</kbd> caused a pipeline flush. Here we have the situation where +a chain of consecutive jumps makes the pipeline flush repeatedly because the first jump +was mispredicted. The BTB entry for <kbd>JZ L2</kbd> is stored at the address of <kbd>P</kbd>'s return +instruction. This BTB entry will now be mis-applied to whatever comes after the second +<kbd>CALL P</kbd>, but that doesn't give a penalty because the pipeline is flushed by the mispredicted +second return. +<p> +Now, let's see what happens if <kbd>EAX</kbd> has a nonzero value the next time: +<kbd>JZ L2</kbd> is always +predicted to fall through because of the flush. The second <kbd>CALL P</kbd> +has a BTB entry at the +address of <kbd>TEST EAX,EAX</kbd>. This entry will be mis-applied to the +<kbd>MOV/ADD</kbd> pair, predicting +it to jump to <kbd>P</kbd>. This causes a flush which prevents <kbd>JNZ L1</kbd> +from loading its target. If we +have been here before, then the second <kbd>CALL P</kbd> will have another BTB entry at the +address of <kbd>DEC EAX</kbd>. On the second and third iteration of the loop, this entry will also be +mis-applied to the <kbd>MOV/ADD</kbd> pair, until it has had its state decremented to 1 or 0. This will +not cause a penalty on the second iteration because the flush from <kbd>JNZ L1</kbd> prevents it +from loading its false target, but on the third iteration it will. The subsequent iterations of the +loop have no penalties, but when it exits, <kbd>JNZ L1</kbd> is mispredicted. The flush would now +prevent <kbd>CALL P</kbd> from loading its target, were it not for the fact that the BTB entry for +<kbd>CALL P</kbd> has already been destroyed by being mis-applied several times. +<p> +We can improve this code by putting in some <kbd>NOP</kbd>'s to separate all consecutive jumps: +<pre> CALL P + TEST EAX,EAX + NOP + JZ L2 +L1: MOV [EDI],EBX + ADD EDI,4 + DEC EAX + JNZ L1 +L2: NOP + NOP + CALL P</pre><p> +The extra <kbd>NOP</kbd>'s cost 2 clock cycles, but they save much more. +Furthermore, <kbd>JZ L2</kbd> is now +moved to the U-pipe which reduces its penalty from 4 to 3 when mispredicted. The only +problem that remains is that the returns from <kbd>P</kbd> are always mispredicted. This problem can +only be solved by replacing the call to <kbd>P</kbd> by an inline macro (if you have enough code +cache). +<p> +The lesson to learn from this example is that you should always look carefully for +consecutive jumps and see if you can save time by inserting some <kbd>NOP</kbd>'s. You should be +particularly aware of those situations where misprediction is unavoidable, such as loop exits +and returns from procedures which are called from varying locations. If you have something +useful to put in, instead of the <kbd>NOP</kbd>'s, then you should of course do so. +<p> +Multiway branches (case statements) may be implemented either as a tree of branch +instructions or as a list of jump addresses. If you choose to use a tree of branch +instructions, then you have to include some <kbd>NOP</kbd>'s or other instructions to separate the +consecutive branches. A list of jump addresses may therefore be a better solution on the +PPlain. The list of jump addresses should be placed in the data segment. Never put data in +the code segment! +<p> +<h4>22.1.4 Tight loops (PPlain)</h4><p> +In a small loop you will often access the same BTB entry repeatedly with small intervals. +This never causes a stall. Rather than waiting for a BTB entry to be updated, the PPlain +somehow bypasses the pipeline and gets the resulting state from the last jump before it has +been written to the BTB. This mechanism is almost transparent to the user, but it does in +some cases have funny effects: You can see a branch prediction going from state 0 to state +1, rather than to state 3, if the zero has not yet been written to the BTB. This happens if the +loop has no more than four instruction pairs. In loops with only two instruction pairs you +may sometimes have state 0 for two consecutive iterations without going out of the BTB. In +such small loops it also happens in rare cases that the prediction uses the state resulting +from two iterations ago, rather than from the last iteration. These funny effects will usually +not have any negative effects on performance. +<p> +<h3><a name="22_2">22.2 Branch prediction in PMMX, PPro, PII and PIII</a></h3> +<h4>22.2.1 BTB organization (PMMX, PPro, PII and PIII)</h4><p> +The branch target buffer (BTB) of the PMMX has 256 entries organized as 16 ways * 16 +sets. Each entry is identified by bits 2-31 of the address of the last byte of the control +transfer instruction it belongs to. Bits 2-5 define the set, and bits 6-31 are stored in the BTB +as a tag. Control transfer instructions which are spaced 64 bytes apart have the +same set-value and may therefore occasionally push each other out of the BTB. Since there are 16 +ways per set, this won't happen too often. +<p> +The branch target buffer (BTB) of the PPro, PII and PIII has 512 entries organized as 16 ways * +32 sets. Each entry is identified by bits 4-31 of the address of the last byte of the control +transfer instruction it belongs to. Bits 4-8 define the set, and all bits are stored in the BTB as +a tag. Control transfer instructions which are spaced 512 bytes apart have the +same set-value and may therefore occasionally push each other out of the BTB. Since there are 16 +ways per set, this won't happen too often. +<p> +The PPro, PII and PIII allocate a BTB entry to any control transfer instruction the first time it is +executed. The PMMX allocates it the first time it jumps. A branch instruction which never +jumps will stay out of the BTB on the PMMX. As soon as it has jumped once, it will stay in +the BTB, even if it never jumps again. +<p> +An entry may be pushed out of the BTB when another control transfer instruction with the +same set-value needs a BTB entry. +<p> +<h4>22.2.2 Misprediction penalty (PMMX, PPro, PII and PIII)</h4><p> +In the PMMX, the penalty for misprediction of a conditional jump is 4 clocks in the U-pipe, +and 5 clocks if it is executed in the V-pipe. For all other control transfer instructions it is 4 +clocks. +<p> +In the PPro, PII and PIII, the misprediction penalty is very high due to the long pipeline. A +misprediction usually costs between 10 and 20 clock cycles. It is therefore very important to +be aware of poorly predictable branches when running on PPro, PII and PIII. +<p> +<h4>22.2.3 Pattern recognition for conditional jumps (PMMX, PPro, PII and PIII)</h4><p> +These processors have an advanced pattern recognition mechanism which will correctly +predict a branch instruction which, for example, is taken every fourth time and falls through +the other three times. In fact, they can predict any repetitive pattern of jumps and nojumps +with a period of up to five, and many patterns with higher periods. +<p> +The mechanism is a so-called "two-level adaptive branch prediction scheme", invented by +T.-Y. Yeh and Y. N. Patt. It is based on the same kind of two-bit counters as described +above for the PPlain (but without the assymmetry flaw). The counter is incremented when +the jump is taken and decremented when not taken. There is no wrap-around when +counting up from 3 or down from 0. A branch instruction is predicted to be taken when the +corresponding counter is in state 2 or 3, and to fall through when in state 0 or 1. An +impressive improvement is now obtained by having sixteen such counters for each BTB +entry. It selects one of these sixteen counters based on the history of the branch instruction +for the last four executions. If, for example, the branch instruction jumps once and then falls +through three times, then you have the history bits 1000 (1=jump, 0=nojump). This will +make it use counter number 8 (1000 binary = 8) for predicting the next time and update +counter 8 afterwards. +<p> +If the sequence 1000 is always followed by a 1, then counter number 8 will soon end up in +its highest state (state 3) so that it will always predict a 1000 sequence to be followed by a +1. It will take two deviations from this pattern to change the prediction. The repetitive pattern +100010001000 will have counter 8 in state 3, and counter 1, 2 and 4 in state 0. The other +twelve counters will be unused. +<p> +<h4>22.2.4 Perfectly predicted patterns (PMMX, PPro, PII and PIII)</h4><p> +A repetitive branch pattern is predicted perfectly by this mechanism if +every 4-bit sub-sequence in the period is unique. +Below is a list of repetitive branch patterns which are predicted perfectly:<p> +<table border=1 cellpadding=1 cellspacing=1> +<tr><td class="a3"> period </td> +<td class="a3"> perfectly predicted patterns </td></tr> +<tr><td>1-5</td><td>all</td></tr> +<tr><td>6</td><td>000011, 000101, 000111, 001011</td></tr> +<tr><td>7</td><td>0000101, 0000111, 0001011</td></tr> +<tr><td>8</td><td>00001011, 00001111, 00010011, 00010111, 00101101</td></tr> +<tr><td>9</td><td>000010011, 000010111, 000100111, 000101101</td></tr> +<tr><td>10</td><td>0000100111, 0000101101, 0000101111, 0000110111, 0001010011, 0001011101</td></tr> +<tr><td>11</td><td>00001001111, 00001010011, 00001011101, 00010100111</td></tr> +<tr><td>12</td><td>000010100111, 000010111101, 000011010111, 000100110111, 000100111011</td></tr> +<tr><td>13</td><td>0000100110111, 0000100111011, 0000101001111</td></tr> +<tr><td>14</td><td>00001001101111, 00001001111011, 00010011010111, 00010011101011, 00010110011101, 00010110100111</td></tr> +<tr><td>15</td><td>000010011010111, 000010011101011, 000010100110111, +000010100111011, 000010110011101, 000010110100111, +000010111010011, 000011010010111</td></tr> +<tr><td>16</td><td>0000100110101111, 0000100111101011, 0000101100111101, +0000101101001111</td></tr> +</table> +<p>When reading this table, you should be aware that if a pattern is predicted correctly than the +same pattern reversed (read backwards) is also predicted correctly, as well as the same +pattern with all bits inverted. Example: +In the table we find the pattern: 0001011. +Reversing this pattern gives: 1101000. +Inverting all bits gives: 1110100. +Both reversing and inverting: 0010111. +These four patterns are all recognizable. Rotating the pattern one place to the left gives: +0010110. This is of course not a new pattern, only a phase shifted version of the same +pattern. All patterns which can be derived from one of the patterns in the table by reversing, +inverting and rotating are also recognizable. For reasons of brevity, these are not listed. +<p> +It takes two periods for the pattern recognition mechanism to learn a regular repetitive +pattern after the BTB entry has been allocated. The pattern of mispredictions in the learning +period is not reproducible. This is probably because the BTB entry contained something +prior to allocation. Since BTB entries are allocated according to a random scheme, there is +little chance of predicting what happens during the initial learning period. +<p> + +<h4>22.2.5 Handling deviations from a regular pattern (PMMX, PPro, PII and PIII)</h4><p> +The branch prediction mechanism is also extremely good at handling 'almost regular' +patterns, or deviations from the regular pattern. Not only does it learn what the regular +pattern looks like. It also learns what deviations from the regular pattern look like. If +deviations are always of the same type, then it will remember what comes after the irregular +event, and the deviation will cost only one misprediction. +<p> +Example: +<pre> +0001110001110001110001011100011100011100010111000 + ^ ^</pre><p> +In this sequence, a 0 means nojump, a 1 means jump. The mechanism learns that the +repeated sequence is 000111. The first irregularity is an unexpected 0, which I have +marked with a <kbd>^</kbd>. After this 0 the next three jumps may be mispredicted, because it hasn't +learned what comes after 0010, 0101, and 1011. After one or two irregularities of the same +kind it has learned that after 0010 comes a 1, after 0101 comes 1, and after 1011 comes 1. +This means that after at most two irregularities of the same kind, it has learned to handle +this kind of irregularity with only one misprediction. +<p> +The prediction mechanism is also very effective when alternating between two different +regular patterns. If, for example, we have the pattern 000111 (with period 6) repeated many +times, then the pattern 01 (period 2) many times, and then return to the 000111 pattern, +then the mechanism doesn't have to relearn the 000111 pattern, because the counters +used in the 000111 sequence have been left un-touched during the 01 sequence. After a +few alternations between the two patterns, it has also learned to handle the changes of +pattern with only one misprediction for each time the pattern is switched. +<p> +<h4>22.2.6 Patterns which are not predicted perfectly (PMMX, PPro, PII and PIII)</h4><p> +The simplest branch pattern which cannot be predicted perfectly is a branch which is taken +on every 6'th execution. The pattern is: +<pre>000001000001000001 + ^^ ^^ ^^ + ab ab ab</pre><p> +The sequence 0000 is alternatingly followed by a 0, in the positions marked a above, and +by a 1, in the positions marked b. This affects counter number 0 which will count up and +down all the time. If counter 0 happens to start in state 0 or 1, then it will alternate between +state 0 and 1. This will lead to a misprediction in position b. If counter 0 happens to start in +state 3, then it will alternate between state 2 and 3 which will cause a misprediction in +position a. The worst case is when it starts in state 2. It will alternate between state 1 and 2 +with the unfortunate consequence that we get a misprediction both in position a and b. (This +is analogous to the worst case for the PPlain explained <a href="#worstpred">above</a>). Which of these four +situations we will get depends on the history of the BTB entry prior to allocation to this +branch. This is beyond our control because of the random allocation method. +<p> +In principle, it is possible to avoid the worst case situation where we have two mispredictions +per cycle by giving it an initial branch sequence which is specially designed for putting the +counter in the desired state. Such an approach cannot be recommended, however, +because of the considerable extra code complexity required, and because whatever +information we have put into the counter is likely to be lost during the next timer interrupt or +task switch. +<p> +<h4>22.2.7 Completely random patterns (PMMX, PPro, PII and PIII)</h4><p> +The powerful capability of pattern recognition has a minor drawback in the case of +completely random sequences with no regularities. +<p> +The following table lists the experimental fraction of mispredictions for a completely random +sequence of jumps and nojumps:<p> + +<table border=1 cellpadding=1 cellspacing=1><tr> +<td align="center" class="a3"> fraction of jumps/nojumps </td> +<td align="center" class="a3"> fraction of mispredictions </td></tr> +<tr><td align="center">0.001/0.999</td> +<td align="center">0.001001</td></tr> +<tr><td align="center">0.01/0.99</td> +<td align="center">0.0101</td></tr> +<tr><td align="center">0.05/0.95</td> +<td align="center">0.0525</td></tr> +<tr><td align="center">0.10/0.90</td> +<td align="center">0.110</td></tr> +<tr><td align="center">0.15/0.85</td> +<td align="center">0.171</td></tr> +<tr><td align="center">0.20/0.80</td> +<td align="center">0.235</td></tr> +<tr><td align="center">0.25/0.75</td> +<td align="center">0.300</td></tr> +<tr><td align="center">0.30/0.70</td> +<td align="center">0.362</td></tr> +<tr><td align="center">0.35/0.65</td> +<td align="center">0.418</td></tr> +<tr><td align="center">0.40/0.60</td> +<td align="center">0.462</td></tr> +<tr><td align="center">0.45/0.55</td> +<td align="center">0.490</td></tr> +<tr><td align="center">0.50/0.50</td> +<td align="center">0.500</td></tr> +</table> +<p> +The fraction of mispredictions is slightly higher than it would be without pattern recognition +because the processor keeps trying to find repeated patterns in a sequence which has no +regularities. +<p> +<h4>22.2.8 Tight loops (PMMX)</h4><p> +The branch prediction is not reliable in tiny loops where the pattern recognition mechanism +doesn't have time to update its data before the next branch is met. This means that simple +patterns, which would normally be predicted perfectly, are not recognized. Incidentally, +some patterns which normally would not be recognized, are predicted perfectly in tight +loops. For example, a loop which always repeats 6 times would have the branch pattern +111110 for the branch instruction at the bottom of the loop. This pattern would normally +have one or two mispredictions per iteration, but in a tight loop it has none. The same +applies to a loop which repeats 7 times. Most other repeat counts are predicted poorer in +tight loops than normally. This means that a loop which iterates 6 or 7 times should +preferably be tight, whereas other loops should preferably not be tight. You may unroll a +loop if necessary to make it less tight. +<p> +To find out whether a loop will behave as 'tight' on the PMMX you may follow the following +rule of thumb: Count the number of instructions in the loop. If the number is 6 or less, then +the loop will behave as tight. If you have more than 7 instructions, then you can be +reasonably sure that the pattern recognition functions normally. Strangely enough, it doesn't +matter how many clock cycles each instruction takes, whether it has stalls, or whether it is +paired or not. Complex integer instructions do not count. A loop can have lots of complex +integer instructions and still behave as a tight loop. A complex integer instruction +is a non-pairable integer instruction which always takes more than one clock cycle. Complex floating +point instructions and MMX instructions still count as one. Note, that this rule of thumb is +heuristic and not completely reliable. In important cases you may want to do your own +testing. You can use performance monitor counter number 35H for the PMMX to count +branch mispredictions. Test results may not be completely deterministic, because branch +predictions may depend on the history of the BTB entry prior to allocation. +<p> +Tight loops on PPro, PII and PIII are predicted normally, and take minimum two clock cycles per +iteration. +<p> +<h4>22.2.9 Indirect jumps and calls (PMMX, PPro, PII and PIII)</h4><p> +There is no pattern recognition for indirect jumps and calls, and the BTB can remember no +more than one target for an indirect jump. It is simply predicted to go to the same target as it +did last time. +<p> +<h4>22.2.10 JECXZ and LOOP (PMMX)</h4><p> +There is no pattern recognition for these two instructions in the PMMX. They are simply +predicted to go the same way as last time they were executed. These two instructions +should be avoided in time-critical code for PMMX. (In PPro, PII and PIII they are predicted using +pattern recognition, but the loop instruction is still inferior to <kbd>DEC ECX / JNZ</kbd>). +<p> +<h4>22.2.11 Returns (PMMX, PPro, PII and PIII)</h4><p> +The PMMX, PPro, PII and PIII processors have a Return Stack Buffer (RSB) which is used for +predicting return instructions. The RSB works as a First-In-Last-Out buffer. Each time a +call instruction is executed, the corresponding return address is pushed into the RSB. And +each time a return instruction is executed, a return address is pulled out of the RSB and +used for prediction of the return. This mechanism makes sure that return instructions are +correctly predicted when the same subroutine is called from several different locations. +<p> +In order to make sure this mechanism works correctly, you must make sure that all calls +and returns are matched. Never jump out of a subroutine without a return and never use a +return as an indirect jump if speed is critical. +<p> +The RSB can hold four entries in the PMMX, sixteen in the PPro, PII and PIII. In the case where +the RSB is empty, the return instruction is predicted in the same way as an indirect jump, +i.e. it is expected to go to the same target as it did last time. +<p> +On the PMMX, when subroutines are nested deeper than four levels then the innermost +four levels use the RSB, whereas all subsequent returns from the outer levels use the +simpler prediction mechanism as long as there are no new calls. A return instruction which +uses the RSB still occupies a BTB entry. Four entries in the RSB of the PMMX doesn't +sound of much, but it is probably sufficient. Subroutine nesting deeper than four levels is +certainly not unusual, but only the innermost levels matter in terms of speed, except +possibly for recursive procedures. +<p> +On the PPro, PII and PIII, when subroutines are nested deeper than sixteen levels then the +innermost 16 levels use the RSB, whereas all subsequent returns from the outer levels are +mispredicted. Recursive subroutines should therefore not go deeper than 16 levels. +<p> +<h4>22.2.12 Static prediction in PMMX</h4><p> +A control transfer instruction which has not been seen before or which is not in the BTB is +always predicted to fall through on the PMMX. It doesn't matter whether it goes forward or +backwards. +<p> +A branch instruction will not get a BTB entry if it always falls through. As soon as it is taken +once, it will get into the BTB and stay there no matter how many times it falls through. A +control transfer instruction can only go out of the BTB when it is pushed out by another +control transfer instruction which steals its BTB entry. +<p> +Any control transfer instruction which jumps to the address immediately following itself will +not get a BTB entry. Example: <pre> + JMP SHORT LL +LL:</pre><p> +This instruction will never get a BTB entry and therefore always have a misprediction +penalty. +<p> +<h4>22.2.13 Static prediction in PPro, PII and PIII</h4><p> +On PPro, PII and PIII, a control transfer instruction which has not been seen before or which is +not in the BTB is predicted to fall through if it goes forwards, and to be taken if it goes +backwards (e.g. a loop). Static prediction takes longer time than dynamic prediction on +these processors. +<p> +If your code is unlikely to be cached then it is preferred to have the most frequently +executed branch fall through in order to improve prefetching. +<p> +<h4>22.2.14 Close jumps (PMMX)</h4><p> +On the PMMX, there is a risk that two control transfer instructions will share the same BTB +entry if they are too close to each other. The obvious result is that they will always be +mispredicted. +<p> +The BTB entry for a control transfer instruction is identified by bits 2-31 of the address of +the last byte in the instruction. If two control transfer instructions are so close together that +they differ only in bits 0-1 of the address, then we have the problem of a shared BTB entry. +Example: +<pre> CALL P + JNC SHORT L</pre><p> +If the last byte of the <kbd>CALL</kbd> instruction and the last byte of the <kbd>JNC</kbd> instruction lie within the +same dword of memory, then we have the penalty. You have to look at the output list file +from the assembler to see whether the two addresses are separated by a DWORD boundary +or not. (A DWORD boundary is an address divisible by 4). +<p> +There are various ways to solve this problem: <br> +1. Move the code sequence a little up or down in memory so that you get a dword +boundary between the two addresses.<br> +2. Change the short jump to a near jump (with 4 bytes displacement) so that the end of the +instruction is moved further down. There is no way you can force the assembler to use +anything but the shortest form of an instruction so you have to hard-code the near +branch if you choose this solution.<br> +3. Put in some instruction between the <kbd>CALL</kbd> and the <kbd>JNC</kbd> instructions. This is the easiest +method, and the only method if you don't know where DWORD boundaries are because +your segment is not dword aligned or because the code keeps moving up and down as +you make changes in the preceding code:<br> +<pre> CALL P + MOV EAX,EAX ; two bytes filler to be safe + JNC SHORT L</pre><p> +If you want to avoid problems on the PPlain too, then put in two <kbd>NOP</kbd>'s instead to prevent +pairing (see section 22.1.3 above). + <p> +The <kbd>RET</kbd> instruction is particularly prone to this problem because it is only one byte long: +<pre> JNZ NEXT + RET</pre><p> +Here you may need up to three bytes of fillers: +<pre> JNZ NEXT + NOP + MOV EAX,EAX + RET</pre> +<p> +<h4>22.2.15 Consecutive calls or returns (PMMX)</h4><p> +There is a penalty when the first instruction pair following the target label of a call contains +another call instruction or if a return follows immediately after another return. Example: +<pre>FUNC1 PROC NEAR + NOP ; avoid call after call + NOP + CALL FUNC2 + CALL FUNC3 + NOP ; avoid return after return + RET +FUNC1 ENDP</pre><p> +Two <kbd>NOP</kbd>'s are required before <kbd>CALL FUNC2</kbd> because a single +<kbd>NOP</kbd> would pair with the +<kbd>CALL</kbd>. One <kbd>NOP</kbd> is enough before the <kbd>RET</kbd> because +<kbd>RET</kbd> is unpairable. No <kbd>NOP</kbd>'s are required +between the two <kbd>CALL</kbd> instructions because there is no penalty for call after return. (On the +PPlain you would need two <kbd>NOP</kbd>'s here too). +<p> +The penalty for chained calls only occurs when the same subroutines are called from more +than one location (probably because the RSB needs updating). Chained returns always +have a penalty. There is sometimes a small stall for a jump after a call, but no penalty for +return after call; call after return; jump, call, or return after jump; or jump after return. +<p> +<h4>22.2.16 Chained jumps (PPro, PII and PIII)</h4><p> +A jump, call, or return cannot be executed in the first clock cycle after a previous jump, call, +or return. Therefore, chained jumps will take two clock cycles for each jump, and you may +want to make sure that the processor has something else to do in parallel. For the same +reason, a loop will take at least two clock cycles per iteration on these processors. +<p> +<h4>22.2.17 Designing for branch predictabiligy (PMMX, PPro, PII and PIII)</h4><p> +Multiway branches (switch/case statements) are implemented either as an indirect jump +using a list of jump addresses, or as a tree of branch instructions. Since indirect jumps are +poorly predicted, the latter method may be preferred if easily predicted patterns can be +expected and you have enough BTB entries. In case you decide to use the former method, +then it is recommended that you put the list of jump addresses in the data segment. +<p> +You may want to reorganize your code so that branch patterns which are not predicted +perfectly can be replaced by other patterns which are. Consider, for example, a loop which +always executes 20 times. The conditional jump at the bottom of the loop is taken 19 times +and falls through every 20'th time. This pattern is regular, but not recognized by the pattern +recognition mechanism, so the fall-through is always mispredicted. You may make two +nested loops by four and five, or unroll the loop by four and let it execute 5 times, in order to +have only recognizable patterns. This kind of complicated schemes are only worth the extra +code on the PPro, PII and PIII processors where mispredictions are very expensive. For higher +loop counts there is no reason to do anything about the single misprediction. +<p> +<h3><a name="22_3">22.3. Avoiding jumps (all processors)</a></h3><p> +There can be many reasons why you may want reduce the number of jumps, calls and +returns: +<ul> +<li>jump mispredictions are very expensive, +<li>there are various penalties for consecutive or chained jumps, depending on the +processor, +<li>jump instructions may push one another out of the branch target buffer because of the +random replacement algorithm, +<li>a return takes 2 clocks on PPlain and PMMX, calls and returns generate 4 uops on +PPro, PII and PIII. +<li>on PPro, PII and PIII, instruction fetch may be delayed after a jump +(chapter <a href="#15">15</a>), and +retirement may be slightly less effective for taken jumps then for other uops +(chapter <a href="#18">18</a>). +</ul> +<p> +Calls and returns can be avoided by replacing small procedures with inline macros. +And in many cases it is possible to reduce the number of jumps by restructuring +your code. For example, a jump to a jump should be replaced by a jump to the final +target. In some cases this is even possible with conditional jumps if the condition +is the same or is known. A jump to a return can be replaced by a return. If you want +to eliminate a return to a return, then you should not manipulate the stack pointer +because that would interfere with the prediction mechanism of the return stack buffer. +Instead, you can replace the preceding call with a jump. For example +<kbd>CALL PRO1 / RET</kbd> can be replaced by <kbd>JMP PRO1</kbd> if +<kbd>PRO1</kbd> ends with the same kind of <kbd>RET</kbd>. +<p> +You may also eliminate a jump by dublicating the code jumped to. This can be +useful if you have a two-way branch inside a loop or before a return. Example: +<pre>A: CMP [EAX+4*EDX],ECX + JE B + CALL X + JMP C +B: CALL Y +C: INC EDX + JNZ A + MOV ESP, EBP + POP EBP + RET</pre><p> +The jump to <kbd>C</kbd> may be eliminated by dublicating the loop epilog: +<pre>A: CMP [EAX+4*EDX],ECX + JE B + CALL X + INC EDX + JNZ A + JMP D +B: CALL Y +C: INC EDX + JNZ A +D: MOV ESP, EBP + POP EBP + RET</pre><p> +The most often executed branch should come first here. The jump to <kbd>D</kbd> +is outside the loop and therefore less critical. If this jump is executed so often +that it needs optimizing too, then replace it with the three instructions following +<kbd>D</kbd>. +<p> +<h3><a name="22_4">22.4. Avoiding conditional jumps by using flags (all processors)</a></h3><p> +The most important jumps to eliminate are conditional jumps, especially if +they are poorly predictable. Sometimes it is possible to obtain the same effect +as a branch by ingenious manipulation of bits and flags. For example you may +calculate the absolute value of a signed number +without branching: +<pre> CDQ + XOR EAX,EDX + SUB EAX,EDX</pre><p> +(On PPlain and PMMX, use <kbd>MOV EDX,EAX / SAR EDX,31</kbd> instead of <kbd>CDQ</kbd>). +<p> +The carry flag is particularly useful for this kind of tricks:<br> +Setting carry if a value is zero: <kbd>CMP [VALUE],1</kbd><br> +Setting carry if a value is not zero: <kbd>XOR EAX,EAX / CMP EAX,[VALUE]</kbd><br> +Incrementing a counter if carry: <kbd>ADC EAX,0</kbd><br> +Setting a bit for each time the carry is set: <kbd>RCL EAX,1</kbd><br> +Generating a bit mask if carry is set: <kbd>SBB EAX,EAX</kbd><br> +Setting a bit on an arbitrary condition: <kbd>SETcond AL</kbd><br> +Setting all bits on an arbitrary condition: <kbd>XOR EAX,EAX / SETNcond AL / DEC EAX</kbd><br> +(remember to reverse the condition in the last example) +<p> +The following example finds the minimum of two unsigned numbers: if (b < a) a = b; +<pre> SUB EBX,EAX + SBB ECX,ECX + AND ECX,EBX + ADD EAX,ECX</pre><p> +The next example chooses between two numbers: if (a != 0) a = b; else a = c; +<pre> CMP EAX,1 + SBB EAX,EAX + XOR ECX,EBX + AND EAX,ECX + XOR EAX,EBX</pre><p> +Whether or not such tricks are worth the extra code depends on how predictable a +conditional jump would be, whether the extra pairing or scheduling opportunities of the branch-free code +can be utilized, and whether there are other jumps following immediately after which could +suffer the penalties of consecutive jumps. +<p> +<h3><a name="22_5">22.5. Replacing conditional jumps by conditional moves (PPro, PII and PIII)</a></h3><p> +The PPro, PII and PIII processors have conditional move instructions intended specifically for +avoiding branches because branch misprediction is very time-consuming on these +processors. There are conditional move instructions for both integer and floating point +registers. For code that will run only on these processors you may replace poorly +predictable branches with conditional moves whenever possible. If you want your code to +run on all processors then you may make two versions of the most critical parts of the code, +one for processors that support conditional move instructions and one for those that don't +(see chapter <a href="#27_10">27.10</a> for how to detect if conditional moves are supported). +<p> +The misprediction penalty for a branch may be so high that it is advantageous to replace it +with conditional moves even when it costs several extra instructions. But a conditional move +instruction has the disadvantage that it makes dependency chains longer. The conditional move +waits for both register operands to be ready even +though only one of them is needed. A conditional move is waiting for three operands to be +ready: the condition flag and the two move operands. You have to consider if any of these +three operands are likely to be delayed by dependency chains or cache misses. If the +condition flag is available long before the move operands then you may as well use a +branch, because a possible branch misprediction could be resolved while waiting for the +move operands. In situations where you have to wait long for a move operand that may not +be needed after all, the branch will be faster than the conditional move despite a possible +misprediction penalty. The opposite situation is when the condition flag is delayed while +both move operands are available early. In this situation the conditional move is preferred +over the branch if misprediction is likely. + +<p> +<h2><a name="23">23</a>. Reducing code size (all processors)</h2><p> +As explained in chapter <a href="#7">7</a>, the code cache is 8 or 16 kb. If you have problems keeping the +critical parts of your code within the code cache, then you may consider reducing the size of +your code. +<p> + 32 bit code is usually bigger than 16 bit code because addresses and data constants take 4 +bytes in 32 bit code and only 2 bytes in 16 bit code. However, 16 bit code has other +penalties such as prefixes and problems with accessing adjacent words simultaneously +(see chapter 10.2 <a href="#imperfectpush">above</a>). Some other methods for reducing the size or your code are discussed +below. +<p> +Both jump addresses, data addresses, and data constants take less space if they can be +expressed as a sign-extended byte, i.e. if they are within the interval from -128 to +127. +<p> +For jump addresses this means that short jumps take two bytes of code, whereas jumps +beyond 127 bytes take 5 bytes if unconditional and 6 bytes if conditional. +<p> +Likewise, data addresses take less space if they can be expressed as a pointer and a +displacement between -128 and +127. +Example:<br> +<kbd> MOV EBX,DS:[100000] / ADD EBX,DS:[100004] ; 12 bytes</kbd><br> +Reduce to:<br> +<kbd> MOV EAX,100000 / MOV EBX,[EAX] / ADD EBX,[EAX+4] ; 10 bytes</kbd> +<p> +The advantage of using a pointer obviously increases if you use it many times. Storing data +on the stack and using <kbd>EBP</kbd> or <kbd>ESP</kbd> as pointer will thus make your code smaller than if you +use static memory locations and absolute addresses, provided of course that your data are +within +/-127 bytes of the pointer. Using <kbd>PUSH</kbd> and <kbd>POP</kbd> to write and read temporary data is +even shorter. +<p> + Data constants may also take less space if they are between -128 and +127. Most +instructions with immediate operands have a short form where the operand is a +sign-extended single byte. Examples: +<pre> PUSH 200 ; 5 bytes + PUSH 100 ; 2 bytes + + ADD EBX,128 ; 6 bytes + SUB EBX,-128 ; 3 bytes</pre><p> + + The most important instruction with an immediate operand which doesn't have such a short +form is <kbd>MOV</kbd>.<br> +Examples: +<pre> MOV EAX, 0 ; 5 bytes</pre><p> + May be changed to:<br> +<pre> XOR EAX,EAX ; 2 bytes</pre><p> +And +<pre> MOV EAX, 1 ; 5 bytes</pre><p> + May be changed to: +<pre> XOR EAX,EAX / INC EAX ; 3 bytes</pre><p> +or: +<pre> PUSH 1 / POP EAX ; 3 bytes</pre><p> +And +<pre> MOV EAX, -1 ; 5 bytes</pre><p> +May be changed to: +<pre> OR EAX, -1 ; 3 bytes</pre> +<p> +If the same address or constant is used more than once then you may load it +into a register. A <kbd>MOV</kbd> +with a 4-byte immediate operand may sometimes be replaced by an arithmetic +instruction if the value of the register before the <kbd>MOV</kbd> is known. Example: +<pre> MOV [mem1],200 ; 10 bytes + MOV [mem2],200 ; 10 bytes + MOV [mem3],201 ; 10 bytes + MOV EAX,100 ; 5 bytes + MOV EBX,150 ; 5 bytes</pre><p> +Assuming that <kbd>mem1</kbd> and <kbd>mem3</kbd> are both within -128/+127 +bytes of <kbd>mem2</kbd>, this may be changed to: +<pre> MOV EBX, OFFSET mem2 ; 5 bytes + MOV EAX,200 ; 5 bytes + MOV [EBX+mem1-mem2],EAX ; 3 bytes + MOV [EBX],EAX ; 2 bytes + INC EAX ; 1 byte + MOV [EBX+mem3-mem2],EAX ; 3 bytes + SUB EAX,101 ; 3 bytes + LEA EBX,[EAX+50] ; 3 bytes</pre><p> +Be aware of the AGI stall in the <kbd>LEA</kbd> instruction (for PPlain and PMMX). +<p> +You may also consider that different instructions have different lengths. The following +instructions take only one byte and are therefore very attractive: +<kbd>PUSH reg</kbd>, <kbd>POP reg, INC reg32, DEC reg32</kbd>.<br> +<kbd>INC</kbd> and <kbd>DEC</kbd> with 8 bit registers take 2 bytes, so +<kbd>INC EAX</kbd> is shorter than <kbd>INC AL</kbd>. +<p> +<kbd>XCHG EAX,reg</kbd> is also a single-byte instruction and thus takes less space +than <kbd>MOV EAX,reg</kbd>, but it is slower. +<p> +Some instructions take one byte less when they use the accumulator than when they use +any other register. <br> +Examples: + +<pre> MOV EAX,DS:[100000] is smaller than MOV EBX,DS:[100000] + ADD EAX,1000 is smaller than ADD EBX,1000</pre><p> + + Instructions with pointers take one byte less when they have only a base pointer + (not <kbd>ESP</kbd>) +and a displacement than when they have a scaled index register, or both base pointer and +index register, or <kbd>ESP</kbd> as base pointer. <br> +Examples: +<pre> MOV EAX,[array][EBX] is smaller than MOV EAX,[array][EBX*4] + MOV EAX,[EBP+12] is smaller than MOV EAX,[ESP+12]</pre><p> + Instructions with <kbd>EBP</kbd> as base pointer and no displacement and no index take one byte more +than with other registers: +<pre> MOV EAX,[EBX] is smaller than MOV EAX,[EBP], but + MOV EAX,[EBX+4] is same size as MOV EAX,[EBP+4].</pre><p> + Instructions with a scaled index pointer and no base pointer must have a four byte +displacement, even when it is 0: +<pre> LEA EAX,[EBX+EBX] is shorter than LEA EAX,[2*EBX].</pre> +<p> +<h2><a name="24">24</a>. Scheduling floating point code (PPlain and PMMX)</h2><p> +Floating point instructions cannot pair the way integer instructions can, except for one +special case, defined by the following rules: +<ul> +<li>the first instruction (executing in the U-pipe) must be <kbd>FLD, FADD, FSUB, FMUL, +FDIV, FCOM, FCHS,</kbd> or <kbd>FABS</kbd>. +<li>the second instruction (in V-pipe) must be <kbd>FXCH</kbd> +<li>the instruction following the <kbd>FXCH</kbd> must be a floating point instruction, otherwise the +<kbd>FXCH</kbd> will pair imperfectly and take an extra clock cycle. +</ul><p> +This special pairing is important, as will be explained shortly. +<p> +While floating point instructions in general cannot be paired, many can be pipelined, i.e. one +instruction can begin before the previous instruction has finished. Example: +<pre> FADD ST(1),ST(0) ; clock cycle 1-3 + FADD ST(2),ST(0) ; clock cycle 2-4 + FADD ST(3),ST(0) ; clock cycle 3-5 + FADD ST(4),ST(0) ; clock cycle 4-6</pre><p> +Obviously, two instructions cannot overlap if the second instruction needs the result of the +first. Since almost all floating point instructions involve the top of stack register, +<kbd>ST(0)</kbd>, there are seemingly not very many possibilities for making an instruction independent of the +result of previous instructions. The solution to this problem is register renaming. The <kbd>FXCH</kbd> +instruction does not in reality swap the contents of two registers, it only swaps their names. +Instructions which push or pop the register stack also work by renaming. Floating point +register renaming has been highly optimized on the Pentiums so that a register may be +renamed while in use. Register renaming never causes stalls - it is even possible to rename +a register more than once in the same clock cycle, as for example when you pair <kbd>FLD</kbd> or +<kbd>FCOMPP</kbd> with <kbd>FXCH</kbd>. +<p> +By the proper use of <kbd>FXCH</kbd> instructions you may obtain a lot of overlapping in your floating +point code. Example: +<pre> FLD [a1] ; clock cycle 1 + FADD [a2] ; clock cycle 2-4 + FLD [b1] ; clock cycle 3 + FADD [b2] ; clock cycle 4-6 + FLD [c1] ; clock cycle 5 + FADD [c2] ; clock cycle 6-8 + FXCH ST(2) ; clock cycle 6 + FADD [a3] ; clock cycle 7-9 + FXCH ST(1) ; clock cycle 7 + FADD [b3] ; clock cycle 8-10 + FXCH ST(2) ; clock cycle 8 + FADD [c3] ; clock cycle 9-11 + FXCH ST(1) ; clock cycle 9 + FADD [a4] ; clock cycle 10-12 + FXCH ST(2) ; clock cycle 10 + FADD [b4] ; clock cycle 11-13 + FXCH ST(1) ; clock cycle 11 + FADD [c4] ; clock cycle 12-14 + FXCH ST(2) ; clock cycle 12</pre><p> +In the above example we are interleaving three independent threads. Each <kbd>FADD</kbd> takes 3 +clock cycles, and we can start a new <kbd>FADD</kbd> in each clock cycle. When we have started an +<kbd>FADD</kbd> in the 'a' thread we have time to start two new <kbd>FADD</kbd> +instructions in the '<kbd>b</kbd>' and '<kbd>c</kbd>' +threads before returning to the '<kbd>a</kbd>' thread, so every third +<kbd>FADD</kbd> belongs to the same thread. +We are using <kbd>FXCH</kbd> instructions every time to get the register that belongs to the desired +thread into <kbd>ST(0)</kbd>. As you can see in the example above, this generates a regular pattern, +but note well that the <kbd>FXCH</kbd> instructions repeat with a period of two while the threads have a +period of three. This can be quite confusing, so you have to 'play computer' in order to know +which registers are where. +<p> +All versions of the instructions <kbd>FADD, FSUB, FMUL,</kbd> and +<kbd>FILD</kbd> take 3 clock cycles and are +able to overlap, so that these instructions may be scheduled using the method described +above. Using a memory operand does not take more time than a register operand if the +memory operand is in the level 1 cache and properly aligned. +<p> +By now you must be used to rules having exceptions, and the overlapping rule is no +exception: You cannot start an <kbd>FMUL</kbd> instruction one clock cycle +after another <kbd>FMUL</kbd> +instruction, because the <kbd>FMUL</kbd> circuitry is not perfectly pipelined. +It is recommended that you +put another instruction in between two <kbd>FMUL</kbd>'s. Example: +<pre> FLD [a1] ; clock cycle 1 + FLD [b1] ; clock cycle 2 + FLD [c1] ; clock cycle 3 + FXCH ST(2) ; clock cycle 3 + FMUL [a2] ; clock cycle 4-6 + FXCH ; clock cycle 4 + FMUL [b2] ; clock cycle 5-7 (stall) + FXCH ST(2) ; clock cycle 5 + FMUL [c2] ; clock cycle 7-9 (stall) + FXCH ; clock cycle 7 + FSTP [a3] ; clock cycle 8-9 + FXCH ; clock cycle 10 (unpaired) + FSTP [b3] ; clock cycle 11-12 + FSTP [c3] ; clock cycle 13-14</pre><p> +Here you have a stall before <kbd>FMUL [b2]</kbd> and before <kbd>FMUL [c2]</kbd> +because another <kbd>FMUL</kbd> +started in the preceding clock cycle. You can improve this code by putting +<kbd>FLD</kbd> instructions in between the <kbd>FMUL</kbd>'s: +<pre> FLD [a1] ; clock cycle 1 + FMUL [a2] ; clock cycle 2-4 + FLD [b1] ; clock cycle 3 + FMUL [b2] ; clock cycle 4-6 + FLD [c1] ; clock cycle 5 + FMUL [c2] ; clock cycle 6-8 + FXCH ST(2) ; clock cycle 6 + FSTP [a3] ; clock cycle 7-8 + FSTP [b3] ; clock cycle 9-10 + FSTP [c3] ; clock cycle 11-12</pre><p> +In other cases you may put <kbd>FADD, FSUB</kbd>, or anything else in +between <kbd>FMUL</kbd>'s to avoid the stalls. +<p> +Overlapping floating point instructions requires of course that you have some independent +threads that you can interleave. If you have only one big formula to execute, then you may +compute parts of the formula in parallel to achieve overlapping. If, for example, you want to +add six numbers, then you may split the operations into two threads with three numbers in +each, and add the two threads in the end: + +<pre> FLD [a] ; clock cycle 1 + FADD [b] ; clock cycle 2-4 + FLD [c] ; clock cycle 3 + FADD [d] ; clock cycle 4-6 + FXCH ; clock cycle 4 + FADD [e] ; clock cycle 5-7 + FXCH ; clock cycle 5 + FADD [f] ; clock cycle 7-9 (stall) + FADD ; clock cycle 10-12 (stall)</pre><p> + +Here we have a one clock stall before <kbd>FADD [f]</kbd> because it is waiting +for the result of <kbd>FADD [d]</kbd> and a two clock stall before the last +<kbd>FADD</kbd> because it is waiting for the result of +<kbd>FADD [f]</kbd>. The latter stall can be hidden by filling in some integer +instructions, but the first stall can not because an integer instruction at +this place would make the <kbd>FXCH</kbd> pair imperfectly. +<p> +The first stall can be avoided by having three threads rather than two, but +that would cost an extra <kbd>FLD</kbd> so we do not save anything by having +three threads rather than two unless there are at least eight numbers to add. +<p> +Not all floating point instructions can overlap. And some floating point +instructions can overlap more subsequent integer instructions than subsequent +floating point instructions. The <kbd>FDIV</kbd> instruction, for example, +takes 39 clock cycles. All but the first clock cycle can +overlap with integer instructions, but only the last two clock cycles can +overlap with floating point instructions. Example: +<pre> FDIV ; clock cycle 1-39 (U-pipe) + FXCH ; clock cycle 1-2 (V-pipe, imperfect pairing) + SHR EAX,1 ; clock cycle 3 (U-pipe) + INC EBX ; clock cycle 3 (V-pipe) + CMC ; clock cycle 4-5 (non-pairable) + FADD [x] ; clock cycle 38-40 (U-pipe, waiting while FPU busy) + FXCH ; clock cycle 38 (V-pipe) + FMUL [y] ; clock cycle 40-42 (U-pipe, waiting for result of FDIV)</pre><p> +The first <kbd>FXCH</kbd> pairs with the <kbd>FDIV</kbd>, but takes an extra +clock cycle because it is not followed by a floating point instruction. +The <kbd>SHR / INC</kbd> pair starts before the <kbd>FDIV</kbd> is finished, but +has to wait for the <kbd>FXCH</kbd> to finish. The <kbd>FADD</kbd> has to wait +till clock 38 because new floating point instructions can only execute during +the last two clock cycles of the <kbd>FDIV</kbd>. The second <kbd>FXCH</kbd> +pairs with the <kbd>FADD</kbd>. The <kbd>FMUL</kbd> has to wait for the <kbd>FDIV</kbd> +to finish because it uses the result of the division. +<p> +If you have nothing else to put in after a floating point instruction with a +large integer overlap, such as <kbd>FDIV</kbd> or <kbd>FSQRT</kbd>, then you +may put in a dummy read from an address which you expect to need later in +the program to make sure it is in the level one cache. Example: +<pre> FDIV QWORD PTR [EBX] + CMP [ESI],ESI + FMUL QWORD PTR [ESI]</pre><p> +Here we use the integer overlap to pre-load the value at <kbd>[ESI]</kbd> into +the cache while the <kbd>FDIV</kbd> is being computed (we don't care what +the result of the <kbd>CMP</kbd> is). +<p> +Chapter <a href="#28">28</a> gives a complete listing of floating point instructions, and +what they can pair or overlap with. +<p> +There is no penalty for using a memory operand on floating point instuctions +because the arithmetic unit is one step later in the pipeline than the read +unit. The tradeoff of this comes when you store floating point data to memory. +The <kbd>FST</kbd> or <kbd>FSTP</kbd> instruction with a memory +operand takes two clock cycles in the execution stage, but it needs the data one clock +earlier so you will get a one clock stall if the value to store is not ready one clock cycle in +advance. This is analogous to an AGI stall. Example: +<pre> FLD [a1] ; clock cycle 1 + FADD [a2] ; clock cycle 2-4 + FLD [b1] ; clock cycle 3 + FADD [b2] ; clock cycle 4-6 + FXCH ; clock cycle 4 + FSTP [a3] ; clock cycle 6-7 + FSTP [b3] ; clock cycle 8-9</pre><p> + +The <kbd>FSTP [a3]</kbd> stalls for one clock cycle because the result of +<kbd>FADD [a2]</kbd> is not ready +in the preceding clock cycle. In many cases you cannot hide this type of stall without +scheduling your floating point code into four threads or putting some integer instructions in +between. The two clock cycles in the execution stage of the <kbd>FST(P)</kbd> instruction cannot pair +or overlap with any subsequent instructions. +<p> +Instructions with integer operands such as <kbd>FIADD, FISUB, FIMUL, FIDIV, FICOM</kbd> may +be split up into simpler operations in order to improve overlapping. Example: +<pre> FILD [a] ; clock cycle 1-3 + FIMUL [b] ; clock cycle 4-9</pre><p> +Split up into: +<pre> FILD [a] ; clock cycle 1-3 + FILD [b] ; clock cycle 2-4 + FMUL ; clock cycle 5-7</pre><p> +In this example, you save two clocks by overlapping the two FILD instructions. +<p> +<h2><a name="25">25</a>. Loop optimization (all processors)</h2><p> +When analyzing a program you often find that most of the time consumption lies in the +innermost loop. The way to improve the speed is to carefully optimize the most +time-consuming loop using assembly language. The rest of the program may be left in high-level +language. +<p> +In all the following examples it is assumed that all data are in the level 1 cache. If the speed +is limited by cache misses then there is no reason to optimize the instructions. Rather, you +should concentrate on organizing your data in a way that minimizes cache misses (see +chapter <a href="#7">7</a>). +<p> +<h3><a name="25_1">25.1. Loops in PPlain and PMMX</a></h3><p> +A loop generally contains a counter controlling how many times to iterate, and often array +access reading or writing one array element for each iteration. I have chosen as example a +procedure which reads integers from an array, changes the sign of each integer, and stores +the results in another array. +<p> +A C language code for this procedure would be: +<pre>void ChangeSign (int * A, int * B, int N) { + int i; + for (i=0; i<N; i++) B[i] = -A[i];}</pre> +<p> +Translating to assembly, we might write the procedure like this: +<p> +<h4>Example 1.1:</h4><p> +<pre>_ChangeSign PROC NEAR + PUSH ESI + PUSH EDI +A EQU DWORD PTR [ESP+12] +B EQU DWORD PTR [ESP+16] +N EQU DWORD PTR [ESP+20] + MOV ECX, [N] + JECXZ L2 + MOV ESI, [A] + MOV EDI, [B] + CLD +L1: LODSD + NEG EAX + STOSD + LOOP L1 +L2: POP EDI + POP ESI + RET ; (no extra pop if _cdecl calling convention) +_ChangeSign ENDP</pre><p> +This looks like a nice solution, but it is not optimal because it uses slow non-pairable +instructions. It takes 11 clock cycles per iteration if all data are in the level one cache. +<p> +<h4>Using pairable instructions only (PPlain and PMMX)</h4> +<h4>Example 1.2:</h4><p> +<pre> MOV ECX, [N] + MOV ESI, [A] + TEST ECX, ECX + JZ SHORT L2 + MOV EDI, [B] +L1: MOV EAX, [ESI] ; u + XOR EBX, EBX ; v (pairs) + ADD ESI, 4 ; u + SUB EBX, EAX ; v (pairs) + MOV [EDI], EBX ; u + ADD EDI, 4 ; v (pairs) + DEC ECX ; u + JNZ L1 ; v (pairs) +L2:</pre><p> +Here we have used pairable instructions only, and scheduled the instructions so that +everything pairs. It now takes only 4 clock cycles per iteration. We could have obtained the +same speed without splitting the NEG instruction, but the other unpairable instructions +should be split up. +<p> +<h4>Using the same register for counter and index</h4> +<h4>Example 1.3:</h4><p> +<pre> MOV ESI, [A] + MOV EDI, [B] + MOV ECX, [N] + XOR EDX, EDX + TEST ECX, ECX + JZ SHORT L2 +L1: MOV EAX, [ESI+4*EDX] ; u + NEG EAX ; u + MOV [EDI+4*EDX], EAX ; u + INC EDX ; v (pairs) + CMP EDX, ECX ; u + JB L1 ; v (pairs) +L2:</pre><p> +Using the same register for counter and index gives us fewer instructions in the body of the +loop, but it still takes 4 clocks because we have two unpaired instructions. +<p> +<h4>Letting the counter end at zero (PPlain and PMMX)</h4><p> +We want to get rid of the <kbd>CMP</kbd> instruction in example 1.3 by letting the counter end at zero +and use the zero flag for detecting when we are finished as we did in example 1.2. One way +to do this would be to execute the loop backwards taking the last array elements first. +However, data caches are optimized for accessing data forwards, not backwards, so if +cache misses are likely, then you should rather start the counter at -N and count through +negative values up to zero. The base registers should then point to the end of the arrays +rather than the beginning: +<p> +<h4>Example 1.4:</h4><p> +<pre> MOV ESI, [A] + MOV EAX, [N] + MOV EDI, [B] + XOR ECX, ECX + LEA ESI, [ESI+4*EAX] ; point to end of array A + SUB ECX, EAX ; -N + LEA EDI, [EDI+4*EAX] ; point to end of array B + JZ SHORT L2 +L1: MOV EAX, [ESI+4*ECX] ; u + NEG EAX ; u + MOV [EDI+4*ECX], EAX ; u + INC ECX ; v (pairs) + JNZ L1 ; u +L2:</pre><p> +We are now down at five instructions in the loop body but it still takes 4 clocks because of +poor pairing. (If the addresses and sizes of the arrays are constants we may save two +registers by substituting <kbd>A+SIZE A</kbd> for <kbd>ESI</kbd> +and <kbd>B+SIZE B</kbd> for <kbd>EDI</kbd>). Now let's see how we +can improve pairing. +<p> +<h4>Pairing calculations with loop overhead (PPlain and PMMX)</h4><p> +We may want to improve pairing by intermingling calculations with the loop control +instructions. If we want to put something in between <kbd>INC ECX</kbd> +and <kbd>JNZ L1</kbd>, it has to be +something that doesn't affect the zero flag. The <kbd>MOV [EDI+4*ECX],EBX</kbd> +instruction after <kbd>INC ECX</kbd> would generate an AGI delay, so we have +to be more ingenious: +<p> +<h4>Example 1.5:</h4><p> +<pre> MOV EAX, [N] + XOR ECX, ECX + SHL EAX, 2 ; 4 * N + JZ SHORT L3 + MOV ESI, [A] + MOV EDI, [B] + SUB ECX, EAX ; - 4 * N + ADD ESI, EAX ; point to end of array A + ADD EDI, EAX ; point to end of array B + JMP SHORT L2 +L1: MOV [EDI+ECX-4], EAX ; u +L2: MOV EAX, [ESI+ECX] ; v (pairs) + XOR EAX, -1 ; u + ADD ECX, 4 ; v (pairs) + INC EAX ; u + JNC L1 ; v (pairs) + MOV [EDI+ECX-4], EAX +L3:</pre><p> +I have used a different way to calculate the negative of <kbd>EAX</kbd> here: +inverting all bits and adding one. The reason why I am using this method is +that I can use a dirty trick with the +<kbd>INC</kbd> instruction: <kbd>INC</kbd> doesn't change the carry flag, +whereas <kbd>ADD</kbd> does. I am using <kbd>ADD</kbd> +rather than <kbd>INC</kbd> to increment my loop counter and testing the carry +flag rather than the zero +flag. It is then possible to put the <kbd>INC EAX</kbd> in between without +affecting the carry flag. You +may think that we could have used <kbd>LEA EAX,[EAX+1]</kbd> here instead of +<kbd>INC EAX</kbd>, at least +that doesn't change any flags, but the <kbd>LEA</kbd> instruction would have +an AGI stall so that's not +the best solution. Note that the trick with the <kbd>INC</kbd> instruction +not changing the carry flag is useful only on PPlain and PMMX, but will +cause a partial flags stall on PPro, PII and PIII. +<p> +I have obtained perfect pairing here and the loop now takes only 3 clock cycles. +Whether you want to increment the loop counter by 1 (as in example 1.4) or by 4 +(as in example 1.5) is a matter of taste, it makes no difference in loop timing. +<p> +<h4>Overlapping the end of one operation with the beginning of the next (PPlain and PMMX)</h4><p> +The method used in example 1.5 is not very generally applicable so we may look for other +methods of improving pairing opportunities. One way is to reorganize the loop so that the +end of one operation overlaps with the beginning of the next. I will call this convoluting the +loop. A convoluted loop has an unfinished operation at the end of each loop iteration which +will be finished in the next run. Actually, example 1.5 did pair the last <kbd>MOV</kbd> of one iteration +with the first <kbd>MOV</kbd> of the next, but we want to explore this method further: +<p> +<h4>Example 1.6:</h4><p> +<pre> MOV ESI, [A] + MOV EAX, [N] + MOV EDI, [B] + XOR ECX, ECX + LEA ESI, [ESI+4*EAX] ; point to end of array A + SUB ECX, EAX ; -N + LEA EDI, [EDI+4*EAX] ; point to end of array B + JZ SHORT L3 + XOR EBX, EBX + MOV EAX, [ESI+4*ECX] + INC ECX + JZ SHORT L2 +L1: SUB EBX, EAX ; u + MOV EAX, [ESI+4*ECX] ; v (pairs) + MOV [EDI+4*ECX-4], EBX ; u + INC ECX ; v (pairs) + MOV EBX, 0 ; u + JNZ L1 ; v (pairs) +L2: SUB EBX, EAX + MOV [EDI+4*ECX-4], EBX +L3:</pre><p> + +Here we begin reading the second value before we have stored the first, and +this of course improves pairing opportunities. The <kbd>MOV EBX,0</kbd> +instruction has been put in between <kbd>INC ECX</kbd> and <kbd>JNZ L1</kbd> +not to improve pairing but to avoid AGI stall. +<p> +<h4>Rolling out a loop (PPlain and PMMX)</h4><p> +The most generally applicable way to improve pairing opportunities is to do two operations +for each run and do half as many runs. This is called rolling out a loop: +<p> +<h4>Example 1.7:</h4><p> +<pre> MOV ESI, [A] + MOV EAX, [N] + MOV EDI, [B] + XOR ECX, ECX + LEA ESI, [ESI+4*EAX] ; point to end of array A + SUB ECX, EAX ; -N + LEA EDI, [EDI+4*EAX] ; point to end of array B + JZ SHORT L2 + TEST AL,1 ; test if N is odd + JZ SHORT L1 + MOV EAX, [ESI+4*ECX] ; N is odd. do the odd one + NEG EAX + MOV [EDI+4*ECX], EAX + INC ECX ; make counter even + JZ SHORT L2 ; N = 1 +L1: MOV EAX, [ESI+4*ECX] ; u + MOV EBX, [ESI+4*ECX+4] ; v (pairs) + NEG EAX ; u + NEG EBX ; u + MOV [EDI+4*ECX], EAX ; u + MOV [EDI+4*ECX+4], EBX ; v (pairs) + ADD ECX, 2 ; u + JNZ L1 ; v (pairs) +L2:</pre> +<p> +Now we are doing two operations in parallel which gives the best pairing opportunities. We +have to test if <kbd>N</kbd> is odd and if so do one operation outside the loop because the loop can +only do an even number of operations. +<p> +The loop has an AGI stall at the first <kbd>MOV</kbd> instruction because +<kbd>ECX</kbd> has been incremented in +the preceding clock cycle. The loop therefore takes 6 clock cycles for two operations. +<p> +<h4>Reorganizing a loop to remove AGI stall (PPlain and PMMX)</h4> +<h4>Example 1.8:</h4><p> +<pre> MOV ESI, [A] + MOV EAX, [N] + MOV EDI, [B] + XOR ECX, ECX + LEA ESI, [ESI+4*EAX] ; point to end of array A + SUB ECX, EAX ; -N + LEA EDI, [EDI+4*EAX] ; point to end of array B + JZ SHORT L3 + TEST AL,1 ; test if N is odd + JZ SHORT L2 + MOV EAX, [ESI+4*ECX] ; N is odd. do the odd one + NEG EAX ; no pairing opportunity + MOV [EDI+4*ECX-4], EAX + INC ECX ; make counter even + JNZ SHORT L2 + NOP ; add NOP's if JNZ L2 not predictable + NOP + JMP SHORT L3 ; N = 1 +L1: NEG EAX ; u + NEG EBX ; u + MOV [EDI+4*ECX-8], EAX ; u + MOV [EDI+4*ECX-4], EBX ; v (pairs) +L2: MOV EAX, [ESI+4*ECX] ; u + MOV EBX, [ESI+4*ECX+4] ; v (pairs) + ADD ECX, 2 ; u + JNZ L1 ; v (pairs) + NEG EAX + NEG EBX + MOV [EDI+4*ECX-8], EAX + MOV [EDI+4*ECX-4], EBX +L3:</pre> +<p> +The trick is to find a pair of instructions that do not use the loop counter as index and +reorganize the loop so that the counter is incremented in the preceding clock cycle. We are +now down at 5 clock cycles for two operations which is close to the best possible. +<p> +If data caching is critical, then you may improve the speed further by +interleaving the <kbd>A</kbd> and <kbd>B</kbd> arrays into one structured array +so that each <kbd>B[i]</kbd> comes immediately after the +corresponding <kbd>A[i]</kbd>. If the structured array is aligned by at least +8 then <kbd>B[i]</kbd> will always be +in the same cache line as <kbd>A[i]</kbd>, so you will never have a cache +miss when writing <kbd>B[i]</kbd>. +This may of course have a tradeoff in other parts of the program so you +have to weigh the costs against the benefits. +<p> +<h4>Rolling out by more than 2 (PPlain and PMMX)</h4><p> +You may think of doing more than two operations per iteration in order to reduce the loop +overhead per operation. But since the loop overhead in most cases can be reduced to only +one clock cycle per iteration, then rolling out the loop by 4 rather than by 2 would only save +1/4 clock cycle per operation, which is hardly worth the effort. Only if the loop overhead +cannot be reduced to one clock cycle and if N is very big, should you think of unrolling by 4. +<p> +The drawbacks of excessive loop unrolling are: +<ol> +<li>You need to calculate N MODULO R, where R is the unrolling factor, and do N +MODULO R operations before or after the main loop in order to make the remaining +number of operations divisible by R. This takes a lot of extra code and poorly predictable +branches. And the loop body of course also becomes bigger. +<li>A Piece of code usually takes much more time the first time it executes, and the penalty +of first time execution is bigger the more code you have, especially if N is small. +<li>Excessive code size makes the utilization of the code cache less effective. +</ol> +<p> +<h4>Handling multiple 8 or 16 bit operands simultaneously in 32 bit registers (PPlain and PMMX)</h4><p> +If you need to manipulate arrays of 8 or 16 bit operands, then there is a problem with +unrolled loops because you may not be able to pair two memory access operations. For +example <kbd>MOV AL,[ESI] / MOV BL,[ESI+1]</kbd> will not pair if the two operands are within +the same dword of memory. But there may be a much smarter method, namely to handle +four bytes at a time in the same 32 bit register. +<p> +The following example adds 2 to all elements of an array of bytes: +<p> +<h4>Example 1.9:</h4><p> +<pre> MOV ESI, [A] ; address of byte array + MOV ECX, [N] ; number of elements in byte array + TEST ECX, ECX ; test if N is 0 + JZ SHORT L2 + MOV EAX, [ESI] ; read first four bytes +L1: MOV EBX, EAX ; copy into EBX + AND EAX, 7F7F7F7FH ; get lower 7 bits of each byte in EAX + XOR EBX, EAX ; get the highest bit of each byte + ADD EAX, 02020202H ; add desired value to all four bytes + XOR EBX, EAX ; combine bits again + MOV EAX, [ESI+4] ; read next four bytes + MOV [ESI], EBX ; store result + ADD ESI, 4 ; increment pointer + SUB ECX, 4 ; decrement loop counter + JA L1 ; loop +L2:</pre><p> +This loop takes 5 clock cycles for every 4 bytes. The array should of course be aligned by +4. If the number of elements in the array is not divisible by four, then you may padd it in the +end with a few extra bytes to make the length divisible by four. This loop will always read +past the end of the array, so you should make sure the array is not placed at the end of a +segment to avoid a general protection error. +<p> +Note that I have masked out the highest bit of each byte to avoid a possible carry from +each byte into the next when adding. I am using <kbd>XOR</kbd> rather than +<kbd>ADD</kbd> when putting in the high bit again to avoid carry. +<p> +The <kbd>ADD ESI,4</kbd> instruction could have been avoided by using the loop counter as index +as in example 1.4. However, this would give an odd number of instructions in the loop +body, so there would be one unpaired instruction and the loop would still take 5 clocks. +Making the branch instruction unpaired would save one clock after the last operation when +the branch is mispredicted, but we would have to spend an extra clock cycle in the prolog +code to setup a pointer to the end of the array and calculate -N, so the two methods will be +exactly equally fast. The method presented here is the simplest and shortest. +<p> +The next example finds the length of a zero-terminated string by searching +for the first byte of zero. It is faster than using <kbd>REP SCASB</kbd>: +<p> +<h4><a name="1-10">Example 1.10:</a></h4><p> +<pre>STRLEN PROC NEAR + MOV EAX,[ESP+4] ; get pointer + MOV EDX,7 + ADD EDX,EAX ; pointer+7 used in the end + PUSH EBX + MOV EBX,[EAX] ; read first 4 bytes + ADD EAX,4 ; increment pointer +L1: LEA ECX,[EBX-01010101H] ; subtract 1 from each byte + XOR EBX,-1 ; invert all bytes + AND ECX,EBX ; and these two + MOV EBX,[EAX] ; read next 4 bytes + ADD EAX,4 ; increment pointer + AND ECX,80808080H ; test all sign bits + JZ L1 ; no zero bytes, continue loop + TEST ECX,00008080H ; test first two bytes + JNZ SHORT L2 + SHR ECX,16 ; not in the first 2 bytes + ADD EAX,2 +L2: SHL CL,1 ; use carry flag to avoid a branch + POP EBX + SBB EAX,EDX ; compute length + RET +STRLEN ENDP</pre><p> +Again we have used the method of overlapping the end of one operation with the beginning +of the next to improve pairing. I have not unrolled the loop because it is likely to repeat +relatively few times. The string should of course be aligned by 4. The code will always read +past the end of the string, so the string should not be placed at the end of a segment. +<p> +The loop body has an odd number of instructions so there is one unpaired. Making the +branch instruction unpaired rather than one of the other instructions has the advantage that +it saves 1 clock cycle when the branch is mispredicted. +<p> +The <kbd>TEST ECX,00008080H</kbd> instruction is non-pairable. You could use the pairable +instruction <kbd>OR CH,CL</kbd> here instead, but then you would have to put +in a <kbd>NOP</kbd> or something to avoid the penalties of consecutive branches. +Another problem with <kbd>OR CH,CL</kbd> is that it +would cause a partial register stall on a PPro, PII and PIII. So I have chosen to keep the +unpairable <kbd>TEST</kbd> instruction. +<p> +Handling 4 bytes simultaneously can be quite difficult. The code uses a formula which +generates a nonzero value for a byte if, and only if, the byte is zero. This makes it possible +to test all four bytes in one operation. This algorithm involves the subtraction of 1 from all +bytes (in the <kbd>LEA</kbd> instruction). I have not masked out the highest bit of each byte before +subtracting, as I did in the previous example, so the subtraction may generate a borrow to +the next byte, but only if it is zero, and this is exactly the situation where we don't care what +the next byte is, because we are searching forwards for the first zero. If we were searching +backwards then we would have to re-read the dword after detecting a zero, and then test all +four bytes to find the last zero, or use <kbd>BSWAP</kbd> to reverse the order of the bytes. +<p> +If you want to search for a byte value other than zero, then you may <kbd>XOR</kbd> all four bytes +with the value you are searching for, and then use the method above to search for zero. +<p> +<h4>Loops with MMX operations (PMMX)</h4><p> +Handling multiple operands in the same register is easier on the MMX processors because +they have special instructions and special 64 bit registers for exactly this purpose. +<p> +Returning to the problem of adding two to all bytes in an array, we may take advantage of +the MMX instructions: +<h4>Example 1.11:</h4><p> +<pre>.data +ALIGN 8 +ADDENTS DQ 0202020202020202h ; specify byte to add eight times +A DD ? ; address of byte array +N DD ? ; number of iterations + +.code + MOV ESI, [A] + MOV ECX, [N] + MOVQ MM2, [ADDENTS] + JMP SHORT L2 + ; top of loop +L1: MOVQ [ESI-8], MM0 ; store result +L2: MOVQ MM0, MM2 ; load addents + PADDB MM0, [ESI] ; add eight bytes in one operation + ADD ESI, 8 + DEC ECX + JNZ L1 + MOVQ [ESI-8], MM0 ; store last result + EMMS</pre><p> +The store instruction is moved to after the loop control instructions in order to avoid a store stall. +<p> +This loop takes 4 clocks because the <kbd>PADDB</kbd> instruction doesn't pair +with <kbd>ADD ESI,8</kbd>. (A MMX instruction with memory access cannot pair +with a non-MMX instruction or with another MMX instruction with memory access). +We could get rid of <kbd>ADD ESI,8</kbd> by using <kbd>ECX</kbd> as index, +but that would give an AGI stall. +<p> +Since the loop overhead is considerable we might want to unroll the loop: +<p> +<h4>Example 1.12:</h4><p> +<pre>.data +ALIGN 8 +ADDENTS DQ 0202020202020202h ; specify byte to add eight +times +A DD ? ; address of byte array +N DD ? ; number of iterations + +.code + MOVQ MM2, [ADDENTS] + MOV ESI, [A] + MOV ECX, [N] + MOVQ MM0, MM2 + MOVQ MM1, MM2 +L3: PADDB MM0, [ESI] + PADDB MM1, [ESI+8] + MOVQ [ESI], MM0 + MOVQ MM0, MM2 + MOVQ [ESI+8], MM1 + MOVQ MM1, MM2 + ADD ESI, 16 + DEC ECX + JNZ L3 + EMMS</pre><p> +This unrolled loop takes 6 clocks per iteration for adding 16 bytes. +The <kbd>PADDB</kbd> instructions are not paired. The two threads are +interleaved to avoid a store stall. +<p> +Using the MMX instructions has a high penalty if you are using floating point +instructions shortly afterwards, so there may still be situations where you +want to use 32 bit registers as in example 1.9. +<p> +<h4>Loops with floating point operations (PPlain and PMMX)</h4><p> +The methods of optimizing floating point loops are basically the same as for integer loops, +although the floating point instructions are overlapping rather than pairing. +<p> +Consider the C language code: +<pre> int i, n; double * X; double * Y; double DA; + for (i=0; i<n; i++) Y[i] = Y[i] - DA * X[i];</pre><p> +This piece of code (called DAXPY) has been studied extensively because it is the key to +solving linear equations. +<p> +<h4>Example 1.13:</h4><p> +<pre>DSIZE = 8 ; data size + MOV EAX, [N] ; number of elements + MOV ESI, [X] ; pointer to X + MOV EDI, [Y] ; pointer to Y + XOR ECX, ECX + LEA ESI, [ESI+DSIZE*EAX] ; point to end of X + SUB ECX, EAX ; -N + LEA EDI, [EDI+DSIZE*EAX] ; point to end of Y + JZ SHORT L3 ; test for N = 0 + FLD DSIZE PTR [DA] + FMUL DSIZE PTR [ESI+DSIZE*ECX] ; DA * X[0] + JMP SHORT L2 ; jump into loop +L1: FLD DSIZE PTR [DA] + FMUL DSIZE PTR [ESI+DSIZE*ECX] ; DA * X[i] + FXCH ; get old result + FSTP DSIZE PTR [EDI+DSIZE*ECX-DSIZE] ; store Y[i] +L2: FSUBR DSIZE PTR [EDI+DSIZE*ECX] ; subtract from Y[i] + INC ECX ; increment index + JNZ L1 ; loop + FSTP DSIZE PTR [EDI+DSIZE*ECX-DSIZE] ; store last result +L3:</pre><p> +Here we are using the same methods as in example 1.6: Using the loop counter as index +register and counting through negative values up to zero. The end of one operation +overlaps with the beginning of the next. +<p> +The interleaving of floating point operations work perfectly here: +The 2 clock stall between <kbd>FMUL</kbd> and <kbd>FSUBR</kbd> is filled +with the <kbd>FSTP</kbd> of the previous result. The 3 clock stall between +<kbd>FSUBR</kbd> and <kbd>FSTP</kbd> is filled with the loop overhead and the +first two instructions of the next operation. An AGI stall has been avoided +by reading the only parameter that doesn't depend on the index in the first clock cycle after the index has been incremented. +<p> +This solution takes 6 clock cycles per operation, which is better than the +unrolled solution published by Intel! +<p> +<h4>Unrolling floating point loops (PPlain and PMMX)</h4><p> +<a name="unrollby3">The DAXPY loop unrolled by 3 is quite complicated:</a> +<h4>Example 1.14:</h4><p> +<pre>DSIZE = 8 ; data size +IF DSIZE EQ 4 +SHIFTCOUNT = 2 +ELSE +SHIFTCOUNT = 3 +ENDIF + + MOV EAX, [N] ; number of elements + MOV ECX, 3*DSIZE ; counter bias + SHL EAX, SHIFTCOUNT ; DSIZE*N + JZ L4 ; N = 0 + MOV ESI, [X] ; pointer to X + SUB ECX, EAX ; (3-N)*DSIZE + MOV EDI, [Y] ; pointer to Y + SUB ESI, ECX ; end of pointer - bias + SUB EDI, ECX + TEST ECX, ECX + FLD DSIZE PTR [ESI+ECX] ; first X + JNS SHORT L2 ; less than 4 operations +L1: ; main loop + FMUL DSIZE PTR [DA] + FLD DSIZE PTR [ESI+ECX+DSIZE] + FMUL DSIZE PTR [DA] + FXCH + FSUBR DSIZE PTR [EDI+ECX] + FXCH + FLD DSIZE PTR [ESI+ECX+2*DSIZE] + FMUL DSIZE PTR [DA] + FXCH + FSUBR DSIZE PTR [EDI+ECX+DSIZE] + FXCH ST(2) + FSTP DSIZE PTR [EDI+ECX] + FSUBR DSIZE PTR [EDI+ECX+2*DSIZE] + FXCH + FSTP DSIZE PTR [EDI+ECX+DSIZE] + FLD DSIZE PTR [ESI+ECX+3*DSIZE] + FXCH + FSTP DSIZE PTR [EDI+ECX+2*DSIZE] + ADD ECX, 3*DSIZE + JS L1 ; loop +L2: FMUL DSIZE PTR [DA] ; finish leftover operation + FSUBR DSIZE PTR [EDI+ECX] + SUB ECX, 2*DSIZE ; change pointer bias + JZ SHORT L3 ; finished + FLD DSIZE PTR [DA] ; start next operation + FMUL DSIZE PTR [ESI+ECX+3*DSIZE] + FXCH + FSTP DSIZE PTR [EDI+ECX+2*DSIZE] + FSUBR DSIZE PTR [EDI+ECX+3*DSIZE] + ADD ECX, 1*DSIZE + JZ SHORT L3 ; finished + FLD DSIZE PTR [DA] + FMUL DSIZE PTR [ESI+ECX+3*DSIZE] + FXCH + FSTP DSIZE PTR [EDI+ECX+2*DSIZE] + FSUBR DSIZE PTR [EDI+ECX+3*DSIZE] + ADD ECX, 1*DSIZE +L3: FSTP DSIZE PTR [EDI+ECX+2*DSIZE] +L4:</pre><p> +The reason why I am showing you how to unroll a loop by 3 is not to recommend +it, but to warn you how difficult it is! Be prepared to spend a considerable amount of time debugging +and verifying your code when doing something like this. There are several problems to take +care of: In most cases, you cannot remove all stalls from a floating point loop unrolled by +less than 4 unless you convolute it (i.e. there are unfinished operations at the end of each +run which are being finished in the next run). The last <kbd>FLD</kbd> in the main loop above is the +beginning of the first operation in the next run. It would be tempting here to make a solution +which reads past the end of the array and then discards the extra value in the end, as in +example 1.9 and 1.10, but that is not recommended in floating point loops because the +reading of the extra value might generate a denormal operand exception in case the +memory position after the array doesn't contain a valid floating point number. To avoid this, +we have to do at least one more operation after the main loop. +<p> +The number of operations to do outside an unrolled loop would normally be N MODULO R, +where N is the number of operations, and R is the unrolling factor. But in the case of a +convoluted loop, we have to do one more, i.e. (N-1) MODULO R + 1, for the +abovementioned reason. +<p> +Normally, we would prefer to do the extra operations before the main loop, but here we have +to do them afterwards for two reasons: One reason is to take care of the leftover operand +from the convolution. The other reason is that calculating the number of extra operations +requires a division if R is not a power of 2, and a division is time consuming. Doing the extra +operations after the loop saves the division. +<p> +The next problem is to calculate how to bias the loop counter so that it will change sign at +the right time, and adjust the base pointers so as to compensate for this bias. Finally, you +have to make sure the leftover operand from the convolution is handled correctly for all +values of N. +<p> +The epilog code doing 1-3 operations could have been implemented as a separate loop, but +that would cost an extra branch misprediction, so the solution above is faster. +<p>Now that I have scared you by demonstrating how difficult it is to unroll by 3, I will show you +that it is much easier to unroll by 4: +<p> +<h4>Example 1.15:</h4><p> +<pre>DSIZE = 8 ; data size + MOV EAX, [N] ; number of elements + MOV ESI, [X] ; pointer to X + MOV EDI, [Y] ; pointer to Y + XOR ECX, ECX + LEA ESI, [ESI+DSIZE*EAX] ; point to end of X + SUB ECX, EAX ; -N + LEA EDI, [EDI+DSIZE*EAX] ; point to end of Y + TEST AL,1 ; test if N is odd + JZ SHORT L1 + FLD DSIZE PTR [DA] ; do the odd operation + FMUL DSIZE PTR [ESI+DSIZE*ECX] + FSUBR DSIZE PTR [EDI+DSIZE*ECX] + INC ECX ; adjust counter + FSTP DSIZE PTR [EDI+DSIZE*ECX-DSIZE] +L1: TEST AL,2 ; test for possibly 2 more operations + JZ L2 + FLD DSIZE PTR [DA] ; N MOD 4 = 2 or 3. Do two more + FMUL DSIZE PTR [ESI+DSIZE*ECX] + FLD DSIZE PTR [DA] + FMUL DSIZE PTR [ESI+DSIZE*ECX+DSIZE] + FXCH + FSUBR DSIZE PTR [EDI+DSIZE*ECX] + FXCH + FSUBR DSIZE PTR [EDI+DSIZE*ECX+DSIZE] + FXCH + FSTP DSIZE PTR [EDI+DSIZE*ECX] + FSTP DSIZE PTR [EDI+DSIZE*ECX+DSIZE] + ADD ECX, 2 ; counter is now divisible by 4 +L2: TEST ECX, ECX + JZ L4 ; no more operations +L3: ; main loop: + FLD DSIZE PTR [DA] + FLD DSIZE PTR [ESI+DSIZE*ECX] + FMUL ST,ST(1) + FLD DSIZE PTR [ESI+DSIZE*ECX+DSIZE] + FMUL ST,ST(2) + FLD DSIZE PTR [ESI+DSIZE*ECX+2*DSIZE] + FMUL ST,ST(3) + FXCH ST(2) + FSUBR DSIZE PTR [EDI+DSIZE*ECX] + FXCH ST(3) + FMUL DSIZE PTR [ESI+DSIZE*ECX+3*DSIZE] + FXCH + FSUBR DSIZE PTR [EDI+DSIZE*ECX+DSIZE] + FXCH ST(2) + FSUBR DSIZE PTR [EDI+DSIZE*ECX+2*DSIZE] + FXCH + FSUBR DSIZE PTR [EDI+DSIZE*ECX+3*DSIZE] + FXCH ST(3) + FSTP DSIZE PTR [EDI+DSIZE*ECX] + FSTP DSIZE PTR [EDI+DSIZE*ECX+2*DSIZE] + FSTP DSIZE PTR [EDI+DSIZE*ECX+DSIZE] + FSTP DSIZE PTR [EDI+DSIZE*ECX+3*DSIZE] + ADD ECX, 4 ; increment index by 4 + JNZ L3 ; loop +L4:</pre> +<p> +It is usually quite easy to find a stall-free solution when unrolling by 4, and there is no need +for convolution. The number of extra operations to do outside the main loop is N MODULO +4, which can be calculated easily without division, simply by testing the two lowest bits in N. +The extra operations are done before the main loop rather than after, to make the handling +of the loop counter simpler. +<p> +The tradeoff of loop unrolling is that the extra operations outside the loop are slower due to +incomplete overlapping and possible branch mispredictions, and the first time penalty is +higher because of increased code size. +<p> +As a general recommendation, I would say that if N is big or if convoluting the loop without +unrolling cannot remove enough stalls, then you should unroll critical integer loops by 2 and +floating point loops by 4. +<p> +<h3><a name="25_2">25.2 Loops in PPro, PII and PIII</a></h3><p> +In the previous chapter (<a href="#25_1">25.1</a>) I explained how to use convolution and loop unrolling in order +to improve pairing in PPlain and PMMX. On the PPro, PII and PIII there is no reason to do this +thanks to the out-of-order execution mechanism. But there are other quite difficult problems +to take care of, most importantly ifetch boundaries and register read stalls. +<p> +I have chosen the same example as in chapter <a href="#25_1">25.1</a> +for the previous microprocessors: a procedure which reads integers from an +array, changes the sign of each integer, and stores the results in another array. +<p> +A C language code for this procedure would be: +<pre>void ChangeSign (int * A, int * B, int N) { + int i; + for (i=0; i<N; i++) B[i] = -A[i];}</pre><p> +Translating to assembly, we might write the procedure like this: +<h4>Example 2.1:</h4><p> +<pre>_ChangeSign PROC NEAR + PUSH ESI + PUSH EDI +A EQU DWORD PTR [ESP+12] +B EQU DWORD PTR [ESP+16] +N EQU DWORD PTR [ESP+20] + + MOV ECX, [N] + JECXZ L2 + MOV ESI, [A] + MOV EDI, [B] + CLD +L1: LODSD + NEG EAX + STOSD + LOOP L1 +L2: POP EDI + POP ESI + RET +_ChangeSign ENDP</pre><p> +This looks like a nice solution, but it is not optimal because it uses the non-optimal +instructions <kbd>LOOP, LODSD</kbd> and <kbd>STOSD</kbd> that generate many uops. +It takes 6-7 clock cycles per iteration if all data are in the level one cache. +Avoiding these instructions we get: +<h4>Example 2.2:</h4><p> +<pre> MOV ECX, [N] + JECXZ L2 + MOV ESI, [A] + MOV EDI, [B] +ALIGN 16 +L1: MOV EAX, [ESI] ; len=2, p2rESIwEAX + ADD ESI, 4 ; len=3, p01rwESIwF + NEG EAX ; len=2, p01rwEAXwF + MOV [EDI], EAX ; len=2, p4rEAX, p3rEDI + ADD EDI, 4 ; len=3, p01rwEDIwF + DEC ECX ; len=1, p01rwECXwF + JNZ L1 ; len=2, p1rF +L2:</pre><p> +The comments are interpreted as follows: the <kbd>MOV EAX,[ESI]</kbd> +instruction is 2 bytes long, it generates one uop for port 2 that reads +<kbd>ESI</kbd> and writes to (renames) <kbd>EAX</kbd>. This +information is needed for analyzing the possible bottlenecks. +<p> +Let's first analyze the instruction decoding (chapter <a href="#14">14</a>): One of the +instructions generates 2 uops (<kbd>MOV [EDI],EAX</kbd>). +This instruction must go into decoder D0. There are three +decode groups in the loop so it can decode in 3 clock cycles. +<p> +Next, let's look at the instruction fetch (chapter <a href="#15">15</a>): If an ifetch boundary prevents the first +three instructions from decoding together then there will be three decode groups in the last +ifetch block so that the next iteration will have the ifetch block starting at the first instruction +where we want it, and we will get a delay only in the first iteration. A worse situation would +be a 16-byte boundary and an ifetch boundary in one of the last three instructions. +According to the <a href="#ifetchtable">ifetch table</a>, this will generate a delay of 1 clock and cause the next +iteration to have its first ifetch block aligned by 16, so that the problem continues through all +iterations. The result is a fetch time of 4 clocks per iteration rather than 3. There are two +ways to prevent this situation: the first method is to control where the ifetch blocks lie on the +first iteration; the second method is to control where the 16-byte boundaries are. The latter +method is the easiest. Since the entire loop has only 15 bytes of code you can avoid any +16-byte boundary by aligning the loop entry by 16, as shown above. This will put the entire +loop into a single ifetch block so that no further analysis of instruction fetching is needed. +<p> +The third problem to look at is register read stalls (chapter <a href="#16">16</a>). No register is read in this +loop without being written to at least a few clock cycles before, so there can be no register +read stalls. +<p> +The fourth analysis is execution (chapter <a href="#17">17</a>). Counting the uops for the different ports we +get:<br> +port 0 or 1: 4 uops<br> +port 1 only: 1 uop<br> +port 2: 1 uop<br> +port 3: 1 uop<br> +port 4: 1 uop<br> +Assuming that the uops that can go to either port 0 or 1 are distributed optimally, the +execution time will be 2.5 clocks per iteration. +<p> +The last analysis is retirement (chapter <a href="#18">18</a>). Since the number of uops in the loop is not +divisible by 3, the retirement slots will not be used optimally when the jump has to retire in +the first slot. The time needed for retirement is the number of uops divided by 3, and +rounded up to nearest integer. This gives 3 clocks for retirement. +<p> +In conclusion, the loop above can execute in 3 clocks per iteration if the loop entry is +aligned by 16. I am assuming that the conditional jump is predicted every time except on the +exit of the loop (chapter <a href="#22_2">22.2</a>). +<p> +<h4>Using the same register for counter and index and letting the counter end at zero (PPro, PII and PIII)</h4> +<h4><a name="2-3">Example 2.3:</a></h4><p> +<pre> MOV ECX, [N] + MOV ESI, [A] + MOV EDI, [B] + LEA ESI, [ESI+4*ECX] ; point to end of array A + LEA EDI, [EDI+4*ECX] ; point to end of array B + NEG ECX ; -N + JZ SHORT L2 +ALIGN 16 +L1: MOV EAX, [ESI+4*ECX] ; len=3, p2rESIrECXwEAX + NEG EAX ; len=2, p01rwEAXwF + MOV [EDI+4*ECX], EAX ; len=3, p4rEAX, p3rEDIrECX + INC ECX ; len=1, p01rwECXwF + JNZ L1 ; len=2, p1rF +L2:</pre><p> +Here we have reduced the number of uops to 6 by using the same register as counter and +index. The base pointers point to the end of the arrays so that the index can count up +through negative values to zero. +<p> +Decoding: There are two decode groups in the loop so it will decode in 2 clocks. +<p> +Instruction fetch: A loop always takes at least one clock cycle more than the the number of +16 byte blocks. Since there are only 11 bytes of code in the loop it is possible to have it all +in one ifetch block. By aligning the loop entry by 16 we can make sure that we don't get +more than one 16-byte block so that it is possible to fetch in 2 clocks. +<p> +Register read stalls: The <kbd>ESI</kbd> and <kbd>EDI</kbd> registers are read, but not modified inside the loop. +They will therefore be counted as permanent register reads, but not in the same triplet. +Register <kbd>EAX, ECX</kbd>, and flags are modified inside the loop and read +before they are written back so they will cause no permanent register reads. +The conclusion is that there are no register read stalls. +<p> +Execution:<br> +port 0 or 1: 2 uops<br> +port 1: 1 uop<br> +port 2: 1 uop<br> +port 3: 1 uop<br> +port 4: 1 uop<br> +Execution time: 1.5 clocks. +<p> +Retirement:<br> +6 uops = 2 clocks. +<p> +Conclusion: this loop takes only 2 clock cycles per iteration. +<p> +If you use absolute addresses instead of <kbd>ESI</kbd> and <kbd>EDI</kbd> then the loop will take 3 clocks +because it cannot be contained in a single 16-byte block. +<p> +<h4>Unrolling a loop (PPro, PII and PIII)</h4><p> +Doing more than one operation in each run and doing correspondingly fewer runs is called +loop unrolling. In previous processors you would unroll loops to get parallel execution by +pairing (chapter <a href="#25_1">25.1</a>). In PPro, PII and PIII this is not needed because the out-of-order +execution mechanism takes care of that. There is no need to use two different registers +either, because register renaming takes care of this. The purpose of unrolling here is to +reduce the loop overhead per iteration. +<p> +The following example is the same as example 2.2 , but unrolled by 2, which means that +you do two operations per iteration and half as many iterations +<h4>Example 2.4:</h4><p> +<pre> MOV ECX, [N] + MOV ESI, [A] + MOV EDI, [B] + SHR ECX, 1 ; N/2 + JNC SHORT L1 ; test if N was odd + MOV EAX, [ESI] ; do the odd one first + ADD ESI, 4 + NEG EAX + MOV [EDI], EAX + ADD EDI, 4 +L1: JECXZ L3 + +ALIGN 16 +L2: MOV EAX, [ESI] ; len=2, p2rESIwEAX + NEG EAX ; len=2, p01rwEAXwF + MOV [EDI], EAX ; len=2, p4rEAX, p3rEDI + MOV EAX, [ESI+4] ; len=3, p2rESIwEAX + NEG EAX ; len=2, p01rwEAXwF + MOV [EDI+4], EAX ; len=3, p4rEAX, p3rEDI + ADD ESI, 8 ; len=3, p01rwESIwF + ADD EDI, 8 ; len=3, p01rwEDIwF + DEC ECX ; len=1, p01rwECXwF + JNZ L2 ; len=2, p1rF +L3:</pre><p> +In example 2.2 the loop overhead (i.e. adjusting pointers and counter, and jumping back) +was 4 uops and the 'real job' was 4 uops. When unrolling the loop by two you do the 'real +job' twice and the overhead once, so you get 12 uops in all. This reduces the overhead from +50% to 33% of the uops. Since the unrolled loop can do only an even number of operations +you have to check if N is odd and if so do one operation outside the loop. +<p> +Analyzing instruction fetching in this loop we find that a new ifetch block begins in the +<kbd>ADD ESI,8</kbd> instruction, forcing it into decoder D0. This makes the loop decode in 5 clock cycles +and not 4 as we wanted. We can solve this problem by coding the preceding instruction in a +longer version. Change <kbd>MOV [EDI+4],EAX </kbd> to: +<pre> MOV [EDI+9999],EAX ; make instruction with long displacement + ORG $-4 + DD 4 ; rewrite displacement to 4</pre><p> +This will force a new ifetch block to begin at the long <kbd>MOV [EDI+4],EAX</kbd> +instruction, so that decoding time is now down at 4 clocks. The rest of the +pipeline can handle 3 uops per clock so that the expected execution time is 4 +clocks per iteration, or 2 clocks per operation. +<p> +Testing this solution shows that it actually takes a little more. My measurements showed +approximately 4.5 clocks per iteration. This is probably due to a sub-optimal reordering of +the uops. Possibly, the ROB doesn't find the optimal execution-order for the uops but +submits them in a less than optimal order. This problem was not predicted, and only testing +can reveal such a problem. We may help the ROB by doing some of the reordering +manually: +<h4>Example 2.5:</h4><p> +<pre>ALIGN 16 +L2: MOV EAX, [ESI] ; len=2, p2rESIwEAX + MOV EBX, [ESI+4] ; len=3, p2rESIwEBX + NEG EAX ; len=2, p01rwEAXwF + MOV [EDI], EAX ; len=2, p4rEAX, p3rEDI + ADD ESI, 8 ; len=3, p01rwESIwF + NEG EBX ; len=2, p01rwEBXwF + MOV [EDI+4], EBX ; len=3, p4rEBX, p3rEDI + ADD EDI, 8 ; len=3, p01rwEDIwF + DEC ECX ; len=1, p01rwECXwF + JNZ L2 ; len=2, p1rF +L3:</pre><p> +The loop now executes in 4 clocks per iteration. This solution also solves the problem with +instruction fetch blocks. The cost is that we need an extra register because we cannot take +advantage of register renaming. +<p> +<h4>Rolling out by more than 2</h4><p> +Loop unrolling is recommended when the loop overhead constitutes a high proportion of the +total execution time. In example 2.3 the overhead is only 2 uops, so the gain by unrolling is +little, but I will show you how to unroll it anyway, just for the exercise. +<p> +The 'real job' is 4 uops and the overhead 2. Unrolling by two we get 2*4+2 = 10 uops. The +retirement time will be 10/3, rounded up to an integer, that is 4 clock cycles. This calculation +shows that nothing is gained by unrolling this by two. Unrolling by four we get: +<h4>Example 2.6:</h4><p> +<pre> MOV ECX, [N] + SHL ECX, 2 ; number of bytes to handle + MOV ESI, [A] + MOV EDI, [B] + ADD ESI, ECX ; point to end of array A + ADD EDI, ECX ; point to end of array B + NEG ECX ; -4*N + TEST ECX, 4 ; test if N is odd + JZ SHORT L1 + MOV EAX, [ESI+ECX] ; N is odd. do the odd one + NEG EAX + MOV [EDI+ECX], EAX + ADD ECX, 4 +L1: TEST ECX, 8 ; test if N/2 is odd + JZ SHORT L2 + MOV EAX, [ESI+ECX] ; N/2 is odd. do two extra + NEG EAX + MOV [EDI+ECX], EAX + MOV EAX, [ESI+ECX+4] + NEG EAX + MOV [EDI+ECX+4], EAX + ADD ECX, 8 +L2: JECXZ SHORT L4 + +ALIGN 16 +L3: MOV EAX, [ESI+ECX] ; len=3, p2rESIrECXwEAX + NEG EAX ; len=2, p01rwEAXwF + MOV [EDI+ECX], EAX ; len=3, p4rEAX, p3rEDIrECX + MOV EAX, [ESI+ECX+4] ; len=4, p2rESIrECXwEAX + NEG EAX ; len=2, p01rwEAXwF + MOV [EDI+ECX+4], EAX ; len=4, p4rEAX, p3rEDIrECX + MOV EAX, [ESI+ECX+8] ; len=4, p2rESIrECXwEAX + MOV EBX, [ESI+ECX+12] ; len=4, p2rESIrECXwEAX + NEG EAX ; len=2, p01rwEAXwF + MOV [EDI+ECX+8], EAX ; len=4, p4rEAX, p3rEDIrECX + NEG EBX ; len=2, p01rwEAXwF + MOV [EDI+ECX+12], EBX ; len=4, p4rEAX, p3rEDIrECX + ADD ECX, 16 ; len=3, p01rwECXwF + JS L3 ; len=2, p1rF +L4:</pre><p> +The ifetch blocks are where we want them. Decode time is 6 clocks. +<p> +Register read stalls is a problem here because <kbd>ECX</kbd> has retired near the end of the loop +and we need to read both <kbd>ESI, EDI,</kbd> and <kbd>ECX</kbd>. The instructions have been reordered in +order to avoid reading ESI near the bottom so that we can avoid a register read stall. In +other words, the reason for reordering instructions and use an extra register (<kbd>EBX</kbd>) is not the +same as in the previous example. +<p> +There are 12 uops and the loop executes in 6 clocks per iteration, or 1.5 clocks per +operation. +<p> +It may be tempting to unroll loops by a high factor in order to get the maximum speed. But +since the loop overhead in most cases can be reduced to something like one clock cycle +per iteration then unrolling the loop by 4 rather than by 2 would save only 1/4 clock cycle +per operation which is hardly worth the effort. Only if the loop overhead is high compared to +the rest of the loop and N is very big should you think of unrolling by 4. Unrolling by more +than 4 does not make sense. +<p> +The drawbacks of excessive loop unrolling are: +<ol> +<li>You need to calculate N MODULO R, where R is the unrolling factor, and do N +MODULO R operations before or after the main loop in order to make the remaining +number of operations divisible by R. This takes a lot of extra code and poorly predictable +branches. And the loop body of course also becomes bigger. +<li>A Piece of code usually takes much more time the first time it executes, and the penalty +of first time execution is bigger the more code you have, especially if N is small. +<li>Excessive code size makes the utilization of the code cache less effective. +</ol> +<p> +Using an unrolling factor which is not a power of 2 makes the calculation of N MODULO R +quite difficult, and is generally not recommended unless N is known to be divisible by R. +<a href="#unrollby3">Example 1.14</a> shows how to unroll by 3. +<p> +<h4>Handling multiple 8 or 16 bit operands simultaneously in 32 bit registers (PPro, PII and PIII)</h4><p> +It is sometimes possible to handle four bytes at a time in the same 32 bit register. The +following example adds 2 to all elements of an array of bytes: +<h4><a name="2-7">Example 2.7:</a></h4><p> +<pre> MOV ESI, [A] ; address of byte array + MOV ECX, [N] ; number of elements in byte array + JECXZ L2 +ALIGN 16 + DB 7 DUP (90H) ; 7 NOP's for controlling alignment + + L1: MOV EAX, [ESI] ; read four bytes + MOV EBX, EAX ; copy into EBX + AND EAX, 7F7F7F7FH ; get lower 7 bits of each byte in EAX + XOR EBX, EAX ; get the highest bit of each byte + ADD EAX, 02020202H ; add desired value to all four bytes + XOR EBX, EAX ; combine bits again + MOV [ESI], EBX ; store result + ADD ESI, 4 ; increment pointer + SUB ECX, 4 ; decrement loop counter + JA L1 ; loop +L2:</pre><p> +Note that I have masked out the highest bit of each byte to avoid a possible carry from each +byte into the next one when adding. I am using <kbd>XOR</kbd> rather than +<kbd>ADD</kbd> when putting in the high bit again to avoid carry. +The array should of course be aligned by 4. +<p> +This loop should ideally take 4 clocks per iteration, but it takes somewhat +more due to the dependency chain and difficult reordering. On PII and PIII +you can do the same more effectively using MMX registers. +<p> +The next example finds the length of a zero-terminated string by searching for the first byte +of zero. It is much faster than using <kbd>REPNE SCASB</kbd>: +<h4><a name="2-8">Example 2.8:</a></h4><p> +<pre>_strlen PROC NEAR + PUSH EBX + MOV EAX,[ESP+8] ; get pointer to string + LEA EDX,[EAX+3] ; pointer+3 used in the end +L1: MOV EBX,[EAX] ; read first 4 bytes + ADD EAX,4 ; increment pointer + LEA ECX,[EBX-01010101H] ; subtract 1 from each byte + NOT EBX ; invert all bytes + AND ECX,EBX ; and these two + AND ECX,80808080H ; test all sign bits + JZ L1 ; no zero bytes, continue loop + MOV EBX,ECX + SHR EBX,16 + TEST ECX,00008080H ; test first two bytes + CMOVZ ECX,EBX ; shift right if not in the first 2 bytes + LEA EBX,[EAX+2] + CMOVZ EAX,EBX + SHL CL,1 ; use carry flag to avoid branch + SBB EAX,EDX ; compute length + POP EBX + RET +_strlen ENDP</pre><p> +This loop takes 3 clocks for each iteration testing 4 bytes. The string should of course be +aligned by 4. The code may read past the end of the string, so the string should not be +placed at the end of a segment. +<p> +Handling 4 bytes simultaneously can be quite difficult. This code uses a formula which +generates a nonzero value for a byte if, and only if, the byte is zero. This makes it possible +to test all four bytes in one operation. This algorithm involves the subtraction of 1 from all +bytes (in the <kbd>LEA ECX</kbd> instruction). I have not masked out the highest bit of each byte +before subtracting, as I did in example <a href="#2-7">2.7</a>, so the subtraction may generate a borrow to the +next byte, but only if it is zero, and this is exactly the situation where we don't care what the +next byte is, because we are searching forwards for the first zero. If we were searching +backwards then we would have to re-read the dword after detecting a zero, and then test all +four bytes to find the last zero, or use <kbd>BSWAP</kbd> to reverse the order of the bytes. If you want +to search for a byte value other than zero, then you may <kbd>XOR</kbd> all four bytes with the value +you are searching for, and then use the method above to search for zero. +<p> +<h4>Loops with MMX instructions (PII and PIII)</h4><p> +Using MMX instructions we can compare 8 bytes in one operation: +<h4><a name="2-9">Example 2.9:</a></h4><p> +<pre>_strlen PROC NEAR + PUSH EBX + MOV EAX,[ESP+8] + LEA EDX,[EAX+7] + PXOR MM0,MM0 +L1: MOVQ MM1,[EAX] ; len=3 p2rEAXwMM1 + ADD EAX,8 ; len=3 p01rEAX + PCMPEQB MM1,MM0 ; len=3 p01rMM0rMM1 + MOVD EBX,MM1 ; len=3 p01rMM1wEBX + PSRLQ MM1,32 ; len=4 p1rMM1 + MOVD ECX,MM1 ; len=3 p01rMM1wECX + OR ECX,EBX ; len=2 p01rECXrEBXwF + JZ L1 ; len=2 p1rF + MOVD ECX,MM1 + TEST EBX,EBX + CMOVZ EBX,ECX + LEA ECX,[EAX+4] + CMOVZ EAX,ECX + MOV ECX,EBX + SHR ECX,16 + TEST BX,BX + CMOVZ EBX,ECX + LEA ECX,[EAX+2] + CMOVZ EAX,ECX + SHR BL,1 + SBB EAX,EDX + EMMS + POP EBX + RET +_strlen ENDP</pre><p> +This loop has 7 uops for port 0 and 1 which gives an average execution time of 3.5 clocks +per iteration. The measured time is 3.8 clocks which shows that the ROB handles the +situation reasonably well despite a dependency chain that is 6 uops long. Testing 8 bytes in +less than 4 clocks is incredibly much faster than <kbd>REPNE SCASB</kbd>. +<p> +<h4>Loops with floating point instructions (PPro, PII and PIII)</h4><p> +The methods for optimizing floating point loops are basically the same as for integer loops, +but you should be more aware of dependency chains because of the long latencies of +instruction execution. +<p> +Consider the C language code: +<pre> int i, n; double * X; double * Y; double DA; + for (i=0; i<n; i++) Y[i] = Y[i] - DA * X[i];</pre><p> +This piece of code (called DAXPY) has been studied extensively because it is the key to +solving linear equations. +<h4>Example 2.10:</h4><p> +<pre>DSIZE = 8 ; data size (4 or 8) + MOV ECX, [N] ; number of elements + MOV ESI, [X] ; pointer to X + MOV EDI, [Y] ; pointer to Y + JECXZ L2 ; test for N = 0 + FLD DSIZE PTR [DA] ; load DA outside loop +ALIGN 16 + DB 2 DUP (90H) ; 2 NOP's for alignment +L1: FLD DSIZE PTR [ESI] ; len=3 p2rESIwST0 + ADD ESI,DSIZE ; len=3 p01rESI + FMUL ST,ST(1) ; len=2 p0rST0rST1 + FSUBR DSIZE PTR [EDI] ; len=3 p2rEDI, p0rST0 + FSTP DSIZE PTR [EDI] ; len=3 p4rST0, p3rEDI + ADD EDI,DSIZE ; len=3 p01rEDI + DEC ECX ; len=1 p01rECXwF + JNZ L1 ; len=2 p1rF + FSTP ST ; discard DA +L2:</pre><p> +The dependency chain is 10 clock cycles long, but the loop takes only 4 clocks per iteration +because it can begin a new operation before the previous one is finished. The purpose of +the alignment is to prevent a 16-byte boundary in the last ifetch block. +<p> +<h4>Example 2.11:</h4><p> +<pre>DSIZE = 8 ; data size (4 or 8) + MOV ECX, [N] ; number of elements + MOV ESI, [X] ; pointer to X + MOV EDI, [Y] ; pointer to Y + LEA ESI, [ESI+DSIZE*ECX] ; point to end of array + LEA EDI, [EDI+DSIZE*ECX] ; point to end of array + NEG ECX ; -N + JZ SHORT L2 ; test for N = 0 + FLD DSIZE PTR [DA] ; load DA outside loop +ALIGN 16 +L1: FLD DSIZE PTR [ESI+DSIZE*ECX] ; len=3 p2rESIrECXwST0 + FMUL ST,ST(1) ; len=2 p0rST0rST1 + FSUBR DSIZE PTR [EDI+DSIZE*ECX] ; len=3 p2rEDIrECX, p0rST0 + FSTP DSIZE PTR [EDI+DSIZE*ECX] ; len=3 p4rST0, p3rEDIrECX + INC ECX ; len=1 p01rECXwF + JNZ L1 ; len=2 p1rF + FSTP ST ; discard DA +L2:</pre><p> +Here we have used the same trick as in example <a href="#2-3">2.3</a>. Ideally, this loop should take 3 +clocks, but measurements say approximately 3.5 clocks due to the long dependency chain. +Unrolling the loop doesn't save much. +<p> +<h4>Loops with XMM instructions (PIII)</h4><p> +The XMM instructions on the PIII allow you to operate on four single precision +floating point numbers in parallel. The operands must be aligned by 16. +<p> +The DAXPY algorithm is not very suited for XMM instructions because the precision +is poor, it may not be possible to align the operands by 16, and you need some +extra code if the number of operations is not a multiple of four. I am showing +the code here anyway, just to give an example of a loop with XMM instructions: +<h4>Example 2.12:</h4><p> +<pre> MOV ECX, [N] ; number of elements + MOV ESI, [X] ; pointer to X + MOV EDI, [Y] ; pointer to Y + SHL ECX, 2 + ADD ESI, ECX ; point to end of X + ADD EDI, ECX ; point to end of Y + NEG ECX ; -4*N + MOV EAX, [DA] ; load DA outside loop + XOR EAX, 80000000H ; change sign of DA + PUSH EAX + MOVSS XMM1, [ESP] ; -DA + ADD ESP, 4 + SHUFPS XMM1, XMM1, 0 ; copy -DA to all four positions + CMP ECX, -16 + JG L2 +L1: MOVAPS XMM0, [ESI+ECX] ; len=4 2*p2rESIrECXwXMM0 + ADD ECX, 16 ; len=3 p01rwECXwF + MULPS XMM0, XMM1 ; len=3 2*p0rXMM0rXMM1 + CMP ECX, -16 ; len=3 p01rECXwF + ADDPS XMM0, [EDI+ECX-16] ; len=5 2*p2rEDIrECX, 2*p1rXMM0 + MOVAPS [EDI+ECX-16], XMM0 ; len=5 2*p4rXMM0, 2*p3rEDIrECX + JNG L1 ; len=2 p1rF +L2: JECXZ L4 ; check if finished + MOVAPS XMM0, [ESI+ECX] ; 1-3 operations missing, do 4 more + MULPS XMM0, XMM1 + ADDPS XMM0, [EDI+ECX] + CMP ECX, -8 + JG L3 + MOVLPS [EDI+ECX], XMM0 ; store two more results + ADD ECX, 8 + MOVHLPS XMM0, XMM0 +L3: JECXZ L4 + MOVSS [EDI+ECX], XMM0 ; store one more result +L4:</pre><p> +The <kbd>L1</kbd> loop takes 5-6 clocks for 4 operations. +The <kbd>ECX</kbd> instructions have been placed before and after the +<kbd>MULPS XMM0, XMM1</kbd> instruction in order to avoid a register read port stall +generated by the reading of the two parts of the <kbd>XMM1</kbd> register +together with <kbd>ESI</kbd> or <kbd>EDI</kbd> in the RAT. The extra code after +<kbd>L2</kbd> takes care of the situation where N is not divisible by 4. +Note that this code may read past the end of A and B. This may delay the last +operation if the extra memory positions read do not contain normal floating +point numbers. If possible, put in some dummy extra data to make the number +of operations divisible by 4 and leave out the extra code after <kbd>L2</kbd>. +<p> +<h2><a name="26">26</a>. Problematic Instructions</h2> +<h3><a name="26_1">26.1 XCHG (all processors)</a></h3><p> +The <kbd>XCHG register,[memory]</kbd> instruction is dangerous. By default this instruction has +an implicit <kbd>LOCK</kbd> prefix which prevents it from using the cache. This instruction is therefore +very time consuming, and should always be avoided. +<p> +<h3><a name="26_2">26.2 Rotates through carry (all processors)</a></h3><p> +<kbd>RCR</kbd> and <kbd>RCL</kbd> with a count different from one are slow and should be avoided. +<p> +<h3><a name="26_3">26.3 String instructions (all processors)</a></h3><p> +String instructions without a repeat prefix are too slow and should be replaced by simpler +instructions. The same applies to <kbd>LOOP</kbd> on all processors and to +<kbd>JECXZ</kbd> on PPlain and PMMX. +<p> +<kbd>REP MOVSD</kbd> and <kbd>REP STOSD</kbd> are quite fast if the repeat +count is not too small. Always use the DWORD version if possible, and make +sure that both source and destination are aligned by 8. +<p> +Some other methods of moving data are faster under certain conditions. See +chapter <a href="#27_8">27.8</a> for details. +<p> +Note that while the <kbd>REP MOVS</kbd> instruction writes a word to the destination, it reads the next +word from the source in the same clock cycle. You can have a cache bank conflict if bit 2-4 +are the same in these two addresses. In other words, you will get a penalty of one clock +extra per iteration if <kbd>ESI+(wordsize)-EDI</kbd> is divisible by 32. The easiest way to avoid +cache bank conflicts is to use the DWORD version and align both source and destination by +8. Never use <kbd>MOVSB</kbd> or <kbd>MOVSW</kbd> in optimized code, not even in 16 bit mode. +<p> +<kbd>REP MOVS</kbd> and <kbd>REP STOS</kbd> can perform very fast by moving an entire cache line at a time +on PPro, PII and PIII. This happens only when the following conditions are met: +<ul> +<li>both source and destination must be aligned by 8 +<li>direction must be forward (direction flag cleared) +<li>the count (<kbd>ECX</kbd>) must be greater than or equal to 64 +<li>the difference between <kbd>EDI</kbd> and <kbd>ESI</kbd> must be numerically greater than or equal to 32 +<li>the memory type for both source and destination must be either writeback or +write-combining (you can normally assume this). +</ul><p> +Under these conditions the number of uops issued is approximately 215+2*<kbd>ECX</kbd> for +<kbd>REP MOVSD</kbd> and 185+1.5*<kbd>ECX</kbd> for <kbd>REP STOSD,</kbd> +giving a speed of approximately 5 bytes per +clock cycle for both instructions, which is almost 3 times as fast as when the above +conditions are not met. +<p> +The byte and word versions also benefit from this fast mode, but they are less effective than +the dword versions. +<p> +<kbd>REP STOSD</kbd> is optimal under the same conditions as <kbd>REP MOVSD</kbd>. +<p> +<kbd>REP LOADS, REP SCAS,</kbd> and <kbd>REP CMPS</kbd> are not optimal, and +may be replaced by loops. See example <a href="#1-10">1.10</a>, <a href="#2-8">2.8</a> +and <a href="#2-9">2.9</a> for alternatives to <kbd>REPNE SCASB. REP CMPS</kbd> +may suffer cache bank conflicts if bit 2-4 are the same in <kbd>ESI</kbd> and +<kbd>EDI</kbd>. +<p> +<h3><a name="26_4">26.4 Bit test (all processors)</a></h3><p> +<kbd>BT, BTC, BTR</kbd>, and <kbd>BTS</kbd> instructions should preferably be replaced by instructions like +<kbd>TEST, AND, OR, XOR</kbd>, or shifts on PPlain and PMMX. On PPro, PII and PIII, bit tests with a +memory operand should be avoided. +<p> +<h3><a name="26_5">26.5 Integer multiplication (all processors)</a></h3><p> +An integer multiplication takes approximately 9 clock cycles on PPlain and PMMX and 4 on +PPro, PII and PIII. It is therefore often advantageous to replace a multiplication by a constant +with a combination of other instructions such as <kbd>SHL, ADD, SUB</kbd>, +and <kbd>LEA</kbd>. Example:<br> +<kbd>IMUL EAX,10</kbd><br> +can be replaced with<br> +<kbd>MOV EBX,EAX / ADD EAX,EAX / SHL EBX,3 / ADD EAX,EBX</kbd><br> +or<br> +<kbd>LEA EAX,[EAX+4*EAX] / ADD EAX,EAX</kbd> +<p> +Floating point multiplication is faster than integer multiplication on PPlain and PMMX, but +the time spent on converting integers to float and converting the product back again is +usually more than the time saved by using floating point multiplication, except when the +number of conversions is low compared with the number of multiplications. MMX +multiplication is fast, but is only available with 16-bit operands. +<p> +<h3><a name="26_6">26.6 WAIT instruction (all processors)</a></h3><p> +You can often increase speed by omitting the <kbd>WAIT</kbd> instruction. +The <kbd>WAIT</kbd> instruction has three functions: +<p> +<u>a.</u> The old 8087 processor requires a <kbd>WAIT</kbd> before every +floating point instruction to make sure the coprocessor is ready to receive it. +<p> +<u>b.</u> <kbd>WAIT</kbd> is used for coordinating memory access between the floating point unit and the +integer unit. Examples: +<pre><u>b.1.</u> FISTP [mem32] + WAIT ; wait for FPU to write before.. + MOV EAX,[mem32] ; reading the result with the integer unit + +<u>b.2.</u> FILD [mem32] + WAIT ; wait for FPU to read value.. + MOV [mem32],EAX ; before overwriting it with integer unit + +<u>b.3.</u> FLD QWORD PTR [ESP] + WAIT ; prevent an accidental interrupt from.. + ADD ESP,8 ; overwriting value on stack</pre> +<p> +<u>c.</u> <kbd>WAIT</kbd> is sometimes used to check for exceptions. It will generate an interrupt if an +unmasked exception bit in the floating point status word has been set by a preceding +floating point instruction. +<p> +<u>Regarding a:</u><br> +The function in point a is never needed on any other processors than the old 8087. Unless +you want your code to be compatible with the 8087 you should tell your assembler not to +put in these <kbd>WAIT</kbd>'s by specifying a higher processor. A 8087 floating point emulator also +inserts <kbd>WAIT</kbd> instructions. You should therefore tell your assembler not to generate +emulation code unless you need it. +<p> +<u>Regarding b:</u><br> +<kbd>WAIT</kbd> instructions to coordinate memory access are definitely needed on the 8087 and +80287 but not on the Pentiums. It is not quite clear whether it is needed on the 80387 and +80486. I have made several tests on these Intel processors and not been able to provoke +any error by omitting the <kbd>WAIT</kbd> on any 32 bit Intel processor, although Intel manuals say that +the <kbd>WAIT</kbd> is needed for this purpose except after <kbd>FNSTSW</kbd> + and <kbd>FNSTCW</kbd>. Omitting <kbd>WAIT</kbd> +instructions for coordinating memory access is not 100 % safe, even when writing 32 bit +code, because the code may be able to run on the very rare combination of a 80386 main +processor with a 287 coprocessor, which requires the <kbd>WAIT</kbd>. Also, I have no information on +non-Intel processors, and I have not tested all possible hardware and software +combinations, so there may be other situations where the <kbd>WAIT</kbd> is needed. +<p> +If you want to be certain that your code will work on any 32 bit processor (including +non-Intel processors) then I would recommend that you include the <kbd>WAIT</kbd> here in order to be +safe. +<p> +<u>Regarding c:</u><br> +The assembler automatically inserts a <kbd>WAIT</kbd> for this purpose before the following +instructions: <kbd>FCLEX, FINIT, FSAVE, FSTCW, FSTENV, FSTSW</kbd>. You can omit the <kbd>WAIT</kbd> +by writing FNCLEX, etc. My tests show that the WAIT is unneccessary in most cases +because these instructions without <kbd>WAIT</kbd> will still generate an interrupt on exceptions except +for <kbd>FNCLEX</kbd> and <kbd>FNINIT</kbd> on the 80387. (There is some inconsistency about whether the +<kbd>IRET</kbd> from the interrupt points to the <kbd>FN..</kbd> instruction or to the next instruction). +<p> +Almost all other floating point instructions will also generate an interrupt if a previous floating +point instruction has set an unmasked exception bit, so the exception is likely to be detected +sooner or later anyway. You may insert a <kbd>WAIT</kbd> after the last floating point instruction in your +program to be sure to catch all exceptions. +<p> +You may still need the <kbd>WAIT</kbd> if you want to know exactly where an exception occurred in +order to be able to recover from the situation. Consider, for example, the code under b.3 +above: If you want to be able to recover from an exception generated by the <kbd>FLD</kbd> here, then +you need the <kbd>WAIT</kbd> because an interrupt after <kbd>ADD ESP,8</kbd> would overwrite the value to load. +<kbd>FNOP</kbd> may be faster than <kbd>WAIT</kbd> and serve the same purpose. +<p> +<h3><a name="26_7">26.7 FCOM + FSTSW AX (all processors)</a></h3><p> +The <kbd>FNSTSW</kbd> instruction is very slow on all processors. The PPro, PII and PIII +processors have +<kbd>FCOMI</kbd> instructions to avoid the slow <kbd>FNSTSW</kbd>. +Using <kbd>FCOMI</kbd> instead of the common +sequence <kbd>FCOM / FNSTSW AX / SAHF</kbd> will save you 8 clock cycles. You should +therefore use <kbd>FCOMI</kbd> to avoid <kbd>FNSTSW</kbd> wherever possible, even in cases where it costs +some extra code. +<p> +On processors without <kbd>FCOMI</kbd> instructions, the usual way of doing floating point +comparisons is: +<pre> FLD [a] + FCOMP [b] + FSTSW AX + SAHF + JB ASmallerThanB</pre><p> +You may improve this code by using <kbd>FNSTSW AX</kbd> rather than +<kbd>FSTSW AX</kbd> and test <kbd>AH</kbd> +directly rather than using the non-pairable <kbd>SAHF</kbd> +(TASM version 3.0 has a bug with the <kbd>FNSTSW AX</kbd> instruction): +<pre> FLD [a] + FCOMP [b] + FNSTSW AX + SHR AH,1 + JC ASmallerThanB</pre> +<p> +Testing for zero or equality: +<pre> FTST + FNSTSW AX + AND AH,40H + JNZ IsZero ; (the zero flag is inverted!)</pre> +<p> +Test if greater: +<pre> FLD [a] + FCOMP [b] + FNSTSW AX + AND AH,41H + JZ AGreaterThanB</pre> +<p> +Do not use <kbd>TEST AH,41H</kbd> as it is not pairable on PPlain and PMMX. +<p> +On the PPlain and PMMX, the <kbd>FNSTSW</kbd> instruction takes 2 clocks, but it is delayed for an +additional 4 clocks after any floating point instruction because it is waiting for the status +word to retire from the pipeline. This delay comes even after <kbd>FNOP</kbd> +which cannot change the status word, but not after integer instructions. +You can fill the latency between <kbd>FCOM</kbd> and +<kbd>FNSTSW</kbd> with integer instructions taking up to four clock cycles. +A paired <kbd>FXCH</kbd> immediately +after <kbd>FCOM</kbd> doesn't delay the <kbd>FNSTSW</kbd>, not even if the pairing is imperfect: +<pre> FCOM ; clock 1 + FXCH ; clock 1-2 (imperfect pairing) + INC DWORD PTR [EBX] ; clock 3-5 + FNSTSW AX ; clock 6-7</pre> +<p> +You may want to use <kbd>FCOM</kbd> rather than <kbd>FTST</kbd> +here because <kbd>FTST</kbd> is not pairable. +Remember to include the <kbd>N</kbd> in <kbd>FNSTSW</kbd>. <kbd>FSTSW</kbd> +(without <kbd>N</kbd>) has a <kbd>WAIT</kbd> prefix which delays +it further. +<p> +It is sometimes faster to use integer instructions for comparing floating point values, as +described in chapter <a href="#27_6">27.6</a>. +<p> +<h3><a name="26_8">26.8 FPREM (all processors)</a></h3><p> +The <kbd>FPREM</kbd> and <kbd>FPREM1</kbd> instructions are slow on all +processors. You may replace it by the following algorithm: Multiply by +the reciprocal divisor, get the fractional part by subtracting +the truncated value, then multiply by the divisor. +(see chapter <a href="#27_5">27.5</a> on how to truncate) +<p> +Some documents say that these instructions may give incomplete reductions and +that it is therefore necessary to repeat the <kbd>FPREM</kbd> or +<kbd>FPREM1</kbd> instruction until the reduction is complete. +I have tested this on several processors beginning with the old 8087 and I have +found no situation where a repetition of the <kbd>FPREM</kbd> or <kbd>FPREM1</kbd> +was needed. +<p> +<h3><a name="26_9">26.9 FRNDINT (all processors)</a></h3><p> +This instruction is slow on all processors. Replace it by: +<pre> + FISTP QWORD PTR [TEMP] + FILD QWORD PTR [TEMP]</pre><p> +This code is faster despite a possible penalty for attempting to read from +<kbd>[TEMP]</kbd> before the write is finished. It is recommended to put +other instructions in between in order to avoid +this penalty. See chapter <a href="#27_5">27.5</a> on how to truncate. +<p> +<h3><a name="26_10">26.10 FSCALE and exponential function (all processors)</a></h3><p> +<kbd>FSCALE</kbd> is slow on all processors. Computing integer powers +of 2 can be done much faster by inserting the desired power in the exponent +field of the floating point number. +To calculate 2<sup>N</sup>, where N is a signed integer, select from the examples below the one that +fits your range of N: +<p> +For |N| < 2<sup>7</sup>-1 you can use single precision: +<pre> MOV EAX, [N] + SHL EAX, 23 + ADD EAX, 3F800000H + MOV DWORD PTR [TEMP], EAX + FLD DWORD PTR [TEMP]</pre> +<p> +For |N| < 2<sup>10</sup>-1 you can use double precision: +<pre> MOV EAX, [N] + SHL EAX, 20 + ADD EAX, 3FF00000H + MOV DWORD PTR [TEMP], 0 + MOV DWORD PTR [TEMP+4], EAX + FLD QWORD PTR [TEMP]</pre> +<p> +For |N| < 2<sup>14</sup>-1 use long double precision: +<pre> MOV EAX, [N] + ADD EAX, 00003FFFH + MOV DWORD PTR [TEMP], 0 + MOV DWORD PTR [TEMP+4], 80000000H + MOV DWORD PTR [TEMP+8], EAX + FLD TBYTE PTR [TEMP]</pre> +<p> +<kbd>FSCALE</kbd> is often used in the calculation of exponential functions. The following code shows +an exponential function without the slow <kbd>FRNDINT</kbd> and <kbd>FSCALE</kbd> instructions: +<p> +<pre>; extern "C" long double _cdecl exp (double x); +_exp PROC NEAR +PUBLIC _exp + FLDL2E + FLD QWORD PTR [ESP+4] ; x + FMUL ; z = x*log2(e) + FIST DWORD PTR [ESP+4] ; round(z) + SUB ESP, 12 + MOV DWORD PTR [ESP], 0 + MOV DWORD PTR [ESP+4], 80000000H + FISUB DWORD PTR [ESP+16] ; z - round(z) + MOV EAX, [ESP+16] + ADD EAX,3FFFH + MOV [ESP+8],EAX + JLE SHORT UNDERFLOW + CMP EAX,8000H + JGE SHORT OVERFLOW + F2XM1 + FLD1 + FADD ; 2^(z-round(z)) + FLD TBYTE PTR [ESP] ; 2^(round(z)) + ADD ESP,12 + FMUL ; 2^z = e^x + RET + +UNDERFLOW: + FSTP ST + FLDZ ; return 0 + ADD ESP,12 + RET + +OVERFLOW: + PUSH 07F800000H ; +infinity + FSTP ST + FLD DWORD PTR [ESP] ; return infinity + ADD ESP,16 + RET + +_exp ENDP</pre> +<p> +<h3><a name="26_11">26.11 FPTAN (all processors)</a></h3><p> +According to the manuals, <kbd>FPTAN</kbd> returns two values X and Y and +leaves it to the programmer to divide Y with X to get the result, but in +fact it always returns 1 in X so you can save the division. My tests show that +on all 32 bit Intel processors with floating point unit or coprocessor, +<kbd>FPTAN</kbd> always returns 1 in X regardless of the argument. If you want to +be absolutely sure that your code will run correctly on all processors, then +you may test if X is 1, which is faster than dividing with X. The Y value may +be very high, but never infinity, so you don't have to test if Y contains a +valid number if you know that the argument is valid. +<p> +<h3><a name="26_12">26.12 FSQRT (PIII)</a></h3><p> +A fast way of calculating an approximate squareroot on the PIII is to multiply +the reciprocal squareroot of x by x:<br> +SQRT(x) = x * RSQRT(x)<br> +The instruction <kbd>RSQRTSS</kbd> or <kbd>RSQRTPS</kbd> gives the reciprocal +squareroot with a precision of 12 bits. You can improve the precision to 23 bits +by using the Newton-Raphson formula described in Intel's application note AP-803:<br> +x<sub>0</sub> = <kbd>RSQRTSS</kbd>(a)<br> +x<sub>1</sub> = 0.5 * x<sub>0</sub> * (3 - (a * x<sub>0</sub>)) * x<sub>0</sub>)<br> +where x<sub>0</sub> is the first approximation to the reciprocal squareroot of +a, and x<sub>1</sub> is a better approximation. The order of evaluation is +important. You must use this formula before multiplying with a to get the squareroot. +<p> +<h3><a name="26_13">26.13 MOV [MEM], ACCUM (PPlain and PMMX)</a></h3><p> +The instructions <kbd>MOV [mem],AL MOV [mem],AX MOV [mem],EAX</kbd> + are treated by the pairing circuitry as if they were writing to the accumulator. + Thus the following instructions do not pair: +<pre> MOV [mydata], EAX + MOV EBX, EAX</pre> +<p> +This problem occurs only with the short form of the <kbd>MOV</kbd> + instruction which can not have a +base or index register, and which can only have the accumulator as source. +You can avoid the problem by using another register, by reordering your +instructions, by using a pointer, or by hard-coding the general form of +the <kbd>MOV</kbd> instruction. +<p> +In 32 bit mode you can write the general form of <kbd>MOV [mem],EAX</kbd>: +<pre> DB 89H, 05H + DD OFFSET DS:mem</pre> +<p> +In 16 bit mode you can write the general form of <kbd>MOV [mem],AX</kbd>: +<pre> DB 89H, 06H + DW OFFSET DS:mem</pre> +<p> +To use <kbd>AL</kbd> instead of <kbd>(E)AX</kbd>, you replace <kbd>89H</kbd> + with <kbd>88H</kbd> +<p> +This flaw has not been fixed in the PMMX. +<p> +<h3><a name="26_14">26.14 TEST instruction (PPlain and PMMX)</a></h3><p> +The <kbd>TEST</kbd> instruction with an immediate operand is only +pairable if the destination is <kbd>AL</kbd>, <kbd>AX</kbd>, or <kbd>EAX</kbd>. +<p> +<kbd>TEST register,register</kbd> + and <kbd>TEST register,memory</kbd> is always pairable. +<p> +Examples: +<pre> TEST ECX,ECX ; pairable + TEST [mem],EBX ; pairable + TEST EDX,256 ; not pairable + TEST DWORD PTR [EBX],8000H ; not pairable</pre><p> +To make it pairable, use any of the following methods: +<pre> MOV EAX,[EBX] / TEST EAX,8000H + MOV EDX,[EBX] / AND EDX,8000H + MOV AL,[EBX+1] / TEST AL,80H + MOV AL,[EBX+1] / TEST AL,AL ; (result in sign flag)</pre><p> +(The reason for this non-pairability is probably that the first byte of the 2-byte instruction is +the same as for some other non-pairable instructions, and the processor cannot afford to +check the second byte too when determining pairability.) +<p> +<h3><a name="26_15">26.15 Bit scan (PPlain and PMMX)</a></h3><p> +<kbd>BSF</kbd> and <kbd>BSR</kbd> are the poorest optimized instructions on +the PPlain and PMMX, taking +approximately 11 + 2*n clock cycles, where n is the number of zeros skipped. +<p> +The following code emulates <kbd>BSR ECX,EAX</kbd>: +<pre> TEST EAX,EAX + JZ SHORT BS1 + MOV DWORD PTR [TEMP],EAX + MOV DWORD PTR [TEMP+4],0 + FILD QWORD PTR [TEMP] + FSTP QWORD PTR [TEMP] + WAIT ; WAIT only needed for compatibility with old 80287 processor + MOV ECX, DWORD PTR [TEMP+4] + SHR ECX,20 ; isolate exponent + SUB ECX,3FFH ; adjust + TEST EAX,EAX ; clear zero flag +BS1:</pre> +<p> +The following code emulates <kbd>BSF ECX,EAX</kbd>: +<pre> TEST EAX,EAX + JZ SHORT BS2 + XOR ECX,ECX + MOV DWORD PTR [TEMP+4],ECX + SUB ECX,EAX + AND EAX,ECX + MOV DWORD PTR [TEMP],EAX + FILD QWORD PTR [TEMP] + FSTP QWORD PTR [TEMP] + WAIT ; WAIT only needed for compatibility with old 80287 processor + MOV ECX, DWORD PTR [TEMP+4] + SHR ECX,20 + SUB ECX,3FFH + TEST EAX,EAX ; clear zero flag +BS2:</pre> +<p> +These emulation codes should not be used on the PPro, PII and PIII, where the bit scan +instructions take only 1 or 2 clocks, and where the emulation codes shown above have two +partial memory stalls. +<p> +<h3><a name="26_16">26.16 FLDCW (PPro, PII and PIII)</a></h3><p> +The PPro, PII and PIII have a serious stall after the +<kbd>FLDCW</kbd> instruction if followed by any floating +point instruction which reads the control word (which almost all floating +point instructions do). +<p> +When C or C++ code is compiled it often generates a lot of +<kbd>FLDCW</kbd> instructions because conversion of floating point numbers +to integers is done with truncation while other floating +point instructions use rounding. After translation to assembly, you can +improve this code by using rounding instead of truncation where possible, +or by moving the <kbd>FLDCW</kbd> out of a loop +where truncation is needed inside the loop. +<p> +See chapter <a href="#27_5">27.5</a> on how to convert floating point numbers to integers +whitout changing the control word. +<p> +<h2><a name="27">27</a>. Special topics</h2> +<h3><a name="27_1">27.1 LEA instruction (all processors)</a></h3><p> +The <kbd>LEA</kbd> instruction is useful for many purposes because it can do +a shift, two additions, and a move in just one instruction taking one clock cycle. +Example:<br> +<kbd>LEA EAX,[EBX+8*ECX-1000]</kbd><br> +is much faster than<br> +<kbd>MOV EAX,ECX / SHL EAX,3 / ADD EAX,EBX / SUB EAX,1000</kbd><br> +The <kbd>LEA</kbd> instruction can also be used to do an add or shift without +changing the flags. The source and destination need not have the same word size, +so <kbd>LEA EAX,[BX]</kbd> is a possible +replacement for <kbd>MOVZX EAX,BX</kbd>, although suboptimal on most processors. +<p> +You must be aware, however, that the <kbd>LEA</kbd> instruction will suffer +an AGI stall on the PPlain and PMMX if it uses a base or index register +which has been written to in the preceding clock cycle. +<p> +Since the <kbd>LEA</kbd> instruction is pairable in the v-pipe on PPlain and +PMMX and shift instructions are not, you may use <kbd>LEA</kbd> as +a substitute for a <kbd>SHL</kbd> by 1, 2, or 3 if you want the +instruction to execute in the V-pipe. +<p> +The 32 bit processors have no documented addressing mode with a scaled index register +and nothing else, so an instruction like <kbd>LEA EAX,[EAX*2]</kbd> +is actually coded as <kbd>LEA EAX,[EAX*2+00000000]</kbd> +with an immediate displacement of 4 bytes. You may reduce the +instruction size by instead writing <kbd>LEA EAX,[EAX+EAX]</kbd> or even +better <kbd>ADD EAX,EAX</kbd>. +The latter code cannot have an AGI delay in PPlain and PMMX. If you happen to have a register +which is zero (like a loop counter after a loop), then you may use it +as a base register to reduce the code size: +<p> +<pre>LEA EAX,[EBX*4] ; 7 bytes +LEA EAX,[ECX+EBX*4] ; 3 bytes</pre> +<p> +<h3><a name="27_2">27.2 Division (all processors)</a></h3><p> +Division is quite time consuming. On PPro, PII and PIII an integer division +takes 19, 23, or 39 clocks for byte, word, and dword divisors respectively. +On PPlain and PMMX an unsigned integer division takes approximately the same, +while a signed integer division takes somewhat more. It is therefore +preferable to use the smallest operand size possible that won't generate an +overflow, even if it costs an operand size prefix, and use unsigned +division if possible. +<p> +<h4>Integer division by a constant (all processors)</h4><p> +Integer division by a power of two can be done by shifting right. Dividing an +unsigned integer by 2<sup>N</sup>: +<pre> SHR EAX, N</pre><p> +Dividing a signed integer by 2<sup>N</sup>: +<pre> CDQ + AND EDX, (1 SHL N) -1 ; or SHR EDX, 32-N + ADD EAX, EDX + SAR EAX, N</pre><p> +The <kbd>SHR</kbd> alternative is shorter than the <kbd>AND</kbd> if N > 7, +but can only go to execution port 0 (or u-pipe), whereas <kbd>AND</kbd> can +go to either port 0 or 1 (u or v-pipe). +<p> +Dividing by a constant can be done by multiplying with the reciprocal. +To calculate the unsigned integer division q = x / d, you first calculate +the reciprocal of the divisor, f = 2<sup>r</sup> / d, where r defines the position of the binary +decimal point (radix point). Then multiply x with f and shift +right r positions. The maximum value of r is 32+b, where b is the number of binary digits in d +minus 1. (b is the highest integer for which 2<sup>b</sup> <= d). Use r = 32+b to cover the maximum +range for the value of the dividend x. +<p> +This method needs some refinement in order to compensate for rounding errors. +The following algorithm will give you the correct result for unsigned integer +division with truncation, i.e. the same result as the <kbd>DIV</kbd> +instruction gives (Thanks to Terje Mathisen who invented this method): + <pre> + b = (the number of significant bits in d) - 1 + r = 32 + b + f = 2<sup>r</sup> / d + If f is an integer then d is a power of 2: goto case A. + If f is not an integer, then check if the fractional part of f is < 0.5 + If the fractional part of f < 0.5: goto case B. + If the fractional part of f > 0.5: goto case C. + + case A: (d = 2<sup>b</sup>) + result = x SHR b + + case B: (fractional part of f < 0.5) + round f down to nearest integer + result = ((x+1) * f) SHR r + + case C: (fractional part of f > 0.5) + round f up to nearest integer + result = (x * f) SHR r + </pre> +<p> +Example:<br> +Assume that you want to divide by 5.<br> +5 = 00000101b.<br> +b = (number of significant binary digits) - 1 = 2<br> +r = 32+2 = 34<br> +f = 2<sup>34</sup> / 5 = 3435973836.8 = 0CCCCCCCC.CCC...(hexadecimal)<br> +The fractional part is greater than a half: use case C.<br> +Round f up to 0CCCCCCCDh. +<p> +The following code divides <kbd>EAX</kbd> by 5 and returns the result in <kbd>EDX</kbd>: +<pre> MOV EDX,0CCCCCCCDh + MUL EDX + SHR EDX,2</pre> +<p> +After the multiplication, <kbd>EDX</kbd> contains the product shifted right +32 places. Since r = 34 you have to shift 2 more places to get the result. +To divide by 10 you just change the last line to <kbd>SHR EDX,3</kbd>. +<p> +In case B you would have: +<pre> INC EAX + MOV EDX,f + MUL EDX + SHR EDX,b</pre> +<p> +This code works for all values of x except 0FFFFFFFFH which gives zero because of +overflow in the <kbd>INC</kbd> instruction. If x = 0FFFFFFFFH is possible, then change the code to: +<pre> MOV EDX,f + ADD EAX,1 + JC DOVERFL + MUL EDX +DOVERFL:SHR EDX,b</pre> +<p> +If the value of x is limited, then you may use a lower value of r, i.e. +fewer digits. There can be several reasons to use a lower value of r: +<ul> +<li>you may set r = 32 to avoid the <kbd>SHR EDX,b</kbd> in the end. +<li>you may set r = 16+b and use a multiplication instruction that +gives a 32 bit result rather +than 64 bits. This will free the <kbd>EDX</kbd> register: +<pre> IMUL EAX,0CCCDh / SHR EAX,18</pre> +<li>you may choose a value of r that gives case C rather than case +B in order to avoid the <kbd>INC EAX</kbd> instruction +</ul> +<p> +The maximum value for x in these cases is at least 2<sup>r-b</sup>, +sometimes higher. You have to do a systematic test if you want to know the +exact maximum value of x for which your code works correctly. +<p> +You may want to replace the slow multiplication instruction with faster instructions as +explained in chapter <a href="#26"_5>26.5</a>. +<p> +The following example divides <kbd>EAX</kbd> by 10 and returns the result +in <kbd>EAX</kbd>. I have chosen r=17 rather than 19 because it happens +to give a code, which is easier to optimize, and covers +the same range for x. f = 2<sup>17</sup> / 10 = 3333h, case B: q = (x+1)*3333h: +<pre> LEA EBX,[EAX+2*EAX+3] + LEA ECX,[EAX+2*EAX+3] + SHL EBX,4 + MOV EAX,ECX + SHL ECX,8 + ADD EAX,EBX + SHL EBX,8 + ADD EAX,ECX + ADD EAX,EBX + SHR EAX,17</pre> +<p> +A systematic test shows that this code works correctly for all x < 10004H. +<p> +<h4>Repeated integer division by the same value (all processors)</h4><p> +If the divisor is not known at assembly time, but you are dividing +repeatedly with the same divisor, then you may use the same method as above. +The code has to distinguish between +case A, B and C and calculate f before doing the divisions. +<p> +The code that follows shows how to do multiple divisions with the same divisor (unsigned +division with truncation). First call <kbd>SET_DIVISOR</kbd> to specify the +divisor and calculate the +reciprocal, then call <kbd>DIVIDE_FIXED</kbd> for each value to divide by the same divisor. +<pre> +.data + +RECIPROCAL_DIVISOR DD ? ; rounded reciprocal divisor +CORRECTION DD ? ; case A: -1, case B: 1, case C: 0 +BSHIFT DD ? ; number of bits in divisor - 1 + +.code + +SET_DIVISOR PROC NEAR ; divisor in EAX + PUSH EBX + MOV EBX,EAX + BSR ECX,EAX ; b = number of bits in divisor - 1 + MOV EDX,1 + JZ ERROR ; error: divisor is zero + SHL EDX,CL ; 2^b + MOV [BSHIFT],ECX ; save b + CMP EAX,EDX + MOV EAX,0 + JE SHORT CASE_A ; divisor is a power of 2 + DIV EBX ; 2^(32+b) / d + SHR EBX,1 ; divisor / 2 + XOR ECX,ECX + CMP EDX,EBX ; compare remainder with divisor/2 + SETBE CL ; 1 if case B + MOV [CORRECTION],ECX ; correction for rounding errors + XOR ECX,1 + ADD EAX,ECX ; add 1 if case C + MOV [RECIPROCAL_DIVISOR],EAX ; rounded reciprocal divisor + POP EBX + RET +CASE_A: MOV [CORRECTION],-1 ; remember that we have case A + POP EBX + RET +SET_DIVISOR ENDP + +DIVIDE_FIXED PROC NEAR ; dividend in EAX, result in EAX + MOV EDX,[CORRECTION] + MOV ECX,[BSHIFT] + TEST EDX,EDX + JS SHORT DSHIFT ; divisor is power of 2 + ADD EAX,EDX ; correct for rounding error + JC SHORT DOVERFL ; correct for overflow + MUL [RECIPROCAL_DIVISOR] ; multiply with reciprocal divisor + MOV EAX,EDX +DSHIFT: SHR EAX,CL ; adjust for number of bits + RET +DOVERFL:MOV EAX,[RECIPROCAL_DIVISOR] ; dividend = 0FFFFFFFFH + SHR EAX,CL ; do division by shifting + RET +DIVIDE_FIXED ENDP</pre><p> +This code gives the same result as the <kbd>DIV</kbd> instruction for +0 <= x < 2<sup>32</sup>, 0 < d < 2<sup>32</sup>.<br> +Note: The line <kbd>JC DOVERFL</kbd> and its target are not needed if +you are certain that x < 0FFFFFFFFH. +<p> +If powers of 2 occur so seldom that it is not worth optimizing for them, +then you may leave out the jump to <kbd>DSHIFT</kbd> and instead do a +multiplication with <kbd>CORRECTION</kbd> = 0 for case A. +<p> +If the divisor is changed so often that the procedure <kbd>SET_DIVISOR</kbd> needs optimizing, then you may +replace the <kbd>BSR</kbd> instruction with the code given in chapter +<a href="#26_15">26.15</a> for the PPlain and PMMX processors. +<p> +<h4>Floating point division (all processors)</h4><p> +Floating point division takes 38 or 39 clock cycles for the highest precision. +You can save time by specifying a lower precision in the floating point +control word (On PPlain and PMMX, only <kbd>FDIV</kbd> and <kbd>FIDIV</kbd> are faster at low +precision; on PPro, PII and PIII, this also applies +to <kbd>FSQRT</kbd>. No other instructions can be speeded up this way). +<p> +<h4><a name="paralleldiv">Parallel division (PPlain and PMMX)</a></h4><p> +On PPlain and PMMX, it is possible to do a floating point division and an integer division in +parallel to save time. On PPro, PII and PIII this is not possible, because integer division and +floating point division use the same circuitry.<br> +Example: A = A1 / A2; B = B1 / B2 +<pre> FILD [B1] + FILD [B2] + MOV EAX, [A1] + MOV EBX, [A2] + CDQ + FDIV + DIV EBX + FISTP [B] + MOV [A], EAX</pre><p> +(make sure you set the floating point control word to the desired rounding method) +<p> +<h4>Using reciprocal instruction for fast division (PIII)</h4><p> +On PIII you can use the fast reciprocal instruction <kbd>RCPSS</kbd> or +<kbd>RCPPS</kbd> on the divisor and then multiply with the dividend. However, +the precision is only 12 bits. You can increase the precision to 23 bits by +using the Newton-Raphson method described in Intel's application note AP-803:<br> +x<sub>0</sub> = <kbd>RCPSS</kbd>(d)<br> +x<sub>1</sub> = x<sub>0</sub> * (2 - d * x<sub>0</sub>) += 2*x<sub>0</sub> - d * x<sub>0</sub> * x<sub>0</sub><br> +where x<sub>0</sub> is the first approximation to the reciprocal of the divisor, d, +and x<sub>1</sub> is a better approximation. You must use this formula before +multiplying with the dividend: +<pre> MOVAPS XMM1, [DIVISORS] ; load divisors + RCPPS XMM0, XMM1 ; approximate reciprocal + MULPS XMM1, XMM0 ; Newton-Raphson formula + MULPS XMM1, XMM0 + ADDPS XMM0, XMM0 + SUBPS XMM0, XMM1 + MULPS XMM0, [DIVIDENDS] ; results in XMM0</pre><p> +This makes four divisions in 18 clock cycles with a precision of 23 bits. +Increasing the precision further by repeating the Newton-Raphson formula +in the floating point registers is possible, but not very advantageous. +<p> +If you want to use this method for integer divisions then you have to check for +rounding errors. The following code makes four divisions with truncation on packed +word size integers in approximately 42 clock cycles. It gives exact results for +0 <= dividend < 7FFFFH and 0 < divisor <= 7FFFFH: +<pre> MOVQ MM1, [DIVISORS] ; load four divisors + MOVQ MM2, [DIVIDENDS] ; load four dividends + PUNPCKHWD MM4, MM1 ; unpack divisors to DWORDs + PSRAD MM4, 16 + PUNPCKLWD MM3, MM1 + PSRAD MM3, 16 + CVTPI2PS XMM1, MM4 ; convert divisors to float, upper two operands + MOVLHPS XMM1, XMM1 + CVTPI2PS XMM1, MM3 ; convert lower two operands + PUNPCKHWD MM4, MM2 ; unpack dividends to DWORDs + PSRAD MM4, 16 + PUNPCKLWD MM3, MM2 + PSRAD MM3, 16 + CVTPI2PS XMM2, MM4 ; convert dividends to float, upper two operands + MOVLHPS XMM2, XMM2 + CVTPI2PS XMM2, MM3 ; convert lower two operands + RCPPS XMM0, XMM1 ; approximate reciprocal of divisors + MULPS XMM1, XMM0 ; improve precision with Newton-Raphson method + PCMPEQW MM4, MM4 ; make four integer 1's in the meantime + PSRLW MM4, 15 + MULPS XMM1, XMM0 + ADDPS XMM0, XMM0 + SUBPS XMM0, XMM1 ; reciprocal divisors with 23 bit precision + MULPS XMM0, XMM2 ; multiply with dividends + CVTTPS2PI MM0, XMM0 ; truncate lower two results + MOVHLPS XMM0, XMM0 + CVTTPS2PI MM3, XMM0 ; truncate upper two results + PACKSSDW MM0, MM3 ; pack the four results into MM0 + MOVQ MM3, MM1 ; multiply results with divisors... + PMULLW MM3, MM0 ; to check for rounding errors + PADDSW MM0, MM4 ; add 1 to compensate for later subtraction + PADDSW MM3, MM1 ; add divisor. this should be > dividend + PCMPGTW MM3, MM2 ; check if too small + PADDSW MM0, MM3 ; subtract 1 if not too small + MOVQ [QUOTIENTS], MM0 ; save the four results</pre><p> +This code checks if the result is too small and makes the appropriate +correction. It is not necessary to check if the result is too big. +<p> +<h4>Avoiding divisions (all processors)</h4><p> +Obviously, you should always try to minimize the number of divisions. Floating point division +with a constant or repeated division with the same value should of course be done by +multiplying with the reciprocal. But there are many other situations where you can reduce +the number of divisions. For example: +if (A/B > C)... can be rewritten as if (A > B*C)... when B is positive, and the opposite when +B is negative. +<p> +A/B + C/D can be rewritten as (A*D + C*B) / (B*D) +<p> +If you are using integer division, then you should be aware that the rounding errors may be +different when you rewrite the formulas. +<p> +<h3><a name="27_3">27.3 Freeing floating point registers (all processors)</a></h3><p> +You have to free all used floating point registers before exiting a subroutine, +except for any register used for the result. +<p> +The fastest way of freeing one register is <kbd>FSTP ST</kbd>. +The fastest way of freeing two registers is <kbd>FCOMPP</kbd> on PPlain and PMMX; +on PPro, PII and PIII you may use either +<kbd>FCOMPP</kbd> or two times <kbd>FSTP ST</kbd>, whichever fits best into +the decoding sequence. +<p> +It is not recommended to use <kbd>FFREE</kbd>. +<p> +<h3><a name="27_4">27.4 Transitions between floating point and MMX instructions (PMMX, PII and PIII)</a></h3><p> +You must issue an <kbd>EMMS</kbd> instruction after your last MMX instruction if there +is a possibility that floating point code follows later. +<p> +On PMMX there is a high penalty for switching between floating point and MMX +instructions. The first floating point instruction after an +<kbd>EMMS</kbd> takes approximately 58 clocks extra, and the first MMX instruction +after a floating point instruction takes approximately 38 clocks extra. +<p> +On PII and PIII there is no such penalty. The delay after <kbd>EMMS</kbd> +can be hidden by putting in integer +instructions between <kbd>EMMS</kbd> and the first floating point instruction. +<p> +<h3><a name="27_5">27.5 Converting from floating point to integer (All processors)</a></h3><p> +All conversions from floating point to integer, and vice versa, must go via a memory +location: +<pre> FISTP DWORD PTR [TEMP] + MOV EAX, [TEMP]</pre><p> +On PPro, PII and PIII, this code is likely to have a penalty for attempting to +read from <kbd>[TEMP]</kbd> before the write to <kbd>[TEMP]</kbd> is finished +because the <kbd>FIST</kbd> instruction is slow (see chapter <a href="#17">17</a>). +It doesn't help to put in a <kbd>WAIT</kbd> (see chapter <a href="#26_6">26.6</a>). +It is recommended that you put in other instructions between the write to +<kbd>[TEMP]</kbd> and the read from <kbd>[TEMP]</kbd> if possible in +order to avoid this penalty. This applies to all the examples that follow. +<p> +The specifications for the C and C++ language requires that conversion +from floating point +numbers to integers use truncation rather than rounding. The method used by most C +libraries is to change the floating point control word to indicate truncation before using an +<kbd>FISTP</kbd> instruction and changing it back again afterwords. This method is very slow on all +processors. On PPro, PII and PIII, the floating point control word cannot be renamed, so all +subsequent floating point instructions must wait for the <kbd>FLDCW</kbd> instruction to retire. +<p> +Whenever you have a conversion from floating point to integer in C or C++, you should +think of whether you can use rounding to nearest integer instead of truncation. If your +standard library doesn't have a fast round function then make your own using the code +examples listed below. +<p> +If you need truncation inside a loop then you should change the control word only outside +the loop if the rest of the floating point instructions in the loop can work correctly in +truncation mode. +<p> +You may use various tricks for truncating without changing the control word, as illustrated in +the examples below. These examples presume that the control word is set to default, i.e. +rounding to nearest or even. +<p> +<h4>Rounding to nearest or even</h4><p> +<pre>; extern "C" int round (double x); +_round PROC NEAR +PUBLIC _round + FLD QWORD PTR [ESP+4] + FISTP DWORD PTR [ESP+4] + MOV EAX, DWORD PTR [ESP+4] + RET +_round ENDP</pre> +<p> +<h4>Truncation towards zero</h4><p> +<pre>; extern "C" int truncate (double x); +_truncate PROC NEAR +PUBLIC _truncate + FLD QWORD PTR [ESP+4] ; x + SUB ESP, 12 ; space for local variables + FIST DWORD PTR [ESP] ; rounded value + FST DWORD PTR [ESP+4] ; float value + FISUB DWORD PTR [ESP] ; subtract rounded value + FSTP DWORD PTR [ESP+8] ; difference + POP EAX ; rounded value + POP ECX ; float value + POP EDX ; difference (float) + TEST ECX, ECX ; test sign of x + JS SHORT NEGATIVE + ADD EDX, 7FFFFFFFH ; produce carry if difference < -0 + SBB EAX, 0 ; subtract 1 if x-round(x) < -0 + RET +NEGATIVE: + XOR ECX, ECX + TEST EDX, EDX + SETG CL ; 1 if difference > 0 + ADD EAX, ECX ; add 1 if x-round(x) > 0 + RET +_truncate ENDP</pre> +<p> +<h4>Truncation towards minus infinity</h4><p> +<pre>; extern "C" int ifloor (double x); +_ifloor PROC NEAR +PUBLIC _ifloor + FLD QWORD PTR [ESP+4] ; x + SUB ESP, 8 ; space for local variables + FIST DWORD PTR [ESP] ; rounded value + FISUB DWORD PTR [ESP] ; subtract rounded value + FSTP DWORD PTR [ESP+4] ; difference + POP EAX ; rounded value + POP EDX ; difference (float) + ADD EDX, 7FFFFFFFH ; produce carry if difference < -0 + SBB EAX, 0 ; subtract 1 if x-round(x) < -0 + RET +_ifloor ENDP</pre> +<p> +These procedures work for -2<sup>31</sup> < x < 2<sup>31</sup>-1. +They do not check for overflow or NAN's. +<p> +The PIII has instructions for truncation of single precision floating point +numbers: <kbd>CVTTSS2SI</kbd> and <kbd>CVTTPS2PI</kbd>. These instructions +are very useful if the single precision is satisfactory, but if you are converting +a float with higher precision to single precision in order to use these truncation +instructions then you have the problem that the number may be rounded up in the +conversion to single precision. +<p> +<h4>Alternative to FISTP instruction (PPlain and PMMX)</h4> +<p> +Converting a floating point number to integer is normally done like this: +<pre> FISTP DWORD PTR [TEMP] + MOV EAX, [TEMP]</pre> +<p> +An alternative method is: +<pre>.DATA +ALIGN 8 +TEMP DQ ? +MAGIC DD 59C00000H ; f.p. representation of 2^51 + 2^52 + +.CODE + FADD [MAGIC] + FSTP QWORD PTR [TEMP] + MOV EAX, DWORD PTR [TEMP]</pre> +<p> +Adding the 'magic number' of 2<sup>51</sup> + 2<sup>52</sup> has the effect +that any integer between -2<sup>31</sup> and +2<sup>31</sup> + will be aligned in the lower 32 bits when storing as a double precision floating +point number. The result is the same as you get with <kbd>FISTP</kbd> for all rounding methods except +truncation towards zero. The result is different from <kbd>FISTP</kbd> if the control word specifies +truncation or in case of overflow. You may need a <kbd>WAIT</kbd> instruction for +compatibility with the old 80287 processor, see chapter <a href="#26_6">26.6</a>. +<p> +This method is not faster than using <kbd>FISTP</kbd>, but it gives better +scheduling opportunities on +PPlain and PMMX because there is a 3 clock void between <kbd>FADD</kbd> + and <kbd>FSTP</kbd> which may be +filled with other instrucions. You may multiply or divide the number by a +power of 2 in the same operation by doing the opposite to the magic number. +You may also add a constant by +adding it to the magic number, which then has to be double precision. +<p> +<h3><a name="27_6">27.6 Using integer instructions to do floating point operations (all processors)</a></h3><p> +Integer instructions are generally faster than floating point instructions, so it is often +advantageous to use integer instructions for doing simple floating point operations. The +most obvious example is moving data. Example:<br> +<kbd> FLD QWORD PTR [ESI] / FSTP QWORD PTR [EDI]</kbd><br> +Change to:<br> +<kbd> MOV EAX,[ESI] / MOV EBX,[ESI+4] / MOV [EDI],EAX / MOV [EDI+4],EBX</kbd><br> +<p> +<h4>Testing if a floating point value is zero:</h4><p> +The floating point value of zero is usually represented as 32 or 64 bits of zero, but there is a +pitfall here: The sign bit may be set! Minus zero is regarded as a valid floating point number, +and the processor may actually generate a zero with the sign bit set if for example +multiplying a negative number with zero. So if you want to test if a floating point number is +zero, you should not test the sign bit. Example:<br> +<kbd> FLD DWORD PTR [EBX] / FTST / FNSTSW AX / AND AH,40H / JNZ IsZero</kbd><br> +Use integer instructions instead, and shift out the sign bit:<br> +<kbd> MOV EAX,[EBX] / ADD EAX,EAX / JZ IsZero</kbd><br> +If the floating point number is double precision (QWORD) then you only have to +test bit 32-62. If they are zero, then the lower half will also be zero if it is a normal floating point number. +<p> +<h4>Testing if negative:</h4><p> +A floating point number is negative if the sign bit is set and at least one other bit is set. +Example:<br> +<kbd> MOV EAX,[NumberToTest] / CMP EAX,80000000H / JA IsNegative</kbd> +<p> +<h4>Manipulating the sign bit:</h4><p> +You can change the sign of a floating point number simply by flipping the +sign bit. Example:<br> +<kbd> XOR BYTE PTR [a] + (TYPE a) - 1, 80H</kbd> +<p> +Likewise you may get the absolute value of a floating point number by simply ANDing out +the sign bit. +<p> +<h4>Comparing numbers:</h4><p> +Floating point numbers are stored in a unique format which allows you to use integer +instructions for comparing floating point numbers, except for the sign bit. If you are certain +that two floating point numbers both are normal and positive then you may simply compare +them as integers. Example:<br> +<kbd> FLD [a] / FCOMP [b] / FNSTSW AX / AND AH,1 / JNZ ASmallerThanB</kbd><br> +Change to:<br> +<kbd> MOV EAX,[a] / MOV EBX,[b] / CMP EAX,EBX / JB ASmallerThanB</kbd><br> +This method only works if the two numbers have the same precision and you are certain +that none of the numbers have the sign bit set. +<p> +If negative numbers are possible, then you have to convert the negative numbers to +2-complement, and do a signed compare: +<pre> MOV EAX, [a] + MOV EBX, [b] + MOV ECX, EAX + MOV EDX, EBX + SAR ECX, 31 ; copy sign bit + AND EAX, 7FFFFFFFH ; remove sign bit + SAR EDX, 31 + AND EBX, 7FFFFFFFH + XOR EAX, ECX ; make 2-complement if sign bit was set + XOR EBX, EDX + SUB EAX, ECX + SUB EBX, EDX + CMP EAX, EBX + JL ASmallerThanB ; signed comparison</pre><p> +This method works for all normal floating point numbers, including -0. +<p> +<h3><a name="27_7">27.7 Using floating point instructions to do integer operations (PPlain and PMMX)</a></h3><p> +<h4>Integer multiplication (PPlain and PMMX)</h4><p> +Floating point multiplication is faster than integer multiplication on the PPlain and PMMX, +but the price for converting integer factors to float and converting the result back to integer +is high, so floating point multiplication is only advantageous if the number of conversions +needed is low compared with the number of multiplications. (It may be tempting to use +denormal floating point operands to save some of the conversions here, but the handling of +denormals is very slow, so this is not a good idea!) +<p> +On the PMMX, MMX multiplication instructions are faster than integer multiplication, and +can be pipelined to a throughput of one multiplication per clock cycle, so this may be the +best solution for doing fast multiplication on the PMMX, if you can live with 16 bit precision. +<p> +Integer multiplication is faster than floating point on PPro, PII and PIII. +<p> +<h4>Integer division (PPlain and PMMX)</h4><p> +Floating point division is not faster than integer division, but you can do other integer +operations (including integer division, but not integer multiplication) while the floating point +unit is working on the division (See example <a href="#paralleldiv">above</a>). +<p> +<h4>Converting binary to decimal numbers (all processors)</h4><p> +Using the <kbd>FBSTP</kbd> instruction is a simple and convenient way of converting a binary number +to decimal, although not necessarily the fastest method. +<p> +<h3><a name="27_8">27.8 Moving blocks of data (all processors)</a></h3><p> +There are several ways of moving blocks of data. The most common method is +<kbd>REP MOVSD</kbd>, but under certain conditions other methods are faster. +<p> +On PPlain and PMMX it is faster to move 8 bytes at a time using floating +point registers if the destination is not in the cache: +<pre>TOP: FILD QWORD PTR [ESI] + FILD QWORD PTR [ESI+8] + FXCH + FISTP QWORD PTR [EDI] + FISTP QWORD PTR [EDI+8] + ADD ESI, 16 + ADD EDI, 16 + DEC ECX + JNZ TOP</pre> +<p> +The source and destination should of course be aligned by 8. The extra time used by the +slow <kbd>FILD</kbd> and <kbd>FISTP</kbd> instructions is compensated for by the fact that you only have to do +half as many write operations. Note that this method is only advantageous on the PPlain +and PMMX and only if the destination is not in the level 1 cache. You cannot use +<kbd>FLD</kbd> and <kbd>FSTP</kbd> (without <kbd>I</kbd>) on arbitrary bit patterns because denormal numbers +are handled slowly and certain bit patterns are not preserved unchanged. +<p> +On the PMMX processor it is faster to use MMX instructions to move eight bytes +at a time if the destination is not in the cache: +<pre>TOP: MOVQ MM0,[ESI] + MOVQ [EDI],MM0 + ADD ESI,8 + ADD EDI,8 + DEC ECX + JNZ TOP</pre> +<p> +There is no need to unroll this loop or optimize it further if cache misses are expected, +because memory access is the bottleneck here, not instruction execution. +<p> +On PPro, PII and PIII processors the <kbd>REP MOVSD</kbd> instruction is particularly +fast when the following conditions are met (see chapter <a href="#26_3">26.3</a>): +<ul> +<li>both source and destination must be aligned by 8 +<li>direction must be forward (direction flag cleared) +<li>the count (<kbd>ECX</kbd>) must be greater than or equal to 64 +<li>the difference between <kbd>EDI</kbd> and <kbd>ESI</kbd> must be numerically greater than or equal to 32 +<li>the memory type for both source and destination must be either writeback or +write-combining (you can normally assume this). +</ul> +<p> +On the PII it is faster to use MMX registers if the above conditions are not met +and the destination is likely to be in the level 1 cache. The loop may be rolled +out by two, and the source and destination should of course be aligned by 8. +<p> +On the PIII the fastest way of moving data is to use the <kbd>MOVAPS</kbd> +instruction if the above conditions are not met or if the destination is in +the level 1 or level 2 cache: +<pre> SUB EDI, ESI +TOP: MOVAPS XMM0, [ESI] + MOVAPS [ESI+EDI], XMM0 + ADD ESI, 16 + DEC ECX + JNZ TOP</pre><p> +Unlike <kbd>FLD</kbd>, <kbd>MOVAPS</kbd> can handle any bit pattern without +problems. Remember that source and destination must be aligned by 16. +<p> +If the number of bytes to move is not divisible by 16 then you may round up +to the nearest number divisible by 16 and put some extra space at the end of +the destination buffer to receive the superfluous bytes. If this is not possible +then you have to move the remaining bytes by other methods. +<p> +On the PIII you also have the option of writing directly to RAM memory without +involving the cache by using the <kbd>MOVNTQ</kbd> or <kbd>MOVNTPS</kbd> +instruction. This can be useful if you don't want the destination to go into +a cache. <kbd>MOVNTPS</kbd> is only slightly faster than <kbd>MOVNTQ</kbd>. +<p> +<h3><a name="27_9">27.9 Self-modifying code (All processors)</a></h3><p> +The penalty for executing a piece of code immediately after modifying it is approximately 19 +clocks for PPlain, 31 for PMMX, and 150-300 for PPro, PII and PIII. The 80486 and earlier +processors require a jump between the modifying and the modified code in order to flush +the code cache. +<p> +To get permission to modify code in a protected operating system you need to call special +system functions: In 16-bit Windows call ChangeSelector, in 32-bit Windows call +VirtualProtect and FlushInstructionCache (or put the code in a data segment). +<p> +Self-modifying code is not considered good programming practice, but it may be justified if +the gain in speed is considerable. +<p> +<h3><a name="27_10">27.10 Detecting processor type (All processors)</a></h3><p> +I think it is fairly obvious by now that what is optimal for one microprocessor may not be +optimal for another. You may make the most critical parts of you program in different +versions, each optimized for a specific microprocessor and selecting the desired version at +run time after detecting which microprocessor the program is running on. If you are using +instructions that are not supported by all microprocessors (i.e. conditional +moves, <kbd>FCOMI</kbd>, MMX and XMM instructions) then you must first check if the program is running on a microprocessor +that supports these instructions. The subroutine below checks the type of microprocessor +and the features supported. +<p> +<pre>; define CPUID instruction if not known by assembler: +CPUID MACRO + DB 0FH, 0A2H +ENDM + +; C++ prototype: +; extern "C" long int DetectProcessor (void); + +; return value: +; bits 8-11 = family (5 for PPlain and PMMX, 6 for PPro, PII and PIII) +; bit 0 = floating point instructions supported +; bit 15 = conditional move and FCOMI instructions supported +; bit 23 = MMX instructions supported +; bit 25 = XMM instructions supported + +_DetectProcessor PROC NEAR +PUBLIC _DetectProcessor + PUSH EBX + PUSH ESI + PUSH EDI + PUSH EBP + ; detect if CPUID instruction supported by microprocessor: + PUSHFD + POP EAX + MOV EBX, EAX + XOR EAX, 1 SHL 21 ; check if CPUID bit can toggle + PUSH EAX + POPFD + PUSHFD + POP EAX + XOR EAX, EBX + AND EAX, 1 SHL 21 + JZ SHORT DPEND ; CPUID instruction not supported + XOR EAX, EAX + CPUID ; get number of CPUID functions + TEST EAX, EAX + JZ SHORT DPEND ; CPUID function 1 not supported + MOV EAX, 1 + CPUID ; get family and features + AND EAX, 000000F00H ; family + AND EDX, 0FFFFF0FFH ; features flags + OR EAX, EDX ; combine bits +DPEND: POP EBP + POP EDI + POP ESI + POP EBX + RET +_DetectProcessor ENDP</pre> +<p> +Note that some operating systems do not allow XMM instructions. +Information on how to check for operating system support of XMM instructions can +be found in Intel's application note AP-900: "Identifying support for Streaming +SIMD Extensions in the Processor and Operating System". +More information on microprocessor identification can be found in Intel's +application note AP-485: "Intel Processor Identification and the CPUID Instruction". +<p> +To code the conditional move, MMX, XMM instructions etc. on an assembler that doesn't have +these instructions use the macros at <a href="http://www.agner.org/assem/macros.zip">www.agner.org/assem/macros.zip</a> +<p> +<h2><a name="28">28</a>. List of instruction timings for PPlain and PMMX</h2> +<h3><a name="28_1">28.1 Integer instructions</a></h3><p> +<b>Explanations:</b><br> +<u>Operands:</u><br> +r = register, m = memory, i = immediate data, sr = segment register<br> +m32 = 32 bit memory operand, etc. +<p> +<u>Clock cycles:</u><br> +The numbers are minimum values. Cache misses, misalignment, and exceptions may +increase the clock counts considerably. +<p> +<u>Pairability:</u><br> +u = pairable in u-pipe, v = pairable in v-pipe, uv = pairable in either pipe, +np = not pairable. +<p> + +<table border=1 cellpadding=4 cellspacing=1> +<tr><td class="a3"> Instruction </td> +<td class="a3"> Operands </td> +<td class="a3"> Clock cycles </td> +<td class="a3"> Pairability </td></tr> +<tr><td>NOP</td><td> </td><td>1</td><td>uv</td></tr> +<tr><td>MOV</td><td>r/m, r/m/i</td><td>1</td><td>uv</td></tr> +<tr><td>MOV</td><td>r/m, sr</td><td>1</td><td>np</td></tr> +<tr><td>MOV</td><td>sr , r/m</td><td>>= 2 b)</td><td>np</td></tr> +<tr><td>MOV</td><td>m , accum</td><td>1</td><td>uv h)</td></tr> +<tr><td>XCHG</td><td>(E)AX, r</td><td>2</td><td>np</td></tr> +<tr><td>XCHG</td><td>r , r</td><td>3</td><td>np</td></tr> +<tr><td>XCHG</td><td>r , m</td><td>>15</td><td>np</td></tr> +<tr><td>XLAT</td><td> </td><td>4</td><td>np</td></tr> +<tr><td>PUSH</td><td>r/i</td><td>1</td><td>uv</td></tr> +<tr><td>POP</td><td>r</td><td>1</td><td>uv</td></tr> +<tr><td>PUSH</td><td>m</td><td>2</td><td>np</td></tr> +<tr><td>POP</td><td>m</td><td>3</td><td>np</td></tr> +<tr><td>PUSH</td><td>sr</td><td>1 b)</td><td>np</td></tr> +<tr><td>POP</td><td>sr</td><td>>= 3 b)</td><td>np</td></tr> +<tr><td>PUSHF</td><td> </td><td>3-5</td><td>np</td></tr> +<tr><td>POPF</td><td> </td><td>4-6</td><td>np</td></tr> +<tr><td>PUSHA POPA</td><td> </td><td>5-9 i)</td><td>np</td></tr> +<tr><td>PUSHAD POPAD</td><td> </td><td>5</td><td>np</td></tr> +<tr><td>LAHF SAHF</td><td> </td><td>2</td><td>np</td></tr> +<tr><td>MOVSX MOVZX</td><td>r , r/m</td><td>3 a)</td><td>np</td></tr> +<tr><td>LEA</td><td>r , m</td><td>1</td><td>uv</td></tr> +<tr><td>LDS LES LFS LGS LSS</td><td>m</td><td>4 c)</td><td>np</td></tr> +<tr><td>ADD SUB AND OR XOR</td><td>r , r/i</td><td>1</td><td>uv</td></tr> +<tr><td>ADD SUB AND OR XOR</td><td>r , m</td><td>2</td><td>uv</td></tr> +<tr><td>ADD SUB AND OR XOR</td><td>m , r/i</td><td>3</td><td>uv</td></tr> +<tr><td>ADC SBB</td><td>r , r/i</td><td>1</td><td>u</td></tr> +<tr><td>ADC SBB</td><td>r , m</td><td>2</td><td>u</td></tr> +<tr><td>ADC SBB</td><td>m , r/i</td><td>3</td><td>u</td></tr> +<tr><td>CMP</td><td>r , r/i</td><td>1</td><td>uv</td></tr> +<tr><td>CMP</td><td>m , r/i</td><td>2</td><td>uv</td></tr> +<tr><td>TEST</td><td>r , r</td><td>1</td><td>uv</td></tr> +<tr><td>TEST</td><td>m , r</td><td>2</td><td>uv</td></tr> +<tr><td>TEST</td><td>r , i</td><td>1</td><td>f)</td></tr> +<tr><td>TEST</td><td>m , i</td><td>2</td><td>np</td></tr> +<tr><td>INC DEC</td><td>r</td><td>1</td><td>uv</td></tr> +<tr><td>INC DEC</td><td>m</td><td>3</td><td>uv</td></tr> +<tr><td>NEG NOT</td><td>r/m</td><td>1/3</td><td>np</td></tr> +<tr><td>MUL IMUL</td><td>r8/r16/m8/m16</td><td>11</td><td>np</td></tr> +<tr><td>MUL IMUL</td><td>all other versions</td><td>9 d)</td><td>np</td></tr> +<tr><td>DIV</td><td>r8/m8</td><td>17</td><td>np</td></tr> +<tr><td>DIV</td><td>r16/m16</td><td>25</td><td>np</td></tr> +<tr><td>DIV</td><td>r32/m32</td><td>41</td><td>np</td></tr> +<tr><td>IDIV</td><td>r8/m8</td><td>22</td><td>np</td></tr> +<tr><td>IDIV</td><td>r16/m16</td><td>30</td><td>np</td></tr> +<tr><td>IDIV</td><td>r32/m32</td><td>46</td><td>np</td></tr> +<tr><td>CBW CWDE</td><td> </td><td>3</td><td>np</td></tr> +<tr><td>CWD CDQ</td><td> </td><td>2</td><td>np</td></tr> +<tr><td>SHR SHL SAR SAL</td><td>r , i</td><td>1</td><td>u</td></tr> +<tr><td>SHR SHL SAR SAL</td><td>m , i</td><td>3</td><td>u</td></tr> +<tr><td>SHR SHL SAR SAL</td><td>r/m, CL</td><td>4/5</td><td>np</td></tr> +<tr><td>ROR ROL RCR RCL</td><td>r/m, 1</td><td>1/3</td><td>u</td></tr> +<tr><td>ROR ROL</td><td>r/m, i(><1)</td><td>1/3</td><td>np</td></tr> +<tr><td>ROR ROL</td><td>r/m, CL</td><td>4/5</td><td>np</td></tr> +<tr><td>RCR RCL</td><td>r/m, i(><1)</td><td>8/10</td><td>np</td></tr> +<tr><td>RCR RCL</td><td>r/m, CL</td><td>7/9</td><td>np</td></tr> +<tr><td>SHLD SHRD</td><td>r, i/CL</td><td>4 a)</td><td>np</td></tr> +<tr><td>SHLD SHRD</td><td>m, i/CL</td><td>5 a)</td><td>np</td></tr> +<tr><td>BT</td><td>r, r/i</td><td>4 a)</td><td>np</td></tr> +<tr><td>BT</td><td>m, i</td><td>4 a)</td><td>np</td></tr> +<tr><td>BT</td><td>m, i</td><td>9 a)</td><td>np</td></tr> +<tr><td>BTR BTS BTC</td><td>r, r/i</td><td>7 a)</td><td>np</td></tr> +<tr><td>BTR BTS BTC</td><td>m, i</td><td>8 a)</td><td>np</td></tr> +<tr><td>BTR BTS BTC</td><td>m, r</td><td>14 a)</td><td>np</td></tr> +<tr><td>BSF BSR</td><td>r , r/m</td><td>7-73 a)</td><td>np</td></tr> +<tr><td>SETcc</td><td>r/m</td><td>1/2 a)</td><td>np</td></tr> +<tr><td>JMP CALL</td><td>short/near</td><td>1 e)</td><td>v</td></tr> +<tr><td>JMP CALL</td><td>far</td><td>>= 3 e)</td><td>np</td></tr> +<tr><td>conditional jump</td><td>short/near</td><td>1/4/5/6 e)</td><td>v</td></tr> +<tr><td>CALL JMP</td><td>r/m</td><td>2/5 e</td><td>np</td></tr> +<tr><td>RETN</td><td> </td><td>2/5 e</td><td>np</td></tr> +<tr><td>RETN</td><td>i</td><td>3/6 e)</td><td>np</td></tr> +<tr><td>RETF</td><td> </td><td>4/7 e)</td><td>np</td></tr> +<tr><td>RETF</td><td>i</td><td>5/8 e)</td><td>np</td></tr> +<tr><td>J(E)CXZ</td><td>short</td><td>4-11 e)</td><td>np</td></tr> +<tr><td>LOOP</td><td>short</td><td>5-10 e)</td><td>np</td></tr> +<tr><td>BOUND</td><td>r , m</td><td>8</td><td>np</td></tr> +<tr><td>CLC STC CMC CLD STD</td><td> </td><td>2</td><td>np</td></tr> +<tr><td>CLI STI</td><td> </td><td>6-9</td><td>np</td></tr> +<tr><td>LODS</td><td> </td><td>2</td><td>np</td></tr> +<tr><td>REP LODS</td><td> </td><td>7+3*n g)</td><td>np</td></tr> +<tr><td>STOS</td><td> </td><td>3</td><td>np</td></tr> +<tr><td>REP STOS</td><td> </td><td>10+n g)</td><td>np</td></tr> +<tr><td>MOVS</td><td> </td><td>4</td><td>np</td></tr> +<tr><td>REP MOVS</td><td> </td><td>12+n g)</td><td>np</td></tr> +<tr><td>SCAS</td><td> </td><td>4</td><td>np</td></tr> +<tr><td>REP(N)E SCAS</td><td> </td><td>9+4*n g)</td><td>np</td></tr> +<tr><td>CMPS</td><td> </td><td>5</td><td>np</td></tr> +<tr><td>REP(N)E CMPS</td><td> </td><td>8+4*n g)</td><td>np</td></tr> +<tr><td>BSWAP</td><td> </td><td>1 a)</td><td>np</td></tr> +<tr><td>CPUID</td><td> </td><td>13-16 a)</td><td>np</td></tr> +<tr><td>RDTSC</td><td> </td><td>6-13 a) j)</td><td>np</td></tr> +</table> +<p> +<b>Notes:</b><br> +a) this instruction has a <kbd>0FH</kbd> prefix which takes one clock cycle extra to + decode on a PPlain unless preceded by a multicycle instruction (see + chapter <a href="#12">12</a>).<br> +b) versions with <kbd>FS</kbd> and <kbd>GS</kbd> have a <kbd>0FH</kbd> + prefix. see note a.<br> +c) versions with <kbd>SS, FS</kbd>, and <kbd>GS</kbd> have a <kbd>0FH</kbd> prefix. see note a.<br> +d) versions with two operands and no immediate have a <kbd>0FH</kbd> prefix, see note a.<br> +e) see chapter <a href="#22">22</a><br> +f) only pairable if register is accumulator. see chapter <a href="#26_14">26.14</a>.<br> +g) add one clock cycle for decoding the repeat prefix unless preceded by a + multicycle instruction (such as <kbd>CLD</kbd>. see chapter <a href="#12">12</a>).<br> +h) pairs as if it were writing to the accumulator. see chapter <a href="#26_14">26.14</a>.<br> +i) 9 if <kbd>SP</kbd> divisible by 4. <a href="#imperfectpush">See 10.2</a><br> +j) on PPlain: 6 in priviledged or real mode, 11 in nonpriviledged, error in + virtual mode. On PMMX: 8 and 13 clocks respectively.<br> +<p> +<h3><a name="28_2">28.2 Floating point instructions</a></h3><p> +<p> +<b>Explanations:</b><br> +<u>Operands:</u><br> +r = register, m = memory, m32 = 32 bit memory operand, etc. +<p> +<u>Clock cycles:</u><br> +The numbers are minimum values. Cache misses, misalignment, denormal operands, and +exceptions may increase the clock counts considerably. +<p> +<u>Pairability:</u><br> ++ = pairable with <kbd>FXCH</kbd>, np = not pairable with <kbd>FXCH</kbd>. +<p> +<u>i-ov:</u><br> +Overlap with integer instructions. i-ov = 4 means that the last four clock cycles can overlap +with subsequent integer instructions. +<p> +<u>fp-ov:</u><br> +Overlap with floating point instructions. fp-ov = 2 means that the last two clock cycles can +overlap with subsequent floating point instructions. +(<kbd>WAIT</kbd> is considered a floating point instruction here)<p> + +<table border=1 cellpadding=4 cellspacing=1> +<tr><td class="a3"> Instruction </td> +<td class="a3"> Operand </td> +<td class="a3"> Clock cycles </td> +<td class="a3"> Pairability </td> +<td class="a3"> i-ov </td> +<td class="a3"> fp-ov </td></tr> +<tr><td>FLD</td><td>r/m32/m64</td><td>1</td><td>+</td><td>0</td><td>0</td></tr> +<tr><td>FLD</td><td>m80</td><td>3</td><td>np</td><td>0</td><td>0</td></tr> +<tr><td>FBLD</td><td>m80</td><td>48-58</td><td>np</td><td>0</td><td>0</td></tr> +<tr><td>FST(P)</td><td>r</td><td>1</td><td>np</td><td>0</td><td>0</td></tr> +<tr><td>FST(P)</td><td>m32/m64</td><td>2 m)</td><td>np</td><td>0</td><td>0</td></tr> +<tr><td>FST(P)</td><td>m80</td><td>3 m)</td><td>np</td><td>0</td><td>0</td></tr> +<tr><td>FBSTP</td><td>m80</td><td>148-154</td><td>np</td><td>0</td><td>0</td></tr> +<tr><td>FILD</td><td>m</td><td>3</td><td>np</td><td>2</td><td>2</td></tr> +<tr><td>FIST(P)</td><td>m</td><td>6</td><td>np</td><td>0</td><td>0</td></tr> +<tr><td>FLDZ FLD1</td><td> </td><td>2</td><td>np</td><td>0</td><td>0</td></tr> +<tr><td>FLDPI FLDL2E etc.</td><td> </td><td>5 s)</td><td>np</td><td>2</td><td>2</td></tr> +<tr><td>FNSTSW</td><td>AX/m16</td><td>6 q)</td><td>np</td><td>0</td><td>0</td></tr> +<tr><td>FLDCW</td><td>m16</td><td>8</td><td>np</td><td>0</td><td>0</td></tr> +<tr><td>FNSTCW</td><td>m16</td><td>2</td><td>np</td><td>0</td><td>0</td></tr> +<tr><td>FADD(P)</td><td>r/m</td><td>3</td><td>+</td><td>2</td><td>2</td></tr> +<tr><td>FSUB(R)(P)</td><td>r/m</td><td>3</td><td>+</td><td>2</td><td>2</td></tr> +<tr><td>FMUL(P)</td><td>r/m</td><td>3</td><td>+</td><td>2</td><td>2 n)</td></tr> +<tr><td>FDIV(R)(P)</td><td>r/m</td><td>19/33/39 p)</td><td>+</td><td>38 o)</td><td>2</td></tr> +<tr><td>FCHS FABS</td><td> </td><td>1</td><td>+</td><td>0</td><td>0</td></tr> +<tr><td>FCOM(P)(P) FUCOM</td><td>r/m</td><td>1</td><td>+</td><td>0</td><td>0</td></tr> +<tr><td>FIADD FISUB(R)</td><td>m</td><td>6</td><td>np</td><td>2</td><td>2</td></tr> +<tr><td>FIMUL</td><td>m</td><td>6</td><td>np</td><td>2</td><td>2</td></tr> +<tr><td>FIDIV(R)</td><td>m</td><td>22/36/42 p)</td><td>np</td><td>38 o)</td><td>2</td></tr> +<tr><td>FICOM</td><td>m</td><td>4</td><td>np</td><td>0</td><td>0</td></tr> +<tr><td>FTST</td><td> </td><td>1</td><td>np</td><td>0</td><td>0</td></tr> +<tr><td>FXAM</td><td> </td><td>17-21</td><td>np</td><td>4</td><td>0</td></tr> +<tr><td>FPREM</td><td> </td><td>16-64</td><td>np</td><td>2</td><td>2</td></tr> +<tr><td>FPREM1</td><td> </td><td>20-70</td><td>np</td><td>2</td><td>2</td></tr> +<tr><td>FRNDINT</td><td> </td><td>9-20</td><td>np</td><td>0</td><td>0</td></tr> +<tr><td>FSCALE</td><td> </td><td>20-32</td><td>np</td><td>5</td><td>0</td></tr> +<tr><td>FXTRACT</td><td> </td><td>12-66</td><td>np</td><td>0</td><td>0</td></tr> +<tr><td>FSQRT</td><td> </td><td>70</td><td>np</td><td>69 o)</td><td>2</td></tr> +<tr><td>FSIN FCOS</td><td> </td><td>65-100 r)</td><td>np</td><td>2</td><td>2</td></tr> +<tr><td>FSINCOS</td><td> </td><td>89-112 r)</td><td>np</td><td>2</td><td>2</td></tr> +<tr><td>F2XM1</td><td> </td><td>53-59 r)</td><td>np</td><td>2</td><td>2</td></tr> +<tr><td>FYL2X</td><td> </td><td>103 r)</td><td>np</td><td>2</td><td>2</td></tr> +<tr><td>FYL2XP1</td><td> </td><td>105 r)</td><td>np</td><td>2</td><td>2</td></tr> +<tr><td>FPTAN</td><td> </td><td>120-147 r)</td><td>np</td><td>36 o)</td><td>0</td></tr> +<tr><td>FPATAN</td><td> </td><td>112-134 r)</td><td>np</td><td>2</td><td>2</td></tr> +<tr><td>FNOP</td><td> </td><td>1</td><td>np</td><td>0</td><td>0</td></tr> +<tr><td>FXCH</td><td>r</td><td>1</td><td>np</td><td>0</td><td>0</td></tr> +<tr><td>FINCSTP FDECSTP</td><td> </td><td>2</td><td>np</td><td>0</td><td>0</td></tr> +<tr><td>FFREE</td><td>r</td><td>2</td><td>np</td><td>0</td><td>0</td></tr> +<tr><td>FNCLEX</td><td> </td><td>6-9</td><td>np</td><td>0</td><td>0</td></tr> +<tr><td>FNINIT</td><td> </td><td>12-22</td><td>np</td><td>0</td><td>0</td></tr> +<tr><td>FNSAVE</td><td>m</td><td>124-300</td><td>np</td><td>0</td><td>0</td></tr> +<tr><td>FRSTOR</td><td>m</td><td>70-95</td><td>np</td><td>0</td><td>0</td></tr> +<tr><td>WAIT</td><td> </td><td>1</td><td>np</td><td>0</td><td>0</td></tr> +</table> +<p> +<b>Notes:</b><br> +m) The value to store is needed one clock cycle in advance.<br> +n) 1 if the overlapping instruction is also an <kbd>FMUL</kbd>.<br> +o) Cannot overlap integer multiplication instructions.<br> +p) <kbd>FDIV</kbd> takes 19, 33, or 39 clock cycles for 24, 53, and 64 bit precision +respectively. <kbd>FIDIV</kbd> takes 3 clocks more. The precision is defined by bit +8-9 of the floating point control word.<br> +q) The first 4 clock cycles can overlap with preceding integer instructions. +See chapter <a href="#26_7">26.7</a>.<br> +r) clock counts are typical. Trivial cases may be faster, extreme cases may +be slower.<br> +s) may be up to 3 clocks more when output needed for <kbd>FST</kbd>, +<kbd>FCHS</kbd>, or <kbd>FABS</kbd>. +<p> +<h3><a name="28_3">28.3 MMX instructions (PMMX)</a></h3><p> +<p> +A list of MMX instruction timings is not needed because they all take one clock cycle, +except the MMX multiply instructions which take 3. MMX multiply instructions can be +overlapped and pipelined to yield a throughput of one multiplication per clock cycle. +<p> +The <kbd>EMMS</kbd> instruction takes only one clock cycle, but the first floating point instruction after +an <kbd>EMMS</kbd> takes approximately 58 clocks extra, and the first MMX instruction after a floating +point instruction takes approximately 38 clocks extra. There is no penalty for an MMX +instruction after <kbd>EMMS</kbd> on the PMMX (but a possible small penalty on the PII and PIII). +<p> +There is no penalty for using a memory operand in an MMX instruction because the MMX +arithmetic unit is one step later in the pipeline than the load unit. But the penalty comes +when you store data from an MMX register to memory or to a 32 bit register: The data have +to be ready one clock cycle in advance. This is analogous to the floating point store +instructions. +<p> +All MMX instructions except <kbd>EMMS</kbd> are pairable in either pipe. Pairing rules for MMX +instructions are described in chapter <a href="#10">10</a>. +<p> +<h2><a name="29">29</a>. List of instruction timings and micro-op breakdown for PPro, PII and PIII</h2><p> +<b>Explanations:</b><br> +<u>Operands:</u><br> +r = register, m = memory, i = immediate data, sr = segment register, +m32 = 32 bit memory operand, etc. +<p> +<u>Micro-ops:</u><br> +The number of micro-ops that the instruction generates for each execution port.<br> +p0: port 0: ALU, etc.<br> +p1: port 1: ALU, jumps<br> +p01: instructions that can go to either port 0 or 1, whichever is vacant first.<br> +p2: port 2: load data, etc.<br> +p3: port 3: address generation for store<br> +p4: port 4: store data +<p> +<u>Delay:</u><br> +This is the delay that the instruction generates in a dependency chain. +(This is not the same as the time spent in the execution unit. Values may be +inaccurate in situations where they cannot be measured exactly, especially with +memory operands). +The numbers are minimum values. Cache misses, misalignment, and exceptions +may increase the clock counts considerably. Floating point operands are +presumed to be normal numbers. Denormal numbers, NANs and infinity increase +the delays by 50-150 clocks, except in XMM move, shuffle and boolean instructions. +Floating point overflow, underflow, denormal or NAN results give a similar delay. +<p> +<u>Throughput:</u><br> +The maximum throughput for several instructions of the same kind. For example, a +throughput of 1/2 for <kbd>FMUL</kbd> means that a new <kbd>FMUL</kbd> instruction can start executing +every 2 clock cycles.<p> + +<table border="1" cellpadding="4" cellspacing="1"> +<tr> +<td colspan="10" class="a2"><a name="29_1">29.1 Integer instructions</a></td> +</tr> +<tr> +<td class="a3">Instruction</td> +<td class="a3">Operands</td> +<td colspan="6" class="a3">micro-ops</td> +<td class="a3">delay</td> +<td class="a3">throughput</td> +</tr> +<tr><td> </td><td> </td><td class="a3">p0</td><td class="a3">p1</td> +<td class="a3">p01</td><td class="a3">p2</td><td class="a3">p3</td><td class="a3">p4</td> +<td> </td><td> </td></tr> +<tr><td>NOP</td><td> </td><td> </td><td> </td><td>1</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>MOV</td><td>r,r/i</td><td> </td><td> </td><td>1</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>MOV</td><td>r,m</td><td> </td><td> </td><td> </td> +<td>1</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>MOV</td><td>m,r/i</td><td> </td><td> </td><td> </td> +<td> </td><td>1</td><td>1</td><td> </td><td> </td></tr> +<tr><td>MOV</td><td>r,sr</td><td> </td><td> </td><td>1</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>MOV</td><td>m,sr</td><td> </td><td> </td><td>1</td> +<td> </td><td>1</td><td>1</td><td> </td><td> </td></tr> +<tr><td>MOV</td><td>sr,r</td><td colspan="3">8</td> +<td> </td><td> </td><td> </td><td>5</td><td> </td></tr> +<tr><td>MOV</td><td>sr,m</td><td colspan="3">7</td> +<td>1</td><td> </td><td> </td><td>8</td><td> </td></tr> +<tr><td>MOVSX MOVZX</td><td>r,r</td><td> </td><td> </td><td>1</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>MOVSX MOVZX</td><td>r,m</td><td> </td><td> </td><td> </td> +<td>1</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>CMOVcc</td><td>r,r</td><td>1</td><td> </td><td>1</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>CMOVcc</td><td>r,m</td><td>1</td><td> </td><td>1</td> +<td>1</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>XCHG</td><td>r,r</td><td> </td><td> </td><td>3</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>XCHG</td><td>r,m</td><td> </td><td> </td><td>4</td> +<td>1</td><td>1</td><td>1</td><td>high b)</td><td> </td></tr> +<tr><td>XLAT</td><td> </td><td> </td><td> </td><td>1</td> +<td>1</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>PUSH</td><td>r/i</td><td> </td><td> </td><td>1</td> +<td> </td><td>1</td><td>1</td><td> </td><td> </td></tr> +<tr><td>POP</td><td>r</td><td> </td><td> </td><td>1</td> +<td>1</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>POP</td><td>(E)SP</td><td> </td><td> </td><td>2</td> +<td>1</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>PUSH</td><td>m</td><td> </td><td> </td><td>1</td> +<td>1</td><td>1</td><td>1</td><td> </td><td> </td></tr> +<tr><td>POP</td><td>m</td><td> </td><td> </td><td>5</td> +<td>1</td><td>1</td><td>1</td><td> </td><td> </td></tr> +<tr><td>PUSH</td><td>sr</td><td> </td><td> </td><td>2</td> +<td> </td><td>1</td><td>1</td><td> </td><td> </td></tr> +<tr><td>POP</td><td>sr</td><td> </td><td> </td><td>8</td> +<td>1</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>PUSHF(D)</td><td> </td><td>3</td><td> </td><td>11</td> +<td> </td><td>1</td><td>1</td><td> </td><td> </td></tr> +<tr><td>POPF(D)</td><td> </td><td>10</td><td> </td><td>6</td> +<td>1</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>PUSHA(D)</td><td> </td><td> </td><td> </td><td>2</td> +<td> </td><td>8</td><td>8</td><td> </td><td> </td></tr> +<tr><td>POPA(D)</td><td> </td><td> </td><td> </td><td>2</td> +<td>8</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>LAHF SAHF</td><td> </td><td> </td><td> </td><td>1</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>LEA</td><td>r,m</td><td>1</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td>1 c)</td><td> </td></tr> +<tr><td>LDS LES LFS LGS LSS</td><td>m</td><td> </td><td> </td><td>8</td> +<td>3</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>ADD SUB AND OR XOR</td><td>r,r/i</td><td> </td><td> </td><td>1</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>ADD SUB AND OR XOR</td><td>r,m</td><td> </td><td> </td><td>1</td> +<td>1</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>ADD SUB AND OR XOR</td><td>m,r/i</td><td> </td><td> </td><td>1</td> +<td>1</td><td>1</td><td>1</td><td> </td><td> </td></tr> +<tr><td>ADC SBB</td><td>r,r/i</td><td> </td><td> </td><td>2</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>ADC SBB</td><td>r,m</td><td> </td><td> </td><td>2</td> +<td>1</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>ADC SBB</td><td>m,r/i</td><td> </td><td> </td><td>3</td> +<td>1</td><td>1</td><td>1</td><td> </td><td> </td></tr> +<tr><td>CMP TEST</td><td>r,r/i</td><td> </td><td> </td><td>1</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>CMP TEST</td><td>m,r/i</td><td> </td><td> </td><td>1</td> +<td>1</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>INC DEC NEG NOT</td><td>r</td><td> </td><td> </td><td>1</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>INC DEC NEG NOT</td><td>m</td><td> </td><td> </td><td>1</td> +<td>1</td><td>1</td><td>1</td><td> </td><td> </td></tr> +<tr><td>AAS DAA DAS</td><td> </td><td> </td><td>1</td><td> </td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>AAD</td><td> </td><td>1</td><td> </td><td>2</td> +<td> </td><td> </td><td> </td><td>4</td><td> </td></tr> +<tr><td>AAM</td><td> </td><td>1</td><td>1</td><td>2</td> +<td> </td><td> </td><td> </td><td>15</td><td> </td></tr> +<tr><td>MUL IMUL</td><td>r,(r),(i)</td><td>1</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td>4</td><td>1/1</td></tr> +<tr><td>MUL IMUL</td><td>(r),m</td><td>1</td><td> </td><td> </td> +<td>1</td><td> </td><td> </td><td>4</td><td>1/1</td></tr> +<tr><td>DIV IDIV</td><td>r8</td><td>2</td><td> </td><td>1</td> +<td> </td><td> </td><td> </td><td>19</td><td>1/12</td></tr> +<tr><td>DIV IDIV</td><td>r16</td><td>3</td><td> </td><td>1</td> +<td> </td><td> </td><td> </td><td>23</td><td>1/21</td></tr> +<tr><td>DIV IDIV</td><td>r32</td><td>3</td><td> </td><td>1</td> +<td> </td><td> </td><td> </td><td>39</td><td>1/37</td></tr> +<tr><td>DIV IDIV</td><td>m8</td><td>2</td><td> </td><td>1</td> +<td>1</td><td> </td><td> </td><td>19</td><td>1/12</td></tr> +<tr><td>DIV IDIV</td><td>m16</td><td>2</td><td> </td><td>1</td> +<td>1</td><td> </td><td> </td><td>23</td><td>1/21</td></tr> +<tr><td>DIV IDIV</td><td>m32</td><td>2</td><td> </td><td>1</td> +<td>1</td><td> </td><td> </td><td>39</td><td>1/37</td></tr> +<tr><td>CBW CWDE</td><td> </td><td> </td><td> </td><td>1</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>CWD CDQ</td><td> </td><td>1</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>SHR SHL SAR ROR ROL</td><td>r,i/CL</td><td>1</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>SHR SHL SAR ROR ROL</td><td>m,i/CL</td><td>1</td><td> </td><td> </td> +<td>1</td><td>1</td><td>1</td><td> </td><td> </td></tr> +<tr><td>RCR RCL</td><td>r,1</td><td>1</td><td> </td><td>1</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>RCR RCL</td><td>r8,i/CL</td><td>4</td><td> </td><td>4</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>RCR RCL</td><td>r16/32,i/CL</td><td>3</td><td> </td><td>3</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>RCR RCL</td><td>m,1</td><td>1</td><td> </td><td>2</td> +<td>1</td><td>1</td><td>1</td><td> </td><td> </td></tr> +<tr><td>RCR RCL</td><td>m8,i/CL</td><td>4</td><td> </td><td>3</td> +<td>1</td><td>1</td><td>1</td><td> </td><td> </td></tr> +<tr><td>RCR RCL</td><td>m16/32,i/CL</td><td>4</td><td> </td><td>2</td> +<td>1</td><td>1</td><td>1</td><td> </td><td> </td></tr> +<tr><td>SHLD SHRD</td><td>r,r,i/CL</td><td>2</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>SHLD SHRD</td><td>m,r,i/CL</td><td>2</td><td> </td><td>1</td> +<td>1</td><td>1</td><td>1</td><td> </td><td> </td></tr> +<tr><td>BT</td><td>r,r/i</td><td> </td><td> </td><td>1</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>BT</td><td>m,r/i</td><td>1</td><td> </td><td>6</td> +<td>1</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>BTR BTS BTC</td><td>r,r/i</td><td> </td><td> </td><td>1</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>BTR BTS BTC</td><td>m,r/i</td><td>1</td><td> </td><td>6</td> +<td>1</td><td>1</td><td>1</td><td> </td><td> </td></tr> +<tr><td>BSF BSR</td><td>r,r</td><td> </td><td>1</td><td>1</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>BSF BSR</td><td>r,m</td><td> </td><td>1</td><td>1</td> +<td>1</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>SETcc</td><td>r</td><td> </td><td> </td><td>1</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>SETcc</td><td>m</td><td> </td><td> </td><td>1</td> +<td> </td><td>1</td><td>1</td><td> </td><td> </td></tr> +<tr><td>JMP</td><td>short/near</td><td> </td><td>1</td><td> </td> +<td> </td><td> </td><td> </td><td> </td><td>1/2</td></tr> +<tr><td>JMP</td><td>far</td><td colspan="3">21</td> +<td>1</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>JMP</td><td>r</td><td> </td><td>1</td><td> </td> +<td> </td><td> </td><td> </td><td> </td><td>1/2</td></tr> +<tr><td>JMP</td><td>m(near)</td><td> </td><td>1</td><td> </td> +<td>1</td><td> </td><td> </td><td> </td><td>1/2</td></tr> +<tr><td>JMP</td><td>m(far)</td><td colspan="3">21</td> +<td>2</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>conditional jump</td><td>short/near</td><td> </td><td>1</td><td> </td> +<td> </td><td> </td><td> </td><td> </td><td>1/2</td></tr> +<tr><td>CALL</td><td>near</td><td> </td><td>1</td><td>1</td> +<td> </td><td>1</td><td>1</td><td> </td><td>1/2</td></tr> +<tr><td>CALL</td><td>far</td><td colspan="3">28</td> +<td>1</td><td>2</td><td>2</td><td> </td><td> </td></tr> +<tr><td>CALL</td><td>r</td><td> </td><td>1</td><td>2</td> +<td> </td><td>1</td><td>1</td><td> </td><td>1/2</td></tr> +<tr><td>CALL</td><td>m(near)</td><td> </td><td>1</td><td>4</td> +<td>1</td><td>1</td><td>1</td><td> </td><td>1/2</td></tr> +<tr><td>CALL</td><td>m (far)</td><td colspan="3">28</td> +<td>2</td><td>2</td><td>2</td><td> </td><td> </td></tr> +<tr><td>RETN</td><td> </td><td> </td><td>1</td><td>2</td> +<td>1</td><td> </td><td> </td><td> </td><td>1/2</td></tr> +<tr><td>RETN</td><td>i</td><td> </td><td>1</td><td>3</td> +<td>1</td><td> </td><td> </td><td> </td><td>1/2</td></tr> +<tr><td>RETF</td><td> </td><td colspan="3">23</td> +<td>3</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>RETF</td><td>i</td><td colspan="3">23</td><td>3</td> +<td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>J(E)CXZ</td><td>short</td><td> </td><td>1</td><td>1</td><td> </td> +<td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>LOOP</td><td>short</td><td>2</td><td>1</td><td>8</td><td> </td> +<td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>LOOP(N)E</td><td>short</td><td>2</td><td>1</td><td>8</td><td> </td> +<td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>ENTER</td><td>i,0</td><td> </td><td> </td><td>12</td><td> </td> +<td>1</td><td>1</td><td> </td><td> </td></tr> +<tr><td>ENTER</td><td>a,b</td><td colspan="3">ca. 18+4b</td><td> </td> +<td>b-1</td><td>2b</td><td> </td><td> </td></tr> +<tr><td>LEAVE</td><td> </td><td> </td><td> </td><td>2</td> +<td>1</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>BOUND</td><td>r,m</td><td>7</td><td> </td><td>6</td> +<td>2</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>CLC STC CMC</td><td> </td><td> </td><td> </td><td>1</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>CLD STD</td><td> </td><td> </td><td> </td><td>4</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>CLI</td><td> </td><td colspan="3">9</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>STI</td><td> </td><td colspan="3">17</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>INTO</td><td> </td><td> </td><td> </td><td>5</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>LODS</td><td> </td><td> </td><td> </td><td> </td> +<td>2</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>REP LODS</td><td> </td><td> </td><td> </td><td colspan="2">10+6n</td> +<td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>STOS</td><td> </td><td> </td><td> </td><td> </td> +<td>1</td><td>1</td><td>1</td><td> </td><td> </td></tr> +<tr><td>REP STOS</td><td> </td><td> </td><td> </td> +<td colspan="4">ca. 5n a)</td><td> </td><td> </td></tr> +<tr><td>MOVS</td><td> </td><td> </td><td> </td><td>1</td><td>3</td> +<td>1</td><td>1</td><td> </td><td> </td></tr> +<tr><td>REP MOVS</td><td> </td><td> </td><td> </td><td colspan="4">ca. 6n a)</td> +<td> </td><td> </td></tr> +<tr><td>SCAS</td><td> </td><td> </td><td> </td><td>1</td> +<td>2</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>REP(N)E SCAS</td><td> </td><td> </td><td> </td><td colspan="2">12+7n</td> +<td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>CMPS</td><td> </td><td> </td><td> </td><td>4</td> +<td>2</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>REP(N)E CMPS</td><td> </td><td> </td><td> </td> +<td colspan="2">12+9n</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>BSWAP</td><td> </td><td>1</td><td> </td><td>1</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>CPUID</td><td> </td><td colspan="3">23-48</td><td> </td><td> </td> +<td> </td><td> </td><td> </td></tr> +<tr><td>RDTSC</td><td> </td><td colspan="3">31</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>IN</td><td> </td><td colspan="3">18</td> +<td> </td><td> </td><td> </td><td>>300</td><td> </td></tr> +<tr><td>OUT</td><td> </td><td colspan="3">18</td> +<td> </td><td> </td><td> </td><td>>300</td><td> </td></tr> +<tr><td>PREFETCHNTA d)</td><td>m</td><td> </td> +<td> </td><td> </td><td> 1</td><td> </td><td> + </td><td> </td><td> </td></tr> +<tr><td>PREFETCHT0 d)</td><td>m</td><td> </td><td> </td><td> </td><td> 1</td><td> </td> +<td> </td><td> </td><td> </td></tr> +<tr><td>PREFETCHT1 d)</td><td>m</td><td> </td><td> </td> +<td> </td><td> 1</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>PREFETCHT2 d)</td><td>m</td><td> </td><td> </td><td> </td><td> 1</td><td> </td><td> + </td><td> </td><td> </td></tr> +<tr><td>SFENCE d)</td><td> </td><td> </td><td> </td><td> </td><td> </td><td> 1</td><td> + 1</td><td> </td><td>1/6</td></tr> +</TABLE><p> +<b>Notes:</b><br> +a) faster under certain conditions: see chapter <a href="#26_3">26.3</a>.<br> +b) see chapter <a href="#26_1">26.1</a><br> +c) 3 if constant without base or index register<br> +d) PIII only. +<p> + +<table border="1" cellpadding="4" cellspacing="1"> +<tr> +<td colspan="10" class="a2"><a name="29_2">29.2 Floating point instructions</a></td> +</tr> +<tr> +<td class="a3">Instruction</td> +<td class="a3">Operands</td> +<td colspan="6" align="center" class="a3">micro-ops</td> +<td class="a3">delay</td> +<td class="a3">throughput</td> +</tr> +<tr> +<td> </td> +<td> </td> +<td class="a4">p0</td> +<td class="a4">p1</td> +<td class="a4">p01</td> +<td class="a4">p2</td> +<td class="a4">p3</td> +<td class="a4">p4</td> +<td> </td> +<td> </td> +</tr> +<tr><td>FLD</td><td>r</td><td>1</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>FLD</td><td>m32/64</td><td> </td><td> </td><td> </td> +<td>1</td><td> </td><td> </td><td>1</td><td> </td></tr> +<tr><td>FLD</td><td>m80</td><td>2</td><td> </td><td> </td> +<td>2</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>FBLD</td><td>m80</td><td>38</td><td> </td><td> </td> +<td>2</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>FST(P)</td><td>r</td><td>1</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>FST(P)</td><td>m32/m64</td><td> </td><td> </td><td> </td> +<td> </td><td>1</td><td>1</td><td>1</td><td> </td></tr> +<tr><td>FSTP</td><td>m80</td><td>2</td><td> </td><td> </td> +<td> </td><td>2</td><td>2</td><td> </td><td> </td></tr> +<tr><td>FBSTP</td><td>m80</td><td>165</td><td> </td><td> </td> +<td> </td><td>2</td><td>2</td><td> </td><td> </td></tr> +<tr><td>FXCH</td><td>r</td><td> </td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td>0</td><td>3/1 f)</td></tr> +<tr><td>FILD</td><td>m</td><td>3</td><td> </td><td> </td> +<td>1</td><td> </td><td> </td><td>5</td><td> </td></tr> +<tr><td>FIST(P)</td><td>m</td><td>2</td><td> </td><td> </td> +<td> </td><td>1</td><td>1</td><td>5</td><td> </td></tr> +<tr><td>FLDZ</td><td> </td><td>1</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td colspan="2">FLD1 FLDPI FLDL2E etc.</td><td>2</td><td> </td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>FCMOVcc</td><td>r</td><td>2</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td>2</td><td> </td></tr> +<tr><td>FNSTSW</td><td>AX</td><td>3</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td>7</td><td> </td></tr> +<tr><td>FNSTSW</td><td>m16</td><td>1</td><td> </td><td> </td> +<td> </td><td>1</td><td>1</td><td> </td><td> </td></tr> +<tr><td>FLDCW</td><td>m16</td><td>1</td><td> </td><td>1</td> +<td>1</td><td> </td><td> </td><td>10</td><td> </td></tr> +<tr><td>FNSTCW</td><td>m16</td><td>1</td><td> </td><td> </td> +<td> </td><td>1</td><td>1</td><td> </td><td> </td></tr> +<tr><td>FADD(P) FSUB(R)(P)</td><td>r</td><td>1</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td>3</td><td>1/1</td></tr> +<tr><td>FADD(P) FSUB(R)(P)</td><td>m</td><td>1</td><td> </td><td> </td> +<td>1</td><td> </td><td> </td><td>3-4</td><td>1/1</td></tr> +<tr><td>FMUL(P)</td><td>r</td><td>1</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td>5</td><td>1/2 g)</td></tr> +<tr><td>FMUL(P)</td><td>m</td><td>1</td><td> </td><td> </td> +<td>1</td><td> </td><td> </td><td>5-6</td><td>1/2 g)</td></tr> +<tr><td>FDIV(R)(P)</td><td>r</td><td>1</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td>38 h)</td><td>1/37</td></tr> +<tr><td>FDIV(R)(P)</td><td>m</td><td>1</td><td> </td><td> </td> +<td>1</td><td> </td><td> </td><td>38 h)</td><td>1/37</td></tr> +<tr><td>FABS</td><td> </td><td>1</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>FCHS</td><td> </td><td>3</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td>2</td><td> </td></tr> +<tr><td>FCOM(P) FUCOM</td><td>r</td><td>1</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td>1</td><td> </td></tr> +<tr><td>FCOM(P) FUCOM</td><td>m</td><td>1</td><td> </td><td> </td> +<td>1</td><td> </td><td> </td><td>1</td><td> </td></tr> +<tr><td>FCOMPP FUCOMPP</td><td> </td><td>1</td><td> </td><td>1</td> +<td> </td><td> </td><td> </td><td>1</td><td> </td></tr> +<tr><td>FCOMI(P) FUCOMI(P)</td><td>r</td><td>1</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td>1</td><td> </td></tr> +<tr><td>FCOMI(P) FUCOMI(P)</td><td>m</td><td>1</td><td> </td><td> </td> +<td>1</td><td> </td><td> </td><td>1</td><td> </td></tr> +<tr><td>FIADD FISUB(R)</td><td>m</td><td>6</td><td> </td><td> </td> +<td>1</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>FIMUL</td><td>m</td><td>6</td><td> </td><td> </td> +<td>1</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>FIDIV(R)</td><td>m</td><td>6</td><td> </td><td> </td> +<td>1</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>FICOM(P)</td><td>m</td><td>6</td><td> </td><td> </td> +<td>1</td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>FTST</td><td> </td><td>1</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td>1</td><td> </td></tr> +<tr><td>FXAM</td><td> </td><td>1</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td>2</td><td> </td></tr> +<tr><td>FPREM</td><td> </td><td>23</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>FPREM1</td><td> </td><td>33</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>FRNDINT</td><td> </td><td>30</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>FSCALE</td><td> </td><td>56</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>FXTRACT</td><td> </td><td>15</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>FSQRT</td><td> </td><td>1</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td>69</td><td>e,i)</td></tr> +<tr><td>FSIN FCOS</td><td> </td><td colspan="3">17-97</td><td> </td><td> </td> +<td> </td><td>27-103</td><td>e)</td></tr> +<tr><td>FSINCOS</td><td> </td><td colspan="3">18-110</td><td> </td><td> </td> +<td> </td><td>29-130</td><td>e)</td></tr> +<tr><td>F2XM1</td><td> </td><td colspan="3">17-48</td><td> </td><td> </td> +<td> </td><td>66</td><td>e)</td></tr> +<tr><td>FYL2X</td><td> </td><td colspan="3">36-54</td><td> </td> +<td> </td><td> </td><td>103</td><td>e)</td></tr> +<tr><td>FYL2XP1</td><td> </td><td colspan="3">31-53</td><td> </td> +<td> </td><td> </td><td>98-107</td><td>e)</td></tr> +<tr><td>FPTAN</td><td> </td><td colspan="3">21-102</td><td> </td> +<td> </td><td> </td><td>13-143</td><td>e)</td></tr> +<tr><td>FPATAN</td><td> </td><td colspan="3">25-86</td><td> </td> +<td> </td><td> </td><td>44-143</td><td>e)</td></tr> +<tr><td>FNOP</td><td> </td><td>1</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>FINCSTP FDECSTP</td><td> </td><td>1</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>FFREE</td><td>r</td><td>1</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>FFREEP</td><td>r</td><td>2</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>FNCLEX</td><td> </td><td> </td><td> </td><td>3</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>FNINIT</td><td> </td><td colspan="3">13</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>FNSAVE</td><td> </td><td colspan="3">141</td><td> </td> +<td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>FRSTOR</td><td> </td><td colspan="3">72</td><td> </td> +<td> </td><td> </td><td> </td><td> </td></tr> +<tr><td>WAIT</td><td> </td><td> </td><td> </td><td>2</td> +<td> </td><td> </td><td> </td><td> </td><td> </td></tr> +</table> + +<p><b>Notes:</b><br> +e) not pipelined<br> +f) <kbd>FXCH</kbd> generates 1 micro-op that is resolved by register renaming without + going to any port.<br> +g) <kbd>FMUL</kbd> uses the same circuitry as integer multiplication. Therefore, the + combined throughput of mixed floating point and integer multiplications is + 1 <kbd>FMUL</kbd> + 1 <kbd>IMUL</kbd> per 3 clock cycles.<br> +h) <kbd>FDIV</kbd> delay depends on precision specified in control word: + precision 64 bits gives delay 38, precision 53 bits gives delay 32, + precision 24 bits gives delay 18. Division by a power of 2 takes 9 clocks. + Throughput is 1/(delay-1).<br> +i) faster for lower precision. +<p> + +<table border=1 cellpadding=4 cellspacing=1><tr> +<td colspan="10" class="a2"><a name="29_3">29.3 MMX instructions (PII and PIII)</a></td></tr> +<tr><td class="a3">Instruction</td> +<td class="a3">Operands</td> +<td colspan="6" align="center" class="a3">micro-ops</td> +<td class="a3">delay</td> +<td class="a3">throughput</td></tr> +<tr><td> </td><td> </td> +<td class="a4">p0</td><td class="a4">p1</td><td class="a4">p01</td> +<td class="a4">p2</td><td class="a4">p3</td><td class="a4">p4</td> +<td> </td><td> </td></tr> +<tr><td>MOVD MOVQ</td><td>r,r</td> +<td> </td><td> </td><td>1</td><td> </td><td> +</td><td> </td><td> </td><td>2/1</td></tr> +<tr><td>MOVD MOVQ</td><td>r64,m32/64</td> +<td> </td><td> </td><td> </td><td>1</td><td> +</td><td> </td><td> </td><td>1/1</td></tr> +<tr><td>MOVD MOVQ</td><td>m32/64,r64</td><td> +</td><td> </td><td> </td><td> </td><td>1</td><td> +1</td><td> </td><td>1/1</td></tr> +<tr><td>PADD PSUB PCMP</td><td>r64,r64</td> +<td> </td><td> </td><td>1</td><td> </td><td> +</td><td> </td><td> </td><td>1/1</td></tr> +<tr><td>PADD PSUB PCMP</td><td>r64,m64</td> +<td> </td><td> </td><td>1</td><td>1</td><td> +</td><td> </td><td> </td><td>1/1</td></tr> +<tr><td>PMUL PMADD</td><td>r64,r64</td> +<td>1</td><td> </td><td> </td><td> </td><td> +</td><td> </td><td>3</td><td>1/1</td></tr> +<tr><td>PMUL PMADD</td><td>r64,m64</td> +<td>1</td><td> </td><td> </td><td>1</td><td> +</td><td> </td><td>3</td><td>1/1</td></tr> +<tr><td>PAND PANDN POR <br>PXOR</td> +<td>r64,r64</td><td> </td><td> </td><td>1</td><td> +</td><td> </td><td> </td><td> </td><td>2/1</td></tr> +<tr><td>PAND PANDN POR<br>PXOR</td><td>r64,m64</td> +<td> </td><td> </td><td>1</td><td>1</td><td> +</td><td> </td><td> </td><td>1/1</td></tr> +<tr><td>PSRA PSRL PSLL</td><td>r64,r64/i</td> +<td> </td><td>1</td><td> </td><td> </td><td> +</td><td> </td><td> </td><td>1/1</td></tr> +<tr><td>PSRA PSRL PSLL</td><td>r64,m64</td> +<td> </td><td>1</td><td> </td><td>1</td><td> +</td><td> </td><td> </td><td>1/1</td></tr> +<tr><td>PACK PUNPCK</td><td>r64,r64</td> +<td> </td><td>1</td><td> </td><td> </td><td> +</td><td> </td><td> </td><td>1/1</td></tr> +<tr><td>PACK PUNPCK</td><td>r64,m64</td> +<td> </td><td>1</td><td> </td><td>1</td><td> +</td><td> </td><td> </td><td>1/1</td></tr> +<tr><td>EMMS</td><td> </td><td colspan="3">11</td><td> </td><td> +</td><td> </td><td>6 k)</td><td> </td></tr> +<tr><td>MASKMOVQ d)</td><td>r64,r64</td><td> </td><td> </td><td> 1</td><td> </td> +<td> 1</td><td> 1</td><td>2-8</td><td>1/30-1/2</td></tr> +<tr><td>PMOVMSKB d)</td><td>r32,r64</td><td> </td><td> 1</td><td> </td><td> </td> +<td> </td><td> </td><td> 1</td><td> 1/1</td></tr> +<tr><td>MOVNTQ d)</td><td>m64,r64</td><td> </td><td> </td><td> </td><td> </td> +<td> 1</td><td> 1</td><td> </td><td>1/30-1/1</td></tr> +<tr><td>PSHUFW d)</td><td>r64,r64,i</td><td> </td><td> 1</td><td> </td><td> </td> +<td> </td><td> </td><td> 1</td><td> 1/1</td></tr> +<tr><td>PSHUFW d)</td><td>r64,m64,i</td><td> </td><td> 1</td><td> </td><td> 1</td> +<td> </td><td> </td><td> 2</td><td> 1/1</td></tr> +<tr><td>PEXTRW d)</td><td>r32,r64,i</td><td> </td><td> 1</td><td> 1</td><td> </td> +<td> </td><td> </td><td> 2</td><td> 1/1</td></tr> +<tr><td>PISRW d)</td><td>r64,r32,i</td><td> </td><td> 1</td><td> </td><td> </td> +<td> </td><td> </td><td> 1</td><td> 1/1</td></tr> +<tr><td>PISRW d)</td><td>r64,m16,i</td><td> </td><td> 1</td><td> </td><td> 1</td> +<td> </td><td> </td><td> 2</td><td> 1/1</td></tr> +<tr><td>PAVGB PAVGW d)</td><td>r64,r64</td><td> </td><td> </td><td> 1</td><td> </td> +<td> </td><td> </td><td> 1</td><td> 2/1</td></tr> +<tr><td>PAVGB PAVGW d)</td><td>r64,m64</td><td> </td><td> </td><td> 1</td><td> 1</td> +<td> </td><td> </td><td> 2</td><td> 1/1</td></tr> +<tr><td>PMINUB PMAXUB PMINSW PMAXSW d)</td><td>r64,r64</td><td> </td><td> </td><td> 1</td><td> </td> +<td> </td><td> </td><td> 1</td><td> 2/1</td></tr> +<tr><td>PMINUB PMAXUB PMINSW PMAXSW d)</td><td>r64,m64</td><td> </td><td> </td><td> 1</td><td> 1</td> +<td> </td><td> </td><td> 2</td><td> 1/1</td></tr> +<tr><td>PMULHUW d)</td><td>r64,r64</td><td> 1</td><td> </td><td> </td><td> </td> +<td> </td><td> </td><td> 3</td><td> 1/1</td></tr> +<tr><td>PMULHUW d)</td><td>r64,m64</td><td> 1</td><td> </td><td> </td><td> 1</td> +<td> </td><td> </td><td> 4</td><td> 1/1</td></tr> +<tr><td>PSADBW d)</td><td>r64,r64</td><td> 2</td><td> </td><td> 1</td><td> </td> +<td> </td><td> </td><td> 5</td><td> 1/2</td></tr> +<tr><td>PSADBW d)</td><td>r64,m64</td><td> 2</td><td> </td><td> 1</td><td> 1</td> +<td> </td><td> </td><td> 6</td><td> 1/2</td></tr> +</table><p> +<b>Notes:</b><br> +d) PIII only.<br> +k) you may hide the delay by inserting other instructions between <kbd>EMMS</kbd> and any +subsequent floating point instruction. +<p> +<table border="1" callpadding="4" cellspacing="1"><tr> +<td colspan="10" class="a2"><a name="29_4">29.4 XMM instructions (PIII)</a></td></tr> +<tr><td class="a3">Instruction</td> +<td class="a3">Operands</td> +<td colspan="6" align="center" class="a3">micro-ops</td> +<td class="a3">delay</td> +<td class="a3">throughput</td></tr> +<tr><td> </td><td> </td> +<td class="a4"> p0 </td><td class="a4"> p1 </td> +<td class="a4"> p01 </td><td class="a4"> p2 </td> +<td class="a4"> p3 </td><td class="a4"> p4 </td> +<td> </td><td> </td></tr> +<tr><td>MOVAPS</td><td>r128,r128</td><td> </td><td> </td><td>2</td><td> </td><td> +</td><td> </td><td>1</td><td>1/1</td></tr> +<tr><td>MOVAPS</td><td>r128,m128</td> +<td> </td><td> </td><td> </td><td>2</td><td> +</td><td> </td><td>2</td><td>1/2</td></tr> +<tr><td>MOVAPS</td><td>m128,r128</td><td> </td><td> </td><td> </td><td> </td> +<td>2</td><td>2</td><td>3</td><td>1/2</td></tr> +<tr><td>MOVUPS</td><td>r128,m128</td><td> </td><td> </td><td> </td><td>4</td> +<td> </td><td> </td><td>2</td><td>1/4</td></tr> +<tr><td>MOVUPS</td><td>m128,r128</td><td> </td><td>1</td><td> </td><td> </td><td>4</td> +<td>4</td><td>3</td><td>1/4</td></tr> +<tr><td>MOVSS</td><td>r128,r128</td><td> </td><td> </td><td>1</td><td> </td> +<td> </td><td> </td><td>1</td><td>1/1</td></tr> +<tr><td>MOVSS</td><td>r128,m32</td><td> </td><td> </td><td>1</td><td>1</td> +<td> </td><td> </td><td>1</td><td>1/1</td></tr> +<tr><td>MOVSS</td><td>m32,r128</td><td> </td><td> </td><td> </td><td> </td><td>1</td> +<td>1</td><td>1</td><td>1/1</td></tr> +<tr><td>MOVHPS MOVLPS</td><td>r128,m64</td><td> </td><td> </td><td>1</td><td> </td> +<td> </td><td> </td><td>1</td><td>1/1</td></tr> +<tr><td>MOVHPS MOVLPS</td><td>m64,r128</td><td> </td><td> </td><td> </td><td> </td> +<td>1</td><td>1</td><td>1</td><td>1/1</td></tr> +<tr><td>MOVLHPS MOVHLPS</td><td>r128,r128</td><td> </td><td> </td><td>1</td><td> </td> +<td> </td><td> </td><td>1</td><td>1/1</td></tr> +<tr><td>MOVMSKPS</td><td>r32,r128</td><td>1</td><td> </td><td> </td><td> </td> +<td> </td><td> </td><td>1</td><td>1/1</td></tr> +<tr><td>MOVNTPS</td><td>m128,r128</td><td> </td><td> </td><td> </td> +<td> </td><td> 2</td><td> 2</td><td> </td><td>1/15-1/2</td></tr> +<tr><td>CVTPI2PS</td><td>r128,r64</td><td> </td><td>2</td><td> </td><td> </td> +<td> </td><td> </td><td>3</td><td>1/1</td></tr> +<tr><td>CVTPI2PS</td><td>r128,m64</td><td> </td><td>2</td><td> </td><td>1</td> +<td> </td><td> </td><td>4</td><td>1/2</td></tr> +<tr><td>CVTPS2PI CVTTPS2PI</td><td>r64,r128</td><td> </td><td>2</td><td> </td><td> </td> +<td> </td><td> </td><td>3</td><td>1/1</td></tr> +<tr><td>CVTPS2PI</td><td>r64,m128</td><td> </td><td>1</td><td> </td><td>2</td> +<td> </td><td> </td><td>4</td><td>1/1</td></tr> +<tr><td>CVTSI2SS</td><td>r128,r32</td><td> </td><td>2</td><td> </td><td>1</td> +<td> </td><td> </td><td>4</td><td>1/2</td></tr> +<tr><td>CVTSI2SS</td><td>r128,m32</td><td> </td><td>2</td><td> </td><td>2</td> +<td> </td><td> </td><td>5</td><td>1/2</td></tr> +<tr><td>CVTSS2SI CVTTSS2SI</td><td>r32,r128</td><td> </td><td>1</td><td> </td> +<td>1</td><td> </td><td> </td><td>3</td><td>1/1</td></tr> +<tr><td>CVTSS2SI</td><td>r32,m128</td><td> </td><td>1</td><td> </td> +<td>2</td><td> </td><td> </td><td>4</td><td>1/2</td></tr> +<tr><td>ADDPS SUBPS</td><td>r128,r128</td><td> </td><td>2</td><td> </td><td> </td> +<td> </td><td> </td><td>3</td><td>1/2</td></tr> +<tr><td>ADDPS SUBPS</td><td>r128,m128</td><td> </td><td>2</td><td> </td><td>2</td> +<td> </td><td> </td><td>3</td><td>1/2</td></tr> +<tr><td>ADDSS SUBSS</td><td>r128,r128</td><td> </td><td>1</td><td> </td><td> </td> +<td> </td><td> </td><td>3</td><td>1/1</td></tr> +<tr><td>ADDSS SUBSS</td><td>r128,m32</td><td> </td><td>1</td><td> </td><td>1</td> +<td> </td><td> </td><td>3</td><td>1/1</td></tr> +<tr><td>MULPS</td><td>r128,r128</td><td>2</td><td> </td><td> </td><td> </td> +<td> </td><td> </td><td>4</td><td>1/2</td></tr> +<tr><td>MULPS</td><td>r128,m128</td><td>2</td><td> </td><td> </td><td>2</td> +<td> </td><td> </td><td>4</td><td>1/2</td></tr> +<tr><td>MULSS</td><td>r128,r128</td><td>1</td><td> </td><td> </td><td> </td> +<td> </td><td> </td><td>4</td><td>1/1</td></tr> +<tr><td>MULSS</td><td>r128,m32</td><td>1</td><td> </td><td> </td><td>1</td> +<td> </td><td> </td><td>4</td><td>1/1</td></tr> +<tr><td>DIVPS</td><td>r128,r128</td><td>2</td><td> </td><td> </td><td> </td> +<td> </td><td> </td><td>48</td><td>1/34</td></tr> +<tr><td>DIVPS</td><td>r128,m128</td><td>2</td><td> </td><td> </td><td>2</td> +<td> </td><td> </td><td>48</td><td>1/34</td></tr> +<tr><td>DIVSS</td><td>r128,r128</td><td>1</td><td> </td><td> </td><td> </td> +<td> </td><td> </td><td>18</td><td>1/17</td></tr> +<tr><td>DIVSS</td><td>r128,m32</td><td>1</td><td> </td><td> </td><td>1</td> +<td> </td><td> </td><td>18</td><td>1/17</td></tr> +<tr><td>ANDPS ANDNPS ORPS XORPS</td><td>r128,r128</td><td> </td><td>2</td><td> </td> +<td> </td><td> </td><td> </td><td>2</td><td>1/2</td></tr> +<tr><td>ANDPS ANDNPS ORPS XORPS</td><td>r128,m128</td><td> </td><td>2</td><td> </td> +<td>2</td><td> </td><td> </td><td>2</td><td>1/2</td></tr> +<tr><td>MAXPS MINPS</td><td>r128,r128</td><td> </td><td>2</td><td> </td><td> </td> +<td> </td><td> </td><td>3</td><td>1/2</td> </tr> +<tr><td>MAXPS MINPS</td><td>r128,m128</td><td> </td><td>2</td><td> </td><td>2</td> +<td> </td><td> </td><td>3</td><td>1/2</td></tr> +<tr><td>MAXSS MINSS</td><td>r128,r128</td><td> </td><td>1</td><td> </td><td> </td> +<td> </td><td> </td><td>3</td><td>1/1</td></tr> +<tr><td>MAXSS MINSS</td><td>r128,m32</td><td> </td><td>1</td><td> </td><td>1</td> +<td> </td><td> </td><td>3</td><td>1/1</td></tr> +<tr><td>CMPccPS</td><td>r128,r128</td><td> </td><td>2</td><td> </td><td> </td> +<td> </td><td> </td><td>3</td><td>1/2</td></tr> +<tr><td>CMPccPS</td><td>r128,m128</td><td> </td><td>2</td><td> </td><td>2</td> +<td> </td><td> </td><td>3</td><td>1/2</td></tr> +<tr><td>CMPccSS</td><td>r128,r128</td><td> </td><td>1</td><td> </td><td>1</td> +<td> </td><td> </td><td>3</td><td>1/1</td></tr> +<tr><td>CMPccSS</td><td>r128,m32</td><td> </td><td>1</td><td> </td> +<td>1</td><td> </td><td> </td><td>3</td><td>1/1</td></tr> +<tr><td>COMISS UCOMISS</td><td>r128,r128</td><td> </td><td>1</td><td> </td> +<td> </td><td> </td><td> </td><td>1</td><td>1/1</td></tr> +<tr><td>COMISS UCOMISS</td><td>r128,m32</td><td> </td><td>1</td> +<td> </td><td>1</td><td> </td><td> </td><td>1</td><td>1/1</td></tr> +<tr><td>SQRTPS</td><td>r128,r128</td><td>2</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td>56</td><td>1/56</td></tr> +<tr><td>SQRTPS</td><td>r128,m128</td><td>2</td><td> </td><td> </td> +<td>2</td><td> </td><td> </td><td>57</td><td>1/56</td></tr> +<tr><td>SQRTSS</td><td>r128,r128</td><td>2</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td>30</td><td>1/28</td></tr> +<tr><td>SQRTSS</td><td>r128,m32</td><td>2</td><td> </td><td> </td> +<td>1</td><td> </td><td> </td><td>31</td><td>1/28</td></tr> +<tr><td>RSQRTPS</td><td>r128,r128</td><td>2</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td>2</td><td>1/2</td></tr> +<tr><td>RSQRTPS</td><td>r128,m128</td><td>2</td><td> </td><td> </td> +<td>2</td><td> </td><td> </td><td>3</td><td>1/2</td></tr> +<tr><td>RSQRTSS</td><td>r128,r128</td><td>1</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td>1</td><td>1/1</td></tr> +<tr><td>RSQRTSS</td><td>r128,m32</td><td>1</td><td> </td><td> </td> +<td>1</td><td> </td><td> </td><td>2</td><td>1/1</td></tr> +<tr><td>RCPPS</td><td>r128,r128</td><td>2</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td>2</td><td>1/2</td></tr> +<tr><td>RCPPS</td><td>r128,m128</td><td>2</td><td> </td><td> </td> +<td>2</td><td> </td><td> </td><td>3</td><td>1/2</td></tr> +<tr><td>RCPSS</td><td>r128,r128</td><td>1</td><td> </td><td> </td> +<td> </td><td> </td><td> </td><td>1</td><td>1/1</td></tr> +<tr><td>RCPSS</td><td>r128,m32</td><td>1</td><td> </td><td> </td> +<td>1</td><td> </td><td> </td><td>2</td><td>1/1</td></tr> +<tr><td>SHUFPS</td><td>r128,r128,i</td><td> </td><td>2</td><td>1</td> +<td> </td><td> </td><td> </td><td>2</td><td>1/2</td></tr> +<tr><td>SHUFPS</td><td>r128,m128,i</td><td> </td><td>2</td><td> </td> +<td>2</td><td> </td><td> </td><td>2</td><td>1/2</td></tr> +<tr><td>UNPCKHPS UNPCKLPS</td><td>r128,r128</td><td> </td><td>2</td> +<td>2</td><td> </td><td> </td><td> </td><td>3</td><td>1/2</td></tr> +<tr><td>UNPCKHPS UNPCKLPS</td><td>r128,m128</td><td> </td><td>2</td> +<td> </td><td>2</td><td> </td><td> </td><td>3</td><td>1/2</td></tr> +<tr><td>LDMXCSR</td><td>m32</td><td colspan="3">11</td> +<td> </td><td> </td><td> </td><td>15</td><td>1/15</td></tr> +<tr><td>STMXCSR</td><td>m32</td><td colspan="3">6</td> +<td> </td><td> </td><td> </td><td>7</td><td>1/9</td></tr> +<tr><td>FXSAVE</td><td>m4096</td><td colspan="3">116</td> +<td> </td><td> </td><td> </td><td>62</td><td> </td></tr> +<tr><td>FXRSTOR</td><td>m4096</td><td colspan="3">89</td> +<td> </td><td> </td><td> </td><td>68</td><td> </td></tr> +</table> +<p> +<h2><a name="30">30</a>. Testing speed</h2><p> +The Pentium family of processors have an internal 64 bit clock counter which can be read +into <kbd>EDX:EAX</kbd> using the instruction <kbd>RDTSC</kbd> +(read time stamp counter). This is very useful for +testing exactly how many clock cycles a piece of code takes. +<p> +The program below is useful for measuring the number of clock cycles a piece of code +takes. The program executes the code to test 10 times and stores the 10 clock counts. +The program can be used in both 16 and 32 bit mode on the PPlain and PMMX: +<pre>;************ Test program for PPlain and PMMX: ******************** + +ITER EQU 10 ; number of iterations +OVERHEAD EQU 15 ; 15 for PPlain, 17 for PMMX + +RDTSC MACRO ; define RDTSC instruction + DB 0FH,31H +ENDM +;************ Data segment: ******************** +.DATA ; data segment +ALIGN 4 +COUNTER DD 0 ; loop counter +TICS DD 0 ; temporary storage of clock +RESULTLIST DD ITER DUP (0) ; list of test results +;************ Code segment: ******************** +.CODE ; code segment +BEGIN: MOV [COUNTER],0 ; reset loop counter +TESTLOOP: ; test loop +;************ Do any initializations here: ******************** + FINIT +;************ End of initializations ******************** + RDTSC ; read clock counter + MOV [TICS],EAX ; save count + CLD ; non-pairable filler +REPT 8 + NOP ; eight NOP's to avoid shadowing effect +ENDM + +;************ Put instructions to test here: ******************** + FLDPI ; this is only an example + FSQRT + RCR EBX,10 + FSTP ST +;***************** End of instructions to test ******************** + + CLC ; non-pairable filler with shadow + RDTSC ; read counter again + SUB EAX,[TICS] ; compute difference + SUB EAX,OVERHEAD ; subtract clocks used by fillers etc. + MOV EDX,[COUNTER] ; loop counter + MOV [RESULTLIST][EDX],EAX ; store result in table + ADD EDX,TYPE RESULTLIST ; increment counter + MOV [COUNTER],EDX ; store counter + CMP EDX,ITER * (TYPE RESULTLIST) + JB TESTLOOP ; repeat ITER times + +; insert here code to read out the values in RESULTLIST</pre> +<p> +The 'filler' instructions before and after the piece of code to test are are +included in order to get consistent results on the PPlain. The <kbd>CLD</kbd> +is a non-pairable instruction which has been inserted to make sure the pairing +is the same the first time as the subsequent times. The +eight <kbd>NOP</kbd> instructions are inserted to prevent any prefixes in the +code to test to be decoded in the shadow of the preceding instructions on +the PPlain. Single byte instructions are used here to obtain the same pairing +the first time as the subsequent times. The <kbd>CLC</kbd> after the +code to test is a non-pairable instruction which has a shadow under which +the <kbd>0FH</kbd> prefix of the <kbd>RDTSC</kbd> can be decoded so that +it is independent of any shadowing effect from the code +to test on the PPlain. +<p> +On The PMMX you may want to insert <kbd>XOR EAX,EAX / CPUID</kbd> +before the instructions to test if you want the FIFO instruction buffer +to be empty, or some time-consuming instruction +(f.ex. <kbd>CLI</kbd> or <kbd>AAD</kbd>) if you want the FIFO buffer to +be full (<kbd>CPUID</kbd> has no shadow under which +prefixes of subsequent instructions can decode). +<p> +On the PPro, PII and PIII you have to insert <kbd>XOR EAX,EAX / CPUID</kbd> +before and after each <kbd>RDTSC</kbd> to prevent it from executing +in parallel with anything else, and remove the filler +instructions. (<kbd>CPUID</kbd> is a serializing instruction which means +that it flushes the pipeline and waits for all pending operations to +finish before proceeding. This is useful for testing purposes.) +<p> +The <kbd>RDTSC</kbd> instruction cannot execute in virtual mode on the +PPlain and PMMX, so if you are running DOS programs you must run +in real mode. (Press F8 while booting and select +"safe mode command prompt only" or "bypass startup files"). +<p> +The complete test program is available from <a href="http://www.agner.org/assem/">www.agner.org/assem/</a>. +<p> +The Pentium processors have special performance monitor counters which can count +events such as cache misses, misalignments, various stalls, etc. Details about how to use the +performance monitor counters are not covered by this manual but can be found in +"Intel Architecture Software Developer's Manual", vol. 3, Appendix A. +<p> +<h2><a name="31">31</a>. Comparison of the different microprocessors</h2><p> +The following table summarizes some important differences between the microprocessors in +the Pentium family: +<p> + +<table border=1 cellpadding=4 cellspacing=1> +<tr><td> </td> +<td class="a3"> PPlain </td> +<td class="a3"> PMMX </td> +<td class="a3"> PPro </td> +<td class="a3"> PII </td> +<td class="a3"> PIII </td> +</tr><tr> +<td>code cache, kb</td> +<td>8</td> +<td>16</td> +<td>8</td> +<td>16</td> +<td>16</td> +</tr><tr> +<td>data cache, kb</td> +<td>8</td> +<td>16</td> +<td>8</td> +<td>16</td> +<td>16</td> +</tr><tr> +<td>built in level 2 cache, kb</td> +<td>0</td> +<td>0</td> +<td>256</td> +<td>512 *)</td> +<td>512 *)</td></tr> +<tr> +<td>MMX instructions</td> +<td>no</td> +<td>yes</td> +<td>no</td> +<td>yes</td> +<td>yes</td></tr> +<tr> +<td>XMM instructions</td> +<td>no</td> +<td>no</td> +<td>no</td> +<td>no</td> +<td>yes</td></tr> +<tr> +<td>conditional move instructruct.</td> +<td>no</td> +<td>no</td> +<td>yes</td> +<td>yes</td> +<td>yes</td> +</tr><tr> +<td>out of order execution</td> +<td>no</td> +<td>no</td> +<td>yes</td> +<td>yes</td> +<td>yes</td> +</tr><tr> +<td>branch prediction</td> +<td>poor</td> +<td>good</td> +<td>good</td> +<td>good</td> +<td>good</td> +</tr><tr> +<td>branch target buffer entries</td> +<td>256</td> +<td>256</td> +<td>512</td> +<td>512</td> +<td>512</td> +</tr><tr> +<td>return stack buffer size</td> +<td>0</td> +<td>4</td> +<td>16</td> +<td>16</td> +<td>16</td> +</tr><tr> +<td>branch misprediction penalty</td> +<td>3-4</td> +<td>4-5</td> +<td>10-20</td> +<td>10-20</td> +<td>10-20</td> +</tr><tr> +<td>partial register stall</td> +<td>0</td> +<td>0</td> +<td>5</td> +<td>5</td> +<td>5</td> +</tr><tr> +<td>FMUL latency</td> +<td>3</td> +<td>3</td> +<td>5</td> +<td>5</td> +<td>5</td> +</tr><tr> +<td>FMUL throughput</td> +<td>1/2</td> +<td>1/2</td> +<td>1/2</td> +<td>1/2</td> +<td>1/2</td> +</tr><tr> +<td>IMUL latency</td> +<td>9</td> +<td>9</td> +<td>4</td> +<td>4</td> +<td>4</td> +</tr><tr> +<td>IMUL throughput</td> +<td>1/9</td> +<td>1/9</td> +<td>1/1</td> +<td>1/1</td> +<td>1/1</td> +</tr></table> +<p>*) Celeron: 0-128, Xeon: 512 or more, many other variants available. +On some versions the level 2 cache runs at half speed. +<p> +<u>Comments to the table:</u><br> +Code cache size is important if the critical part of your program is not limited to a small +memory space. +<p> +Data cache size is important for all programs that handle more than small amounts of data +in the critical part. +<p> +MMX and XMM instructions are useful for programs that handle massively parallel +data, such as sound and image processing. In other applications it may not be +possible to take advantage of the MMX and XMM instructions. +<p> +Conditional move instructructions are useful for avoiding poorly predictable conditional +jumps. +<p> +Out of order execution improves performance, especially on non-optimized code. It includes +automatic instruction reordering and register renaming. +<p> +Processors with a good branch prediction method can predict simple repetitive patterns. A +good branch prediction is most important if the branch misprediction penalty is high. +<p> +A return stack buffer improves prediction of return instructions when a subroutine is called +alternatingly from different locations. +<p> +Partial register stalls make handling of mixed data sizes (8, 16, 32 bit) more difficult. +<p> +The latency of a multiplication instruction is the time it takes in a dependency chain. A +throughput of 1/2 means that the execution can be pipelined so that a new multiplication +can begin every second clock cycle. This defines the speed for handling parallel data. +<p> +Most of the optimizations described in this document have little or no negative effects on +other microprocessors, including non-Intel processors, but there are some problems to be +aware of. +<p> +Scheduling floating point code for the PPlain and PMMX often requires a lot of +extra <kbd>FXCH</kbd> instructions. This will slow down execution on older microprocessors, but not on the +Pentium family and advanced non-Intel processors. +<p> +Taking advantage of the MMX instructions in the PMMX, PII and PIII processors or the +conditional moves in the PPro, PII and PIII will create problems if you want your code to be +compatible with earlier microprocessors. The solution may be to write several versions of +your code, each optimized for a particular processor. Your program should detect which +processor it is running on and select the appropriate version of code +(chapter <a href="#27_10">27.10</a>). +<p> +</body> +</html> + diff --git a/programs/testsuites b/programs/testsuites new file mode 100644 index 0000000..dce0c2e --- /dev/null +++ b/programs/testsuites @@ -0,0 +1,2 @@ +http://www.fortunecity.de/wolkenkratzer/apple/28/chess.html + diff --git a/programs/uniacke.ps b/programs/uniacke.ps new file mode 100644 index 0000000..63abc46 --- /dev/null +++ b/programs/uniacke.ps @@ -0,0 +1,12175 @@ +%!PS-Adobe-2.0 +%%Creator: dvips 5.512 Copyright 1986, 1993 Radical Eye Software +%%Title: uniacke.dvi +%%CreationDate: Thu May 18 00:16:31 1995 +%%Pages: 238 +%%PageOrder: Ascend +%%BoundingBox: 0 0 596 842 +%%EndComments +%DVIPSCommandLine: dvips -o uniacke.ps uniacke +%DVIPSSource: TeX output 1995.05.18:0011 +%%BeginProcSet: tex.pro +/TeXDict 250 dict def TeXDict begin /N{def}def /B{bind def}N /S{exch}N /X{S N} +B /TR{translate}N /isls false N /vsize 11 72 mul N /@rigin{isls{[0 -1 1 0 0 0] +concat}if 72 Resolution div 72 VResolution div neg scale isls{Resolution hsize +-72 div mul 0 TR}if Resolution VResolution vsize -72 div 1 add mul TR matrix +currentmatrix dup dup 4 get round 4 exch put dup dup 5 get round 5 exch put +setmatrix}N /@landscape{/isls true N}B /@manualfeed{statusdict /manualfeed +true put}B /@copies{/#copies X}B /FMat[1 0 0 -1 0 0]N /FBB[0 0 0 0]N /nn 0 N +/IE 0 N /ctr 0 N /df-tail{/nn 8 dict N nn begin /FontType 3 N /FontMatrix +fntrx N /FontBBox FBB N string /base X array /BitMaps X /BuildChar{ +CharBuilder}N /Encoding IE N end dup{/foo setfont}2 array copy cvx N load 0 nn +put /ctr 0 N[}B /df{/sf 1 N /fntrx FMat N df-tail}B /dfs{div /sf X /fntrx[sf 0 +0 sf neg 0 0]N df-tail}B /E{pop nn dup definefont setfont}B /ch-width{ch-data +dup length 5 sub get}B /ch-height{ch-data dup length 4 sub get}B /ch-xoff{128 +ch-data dup length 3 sub get sub}B /ch-yoff{ch-data dup length 2 sub get 127 +sub}B /ch-dx{ch-data dup length 1 sub get}B /ch-image{ch-data dup type +/stringtype ne{ctr get /ctr ctr 1 add N}if}B /id 0 N /rw 0 N /rc 0 N /gp 0 N +/cp 0 N /G 0 N /sf 0 N /CharBuilder{save 3 1 roll S dup /base get 2 index get +S /BitMaps get S get /ch-data X pop /ctr 0 N ch-dx 0 ch-xoff ch-yoff ch-height +sub ch-xoff ch-width add ch-yoff setcachedevice ch-width ch-height true[1 0 0 +-1 -.1 ch-xoff sub ch-yoff .1 add]{ch-image}imagemask restore}B /D{/cc X dup +type /stringtype ne{]}if nn /base get cc ctr put nn /BitMaps get S ctr S sf 1 +ne{dup dup length 1 sub dup 2 index S get sf div put}if put /ctr ctr 1 add N} +B /I{cc 1 add D}B /bop{userdict /bop-hook known{bop-hook}if /SI save N @rigin +0 0 moveto /V matrix currentmatrix dup 1 get dup mul exch 0 get dup mul add +.99 lt{/QV}{/RV}ifelse load def pop pop}N /eop{SI restore showpage userdict +/eop-hook known{eop-hook}if}N /@start{userdict /start-hook known{start-hook} +if pop /VResolution X /Resolution X 1000 div /DVImag X /IE 256 array N 0 1 255 +{IE S 1 string dup 0 3 index put cvn put}for 65781.76 div /vsize X 65781.76 +div /hsize X}N /p{show}N /RMat[1 0 0 -1 0 0]N /BDot 260 string N /rulex 0 N +/ruley 0 N /v{/ruley X /rulex X V}B /V{}B /RV statusdict begin /product where{ +pop product dup length 7 ge{0 7 getinterval dup(Display)eq exch 0 4 +getinterval(NeXT)eq or}{pop false}ifelse}{false}ifelse end{{gsave TR -.1 -.1 +TR 1 1 scale rulex ruley false RMat{BDot}imagemask grestore}}{{gsave TR -.1 +-.1 TR rulex ruley scale 1 1 false RMat{BDot}imagemask grestore}}ifelse B /QV{ +gsave transform round exch round exch itransform moveto rulex 0 rlineto 0 +ruley neg rlineto rulex neg 0 rlineto fill grestore}B /a{moveto}B /delta 0 N +/tail{dup /delta X 0 rmoveto}B /M{S p delta add tail}B /b{S p tail}B /c{-4 M} +B /d{-3 M}B /e{-2 M}B /f{-1 M}B /g{0 M}B /h{1 M}B /i{2 M}B /j{3 M}B /k{4 M}B +/w{0 rmoveto}B /l{p -4 w}B /m{p -3 w}B /n{p -2 w}B /o{p -1 w}B /q{p 1 w}B /r{ +p 2 w}B /s{p 3 w}B /t{p 4 w}B /x{0 S rmoveto}B /y{3 2 roll p a}B /bos{/SS save +N}B /eos{SS restore}B end +%%EndProcSet +TeXDict begin 39158280 55380996 1000 300 300 +(/home/a2/edf/jcw/uni/uniacke.dvi) @start /Fa 1 42 df<000000600000000000600000 +0000003000000000001800000000001800000000000C0000000000060000000000030000FFFFFF +FF8000FFFFFFFFC000000000007000000000001C00000000000F800000000003E0000000000780 +000000001E00000000003800000000006000FFFFFFFFC000FFFFFFFF8000000000070000000000 +0600000000000C0000000000180000000000300000000000300000000000600000000000600000 +2B1C7D9932>41 D E /Fb 2 13 df<07C0000C3040101040201880601880C00C80C00D00C00E00 +800E00800C00C01C00C02C0060C4803F0300120E7E8D17>11 D<000F0000308000C0C000804001 +00600200C00400C0040080040180083F00083E0008010008018010018010018010018010018030 +0300300300300600280C0044180043E000400000400000800000800000800000800000131D7F96 +14>I E /Fc 1 81 df<FFFFFFFFE0FFFFFFFFF07000001FF078000001F03C000000781C000000 +180E0000000C0F000000040700000004038000000203C000000001E000000000E0000000007000 +000000780000000038000000001C000000001E000000000F000000000700000000038000000003 +800000000300000000070000000006000000000C00000000180000000038000000003000000000 +6000000000C000000001C00000000180000002030000000406000000040E0000000C0C00000018 +180000007830000001F07000001FF07FFFFFFFF0FFFFFFFFE0272A7E7F2C>80 +D E /Fd 2 2 df<FFFFC0FFFFC012027D871A>0 D<40E04003037D880A>I +E /Fe 33 121 df<40E06020202040408003097D820A>59 D<00200060006000C000C000C00180 +01800180030003000300060006000C000C000C00180018001800300030003000600060006000C0 +00C000C0000B1D7E9511>61 D<07FFE000E03801C01801C01C01C01C01C01C0380380380700380 +E003FFC00700E00700700700300700380E00700E00700E00E00E00E01C0380FFFE0016147F9319 +>66 D<003F0800C0980300700600300C0030180030380020700000700000700000E00000E00000 +E00000E000406000806000803001003002000C1C0007E00015147E9318>I<07FFFC00E01C01C0 +0C01C00C01C00C01C00803820803820003820003FE000704000704000704000700000E00000E00 +000E00000E00001C0000FFC00016147F9315>70 D<07FC1FC000E0060001C0080001C0100001C0 +600001C080000381000003860000038E0000039E0000076700000787000007038000070380000E +01C0000E01C0000E00E0000E00E0001C00F000FF83FC001A147F931C>75 +D<07FE0000E00001C00001C00001C00001C0000380000380000380000380000700000700000700 +000700200E00400E00400E00800E01801C0780FFFF0013147F9317>I<003F0001C1C003006006 +00700C0030180038380038700038700038700038E00070E00070E00070E000E0E000C06001C070 +03803806001C1C0007E00015147E9319>79 D<07FFE000E07001C01801C01C01C01C01C01C0380 +380380380380700381C007FF000700000700000700000E00000E00000E00000E00001C0000FF80 +0016147F9315>I<07FFC000E07001C01801C01C01C01C01C01C0380380380700380C003FF0007 +03C00701C00700E00700E00E01C00E01C00E01C00E01C21C01C4FF807817147F9319>82 +D<00F8800305800603000401000C01000C01000C00000E00000FE00007F80001FC00001C00000E +00000E00400C00400C00400800601800D020008FC00011147E9314>I<1FFFF8381C1820381820 +380840380840381080701000700000700000700000E00000E00000E00000E00001C00001C00001 +C00001C0000380003FF8001514809314>I<FF1FE0FC3803803038038020380780403807804038 +0B8080380B818038138100383382003C2382001C43C4001C41CC001C81C8001D81D0001D01D000 +1E01E0001E01E0001C01C0001C018000180180001E147E931F>87 D<07B00C7010703060606060 +606060C0C0C0C8C0C841C862D03C700D0D7E8C12>97 D<7C000C00180018001800180030003700 +388030C060C060C060C060C0C180C180C1004300660038000A147E930F>I<07800C4010E031C0 +600060006000C000C0004020404021801E000B0D7E8C0F>I<007C000C00180018001800180030 +07B00C7010703060606060606060C0C0C0C8C0C841C862D03C700E147E9311>I<07800C401020 +304060407F8060004000C0004020604021801E000B0D7E8C10>I<0038006C007C004C00C000C0 +00C007F800C001800180018001800180030003000300030003000300060006006600E400C80070 +000E1A7F9310>I<01D8023804380C3018301830183030603060306010E019C00EC000C000C061 +80E180C3007C000D137F8C10>I<3E0006000C000C000C000C00180019E01E3018303830303030 +3030306060606460C460C4C0C8C0700E147E9313>I<06070600000000384C4C8C981818303262 +62643808147F930C>I<3E0006000C000C000C000C001800187018B819383230340038003E0063 +00631063106310C320C1C00D147E9312>107 D<7C0C181818183030303060606060C0D0D0D0D0 +6006147E930A>I<30F87C00590C86004E0D06009C0E0600980C0600180C0600180C060030180C +0030180C8030181880301818806030190060300E00190D7F8C1D>I<30F8590C4E0C9C0C980C18 +0C180C30183019303130316032601C100D7F8C15>I<03800C6018203030603060306030C060C0 +6040C0608023001E000C0D7E8C10>I<0C78168C130426062606060606060C0C0C0C0C080C101A +2019C018001800300030003000FC000F13818C11>I<072008E010E030C060C060C060C0C180C1 +80C180438067003B00030003000600060006003F800B137E8C0F>I<31E05A704C709C60980018 +0018003000300030003000600060000C0D7F8C0F>I<0700188019C0318038001E000F00038041 +80E180C10082007C000A0D7E8C10>I<02000600060006000C00FF800C000C0018001800180018 +00300031003100320032001C0009127F910D>I<0E3C13CE238E430C43000300030006000608C6 +08E610CA2071C00F0D7F8C13>120 D E /Ff 15 107 df<FFFFFF80FFFFFF8019027D8A20>0 +D<60F0F06004047C8B0C>I<000400000006000000060000000600000006000000060000000600 +00000600000006000000060000000600000006000000060000FFFFFFE0FFFFFFE0000600000006 +0000000600000006000000060000000600000006000000060000000600000006000000060000FF +FFFFE0FFFFFFE01B1C7E9A20>6 D<03C00FF01FF83FFC7FFE7FFEFFFFFFFFFFFFFFFF7FFE7FFE +3FFC1FF80FF003C010107E9115>15 D<000001800000078000001E00000078000001E000000780 +00001E00000078000001E00000078000001E00000078000000E0000000780000001E0000000780 +000001E0000000780000001E0000000780000001E0000000780000001E00000007800000018000 +0000000000000000000000000000000000000000000000000000007FFFFF00FFFFFF8019227D99 +20>20 D<C0000000F00000003C0000000F00000003C0000000F00000003C0000000F00000003C0 +000000F00000003C0000000F000000038000000F0000003C000000F0000003C000000F0000003C +000000F0000003C000000F0000003C00000070000000C000000000000000000000000000000000 +0000000000000000000000000000007FFFFF00FFFFFF8019227D9920>I<07C000201FE000203F +F80020783C0060E01F00E0C00783C08003FF808000FF0080007C000000000007C000201FE00020 +3FF80020783C0060E01F00E0C00783C08003FF808000FF0080007C001B137E9320>25 +D<01000300030007800B4013206318830403000300030003000300030003000300030003000300 +0300030003000300030003000300030003000300030003000300030003000300030003000E257D +9C15>34 D<07E0003F000FF800F180183E018040200F03002040078400104003CC00108001D800 +088000F000088000F00008800078000880007800088000DC000840019E001040010F0010200607 +8020100C03E0C00C7800FF8007E0003F0025127E912A>49 D<007FF801FFF80780000E00001800 +00300000300000600000600000C00000C00000C00000FFFFF8FFFFF8C00000C00000C000006000 +006000003000003000001800000E000007800001FFF8007FF8151A7D961C>I<400004C0000C60 +00186000186000183000303000303000301800601800601FFFE00FFFC00C00C00C00C006018006 +018003030003030003030001860001860001860000CC0000CC0000CC0000780000780000780000 +3000003000161E809C17>56 D<400002C00006C00006C00006C00006C00006C00006C00006C000 +06C00006C00006C00006C00006C00006C00006C00006C00006C00006C0000660000C60000C3000 +181C00700F01E003FF8000FE00171A7E981C>91 D<003C00E001C0018003800380038003800380 +03800380038003800380038003800380030007001C00F0001C0007000300038003800380038003 +8003800380038003800380038003800380018001C000E0003C0E297D9E15>102 +D<F0001C00070003000380038003800380038003800380038003800380038003800380018001C0 +00E0003C00E001C001800380038003800380038003800380038003800380038003800380030007 +001C00F0000E297D9E15>I<C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 +C0C0C0C0C0C0C0C0C0C0C0C0C0C002297B9E0C>106 D E /Fg 26 116 df<000101808053>48 +D<C000000000000000000000004020080402010040201000804010080402008040200100802010 +080401008040020100402010080201008004020080402010040201000804010080402008040200 +100802010080401008040020100402010080201008004020080402F90040201000004010080506 +0080402010008020100A0201008040200100402012020201008040020080402202040201008004 +01008042020804020100080201008202100804020010040201010420100804002008040201F840 +201008004010080402508040201000002010080489008040201000402010090601008040200080 +4020160302010080400100804028008402010080020100807000680402010004020100C0001008 +0402000804020180000C1008040010080402000002201008002010080400000140201000402010 +080000008040200000402010002000408040100080402000200021008020010080400020001201 +0040020100C0002000140200800402018000200008040100080402800020000808020010080480 +07FF00081004002010090000200004200800402011000020000440100000402100002000048020 +100080410000200005004020010081000020000600804002010100000000040100800402010000 +000004020100080401800000000804020010080280000000080804002010044000000010100800 +402008400000001020100000401020000000204020100080201007FF004080402001004028F800 +F88100804002008047000007020100800401008400000104020100080201040000010804020010 +04020400000110080400200804040000012010080040100808000000C02010000020100807FF00 +80402010004020187800F0808040200080402980000C8100804001008056000003420100800201 +0098000000C402010004020106000003080402000804020180000C10080400100804027800F020 +1008002010080407FF80402010004020100805050080402000004020100A020100804010008040 +201C018201008020010081C0F0007C0E01004002017E7F000007F3F2008004038000000000000E +0100080C0000002000000182001010000000D80000004400206000000306000000380040800003 +FE01FE00000800004007FC040201FF00101000A0382008040201E020200110C040100804021840 +400209008020100804048080040601004020100803010008040200804020100402001008040100 +804020080400201008020100804010080040201004020100802010000000000000000000000008 +555581D353>65 D<00000000F80000000000000001040000000000000002020000000000000002 +020000000000000002020000000000000002020000000000000002020000000000000001040000 +000000000000F80000000000000000500000000000000000880000000000000001040000000000 +000006030000000000000008008000000000000030006000000000000040001000000000000180 +000C00000000000200000200000000000400000100000000000800000080000000001000200040 +000000002000200020000000004000200010000000004000200010000000008000200008000000 +008000200008000000008007FF0008000000010000200004000000010000200004000000010000 +200004000000010000200004000000010000200004000000010000000004000000010000000004 +000000008000000008000000008000000008000000004000000010000000004000000010000000 +002000000020000000001007FF00400000000008F800F880000000000700000700000000000400 +000100000000000400000100000000000400000100000000000400000100000000000800000080 +000000000807FF008000000000087800F080000000000980000C80000000001600000340000000 +0018000000C0000000000600000300000000000180000C0000000000007800F000000000000007 +FF000000000000000104000000000000000202000000000000000C0180000000000180F000780C +0000007E7F000007F3F000038000000000000E000C000000200000018010000000D80000004060 +0000030600000030800003FC01FE0000084007FC000001FF001020380000000000E02010C00000 +0000001840090000000000000480060000000000000300454779CA53>I<C00000000000000000 +000000402008040201004020100080401008040200804020010080201018040100804002010040 +20300802010080040200804030100402010008040100807020080402001008020100B040100804 +00201004020FFF8020100800402008040FFF804020100000401008043200804020100080201008 +340100804020010040201038020100804002008040203004020100800401008040300804020100 +08020100807010080402001004020100B020100804002008040201F84020100800401008040304 +80402010000020100806030080402010004020100C010100804020008040201401020100804001 +00804028008402010080020100804800880402010004020100880090080402000807FE010800A0 +11FE0400100C03820800C02E018800202000640800807000300040400018080080C00010000080 +000408008100000810018000030401060000042001000000940108000004400300000064011000 +00048006000000240120000003000A00000012024000000200120000000A028000000200220000 +000603000000020042000000070500000002000200000003060000000210010000000104000000 +042001000000018C00000004400280000000880000000880048000000088000000090008400000 +008800000012001020000000500000002400202000000050000000280040300000005000000050 +00004800000070000000A010008400000070000001402001040000002000000180400202000000 +2000000300800401000000200000060100080300007FFFF0000402001004803F80000FE0080400 +200887C00000001F0808004010780000000000F010000020400000000000102010004040000000 +000010402000804000000000001080400100C00000000000110080020120003FFFE00022010004 +02200FC0001F80240200080420F000000078280400100827000000000730080020103800000000 +00E010004020200000000000202000004020001FFFC00020401000806007E0003F002080200100 +A078000000F0210040020143800000000E12008004025C0000000001D401000804600000000000 +380200100830000000000070040020100C0000000001A00800402013C00000001E401000004020 +3E000003E080201000804021FFFFFE010040200100804010080402008040020100802010080401 +008004020100402010080201000804020080402010040200100804010080402008040020100802 +0100804010080040201004020100802010000000000000000000000008555581D353>74 +D<00000000040000000000000000000C0000000000000000000C0000000000000000000C000000 +0000000000000C000000000000000003FFE00000000000000003FFE000000000000000000C0000 +000000000000000C0000000000000000000C0000000000000000000C0000000000000000000C00 +00000000000000000C0000000000000000000C0000000000000000003E00000000000000000045 +000000000000000000808000000000000000010040000000000000000100400000000000000002 +002000000000000000020020000000000000000200200000000000FF00020020007F80000300E0 +020020038060000800180200200C00080010000602002030000400200001020020400002004000 +00C100418000010040000021004200000100400000110044000001008000000900480000008080 +0000048090000000808000000280A0000000808000000180C00000008080000001414000000080 +80000000C180000000804000000041000000010040000000630000000100200000002200000002 +002000000022000000020010000000220000000400080000001400000008000800000014000000 +080004000000140000001000020000001C0000002000010000001C000000400001000000080000 +00400000800000080000008000004000000800000100000040001FFFFC0001000000200FE00003 +F80200000021F000000007C20000001E00000000003C0000001000000000000400000010000000 +000004000000100000000000040000001000000000000400000008000FFFF800080000000803F0 +0007E008000000083C0000001E0800000009C000000001C80000000E0000000000380000000800 +0000000008000000080007FFF000080000000801F8000FC008000000081E0000003C0800000010 +E00000000384000000170000000000740000001800000000000C0000000C000000000018000000 +0300000000006000000000F00000000780000000000F800000F80000000000007FFFFF00000000 +494A7BD053>I<C000000000000000000000004020080402010040201000804010080402008040 +200100802010F8040100804002010040210408020100800402008042021004020100080407C082 +02201F040200100808210202402088040020101012020280405008004020101402030040601000 +00401018050600C04020100080301008FC0140404020010050101058024040804007C090102050 +0440411F800821082040500820822080101207C08050101F044040101403410088201408404030 +18052201884024104040501009240288806420404010101128048900A440405008202110088A01 +448060A007C04110108C0245009F400140811021040446011480032101084104088402250004A2 +010881041084042A000894020901042082084C00109806060104410210480020880A0401048102 +20880040881204020301024088000084220206020202810810008442020A020203010820018482 +02120206020108400243020122020C02021080044202014202140206110008410201840124020C +1200104106008401480214140020408A0084018802281800404092008401080248100000406200 +4401100290101000C0420048009003101020012022003800A002202040022022002800A0022020 +80042012002820A0024021000820140018D8C00140220010200C181B06C0C180240020200C27FC +01FF21802800402005C00000001D0030000061FE0000000003FC20100092000000000000024020 +011C00000000000001C04002100000000000000040800408000000000000008100080800000000 +0000008200100400003FFFE000010400200A0007C0001F0002080040110078000000F004100000 +2083800000000E0820100040980000000000C8402000806000000000003080400100C000000000 +001100800201200000000000220100040220001FFFC00024020008041003E0003E004804001008 +103C000001E0500800201009C00000001CA0100040201E0000000003C020000040280000000000 +80401000804800000000008080200100900000000000410040020110003FFFE000420080040220 +1FC0001FC0240100080421E00000003C28020010082E0000000003B00400201070000000000070 +0800402030000000000060100000402E0000000003802010008041E00000003D0040200100805F +FFFFFFC20080400201008020100804010080040201004020100802010008040200804020100402 +001008040100804020080400201008020100804010080040201004020100802010000000000000 +000000000008555581D353>I<C000000000000000000000004020080402010040201000804010 +080402008040200100802010080401008040020100402010080201008004020080402010040201 +0008040100824020080402001008060106804010080400201005820900802010080040200C4411 +01004020100000401238208200804020100080220C408401008040200100420240880201008040 +0200820180500402010080040102060060080402010008020238003FF008040200100402C00000 +0E1008040020080700000001A010080040100A0000000060201000002014000000001840201000 +4028000000000480402000805000000000030080400100A0000000000101008002014000000000 +008201000402800000000000440200080500E000000000280400100901C0000000003008002011 +03C0000000001010004021038000000000102000004107000000000008401000810E0000000000 +088020010108000000000005004002010000000400000600800402000000020000020100080600 +0000040000020200100A0000000400000104002014000000040000010800402400000004000001 +1000004800000008000000A010009000000008000000C020011000000010000000804002200000 +006000000040800440000000E0000000410008400000036000000042001080000004A000000044 +00208000001920000000280041000000E220000000300001000003042000000020100118000408 +200000002020023C001810200000001040027C0020204000000010800678004040400000001100 +0A700080804000000012001240008100C000000014002100010201800000000800410041040280 +00000008000080420805000000000810004084100A00000000082000B104201200000000084001 +0E08402400000000088002011080480000000005000402E1009000000000060008040201200000 +000004001008040240000000000400201008048000000000040040201009000000000004000040 +201200000000000410008040240000000000042001008048000000000004400201008800000000 +000480040201100000000000050008040210000000000002001008042000000000000200201008 +200000000000020040201020000000000002000040202000000000000210008040200000000000 +02200100807FFFFFFFFFFFFE400201008020100804010080040201004020100802010008040200 +804020100402001008040100804020080400201008020100804010080040201004020100802010 +000000000000000000000008555581D353>I<0000000080000000000000018001800000000000 +000160024000000000000001100440000000000000008C08200000000000000083102000000000 +0000008090200000000000000080601000000000000000818010000000000000008E000FFC0000 +00000000B0000003800000000000C0000000600000000000800000001800000000010000000006 +000000000200000000010000000004000000000080000000080000000000400000001000000000 +002000000020000000000010000000403800000000080000004070000000000800000040F00000 +00000400000040E0000000000400000041C0000000000200000043800000000002000000420000 +000000010000004000000100000100000080000000800000800000800000010000008000008000 +000100000040000100000001000000400001000000010000004000020000000200000020000400 +000002000000200004000000040000002000080000001800000010001000000038000000100010 +000000C80000001000200000010800000010002000000608000000080040000038080000000800 +400000C0080000000800460001000800000008008F0006000800000004009F0008001000000004 +009E0010001000000004009C002000100000000400900020001000000004004000400020000000 +02004010400020000000020020108000400000000200102100008000000002000C410000800000 +000200038200010000000002000044000200000000010000380004000000000100000000080000 +000001000000001000000000010000000020000000000100000000400000000001000000008000 +000000010000000100000000000100000002000000000001000000020000000000010000000400 +000000000100000004000000000000800000080000000000008000000800000000000080000008 +00000000000080000008000000000000800000080000000000008000000FFFFFFFFFFFFF804948 +7BCD53>I<C0000000000000000000000040200804020100402010008040100804020080402001 +008020100804010080400201004020100802010080040200804020100402010008040100804020 +08040200100802010080401008040020100402010080201008004020080403FD00402010000040 +100806030080402010008020100800810080402001004020100042010080400200804030004402 +010080040100806000280402010008020100A00030080402001004020120002010080400200804 +022000202010080040100804200020402010000020100810004080402010004020101000410080 +402000804020180082010080400100804024010402010080020100804F07880402010004020100 +B000700804020008040201C0001810080400100804030000042010080020100806000002402010 +004020100C00000180402000004020140000010080401000804028000000810080200100804800 +000082010040020100900000004402008004020110000000480401000804021000000050080200 +100804100000006010040020100810000000402008004020101000000040401000004020080000 +008080201000804018000000810040200100802400000102008040020100440000010401008004 +02008200000208020100080401010000041004020010080201C000182008040020100402200020 +4010080040200804C00018802010000040100B0000070040201000802014000001008040200100 +4038000000C10080400200806000000022010080040100C0000000140201000802018000000008 +0402001004030000000004080400200806000000000210080040100A0000000002201000002014 +000000000140201000402800000000008040200080480000000000808040010090000000000041 +008002011000000000004201000402200000000000240200080420000000000028040010082000 +000000003008002010200000000000201000402040000000000010200000404000000000001040 +1000804000000000001080200100C0000000000011004002014000000000001200800402400000 +000000140100080440000000000018020010084000000000001004002010400000000000100800 +402040000000000010100000403FFFFFFFFFFFE020100080402008040201004020010080401008 +040200804002010080201008040100800402010040201008020100080402008040201004020010 +080401008040200804002010080201008040100800402010040201008020100000000000000000 +00000008555581D353>I<000003F800000000000C060000000000100100000000002000800000 +000020008000000000400040000000004000400000000040004000000000400040000000004000 +4000000000200080000000002000800000000010010000000000080200000000001E0F00000000 +006000C00000000180003000000002000008000000040000040000000800000200000008000002 +000000100000010000001000000100000020000000800000200000008000002000000080000020 +000000800000200000008000002000000080000010000001000000100000010000000800000200 +000008000002000000040000040000000200000800000001800030000000004000400000000180 +00300000000600000C000000080000020000003000000180000040000000400000800000002000 +010000000010000200000000080004000000000400040000000004000800000000020010000000 +000100100000000001002000000000008020000000000080400000000000404000000000004040 +000000000040400000000000408000000000002080000000000020800000000000208000000000 +002080000000000020800000000000208000000000002080000000000020800000000000208000 +00000000207FFFFFFFFFFFC0334370CA53>I<0000000007C00000000000000000082000000000 +0000000010100000000000003E00101000F8000000004100101001040000000080801010020200 +0000008080101002020000000080800820020200000000808007C0020200000000808002800202 +00003E0080800280020200F84100410002800104010480803E00028000F8020280800A00044000 +A00202808009000440012002028080090004400120020280800900044001200202410008800440 +022001043E0008800440022000F80A0008800820022000A0090008400820042001200500084008 +200420014004801040082004100240048010200820081002400440102008200810044004401020 +101008100440042010101010101008400420101010101010084004201010101010100840021010 +081010201010800210100810102010108002081008200820102080020810042008401020800204 +100420084010408002041004200840104080020210022008801080800202100240048010808001 +01100140050011010001011001400500110100010090014105001201000100A000C6C6000A0100 +010060C0D836060C01000100613FE00FF90C010001002E00000000E80100010FF0000000001FE1 +000090000000000000120000E00000000000000E00008000000000000002000040000000000000 +04000040000000000000040000200001FFFF000008000010003E0000F8001000000803C0000007 +80200000041C000000007040000004C00000000006400000030000000000018000000200000000 +000080000001000000000001000000010000FFFE000100000000801F0001F0020000000081E000 +000F02000000004E00000000E40000000070000000001C00000000400000000004000000004000 +0000000400000000800000000002000000008001FFFF00020000000100FE0000FE01000000010F +00000001E10000000170000000001D000000038000000000038000000180000000000300000000 +70000000001C000000000F00000001E00000000000FFFFFFFE0000004F4B7ED053>I<1FF807FF +C03FF010080400402010100804004020101008040040201010080400402010100FFC007FE01010 +000000000010100000000000101000000000001010000000000010100000000000101FFFFFFFFF +FFF008000000000020040000000000400300000000018000800000000200004000000004000030 +0000001800001FFFFFFFF000001000000010000010000000100000100000001000001000000010 +000010000000100000100000001000001000000010000010000000100000100000001000001000 +000010000010000000100000100000001000001000000010000010000000100000100000001000 +001000000010000010000000100000100000001000001000000010000010000000100000100000 +0010000010000000100000100000001000001FFFFFFFF000002000000008000040000000080000 +800000000400008000000002000100000000010002000000000080040000000000400FFFFFFFFF +FFE008000000000020080000000000200800000000002008000000000020080000000000200800 +0000000020FFFFFFFFFFFFFE800000000000028000000000000280000000000002800000000000 +0280000000000002FFFFFFFFFFFFFE374072C753>I<C000000000000000000000004020080402 +010040201000804010080402008040200100802010080401008040020100402010080201008004 +020080402010040201000804010080402008040200100802010080401008040020100402010080 +201008004020080402010040201000004010080402008040201000802010080401008040200100 +7FF01FFF827FE080400200A0102800844021008004012010480088402201000802201088009040 +240200100420110800A0402804002008201FF800FFC03008004010200000000000201000002020 +0000000000202010004020000000000020402000806000000000002080400100A0000000000021 +008002013FFFFFFFFFFFE201000402100000000000440200080408000000000088040010080600 +000000031008002010090000000004201000402010800000000840200000402060000000308040 +100080403FFFFFFFE10080200100806000000022010040020100A0000000240200800402012000 +000028040100080402200000003008020010080420000000201004002010082000000020200800 +402010200000002040100000402020000000208020100080402000000021004020010080200000 +00220080400201006000000024010080040200A000000028020100080401200000003004020010 +080220000000200804002010042000000020100800402008200000002020100000401020000000 +204020100080202000000020804020010040200000002100804002008060000000220100800401 +00A000000024020100080201200000002804020010040220000000300804002008043FFFFFFFE0 +100800401008400000001020100000201080000000104020100040210000000008804020008041 +000000000500804001008200000000020100800201040000000001020100040208000000000084 +020008041FFFFFFFFFFFC804001008100000000000500800201010000000000060100040201000 +000000004020000040300000000000404010008050000000000040802001009000000000004100 +400201FFFFFFFFFFFFFE0080040300000000000004010008050000000000000402001009000000 +000000040400201100000000000004080040210000000000000410000041FFFFFFFFFFFFFC2010 +008040200804020100402001008040100804020080400201008020100804010080040201004020 +100802010008040200804020100402001008040100804020080400201008020100804010080040 +201004020100802010000000000000000000000008555581D353>I<C000000000000000000000 +004020080402010040201000804010080402008040200100802010080401008040020100402010 +080201008004020080402010040201000804010080402008040200100802010080401008040020 +100402010080201008004020080402010040201000004010080402008040201000802010080401 +008040200100402010080201008040020080402010040201008004010080402008040201000802 +010080401008040200100402010080201008040020080402010040201008004010080402008040 +201000002010080401008040201000402010080201008040200080402010040201008040010080 +402008040201008002010080401008040201000402010080201008040200080402010040201008 +040010080402008040201008002010080401008040201000402010080201008040200000402010 +040201008040100080402008040201008020010080401008040201004002010080201008040200 +800402010040201008040100080402008040201008020010080401008040201004002010080201 +008040200800402010040201008040100000402008040201008020100080401008040201004020 +010080201008040200804002010040201008040100800402008040201008020100080401008040 +201004020010080201008040200804002010040201008040100800402008040201008020100000 +401008040201004020100080201008040200804020010040201008040100804002008040201008 +020100800401008040201004020100080201008040200804020010040201008040100804002008 +040201008020100800401008040201004020100000201008040200804020100040201008040100 +804020008040201008020100804001008040201004020100800201008040200804020100040201 +008040100804020008040201008020100804001008040201004020100800201008040200804020 +100040201008040100804020000040201008020100804010008040201004020100802001008040 +200804020100400201008040100804020080040201008020100804010008040201004020100802 +001008040200804020100400201008040100804020080040201008020100804010000040201004 +020100802010008040200804020100402001008040100804020080400201008020100804010080 +040201004020100802010008040200804020100402001008040100804020080400201008020100 +804010080040201004020100802010000000000000000000000008555581D353>90 +D<C000000000000000000000004020080402010040201000804010080402008040200100802010 +080401008040020100402010080201008004020080402010040201000804010080402008040200 +100802010080401008040020100402010080201008004020080402F900402010000040100805FE +0080402010008020100BFE01008040200100402013FE02010080400200804023FE040201008004 +01008043FE08040201000802010083FE10080402001004020101FC20100804002008040201F840 +2010080040100804022080402010000020100804F900804020100040201009FE01008040200080 +402013FE0201008040010080402FFF8402010080020100805FFFC80402010004020100FFFFF008 +04020008040201FFFFF81008040010080403FFFFFE2010080020100807FFFFFF40201000402010 +0FFFFFFF804020000040201FFFFFFFC08040100080403FFFCFFFE10080200100807FFFCFFFF201 +0040020100FFFFCFFFF4020080040201FFFFCFFFF8040100080402FFF800FFF8080200100804FF +F800FFF8100400201009FFFFCFFFFC200800402011FFFFCFFFFC401000004021FFFFCFFFFC8020 +10008041FFFFCFFFFD004020010081FFFFFFFFFE008040020101FFFFFFFFFC010080040201FFFF +FFFFFC020100080401FFFFFFFFF8040200100802FFFFFFFFF80804002010047FFFFFFFF0100800 +4020087FFFFFFFF02010000040103FFC01FFE04020100080201FC0001FC08040200100402F01FC +0781008040020080471FFFC70201008004010083FFFFFE0402010008020103FFFFFE0804020010 +040207FFFFFF1008040020080407FFFFFF2010080040100807FFFFFF402010000020100FF800FF +804020100040201FC0001F808040200080402F03FE07810080400100804C1FFFC1820100800201 +008C7FFFF18402010004020105FFFFFD0804020008040201FFFFFC10080400100804027FFFF020 +1008002010080407FF80402010004020100804F900804020000040201009FE0100804010008040 +2017FF0201008020010080403FFFC40201004002011FFFFFFFFFFFC200800403FFFFFFFFFFFFFC +01000807FFFFFFFFFFFFFF0200100FFFFFFF8FFFFFFF8400203FFFFFFF03FFFFFFE800407FFFFF +F2017FFFFFF000007FFE1004020103FFF01000BFE020080402013FE020011F8040100804020FC0 +40020F008020100804038080040601004020100803010008040200804020100402001008040100 +804020080400201008020100804010080040201004020100802010000000000000000000000008 +555581D353>97 D<00000001F00000000000000003F80000000000000007FC0000000000000007 +FC0000000000000007FC0000000000000007FC0000000000000007FC0000000000000003F80000 +000000000001F00000000000000000400000000000000001F00000000000000003F80000000000 +000007FC000000000000001FFF000000000000003FFF80000000000000FFFFE0000000000001FF +FFF0000000000007FFFFFC00000000000FFFFFFE00000000001FFFFFFF00000000003FFFFFFF80 +000000007FFF9FFFC000000000FFFF9FFFE000000000FFFF9FFFE000000001FFFF9FFFF0000000 +01FFF001FFF000000001FFF001FFF000000003FFFF9FFFF800000003FFFF9FFFF800000003FFFF +9FFFF800000003FFFF9FFFF800000003FFFFFFFFF800000003FFFFFFFFF800000003FFFFFFFFF8 +00000001FFFFFFFFF000000001FFFFFFFFF000000000FFFFFFFFE000000000FFFFFFFFE0000000 +007FF803FFC0000000003F80003F80000000001E03F80F00000000000E3FFF8E000000000007FF +FFFC000000000007FFFFFC00000000000FFFFFFE00000000000FFFFFFE00000000000FFFFFFE00 +000000000FF001FE00000000001F80003F00000000001E07FC0F0000000000183FFF8300000000 +0018FFFFE300000000000BFFFFFA000000000003FFFFF8000000000000FFFFE00000000000000F +FE0000000000000001F00000000000000003F8000000000000000FFE000000000000003FFF8000 +0000003FFFFFFFFFFF800003FFFFFFFFFFFFF8000FFFFFFFFFFFFFFE001FFFFFFF1FFFFFFF007F +FFFFFC07FFFFFFC0FFFFFFE000FFFFFFE0FFFC0000000007FFE07FC000000000007FC03F000000 +0000001F801C0000000000000700080000000000000200434778CA53>I<C00000000000000000 +000000402008040201004020100080401008040200804020010080201018040100804002010040 +20300802010080040200804030100402010008040100807020080402001008020100B040100804 +00201004020FFF8020100800402008040FFF804020100000401008043200804020100080201008 +340100804020010040201038020100804002008040203004020100800401008040300804020100 +08020100807010080402001004020100B020100804002008040201F84020100800401008040304 +80402010000020100806030080402010004020100CF901008040200080402015FD020100804001 +00804029FC8402010080020100804BFE8804020100040201008BFE90080402000807FE010BFEA0 +11FE0400100C03820BFEC02E0188002023F8640BFE8070FE3000404FFE180BFE80C3FF9000009F +FF840BFE810FFFC81001BFFFE305FD063FFFE420013FFFF095FD087FFFE440037FFFFC65FD11FF +FFF480067FFFFE25FD23FFFFF3000A7FFFFF12FA47FFFFF200127FFFFF8AFA8FFFFFF200227FFF +FFC6FB1FFFFFF200427FFFFFE7753FFFFFF200027FFFFFF3767FFFFFF210013FFFFFF1747FFFFF +E420013FFFFFF9ACFFFFFFE440029FFFFFFCA9FFFFFFC880049FFFFFFC89FFFFFFC900084FFFFF +FE8BFFFFFF92001027FFFFFE53FFFFFF24002027FFFFFE53FFFFFF28004033FFFFFF57FFFFFE50 +000049FFFFFF77FFFFFCA0100084FFFFFF77FFFFF940200104FFFFFF27FFFFF9804002027FFFFF +27FFFFF3008004013FFC000001FFE6010008033F800000000FE40200100498001FFFC000C80400 +20088007FFFFFF000808004010607FFFFFFFF0301000002027FFFFFFFFFF20201000403FFFFFFF +FFFFE0402000807FFFFFFFFFFFE080400100BFFFFFFFFFFFE1008002013FFFC0001FFFE2010004 +023FF00000007FE4020008043F001FFFC007E8040010083807FFFFFF00F008002010307FFFFFFF +F0601000402033FFFFFFFFFE60200000403FFFC0001FFFE0401000807FF8000000FFE080200100 +BF801FFFC00FE1004002013C03FFFFFE01E200800402303FFFFFFFE0640100080421FFFFFFFFFC +280200100807FFFFFFFFFF10040020100BFFFFFFFFFE2008004020103FFFFFFFE0401000004020 +11FFFFFD0080201000804020080402010040200100804010080402008040020100802010080401 +008004020100402010080201000804020080402010040200100804010080402008040020100802 +0100804010080040201004020100802010000000000000000000000008555581D353>106 +D<00000000040000000000000000000C0000000000000000000C0000000000000000000C000000 +0000000000000C000000000000000003FFE00000000000000003FFE000000000000000000C0000 +000000000000000C0000000000000000000C0000000000000000000C0000000000000000000C00 +00000000000000000C0000000000000000000C0000000000000000003E00000000000000000045 +000000000000000000808000000000000000013E4000000000000000017F400000000000000002 +7F200000000000000002FFA00000000000000002FFA00000000000FF0002FFA0007F80000300E0 +02FFA00380600008FE1802FFA00C3F880013FF8602FFA030FFE40027FFE102FFA043FFF2004FFF +F8C17F418FFFF9004FFFFC217F421FFFF9005FFFFF117F447FFFFD009FFFFF897F48FFFFFC809F +FFFFC4BE91FFFFFC809FFFFFE2BEA3FFFFFC809FFFFFF1BEC7FFFFFC809FFFFFF95D4FFFFFFC80 +9FFFFFFCDD9FFFFFFC804FFFFFFC5D1FFFFFF9004FFFFFFE6B3FFFFFF90027FFFFFF2A7FFFFFF2 +0027FFFFFF227FFFFFF20013FFFFFFA2FFFFFFE40009FFFFFF94FFFFFFC80009FFFFFF94FFFFFF +C80004FFFFFFD5FFFFFF9000027FFFFFDDFFFFFF2000013FFFFFDDFFFFFE4000013FFFFFC9FFFF +FE4000009FFFFFC9FFFFFC8000004FFF0000007FF90000004FE000000003F9000000260007FFF0 +00320000002001FFFFFFC002000000181FFFFFFFFC0C00000009FFFFFFFFFFC80000000FFFFFFF +FFFFF80000000FFFFFFFFFFFF80000000FFFFFFFFFFFF80000000FFFF00007FFF80000000FFC00 +00001FF80000000FC007FFF001F80000000E01FFFFFFC0380000000C1FFFFFFFFC180000000CFF +FFFFFFFF980000000FFFF00007FFF80000000FFE0000003FF80000000FE007FFF003F80000000F +00FFFFFF80780000000C0FFFFFFFF818000000087FFFFFFFFF0800000001FFFFFFFFFFC0000000 +00FFFFFFFFFF80000000000FFFFFFFF80000000000007FFFFF0000000049497BD053>I<C00000 +0000000000000000004020080402010040201000804010080402008040200100802010F8040100 +80400201004021FC08020100800402008043FE10040201000804010083FE2008040200100803C1 +03FE401E080400201007E203FE803F10080040200FF403FF007FA0100000401FF805FE00FFC020 +1000802FF008FC017F80402001004FF01028027F808040078087E02070043F010F800FC103C040 +70081E021F801FE2018080701008043FC01FE402C100F02018083FC03FE805C20170403C103FC0 +5FF009C40270805C203FC01FE011E804F900BC403FD00FC021F008FA013C805FA0078041E010FC +023D008F4001C081F020F8047E01188002C101F040F8087C02190004E201F080F8107C043A0008 +E403F901FC20FC083C0010F805FA01FC40FC10780020F009FC01FC81FC207800407811FC03FD01 +FC40F000007821FC05FE01FC80F01000F841FE09FC03FD00F020017C81FE13FE07FE01F040027D +01FE23FE0BFC03F080047E01FF43FE17FC07F100087E03FF83FE27FE0BF200107F07FF03FE47FE +17F400203F0BFF87FF8FFE27E800403F93FF87FF0FFE4FF000007FA3FF87FF0FFE8FE01000BFC3 +FFCFFF1FFF1FE020013FC3FFD7FF1FFE1FE040023FE3FFE7FF1FFE3FE080043FE3FFEFFFBFFE3F +E100083FF3FFEFFFBFFE7FE200101FF3FFEFFFFFFE7FC400201FFFFFFFFFFFFEFFC800403FFBFF +FFFFFFFEFFD000005FFFFFFFFFFFFFFFE010009FFFFFFFFFFFFFFFC020011FFFFFFFFFFFFFFFC0 +40021FFFFFFFFFFFFFFFC080040FFFFFFFFFFFFFFF81000807FFFFFFFFFFFFFF02001007FFFFC0 +001FFFFF0400200BFFF8000000FFFE08004011FF801FFFC00FFC10000020FC03FFFFFE01F82010 +0040603FFFFFFFE0304020008061FFFFFFFFFC3080400100BFFFFFFFFFFFE1008002013FFFF000 +7FFFE2010004021FFE000003FFC4020008041FF007FF007FC8040010080FC0FFFFF81F90080020 +100F07FFFFFF07A010004020141FFFFFFFC14020000040247FFFFFFFF180401000804FFFFFFFFF +FF80802001008FFFC0001FFF81004002010FF8000000FF82008004021F801FFFC00FC401000804 +1C03FFFFFE01C802001008303FFFFFFFE0700400201021FFFFFFFFFC200800402027FFFFFFFFFF +20100000402FFFFFFFFFFF802010008041FFFFFFFFFD0040200100805FFFFFFFC2008040020100 +802010080401008004020100402010080201000804020080402010040200100804010080402008 +0400201008020100804010080040201004020100802010000000000000000000000008555581D3 +53>I<C00000000000000000000000402008040201004020100080401008040200804020010080 +201008040100804002010040201008020100800402008040201004020100080401008040200804 +02001008020102804010080400201007020700802010080040200BC40F010040201000004013E8 +1F020080402010008023F83F040100804020010043FE7F880201008040020083FFFF9004020100 +80040103FFFFE00804020100080203FFFFC01008040200100403FFFFFFF810080400200805FFFF +C00F2010080040100BFFFFC000C0201000002013FFFFFFE020402010004027FFFFFFFE18804020 +00804FFFFFFFFF8500804001009FFFFFFFFFC201008002013FFFFFFFFFF102010004027FFFFFFF +FFF88402000804FF1FFFFFFFFC4804001008FE3FFFFFFFFE1008002010FC3FFFFFFFFF20100040 +20FC7FFFFFFFFF1020000040F8FFFFFFFFFF9040100080F1FFFFFFFFFF8880200100F7FFFFFFFF +FFC900400201FFFFFFFFFFFFC600800403FFFFFFFFFFFFE401000805FFFFFFFFFFFFE00200100B +FFFFFFFFFFFFF204002013FFFFFFFFFFFFF208004027FFFFFFFFFFFFF110000047FFFFFFFFFFFF +F92010008FFFFFFFFFFFFFF94020011FFFFFFFFFFFFFF88040023FFFFFFFFFFFFFFC8080043FFF +FFFF3FFFFFFC8100087FFFFFFE7FFFFFFC820010FFFFFFF8BFFFFFFC440020FFFFFFF13FFFFFFE +480041FFFFFFC23FFFFFFE500001FFFFFF043FFFFFFE601001E7FFFC083FFFFFFE202003C3FFF0 +103FFFFFFF20400383FFE0207FFFFFFF20800787FFC0407FFFFFFF21000B8FFF80807FFFFFFF32 +0013BFFF0100FFFFFFFF140021FFFF0201FFFFFFFF980041FFFE0402FFFFFFFF900000FFFE0805 +FFFFFFFF9010007FFC100BFFFFFFFF9020009FFC2013FFFFFFFF98400101F84027FFFFFFFF9880 +0201F0804FFFFFFFFF89000402E1009FFFFFFFFFCA00080402013FFFFFFFFFCC00100804027FFF +FFFFFFC80020100804FFFFFFFFFFC80040201009FFFFFFFFFFCC0000402013FFFFFFFFFFCC1000 +804027FFFFFFFFFFCC200100804FFFFFFFFFFFCC400201008FFFFFFFFFFFC4800402011FFFFFFF +FFFFE5000804021FFFFFFFFFFFE6001008043FFFFFFFFFFFE4002010083FFFFFFFFFFFE4004020 +103FFFFFFFFFFFE4000040203FFFFFFFFFFFE4100080403FFFFFFFFFFFFC200100807FFFFFFFFF +FFFC40020100802010080401008004020100402010080201000804020080402010040200100804 +010080402008040020100802010080401008004020100402010080201000000000000000000000 +0008555581D353>I<0000000080000000000000C00180000000000000F003C0000000000000F8 +07C0000000000000FE0FC0000000000000FF9FE0000000000000FFFFE0000000000000FFFFF000 +0000000000FFFFF0000000000000FFFFFFFE00000000007FFFF003C000000000FFFFF000300000 +0000FFFFFFF80800000001FFFFFFFF8600000003FFFFFFFFE100000007FFFFFFFFF08000000FFF +FFFFFFFC4000001FFFFFFFFFFE2000003FC7FFFFFFFF1000003F8FFFFFFFFF8000003F0FFFFFFF +FFC800003F1FFFFFFFFFC400003E3FFFFFFFFFE400003C7FFFFFFFFFE200003DFFFFFFFFFFF200 +003FFFFFFFFFFFF100007FFFFFFFFFFFF900007FFFFFFFFFFFF80000FFFFFFFFFFFFFC8000FFFF +FFFFFFFFFC8001FFFFFFFFFFFFFC4001FFFFFFFFFFFFFE4003FFFFFFFFFFFFFE4007FFFFFFFFFF +FFFE200FFFFFFFFFFFFFFF200FFFFFFFCFFFFFFF201FFFFFFF8FFFFFFF203FFFFFFE0FFFFFFF10 +3FFFFFFC0FFFFFFF907FFFFFF00FFFFFFF907FFFFFC00FFFFFFF9079FFFF000FFFFFFF88F0FFFC +000FFFFFFFC8E0FFF8001FFFFFFFC8E1FFF0001FFFFFFFC8E3FFE0001FFFFFFFCCEFFFC0001FFF +FFFFC47FFFC0003FFFFFFFE47FFF80003FFFFFFFE43FFF80007FFFFFFFE41FFF0000FFFFFFFFE4 +07FF0000FFFFFFFFE6007E0001FFFFFFFFE6007C0003FFFFFFFFE200380007FFFFFFFFF2000000 +0FFFFFFFFFF20000001FFFFFFFFFF20000003FFFFFFFFFF20000007FFFFFFFFFF3000000FFFFFF +FFFFF3000001FFFFFFFFFFF3000003FFFFFFFFFFF3000003FFFFFFFFFFF1000007FFFFFFFFFFF9 +000007FFFFFFFFFFF900000FFFFFFFFFFFF900000FFFFFFFFFFFF900000FFFFFFFFFFFF900000F +FFFFFFFFFFF900000FFFFFFFFFFFFF00000FFFFFFFFFFFFF48477BCC53>I<C000000000000000 +000000004020080402010040201000804010080402008040200100802010080401008040020100 +402010080201008004020080402010040201000804010080402008040200100802010080401008 +040020100402010080201008004020080403FD00402010000040100807FF008040201000802010 +0FFF8100804020010040201FFFC201008040020080403FFFC402010080040100807FFFE8040201 +0008020100BFFFF008040200100402013FFFE010080400200804023FFFE020100800401008043F +FFE040201000002010081FFFC080402010004020101FFFC100804020008040201FFF8201008040 +0100804027FF04020100800201008047FF080402010004020100BFFFF00804020008040201FFFF +F81008040010080403FFFFFC2010080020100807FFFFFE402010004020100BFFFFFE8040200000 +402017FFFFFF0080401000804027FFFFFF010080200100804FFFFFFF820100400201008FFFFFFF +840200800402010FFFFFFF880401000804020FFFFFFF900802001008040FFFFFFFA01004002010 +080FFFFFFFC02008004020100FFFFFFF804010000040200FFFFFFF8080201000804017FFFFFF01 +00402001008027FFFFFF0200804002010043FFFFFE0401008004020083FFFFFE08020100080401 +01FFFFFC1004020010080201FFFFF820080400201004023FFFE040100800402008047FFFF08020 +100000401009FFFFFD0040201000802017FFFFFF008040200100403FFFFFFFC10080400200807F +FFFFFFE2010080040100FFFFFFFFF4020100080201FFFFFFFFF8040200100403FFFFFFFFFC0804 +00200807FFFFFFFFFE10080040100BFFFFFFFFFE201000002017FFFFFFFFFF40201000402FFFFF +FFFFFF80402000804FFFFFFFFFFF80804001009FFFFFFFFFFFC1008002011FFFFFFFFFFFC20100 +04021FFFFFFFFFFFC4020008043FFFFFFFFFFFE8040010083FFFFFFFFFFFF0080020103FFFFFFF +FFFFE0100040207FFFFFFFFFFFF0200000407FFFFFFFFFFFF0401000807FFFFFFFFFFFF0802001 +00FFFFFFFFFFFFF1004002017FFFFFFFFFFFF2008004027FFFFFFFFFFFF4010008047FFFFFFFFF +FFF8020010087FFFFFFFFFFFF0040020107FFFFFFFFFFFF0080040207FFFFFFFFFFFF010000040 +7FFFFFFFFFFFF02010008040200804020100402001008040100804020080400201008020100804 +010080040201004020100802010008040200804020100402001008040100804020080400201008 +020100804010080040201004020100802010000000000000000000000008555581D353>I<0000 +03F800000000000FFE00000000001FFF00000000003FFF80000000003FFF80000000007FFFC000 +0000007FFFC0000000007FFFC0000000007FFFC0000000007FFFC0000000003FFF80000000003F +FF80000000001FFF00000000000FFE00000000000FFE00000000007FFFC000000001FFFFF00000 +0003FFFFF800000007FFFFFC00000007FFFFFC0000000FFFFFFE0000000FFFFFFE0000001FFFFF +FF0000001FFFFFFF0000001FFFFFFF0000001FFFFFFF0000001FFFFFFF0000001FFFFFFF000000 +1FFFFFFF0000001FFFFFFF0000000FFFFFFE0000000FFFFFFE00000007FFFFFC00000007FFFFFC +00000003FFFFF800000001FFFFF0000000007FFFC000000000FFFFE000000003FFFFF80000000F +FFFFFE0000003FFFFFFF8000007FFFFFFFC00000FFFFFFFFE00001FFFFFFFFF00003FFFFFFFFF8 +0007FFFFFFFFFC0007FFFFFFFFFC000FFFFFFFFFFE001FFFFFFFFFFF001FFFFFFFFFFF003FFFFF +FFFFFF803FFFFFFFFFFF803FFFFFFFFFFF807FFFFFFFFFFFC07FFFFFFFFFFFC07FFFFFFFFFFFC0 +FFFFFFFFFFFFE0FFFFFFFFFFFFE0FFFFFFFFFFFFE0FFFFFFFFFFFFE0FFFFFFFFFFFFE0FFFFFFFF +FFFFE0FFFFFFFFFFFFE0FFFFFFFFFFFFE0FFFFFFFFFFFFE0FFFFFFFFFFFFE0FFFFFFFFFFFFE033 +4370CA53>I<0000000007C000000000000000000FE000000000000000001FF000000000000000 +001FF00000000000001E001FF000F0000000003F001FF001F8000000007F801FF003FC00000000 +7F800FE003FC000000007F8007C003FC000000007F80010003FC00003C003F00038001F800787E +001E00038000F000FCFF0004000380004001FEFF000600038000C001FEFF000E00038000E001FE +FF000E00038000E001FEFF000F0007C001E001FE7E000F0007C001E000FC3C000F0007C001E000 +7806000F8007C003E000C006000F8007C003E000C007000F8007C003E001C007000FC00FE007E0 +01C007800FC00FE007E003C007800FE00FE00FE003C003C00FE00FE00FE0078003C00FE00FE00F +E0078003C00FF00FE01FE0078003E00FF01FF01FE00F8003E00FF01FF01FE00F8003F00FF81FF0 +3FE01F8003F01FF81FF03FF01F8003F81FF81FF03FF03F8001F81FFC3FF87FF03F0001FC1FFC3F +F87FF07F0001FC1FFC3FF87FF07F0001FE1FFE3FF8FFF0FF0001FE1FFE3FF8FFF0FF0001FF1FFE +3FF8FFF1FF0001FF1FFF7FFDFFF1FF0001FF9FFF7FFDFFF3FF0000FF9FFF7FFDFFF3FE0000FFDF +FFFFFFFFF7FE0000FFDFFFFFFFFFF7FE0000FFFFFFFFFFFFFFFE0000FFFFFFFFFFFFFFFE0000FF +FFFFFFFFFFFFFE0000FFFFFFFFFFFFFFFE00007FFFFFFFFFFFFFFC00003FFFFFFFFFFFFFF80000 +3FFFFE0000FFFFF800001FFFC0000007FFF000000FFC00FFFE007FE0000007E01FFFFFF00FC000 +000301FFFFFFFF01800000030FFFFFFFFFE180000001FFFFFFFFFFFF00000001FFFF8003FFFF00 +000000FFF000001FFE00000000FF803FF803FE000000007E07FFFFC0FC00000000783FFFFFF83C +0000000020FFFFFFFE080000000023FFFFFFFF88000000007FFFFFFFFFFC000000007FFE0000FF +FC000000007FC0000007FC00000000FC00FFFE007E00000000E01FFFFFF00E0000000181FFFFFF +FF03000000010FFFFFFFFFE1000000013FFFFFFFFFF9000000007FFFFFFFFFFC000000000FFFFF +FFFFE00000000000FFFFFFFE0000004F4B7ED053>I<3FF007FF007FE03FF007FF007FE03FF007 +FF007FE03FF007FF007FE03FF007FF007FE03FFFFFFFFFFFE03FFFFFFFFFFFE03FFFFFFFFFFFE0 +3FFFFFFFFFFFE03FFFFFFFFFFFE030000000000060300000000000400FFFFFFFFFFF8007FFFFFF +FFFE0001FFFFFFFFFC0000FFFFFFFFF0000030000000600000100000004000001FFFFFFFC00000 +1FFFFFFFC000001FFFFFFFC000001FFFFFFFC000001FFFFFFFC000001FFFFFFFC000001FFFFFFF +C000001FFFFFFFC000001FFFFFFFC000001FFFFFFFC000001FFFFFFFC000001FFFFFFFC000001F +FFFFFFC000001FFFFFFFC000001FFFFFFFC000001FFFFFFFC000001FFFFFFFC000001FFFFFFFC0 +00001FFFFFFFC000001FFFFFFFC000001FFFFFFFC000001FFFFFFFC000001FFFFFFFC000001000 +0000400000100000006000003FFFFFFFF000007FFFFFFFF80000FFFFFFFFFC0001FFFFFFFFFE00 +03FFFFFFFFFF0000000000000000080000000000800FFFFFFFFFFF800FFFFFFFFFFF800FFFFFFF +FFFF800FFFFFFFFFFF800FFFFFFFFFFF8008000000000080080000000000F8FFFFFFFFFFFFF8FF +FFFFFFFFFFF8FFFFFFFFFFFFF8FFFFFFFFFFFFF8FFFFFFFFFFFFF8FFFFFFFFFFFFF8353F71C653 +>I<C0000000000000000000000040200804020100402010008040100804020080402001008020 +100804010080400201004020100802010080040200804020100402010008040100804020080402 +001008020100804010080400201004020100802010080040200804020100402010000040100804 +020080402010008020100804010080402001004020100802010080400200BFF027FF047FE10080 +04013FF047FF087FE2010008023FF087FF107FE4020010043FF107FF207FE8040020083FF207FF +407FF0080040103FFFFFFFFFFFE0100000203FFFFFFFFFFFE0201000403FFFFFFFFFFFE0402000 +807FFFFFFFFFFFE080400100BFFFFFFFFFFFE10080020130000000000062010004023000000000 +0044020008040FFFFFFFFFFF880400100807FFFFFFFFFE100800201009FFFFFFFFFC2010004020 +10FFFFFFFFF0402000004020300000006080401000804030000000410080200100805FFFFFFFC2 +0100400201009FFFFFFFC40200800402011FFFFFFFC80401000804021FFFFFFFD0080200100804 +1FFFFFFFE01004002010081FFFFFFFC02008004020101FFFFFFFC04010000040201FFFFFFFC080 +20100080401FFFFFFFC10040200100803FFFFFFFC20080400201005FFFFFFFC40100800402009F +FFFFFFC80201000804011FFFFFFFD00402001008021FFFFFFFE00804002010041FFFFFFFC01008 +004020081FFFFFFFC02010000040101FFFFFFFC04020100080201FFFFFFFC08040200100403FFF +FFFFC10080400200805FFFFFFFC20100800401009FFFFFFFC40201000802011FFFFFFFC8040200 +1004021FFFFFFFD0080400200804100000006010080040100810000000602010000020103FFFFF +FFF04020100040207FFFFFFFF8804020008040FFFFFFFFFD008040010081FFFFFFFFFE01008002 +0103FFFFFFFFFF0201000402000000000000040200080408000000000088040010080FFFFFFFFF +FF90080020100FFFFFFFFFFFA0100040201FFFFFFFFFFFC0200000402FFFFFFFFFFF8040100080 +4FFFFFFFFFFF80802001008800000000008100400201080000000000FA00800402FFFFFFFFFFFF +FC01000804FFFFFFFFFFFFF802001008FFFFFFFFFFFFF804002010FFFFFFFFFFFFF808004020FF +FFFFFFFFFFF810000040FFFFFFFFFFFFF820100080402008040201004020010080401008040200 +804002010080201008040100800402010040201008020100080402008040201004020010080401 +008040200804002010080201008040100800402010040201008020100000000000000000000000 +08555581D353>I E /Fh 49 122 df<00F000030C000E06041C07043807083007087007907007 +90E003A0E003A0E003C0E00380E00380E00380600780601B883061900F80E016127E911B>11 +D<0001F000061800080C00100C00200E00400E00800E00801C01001C010018010038020FF00210 +C0020FE00200300400300400300400380400380800700800700800700800E01800E01800C01401 +80140300230E0020F80020000020000040000040000040000040000080000080000017257F9C17 +>I<60F0F06004047C830C>58 D<60F0F0701010101020204080040C7C830C>I<0000038000000F +0000003C000000F0000003C000000F0000003C000000F0000003C000000F0000003C000000F000 +0000F00000003C0000000F00000003C0000000F00000003C0000000F00000003C0000000F00000 +003C0000000F000000038019187D9520>I<00010003000600060006000C000C000C0018001800 +180030003000300060006000C000C000C0018001800180030003000300060006000C000C000C00 +180018001800300030003000600060006000C000C00010297E9E15>I<E0000000780000001E00 +00000780000001E0000000780000001E0000000780000001E0000000780000001E000000078000 +00078000001E00000078000001E00000078000001E00000078000001E00000078000001E000000 +78000000E000000019187D9520>I<00000C0000000C0000001C0000001C0000003C0000007C00 +00005C0000009C0000008E0000010E0000010E0000020E0000040E0000040E0000080E0000080E +0000100E0000200E00003FFE000040070000400700008007000100070001000700020007000200 +0700060007001E000700FF807FF01C1D7F9C1F>65 D<01FFFF00003C01C0003800E0003800F000 +3800700038007000700070007000F0007000F0007001E000E003C000E0078000E01F0000FFFC00 +01C00F0001C0078001C003C001C003C0038003C0038003C0038003C0038003C007000780070007 +0007000E0007001C000E007800FFFFC0001C1C7E9B1F>I<0001F808000E061800380138006000 +F001C0007003800070070000300F0000200E0000201C0000203C0000203C000000780000007800 +000078000000F0000000F0000000F0000000F0000000F0000100F0000100F00001007000020070 +00020030000400380008001C0010000E0060000701800000FE00001D1E7E9C1E>I<01FFFF8000 +3C01E000380070003800380038001C0038001C0070001C0070001E0070001E0070001E00E0001E +00E0001E00E0001E00E0001E01C0003C01C0003C01C0003C01C000380380007803800070038000 +F0038000E0070001C0070003800700070007001C000E007800FFFFC0001F1C7E9B22>I<01FFFF +F8003C0078003800180038001000380010003800100070001000700010007010100070100000E0 +200000E0200000E0600000FFE00001C0400001C0400001C0400001C04000038080400380004003 +80008003800080070001000700010007000300070006000E003E00FFFFFC001D1C7E9B1F>I<01 +FFFFF0003C00F00038003000380020003800200038002000700020007000200070102000701000 +00E0200000E0200000E0600000FFE00001C0400001C0400001C0400001C0400003808000038000 +000380000003800000070000000700000007000000070000000F000000FFF000001C1C7E9B1B> +I<01FFC3FF80003C0078000038007000003800700000380070000038007000007000E000007000 +E000007000E000007000E00000E001C00000E001C00000E001C00000FFFFC00001C003800001C0 +03800001C003800001C0038000038007000003800700000380070000038007000007000E000007 +000E000007000E000007000E00000F001E0000FFE1FFC000211C7E9B23>72 +D<03FFC0003C0000380000380000380000380000700000700000700000700000E00000E00000E0 +0000E00001C00001C00001C00001C0000380000380000380000380000700000700000700000700 +000F0000FFF000121C7E9B12>I<01FFC07F80003C001E00003800180000380020000038004000 +0038008000007002000000700400000070080000007010000000E040000000E0C0000000E1E000 +0000E2E0000001C470000001D070000001E038000001C0380000038038000003801C000003801C +000003800E000007000E000007000E0000070007000007000700000F00078000FFE03FF000211C +7E9B23>75 D<01FFE0003C0000380000380000380000380000700000700000700000700000E000 +00E00000E00000E00001C00001C00001C00001C00003800203800203800203800407000407000C +0700180700380E00F0FFFFF0171C7E9B1C>I<01FE0000FF003E0000F0002E0001E0002E0002E0 +002E0002E0002E0004E0004E0009C0004E0009C000470011C000470011C0008700238000870043 +800087004380008700838001070107000107010700010382070001038207000203840E00020388 +0E000203880E000203900E000403A01C000403A01C000401C01C000C01C01C001C01803C00FF81 +03FF80281C7E9B28>I<01FC00FF80001C001C00002E001800002E001000002E00100000270010 +0000470020000043002000004380200000438020000081C040000081C040000081C040000080E0 +40000100E080000100708000010070800001007080000200390000020039000002003900000200 +1D000004001E000004000E000004000E00000C000E00001C00040000FF80040000211C7E9B21> +I<0003F800000E0E000038038000E001C001C001C0038000E0070000E00F0000F01E0000F01C00 +00F03C0000F03C0000F0780000F0780000F0780000F0F00001E0F00001E0F00001E0F00003C0F0 +0003C0F0000780F0000780F0000F0070000E0070001C00380038003C0070001C01C00007078000 +01FC00001C1E7E9C20>I<01FFFF00003C03C0003800E0003800F00038007000380070007000F0 +007000F0007000F0007000E000E001E000E003C000E0078000E01E0001FFF00001C0000001C000 +0001C0000003800000038000000380000003800000070000000700000007000000070000000F00 +0000FFE000001C1C7E9B1B>I<0003F800000E0E000038038000E001C001C001C0038000E00700 +00E00F0000F01E0000F01C0000F03C0000F03C0000F0780000F0780000F0780000F0F00001E0F0 +0001E0F00001E0F00003C0F00003C0F0000380F0000780F0000F00703C0E0070421C0038823800 +388370001C83C0000787810001FF8100000383000003820000038E000003FC000003F8000001F8 +000001E0001C257E9C21>I<01FFFE00003C03C0003800E0003800F00038007000380070007000 +F0007000F0007000F0007001E000E001C000E0078000E01E0000FFF00001C0300001C0180001C0 +1C0001C01C0003801C0003801C0003801C0003801C0007003C0007003C0807003C0807003C100F +001E10FFE00E20000007C01D1D7E9B20>I<000FC100303300400F008006018006030006030006 +06000406000407000007000007800003F00001FF0000FFC0003FE00003E00000F0000070000030 +0000302000302000306000606000606000C0600080F00300CC060083F800181E7E9C19>I<1FFF +FFF01C03807030070030200700206007002040070020400E0020800E0020800E0020000E000000 +1C0000001C0000001C0000001C0000003800000038000000380000003800000070000000700000 +007000000070000000E0000000E0000000E0000000E0000001E000007FFF00001C1C7F9B18>I< +7FF03FE00F0007000E0006000E0004000E0004000E0004001C0008001C0008001C0008001C0008 +003800100038001000380010003800100070002000700020007000200070002000E0004000E000 +4000E0004000E0008000E0008000E00100006002000060040000300800001830000007C000001B +1D7D9B1C>I<FFC00FF01E0003801C0003001C0002001C0004001E0004000E0008000E0008000E +0010000E0020000E0020000E0040000E0080000E0080000F010000070100000702000007040000 +0704000007080000071800000710000007A0000003A0000003C000000380000003800000030000 +00030000001C1D7D9B18>I<FFC1FFC1FF1C003C003C1C001C00101C001C00201C003C00201C00 +7C00401C005C00401C009C00801C009C00801C011C01001C011C01001C021C02001C021C04001C +041C04001C081C08001E081C08000E101C10000E101C10000E200E20000E200E60000E400E4000 +0E400E80000E800E80000F000F00000F000F00000E000E00000E000E00000C000C00000C000800 +00281D7D9B27>I<00800080208020802080208020802080208020E027E03FE0FF80FC80E08020 +802080208020802080208020802080208020802080208020E027E03FE0FF80FC80E08020802080 +20802080200020000B277E9D10>93 D<01E3000717000C0F00180F00380E00300E00700E00700E +00E01C00E01C00E01C00E01C00E03880E03880E038806078803199001E0E0011127E9116>97 +D<01F0030C0E0C1C1E383C301870007000E000E000E000E000E000E0046008601030601F800F12 +7E9112>99 D<0007E00000E00000E00001C00001C00001C00001C0000380000380000380000380 +01E7000717000C0F00180F00380E00300E00700E00700E00E01C00E01C00E01C00E01C00E03880 +E03880E038806078803199001E0E00131D7E9C16>I<01F007080C0818043808300870307FC0E0 +00E000E000E000E000E0046008601030600F800E127E9113>I<0001E0000630000E78000CF000 +1C60001C00001C00001C00003C0000380000380003FFC000380000380000700000700000700000 +700000700000E00000E00000E00000E00000E00001C00001C00001C00001C00001C00001800003 +8000038000630000F30000F60000E4000078000015257E9C14>I<007180018B80030780060780 +0E07000C07001C07001C0700380E00380E00380E00380E00381C00381C00381C00183C0008F800 +073800003800003800007000607000F06000F0E000E180007E0000111A7F9114>I<0FC00001C0 +0001C0000380000380000380000380000700000700000700000700000E3E000EC3000F03800E03 +801E03801C03801C03801C0380380700380700380700380E00700E20700E20701C20701C40E00C +80600700131D7E9C18>I<01C003C003C001800000000000000000000000001C00270047004700 +870087000E000E001C001C001C003800388038807080710032001C000A1C7E9B0E>I<0FC00001 +C00001C0000380000380000380000380000700000700000700000700000E07000E18800E21C00E +23C01C47801C83001D00001E00003F800039C00038E00038E00070E10070E10070E10070E200E0 +6200603C00121D7E9C16>107 D<1F800380038007000700070007000E000E000E000E001C001C +001C001C0038003800380038007000700070007000E400E400E400E40064003800091D7E9C0C> +I<381F004E61804681C04701C08F01C08E01C00E01C00E01C01C03801C03801C03801C07003807 +10380710380E10380E2070064030038014127E9119>110 D<00F800030C000E06001C03001803 +00300300700380700380E00700E00700E00700E00E00E00E00E01C0060180060300030E0000F80 +0011127E9114>I<07078009C86008D03008E03011C03011C03801C03801C03803807003807003 +80700380600700E00700C00701800783000E86000E78000E00000E00001C00001C00001C00001C +00003C0000FF8000151A819115>I<01C206260C1E181E381C301C701C701CE038E038E038E038 +E070E070E07060F023E01CE000E000E001C001C001C001C003C01FF80F1A7E9113>I<383C4E42 +4687470F8E1E8E0C0E000E001C001C001C001C0038003800380038007000300010127E9113>I< +01F0060C04040C0E180C1C001F000FE00FF003F80038201C7018F018F010803060601F800F127E +9113>I<00C001C001C001C00380038003800380FFF00700070007000E000E000E000E001C001C +001C001C00382038203840384018800F000C1A80990F>I<1C00C02701C04701C04701C0870380 +8703800E03800E03801C07001C07001C07001C0700180E20180E20180E201C1E200C264007C380 +13127E9118>I<1C02270747074703870187010E010E011C021C021C021C041804180818081C10 +0C2007C010127E9114>I<1C00C02701C04701C04701C08703808703800E03800E03801C07001C +07001C07001C0700180E00180E00180E001C1E000C3C0007DC00001C00001800603800F03000F0 +6000E0C0004180003E0000121A7E9114>121 D E /Fi 48 123 df<00FCF807839C0E079C1C07 +081C07001C07001C07001C07001C0700FFFFE01C07001C07001C07001C07001C07001C07001C07 +001C07001C07001C07001C07001C0700FF1FE01617809615>11 D<00FC000782000E07001C0700 +1C02001C00001C00001C00001C0000FFFF001C07001C07001C07001C07001C07001C07001C0700 +1C07001C07001C07001C07001C0700FF1FE01317809614>I<60F0F070101020204040040A7D96 +0A>39 D<60F0F070101020204040040A7D830A>44 D<60F0F06004047D830A>46 +D<07C018303018701C600C600CE00EE00EE00EE00EE00EE00EE00EE00EE00E600C600C701C3018 +1C7007C00F157F9412>48 D<0F8030E040708030C038E0384038003800700070006000C0018003 +0006000C08080810183FF07FF0FFF00D157E9412>50 D<00300030007000F001F0017002700470 +08701870107020704070C070FFFE0070007000700070007003FE0F157F9412>52 +D<01F00608080C181C301C70006000E000E3E0EC30F018F00CE00EE00EE00E600E600E300C3018 +183007C00F157F9412>54 D<FFFE001C03801C00E01C00601C00701C00701C00701C00701C00E0 +1C01C01FFF801FFFC01C00E01C00701C00301C00381C00381C00381C00381C00701C00E01C01C0 +FFFF0015177F9619>66 D<00FC100383300E00B01C0070380030300030700010600010E00010E0 +0000E00000E00000E00000E00000E000106000107000103000203800201C00400E008003830000 +FC0014177E9619>I<FFFFE01C00E01C00601C00201C00101C00101C00101C04001C04001C0400 +1C0C001FFC001C0C001C04001C04081C04081C00081C00181C00101C00101C00301C00F0FFFFF0 +15177F9618>69 D<FFFFE01C00E01C00601C00201C00101C00101C00101C04001C04001C04001C +0C001FFC001C0C001C04001C04001C04001C00001C00001C00001C00001C00001C0000FFC00014 +177F9617>I<007E080381980600580C0038180018300018700008700008E00008E00000E00000 +E00000E00000E003FEE000387000387000383000381800380C00380600380380D8007F0817177E +961C>I<FFE00E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E +000E000E000E000E00FFE00B177F960D>73 D<FFC0001C00001C00001C00001C00001C00001C00 +001C00001C00001C00001C00001C00001C00001C00001C00201C00201C00201C00601C00601C00 +401C00C01C03C0FFFFC013177F9616>76 D<FC00FE1E00381F001017001013801011C01011C010 +10E010107010103810103810101C10100E10100F101007101003901001D01001D01000F0100070 +100030380030FE001017177F961A>78 D<00FC000303000E01C01C00E038007030003070003860 +0018E0001CE0001CE0001CE0001CE0001CE0001CE0001C7000387000383000303800701C00E00E +01C003030000FC0016177E961B>I<0FC4302C601C400CC004C004C004E00070007F003FE00FF8 +01FC001C000E0006800680068006C004E008D81087E00F177E9614>83 D<7FFFF8603818403808 +403808803804803804803804003800003800003800003800003800003800003800003800003800 +00380000380000380000380000380000380007FFC016177F9619>I<FF80FE1C00381C00101C00 +101C00101C00101C00101C00101C00101C00101C00101C00101C00101C00101C00101C00101C00 +101C00100E0020060020030040018180007E0017177F961A>I<FF83FC1F01E00E008007008007 +810003820001C20001E40000E800007800007800003800007C00005E00008E0001870001078002 +03800601C00401E00C00E01C00F0FF03FE17177F961A>88 D<1FC0386038301038003803F81E38 +30387038E039E039E07970FF1F1E100E7F8D12>97 D<FC00001C00001C00001C00001C00001C00 +001C00001C00001C00001CF8001F06001C03001C03801C01801C01C01C01C01C01C01C01C01C01 +801C03801C03001B0E0010F8001217809614>I<07F01838303870106000E000E000E000E00060 +0070083008183007C00D0E7F8D10>I<007E00000E00000E00000E00000E00000E00000E00000E +00000E0007CE001C3E00300E00700E00600E00E00E00E00E00E00E00E00E00600E00700E00301E +00182E0007CFC012177F9614>I<0FC0186030307038E018FFF8E000E000E00060007008301018 +3007C00D0E7F8D10>I<03E006700E701C201C001C001C001C001C00FF801C001C001C001C001C +001C001C001C001C001C001C001C00FF800C1780960B>I<0F9E18E33060707070707070306018 +C02F80200060003FE03FF83FFC600EC006C006C006600C38380FE010157F8D12>I<FC00001C00 +001C00001C00001C00001C00001C00001C00001C00001C7C001D8E001E07001C07001C07001C07 +001C07001C07001C07001C07001C07001C07001C0700FF9FE01317809614>I<183C3C18000000 +00007C1C1C1C1C1C1C1C1C1C1C1C1CFF081780960A>I<03000780078003000000000000000000 +00001F800380038003800380038003800380038003800380038003800380038003804380E300E7 +007C00091D82960B>I<FC00001C00001C00001C00001C00001C00001C00001C00001C00001C3F +801C1C001C18001C20001C40001CC0001FE0001CF0001C70001C78001C3C001C1E001C1E00FF3F +C01217809613>I<FC001C001C001C001C001C001C001C001C001C001C001C001C001C001C001C +001C001C001C001C001C001C00FF80091780960A>I<FC7C1F001D8E63801E0781C01C0701C01C +0701C01C0701C01C0701C01C0701C01C0701C01C0701C01C0701C01C0701C01C0701C0FF9FE7F8 +1D0E808D1E>I<FC7C001D8E001E07001C07001C07001C07001C07001C07001C07001C07001C07 +001C07001C0700FF9FE0130E808D14>I<07C018303018600C600CE00EE00EE00EE00EE00E701C +3018183007C00F0E7F8D12>I<FCF8001F0E001C03001C03801C01801C01C01C01C01C01C01C01 +C01C01801C03801C07001F0E001CF8001C00001C00001C00001C00001C0000FF80001214808D14 +>I<07C2001C2600381E00700E00600E00E00E00E00E00E00E00E00E00600E00700E00301E001C +2E0007CE00000E00000E00000E00000E00000E00007FC012147F8D13>I<FCF01D381E381C101C +001C001C001C001C001C001C001C001C00FF800D0E808D0E>I<1F4060C0C040C040E000FF007F +801FC001E080608060C060E0C09F000B0E7F8D0E>I<080008000800180018003800FF80380038 +003800380038003800380038403840384038401C800F000A147F930E>I<FC3F001C07001C0700 +1C07001C07001C07001C07001C07001C07001C07001C07001C0F000E170003E7E0130E808D14> +I<FE1F3C0E3C0C1C081C080E100E100720072003C003C003C001800180100E7F8D13>I<FCFE7C +3838383838101C3C201C3C201C4C200E4E400E4E400E8640078780078780070380030300030300 +160E7F8D19>I<FE3F3C181C100E20074007C0038001C002E004F008701838383CFC7F100E7F8D +13>I<FE1F3C0E3C0C1C081C080E100E100720072003C003C003C00180018001000100E200E200 +A400780010147F8D13>I<FFF0C0E080E081C08380878007000E001E081C08381870107030FFF0 +0D0E7F8D10>I E /Fj 5 54 df<0C003C00CC000C000C000C000C000C000C000C000C000C000C +000C000C00FF8009107E8F0F>49 D<1F00618040C08060C0600060006000C00180030006000C00 +102020207FC0FFC00B107F8F0F>I<1F00218060C060C000C0008001800F00008000400060C060 +C060804060801F000B107F8F0F>I<0300030007000F000B001300330023004300C300FFE00300 +0300030003001FE00B107F8F0F>I<20803F002C002000200020002F0030802040006000600060 +C06080C061801F000B107F8F0F>I E /Fk 10 62 df<01020408103020606040C0C0C0C0C0C0C0 +C0C0C040606020301008040201081E7E950D>40 D<80402010080C040606020303030303030303 +0303020606040C0810204080081E7E950D>I<0060000060000060000060000060000060000060 +00006000006000006000FFFFF0FFFFF00060000060000060000060000060000060000060000060 +0000600000600014167E9119>43 D<0C001C00EC000C000C000C000C000C000C000C000C000C00 +0C000C000C000C000C000C00FFC00A137D9211>49 D<1F0060C06060F070F03060300070007000 +6000C001C00180020004000810101020207FE0FFE00C137E9211>I<0FC0307070387038703800 +38003000E00FC0007000380018001C601CF01CF018E03860701FC00E137F9211>I<006000E000 +E00160026006600C600860106020606060C060FFFC0060006000600060006003FC0E137F9211> +I<60607FC07F8044004000400040004F0070C040E0006000700070E070E070E06040E021C01F00 +0C137E9211>I<07C00C201070207060006000C000CF00D0C0E060C020C030C030C03040306020 +206010C00F000C137E9211>I<7FFFE0FFFFF0000000000000000000000000000000000000FFFF +F07FFFE0140A7E8B19>61 D E /Fl 69 124 df<003FE3F801F03F1C03C03E3E07C07C3E0F807C +3E0F807C1C0F807C000F807C000F807C000F807C000F807C00FFFFFFC0FFFFFFC00F807C000F80 +7C000F807C000F807C000F807C000F807C000F807C000F807C000F807C000F807C000F807C000F +807C000F807C000F807C007FE1FFC07FE1FFC01F1D809C1C>11 D<003FC00001F0300003C03800 +07C07C000F807C000F807C000F8038000F8000000F8000000F8000000F800000FFFFFC00FFFFFC +000F807C000F807C000F807C000F807C000F807C000F807C000F807C000F807C000F807C000F80 +7C000F807C000F807C000F807C000F807C007FE1FF807FE1FF80191D809C1B>I<002000400180 +0380030006000E001C001C003C0038003800780078007800F800F000F000F000F000F000F000F0 +00F000F000F800780078007800380038003C001C001C000E000600030003800180004000200B29 +7C9E13>40 D<800040003000380018000C000E000700070007800380038003C003C003C003E001 +E001E001E001E001E001E001E001E001E003E003C003C003C0038003800780070007000E000C00 +180038003000400080000B297D9E13>I<00038000000380000003800000038000000380000003 +80000003800000038000000380000003800000038000000380000003800000038000FFFFFFFCFF +FFFFFCFFFFFFFC0003800000038000000380000003800000038000000380000003800000038000 +0003800000038000000380000003800000038000000380001E1F7D9925>43 +D<78FCFCFEFE7A0202040408083040070E7D850D>I<FFE0FFE0FFE0FFE00B047F8A10>I<78FCFC +FCFC7806067D850D>I<000180000380000380000700000700000700000E00000E00001C00001C +00001C0000380000380000380000700000700000E00000E00000E00001C00001C00001C0000380 +000380000380000700000700000E00000E00000E00001C00001C00001C00003800003800007000 +00700000700000E00000E00000C0000011297D9E18>I<03F8000F1E001C07003C078038038078 +03C07803C07803C0F803E0F803E0F803E0F803E0F803E0F803E0F803E0F803E0F803E0F803E0F8 +03E0F803E07803C07803C03803803C07801C07000F1E0003F800131B7E9A18>I<00600001E000 +0FE000FFE000F3E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E000 +03E00003E00003E00003E00003E00003E00003E00003E00003E00003E0007FFF807FFF80111B7D +9A18>I<07F8001FFE00383F80780FC0FC07C0FC07E0FC03E0FC03E07803E00007E00007C00007 +C0000F80001F00001E0000380000700000E0000180600300600600600800E01FFFC03FFFC07FFF +C0FFFFC0FFFFC0131B7E9A18>I<03F8001FFE003C1F003C0F807C07C07E07C07C07C03807C000 +0F80000F80001E00003C0003F800001E00000F800007C00007C00007E03007E07807E0FC07E0FC +07E0FC07C0780F80781F001FFE0007F800131B7E9A18>I<000180000380000780000F80001F80 +003F80006F8000CF80008F80018F80030F80060F800C0F80180F80300F80600F80C00F80FFFFF8 +FFFFF8000F80000F80000F80000F80000F80000F8001FFF801FFF8151B7F9A18>I<1801801FFF +001FFE001FFC001FF8001FC00018000018000018000018000019F8001E0E00180F801007800007 +C00007E00007E00007E07807E0F807E0F807E0F807C0F007C0600F80381F001FFE0007F000131B +7E9A18>I<007E0003FF000781800F03C01E07C03C07C03C0380780000780000F80000F8F800FB +0E00FA0780FC0380FC03C0F803E0F803E0F803E0F803E07803E07803E07803C03C03C03C07801E +0F0007FE0003F800131B7E9A18>I<6000007FFFE07FFFE07FFFC07FFF807FFF80E00300C00600 +C00C00C0180000300000300000600000E00000E00001E00001C00003C00003C00003C00003C000 +07C00007C00007C00007C00007C00007C000038000131C7D9B18>I<03F8000FFE001E0F803807 +803803C07803C07803C07E03C07F83807FC7003FFE001FFC000FFE0007FF801DFF80387FC0781F +E0F007E0F003E0F001E0F001E0F001E07801C07803803E07801FFE0003F800131B7E9A18>I<03 +F8000FFE001E0F003C07807807807803C0F803C0F803C0F803E0F803E0F803E0F803E07807E038 +07E03C0BE00E1BE003E3E00003E00003C00003C03807C07C07807C0700780F00383C001FF8000F +E000131B7E9A18>I<78FCFCFCFC7800000000000078FCFCFCFC7806127D910D>I<000380000003 +80000007C0000007C0000007C000000FE000000FE000001FF000001BF000001BF0000031F80000 +31F8000061FC000060FC0000E0FE0000C07E0000C07E0001803F0001FFFF0003FFFF8003001F80 +03001F8006000FC006000FC00E000FE00C0007E0FFC07FFEFFC07FFE1F1C7E9B24>65 +D<FFFFF800FFFFFF000FC01F800FC00FC00FC007C00FC007E00FC007E00FC007E00FC007E00FC0 +07E00FC007C00FC00F800FC03F000FFFFE000FC00F800FC007C00FC007E00FC003E00FC003F00F +C003F00FC003F00FC003F00FC003F00FC007E00FC007E00FC01FC0FFFFFF00FFFFFC001C1C7E9B +22>I<001FE02000FFF8E003F80FE007C003E00F8001E01F0000E03E0000E03E0000607E000060 +7C000060FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC0000007C0000 +607E0000603E0000603E0000C01F0000C00F80018007C0030003F80E0000FFFC00001FE0001B1C +7D9B22>I<FFFFF800FFFFFF000FC01FC00FC007E00FC001F00FC001F80FC000F80FC000FC0FC0 +007C0FC0007C0FC0007E0FC0007E0FC0007E0FC0007E0FC0007E0FC0007E0FC0007E0FC0007E0F +C0007C0FC0007C0FC0007C0FC000F80FC000F80FC001F00FC007E00FC01FC0FFFFFF00FFFFF800 +1F1C7E9B25>I<FFFFFF00FFFFFF000FC01F000FC007000FC003000FC003800FC003800FC18180 +0FC181800FC181800FC180000FC380000FFF80000FFF80000FC380000FC180000FC180000FC180 +600FC180600FC000E00FC000C00FC000C00FC001C00FC001C00FC003C00FC00F80FFFFFF80FFFF +FF801B1C7E9B1F>I<FFFFFF00FFFFFF000FC01F000FC007000FC003000FC003800FC003800FC0 +01800FC181800FC181800FC180000FC180000FC380000FFF80000FFF80000FC380000FC180000F +C180000FC180000FC180000FC000000FC000000FC000000FC000000FC000000FC00000FFFF0000 +FFFF0000191C7E9B1E>I<000FF008007FFE3801FC07F807E001F80F8000781F0000783F000038 +3E0000387E0000187C000018FC000000FC000000FC000000FC000000FC000000FC000000FC007F +FFFC007FFF7C0001F87E0001F83E0001F83F0001F81F0001F80F8001F807E001F801FC07F8007F +FE78000FF818201C7D9B26>I<FFFC3FFFFFFC3FFF0FC003F00FC003F00FC003F00FC003F00FC0 +03F00FC003F00FC003F00FC003F00FC003F00FC003F00FFFFFF00FFFFFF00FC003F00FC003F00F +C003F00FC003F00FC003F00FC003F00FC003F00FC003F00FC003F00FC003F00FC003F00FC003F0 +FFFC3FFFFFFC3FFF201C7E9B25>I<FFFFFFFF07E007E007E007E007E007E007E007E007E007E0 +07E007E007E007E007E007E007E007E007E007E007E007E007E007E0FFFFFFFF101C7F9B12>I< +FFFC07FFFFFC07FF0FC000E00FC001C00FC003800FC006000FC00C000FC038000FC070000FC0E0 +000FC1C0000FC3C0000FC7E0000FCFE0000FFBF0000FF3F8000FE1F8000FC0FC000FC0FE000FC0 +7E000FC03F000FC01F800FC01FC00FC00FC00FC007E00FC007F0FFFC3FFFFFFC3FFF201C7E9B25 +>75 D<FFFF00FFFF000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC0000FC000 +0FC0000FC0000FC0000FC0000FC0000FC0030FC0030FC0030FC0070FC0070FC0060FC00E0FC01E +0FC07EFFFFFEFFFFFE181C7E9B1D>I<FFC00003FFFFE00007FF0FE00007F00DF0000DF00DF000 +0DF00DF0000DF00CF80019F00CF80019F00C7C0031F00C7C0031F00C3E0061F00C3E0061F00C1F +00C1F00C1F00C1F00C1F00C1F00C0F8181F00C0F8181F00C07C301F00C07C301F00C03E601F00C +03E601F00C01FC01F00C01FC01F00C01FC01F00C00F801F00C00F801F0FFC0701FFFFFC0701FFF +281C7E9B2D>I<FFE003FFFFE003FF0FF000300FF800300DFC00300CFE00300C7E00300C3F0030 +0C1F80300C1FC0300C0FE0300C07F0300C03F0300C01F8300C01FC300C00FE300C007F300C003F +300C001FB00C001FF00C000FF00C0007F00C0003F00C0001F00C0000F00C0000F0FFC00070FFC0 +0030201C7E9B25>I<003FE00001F07C0003C01E000F800F801F0007C01E0003C03E0003E07E00 +03F07C0001F07C0001F0FC0001F8FC0001F8FC0001F8FC0001F8FC0001F8FC0001F8FC0001F8FC +0001F87C0001F07E0003F07E0003F03E0003E03F0007E01F0007C00F800F8003C01E0001F07C00 +003FE0001D1C7D9B24>I<FFFFF800FFFFFE000FC03F800FC00F800FC007C00FC007E00FC007E0 +0FC007E00FC007E00FC007E00FC007C00FC007C00FC00F800FC03F000FFFFC000FC000000FC000 +000FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC000000FC00000FFFC +0000FFFC00001B1C7E9B21>I<003FE00001F07C0003C01E000F800F801F0007C01F0007C03E00 +03E07E0003F07C0001F07C0001F0FC0001F8FC0001F8FC0001F8FC0001F8FC0001F8FC0001F8FC +0001F8FC0001F87C0001F07C0001F07E0003F03E0003E03E0703E01F08C7C00F906F8003D07E00 +01F87C00003FF8080000380800003C1800003FF800001FF800001FF000000FF0000007E0000003 +C01D247D9B24>I<FFFFF00000FFFFFE00000FC03F00000FC00F80000FC007C0000FC007E0000F +C007E0000FC007E0000FC007E0000FC007E0000FC007C0000FC00F80000FC03E00000FFFF00000 +0FC07C00000FC03E00000FC03F00000FC01F80000FC01F80000FC01F80000FC01F80000FC01F80 +000FC01F80000FC01F81800FC01F81800FC00FC180FFFC07C300FFFC01FE00211C7E9B24>I<07 +F8201FFEE03C07E07801E07000E0F000E0F00060F00060F80000FE0000FFE0007FFE003FFF003F +FF800FFFC007FFE0007FE00003F00001F00000F0C000F0C000F0C000E0E000E0F001C0FC03C0EF +FF0083FC00141C7D9B1B>I<7FFFFFE07FFFFFE0781F81E0701F80E0601F8060E01F8070C01F80 +30C01F8030C01F8030C01F8030001F8000001F8000001F8000001F8000001F8000001F8000001F +8000001F8000001F8000001F8000001F8000001F8000001F8000001F8000001F8000001F800007 +FFFE0007FFFE001C1C7E9B21>I<FFFC03FFFFFC03FF0FC000300FC000300FC000300FC000300F +C000300FC000300FC000300FC000300FC000300FC000300FC000300FC000300FC000300FC00030 +0FC000300FC000300FC000300FC000300FC0003007C0003007C0006003E000E001F001C000FC07 +80007FFE00000FF800201C7E9B25>I<FFFC01FF80FFFC01FF800FC000180007E000300007E000 +300007F000700003F000600003F800E00001F800C00001FC00C00000FC01800000FC018000007E +030000007E030000007F070000003F060000003F8E0000001F8C0000001FCC0000000FD8000000 +0FD800000007F000000007F000000007F000000003E000000003E000000001C000000001C00000 +211C7F9B24>I<FFFC7FFE0FFCFFFC7FFE0FFC0FC007E000C00FC007F000C00FE003F001C007E0 +03F0018007E007F8018003F007F8030003F007F8030003F80CFC070001F80CFC060001F81CFE06 +0001FC187E0E0000FC187E0C0000FC387F0C00007E303F1800007E303F1800007F601FB800003F +601FB000003FE01FF000003FC00FF000001FC00FE000001FC00FE000000F8007C000000F8007C0 +00000F0003C0000007000380000007000380002E1C7F9B31>I<0FF8001C1E003E0F803E07803E +07C01C07C00007C0007FC007E7C01F07C03C07C07C07C0F807C0F807C0F807C0780BC03E13F80F +E1F815127F9117>97 D<FF0000FF00001F00001F00001F00001F00001F00001F00001F00001F00 +001F00001F3F801FE1E01F80701F00781F003C1F003C1F003E1F003E1F003E1F003E1F003E1F00 +3E1F003C1F003C1F00781F80701EC1E01C3F00171D7F9C1B>I<03FC000E0E001C1F003C1F0078 +1F00780E00F80000F80000F80000F80000F80000F800007800007801803C01801C03000E0E0003 +F80011127E9115>I<000FF0000FF00001F00001F00001F00001F00001F00001F00001F00001F0 +0001F001F9F00F07F01C03F03C01F07801F07801F0F801F0F801F0F801F0F801F0F801F0F801F0 +7801F07801F03C01F01C03F00F0FFE03F9FE171D7E9C1B>I<01FC000F07001C03803C01C07801 +C07801E0F801E0F801E0FFFFE0F80000F80000F800007800007C00603C00601E00C00F038001FC +0013127F9116>I<007F0001E38003C7C00787C00F87C00F83800F80000F80000F80000F80000F +8000FFF800FFF8000F80000F80000F80000F80000F80000F80000F80000F80000F80000F80000F +80000F80000F80000F80007FF8007FF800121D809C0F>I<03F8F00E0F381E0F381C07303C0780 +3C07803C07803C07801C07001E0F000E0E001BF8001000001800001800001FFF001FFFC00FFFE0 +1FFFF07801F8F00078F00078F000787000707800F01E03C007FF00151B7F9118>I<FF0000FF00 +001F00001F00001F00001F00001F00001F00001F00001F00001F00001F0FC01F31E01F40F01F80 +F81F80F81F00F81F00F81F00F81F00F81F00F81F00F81F00F81F00F81F00F81F00F81F00F8FFE7 +FFFFE7FF181D7F9C1B>I<1E003F003F003F003F001E00000000000000000000000000FF00FF00 +1F001F001F001F001F001F001F001F001F001F001F001F001F001F00FFE0FFE00B1E7F9D0E>I< +007800FC00FC00FC00FC007800000000000000000000000003FC03FC007C007C007C007C007C00 +7C007C007C007C007C007C007C007C007C007C007C007C007C707CF87CF878F8F070E01F800E26 +839D0F>I<FF0000FF00001F00001F00001F00001F00001F00001F00001F00001F00001F00001F +0FF81F0FF81F03801F07001F0C001F18001F70001FF8001FFC001FBC001F3E001F1F001F0F001F +0F801F07C01F03E0FFC7FCFFC7FC161D7F9C19>I<FF00FF001F001F001F001F001F001F001F00 +1F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F00FFE0FF +E00B1D7F9C0E>I<FF0FC07E00FF31E18F001F40F207801F80FC07C01F80FC07C01F00F807C01F +00F807C01F00F807C01F00F807C01F00F807C01F00F807C01F00F807C01F00F807C01F00F807C0 +1F00F807C01F00F807C0FFE7FF3FF8FFE7FF3FF825127F9128>I<FF0FC0FF31E01F40F01F80F8 +1F80F81F00F81F00F81F00F81F00F81F00F81F00F81F00F81F00F81F00F81F00F81F00F8FFE7FF +FFE7FF18127F911B>I<01FC000F07801C01C03C01E07800F07800F0F800F8F800F8F800F8F800 +F8F800F8F800F87800F07800F03C01E01E03C00F078001FC0015127F9118>I<FF3F80FFE1E01F +80F01F00781F007C1F003C1F003E1F003E1F003E1F003E1F003E1F003E1F003C1F007C1F00781F +80F01FC1E01F3F001F00001F00001F00001F00001F00001F0000FFE000FFE000171A7F911B>I< +03F0600F0CE01E07E03C03E07C03E07803E0F803E0F803E0F803E0F803E0F803E0F803E07803E0 +7C03E03C03E01C07E00E0FE003F3E00003E00003E00003E00003E00003E00003E0001FFC001FFC +161A7E9119>I<FE3E00FE47001E8F801E8F801E8F801F07001F00001F00001F00001F00001F00 +001F00001F00001F00001F00001F0000FFF000FFF00011127F9114>I<1FD830786018E018E018 +F000FF807FE07FF01FF807FC007CC01CC01CE01CE018F830CFC00E127E9113>I<030003000300 +0300070007000F000F003FFCFFFC1F001F001F001F001F001F001F001F001F001F0C1F0C1F0C1F +0C0F08079803F00E1A7F9913>I<FF07F8FF07F81F00F81F00F81F00F81F00F81F00F81F00F81F +00F81F00F81F00F81F00F81F00F81F00F81F01F80F01F80786FF01F8FF18127F911B>I<FFC1FC +FFC1FC1F00601F80E00F80C00FC0C007C18007C18003E30003E30001F60001F60001FE0000FC00 +00FC0000780000780000300016127F9119>I<FF8FF8FEFF8FF8FE1F03E0301F03E0301F83E070 +0F83F0600F86F06007C6F0C007CEF8C007EC79C003EC7D8003F83D8001F83F0001F83F0001F01F +0000F01E0000E00E0000E00E001F127F9122>I<FFC7FCFFC7FC1F81800F838007C70003EE0001 +FC0001F80000F800007C0000FE0001DF00039F00070F800607C00C03E0FF07FCFF07FC16127F91 +19>I<FFC1FCFFC1FC1F00601F80E00F80C00FC0C007C18007C18003E30003E30001F70001F600 +00FE0000FC0000FC00007800007800003000003000007000706000F86000F8C000F98000730000 +3E0000161A7F9119>I<3FFF803C1F00303F00303E00607C0060FC0060F80001F00003F00007E0 +0007C1800F81801F81801F03803E03007E07007C0F00FFFF0011127F9115>I<FFFFFE1701808B +18>I E /Fm 78 124 df<0001FC3C00060E67000C0EC7001C0DC6001C01C0003801C000380380 +0038038000380380003803800070038007FFFFF800700700007007000070070000E0070000E00E +0000E00E0000E00E0000E00E0001C00E0001C01C0001C01C0001C01C0001C01C0003801C000380 +3800038038000380380003003800070030000700700006006000C6606000E470C000C861800070 +3E00002025819C19>11 D<0001FC000703000C03001C07001C0300180000380000380000380000 +380000700007FFFC00701C00701C00701C00E03800E03800E03800E03800E07001C07001C07001 +C07001C0E201C0E201C0E20380E4038064038038038000030000070000060000C60000E40000CC +00007000001825819C17>I<0001FDC000070FC0000C0FC0001C0F80001C038000380380003803 +800038070000380700003807000070070007FFFE0000700E0000700E0000700E0000E01C0000E0 +1C0000E01C0000E01C0000E0380001C0380001C0380001C0380001C0710001C071000380710003 +8072000380320003801C0003800000030000000700000006000000C6000000E4000000CC000000 +700000001A25819C18>I<00E000100190003003080060060C01C00E0B8F800C0871801C080300 +1C0806001C080C00381018003810300038106000382060003820C0001841800018830000070607 +00000C0C800018184000183040003070400060604000C0E0400180E0400300E0400601C0800C01 +C0800C01C0801801C1003001C1006000C200C000C400800038001C217A9E22>37 +D<183C3C3C0404080810204080060C779C0D>39 D<00030006000800180030006000C000C00180 +03000300060006000C000C001C0018001800380030003000700070006000600060006000E000E0 +00E000E000E0006000600060006000600020003000100008000800102A7B9E11>I<0010001000 +08000C000400060006000600060006000700070007000700070006000600060006000E000E000C +000C001C001800180038003000300060006000C000C001800300030006000C00180010006000C0 +00102A809E11>I<0030000060000060000060001841803C47000ECE0007B80001E00003C0000E +F00039B800711E00C10C000300000300000300000600001112799E15>I<183878380808101020 +404080050C7D830D>44 D<FFC0FFC0FFC00A037D890F>I<3078F06005047C830D>I<0000020000 +0600000600000C00000C0000180000300000300000600000600000C00000C00001800001800003 +00000600000600000C00000C0000180000180000300000300000600000C00000C0000180000180 +000300000300000600000C00000C0000180000180000300000300000600000600000C000008000 +0017297F9E15>I<003C0000C6000183000303000603000603800E03800C03801C03801C030038 +0700380700380700380700700E00700E00700E00700E00E01C00E01C00E01C00E03800E03800E0 +3000C06000E0600060C0007180001E0000111D7B9B15>I<00020006000C001C007C039C003800 +3800380038007000700070007000E000E000E000E001C001C001C001C003800380038003800780 +FFF00F1C7C9B15>I<003C0000C3000101800201800201C00441C00441C00841C00841C00841C0 +1083801083801107000E0600000C0000180000300000C000010000060000080000100100100200 +2002004006007E0C00C7F80083F80080E000121D7C9B15>I<003E0000C1800101800200C00400 +C00440C00841C00841C00841C0088380070380000700000E0001F800003800000C00000C00000E +00000E00000E00000E00700E00E01C00801C0080380080300040600021C0001F0000121D7C9B15 +>I<0001800001C0000380000380000380000300000700000700000600000E00000C00001C0000 +180000180000300000300000600000400000C600018E00010E00020E00061C000C1C00181C003F +1C0040F800803F0000380000380000700000700000700000700000E00000600012247E9B15>I< +00C06000FFC001FF8001FE00010000010000020000020000020000020000047800058C00060600 +040600080600000700000700000600000E00000E00700E00700C00E01C00801800803800403000 +40600021C0001F0000131D7C9B15>I<000F0000308000C0800183800383800300000600000E00 +000C00001C00001CF0003B18003C0C00380C00780C00700E00700E00700E00601C00E01C00E01C +00E01C00E03800E03800E0700060600060C0002180001E0000111D7B9B15>I<09C04017E0801F +E0803C6100302700601A00400600400400800C0080080000180000100000300000600000600000 +600000C00000C00001C0000180000380000380000300000700000700000700000E00000E00000C +0000121D799B15>I<001E000061000081800180800300C00300C0060180060180060180070300 +07860003CC0003F00001F000037800063C00081E00180E00300E00600600600600600600C00C00 +C00C00C0180060100060200030C0000F0000121D7C9B15>I<003C0000C6000183000303000603 +000E03000C03801C03801C03001C0300380700380700380700380F00380E00181E00181E000C6C +00079C00001C00001800003800003000006000E0C000E0C0008180008600007C0000111D7B9B15 +>I<060F0F06000000000000000000003078F06008127C910D>I<03000780078003000000000000 +000000000000000000000000000000180038007800380008000800100010002000400040008000 +091A7D910D>I<0FFFFFE01FFFFFF0000000000000000000000000000000000000000000000000 +0000000000000000FFFFFF807FFFFF001C0C7C8F20>61 D<01E006180808100C100C200C400C40 +1C8018E038E070C1E003C007800F001C0038003080308031001E00000000000000000000003000 +7800F00060000E1E789D15>63 D<00001800000018000000380000003800000078000000780000 +00B8000001B800000138000002380000023C0000041C0000041C0000081C0000181C0000101C00 +00201C0000201C00007FFC0000401C0000801C0001801C0001001C0002001C0002001C0004000E +000C000E001C001E00FF00FFC01A1D7E9C1F>65 D<01FFFE00003C0780003803C0003801C00038 +01C0003801C0007001C0007003C0007003C00070078000E0070000E00E0000E03C0000FFF80001 +C01C0001C00E0001C00F0001C00F0003800F0003800F0003800F0003800F0007001E0007001C00 +07003C00070078000E01E000FFFF80001A1C7D9B1D>I<0003F020001E0C60003002E000E003C0 +01C001C0038001C0070000C00E0000801E0000801C0000803C0000803C00000078000000780000 +0078000000F0000000F0000000F0000000F0000000F0000400F0000400F0000400F00008007000 +08007000100038002000180040000C0180000706000001F800001B1E7A9C1E>I<01FFFE00003C +0780003801C0003801C0003800E0003800E0007000F00070007000700070007000F000E000F000 +E000F000E000F000E000F001C001E001C001E001C001E001C001C0038003C00380038003800780 +0380070007000E0007001C0007003800070070000E01C000FFFF00001C1C7D9B1F>I<01FFFFE0 +003C00E0003800600038004000380040003800400070004000700040007020400070200000E040 +0000E0400000E0C00000FFC00001C0800001C0800001C0800001C0800003810100038001000380 +020003800200070004000700040007000C00070018000E007800FFFFF0001B1C7D9B1C>I<01FF +FFC0003C01C0003800C00038008000380080003800800070008000700080007020800070200000 +E0400000E0400000E0C00000FFC00001C0800001C0800001C0800001C080000381000003800000 +0380000003800000070000000700000007000000070000000F000000FFF000001A1C7D9B1B>I< +0003F020001E0C60003002E000E003C001C001C0038001C0070000C00E0000801E0000801C0000 +803C0000803C000000780000007800000078000000F0000000F0000000F001FFC0F0001E00F000 +1C00F0001C00F0001C00F0001C00700038007000380038003800180078000C0090000707100001 +F800001B1E7A9C20>I<01FFCFFE003C01E0003801C0003801C0003801C0003801C00070038000 +700380007003800070038000E0070000E0070000E0070000FFFF0001C00E0001C00E0001C00E00 +01C00E0003801C0003801C0003801C0003801C00070038000700380007003800070038000F0078 +00FFE7FF001F1C7D9B1F>I<01FFC0003C00003800003800003800003800007000007000007000 +00700000E00000E00000E00000E00001C00001C00001C00001C000038000038000038000038000 +0700000700000700000700000F0000FFE000121C7E9B10>I<007FF00007800007000007000007 +00000700000E00000E00000E00000E00001C00001C00001C00001C000038000038000038000038 +0000700000700000700000700060E000E0E000C0C00081C0008380004700003C0000141D7B9B16 +>I<01FFC0FF003C003C0038003000380040003800800038010000700200007004000070100000 +70200000E0400000E0C00000E1C00000E5C00001C8E00001D0E00001E0E00001C0700003807000 +0380700003803800038038000700380007001C0007001C0007001C000F001E00FFE0FF80201C7D +9B20>I<01FFE0003C0000380000380000380000380000700000700000700000700000E00000E0 +0000E00000E00001C00001C00001C00001C0000380080380080380080380100700100700300700 +600700E00E03C0FFFFC0151C7D9B1A>I<01FE0007F8003E000780002E000F00002E001700002E +001700002E002700004E002E00004E004E00004E004E00004E008E00008E011C00008E011C0000 +8E021C00008E021C00010704380001070438000107083800010710380002071070000207207000 +02072070000207407000040740E000040780E000040700E0000C0700E0001C0601E000FF861FFC +00251C7D9B25>I<01FC03FE001C0070003C0060002E0040002E0040002E004000470080004700 +8000470080004380800083810000838100008181000081C1000101C2000101C2000100E2000100 +E2000200E4000200740002007400020074000400380004003800040038000C0018001C001000FF +8010001F1C7D9B1F>I<0007F000001C1C0000700E0000E0070001C0038003800380070003800E +0003C01E0003C01C0003C03C0003C03C0003C0780003C0780003C0780003C0F0000780F0000780 +F0000780F0000F00F0000F00F0000E00F0001E00F0003C0070003800700070007800E0003801C0 +001C0380000E0E000003F800001A1E7A9C20>I<01FFFC00003C070000380380003801C0003801 +C0003801C0007003C0007003C0007003C00070038000E0078000E0070000E00E0000E0380001FF +E00001C0000001C0000001C0000003800000038000000380000003800000070000000700000007 +000000070000000F000000FFE000001A1C7D9B1C>I<0007F000001C1C0000700E0000E0070001 +C0078003800380070003800E0003C01E0003C01C0003C03C0003C03C0003C0780003C0780003C0 +780003C0F0000780F0000780F0000780F0000F00F0000F00F0000E00F0001E00F0001C00707838 +00708070007104E0003905C0001D0780000F0E040003FE040000060C0000060800000E1800000F +F0000007F0000007E000000380001A257A9C20>I<01FFF800003C0E0000380700003803800038 +03800038038000700780007007800070078000700F0000E00E0000E01C0000E0700000FFC00001 +C0C00001C0600001C0700001C07000038070000380700003807000038070000700F0000700F040 +0700F0400700F0800F007880FFE0790000001E001A1D7D9B1E>I<000F8400304C00403C008018 +01001803001803001806001006001006000007000007000003E00003FC0001FF00007F800007C0 +0001C00001C00000C00000C02000C02000C0600180600180600300600200F00400CC180083E000 +161E7D9C17>I<1FFFFFC01C0701C0300E00C0200E0080600E0080400E0080401C0080801C0080 +801C0080001C000000380000003800000038000000380000007000000070000000700000007000 +0000E0000000E0000000E0000000E0000001C0000001C0000001C0000001C0000003C000007FFE +00001A1C799B1E>I<7FF0FF800F001C000E0018000E0010000E0010000E0010001C0020001C00 +20001C0020001C0020003800400038004000380040003800400070008000700080007000800070 +008000E0010000E0010000E0010000E0020000E0020000E0040000E00400006008000030300000 +104000000F800000191D779B1F>I<FF803FC01C000F001C0004001C0008001C0008001C001000 +1C0010001C0020001C0040001C0040001E0080000E0080000E0100000E0200000E0200000E0400 +000E0400000E0800000E1800000E1000000E200000072000000740000007C00000078000000700 +00000700000006000000060000001A1D779B1F>I<FF83FF0FF03C007001C038007001803800F0 +01003800F0020038017002003801700400380270040038027008001C047008001C047010001C08 +7010001C087020001C107020001C107040001C207040001C207080001C407180001C407100001C +807200001D807200001D007400001E007400001E007800001C007800001C007000001800700000 +18006000001000600000241D779B29>I<01FF81FE001E00F0001C0060001E0080000E0180000E +0100000F02000007040000070800000790000003A0000003C0000001C0000001C0000001E00000 +02E0000004E0000008F0000010700000207000006038000040380000803C0001001C0002001C00 +06001E001E001E00FF80FFC01F1C7E9B1F>I<FFC00FE00E0007800E0006000F00040007000800 +0700180007801000038020000380400003C0800001C1800001C1000001E2000000E4000000EC00 +0000F80000007000000070000000E0000000E0000000E0000000E0000001C0000001C0000001C0 +000001C00000038000003FF800001B1C789B1F>I<03CC063C0C3C181C3838303870387038E070 +E070E070E070E0E2C0E2C0E261E462643C380F127B9115>97 D<3F00070007000E000E000E000E +001C001C001C001C0039C03E60383038307038703870387038E070E070E070E060E0E0C0C0C1C0 +618063003C000D1D7B9C13>I<01F007080C08181C3838300070007000E000E000E000E000E000 +E008E010602030C01F000E127B9113>I<001F8000038000038000070000070000070000070000 +0E00000E00000E00000E0003DC00063C000C3C00181C00383800303800703800703800E07000E0 +7000E07000E07000E0E200C0E200C0E20061E4006264003C3800111D7B9C15>I<01E007100C10 +18083810701070607F80E000E000E000E000E000E0086010602030C01F000D127B9113>I<0003 +C0000670000C70001C60001C00001C0000380000380000380000380000380003FF800070000070 +0000700000700000700000E00000E00000E00000E00000E00001C00001C00001C00001C00001C0 +00038000038000038000030000030000070000C60000E60000CC00007800001425819C0D>I<00 +F3018F030F06070E0E0C0E1C0E1C0E381C381C381C381C383830383038187818F00F7000700070 +00E000E0C0C0E1C0C3007E00101A7D9113>I<0FC00001C00001C0000380000380000380000380 +000700000700000700000700000E78000E8C000F0E000E0E001C0E001C0E001C0E001C0E00381C +00381C00381C00383800703880703880707080707100E03200601C00111D7D9C15>I<01800380 +010000000000000000000000000000001C002600470047008E008E000E001C001C001C00380038 +00710071007100720072003C00091C7C9B0D>I<0006000E000600000000000000000000000000 +0000F00118021802180438043800380038007000700070007000E000E000E000E001C001C001C0 +01C003800380C300E700CE0078000F24819B0D>I<0FC00001C00001C000038000038000038000 +0380000700000700000700000700000E0F000E11000E23800E43801C83001C80001D00001E0000 +3F800039C00038E00038E00070E20070E20070E20070E400E06400603800111D7D9C13>I<1F80 +0380038007000700070007000E000E000E000E001C001C001C001C003800380038003800700070 +0070007000E400E400E400E40068003800091D7C9C0B>I<3C1E0780266318C04683A0E04703C0 +E08E0380E08E0380E00E0380E00E0380E01C0701C01C0701C01C0701C01C070380380E0388380E +0388380E0708380E0710701C0320300C01C01D127C9122>I<3C3C002646004687004707008E07 +008E07000E07000E07001C0E001C0E001C0E001C1C00381C40381C40383840383880701900300E +0012127C9117>I<01E007180C0C180C380C300E700E700EE01CE01CE01CE018E038E030E06060 +C031801E000F127B9115>I<07870004D98008E0C008E0C011C0E011C0E001C0E001C0E00381C0 +0381C00381C00381800703800703000707000706000E8C000E70000E00000E00001C00001C0000 +1C00001C00003C0000FF8000131A7F9115>I<03C4062C0C3C181C3838303870387038E070E070 +E070E070E0E0C0E0C0E061E063C03DC001C001C0038003800380038007803FF00E1A7B9113>I< +3C3C26C2468747078E068E000E000E001C001C001C001C0038003800380038007000300010127C +9112>I<01F006080C080C1C18181C001F001FC00FF007F0007800386030E030C030806060C01F +000E127D9111>I<00C001C001C001C00380038003800380FFE00700070007000E000E000E000E +001C001C001C001C00384038403840388019000E000B1A7D990E>I<1E03002707004707004707 +00870E00870E000E0E000E0E001C1C001C1C001C1C001C1C003838803838801838801839001C59 +00078E0011127C9116>I<1E06270E470E4706870287020E020E021C041C041C041C0818083808 +181018200C4007800F127C9113>I<1E01832703874703874703838707018707010E07010E0701 +1C0E021C0E021C0E021C0E04180C04181C04181C081C1C100C263007C3C018127C911C>I<070E +0019910010E38020E38041C30041C00001C00001C0000380000380000380000380000702006702 +00E70400CB04008B080070F00011127D9113>I<1E03270747074707870E870E0E0E0E0E1C1C1C +1C1C1C1C1C38383838183818381C7007F00070007000E0E0C0E1C0818047003C00101A7C9114> +I<038207C20FEC08381008001000200040008001000200040008081008383067F043E081C00F12 +7D9111>I<FFFFC012017C8B15>I E /Fn 23 121 df<00001E000000003E00000000FE00000003 +FE0000003FFE0000FFFFFE0000FFFFFE0000FFFFFE0000FFCFFE0000000FFE0000000FFE000000 +0FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000 +000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE00 +00000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE +0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000F +FE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE000000 +0FFE0000000FFE00007FFFFFFFC07FFFFFFFC07FFFFFFFC07FFFFFFFC0223879B731>49 +D<0007FE0000007FFFE00001FFFFF80003FFFFFE0007F01FFF000F8007FF801F0001FFC03E0000 +FFE07F8000FFF07FC0007FF0FFE0007FF8FFF0003FF8FFF0003FFCFFF0003FFCFFF0003FFCFFF0 +003FFC7FE0003FFC3FC0003FFC1F80003FFC0000003FFC0000003FF80000007FF80000007FF000 +00007FF0000000FFE0000000FFC0000001FF80000001FF00000003FE00000007FC00000007F800 +00000FF00000001FC00000003F800000007F00000000FC00000001F800000001F0003C0003E000 +3C0007C0003C000F000078001E000078003C00007800780000F800F00000F801FFFFFFF803FFFF +FFF007FFFFFFF00FFFFFFFF01FFFFFFFF03FFFFFFFF07FFFFFFFF0FFFFFFFFF0FFFFFFFFE0FFFF +FFFFE0FFFFFFFFE026387BB731>I<0003FF8000001FFFF000007FFFFE0000FE03FF0001F000FF +8003C000FFC00780007FE00FF0007FF00FF8007FF01FFC007FF81FFE007FF81FFE007FF81FFE00 +7FF81FFE007FF81FFE007FF80FFC007FF007F8007FF003F0007FF0000000FFE0000000FFC00000 +01FF80000001FF00000003FE00000007FC0000001FF000000FFFC000000FFF8000000FFFF80000 +0003FE00000000FF800000007FE00000003FF00000003FF80000003FFC0000001FFC0000001FFE +0000001FFE0200001FFF1FC0001FFF3FE0001FFF7FF0001FFF7FF0001FFFFFF8001FFFFFF8001F +FFFFF8001FFEFFF8001FFEFFF0001FFE7FF0003FFC7FE0003FFC3FC0003FF81F80007FF01FE000 +FFE007FC03FFC003FFFFFF0001FFFFFE00003FFFF0000007FF800028397CB731>I<00000007C0 +000000000FC0000000000FC0000000001FC0000000003FC0000000007FC000000000FFC0000000 +00FFC000000001FFC000000003FFC000000007FFC00000000FFFC00000000FFFC00000001EFFC0 +0000003CFFC00000007CFFC0000000F8FFC0000000F0FFC0000001E0FFC0000003C0FFC0000007 +C0FFC000000F80FFC000000F00FFC000001E00FFC000003C00FFC000007C00FFC00000F800FFC0 +0000F000FFC00001E000FFC00003C000FFC00007C000FFC0000F8000FFC0000F0000FFC0001E00 +00FFC0003C0000FFC0007C0000FFC000F80000FFC000FFFFFFFFFFC0FFFFFFFFFFC0FFFFFFFFFF +C0FFFFFFFFFFC0000001FFC000000001FFC000000001FFC000000001FFC000000001FFC0000000 +01FFC000000001FFC000000001FFC000000001FFC000000001FFC0000007FFFFFFC00007FFFFFF +C00007FFFFFFC00007FFFFFFC02A377DB631>I<04000000C00F800007C00FF8007FC00FFFFFFF +800FFFFFFF000FFFFFFE000FFFFFFC000FFFFFF8000FFFFFF0000FFFFFE0000FFFFF80000FFFFE +00000FFFF800000F800000000F800000000F800000000F800000000F800000000F800000000F80 +0000000F800000000F81FF00000F8FFFE0000FBFFFF8000FFE03FE000FF000FF000FC000FF800F +80007FC00F00007FE00700007FF00000003FF00000003FF80000003FF80000003FF80000003FFC +0000003FFC0600003FFC1F80003FFC3FC0003FFC7FE0003FFCFFE0003FFCFFF0003FFCFFF0003F +FCFFF0003FF8FFE0003FF8FFE0003FF87FC0007FF07F00007FF03C00007FE03E0000FFC01F0000 +FF800FC003FF0007F00FFE0003FFFFFC0001FFFFF000007FFFC000000FFC000026397BB731>I< +00000FF80000007FFF000003FFFF80000FFC07C0001FE001E0003FC001F0007F0007F000FF000F +F001FE001FF803FC003FF807FC003FF80FFC003FF80FF8003FF81FF8001FF01FF8000FE03FF800 +07C03FF00000003FF00000007FF00000007FF00000007FF00000007FF07FF000FFF0FFFE00FFF1 +F7FF00FFF3807F80FFF6003FE0FFFE001FF0FFFC001FF0FFFC000FF8FFF8000FFCFFF8000FFCFF +F8000FFEFFF8000FFEFFF0000FFEFFF0000FFFFFF0000FFFFFF0000FFF7FF0000FFF7FF0000FFF +7FF0000FFF7FF0000FFF7FF0000FFF3FF0000FFF3FF0000FFE3FF0000FFE1FF0000FFE1FF8000F +FC0FF8000FFC0FF8001FF807FC001FF003FC001FF001FE003FE000FF80FFC0007FFFFF00001FFF +FE000007FFF8000000FFC00028397CB731>I<1E00000000001F00000000001FF0000000001FFF +FFFFFFC01FFFFFFFFFC01FFFFFFFFFC03FFFFFFFFFC03FFFFFFFFF803FFFFFFFFF003FFFFFFFFE +003FFFFFFFFC003FFFFFFFF8003FFFFFFFF0007FFFFFFFF0007C000007E0007C00000FC0007800 +001F80007800001F00007800003E0000F000007E0000F00000FC0000F00001F80000000003F000 +00000003E00000000007E0000000000FC0000000000F80000000001F80000000003F8000000000 +3F00000000007F00000000007F0000000000FF0000000000FE0000000001FE0000000001FE0000 +000003FE0000000003FE0000000003FE0000000007FC0000000007FC0000000007FC000000000F +FC000000000FFC000000000FFC000000000FFC000000000FFC000000001FFC000000001FFC0000 +00001FFC000000001FFC000000001FFC000000001FFC000000001FFC000000001FFC000000001F +FC000000000FF80000000007F00000000003E00000002A3B7BB931>I<0001FF8000000FFFF800 +003FFFFE00007F00FF0000F8003F8001F0000FC003E0000FE007C00007F007C00007F00FC00003 +F80FC00003F81FC00003F81FC00003F81FE00003F81FF00003F81FF80003F81FFC0007F01FFF00 +07F01FFFC007E00FFFF00FE00FFFFC1FC007FFFE3F8007FFFFFF0003FFFFFC0001FFFFF80000FF +FFFE00007FFFFF00003FFFFF80003FFFFFE000FFFFFFF001FDFFFFF007F07FFFF80FE01FFFFC1F +C007FFFC3F8001FFFE3F8000FFFE7F00003FFF7F00000FFFFE000003FFFE000001FFFE000000FF +FE000000FFFE0000007FFE0000007FFE0000007EFE0000007E7F0000007E7F000000FC3F800000 +FC3FC00001F81FE00003F00FF00007E007FE007FC003FFFFFF8000FFFFFE00003FFFF8000003FF +800028397CB731>I<00000001F80000000000000001F80000000000000003FC00000000000000 +03FC0000000000000007FE0000000000000007FE0000000000000007FE000000000000000FFF00 +0000000000000FFF000000000000001FFF800000000000001FFF800000000000001FFF80000000 +0000003FFFC00000000000003FFFC00000000000007FFFE00000000000007DFFE0000000000000 +7DFFE0000000000000FDFFF0000000000000F8FFF0000000000001F8FFF8000000000001F07FF8 +000000000001F07FF8000000000003F07FFC000000000003E03FFC000000000007E03FFE000000 +000007C01FFE00000000000FC01FFF00000000000F801FFF00000000000F800FFF00000000001F +800FFF80000000001F0007FF80000000003F0007FFC0000000003E0003FFC0000000003E0003FF +C0000000007E0003FFE0000000007C0001FFE000000000FC0001FFF000000000F80000FFF00000 +0000F80000FFF000000001FFFFFFFFF800000001FFFFFFFFF800000003FFFFFFFFFC00000003FF +FFFFFFFC00000003E000003FFC00000007E000003FFE00000007C000001FFE0000000FC000001F +FF0000000F8000000FFF0000001F8000000FFF8000001F0000000FFF8000001F00000007FF8000 +003F00000007FFC000003E00000003FFC000007E00000003FFE00000FF00000001FFE000FFFFFC +0001FFFFFFF0FFFFFC0001FFFFFFF0FFFFFC0001FFFFFFF0FFFFFC0001FFFFFFF0443B7DBA4B> +65 D<FFFFFFFFFFC00000FFFFFFFFFFFC0000FFFFFFFFFFFF0000FFFFFFFFFFFFC000007FF000 +01FFF000007FF000007FF800007FF000003FFC00007FF000001FFE00007FF000001FFE00007FF0 +00000FFF00007FF000000FFF00007FF0000007FF80007FF0000007FF80007FF0000007FF80007F +F0000007FF80007FF0000007FF80007FF0000007FF80007FF0000007FF80007FF0000007FF0000 +7FF000000FFF00007FF000000FFF00007FF000001FFE00007FF000001FFC00007FF000003FF800 +007FF000007FF000007FF00001FFE000007FF0000FFF8000007FFFFFFFFE0000007FFFFFFFFE00 +00007FFFFFFFFFC000007FF000007FF000007FF000001FFC00007FF000000FFE00007FF0000007 +FF00007FF0000007FF80007FF0000003FFC0007FF0000003FFC0007FF0000001FFE0007FF00000 +01FFE0007FF0000001FFF0007FF0000001FFF0007FF0000001FFF0007FF0000001FFF0007FF000 +0001FFF0007FF0000001FFF0007FF0000001FFF0007FF0000001FFF0007FF0000001FFE0007FF0 +000003FFE0007FF0000003FFC0007FF0000007FFC0007FF000000FFF80007FF000001FFF00007F +F000003FFE00007FF00001FFFC00FFFFFFFFFFFFF800FFFFFFFFFFFFE000FFFFFFFFFFFF8000FF +FFFFFFFFF800003C3B7CBA46>I<0000001FFF000030000001FFFFE000F000000FFFFFFC01F000 +007FFFFFFE03F00001FFFE007F87F00003FFE0000FCFF0000FFF000003FFF0001FFC000001FFF0 +003FF80000007FF0007FF00000003FF000FFC00000003FF001FFC00000001FF003FF800000000F +F007FF000000000FF00FFF0000000007F00FFE0000000007F01FFE0000000003F01FFE00000000 +03F03FFC0000000003F03FFC0000000001F03FFC0000000001F07FFC0000000001F07FF8000000 +0001F07FF80000000000007FF8000000000000FFF8000000000000FFF8000000000000FFF80000 +00000000FFF8000000000000FFF8000000000000FFF8000000000000FFF8000000000000FFF800 +0000000000FFF8000000000000FFF8000000000000FFF80000000000007FF80000000000007FF8 +0000000000007FF80000000000007FFC0000000000F03FFC0000000000F03FFC0000000000F03F +FC0000000000F01FFE0000000000F01FFE0000000001E00FFE0000000001E00FFF0000000001E0 +07FF0000000003C003FF8000000003C001FFC0000000078000FFE00000000F00007FF00000001F +00003FF80000003E00001FFC0000007C00000FFF000001F8000003FFE00007F0000001FFFE003F +C00000007FFFFFFF000000000FFFFFFC0000000001FFFFF000000000001FFF0000003C3D7BBB47 +>I<FFFFFFFFFFC0000000FFFFFFFFFFFC000000FFFFFFFFFFFF800000FFFFFFFFFFFFE0000000 +7FF80003FFF80000007FF800003FFE0000007FF800000FFF0000007FF8000003FF8000007FF800 +0001FFC000007FF8000000FFE000007FF80000007FF000007FF80000003FF800007FF80000003F +F800007FF80000001FFC00007FF80000001FFC00007FF80000000FFE00007FF80000000FFE0000 +7FF80000000FFF00007FF800000007FF00007FF800000007FF00007FF800000007FF80007FF800 +000007FF80007FF800000007FF80007FF800000007FF80007FF800000007FFC0007FF800000007 +FFC0007FF800000007FFC0007FF800000007FFC0007FF800000007FFC0007FF800000007FFC000 +7FF800000007FFC0007FF800000007FFC0007FF800000007FFC0007FF800000007FFC0007FF800 +000007FFC0007FF800000007FFC0007FF800000007FF80007FF800000007FF80007FF800000007 +FF80007FF800000007FF80007FF800000007FF00007FF80000000FFF00007FF80000000FFF0000 +7FF80000000FFE00007FF80000001FFE00007FF80000001FFC00007FF80000003FFC00007FF800 +00003FF800007FF80000007FF000007FF8000000FFE000007FF8000001FFC000007FF8000003FF +8000007FF800000FFF0000007FF800003FFE0000007FF80003FFF80000FFFFFFFFFFFFF00000FF +FFFFFFFFFF800000FFFFFFFFFFFE000000FFFFFFFFFFC0000000423B7CBA4C>I<FFFFFFFFFFFF +F000FFFFFFFFFFFFF000FFFFFFFFFFFFF000FFFFFFFFFFFFF000007FF80001FFF800007FF80000 +1FF800007FF8000007F800007FF8000003F800007FF8000001F800007FF8000000F800007FF800 +0000F800007FF80000007C00007FF80000007C00007FF80000007C00007FF80000003C00007FF8 +0000003C00007FF8003C003C00007FF8003C003C00007FF8003C001E00007FF8003C001E00007F +F8003C001E00007FF8003C000000007FF8007C000000007FF8007C000000007FF800FC00000000 +7FF803FC000000007FFFFFFC000000007FFFFFFC000000007FFFFFFC000000007FFFFFFC000000 +007FF803FC000000007FF800FC000000007FF8007C000000007FF8007C000000007FF8003C0000 +00007FF8003C000780007FF8003C000780007FF8003C000780007FF8003C000F00007FF8003C00 +0F00007FF80000000F00007FF80000000F00007FF80000001F00007FF80000001F00007FF80000 +001E00007FF80000003E00007FF80000003E00007FF80000003E00007FF80000007E00007FF800 +0000FE00007FF8000001FC00007FF8000003FC00007FF8000007FC00007FF800001FFC00007FF8 +0001FFFC00FFFFFFFFFFFFFC00FFFFFFFFFFFFF800FFFFFFFFFFFFF800FFFFFFFFFFFFF800393B +7CBA41>I<001FFF00000001FFFFF0000003FFFFFC000007F007FE00000FF801FF00001FFC00FF +80001FFC007FC0001FFC007FE0001FFC003FE0000FF8003FF0000FF8003FF00007F0003FF00001 +C0003FF0000000003FF0000000003FF0000000003FF0000000FFFFF000000FFFFFF000007FF83F +F00001FF803FF00007FE003FF0000FF8003FF0001FF0003FF0003FE0003FF0007FE0003FF0007F +E0003FF000FFC0003FF000FFC0003FF000FFC0003FF000FFC0003FF000FFC0007FF0007FE0007F +F0007FE000DFF0003FF0039FF8001FFC0F0FFFF007FFFE0FFFF001FFFC07FFF0003FE000FFF02C +267DA530>97 D<000000003FC00000003FFFC00000003FFFC00000003FFFC00000003FFFC00000 +0001FFC000000000FFC000000000FFC000000000FFC000000000FFC000000000FFC000000000FF +C000000000FFC000000000FFC000000000FFC000000000FFC000000000FFC000000000FFC00000 +0000FFC000000000FFC000000000FFC000000000FFC00000FFC0FFC0000FFFF8FFC0003FFFFEFF +C000FFE03FFFC001FF000FFFC003FE0003FFC007FC0001FFC00FF80000FFC01FF00000FFC01FF0 +0000FFC03FF00000FFC03FE00000FFC07FE00000FFC07FE00000FFC07FE00000FFC0FFE00000FF +C0FFE00000FFC0FFE00000FFC0FFE00000FFC0FFE00000FFC0FFE00000FFC0FFE00000FFC0FFE0 +0000FFC0FFE00000FFC07FE00000FFC07FE00000FFC07FE00000FFC03FF00000FFC03FF00000FF +C01FF00000FFC00FF80001FFC007F80003FFC003FC0007FFC001FE000FFFE000FFC07EFFFF003F +FFFCFFFF000FFFF0FFFF0001FF80FFFF303C7DBB37>100 D<0001FFC000000FFFF800003FFFFE +0000FF80FF0001FE003F8007FC001FC00FF8000FE00FF8000FF01FF00007F03FF00007F83FF000 +07F87FE00007F87FE00003FC7FE00003FC7FE00003FCFFE00003FCFFFFFFFFFCFFFFFFFFFCFFFF +FFFFFCFFE0000000FFE0000000FFE0000000FFE00000007FE00000007FE00000007FE00000003F +E00000003FF000003C1FF000003C1FF000003C0FF800007807FC0000F803FE0001F001FF0007E0 +00FFC03FC0003FFFFF000007FFFC000000FFE00026267DA52D>I<00FF00000000FFFF00000000 +FFFF00000000FFFF00000000FFFF0000000007FF0000000003FF0000000003FF0000000003FF00 +00000003FF0000000003FF0000000003FF0000000003FF0000000003FF0000000003FF00000000 +03FF0000000003FF0000000003FF0000000003FF0000000003FF0000000003FF0000000003FF00 +00000003FF007FC00003FF01FFF80003FF07FFFC0003FF0F03FE0003FF1C01FF0003FF3001FF80 +03FF6000FF8003FFE000FFC003FFC000FFC003FF8000FFC003FF8000FFC003FF8000FFC003FF00 +00FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC0 +03FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF00 +00FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC0 +03FF0000FFC003FF0000FFC0FFFFFC3FFFFFFFFFFC3FFFFFFFFFFC3FFFFFFFFFFC3FFFFF303C7C +BB37>104 D<01F00007FC000FFE000FFE001FFF001FFF001FFF001FFF001FFF000FFE000FFE00 +07FC0001F00000000000000000000000000000000000000000000000000000000000000000FF00 +FFFF00FFFF00FFFF00FFFF0007FF0003FF0003FF0003FF0003FF0003FF0003FF0003FF0003FF00 +03FF0003FF0003FF0003FF0003FF0003FF0003FF0003FF0003FF0003FF0003FF0003FF0003FF00 +03FF0003FF0003FF0003FF0003FF0003FF0003FF00FFFFF8FFFFF8FFFFF8FFFFF8153D7DBC1B> +I<00FE007FC000FFFE01FFF800FFFE07FFFC00FFFE0F03FE00FFFE1C01FF0007FE3001FF8003FE +6000FF8003FEE000FFC003FEC000FFC003FF8000FFC003FF8000FFC003FF8000FFC003FF0000FF +C003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF +0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FF +C003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF +0000FFC003FF0000FFC0FFFFFC3FFFFFFFFFFC3FFFFFFFFFFC3FFFFFFFFFFC3FFFFF30267CA537 +>110 D<00FF01FF8000FFFF0FFFF000FFFF3FFFFC00FFFFFE03FF00FFFFF000FF8003FFC0007F +C003FF80003FE003FF00003FF003FF00001FF803FF00001FFC03FF00000FFC03FF00000FFE03FF +00000FFE03FF000007FE03FF000007FF03FF000007FF03FF000007FF03FF000007FF03FF000007 +FF03FF000007FF03FF000007FF03FF000007FF03FF000007FF03FF000007FE03FF000007FE03FF +00000FFE03FF00000FFC03FF00000FFC03FF00001FF803FF00001FF803FF00003FF003FF80003F +E003FFC0007FC003FFF001FF8003FFFC07FF0003FF3FFFFC0003FF0FFFF00003FF01FF000003FF +0000000003FF0000000003FF0000000003FF0000000003FF0000000003FF0000000003FF000000 +0003FF0000000003FF0000000003FF0000000003FF0000000003FF0000000003FF00000000FFFF +FC000000FFFFFC000000FFFFFC000000FFFFFC00000030377DA537>112 +D<00FE03F000FFFE0FFE00FFFE1FFF00FFFE3C3F80FFFE707FC007FE60FFE003FEE0FFE003FEC0 +FFE003FFC0FFE003FF807FC003FF807FC003FF803F8003FF800E0003FF00000003FF00000003FF +00000003FF00000003FF00000003FF00000003FF00000003FF00000003FF00000003FF00000003 +FF00000003FF00000003FF00000003FF00000003FF00000003FF00000003FF00000003FF000000 +03FF00000003FF00000003FF000000FFFFFE0000FFFFFE0000FFFFFE0000FFFFFE000023267DA5 +29>114 D<0007800000078000000780000007800000078000000F8000000F8000000F8000000F +8000001F8000001F8000003F8000003F8000007F800000FF800001FF800007FF80001FFFFFF0FF +FFFFF0FFFFFFF0FFFFFFF001FF800001FF800001FF800001FF800001FF800001FF800001FF8000 +01FF800001FF800001FF800001FF800001FF800001FF800001FF800001FF800001FF800001FF80 +0001FF800001FF800001FF803C01FF803C01FF803C01FF803C01FF803C01FF803C01FF803C01FF +803C00FF807800FFC078007FC070003FE0E0001FFFC00007FF800001FF001E377EB626>116 +D<FFFFF007FFFCFFFFF007FFFCFFFFF007FFFCFFFFF007FFFC01FF8000FC0000FFC000F80000FF +E001F000007FF003E000003FF007C000001FF80FC000000FFC1F8000000FFE1F00000007FF3E00 +000003FFFC00000001FFF800000000FFF0000000007FE0000000007FF0000000003FF800000000 +1FF8000000001FFC000000003FFE000000007FFF00000000FBFF80000001F9FF80000003F0FFC0 +000003E07FE0000007C07FF000000F803FF800001F001FFC00003E000FFC00007C0007FE0000FC +0003FF0001FC0003FF80FFFF801FFFFEFFFF801FFFFEFFFF801FFFFEFFFF801FFFFE2F267EA534 +>120 D E /Fo 40 122 df<FFFFFFFEFFFFFFFEFFFFFFFEFFFFFFFEFFFFFFFEFFFFFFFEFFFFFF +FEFFFFFFFEFFFFFFFEFFFFFFFE1F0A7F9B28>45 D<07E00FF03FFC3FFC7FFEFFFFFFFFFFFFFFFF +FFFFFFFF7FFE3FFC3FFC0FF007E01010788F21>I<00001FF800000001FFFF80000007FFFFE000 +001FFFFFF800003FF81FFC0000FFE007FF0001FF8001FF8003FF0000FFC003FF0000FFC007FE00 +007FE007FE00007FE00FFC00003FF00FFC00003FF01FFC00003FF81FFC00003FF83FFC00003FFC +3FF800001FFC3FF800001FFC7FF800001FFE7FF800001FFE7FF800001FFE7FF800001FFE7FF800 +001FFE7FF800001FFEFFF800001FFFFFF800001FFFFFF800001FFFFFF800001FFFFFF800001FFF +FFF800001FFFFFF800001FFFFFF800001FFFFFF800001FFFFFF800001FFFFFF800001FFFFFF800 +001FFFFFF800001FFFFFF800001FFFFFF800001FFFFFF800001FFFFFF800001FFFFFF800001FFF +FFF800001FFFFFF800001FFFFFF800001FFF7FF800001FFE7FF800001FFE7FF800001FFE7FF800 +001FFE7FF800001FFE7FF800001FFE3FF800001FFC3FFC00003FFC3FFC00003FFC1FFC00003FF8 +1FFC00003FF81FFC00003FF80FFC00003FF00FFE00007FF007FE00007FE003FF0000FFC003FF80 +01FFC001FFC003FF8000FFE007FF00007FF81FFE00001FFFFFF8000007FFFFE0000001FFFF8000 +00001FF8000030457BC33B>48 D<03000000038007F000001F8007FF0003FF8007FFFFFFFF8007 +FFFFFFFF0007FFFFFFFE0007FFFFFFFC0007FFFFFFF80007FFFFFFF00007FFFFFFE00007FFFFFF +C00007FFFFFF000007FFFFFE000007FFFFF8000007FFFFC0000007DFFC00000007C00000000007 +C00000000007C00000000007C00000000007C00000000007C00000000007C00000000007C00000 +000007C00000000007C00000000007C07FF8000007C3FFFF000007CFFFFFE00007FFFFFFF00007 +FFC03FFC0007FE000FFE0007F80007FF0007E00007FF8007C00003FFC003800003FFE000000003 +FFE000000001FFF000000001FFF000000001FFF800000001FFF800000001FFF800000001FFF800 +000001FFFC07800001FFFC1FE00001FFFC3FF00001FFFC7FF80001FFFC7FF80001FFFCFFFC0001 +FFFCFFFC0001FFFCFFFC0001FFFCFFFC0001FFF8FFF80001FFF8FFF80001FFF87FF00001FFF07F +E00003FFF07F800003FFE03F000003FFE03F000007FFC01F80000FFF800FE0001FFF0007F0003F +FE0003FE00FFFC0001FFFFFFF80000FFFFFFE000003FFFFF8000000FFFFC00000001FFC000002E +457AC33B>53 D<0000000003E000000000000000000007F000000000000000000007F000000000 +00000000000FF80000000000000000000FF80000000000000000000FF80000000000000000001F +FC0000000000000000001FFC0000000000000000003FFE0000000000000000003FFE0000000000 +000000007FFF0000000000000000007FFF0000000000000000007FFF000000000000000000FFFF +800000000000000000FFFF800000000000000001FFFFC00000000000000001FFFFC00000000000 +000001FFFFC00000000000000003FFFFE00000000000000003EFFFE00000000000000007EFFFF0 +0000000000000007CFFFF00000000000000007C7FFF0000000000000000FC7FFF8000000000000 +000F83FFF8000000000000001F83FFFC000000000000001F03FFFC000000000000001F01FFFC00 +0000000000003F01FFFE000000000000003E00FFFE000000000000007E00FFFF00000000000000 +7C007FFF00000000000000FC007FFF80000000000000F8007FFF80000000000000F8003FFF8000 +0000000001F8003FFFC0000000000001F0001FFFC0000000000003F0001FFFE0000000000003E0 +001FFFE0000000000003E0000FFFE0000000000007E0000FFFF0000000000007C00007FFF00000 +0000000FC00007FFF800000000000F800007FFF800000000000F800003FFF800000000001F8000 +03FFFC00000000001F000001FFFC00000000003FFFFFFFFFFE00000000003FFFFFFFFFFE000000 +00007FFFFFFFFFFF00000000007FFFFFFFFFFF00000000007FFFFFFFFFFF0000000000FC000000 +7FFF8000000000F80000003FFF8000000001F80000003FFFC000000001F00000003FFFC0000000 +01F00000001FFFC000000003F00000001FFFE000000003E00000000FFFE000000007E00000000F +FFF000000007C00000000FFFF000000007C000000007FFF00000000FC000000007FFF80000000F +8000000003FFF80000001F8000000003FFFC0000001F0000000003FFFC0000007FC000000001FF +FC0000FFFFFFC00007FFFFFFFF80FFFFFFC00007FFFFFFFF80FFFFFFC00007FFFFFFFF80FFFFFF +C00007FFFFFFFF80FFFFFFC00007FFFFFFFF8051487CC75A>65 D<FFFFFFFFFFFFE00000FFFFFF +FFFFFFFE0000FFFFFFFFFFFFFFC000FFFFFFFFFFFFFFF000FFFFFFFFFFFFFFF800001FFF800001 +FFFE00001FFF8000007FFF00001FFF8000003FFF80001FFF8000001FFFC0001FFF8000000FFFC0 +001FFF80000007FFE0001FFF80000007FFF0001FFF80000007FFF0001FFF80000003FFF0001FFF +80000003FFF8001FFF80000003FFF8001FFF80000003FFF8001FFF80000003FFF8001FFF800000 +03FFF8001FFF80000003FFF8001FFF80000003FFF8001FFF80000003FFF8001FFF80000003FFF0 +001FFF80000007FFF0001FFF80000007FFE0001FFF8000000FFFE0001FFF8000000FFFC0001FFF +8000001FFF80001FFF8000003FFF00001FFF8000007FFE00001FFF800001FFFC00001FFF800007 +FFF000001FFFFFFFFFFFC000001FFFFFFFFFFE0000001FFFFFFFFFFF8000001FFFFFFFFFFFF000 +001FFF800000FFFC00001FFF8000003FFF00001FFF8000000FFFC0001FFF80000007FFE0001FFF +80000003FFF0001FFF80000003FFF8001FFF80000001FFF8001FFF80000001FFFC001FFF800000 +00FFFC001FFF80000000FFFE001FFF80000000FFFE001FFF80000000FFFE001FFF80000000FFFF +001FFF800000007FFF001FFF800000007FFF001FFF800000007FFF001FFF800000007FFF001FFF +80000000FFFF001FFF80000000FFFF001FFF80000000FFFF001FFF80000000FFFE001FFF800000 +00FFFE001FFF80000001FFFE001FFF80000001FFFC001FFF80000003FFFC001FFF80000007FFF8 +001FFF80000007FFF0001FFF8000001FFFE0001FFF8000003FFFE0001FFF800001FFFF80FFFFFF +FFFFFFFFFF00FFFFFFFFFFFFFFFC00FFFFFFFFFFFFFFF000FFFFFFFFFFFFFFC000FFFFFFFFFFFF +F8000048477CC654>I<000000003FFE00000E0000000FFFFFC0001E0000007FFFFFF8003E0000 +03FFFFFFFE00FE00000FFFFFFFFF81FE00003FFFF800FFC3FE0000FFFF80000FF7FE0001FFFC00 +0003FFFE0007FFF0000001FFFE000FFFC00000007FFE001FFF800000003FFE003FFF000000001F +FE007FFE000000000FFE00FFFC0000000007FE01FFF80000000007FE03FFF00000000003FE03FF +F00000000001FE07FFE00000000001FE07FFE00000000000FE0FFFC00000000000FE0FFFC00000 +0000007E1FFFC000000000007E1FFF8000000000007E3FFF8000000000007E3FFF800000000000 +3E3FFF8000000000003E7FFF8000000000003E7FFF0000000000003E7FFF000000000000007FFF +00000000000000FFFF00000000000000FFFF00000000000000FFFF00000000000000FFFF000000 +00000000FFFF00000000000000FFFF00000000000000FFFF00000000000000FFFF000000000000 +00FFFF00000000000000FFFF00000000000000FFFF00000000000000FFFF00000000000000FFFF +000000000000007FFF000000000000007FFF000000000000007FFF000000000000007FFF800000 +0000003E3FFF8000000000003E3FFF8000000000003E3FFF8000000000003E1FFF800000000000 +3E1FFFC000000000003E0FFFC000000000007C0FFFC000000000007C07FFE000000000007C07FF +E00000000000F803FFF00000000000F803FFF00000000001F801FFF80000000001F000FFFC0000 +000003E0007FFE0000000007E0003FFF000000000FC0001FFF800000001F80000FFFC00000003F +000007FFF0000000FE000001FFFC000001FC000000FFFF80000FF80000003FFFF8007FF0000000 +0FFFFFFFFFC000000003FFFFFFFF00000000007FFFFFFC00000000000FFFFFE00000000000003F +FE000000474979C756>I<FFFFFFFFFFFFFFFE00FFFFFFFFFFFFFFFE00FFFFFFFFFFFFFFFE00FF +FFFFFFFFFFFFFE00FFFFFFFFFFFFFFFF00001FFFC00001FFFF00001FFFC000001FFF00001FFFC0 +000007FF00001FFFC0000003FF00001FFFC0000000FF00001FFFC00000007F00001FFFC0000000 +7F00001FFFC00000003F00001FFFC00000003F80001FFFC00000001F80001FFFC00000001F8000 +1FFFC00000001F80001FFFC00000000F80001FFFC00000000F80001FFFC0007C000F80001FFFC0 +007C000F80001FFFC0007C0007C0001FFFC0007C0007C0001FFFC0007C0007C0001FFFC0007C00 +07C0001FFFC000FC000000001FFFC000FC000000001FFFC000FC000000001FFFC001FC00000000 +1FFFC003FC000000001FFFC01FFC000000001FFFFFFFFC000000001FFFFFFFFC000000001FFFFF +FFFC000000001FFFFFFFFC000000001FFFFFFFFC000000001FFFC01FFC000000001FFFC003FC00 +0000001FFFC001FC000000001FFFC000FC000000001FFFC000FC000000001FFFC000FC00000000 +1FFFC0007C00007C001FFFC0007C00007C001FFFC0007C00007C001FFFC0007C0000F8001FFFC0 +007C0000F8001FFFC0007C0000F8001FFFC000000000F8001FFFC000000001F8001FFFC0000000 +01F0001FFFC000000001F0001FFFC000000001F0001FFFC000000003F0001FFFC000000003F000 +1FFFC000000007F0001FFFC000000007E0001FFFC00000000FE0001FFFC00000001FE0001FFFC0 +0000003FE0001FFFC00000007FE0001FFFC0000000FFE0001FFFC0000003FFC0001FFFC000000F +FFC0001FFFC00000FFFFC0FFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFF80FF +FFFFFFFFFFFFFF80FFFFFFFFFFFFFFFF8046467CC54E>69 D<FFFFFFFFFFFFFFFC00FFFFFFFFFF +FFFFFC00FFFFFFFFFFFFFFFC00FFFFFFFFFFFFFFFC00FFFFFFFFFFFFFFFE00001FFFC00003FFFE +00001FFFC000003FFE00001FFFC000000FFE00001FFFC0000003FE00001FFFC0000001FE00001F +FFC0000000FE00001FFFC0000000FE00001FFFC00000007E00001FFFC00000007F00001FFFC000 +00003F00001FFFC00000003F00001FFFC00000001F00001FFFC00000001F00001FFFC00000001F +00001FFFC00000001F00001FFFC0007C001F00001FFFC0007C000F80001FFFC0007C000F80001F +FFC0007C000F80001FFFC0007C000F80001FFFC0007C000000001FFFC000FC000000001FFFC000 +FC000000001FFFC000FC000000001FFFC001FC000000001FFFC003FC000000001FFFC01FFC0000 +00001FFFFFFFFC000000001FFFFFFFFC000000001FFFFFFFFC000000001FFFFFFFFC000000001F +FFFFFFFC000000001FFFC01FFC000000001FFFC003FC000000001FFFC001FC000000001FFFC000 +FC000000001FFFC000FC000000001FFFC000FC000000001FFFC0007C000000001FFFC0007C0000 +00001FFFC0007C000000001FFFC0007C000000001FFFC0007C000000001FFFC0007C000000001F +FFC00000000000001FFFC00000000000001FFFC00000000000001FFFC00000000000001FFFC000 +00000000001FFFC00000000000001FFFC00000000000001FFFC00000000000001FFFC000000000 +00001FFFC00000000000001FFFC00000000000001FFFC00000000000001FFFC00000000000001F +FFC00000000000001FFFC00000000000001FFFC00000000000FFFFFFFFFF00000000FFFFFFFFFF +00000000FFFFFFFFFF00000000FFFFFFFFFF00000000FFFFFFFFFF0000000041467CC54B>I<00 +0000003FFE00000E000000000FFFFFC0001E000000007FFFFFF8003E00000003FFFFFFFE00FE00 +00000FFFFFFFFF81FE0000003FFFF800FFC3FE000000FFFF80000FF7FE000001FFFC000003FFFE +000007FFF0000001FFFE00000FFFC00000007FFE00001FFF800000003FFE00003FFF000000001F +FE00007FFE000000000FFE0000FFFC0000000007FE0001FFF80000000007FE0003FFF000000000 +03FE0003FFF00000000001FE0007FFE00000000001FE0007FFE00000000000FE000FFFC0000000 +0000FE000FFFC000000000007E001FFFC000000000007E001FFF8000000000007E003FFF800000 +0000007E003FFF8000000000003E003FFF8000000000003E007FFF8000000000003E007FFF0000 +000000003E007FFF00000000000000007FFF0000000000000000FFFF0000000000000000FFFF00 +00000000000000FFFF0000000000000000FFFF0000000000000000FFFF0000000000000000FFFF +0000000000000000FFFF0000000000000000FFFF0000000000000000FFFF0000000000000000FF +FF0000000000000000FFFF0000000000000000FFFF0000000000000000FFFF0000007FFFFFFFFE +7FFF0000007FFFFFFFFE7FFF0000007FFFFFFFFE7FFF8000007FFFFFFFFE7FFF8000007FFFFFFF +FE3FFF8000000000FFFE003FFF8000000000FFFE003FFF8000000000FFFE001FFF8000000000FF +FE001FFFC000000000FFFE000FFFC000000000FFFE000FFFC000000000FFFE0007FFE000000000 +FFFE0007FFE000000000FFFE0003FFF000000000FFFE0003FFF800000000FFFE0001FFF8000000 +00FFFE0000FFFC00000000FFFE00007FFE00000000FFFE00003FFF00000000FFFE00001FFF8000 +0000FFFE00000FFFE0000001FFFE000007FFF0000003FFFE000001FFFC000007FFFE000000FFFF +80001FFFFE0000003FFFFC00FFC7FE0000000FFFFFFFFF83FE00000003FFFFFFFE00FE00000000 +7FFFFFF8003E000000000FFFFFE0000E00000000003FFE000000004F4979C75D>I<FFFFFFFFF8 +01FFFFFFFFF0FFFFFFFFF801FFFFFFFFF0FFFFFFFFF801FFFFFFFFF0FFFFFFFFF801FFFFFFFFF0 +FFFFFFFFF801FFFFFFFFF0001FFFC00000003FFF8000001FFFC00000003FFF8000001FFFC00000 +003FFF8000001FFFC00000003FFF8000001FFFC00000003FFF8000001FFFC00000003FFF800000 +1FFFC00000003FFF8000001FFFC00000003FFF8000001FFFC00000003FFF8000001FFFC0000000 +3FFF8000001FFFC00000003FFF8000001FFFC00000003FFF8000001FFFC00000003FFF8000001F +FFC00000003FFF8000001FFFC00000003FFF8000001FFFC00000003FFF8000001FFFC00000003F +FF8000001FFFC00000003FFF8000001FFFC00000003FFF8000001FFFC00000003FFF8000001FFF +C00000003FFF8000001FFFC00000003FFF8000001FFFC00000003FFF8000001FFFC00000003FFF +8000001FFFC00000003FFF8000001FFFC00000003FFF8000001FFFC00000003FFF8000001FFFFF +FFFFFFFFFF8000001FFFFFFFFFFFFFFF8000001FFFFFFFFFFFFFFF8000001FFFFFFFFFFFFFFF80 +00001FFFFFFFFFFFFFFF8000001FFFC00000003FFF8000001FFFC00000003FFF8000001FFFC000 +00003FFF8000001FFFC00000003FFF8000001FFFC00000003FFF8000001FFFC00000003FFF8000 +001FFFC00000003FFF8000001FFFC00000003FFF8000001FFFC00000003FFF8000001FFFC00000 +003FFF8000001FFFC00000003FFF8000001FFFC00000003FFF8000001FFFC00000003FFF800000 +1FFFC00000003FFF8000001FFFC00000003FFF8000001FFFC00000003FFF8000001FFFC0000000 +3FFF8000001FFFC00000003FFF8000001FFFC00000003FFF8000001FFFC00000003FFF8000001F +FFC00000003FFF8000001FFFC00000003FFF8000001FFFC00000003FFF8000001FFFC00000003F +FF8000001FFFC00000003FFF8000001FFFC00000003FFF8000001FFFC00000003FFF8000001FFF +C00000003FFF8000001FFFC00000003FFF8000FFFFFFFFF801FFFFFFFFF0FFFFFFFFF801FFFFFF +FFF0FFFFFFFFF801FFFFFFFFF0FFFFFFFFF801FFFFFFFFF0FFFFFFFFF801FFFFFFFFF054477CC6 +5D>I<FFFFFFFFFEFFFFFFFFFEFFFFFFFFFEFFFFFFFFFEFFFFFFFFFE000FFFE000000FFFE00000 +0FFFE000000FFFE000000FFFE000000FFFE000000FFFE000000FFFE000000FFFE000000FFFE000 +000FFFE000000FFFE000000FFFE000000FFFE000000FFFE000000FFFE000000FFFE000000FFFE0 +00000FFFE000000FFFE000000FFFE000000FFFE000000FFFE000000FFFE000000FFFE000000FFF +E000000FFFE000000FFFE000000FFFE000000FFFE000000FFFE000000FFFE000000FFFE000000F +FFE000000FFFE000000FFFE000000FFFE000000FFFE000000FFFE000000FFFE000000FFFE00000 +0FFFE000000FFFE000000FFFE000000FFFE000000FFFE000000FFFE000000FFFE000000FFFE000 +000FFFE000000FFFE000000FFFE000000FFFE000000FFFE000000FFFE000000FFFE000000FFFE0 +00000FFFE000000FFFE000000FFFE000000FFFE000FFFFFFFFFEFFFFFFFFFEFFFFFFFFFEFFFFFF +FFFEFFFFFFFFFE27477DC62D>I<FFFFFFFFF80000FFFFFFC0FFFFFFFFF80000FFFFFFC0FFFFFF +FFF80000FFFFFFC0FFFFFFFFF80000FFFFFFC0FFFFFFFFF80000FFFFFFC0001FFFC000000003FF +8000001FFFC000000001FE0000001FFFC000000003F80000001FFFC000000007F00000001FFFC0 +0000000FE00000001FFFC00000001FC00000001FFFC00000007F800000001FFFC0000000FE0000 +00001FFFC0000001FC000000001FFFC0000003F8000000001FFFC0000007F0000000001FFFC000 +001FE0000000001FFFC000003FC0000000001FFFC000007F00000000001FFFC00000FE00000000 +001FFFC00001FC00000000001FFFC00007F800000000001FFFC0000FF000000000001FFFC0001F +C000000000001FFFC0003F8000000000001FFFC0007F0000000000001FFFC000FE000000000000 +1FFFC003FC0000000000001FFFC007FC0000000000001FFFC00FFE0000000000001FFFC01FFF00 +00000000001FFFC03FFF8000000000001FFFC0FFFF8000000000001FFFC1FFFFC000000000001F +FFC3FFFFE000000000001FFFC7FFFFF000000000001FFFCFEFFFF000000000001FFFDFC7FFF800 +000000001FFFFF87FFFC00000000001FFFFE03FFFC00000000001FFFFC01FFFE00000000001FFF +F800FFFF00000000001FFFF000FFFF80000000001FFFE0007FFF80000000001FFFC0003FFFC000 +0000001FFFC0001FFFE0000000001FFFC0001FFFF0000000001FFFC0000FFFF0000000001FFFC0 +0007FFF8000000001FFFC00003FFFC000000001FFFC00003FFFE000000001FFFC00001FFFE0000 +00001FFFC00000FFFF000000001FFFC000007FFF800000001FFFC000007FFFC00000001FFFC000 +003FFFC00000001FFFC000001FFFE00000001FFFC000000FFFF00000001FFFC000000FFFF80000 +001FFFC0000007FFF80000001FFFC0000003FFFC0000001FFFC0000001FFFE0000001FFFC00000 +01FFFF0000001FFFC0000000FFFF0000001FFFC00000007FFF8000001FFFC0000000FFFFC000FF +FFFFFFF8007FFFFFFFE0FFFFFFFFF8007FFFFFFFE0FFFFFFFFF8007FFFFFFFE0FFFFFFFFF8007F +FFFFFFE0FFFFFFFFF8007FFFFFFFE053477CC65D>75 D<00000003FFF0000000000000007FFFFF +80000000000003FFFFFFF000000000000FFFFFFFFC00000000003FFF807FFF0000000000FFF800 +07FFC000000003FFE00001FFF000000007FFC00000FFF80000000FFF0000003FFC0000001FFE00 +00001FFE0000003FFC0000000FFF0000007FFC0000000FFF800000FFF800000007FFC00001FFF0 +00000003FFE00003FFF000000003FFF00003FFE000000001FFF00007FFE000000001FFF80007FF +C000000000FFF8000FFFC000000000FFFC000FFFC000000000FFFC001FFF80000000007FFE001F +FF80000000007FFE003FFF80000000007FFF003FFF80000000007FFF003FFF80000000007FFF00 +7FFF00000000003FFF807FFF00000000003FFF807FFF00000000003FFF807FFF00000000003FFF +807FFF00000000003FFF80FFFF00000000003FFFC0FFFF00000000003FFFC0FFFF00000000003F +FFC0FFFF00000000003FFFC0FFFF00000000003FFFC0FFFF00000000003FFFC0FFFF0000000000 +3FFFC0FFFF00000000003FFFC0FFFF00000000003FFFC0FFFF00000000003FFFC0FFFF00000000 +003FFFC0FFFF00000000003FFFC0FFFF00000000003FFFC0FFFF00000000003FFFC07FFF000000 +00003FFF807FFF00000000003FFF807FFF80000000007FFF807FFF80000000007FFF803FFF8000 +0000007FFF003FFF80000000007FFF003FFF80000000007FFF001FFFC000000000FFFE001FFFC0 +00000000FFFE001FFFC000000000FFFE000FFFE000000001FFFC000FFFE000000001FFFC0007FF +E000000001FFF80003FFF000000003FFF00003FFF800000007FFF00001FFF800000007FFE00000 +FFFC0000000FFFC000007FFE0000001FFF8000007FFF0000003FFF8000003FFF8000007FFF0000 +000FFFC00000FFFC00000007FFF00003FFF800000003FFFC000FFFF000000000FFFF807FFFC000 +0000007FFFFFFFFF80000000000FFFFFFFFC000000000003FFFFFFF00000000000007FFFFF8000 +000000000003FFF0000000004A4979C759>79 D<FFFFFFFFFFFF800000FFFFFFFFFFFFFC0000FF +FFFFFFFFFFFF0000FFFFFFFFFFFFFFC000FFFFFFFFFFFFFFF000001FFF80000FFFFC00001FFF80 +0001FFFE00001FFF8000007FFF00001FFF8000003FFF80001FFF8000001FFFC0001FFF8000000F +FFC0001FFF8000000FFFE0001FFF8000000FFFE0001FFF80000007FFF0001FFF80000007FFF000 +1FFF80000007FFF0001FFF80000007FFF8001FFF80000007FFF8001FFF80000007FFF8001FFF80 +000007FFF8001FFF80000007FFF8001FFF80000007FFF8001FFF80000007FFF8001FFF80000007 +FFF8001FFF80000007FFF0001FFF80000007FFF0001FFF80000007FFF0001FFF8000000FFFE000 +1FFF8000000FFFE0001FFF8000000FFFC0001FFF8000001FFF80001FFF8000003FFF80001FFF80 +00007FFF00001FFF800001FFFE00001FFF80000FFFF800001FFFFFFFFFFFF000001FFFFFFFFFFF +C000001FFFFFFFFFFE0000001FFFFFFFFFF00000001FFFC00000000000001FFFC0000000000000 +1FFFC00000000000001FFFC00000000000001FFFC00000000000001FFFC00000000000001FFFC0 +0000000000001FFFC00000000000001FFFC00000000000001FFFC00000000000001FFFC0000000 +0000001FFFC00000000000001FFFC00000000000001FFFC00000000000001FFFC0000000000000 +1FFFC00000000000001FFFC00000000000001FFFC00000000000001FFFC00000000000001FFFC0 +0000000000001FFFC00000000000001FFFC00000000000001FFFC00000000000001FFFC0000000 +0000001FFFC00000000000001FFFC00000000000001FFFC00000000000FFFFFFFFF800000000FF +FFFFFFF800000000FFFFFFFFF800000000FFFFFFFFF800000000FFFFFFFFF80000000045477CC6 +51>I<FFFFFFFFFFFC0000000000FFFFFFFFFFFFF000000000FFFFFFFFFFFFFE00000000FFFFFF +FFFFFFFF80000000FFFFFFFFFFFFFFE0000000001FFF80001FFFF8000000001FFF800001FFFC00 +0000001FFF8000007FFF000000001FFF8000003FFF800000001FFF8000001FFF800000001FFF80 +00000FFFC00000001FFF8000000FFFE00000001FFF8000000FFFE00000001FFF80000007FFF000 +00001FFF80000007FFF00000001FFF80000007FFF80000001FFF80000007FFF80000001FFF8000 +0007FFF80000001FFF80000007FFF80000001FFF80000007FFF80000001FFF80000007FFF80000 +001FFF80000007FFF80000001FFF80000007FFF80000001FFF80000007FFF00000001FFF800000 +07FFF00000001FFF8000000FFFE00000001FFF8000000FFFE00000001FFF8000000FFFC0000000 +1FFF8000001FFF800000001FFF8000003FFF000000001FFF800000FFFE000000001FFF800003FF +F8000000001FFF80001FFFF0000000001FFFFFFFFFFFC0000000001FFFFFFFFFFE00000000001F +FFFFFFFFF800000000001FFFFFFFFFFE00000000001FFF80007FFF80000000001FFF80001FFFC0 +000000001FFF800007FFE0000000001FFF800003FFF0000000001FFF800001FFF8000000001FFF +800001FFFC000000001FFF800000FFFE000000001FFF800000FFFE000000001FFF8000007FFE00 +0000001FFF8000007FFF000000001FFF8000007FFF000000001FFF8000007FFF000000001FFF80 +00007FFF000000001FFF8000007FFF000000001FFF8000007FFF000000001FFF8000007FFF0000 +00001FFF8000007FFF800000001FFF8000007FFF800000001FFF8000007FFF800000001FFF8000 +007FFF800000001FFF8000007FFF800000001FFF8000007FFF8000E0001FFF8000007FFF8001F0 +001FFF8000007FFFC001F0001FFF8000007FFFC001F0001FFF8000003FFFC001F0001FFF800000 +3FFFC003F0001FFF8000001FFFE003E0001FFF8000000FFFE007E0FFFFFFFFF00007FFF007C0FF +FFFFFFF00003FFFC1F80FFFFFFFFF00001FFFFFF00FFFFFFFFF000007FFFFE00FFFFFFFFF00000 +1FFFFC000000000000000000FFF00054487CC659>82 D<00007FF00007000007FFFF000F00001F +FFFFC01F00007FFFFFF03F0000FFFFFFFC7F0003FFC00FFEFF0007FE0000FFFF0007FC00003FFF +000FF000001FFF001FF0000007FF001FE0000003FF003FE0000001FF003FC0000001FF007FC000 +0000FF007FC00000007F007FC00000007F00FFC00000003F00FFC00000003F00FFC00000003F00 +FFE00000003F00FFE00000001F00FFF00000001F00FFF80000001F00FFFC0000001F00FFFF0000 +0000007FFFC0000000007FFFFE000000007FFFFFE00000003FFFFFFF0000003FFFFFFFF000001F +FFFFFFFC00001FFFFFFFFF00000FFFFFFFFFC00007FFFFFFFFE00007FFFFFFFFF00003FFFFFFFF +F80000FFFFFFFFFC00007FFFFFFFFE00003FFFFFFFFE00000FFFFFFFFF000001FFFFFFFF000000 +3FFFFFFF80000001FFFFFF800000000FFFFFC000000000FFFFC0000000001FFFC0000000000FFF +E00000000007FFE00000000003FFE07800000001FFE0F800000000FFE0F800000000FFE0F80000 +00007FE0F8000000007FE0F8000000007FE0FC000000007FE0FC000000007FC0FC000000007FC0 +FE000000007FC0FE000000007F80FF00000000FF80FF80000000FF80FFC0000000FF00FFE00000 +01FE00FFF8000003FE00FFFE000007FC00FFFF80000FF800FFFFFC007FF000FE3FFFFFFFE000FC +0FFFFFFF8000F803FFFFFF0000F0007FFFF80000E00003FFC00000334979C742>I<3FFFFFFFFF +FFFFFFFF003FFFFFFFFFFFFFFFFF003FFFFFFFFFFFFFFFFF003FFFFFFFFFFFFFFFFF003FFFFFFF +FFFFFFFFFF003FFF0003FFF8003FFF007FF80003FFF80007FF807FE00003FFF80001FF807FC000 +03FFF80000FF807F800003FFF800007F807F000003FFF800003F807F000003FFF800003F807E00 +0003FFF800001F807E000003FFF800001F807E000003FFF800000F807C000003FFF800000F807C +000003FFF800000F807C000003FFF800000F807C000003FFF800000F80FC000003FFF800000FC0 +F8000003FFF8000007C0F8000003FFF8000007C0F8000003FFF8000007C0F8000003FFF8000007 +C0F8000003FFF8000007C000000003FFF80000000000000003FFF80000000000000003FFF80000 +000000000003FFF80000000000000003FFF80000000000000003FFF80000000000000003FFF800 +00000000000003FFF80000000000000003FFF80000000000000003FFF80000000000000003FFF8 +0000000000000003FFF80000000000000003FFF80000000000000003FFF80000000000000003FF +F80000000000000003FFF80000000000000003FFF80000000000000003FFF80000000000000003 +FFF80000000000000003FFF80000000000000003FFF80000000000000003FFF800000000000000 +03FFF80000000000000003FFF80000000000000003FFF80000000000000003FFF8000000000000 +0003FFF80000000000000003FFF80000000000000003FFF80000000000000003FFF80000000000 +000003FFF80000000000000003FFF80000000000000003FFF80000000000000003FFF800000000 +00000003FFF80000000000000003FFF80000000000000003FFF80000000000000003FFF8000000 +0000000003FFF80000000000000003FFF8000000000003FFFFFFFFFFF800000003FFFFFFFFFFF8 +00000003FFFFFFFFFFF800000003FFFFFFFFFFF800000003FFFFFFFFFFF800004A467CC553>I< +0007FFFC000000007FFFFFC0000001FFFFFFF8000003FFFFFFFE000007FE001FFF000007FF0003 +FFC0000FFF8001FFE0000FFF8000FFF0000FFF80007FF0000FFF80007FF8000FFF80007FF80007 +FF00003FFC0007FF00003FFC0003FE00003FFC0000F800003FFC00000000003FFC00000000003F +FC00000000003FFC00000000003FFC00000007FFFFFC000000FFFFFFFC000007FFFFFFFC00003F +FFE03FFC0000FFFE003FFC0003FFF0003FFC0007FFC0003FFC000FFF00003FFC001FFE00003FFC +003FFC00003FFC007FF800003FFC007FF800003FFC00FFF000003FFC00FFF000003FFC00FFF000 +003FFC00FFF000003FFC00FFF000003FFC00FFF000007FFC007FF80000FFFC007FF80001EFFC00 +3FFC0003EFFC003FFF0007CFFF000FFFC03F8FFFF807FFFFFF07FFFC01FFFFFC03FFFC007FFFF0 +01FFFC0003FF80007FF8362E7DAD3A>97 D<007FC00000000000FFFFC00000000000FFFFC00000 +000000FFFFC00000000000FFFFC00000000000FFFFC0000000000003FFC0000000000001FFC000 +0000000001FFC0000000000001FFC0000000000001FFC0000000000001FFC0000000000001FFC0 +000000000001FFC0000000000001FFC0000000000001FFC0000000000001FFC0000000000001FF +C0000000000001FFC0000000000001FFC0000000000001FFC0000000000001FFC0000000000001 +FFC0000000000001FFC0000000000001FFC0000000000001FFC0000000000001FFC00FFC000000 +01FFC07FFFC0000001FFC3FFFFF0000001FFCFFFFFFC000001FFDFF00FFF000001FFFF8003FF80 +0001FFFE0001FFC00001FFF800007FE00001FFF000007FF00001FFE000003FF80001FFE000001F +FC0001FFE000001FFC0001FFE000001FFE0001FFE000001FFE0001FFE000000FFF0001FFE00000 +0FFF0001FFE000000FFF0001FFE000000FFF0001FFE000000FFF8001FFE000000FFF8001FFE000 +000FFF8001FFE000000FFF8001FFE000000FFF8001FFE000000FFF8001FFE000000FFF8001FFE0 +00000FFF8001FFE000000FFF8001FFE000000FFF8001FFE000000FFF0001FFE000000FFF0001FF +E000000FFF0001FFE000001FFE0001FFE000001FFE0001FFE000001FFC0001FFE000001FFC0001 +FFE000003FF80001FFF000003FF80001FFF800007FF00001FFFC0000FFE00001FFFE0001FFC000 +01FFBF0007FF800001FF1FE01FFE000001FE0FFFFFFC000001FC03FFFFF0000001F800FFFF8000 +0001F0001FF800000039487CC742>I<00001FFFC0000000FFFFF8000007FFFFFE00001FFFFFFF +80007FFC00FFC000FFE001FFC001FFC003FFE003FF8003FFE007FF0003FFE00FFE0003FFE00FFE +0003FFE01FFC0001FFC01FFC0001FFC03FFC0000FF803FFC00003E007FF8000000007FF8000000 +007FF800000000FFF800000000FFF800000000FFF800000000FFF800000000FFF800000000FFF8 +00000000FFF800000000FFF800000000FFF800000000FFF8000000007FF8000000007FF8000000 +007FFC000000003FFC000000003FFC000000001FFC000000F81FFE000000F80FFE000000F80FFF +000001F007FF800003F003FFC00007E001FFE0000FC000FFF0001F80007FFE00FF00001FFFFFFE +000007FFFFF8000000FFFFE00000001FFE00002D2E7CAD35>I<00000000007FC00000000000FF +FFC00000000000FFFFC00000000000FFFFC00000000000FFFFC00000000000FFFFC00000000000 +03FFC0000000000001FFC0000000000001FFC0000000000001FFC0000000000001FFC000000000 +0001FFC0000000000001FFC0000000000001FFC0000000000001FFC0000000000001FFC0000000 +000001FFC0000000000001FFC0000000000001FFC0000000000001FFC0000000000001FFC00000 +00000001FFC0000000000001FFC0000000000001FFC0000000000001FFC0000000000001FFC000 +00000FFC01FFC0000000FFFF81FFC0000007FFFFE1FFC000001FFFFFF9FFC000007FFC03FFFFC0 +0000FFF0007FFFC00001FFC0001FFFC00003FF80000FFFC00007FF000007FFC0000FFE000003FF +C0000FFE000003FFC0001FFC000003FFC0001FFC000003FFC0003FFC000003FFC0003FFC000003 +FFC0007FF8000003FFC0007FF8000003FFC0007FF8000003FFC000FFF8000003FFC000FFF80000 +03FFC000FFF8000003FFC000FFF8000003FFC000FFF8000003FFC000FFF8000003FFC000FFF800 +0003FFC000FFF8000003FFC000FFF8000003FFC000FFF8000003FFC0007FF8000003FFC0007FF8 +000003FFC0007FF8000003FFC0003FF8000003FFC0003FFC000003FFC0003FFC000003FFC0001F +FC000003FFC0001FFC000003FFC0000FFE000007FFC00007FF00000FFFC00003FF00001FFFC000 +01FFC0003FFFC00000FFE000FFFFE000007FF807FBFFFF80001FFFFFF3FFFF800007FFFFC3FFFF +800001FFFF03FFFF8000001FF803FFFF8039487CC742>I<00001FFE00000001FFFFE0000007FF +FFF800001FFFFFFE00007FFC07FF0000FFE001FF8001FFC0007FC003FF80003FE007FF00003FF0 +0FFE00001FF01FFE00000FF81FFC00000FF83FFC00000FFC3FFC000007FC7FFC000007FC7FF800 +0007FC7FF8000007FE7FF8000007FEFFF8000007FEFFF8000007FEFFFFFFFFFFFEFFFFFFFFFFFE +FFFFFFFFFFFEFFFFFFFFFFFCFFF800000000FFF800000000FFF800000000FFF8000000007FF800 +0000007FF8000000007FFC000000003FFC000000003FFC000000003FFC0000001C1FFE0000003E +0FFE0000003E07FF0000007E07FF000000FC03FF800001F801FFC00003F0007FF0001FE0003FFE +00FFC0001FFFFFFF800007FFFFFE000000FFFFF80000000FFF80002F2E7DAD36>I<000000FFC0 +00000007FFF80000003FFFFC000000FFFFFF000001FFC1FF000007FF03FF80000FFC03FF80000F +F807FFC0001FF807FFC0003FF007FFC0003FF007FFC0003FE003FF80007FE003FF80007FE001FF +00007FE000FE00007FE0003800007FE0000000007FE0000000007FE0000000007FE0000000007F +E0000000007FE0000000007FE0000000007FE0000000007FE0000000007FE0000000FFFFFFFE00 +00FFFFFFFE0000FFFFFFFE0000FFFFFFFE0000FFFFFFFE0000007FF0000000007FF0000000007F +F0000000007FF0000000007FF0000000007FF0000000007FF0000000007FF0000000007FF00000 +00007FF0000000007FF0000000007FF0000000007FF0000000007FF0000000007FF0000000007F +F0000000007FF0000000007FF0000000007FF0000000007FF0000000007FF0000000007FF00000 +00007FF0000000007FF0000000007FF0000000007FF0000000007FF0000000007FF0000000007F +F0000000007FF0000000007FF0000000007FF0000000007FF0000000007FF0000000007FF00000 +00007FF00000003FFFFFF800003FFFFFF800003FFFFFF800003FFFFFF800003FFFFFF800002A48 +7DC724>I<00000000001F8000007FF000FFE00007FFFF03FFF0001FFFFFC7FFF0007FFFFFFFC7 +F800FFE03FFE0FF801FF800FFC0FF803FF0007FE0FF807FE0003FF07F007FE0003FF07F00FFC00 +01FF81C00FFC0001FF80000FFC0001FF80001FFC0001FFC0001FFC0001FFC0001FFC0001FFC000 +1FFC0001FFC0001FFC0001FFC0001FFC0001FFC0000FFC0001FF80000FFC0001FF80000FFC0001 +FF800007FE0003FF000007FE0003FF000003FF0007FE000001FF800FFC000000FFE03FF8000001 +FFFFFFF0000001DFFFFFC0000003C7FFFF00000003C07FF000000007C0000000000007C0000000 +000007C0000000000007C0000000000007E0000000000007F0000000000007F8000000000007FF +FFFFF0000007FFFFFFFF000003FFFFFFFFE00003FFFFFFFFF80001FFFFFFFFFE0001FFFFFFFFFF +0000FFFFFFFFFF80007FFFFFFFFF8003FFFFFFFFFFC00FFFFFFFFFFFC01FF800001FFFE03FE000 +0001FFE07FC00000007FF07FC00000003FF0FF800000001FF0FF800000001FF0FF800000001FF0 +FF800000001FF0FF800000001FF07FC00000003FE07FC00000003FE03FE00000007FC03FF00000 +00FFC01FFC000003FF800FFF00000FFF0003FFF000FFFC0000FFFFFFFFF000003FFFFFFFC00000 +07FFFFFE000000003FFFC0000035447DAE3B>I<007FC00000000000FFFFC00000000000FFFFC0 +0000000000FFFFC00000000000FFFFC00000000000FFFFC0000000000003FFC0000000000001FF +C0000000000001FFC0000000000001FFC0000000000001FFC0000000000001FFC0000000000001 +FFC0000000000001FFC0000000000001FFC0000000000001FFC0000000000001FFC00000000000 +01FFC0000000000001FFC0000000000001FFC0000000000001FFC0000000000001FFC000000000 +0001FFC0000000000001FFC0000000000001FFC0000000000001FFC0000000000001FFC001FFC0 +000001FFC00FFFF8000001FFC03FFFFE000001FFC0FFFFFF000001FFC1FC07FF800001FFC3E003 +FFC00001FFC7C001FFC00001FFCF0001FFE00001FFDE0000FFE00001FFDC0000FFE00001FFFC00 +00FFF00001FFF80000FFF00001FFF00000FFF00001FFF00000FFF00001FFF00000FFF00001FFE0 +0000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FF +E00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001 +FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF000 +01FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF0 +0001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FF +F00001FFE00000FFF000FFFFFFC07FFFFFE0FFFFFFC07FFFFFE0FFFFFFC07FFFFFE0FFFFFFC07F +FFFFE0FFFFFFC07FFFFFE03B487CC742>I<00FC0001FE0003FF0007FF800FFFC01FFFE01FFFE0 +1FFFE01FFFE01FFFE01FFFE00FFFC007FF8003FF0001FE0000FC00000000000000000000000000 +000000000000000000000000000000000000000000007FC0FFFFC0FFFFC0FFFFC0FFFFC0FFFFC0 +03FFC001FFC001FFC001FFC001FFC001FFC001FFC001FFC001FFC001FFC001FFC001FFC001FFC0 +01FFC001FFC001FFC001FFC001FFC001FFC001FFC001FFC001FFC001FFC001FFC001FFC001FFC0 +01FFC001FFC001FFC001FFC001FFC001FFC001FFC001FFC001FFC0FFFFFFFFFFFFFFFFFFFFFFFF +FFFFFF18497CC820>I<007FC000000000FFFFC000000000FFFFC000000000FFFFC000000000FF +FFC000000000FFFFC00000000003FFC00000000001FFC00000000001FFC00000000001FFC00000 +000001FFC00000000001FFC00000000001FFC00000000001FFC00000000001FFC00000000001FF +C00000000001FFC00000000001FFC00000000001FFC00000000001FFC00000000001FFC0000000 +0001FFC00000000001FFC00000000001FFC00000000001FFC00000000001FFC00000000001FFC0 +007FFFF801FFC0007FFFF801FFC0007FFFF801FFC0007FFFF801FFC0007FFFF801FFC0000FFE00 +01FFC00007F00001FFC0000FE00001FFC0003FC00001FFC0007F800001FFC000FE000001FFC001 +FC000001FFC007F8000001FFC00FF0000001FFC01FC0000001FFC03F80000001FFC0FF00000001 +FFC1FE00000001FFC3FF00000001FFCFFF80000001FFDFFFC0000001FFFFFFC0000001FFFFFFE0 +000001FFFFFFF0000001FFFCFFF8000001FFF87FFC000001FFE03FFC000001FFC01FFE000001FF +C01FFF000001FFC00FFF800001FFC007FFC00001FFC003FFC00001FFC001FFE00001FFC001FFF0 +0001FFC000FFF80001FFC0007FFC0001FFC0003FFC0001FFC0001FFE0001FFC0000FFF0001FFC0 +000FFF8001FFC0000FFFC0FFFFFF807FFFFFFFFFFF807FFFFFFFFFFF807FFFFFFFFFFF807FFFFF +FFFFFF807FFFFF38487CC73F>107 D<007FC000FFFFC000FFFFC000FFFFC000FFFFC000FFFFC0 +0003FFC00001FFC00001FFC00001FFC00001FFC00001FFC00001FFC00001FFC00001FFC00001FF +C00001FFC00001FFC00001FFC00001FFC00001FFC00001FFC00001FFC00001FFC00001FFC00001 +FFC00001FFC00001FFC00001FFC00001FFC00001FFC00001FFC00001FFC00001FFC00001FFC000 +01FFC00001FFC00001FFC00001FFC00001FFC00001FFC00001FFC00001FFC00001FFC00001FFC0 +0001FFC00001FFC00001FFC00001FFC00001FFC00001FFC00001FFC00001FFC00001FFC00001FF +C00001FFC00001FFC00001FFC00001FFC00001FFC00001FFC00001FFC00001FFC00001FFC00001 +FFC00001FFC00001FFC000FFFFFF80FFFFFF80FFFFFF80FFFFFF80FFFFFF8019487CC720>I<00 +7FC001FFC00000FFE00000FFFFC00FFFF80007FFFC0000FFFFC03FFFFE001FFFFF0000FFFFC0FF +FFFF007FFFFF8000FFFFC1FC07FF80FE03FFC000FFFFC3E003FFC1F001FFE00003FFC7C001FFC3 +E000FFE00001FFCF0001FFE78000FFF00001FFDE0000FFEF00007FF00001FFDC0000FFEE00007F +F00001FFFC0000FFFE00007FF80001FFF80000FFFC00007FF80001FFF00000FFF800007FF80001 +FFF00000FFF800007FF80001FFF00000FFF800007FF80001FFE00000FFF000007FF80001FFE000 +00FFF000007FF80001FFE00000FFF000007FF80001FFE00000FFF000007FF80001FFE00000FFF0 +00007FF80001FFE00000FFF000007FF80001FFE00000FFF000007FF80001FFE00000FFF000007F +F80001FFE00000FFF000007FF80001FFE00000FFF000007FF80001FFE00000FFF000007FF80001 +FFE00000FFF000007FF80001FFE00000FFF000007FF80001FFE00000FFF000007FF80001FFE000 +00FFF000007FF80001FFE00000FFF000007FF80001FFE00000FFF000007FF80001FFE00000FFF0 +00007FF80001FFE00000FFF000007FF80001FFE00000FFF000007FF80001FFE00000FFF000007F +F80001FFE00000FFF000007FF80001FFE00000FFF000007FF80001FFE00000FFF000007FF80001 +FFE00000FFF000007FF80001FFE00000FFF000007FF800FFFFFFC07FFFFFE03FFFFFF0FFFFFFC0 +7FFFFFE03FFFFFF0FFFFFFC07FFFFFE03FFFFFF0FFFFFFC07FFFFFE03FFFFFF0FFFFFFC07FFFFF +E03FFFFFF05C2E7CAD63>I<007FC001FFC00000FFFFC00FFFF80000FFFFC03FFFFE0000FFFFC0 +FFFFFF0000FFFFC1FC07FF8000FFFFC3E003FFC00003FFC7C001FFC00001FFCF0001FFE00001FF +DE0000FFE00001FFDC0000FFE00001FFFC0000FFF00001FFF80000FFF00001FFF00000FFF00001 +FFF00000FFF00001FFF00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF000 +01FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF0 +0001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FF +F00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000 +FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE000 +00FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF000FFFFFFC07FFFFFE0FFFFFF +C07FFFFFE0FFFFFFC07FFFFFE0FFFFFFC07FFFFFE0FFFFFFC07FFFFFE03B2E7CAD42>I<00000F +FF0000000000FFFFF000000007FFFFFE0000001FFFFFFF8000003FFC03FFC00000FFE0007FF000 +01FF80001FF80003FF00000FFC0007FE000007FE000FFE000007FF000FFC000003FF001FFC0000 +03FF803FFC000003FFC03FF8000001FFC03FF8000001FFC07FF8000001FFE07FF8000001FFE07F +F8000001FFE0FFF8000001FFF0FFF8000001FFF0FFF8000001FFF0FFF8000001FFF0FFF8000001 +FFF0FFF8000001FFF0FFF8000001FFF0FFF8000001FFF0FFF8000001FFF0FFF8000001FFF07FF8 +000001FFE07FF8000001FFE07FF8000001FFE07FF8000001FFE03FFC000003FFC03FFC000003FF +C01FFC000003FF801FFE000007FF800FFE000007FF0007FF00000FFE0003FF80001FFC0001FFC0 +003FF80000FFE0007FF000007FFC03FFE000001FFFFFFF80000007FFFFFE00000000FFFFF00000 +00000FFF000000342E7DAD3B>I<007FC00FFC000000FFFFC07FFFC00000FFFFC3FFFFF00000FF +FFCFFFFFFC0000FFFFDFF01FFF0000FFFFFF8007FF800003FFFE0001FFC00001FFF80000FFE000 +01FFF00000FFF00001FFE000007FF80001FFE000003FFC0001FFE000003FFC0001FFE000003FFE +0001FFE000001FFE0001FFE000001FFF0001FFE000001FFF0001FFE000001FFF0001FFE000000F +FF0001FFE000000FFF8001FFE000000FFF8001FFE000000FFF8001FFE000000FFF8001FFE00000 +0FFF8001FFE000000FFF8001FFE000000FFF8001FFE000000FFF8001FFE000000FFF8001FFE000 +000FFF8001FFE000000FFF0001FFE000001FFF0001FFE000001FFF0001FFE000001FFE0001FFE0 +00001FFE0001FFE000003FFC0001FFE000003FFC0001FFE000007FF80001FFF000007FF80001FF +F80000FFF00001FFFC0001FFE00001FFFE0003FFC00001FFFF0007FF800001FFFFE03FFE000001 +FFEFFFFFFC000001FFE3FFFFF0000001FFE0FFFF80000001FFE01FF800000001FFE00000000000 +01FFE0000000000001FFE0000000000001FFE0000000000001FFE0000000000001FFE000000000 +0001FFE0000000000001FFE0000000000001FFE0000000000001FFE0000000000001FFE0000000 +000001FFE0000000000001FFE0000000000001FFE0000000000001FFE00000000000FFFFFFC000 +000000FFFFFFC000000000FFFFFFC000000000FFFFFFC000000000FFFFFFC00000000039427CAD +42>I<00FF803F8000FFFF80FFF000FFFF83FFFC00FFFF87FFFE00FFFF8FC3FF00FFFF8F07FF00 +03FF9E0FFF8001FFBC0FFF8001FFB80FFF8001FFF80FFF8001FFF00FFF8001FFF007FF0001FFF0 +07FF0001FFE003FE0001FFE000F80001FFE000000001FFE000000001FFC000000001FFC0000000 +01FFC000000001FFC000000001FFC000000001FFC000000001FFC000000001FFC000000001FFC0 +00000001FFC000000001FFC000000001FFC000000001FFC000000001FFC000000001FFC0000000 +01FFC000000001FFC000000001FFC000000001FFC000000001FFC000000001FFC000000001FFC0 +00000001FFC000000001FFC0000000FFFFFFE00000FFFFFFE00000FFFFFFE00000FFFFFFE00000 +FFFFFFE00000292E7CAD31>114 D<000FFF00E0007FFFF3E001FFFFFFE007FFFFFFE00FF800FF +E01FC0001FE03F80000FE03F000007E07F000003E07F000003E0FF000003E0FF000003E0FF8000 +03E0FFC0000000FFF0000000FFFE000000FFFFF800007FFFFFC0007FFFFFF0003FFFFFFC001FFF +FFFF000FFFFFFF8007FFFFFFC003FFFFFFE000FFFFFFF0003FFFFFF00003FFFFF800001FFFF800 +0000FFFC0000001FFC7800000FFCF8000007FCF8000003FCFC000003FCFC000003FCFE000003F8 +FE000003F8FF000003F8FF800007F0FFC0000FF0FFF0001FE0FFFC00FFC0FFFFFFFF80FC7FFFFE +00F81FFFF800E003FF8000262E7CAD2F>I<0001F000000001F000000001F000000001F0000000 +01F000000001F000000003F000000003F000000003F000000007F000000007F000000007F00000 +000FF00000000FF00000001FF00000003FF00000003FF00000007FF0000001FFF0000003FFF000 +000FFFFFFFC0FFFFFFFFC0FFFFFFFFC0FFFFFFFFC0FFFFFFFFC000FFF0000000FFF0000000FFF0 +000000FFF0000000FFF0000000FFF0000000FFF0000000FFF0000000FFF0000000FFF0000000FF +F0000000FFF0000000FFF0000000FFF0000000FFF0000000FFF0000000FFF0000000FFF0000000 +FFF0000000FFF0000000FFF0000000FFF0000000FFF0000000FFF001F000FFF001F000FFF001F0 +00FFF001F000FFF001F000FFF001F000FFF001F000FFF001F000FFF001F0007FF001E0007FF803 +E0003FF803E0003FFC07C0001FFE0F80000FFFFF800007FFFE000001FFFC0000001FF00024427E +C12E>I<007FE000003FF000FFFFE0007FFFF000FFFFE0007FFFF000FFFFE0007FFFF000FFFFE0 +007FFFF000FFFFE0007FFFF00003FFE00001FFF00001FFE00000FFF00001FFE00000FFF00001FF +E00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001 +FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF000 +01FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF0 +0001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FF +F00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00001 +FFF00001FFE00001FFF00001FFE00001FFF00001FFE00003FFF00000FFE00007FFF00000FFE000 +0F7FF000007FE0001F7FF000007FF0003E7FF800003FFC00FC7FFFE0001FFFFFF87FFFE00007FF +FFE07FFFE00001FFFF807FFFE000003FFE007FFFE03B2E7CAD42>I<FFFFFF8001FFFFFFFFFF80 +01FFFFFFFFFF8001FFFFFFFFFF8001FFFFFFFFFF8001FFFF01FFE000001FC001FFF000001F8001 +FFF000001F8000FFF800001F0000FFF800003F00007FF800003E00007FFC00007E00003FFC0000 +7C00003FFE0000FC00001FFE0000F800001FFF0001F800000FFF0001F000000FFF8003F0000007 +FF8003E0000007FFC007E0000007FFC007E0000003FFE007C0000003FFE00FC0000001FFE00F80 +000001FFF01F80000000FFF01F00000000FFF83F000000007FF83E000000007FFC7E000000003F +FC7C000000003FFEFC000000001FFEF8000000001FFFF8000000001FFFF8000000000FFFF00000 +00000FFFF00000000007FFE00000000007FFE00000000003FFC00000000003FFC00000000001FF +800000000001FF800000000000FF000000000000FF0000000000007E0000000000003C00000038 +2E7DAD3F>I<FFFFFF07FFFFE007FFFEFFFFFF07FFFFE007FFFEFFFFFF07FFFFE007FFFEFFFFFF +07FFFFE007FFFEFFFFFF07FFFFE007FFFE03FFC0001FFC00003FC003FFE0000FFC00001F8001FF +E0000FFC00001F0001FFE0000FFE00001F0001FFF00007FE00003F0000FFF0000FFF00003E0000 +FFF8000FFF00007E00007FF8000FFF00007C00007FF8001FFF80007C00003FFC001FFF8000F800 +003FFC003FFFC000F800003FFE003EFFC001F800001FFE003EFFC001F000001FFE007EFFE003F0 +00000FFF007C7FE003E000000FFF00FC7FF003E000000FFF80F83FF007E0000007FF80F83FF007 +C0000007FF81F83FF80FC0000003FFC1F01FF80F80000003FFC3F01FFC0F80000003FFE3E00FFC +1F80000001FFE3E00FFC1F00000001FFE7E00FFE3F00000000FFF7C007FE3E00000000FFFFC007 +FF3E00000000FFFF8003FF7E000000007FFF8003FF7C000000007FFF8003FFFC000000003FFF00 +01FFF8000000003FFF0001FFF8000000003FFE0000FFF8000000001FFE0000FFF0000000001FFE +0000FFF0000000000FFC00007FE0000000000FFC00007FE0000000000FF800003FE00000000007 +F800003FC00000000007F800003FC00000000003F000001F800000000001E000000F0000004F2E +7DAD56>I<7FFFFFC000FFFF807FFFFFC000FFFF807FFFFFC000FFFF807FFFFFC000FFFF807FFF +FFC000FFFF8000FFF000000FE00000FFF800000FC00000FFF800000FC000007FFC00000F800000 +7FFC00001F8000003FFC00001F0000003FFE00003F0000001FFE00003E0000001FFF00007E0000 +000FFF00007C0000000FFF8000FC00000007FF8000F800000007FFC001F800000003FFC001F000 +000003FFE003F000000003FFE003F000000001FFF003E000000001FFF007E000000000FFF007C0 +00000000FFF80FC0000000007FF80F80000000007FFC1F80000000003FFC1F00000000003FFE3F +00000000001FFE3E00000000001FFF7E00000000000FFF7C00000000000FFFFC00000000000FFF +FC000000000007FFF8000000000007FFF8000000000003FFF0000000000003FFF0000000000001 +FFE0000000000001FFE0000000000000FFC0000000000000FFC00000000000007F800000000000 +007F800000000000003F000000000000003F000000000000003F000000000000003E0000000000 +00007E000000000000007C00000000000000FC000000001F8000F8000000003FC001F800000000 +7FE001F000000000FFF003F000000000FFF003E000000000FFF007E000000000FFF00FC0000000 +00FFF01F8000000000FFF03F80000000007FE07F00000000007F43FE00000000003FFFF8000000 +00001FFFF0000000000007FFC0000000000001FE00000000000039427EAD3F>121 +D E /Fp 87 124 df<007E1F0001C1B1800303E3C00703C3C00E03C1800E01C0000E01C0000E01 +C0000E01C0000E01C0000E01C000FFFFFC000E01C0000E01C0000E01C0000E01C0000E01C0000E +01C0000E01C0000E01C0000E01C0000E01C0000E01C0000E01C0000E01C0000E01C0000E01C000 +0E01C0007F87FC001A1D809C18>11 D<007E0001C1800301800703C00E03C00E01800E00000E00 +000E00000E00000E0000FFFFC00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01 +C00E01C00E01C00E01C00E01C00E01C00E01C00E01C07F87F8151D809C17>I<007FC001C1C003 +03C00703C00E01C00E01C00E01C00E01C00E01C00E01C00E01C0FFFFC00E01C00E01C00E01C00E +01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C07F +CFF8151D809C17>I<003F07E00001C09C18000380F018000701F03C000E01E03C000E00E01800 +0E00E000000E00E000000E00E000000E00E000000E00E00000FFFFFFFC000E00E01C000E00E01C +000E00E01C000E00E01C000E00E01C000E00E01C000E00E01C000E00E01C000E00E01C000E00E0 +1C000E00E01C000E00E01C000E00E01C000E00E01C000E00E01C000E00E01C007FC7FCFF80211D +809C23>I<60F0F0F0F0F0F0F060606060606060606060606060000000000060F0F060041E7C9D +0C>33 D<6060F0F0F8F86868080808080808101010102020404080800D0C7F9C15>I<0F0000C0 +188000C030600380703807006027FB00E0100600E0100C00E0100C00E0101800E0101800E01030 +00E0106000602060007020C00030418000188180000F0303C00006062000060C10000C1C080018 +18080018380400303804006038040060380400C0380400C03804018038040300180803001C0806 +000C100C000620040003C01E217E9E23>37 D<60F0F8680808081010204080050C7C9C0C>39 +D<004000800100020006000C000C0018001800300030007000600060006000E000E000E000E000 +E000E000E000E000E000E000E000E000600060006000700030003000180018000C000C00060002 +000100008000400A2A7D9E10>I<800040002000100018000C000C000600060003000300038001 +800180018001C001C001C001C001C001C001C001C001C001C001C001C001800180018003800300 +0300060006000C000C00180010002000400080000A2A7E9E10>I<01800180018001804182F18F +399C0FF003C003C00FF0399CF18F4182018001800180018010127E9E15>I<0006000000060000 +000600000006000000060000000600000006000000060000000600000006000000060000000600 +0000060000FFFFFFE0FFFFFFE00006000000060000000600000006000000060000000600000006 +00000006000000060000000600000006000000060000000600001B1C7E9720>I<60F0F0701010 +101020204080040C7C830C>I<FFE0FFE00B0280890E>I<60F0F06004047C830C>I<0001000300 +0600060006000C000C000C0018001800180030003000300060006000C000C000C0018001800180 +030003000300060006000C000C000C00180018001800300030003000600060006000C000C00010 +297E9E15>I<03C00C301818300C300C700E60066006E007E007E007E007E007E007E007E007E0 +07E007E007E007E00760066006700E300C300C18180C3007E0101D7E9B15>I<030007003F00C7 +000700070007000700070007000700070007000700070007000700070007000700070007000700 +0700070007000F80FFF80D1C7C9B15>I<07C01830201C400C400EF00FF80FF807F8077007000F +000E000E001C001C00380070006000C00180030006010C01180110023FFE7FFEFFFE101C7E9B15 +>I<07E01830201C201C781E780E781E381E001C001C00180030006007E00030001C001C000E00 +0F000F700FF80FF80FF80FF00E401C201C183007E0101D7E9B15>I<000C00000C00001C00003C +00003C00005C0000DC00009C00011C00031C00021C00041C000C1C00081C00101C00301C00201C +00401C00C01C00FFFFC0001C00001C00001C00001C00001C00001C00001C0001FFC0121C7F9B15 +>I<300C3FF83FF03FC020002000200020002000200023E024302818301C200E000E000F000F00 +0F600FF00FF00FF00F800E401E401C2038187007C0101D7E9B15>I<00F0030C06040C0E181E30 +1E300C700070006000E3E0E430E818F00CF00EE006E007E007E007E007E007600760077006300E +300C18180C3003E0101D7E9B15>I<4000007FFF807FFF007FFF00400200800400800400800800 +00100000100000200000600000400000C00000C00001C000018000018000038000038000038000 +038000078000078000078000078000078000078000030000111D7E9B15>I<03E00C301008200C +20066006600660067006780C3E083FB01FE007F007F818FC307E601E600FC007C003C003C003C0 +0360026004300C1C1007E0101D7E9B15>I<03C00C301818300C700C600EE006E006E007E007E0 +07E007E0076007700F300F18170C2707C700060006000E300C780C78187010203030C00F80101D +7E9B15>I<60F0F0600000000000000000000060F0F06004127C910C>I<60F0F060000000000000 +0000000060F0F0701010101020204080041A7C910C>I<7FFFFFC0FFFFFFE00000000000000000 +000000000000000000000000000000000000000000000000FFFFFFE07FFFFFC01B0C7E8F20>61 +D<030007800780030000000000000000000000010001000200020002000200060004000C001800 +38007000E000E01EE01EE01EE00E600430180FE00F1D7E9414>I<0FE03038401CE00EF00EF00E +F00E000C001C0030006000C0008001800100010001000100010001000000000000000000000003 +000780078003000F1D7E9C14>I<000600000006000000060000000F0000000F0000000F000000 +17800000178000001780000023C0000023C0000023C0000041E0000041E0000041E0000080F000 +0080F0000180F8000100780001FFF80003007C0002003C0002003C0006003E0004001E0004001E +000C001F001E001F00FF80FFF01C1D7F9C1F>65 D<FFFFC00F00F00F00380F003C0F001C0F001E +0F001E0F001E0F001E0F001C0F003C0F00780F01F00FFFE00F00780F003C0F001E0F000E0F000F +0F000F0F000F0F000F0F000F0F001E0F001E0F003C0F0078FFFFE0181C7E9B1D>I<001F808000 +E0618001801980070007800E0003801C0003801C00018038000180780000807800008070000080 +F0000000F0000000F0000000F0000000F0000000F0000000F0000000F000000070000080780000 +8078000080380000801C0001001C0001000E000200070004000180080000E03000001FC000191E +7E9C1E>I<FFFFC0000F00F0000F003C000F000E000F0007000F0007000F0003800F0003C00F00 +01C00F0001C00F0001E00F0001E00F0001E00F0001E00F0001E00F0001E00F0001E00F0001E00F +0001C00F0001C00F0003C00F0003800F0007800F0007000F000E000F001C000F007000FFFFC000 +1B1C7E9B20>I<FFFFFC0F003C0F000C0F00040F00040F00060F00020F00020F02020F02000F02 +000F02000F06000FFE000F06000F02000F02000F02000F02010F00010F00020F00020F00020F00 +060F00060F000C0F003CFFFFFC181C7E9B1C>I<FFFFF80F00780F00180F00080F00080F000C0F +00040F00040F02040F02000F02000F02000F06000FFE000F06000F02000F02000F02000F02000F +00000F00000F00000F00000F00000F00000F00000F8000FFF800161C7E9B1B>I<001F808000E0 +618001801980070007800E0003801C0003801C00018038000180780000807800008070000080F0 +000000F0000000F0000000F0000000F0000000F0000000F000FFF0F0000F807000078078000780 +78000780380007801C0007801C0007800E00078007000B800180118000E06080001F80001C1E7E +9C21>I<FFF3FFC00F003C000F003C000F003C000F003C000F003C000F003C000F003C000F003C +000F003C000F003C000F003C000F003C000FFFFC000F003C000F003C000F003C000F003C000F00 +3C000F003C000F003C000F003C000F003C000F003C000F003C000F003C000F003C00FFF3FFC01A +1C7E9B1F>I<FFF00F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F +000F000F000F000F000F000F000F000F000F000F00FFF00C1C7F9B0F>I<1FFF00F80078007800 +7800780078007800780078007800780078007800780078007800780078007800787078F878F878 +F878F0F040E021C01F00101D7F9B15>I<FFF03FE00F000F000F000C000F0008000F0010000F00 +20000F0040000F0080000F0100000F0200000F0400000F0E00000F1F00000F2F00000F2780000F +4780000F83C0000F01E0000F01E0000F00F0000F00F8000F0078000F003C000F003C000F001E00 +0F001F000F001F80FFF07FF01C1C7E9B20>I<FFF8000F80000F00000F00000F00000F00000F00 +000F00000F00000F00000F00000F00000F00000F00000F00000F00000F00000F00000F00080F00 +080F00080F00180F00180F00100F00300F00700F01F0FFFFF0151C7E9B1A>I<FF8000FF800F80 +00F8000F8000F8000BC00178000BC00178000BC001780009E002780009E002780008F004780008 +F004780008F0047800087808780008780878000878087800083C107800083C107800083C107800 +081E207800081E207800081E207800080F407800080F4078000807807800080780780008078078 +0008030078001C03007800FF8307FF80211C7E9B26>I<FF007FC00F800E000F8004000BC00400 +09E0040009E0040008F0040008F8040008780400083C0400083C0400081E0400080F0400080F04 +00080784000807C4000803C4000801E4000801E4000800F40008007C0008007C0008003C000800 +3C0008001C0008000C001C000C00FF8004001A1C7E9B1F>I<003F800000E0E000038038000700 +1C000E000E001C0007003C00078038000380780003C0780003C0700001C0F00001E0F00001E0F0 +0001E0F00001E0F00001E0F00001E0F00001E0F00001E0700001C0780003C0780003C038000380 +3C0007801C0007000E000E0007001C000380380000E0E000003F80001B1E7E9C20>I<FFFF800F +00E00F00780F003C0F001C0F001E0F001E0F001E0F001E0F001E0F001C0F003C0F00780F00E00F +FF800F00000F00000F00000F00000F00000F00000F00000F00000F00000F00000F00000F0000FF +F000171C7E9B1C>I<003F800000E0E0000380380007001C000E000E001C0007003C0007803800 +0380780003C0780003C0700001C0F00001E0F00001E0F00001E0F00001E0F00001E0F00001E0F0 +0001E0F00001E0700001C0780003C0780003C0380003803C0E07801C1107000E208E0007205C00 +03A0780000F0E020003FE0200000602000003060000038E000003FC000003FC000001F8000000F +001B257E9C20>I<FFFF00000F01E0000F0078000F003C000F001C000F001E000F001E000F001E +000F001E000F001C000F003C000F0078000F01E0000FFF00000F03C0000F00E0000F00F0000F00 +78000F0078000F0078000F0078000F0078000F0078000F0078100F0078100F0038100F003C20FF +F01C20000007C01C1D7E9B1F>I<07E0801C1980300580700380600180E00180E00080E00080E0 +0080F00000F800007C00007FC0003FF8001FFE0007FF0000FF80000F800007C00003C00001C080 +01C08001C08001C0C00180C00180E00300D00200CC0C0083F800121E7E9C17>I<7FFFFFC0700F +01C0600F00C0400F0040400F0040C00F0020800F0020800F0020800F0020000F0000000F000000 +0F0000000F0000000F0000000F0000000F0000000F0000000F0000000F0000000F0000000F0000 +000F0000000F0000000F0000000F0000000F0000001F800003FFFC001B1C7F9B1E>I<FFF07FC0 +0F000E000F0004000F0004000F0004000F0004000F0004000F0004000F0004000F0004000F0004 +000F0004000F0004000F0004000F0004000F0004000F0004000F0004000F0004000F0004000F00 +04000F0004000700080007800800038010000180100000C020000070C000001F00001A1D7E9B1F +>I<FFE00FF01F0003C00F0001800F0001000F800300078002000780020003C0040003C0040003 +C0040001E0080001E0080001F0080000F0100000F0100000F830000078200000782000003C4000 +003C4000003C4000001E8000001E8000001F8000000F0000000F00000006000000060000000600 +001C1D7F9B1F>I<FFE0FFE0FF1F001F003C1E001E00180F001F00100F001F00100F001F001007 +801F00200780278020078027802003C027804003C043C04003C043C04003E043C04001E081E080 +01E081E08001E081E08000F100F10000F100F10000F100F100007900FA00007A007A00007A007A +00003E007C00003C003C00003C003C00003C003C00001800180000180018000018001800281D7F +9B2B>I<7FF0FFC00FC03E000780180003C0180003E0100001E0200001F0600000F04000007880 +00007D8000003D0000001E0000001F0000000F0000000F8000000F80000013C0000023E0000021 +E0000041F00000C0F8000080780001007C0003003C0002001E0006001F001F003F80FFC0FFF01C +1C7F9B1F>I<FFF007FC0F8001E00780008007C0018003C0010003E0020001F0020000F0040000 +F8040000780800007C1800003C1000001E2000001F2000000F4000000FC0000007800000078000 +000780000007800000078000000780000007800000078000000780000007800000078000007FF8 +001E1C809B1F>I<7FFFF07C01F07001E06003C06003C0400780400F80400F00401E00001E0000 +3C00007C0000780000F00000F00001E00003E00003C0100780100780100F00101F00301E00203C +00203C00607800E0F803E0FFFFE0141C7E9B19>I<FEFEC0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 +C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0FEFE07297C9E0C>I<FEFE06060606060606 +060606060606060606060606060606060606060606060606060606060606FEFE0729809E0C>93 +D<0810204040808080B0F87830050C7D9C0C>96 D<1FC000307000783800781C00301C00001C00 +001C0001FC000F1C00381C00701C00601C00E01C40E01C40E01C40603C40304E801F870012127E +9115>I<FC00001C00001C00001C00001C00001C00001C00001C00001C00001C00001C00001C7C +001D86001E03001C01801C01C01C00C01C00E01C00E01C00E01C00E01C00E01C00E01C00C01C01 +C01C01801E030019060010F800131D7F9C17>I<07E00C301878307870306000E000E000E000E0 +00E000E00060007004300418080C3007C00E127E9112>I<003F00000700000700000700000700 +00070000070000070000070000070000070003E7000C1700180F00300700700700600700E00700 +E00700E00700E00700E00700E00700600700700700300700180F000C370007C7E0131D7E9C17> +I<03E00C301818300C700E6006E006FFFEE000E000E000E00060007002300218040C1803E00F12 +7F9112>I<00F8018C071E061E0E0C0E000E000E000E000E000E00FFE00E000E000E000E000E00 +0E000E000E000E000E000E000E000E000E000E000E007FE00F1D809C0D>I<00038003C4C00C38 +C01C3880181800381C00381C00381C00381C001818001C38000C300013C0001000003000001800 +001FF8001FFF001FFF803003806001C0C000C0C000C0C000C06001803003001C0E0007F800121C +7F9215>I<FC00001C00001C00001C00001C00001C00001C00001C00001C00001C00001C00001C +7C001C87001D03001E03801C03801C03801C03801C03801C03801C03801C03801C03801C03801C +03801C03801C03801C0380FF9FF0141D7F9C17>I<18003C003C00180000000000000000000000 +00000000FC001C001C001C001C001C001C001C001C001C001C001C001C001C001C001C001C00FF +80091D7F9C0C>I<00C001E001E000C000000000000000000000000000000FE000E000E000E000 +E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E060E0F0C0F1C0 +61803E000B25839C0D>I<FC00001C00001C00001C00001C00001C00001C00001C00001C00001C +00001C00001C3FC01C0F001C0C001C08001C10001C20001C40001CE0001DE0001E70001C78001C +38001C3C001C1C001C0E001C0F001C0F80FF9FE0131D7F9C16>I<FC001C001C001C001C001C00 +1C001C001C001C001C001C001C001C001C001C001C001C001C001C001C001C001C001C001C001C +001C001C00FF80091D7F9C0C>I<FC7E07E0001C838838001D019018001E01E01C001C01C01C00 +1C01C01C001C01C01C001C01C01C001C01C01C001C01C01C001C01C01C001C01C01C001C01C01C +001C01C01C001C01C01C001C01C01C001C01C01C00FF8FF8FF8021127F9124>I<FC7C001C8700 +1D03001E03801C03801C03801C03801C03801C03801C03801C03801C03801C03801C03801C0380 +1C03801C0380FF9FF014127F9117>I<03F0000E1C00180600300300700380600180E001C0E001 +C0E001C0E001C0E001C0E001C06001807003803003001806000E1C0003F00012127F9115>I<FC +7C001D86001E03001C01801C01C01C00C01C00E01C00E01C00E01C00E01C00E01C00E01C01C01C +01C01C01801E03001D06001CF8001C00001C00001C00001C00001C00001C00001C0000FF800013 +1A7F9117>I<03C1000C3300180B00300F00700700700700E00700E00700E00700E00700E00700 +E00700600700700700300F00180F000C370007C700000700000700000700000700000700000700 +000700003FE0131A7E9116>I<FCE01D301E781E781C301C001C001C001C001C001C001C001C00 +1C001C001C001C00FFC00D127F9110>I<1F9030704030C010C010E010F8007F803FE00FF000F8 +80388018C018C018E010D0608FC00D127F9110>I<04000400040004000C000C001C003C00FFE0 +1C001C001C001C001C001C001C001C001C001C101C101C101C101C100C100E2003C00C1A7F9910 +>I<FC1F801C03801C03801C03801C03801C03801C03801C03801C03801C03801C03801C03801C +03801C03801C07800C07800E1B8003E3F014127F9117>I<FF07E03C03801C01001C01000E0200 +0E020007040007040007040003880003880003D80001D00001D00000E00000E00000E000004000 +13127F9116>I<FF3FCFE03C0F03801C0701801C0701001C0B01000E0B82000E0B82000E118200 +0711C4000711C4000720C40003A0E80003A0E80003C0680001C0700001C0700001803000008020 +001B127F911E>I<7F8FF00F03800F030007020003840001C80001D80000F00000700000780000 +F800009C00010E00020E000607000403801E07C0FF0FF81512809116>I<FF07E03C03801C0100 +1C01000E02000E020007040007040007040003880003880003D80001D00001D00000E00000E000 +00E000004000004000008000008000F08000F10000F300006600003C0000131A7F9116>I<7FFC +70386038407040F040E041C003C0038007000F040E041C043C0C380870087038FFF80E127F9112 +>I<FFFFF01401808B15>I E /Fq 1 98 df<00040000000E0000000E0000000E0000001F000000 +1F0000003F800000278000002780000043C0000043C0000043C0000081E0000081E0000101F000 +0100F0000100F00003FFF8000200780006007C0004003C0004003C000C001E000C001E003C003F +00FF00FFE01B1A7F991F>97 D E /Fr 62 123 df<0001FF81FE00001FFFEFFF80007F80FF87C0 +00FC00FE0FE001F801FE0FE003F801FC0FE007F001FC0FE007F001FC07C007F001FC000007F001 +FC000007F001FC000007F001FC000007F001FC000007F001FC000007F001FC0000FFFFFFFFF800 +FFFFFFFFF800FFFFFFFFF80007F001FC000007F001FC000007F001FC000007F001FC000007F001 +FC000007F001FC000007F001FC000007F001FC000007F001FC000007F001FC000007F001FC0000 +07F001FC000007F001FC000007F001FC000007F001FC000007F001FC000007F001FC000007F001 +FC000007F001FC000007F001FC000007F001FC00007FFF1FFFE0007FFF1FFFE0007FFF1FFFE000 +2B2A7FA928>11 D<0001FF0000001FFFC000007F80F00000FC00F80001F801F80003F803FC0007 +F003FC0007F003FC0007F003FC0007F001F80007F000F00007F000000007F000000007F0000000 +07F0000000FFFFFFFC00FFFFFFFC00FFFFFFFC0007F001FC0007F001FC0007F001FC0007F001FC +0007F001FC0007F001FC0007F001FC0007F001FC0007F001FC0007F001FC0007F001FC0007F001 +FC0007F001FC0007F001FC0007F001FC0007F001FC0007F001FC0007F001FC0007F001FC0007F0 +01FC0007F001FC007FFF1FFFC07FFF1FFFC07FFF1FFFC0222A7FA926>I<0001FF803FE000001F +FFE3FFF800007F80FFF01E0000FE007F801F0001F800FF003F0003F801FF007F8007F001FE007F +8007F001FE007F8007F001FE007F8007F000FE003F0007F000FE001E0007F000FE00000007F000 +FE00000007F000FE00000007F000FE000000FFFFFFFFFFFF80FFFFFFFFFFFF80FFFFFFFFFFFF80 +07F000FE003F8007F000FE003F8007F000FE003F8007F000FE003F8007F000FE003F8007F000FE +003F8007F000FE003F8007F000FE003F8007F000FE003F8007F000FE003F8007F000FE003F8007 +F000FE003F8007F000FE003F8007F000FE003F8007F000FE003F8007F000FE003F8007F000FE00 +3F8007F000FE003F8007F000FE003F8007F000FE003F8007F000FE003F807FFF0FFFE3FFF87FFF +0FFFE3FFF87FFF0FFFE3FFF8352A7FA939>14 D<FFFF80FFFF80FFFF80FFFF80FFFF80FFFF8011 +067F9017>45 D<1C003E007F00FF80FF80FF807F003E001C0009097B8813>I<003F800001FFF0 +0007E0FC000FC07E001F803F001F803F003F001F803F001F807F001FC07F001FC07F001FC07F00 +1FC0FF001FE0FF001FE0FF001FE0FF001FE0FF001FE0FF001FE0FF001FE0FF001FE0FF001FE0FF +001FE0FF001FE0FF001FE0FF001FE0FF001FE0FF001FE07F001FC07F001FC07F001FC07F001FC0 +3F001F803F001F801F803F001F803F000FC07E0007E0FC0001FFF000003F80001B277DA622>48 +D<000E00001E00007E0007FE00FFFE00FFFE00F8FE0000FE0000FE0000FE0000FE0000FE0000FE +0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE +0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE007FFFFE7FFFFE7FFF +FE17277BA622>I<00FF800003FFF0000FFFFC001F03FE003800FF007C007F80FE003FC0FF003F +C0FF003FE0FF001FE0FF001FE07E001FE03C003FE000003FE000003FC000003FC000007F800000 +7F000000FE000000FC000001F8000003F0000003E00000078000000F0000001E0000003C00E000 +7000E000E000E001C001C0038001C0070001C00FFFFFC01FFFFFC03FFFFFC07FFFFFC0FFFFFF80 +FFFFFF80FFFFFF801B277DA622>I<007F800003FFF00007FFFC000F81FE001F00FF003F80FF00 +3F807F803F807F803F807F801F807F800F007F800000FF000000FF000000FE000001FC000001F8 +000007F00000FFC00000FFF0000001FC0000007E0000007F0000007F8000003FC000003FC00000 +3FE000003FE03C003FE07E003FE0FF003FE0FF003FE0FF003FC0FF007FC07E007F807C007F003F +01FE001FFFFC0007FFF00000FF80001B277DA622>I<00000E0000001E0000003E0000007E0000 +00FE000000FE000001FE000003FE0000077E00000E7E00000E7E00001C7E0000387E0000707E00 +00E07E0000E07E0001C07E0003807E0007007E000E007E000E007E001C007E0038007E0070007E +00E0007E00FFFFFFF8FFFFFFF8FFFFFFF80000FE000000FE000000FE000000FE000000FE000000 +FE000000FE000000FE00007FFFF8007FFFF8007FFFF81D277EA622>I<0C0003000F803F000FFF +FE000FFFFC000FFFF8000FFFF0000FFFE0000FFFC0000FFE00000E0000000E0000000E0000000E +0000000E0000000E0000000E7FC0000FFFF8000F80FC000E003E000C003F0000001F8000001FC0 +00001FC000001FE000001FE018001FE07C001FE0FE001FE0FE001FE0FE001FE0FE001FC0FC001F +C078003F8078003F803C007F001F01FE000FFFF80003FFF00000FF80001B277DA622>I<0007F0 +00003FFC0000FFFE0001FC0F0003F01F8007E03F800FC03F801FC03F801F803F803F801F003F80 +00007F0000007F0000007F000000FF000000FF0FC000FF3FF800FF707C00FFC03E00FFC03F00FF +801F80FF801FC0FF001FC0FF001FE0FF001FE0FF001FE07F001FE07F001FE07F001FE07F001FE0 +3F001FE03F001FC01F801FC01F803F800FC03F0007E07E0003FFFC0000FFF000003FC0001B277D +A622>I<380000003E0000003FFFFFF03FFFFFF03FFFFFF07FFFFFE07FFFFFC07FFFFF807FFFFF +0070000E0070000E0070001C00E0003800E0007000E000E0000000E0000001C000000380000007 +800000078000000F0000000F0000001F0000001F0000003F0000003E0000003E0000007E000000 +7E0000007E0000007E000000FE000000FE000000FE000000FE000000FE000000FE000000FE0000 +00FE0000007C0000003800001C297CA822>I<003FC00001FFF00003FFFC0007C07E000F003F00 +1E001F001E000F803E000F803E000F803F000F803F000F803FC00F003FF01F001FFC1E001FFE3C +000FFFF80007FFE00003FFF80001FFFC0001FFFE0007FFFF000F0FFF801E03FFC03C01FFC07C00 +7FE078001FE0F80007E0F80007E0F80003E0F80003E0F80003E0F80003C07C0003C07C0007803F +000F001FC03E000FFFFC0003FFF800007FC0001B277DA622>I<007F800001FFF00007FFF8000F +E0FC001F807E003F803F007F003F007F001F80FF001F80FF001FC0FF001FC0FF001FC0FF001FE0 +FF001FE0FF001FE0FF001FE07F001FE07F003FE03F003FE01F807FE00F807FE007C1DFE003FF9F +E0007E1FE000001FE000001FC000001FC000001FC000003F801F003F803F803F003F803F003F80 +7E003F807C001F01F8001E03F0000FFFE00007FF800001FE00001B277DA622>I<1C003E007F00 +FF80FF80FF807F003E001C000000000000000000000000000000000000001C003E007F00FF80FF +80FF807F003E001C00091B7B9A13>I<000003800000000007C00000000007C0000000000FE000 +0000000FE0000000000FE0000000001FF0000000001FF0000000003FF8000000003FF800000000 +3FF80000000073FC0000000073FC00000000F3FE00000000E1FE00000000E1FE00000001C0FF00 +000001C0FF00000003C0FF80000003807F80000007807FC0000007003FC0000007003FC000000E +003FE000000E001FE000001E001FF000001C000FF000001FFFFFF000003FFFFFF800003FFFFFF8 +0000780007FC0000700003FC0000700003FC0000E00001FE0000E00001FE0001E00001FF0001C0 +0000FF0001C00000FF00FFFE001FFFFEFFFE001FFFFEFFFE001FFFFE2F297EA834>65 +D<FFFFFFF80000FFFFFFFF8000FFFFFFFFC00003F8001FF00003F8000FF80003F80007FC0003F8 +0003FC0003F80003FC0003F80003FE0003F80001FE0003F80001FE0003F80001FE0003F80003FE +0003F80003FC0003F80003FC0003F80007F80003F8000FF00003F8001FE00003F800FFC00003FF +FFFE000003FFFFFFE00003F80007F00003F80003FC0003F80001FE0003F80001FE0003F80000FF +0003F80000FF0003F80000FF8003F80000FF8003F80000FF8003F80000FF8003F80000FF8003F8 +0000FF8003F80000FF0003F80001FF0003F80003FE0003F80007FC0003F8001FF800FFFFFFFFF0 +00FFFFFFFFC000FFFFFFFE000029297DA831>I<00003FF001800003FFFE0380000FFFFF878000 +3FF007DF8000FF8001FF8001FE00007F8003FC00003F8007F000001F800FF000000F801FE00000 +07801FE0000007803FC0000007803FC0000003807FC0000003807F80000003807F8000000000FF +8000000000FF8000000000FF8000000000FF8000000000FF8000000000FF8000000000FF800000 +0000FF8000000000FF80000000007F80000000007F80000000007FC0000003803FC0000003803F +C0000003801FE0000003801FE0000007000FF00000070007F000000E0003FC00001E0001FE0000 +3C0000FF8000F800003FF007E000000FFFFFC0000003FFFF000000003FF8000029297CA832>I< +FFFFFFF80000FFFFFFFF8000FFFFFFFFE00003FC001FF80003FC0007FC0003FC0001FE0003FC00 +00FF0003FC00007F8003FC00003FC003FC00001FC003FC00001FE003FC00001FE003FC00000FF0 +03FC00000FF003FC00000FF003FC00000FF003FC00000FF803FC00000FF803FC00000FF803FC00 +000FF803FC00000FF803FC00000FF803FC00000FF803FC00000FF803FC00000FF803FC00000FF8 +03FC00000FF003FC00000FF003FC00000FF003FC00001FE003FC00001FE003FC00001FC003FC00 +003FC003FC00007F8003FC00007F0003FC0001FE0003FC0003FC0003FC001FF800FFFFFFFFE000 +FFFFFFFF8000FFFFFFFC00002D297DA835>I<FFFFFFFFE0FFFFFFFFE0FFFFFFFFE003FC001FE0 +03FC0007F003FC0001F003FC0001F003FC0000F003FC00007003FC00007003FC00007003FC01C0 +7803FC01C03803FC01C03803FC01C03803FC03C00003FC03C00003FC0FC00003FFFFC00003FFFF +C00003FFFFC00003FC0FC00003FC03C00003FC03C00003FC01C00E03FC01C00E03FC01C00E03FC +01C01C03FC00001C03FC00001C03FC00001C03FC00003C03FC00003803FC00007803FC0000F803 +FC0001F803FC0003F803FC001FF8FFFFFFFFF0FFFFFFFFF0FFFFFFFFF027297DA82D>I<FFFFFF +FFC0FFFFFFFFC0FFFFFFFFC003FC003FC003FC000FE003FC0003E003FC0001E003FC0001E003FC +0000E003FC0000E003FC0000E003FC0000F003FC03807003FC03807003FC03807003FC03800003 +FC07800003FC07800003FC1F800003FFFF800003FFFF800003FFFF800003FC1F800003FC078000 +03FC07800003FC03800003FC03800003FC03800003FC03800003FC00000003FC00000003FC0000 +0003FC00000003FC00000003FC00000003FC00000003FC00000003FC000000FFFFFC0000FFFFFC +0000FFFFFC000024297DA82B>I<00007FE003000003FFFC0700001FFFFF0F00003FF00FFF0000 +FF8001FF0001FE0000FF0003F800003F0007F000003F000FF000001F001FE000000F001FE00000 +0F003FC000000F003FC0000007007FC0000007007F80000007007F8000000000FF8000000000FF +8000000000FF8000000000FF8000000000FF8000000000FF8000000000FF8000000000FF800000 +0000FF8001FFFFF87F8001FFFFF87F8001FFFFF87FC00000FF003FC00000FF003FC00000FF001F +E00000FF001FE00000FF000FF00000FF0007F00000FF0003F80000FF0001FE0000FF0000FF8001 +FF00003FF007BF00001FFFFF1F000003FFFE0F0000007FF003002D297CA836>I<FFFFF01FFFFE +FFFFF01FFFFEFFFFF01FFFFE03FC00007F8003FC00007F8003FC00007F8003FC00007F8003FC00 +007F8003FC00007F8003FC00007F8003FC00007F8003FC00007F8003FC00007F8003FC00007F80 +03FC00007F8003FC00007F8003FC00007F8003FC00007F8003FFFFFFFF8003FFFFFFFF8003FFFF +FFFF8003FC00007F8003FC00007F8003FC00007F8003FC00007F8003FC00007F8003FC00007F80 +03FC00007F8003FC00007F8003FC00007F8003FC00007F8003FC00007F8003FC00007F8003FC00 +007F8003FC00007F8003FC00007F8003FC00007F8003FC00007F80FFFFF01FFFFEFFFFF01FFFFE +FFFFF01FFFFE2F297DA836>I<FFFFFCFFFFFCFFFFFC01FE0001FE0001FE0001FE0001FE0001FE +0001FE0001FE0001FE0001FE0001FE0001FE0001FE0001FE0001FE0001FE0001FE0001FE0001FE +0001FE0001FE0001FE0001FE0001FE0001FE0001FE0001FE0001FE0001FE0001FE0001FE0001FE +0001FE0001FE0001FE00FFFFFCFFFFFCFFFFFC16297EA81A>I<FFFFF001FFFCFFFFF001FFFCFF +FFF001FFFC03FC00001E0003FC00003C0003FC0000780003FC0000F00003FC0001E00003FC0003 +C00003FC0007000003FC001E000003FC003C000003FC0078000003FC00F0000003FC01E0000003 +FC0380000003FC07C0000003FC1FC0000003FC3FE0000003FC7FF0000003FCFFF8000003FDE7F8 +000003FF83FC000003FF01FE000003FE01FF000003FC00FF000003FC007F800003FC003FC00003 +FC003FC00003FC001FE00003FC000FF00003FC000FF80003FC0007F80003FC0003FC0003FC0001 +FE0003FC0001FF0003FC0000FF0003FC00007F80FFFFF00FFFFEFFFFF00FFFFEFFFFF00FFFFE2F +297DA836>75 D<FFFFFC0000FFFFFC0000FFFFFC000003FC00000003FC00000003FC00000003FC +00000003FC00000003FC00000003FC00000003FC00000003FC00000003FC00000003FC00000003 +FC00000003FC00000003FC00000003FC00000003FC00000003FC00000003FC00000003FC000000 +03FC00000003FC00000003FC0001C003FC0001C003FC0001C003FC0001C003FC0003C003FC0003 +8003FC00038003FC00078003FC00078003FC000F8003FC000F8003FC001F8003FC007F8003FC01 +FF00FFFFFFFF00FFFFFFFF00FFFFFFFF0022297DA829>I<FFFE0000001FFFC0FFFE0000001FFF +C0FFFF0000003FFFC003FF0000003FF00003FF0000003FF00003BF80000077F00003BF80000077 +F000039FC00000E7F000039FC00000E7F000038FE00001C7F000038FE00001C7F0000387F00003 +87F0000387F0000387F0000387F0000387F0000383F8000707F0000383F8000707F0000381FC00 +0E07F0000381FC000E07F0000380FE001C07F0000380FE001C07F0000380FF003807F00003807F +003807F00003807F003807F00003803F807007F00003803F807007F00003801FC0E007F0000380 +1FC0E007F00003800FE1C007F00003800FE1C007F00003800FE1C007F000038007F38007F00003 +8007F38007F000038003FF0007F000038003FF0007F000038001FE0007F000038001FE0007F000 +038000FC0007F000038000FC0007F000FFFE00FC01FFFFC0FFFE007801FFFFC0FFFE007801FFFF +C03A297DA841>I<FFFC0000FFFEFFFE0000FFFEFFFF0000FFFE03FF8000038003FF8000038003 +BFC0000380039FE0000380039FF0000380038FF80003800387F80003800383FC0003800381FE00 +03800381FF0003800380FF80038003807FC0038003803FC0038003801FE0038003800FF0038003 +800FF80380038007FC0380038003FC0380038001FE0380038000FF0380038000FF83800380007F +C3800380003FE3800380001FE3800380000FF38003800007FB8003800007FF8003800003FF8003 +800001FF8003800000FF80038000007F80038000007F80038000003F80038000001F8003800000 +0F80FFFE00000780FFFE00000380FFFE000003802F297DA836>I<0000FFE000000007FFFC0000 +003FC07F8000007F001FC00001FC0007F00003F80003F80007F00001FC000FF00001FE001FE000 +00FF001FE00000FF003FC000007F803FC000007F807FC000007FC07F8000003FC07F8000003FC0 +7F8000003FC0FF8000003FE0FF8000003FE0FF8000003FE0FF8000003FE0FF8000003FE0FF8000 +003FE0FF8000003FE0FF8000003FE0FF8000003FE0FF8000003FE07F8000003FC07FC000007FC0 +7FC000007FC03FC000007F803FC000007F801FE00000FF001FE00000FF000FF00001FE0007F000 +01FC0003F80003F80001FC0007F00000FF001FE000003FC07F8000000FFFFE00000000FFE00000 +2B297CA834>I<FFFFFFF800FFFFFFFF00FFFFFFFFC003FC003FE003FC000FF003FC0007F803FC +0007FC03FC0003FC03FC0003FE03FC0003FE03FC0003FE03FC0003FE03FC0003FE03FC0003FE03 +FC0003FE03FC0003FC03FC0007FC03FC0007F803FC000FF003FC003FE003FFFFFF8003FFFFFE00 +03FC00000003FC00000003FC00000003FC00000003FC00000003FC00000003FC00000003FC0000 +0003FC00000003FC00000003FC00000003FC00000003FC00000003FC00000003FC00000003FC00 +0000FFFFF00000FFFFF00000FFFFF0000027297DA82F>I<0000FFE000000007FFFC0000003FC0 +7F8000007F001FC00001FC0007F00003F80003F80007F00001FC000FF00001FE001FE00000FF00 +1FE00000FF003FC000007F803FC000007F807FC000007FC07FC000007FC07F8000003FC07F8000 +003FC0FF8000003FE0FF8000003FE0FF8000003FE0FF8000003FE0FF8000003FE0FF8000003FE0 +FF8000003FE0FF8000003FE0FF8000003FE0FF8000003FE07F8000003FC07F8000003FC07FC000 +007FC03FC000007F803FC000007F801FE00000FF001FE01F00FF000FF03F81FE0007F060C1FC00 +03F8C063F80001FCC077F00000FFC07FE000003FE07F8000000FFFFE00000000FFFE0060000000 +3E00600000003F00600000001F81E00000001FFFE00000001FFFC00000000FFFC00000000FFFC0 +00000007FF8000000007FF8000000003FF0000000001FE000000000078002B357CA834>I<FFFF +FFE00000FFFFFFFE0000FFFFFFFF800003FC007FE00003FC000FF00003FC0007F80003FC0007FC +0003FC0003FC0003FC0003FE0003FC0003FE0003FC0003FE0003FC0003FE0003FC0003FE0003FC +0003FE0003FC0003FC0003FC0007F80003FC0007F80003FC001FE00003FC007FC00003FFFFFE00 +0003FFFFF0000003FC00FC000003FC007F000003FC003F800003FC003F800003FC001FC00003FC +001FE00003FC001FE00003FC001FE00003FC001FE00003FC001FE00003FC001FF00003FC001FF0 +0003FC001FF00003FC001FF00703FC001FF80703FC000FF80703FC0007F80EFFFFF003FE1CFFFF +F001FFF8FFFFF0003FF030297DA834>I<007F806003FFF0E007FFF9E00F807FE01F001FE03E00 +07E07C0003E07C0001E0FC0001E0FC0001E0FC0000E0FE0000E0FE0000E0FF000000FFC000007F +FE00007FFFE0003FFFFC001FFFFE000FFFFF8007FFFFC003FFFFE000FFFFE00007FFF000007FF0 +00000FF8000007F8000003F8600001F8E00001F8E00001F8E00001F8F00001F0F00001F0F80003 +F0FC0003E0FF0007C0FFE01F80F3FFFF00E0FFFE00C01FF0001D297CA826>I<7FFFFFFFFFC07F +FFFFFFFFC07FFFFFFFFFC07F803FC03FC07E003FC007C078003FC003C078003FC003C070003FC0 +01C0F0003FC001E0F0003FC001E0E0003FC000E0E0003FC000E0E0003FC000E0E0003FC000E0E0 +003FC000E000003FC0000000003FC0000000003FC0000000003FC0000000003FC0000000003FC0 +000000003FC0000000003FC0000000003FC0000000003FC0000000003FC0000000003FC0000000 +003FC0000000003FC0000000003FC0000000003FC0000000003FC0000000003FC0000000003FC0 +000000003FC0000000003FC0000000003FC00000007FFFFFE000007FFFFFE000007FFFFFE0002B +287EA730>I<FFFFF001FFFCFFFFF001FFFCFFFFF001FFFC03FC0000070003FC0000070003FC00 +00070003FC0000070003FC0000070003FC0000070003FC0000070003FC0000070003FC00000700 +03FC0000070003FC0000070003FC0000070003FC0000070003FC0000070003FC0000070003FC00 +00070003FC0000070003FC0000070003FC0000070003FC0000070003FC0000070003FC00000700 +03FC0000070003FC0000070003FC0000070003FC0000070003FC0000070003FC0000070001FC00 +000E0001FE00000E0000FE00001C00007E00001C00007F00003800003FC000F000000FF007E000 +0007FFFFC0000001FFFF000000001FF800002E297DA835>I<FFFFF0003FFF80FFFFF0003FFF80 +FFFFF0003FFF8003FE000001E00001FE000001C00001FF000003C00000FF000003800000FF0000 +038000007F8000070000007F8000070000007FC0000F0000003FC0000E0000003FE0001E000000 +1FE0001C0000001FF0001C0000000FF000380000000FF0003800000007F8007000000007F80070 +00000007FC00F000000003FC00E000000003FE01E000000001FE01C000000001FF01C000000000 +FF038000000000FF038000000000FF8780000000007F8700000000007FCF00000000003FCE0000 +0000003FFE00000000001FFC00000000001FFC00000000000FF800000000000FF800000000000F +F8000000000007F0000000000007F0000000000003E0000000000003E0000000000001C0000000 +31297FA834>I<FFFFE07FFFF007FFF0FFFFE07FFFF007FFF0FFFFE07FFFF007FFF003FC0001FE +00001C0003FC0001FE00001C0001FE0001FF0000380001FE0000FF0000380001FF0000FF000078 +0000FF0000FF8000700000FF0000FF8000700000FF8000FF8000F000007F8001FFC000E000007F +8001FFC000E000003FC003FFE001C000003FC0039FE001C000003FE0039FE003C000001FE0070F +F0038000001FE0070FF0038000001FF00F0FF0078000000FF00E07F8070000000FF00E07F80700 +000007F81E07FC0E00000007F81C03FC0E00000007FC1C03FC1E00000003FC3801FE1C00000003 +FC3801FE1C00000001FE7801FF3800000001FE7000FF3800000001FE7000FF3800000000FFF000 +FFF000000000FFE0007FF000000000FFE0007FF0000000007FC0003FE0000000007FC0003FE000 +0000003FC0003FC0000000003F80001FC0000000003F80001FC0000000001F80001F8000000000 +1F00000F80000000001F00000F80000000000E00000700000044297FA847>I<01FF800007FFF0 +000F81F8001FC07E001FC07E001FC03F000F803F8007003F8000003F8000003F8000003F80000F +FF8000FFFF8007FC3F800FE03F803F803F803F003F807F003F80FE003F80FE003F80FE003F80FE +003F807E007F807F00DF803F839FFC0FFF0FFC01FC03FC1E1B7E9A21>97 +D<001FF80000FFFE0003F01F0007E03F800FC03F801F803F803F801F007F800E007F0000007F00 +0000FF000000FF000000FF000000FF000000FF000000FF000000FF0000007F0000007F0000007F +8000003F8001C01F8001C00FC0038007E0070003F01E0000FFFC00001FE0001A1B7E9A1F>99 +D<00003FF80000003FF80000003FF800000003F800000003F800000003F800000003F800000003 +F800000003F800000003F800000003F800000003F800000003F800000003F800000003F800001F +E3F80000FFFBF80003F03FF80007E00FF8000FC007F8001F8003F8003F8003F8007F0003F8007F +0003F8007F0003F800FF0003F800FF0003F800FF0003F800FF0003F800FF0003F800FF0003F800 +FF0003F8007F0003F8007F0003F8007F0003F8003F8003F8001F8003F8000F8007F80007C00FF8 +0003F03BFF8000FFF3FF80003FC3FF80212A7EA926>I<003FE00001FFF80003F07E0007C01F00 +0F801F801F800F803F800FC07F000FC07F0007C07F0007E0FF0007E0FF0007E0FFFFFFE0FFFFFF +E0FF000000FF000000FF0000007F0000007F0000007F0000003F8000E01F8000E00FC001C007E0 +038003F81F0000FFFE00001FF0001B1B7E9A20>I<0007F0003FFC00FE3E01F87F03F87F03F07F +07F07F07F03E07F00007F00007F00007F00007F00007F00007F000FFFFC0FFFFC0FFFFC007F000 +07F00007F00007F00007F00007F00007F00007F00007F00007F00007F00007F00007F00007F000 +07F00007F00007F00007F00007F00007F00007F0007FFF807FFF807FFF80182A7EA915>I<00FF +81F003FFE7F80FC1FE7C1F80FC7C1F007C383F007E107F007F007F007F007F007F007F007F007F +007F007F007F003F007E001F007C001F80FC000FC1F8001FFFE00018FF80003800000038000000 +3C0000003E0000003FFFF8001FFFFF001FFFFF800FFFFFC007FFFFE01FFFFFF03E0007F07C0001 +F8F80000F8F80000F8F80000F8F80000F87C0001F03C0001E01F0007C00FC01F8003FFFE00007F +F0001E287E9A22>I<FFE0000000FFE0000000FFE00000000FE00000000FE00000000FE0000000 +0FE00000000FE00000000FE00000000FE00000000FE00000000FE00000000FE00000000FE00000 +000FE00000000FE07F00000FE1FFC0000FE787E0000FEE03F0000FF803F0000FF803F8000FF003 +F8000FF003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE0 +03F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000F +E003F8000FE003F800FFFE3FFF80FFFE3FFF80FFFE3FFF80212A7DA926>I<07000F801FC03FE0 +3FE03FE01FC00F8007000000000000000000000000000000FFE0FFE0FFE00FE00FE00FE00FE00F +E00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE0FFFEFFFEFFFE +0F2B7DAA14>I<000700000F80001FC0003FE0003FE0003FE0001FC0000F800007000000000000 +0000000000000000000000000000000001FFE001FFE001FFE0000FE0000FE0000FE0000FE0000F +E0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000F +E0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE07C0FE0FE0FE0FE0F +C0FE1F80FE1F007C3E003FFC000FF000133784AA15>I<FFE00000FFE00000FFE000000FE00000 +0FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE000 +000FE000000FE01FFC0FE01FFC0FE01FFC0FE007800FE00F000FE01E000FE03C000FE078000FE0 +E0000FE3C0000FE7C0000FEFE0000FFFE0000FFFF0000FF3F8000FE3F8000FC1FC000FC0FE000F +C07F000FC07F000FC03F800FC01FC00FC00FC00FC00FE0FFFC3FFEFFFC3FFEFFFC3FFE1F2A7EA9 +24>I<FFE0FFE0FFE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE0 +0FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00F +E00FE0FFFEFFFEFFFE0F2A7DA914>I<FFC07F800FF000FFC1FFE03FFC00FFC383F0707E000FC6 +03F8C07F000FCC01F9803F000FD801FF003F800FF001FE003F800FF001FE003F800FE001FC003F +800FE001FC003F800FE001FC003F800FE001FC003F800FE001FC003F800FE001FC003F800FE001 +FC003F800FE001FC003F800FE001FC003F800FE001FC003F800FE001FC003F800FE001FC003F80 +0FE001FC003F800FE001FC003F800FE001FC003F800FE001FC003F80FFFE1FFFC3FFF8FFFE1FFF +C3FFF8FFFE1FFFC3FFF8351B7D9A3A>I<FFC07F0000FFC1FFC000FFC787E0000FCE03F0000FD8 +03F0000FD803F8000FF003F8000FF003F8000FE003F8000FE003F8000FE003F8000FE003F8000F +E003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F800 +0FE003F8000FE003F8000FE003F8000FE003F800FFFE3FFF80FFFE3FFF80FFFE3FFF80211B7D9A +26>I<003FE00001FFFC0003F07E000FC01F801F800FC03F800FE03F0007E07F0007F07F0007F0 +7F0007F0FF0007F8FF0007F8FF0007F8FF0007F8FF0007F8FF0007F8FF0007F8FF0007F87F0007 +F07F0007F03F800FE03F800FE01F800FC00FC01F8007F07F0001FFFC00003FE0001D1B7E9A22> +I<FFE1FE0000FFE7FF8000FFFE07E0000FF803F0000FF001F8000FE000FC000FE000FE000FE000 +FF000FE0007F000FE0007F000FE0007F800FE0007F800FE0007F800FE0007F800FE0007F800FE0 +007F800FE0007F800FE0007F000FE000FF000FE000FF000FE000FE000FE001FC000FF001F8000F +F803F0000FFE0FE0000FE7FF80000FE1FC00000FE00000000FE00000000FE00000000FE0000000 +0FE00000000FE00000000FE00000000FE00000000FE0000000FFFE000000FFFE000000FFFE0000 +0021277E9A26>I<FFC1F0FFC7FCFFCE3E0FD87F0FD87F0FF07F0FF03E0FF01C0FE0000FE0000F +E0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000F +E000FFFF00FFFF00FFFF00181B7E9A1C>114 D<03FE300FFFF01E03F03800F0700070F00070F0 +0070F80070FC0000FFE0007FFE007FFF803FFFE01FFFF007FFF800FFF80003FC0000FC60007CE0 +003CF0003CF00038F80038FC0070FF01E0F7FFC0C1FF00161B7E9A1B>I<007000007000007000 +00700000F00000F00000F00001F00003F00003F00007F0001FFFF0FFFFF0FFFFF007F00007F000 +07F00007F00007F00007F00007F00007F00007F00007F00007F00007F00007F00007F03807F038 +07F03807F03807F03807F03803F03803F87001F86000FFC0001F8015267FA51B>I<FFE03FF800 +FFE03FF800FFE03FF8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8 +000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003 +F8000FE003F8000FE003F8000FE003F8000FE003F8000FE007F80007E007F80007E00FF80003F0 +3BFF8001FFF3FF80003FC3FF80211B7D9A26>I<FFFE03FF80FFFE03FF80FFFE03FF8007F00070 +0007F000700007F800F00003F800E00003FC01E00001FC01C00001FC01C00000FE03800000FE03 +8000007F070000007F070000007F8F0000003F8E0000003FDE0000001FDC0000001FDC0000000F +F80000000FF80000000FF800000007F000000007F000000003E000000003E000000001C0000021 +1B7F9A24>I<FFFE7FFC0FFEFFFE7FFC0FFEFFFE7FFC0FFE0FE007E000E007F003F001C007F003 +F001C007F807F803C003F807F8038003F807F8038001FC0EFC070001FC0EFC070001FE1EFC0F00 +00FE1C7E0E0000FE1C7E0E0000FF383F1E00007F383F1C00007F783F3C00003FF01FB800003FF0 +1FB800003FF01FF800001FE00FF000001FE00FF000000FC007E000000FC007E000000FC007E000 +00078003C00000078003C0002F1B7F9A32>I<FFFC0FFF00FFFC0FFF00FFFC0FFF0007F003C000 +03F807800001FC07800000FE0F000000FF1E0000007F3C0000003FF80000001FF00000000FF000 +00000FF000000007F000000007F80000000FFC0000001FFE0000001EFE0000003C7F000000783F +800000F01FC00001E01FE00001C00FE00003C007F000FFF01FFF80FFF01FFF80FFF01FFF80211B +7F9A24>I<FFFE03FF80FFFE03FF80FFFE03FF8007F000700007F000700007F800F00003F800E0 +0003FC01E00001FC01C00001FC01C00000FE03800000FE038000007F070000007F070000007F8F +0000003F8E0000003FDE0000001FDC0000001FDC0000000FF80000000FF80000000FF800000007 +F000000007F000000003E000000003E000000001C000000001C000000003800000000380000038 +078000007C07000000FE0F000000FE0E000000FE1E000000FE3C0000007C780000003FE0000000 +0FC000000021277F9A24>I<3FFFFF803FFFFF803F007F003C00FE003801FE007803FC007803F8 +007007F800700FF000700FE000001FC000003FC000007F8000007F000000FF000001FE038001FC +038003F8038007F803800FF007800FE007801FE007003FC00F003F801F007F007F00FFFFFF00FF +FFFF00191B7E9A1F>I E /Fs 4 94 df<003F000000E180000380C020070060400E0070401C00 +70403C0070803C003880780039007800390078003A00F0003A00F0003C00F0003800F000380070 +003800700078003000B800380338401C1C188007E00F001B157E941F>11 +D<00007C00000183000002018000040180000801C0001001C0002001C0002001C0004001C00040 +038000800380008003000080070001000E000107FC0001083800010FDC0002000E0002000E0002 +000F0002000F0004000F0004000F0004000F0004000F0008001E0008001E0008001C0008003C00 +14003800140070001400E0001201C00021838000207C0000200000002000000040000000400000 +004000000040000000800000008000000080000000800000001A2D7EA21C>I<70F8F8F8700505 +7C840E>58 D<00400040004020402040204020402040204020402040207021F027F03FF0FFC0FE +40F840E0402040204020402040204020402040204020402040204020402040207021F027F03FF0 +FFC0FE40F840E04020402040204020402000200020000C2F7DA313>93 D +E /Ft 71 124 df<001F83E000706E3000C07C780180F8780380F0780700700007007000070070 +00070070000700700007007000070070000700700007007000FFFFFFC007007000070070000700 +700007007000070070000700700007007000070070000700700007007000070070000700700007 +0070000700700007007000070070000700700007007000070078007FE3FF801D2380A21C>11 +D<001FC0000070200000C010000180380003807800070078000700300007000000070000000700 +000007000000070000000700000007000000FFFFF8000700780007003800070038000700380007 +003800070038000700380007003800070038000700380007003800070038000700380007003800 +07003800070038000700380007003800070038007FE1FF80192380A21B>I<001FD80000703800 +00C078000180780003807800070038000700380007003800070038000700380007003800070038 +000700380007003800FFFFF8000700380007003800070038000700380007003800070038000700 +380007003800070038000700380007003800070038000700380007003800070038000700380007 +00380007003800070038007FF3FF80192380A21B>I<000FC07F00007031C08000E00B00400180 +1E00E003803E01E007003C01E007001C00C007001C000007001C000007001C000007001C000007 +001C000007001C000007001C0000FFFFFFFFE007001C01E007001C00E007001C00E007001C00E0 +07001C00E007001C00E007001C00E007001C00E007001C00E007001C00E007001C00E007001C00 +E007001C00E007001C00E007001C00E007001C00E007001C00E007001C00E007001C00E07FF1FF +CFFE272380A229>I<00200040008001000300060004000C000C00180018003000300030007000 +600060006000E000E000E000E000E000E000E000E000E000E000E000E000E000E0006000600060 +007000300030003000180018000C000C0004000600030001000080004000200B327CA413>40 +D<800040002000100018000C000400060006000300030001800180018001C000C000C000C000E0 +00E000E000E000E000E000E000E000E000E000E000E000E000E000C000C000C001C00180018001 +80030003000600060004000C00180010002000400080000B327DA413>I<70F8FCFC7404040404 +080810102040060F7C840E>44 D<FFE0FFE00B027F8B10>I<70F8F8F87005057C840E>I<01F000 +071C000C06001803003803803803807001C07001C07001C07001C0F001E0F001E0F001E0F001E0 +F001E0F001E0F001E0F001E0F001E0F001E0F001E0F001E0F001E0F001E07001C07001C07001C0 +7803C03803803803801C07000C0600071C0001F00013227EA018>48 D<008003800F80F3800380 +038003800380038003800380038003800380038003800380038003800380038003800380038003 +8003800380038003800380038007C0FFFE0F217CA018>I<03F0000C1C001007002007804003C0 +4003C08003E0F003E0F801E0F801E0F801E02003E00003E00003C00003C0000780000700000E00 +001C0000180000300000600000C0000180000100000200200400200800201800603000403FFFC0 +7FFFC0FFFFC013217EA018>I<03F8000C1E001007002007804007C07807C07803C07807C03807 +C0000780000780000700000F00000E0000380003F000001C00000F000007800007800003C00003 +C00003E02003E07003E0F803E0F803E0F003C04003C0400780200780100F000C1C0003F0001322 +7EA018>I<000200000600000E00000E00001E00001E00002E00004E00004E00008E00008E0001 +0E00020E00020E00040E00040E00080E00100E00100E00200E00200E00400E00800E00FFFFF800 +0E00000E00000E00000E00000E00000E00000E00001F0001FFF015217FA018>I<1000801E0700 +1FFF001FFE001FF80013E00010000010000010000010000010000010000010F800130E00140700 +1803801003800001C00001C00001E00001E00001E00001E07001E0F001E0F001E0E001C08001C0 +4003C04003802007001006000C1C0003F00013227EA018>I<007E0001C1000300800601C00E03 +C01C03C0180180380000380000780000700000700000F0F800F30C00F40600F40300F80380F801 +C0F001C0F001E0F001E0F001E0F001E0F001E07001E07001E07001E03801C03801C01803801C03 +000C0600070C0001F00013227EA018>I<4000006000007FFFE07FFFC07FFFC0400080C0010080 +010080020080020000040000080000080000100000300000200000600000600000600000E00000 +C00000C00001C00001C00001C00001C00003C00003C00003C00003C00003C00003C00003C00003 +C00001800013237DA118>I<01F800060E000803001001802001802000C06000C06000C06000C0 +7000C07801803E01003F02001FC4000FF80003F80003FC00067F00083F80100F803007C06001C0 +6000E0C000E0C00060C00060C00060C000606000406000C03000801803000E0E0003F00013227E +A018>I<01F000060C000C0600180700380380700380700380F001C0F001C0F001C0F001E0F001 +E0F001E0F001E0F001E07001E07003E03803E01805E00C05E00619E003E1E00001C00001C00001 +C0000380000380300300780700780600700C002018001030000FC00013227EA018>I<70F8F8F8 +70000000000000000000000070F8F8F87005157C940E>I<FFFFFFFEFFFFFFFE00000000000000 +00000000000000000000000000000000000000000000000000FFFFFFFEFFFFFFFE1F0C7D9126> +61 D<0001800000018000000180000003C0000003C0000003C0000005E0000005E000000DF000 +0008F0000008F0000010F800001078000010780000203C0000203C0000203C0000401E0000401E +0000401E0000800F0000800F0000FFFF000100078001000780030007C0020003C0020003C00400 +03E0040001E0040001E00C0000F00C0000F03E0001F8FF800FFF20237EA225>65 +D<FFFFF8000F800E0007800780078003C0078003E0078001E0078001F0078001F0078001F00780 +01F0078001F0078001E0078003E0078007C007800F8007803E0007FFFE0007800780078003C007 +8001E0078001F0078000F0078000F8078000F8078000F8078000F8078000F8078000F8078001F0 +078001F0078003E0078007C00F800F00FFFFFC001D227EA123>I<0007E0100038183000E00630 +01C00170038000F0070000F00E0000701E0000701C0000303C0000303C0000307C000010780000 +1078000010F8000000F8000000F8000000F8000000F8000000F8000000F8000000F80000007800 +0000780000107C0000103C0000103C0000101C0000201E0000200E000040070000400380008001 +C0010000E0020000381C000007E0001C247DA223>I<FFFFF0000F801E0007800700078003C007 +8001C0078000E0078000F007800078078000780780007C0780003C0780003C0780003C0780003E +0780003E0780003E0780003E0780003E0780003E0780003E0780003E0780003E0780003C078000 +3C0780007C0780007807800078078000F0078000E0078001E0078003C0078007000F801E00FFFF +F8001F227EA125>I<FFFFFFC00F8007C0078001C0078000C00780004007800040078000600780 +0020078000200780002007802020078020000780200007802000078060000780E00007FFE00007 +80E000078060000780200007802000078020000780200807800008078000080780001007800010 +07800010078000300780003007800070078000E00F8003E0FFFFFFE01D227EA121>I<FFFFFFC0 +0F8007C0078001C0078000C0078000400780004007800060078000200780002007800020078020 +20078020000780200007802000078060000780E00007FFE0000780E00007806000078020000780 +200007802000078020000780000007800000078000000780000007800000078000000780000007 +800000078000000FC00000FFFE00001B227EA120>I<0007F008003C0C1800E0021801C001B803 +8000F8070000780F0000381E0000381E0000183C0000183C0000187C0000087800000878000008 +F8000000F8000000F8000000F8000000F8000000F8000000F8000000F8001FFF780000F8780000 +787C0000783C0000783C0000781E0000781E0000780F00007807000078038000B801C000B800E0 +0318003C0C080007F00020247DA226>I<FFFC3FFF0FC003F0078001E0078001E0078001E00780 +01E0078001E0078001E0078001E0078001E0078001E0078001E0078001E0078001E0078001E007 +8001E007FFFFE0078001E0078001E0078001E0078001E0078001E0078001E0078001E0078001E0 +078001E0078001E0078001E0078001E0078001E0078001E0078001E00FC003F0FFFC3FFF20227E +A125>I<FFFC0FC007800780078007800780078007800780078007800780078007800780078007 +80078007800780078007800780078007800780078007800780078007800FC0FFFC0E227EA112> +I<FFFC03FF000FC000F80007800060000780004000078000800007800100000780020000078004 +00000780080000078010000007802000000780400000078080000007818000000783C000000787 +E000000789E000000788F000000790F0000007A078000007C03C000007803C000007801E000007 +800F000007800F00000780078000078007C000078003C000078001E000078001E000078000F000 +078000F8000FC000FC00FFFC07FF8021227EA126>75 D<FFFE00000FC000000780000007800000 +078000000780000007800000078000000780000007800000078000000780000007800000078000 +000780000007800000078000000780000007800000078000000780000007800000078000800780 +00800780008007800080078001800780018007800100078003000780030007800F000F803F00FF +FFFF0019227EA11E>I<FFC00003FF0FC00003F007C00003E005E00005E005E00005E004F00009 +E004F00009E004F00009E004780011E004780011E004780011E0043C0021E0043C0021E0043C00 +21E0041E0041E0041E0041E0040F0081E0040F0081E0040F0081E004078101E004078101E00407 +8101E00403C201E00403C201E00401E401E00401E401E00401E401E00400F801E00400F801E004 +00F801E004007001E00E007001E01F007003F0FFE0203FFF28227EA12D>I<FF8007FF07C000F8 +07C0007005E0002004F0002004F0002004780020047C0020043C0020041E0020041F0020040F00 +2004078020040780200403C0200401E0200401E0200400F0200400F8200400782004003C200400 +3E2004001E2004000F2004000F20040007A0040003E0040003E0040001E0040001E0040000E00E +0000601F000060FFE0002020227EA125>I<000FE00000783C0000E00E0003C00780078003C00F +0001E00E0000E01E0000F03C0000783C0000787C00007C7C00007C7800003C7800003CF800003E +F800003EF800003EF800003EF800003EF800003EF800003EF800003EF800003E7800003C7C0000 +7C7C00007C3C0000783E0000F81E0000F00F0001E00F0001E0078003C003C0078000E00E000078 +3C00000FE0001F247DA226>I<FFFFF0000F803C0007800F0007800780078007C0078003C00780 +03E0078003E0078003E0078003E0078003E0078003E0078003C0078007C00780078007800F0007 +803C0007FFF0000780000007800000078000000780000007800000078000000780000007800000 +0780000007800000078000000780000007800000078000000FC00000FFFC00001B227EA121>I< +000FE00000783C0000E00E0003C00780078003C00F0001E00E0000E01E0000F03E0000F83C0000 +787C00007C7C00007C7800003C7800003CF800003EF800003EF800003EF800003EF800003EF800 +003EF800003EF800003EF800003E7800003C7C00007C7C00007C3C0000783C0000781E0380F00E +0420E00F0801E0078813C003C8178000E80E00007C3C02000FEC0200000C0200000C0200000E06 +00000F0E000007FC000007FC000007F8000003F8000001E01F2D7DA226>I<FFFFE000000F803C +000007800E00000780078000078007C000078003C000078003E000078003E000078003E0000780 +03E000078003E000078003C000078007C000078007800007800E000007803C000007FFE0000007 +80700000078038000007801C000007801E000007800E000007800F000007800F000007800F0000 +07800F000007800F800007800F800007800F800007800F808007800FC080078007C0800FC003C1 +00FFFC01E2000000007C0021237EA124>I<03F0200C0C601802603001E07000E0600060E00060 +E00060E00020E00020E00020F00000F000007800007F00003FF0001FFE000FFF0003FF80003FC0 +0007E00001E00000F00000F0000070800070800070800070800070C00060C00060E000C0F000C0 +C80180C6070081FC0014247DA21B>I<7FFFFFF878078078600780184007800840078008400780 +08C007800C80078004800780048007800480078004000780000007800000078000000780000007 +800000078000000780000007800000078000000780000007800000078000000780000007800000 +078000000780000007800000078000000780000007800000078000000FC00003FFFF001E227EA1 +23>I<FFFC07FF0FC000F807800070078000200780002007800020078000200780002007800020 +078000200780002007800020078000200780002007800020078000200780002007800020078000 +20078000200780002007800020078000200780002007800020078000200380004003C0004003C0 +004001C0008000E000800060010000300600001C08000003F00020237EA125>I<FFF0007FC01F +80001F000F00000C000780000C000780000800078000080003C000100003C000100003E0003000 +01E000200001E000200000F000400000F000400000F000400000780080000078008000007C0180 +00003C010000003C010000001E020000001E020000001F020000000F040000000F040000000F8C +0000000788000000078800000003D000000003D000000003F000000001E000000001E000000000 +C000000000C000000000C0000022237FA125>I<FFF03FFC03FE1F8007E000F80F0003C000700F +0003C000200F0003C00020078001E00040078001E00040078001E0004003C002F0008003C002F0 +008003C002F0008001E00478010001E00478010001E00478010000F0083C020000F0083C020000 +F0083C020000F8183E06000078101E04000078101E0400007C101E0400003C200F0800003C200F +0800003C200F0800001E40079000001E40079000001E40079000000F8003E000000F8003E00000 +0F8003E00000070001C00000070001C00000070001C0000003000180000002000080002F237FA1 +32>I<7FF807FF0007E001F80003C000E00003E000C00001E000800000F001000000F803000000 +78020000007C040000003E0C0000001E080000001F100000000FB000000007A000000007C00000 +0003E000000001E000000001F000000003F80000000278000000047C0000000C3E000000081E00 +0000101F000000300F80000020078000004007C00000C003E000008001E000010001F000030000 +F000070000F8001F8001FC00FFE007FFC022227FA125>I<0FE0001838003C0C003C0E00180700 +00070000070000070000FF0007C7001E07003C0700780700700700F00708F00708F00708F00F08 +7817083C23900FC1E015157E9418>97 D<0E0000FE00001E00000E00000E00000E00000E00000E +00000E00000E00000E00000E00000E00000E00000E1F000E61C00E80600F00300E00380E003C0E +001C0E001E0E001E0E001E0E001E0E001E0E001E0E001E0E001C0E003C0E00380F00700C80600C +41C0083F0017237FA21B>I<01FE000703000C07801C0780380300780000700000F00000F00000 +F00000F00000F00000F00000F000007000007800403800401C00800C010007060001F80012157E +9416>I<0000E0000FE00001E00000E00000E00000E00000E00000E00000E00000E00000E00000 +E00000E00000E001F8E00704E00C02E01C01E03800E07800E07000E0F000E0F000E0F000E0F000 +E0F000E0F000E0F000E07000E07800E03800E01801E00C02E0070CF001F0FE17237EA21B>I<01 +FC000707000C03801C01C03801C07801E07000E0F000E0FFFFE0F00000F00000F00000F00000F0 +00007000007800203800201C00400E008007030000FC0013157F9416>I<003C00C6018F038F03 +0F070007000700070007000700070007000700FFF8070007000700070007000700070007000700 +07000700070007000700070007000700070007807FF8102380A20F>I<00007001F198071E180E +0E181C07001C07003C07803C07803C07803C07801C07001C07000E0E000F1C0019F00010000010 +00001800001800001FFE000FFFC00FFFE03800F0600030400018C00018C00018C0001860003060 +00303800E00E038003FE0015217F9518>I<0E0000FE00001E00000E00000E00000E00000E0000 +0E00000E00000E00000E00000E00000E00000E00000E1F800E60C00E80E00F00700F00700E0070 +0E00700E00700E00700E00700E00700E00700E00700E00700E00700E00700E00700E00700E0070 +0E0070FFE7FF18237FA21B>I<1C001E003E001E001C0000000000000000000000000000000000 +0E00FE001E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E +00FFC00A227FA10E>I<01C003E003E003E001C00000000000000000000000000000000001E00F +E001E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E0 +00E000E000E000E000E060E0F0C0F18061803E000B2C82A10F>I<0E0000FE00001E00000E0000 +0E00000E00000E00000E00000E00000E00000E00000E00000E00000E00000E03FC0E01F00E01C0 +0E01800E02000E04000E08000E10000E38000EF8000F1C000E1E000E0E000E07000E07800E03C0 +0E01C00E01E00E00F00E00F8FFE3FE17237FA21A>I<0E00FE001E000E000E000E000E000E000E +000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E00 +0E000E000E000E000E000E00FFE00B237FA20E>I<0E1FC07F00FE60E183801E807201C00F003C +00E00F003C00E00E003800E00E003800E00E003800E00E003800E00E003800E00E003800E00E00 +3800E00E003800E00E003800E00E003800E00E003800E00E003800E00E003800E00E003800E00E +003800E0FFE3FF8FFE27157F942A>I<0E1F80FE60C01E80E00F00700F00700E00700E00700E00 +700E00700E00700E00700E00700E00700E00700E00700E00700E00700E00700E00700E0070FFE7 +FF18157F941B>I<01FC000707000C01801800C03800E0700070700070F00078F00078F00078F0 +0078F00078F00078F000787000707800F03800E01C01C00E038007070001FC0015157F9418>I< +0E1F00FE61C00E80600F00700E00380E003C0E001C0E001E0E001E0E001E0E001E0E001E0E001E +0E001E0E003C0E003C0E00380F00700E80E00E41C00E3F000E00000E00000E00000E00000E0000 +0E00000E00000E00000E0000FFE000171F7F941B>I<01F8200704600E02601C01603801E07800 +E07800E0F000E0F000E0F000E0F000E0F000E0F000E0F000E07000E07800E03801E01C01E00C02 +E0070CE001F0E00000E00000E00000E00000E00000E00000E00000E00000E00000E0000FFE171F +7E941A>I<0E3CFE461E8F0F0F0F060F000E000E000E000E000E000E000E000E000E000E000E00 +0E000E000F00FFF010157F9413>I<0F8830786018C018C008C008E008F0007F803FE00FF001F8 +003C801C800C800CC00CC008E018D0308FC00E157E9413>I<0200020002000200060006000600 +0E001E003E00FFF80E000E000E000E000E000E000E000E000E000E000E000E040E040E040E040E +040E040708030801F00E1F7F9E13>I<0E0070FE07F01E00F00E00700E00700E00700E00700E00 +700E00700E00700E00700E00700E00700E00700E00700E00700E00F00E00F006017003827800FC +7F18157F941B>I<FFC1FE1E00780E00300E00200E002007004007004003808003808003808001 +C10001C10000E20000E20000E20000740000740000380000380000380000100017157F941A>I< +FF8FF8FF1E01E03C1C01C0180E01C0180E01E0100E01E010070260200702702007027020038430 +40038438400384384001C8188001C81C8001C81C8000F00D0000F00F0000F00F00006006000060 +06000060060020157F9423>I<FF83FE1F01F00E00C007008003810003830001C20000E4000078 +00007800003800003C00004E00008E000187000103800201C00401E00C00E03E01F0FF03FE1715 +7F941A>I<FFC1FE1E00780E00300E00200E002007004007004003808003808003808001C10001 +C10000E20000E20000E20000740000740000380000380000380000100000100000200000200000 +2000004000F04000F08000F180004300003C0000171F7F941A>I<3FFFC0380380300780200700 +600E00401C00403C0040380000700000E00001E00001C0000380400700400F00400E00C01C0080 +380080780180700780FFFF8012157F9416>I<FFFFFE1701808C18>I E /Fu +64 124 df<000FF83F00007FFDFFC001F81FE3E003E03F87E007C03F87E00F803F07E00F803F03 +C00F801F00000F801F00000F801F00000F801F00000F801F00000F801F0000FFFFFFFC00FFFFFF +FC000F801F00000F801F00000F801F00000F801F00000F801F00000F801F00000F801F00000F80 +1F00000F801F00000F801F00000F801F00000F801F00000F801F00000F801F00000F801F00000F +801F00000F801F00000F801F00007FF0FFF0007FF0FFF00023237FA221>11 +D<000FF000007FFC0001F80E0003E01F0007C03F000F803F000F803F000F801E000F800C000F80 +00000F8000000F8000000F800000FFFFFF00FFFFFF000F801F000F801F000F801F000F801F000F +801F000F801F000F801F000F801F000F801F000F801F000F801F000F801F000F801F000F801F00 +0F801F000F801F000F801F000F801F007FF0FFE07FF0FFE01B237FA21F>I<FFFCFFFCFFFCFFFC +0E047F8C13>45 D<387CFEFEFE7C3807077C8610>I<00FE0007FFC00F83E01F01F03E00F83E00 +F87C007C7C007C7C007CFC007CFC007EFC007EFC007EFC007EFC007EFC007EFC007EFC007EFC00 +7EFC007EFC007EFC007EFC007E7C007C7C007C7C007C3E00F83E00F81F01F00F83E007FFC000FE +0017207E9F1C>48 D<00180000780001F800FFF800FFF80001F80001F80001F80001F80001F800 +01F80001F80001F80001F80001F80001F80001F80001F80001F80001F80001F80001F80001F800 +01F80001F80001F80001F80001F80001F80001F8007FFFE07FFFE013207C9F1C>I<03FC000FFF +003C1FC07007E07C07F0FE03F0FE03F8FE03F8FE01F87C01F83803F80003F80003F00003F00007 +E00007C0000F80001F00003E0000380000700000E01801C0180380180700180E00380FFFF01FFF +F03FFFF07FFFF0FFFFF0FFFFF015207D9F1C>I<00FE0007FFC00F07E01E03F03F03F03F81F83F +81F83F81F81F03F81F03F00003F00003E00007C0001F8001FE0001FF000007C00001F00001F800 +00FC0000FC3C00FE7E00FEFF00FEFF00FEFF00FEFF00FC7E01FC7801F81E07F00FFFC001FE0017 +207E9F1C>I<0000E00001E00003E00003E00007E0000FE0001FE0001FE00037E00077E000E7E0 +01C7E00187E00307E00707E00E07E00C07E01807E03807E07007E0E007E0FFFFFEFFFFFE0007E0 +0007E00007E00007E00007E00007E00007E000FFFE00FFFE17207E9F1C>I<1000201E01E01FFF +C01FFF801FFF001FFE001FF8001BC00018000018000018000018000019FC001FFF001E0FC01807 +E01803E00003F00003F00003F80003F83803F87C03F8FE03F8FE03F8FC03F0FC03F07007E03007 +C01C1F800FFF0003F80015207D9F1C>I<001F8000FFE003F07007C0F00F01F81F01F83E01F83E +01F87E00F07C00007C0000FC0800FC7FC0FCFFE0FD80F0FF00F8FE007CFE007CFC007EFC007EFC +007EFC007E7C007E7C007E7C007E3C007C3E007C1E00F80F00F00783E003FFC000FF0017207E9F +1C>I<6000007800007FFFFE7FFFFE7FFFFC7FFFF87FFFF87FFFF0E00060E000C0C00180C00300 +C00300000600000C00001C0000180000380000780000780000F00000F00000F00001F00001F000 +01F00003F00003F00003F00003F00003F00003F00003F00001E00017227DA11C>I<00FE0003FF +C00703E00E00F01C00F01C00783C00783E00783F00783F80783FE0F01FF9E01FFFC00FFF8007FF +C003FFE007FFF01E7FF83C1FFC7807FC7801FEF000FEF0003EF0001EF0001EF0001CF8001C7800 +383C00381F01F00FFFC001FF0017207E9F1C>I<01FE0007FF800F83E01E01F03E00F07C00F87C +0078FC007CFC007CFC007CFC007EFC007EFC007EFC007E7C00FE7C00FE3E01FE1E037E0FFE7E07 +FC7E00207E00007C00007C1E007C3F00F83F00F83F00F03F01E01E03C01C0F800FFE0003F80017 +207E9F1C>I<387CFEFEFE7C380000000000000000387CFEFEFE7C3807167C9510>I<0000700000 +00007000000000F800000000F800000000F800000001FC00000001FC00000003FE00000003FE00 +000003FE00000006FF000000067F0000000E7F8000000C3F8000000C3F800000183FC00000181F +C00000381FE00000300FE00000300FE00000600FF000006007F00000E007F80000FFFFF80000FF +FFF800018001FC00018001FC00038001FE00030000FE00030000FE000600007F000600007F00FF +E00FFFF8FFE00FFFF825227EA12A>65 D<FFFFFF8000FFFFFFE00007F001F80007F000FC0007F0 +007E0007F0007E0007F0007F0007F0007F0007F0007F0007F0007F0007F0007F0007F0007E0007 +F000FE0007F000FC0007F003F80007FFFFF00007FFFFF00007F001FC0007F0007E0007F0003F00 +07F0003F8007F0001F8007F0001FC007F0001FC007F0001FC007F0001FC007F0001FC007F0001F +C007F0003F8007F0003F8007F0007F0007F001FE00FFFFFFF800FFFFFFC00022227EA128>I<00 +03FE0080001FFF818000FF01E38001F8003F8003E0001F8007C0000F800F800007801F80000780 +3F000003803F000003807F000001807E000001807E00000180FE00000000FE00000000FE000000 +00FE00000000FE00000000FE00000000FE00000000FE000000007E000000007E000001807F0000 +01803F000001803F000003801F800003000F8000030007C000060003F0000C0001F800380000FF +00F000001FFFC0000003FE000021227DA128>I<FFFFFF8000FFFFFFF00007F003FC0007F0007E +0007F0003F0007F0001F8007F0000FC007F00007E007F00007E007F00007F007F00003F007F000 +03F007F00003F007F00003F807F00003F807F00003F807F00003F807F00003F807F00003F807F0 +0003F807F00003F807F00003F807F00003F007F00003F007F00003F007F00007E007F00007E007 +F0000FC007F0001F8007F0003F0007F0007E0007F003FC00FFFFFFF000FFFFFF800025227EA12B +>I<FFFFFFFCFFFFFFFC07F000FC07F0003C07F0001C07F0000C07F0000E07F0000E07F0000607 +F0180607F0180607F0180607F0180007F0380007F0780007FFF80007FFF80007F0780007F03800 +07F0180007F0180007F0180307F0180307F0000307F0000607F0000607F0000607F0000E07F000 +0E07F0001E07F0003E07F001FCFFFFFFFCFFFFFFFC20227EA125>I<FFFFFFF8FFFFFFF807F001 +F807F0007807F0003807F0001807F0001C07F0001C07F0000C07F0000C07F0180C07F0180C07F0 +180007F0180007F0380007F0780007FFF80007FFF80007F0780007F0380007F0180007F0180007 +F0180007F0180007F0000007F0000007F0000007F0000007F0000007F0000007F0000007F00000 +FFFFE000FFFFE0001E227EA123>I<0003FE0040001FFFC0C0007F00F1C001F8003FC003F0000F +C007C00007C00FC00003C01F800003C03F000001C03F000001C07F000000C07E000000C07E0000 +00C0FE00000000FE00000000FE00000000FE00000000FE00000000FE00000000FE00000000FE00 +0FFFFC7E000FFFFC7F00001FC07F00001FC03F00001FC03F00001FC01F80001FC00FC0001FC007 +E0001FC003F0001FC001FC003FC0007F80E7C0001FFFC3C00003FF00C026227DA12C>I<FFFF83 +FFFEFFFF83FFFE07F0001FC007F0001FC007F0001FC007F0001FC007F0001FC007F0001FC007F0 +001FC007F0001FC007F0001FC007F0001FC007F0001FC007F0001FC007F0001FC007FFFFFFC007 +FFFFFFC007F0001FC007F0001FC007F0001FC007F0001FC007F0001FC007F0001FC007F0001FC0 +07F0001FC007F0001FC007F0001FC007F0001FC007F0001FC007F0001FC007F0001FC007F0001F +C0FFFF83FFFEFFFF83FFFE27227EA12C>I<FFFFE0FFFFE003F80003F80003F80003F80003F800 +03F80003F80003F80003F80003F80003F80003F80003F80003F80003F80003F80003F80003F800 +03F80003F80003F80003F80003F80003F80003F80003F80003F80003F80003F80003F800FFFFE0 +FFFFE013227FA115>I<FFFF803FFCFFFF803FFC07F000038007F000070007F0000E0007F00018 +0007F000300007F000E00007F001C00007F003800007F007000007F00E000007F018000007F038 +000007F0FC000007F1FE000007F3FE000007F77F000007FE7F800007F83F800007F01FC00007F0 +1FE00007F00FE00007F007F00007F007F80007F003F80007F001FC0007F001FE0007F000FF0007 +F0007F0007F0007F8007F0003FC0FFFF83FFFCFFFF83FFFC26227EA12C>75 +D<FFFFE000FFFFE00007F0000007F0000007F0000007F0000007F0000007F0000007F0000007F0 +000007F0000007F0000007F0000007F0000007F0000007F0000007F0000007F0000007F0000007 +F0000007F0000007F0001807F0001807F0001807F0001807F0003807F0003807F0007007F00070 +07F000F007F001F007F007F0FFFFFFF0FFFFFFF01D227EA122>I<FFF000000FFFFFF800001FFF +07F800001FE006FC000037E006FC000037E006FC000037E0067E000067E0067E000067E0063F00 +00C7E0063F0000C7E0061F800187E0061F800187E0060FC00307E0060FC00307E0060FC00307E0 +0607E00607E00607E00607E00603F00C07E00603F00C07E00601F81807E00601F81807E00601F8 +1807E00600FC3007E00600FC3007E006007E6007E006007E6007E006003FC007E006003FC007E0 +06001F8007E006001F8007E006001F8007E006000F0007E0FFF00F00FFFFFFF00600FFFF30227E +A135>I<FFF8001FFEFFFC001FFE07FC0000C007FE0000C006FF0000C0067F8000C0063FC000C0 +061FE000C0060FE000C0060FF000C00607F800C00603FC00C00601FE00C00600FE00C00600FF00 +C006007F80C006003FC0C006001FE0C006000FF0C0060007F0C0060007F8C0060003FCC0060001 +FEC0060000FFC00600007FC00600007FC00600003FC00600001FC00600000FC006000007C00600 +0003C006000003C0FFF00001C0FFF00000C027227EA12C>I<0007FC0000003FFF800000FC07E0 +0003F001F80007E000FC000FC0007E001F80003F001F80003F003F00001F803F00001F807F0000 +1FC07E00000FC07E00000FC0FE00000FE0FE00000FE0FE00000FE0FE00000FE0FE00000FE0FE00 +000FE0FE00000FE0FE00000FE0FE00000FE07E00000FC07F00001FC07F00001FC03F00001F803F +80003F801F80003F000FC0007E0007E000FC0003F001F80000FC07E000003FFF80000007FC0000 +23227DA12A>I<FFFFFF00FFFFFFE007F007F007F001FC07F000FC07F0007E07F0007E07F0007F +07F0007F07F0007F07F0007F07F0007F07F0007E07F0007E07F000FC07F001FC07F007F007FFFF +E007FFFF0007F0000007F0000007F0000007F0000007F0000007F0000007F0000007F0000007F0 +000007F0000007F0000007F0000007F00000FFFF8000FFFF800020227EA126>I<0007FC000000 +3FFF800000FC07E00003F001F80007E000FC000FC0007E001F80003F001F80003F003F00001F80 +3F00001F807F00001FC07E00000FC07E00000FC0FE00000FE0FE00000FE0FE00000FE0FE00000F +E0FE00000FE0FE00000FE0FE00000FE0FE00000FE0FE00000FE07E00000FC07F00001FC07F0000 +1FC03F00001F803F81F03F801F83F83F000FC70C7E0007E606FC0003F607F80000FF07E000003F +FF80000007FF80200000038020000003C020000003E0E0000003FFE0000001FFC0000001FFC000 +0000FFC0000000FF800000007F000000001E00232C7DA12A>I<FFFFFE0000FFFFFFC00007F007 +F00007F001F80007F000FC0007F0007E0007F0007F0007F0007F0007F0007F0007F0007F0007F0 +007F0007F0007F0007F0007E0007F000FC0007F001F80007F007F00007FFFFC00007FFFF800007 +F00FE00007F007F00007F003F80007F001FC0007F001FC0007F001FC0007F001FC0007F001FC00 +07F001FC0007F001FC0007F001FC0007F001FC0607F000FE0607F000FF0CFFFF803FF8FFFF800F +F027227EA12A>I<01FC0407FF8C1F03FC3C007C7C003C78001C78001CF8000CF8000CFC000CFC +0000FF0000FFE0007FFF007FFFC03FFFF01FFFF80FFFFC03FFFE003FFE0003FF00007F00003F00 +003FC0001FC0001FC0001FE0001EE0001EF0003CFC003CFF00F8C7FFE080FF8018227DA11F>I< +7FFFFFFF807FFFFFFF807E03F80F807803F807807003F803806003F80180E003F801C0E003F801 +C0C003F800C0C003F800C0C003F800C0C003F800C00003F800000003F800000003F800000003F8 +00000003F800000003F800000003F800000003F800000003F800000003F800000003F800000003 +F800000003F800000003F800000003F800000003F800000003F800000003F800000003F8000000 +03F8000003FFFFF80003FFFFF80022227EA127>I<FFFF803FFCFFFF803FFC07F000018007F000 +018007F000018007F000018007F000018007F000018007F000018007F000018007F000018007F0 +00018007F000018007F000018007F000018007F000018007F000018007F000018007F000018007 +F000018007F000018007F000018007F000018007F000018007F000018007F000018003F0000300 +03F800030001F800060000FC000E00007E001C00003F80F800000FFFE0000001FF000026227EA1 +2B>I<FFFF800FFEFFFF800FFE07F00000C007F80000C003F800018003F800018001FC00030001 +FC00030001FE00070000FE00060000FF000600007F000C00007F800C00003F801800003F801800 +003FC03800001FC03000001FE03000000FE06000000FF060000007F0C0000007F0C0000007F9C0 +000003F980000003FD80000001FF00000001FF00000000FE00000000FE00000000FE000000007C +000000007C00000000380000000038000027227FA12A>I<FFFF0FFFF01FFEFFFF0FFFF01FFE0F +F000FF0000E007F0007F0000C007F0007F0000C003F8007F80018003F8003F80018003FC003F80 +038001FC003FC0030001FC003FC0030000FE007FE0060000FE006FE0060000FF006FE00600007F +00C7F00C00007F00C7F00C00007F80C7F81C00003F8183F81800003F8183F81800001FC383FC30 +00001FC301FC3000001FE301FC3000000FE600FE6000000FE600FE6000000FF600FFE0000007FC +007FC0000007FC007FC0000003FC007F80000003F8003F80000003F8003F80000001F0001F0000 +0001F0001F00000000F0001E00000000E0000E00000000E0000E000037227FA13A>I<07FC001F +FF803F07C03F03E03F01E03F01F01E01F00001F00001F0003FF003FDF01FC1F03F01F07E01F0FC +01F0FC01F0FC01F0FC01F07E02F07E0CF81FF87F07E03F18167E951B>97 +D<FF000000FF0000001F0000001F0000001F0000001F0000001F0000001F0000001F0000001F00 +00001F0000001F0000001F0000001F0FE0001F3FF8001FF07C001F801E001F001F001F000F801F +000F801F000FC01F000FC01F000FC01F000FC01F000FC01F000FC01F000FC01F000FC01F000F80 +1F001F801F801F001FC03E001EE07C001C3FF800180FC0001A237EA21F>I<00FF8007FFE00F83 +F01F03F03E03F07E03F07C01E07C0000FC0000FC0000FC0000FC0000FC0000FC00007C00007E00 +007E00003E00301F00600FC0E007FF8000FE0014167E9519>I<0001FE000001FE0000003E0000 +003E0000003E0000003E0000003E0000003E0000003E0000003E0000003E0000003E0000003E00 +01FC3E0007FFBE000F81FE001F007E003E003E007E003E007C003E00FC003E00FC003E00FC003E +00FC003E00FC003E00FC003E00FC003E00FC003E007C003E007C003E003E007E001E00FE000F83 +BE0007FF3FC001FC3FC01A237EA21F>I<00FE0007FF800F87C01E01E03E01F07C00F07C00F8FC +00F8FC00F8FFFFF8FFFFF8FC0000FC0000FC00007C00007C00007E00003E00181F00300FC07003 +FFC000FF0015167E951A>I<003F8000FFC001E3E003C7E007C7E00F87E00F83C00F80000F8000 +0F80000F80000F80000F8000FFFC00FFFC000F80000F80000F80000F80000F80000F80000F8000 +0F80000F80000F80000F80000F80000F80000F80000F80000F80000F80000F80007FF8007FF800 +13237FA211>I<03FC1E0FFF7F1F0F8F3E07CF3C03C07C03E07C03E07C03E07C03E07C03E03C03 +C03E07C01F0F801FFF0013FC003000003000003800003FFF801FFFF00FFFF81FFFFC3800FC7000 +3EF0001EF0001EF0001EF0001E78003C7C007C3F01F80FFFE001FF0018217E951C>I<FF000000 +FF0000001F0000001F0000001F0000001F0000001F0000001F0000001F0000001F0000001F0000 +001F0000001F0000001F07E0001F1FF8001F307C001F403C001F803E001F803E001F003E001F00 +3E001F003E001F003E001F003E001F003E001F003E001F003E001F003E001F003E001F003E001F +003E001F003E001F003E00FFE1FFC0FFE1FFC01A237EA21F>I<1C003E007F007F007F003E001C +000000000000000000000000000000FF00FF001F001F001F001F001F001F001F001F001F001F00 +1F001F001F001F001F001F001F001F00FFE0FFE00B247EA310>I<0038007C00FE00FE00FE007C +0038000000000000000000000000000003FE03FE003E003E003E003E003E003E003E003E003E00 +3E003E003E003E003E003E003E003E003E003E003E003E003E003E783EFC3EFC3CFC7C78F87FE0 +1F800F2E83A311>I<FF000000FF0000001F0000001F0000001F0000001F0000001F0000001F00 +00001F0000001F0000001F0000001F0000001F0000001F00FF801F00FF801F0038001F0060001F +01C0001F0380001F0700001F0E00001F1C00001F7E00001FFF00001FCF00001F0F80001F07C000 +1F03E0001F01E0001F01F0001F00F8001F007C001F003C00FFE0FFC0FFE0FFC01A237EA21E>I< +FF00FF001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F +001F001F001F001F001F001F001F001F001F001F001F001F001F00FFE0FFE00B237EA210>I<FF +07F007F000FF1FFC1FFC001F303E303E001F403E403E001F801F801F001F801F801F001F001F00 +1F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F +001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F00 +1F00FFE0FFE0FFE0FFE0FFE0FFE02B167E9530>I<FF07E000FF1FF8001F307C001F403C001F80 +3E001F803E001F003E001F003E001F003E001F003E001F003E001F003E001F003E001F003E001F +003E001F003E001F003E001F003E001F003E001F003E00FFE1FFC0FFE1FFC01A167E951F>I<00 +FE0007FFC00F83E01E00F03E00F87C007C7C007C7C007CFC007EFC007EFC007EFC007EFC007EFC +007EFC007E7C007C7C007C3E00F81F01F00F83E007FFC000FE0017167E951C>I<FF0FE000FF3F +F8001FF07C001F803E001F001F001F001F801F001F801F000FC01F000FC01F000FC01F000FC01F +000FC01F000FC01F000FC01F000FC01F001F801F001F801F803F001FC03E001FE0FC001F3FF800 +1F0FC0001F0000001F0000001F0000001F0000001F0000001F0000001F0000001F000000FFE000 +00FFE000001A207E951F>I<00FE030007FF87000FC1C7001F006F003F003F007E003F007E001F +007C001F00FC001F00FC001F00FC001F00FC001F00FC001F00FC001F00FC001F007E001F007E00 +1F003E003F001F007F000FC1DF0007FF9F0001FC1F0000001F0000001F0000001F0000001F0000 +001F0000001F0000001F0000001F000000FFE00000FFE01B207E951E>I<FE1F00FE3FC01E67E0 +1EC7E01E87E01E87E01F83C01F00001F00001F00001F00001F00001F00001F00001F00001F0000 +1F00001F00001F00001F0000FFF000FFF00013167E9517>I<0FF3003FFF00781F00600700E003 +00E00300F00300FC00007FE0007FF8003FFE000FFF0001FF00000F80C00780C00380E00380E003 +80F00700FC0E00EFFC00C7F00011167E9516>I<01800001800001800001800003800003800007 +80000780000F80003F8000FFFF00FFFF000F80000F80000F80000F80000F80000F80000F80000F +80000F80000F80000F80000F81800F81800F81800F81800F81800F830007C30003FE0000F80011 +207F9F16>I<FF01FE00FF01FE001F003E001F003E001F003E001F003E001F003E001F003E001F +003E001F003E001F003E001F003E001F003E001F003E001F003E001F003E001F003E001F007E00 +1F00FE000F81BE0007FF3FC001FC3FC01A167E951F>I<FFE01FE0FFE01FE00F8006000F800600 +0FC00E0007C00C0007E01C0003E0180003E0180001F0300001F0300000F8600000F86000007CC0 +00007CC000007FC000003F8000003F8000001F0000001F0000000E0000000E00001B167F951E> +I<FFE7FF07F8FFE7FF07F81F007800C00F807801800F807C01800F807C018007C07E030007C0DE +030007E0DE070003E0DF060003E18F060001F18F0C0001F38F8C0001FB079C0000FB07D80000FE +03D800007E03F000007E03F000007C01F000003C01E000003800E000001800C00025167F9528> +I<FFE07FC0FFE07FC00F801C0007C0380003E0700003F0600001F8C00000F98000007F8000003F +0000001F0000001F8000003FC0000037C0000063E00000C1F00001C0F8000380FC0007007E000E +003E00FF80FFE0FF80FFE01B167F951E>I<FFE01FE0FFE01FE00F8006000F8006000FC00E0007 +C00C0007E01C0003E0180003E0180001F0300001F0300000F8600000F86000007CC000007CC000 +007FC000003F8000003F8000001F0000001F0000000E0000000E0000000C0000000C0000001800 +0078180000FC380000FC300000FC60000069C000007F8000001F0000001B207F951E>I<7FFFF0 +7FFFF07C03E07007C0600FC0E01F80C01F00C03E00C07E0000FC0000F80001F00003F03007E030 +07C0300F80701F80703F00603E00E07C03E0FFFFE0FFFFE014167E9519>I<FFFFFFE0FFFFFFE0 +1B02808E1C>I E /Fv 23 119 df<00000003FF00000C0000003FFFF0001C000001FFFFFC001C +000007FF007F003C00001FF0000F807C00007FC00003C0FC0000FF000000F0FC0003FC00000079 +FC0007F80000003FFC000FF00000001FFC001FE00000000FFC003FC000000007FC007F80000000 +03FC00FF8000000003FC01FF0000000001FC01FE0000000001FC03FE0000000000FC07FC000000 +0000FC07FC00000000007C0FFC00000000007C0FF800000000007C1FF800000000003C1FF80000 +0000003C3FF000000000003C3FF000000000003C3FF000000000001C7FF000000000001C7FF000 +000000001C7FE000000000001C7FE0000000000000FFE0000000000000FFE0000000000000FFE0 +000000000000FFE0000000000000FFE0000000000000FFE0000000000000FFE0000000000000FF +E0000000000000FFE0000000000000FFE0000000000000FFE0000000000000FFE0000000000000 +FFE00000000000007FE00000000000007FE00000000000007FF000000000001C7FF00000000000 +1C3FF000000000001C3FF000000000001C3FF000000000001C1FF800000000001C1FF800000000 +00380FF80000000000380FFC00000000003807FC00000000003807FC00000000007003FE000000 +00007001FE0000000000E001FF0000000000E000FF8000000001C0007F8000000001C0003FC000 +00000380001FE00000000700000FF00000000E000007F80000001C000003FC00000038000000FF +000000700000007FC00001E00000001FF00007C000000007FF007F0000000001FFFFFE00000000 +003FFFF0000000000003FF8000003E497AC74B>67 D<FFFFFFFFFFFFFF80FFFFFFFFFFFFFF80FF +FFFFFFFFFFFF80007FF800000FFF80003FF0000000FFC0001FF00000003FC0001FF00000001FC0 +001FF00000000FC0001FF000000007C0001FF000000003C0001FF000000003C0001FF000000001 +C0001FF000000001E0001FF000000001E0001FF000000000E0001FF000000000E0001FF0000000 +00E0001FF000000000E0001FF000000000E0001FF00000000070001FF00000000070001FF00001 +C00070001FF00001C00070001FF00001C00000001FF00001C00000001FF00001C00000001FF000 +01C00000001FF00001C00000001FF00003C00000001FF00003C00000001FF00007C00000001FF0 +000FC00000001FF0003FC00000001FFFFFFFC00000001FFFFFFFC00000001FFFFFFFC00000001F +F0003FC00000001FF0000FC00000001FF00007C00000001FF00003C00000001FF00003C0000000 +1FF00001C00000001FF00001C00000001FF00001C00000001FF00001C00000001FF00001C0000E +001FF00001C0000E001FF00001C0000E001FF0000000001C001FF0000000001C001FF000000000 +1C001FF0000000001C001FF0000000001C001FF0000000003C001FF0000000003C001FF0000000 +0038001FF00000000038001FF00000000078001FF00000000078001FF000000000F8001FF00000 +0000F8001FF000000001F0001FF000000001F0001FF000000003F0001FF00000000FF0001FF000 +00001FF0003FF00000007FF0007FF8000007FFF0FFFFFFFFFFFFFFE0FFFFFFFFFFFFFFE0FFFFFF +FFFFFFFFE03F477DC646>69 D<FFFFFFFEFFFFFFFEFFFFFFFE007FFC00003FF800001FF000001F +F000001FF000001FF000001FF000001FF000001FF000001FF000001FF000001FF000001FF00000 +1FF000001FF000001FF000001FF000001FF000001FF000001FF000001FF000001FF000001FF000 +001FF000001FF000001FF000001FF000001FF000001FF000001FF000001FF000001FF000001FF0 +00001FF000001FF000001FF000001FF000001FF000001FF000001FF000001FF000001FF000001F +F000001FF000001FF000001FF000001FF000001FF000001FF000001FF000001FF000001FF00000 +1FF000001FF000001FF000001FF000001FF000001FF000001FF000001FF000001FF000001FF000 +001FF000003FF800007FFC00FFFFFFFEFFFFFFFEFFFFFFFE1F477DC625>73 +D<FFFFFFFFFFC00000FFFFFFFFFFFC0000FFFFFFFFFFFF0000007FF80001FFC000003FF000003F +F000001FF000000FF800001FF0000007FC00001FF0000003FE00001FF0000001FF00001FF00000 +01FF80001FF0000000FF80001FF0000000FFC0001FF0000000FFE0001FF00000007FE0001FF000 +00007FE0001FF00000007FF0001FF00000007FF0001FF00000007FF0001FF00000007FF0001FF0 +0000007FF0001FF00000007FF0001FF00000007FF0001FF00000007FF0001FF00000007FE0001F +F00000007FE0001FF0000000FFC0001FF0000000FFC0001FF0000000FF80001FF0000001FF8000 +1FF0000001FF00001FF0000003FE00001FF0000007FC00001FF000000FF800001FF000003FE000 +001FF00001FF8000001FFFFFFFFE0000001FFFFFFFF00000001FF00000000000001FF000000000 +00001FF00000000000001FF00000000000001FF00000000000001FF00000000000001FF0000000 +0000001FF00000000000001FF00000000000001FF00000000000001FF00000000000001FF00000 +000000001FF00000000000001FF00000000000001FF00000000000001FF00000000000001FF000 +00000000001FF00000000000001FF00000000000001FF00000000000001FF00000000000001FF0 +0000000000001FF00000000000001FF00000000000001FF00000000000001FF00000000000001F +F00000000000001FF00000000000001FF00000000000003FF80000000000007FFC0000000000FF +FFFFFE00000000FFFFFFFE00000000FFFFFFFE000000003C477DC646>80 +D<3FFFFFFFFFFFFFFF003FFFFFFFFFFFFFFF003FFFFFFFFFFFFFFF003FF8000FFE0007FF003FC0 +0007FC0000FF003F000007FC00003F007E000007FC00001F807C000007FC00000F807C000007FC +00000F8078000007FC0000078078000007FC0000078078000007FC0000078070000007FC000003 +8070000007FC0000038070000007FC0000038070000007FC0000038070000007FC00000380F000 +0007FC000003C0E0000007FC000001C0E0000007FC000001C0E0000007FC000001C0E0000007FC +000001C0E0000007FC000001C000000007FC0000000000000007FC0000000000000007FC000000 +0000000007FC0000000000000007FC0000000000000007FC0000000000000007FC000000000000 +0007FC0000000000000007FC0000000000000007FC0000000000000007FC0000000000000007FC +0000000000000007FC0000000000000007FC0000000000000007FC0000000000000007FC000000 +0000000007FC0000000000000007FC0000000000000007FC0000000000000007FC000000000000 +0007FC0000000000000007FC0000000000000007FC0000000000000007FC0000000000000007FC +0000000000000007FC0000000000000007FC0000000000000007FC0000000000000007FC000000 +0000000007FC0000000000000007FC0000000000000007FC0000000000000007FC000000000000 +0007FC0000000000000007FC0000000000000007FC0000000000000007FC0000000000000007FC +0000000000000007FC0000000000000007FC0000000000000007FC0000000000000007FC000000 +000000000FFE000000000000003FFF800000000003FFFFFFFFF800000003FFFFFFFFF800000003 +FFFFFFFFF8000042467CC54B>84 D<0003FE000000001FFFC00000007E03F0000000F000FC0000 +01C0007E00000380003F000007C0001F800007F0001FC0000FF0000FC0000FF8000FE0000FF800 +0FE0000FF80007F00007F00007F00007F00007F00001C00007F00000000007F00000000007F000 +00000007F00000000007F000000001FFF00000007FFFF0000003FF87F000001FF007F000007F80 +07F00001FE0007F00003F80007F00007F00007F0000FE00007F0001FC00007F0003FC00007F000 +3F800007F0007F800007F01C7F800007F01CFF000007F01CFF000007F01CFF000007F01CFF0000 +0FF01CFF00000FF01CFF00000FF01C7F80001BF01C7F800033F01C3FC00031F8381FC00061F838 +0FF001C0FC7003FC0780FFE000FFFE003FC0001FF8001F802E2F7CAD34>97 +D<00003FE0000001FFFE000007E01F80001F8003C0003E0000E0007C00007001F80000F803F800 +03F803F00003FC07F00007FC0FE00007FC1FE00007FC1FC00003F83FC00003F83FC00000E03FC0 +0000007FC00000007F800000007F80000000FF80000000FF80000000FF80000000FF80000000FF +80000000FF80000000FF80000000FF80000000FF80000000FF800000007F800000007F80000000 +7FC00000003FC00000003FC000000E1FC000000E1FE000000E0FE000001C0FF000001C07F00000 +3803F800003801F800007000FC0000E0007E0001C0001F800780000FE03E000001FFFC0000003F +E000272F7DAD2E>99 D<000000003FC0000000001FFFC0000000001FFFC0000000001FFFC00000 +0000007FC000000000003FC000000000001FC000000000001FC000000000001FC000000000001F +C000000000001FC000000000001FC000000000001FC000000000001FC000000000001FC0000000 +00001FC000000000001FC000000000001FC000000000001FC000000000001FC000000000001FC0 +00000000001FC000000000001FC000000000001FC000000000001FC000000000001FC000000000 +001FC00000001FE01FC0000001FFFC1FC0000007F01E1FC000001F80079FC000003F0001DFC000 +007C0000FFC00001F800007FC00003F800003FC00003F000003FC00007E000001FC0000FE00000 +1FC0001FE000001FC0001FC000001FC0003FC000001FC0003FC000001FC0007FC000001FC0007F +8000001FC0007F8000001FC000FF8000001FC000FF8000001FC000FF8000001FC000FF8000001F +C000FF8000001FC000FF8000001FC000FF8000001FC000FF8000001FC000FF8000001FC000FF80 +00001FC0007F8000001FC0007F8000001FC0007F8000001FC0003FC000001FC0003FC000001FC0 +001FC000001FC0001FC000001FC0000FE000001FC0000FE000003FC00007F000003FC00003F000 +007FC00001F80000FFC00000FC0001DFE000007E00039FF000001F000F1FFFC0000FE03E1FFFC0 +0003FFF81FFFC000003FC01FE00032497DC739>I<00007F80000003FFF000000FC0FC00003F00 +3F00007C001F8000F8000FC001F80007E003F00007E007E00003F00FE00003F80FE00003F81FC0 +0001FC1FC00001FC3FC00001FC3FC00001FC7F800001FE7F800000FE7F800000FEFF800000FEFF +800000FEFFFFFFFFFEFFFFFFFFFEFF80000000FF80000000FF80000000FF80000000FF80000000 +FF800000007F800000007F800000007F800000007FC00000003FC00000003FC000000E1FC00000 +0E1FE000000E0FE000001C07E000001C07F000003803F000007001F800007000FC0000E0003E00 +03C0001F8007000007E03E000001FFF80000003FC000272F7DAD2E>I<000007F00000003FFC00 +00007C0E000001F81F000003F03F800007E07FC0000FC07FC0000FC07FC0001F807FC0003F803F +80003F801F00003F000E00007F000000007F000000007F000000007F000000007F000000007F00 +0000007F000000007F000000007F000000007F000000007F000000007F000000007F000000007F +000000007F000000007F000000007F000000FFFFFFE000FFFFFFE000FFFFFFE000007F00000000 +7F000000007F000000007F000000007F000000007F000000007F000000007F000000007F000000 +007F000000007F000000007F000000007F000000007F000000007F000000007F000000007F0000 +00007F000000007F000000007F000000007F000000007F000000007F000000007F000000007F00 +0000007F000000007F000000007F000000007F000000007F000000007F000000007F000000007F +000000007F000000007F000000007F000000007F80000001FFC000007FFFFFC0007FFFFFC0007F +FFFFC00022497DC820>I<0001FF0003F0000FFFE01FFC001F83F07C3E007E00FDE07E00F8003F +807E01F8003F003C03F0001F801807F0001FC00007F0001FC0000FE0000FE0000FE0000FE0001F +E0000FF0001FE0000FF0001FE0000FF0001FE0000FF0001FE0000FF0001FE0000FF0001FE0000F +F0000FE0000FE0000FE0000FE00007F0001FC00007F0001FC00003F0001F800001F8003F000000 +F8003E000001FE00FC0000019F83F00000030FFFE000000301FF00000007000000000007000000 +000007000000000007000000000007000000000007000000000007800000000007C00000000007 +E00000000003FFFFFE000003FFFFFFE00001FFFFFFF80000FFFFFFFE00007FFFFFFF0001FFFFFF +FF8003E00001FFC00F8000003FE01F0000000FE03E00000003F03C00000001F07C00000001F878 +00000000F8F800000000F8F800000000F8F800000000F8F800000000F8F800000000F87C000000 +01F07C00000001F03E00000003E01E00000003C00F000000078007C000001F0003E000003E0000 +FC0001F800003F800FE000000FFFFF80000000FFF800002F437DAC34>I<01FE0000000000FFFE +0000000000FFFE0000000000FFFE000000000003FE000000000001FE000000000000FE00000000 +0000FE000000000000FE000000000000FE000000000000FE000000000000FE000000000000FE00 +0000000000FE000000000000FE000000000000FE000000000000FE000000000000FE0000000000 +00FE000000000000FE000000000000FE000000000000FE000000000000FE000000000000FE0000 +00000000FE000000000000FE000000000000FE000000000000FE007F80000000FE03FFF0000000 +FE0781F8000000FE0C007C000000FE18007E000000FE30003F000000FE60003F800000FEC0001F +800000FF80001F800000FF80001FC00000FF00001FC00000FF00001FC00000FF00001FC00000FE +00001FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC0 +0000FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE00 +001FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC000 +00FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE0000 +1FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC00003 +FF80007FF000FFFFFE1FFFFFC0FFFFFE1FFFFFC0FFFFFE1FFFFFC032487CC739>I<01F00003F8 +0007FC000FFE000FFE000FFE000FFE000FFE0007FC0003F80001F0000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000FE00FFFE00FFFE +00FFFE0003FE0001FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE +0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE +0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0003FF +00FFFFFCFFFFFCFFFFFC16467DC51C>I<01FE00FFFE00FFFE00FFFE0003FE0001FE0000FE0000 +FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000 +FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000 +FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000 +FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000 +FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0003FF80FFFFFEFFFFFEFFFFFE17 +487DC71C>108 D<01FC007FC00007FC0000FFFC01FFF8001FFF8000FFFC0780FC00780FC000FF +FC0E003E00E003E00003FC18003F018003F00001FC30001F830001F80000FC60001FC60001FC00 +00FCC0001FCC0001FC0000FD80000FD80000FC0000FD80000FF80000FE0000FF00000FF00000FE +0000FF00000FF00000FE0000FF00000FF00000FE0000FE00000FE00000FE0000FE00000FE00000 +FE0000FE00000FE00000FE0000FE00000FE00000FE0000FE00000FE00000FE0000FE00000FE000 +00FE0000FE00000FE00000FE0000FE00000FE00000FE0000FE00000FE00000FE0000FE00000FE0 +0000FE0000FE00000FE00000FE0000FE00000FE00000FE0000FE00000FE00000FE0000FE00000F +E00000FE0000FE00000FE00000FE0000FE00000FE00000FE0000FE00000FE00000FE0000FE0000 +0FE00000FE0000FE00000FE00000FE0000FE00000FE00000FE0000FE00000FE00000FE0000FE00 +000FE00000FE0000FE00000FE00000FE0000FE00000FE00000FE0000FE00000FE00000FE0000FE +00000FE00000FE0000FE00000FE00000FE0000FE00000FE00000FE0003FF80003FF80003FF80FF +FFFE0FFFFFE0FFFFFEFFFFFE0FFFFFE0FFFFFEFFFFFE0FFFFFE0FFFFFE4F2D7CAC56>I<01FC00 +7F800000FFFC03FFF00000FFFC0781F80000FFFC0C007C000003FC18007E000001FC30003F0000 +00FC60003F800000FCC0001F800000FD80001F800000FD80001FC00000FF00001FC00000FF0000 +1FC00000FF00001FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC00000 +FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE00001F +C00000FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE +00001FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC0 +0000FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE00 +001FC00000FE00001FC00003FF80007FF000FFFFFE1FFFFFC0FFFFFE1FFFFFC0FFFFFE1FFFFFC0 +322D7CAC39>I<00003FE000000001FFFC00000007E03F0000001F800FC000007E0003F00000FC +0001F80001F80000FC0003F000007E0007F000007F0007E000003F000FE000003F801FC000001F +C01FC000001FC03FC000001FE03FC000001FE03F8000000FE07F8000000FF07F8000000FF07F80 +00000FF0FF8000000FF8FF8000000FF8FF8000000FF8FF8000000FF8FF8000000FF8FF8000000F +F8FF8000000FF8FF8000000FF8FF8000000FF8FF8000000FF87F8000000FF07F8000000FF07F80 +00000FF03FC000001FE03FC000001FE03FC000001FE01FC000001FC00FE000003F800FE000003F +8007F000007F0003F000007E0001F80000FC0000FC0001F800007E0003F000001F800FC000000F +E03F80000003FFFE000000003FE000002D2F7DAD34>I<01FE00FF000000FFFE07FFF00000FFFE +1F01FC0000FFFE38007E000003FE70003F800001FEC0001FC00000FF80000FE00000FF800007F0 +0000FF000003F80000FE000003FC0000FE000001FC0000FE000001FE0000FE000001FE0000FE00 +0000FF0000FE000000FF0000FE000000FF8000FE000000FF8000FE0000007F8000FE0000007FC0 +00FE0000007FC000FE0000007FC000FE0000007FC000FE0000007FC000FE0000007FC000FE0000 +007FC000FE0000007FC000FE0000007FC000FE0000007FC000FE0000007F8000FE000000FF8000 +FE000000FF8000FE000000FF0000FE000000FF0000FE000001FE0000FE000001FE0000FE000003 +FC0000FE000003F80000FF000007F00000FF800007F00000FF80000FE00000FFC0001F800000FE +E0003F000000FE7800FE000000FE1E03F8000000FE0FFFE0000000FE01FE00000000FE00000000 +0000FE000000000000FE000000000000FE000000000000FE000000000000FE000000000000FE00 +0000000000FE000000000000FE000000000000FE000000000000FE000000000000FE0000000000 +00FE000000000000FE000000000000FE000000000003FF8000000000FFFFFE00000000FFFFFE00 +000000FFFFFE0000000032417DAC39>I<01FC01F800FFFC07FE00FFFC1E1F00FFFC383F8003FC +607FC001FC607FC000FCC07FC000FCC07FC000FD803F8000FD801F0000FF000E0000FF00000000 +FF00000000FF00000000FE00000000FE00000000FE00000000FE00000000FE00000000FE000000 +00FE00000000FE00000000FE00000000FE00000000FE00000000FE00000000FE00000000FE0000 +0000FE00000000FE00000000FE00000000FE00000000FE00000000FE00000000FE00000000FE00 +000000FE00000000FE00000000FE00000000FE00000000FF00000003FF800000FFFFFF8000FFFF +FF8000FFFFFF8000222D7DAC28>114 D<001FF8060000FFFF0E0003F0079E00078001FE000E00 +007E001C00003E003C00003E007800001E007800001E00F800001E00F800000E00F800000E00FC +00000E00FC00000E00FE00000E00FF000000007FC00000007FF80000003FFFE000001FFFFE0000 +0FFFFF800007FFFFE00003FFFFF00000FFFFFC00001FFFFE000001FFFE0000000FFF00000001FF +800000007F806000001FC0E000001FC0E000000FC0F000000FC0F0000007C0F0000007C0F00000 +07C0F8000007C0F800000780FC00000780FC00000F00FE00000F00FF00001E00FF80003C00F9E0 +007800F0F803E000E03FFFC000C007FC0000222F7DAD29>I<0007000000070000000700000007 +00000007000000070000000F0000000F0000000F0000000F0000000F0000001F0000001F000000 +3F0000003F0000007F0000007F000000FF000001FF000007FF00001FFFFFFCFFFFFFFCFFFFFFFC +007F0000007F0000007F0000007F0000007F0000007F0000007F0000007F0000007F0000007F00 +00007F0000007F0000007F0000007F0000007F0000007F0000007F0000007F0000007F0000007F +0000007F0000007F0000007F000E007F000E007F000E007F000E007F000E007F000E007F000E00 +7F000E007F000E007F000E007F000E003F000C003F801C001F801C001F8018000FC0380007C030 +0003F0E00001FFC000003F801F417EBF28>I<01FE00003FC000FFFE001FFFC000FFFE001FFFC0 +00FFFE001FFFC00003FE00007FC00001FE00003FC00000FE00001FC00000FE00001FC00000FE00 +001FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC000 +00FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE0000 +1FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC00000 +FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE00001FC00000FE00001F +C00000FE00001FC00000FE00001FC00000FE00003FC00000FE00003FC00000FE00003FC00000FE +00007FC000007E00007FC000007E00007FC000003F0000DFC000003F00019FE000001F00031FF0 +00000F80061FFFC00007F01C1FFFC00001FFF81FFFC000003FE01FE000322E7CAC39>I<FFFFF8 +007FFFC0FFFFF8007FFFC0FFFFF8007FFFC003FF80001FFE0001FE000007F80000FE000003E000 +00FE000003C00000FF000003C000007F0000038000007F0000038000003F8000070000003F8000 +070000003FC0000F0000001FC0000E0000001FC0000E0000000FE0001C0000000FE0001C000000 +0FF0003C00000007F0003800000007F0003800000003F8007000000003F8007000000003FC00F0 +00000001FC00E000000001FC00E000000000FE01C000000000FE01C000000000FF03C000000000 +7F0380000000007F0380000000003F8700000000003F8700000000003FCF00000000001FCE0000 +0000001FCE00000000000FFC00000000000FFC00000000000FFC000000000007F8000000000007 +F8000000000003F0000000000003F0000000000003F0000000000001E0000000000001E0000000 +322D7EAB37>I E /Fw 38 122 df<78FCFCFCFC7806067B8511>46 D<007F000001C1C0000780 +F0000F0078000E0038001C001C003C001E003C001E003C001E0078000F0078000F0078000F0078 +000F00F8000F80F8000F80F8000F80F8000F80F8000F80F8000F80F8000F80F8000F80F8000F80 +F8000F80F8000F80F8000F80F8000F80F8000F80F8000F8078000F0078000F0078000F0078000F +003C001E003C001E003C001E001C001C000E0038000F0078000780F00001C1C000007F00001929 +7EA71E>48 D<00100000700001F0000FF000FEF000F0F00000F00000F00000F00000F00000F000 +00F00000F00000F00000F00000F00000F00000F00000F00000F00000F00000F00000F00000F000 +00F00000F00000F00000F00000F00000F00000F00000F00000F00000F00000F00000F00000F000 +01F8007FFFE07FFFE013287BA71E>I<007F000001FFC00007C1E0000F0070001E0038001C003C +003C001C0078001E0078001E00F8000F00F8000F00F8000F00F8000F00F8000F80F8000F80F800 +0F80F8000F8078000F8078001F803C001F803C001F801C002F800E004F800700CF8003810F8000 +7E0F8000000F0000000F0000000F0000001E0000001E0000001E0000003C001C003C003E007800 +3E0070003C00E0001801C0001C0780000FFE000003F8000019297EA71E>57 +D<00001800000000180000000018000000003C000000003C000000003C000000007E000000007E +00000000FF000000009F000000009F000000011F800000010F800000010F8000000207C0000002 +07C000000207C000000403E000000403E000000403E000000801F000000801F000001801F80000 +1000F800001000F800002000FC000020007C00003FFFFC00007FFFFE000040003E000040003E00 +0080001F000080001F000080001F000100000F800100000F800100000F8002000007C007000007 +C01F80000FE0FFF000FFFFFFF000FFFF282A7EA92D>65 D<FFFFFF8000FFFFFFF00007E000FC00 +03E0007E0003E0003F0003E0001F8003E0000F8003E0000F8003E0000FC003E0000FC003E0000F +C003E0000FC003E0000FC003E0000F8003E0001F8003E0001F0003E0003E0003E0007C0003E001 +F80003FFFFE00003E000F80003E0003E0003E0001F0003E0000F8003E00007C003E00007E003E0 +0003E003E00003F003E00003F003E00003F003E00003F003E00003F003E00003F003E00007E003 +E00007E003E0000FC003E0001F8003E0003F0007E000FE00FFFFFFF800FFFFFFE00024297EA82A +>I<0000FF00100007FFE030001FC07830003E000C7000F80006F001F00003F003E00001F007C0 +0000F00F800000700F800000701F000000303F000000303E000000303E000000107E000000107E +000000107C00000000FC00000000FC00000000FC00000000FC00000000FC00000000FC00000000 +FC00000000FC00000000FC000000007C000000007E000000007E000000103E000000103E000000 +103F000000101F000000200F800000200F8000006007C000004003E000008001F000018000F800 +0300003E000E00001FC038000007FFE0000000FF8000242B7DA92B>I<FFFFFFFF80FFFFFFFF80 +07E0001F8003E000078003E00001C003E00000C003E00000C003E000004003E000004003E00000 +4003E000004003E000002003E001002003E001002003E001000003E001000003E003000003E003 +000003E00F000003FFFF000003FFFF000003E00F000003E003000003E003000003E001000003E0 +01001003E001001003E001001003E000001003E000002003E000002003E000002003E000002003 +E000006003E000006003E00000E003E00001E003E00003C007E0001FC0FFFFFFFFC0FFFFFFFFC0 +24297EA829>69 D<FFFFFFFF00FFFFFFFF0007E0003F0003E000070003E000038003E000018003 +E000018003E000008003E000008003E000008003E000008003E000004003E002004003E0020040 +03E002000003E002000003E002000003E006000003E00E000003FFFE000003FFFE000003E00E00 +0003E006000003E002000003E002000003E002000003E002000003E002000003E000000003E000 +000003E000000003E000000003E000000003E000000003E000000003E000000003E000000003E0 +00000007F0000000FFFFE00000FFFFE0000022297EA827>I<FFFF81FFFFFFFF81FFFF07F0000F +E003E00007C003E00007C003E00007C003E00007C003E00007C003E00007C003E00007C003E000 +07C003E00007C003E00007C003E00007C003E00007C003E00007C003E00007C003E00007C003E0 +0007C003FFFFFFC003FFFFFFC003E00007C003E00007C003E00007C003E00007C003E00007C003 +E00007C003E00007C003E00007C003E00007C003E00007C003E00007C003E00007C003E00007C0 +03E00007C003E00007C003E00007C003E00007C007F0000FE0FFFF81FFFFFFFF81FFFF28297EA8 +2D>72 D<FFFF80FFFF8007F00003E00003E00003E00003E00003E00003E00003E00003E00003E0 +0003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E0 +0003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E0 +0007F000FFFF80FFFF8011297EA816>I<03FFFF03FFFF0007E00003E00003E00003E00003E000 +03E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E000 +03E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E03003E07803E0FC +03E0FC03E0FC03C0F807C0400780200F00300E000C3C0003F000182A7DA81F>I<FFFFE000FFFF +E00007F0000003E0000003E0000003E0000003E0000003E0000003E0000003E0000003E0000003 +E0000003E0000003E0000003E0000003E0000003E0000003E0000003E0000003E0000003E00000 +03E0000003E0000003E0000003E0000003E0000103E0000103E0000103E0000103E0000203E000 +0203E0000203E0000203E0000603E0000603E0000E03E0001E03E0007C07E001FCFFFFFFFCFFFF +FFFC20297EA825>76 D<FFE0000003FFC0FFE0000003FFC007E0000003F80002F0000005F00002 +F0000005F0000278000009F0000278000009F0000278000009F000023C000011F000023C000011 +F000021E000021F000021E000021F000021E000021F000020F000041F000020F000041F0000207 +800081F0000207800081F0000207800081F0000203C00101F0000203C00101F0000203E00201F0 +000201E00201F0000201E00201F0000200F00401F0000200F00401F0000200F00401F000020078 +0801F0000200780801F00002003C1001F00002003C1001F00002003C1001F00002001E2001F000 +02001E2001F00002000F4001F00002000F4001F00002000F4001F0000200078001F00007000780 +01F0000F80030003F800FFF803007FFFC0FFF803007FFFC032297EA837>I<FFE0001FFFFFF000 +1FFF03F80001F002F80000E0027C000040027E000040023E000040021F000040021F800040020F +8000400207C000400207E000400203E000400201F000400201F800400200F8004002007C004002 +007E004002003E004002001F004002001F804002000F8040020007C040020003E040020003E040 +020001F040020000F840020000F8400200007C400200003E400200003E400200001F400200000F +C00200000FC002000007C002000003C002000003C007000001C00F800000C0FFF80000C0FFF800 +004028297EA82D>I<0001FF0000000F01E000003C0078000078003C0000E0000E0001E0000F00 +03C000078007800003C00F800003E01F000001F01F000001F03E000000F83E000000F87E000000 +FC7E000000FC7C0000007C7C0000007CFC0000007EFC0000007EFC0000007EFC0000007EFC0000 +007EFC0000007EFC0000007EFC0000007EFC0000007E7C0000007C7E000000FC7E000000FC7E00 +0000FC3E000000F83F000001F81F000001F01F000001F00F800003E007800003C007C00007C003 +E0000F8000F0001E000078003C00003C007800000F01E0000001FF0000272B7DA92E>I<FFFFFF +8000FFFFFFF00007E000FC0003E0003E0003E0001F0003E0000F8003E0000FC003E00007C003E0 +0007E003E00007E003E00007E003E00007E003E00007E003E00007E003E00007C003E0000FC003 +E0000F8003E0001F0003E0003E0003E001F80003FFFFE00003E000000003E000000003E0000000 +03E000000003E000000003E000000003E000000003E000000003E000000003E000000003E00000 +0003E000000003E000000003E000000003E000000003E000000003E000000007F0000000FFFF80 +0000FFFF80000023297EA829>I<FFFFFE000000FFFFFFC0000007E003F0000003E000FC000003 +E0003E000003E0001F000003E0001F800003E0000F800003E0000FC00003E0000FC00003E0000F +C00003E0000FC00003E0000FC00003E0000FC00003E0000F800003E0001F000003E0001E000003 +E0003C000003E000F8000003E003E0000003FFFE00000003E00780000003E001E0000003E000F0 +000003E00078000003E0007C000003E0003C000003E0003E000003E0003E000003E0003E000003 +E0003E000003E0003F000003E0003F000003E0003F000003E0003F000003E0003F008003E0003F +808003E0001F808007F0000F8100FFFF8007C100FFFF8003C20000000000FC00292A7EA82C>82 +D<00FE010003FF83000F81E3001E0037003C001F0038000F007800070070000700F0000300F000 +0300F0000300F0000100F8000100F8000100FC0000007C0000007F0000003FE000001FFF00000F +FFE00007FFF80003FFFC00007FFE000007FF0000007F0000001F8000000F80000007C0000007C0 +800003C0800003C0800003C0800003C0C00003C0C0000380C0000380E0000780F0000700F8000E +00EE001C00C3C07800C1FFF000803FC0001A2B7DA921>I<7FFFFFFFF87FFFFFFFF87C007C00F8 +70007C003860007C001840007C000840007C0008C0007C000CC0007C000C80007C000480007C00 +0480007C000480007C000480007C000400007C000000007C000000007C000000007C000000007C +000000007C000000007C000000007C000000007C000000007C000000007C000000007C00000000 +7C000000007C000000007C000000007C000000007C000000007C000000007C000000007C000000 +007C000000007C000000007C000000007C00000000FE000000FFFFFE0000FFFFFE0026297EA82B +>I<FFFF801FFFFFFF801FFF07F00001F003E00000E003E000004003E000004003E000004003E0 +00004003E000004003E000004003E000004003E000004003E000004003E000004003E000004003 +E000004003E000004003E000004003E000004003E000004003E000004003E000004003E0000040 +03E000004003E000004003E000004003E000004003E000004003E000004003E000004003E00000 +4001E000008001F000008001F000008000F000010000780003000078000200003C000C00001F00 +18000007C070000001FFE00000007F0000282A7EA82D>I<01FC00000E0780001001C0003C00E0 +003E00F0003E0078001C00780008007800000078000000780000007800007FF80003E078000F80 +78001F0078003E0078007C00780078007820F8007820F8007820F8007820F800F8207C00F8203C +013C401F063FC007F80F001B1A7E991E>97 D<007F8001C0700780080F003C1E007C3C007C3C00 +387C0010780000F80000F80000F80000F80000F80000F80000F80000F800007800007C00003C00 +043C00041E00080F001007802001C0C0007F00161A7E991B>99 D<007E0003C3800700E00E00F0 +1C00703C00783C003878003C78003CF8003CF8003CFFFFFCF80000F80000F80000F80000F80000 +7800007C00003C00043C00041E00080E001007002001C0C0007F00161A7E991B>101 +D<001F000070C000E1E001C3E003C3E00381C00780800780000780000780000780000780000780 +00078000078000078000FFFE00FFFE000780000780000780000780000780000780000780000780 +000780000780000780000780000780000780000780000780000780000780000780000780000780 +0007C000FFFE00FFFE00132A7FA912>I<07800000FF800000FF8000000F800000078000000780 +000007800000078000000780000007800000078000000780000007800000078000000780000007 +8000000783F800078C1C0007900E0007A0070007A0078007C0078007C007800780078007800780 +078007800780078007800780078007800780078007800780078007800780078007800780078007 +800780078007800780078007800780078007800780FFFCFFFCFFFCFFFC1E2A7FA921>104 +D<07000F801F801F800F80070000000000000000000000000000000000000007807F807F800F80 +078007800780078007800780078007800780078007800780078007800780078007800780078007 +80FFF8FFF80D297FA811>I<007800FC00FC00FC00FC0078000000000000000000000000000000 +000000007C07FC07FC007C003C003C003C003C003C003C003C003C003C003C003C003C003C003C +003C003C003C003C003C003C003C003C003C003C003C003C003C003C7038F838F870F07060C01F +800E3582A812>I<07800000FF800000FF8000000F800000078000000780000007800000078000 +00078000000780000007800000078000000780000007800000078000000780000007807FF00780 +7FF007801F8007801C000780180007802000078040000780800007810000078200000787000007 +9F800007A7800007C7C0000783E0000781E0000781F0000780F8000780780007807C0007803E00 +07801E0007801F0007801F80FFFC7FF8FFFC7FF81D2A7FA920>I<0780FF80FF800F8007800780 +078007800780078007800780078007800780078007800780078007800780078007800780078007 +8007800780078007800780078007800780078007800780078007800780FFFCFFFC0E2A7FA911> +I<0781F800FC00FF860E030700FF98070C03800FA0079003C007A003D001E007C003E001E007C0 +03E001E0078003C001E0078003C001E0078003C001E0078003C001E0078003C001E0078003C001 +E0078003C001E0078003C001E0078003C001E0078003C001E0078003C001E0078003C001E00780 +03C001E0078003C001E0078003C001E0078003C001E0078003C001E0FFFC7FFE3FFFFFFC7FFE3F +FF301A7F9933>I<0783F800FF8C1C00FF900E000FA0070007A0078007C0078007C00780078007 +800780078007800780078007800780078007800780078007800780078007800780078007800780 +0780078007800780078007800780078007800780078007800780FFFCFFFCFFFCFFFC1E1A7F9921 +>I<007F000001C1C000070070000E0038001C001C003C001E003C001E0078000F0078000F00F8 +000F80F8000F80F8000F80F8000F80F8000F80F8000F80F8000F80F8000F8078000F0078000F00 +3C001E003C001E001E003C000E0038000700700001C1C000007F0000191A7E991E>I<0783F000 +FF8C1C00FFB00F0007A0078007C003C0078003E0078001E0078001F0078001F0078000F8078000 +F8078000F8078000F8078000F8078000F8078000F8078000F0078001F0078001F0078001E00780 +03C007C003C007C0078007A00E0007983C000787E0000780000007800000078000000780000007 +8000000780000007800000078000000780000007800000FFFC0000FFFC00001D267F9921>I<07 +87C0FF98E0FF91F00FA1F007C1F007C0E007C00007800007800007800007800007800007800007 +800007800007800007800007800007800007800007800007800007800007C000FFFE00FFFE0014 +1A7F9917>114 D<07F8401C06C03001C06000C06000C0E00040E00040F00040F800007E00007F +F0003FFE000FFF0003FF80003FC00007C08001E08001E0C000E0C000E0C000E0E000C0F001C0F8 +0180C4070083F800131A7E9918>I<008000008000008000008000018000018000018000038000 +0380000780000F80001FFF80FFFF80078000078000078000078000078000078000078000078000 +07800007800007800007800007800007804007804007804007804007804007804007804003C080 +01C08000E100003E0012257FA417>I<FFF00FF8FFF00FF80F8003C0078003800780010003C002 +0003C0020003E0020001E0040001E0040000F0080000F0080000F818000078100000781000003C +2000003C2000003E6000001E4000001E4000000F8000000F800000070000000700000007000000 +020000000200000004000000040000000400000008000070080000F8100000F8100000F8200000 +F0400000608000001F0000001D267F9920>121 D E /Fx 13 90 df<0000030000000000030000 +0000000300000000000780000000000780000000000FC0000000000FC0000000000FC000000000 +17E00000000013E00000000013E00000000023F00000000021F00000000021F00000000040F800 +00000040F80000000040F800000000807C00000000807C00000001807E00000001003E00000001 +003E00000002003F00000002001F00000002001F00000004000F80000004000F80000004000F80 +0000080007C00000080007C00000180007E000001FFFFFE000001FFFFFE00000200003F0000020 +0001F00000200001F00000400001F80000400000F80000400000F800008000007C00008000007C +00008000007C00010000003E00010000003E00030000003F00030000001F00070000001F001F80 +00003F80FFE00003FFFCFFE00003FFFC2E327EB132>65 D<00003FE0010001FFF8030007F01E03 +001F800307003E000087007800004F00F000002F01E000001F03C000000F078000000F0F800000 +070F000000071F000000031E000000033E000000033C000000017C000000017C000000017C0000 +00017800000000F800000000F800000000F800000000F800000000F800000000F800000000F800 +000000F800000000F800000000F800000000F80000000078000000007C000000007C000000017C +000000013C000000013E000000011E000000011F000000020F000000020F800000060780000004 +03C000000801E000000800F00000100078000020003E0000C0001F8003800007F00F000001FFFC +0000003FE00028337CB130>67 D<FFFFFFE00000FFFFFFFC000007E0007F000003E0000F800003 +E00003C00003E00001E00003E00000F00003E00000780003E000003C0003E000001E0003E00000 +1E0003E000000F0003E000000F0003E000000F8003E00000078003E0000007C003E0000007C003 +E0000003C003E0000003C003E0000003E003E0000003E003E0000003E003E0000003E003E00000 +03E003E0000003E003E0000003E003E0000003E003E0000003E003E0000003E003E0000003E003 +E0000003C003E0000003C003E0000007C003E0000007C003E00000078003E00000078003E00000 +0F8003E000000F0003E000001F0003E000001E0003E000003C0003E00000780003E00000F80003 +E00001F00003E00003E00003E0000F800007E0003F0000FFFFFFFC0000FFFFFFE000002B317CB0 +33>I<FFFFFFFFE0FFFFFFFFE007E0000FE003E00001E003E00000F003E000007003E000003003 +E000003003E000001003E000001003E000001003E000001003E000000803E000000803E0000008 +03E000800803E000800003E000800003E000800003E000800003E001800003E001800003E00780 +0003FFFF800003FFFF800003E007800003E001800003E001800003E000800003E000800003E000 +800003E000800203E000800203E000000203E000000403E000000403E000000403E000000403E0 +00000C03E000000C03E000000803E000001803E000001803E000003803E000007803E00001F807 +E0000FF0FFFFFFFFF0FFFFFFFFF027317CB02D>I<FFFFFFFFC0FFFFFFFFC007E0001FC003E000 +03C003E00001E003E00000E003E000006003E000006003E000002003E000002003E000002003E0 +00002003E000001003E000001003E000001003E000801003E000800003E000800003E000800003 +E000800003E001800003E001800003E007800003FFFF800003FFFF800003E007800003E0018000 +03E001800003E000800003E000800003E000800003E000800003E000800003E000000003E00000 +0003E000000003E000000003E000000003E000000003E000000003E000000003E000000003E000 +000003E000000003E000000003E000000007F0000000FFFFC00000FFFFC0000024317CB02B>I< +FFFF807FFFC0FFFF807FFFC007F00003F80003E00001F00003E00001F00003E00001F00003E000 +01F00003E00001F00003E00001F00003E00001F00003E00001F00003E00001F00003E00001F000 +03E00001F00003E00001F00003E00001F00003E00001F00003E00001F00003E00001F00003E000 +01F00003E00001F00003E00001F00003E00001F00003FFFFFFF00003FFFFFFF00003E00001F000 +03E00001F00003E00001F00003E00001F00003E00001F00003E00001F00003E00001F00003E000 +01F00003E00001F00003E00001F00003E00001F00003E00001F00003E00001F00003E00001F000 +03E00001F00003E00001F00003E00001F00003E00001F00003E00001F00003E00001F00003E000 +01F00007F00003F800FFFF807FFFC0FFFF807FFFC02A317CB032>72 D<FFFF80FFFF8007F00003 +E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003 +E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003 +E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003 +E00003E00003E00003E00007F000FFFF80FFFF8011317DB017>I<FFFFC00000FFFFC0000007F0 +00000003E000000003E000000003E000000003E000000003E000000003E000000003E000000003 +E000000003E000000003E000000003E000000003E000000003E000000003E000000003E0000000 +03E000000003E000000003E000000003E000000003E000000003E000000003E000000003E00000 +0003E000000003E000000003E000000003E000000003E000000003E000004003E000004003E000 +004003E000004003E000008003E000008003E000008003E000008003E000018003E000018003E0 +00038003E000038003E000078003E0000F0003E0003F0007E000FF00FFFFFFFF00FFFFFFFF0022 +317CB029>76 D<FFE00007FFC0FFF00007FFC003F000007C0002F80000380002FC00001000027C +00001000023E00001000023E00001000021F00001000021F80001000020F800010000207C00010 +000207E00010000203E00010000203F00010000201F00010000200F80010000200FC0010000200 +7C00100002007E00100002003E00100002001F00100002001F80100002000F80100002000FC010 +00020007C01000020003E01000020003F01000020001F01000020000F81000020000F810000200 +007C10000200007E10000200003E10000200001F10000200001F10000200000F90000200000FD0 +0002000007D00002000003F00002000003F00002000001F00002000001F00002000000F0000200 +000070000700000070000F8000003000FFF800003000FFF8000010002A317CB032>78 +D<00003FC000000001C03800000007000E0000001C0003800000380001C00000F00000F00001E0 +0000780003C000003C00038000001C00078000001E000F0000000F000F0000000F001E00000007 +801E00000007803C00000003C03C00000003C07C00000003E07C00000003E07800000001E07800 +000001E0F800000001F0F800000001F0F800000001F0F800000001F0F800000001F0F800000001 +F0F800000001F0F800000001F0F800000001F0F800000001F0F800000001F07C00000003E07C00 +000003E07C00000003E07C00000003E03C00000003C03E00000007C01E00000007801E00000007 +800F0000000F000F0000000F00078000001E0003C000003C0003C000003C0001E00000780000F0 +0000F00000380001C000001C000380000007000E00000001E078000000003FC000002C337CB134 +>I<FFFFFFC000FFFFFFF80007E0007E0003E0001F0003E000078003E00003C003E00001E003E0 +0001F003E00001F003E00000F003E00000F803E00000F803E00000F803E00000F803E00000F803 +E00000F803E00000F003E00001F003E00001E003E00003E003E00003C003E000078003E0001F00 +03E0007C0003FFFFF00003E000000003E000000003E000000003E000000003E000000003E00000 +0003E000000003E000000003E000000003E000000003E000000003E000000003E000000003E000 +000003E000000003E000000003E000000003E000000003E000000003E000000003E000000007F0 +000000FFFF800000FFFF80000025317CB02D>I<7FFFFFFFFFE07FFFFFFFFFE07E000F8007E078 +000F8001E070000F8000E060000F80006040000F80002040000F800020C0000F800030C0000F80 +003080000F80001080000F80001080000F80001080000F80001080000F80001080000F80001000 +000F80000000000F80000000000F80000000000F80000000000F80000000000F80000000000F80 +000000000F80000000000F80000000000F80000000000F80000000000F80000000000F80000000 +000F80000000000F80000000000F80000000000F80000000000F80000000000F80000000000F80 +000000000F80000000000F80000000000F80000000000F80000000000F80000000000F80000000 +000F80000000000F80000000000F80000000000F80000000001FC00000000FFFFF8000000FFFFF +80002C317EB030>84 D<FFFE000007FFFFFE000007FF0FF0000001F803F0000000E003F0000000 +C001F80000008000F80000018000FC00000100007E00000200007E00000200003F00000400001F +80000C00001F80000800000FC00010000007C00010000007E00020000003F00060000001F00040 +000001F80080000000FC0080000000FC01000000007E03000000003E02000000003F0400000000 +1F84000000000F88000000000FD80000000007F00000000007E00000000003E00000000003E000 +00000003E00000000003E00000000003E00000000003E00000000003E00000000003E000000000 +03E00000000003E00000000003E00000000003E00000000003E00000000003E00000000003E000 +00000003E00000000003E00000000007F000000000FFFF80000000FFFF800030317FB032>89 +D E end +%%EndProlog +%%BeginSetup +%%Feature: *Resolution 300dpi +TeXDict begin +%%PaperSize: A4 + +%%EndSetup +%%Page: 1 1 +1 0 bop 465 315 a Fx(THE)21 b(HA)-6 b(TFIELD)22 b(POL)-6 b(YTECHNIC)578 +531 y Fw(Sc)n(ho)r(ol)19 b(of)h(Information)f(Sciences)378 +807 y(BA)n(CHELOR)i(OF)g(SCIENCE)e(IN)g(COMPUTER)844 882 y(SCIENCE)781 +1158 y(Pro)s(ject)h(Rep)r(ort)629 1425 y Fv(In)m(v)m(estigation)35 +b(of)457 1549 y(T)-9 b(actical)35 b(and)g(P)m(ositional)283 +1674 y(Ev)-6 b(aluation)36 b(in)g(Computer)f(Chess)761 1949 +y Fw(Mark)20 b(J.)f(Uniac)n(k)n(e)851 2343 y(Ma)n(y)g(1990)p +eop +%%Page: 0 2 +0 1 bop 870 627 a Fu(Abstract)262 762 y Ft(This)25 b(rep)q(ort)g(examines)e +(and)j(describ)q(es)f(v)m(arious)h(tec)o(hniques)d(curren)o(tly)262 +820 y(used)16 b(to)h(program)f(a)g(computer)f(to)i(pla)o(y)e(c)o(hess.)324 +914 y(New)k(w)o(a)o(ys)h(of)g(impro)o(ving)e(b)q(oth)j(p)q(ositional)f(and)g +(tactical)f(abilit)o(y)g(are)262 972 y(in)o(v)o(estigated.)324 +1066 y(An)g(ev)m(aluation)g(function)g(is)g(dev)o(elop)q(ed)f(after)h +(analysing)h(ho)o(w)g(strong)262 1124 y(c)o(hess)15 b(pla)o(y)o(ers)g(select) +g(mo)o(v)o(es.)k(The)d(ev)m(aluation)g(function)f(criteria)g(are)h(for-)262 +1182 y(mally)e(de\014ned)i(and)g(co)o(v)o(er)f(b)q(oth)j(p)q(ositional)e(and) +h(tactical)f(asp)q(ects.)324 1275 y(V)l(arious)c(searc)o(h)f(extension)h +(heuristics)e(are)i(in)o(v)o(estigated)f(and)h(a)g(metho)q(d)262 +1334 y(of)23 b(encorp)q(orating)i(these)e(selectiv)o(e)e(extensions)i(in)o +(to)g(an)h(aspiration)g Fs(\013\014)262 1392 y Ft(searc)o(h)15 +b(is)i(dev)o(elop)q(ed.)324 1485 y(The)j(concept)g(of)h(uncertain)o(t)o(y)d +(is)i(encorp)q(orated)i(in)o(to)d(the)i(ev)m(aluation)262 1543 +y(function)11 b(and)i(a)g(close)e(connection)h(b)q(et)o(w)o(een)f(static)h +(ev)m(aluation)g(and)h(searc)o(h)262 1601 y(decision)i(making)g(is)h(sho)o +(wn)h(to)g(b)q(e)f(e\013ectiv)o(e.)324 1695 y(The)e(ideas)g(dev)o(elop)q(ed)f +(are)h(com)o(bined)e(in)o(to)i(a)g(c)o(hess)g(program)g(encorp)q(o-)262 +1753 y(rating)k(man)o(y)f(state)h(of)h(the)e(art)i(tec)o(hniques.)25 +b(The)18 b(program)g(is)g(sho)o(wn)h(to)262 1811 y(p)q(erform)10 +b(at)i(the)g(exp)q(ert)f(lev)o(el)f(of)i(abilit)o(y)e(b)q(oth)j(tactically)d +(and)i(p)q(ositionally)l(.)324 1905 y(The)23 b(trade)g(o\013)h(b)q(et)o(w)o +(een)e(kno)o(wledge)g(and)i(searc)o(h)e(is)h(examined)e(and)262 +1963 y(conclusions)d(ab)q(out)i(the)f(e\013ectiv)o(eness)e(of)i(reducing)g +(searc)o(h)f(e\013ort)h(b)o(y)g(in-)262 2021 y(creasing)d(kno)o(wledge)g(con) +o(ten)o(t)f(are)h(dra)o(wn.)p eop +%%Page: 1 3 +1 2 bop 692 1168 a Fr(Ac)n(kno)n(wledgemen)n(ts)262 1303 y +Ft(I)10 b(w)o(ould)h(lik)o(e)e(to)i(thank)g(m)o(y)e(pro)s(ject)i(sup)q +(ervisor,)h(Neil)d(Da)o(v)o(ey)l(,)h(for)h(the)g(man)o(y)262 +1361 y(in)o(teresting)17 b(discussions)h(throughout)i(the)e(y)o(ear)g(and)h +(Piet)e(T)l(utelaers,)h(for)262 1419 y(designing)e(c)o(hess)g(fon)o(ts)g +(whic)o(h)g(can)g(b)q(e)h(used)f(in)g(L)1195 1413 y Fq(a)1219 +1419 y Ft(T)1246 1434 y(E)1273 1419 y(X)g(do)q(cumen)o(ts.)967 +2574 y Fp(1)p eop +%%Page: 2 4 +2 3 bop 262 639 a Fo(Con)m(ten)m(ts)262 912 y Fu(1)45 b(In)n(tro)r(duction) +1022 b(7)335 970 y Ft(1.1)50 b(A)16 b(Brief)f(History)34 b +Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h +(:)f(:)g(:)74 b Ft(8)335 1028 y(1.2)50 b(My)16 b(Bac)o(kground)24 +b Fs(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h +(:)f(:)g(:)50 b Ft(10)335 1087 y(1.3)g(Aims)14 b(of)j(the)f(Pro)s(ject)j +Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g +(:)50 b Ft(10)262 1193 y Fu(2)45 b(Basic)18 b(Ov)n(erview)924 +b(11)335 1252 y Ft(2.1)50 b(Mac)o(hine)15 b(Represen)o(tation)43 +b Fs(:)24 b(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 +b Ft(11)335 1310 y(2.2)g(Mo)o(v)o(e)15 b(Generation)38 b Fs(:)24 +b(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:) +50 b Ft(13)335 1368 y(2.3)g(Ev)m(aluation)17 b(F)l(unctions)28 +b Fs(:)c(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 +b Ft(14)335 1426 y(2.4)g(Lo)q(ok)17 b(Ahead)29 b Fs(:)c(:)f(:)h(:)f(:)h(:)f +(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 +b Ft(15)335 1484 y(2.5)g(Selectiv)o(e)13 b(Searc)o(hing)37 +b Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f +(:)g(:)50 b Ft(17)335 1542 y(2.6)g(F)l(ull)15 b(Width)h(Searc)o(hing)25 +b Fs(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 +b Ft(19)335 1600 y(2.7)g(Quiescence)15 b Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:) +h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 +b Ft(20)335 1658 y(2.8)g(Horizon)16 b(E\013ect)k Fs(:)k(:)h(:)f(:)h(:)f(:)h +(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 +b Ft(20)262 1765 y Fu(3)45 b(Adv)m(anced)18 b(T)-5 b(opics)889 +b(22)335 1823 y Ft(3.1)50 b(T)l(ree)16 b(Searc)o(hing)c Fs(:)24 +b(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f +(:)g(:)50 b Ft(22)447 1881 y(3.1.1)56 b(Alpha)16 b(Beta)g(Searc)o(h)g +(Algorithm)34 b Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 +b Ft(22)447 1940 y(3.1.2)56 b(Aspiration)16 b Fs(\013\014)j +Ft(Searc)o(h)i Fs(:)j(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 +b Ft(25)447 1998 y(3.1.3)56 b(Principle)15 b(V)l(ariation)h +Fs(\013\014)i Ft(Searc)o(h)33 b Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 +b Ft(25)447 2056 y(3.1.4)56 b(Iterativ)o(e)14 b(Deep)q(ening)21 +b Fs(:)k(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 +b Ft(28)447 2114 y(3.1.5)56 b(Mo)o(v)o(e)15 b(Ordering)43 b +Fs(:)25 b(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 +b Ft(28)447 2172 y(3.1.6)56 b(Null)15 b(Mo)o(v)o(es)45 b Fs(:)25 +b(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 +b Ft(29)447 2230 y(3.1.7)56 b(Razoring)19 b Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)h +(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b +Ft(31)335 2288 y(3.2)g(Ev)m(aluation)21 b Fs(:)j(:)h(:)f(:)h(:)f(:)h(:)f(:)h +(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 +b Ft(33)447 2346 y(3.2.1)56 b(Piece)15 b(Square)h(T)l(ables)e +Fs(:)25 b(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 +b Ft(33)447 2405 y(3.2.2)56 b(Static)16 b(Ev)m(aluation)32 +b Fs(:)24 b(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 +b Ft(34)967 2574 y Fp(2)p eop +%%Page: 3 5 +3 4 bop 447 307 a Ft(3.2.3)56 b(Incremen)o(tal)13 b(Ev)m(aluation)20 +b Fs(:)k(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b +Ft(35)447 365 y(3.2.4)56 b(Phases)17 b(of)g(Pla)o(y)12 b Fs(:)24 +b(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 +b Ft(36)447 423 y(3.2.5)56 b(Planning)19 b Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)h +(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b +Ft(37)335 482 y(3.3)g(Learning)25 b Fs(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:) +f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 +b Ft(37)447 540 y(3.3.1)56 b(Rote)16 b(Learning)21 b Fs(:)j(:)h(:)f(:)h(:)f +(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(38)447 +598 y(3.3.2)56 b(Advice)15 b(T)l(aking)h Fs(:)24 b(:)h(:)f(:)h(:)f(:)g(:)h(:) +f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(38)447 656 +y(3.3.3)56 b(Induction)43 b Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h +(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(39)447 714 y(3.3.4)56 +b(Learning)17 b(b)o(y)f(Analogy)31 b Fs(:)24 b(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:) +h(:)f(:)h(:)f(:)g(:)50 b Ft(39)447 772 y(3.3.5)56 b(P)o(arameter)15 +b(Adjustmen)o(t)26 b Fs(:)e(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 +b Ft(39)335 830 y(3.4)g(Time)14 b(Con)o(trol)39 b Fs(:)24 b(:)h(:)f(:)h(:)f +(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 +b Ft(40)262 937 y Fu(4)45 b(The)18 b(Ev)m(aluation)g(F)-5 b(unction)695 +b(42)335 995 y Ft(4.1)50 b(De\014nition)16 b(1)g(:)22 b(Material)35 +b Fs(:)25 b(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 +b Ft(44)335 1053 y(4.2)g(De\014nition)16 b(2)g(:)22 b(Game)15 +b(Phase)27 b Fs(:)e(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 +b Ft(46)335 1111 y(4.3)g(General)16 b(P)o(ositional)g(Ev)m(aluation)35 +b Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 +b Ft(47)447 1170 y(4.3.1)56 b(De\014nition)16 b(3)h(:)k(Mobilit)o(y)32 +b Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 +b Ft(47)447 1228 y(4.3.2)56 b(De\014nition)16 b(4)h(:)k(Dev)o(elopmen)o(t)11 +b Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(49)447 +1286 y(4.3.3)56 b(De\014nition)16 b(5)h(:)k(Cen)o(tre)15 b(Con)o(trol)49 +b Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(50)447 1344 +y(4.3.4)56 b(De\014nition)16 b(6)h(:)k(Square)16 b(Con)o(trol)46 +b Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(52)335 1402 +y(4.4)g(P)o(a)o(wn)16 b(Ev)m(aluation)42 b Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f +(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(53)447 +1460 y(4.4.1)56 b(De\014nition)16 b(7)h(:)k(Doubled)16 b(P)o(a)o(wns)38 +b Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(53)447 1518 +y(4.4.2)56 b(De\014nition)16 b(8)h(:)k(Isolated)16 b(P)o(a)o(wns)49 +b Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(54)447 1576 +y(4.4.3)56 b(De\014nition)16 b(9)h(:)k(W)l(eak)16 b(P)o(a)o(wns)21 +b Fs(:)j(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(54)447 +1634 y(4.4.4)56 b(De\014nition)16 b(10)h(:)k(P)o(assed)c(P)o(a)o(wns)48 +b Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(56)447 1693 +y(4.4.5)56 b(De\014nition)16 b(11)h(:)k(P)o(a)o(wn)c(T)l(able)e +Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(58)447 +1751 y(4.4.6)56 b(De\014nition)16 b(12)h(:)k(P)o(a)o(wn)c(V)l(alue)c +Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(58)335 +1809 y(4.5)g(Knigh)o(t)16 b(Ev)m(aluation)49 b Fs(:)25 b(:)f(:)h(:)f(:)h(:)f +(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(60)447 +1867 y(4.5.1)56 b(De\014nition)16 b(13)h(:)k(Knigh)o(t)16 b(V)l(alue)21 +b Fs(:)k(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(60)335 1925 +y(4.6)g(Bishop)16 b(Ev)m(aluation)51 b Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)g(:)h +(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(61)447 1983 +y(4.6.1)56 b(De\014nition)16 b(14)h(:)k(Bishop)16 b(A)o(ttac)o(k)37 +b Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(61)447 2041 +y(4.6.2)56 b(De\014nition)16 b(15)h(:)k(Bishop)16 b(on)h(Kings)f(Diagonal)j +Fs(:)24 b(:)g(:)50 b Ft(61)447 2099 y(4.6.3)56 b(De\014nition)16 +b(16)h(:)k(Bishop)16 b(P)o(air)g Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:) +g(:)50 b Ft(62)447 2158 y(4.6.4)56 b(De\014nition)16 b(17)h(:)k(Horrwitz)16 +b(Bishops)51 b Fs(:)24 b(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(62)447 +2216 y(4.6.5)56 b(De\014nition)16 b(18)h(:)k(Enem)o(y)14 b(P)o(a)o(wn)j +(Obstruction)23 b Fs(:)h(:)g(:)50 b Ft(63)447 2274 y(4.6.6)56 +b(De\014nition)16 b(19)h(:)k(Bishop)16 b(T)l(able)25 b Fs(:)g(:)f(:)h(:)f(:)h +(:)f(:)h(:)f(:)g(:)50 b Ft(64)447 2332 y(4.6.7)56 b(De\014nition)16 +b(20)h(:)k(Bishop)16 b(V)l(alue)23 b Fs(:)i(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g +(:)50 b Ft(64)335 2390 y(4.7)g(Ro)q(ok)17 b(Ev)m(aluation)47 +b Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h +(:)f(:)g(:)50 b Ft(66)447 2448 y(4.7.1)56 b(De\014nition)16 +b(21)h(:)k(Ro)q(ok{King)c(Closeness)42 b Fs(:)24 b(:)h(:)f(:)g(:)50 +b Ft(66)967 2574 y Fp(3)p eop +%%Page: 4 6 +4 5 bop 447 307 a Ft(4.7.2)56 b(De\014nition)16 b(22)h(:)k(Connected)16 +b(Ro)q(oks)50 b Fs(:)24 b(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(67)447 +365 y(4.7.3)56 b(De\014nition)16 b(23)h(:)k(Ro)q(ok)c(on)g(Op)q(en)f(File)c +Fs(:)24 b(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(68)447 423 y(4.7.4)56 +b(De\014nition)16 b(24)h(:)k(Ro)q(ok)c(on)g(Sev)o(en)o(th)e(Rank)44 +b Fs(:)25 b(:)f(:)g(:)50 b Ft(68)447 482 y(4.7.5)56 b(De\014nition)16 +b(25)h(:)k(Ro)q(ok)c(V)l(alue)i Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g +(:)50 b Ft(69)335 540 y(4.8)g(Queen)16 b(Ev)m(aluation)23 b +Fs(:)h(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:) +g(:)50 b Ft(70)447 598 y(4.8.1)56 b(De\014nition)16 b(26)h(:)k(Queen{King)16 +b(Closeness)i Fs(:)24 b(:)h(:)f(:)g(:)50 b Ft(70)447 656 y(4.8.2)56 +b(De\014nition)16 b(27)h(:)k(Queen)16 b(P)o(o)o(w)o(er)23 b +Fs(:)i(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(71)447 714 +y(4.8.3)56 b(De\014nition)16 b(28)h(:)k(Queen)16 b(V)l(alue)33 +b Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(71)335 +772 y(4.9)g(King)16 b(Ev)m(aluation)h Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)h(:)f +(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(72)447 +830 y(4.9.1)56 b(De\014nition)16 b(29)h(:)k(King)16 b(On)h(Op)q(en)f(Files)26 +b Fs(:)f(:)f(:)h(:)f(:)g(:)50 b Ft(72)447 888 y(4.9.2)56 b(De\014nition)16 +b(30)h(:)k(W)l(eak)16 b(Squares)h(around)g(King)30 b Fs(:)24 +b(:)50 b Ft(73)447 946 y(4.9.3)56 b(De\014nition)16 b(31)h(:)k(Mating)16 +b(Net)k Fs(:)k(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(75)447 +1005 y(4.9.4)56 b(De\014nition)16 b(32)h(:)k(Chec)o(k)15 b(Threats)33 +b Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(76)447 1063 +y(4.9.5)56 b(De\014nition)16 b(33)h(:)k(King)16 b(T)l(able)30 +b Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(77)447 +1121 y(4.9.6)56 b(De\014nition)16 b(34)h(:)k(King)16 b(V)l(alue)28 +b Fs(:)c(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(77)335 +1179 y(4.10)26 b(Static)16 b(T)l(actical)f(Ev)m(aluation)41 +b Fs(:)25 b(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 +b Ft(79)447 1237 y(4.10.1)32 b(De\014nition)16 b(35)h(:)k(Pinned)16 +b(Pieces)46 b Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b +Ft(79)447 1295 y(4.10.2)32 b(De\014nition)16 b(36)h(:)k(A)o(ttac)o(k)o(ed)14 +b(Pieces)43 b Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(81)335 +1353 y(4.11)26 b(Planning)c Fs(:)i(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:) +f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(82)447 +1411 y(4.11.1)32 b(De\014nition)16 b(37)h(:)k(Pressure)16 b(on)h(King)e +Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(83)447 1469 y(4.11.2)32 +b(De\014nition)16 b(38)h(:)k(Plan)c(Selection)38 b Fs(:)24 +b(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(84)447 1528 y(4.11.3)32 +b(De\014nition)16 b(39)h(:)k(P)o(a)o(wn)c(Square)f(T)l(able)46 +b Fs(:)25 b(:)f(:)h(:)f(:)g(:)50 b Ft(86)447 1586 y(4.11.4)32 +b(De\014nition)16 b(40)h(:)k(Knigh)o(t)16 b(Square)g(T)l(able)g +Fs(:)25 b(:)f(:)h(:)f(:)g(:)50 b Ft(88)447 1644 y(4.11.5)32 +b(De\014nition)16 b(41)h(:)k(Bishop)16 b(Square)h(T)l(able)g +Fs(:)25 b(:)f(:)h(:)f(:)g(:)50 b Ft(89)447 1702 y(4.11.6)32 +b(De\014nition)16 b(42)h(:)k(King)16 b(Square)h(T)l(able)22 +b Fs(:)i(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(90)447 1760 y(4.11.7)32 +b(De\014nition)16 b(43)h(:)k(Square)16 b(Con)o(trol)h(T)l(able)41 +b Fs(:)24 b(:)h(:)f(:)g(:)50 b Ft(92)335 1818 y(4.12)26 b(De\014nition)16 +b(44)h(:)k(T)l(otal)c(Ev)m(aluation)g(F)l(unction)f(V)l(alue)32 +b Fs(:)24 b(:)g(:)50 b Ft(94)262 1925 y Fu(5)45 b(T)-5 b(ree)18 +b(Searc)n(hing)940 b(96)335 1983 y Ft(5.1)50 b(Main)16 b(Searc)o(h)22 +b Fs(:)j(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h +(:)f(:)h(:)f(:)g(:)50 b Ft(97)335 2041 y(5.2)g(Searc)o(h)16 +b(Extensions)i Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f +(:)h(:)f(:)h(:)f(:)g(:)50 b Ft(99)447 2099 y(5.2.1)56 b(Threats)44 +b Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f +(:)h(:)f(:)g(:)h Ft(100)447 2158 y(5.2.2)56 b(Threat)17 b(Execution)25 +b Fs(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h +Ft(103)335 2216 y(5.3)50 b(Quiescence)14 b(Decision)g Fs(:)25 +b(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h +Ft(106)335 2274 y(5.4)50 b(Quiescence)14 b(Searc)o(h)h Fs(:)24 +b(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h +Ft(107)262 2381 y Fu(6)45 b(HIAR)n(CS)19 b(5.0)966 b(110)335 +2439 y Ft(6.1)50 b(Program)16 b(History)g(and)h(En)o(vironmen)o(t)40 +b Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h Ft(110)967 +2574 y Fp(4)p eop +%%Page: 5 7 +5 6 bop 335 307 a Ft(6.2)50 b(Program)16 b(Structure)40 b Fs(:)25 +b(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h +Ft(111)335 365 y(6.3)50 b(Data)17 b(Structures)24 b Fs(:)h(:)f(:)h(:)f(:)h(:) +f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h +Ft(113)447 423 y(6.3.1)56 b(P)o(osition)16 b(Represen)o(tation)46 +b Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h Ft(114)447 +482 y(6.3.2)56 b(Game)15 b(T)l(ree)e Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:) +h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h Ft(115)447 540 +y(6.3.3)56 b(T)l(ransp)q(osition)18 b(T)l(able)d Fs(:)25 b(:)f(:)g(:)h(:)f(:) +h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h Ft(115)447 598 y(6.3.4)56 +b(Refutation)16 b(T)l(able)41 b Fs(:)24 b(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f +(:)h(:)f(:)h(:)f(:)g(:)h Ft(118)447 656 y(6.3.5)56 b(The)16 +b(History)g(Heuristic)c Fs(:)24 b(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f +(:)g(:)h Ft(119)447 714 y(6.3.6)56 b(Incremen)o(tal)13 b(A)o(ttac)o(k)i(T)l +(ables)29 b Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h +Ft(119)447 772 y(6.3.7)56 b(Game)15 b(History)26 b Fs(:)e(:)h(:)f(:)h(:)f(:)g +(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h Ft(121)335 +830 y(6.4)50 b(The)16 b(Algorithms)26 b Fs(:)f(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:) +g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h Ft(122)447 +888 y(6.4.1)56 b(Mo)o(v)o(e)15 b(Generation)36 b Fs(:)24 b(:)h(:)f(:)g(:)h(:) +f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h Ft(122)447 946 y(6.4.2)56 +b(Mo)o(v)o(e)15 b(Ordering)43 b Fs(:)25 b(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h +(:)f(:)h(:)f(:)h(:)f(:)g(:)h Ft(124)447 1005 y(6.4.3)56 b(T)l(ree)16 +b(Searc)o(hing)48 b Fs(:)25 b(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f +(:)h(:)f(:)g(:)h Ft(127)447 1063 y(6.4.4)56 b(Ev)m(aluation)19 +b Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h +(:)f(:)g(:)h Ft(131)447 1121 y(6.4.5)56 b(Time)14 b(Allo)q(cation)i(and)h +(Con)o(trol)c Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h +Ft(133)335 1179 y(6.5)50 b(E\016ciency)14 b(Asp)q(ects)j Fs(:)24 +b(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h +Ft(139)447 1237 y(6.5.1)56 b(Algorithms)47 b Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:) +g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h Ft(139)447 +1295 y(6.5.2)56 b(Data)17 b(Structures)22 b Fs(:)j(:)f(:)h(:)f(:)g(:)h(:)f(:) +h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h Ft(139)447 1353 y(6.5.3)56 +b(Co)q(de)17 b(Pro)q(duction)39 b Fs(:)24 b(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h +(:)f(:)h(:)f(:)h(:)f(:)g(:)h Ft(140)262 1460 y Fu(7)45 b(Program)17 +b(P)n(erformance)733 b(141)335 1518 y Ft(7.1)50 b(Bratk)o(o-Kop)q(ec)16 +b(T)l(ests)k Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:) +f(:)h(:)f(:)g(:)h Ft(142)335 1576 y(7.2)50 b(Computer)15 b(Opp)q(osition)i +Fs(:)24 b(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h +Ft(146)335 1634 y(7.3)50 b(Human)15 b(Opp)q(osition)36 b Fs(:)25 +b(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h +Ft(152)335 1693 y(7.4)50 b(Kno)o(wledge)16 b(v)o(ersus)g(Searc)o(h)23 +b Fs(:)h(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h +Ft(158)335 1751 y(7.5)50 b(In)o(ternal)15 b(Statistics)24 b +Fs(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:) +g(:)h Ft(160)335 1809 y(7.6)50 b(Summary)14 b(of)i(P)o(erformance)e +Fs(:)24 b(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h +Ft(162)262 1916 y Fu(8)45 b(Conclusion)1007 b(164)335 1974 +y Ft(8.1)50 b(Review)18 b Fs(:)25 b(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f +(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h +Ft(164)335 2032 y(8.2)50 b(Ac)o(hiev)o(em)o(e)o(n)o(ts)33 b +Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f +(:)h(:)f(:)g(:)h Ft(166)335 2090 y(8.3)50 b(Implications)14 +b(and)j(F)l(uture)f(Prosp)q(ects)e Fs(:)24 b(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f +(:)g(:)h Ft(168)262 2197 y Fu(A)31 b(Glossary)1063 b(175)262 +2304 y(B)33 b(Pseudo)19 b(F)-5 b(unctions)844 b(176)262 2411 +y(C)33 b(Time)16 b(Allo)r(cation)i(Graphs)681 b(202)967 2574 +y Fp(5)p eop +%%Page: 6 8 +6 7 bop 262 307 a Fu(D)30 b(Bratk)n(o-Kop)r(ec)17 b(T)-5 b(est)18 +b(P)n(ositions)572 b(208)262 414 y(E)36 b(T)-5 b(est)18 b(Games)f(Pla)n(y)n +(ed)805 b(221)335 472 y Ft(E.1)41 b(HIAR)o(CS)15 b(5.0)h(v)o(ersus)g +(Mephisto)g(Exclusiv)o(e)21 b Fs(:)k(:)f(:)h(:)f(:)h(:)f(:)g(:)h +Ft(222)447 530 y(E.1.1)47 b(Game)15 b(1)44 b Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:) +h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h Ft(222)447 +588 y(E.1.2)47 b(Game)15 b(2)44 b Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g +(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h Ft(223)447 +647 y(E.1.3)47 b(Game)15 b(3)44 b Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g +(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h Ft(224)447 +705 y(E.1.4)47 b(Game)15 b(4)44 b Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g +(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h Ft(225)447 +763 y(E.1.5)47 b(Game)15 b(5)44 b Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g +(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h Ft(226)447 +821 y(E.1.6)47 b(Game)15 b(6)44 b Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g +(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h Ft(227)335 +879 y(E.2)41 b(HIAR)o(CS)15 b(5.0)h(v)o(ersus)g(Mark)g(Uniac)o(k)o(e)21 +b Fs(:)j(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h Ft(228)447 +937 y(E.2.1)47 b(Game)15 b(1)44 b Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g +(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h Ft(228)447 +995 y(E.2.2)47 b(Game)15 b(2)44 b Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g +(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h Ft(229)335 +1053 y(E.3)41 b(HIAR)o(CS)15 b(5.0)h(v)o(ersus)g(NOKNO)o(W)45 +b Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h Ft(231)447 +1111 y(E.3.1)47 b(Game)15 b(1)44 b Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g +(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h Ft(231)447 +1170 y(E.3.2)47 b(Game)15 b(2)44 b Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g +(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h Ft(233)447 +1228 y(E.3.3)47 b(Game)15 b(3)44 b Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g +(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h Ft(234)447 +1286 y(E.3.4)47 b(Game)15 b(4)44 b Fs(:)25 b(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g +(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h Ft(235)967 +2574 y Fp(6)p eop +%%Page: 7 9 +7 8 bop 262 654 a Fn(Chapter)34 b(1)262 897 y Fo(In)m(tro)s(duction)262 +1148 y Fp(Chess)14 b(is)g(an)g(extraordinary)f(game.)k(The)d(rules)g(are)g +(clearly)g(de\014ned)h(and)e(quite)h(simple)262 1198 y(to)j(learn,)h(y)o(et)g +(the)g(game)e(is)h(so)h(complex)e(it)h(has)h(c)o(hallenged)f(mankind)f(for)h +(cen)o(turies)262 1248 y(and)f(is)g(still)g(as)h(ric)o(h)f(and)h(v)n(aried)f +(as)h(ev)o(er.)27 b(Suc)o(h)17 b(an)f(enormous)g(amoun)o(t)f(of)h(material) +262 1298 y(has)11 b(b)q(een)i(written)f(ab)q(out)g(the)g(game)f(that)g(there) +j(are)e(more)e(b)q(o)q(oks)i(written)g(ab)q(out)g(c)o(hess)262 +1347 y(than)j(all)f(other)j(games)d(put)i(together.)24 b(The)16 +b(game)e(app)q(eals)i(to)f(all)f(ages)i(and)g(abilities)262 +1397 y(from)c(b)q(eginner)i(to)g(exp)q(ert.)365 1480 y("Chess)d(is)f(a)g(sea) +g(in)g(whic)o(h)f(a)h(gnat)g(ma)o(y)e(drink)h(or)h(an)g(elephan)o(t)g(ma)o(y) +e(bathe.")1319 1547 y Fm(Indian)k(pr)n(overb.)324 1665 y Fp(Chess)18 +b(epitomises)e(man)o(y)e(of)i(the)i(problems)e(facing)f(the)j(\014eld)e(of)h +(arti\014cial)e(in)o(telli-)262 1715 y(gence,)j(that)f(of)g(the)h(storage,)g +(represen)o(tation,)h(retriev)n(al)e(and)g(application)f(of)h(kno)o(wl-)262 +1765 y(edge;)12 b(searc)o(hing)h(in\014nite)e(domains)f(and)i(problem)f +(solving)f(using)i(inexact)g(information.)262 1815 y(Chess)h(therefore)h(pro) +o(vides)f(an)f(almost)f(p)q(erfect)j(en)o(vironmen)o(t)e(in)g(whic)o(h)g(to)h +(exp)q(erimen)o(t)262 1864 y(with)e(new)g(ideas.)18 b(Unlik)o(e)10 +b(most)g(other)i(problem)e(domains,)g(progress)i(can)g(b)q(e)g(accurately)262 +1914 y(measured,)g(see)i([19)o(].)j(Ideas)c(can)g(easily)f(b)q(e)h(put)g(to)f +(the)i(test,)f(b)q(oth)g(against)f(h)o(uman)f(and)262 1964 +y(computer)g(opp)q(osition)f(in)h(comp)q(etition;)g(and)g(in)g(sp)q(ecially)g +(designed)i(exp)q(erimen)o(ts.)k(F)m(or)262 2014 y(these)c(reasons,)g(c)o +(hess)h(is)e(an)g(excellen)o(t)h(researc)o(h)i(en)o(vironmen)o(t)c(in)h(whic) +o(h)g(to)g(in)o(v)o(estigate)262 2064 y(h)o(uman)h(in)o(tellectual)j(skill)e +(and)i(arti\014cial)e(in)o(telligence.)23 b(In)16 b(fact,)f(winning)g(the)h +(h)o(uman)262 2114 y(w)o(orld)c(c)o(hess)k(c)o(hampionship)11 +b(w)o(as)j(de\014ned)g(as)g(one)g(of)f(the)h(fundamen)o(tal)d(aims)h(of)h +(arti\014-)262 2163 y(cial)g(in)o(telligence.)20 b(It)15 b(is)g(a)f(testimon) +o(y)f(to)i(the)g(problem's)e(complexit)o(y)g(that)i(after)g(more)262 +2213 y(than)e(fort)o(y)h(y)o(ears)g(of)g(concerted)h(e\013ort)g(this)f(aim)e +(is)h(still)g(far)h(from)e(b)q(eing)i(realised.)967 2574 y(7)p +eop +%%Page: 8 10 +8 9 bop 262 307 a Fr(1.1)69 b(A)23 b(Brief)f(History)262 434 +y Fp(On)12 b(Marc)o(h)h(9th)f(1949,)f(Claude)h(E)h(Shannon,)e(a)h(researc)o +(her)j(at)d(Bell)h(T)m(elephone)f(Lab)q(ora-)262 483 y(tories,)i(presen)o +(ted)j(a)d(pap)q(er)i(titled)e("Programming)d(a)j(Computer)g(for)g(Pla)o +(ying)g(Chess")262 533 y([53)o(].)21 b(This)15 b(w)o(as)g(the)h(\014rst)g +(pap)q(er)g(of)f(its)g(kind)f(and)h(ev)o(en)h(to)q(da)o(y)f(most)f(computer)h +(c)o(hess)262 583 y(programs)e(o)o(w)o(e)i(m)o(uc)o(h)e(to)i(Shannon's)g +(original)e(ideas.)21 b(Essen)o(tially)m(,)13 b(Shannon)i(put)g(for-)262 +633 y(w)o(ard)e(three)i(di\013eren)o(t)g(t)o(yp)q(es)g(of)e(program:)312 +709 y(1.)20 b(T)o(yp)q(e)d Fl(A)p Fp(:)f(A)h(program)d(that)j(do)q(es)g(a)f +(full)f(width)i(searc)o(h)g(to)g(a)f(giv)o(en)g(depth)h(and)365 +759 y(uses)e(a)f(simple)e(terminal)h(ev)n(aluation)f(function.)312 +839 y(2.)20 b(T)o(yp)q(e)e Fl(B)p Fp(:)f(A)h(program)e(that)h(do)q(es)i(a)e +(selectiv)o(e)i(searc)o(h)f(of)f(the)h(most)f(promising)365 +889 y(lines.)312 968 y(3.)j(T)o(yp)q(e)13 b Fl(C)p Fp(:)g(A)g(program)e(that) +h(is)h(goal)e(orien)o(ted,)i(although)f(little)g(detail)g(ab)q(out)h(this)365 +1018 y(approac)o(h)h(w)o(as)g(giv)o(en.)262 1095 y(Alan)j(T)m(uring)g(built)h +(further)h(on)f(some)f(of)h(these)h(ideas)g(and)f(in)f(1950)g(wrote)i(a)f +(pap)q(er)262 1144 y(ab)q(out)h(his)g(w)o(ork)h(on)f(computer)g(c)o(hess)i +(at)e(Manc)o(hester)j(Univ)o(ersit)o(y)d([60)o(].)35 b(Ho)o(w)o(ev)o(er,)262 +1194 y(Shannon's)17 b(ideas)g(w)o(ere)i(not)e(actually)g(incorp)q(orated)h +(in)o(to)f(a)g(c)o(hess)i(pla)o(ying)d(program)262 1244 y(un)o(til)d(1956)h +(when)i(a)e(Shannon)h(t)o(yp)q(e)g(A)g(program)e(w)o(as)i(dev)o(elop)q(ed)h +(at)e(the)i(Los)f(Alamos)262 1294 y(Scien)o(ti\014c)d(Lab)q(oratory)640 +1279 y Fk(1)658 1294 y Fp(.)18 b(In)12 b(1957,)e(Bernstein)k(and)e(Rob)q +(erts)g(wrote)h(a)e(t)o(yp)q(e)i(B)f(program)262 1344 y(for)j(the)h(IBM)g +(704)f([9)o(].)22 b(Most)16 b(notably)f(New)o(ell,)g(Simon)f(and)h(Sha)o(w)g +(wrote)i(a)e(Shannon)262 1393 y(t)o(yp)q(e)d(C)h(program)d(in)i(1958)f([42].) +17 b(This)12 b(w)o(as)g(the)h(\014rst)g(ev)o(er)g(practical)f(application)f +(of)h(the)262 1443 y(alpha-b)q(eta)f(algorithm.)k(A)e(n)o(um)o(b)q(er)e(of)h +(programs)f(follo)o(w)o(ed,)g(but)h(all)f(pla)o(y)o(ed)h(v)o(ery)h(p)q(o)q +(or)262 1493 y(c)o(hess.)25 b(Despite)16 b(this,)g(man)o(y)e(researc)o(hers) +19 b(in)c(the)h(\014eld)g(of)f(arti\014cial)g(in)o(telligence)h(w)o(ere)262 +1543 y(v)o(ery)e(con\014den)o(t)g(ab)q(out)g(the)h(p)q(oten)o(tial)e(of)g +(their)i(mac)o(hines.)365 1619 y("Within)d(10)g(y)o(ears)h(a)g(digital)e +(computer)i(will)e(b)q(e)i(the)h(w)o(orld's)e(c)o(hess)i(c)o(ham-)365 +1669 y(pion,)f(unless)i(rules)f(bar)g(it)g(from)e(comp)q(etition")1088 +1734 y Fm(Herb)n(ert)h(Simon,)j(1957.)324 1846 y Fp(It)h(w)o(as)h(not)f(un)o +(til)g(1966)f(that)i(real)g(progress)g(w)o(as)g(made)e(b)o(y)h(Ric)o(hard)g +(Green)o(blatt)262 1895 y(at)g(MIT)g([23)o(].)27 b(His)17 b(program)f(MacHac) +o(k-6,)h(w)o(as)h(the)f(\014rst)h(program)e(whic)o(h)h(could)g(b)q(e)262 +1945 y(considered)g(to)g(pla)o(y)e("real)h(c)o(hess".)27 b(It)17 +b(pla)o(y)o(ed)e(in)h(v)n(arious)g(h)o(uman)f(tournamen)o(ts)h(and)262 +1995 y(established)e(p)q(erformance)f(ratings)h(in)f(the)h(1250)f(to)g(1640)g +(USCF)g(range.)19 b(This)13 b(is)h(quite)262 2045 y(an)f(ac)o(hiev)o(emen)o +(t,)g(particularly)g(when)h(one)h(considers)g(it)e(w)o(as)h(in)f(1966.)324 +2130 y(In)i(1968,)f(v)n(arious)h(AI)g(researc)o(hers,)j(encouraged)f(b)o(y)e +(Green)o(blatt's)g(progress)i(made)262 2180 y(a)f(2500)f(dollar)g(b)q(et)i +(with)f(Da)o(vid)f(Levy)m(,)h(an)g(In)o(ternational)g(Master,)h(that)g(a)f +(computer)262 2230 y(w)o(ould)g(b)q(e)j(able)e(to)g(b)q(eat)i(him)c(in)i(a)h +(matc)o(h)e(within)h(10)g(y)o(ears.)30 b(Encouraged)18 b(b)o(y)g(suc)o(h)262 +2280 y(activities)13 b(v)n(arious)g(scien)o(tists)h(from)e(the)i +(arti\014cial)f(in)o(telligence)g(\014eld)g(got)h(in)o(v)o(olv)o(ed)e(and)262 +2329 y(in)i(1970)g(the)h(\014rst)h(United)f(States)g(Computer)g(Chess)h +(Championship)c(w)o(as)j(held.)21 b(This)262 2379 y(ev)o(en)o(t)14 +b(has)g(con)o(tin)o(ued)g(to)g(b)q(e)g(held)g(ann)o(ually)f(to)g(the)i +(presen)o(t)g(da)o(y)m(.)p 262 2411 573 2 v 308 2437 a Fj(1)325 +2449 y Fi(only)10 b(dev)o(elop)q(ed)f(for)i(a)g(6x6)g(b)q(oard)f(with)i(no)f +(bishops.)967 2574 y Fp(8)p eop +%%Page: 9 11 +9 10 bop 324 307 a Fp(In)14 b(1974,)f(the)i(\014rst)h(W)m(orld)d(Computer)h +(Chess)h(Championship)e(w)o(as)h(held)g(in)g(Sto)q(c)o(k-)262 +357 y(holm.)25 b(This)17 b(ev)o(en)o(t)h(w)o(as)f(w)o(on)g(b)o(y)g(a)g +(Russian)g(program)e(called)i(Kaissa,)h(essen)o(tially)f(a)262 +407 y(Shannon)g(t)o(yp)q(e)h(A)g(program)e(with)i(n)o(umerous)f(enhancemen)o +(ts.)31 b(Kaissa's)17 b(rating)h(w)o(as)262 457 y(somewhere)c(in)f(the)i +(1500)e(to)h(1700)f(ELO)h(range;)g(impressiv)o(e)g(for)f(a)h(program,)e(but)i +(v)o(ery)262 506 y(lo)o(w)d(in)g(w)o(orld)h(c)o(hess)h(terms.)k(This)12 +b(compares)g(with)g(a)g(t)o(ypical)f(2500)g(ELO)h(Grandmaster)262 +556 y(rating,)g(ev)o(en)j(Da)o(vid)e(Levy)h(w)o(as)f(rated)i(at)f(ab)q(out)f +(2350)g(ELO.)324 641 y(In)i(1977,)f(real)h(progress)h(w)o(as)f(made)f(when)i +(Chess)g(4)p Fh(:)p Fp(5)e([4],)g(an)h(American)f(program)262 +691 y(written)d(at)g(the)h(North)o(w)o(estern)h(Univ)o(ersit)o(y)m(,)d(comp)q +(eted)i(in)e(the)i(Minnesota)f(Op)q(en)h(Chess)262 741 y(Championship)h(and)i +(w)o(on)g(the)g(ev)o(en)o(t)h(with)f(a)g(5-1)g(score.)23 b(This)16 +b(success)h(w)o(as)f(v)o(ery)f(sig-)262 791 y(ni\014can)o(t)h(b)q(ecause)i +(sev)o(eral)f(Exp)q(erts)h(and)e(Class)h("A")f(pla)o(y)o(ers)g(comp)q(eted.) +26 b(It)16 b(w)o(as)h(not)262 841 y(ac)o(hiev)o(ed)12 b(as)g(one)h(migh)o(t)d +(exp)q(ect)k(b)o(y)e(a)f(breakthrough)i(in)f(c)o(hess)i(algorithms,)9 +b(but)k(rather)262 891 y(through)h(the)i(use)g(of)e(one)h(of)f(the)i(latest)f +("sup)q(er-computers")g(-)g(a)g(CD)f(Cyb)q(er)i(170.)k(In-)262 +940 y(evitably)m(,)8 b(Chess)j(4)p Fh(:)p Fp(6)e(later)h(w)o(on)f(the)h +(triennial)f(W)m(orld)g(Computer)g(Chess)i(Championship)262 +990 y(with)i(a)h(p)q(erfect)h(4-0)e(score.)324 1075 y(In)j(Septem)o(b)q(er)i +(1978,)d(Chess)j(4)p Fh(:)p Fp(7)e(c)o(hallenged)g(Da)o(vid)g(Levy)h(for)f +(the)h(b)q(et)h(made)d(10)262 1125 y(y)o(ears)f(earlier,)g(the)g(program)e +(did)i(w)o(ell,)f(but)h(lost)f(b)o(y)h(a)g(score)h(of)e(3)1336 +1109 y Fk(1)p 1336 1116 17 2 v 1336 1140 a(2)1357 1125 y Fp(-1)1397 +1109 y Fk(1)p 1397 1116 V 1397 1140 a(2)1418 1125 y Fp(.)324 +1210 y(Programs)h(based)i(on)g(a)f(Shannon)g(t)o(yp)q(e)h(A)g(approac)o(h)f +(with)g(little)g(kno)o(wledge,)g(but)262 1260 y(v)o(ery)20 +b(fast)g(searc)o(hing)h(had)e(b)q(een)j(dominating)17 b("in)o(telligen)o(t")h +(selectiv)o(e)k(searc)o(hers)g(for)262 1310 y(some)14 b(5)g(y)o(ears.)22 +b(In)15 b(1978,)f(using)h(this)g(principle)g(of)f(fast)h(sp)q(eed)h(with)f +(little)f(kno)o(wledge,)262 1360 y(sp)q(ecial)f(c)o(hess)h(hardw)o(are)f(w)o +(as)g(designed)g(and)g(built)f(b)o(y)h(Ken)g(Thompson)f(and)h(Jo)q(e)g(Con-) +262 1410 y(don)i([14)o(].)24 b(The)16 b(program,)f(Belle,)h(from)e(Bell)i +(Lab)q(oratories,)g(running)g(on)f(this)h(sp)q(ecial)262 1460 +y(hardw)o(are)e(ended)h(up)f(winning)e(the)j(1980)e(W)m(orld)f(Computer)i +(Chess)h(Championship.)324 1545 y(By)f(1983,)f(the)i(strength)g(of)f(deep)h +(brute)g(force)f(searc)o(hers)j(w)o(as)d(further)h(emphasised)262 +1595 y(when)20 b(the)g(program)e(Cra)o(y)h(Blitz)g([31)o(],)h(running)g(on)f +(a)g(2)g(pro)q(cessor)j(Cra)o(y)d(XMP/48)262 1644 y(computer,)d(w)o(on)g(the) +h(4th)f(W)m(orld)f(Computer)h(Chess)h(Championship.)23 b(The)17 +b(follo)o(wing)262 1694 y(y)o(ear)h(an)g(exhibition)g(matc)o(h)f(w)o(as)h +(arranged)h(b)q(et)o(w)o(een)h(Cra)o(y)e(Blitz)g(and)g(Da)o(vid)f(Levy)m(.) +262 1744 y(In)j(the)g(matc)o(h,)g(Da)o(vid)f(Levy)h(crushed)i(the)f(mac)o +(hine)e(4-0.)36 b(This)20 b(clearly)g(indicated)262 1794 y(that)15 +b(although)g(the)h(mac)o(hine)e(w)o(as)h(of)g(master)g(strength)i(in)e(the)h +(realms)e(of)h(tactics,)i(its)262 1844 y(p)q(ositional)e(and)i(strategic)h +(pla)o(y)e(w)o(as)h(w)o(eak.)27 b(Cra)o(y)17 b(Blitz)g(retained)h(its)f(w)o +(orld)f(title)h(in)262 1893 y(1986.)324 1979 y(Curren)o(tly)11 +b(there)g(are)g(2)f(programs)f(of)h(in)o(ternational)f(master)h(strength)1456 +1964 y Fk(1)1476 1979 y Fp(,)h(Hitec)o(h)g(and)262 2029 y(Deep)16 +b(Though)o(t.)24 b(Both)17 b(Hitec)o(h)g(and)e(Deep)i(Though)o(t)f(run)g(on)g +(sp)q(ecial)g(purp)q(ose)i(hard-)262 2078 y(w)o(are)13 b(and)h(essen)o +(tially)g(p)q(erform)e(sophisticated)j(brute)f(force)h(searc)o(hes.)20 +b(Deep)14 b(Though)o(t)262 2128 y(is)g(clearly)h(the)g(strongest)h(of)e +(these)i(programs)d(with)i(an)f(o\016cial)g(rating)g(of)g(2551)f(USCF)262 +2178 y(whic)o(h)j(equates)i(to)e(appro)o(ximately)e(2450)i(ELO.)h(During)f +(Ma)o(y)g(1989,)g(Deep)h(Though)o(t)262 2228 y(demonstrated)d(this)g +(strength)i(b)o(y)e(winning)g(the)h(6th)f(W)m(orld)f(Computer)h(Chess)h +(Cham-)262 2278 y(pionship.)p 262 2312 573 2 v 308 2339 a Fj(1)325 +2351 y Fi(around)10 b(2400)g(ELO,)i(not)f(to)g(b)q(e)g(confused)e(with)j(a)f +(US)h(master)e(rating)g(of)h(2200)f(USCF)967 2574 y Fp(9)p +eop +%%Page: 10 12 +10 11 bop 324 307 a Fp(In)13 b(Octob)q(er)i(1989,)d(Deep)h(Though)o(t)g(c)o +(hallenged)g(Gary)g(Kasparo)o(v,)g(the)h(w)o(orld)e(c)o(hess)262 +357 y(c)o(hampion,)7 b(to)j(a)f(t)o(w)o(o)g(game)f(exhibition)g(matc)o(h.)15 +b(Kasparo)o(v)10 b(outpla)o(y)o(ed)f(the)h(mac)o(hine)e(not)262 +407 y(only)i(p)q(ositionally)m(,)f(but)j(more)f(surprisingly)g(tactically)m +(,)f(to)h(win)g(the)h(matc)o(h)f(2-0.)16 b(During)262 457 y(Decem)o(b)q(er)d +(1989,)f(Deep)h(Though)o(t)g(pla)o(y)o(ed)f(Da)o(vid)g(Levy)h(in)g(a)f(four)h +(game)e(matc)o(h.)17 b(Deep)262 506 y(Though)o(t)c(illustrated)h(its)g +(impressiv)o(e)f(abilit)o(y)f(b)o(y)i(winning)e(the)j(matc)o(h)e(4-0.)262 +679 y Fr(1.2)69 b(My)24 b(Bac)n(kground)262 805 y Fp(I)13 b(ha)o(v)o(e)g(b)q +(een)h(v)o(ery)f(in)o(terested)i(in)e(computer)g(c)o(hess)i(for)e(some)f +(considerable)i(time.)i(I)d(am)262 855 y(a)f(mem)o(b)q(er)g(of)g(the)i(In)o +(ternational)f(Computer)f(Chess)i(Asso)q(ciation)f(and)g(ha)o(v)o(e)g +(written)h(a)262 905 y(n)o(um)o(b)q(er)f(of)g(programs)g(using)g(b)q(oth)h +(selectiv)o(e)h(and)f(brute)h(force)f(searc)o(hing.)324 990 +y(In)f(August)g(1989,)e(I)i(en)o(tered)h(m)o(y)d(latest)i(program)f(HIAR)o +(CS)g(4.1)g(in)g(the)h(c)o(hess)i(tour-)262 1040 y(namen)o(t)f(of)h(the)i +(\014rst)f(ev)o(er)h Fm(Computer)f(Olympiad)p Fp(.)24 b(HIAR)o(CS)16 +b(came)f(a)g(clear)h(6th)g(with)262 1090 y(3)e(out)g(of)g(8)h(p)q(oin)o(ts.) +20 b(It)15 b(w)o(as)f(running)g(on)h(a)f(7Mhz)h(68000)e(pro)q(cessor,)k(slo)o +(w)o(er)d(hardw)o(are)262 1140 y(than)f(all)g(of)g(the)h(opp)q(osition,)f +(for)g(example)f(a)i Fm(Fidelity)g(Ele)n(ctr)n(onics)f Fp(en)o(try)h(from)e +(Miami)262 1190 y(ran)h(on)h(a)g(68030)e(at)i(44Mhz)g(with)f(25ns)h(1)g(Mb)g +(DRAM.)262 1362 y Fr(1.3)69 b(Aims)21 b(of)j(the)e(Pro)t(ject)262 +1489 y Fp(It)c(is)g(clear)h(to)f(me)f(that)h(curren)o(t)i(programs)d +(su\013er)j(from)c(a)i(ma)r(jor)f(w)o(eakness)i(in)f(the)262 +1538 y(p)q(ositional)d(and)h(strategic)i(area)e(of)g(c)o(hess.)28 +b(Belo)o(w)17 b(2000)e(ELO,)i(tactics)g(pla)o(y)f(a)g(ma)r(jor)262 +1588 y(role,)10 b(ho)o(w)o(ev)o(er,)h(ab)q(o)o(v)o(e)e(2000)g(ELO,)i +(tactical)e(abilit)o(y)g(b)q(ecomes)h(less)h(imp)q(ortan)o(t)d(and)i(go)q(o)q +(d)262 1638 y(p)q(ositional)h(sense)k(is)f(vital.)i(Curren)o(tly)m(,)d(the)h +(b)q(est)h(programs)d(are)i(m)o(uc)o(h)e(closer)i(to)f(w)o(orld)262 +1688 y(c)o(hampionship)f(strength)j(tactically)e(than)g(they)i(are)f(p)q +(ositionally)e(sp)q(eaking.)324 1773 y(In)18 b(m)o(y)f(pro)r(ject,)j(I)e +(will)f(giv)o(e)g(an)h(o)o(v)o(erview)g(of)g(the)h(sub)r(ject)h(and)e +(explain)f(v)n(arious)262 1823 y(tec)o(hniques)i(used)h(in)e(curren)o(t)i +(programs.)30 b(I)19 b(will)e(lo)q(ok)g(in)o(to)h(w)o(a)o(ys)g(of)g(dev)o +(eloping)g(an)262 1873 y(ev)n(aluation)13 b(function)i(that)g(displa)o(ys)f +(the)h(p)q(ositional)f(abilit)o(y)f(of)i(an)f(exp)q(ert)j(lev)o(el)d(c)o +(hess)262 1923 y(pla)o(y)o(er)f(\(appro)o(ximately)e(ELO)i(2000\).)k(I)d +(will)e(also)g(lo)q(ok)h(in)o(to)f(fresh)j(w)o(a)o(ys)e(of)f(impro)o(ving)262 +1972 y(the)20 b(tactical)f(strength)h(of)f(a)g(c)o(hess)i(program.)33 +b(This)19 b(is)h(particularly)e(imp)q(ortan)o(t)g(for)262 2022 +y(programs)9 b(running)h(on)h(standard)g(micropro)q(cessors)h(whic)o(h)e(ob)o +(viously)g(cannot)h(comp)q(ete)262 2072 y(with)16 b(the)i(ra)o(w)f(sp)q(eed)h +(of)f(sp)q(ecial)g(purp)q(ose)h(hardw)o(are.)28 b(I)17 b(then)g(in)o(tend)h +(to)e(implemen)o(t)262 2122 y(certain)i(asp)q(ects)h(of)e(m)o(y)f(\014ndings) +h(in)g(a)h(c)o(hess)h(program)d(and)h(ev)n(aluate)g(them)g(against)262 +2172 y(b)q(oth)f(h)o(uman)e(and)i(computer)f(opp)q(osition.)24 +b(I)16 b(also)f(in)o(tend)h(to)g(use)h(the)g(Bratk)o(o-Kop)q(ec)262 +2221 y(exp)q(erimen)o(t)10 b([12)o(])f(to)i(test)g(the)g(relativ)o(e)f +(tactical)g(and)g(p)q(ositional)f(abilit)o(y)f(of)i(the)h(program.)324 +2307 y(The)h(reader)g(is)f(assumed)g(to)g(ha)o(v)o(e)h(a)f(reasonable)g(kno)o +(wledge)g(of)g(c)o(hess)i(and)e(algebraic)262 2357 y(c)o(hess)16 +b(notation)e(in)h(order)h(that)f(c)o(hess)h(concepts)h(can)e(b)q(e)h +(explained)f(to)f(a)h(high)g(enough)262 2406 y(lev)o(el.)957 +2574 y(10)p eop +%%Page: 11 13 +11 12 bop 262 619 a Fn(Chapter)34 b(2)262 826 y Fo(Basic)40 +b(Ov)m(erview)262 1042 y Fp(In)11 b(later)g(c)o(hapters)h(of)f(this)g(rep)q +(ort)h(I)f(will)e(explain)i(and)g(put)g(forw)o(ard)g(complex)e(ideas)j(con-) +262 1092 y(cerning)g(v)n(arious)e(asp)q(ects)j(of)e(computer)h(c)o(hess.)18 +b(In)12 b(order)g(to)f(help)h(the)g(reader)h(cop)q(e)f(with)262 +1142 y(these)i(ideas,)e(this)h(c)o(hapter)h(will)d(giv)o(e)h(a)h(basic)g(o)o +(v)o(erview)f(of)g(v)n(arious)g(tec)o(hniques)i(used)g(in)262 +1191 y(a)h(con)o(v)o(en)o(tional)f(c)o(hess)j(program.)k(I)16 +b(w)o(ould)e(also)h(advise)h(the)g(reader)h(to)e(follo)o(w)e(up)j(the)262 +1241 y(references)h(giv)o(en)e(for)f(a)h(more)e(complete)i(explanation)e(of)i +(the)g(tec)o(hniques)h(men)o(tioned,)262 1291 y(as)d(this)h(c)o(hapter)h(is)f +(b)o(y)g(no)f(means)g(in)o(tended)i(to)f(co)o(v)o(er)g(all)f(areas)h(in)g +(detail.)262 1427 y Fr(2.1)69 b(Mac)n(hine)22 b(Represen)n(tation)262 +1554 y Fp(A)c(vital)f(elemen)o(t)g(of)h(an)o(y)g(c)o(hess)i(program)c(is)i +(ho)o(w)g(the)h(c)o(hess)g(b)q(oard)g(and)f(pieces)h(are)262 +1603 y(represen)o(ted)d(in)e(the)g(mac)o(hine.)p 641 1697 673 +5 v 641 2361 5 665 v 646 1780 a Fg(0Z0Z0Z0Z)646 1863 y(Z0Z0Z0Z0)646 +1946 y(0Z0Z0Z0Z)646 2029 y(Z0Z0Z0Z0)646 2112 y(0Z0Z0Z0Z)646 +2195 y(Z0Z0Z0Z0)646 2278 y(0Z0Z0Z0Z)646 2361 y(Z0Z0Z0Z0)p 1310 +2361 V 641 2365 673 5 v 675 1749 a Fl(70)35 b(71)f(72)h(73)g(74)f(75)h(76)g +(77)675 1832 y(60)g(61)f(62)h(63)g(64)f(65)h(66)g(67)675 1914 +y(50)g(51)f(52)h(53)g(54)f(55)h(56)g(57)675 1997 y(40)g(41)f(42)h(43)g(44)f +(45)h(46)g(47)675 2080 y(30)g(31)f(32)h(33)g(34)f(35)h(36)g(37)675 +2163 y(20)g(21)f(22)h(23)g(24)f(25)h(26)g(27)675 2246 y(10)g(11)f(12)h(13)g +(14)f(15)h(16)g(17)675 2329 y(00)g(01)f(02)h(03)g(04)f(05)h(06)g(07)500 +2449 y Fp(Figure)14 b(2.1:)j(A)d(Chess)h(Board)f(indexed)h(b)o(y)e +(Co-ordinates.)957 2574 y(11)p eop +%%Page: 12 14 +12 13 bop 262 307 a Fp(Claude)16 b(Shannon)h(suggested)i(in)e(his)g(famous)e +(1949)h(pap)q(er)i([53)o(],)f(that)g(a)g(c)o(hess)i(b)q(oard)262 +357 y(could)f(b)q(e)i(represen)o(ted)h(in)e(64)f(b)o(ytes,)j(one)e(for)f(eac) +o(h)i(square)f(on)g(the)h(b)q(oard.)33 b(It)19 b(w)o(as)262 +407 y(prop)q(osed)13 b(that)f(eac)o(h)h(square)h(could)e(b)q(e)h(addressed)h +(b)o(y)e(the)h(co-ordinate)g(sc)o(heme)g(sho)o(wn)262 457 y(in)f(\014gure)i +(2.1.)j(Eac)o(h)d(square)g(also)e(had)h(an)g(asso)q(ciated)h(co)q(de)g(whic)o +(h)g(iden)o(ti\014es)f(the)h(t)o(yp)q(e)262 506 y(of)f(piece)i(\(if)e(an)o +(y\))h(o)q(ccup)o(ying)g(that)g(square.)20 b(The)14 b(suggested)i(piece)f(co) +q(des)g(can)g(b)q(e)f(seen)262 556 y(in)f(\014gure)h(2.2.)p +691 644 574 2 v 690 694 2 50 v 716 679 a Fm(Oc)n(cupie)n(d)h(by)p +956 694 V 50 w(White)p 1114 694 V 50 w(Black)p 1263 694 V 691 +695 574 2 v 690 743 2 50 v 716 729 a Fp(Empt)o(y)d(Sq)p 956 +743 V 129 w(0)p 1114 743 V 132 w(0)p 1263 743 V 691 745 574 +2 v 690 793 2 50 v 716 778 a(P)o(a)o(wn)p 956 793 V 210 w(1)p +1114 793 V 125 w(-1)p 1263 793 V 691 795 574 2 v 690 843 2 +50 v 716 828 a(Knigh)o(t)p 956 843 V 184 w(2)p 1114 843 V 125 +w(-2)p 1263 843 V 691 845 574 2 v 690 893 2 50 v 716 878 a(Bishop)p +956 893 V 186 w(3)p 1114 893 V 125 w(-3)p 1263 893 V 691 895 +574 2 v 690 943 2 50 v 716 928 a(Ro)q(ok)p 956 943 V 214 w(4)p +1114 943 V 125 w(-4)p 1263 943 V 691 944 574 2 v 690 993 2 +50 v 716 978 a(Queen)p 956 993 V 196 w(5)p 1114 993 V 125 w(-5)p +1263 993 V 691 994 574 2 v 690 1042 2 50 v 716 1027 a(King)p +956 1042 V 222 w(6)p 1114 1042 V 125 w(-6)p 1263 1042 V 691 +1044 574 2 v 616 1149 a(Figure)i(2.2:)j(A)d(table)g(sho)o(wing)f(piece)i(co)q +(des)262 1273 y(This)20 b(metho)q(d)g(is)h(kno)o(wn)f(as)h(the)h("mailb)q(o)o +(x")17 b(represen)o(tation.)40 b(By)22 b(storing)e(one)h(of)262 +1322 y(these)g(co)q(des)h(in)e(eac)o(h)g(square's)h(address,)i(an)o(y)d(c)o +(hess)i(p)q(osition)d(can)i(b)q(e)g(represen)o(ted)262 1372 +y(successfully)m(.)d(The)13 b(op)q(ening)f(c)o(hess)j(p)q(osition,)c(enco)q +(ded)j(using)f(this)f(format)f(can)i(b)q(e)g(seen)262 1422 +y(in)g(\014gure)h(2.3.)p 641 1516 673 5 v 641 2180 5 665 v +646 1599 a Fg(0Z0Z0Z0Z)646 1682 y(Z0Z0Z0Z0)646 1765 y(0Z0Z0Z0Z)646 +1848 y(Z0Z0Z0Z0)646 1931 y(0Z0Z0Z0Z)646 2014 y(Z0Z0Z0Z0)646 +2097 y(0Z0Z0Z0Z)646 2180 y(Z0Z0Z0Z0)p 1310 2180 V 641 2184 +673 5 v 663 1572 a Ff(\000)p Fl(4)27 b Ff(\000)p Fl(2)f Ff(\000)p +Fl(3)h Ff(\000)p Fl(5)g Ff(\000)p Fl(6)f Ff(\000)p Fl(3)h Ff(\000)p +Fl(2)g Ff(\000)p Fl(4)663 1655 y Ff(\000)p Fl(1)g Ff(\000)p +Fl(1)f Ff(\000)p Fl(1)h Ff(\000)p Fl(1)g Ff(\000)p Fl(1)f Ff(\000)p +Fl(1)h Ff(\000)p Fl(1)g Ff(\000)p Fl(1)663 1738 y(0)59 b(0)f(0)h(0)g(0)f(0)h +(0)g(0)663 1821 y(0)g(0)f(0)h(0)g(0)f(0)h(0)g(0)663 1904 y(0)g(0)f(0)h(0)g(0) +f(0)h(0)g(0)663 1986 y(0)g(0)f(0)h(0)g(0)f(0)h(0)g(0)663 2069 +y(+1)22 b(+1)f(+1)h(+1)g(+1)f(+1)h(+1)g(+1)663 2152 y(+4)g(+2)f(+3)h(+5)g(+6) +f(+3)h(+2)g(+4)425 2276 y Fp(Figure)14 b(2.3:)j(Mailb)q(o)o(x)12 +b(Represen)o(tation)j(of)e(the)i(Op)q(ening)f(P)o(osition.)324 +2399 y(Most)d(implemen)o(tati)o(ons)d(of)i(the)i(mailb)q(o)o(x)c(idea)i +(actually)g(use)h(a)g(10)f(x)h(12)f(b)q(oard.)17 b(This)262 +2449 y(10)12 b(x)i(12)f(sc)o(heme)g(giv)o(es)h(a)f(2)g(square)h(edge)g +(around)g(the)g(b)q(oard,)f(eac)o(h)h('o\013)f(b)q(oard')g(square)957 +2574 y(12)p eop +%%Page: 13 15 +13 14 bop 262 307 a Fp(con)o(taining)16 b(a)h(co)q(de)h(whic)o(h)g(iden)o +(ti\014es)g(it)f(as)g(not)h(b)q(eing)f(on)h(the)g(con)o(v)o(en)o(tional)e(b)q +(oard.)262 357 y(This)11 b(is)h(done)g(in)f(order)h(to)g(detect)h(mo)o(v)o +(es)e(o\013)g(the)i(edge)f(of)f(the)h(b)q(oard)g(simply)e(b)o(y)h(testing)262 +407 y(the)i(co)q(de)i(of)d(the)i(square)g(b)q(eing)f(mo)o(v)o(ed)f(to.)18 +b(The)c(2)f(square)h(edge)g(is)f(necessary)i(to)e(allo)o(w)262 +457 y(for)g(knigh)o(t)g(mo)o(v)o(es.)324 542 y(A)18 b(generally)g(more)f +(e\016cien)o(t)i(metho)q(d)e(of)h(represen)o(ting)i(a)e(c)o(hess)h(b)q(oard)g +(w)o(as)f(\014rst)262 592 y(suggested)f(b)o(y)g(a)f(Russian)g(group)g(in)g +(1970)g([2)o(].)25 b(It)17 b(in)o(v)o(olv)o(es)e(using)i(64)f(bits,)g(1)h +(bit)f(p)q(er)262 641 y(square,)d(to)f(represen)o(t)j(a)e(single)f(piece)h +(of)f(information)e(ab)q(out)j(all)e(squares.)19 b(Eac)o(h)13 +b(64)f(bit)262 691 y(represen)o(tation)g(is)g(kno)o(wn)e(as)i(a)f(bitmap.)k +(A)d(bitmap)d(could,)i(for)g(example,)f(represen)o(t)k(all)262 +741 y(squares)f(o)q(ccupied)g(b)o(y)g(a)f(white)g(knigh)o(t.)17 +b(Bit\(s\))c(b)q(eing)g(set)g(corresp)q(onding)g(to)g(whatev)o(er)262 +791 y(squares)e(are)g(o)q(ccupied)g(b)o(y)f(white)h(knigh)o(ts.)16 +b(Using)11 b(12)e(suc)o(h)j(bitmaps,)d(6)h(for)g(white)g(pieces)262 +841 y(and)j(6)h(for)f(blac)o(k)h(pieces,)g(an)o(y)g(p)q(osition)f(can)h(b)q +(e)h(represen)o(ted.)262 1013 y Fr(2.2)69 b(Mo)n(v)n(e)24 b(Generation)262 +1140 y Fp(Using)14 b(a)g(10)g(x)h(12)f(mailb)q(o)o(x)d(represen)o(tation,)16 +b(mo)o(v)o(es)d(are)i(generated)h(b)o(y)e(doing)g(a)g(series)262 +1190 y(of)d(adds)h(and)g(tests.)19 b(F)m(or)12 b(example,)f(to)h(generate)h +(all)e(white)i(knigh)o(t)e(mo)o(v)o(es)g(from)f(a)i(giv)o(en)262 +1239 y(square)j(the)g(o\013sets:)20 b(+8,)15 b(+19,)f(+21,)g(+12,)g +Ff(\000)p Fp(8,)g Ff(\000)p Fp(19,)g Ff(\000)p Fp(21)g(and)g +Ff(\000)p Fp(12)h(m)o(ust)e(b)q(e)i(added)262 1289 y(to)e(the)i(knigh)o(t's)e +(original)f(lo)q(cation,)g(see)j(\014gure)g(2.4.)p 641 1383 +673 5 v 641 2047 5 665 v 646 1466 a Fg(0Z0Z0Z0Z)646 1549 y(Z0Z0Z0Z0)646 +1632 y(0Z0Z0Z0Z)646 1715 y(Z0Z0Z0Z0)646 1798 y(0Z0Z0Z0Z)646 +1881 y(Z0Z0M0Z0)646 1964 y(0Z0Z0Z0Z)646 2047 y(Z0Z0Z0Z0)p 1310 +2047 V 641 2051 673 5 v 899 1692 a Fl(+19)81 b(+21)817 1775 +y(+8)269 b(+12)817 1941 y Ff(\000)p Fl(12)250 b Ff(\000)p Fl(8)899 +2024 y Ff(\000)p Fl(21)86 b Ff(\000)p Fl(19)447 2151 y Fp(Figure)14 +b(2.4:)j(Mo)o(v)o(e)d(generation)g(of)f(knigh)o(t)h(mo)o(v)o(es)e(using)i +(o\013sets.)262 2277 y(Eac)o(h)g(of)f(these)i(p)q(oten)o(tial)f("to-squares") +g(m)o(ust)f(b)q(e)h(tested)i(for)d(2)h(p)q(ossibilities:)324 +2360 y Ff(\017)20 b Fp(Is)14 b(the)h(to-square)f(on)g(the)h(b)q(oard)e(?)324 +2443 y Ff(\017)20 b Fp(Is)14 b(the)h(to-square)f(uno)q(ccupied)h(b)o(y)f(a)g +(friendly)f(piece)i(?)957 2574 y(13)p eop +%%Page: 14 16 +14 15 bop 262 307 a Fp(If)9 b(b)q(oth)h(these)h(tests)g(pro)o(v)o(e)f(to)g(b) +q(e)g(true,)h(then)g(a)e(pseudo)i(legal)e(mo)o(v)o(e)f(has)i(b)q(een)h +(generated.)262 357 y(Note)i(that)g(this)g(do)q(es)h(not)e(determine)h +(whether)i(the)e(mo)o(v)o(e)e(actually)h(lea)o(v)o(es)h(the)h(king)e(in)262 +407 y(c)o(hec)o(k,)h(hence)h(it)e(is)h(called)g(pseudo)g(legal.)k(Nearly)12 +b(all)g(programs)f(lea)o(v)o(e)i(this)g(calculation)262 457 +y(un)o(til)h(a)h(more)f(con)o(v)o(enien)o(t)i(time.)21 b(As)15 +b(y)o(ou)g(can)h(see)g(this)g(metho)q(d)e(of)h(mo)o(v)o(e)e(generation)262 +506 y(is)g(quiet)h(simple.)324 592 y(Using)f(a)f(bitmap)g(represen)o(tation,) +i(mo)o(v)o(e)d(generation)j(is)e(m)o(uc)o(h)g(more)g(e\016cien)o(t)i(with)262 +641 y(resp)q(ect)h(to)f(time,)e(than)h(with)g(the)h(previous)g(metho)q(d.)j +(The)d(reason)h(for)e(this)g(adv)n(an)o(tage)262 691 y(lies)e(in)g(the)h +(fact)g(that)f(mo)o(v)o(es)f(are)i(generated)h(b)o(y)f(using)f(bit)o(wise)g +(logical)f(op)q(erations)i(suc)o(h)262 741 y(as)h("and",)g("or")h(and)f +("not".)324 826 y(In)k(order)h(for)g(this)f(metho)q(d)g(to)g(generate)i(all)d +(white)h(knigh)o(t)g(mo)o(v)o(es)f(from)g(a)h(giv)o(en)262 +876 y(square,)f(a)g(bitmap)e(needs)j(to)f(b)q(e)h(fetc)o(hed)g(whic)o(h)f +(represen)o(ts)i(all)d(mo)o(v)o(es)g(a)g(knigh)o(t)g(can)262 +926 y(mak)o(e)10 b(from)g(the)i(giv)o(en)f(square,)i(call)e(this)h(bitmap)e +(1.)17 b(Next,)12 b(a)f(bitmap)f(is)i(fetc)o(hed)h(whic)o(h)262 +976 y(represen)o(ts)19 b(the)e(lo)q(cation)f(of)h(all)e(friendly)h(pieces.)29 +b(This)16 b(bitmap)f(is)i(negated)g(and)g(the)262 1026 y(result)d(is)h +(logically)c(and-ed)k(with)f(bitmap)e(1.)19 b(The)14 b(result)h(is)f(a)g +(bit,)g(set)h(in)f(the)h(lo)q(cation)262 1075 y(of)g(ev)o(ery)i(pseudo-legal) +f(mo)o(v)o(e)e(p)q(ossible)j(b)o(y)f(a)g(white)g(knigh)o(t)g(from)e(the)j +(giv)o(en)e(original)262 1125 y(square.)324 1210 y(As)i(can)g(b)q(e)h(seen)g +(this)f(metho)q(d)f(is)h(extremely)g(fast.)27 b(It)17 b(do)q(es)g(ho)o(w)o +(ev)o(er,)h(use)g(m)o(uc)o(h)262 1260 y(more)11 b(memory)e(than)k(the)f +(mailb)q(o)o(x)e(based)i(metho)q(d)g(b)q(ecause)i(the)e(mo)o(v)o(es)f(of)h +(ev)o(ery)h(piece)262 1310 y(from)h(an)o(y)i(giv)o(en)g(square)h(m)o(ust)f(b) +q(e)h(pre-stored.)27 b(The)17 b(metho)q(d)f(also)g(relies)h(on)f(a)g(large) +262 1360 y(w)o(ord)d(size,)h(suc)o(h)g(as)f(64)g(bits.)18 b(Although)13 +b(it)g(is)g(still)g(feasible)g(with)g(a)g(16)g(or)g(32)g(bit)g(w)o(ord,)262 +1410 y(it)j(is)i(signi\014can)o(tly)e(less)i(e\016cien)o(t.)29 +b(Also)17 b(it)g(is)g(v)o(ery)g(imp)q(ortan)o(t)f(for)h(the)h(computer)f(to) +262 1460 y(ha)o(v)o(e)11 b(a)h(mac)o(hine)f(instruction)h(whic)o(h)g(can)h +(giv)o(e)e(the)i(lo)q(cation)e(of)g(the)i(\014rst)g(bit)f(set)g(in)g(an)o(y) +262 1509 y(w)o(ord;)18 b(without)f(this,)h(the)g(metho)q(d)e(ma)o(y)f(b)q(e)j +(to)q(o)g(ine\016cien)o(t.)28 b(F)m(or)17 b(a)g(more)f(complete)262 +1559 y(explanation)c(of)i(this)g(tec)o(hnique)g(see)i([15)o(].)324 +1644 y(In)10 b(b)q(oth)g(metho)q(ds)f(the)h(mo)o(v)o(es)f(of)g(v)o(ector)i +(pieces)g(suc)o(h)f(as)g(bishops,)h(ro)q(oks)f(and)f(queens)262 +1694 y(are)14 b(more)f(complex)g(to)h(generate.)20 b(P)o(a)o(wn)14 +b(mo)o(v)o(es)f(and)h(sp)q(ecial)g(mo)o(v)o(es)f(suc)o(h)i(as)f(castling)262 +1744 y(and)c(en-passan)o(t)g(are)h(also)f(more)f(complicated,)g(but)i(can)f +(still)f(b)q(e)i(generated)h(using)e(either)262 1794 y(represen)o(tation.)262 +1967 y Fr(2.3)69 b(Ev)l(aluation)23 b(F)-6 b(unctions)262 2093 +y Fp(Giv)o(en)11 b(that)h(mo)o(v)o(es)f(can)i(b)q(e)g(generated)g(ho)o(w)f +(can)h(the)f(relativ)o(e)g(merits)g(of)g(eac)o(h)g(mo)o(v)o(e)f(b)q(e)262 +2143 y(determined)i(?)18 b(That)c(is)g(the)g(purp)q(ose)h(of)f(the)g +Fm(Evaluation)i(F)m(unction)p Fp(.)324 2228 y(Shannon)f(prop)q(osed)g(that)g +(an)g(ev)n(aluation)f(function)g(should)h(tak)o(e)g(accoun)o(t)h(of)e(suc)o +(h)262 2278 y(features)j(as)f(material,)e(mobilit)o(y)m(,)f(p)q(osition)j(of) +f(pieces)j(and)e(pa)o(wn)g(structure.)27 b(Eac)o(h)16 b(of)262 +2328 y(these)21 b(factors)f(required)i(an)d(imp)q(ortance)h(w)o(eigh)o(ting)f +(to)h(b)q(e)g(asso)q(ciated)h(with)f(them.)262 2377 y(Eac)o(h)e(factor)g(w)o +(ould)f(then)i(b)q(e)f(v)n(alued)g(dep)q(ending)g(on)g(its)g(presence)j(or)d +(absence)h(in)f(a)262 2427 y(giv)o(en)11 b(p)q(osition,)h(and)g(the)h(asso)q +(ciated)g(w)o(eigh)o(tings)f(applied.)17 b(All)12 b(the)h(v)n(alues)f(could)g +(then)957 2574 y(14)p eop +%%Page: 15 17 +15 16 bop 262 307 a Fp(b)q(e)14 b(added)h(together)g(to)f(giv)o(e)g(a)f +(single)h(discrete)i(v)n(alue)e(for)g(the)g(p)q(osition.)k(The)d(mo)o(v)o(e)e +(or)262 357 y(series)j(of)e(mo)o(v)o(es)g(whic)o(h)h(pro)q(duce)i(the)e(most) +f(desirable)i(p)q(osition)e(from)f(the)j(ev)n(aluation)262 +407 y(function's)d(p)q(oin)o(t)g(of)h(view)f(can)h(then)h(b)q(e)g(c)o(hosen.) +324 492 y(Almost)9 b(all)g(ev)n(aluation)g(functions)h(use)i(material)c(as)j +(an)f(o)o(v)o(erriding)f(factor,)i(it)f(is)g(v)o(ery)262 542 +y(rare)k(for)f(ev)o(en)i(the)f(sum)f(of)g(all)f(other)j(factors)f(to)g +(exceed)h(the)f(v)n(alue)f(of)h(one)g(pa)o(wn.)j(The)262 592 +y(reason)11 b(for)g(this)f(is)h(that)g(b)q(ecause)i(the)e(p)q(ositional)f(v)n +(alues)g(are)i(so)f(crude,)h(if)e(material)f(w)o(ere)262 641 +y(to)15 b(b)q(e)h(giv)o(en)f(a)o(w)o(a)o(y)f(in)h(exc)o(hange)h(for)g(p)q +(ositional)e(comp)q(ensation,)g(the)i(mac)o(hine)e(w)o(ould)262 +691 y(more)c(than)h(lik)o(ely)f(lose)h(b)q(ecause)i(its)e(ev)n(aluation)f(of) +h(the)h(comp)q(ensation)e(w)o(as)h(inaccurate.)324 777 y(In)k(the)g(fort)o(y) +g(y)o(ears)h(since)f(Shannon's)g(pap)q(er,)h(man)o(y)d(additional)g(ev)n +(aluation)h(func-)262 826 y(tion)19 b(factors)h(ha)o(v)o(e)f(b)q(een)i +(suggested)g(and)e(built)g(up)q(on.)36 b(They)20 b(include)g(king)e(safet)o +(y)m(,)262 876 y(o)q(ccupation)e(of)g(w)o(eak)g(squares,)i(dev)o(elopmen)o +(t,)e(piece)i(exc)o(hange)f(term)f(etc.)27 b(Ho)o(w)o(ev)o(er,)262 +926 y(ev)o(en)16 b(to)q(da)o(y)f(v)o(ery)g(few)h(ev)n(aluation)e(functions)h +(w)o(ould)g(ev)o(en)h(consider)g(exc)o(hanging)f(ma-)262 976 +y(terial)e(for)h(other)g(factors)g(suc)o(h)h(as)f(activ)o(e)g(pla)o(y)m(.)324 +1061 y(In)c(programs)e(whic)o(h)i(searc)o(h)h(only)e(a)g(few)h(p)q(ositions,) +g(the)g(ev)n(aluation)f(function)g(can)h(b)q(e)262 1111 y(quite)15 +b(complex)e(and)i(time)f(consuming.)19 b(Ho)o(w)o(ev)o(er,)d(all)d +(successful)k(programs)d(searc)o(h)i(a)262 1161 y(large)d(n)o(um)o(b)q(er)f +(of)h(p)q(ositions)g(and)h(therefore)g(can)g(only)f(sp)q(end)h(a)f(small)f +(amoun)o(t)f(of)i(time)262 1210 y(ev)n(aluating)i(eac)o(h)j(p)q(osition.)28 +b(F)m(or)17 b(this)h(reason)f(man)o(y)f(of)h(the)h(originally)d(simple)g +(ideas)262 1260 y(ha)o(v)o(e)d(remained)g(to)g(the)h(presen)o(t)i(da)o(y)d +(in)g(most)f(programs.)17 b(Some)11 b(ev)n(aluation)h(functions)262 +1310 y(do)i(not)h(ev)o(en)h(ev)n(aluate)f(the)h(whole)f(p)q(osition,)f(but)h +(rather)h(the)g(v)n(alue)f(of)f(a)h(mo)o(v)o(e)e(itself.)262 +1360 y(This)g(do)q(es)h(not,)f(ho)o(w)o(ev)o(er,)h(consider)g(other)h(in)o +(teractions)f(that)f(a)h(mo)o(v)o(e)d(ma)o(y)h(ha)o(v)o(e)i(on)f(a)262 +1410 y(p)q(osition.)23 b(F)m(or)16 b(example,)e(a)i(knigh)o(t)f(that)h(mo)o +(v)o(es)f(rev)o(ealing)h(a)f(bishop)h(pin)g(of)f(a)h(queen)262 +1460 y(to)i(a)g(king.)31 b(The)18 b(T)m(ec)o(hnology)g(program)f([22)o(],)h +(is)g(an)g(extreme)h(example)e(whic)o(h)h(only)262 1509 y(ev)n(aluates)c +(material)e(during)i(its)g(searc)o(h.)20 b(A)14 b(one)h(ply)e(p)q(ositional)g +(v)n(alue)h(is)g(com)o(bined)f(at)262 1559 y(the)h(end)g(of)g(the)g(searc)o +(h)h(to)f(distinguish)f(b)q(et)o(w)o(een)j(mo)o(v)o(es)c(of)h(equal)h +(material)e(outcome.)324 1644 y(A)f(go)q(o)q(d)h(explanation)e(of)h(a)g(con)o +(v)o(en)o(tional)g(c)o(hess)i(ev)n(aluation)d(function)h(can)h(b)q(e)g(found) +262 1694 y(in)j([4)o(].)24 b(Ev)n(aluation)15 b(functions)h(will)e(b)q(e)j +(lo)q(ok)o(ed)f(at)f(in)h(m)o(uc)o(h)f(greater)i(detail)e(in)h(future)262 +1744 y(c)o(hapters.)262 1917 y Fr(2.4)69 b(Lo)r(ok)24 b(Ahead)262 +2043 y Fp(In)16 b(order)h(to)f(lo)q(ok)g(ahead)g(in)o(to)g(p)q(ossibilities)g +(whic)o(h)g(ma)o(y)e(dev)o(elop)j(in)f(the)h(game,)e(it)h(is)262 +2093 y(necessary)c(generate)g(what)f(is)g(called)f(a)h("Game)d(tree".)18 +b(A)11 b(game)e(tree)j(is)f(a)f(diagrammati)o(c)262 2143 y(represen)o(tation) +i(of)e(p)q(ossible)h(mo)o(v)o(e)e(sequences.)20 b(This)11 b(is)f(ac)o(hiev)o +(ed)h(b)o(y)g(generating)g(mo)o(v)o(es)262 2193 y(for)k(the)h(side)f(to)g +(pla)o(y)m(,)f(then)i(replies)g(for)f(the)h(opp)q(onen)o(t,)g(then)g(coun)o +(ter)g(replies)g(and)g(so)262 2242 y(on,)c(dep)q(ending)h(on)g(the)g(depth)h +(of)e(lo)q(ok)g(ahead)g(required.)19 b(Figure)13 b(2.5)f(sho)o(ws)h(a)f(p)q +(ossible)957 2574 y(15)p eop +%%Page: 16 18 +16 17 bop 262 307 a Fp(lo)q(ok)12 b(ahead)i(game)f(tree)i(from)d(the)j(op)q +(ening)e(c)o(hess)j(p)q(osition.)623 1489 y(Figure)e(2.5:)j(A)d(P)o(ossible)g +(lo)q(ok)f(ahead)h(tree.)324 1607 y(Strictly)i(sp)q(eaking)g(the)h(game)e +(tree)j(is)e(not)g(a)g(tree,)i(but)e(rather)i(a)e(directed)h(graph.)262 +1657 y(This)12 b(is)h(b)q(ecause)i(some)d(no)q(des)i(can)f(b)q(e)h(reac)o +(hed)g(through)f(di\013eren)o(t)h(paths,)f(kno)o(wn)g(as)g(a)262 +1707 y(transp)q(osition)i(of)f(mo)o(v)o(es.)20 b(F)m(or)15 +b(the)h(purp)q(ose)g(of)f(consistency)h(with)f(other)h(material)d(on)262 +1757 y(the)h(sub)r(ject)h(I)f(will)f(also)g(use)i(the)f(term)f(searc)o(h)i +(or)f(game)f(tree.)324 1842 y(There)i(are)f(a)g(n)o(um)o(b)q(er)f(of)g(w)o(a) +o(ys)h(the)g(game)f(tree)i(can)f(b)q(e)g(expanded)h(and)f(searc)o(hed:)324 +1925 y Ff(\017)20 b Fl(Depth)c(\014rst)g(searc)o(h)p Fp(:)k(The)15 +b(\014rst)h(branc)o(h)g(is)f(explored)h(to)f(the)h(required)g(depth)365 +1975 y(b)q(efore)k(the)f(mac)o(hine)e(starts)j(on)e(the)h(next)h(unexplored)f +(branc)o(h)g(one)g(lev)o(el)f(up.)365 2024 y(This)c(con)o(tin)o(ues)g(un)o +(til)g(all)e(no)q(des)j(ha)o(v)o(e)f(b)q(een)h(explored)f(to)g(the)g +(required)h(depth.)324 2107 y Ff(\017)20 b Fl(Breadth)d(\014rst)f(searc)o(h)p +Fp(:)21 b(All)15 b(no)q(des)i(at)e(one)h(lev)o(el)g(are)g(examined)e(b)q +(efore)j(pro-)365 2157 y(gressing)i(one)f(lev)o(el)g(do)o(wn)f(the)i(tree)g +(and)f(examining)d(all)i(no)q(des)i(at)e(that)h(lev)o(el.)365 +2207 y(This)c(con)o(tin)o(ues)g(un)o(til)g(all)e(no)q(des)j(ha)o(v)o(e)f(b)q +(een)h(explored)f(to)g(the)g(required)h(depth.)324 2290 y Ff(\017)20 +b Fl(Best)13 b(\014rst)f(searc)o(h)p Fp(:)j(A)o(t)d(eac)o(h)g(step)h(the)f +(most)e(promising)g(no)q(de)i(is)f(selected)i(from)365 2340 +y(all)h(the)h(no)q(des)g(generated)h(so)f(far)f(in)g(the)h(tree.)22 +b(New)15 b(no)q(des)g(are)g(then)g(generated)365 2390 y(from)g(the)i +(selected)h(no)q(de,)g(and)e(again,)f(the)i(most)f(promising)e(no)q(de)j(is)f +(selected.)365 2440 y(A)f(no)q(de)g(can)f(b)q(e)h(selected)h(as)f(most)e +(promising)f(no)i(matter)g(where)h(in)f(the)h(tree)h(it)957 +2574 y(16)p eop +%%Page: 17 19 +17 18 bop 365 307 a Fp(o)q(ccurs.)19 b(Also)12 b(no)q(des)h(previously)f +(searc)o(hed,)i(but)f(rejected)h(as)e(unpromising,)f(ma)o(y)365 +357 y(again)i(b)q(ecome)h(promising)d(and)j(b)q(e)h(re-searc)o(hed.)324 +440 y(Note)20 b(that)g(the)h(required)f(depth)h(will)d(b)q(e)j(the)f +(limiting)d(factor)j(for)f(the)i(breadth)262 490 y(\014rst)e(and)g(depth)h +(\014rst)g(searc)o(hes.)36 b(The)20 b(b)q(est)g(\014rst)g(searc)o(h)g(m)o +(ust)e(ha)o(v)o(e)h(some)g(w)o(a)o(y)f(of)262 540 y(terminating,)11 +b(although)i(depth)i(ma)o(y)d(not)h(b)q(e)i(the)f(limiting)d(factor.)324 +625 y(I)g(kno)o(w)g(of)f(no)h(activ)o(e)h(programs)e(whic)o(h)h(uses)h(the)g +(breadth)g(\014rst)g(searc)o(h.)19 b(Most)11 b(c)o(hess)262 +675 y(programs)i(use)i(a)f(mo)q(di\014ed)f(v)o(ersion)i(of)f(the)h(depth)g +(\014rst)g(searc)o(h.)21 b(These)15 b(mo)q(di\014cations)262 +725 y(will)10 b(b)q(e)i(explained)g(in)f(c)o(hapter)i(3.)k(The)12 +b(b)q(est)h(\014rst)f(pro)q(cedure)i(is)e(used)g(in)g(some)f(selectiv)o(e)262 +774 y(searc)o(h)20 b(programs.)35 b(Of)20 b(particular)f(in)o(terest)i(is)f +(the)g(B*)g(tree)h(searc)o(h)g(algorithm)c([6],)262 824 y(a)g(dev)o(elopmen)o +(t)g(of)g(the)h(b)q(est)h(\014rst)g(searc)o(h.)30 b(This)18 +b(algorithm)d(attempts)i(to)h(allo)o(w)e(for)262 874 y(uncertain)o(t)o(y)e +(to)g(b)q(e)g(expressed)i(in)e(the)g(searc)o(h)h(tree.)324 +959 y(The)20 b(searc)o(h)g(of)f(a)g(t)o(w)o(o-pla)o(y)o(er)g(game)f(tree)i +(can)g(b)q(e)g(ac)o(hiev)o(ed)g(b)o(y)f(the)h(use)g(of)f(the)262 +1009 y(minim)o(ax)11 b(pro)q(cedure.)20 b(This)14 b(is)g(based)h(on)f(the)g +(idea)g(that)g(t)o(w)o(o)g(pla)o(y)o(ers)g(exist,)g(Max)g(and)262 +1059 y(Min.)23 b(Max)16 b(c)o(ho)q(oses)h(mo)o(v)o(es)e(leading)g(to)h(high)f +(scores,)j(where)f(as)f(Min)g(c)o(ho)q(oses)h(mo)o(v)o(es)262 +1109 y(leading)10 b(to)i(lo)o(w)f(scores.)19 b(Max)12 b(and)f(Min)h(c)o(ho)q +(ose)g(mo)o(v)o(es)f(at)h(alternate)g(lev)o(els)g(of)f(the)i(tree,)262 +1158 y(o)q(dd)g(and)h(ev)o(en)h(resp)q(ectiv)o(ely)m(.)262 +1331 y Fr(2.5)69 b(Selectiv)n(e)20 b(Searc)n(hing)262 1458 +y Fp(It)13 b(has)g(b)q(een)i(sho)o(wn)e(b)o(y)g(de)h(Gro)q(ot)f([16)o(,)f +(17])h(that)g(there)h(are)g(on)f(a)o(v)o(erage)g(38)g(mo)o(v)o(es)f(in)h(a) +262 1507 y(giv)o(en)d(p)q(osition,)h(y)o(et)g(only)f(an)h(a)o(v)o(erage)g(of) +g(1.76)e(go)q(o)q(d)i(mo)o(v)o(es)1229 1492 y Fk(1)1257 1507 +y Fp(exist)h(in)f(eac)o(h)g(p)q(osition.)17 b(A)262 1557 y(h)o(uman)11 +b(c)o(hess)k(master's)d(searc)o(h)j(tree)f(t)o(ypically)e(in)o(v)o(olv)o(es)g +(a)h(total)g(of)g(around)g(35)f(mo)o(v)o(es;)262 1607 y(v)n(ariations)18 +b(are)i(explored)h(to)e(an)h(a)o(v)o(erage)g(depth)g(of)g(7)f(plies.)36 +b(It)20 b(is)g(clear)g(from)e(the)262 1657 y(researc)o(h)e(of)f(de)g(Gro)q +(ot)g(that)g(the)h(h)o(uman)d(c)o(hess)k(master)d(is)h(v)o(ery)g(e\016cien)o +(t)h(at)f(selecting)262 1707 y(mo)o(v)o(es)8 b(to)h(explore)h(further.)17 +b(It)10 b(therefore)h(seems)e(logical)f(to)h(program)f(a)i(computer)f(whic)o +(h)262 1756 y(selects)18 b(the)g(most)e(plausible)g(mo)o(v)o(es)g(to)g(b)q(e) +i(explored)f(next)h(from)d(those)j(a)o(v)n(ailable.)25 b(If)262 +1806 y(suc)o(h)18 b(a)g(program)e(had)i(a)g(selection)h(mec)o(hanism)c(as)j +(sophisticated)h(as)f(a)g(master's,)g(it)262 1856 y(w)o(ould)c(almost)f +(certainly)i(pla)o(y)f(at)g(master)h(lev)o(el)g(or)f(ab)q(o)o(v)o(e.)21 +b(This)15 b(metho)q(d)f(is)h(kno)o(w)g(as)262 1906 y Fm(Sele)n(ctive)f(Se)n +(ar)n(ching)g Fp(or)g(a)g(Shannon)g(t)o(yp)q(e)g(B/C)g(strategy)m(.)324 +1991 y(The)j(Green)o(blatt)f(program)f(w)o(as)i(the)g(\014rst)g(successful)h +('selectiv)o(e')f(searc)o(hing)g(c)o(hess)262 2041 y(program)12 +b(whic)o(h)j(could)f(pla)o(y)f(at)h(a)h(reasonable)f(lev)o(el.)20 +b(The)14 b(program)f(placed)i(limits)d(on)262 2091 y(the)i(n)o(um)o(b)q(er)f +(of)g(mo)o(v)o(es)f(whic)o(h)i(could)f(b)q(e)i(searc)o(hed)g(at)e(di\013eren) +o(t)i(depths.)k(The)14 b(n)o(um)o(b)q(er)262 2141 y(of)h(branc)o(hes)j +(explored)f(in)f(the)i(\014rst)f(5)f(plies)h(w)o(ere)g(as)g(follo)o(ws:)22 +b(15,)16 b(15,)g(9,)g(9,)h(7.)26 b(This)262 2190 y(tap)q(ering)11 +b(of)h(the)g(searc)o(h)h(mean)o(t)e(that)h(deep)q(er)h(searc)o(hes)h(w)o(ere) +f(p)q(ossible)f(when)g(compared)262 2240 y(with)k(the)i(full)e(width)h +(approac)o(h)h(at)f(the)h(time.)26 b(In)18 b(the)g(early)f(1970's,)f(Hans)i +(Berliner)262 2290 y(considered)c(v)o(ery)g(selectiv)o(e)h(searc)o(hing)f(as) +f(the)i(w)o(a)o(y)d(forw)o(ard)h(and)h(exp)q(ected)h(the)f(searc)o(h)262 +2340 y(tree)j(w)o(ould)d(con)o(tain)i(less)g(than)g(500)f(no)q(des.)24 +b(It)16 b(is)g(ironic)f(that)h(Hans)g(is)f(no)o(w)h(a)f(ma)r(jor)p +262 2374 573 2 v 308 2401 a Fj(1)325 2413 y Fi(Grandmaster)8 +b(standard)h(mo)o(v)o(es)957 2574 y Fp(17)p eop +%%Page: 18 20 +18 19 bop 262 307 a Fp(force)11 b(b)q(ehind)g(Hitec)o(h,)h(a)f(v)o(ery)g +(strong)g(brute)h(force)g(searc)o(hing)f(program)e(from)h(Carnegie-)262 +357 y(Mellon)j(Univ)o(ersit)o(y)m(.)324 442 y(The)21 b(b)q(est)h(attempt)e +(at)g(selectiv)o(e)i(searc)o(hing)f(w)o(as)f(made)g(b)o(y)g(Wilkins)f([61],)i +(who)262 492 y(pro)q(duced)14 b(a)f(kno)o(wledge)g(based)h(program,)d(P)m +(ARADISE.)i(The)g(program)f(p)q(erformed)h(at)262 542 y(the)h(exp)q(ert)h +(lev)o(el)f(in)f(the)i(relativ)o(ely)e(narro)o(w)h(domain)d(of)j(tactical)f +(problems.)324 627 y(All)e(the)h(attempts)g(to)f(create)j(a)d(go)q(o)q(d)h +(selectiv)o(e)h(searc)o(h)g(program)d(to)i(pla)o(y)e(the)j(whole)262 +677 y(game)j(ha)o(v)o(e)j(hit)f(problems.)30 b(This)18 b(is)g(b)q(ecause)i +(it)e(is)g(vital)g(to)g(include)g(all)f(imp)q(ortan)o(t)262 +727 y(mo)o(v)o(es)f(in)g(the)i(selectiv)o(e)h(searc)o(h,)g(as)e(an)o(y)g(mo)o +(v)o(es)f(not)h(selected)i(can)f(nev)o(er)g(b)q(e)g(pla)o(y)o(ed)262 +777 y(o)o(v)o(er)13 b(the)i(b)q(oard.)j(This)c(can)g(cause)h(serious)f +(tactical)g(threats)h(to)f(b)q(e)g(o)o(v)o(erlo)q(ok)o(ed.)324 +862 y(Some)c(mo)o(v)o(es)h(ma)o(y)e(not)j(app)q(ear)g(immediately)c +(plausible,)j(although)g(they)h(ma)o(y)e(turn)262 912 y(out)16 +b(to)h(b)q(e)g(v)o(ery)g(strong)g(some)e(mo)o(v)o(es)h(later.)26 +b(F)m(or)16 b(these)i(reasons)g(man)o(y)d(go)q(o)q(d)h(mo)o(v)o(es)262 +961 y(are)d(o)o(v)o(erlo)q(ok)o(ed)f(and)h(not)g(selected)i(b)o(y)e(a)f +(plausible)g(mo)o(v)o(e)g(generator.)18 b(These)d(problems)262 +1011 y(are)f(b)q(est)h(illustrated)f(b)o(y)f(some)g(examples.)p +641 1105 673 5 v 641 1769 5 665 v 646 1188 a Fg(rm0Z0skZ)646 +1271 y(o0l0mpop)646 1354 y(bo0ZpZ0Z)646 1437 y(Z0opO0Z0)646 +1520 y(PZ0O0Z0Z)646 1603 y(Z0OBZNZ0)646 1686 y(0ZPZ0OPO)646 +1769 y(S0AQJ0ZR)p 1310 1769 V 641 1773 673 5 v 659 1892 a Fp(Figure)h(2.6:)j +(White)d(to)f(pla)o(y)g(and)h(win.)324 2010 y(In)g(\014gure)i(2.6,)d(white)i +(can)f(pla)o(y)g(1.)20 b(Bxh7+)15 b(Kxh7)f(2.)20 b(Ng5+)15 +b(Kg8)f(3.)20 b(Qh5)15 b(leading)262 2060 y(to)j(mate.)31 b(The)20 +b(initial)c(mo)o(v)o(e)h(ma)o(y)g(ho)o(w)o(ev)o(er,)j(not)e(app)q(ear)i +(plausible)e(to)g(a)h(selectiv)o(e)262 2110 y(searc)o(h)13 +b(program)e(b)q(ecause)k(it)d(app)q(ears)h(to)g(lose)f(the)i(bishop)e(for)g +(a)h(pa)o(wn.)k(An)o(y)12 b(plausible)262 2159 y(mo)o(v)o(e)i(generator)i +(whic)o(h)g(did)f(consider)h(Bxh7+)g(plausible)f(w)o(ould)g(need)i(to)f +('recognise')262 2209 y(in)e(\014gure)i(2.7,)e(an)h(almost)f(iden)o(tical)g +(p)q(osition,)h(that)g(1.)22 b(Bxh7+)16 b(Kxh7)f(2.)22 b(Ng5+)15 +b(Kg8)262 2259 y(3.)i(Qh5)d(fails)f(to)h(3.)j(...)g(Bd3.)957 +2574 y(18)p eop +%%Page: 19 21 +19 20 bop 641 315 673 5 v 641 980 5 665 v 646 399 a Fg(rm0Z0skZ)646 +482 y(o0l0mpop)646 565 y(bo0ZpZ0Z)646 648 y(Z0opO0Z0)646 731 +y(PZ0O0Z0Z)646 814 y(Z0OBZNZ0)646 897 y(0O0Z0OPO)646 980 y(S0AQJ0ZR)p +1310 980 V 641 984 673 5 v 605 1101 a Fp(Figure)14 b(2.7:)j(White)c(to)h(pla) +o(y)m(,)e(no)i(forced)g(win.)324 1218 y(These)f(di\016culties)g(illustrate)f +(that)g(to)h(k)o(eep)g(the)g(branc)o(hing)f(factor)g(do)o(wn)g(the)h(plau-) +262 1268 y(sible)g(mo)o(v)o(e)f(generator)i(needs)h(to)e(b)q(e)h(v)o(ery)f +(selectiv)o(e,)i(while)d(not)i(excluding)f(k)o(ey)g(mo)o(v)o(es.)262 +1318 y(A)o(t)f(the)g(presen)o(t)i(time)c(w)o(e)i(do)g(not)g(ha)o(v)o(e)g(the) +g(capabilit)o(y)e(to)i(instill)f(enough)h(h)o(uman)e(c)o(hess)262 +1368 y(kno)o(wledge)j(in)o(to)g(a)h(program)e(to)i(mak)o(e)e(this)i(metho)q +(d)f(e\013ectiv)o(e)j(for)d(the)i(whole)e(game.)262 1540 y +Fr(2.6)69 b(F)-6 b(ull)22 b(Width)g(Searc)n(hing)262 1667 y +Fp(Instead)10 b(of)g(selecting)g(promising)e(lines)i(to)g(in)o(v)o(estigate)g +(further,)h(it)e(is)h(p)q(ossible)g(to)g(explore)262 1716 y(all)15 +b(mo)o(v)o(es)g(to)h(a)g(giv)o(en)f(depth.)26 b(This)16 b(Shannon)g(t)o(yp)q +(e)h(A)f(metho)q(d)g(is)g(kno)o(wn)g(as)g(a)g Fm(F)m(ul)r(l)262 +1766 y(Width)f(Se)n(ar)n(ch)f Fp(or)g(a)f Fm(Brute)i(F)m(or)n(c)n(e)f(Se)n +(ar)n(ch)p Fp(.)324 1851 y(This)f(metho)q(d)g(is)h(m)o(uc)o(h)e(easier)j(to)f +(implem)o(en)o(t)e(than)h(a)h(selectiv)o(e)h(searc)o(h.)k(Ho)o(w)o(ev)o(er,) +262 1901 y(in)g(order)i(for)f(pla)o(y)g(to)g(b)q(e)h(of)e(a)h(reasonable)h +(standard)g(a)f(relativ)o(ely)f(deep)i(searc)o(h)h(is)262 1951 +y(necessary)m(.)34 b(The)20 b(problem)d(here)j(is)f(that)g(the)h(n)o(um)o(b)q +(er)e(of)g(no)q(des)i(in)o(v)o(olv)o(ed)e(in)g(a)h(full)262 +2001 y(width)11 b(searc)o(h)i(gro)o(ws)e(exp)q(onen)o(tially)g(with)g(depth.) +18 b(In)12 b(a)f(tree)i(of)e(uniform)f(width)h(38,)g(the)262 +2051 y(searc)o(h)j(tree)h(will)d(con)o(tain)h(o)o(v)o(er)h(3)f(billion)f(no)q +(des)i(after)g(just)g(6)f(plies.)18 b(T)m(o)13 b(cut)h(do)o(wn)g(this)262 +2100 y(exp)q(onen)o(tial)c(explosion,)g(v)n(arious,)g(often)h(complicated)e +(tec)o(hniques)j(need)g(to)e(b)q(e)i(used.)18 b(In)262 2150 +y(fact,)c(a)g(go)q(o)q(d)g(full)f(width)h(searc)o(h)h(requires)h(man)o(y)c +(supp)q(ort)k(routines)f(to)f(enable)h(a)f(deep)262 2200 y(searc)o(h)h(to)f +(b)q(e)g(completed)g(in)g(a)g(reasonable)g(time)f(\(3)h(min)o(utes\).)k +(Using)c(the)g(tec)o(hniques)262 2250 y(curren)o(tly)g(a)o(v)n(ailable)c(it)j +(is)g(p)q(ossible)g(to)g(reduce)i(the)f(a)o(v)o(erage)f(branc)o(hing)g +(factor)g(of)f(a)h(full)262 2300 y(width)h(searc)o(h)i(from)d(38)i(to)g +(around)g(6)f(to)h(8)g(branc)o(hes.)22 b(This)15 b(is)g(ac)o(hiev)o(ed)g +(through)g(the)262 2350 y(use)f(of)g(bac)o(kw)o(ard)f(pruning)h(tec)o +(hniques)h(whic)o(h)f(will)e(b)q(e)j(explained)f(in)f(detail)g(in)h(a)g +(later)262 2399 y(c)o(hapter.)j(Some)10 b(selectiv)o(e)i(searc)o(h)g +(programs)d(actually)h(ha)o(v)o(e)h(a)f(branc)o(hing)h(factor)g(higher)262 +2449 y(than)j(8)g(e.g.)20 b(Green)o(blatt's)15 b(MacHac)o(k.)20 +b(In)15 b(suc)o(h)g(cases)h(a)f(full)e(width)h(searc)o(h)i(can)f(reac)o(h)957 +2574 y(19)p eop +%%Page: 20 22 +20 21 bop 262 307 a Fp(at)14 b(least)i(as)f(deep)h(as)f(the)h(selectiv)o(e)g +(searc)o(h,)g(without)f(an)o(y)g(of)f(the)i(p)q(ossible)f(dra)o(wbac)o(ks)262 +357 y(whic)o(h)e(w)o(ere)i(outlined)f(in)f(the)h(previous)h(section.)262 +530 y Fr(2.7)69 b(Quiescence)262 656 y Fp(A)19 b(p)q(osition)f(is)h +(considered)h Fm(Quiesc)n(ent)f Fp(if)f(it)g(is)h(quiet)g(\(inactiv)o(e\).)33 +b(A)19 b(quiet)g(p)q(osition)262 706 y(could)10 b(b)q(e)i(one)f(where)h(no)f +(imm)o(ediate)e(threats)j(exist.)17 b(It)11 b(is)g(v)o(ery)g(imp)q(ortan)o(t) +e(in)i(an)o(y)f(c)o(hess)262 756 y(program)k(to)h(determine)h(whether)h(a)f +(p)q(osition)f(is)g Fm(Quiesc)n(ent)h Fp(or)g(not,)f(b)q(efore)i(applying)262 +805 y(the)12 b(ev)n(aluation)f(function.)17 b(F)m(or)12 b(example,)f(it)h(w)o +(ould)f(b)q(e)i(wrong)f(to)g(apply)g(an)g(ev)n(aluation)262 +855 y(function)k(to)g(a)g(p)q(osition)g(where)i(a)e(capture)i(had)e(just)h +(tak)o(en)f(place)h(without)f(c)o(hec)o(king)262 905 y(if)f(a)h(piece)h(can)f +(b)q(e)h(recaptured.)26 b(P)o(ositions)16 b(can)h(also)e(b)q(e)i(un-quiescen) +o(t)g(on)f(p)q(ositional)262 955 y(grounds,)d(although)g(the)i(detection)g +(of)e(suc)o(h)i(p)q(ositions)f(is)f(far)h(more)f(complicated)g(than)262 +1005 y(for)g(quiescence)j(in)o(v)o(olving)c(tactics.)324 1090 +y(An)i(ev)n(aluation)f(function)h(should)g(only)g(b)q(e)g(applied)g(in)g +(quiescen)o(t)h(p)q(ositions.)k(Most)262 1140 y(curren)o(t)g(programs)d +(resolv)o(e)j(this)f(problem)e(of)h(quiescence)j(b)o(y)e(doing)f(what)g(is)h +(kno)o(wn)262 1190 y(as)c(a)g(quiescence)i(searc)o(h.)k(That)14 +b(is,)g(a)g(limited)e(searc)o(h)j(is)f(p)q(erformed)g(un)o(til)f(a)h +(quiescen)o(t)262 1239 y(p)q(osition)j(is)i(reac)o(hed.)33 +b(Only)19 b(at)f(that)h(stage)g(are)g(factors)g(suc)o(h)g(as)g(material)e +(balance)262 1289 y(ev)n(aluated.)h(In)c(principle)g(this)h(idea)f(is)g(an)g +(excellen)o(t)h(one.)k(Ho)o(w)o(ev)o(er,)14 b(in)g(practice)h(most)262 +1339 y(programs)e(only)h(p)q(erform)h(what)f(is)h(kno)o(wn)g(as)g(a)g +(capture)h(searc)o(h)g(at)f(horizon)f(no)q(des)i(of)262 1389 +y(their)d(main)e(searc)o(h)k(in)d(order)i(to)f(resolv)o(e)h(the)g(quiescence) +h(problem.)h(In)e(suc)o(h)g(a)e(capture)262 1439 y(searc)o(h)g(the)g(side)g +(to)f(mo)o(v)o(e)f(can)h(either)h(stop)g(the)g(searc)o(h)g(along)e(a)h(branc) +o(h)h(and)f(accept)i(the)262 1488 y(curren)o(t)i(ev)n(aluation)e(score)i(or)f +(mak)o(e)e(more)h(capture)j(mo)o(v)o(es.)h(When)d(no)g(captures)h(exist)262 +1538 y(for)j(the)i(side)g(to)f(mo)o(v)o(e,)f(the)i(p)q(osition)e(is)h +(considered)i(quiescen)o(t.)35 b(This)19 b("quiescence)262 +1588 y(searc)o(h")i(signi\014can)o(tly)e(impro)o(v)o(es)g(the)i(abilit)o(y)e +(of)h(the)h(c)o(hess)h(programs)d(that)h(use)h(it.)262 1638 +y(Ho)o(w)o(ev)o(er,)12 b(man)o(y)d(threats)k(can)f(b)q(e)g(o)o(v)o(erlo)q(ok) +o(ed)f(b)o(y)h(suc)o(h)g(a)g(searc)o(h,)g(for)g(example,)e(a)h(mo)o(v)o(e)262 +1688 y(forking)h(a)i(king)f(and)h(queen.)262 1860 y Fr(2.8)69 +b(Horizon)23 b(E\013ect)262 1987 y Fp(Chess)13 b(programs)e(t)o(ypically)f +(su\013er)j(from)e(what)h(is)g(kno)o(wn)f(as)h(the)h Fm(Horizon)g(E\013e)n +(ct)p Fp(.)18 b(This)262 2037 y(e\013ect)13 b(is)e(b)q(est)i(describ)q(ed)h +(using)d(an)g(example.)16 b(In)c(\014gure)g(2.8,)f(it)g(can)h(b)q(e)g(seen)h +(that)f(blac)o(k)262 2086 y(is)j(faced)i(with)e(the)i(certain)g(loss)f(of)f +(its)h(queen)h(for)f(at)g(most)f(a)g(white)h(ro)q(ok.)25 b(Ho)o(w)o(ev)o(er,) +262 2136 y(if)15 b(a)h(program)f(searc)o(hing)h(2)g(plies)h(w)o(ere)g(pla)o +(ying)d(blac)o(k)i(it)g(w)o(ould)g(think)f(it)h(could)g(sa)o(v)o(e)262 +2186 y(the)g(queen)h(b)o(y)e(pla)o(ying)f(Bxh2+.)24 b(This)16 +b(app)q(ears)h(to)e(the)i(program)d(to)h(sa)o(v)o(e)h(the)h(queen)262 +2236 y(b)q(ecause)e(its)f(loss)g(is)g(no)o(w)f(pushed)i(o)o(v)o(er)f(the)g +(program's)f(searc)o(h)i(horizon.)957 2574 y(20)p eop +%%Page: 21 23 +21 22 bop 641 315 673 5 v 641 980 5 665 v 646 399 a Fg(rZ0Z0skZ)646 +482 y(opZ0Zpop)646 565 y(0Z0apm0Z)646 648 y(Z0o0Z0Z0)646 731 +y(0Z0ZPZ0Z)646 814 y(ZPAPZ0Z0)646 897 y(qZPZBOPO)646 980 y(S0ZQZRJ0)p +1310 980 V 641 984 673 5 v 432 1102 a Fp(Figure)14 b(2.8:)j(Illustration)c +(of)h(the)g(Horizon)g(E\013ect,)h(Blac)o(k)f(to)f(Pla)o(y)m(.)324 +1221 y(This)g(horizon)g(e\013ect)i(is)f(particularly)e(prev)n(alen)o(t)i(in)f +(programs)f(whic)o(h)h(explore)h(v)n(ari-)262 1271 y(ations)k(to)g(a)g +(\014xed)h(depth.)32 b(This)19 b(is)f(b)q(ecause)i(mo)o(v)o(es)e(whic)o(h)g +(dela)o(y)g(the)h(loss)f(b)q(ey)o(ond)262 1320 y(the)f(depth)h(limit)c(are)j +(considered)i(go)q(o)q(d.)26 b(A)17 b(program)f(whic)o(h)g(can)i(extend)g +(its)e(searc)o(h)262 1370 y(depth)h(along)e(v)n(ariations)h(whic)o(h)g(lead)h +(to)f(non-quiescen)o(t)i(p)q(ositions)e(is)h(b)q(etter)h(able)f(to)262 +1420 y(a)o(v)o(oid)d(problems)h(caused)i(b)o(y)f(the)h(horizon)e(e\013ect.)27 +b(A)16 b(program's)e(abilit)o(y)g(to)i(minim)o(ise)262 1470 +y(the)f(horizon)h(e\013ect)h(is)e(therefore)i(largely)d(dep)q(enden)o(t)j(on) +e(its)h(de\014nition)f(of)f(quiescence)262 1520 y(and)f(ho)o(w)h +(non-quiescen)o(t)h(p)q(ositions)e(are)h(resolv)o(ed.)957 2574 +y(21)p eop +%%Page: 22 24 +22 23 bop 262 654 a Fn(Chapter)34 b(3)262 897 y Fo(Adv)-7 b(anced)39 +b(T)-10 b(opics)262 1148 y Fp(This)11 b(c)o(hapter)i(con)o(tains)f(b)q(oth)g +(an)f(explanation)g(and)g(review)i(of)e(some)g(of)g(the)h(tec)o(hniques)262 +1198 y(I)k(ha)o(v)o(e)h(researc)o(hed)i(during)e(m)o(y)e(in)o(v)o(estigation) +h(in)o(to)g(tactical)g(and)h(p)q(ositional)f(ev)n(alua-)262 +1248 y(tion.)26 b(Some)15 b(of)h(the)i(tec)o(hniques)g(represen)o(t)h(the)e +(state)h(of)e(the)h(art,)g(others)h(ha)o(v)o(e)e(b)q(een)262 +1298 y(rejected)h(b)o(y)e(the)h(computer)f(c)o(hess)i(comm)o(unit)o(y)12 +b(as)j(no)h(longer)f(b)q(eing)g(suitable.)22 b(These)262 1347 +y(older)11 b(tec)o(hniques)i(are)f(in)o(v)o(estigated)g(b)q(ecause)h(they)f +(ma)o(y)e(con)o(tain)h(ideas)h(relev)n(an)o(t)g(to)f(m)o(y)262 +1397 y(pro)r(ject,)i(and)f(ma)o(y)f(in)h(fact)h(still)f(b)q(e)h(useful)g +(when)g(com)o(bined)e(with)h(some)g(other)h(ideas)g(of)262 +1447 y(m)o(y)f(o)o(wn.)262 1620 y Fr(3.1)69 b(T)-6 b(ree)22 +b(Searc)n(hing)262 1746 y Fp(This)16 b(section)i(co)o(v)o(ers)g(tec)o +(hniques)g(for)e(searc)o(hing)h(the)h(game)d(tree.)28 b(The)18 +b(basic)f(alpha{)262 1796 y(b)q(eta)j(searc)o(h)g(algorithm)d(is)i(explained) +h(and)f(v)n(arious)g(enhancemen)o(ts)h(o)o(v)o(er)f(the)h(basic)262 +1846 y(algorithm)14 b(are)j(presen)o(ted.)28 b(These)18 b(bac)o(kw)o(ard)f +(pruning)f(algorithms)e(are)j(most)f(appli-)262 1896 y(cable)g(to)g(full)f +(width)h(searc)o(hing.)25 b(This)16 b(section)h(also)e(con)o(tains)h(a)g +(brief)g(description)h(of)262 1945 y(t)o(w)o(o)c(forw)o(ard)g(pruning)h(tec)o +(hniques)h(more)e(applicable)g(to)h(an)g(algorithmic)d(approac)o(h)j(to)262 +1995 y(selectiv)o(e)g(searc)o(hing.)262 2147 y Fu(3.1.1)55 +b(Alpha)19 b(Beta)f(Searc)n(h)h(Algorithm)262 2259 y Fp(In)11 +b(1958,)g(it)h(w)o(as)f(disco)o(v)o(ered)i([42)o(])f(that)g(large)f(sa)o +(vings)h(could)f(b)q(e)i(made)d(o)o(v)o(er)i(the)h(normal)262 +2309 y(minim)o(ax)f(pro)q(cedure)18 b(b)o(y)e(the)h(use)f(of)g(what)f(is)h +(no)o(w)g(kno)o(wn)f(as)h(the)h(Alpha-Beta)f(\()p Fh(\013\014)r +Fp(\))262 2359 y(searc)o(h)j(algorithm.)30 b(The)19 b Fh(\013\014)i +Fp(algorithm)16 b(uses)k(t)o(w)o(o)e(b)q(ounds,)i(a)e(lo)o(w)o(er)g(b)q(ound) +h(called)262 2408 y(alpha)d(and)h(an)g(upp)q(er)h(b)q(ound)f(called)g(b)q +(eta.)29 b(These)18 b(b)q(ounds)g(form)d(a)i(searc)o(h)h(windo)o(w)957 +2574 y(22)p eop +%%Page: 23 25 +23 24 bop 262 307 a Fp(within)18 b(whic)o(h)i(the)g(true)h(searc)o(h)g(tree)g +(v)n(alue)e(is)g(kno)o(wn)g(to)h(lie.)35 b(Kn)o(uth)20 b(and)f(Mo)q(ore)262 +357 y(giv)o(e)d(an)i(in)e(depth)j(analysis)d(of)h(this)g(bac)o(kw)o(ard)h +(pruning)f(algorithm)e(in)h([33)o(].)28 b(Figure)262 407 y(3.1)14 +b(illustrates)h(the)h(application)e(of)h(the)h Fh(\013\014)i +Fp(b)q(ounds.)23 b(The)16 b(\014gure)g(uses)g(the)g(negamax)262 +457 y(con)o(v)o(en)o(tion)d(where)j(eac)o(h)f(subtree)h(returns)g(its)e(v)n +(alue)f(negated.)20 b(This)14 b(allo)o(ws)f(eac)o(h)i(side)262 +506 y(to)g(maxim)o(ise)e(its)i(score)h(at)g(eac)o(h)f(lev)o(el)g(of)g(the)h +(tree,)g(simplifying)c(the)k(implemen)o(tation)262 556 y(of)d(the)h +(algorithm.)i Fh(\013)d Fp(and)h Fh(\014)i Fp(are)f(initially)c(set)k(to)f +Ff(\0001)f Fp(and)h(+)p Ff(1)g Fp(resp)q(ectiv)o(ely)m(.)557 +1447 y(Figure)g(3.1:)j(An)d(example)f(Negamax)f(Searc)o(h)j(tree.)324 +1542 y(In)e(the)h(\014gure,)f(no)q(des)h(C)g(and)f(D)g(are)g(searc)o(hed)i +(and)e(ev)n(aluated,)g(resulting)g(in)g(scores)262 1592 y(of)g +Ff(\000)p Fp(5)i(and)f Ff(\000)p Fp(2)h(resp)q(ectiv)o(ely)m(.)21 +b(Using)14 b(negamax)f(a)h(score)i(of)e(+2)h(is)f(bac)o(k)o(ed)h(up)g(to)f +(no)q(de)262 1642 y(B.)j(This)g(v)n(alue)g(then)i(replaces)f(the)h +Fh(\013)e Fp(v)n(alue)g(at)g(ply)g(1)g(b)q(ecause)j(it)d(is)g(larger)h(than)f +Fh(\013)p Fp(.)262 1691 y(No)q(de)d(F)f(is)h(then)g(searc)o(hed,)h(whic)o(h)f +(pro)q(duces)h(a)e(v)n(alue)g(of)g(+1.)18 b(This)c(v)n(alue)f(is)g(not)h +(large)262 1741 y(enough)f(to)f(a\013ect)i(the)g Fh(\013)e +Fp(v)n(alue)g(at)h(ply)f(1)h(ab)q(o)o(v)o(e.)k(Hence,)e(there)f(is)f(no)f +(reason)i(to)e(searc)o(h)262 1791 y(no)q(de)18 b(G)g(since)h(the)g(resulting) +f(v)n(alue)g(of)g(no)q(de)g(E)h(can)f(only)g(b)q(e)h Ff(\024)g(\000)p +Fp(1)f(\(negamaxed\).)262 1841 y(Therefore,)h(no)q(de)f(G)f(is)g(said)g(to)h +(b)q(e)g(cut)g(o\013)f(or)h(pruned)g(from)e(the)i(searc)o(h)h(tree.)30 +b(The)262 1891 y(negamax)12 b(approac)o(h)i(has)g(the)h(e\013ect)g(of)f +(making)d(all)i(cut)i(o\013s,)e Fh(\014)k Fp(cut)e(o\013s.)j(The)d(pseudo)262 +1940 y(co)q(de)f(for)g(the)g Fh(\013\014)i Fp(algorithm)c(can)i(b)q(e)g +(found)g(in)f(\014gure)i(3.2.)324 2026 y(The)10 b(normal)f(full)g(width)h +(minim)o(ax)d(pro)q(cedure,)12 b(applied)e(to)g(a)g(tree)h(of)f(uniform)e +(width)262 2075 y(W)15 b(and)h(depth)g(d,)g(w)o(ould)g(ha)o(v)o(e)f(to)h +(searc)o(h)h Fh(W)1020 2060 y Fe(d)1055 2075 y Fp(terminal)e(no)q(des.)25 +b(The)16 b Fh(\013\014)i Fp(algorithm)262 2125 y(under)13 b(optimal)e +(conditions)h(can)i(prune)g(a)e(tree)j(to)e(the)g(exten)o(t)h(that)f(only)g +(the)g(follo)o(wing)262 2175 y(terminal)f(no)q(des)i(need)h(to)f(b)q(e)g +(examined)f([13)o(]:)324 2248 y Ff(\017)20 b Fh(W)410 2233 +y Fk(\()p Fe(d)p Fk(+1\))p Fe(=)p Fk(2)540 2248 y Fp(+)10 b +Fh(W)627 2233 y Fk(\()p Fe(d)p Fd(\000)p Fk(1\))p Fe(=)p Fk(2)757 +2248 y Ff(\000)g Fp(1)k(at)f(o)q(dd)h(depths.)324 2326 y Ff(\017)20 +b Fp(2)9 b Ff(\001)g Fh(W)461 2311 y Fe(d=)p Fk(2)523 2326 +y Ff(\000)h Fp(1)j(at)h(ev)o(en)h(depths.)262 2399 y(This)g(is)h(kno)o(wn)f +(as)h(the)h(minim)o(al)12 b(searc)o(h)17 b(tree.)25 b(T)m(o)16 +b(ac)o(hiev)o(e)g(this)g(result,)g(most)f(mo)o(v)o(es)262 2449 +y(m)o(ust)10 b(b)q(e)h(searc)o(hed)i(in)e(a)g(descending)h(order)g(of)f +(merit.)16 b(Of)11 b(course)i(the)e(true)h(merit)e(of)h(an)o(y)957 +2574 y(23)p eop +%%Page: 24 26 +24 25 bop 262 503 a Fl(F)l(unction)11 b Fp(AlphaBeta\(P)j(:)g +Fl(p)q(osition)p Fp(;)c Fh(\013)p Fp(,)j Fh(\014)k Fp(:)h Fl(in)o(teger)p +Fp(\))11 b Fl(returns)j(in)o(teger)262 603 y(v)m(ar)321 653 +y Fp(m)82 b(:)18 b Fl(mo)o(v)o(e)321 702 y Fp(score,)321 752 +y(b)q(est)44 b(:)18 b Fl(in)o(teger)262 852 y(b)q(egin)321 +952 y(if)12 b Fp(\(T)m(erminal\(P\)\))446 b(/*)13 b Fm(Is)i(p)n(osition)g(P)g +(terminal)f(?)19 b Fp(*/)380 1001 y Fl(return)11 b Fp(\(Ev)n(aluate\(P)m(,)i +Fh(\013)p Fp(,)g Fh(\014)r Fp(\)\))189 b(/*)13 b Fm(R)n(eturn)i(sc)n(or)n(e)g +(at)f(le)n(af)h(no)n(des)f Fp(*/)321 1051 y Fl(endif)321 1151 +y Fp(GenerateMo)o(v)o(es\(P\))408 b(/*)13 b Fm(Gener)n(ate)i(al)r(l)f(moves)i +(in)e(p)n(osition)h(P)f Fp(*/)321 1201 y(b)q(est)h(:=)e Ff(\0001)524 +b Fp(/*)13 b Fm(b)n(est)i(move)g(sc)n(or)n(e)f(not)i(yet)e(known)h +Fp(*/)321 1250 y Fl(for)g(eac)o(h)g(mo)o(v)o(e)e Fp(m)f Fl(do)380 +1300 y Fp(/*)h Fm(Se)n(ar)n(ch)i(move)g(m)g(using)g(ne)n(gamax)h(c)n +(onvention)g(\(p)n(ar)n(ameters)e(r)n(everse)n(d\))f Fp(*/)380 +1350 y(score)i(:=)e Ff(\000)p Fp(AlphaBeta\()p Fh(P)810 1356 +y Fe(m)842 1350 y Fp(,)h Ff(\000)p Fh(\014)r Fp(,)g Ff(\000)p +Fl(max)p Fp(\()p Fh(\013)p Fp(,)g(b)q(est\)\))380 1400 y Fl(if)e +Fp(\(score)k Fh(>)e Fp(b)q(est\))439 1450 y(b)q(est)h(:=)e(score)391 +b(/*)13 b Fm(Stor)n(e)i(b)n(est)f(sc)n(or)n(e)h(found)f Fp(*/)439 +1499 y Fl(if)e Fp(\(b)q(est)k Ff(\025)11 b Fh(\014)r Fp(\))498 +1549 y Fl(return)g Fp(\(b)q(est\))315 b(/*)13 b Fh(\014)18 +b Fm(cut)d(o\013)g(:)k(r)n(eturn)14 b(b)n(est)h(sc)n(or)n(e)e +Fp(*/)439 1599 y Fl(endif)380 1649 y(endif)321 1699 y(endfor)321 +1798 y(return)e Fp(\(b)q(est\))492 b(/*)13 b Fm(R)n(eturn)i(sc)n(or)n(e)g(of) +f(b)n(est)h(move)g(found)g Fp(*/)262 1898 y Fl(end)d Fp(AlphaBeta)262 +2047 y(The)i Fl(max)p Fp(\()p Fh(\013)p Fp(,)f(b)q(est\))i(op)q(eration)f +(represen)o(ts)j(the)d('fail)e(soft')h(condition)h(whic)o(h)f(allo)o(ws)g +(the)262 2097 y(searc)o(h)i(at)e(eac)o(h)i(lev)o(el)e(to)h(return)h(the)g(b)q +(est)g(v)n(alue)e(found,)g(ev)o(en)h(if)f(this)h(is)g(less)h(than)f +Fh(\013)p Fp(.)552 2280 y(Figure)g(3.2:)j(Pseudo)d(co)q(de)h(for)f(the)g +Fh(\013\014)i Fp(Algorithm.)957 2574 y(24)p eop +%%Page: 25 27 +25 26 bop 262 307 a Fp(mo)o(v)o(e)12 b(is)j(not)f(kno)o(wn)g(b)q(efore)i(it)e +(is)g(searc)o(hed.)22 b(Therefore,)16 b(heuristics)g(m)o(ust)d(b)q(e)i(used)h +(to)262 357 y(ac)o(hiev)o(e)d(this)h(ordering.)k(In)13 b(practice)i(the)f +Fh(\013\014)i Fp(algorithm)11 b(searc)o(hes)16 b(a)d(tree)i(3)e(to)g(6)h +(times)262 407 y(larger)j(than)h(the)h(minim)o(al)14 b(tree)19 +b(b)q(ecause)h(of)d(sub{optimal)e(ordering.)30 b(Ho)o(w)o(ev)o(er,)19 +b(the)262 457 y(enormous)14 b(sa)o(vings)h(pro)q(duced)i(b)o(y)e(using)g(the) +h Fh(\013\014)i Fp(algorithm)13 b(are)j(suc)o(h)g(that)f(it)g(b)q(egins)262 +506 y(to)e(mak)o(e)g(full)f(width)i(searc)o(hing)g(a)g(plausible)f +(alternativ)o(e)h(to)f(selectiv)o(e)i(searc)o(hing.)262 656 +y Fu(3.1.2)55 b(Aspiration)18 b Fs(\013\014)k Fu(Searc)n(h)262 +768 y Fp(The)16 b(basic)g Fh(\013\014)j Fp(searc)o(h)e(is)f(carried)h(out)f +(with)g(initial)e Fh(\013\014)19 b Fp(v)n(alues)d(set)h(to)f +Ff(\0001)g Fp(and)g(+)p Ff(1)262 818 y Fp(resp)q(ectiv)o(ely)m(.)22 +b(The)15 b(aspiration)f Fh(\013\014)j Fp(searc)o(h)f(mak)o(es)e(assumptions)g +(ab)q(out)h(the)h(exp)q(ected)262 868 y(v)n(alue)d(of)i(the)g(searc)o(h)h +(tree.)21 b(The)15 b Fh(\013\014)i Fp(b)q(ounds)e(are)g(therefore)h +(initially)c(set)k(to)e(a)h(narro)o(w)262 917 y(windo)o(w)c(cen)o(tered)j +(around)d(the)i(exp)q(ected)h(searc)o(h)f(tree)g(v)n(alue,)e +Ff(\006)i Fp(a)e(pa)o(wn,)h(for)f(example.)324 1003 y(Unlik)o(e)j(the)i +(basic)f Fh(\013\014)i Fp(searc)o(h)f(whic)o(h)f(alw)o(a)o(ys)f(returns)i +(the)g(true)g(score)g(of)e(the)i(tree,)262 1053 y(an)d(aspiration)g +Fh(\013\014)j Fp(searc)o(h)f(can)g(pro)q(duce)g(3)e(p)q(ossible)h(outcomes:) +312 1126 y(1.)20 b Fl(A)f(true)e(score)p Fp(:)22 b(The)16 b(true)h(v)n(alue)f +(of)f(the)i(tree)g(lies)f(inside)g(the)h(searc)o(h)g(windo)o(w)365 +1176 y(and)d(w)o(as)g(therefore)h(found)f(b)o(y)f(the)i(searc)o(h.)312 +1254 y(2.)20 b Fl(A)c(fail)f(lo)o(w)p Fp(:)i(The)d(true)h(v)n(alue)e(of)g +(the)i(tree)g(is)f(smaller)e(than)i(the)g Fh(\013)g Fp(b)q(ound.)312 +1332 y(3.)20 b Fl(A)d(fail)d(high)p Fp(:)j(The)e(true)g(v)n(alue)e(of)h(the)h +(tree)g(is)f(larger)h(than,)e(or)i(equal)e(to,)h(the)h Fh(\014)365 +1382 y Fp(b)q(ound.)262 1455 y(In)i(case)i(1,)f(the)g(searc)o(h)h(has)f(b)q +(een)h(successful)g(b)q(ecause)g(the)g(b)q(est)f(mo)o(v)o(e)f(and)g(its)h +(true)262 1505 y(v)n(alue)12 b(has)g(b)q(een)i(found.)k(In)12 +b(cases)i(2)f(and)f(3)h(the)g(searc)o(h)h(has)f(failed)f(to)g(\014nd)h(a)g +(true)g(v)n(alue)262 1554 y(for)k(the)h(tree)g(b)q(ecause)h(of)e +Fh(\013\014)j Fp(cut)e(o\013s.)29 b(Ho)o(w)o(ev)o(er,)18 b(the)g(direction)f +(of)g(the)h(tree's)h(true)262 1604 y(v)n(alue)c(relativ)o(e)g(to)h(the)g +Fh(\013\014)i Fp(b)q(ounds)f(is)e(no)o(w)h(kno)o(wn.)23 b(When)16 +b(the)h(searc)o(h)g(fails)d(lo)o(w)h(the)262 1654 y(true)f(v)n(alue)e(is)h +(kno)o(wn)g(to)g(lie)f(in)h(the)h(range)f(\()p Ff(\0001)p Fp(,)p +Fh(\013)p Fp(\),)f(and)h(when)h(it)f(fails)f(high,)g(the)i(true)262 +1704 y(v)n(alue)g(will)h(lie)g(in)g(the)h(range)g(\()p Fh(\014)r +Fp(,+)p Ff(1)p Fp(\).)23 b(Using)16 b(the)g(appropriate)g(new)g(searc)o(h)g +(windo)o(w)262 1754 y(the)e(tree)h(m)o(ust)e(b)q(e)i(re-searc)o(hed)h(to)d +(\014nd)h(the)h(true)g(score.)324 1839 y(This)k(approac)o(h)h(can)g(pro)q +(duce)g(a)g(noticeably)f(faster)h(searc)o(h)h(than)e(the)i(basic)e +Fh(\013\014)262 1889 y Fp(algorithm)c(if)i(the)h(initial)e(windo)o(w)h(is)g +(w)o(ell)h(c)o(hosen.)30 b(It)18 b(can,)h(ho)o(w)o(ev)o(er,)f(also)f(pro)q +(duce)262 1939 y(a)e(slo)o(w)o(er)g(searc)o(h)i(if)d(the)i(v)n(alue)f(of)g +(the)h(tree)h(lies)e(outside)h(the)g(initial)d(windo)o(w,)h(as)i(a)f(re-)262 +1988 y(searc)o(h)h(will)e(b)q(e)i(necessary)m(.)25 b(In)15 +b(c)o(hess,)i(material)d(is)h(rarely)h(w)o(on)f(or)g(lost.)23 +b(Therefore,)17 b(a)262 2038 y(windo)o(w)10 b(of)h(a)g(couple)h(of)e(pa)o +(wns)i(width)f(will)f(only)g(fail)g(o)q(ccasionally)g(to)i(\014nd)f(a)g(true) +h(score)262 2088 y(at)j(the)i(\014rst)f(attempt,)f(making)f(this)i(tec)o +(hnique)g(generally)g(faster)g(than)g(the)g(basic)g Fh(\013\014)262 +2138 y Fp(algorithm.)262 2287 y Fu(3.1.3)55 b(Principle)17 +b(V)-5 b(ariation)19 b Fs(\013\014)i Fu(Searc)n(h)262 2399 +y Fp(The)16 b(aspiration)g Fh(\013\014)i Fp(searc)o(h)g(is)e(e\013ectiv)o(e)i +(b)q(ecause)f(the)g(reduced)h Fh(\013\014)h Fp(windo)o(w)c(cuts)j(o\013)262 +2449 y(n)o(umerous)13 b(subtrees)k(on)d(the)h(assumption)e(that)i(something)e +(b)q(etter)j(exists.)k(If)14 b(w)o(e)h(to)q(ok)957 2574 y(25)p +eop +%%Page: 26 28 +26 27 bop 262 307 a Fp(this)13 b(reduced)j(windo)o(w)d(idea)h(to)g(its)f +(limits)f(w)o(e)i(w)o(ould)f(ha)o(v)o(e)h(a)f(minima)o(l)e(windo)o(w.)324 +392 y(A)17 b(minim)o(al)c(windo)o(w)k(uses)h Fh(\013)f Fp(and)f +Fh(\014)k Fp(v)n(alues)d(set)h(so)f(close)g(together)h(that)g(no)e(tree)262 +442 y(v)n(alue)8 b(can)i(b)q(e)g(enclosed)h(within)e(the)h(windo)o(w.)16 +b(Therefore,)11 b(the)f Fh(\013\014)i Fp(searc)o(h)e(will)e(de\014nitely)262 +492 y(fail)13 b(lo)o(w)h(or)h(high)f(dep)q(ending)h(on)g(where)h(the)g(true)f +(score)h(lies)f(relativ)o(e)g(to)g(the)g(minim)o(al)262 542 +y(windo)o(w,)10 b(thereb)o(y)i(iden)o(tifying)d(in)i(whic)o(h)f(direction)i +(the)f(true)h(score)g(lies.)17 b(The)11 b Fl(P)p Fp(rinciple)262 +592 y Fl(V)p Fp(ariation)i Fh(\013\014)18 b Fl(S)p Fp(earc)o(h)d(\()p +Fl(PVS)p Fp(\))g(uses)h(this)f(idea)g(b)o(y)g(\014rst)h(doing)e(a)h(basic)g +Fh(\013\014)j Fp(searc)o(h)e(to)262 641 y(\014nd)e(the)i(true)f(v)n(alue)f +(of)g(the)i(principle)e(v)n(ariation.)19 b(All)14 b(subsequen)o(t)i(searc)o +(hes)h(are)e(then)262 691 y(done)d(with)g(a)g(minima)o(l)d(windo)o(w)j(cen)o +(tered)i(on)e(the)h(curren)o(t)h(v)n(alue)e(of)f(the)i(principle)g(line.)262 +741 y(This)h(w)o(orks)g(on)g(the)h(idea)f(that)h(it)f(is)g(m)o(uc)o(h)f +(easier)i(to)f(sho)o(w)g(that)h(a)f(subtree)i(is)e(inferior)262 +791 y(than)h(determine)g(its)g(true)h(v)n(alue.)22 b(Therefore,)16 +b(when)g(a)f(minim)o(al)d(windo)o(w)i(searc)o(h)j(fails)262 +841 y(lo)o(w,)i(the)g(mo)o(v)o(e)f(is)h(discarded)h(as)f(b)q(eing)g(w)o(orse) +h(than)f(the)h(mo)o(v)o(e)e(already)h(found.)33 b(If)262 891 +y(ho)o(w)o(ev)o(er,)18 b(it)g(fails)f(high,)h(it)f(m)o(ust)g(b)q(e)i +(re-searc)o(hed)h(with)e(a)g(windo)o(w)f(wide)h(enough)g(to)262 +940 y(encompass)13 b(the)i(true)f(score.)324 1026 y(Figure)g(3.3)f(sho)o(ws)i +(the)g(pseudo)g(co)q(de)g(for)e(the)i(PVS)g(algorithm.)h(The)f(pseudo)g(co)q +(de)262 1075 y(includes)h(Reinefeld's)g(depth)h Ff(\024)g Fp(2)f(enhancemen)o +(t)h([46)o(].)25 b(This)16 b(enhancemen)o(t)g(uses)i(the)262 +1125 y(fact)12 b(that)h(the)g('fail-soft')d(max)h(op)q(eration)i(allo)o(ws)f +(true)h(scores)i(rather)e(than)g Fh(\014)i Fp(v)n(alues)e(to)262 +1175 y(b)q(e)f(returned)i(from)d(the)i(last)f(2)g(plies)g(of)f(the)i(tree.)19 +b(Hence,)14 b(at)e(the)g(b)q(ottom)f(2)h(plies)g(of)g(the)262 +1225 y(tree,)i(re-searc)o(hes)j(are)d(unnecessary)m(.)957 2574 +y(26)p eop +%%Page: 27 29 +27 28 bop 262 342 a Fl(F)l(unction)11 b Fp(PVS\(P)k(:)e Fl(p)q(osition)p +Fp(;)d Fh(\013)p Fp(,)j Fh(\014)r Fp(,)h(depth)h(:)j Fl(in)o(teger)p +Fp(\))11 b Fl(returns)j(in)o(teger)262 442 y(v)m(ar)321 491 +y Fp(m)82 b(:)18 b Fl(mo)o(v)o(e)321 541 y Fp(score,)321 591 +y(b)q(est)44 b(:)18 b Fl(in)o(teger)262 691 y(b)q(egin)321 +790 y(if)12 b Fp(\(depth)j(=)f(0\))380 840 y Fl(return)d Fp(\(Ev)n(aluate\(P) +m(,)i Fh(\013)p Fp(,)g Fh(\014)r Fp(\)\))189 b(/*)13 b Fm(Evaluate)i(le)n(af) +g(no)n(de)f Fp(*/)321 890 y Fl(endif)321 990 y Fp(GenerateMo)o(v)o(es\(P\)) +408 b(/*)13 b Fm(Gener)n(ate)i(al)r(l)f(moves)i(in)e(p)n(osition)h(P)f +Fp(*/)321 1039 y(/*)f Fm(Se)n(ar)n(ch)i(principle)f(variation)h(to)g(next)g +(depth)h(using)f(ne)n(gamax)h(c)n(onvention)f Fp(*/)321 1089 +y(b)q(est)g(:=)e Ff(\000)p Fp(PVS\()p Fh(P)624 1095 y Fk(1)643 +1089 y Fp(,)h Ff(\000)p Fh(\014)r Fp(,)g Ff(\000)p Fh(\013)p +Fp(,)f(depth)p Ff(\000)p Fp(1\))321 1139 y Fl(if)f Fp(\(b)q(est)j +Ff(\025)g Fh(\014)r Fp(\))380 1189 y Fl(return)c Fp(\(b)q(est\))433 +b(/*)13 b Fh(\014)k Fm(cut)e(o\013)g(:)k(r)n(eturn)14 b(b)n(est)h(sc)n(or)n +(e)e Fp(*/)321 1239 y Fl(endif)321 1289 y(for)i(eac)o(h)g(mo)o(v)o(e)e +Fp(m)f Fl(do)380 1338 y Fh(\013)h Fp(:=)h Fl(max)p Fp(\(b)q(est,)h +Fh(\013)p Fp(\))339 b(/*)13 b Fm(A)o(l)r(low)h(fail)g(soft)f +Fp(*/)380 1388 y(/*)g Fm(Se)n(ar)n(ch)i(move)g(m)g(to)g(next)g(depth)h(using) +f(ne)n(gamax)h(c)n(onvention)f Fp(*/)380 1438 y(score)g(:=)e +Ff(\000)p Fp(PVS\()p Fh(P)698 1444 y Fe(m)730 1438 y Fp(,)h +Ff(\000)p Fh(\013)9 b Ff(\000)h Fp(1,)j Ff(\000)p Fh(\013)p +Fp(,)g(depth)p Ff(\000)p Fp(1\))380 1488 y Fl(if)f Fp(\(score)k +Fh(>)e Fp(b)q(est\))439 1538 y(/*)f Fm(R)n(e-se)n(ar)n(ch)i(only)g(if)f(sc)n +(or)n(e)h(is)f(within)h Fh(\013\014)i Fm(window)d(and)i(not)f(a)g(true)f +Fp(*/)439 1587 y(/*)f Fm(sc)n(or)n(e)i(r)n(eturne)n(d)f(fr)n(om)g(de)n(ep)n +(est)h(2)g(levels)g(\(R)n(einefeld's)f(enhanc)n(ement\))h Fp(*/)439 +1637 y Fl(if)d Fp(\(\()p Fh(\013)g(<)i Fp(score\))h Fl(and)e +Fp(\(score)j Fh(<)11 b(\014)r Fp(\))k Fl(and)e Fp(\(depth)i +Fh(>)f Fp(2\)\))498 1687 y(b)q(est)h(:=)e Ff(\000)p Fp(PVS\()p +Fh(P)801 1693 y Fe(m)833 1687 y Fh(;)7 b Ff(\000)p Fh(\014)r(;)g +Ff(\000)p Fp(score,)15 b(depth)p Ff(\000)p Fp(1\))439 1737 +y Fl(else)498 1787 y Fp(b)q(est)g(:=)e(score)439 1836 y Fl(endif)439 +1886 y(if)f Fp(\(b)q(est)k Ff(\025)11 b Fh(\014)r Fp(\))498 +1936 y Fl(return)g Fp(\(b)q(est\))315 b(/*)13 b Fh(\014)k Fm(cut)e(o\013)g(:) +k(r)n(eturn)14 b(b)n(est)h(sc)n(or)n(e)e Fp(*/)439 1986 y Fl(endif)380 +2036 y(endif)321 2086 y(endfor)321 2185 y(return)e Fp(\(b)q(est\))492 +b(/*)13 b Fm(R)n(eturn)i(sc)n(or)n(e)g(of)f(b)n(est)h(move)g(found)g +Fp(*/)262 2285 y Fl(end)d Fp(PVS)537 2467 y(Figure)i(3.3:)j(Pseudo)d(co)q(de) +h(for)f(the)g(PVS)g(Algorithm.)957 2574 y(27)p eop +%%Page: 28 30 +28 29 bop 262 307 a Fu(3.1.4)55 b(Iterativ)n(e)17 b(Deep)r(ening)262 +419 y Fp(Iterativ)o(e)11 b(deep)q(ening)h([4)o(])f(is)g(a)g(metho)q(d)f(of)h +(impro)o(ving)d(mo)o(v)o(e)h(ordering,)j(thereb)o(y)g(increas-)262 +469 y(ing)h Fh(\013\014)j Fp(cut)e(o\013s.)19 b(It)14 b(also)f(enables)h(the) +h(exp)q(ected)h(principle)e(v)n(ariation)e(to)i(b)q(e)g(primed.)324 +554 y(Iterativ)o(e)e(deep)q(ening)h(is)f(ac)o(hiev)o(ed)g(b)o(y)g(p)q +(erforming)e(a)i(series)h(of)e(searc)o(hes)j(to)e(progres-)262 +604 y(siv)o(ely)e(greater)h(depths)h(e.g.)17 b(1)10 b(ply)m(,)g(2)g(ply)m(,)g +(3)g(ply)g(etc.)18 b(After)12 b(eac)o(h)f(searc)o(h)h(the)f(1)f(ply)g(mo)o(v) +o(e)262 654 y(list)j(can)h(b)q(e)h(re-ordered)g(to)f(increase)h(the)g +(e\016ciency)f(of)g(the)g(subsequen)o(t)i(iterations.)324 739 +y(It)h(migh)o(t)e(b)q(e)j(though)o(t)f(that)h(doing)e(an)h(iterativ)o(e)g +(searc)o(h)i(to)e(4)g(ply)g(w)o(ould)f(b)q(e)i(less)262 789 +y(e\016cien)o(t)c(than)g(a)g(direct)h(4)e(ply)h(searc)o(h,)h(whic)o(h)f +(after)g(all)f(will)f(b)q(e)j(done)f(an)o(yw)o(a)o(y)f(as)h(part)262 +839 y(of)d(an)h(iterativ)o(e)g(searc)o(h.)19 b(Ho)o(w)o(ev)o(er,)12 +b(there)i(exists)f(n)o(umerous)e(tec)o(hniques)j(for)d(impro)o(ving)262 +889 y(the)16 b(sp)q(eed)i(of)e(eac)o(h)h(subsequen)o(t)h(iteration)e(b)o(y)g +(making)e(b)q(est)k(use)f(of)f(the)h(information)262 938 y(gained)d(so)h +(far.)20 b(These)c(tec)o(hniques)h(include)e(refutation)f(tables,)h(transp)q +(osition)g(tables,)262 988 y(the)e(history)h(heuristic)g(etc.)19 +b(These)14 b(tec)o(hniques)h(will)d(b)q(e)i(explained)f(in)g(detail)g(later.) +k(An)262 1038 y(iterativ)o(e)h(PVS)g(com)o(bined)f(with)h(some)g(of)f(the)i +(tec)o(hniques)h(men)o(tioned)d(can)h(pro)q(duce)262 1088 y(trees)d(v)o(ery)f +(close)h(to)e(the)i(minim)o(al)10 b(tree)15 b([40)o(].)324 +1173 y(An)j(iterativ)o(e)f(deep)q(ening)i Fh(\013\014)h Fp(searc)o(h)e(also)f +(has)h(another)g(imp)q(ortan)o(t)e(b)q(ene\014t;)k(the)262 +1223 y(b)q(est)f(mo)o(v)o(e)e(found)h(so)g(far)h(is)f(alw)o(a)o(ys)f(kno)o +(wn.)32 b(As)18 b(all)g(mo)o(v)o(es)f(are)i(searc)o(hed)h(at)e(eac)o(h)262 +1273 y(iteration,)d(this)g(mo)o(v)o(e)f(is)i(lik)o(ely)e(to)i(b)q(e)g +(reasonable.)24 b(Therefore,)16 b(if)f(the)i(a)o(v)n(ailable)c(time)262 +1323 y(expires,)h(the)g(b)q(est)h(mo)o(v)o(e)d(found)i(so)g(far)f(could)h(b)q +(e)g(pla)o(y)o(ed)f(with)h(con\014dence.)20 b(In)13 b(a)h(non{)262 +1372 y(iterativ)o(e)h(searc)o(h,)i(ho)o(w)o(ev)o(er,)f(if)f(the)h(time)f +(expires,)i(the)f(mo)o(v)o(e)e(selected)k(as)e(b)q(est)g(w)o(ould)262 +1422 y(dep)q(end)f(on)f(what)h(mo)o(v)o(es)e(had)h(b)q(een)h(searc)o(hed)h +(so)f(far.)k(If)14 b(only)g(p)q(o)q(or)g(mo)o(v)o(es)f(had)h(b)q(een)262 +1472 y(searc)o(hed,)j(only)e(a)h(p)q(o)q(or)g(mo)o(v)o(e)e(could)h(b)q(e)i(c) +o(hosen.)25 b(This)15 b(is)h(an)g(imp)q(ortan)o(t)e(b)q(ene\014t)j(for)262 +1522 y(comp)q(etitiv)o(e)12 b(c)o(hess)k(programs)c(b)q(ecause)k(they)e(m)o +(ust)f(con)o(trol)h(their)g(o)o(wn)g(time)e(usage.)262 1673 +y Fu(3.1.5)55 b(Mo)n(v)n(e)19 b(Ordering)262 1785 y Fp(As)g(stressed)i +(earlier,)e(the)g(order)h(in)e(whic)o(h)g(mo)o(v)o(es)g(are)h(examined)e(is)h +(critical)h(to)f(the)262 1835 y(e\016ciency)e(of)f Fh(\013\014)r +Fp(.)23 b(The)16 b(mo)o(v)o(es)e(from)g(eac)o(h)i(no)q(de)g(can)g(b)q(e)g +(ordered)h(using)e(a)g(v)n(ariet)o(y)g(of)262 1885 y(heuristics:)324 +1968 y Ff(\017)20 b Fp(An)f(iterativ)o(e)f(searc)o(h)h(is)f(a)g(go)q(o)q(d)g +(basis)g(for)g(impro)o(ving)d(mo)o(v)o(e)i(ordering)h(as)g(the)365 +2018 y(mo)o(v)o(es)12 b(at)g(the)h(ro)q(ot)g(of)f(the)h(tree)h(are)f +(directly)g(ordered)g(b)o(y)g(a)f(searc)o(h)i(to)e(a)h(depth)g(1)365 +2067 y(ply)f(less)h(than)f(the)h(curren)o(t)h(searc)o(h)g(depth.)k(As)13 +b(the)g(subtree)h(b)q(elo)o(w)e(mo)o(v)o(es)f(at)h(the)365 +2117 y(\014rst)17 b(ply)d(is)i(usually)e(larger)i(than)f(subtrees)j(at)d +(greater)h(depths,)h(mo)o(v)o(e)d(ordering)365 2167 y(at)g(ply)f(1)h(is)g +(lik)o(ely)e(to)i(ha)o(v)o(e)g(the)g(greatest)h(e\013ect)h(on)e(o)o(v)o +(erall)e(tree)j(size.)324 2250 y Ff(\017)20 b Fp(Storing)11 +b(mo)o(v)o(es)f(in)g(a)h(transp)q(osition)g(table)g(represen)o(ts)j(p)q +(erhaps)e(the)g(b)q(est)g(metho)q(d)365 2300 y(of)k(ordering)h(mo)o(v)o(es)e +(in)h(an)g(iterativ)o(e)h Fh(\013\014)i Fp(searc)o(h)e([18)o(].)26 +b(This)16 b(is)h(b)q(ecause)h(mo)o(v)o(es)365 2350 y(found)c(to)g(b)q(e)h(b)q +(est)h(at)e(iteration)g(n)g(are)h(v)o(ery)f(lik)o(ely)f(to)i(remain)d(b)q +(est)k(at)e(iteration)365 2399 y(n+1.)28 b(Therefore)18 b(mo)o(v)o(es)e +(stored)i(in)e(the)i(transp)q(osition)f(table)g(should)g(b)q(e)g(tried)365 +2449 y(\014rst)e(if)e(the)i(no)q(de)f(is)g(re-visited.)957 +2574 y(28)p eop +%%Page: 29 31 +29 30 bop 324 307 a Ff(\017)20 b Fp(Capture)d(mo)o(v)o(es)d(are)i(w)o(orth)f +(searc)o(hing)h(b)q(efore)h(other)f(less)g(dynamic)e(mo)o(v)o(es)g(b)q(e-)365 +357 y(cause)h(they)f(are)h(more)d(lik)o(ely)h(to)h(refute)g(the)h(curren)o(t) +g(line)e(of)h(pla)o(y)f(and)g(therefore)365 407 y(cause)i(a)e(cut)h(o\013.)k +(Capturing)13 b(the)h(piece)g(just)f(mo)o(v)o(ed)f(is)h(generally)g(v)o(ery)h +(e\013ectiv)o(e)365 457 y(at)g(refuting)g(a)f(giv)o(en)h(line)f(of)g(pla)o(y) +g([4].)324 539 y Ff(\017)20 b Fp(A)12 b(mo)o(v)o(e)e(that)i(causes)h(a)e(cut) +i(o\013)e(at)h(a)f(giv)o(en)h(depth)g(should)g(b)q(e)g(tried)g(early)g(as)f +(part)365 589 y(of)16 b(another)g(v)n(ariation)f(at)h(the)g(same)g(depth.)25 +b(This)16 b(tec)o(hnique)h(is)f(kno)o(wn)g(as)g(the)365 638 +y Fm(Kil)r(ler)d Fp(heuristic)h([4].)324 721 y Ff(\017)20 b +Fp(The)14 b Fm(History)f Fp(heuristic)h(pro)o(vides)f(a)g(metho)q(d)g(of)g +("recording)g(eac)o(h)h(mo)o(v)o(es)e(abilit)o(y)365 770 y(to)17 +b(cause)g(a)f(refutation")h([50)o(].)25 b(This)16 b(information)e(can)j(then) +g(b)q(e)g(used)g(to)g(order)365 820 y(mo)o(v)o(es)c(according)h(to)g(the)g +(lik)o(eliho)q(o)q(d)e(of)h(them)h(causing)f(a)h(refutation.)324 +902 y Ff(\017)20 b Fp(Metho)q(ds)c(whic)o(h)f(use)g(the)h(ev)n(aluation)d +(function)i(to)f(score)i(and)f(order)h(mo)o(v)o(es)d(are)365 +952 y(quite)g(accurate,)h(but)f(exp)q(ensiv)o(e;)h(prohibitiv)o(ely)e(so)h +(at)f(the)i(deep)q(est)h(lev)o(els)e(of)f(the)365 1002 y(tree.)262 +1083 y(The)g(ob)r(jectiv)o(e)g(of)f(mo)o(v)o(e)g(ordering)h(is)f(therefore)j +(to)d(searc)o(h)i(mo)o(v)o(es)e(in)g(a)h(b)q(est)h(\014rst)f(order.)262 +1133 y(Therefore)21 b(\014nding)f(go)q(o)q(d)g Fh(\013)g Fp(v)n(alues)h(quic) +o(kly)e(and)h(causing)h(early)f Fh(\014)j Fp(cut)e(o\013s.)38 +b(The)262 1183 y(time)13 b(sp)q(en)o(t)j(ordering)f(mo)o(v)o(es)f(m)o(ust)g +(b)q(e)h(small)e(or)i(the)h(pro)q(cess)g(will)e(b)q(e)h(self{defeating.)262 +1233 y(Therefore)f(the)g(\014rst)h(\014v)o(e)f(metho)q(ds)f(are)h(most)e +(common)f(in)i(con)o(temp)q(orary)g(brute)h(force)262 1283 +y(c)o(hess)h(programs.)262 1434 y Fu(3.1.6)55 b(Null)18 b(Mo)n(v)n(es)262 +1546 y Fp(In)d(c)o(hess,)j(unlik)o(e)d(some)g(other)i(games,)e(the)h(option)g +(of)f(not)h(pla)o(ying)e(a)i(mo)o(v)o(e)e(do)q(es)j(not)262 +1596 y(exist.)h(Ho)o(w)o(ev)o(er,)13 b(this)f(option)g(can)h(b)q(e)h(used)g +(to)e(go)q(o)q(d)h(e\013ect)h(as)f(part)g(of)f(the)h(searc)o(h)h(tree)262 +1645 y(in)f(order)i(to)e(detect)j(tactical)d(mo)o(v)o(es.)324 +1731 y(The)k(idea)f(is)h(that)g(b)o(y)f(giving)f(up)i(the)h(righ)o(t)e(to)g +(mo)o(v)o(e,)g(it)g(allo)o(ws)g(the)h(opp)q(onen)o(t)g(a)262 +1781 y(second)i(consecutiv)o(e)h(mo)o(v)o(e.)29 b(If)18 b(this)g(second)i(mo) +o(v)o(e)c(do)q(es)k(not)e(accomplish)f(an)o(ything)262 1830 +y(b)q(ene\014cial,)i(then)g(it)f(can)g(b)q(e)h(assumed)f(that)h(the)g +(\014rst)g(mo)o(v)o(e)d(did)i(not)g(represen)o(t)j(an)o(y)262 +1880 y(threat.)d(In)c(this)g(w)o(a)o(y)f(mo)o(v)o(es)g(whic)o(h)h(represen)o +(t)i(a)d(threat)i(can)f(b)q(e)h(iden)o(ti\014ed.)324 1965 y(This)d(metho)q(d) +f(assumes)h(that)g(it)g(is)f(alw)o(a)o(ys)g(b)q(etter)j(to)e(mak)o(e)e(a)i +(mo)o(v)o(e,)e(than)i(no)g(mo)o(v)o(e)262 2015 y(at)f(all)g(\(a)g +Fm(nul)r(l)i(move)p Fp(\).)18 b(In)12 b(fact)g(in)f(c)o(hess,)i(a)f +(situation)f(kno)o(wn)g(as)h("zugzw)o(ang")f(can)h(exist)262 +2065 y(where)k(all)e(a)o(v)n(ailable)f(mo)o(v)o(es)h(lead)h(to)g(a)f(loss)i +(of)e(some)h(sort;)g(whereas)i(if)d(no)h(mo)o(v)o(e)f(w)o(ere)262 +2115 y(made,)c(the)h(loss)h(could)f(b)q(e)h(a)o(v)o(oided.)k(An)11 +b(algorithm)e(using)i(the)h(n)o(ull)e(mo)o(v)o(e)g(to)h(determine)262 +2165 y(threats)k(could)g(therefore)h(o)o(v)o(erlo)q(ok)e(mo)o(v)o(es)f(whic)o +(h)i(lea)o(v)o(e)f(the)i(opp)q(onen)o(t)f(in)f(zugzw)o(ang.)262 +2214 y(Ho)o(w)o(ev)o(er,)e(zugzw)o(ang)g(is)f(v)o(ery)h(rare)h(and)e(do)q(es) +i(not)f(cause)g(a)g(signi\014can)o(t)f(problem)g(for)g(the)262 +2264 y(tec)o(hnique.)324 2350 y(Don)j(Beal)h(has)g(done)f(a)h(lot)f(of)g(exp) +q(erimen)o(tation)g(in)o(to)g(the)h(use)h(of)e(n)o(ull)f(mo)o(v)o(es)h(in)g +(a)262 2399 y(normal)g Fh(\013\014)20 b Fp(minim)o(ax)14 b(searc)o(h.)28 +b(In)17 b(his)g(pap)q(er)h("Exp)q(erimen)o(ts)f(with)f(the)i(Null)e(Mo)o(v)o +(e")262 2449 y([5)o(],)i(he)g(prop)q(oses)h(an)f(algorithmic)d(approac)o(h)j +(to)f(selectiv)o(e)i(searc)o(hing)g(based)f(on)g(n)o(ull)957 +2574 y(29)p eop +%%Page: 30 32 +30 31 bop 262 653 a Fl(F)l(unction)11 b Fp(Quiescence\(P)17 +b(:)c Fl(p)q(osition)p Fp(;)d Fh(\013)p Fp(,)k Fh(\014)i Fp(:)i +Fl(in)o(teger)p Fp(\))11 b Fl(returns)j(in)o(teger)262 752 +y(v)m(ar)321 802 y Fp(m)82 b(:)18 b Fl(mo)o(v)o(e)321 852 y +Fp(score,)321 902 y(b)q(est)44 b(:)18 b Fl(in)o(teger)262 1001 +y(b)q(egin)321 1101 y Fp(/*)13 b Fm(Calculate)h(nul)r(l)h(move)g(sc)n(or)n +(e.)k(Note)c(:)j(Evaluate)e(may)f(itself)f(b)n(e)h(a)g(se)n(ar)n(ch)e +Fp(*/)321 1151 y(b)q(est)i(:=)c Ff(\000)p Fp(Ev)n(aluate\(P)m(,)i +Ff(\000)p Fh(\014)r Fp(,)h Ff(\000)p Fh(\013)p Fp(\))321 1250 +y(GenerateMo)o(v)o(es\(P\))321 1300 y Fl(for)h(eac)o(h)g(mo)o(v)o(e)e +Fp(m)f Fl(do)380 1350 y(if)g Fp(\(b)q(est)j Ff(\025)d Fh(\014)r +Fp(\))439 1400 y Fl(return)f Fp(\(b)q(est\))374 b(/*)13 b Fh(\014)18 +b Fm(cut)d(o\013)g(:)k(r)n(eturn)14 b(b)n(est)h(sc)n(or)n(e)e +Fp(*/)380 1450 y Fl(endif)380 1499 y Fp(/*)g Fm(Se)n(ar)n(ch)i(move)g(m)g(to) +g(next)g(depth)h(using)f(ne)n(gamax)h(c)n(onvention)f Fp(*/)380 +1549 y(score)g(:=)e Ff(\000)p Fp(Quiescence\()p Fh(P)812 1555 +y Fe(m)847 1549 y Fp(,)g Ff(\000)p Fh(\014)r Fp(,)h Ff(\000)p +Fp(b)q(est\))380 1599 y Fl(if)e Fp(\(score)k Fh(>)e Fp(b)q(est\))439 +1649 y(b)q(est)h(:=)e(score)391 b(/*)13 b Fm(Stor)n(e)i(b)n(est)f(sc)n(or)n +(e)h(found)f Fp(*/)380 1699 y Fl(endif)321 1749 y(endfor)321 +1848 y(return)d Fp(\(b)q(est\))492 b(/*)13 b Fm(R)n(eturn)i(sc)n(or)n(e)g(of) +f(b)n(est)h(move)g(found)g Fp(*/)262 1948 y Fl(end)d Fp(Quiescence)338 +2130 y(Figure)i(3.4:)j(Pseudo)e(co)q(de)g(for)e(a)h(Quiescence)i(searc)o(h)f +(based)g(on)e(Null)g(Mo)o(v)o(es.)957 2574 y(30)p eop +%%Page: 31 33 +31 32 bop 262 307 a Fp(mo)o(v)o(es.)15 b(In)c(particular)g(he)g(de\014nes)h +(a)e(n)o(ull)g(mo)o(v)o(e)f(quiescence)k(searc)o(h)f(whic)o(h)f(is)f(capable) +h(of)262 357 y("selecting)h(mo)o(v)o(es)e(suc)o(h)i(as)g(c)o(hec)o(ks,)h(mo)o +(v)o(es)d(out)i(of)f(c)o(hec)o(k,)h(attac)o(ks)g(on)f(pieces,)i(defences,)262 +407 y(blo)q(c)o(ks)j(and)h(other)g(t)o(yp)q(es)h(of)e(sharp)h(tactical)g(mo)o +(v)o(es)e(that)i(c)o(hess)h(pla)o(y)o(ers)f(concen)o(trate)262 +457 y(on".)g(This)d(is)g(ac)o(hiev)o(ed)g(with)f(no)h(more)f(c)o(hess)i(kno)o +(wledge)f(than)g(material)e(balance.)324 542 y(Beal)i(uses)g(the)h(score)g +(returned)g(from)d(a)h(quiescence)j(searc)o(h)f(follo)o(wing)c(a)j(n)o(ull)e +(mo)o(v)o(e)262 592 y(as)f(a)f(b)q(ound)i(to)e(guide)h(the)h(searc)o(h)g(and) +f(enable)g(forw)o(ard)g(pruning)g(of)f(inadequate)h(mo)o(v)o(es.)262 +641 y(Beal)j(sho)o(ws)h(that)f(suc)o(h)h(a)f(quiescence)j(searc)o(h)e(is)g +(capable)f(of)g(a)g(p)q(erformance)g(on)g(Rein-)262 691 y(\014eld's)f(300)h +(tactical)f(p)q(ositions)h([47)o(],)f(equiv)n(alen)o(t)g(to)h(that)g(of)f +(the)i(c)o(hess)g(mac)o(hine)e(Belle,)262 741 y(while)g(using)h(only)f(1)p +Fh(=)p Fp(15th)g(of)g(the)h(e\013ort)h(!)324 826 y(V)m(ery)e(recen)o(tly)m(,) +g(Hamlen)e([25)o(])i(extended)h(this)f(idea)g(b)o(y)f(applying)g(a)g(full)g +(width)h(2)f(ply)262 876 y(searc)o(h,)19 b(in)f(addition)f(to)h(the)h(normal) +d(quiescence)k(searc)o(h,)g(after)e(a)g(n)o(ull)f(mo)o(v)o(e.)29 +b(This)262 926 y(allo)o(w)o(ed)17 b(the)i(algorithm)d(to)i(additionally)f +(detect)j(tactical)e(plo)o(ys)g(suc)o(h)i(as)e(forks)h(and)262 +976 y(sk)o(ew)o(ers.)24 b(Other)17 b(programs,)d(notably)h(Kaissa)h([1)o(],)f +(ha)o(v)o(e)g(used)i(the)f(n)o(ull)e(mo)o(v)o(e)g(idea)i(to)262 +1026 y(pro)o(vide)e(faster)g(cut)h(o\013s,)f(without)g(using)g(it)g +(algorithmical)o(ly)d(to)j(select)h(mo)o(v)o(es)e(as)i(Beal)262 +1075 y(and)e(Hamlen)g(ha)o(v)o(e.)324 1161 y(Beal's)g(n)o(ull)f(mo)o(v)o(e)g +(quiescence)j(searc)o(h)g(can)e(b)q(e)h(seen)h(in)d(\014gure)i(3.4.)j(It)c +(is)g(imp)q(ortan)o(t)262 1210 y(to)20 b(realise)h(that)g(Ev)n(aluate)f(ma)o +(y)f(itself)h(b)q(e)i(a)e(searc)o(h)i(of)e(some)g(kind.)38 +b(In)21 b(fact)g(Beal)262 1260 y(adv)o(o)q(cates)d(the)g(use)h(of)e(a)h(2nd)f +(lev)o(el)h(n)o(ull)e(mo)o(v)o(e)g(quiescence)k(searc)o(h)f(supp)q(orted)g(b) +o(y)f(a)262 1310 y(1st)e(lev)o(el)g(quiescence)i(searc)o(h,)f(in)f(place)g +(of)g(Ev)n(aluate,)f(using)h(material)e(balance)i(as)h(its)262 +1360 y(ev)n(aluation.)262 1512 y Fu(3.1.7)55 b(Razoring)262 +1624 y Fp(Razoring)13 b(is)i(a)g(tec)o(hnique)h(devised)f(b)o(y)g(Birmingham) +c(and)k(Ken)o(t)h([11)o(].)k(The)c(tec)o(hnique)262 1673 y(uses)i(the)g +(assumption)e(that)h(a)g(pla)o(y)o(er)g(who)g(has)h(the)g(mo)o(v)o(e)d(can)j +(alw)o(a)o(ys)e(main)o(tain)f(or)262 1723 y(impro)o(v)o(e)d(his)h(p)q +(osition)h(b)o(y)f(pla)o(ying)g(a)g(mo)o(v)o(e.)324 1808 y(The)k(tec)o +(hnique)i(w)o(orks)e(b)o(y)g(using)g(a)g(static)g(ev)n(aluation)f(v)n(alue)h +(at)g(in)o(terior)g(as)g(w)o(ell)262 1858 y(as)i(terminal)f(no)q(des.)35 +b(This)19 b(v)n(alue)g(is)g(compared)g(to)g(the)h(curren)o(t)h +Fh(\013)e Fp(v)n(alue)g(with)g(the)262 1908 y(assumption)10 +b(that)h(the)h(opp)q(onen)o(t)g(can)g(alw)o(a)o(ys)e(main)o(tain)f(or)i +(impro)o(v)o(e)f(his)h(p)q(osition)g(with)262 1958 y(a)g(mo)o(v)o(e.)16 +b(Therefore,)d(the)f(static)h(score)g(is)f(treated)h(as)f(an)f(upp)q(er)i(b)q +(ound)f(on)g(the)g(p)q(ossible)262 2008 y(scores)j(resulting)f(from)e(the)j +(opp)q(onen)o(ts)g(a)o(v)n(ailable)d(mo)o(v)o(es.)17 b(Hence,)e(if)e(this)h +(static)g(v)n(alue)262 2058 y(is)f(no)h(greater)h(than)f(the)h +Fh(\013)e Fp(v)n(alue,)g(it)h(is)g(assumed)f(that)h(the)h(subtree)h(cannot)e +(a\013ect)h(the)262 2107 y Fh(\013)g Fp(v)n(alue)h(at)g(this)g(lev)o(el)g +(and)g(can)g(therefore)i(b)q(e)e(cut)h(o\013.)25 b(Note)16 +b(that)h(this)f(tec)o(hnique)h(is)262 2157 y(only)c(applied)g(from)f(the)j(p) +q(oin)o(t)e(of)g(view)h(of)f(the)i(pla)o(y)o(er)e(who)h(has)g(just)g(mo)o(v)o +(ed.)324 2242 y(Figure)h(3.5)e(illustrates)i(the)g(razoring)g(tec)o(hnique)g +(in)f(action.)20 b(The)15 b(n)o(um)o(b)q(ers)g(to)f(the)262 +2292 y(left)k(of)g(eac)o(h)h(no)q(de)g(represen)o(t)i(the)e(static)g(v)n +(alues,)h(while)e(the)h(n)o(um)o(b)q(ers)f(to)h(the)g(righ)o(t)262 +2342 y(represen)o(t)e(bac)o(k)o(ed)f(up)f(negamax)f(v)n(alues.)22 +b(No)q(de)15 b(B)h(is)f(examined)f(\014rst)i(giving)e(a)h(static)262 +2392 y(v)n(alue)e(of)h(+7.)21 b(No)q(des)15 b(C)g(and)f(D)g(are)h(then)g +(searc)o(hed,)h(resulting)f(in)f(v)n(alues)g(of)g Ff(\000)p +Fp(15)h(and)262 2442 y Ff(\000)p Fp(4)i(resp)q(ectiv)o(ely)m(.)31 +b(A)18 b(v)n(alue)f(of)h(+4)f(using)h(negamax)e(is)i(subsequen)o(tly)h(bac)o +(k)o(ed)f(up)g(to)957 2574 y(31)p eop +%%Page: 32 34 +32 33 bop 697 1103 a Fp(Figure)14 b(3.5:)j(Razoring)c(in)h(action.)262 +1236 y(no)q(de)g(B.)g(The)h Fh(\013)f Fp(v)n(alue)f(at)h(this)h(lev)o(el)e +(is)i(then)f(made)f(equal)h(to)g(+4.)19 b(The)c(mo)o(v)o(e)e(leading)262 +1286 y(to)h(no)q(de)h(E)g(is)g(no)o(w)f(examined)g(and)g(giv)o(en)h(a)f +(static)h(v)n(alue)f(of)g(+1.)21 b(Using)14 b(the)i(razoring)262 +1335 y(tec)o(hnique,)e(this)g(v)n(alue)f(represen)o(ts)k(an)d(upp)q(er)g(b)q +(ound,)g(b)q(ecause)i(the)e(opp)q(onen)o(ts)h(mo)o(v)o(es)262 +1385 y(leading)g(to)h(no)q(des)g(F)g(and)g(G)g(are)g(assumed)g(to)g(main)o +(tain)d(or)j(impro)o(v)o(e)e(the)j(opp)q(onen)o(ts)262 1435 +y(score)g(thereb)o(y)g(decreasing)h(the)e(score)i(at)e(this)g(lev)o(el.)25 +b(As)17 b(the)f(upp)q(er)i(b)q(ound)e(of)g(+1)g(is)262 1485 +y(already)d(less)h(than)f(the)h(curren)o(t)h Fh(\013)d Fp(v)n(alue)h(at)g +(ply)g(1,)g(no)q(des)h(F)f(and)g(G)g(cannot)h(a\013ect)g(the)262 +1535 y(searc)o(h)h(result)f(and)g(can)g(therefore)h(b)q(e)g(cut)f(o\013)g(b)o +(y)g(razoring.)324 1620 y(The)19 b(razoring)h(tec)o(hnique)g(can)f(b)q(e)h +(extended)h(b)o(y)e(using)g(the)h(assumption)e(that)h(a)262 +1670 y(pla)o(y)o(er)f(can)g(impro)o(v)o(e)f(his)h(curren)o(t)i(p)q(osition)e +(b)o(y)g(pla)o(ying)e(his)j(mo)o(v)o(e,)e(y)o(our)h(mo)o(v)o(e,)g(his)262 +1720 y(mo)o(v)o(e.)29 b(This)18 b(extension)g(of)g(the)h(idea)f(is)g(kno)o +(wn)f(as)i(deep)g(razoring.)30 b(It)18 b(causes)i(ev)o(en)262 +1769 y(more)12 b(razor)j(cut)f(o\013s,)g(but)g(at)g(a)f(m)o(uc)o(h)g(greater) +i(risk)f(of)f(cutting)h(out)g(a)g(vital)e(mo)o(v)o(e.)324 1855 +y(Birmingham)h(and)j(Ken)o(t)i(also)e(prop)q(osed)h(a)f(further)i(enhancemen) +o(t)f(where)h(b)o(y)e(the)262 1904 y(assumption)f(is)h(made)f(that)i(there)g +(alw)o(a)o(ys)f(exists)h(a)f(mo)o(v)o(e)f(whic)o(h)h(not)g(only)g(impro)o(v)o +(es)262 1954 y(a)e(pla)o(y)o(ers)h(p)q(osition,)e(but)i(impro)o(v)o(es)e(it)i +(b)o(y)f(at)h(least)f(3)p Fh(=)p Fp(10ths)h(of)f(a)g(pa)o(wn,)g(for)g +(example.)262 2004 y(This)e('enhancemen)o(t')f(further)i(increases)h(razored) +f(cut)g(o\013s,)f(but)g(at)g(the)h(cost)g(of)e(missing)262 +2054 y(p)q(ossibly)i(more)g(vital)g(mo)o(v)o(es.)324 2139 y(I)20 +b(b)q(eliev)o(e)g(the)h(tec)o(hnique)g(w)o(ould)e(b)q(e)i(b)q(etter)g +(enhanced)h(b)o(y)d(taking)h(an)f(opp)q(osite)262 2189 y(view)14 +b(to)g(the)h(enhancemen)o(t)g(ab)q(o)o(v)o(e.)20 b(F)m(or)14 +b(example,)f(assume)h(that)h(there)g(alw)o(a)o(ys)f(exists)262 +2239 y(a)g(mo)o(v)o(e)g(that)h(will)e(not)i(deteriorate)h(the)g(p)q(osition)e +(b)o(y)h(more)f(than)h(a)g(threshold,)g(of)g(sa)o(y)262 2289 +y(half)i(a)h(pa)o(wn.)31 b(Di\013eren)o(t)19 b(thresholds)h(could)e(b)q(e)h +(applied)f(at)g(eac)o(h)h(lev)o(el)f(of)g(the)h(tree,)262 2338 +y(p)q(erhaps)14 b(w)o(eigh)o(ted)f(so)g(that)g(as)g(the)h(searc)o(h)g +(progresses)h(more)d(deeply)h(do)o(wn)g(the)g(searc)o(h)262 +2388 y(tree,)i(more)e(cut)i(o\013s)f(are)h(made.)i(This)e(enhancemen)o(t)f(w) +o(ould)g(decrease)i(the)f(n)o(um)o(b)q(er)e(of)262 2438 y(cut)h(o\013s,)g +(but)g(impro)o(v)o(e)e(the)i(lik)o(eliho)q(o)q(d)f(of)g(including)g(go)q(o)q +(d)g(mo)o(v)o(es)g(in)g(the)i(searc)o(h)g(tree,)957 2574 y(32)p +eop +%%Page: 33 35 +33 34 bop 262 307 a Fp(particularly)13 b(at)g(shallo)o(w)o(er)h(depths)h +(where)g(missing)d(suc)o(h)i(mo)o(v)o(es)f(can)h(b)q(e)g(fatal.)324 +392 y(I)j(b)q(eliev)o(e)g(the)h(assumption)d(made)h(b)o(y)h(the)h(Razoring)e +(tec)o(hnique)h(is)g(m)o(uc)o(h)f(w)o(eak)o(er)262 442 y(than)f(that)h(of)f +(the)i(Null)e(mo)o(v)o(e)f(tec)o(hnique,)i(whic)o(h)g(only)f(assumes)h(that)f +(it)h(is)f(b)q(etter)j(to)262 492 y(mak)o(e)12 b(a)i(mo)o(v)o(e,)d(than)j(no) +g(mo)o(v)o(e)e(at)i(all.)262 665 y Fr(3.2)69 b(Ev)l(aluation)262 +791 y Fp(This)11 b(section)h(describ)q(es)i(a)d(n)o(um)o(b)q(er)g(of)g(tec)o +(hniques)i(for)e(heuristic)i(p)q(ositional)d(ev)n(aluation)262 +841 y(of)j(c)o(hess)j(p)q(ositions.)k(Most)15 b(of)e(these)j(tec)o(hniques)g +(are)f(b)q(est)h(used)f(in)f(com)o(bination)e(with)262 891 +y(eac)o(h)i(other.)324 976 y(The)g(imp)q(ortance)g(of)f(the)i(ev)n(aluation)d +(function)i(cannot)h(b)q(e)f(to)q(o)g(highly)f(stressed)k(as)262 +1026 y(it)12 b(is)h(this)g(that)g(giv)o(es)g(a)g(program)e(its)i(distinctiv)o +(e)g(st)o(yle.)18 b(Ac)o(hieving)13 b(a)g(go)q(o)q(d)f(p)q(osition)h(is)262 +1076 y(often)g(a)h(prelude)h(to)e(a)h(winning)f(tactical)g(com)o(bination.) +365 1159 y("T)m(actics)h(\015o)o(w)g(from)e(a)h(go)q(o)q(d)h(p)q(osition")970 +1225 y Fm(R)n(ob)n(ert)g(J.)h(Fischer.)262 1377 y Fu(3.2.1)55 +b(Piece)17 b(Square)i(T)-5 b(ables)262 1489 y Fp(Piece)12 b(Square)f +(\(Pc/Sq\))h(tables)f(are)g(used)h(to)f(hold)f(v)n(alues)h(for)f(pieces)j(o)q +(ccup)o(ying)d(squares)262 1539 y(on)h(the)h(b)q(oard.)18 b(F)m(or)11 +b(example,)f(a)i(knigh)o(t)f(square)h(table)g(w)o(ould)f(con)o(tain)g(a)h +(score)h(for)e(eac)o(h)262 1588 y(square)16 b(indicating)e(the)i(merits)e(of) +h(ha)o(ving)f(a)h(knigh)o(t)f(on)h(that)h(square.)23 b(T)m(ables)15 +b(can)g(b)q(e)262 1638 y(used)g(for)g(eac)o(h)g(t)o(yp)q(e)h(of)e(piece)i +(and)e(can)h(b)q(e)h(pre-loaded)f(b)q(efore)g(the)h(searc)o(h)g(b)q(egins,)f +(b)o(y)262 1688 y(doing)i(some)h(preliminary)f(p)q(ositional)g(analysis.)32 +b(Using)19 b(suc)o(h)h(tables,)f(it)g(b)q(ecomes)g(a)262 1738 +y(simple)c(matter)i(to)g(p)q(erform)f(a)h(p)q(ositional)f(ev)n(aluation)g(at) +h(a)f(giv)o(en)h(no)q(de.)28 b(Giv)o(en)17 b(the)262 1788 y(lo)q(cation)e(of) +h(eac)o(h)i(piece)f(on)g(the)g(b)q(oard,)g(a)f(v)n(alue)g(can)h(b)q(e)g(lo)q +(ok)o(ed)f(up)h(in)f(the)i(relev)n(an)o(t)262 1837 y(table)13 +b(and)f(added)i(to)f(the)h(p)q(ositional)d(total)i(for)f(the)i(appropriate)f +(side,)g(white)h(or)f(blac)o(k.)262 1887 y(Finally)c(the)i(di\013erence)i(b)q +(et)o(w)o(een)f(the)f(t)o(w)o(o)g(totals)f(is)h(calculated)g(giving)e(an)i(o) +o(v)o(erall)e(v)n(alue)262 1937 y(for)k(the)i(p)q(osition.)324 +2022 y(The)e(main)e(adv)n(an)o(tage)i(of)f(using)h(these)i(tables)e(is)g(sp)q +(eed.)20 b(The)13 b(w)o(orlds)g(fastest)h(c)o(hess)262 2072 +y(mac)o(hines,)c(Hitec)o(h)j(and)e(Deep)i(Though)o(t,)e(mak)o(e)g(extensiv)o +(e)h(use)h(of)e(Pc/Sq)h(tables.)18 b(Ho)o(w-)262 2122 y(ev)o(er,)13 +b(b)q(ecause)h(these)g(tables)f(are)g(generally)g(pre-loaded)f(b)q(efore)i +(the)f(searc)o(h)h(b)q(egins)f(and)262 2172 y(applied)h(n)h(ply)g(further)h +(do)o(wn)e(the)i(tree)g(at)f(leaf)g(no)q(des,)g(man)o(y)f(p)q(ositional)f +(asp)q(ects)k(are)262 2222 y(no)10 b(longer)h(applicable.)16 +b(The)11 b(tables)h(also)e(do)g(not)h(re\015ect)i(up)e(to)g(date)g(piece)h +(in)o(teractions.)324 2307 y(These)20 b(problems)e(are)h(exasp)q(erated)i(b)o +(y)d(deep)i(searc)o(hing.)33 b(It)19 b(is)g(therefore)h(ironic)262 +2357 y(that)14 b(the)h(tables)g(are)g(used)h(for)e(the)i(express)g(purp)q +(ose)g(of)e(deep)h(searc)o(hing)h(due)f(to)f(their)262 2406 +y(e\016ciency)m(.)22 b(It)15 b(is)g(in)o(teresting)h(that)f(the)h(Hitec)o(h)f +(team)f(at)h(CMU)h(are)f(no)o(w)g(\014nding)g(that)957 2574 +y(33)p eop +%%Page: 34 36 +34 35 bop 262 307 a Fp(as)14 b(their)h(program)e(impro)o(v)o(es,)g(more)h +(kno)o(wledge)g(m)o(ust)g(b)q(e)h(migrated)e(from)g(the)i(Pc/Sq)262 +357 y(tables)f(to)f(the)i(leaf)e(no)q(de)h(static)h(ev)n(aluation)d(pro)q +(cess)k([7)o(].)262 508 y Fu(3.2.2)55 b(Static)18 b(Ev)m(aluation)262 +620 y Fp(In)11 b(most)g(programs,)g(a)g(static)h(ev)n(aluation)f(is)g(p)q +(erformed)h(at)g(the)g(leaf)f(no)q(des)i(of)e(the)i(main)262 +670 y(searc)o(h.)32 b(In)18 b(full)g(width)g(searc)o(hes,)j(a)d(quiescence)i +(searc)o(h)g(is)e(usually)f(also)h(applied)g(at)262 720 y(these)f(leaf)e(no)q +(des,)i(th)o(us)g(creating)f(new)g(leaf)g(no)q(des)g(at)g(a)g(deep)q(er)i +(lev)o(el)d(whic)o(h)h(are)h(not)262 770 y(usually)c(p)q(ositionally)f(ev)n +(aluated)h(for)h(e\016ciency)g(reasons.)324 855 y(The)19 b(static)g(ev)n +(aluation)e(pro)q(cess)j(in)o(v)o(olv)o(es)e(computing)f(the)i(existence)h +(of)e(v)n(arious)262 905 y(p)q(ositional)11 b(factors.)17 b(Dep)q(ending)c +(on)f(the)h(degree)h(to)e(whic)o(h)h(these)h(factors)e(exist,)h(appro-)262 +955 y(priate)h(v)n(alues)g(are)h(calculated.)k(Finally)13 b(the)i(v)n(alues)f +(are)g(w)o(eigh)o(ted)h(according)f(to)g(their)262 1004 y(relativ)o(e)f(imp)q +(ortance.)324 1090 y(In)20 b(c)o(hess,)j(determining)c(the)i(factors)g(whic)o +(h)f(con)o(tribute)h(to)f(a)g(go)q(o)q(d)g(p)q(osition)g(is)262 +1139 y(v)o(ery)c(di\016cult.)25 b(Standard)17 b(criteria)g(ha)o(v)o(e)f(b)q +(een)i(dev)o(elop)q(ed)f(o)o(v)o(er)f(the)h(y)o(ears)g(b)o(y)g(whic)o(h)262 +1189 y(a)f(program)g(can)h(judge)g(a)f(p)q(osition.)27 b(Using)17 +b(suc)o(h)g(criteria)h(curren)o(t)g(programs)e(pla)o(y)g(a)262 +1239 y(reasonable)d(game.)k(Ho)o(w)o(ev)o(er,)c(it)h(is)f(still)f(clear)i +(from)e(their)i(p)q(ositional)e(pla)o(y)m(,)g(that)h(some)262 +1289 y(subtle)j(factors)g(are)h(still)e(not)h(b)q(eing)f(included.)25 +b(I)16 b(will)e(try)i(to)g(unco)o(v)o(er)h(some)e(of)g(these)262 +1339 y(in)h(the)h(next)g(c)o(hapter.)27 b(The)17 b(most)e(di\016cult)h(task)h +(remains)e(determining)h(the)h(relativ)o(e)262 1389 y(imp)q(ortance)c(of)g +(eac)o(h)i(factor)f(or)f(criterion.)19 b(An)14 b(attempt)g(w)o(as)f(made)g +(to)h(determine)g(the)262 1438 y(relativ)o(e)f(imp)q(ortance)g(of)h(a)f(n)o +(um)o(b)q(er)g(of)h(ev)n(aluation)e(criteria)i(in)g([51)o(].)k(I)13 +b(think)h(the)g(basic)262 1488 y(idea)9 b(of)h(this)g(researc)o(h)i(is)e(an)g +(excellen)o(t)h(one,)g(ho)o(w)o(ev)o(er,)f(I)h(feel)f(the)h(sp)q(eci\014c)g +(order)g(in)f(whic)o(h)262 1538 y(the)k(ev)n(aluation)e(criteria)j(w)o(ere)g +(tested,)g(in\015uenced)g(the)f(result)h(of)e(the)h(exp)q(erimen)o(ts.)324 +1623 y(Sev)o(eral)e(attempts)g(ha)o(v)o(e)g(b)q(een)i(made)d(to)h(generate)h +(a)f('b)q(est)h(\014t')f(ev)n(aluation)f(function)262 1673 +y([27)o(,)i(39].)19 b(Most)c(of)f(these)h(studies)h(are)f(based)g(on)f(an)g +(analysis)g(of)g(grandmaster)f(mo)o(v)o(es.)262 1723 y(The)g(ob)r(jectiv)o(e) +h(is)f(to)g(\014nd)h(a)f(function)g(whic)o(h)g(selects)i(grandmaster)e(mo)o +(v)o(es)f(as)h(often)h(as)262 1773 y(p)q(ossible.)j(Suc)o(h)11 +b(attempts)f(ha)o(v)o(e)h(hit)f(serious)h(problems)f(b)q(ecause,)j(as)e(I)f +(see)i(it,)f(5)f(problem)262 1823 y(areas)k(exist:)312 1904 +y(1.)20 b(A)c(b)q(est)h(\014t)f(can)g(only)e(b)q(e)j(attempted)e(for)h(the)g +(kno)o(wn)f(functions.)24 b(If)15 b(a)g(program)365 1954 y(do)q(es)d(not)e +(kno)o(w)g(ab)q(out)h(a)f(particular)h(asp)q(ect)h(of)e(c)o(hess,)i(for)e +(example)g(w)o(eak)g(pa)o(wns,)365 2003 y(it)j(cannot)g(include)g(suc)o(h)g +(considerations)h(in)e(its)h(ev)n(aluation)e(pro)q(cess.)20 +b(Therefore,)365 2053 y(p)q(ossibly)14 b(in)o(tro)q(ducing)f(side)i +(e\013ects)h(in)o(to)d(existing)g(functions.)312 2135 y(2.)20 +b(The)c(criteria)g(b)o(y)g(whic)o(h)f(a)h(h)o(uman)e(c)o(hess)j(pla)o(y)o(er) +e(ev)n(aluates)h(a)g(p)q(osition)f(are)h(not)365 2185 y(m)o(utually)11 +b(exclusiv)o(e,)j(but)f(subtly)h(link)o(ed.)j(Iden)o(tifying)c(these)i(links) +d(is)i(v)o(ery)g(di\016-)365 2235 y(cult.)312 2317 y(3.)20 +b(So)11 b(m)o(uc)o(h)g(dep)q(ends)i(on)e(the)h(phase)g(of)f(the)h(game)e +(e.g.)17 b(middle)9 b(game)h(or)i(end)g(game,)365 2367 y(that)i(I)g(b)q +(eliev)o(e)g(sp)q(eci\014c)i(functions)e(are)g(required)h(for)e(eac)o(h)i +(game)d(phase.)312 2449 y(4.)20 b(P)o(ositionally)12 b(mo)o(v)o(es)h(v)n(ary) +g(with)h(pla)o(y)o(er)f(st)o(yle)h(and)g(mo)q(o)q(d.)957 2574 +y(34)p eop +%%Page: 35 37 +35 36 bop 312 307 a Fp(5.)20 b(Some)e(mo)o(v)o(es)f(are)i(tactically)f +(conditioned.)33 b(Suc)o(h)19 b(mo)o(v)o(es)e(m)o(ust)h(b)q(e)h(iden)o +(ti\014ed)365 357 y(b)q(ecause)d(they)e(a\013ect)h(the)g(p)q(ositional)d(c)o +(hoice)i(a)o(v)n(ailable.)262 440 y(Ob)o(viously)e(this)i(area)f(w)o(ould)g +(b)q(ene\014t)i(from)c(more)i(in)o(v)o(olv)o(emen)o(t)e(b)o(y)i(strong)h(c)o +(hess)h(pla)o(y-)262 490 y(ers.)324 575 y(In)f(practice,)i(static)f(ev)n +(aluation)e(functions)h(tend)i(to)e(b)q(e)h(primitiv)o(e,)d(particularly)i +(in)262 625 y(brute)j(force)g(programs,)f(to)g(enable)h(deep)h(searc)o(hing.) +26 b(Pc/Sq)17 b(tables)g(are)g(used)g(where)262 675 y(p)q(ossible)11 +b(to)g(impro)o(v)o(e)f(e\016ciency)m(.)17 b(Information)9 b(whic)o(h)i +(cannot)h(b)q(e)g(stored)g(in)f(the)h(tables,)262 725 y(suc)o(h)k(as)g +(pinned)g(piece)h(information,)c(m)o(ust)i(b)q(e)h(calculated.)24 +b(The)16 b(ev)n(aluation)f(pro)q(cess)262 774 y(can)j(b)q(e)h(supp)q(orted)h +(b)o(y)e(sp)q(eci\014c)i(hash)e(tables)h(e.g.)31 b(pa)o(wn)18 +b(structure)j(hashing.)31 b(This)262 824 y(enables)15 b(m)o(uc)o(h)f(faster)i +(ev)n(aluation)e(b)q(ecause)j(calculations)d(do)h(not)g(ha)o(v)o(e)g(to)g(b)q +(e)h(re-done)262 874 y(when)d(p)q(ositions)g(with)g(iden)o(tical)g(pa)o(wn)g +(structure,)i(for)e(example,)f(are)i(encoun)o(tered.)20 b(In)262 +924 y(selectiv)o(e)12 b(searc)o(h)h(programs)d(the)j(ev)n(aluation)d(pro)q +(cess)j(can)f(b)q(e)g(far)f(more)g(complex)f(as)i(the)262 974 +y(reduced)j(n)o(um)o(b)q(er)d(of)h(no)q(des)i(examined)d(allo)o(ws)g(more)g +(time)h(to)g(b)q(e)h(sp)q(en)o(t)g(at)g(eac)o(h)g(no)q(de.)262 +1023 y(The)j(di\016cult)o(y)f(here)j(is)e(that)g(kno)o(wledge)g(de\014ciency) +i(cannot)e(b)q(e)h(easily)f(made)f(up)h(b)o(y)262 1073 y(searc)o(hing.)g +(Therefore,)d(c)o(hess)f(kno)o(wledge)f(acquisition)f(from)f(grandmasters)i +(m)o(ust)f(pla)o(y)262 1123 y(a)f(vital)g(role)h(in)f(suc)o(h)i(programs.)j +(A)o(t)c(the)h(presen)o(t)g(time,)e(tec)o(hniques)i(do)f(not)f(exist)i(whic)o +(h)262 1173 y(w)o(ould)i(allo)o(w)g(grandmaster)h(though)o(t)g(pro)q(cesses)j +(to)d(b)q(e)h(captured)h(and)e(understo)q(o)q(d)i(in)262 1223 +y(detail,)12 b(let)i(alone,)f(allo)o(w)f(suc)o(h)j(kno)o(wledge)f(to)f(b)q(e) +i(transferred)h(to)d(the)i(mac)o(hine.)324 1308 y(It)f(should)h(b)q(e)g +(realised)g(that)f(static)h(ev)n(aluation)e(is)h(not)h(adequate)g(in)f +(dynamic)e(tac-)262 1358 y(tical)18 b(situations.)33 b(Suc)o(h)20 +b(tactical)f(problems)f(are)h(b)q(etter)i(resolv)o(ed)f(b)o(y)e(some)h(kind)f +(of)262 1408 y(quiescence)i(searc)o(h.)32 b(I)18 b(b)q(eliev)o(e)h(it)f(is)g +(the)h(job)f(of)f(the)i(static)g(ev)n(aluation)e(function)h(to)262 +1457 y(realise)13 b(when)g(a)g(p)q(osition)f(is)h(unsuitable)f(for)h(static)g +(ev)n(aluation)f(and)g(inform)f(the)i(searc)o(h)262 1507 y(pro)q(cess,)i(so)f +(it)f(can)h(attempt)f(to)h(resolv)o(e)h(the)f(tactical)g(uncertain)o(t)o(y)m +(.)262 1659 y Fu(3.2.3)55 b(Incremen)n(tal)16 b(Ev)m(aluation)262 +1771 y Fp(Static)e(ev)n(aluation)f(at)i(leaf)e(no)q(des)j(is)e(exp)q(ensiv)o +(e)i(in)e(terms)g(of)g(time;)f(and)h(Pc/Sq)h(tables)262 1821 +y(do)e(not)h(re\015ect)h(the)g(true)g(merits)e(of)g(a)g(p)q(osition,)g(esp)q +(ecially)h(as)g(the)h(searc)o(h)f(deep)q(ens.)21 b(A)262 1870 +y(third)12 b(option)g(is)h(a)o(v)n(ailable,)d(that)j(of)g(incremen)o(tally)e +(up)q(dating)h(the)i(p)q(ositional)d(totals)i(as)262 1920 y(mo)o(v)o(es)f +(are)i(made.)j(The)e(p)q(ositional)d(totals)i(could)f(b)q(e)i(up)q(dated)f +(as)g(follo)o(ws:)312 2003 y(1.)20 b(Calculate)9 b(the)h(p)q(ositional)e(v)n +(alue,)h(for)g(the)h(piece)g(just)g(mo)o(v)o(ed,)e(on)h(its)g(from{square.) +312 2086 y(2.)20 b(Decremen)o(t)15 b(this)e(v)n(alue)h(from)e(the)i(p)q +(ositional)f(total)g(for)h(the)g(relev)n(an)o(t)g(side.)312 +2169 y(3.)20 b(Calculate)14 b(the)g(p)q(ositional)e(v)n(alue,)h(for)h(the)g +(piece)h(just)f(mo)o(v)o(ed,)d(on)j(its)g(to{square.)312 2252 +y(4.)20 b(Incremen)o(t)14 b(this)g(new)h(v)n(alue)e(to)h(the)g(p)q(ositional) +f(total)g(for)g(the)i(relev)n(an)o(t)f(side.)262 2335 y(This)e(pro)q(cess)i +(is)e(quite)g(simple)f(and)h(therefore)i(fast,)e(but)h(do)q(es)g(not)f(tak)o +(e)g(accoun)o(t)h(of)f(the)262 2385 y(e\013ects)j(mo)o(ving)10 +b(a)j(piece)i(ma)o(y)c(ha)o(v)o(e)i(on)g(the)h(p)q(ositional)e(v)n(alue)g(of) +h(the)h(pieces)g(around)f(it.)262 2435 y(F)m(or)g(example,)f(mo)o(ving)f(a)j +(piece)h(ma)o(y)c(rev)o(eal)j(or)g(blo)q(c)o(k)g(a)f(n)o(um)o(b)q(er)g(of)h +(p)q(ossible)g(attac)o(ks.)957 2574 y(35)p eop +%%Page: 36 38 +36 37 bop 262 307 a Fp(Therefore,)13 b(if)g(the)g(pro)q(cess)i(is)e(to)f(b)q +(e)i(truly)f(incremen)o(tal)f(it)g(m)o(ust)g(tak)o(e)h(accoun)o(t)h(of)e(suc) +o(h)262 357 y(factors.)18 b(Ho)o(w)o(ev)o(er,)12 b(suc)o(h)i(a)e(detailed)h +(incremen)o(tal)f(ev)n(aluation)f(will)g(b)q(e)j(costly)f(in)f(terms)262 +407 y(of)h(time,)f(p)q(erhaps)j(prohibitiv)o(ely)d(so.)324 +492 y(In)i(practice)h(incremen)o(tal)e(ev)n(aluation)f(is)i(used)h(in)e +(conjunction)h(with)g(a)f(static)h(ev)n(al-)262 542 y(uation)i(at)h(the)h +(horizon)f(no)q(des)i(of)d(the)i(main)e(searc)o(h.)29 b(Incremen)o(tal)17 +b(ev)n(aluations)f(can)262 592 y(also)e(b)q(e)h(useful)h(during)e(a)h +(quiescence)i(searc)o(h)f(where)g(there)h(is)e(not)f(enough)i(time)d(for)i(a) +262 641 y(full)f(static)i(ev)n(aluation.)23 b(This)16 b(is)g(b)q(ecause)h(a)f +(quiescence)i(searc)o(h)f(also,)e(usually)g(o)q(ccurs)262 691 +y(at)e(the)i(horizon)e(no)q(des)i(of)e(the)i(main)d(searc)o(h.)324 +777 y(The)20 b(Pc/Sq)h(tables)f(explained)g(earlier)g(can)g(also)g(b)q +(ene\014t)h(from)e(an)h(incremen)o(tal)262 826 y(approac)o(h,)13 +b(to)h(close)g(the)h(gap)e(b)q(et)o(w)o(een)i(kno)o(wledge)f(storage)g(and)g +(application.)262 976 y Fu(3.2.4)55 b(Phases)19 b(of)g(Pla)n(y)262 +1088 y Fp(The)14 b(game)e(of)i(c)o(hess)h(consists)g(of)e(3)h(main)d(game)i +(phases:)324 1163 y Ff(\017)20 b Fp(The)15 b(Op)q(ening.)324 +1242 y Ff(\017)20 b Fp(The)15 b(Middle)e(game.)324 1321 y Ff(\017)20 +b Fp(The)15 b(Endgame.)262 1396 y(Di\013eren)o(t)22 b(ev)n(aluation)f +(criteria)h(are)g(applicable)f(at)h(di\013eren)o(t)h(phases)g(of)e(the)i +(game.)262 1446 y(Therefore,)f(it)e(is)g(imp)q(ortan)o(t)f(for)g(a)h(c)o +(hess)i(program)d(to)h(recognise)h(what)f(phase)h(the)262 1496 +y(game)12 b(is)i(in,)f(so)h(the)g(correct)i(ev)n(aluation)c(criteria)i(or)g +(w)o(eigh)o(tings)f(can)h(b)q(e)h(applied.)324 1581 y(In)i(practice)i(the)f +(game)e(phases)i(need)h(to)e(b)q(e)h(brok)o(en)g(do)o(wn)f(in)o(to)g(more)f +(detail,)i(so)262 1631 y(that)e(the)g(transition)g(b)q(et)o(w)o(een)i(phases) +f(is)f(not)g(large.)24 b(If)16 b(this)g(is)g(not)g(done,)h(there)g(will)262 +1681 y(b)q(e)e(cli\013s)f(in)h(the)g(ev)n(aluation)e(surface)j(where)f(a)g +(program)e(suddenly)i(b)q(ecomes)g(a)o(w)o(are)f(of)262 1731 +y(some)f(asp)q(ect)k(of)d(the)h(p)q(osition.)20 b(F)m(or)14 +b(example,)g(early)g(in)h(the)g(game)e(the)j(king)e(needs)i(to)262 +1781 y(sta)o(y)c(near)i(the)f(edge)h(of)e(the)i(b)q(oard)f(protected)i(b)o(y) +d(its)h(pieces.)19 b(As)14 b(the)f(game)f(progresses)262 1830 +y(ho)o(w)o(ev)o(er,)h(the)h(king)f(should)g(b)q(egin)h(to)f(b)q(e)i(mo)o(v)o +(ed)d(to)h(an)g(activ)o(e)h(p)q(osition)f(ready)h(for)f(the)262 +1880 y(endgame.)j(If)11 b(this)g(pro)q(cess)j(is)d(not)g(p)q(erformed)g +(gradually)m(,)f(the)i(program)e(ma)o(y)f(\014nd)j(itself)262 +1930 y(in)f(an)h(endgame)g(with)g(its)g(king)f(misplaced,)g(and)h(a)g(sudden) +h(realisation)f(that)g(things)g(are)262 1980 y(not)f(as)h(go)q(o)q(d)f(as)h +(predicted)h(b)o(y)f(the)g(ev)n(aluation)f(function)g(at)h(the)g(previous)g +(game)e(phase.)324 2065 y(Assume,)15 b(for)g(example,)e(w)o(e)j(ha)o(v)o(e)f +(8)f(game)g(phases,)i(then)g(new)g(ev)n(aluation)d(criteria)262 +2115 y(could)g(b)q(e)g(in)o(tro)q(duced)h(gen)o(tly)m(,)e(or)i(existing)f +(criteria)g(could)g(b)q(e)h(scaled)g(according)f(to)g(the)262 +2165 y(phase.)324 2250 y(The)h(game)e(phase)j(is)e(a)h(factor)f(of)g(the)i +(material)d(remaining)f(on)j(the)g(b)q(oard)g(and)f(can)262 +2300 y(therefore)f(b)q(e)f(easily)f(calculated,)h(although)f(deciding)h(when) +g(one)g(phase)g(should)g(end)g(and)262 2350 y(another)i(should)g(start)h(is)f +(more)g(di\016cult.)k(This)c(recognition)g(of)g(the)h(game)e(phase)i(m)o(ust) +262 2399 y(also)e(include)h(realising)f(when)i(p)q(ositional)d(factors)j(can) +f(b)q(e)h(ignored)e(and)h(the)h(opp)q(onen)o(ts)262 2449 y(king)f(can)h(b)q +(e)g(driv)o(en)g(to)g(c)o(hec)o(kmate.)957 2574 y(36)p eop +%%Page: 37 39 +37 38 bop 324 307 a Fp(The)14 b(game)f(phase)i(can)f(also)f(b)q(e)i(used)g +(to)f(encourage)h(the)f(program)f(to)h(trade)g(pieces)262 357 +y(when)g(ahead)g(in)f(material.)262 509 y Fu(3.2.5)55 b(Planning)262 +621 y Fp(Planning)19 b(pla)o(ys)h(an)g(imp)q(ortan)o(t)f(role)i(in)f(h)o +(uman)e(c)o(hess.)40 b(It)21 b(could)f(b)q(e)h(said)f(that)h(a)262 +670 y(program)d(is)i(con)o(tin)o(ually)f(planning)f(to)i(maximi)o(se)e(its)i +(ev)n(aluation)f(function's)h(score.)262 720 y(Ho)o(w)o(ev)o(er,)c(this)g +(often)g(leads)g(to)g(aimless)e(pla)o(y)m(,)h(w)o(aiting)f(for)i(the)g(opp)q +(onen)o(t)h(to)e(mak)o(e)g(a)262 770 y(mistak)o(e.)324 855 +y(A)20 b(plan)f(could)h(b)q(e)g(conceiv)o(ed)h(at)e(the)i(ro)q(ot)f(of)f(the) +h(tree)h(b)o(y)f(an)g(analysis)f(of)g(the)262 905 y(p)q(osition.)29 +b(Sp)q(eci\014c)19 b(goals)d(can)j(b)q(e)f(iden)o(ti\014ed,)g(suc)o(h)h(as)f +(a)f(king)g(side)h(pa)o(wn)g(rush,)h(for)262 955 y(example.)d(The)f(relev)n +(an)o(t)f(Pc/Sq)g(tables)g(and)g(static)h(ev)n(aluation)d(criteria)i(can)h(b) +q(e)f(giv)o(en)262 1005 y(w)o(eigh)o(tings)c(to)h(encourage)h(ac)o(hiev)o +(emen)o(t)f(of)f(these)j(goals.)j(F)m(or)11 b(example,)f(increasing)h(the)262 +1055 y(b)q(on)o(us)k(for)g(pushing)h(pa)o(wns)f(on)h(the)g(king)e(side.)23 +b(The)16 b(subsequen)o(t)i(searc)o(h)e(w)o(ould)f(then)262 +1104 y(b)q(e)h(biased)f(to)o(w)o(ards)h(selecting)g(mo)o(v)o(es)e(whic)o(h)h +(ac)o(hiev)o(e)h(these)h('sub{goals'.)k(T)m(o)15 b(further)262 +1154 y(encourage)20 b(the)g(use)g(of)e(a)h(consisten)o(t)i(plan,)e(the)h +(principle)f(v)n(ariation)f(from)f(the)j(last)262 1204 y(searc)o(h)15 +b(can)g(b)q(e)g(used)h(to)e(direct)h(the)h(curren)o(t)g(searc)o(h.)21 +b(Deviations)14 b(only)f(b)q(eing)i(allo)o(w)o(ed)262 1254 +y(when)f(they)g(are)h(clearly)e(sup)q(erior.)324 1339 y(Chess)k(programs)e +(generally)h(ha)o(v)o(e)f(no)h(problem)f(in)g(\014nding)h(the)h(correct)g(mo) +o(v)o(es)e(of)262 1389 y(com)o(binations)i(leading)i(to)g(a)h(gain)e(in)i +(material.)33 b(Ho)o(w)o(ev)o(er,)21 b(they)f(\014nd)g(it)f(far)h(more)262 +1439 y(di\016cult)13 b(to)g(create)j(p)q(ositions)d(where)i(suc)o(h)g(com)o +(binations)d(exist.)262 1611 y Fr(3.3)69 b(Learning)262 1738 +y Fp(The)14 b(Learning)g(pro)q(cess)h(can)f(b)q(e)h(split)e(in)o(to)g(5)h +(main)e(categories:)324 1821 y Ff(\017)20 b Fp(Rote)14 b(Learning.)324 +1904 y Ff(\017)20 b Fp(Advice)15 b(T)m(aking.)324 1987 y Ff(\017)20 +b Fp(Induction.)324 2070 y Ff(\017)g Fp(Learning)14 b(b)o(y)g(Analogy)m(.)324 +2153 y Ff(\017)20 b Fp(P)o(arameter)14 b(Adjustmen)o(t.)262 +2236 y(The)e(\014rst)h(four)f(categories)h(are)g(directly)g(related)g(to)f +(the)h(w)o(a)o(y)e(h)o(umans)g(learn.)18 b(The)12 b(\014nal)262 +2286 y(category)f(is)g(deriv)o(ed)g(more)f(from)f(the)i(w)o(a)o(y)g(programs) +e(mak)o(e)h(decisions)h(than)g(the)g(h)o(uman)262 2336 y(learning)i(pro)q +(cess.)957 2574 y(37)p eop +%%Page: 38 40 +38 39 bop 262 307 a Fu(3.3.1)55 b(Rote)18 b(Learning)262 419 +y Fp(This)12 b(is)h(the)g(simplest)e(form)g(of)h(mac)o(hine)g(learning.)17 +b(It)12 b(in)o(v)o(olv)o(es)g(the)h(recording)g(of)f(data,)262 +469 y(and)h(use)i(of)e(that)h(same)f(data)h(when)g(faced)g(with)g(exactly)g +(the)g(same)f(situation)h(again.)324 554 y(Most)i(c)o(hess)h(programs)e(use)i +(what)e(is)h(kno)o(wn)f(as)h(an)g("Op)q(ening)g(Bo)q(ok".)23 +b(This)16 b(is)g(a)262 604 y(database)i(of)g(pre-stored)h(op)q(ening)f(lines) +h(of)e(pla)o(y)g(whic)o(h)i(are)f(lo)q(ok)o(ed)g(up)g(and)g(pla)o(y)o(ed)262 +654 y(automatically)12 b(while)k(the)g(t)o(w)o(o)g(pla)o(y)o(ers)g(stic)o(k)g +(to)g(the)h(stored)g(op)q(ening)e(line)h(of)f(mo)o(v)o(es.)262 +704 y(In)h(more)g(sophisticated)i(c)o(hess)g(programs,)e(p)q(ositions)h(and)g +(mo)o(v)o(es)e(are)j(stored,)g(rather)262 754 y(than)c(lines)h(of)g(mo)o(v)o +(es.)20 b(This)15 b(enables)g(a)g(transp)q(osition)g(of)f(mo)o(v)o(es)g(to)h +(b)q(e)h(detected)h(and)262 803 y(allo)o(ws)11 b(mo)o(v)o(es)f(to)j(b)q(e)f +(pla)o(y)o(ed)g(whenev)o(er)i(a)e('kno)o(wn')f(p)q(osition)g(is)h(reac)o +(hed.)19 b(The)13 b(op)q(ening)262 853 y(b)q(o)q(ok)i(is)g(v)o(ery)g(useful)h +(for)f(a)o(v)o(oiding)e(op)q(ening)i(traps,)h(sa)o(ving)e(time)g(and)h +(making)e(mo)o(v)o(es)262 903 y(of)h(a)h(v)o(ery)g(high)g(standard)g(whic)o +(h)g(ha)o(v)o(e)g(y)o(ears)h(of)f(theory)g(and)g(practice)h(b)q(ehind)g +(them.)262 953 y(Ob)o(viously)i(this)i(tec)o(hnique)g(can)f(only)g(co)o(v)o +(er)h(the)g(\014rst)g(few)f(mo)o(v)o(es)f(of)h(a)g(game,)g(an)o(y)262 +1003 y(deviation)13 b(causing)g(the)i(program)d(to)i('think')e(for)i(itself.) +324 1088 y(V)m(arious)i(endgame)f(databases)i(ha)o(v)o(e)f(also)g(b)q(een)i +(created)g(for)e(elemen)o(tary)f(endings)262 1138 y(suc)o(h)g(as)f(king)g +(and)g(pa)o(wn)h(against)e(king.)20 b(When)14 b(database)h(p)q(ositions)f +(are)h(reac)o(hed)h(the)262 1187 y(program)f(can)i(simply)e(lo)q(ok)i(up)g +(the)h(correct)g(mo)o(v)o(e)e(and)h(pla)o(y)f(it.)28 b(I)17 +b(b)q(eliev)o(e)g(for)g(suc)o(h)262 1237 y(simple)12 b(endings,)i(heuristics) +i(can)e(b)q(e)h(dev)o(elop)q(ed)g(whic)o(h)f(will)e(allo)o(w)h(correct)j(pla) +o(y)d(using)262 1287 y(searc)o(h)i(rather)f(than)g(massiv)o(e)f(storage.)324 +1372 y(A)h(more)e(v)o(ersatile)i(tec)o(hnique)h(has)f(b)q(een)g(suggested)i +(b)o(y)d(Da)o(vid)f(Slate)i([58)o(])f(of)g(Chess)262 1422 y(4.5)h(fame.)20 +b(Slate)15 b(suggests)h(a)f(metho)q(d)f(b)o(y)h(whic)o(h)g(a)g(transp)q +(osition)g(table)g(can)g(b)q(e)h(used)262 1472 y(to)d(enable)g(a)g(c)o(hess)i +(program)d(to)h(learn)g(from)f(its)h(exp)q(erience.)20 b(The)14 +b(idea)f(b)q(eing)g(to)h(store)262 1522 y(p)q(ositions)e(where)h(the)h +(program's)c(ev)n(aluation)i(c)o(hanges)h(dramatically)m(.)h(This)f(allo)o +(ws)e(the)262 1572 y(program)h(to)j(a)o(v)o(oid)e(falling)f(in)o(to)i(the)h +(same)f(trap)g(again.)19 b(This)14 b(is)h(of)e(most)h(use)h(in)f(non{)262 +1621 y(b)q(o)q(ok)i(op)q(ening)h(p)q(ositions)g(whic)o(h)f(ma)o(y)f(b)q(e)j +(encoun)o(tered)h(in)d(another)i(game.)26 b(Fidelit)o(y)262 +1671 y(Electronics)14 b(are)f(using)g(a)f(similar)f(tec)o(hnique)i(in)g(one)g +(of)f(their)i(latest)f(commercial)d(c)o(hess)262 1721 y(mac)o(hines)i([21].) +262 1873 y Fu(3.3.2)55 b(Advice)18 b(T)-5 b(aking)262 1985 +y Fp(Advice)16 b(taking)f(c)o(hess)i(programs)e(require)h(the)h(gap)e(b)q(et) +o(w)o(een)i(the)g(programmi)o(ng)c(lev)o(el)262 2035 y(and)e(a)h(c)o(hess)i +(masters)e(kno)o(wledge)g(to)f(b)q(e)i(bridged)f(b)o(y)g(some)f(high)h(lev)o +(el)f(c)o(hess)j(language.)324 2120 y(Most)c(notably)g(Zobrist)g(and)g +(Carlson)g([64)o(])g(dev)o(elop)q(ed)g(suc)o(h)h(a)f(t)o(yp)q(e)h(of)e +(advice)h(taking)262 2170 y(program.)15 b(The)e(program)e(w)o(as)h(tutored)h +(b)o(y)g(Charles)f(Kalme,)f(a)h(US)h(Senior)f(Chess)i(Mas-)262 +2219 y(ter.)22 b(The)15 b('Chess)h(Language')e(used)i(w)o(as)f(relativ)o(ely) +g(sophisticated,)g(but)h(still)e(required)262 2269 y(mathematical)f(w)o(eigh) +o(ts)18 b(to)f(b)q(e)g(assigned)h(to)f(patterns.)29 b(Ho)o(w)o(ev)o(er,)18 +b(c)o(hess)h(masters)e(do)262 2319 y(not)d(consciously)h(conceptualise)h(p)q +(ositions)f(in)f(this)h(w)o(a)o(y)m(.)20 b(Therefore,)c(the)g(advice)f(that) +262 2369 y(can)f(b)q(e)g(giv)o(en)g(is)f(somewhat)g(di\016cult)g(to)h(assign) +g(discrete)h(w)o(eigh)o(tings)f(to.)957 2574 y(38)p eop +%%Page: 39 41 +39 40 bop 324 307 a Fp(The)21 b(program)d(only)i(con)o(tained)g(50)g +(patterns.)39 b(Researc)o(h)22 b(done)e(b)o(y)g(Simon)f(and)262 +357 y(Gilmarti)o(n)13 b([55)o(])j(indicates)g(that)g(a)f(grandmaster)h(has)g +(a)f(v)o(o)q(cabulary)g(of)h(ab)q(out)f(50,000)262 407 y(c)o(hess)i +(patterns.)26 b(Therefore,)17 b(it)f(is)g(not)g(surprising)g(that)h(Zobrist)f +(and)g(Carlson's)g(pro-)262 457 y(gram)c(only)h(p)q(erformed)g(at)h(the)h(no) +o(vice)e(lev)o(el.)262 608 y Fu(3.3.3)55 b(Induction)262 720 +y Fp(A)10 b(n)o(um)o(b)q(er)g(of)g(attempts)g(ha)o(v)o(e)g(b)q(een)i(made)d +(to)h(use)i(induction)e(in)g(c)o(hess)i(programs.)j(Most)262 +770 y(in)o(v)o(olv)o(ed)f(the)j(narro)o(w)f(domain)e(of)i(simple)f(endings)h +(suc)o(h)h(as)g(king)e(and)h(pa)o(wn)g(against)262 820 y(king)11 +b([54)o(].)17 b(Giv)o(en)12 b(a)g(relativ)o(ely)g(large)g(n)o(um)o(b)q(er)g +(of)g(training)f(ev)o(en)o(ts,)j(suc)o(h)f(programs)e(are)262 +870 y(able)16 b(to)g(use)i(induction)e(on)g(a)g(set)i(of)e(kno)o(wn)g +(predicates)i(in)e(order)h(to)g(deriv)o(e)g(a)f(set)h(of)262 +919 y(form)o(ulas.)e(The)d(programs)f(are)h(then)h(able)f(to)f(deal)h(with)g +(suc)o(h)g(endings)h(with)e(80)h(to)g(90\045)262 969 y(success.)21 +b(Ho)o(w)o(ev)o(er,)15 b(a)f(10)g(to)g(20\045)f(lev)o(el)i(of)e(incorrect)j +(pla)o(y)m(,)d(esp)q(ecially)h(in)g(suc)o(h)h(simple)262 1019 +y(endings,)e(is)h(not)g(adequate)g(in)g(tournamen)o(t)f(programs.)324 +1104 y(Stev)o(en)f(Skiena)g(states)h(in)e([57)o(],)g("When)h(more)f(complex)f +(endgames)h(are)i(considered,)262 1154 y(increasingly)19 b(larger)i(n)o(um)o +(b)q(er)e(of)h(predicates)h(will)e(b)q(e)i(needed,)i(un)o(til)c(forms)g(of)h +(con-)262 1204 y(structiv)o(e)d(induction)e(or)h(feature)h(formation)c(are)j +(necessary)m(.)26 b(Systems)16 b(for)f(signi\014can)o(t)262 +1254 y(constructiv)o(e)g(induction)e(simply)f(do)i(not)g(exist.".)262 +1405 y Fu(3.3.4)55 b(Learning)18 b(b)n(y)g(Analogy)262 1517 +y Fp(Learning)10 b(b)o(y)g(analogy)e(is)j(probably)e(the)i(most)e(p)q(o)o(w)o +(erful)h(metho)q(d)g(applicable)f(to)h(pla)o(ying)262 1567 +y(c)o(hess.)19 b(Unfortunately)14 b(it)f(is)h(also)f(v)o(ery)i(di\016cult)e +(to)g(ac)o(hiev)o(e)i(on)e(a)h(mac)o(hine.)324 1652 y(It)h(has)f(b)q(een)i +(found)e(b)o(y)h(de)g(Gro)q(ot)f([16)o(])h(that)f(grandmasters)h(notice)g +(similarities)d(in)262 1702 y(piece)20 b(placemen)o(t,)f(square)h(con)o(trol) +e(and)h(pressure.)36 b(These)21 b(concepts)g(are)e(kno)o(wn)g(to)262 +1752 y(strong)14 b(pla)o(y)o(ers)g(in)g(the)h(form)e(of)h(patterns,)h(mo)o(v) +o(es)e(and)h(goals.)19 b(No)14 b(ma)r(jor)e(w)o(ork)i(seems)262 +1802 y(to)k(ha)o(v)o(e)g(b)q(een)i(done)e(in)g(this)h(imp)q(ortan)o(t)d +(area.)32 b(This)19 b(seems)f(to)g(me)g(to)g(b)q(e)h(a)f(ma)r(jor)262 +1851 y(omission,)11 b(if)i(kno)o(wledge)h(based)g(programs)f(are)h(to)g +(succeed)i(in)d(reac)o(hing)h(master)g(lev)o(el.)262 2003 y +Fu(3.3.5)55 b(P)n(arameter)17 b(Adjustmen)n(t)262 2115 y Fp(This)9 +b(t)o(yp)q(e)i(of)e(learning)g(in)o(v)o(olv)o(es)g(adjusting)g(the)i(w)o +(eigh)o(ts)f(applied)f(to)h(ev)n(aluation)e(criteria)262 2165 +y(in)h(the)h(ligh)o(t)f(of)g(exp)q(erience.)19 b(Those)10 b(criteria)g(whic)o +(h)g(lead)f(to)h(impro)o(v)o(ed)e(p)q(erformance)h(are)262 +2214 y(increased,)18 b(whereas)f(those)h(criteria)f(whic)o(h)f(deteriorate)i +(p)q(erformance)e(are)h(decreased)262 2264 y(or)c(discarded)i(altogether.)324 +2350 y(The)22 b(most)e(notable)h(example)f(of)h(this)g(t)o(yp)q(e)h(of)f(mac) +o(hine)f(learning)g(is)h(Sam)o(uel's)262 2399 y(draugh)o(ts)c(program)f([48)o +(,)h(49)o(].)29 b(Ho)o(w)o(ev)o(er,)18 b(c)o(hess)h(is)e(a)g(far)g(more)g +(complex)f(game)g(than)262 2449 y(draugh)o(ts.)26 b(In)17 b(1961,)e(Max)i(Eu) +o(w)o(e,)g(ex{w)o(orld)f(c)o(hess)i(c)o(hampion,)d(set)j(up)e(a)h(commi)o +(ttee)957 2574 y(39)p eop +%%Page: 40 42 +40 41 bop 262 307 a Fp([20)o(])15 b(to)h(explore)g(the)h(p)q(ossibilities)f +(of)f(applying)g(Sam)o(uel's)f(tec)o(hniques)j(to)f(c)o(hess.)26 +b(The)262 357 y(commi)o(ttee)16 b(concluded)j(that)f(for)f(c)o(hess)j(Sam)o +(uel's)c(tec)o(hniques)j("w)o(ould)e(ha)o(v)o(e)g(to)h(deal)262 +407 y(not)f(with)h(31)g(comp)q(onen)o(t)f(n)o(um)o(b)q(ers)g(but)i(with)e(31) +h(millio)o(n)d(or)j(ev)o(en)h(more")e([28)o(].)30 b(In)262 +457 y(other)14 b(w)o(ords)g(the)h(tec)o(hniques)g(are)f(impractical)e(for)i +(c)o(hess.)324 542 y(More)h(recen)o(tly)h(Thomas)d(Nitsc)o(he)j([45)o(])e +(has)h(exp)q(erimen)o(ted)g(with)g(a)f(learning)g(c)o(hess)262 +592 y(program)9 b(whic)o(h)i(adjusts)h(its)f(o)o(wn)g(parameters)g(using)g +(linear)g(regression.)19 b(The)11 b(program)262 641 y(is)i(capable)h(of)f +(learning)h(from)e(three)j(di\013eren)o(t)g(sources:)324 725 +y Ff(\017)20 b Fp(Analysing)13 b(Master)i(Games.)324 808 y +Ff(\017)20 b Fp(Pla)o(ying)13 b(against)g(Human)f(Opp)q(osition.)324 +891 y Ff(\017)20 b Fp(Pla)o(ying)13 b(against)g(itself.)262 +974 y(Suc)o(h)18 b(tec)o(hniques)i(ha)o(v)o(e)e(not)g(b)q(een)h(generally)f +(successful)i(in)e(comp)q(etitiv)o(e)f(c)o(hess)j(pro-)262 +1023 y(grams.)k(I)17 b(b)q(eliev)o(e)g(the)g(reason)g(for)g(this)f(is)h(that) +f(most)g(ev)n(aluation)f(functions)i(are)g(not)262 1073 y(made)e(up)j(of)e +(simple)f(linear)i(features)h(as)f(used)h(b)o(y)f(Nitsc)o(he.)29 +b(Therefore)18 b(making)d(this)262 1123 y(t)o(yp)q(e)f(of)f(learning)g(m)o +(uc)o(h)g(more)g(di\016cult)g(to)h(apply)m(.)324 1208 y(In)9 +b(conclusion,)h(I)f(think)h(the)g(amoun)o(t)d(of)i(learning)g(necessary)i +(for)f(a)f(program)f(to)h(reac)o(h)262 1258 y(a)i(high)h(lev)o(el)g(of)g +(abilit)o(y)e(has)j(b)q(een)g(sev)o(erely)g(under{estimated.)18 +b(Simon)10 b(and)i(Chase)h([56)o(])262 1308 y(found)19 b(that)h(it)g(tak)o +(es)g(a)g(pla)o(y)o(er)f(ab)q(out)h(a)g(decade)h(of)e(in)o(tense)i(pre{o)q +(ccupation)g(with)262 1358 y(pla)o(ying)11 b(c)o(hess)j(to)f(b)q(ecome)g(a)g +(grandmaster.)k(Humans)12 b(are)h(sup)q(erb)i(learners,)f(mac)o(hines)262 +1408 y(are)19 b(clearly)h(not.)34 b(It)20 b(therefore)g(follo)o(ws)e(that)i +(it)f(will)f(tak)o(e)h(success)j(in)d(most)f(of)h(the)262 1457 +y(categories)e(outlined)f(in)g(this)g(section)i(together)f(with)f(at)g(least) +h(a)f(decade)i(of)e(full)f(time)262 1507 y(w)o(ork,)9 b(advice)h(and)f +(training)g(to)g(pro)q(duce)i(a)e(learning,)g(kno)o(wledge{based)h(c)o(hess)h +(program)262 1557 y(an)o(ywhere)j(near)g(the)h(grandmaster)e(lev)o(el.)262 +1730 y Fr(3.4)69 b(Time)21 b(Con)n(trol)262 1856 y Fp(Chess)11 +b(clo)q(c)o(ks)g(are)g(used)h(in)e(comp)q(etitiv)o(e)g(c)o(hess)i(to)e(allo)o +(w)f(fair)h(allo)q(cation)f(of)h(time)g(to)g(eac)o(h)262 1906 +y(pla)o(y)o(er)j(for)h(the)h(game.)i(Both)d(pla)o(y)o(ers)g(m)o(ust)f(then)i +(conform)d(to)i(a)g(set)h(of)e(time)g(con)o(trols.)262 1956 +y(In)f(tournamen)o(t)g(c)o(hess)h(the)h(general)e(time)f(con)o(trol)i(is)f +(40)g(mo)o(v)o(es)f(in)h(2)g(hours)h(follo)o(w)o(ed)e(b)o(y)262 +2005 y(20)g(mo)o(v)o(es)g(in)h(ev)o(ery)h(subsequen)o(t)g(hour.)18 +b(Some)11 b(time)g(con)o(trols)h(can)g(b)q(e)h("sudden)g(death",)262 +2055 y(e.g.)k(all)c(mo)o(v)o(es)g(in)g(30)g(min)o(utes.)324 +2141 y(An)o(y)j(c)o(hess)h(program)e(written)h(to)g(comp)q(ete)g(with)g(h)o +(umans)f(or)h(other)g(programs)f(in)262 2190 y(tournamen)o(t)e(games)h(m)o +(ust)g(therefore)i(ha)o(v)o(e)e(an)h(algorithm)d(to)i(con)o(trol)h(its)f +(time)g(usage.)262 2240 y(The)g(time)f(sp)q(en)o(t)i(on)e(eac)o(h)i(mo)o(v)o +(e)d(do)q(es)j(not)f(ha)o(v)o(e)f(to)h(b)q(e)h(constan)o(t,)f(in)f(fact)h(it) +g(is)g(prefer-)262 2290 y(able)g(that)h(it)f(is)h(not.)20 b(It)15 +b(is)g(wise)g(to)g(pla)o(y)e(ob)o(vious)h(or)h(forced)h(mo)o(v)o(es)d(quic)o +(kly)h(and)h(tak)o(e)262 2340 y(longer)i(on)h(more)f(di\016cult)g(mo)o(v)o +(es.)28 b(Therefore,)20 b(a)d(sophisticated)i(time)d(con)o(trol)i(algo-)262 +2390 y(rithm)11 b(m)o(ust)h(detect)i(these)g(cases)h(and)d(allo)q(cate)g(its) +h(time)f(appropriately)m(.)k(I)d(b)q(eliev)o(e)g(it)g(is)262 +2439 y(also)g(part)h(of)f(suc)o(h)i(an)f(algorithms)d(resp)q(onsibilit)o(y)j +(to)g(detect)h(when)g(the)f(horizon)g(e\013ect)957 2574 y(40)p +eop +%%Page: 41 43 +41 42 bop 262 307 a Fp(ma)o(y)11 b(b)q(e)j(o)q(ccurring)f(and)g(allo)q(cate)g +(enough)g(time)f(where)i(p)q(ossible)g(to)f(see)h(o)o(v)o(er)f(the)h(hori-) +262 357 y(zon.)k(T)m(o)13 b(ac)o(hiev)o(e)h(these)h(aims,)c(the)k(algorithm)c +(m)o(ust)h(kno)o(w)i(what)f(scores)j(the)e(searc)o(h)h(is)262 +407 y(calculating)10 b(at)i(eac)o(h)g(iteration)f(and)h(the)g(state)h(of)e +(the)i(searc)o(h)f(at)g(a)g(giv)o(en)f(p)q(oin)o(t)g(in)g(time.)324 +492 y(Time)j(con)o(trol)h(problems)f(are)i(eased)h(b)o(y)e(the)h(use)g(of)f +(iterativ)o(e)g(deep)q(ening)i(b)q(ecause)262 542 y(of)c(the)j(con)o(tin)o +(uous)e(a)o(v)n(ailabili)o(t)o(y)e(of)i(the)h(b)q(est)h(mo)o(v)o(e)d(found)h +(so)g(far.)20 b(The)15 b(time)e(used)j(up)262 592 y(thinking)g(ab)q(out)i +(the)h(curren)o(t)g(mo)o(v)o(e)d(m)o(ust)h(b)q(e)i(c)o(hec)o(k)o(ed)g +(regularly)e(against)g(the)i(time)262 641 y(allo)q(cation)14 +b(to)j(a)o(v)o(oid)e(the)i(p)q(ossibilities)f(of)g(o)o(v)o(er)g(using)h(time) +e(or)h(ev)o(en)i(losing)d(on)h(time.)262 691 y(Unfortunately)m(,)g(it)g(is)g +(not)h(enough)f(to)h(c)o(hec)o(k)g(the)g(time)f(after)g(eac)o(h)h(iteration)f +(or)h(ev)o(en)262 741 y(after)f(eac)o(h)h(\014rst)g(lev)o(el)g(branc)o(h.)26 +b(This)16 b(is)g(b)q(ecause)i(some)e(branc)o(hes)i(ma)o(y)c(tak)o(e)j(a)f +(large)262 791 y(amoun)o(t)c(of)j(time)e(to)h(searc)o(h.)22 +b(Therefore,)16 b(a)e(successful)j(time)c(con)o(trol)i(algorithm)d(m)o(ust) +262 841 y(b)q(e)g(closely)f(link)o(ed)g(to)h(the)g(actual)f(tree)i(searc)o(h) +g(mec)o(hanism)c(at)j(all)e(but)i(the)h(v)o(ery)f(deep)q(est)262 +891 y(lev)o(els)h(of)h(the)g(tree.)324 976 y(During)h(m)o(y)g(researc)o(h)j +(I)e(ha)o(v)o(e)g(noticed)g(a)g(distinct)h(lac)o(k)e(of)h(published)g +(material)e(in)262 1026 y(this)f(area.)18 b(The)13 b(articles)h(b)o(y)f(R.)f +(Hy)o(att)h([30])f(and)h(H.)g(Berliner)h([7])e(are)i(the)g(only)e(articles) +262 1075 y(of)j(an)o(y)g(substance)i(in)f(this)g(area.)23 b(I)16 +b(\014nd)g(this)g(rather)g(surprising)g(b)q(ecause)i(as)e(I)f(see)i(it,)262 +1125 y(this)c(is)h(an)g(imp)q(ortan)o(t)e(elemen)o(t)h(of)h(an)o(y)f(strong)h +(c)o(hess)i(program.)957 2574 y(41)p eop +%%Page: 42 44 +42 43 bop 262 654 a Fn(Chapter)34 b(4)262 897 y Fo(The)39 b(Ev)-7 +b(aluation)42 b(F)-10 b(unction)262 1148 y Fp(In)11 b(this)g(c)o(hapter)h(I)f +(will)f(de\014ne)i(and)f(explain)f(the)i(heuristics)g(I)g(consider)g(to)f(b)q +(e)g(imp)q(ortan)o(t)262 1198 y(in)h(assessing)j(the)f(merits)e(of)h(a)g(c)o +(hess)i(p)q(osition.)i(I)d(in)o(tend)f(to)g(implemen)o(t)e(these)k(ideas)e +(in)262 1248 y(a)g(new)h(c)o(hess)i(program)c(called)i("HIAR)o(CS)f(5.0".)324 +1333 y(I)e(hop)q(e)h(to)f(pro)q(duce)h(an)f(ev)n(aluation)f(function)h(whic)o +(h)g(has)g(the)h(p)q(ositional)e(kno)o(wledge)262 1383 y(at)j(or)g(near)g +(the)h(exp)q(ert)h(lev)o(el)e(\(2000)f(ELO\).)h(It)g(w)o(ould)g(normally)d +(tak)o(e)k(a)e(h)o(uman)g(pla)o(y)o(er)262 1433 y(some)17 b(5)h(y)o(ears)g +(of)g(in)o(tensiv)o(e)g(c)o(hess)i(exp)q(erience)g(and)e(learning)g(to)g(ac)o +(hiev)o(e)g(this)g(lev)o(el.)262 1483 y(Therefore,)f(m)o(y)e(aim)f(to)i +(instill)f(enough)i(kno)o(wledge)f(in)g(a)g(program)f(within)g(the)i(short) +262 1532 y(p)q(erio)q(d)12 b(of)f(time)f(a)o(v)n(ailable)g(for)h(this)h(pro)r +(ject)h(is)f(daun)o(ting.)k(Ho)o(w)o(ev)o(er,)c(I)g(can)g(dra)o(w)g(on)f(m)o +(y)262 1582 y(o)o(wn)j(exp)q(erience)j(of)e(tournamen)o(t)f(c)o(hess)j(and)e +(the)g(exp)q(eriences)j(of)c(some)h(great)g(master)262 1632 +y(pla)o(y)o(ers)e(who)f(ha)o(v)o(e)h(written)h(ab)q(out)f(c)o(hess)i +(strategy)m(.)j(In)13 b(particular,)f(the)i(famous)d(b)q(o)q(oks)262 +1682 y("My)j(System")h(and)g("Chess)h(Praxis")f(b)o(y)g(Aron)h(Nimzo)o(witsc) +o(h)e([43)o(,)g(44])h(con)o(tain)f(some)262 1732 y(v)o(ery)h(deep)g(though)o +(ts)g(on)g(p)q(ositional)e(and)i(strategic)h(pla)o(y)m(.)j(Therefore,)d(I)f +(will)e(use)j(suc)o(h)262 1781 y(ideas)e(to)f(help)h(dev)o(elop)g(heuristics) +h(to)f(ev)n(aluate)f(p)q(ositions.)324 1867 y(As)f(I)g(see)h(it,)e(there)i +(are)f(three)h(main)d(problems)g(facing)h(the)i(dev)o(elopmen)o(t)d(of)i(a)f +('go)q(o)q(d')262 1916 y(ev)n(aluation)h(function:)324 1999 +y Ff(\017)20 b Fp(Determining)13 b Fl(whic)o(h)f Fp(criteria)i(are)h(imp)q +(ortan)o(t.)324 2083 y Ff(\017)20 b Fp(Deciding)14 b Fl(when)f +Fp(the)h(criteria)h(are)f(imp)q(ortan)o(t.)324 2166 y Ff(\017)20 +b Fp(Deciding)14 b Fl(what)f Fp(the)i(relativ)o(e)e(merits)h(of)f(eac)o(h)h +(criterion)h(should)e(b)q(e.)262 2249 y(It)h(is)g(vital)e(to)i(get)h(all)d +(three)k(of)d(these)j(asp)q(ects)f('righ)o(t'.)i(F)m(or)d(example,)e(a)i +(program)f(ma)o(y)262 2298 y(kno)o(w)i(that)g(bishops)h(are)g(strong)g(in)f +(some)g(p)q(ositions.)22 b(Ho)o(w)o(ev)o(er,)16 b(if)f(it)g(do)q(es)i(not)e +(kno)o(w)262 2348 y(with)10 b(accuracy)j(when)f(those)g(p)q(ositions)f(o)q +(ccur,)h(it)f(cannot)h(apply)e(its)h(ev)n(aluation)f(criteria)262 +2398 y(e\013ectiv)o(ely)m(.)20 b(There)c(are)f(no)f(p)q(erfect)j(answ)o(ers,) +e(often)g(ev)n(aluation)e(criteria)i(ma)o(y)e(con)o(tra-)262 +2448 y(dict)j(eac)o(h)g(other)h(b)q(ecause)h(of)e(an)f(inevitable)h(in)o +(teraction)g(and)g(o)o(v)o(erlap)g(b)q(et)o(w)o(een)h(eac)o(h)957 +2574 y(42)p eop +%%Page: 43 45 +43 44 bop 262 307 a Fp(t)o(yp)q(e)15 b(of)g(c)o(hess)i(kno)o(wledge)e +(represen)o(ted.)25 b(Therefore,)17 b(eac)o(h)f(criterion)g(is)f(not)g(indep) +q(en-)262 357 y(den)o(t)i(in)f(its)h(o)o(wn)f(righ)o(t,)g(but)h(m)o(ust)f(b)q +(e)h(considered)h(with)e(all)g(other)h(relev)n(an)o(t)g(criteria.)262 +407 y(Hence,)e(the)h(relativ)o(e)e(w)o(eigh)o(ting)g(for)g(eac)o(h)h(asp)q +(ect)h(of)f(ev)n(aluation)e(is)h(imp)q(ortan)o(t.)19 b(Ho)o(w-)262 +457 y(ev)o(er,)f(the)g(criteria)f(can)h(only)e(b)q(e)i(considered)g(correct)h +(in)e(a)g(statistical)g(sense,)i(not)e(an)262 506 y(absolute)c(sense.)324 +592 y(These)k(three)f(main)e(problem)g(areas)i(m)o(ust)e(b)q(e)i(considered)h +(when)f(dev)o(eloping)f(eac)o(h)262 641 y(heuristic.)36 b(Dev)o(eloping)19 +b(an)h(ev)n(aluation)e(function)i(is)f(a)h(v)o(ery)g(iterativ)o(e)g(pro)q +(cess.)38 b(In)262 691 y(the)16 b(ligh)o(t)e(of)h(seeing)h(a)f(program)f(pla) +o(y)h(the)h(game,)e(the)i(heuristics)h(will)d(b)q(e)i(con)o(tin)o(ually)262 +741 y(ev)o(olv)o(ed.)22 b(This)15 b(\014ts)h(in)f(w)o(ell)g(with)g(the)h +(equiv)n(alen)o(t)e(h)o(uman)g(pro)q(cess)j(where)g(kno)o(wledge)262 +791 y(is)e(con)o(tin)o(ually)f(in)i(a)f(state)i(of)e(ev)o(olution,)g +(although)g(this)g(is)h(an)g(automatic)d(pro)q(cess)18 b(in)262 +841 y(the)c(case)h(of)e(a)h(h)o(uman)e(pla)o(y)o(er.)324 926 +y(The)f(ev)n(aluation)f(function)h(will)e(deal)i(with)f(the)i(op)q(ening,)f +(middle)e(game)h(and)g(general)262 976 y(endgame)15 b(to)i(allo)o(w)e(a)i +(program)e(to)i(pla)o(y)f(the)h(en)o(tire)h(game.)26 b(Kno)o(wledge)17 +b(for)f(sp)q(eci\014c)262 1026 y(endgames,)j(suc)o(h)h(as)g(bishop)f(v)o +(ersus)h(knigh)o(t)f(endings,)h(will)e(b)q(e)i(omitted)e(b)q(ecause)j(of)262 +1075 y(time)12 b(constrain)o(ts.)20 b(Ho)o(w)o(ev)o(er,)14 +b(their)g(implemen)o(tation)d(is)j(just)g(a)g(matter)g(of)f(applying)g(a)262 +1125 y(similar)e(approac)o(h)j(to)g(that)f(whic)o(h)h(I)g(am)e(applying)h(to) +g(the)i(more)e(general)h(cases.)324 1210 y(The)f(ev)n(aluation)f(criteria)i +(will)d(b)q(e)j(de\014ned)g(in)f(a)g(formal)d(manner,)i(using)h(b)q(oth)h +(func-)262 1260 y(tional)8 b(and)j(algorithmi)o(c)d(descriptions)j(where)h +(appropriate.)17 b(T)m(o)9 b(raise)i(the)g(lev)o(el)e(of)h(c)o(hess)262 +1310 y(kno)o(wledge)i(whic)o(h)h(can)g(b)q(e)g(concisely)g(represen)o(ted)j +(b)o(y)c(the)h(de\014nitions,)g(I)g(ha)o(v)o(e)f(written)262 +1360 y(a)k(large)g(n)o(um)o(b)q(er)g(of)f(pseudo)j(co)q(de)f(functions.)26 +b(These)17 b(pre-de\014ned)h(functions)f(will)e(b)q(e)262 1410 +y(used)j(extensiv)o(ely)h(in)e(the)h(de\014nition)g(of)f(ev)n(aluation)f +(criteria.)30 b(A)18 b(full)f(description)h(of)262 1460 y(these)d(functions)f +(can)g(b)q(e)g(found)g(in)f(app)q(endix)h(B.)324 1545 y(The)g(ev)n(aluation)e +(function)i(m)o(ust)f(b)q(e)h(considered)h(as)f(a)g(whole.)j(The)e(p)q +(ositional)d(fea-)262 1595 y(tures)19 b(for)e(ev)o(en)i(a)f(single)f(t)o(yp)q +(e)i(of)e(piece)i(are)g(ev)n(aluated)e(o)o(v)o(er)h(a)g(n)o(um)o(b)q(er)f(of) +h(criteria.)262 1644 y(Therefore,)i(remem)o(b)q(er)e(the)i(criteria)f(are)g +(not)g(indep)q(enden)o(t,)i(but)e(closely)g(link)o(ed)f(to-)262 +1694 y(gether.)25 b(The)16 b(ev)n(aluation)e(criteria)i(ha)o(v)o(e)g(an)g +(a\013ect)h(on)e(b)q(oth)h(sides.)25 b(Therefore,)17 b(while)262 +1744 y(w)o(eaknesses)g(are)f(discouraged)g(from)e(one)i(sides)h(p)q(oin)o(t)e +(of)g(view,)h(their)g(creation)g(in)f(the)262 1794 y(opp)q(onen)o(ts)f(p)q +(osition)f(is)h(activ)o(ely)f(encouraged.)957 2574 y(43)p eop +%%Page: 44 46 +44 45 bop 262 307 a Fr(4.1)69 b(De\014nition)21 b(1)i(:)31 +b(Material)262 434 y Fp(Lik)o(e)20 b(all)f(other)i(c)o(hess)h(programs,)e(m)o +(y)f(ev)n(aluation)f(function)j(will)d(hold)i(material)f(as)262 +483 y(the)13 b(main)e(comp)q(onen)o(t.)16 b(Ho)o(w)o(ev)o(er,)d(unlik)o(e)f +(most)g(other)h(programs)f(this)h(will)e(not)i(b)q(e)g(the)262 +533 y(o)o(v)o(erriding)d(factor.)17 b(In)11 b(fact,)g(I)g(in)o(tend)g(to)g +(mak)o(e)f(the)i(ev)n(aluation)d(function)i(sophisticated)262 +583 y(enough)j(to)f(b)q(e)i(willing)c(to)j(giv)o(e)g(up)g(material)d(for)j +(go)q(o)q(d)f(p)q(ositional)g(comp)q(ensation.)324 668 y(T)m(raditional)j(c)o +(hess)j(b)q(o)q(oks)f(for)g(b)q(eginners)h(adv)o(o)q(cate)f(the)h(follo)o +(wing)d(appro)o(ximate)262 718 y(v)n(alues)c(for)f(eac)o(h)i(piece)g(:-)f(P)o +(a)o(wn,)g(1)g(p)q(oin)o(t;)g(Knigh)o(t,)f(3)h(p)q(oin)o(ts;)h(Bishop,)f(3)g +(p)q(oin)o(ts;)g(Ro)q(ok,)262 768 y(5)18 b(p)q(oin)o(ts;)j(Queen,)g(9)d(p)q +(oin)o(ts)h(and)g(King,)g Ff(1)p Fp(.)33 b(Ho)o(w)o(ev)o(er,)20 +b(these)g(piece)g(v)n(alues)e(w)o(ould)262 818 y(require)j(p)q(ositional)e(v) +n(alues)i(ha)o(ving)e(a)i(non)f(in)o(teger)i(represen)o(tation)g(in)e(most)g +(cases.)262 867 y(F)m(or)e(reasons)h(of)f(e\016ciency)m(,)i(most)e(con)o +(temp)q(orary)g(c)o(hess)i(programs)d(use)j(in)o(tegers)f(for)262 +917 y(p)q(ositional)13 b(as)i(w)o(ell)f(as)h(material)d(v)n(alues.)20 +b(Therefore,)c(I)f(prop)q(ose)g(to)g(use)h(a)e(basic)h(pa)o(wn)262 +967 y(v)n(alue)e(of)h(100.)19 b(This)14 b(pro)o(vides)h(a)f(p)q(ositional)f +(resolution)h(to)g(1/100)f(th)i(of)f(a)g(pa)o(wn.)19 b(The)262 +1017 y(v)n(alues)13 b(of)g(the)i(other)f(pieces)i(will)c(b)q(e)i(assigned)h +(relativ)o(e)e(to)h(this)g(basic)g(pa)o(wn)g(v)n(alue.)344 +1150 y Fh(M)5 b(T)413 1156 y Fe(col)469 1150 y Fp(=)513 1119 +y Fc(P)556 1130 y Fk(64)556 1163 y Fe(sq)q Fk(=1)734 1150 y +Fl(if)13 b Fp(\(Occup)o(y\([An)o(y],col,sq\)\))793 1203 y Fl(case)h +Fp(On\(sq\))h Fl(of)852 1253 y Fp(P)o(a)o(wn)136 b(:)18 b(P)o(a)o(wnV)m(alue) +852 1303 y(Knigh)o(t)110 b(:)18 b(Knigh)o(tV)m(alue)852 1353 +y(Bishop)112 b(:)18 b(BishopV)m(alue)852 1403 y(Ro)q(ok)140 +b(:)18 b(Ro)q(okV)m(alue)852 1452 y(Queen)122 b(:)18 b(QueenV)m(alue)852 +1502 y(King)148 b(:)18 b(KingV)m(alue)793 1552 y Fl(endcase)734 +1602 y(endif)344 1702 y(where)380 1751 y Fp(P)o(a)o(wnV)m(alue)152 +b(=)14 b(100)380 1801 y(Knigh)o(tV)m(alue)126 b(=)14 b(325)380 +1851 y(BishopV)m(alue)128 b(=)14 b(340)380 1901 y(Ro)q(okV)m(alue)156 +b(=)14 b(520)380 1951 y(QueenV)m(alue)138 b(=)14 b(960)380 +2000 y(KingV)m(alue)164 b(=)14 b(10000)262 2115 y(F)m(ew)20 +b(pla)o(y)o(ers)g(agree)h(on)f(the)h(relativ)o(e)f(merits)f(of)h(a)g(knigh)o +(t)g(and)g(bishop.)37 b(Both)20 b(are)262 2165 y(suited)c(to)g(di\013eren)o +(t)h(t)o(yp)q(es)g(of)f(p)q(osition.)23 b(My)16 b(o)o(wn)g(view)g(is)g(that)g +(programs)f(generally)262 2214 y(use)g(bishops)f(more)g(e\013ectiv)o(ely)h +(than)f(knigh)o(ts.)20 b(This)14 b(is)g(b)q(ecause)i(programs)e(pla)o(y)f(op) +q(en)262 2264 y(p)q(ositions)g(b)q(etter)j(than)e(closed)g(ones.)19 +b(Bishops)c(are)f(usually)f(stronger)i(than)f(knigh)o(ts)g(in)262 +2314 y(op)q(en)i(p)q(ositions)f(and)h(inferior)f(in)g(closed)i(p)q(ositions.) +23 b(Therefore)17 b(I)f(prop)q(ose)h(to)e(set)i(the)262 2364 +y(knigh)o(t)c(and)g(bishop)h(v)n(alues)g(to)f(325)h(and)f(340)g(p)q(oin)o(ts) +h(resp)q(ectiv)o(ely)m(.)324 2449 y(Ro)q(oks)j(are)i(particularly)e(strong)h +(pieces)i(when)e(giv)o(en)g(scop)q(e)h(e.g.)30 b(on)18 b(op)q(en)h(\014les.) +957 2574 y(44)p eop +%%Page: 45 47 +45 46 bop 262 307 a Fp(They)12 b(are)h(generally)e(w)o(orth)h(ab)q(out)g(a)g +(knigh)o(t)g(and)g(t)o(w)o(o)f(pa)o(wns.)18 b(I)12 b(will)f(use)h(a)g(ro)q +(ok)g(v)n(alue)262 357 y(of)h(520)g(p)q(oin)o(ts.)324 442 y(The)h(queen)g(is) +f(the)i(most)d(p)q(o)o(w)o(erful)h(piece)h(on)g(the)g(b)q(oard.)k(Its)c(scop) +q(e)g(and)g(con)o(tribu-)262 492 y(tion)e(to)h(tactical)g(c)o(hess)h(mak)o +(es)e(it)h(ideal)f(for)h(c)o(hess)h(programs.)j(T)m(o)12 b(re\015ect)j(this,) +e(I)f(in)o(tend)262 542 y(to)h(use)i(a)f(queen)g(v)n(alue)g(of)f(960)g(p)q +(oin)o(ts.)324 627 y(The)e(king)g(is)g(ob)o(viously)e(the)j(most)e(imp)q +(ortan)o(t)f(piece.)18 b(It's)12 b(capture)g(will)d(nev)o(er)k(o)q(ccur)262 +677 y(in)j(an)h(actual)f(game.)25 b(Ho)o(w)o(ev)o(er,)18 b(it)e(remains)g +(useful)h(to)g(assign)g(a)f(v)n(alue)g(to)h(re\015ect)i(its)262 +727 y(ultimate)12 b(imp)q(ortance.)17 b(I)d(will)e(use)j(a)e(v)n(alue)h(of)f +(10000)f(p)q(oin)o(ts.)324 812 y(It)k(m)o(ust)g(b)q(e)h(remem)o(b)q(ered)f +(these)i(v)n(alues)e(only)g(represen)o(t)j(the)e(basic)g(piece)g(v)n(alues.) +262 862 y(When)9 b(p)q(ositions)g(particularly)g(suited)h(to)f(certain)h(t)o +(yp)q(es)g(of)f(pieces)h(o)q(ccur,)h(the)f(p)q(ositional)262 +912 y(v)n(alue)15 b(of)h(the)g(relev)n(an)o(t)h(piece)g(will)e(increase)i(to) +f(re\015ect)i(its)e(added)h(imp)q(ortance)e(in)h(the)262 961 +y(curren)o(t)f(p)q(osition.)324 1047 y(A)22 b(total)f(material)e(v)n(alue)j +(will)e(b)q(e)i(main)o(tained)e(incremen)o(tally)g(throughout)i(the)262 +1096 y(searc)o(h,)c(for)f(reasons)h(of)f(e\016ciency)m(.)28 +b(This)18 b(allo)o(ws)e(the)h(curren)o(t)i(material)c(v)n(alue)i(to)g(b)q(e) +262 1146 y(almost)12 b(instan)o(tly)h(a)o(v)n(ailable)e(at)j(all)f(no)q(des)h +(of)g(the)g(tree,)h(in)o(terior)f(and)f(leaf.)p 641 1240 673 +5 v 641 1904 5 665 v 646 1323 a Fg(0Z0ZrskZ)646 1406 y(Zpo0Zpop)646 +1489 y(0ZpZ0Z0Z)646 1572 y(o0Z0l0Z0)646 1655 y(0Z0ZPZnZ)646 +1738 y(Z0M0L0Z0)646 1821 y(POPZ0OPO)646 1904 y(Z0ZRS0J0)p 1310 +1904 V 641 1908 673 5 v 266 2027 a Fp(Figure)h(4.1:)j Fl(Fidelit)o(y)c(68030) +i(v)h(HIAR)o(CS)g(4.1)p Fp(,)d(1989)g(Olympiad,)e(White)j(to)g(Pla)o(y)m(.) +324 2145 y(In)g(\014gure)g(4.1,)f(the)h(Material)f(totals)h(for)f(white)h +(and)g(blac)o(k)f(are)i(as)f(follo)o(ws:)344 2242 y Fh(M)5 +b(T)413 2248 y Fe(W)t(hite)533 2242 y Fp(=)14 b(13025)344 2292 +y Fh(M)5 b(T)413 2298 y Fe(B)q(lack)533 2292 y Fp(=)14 b(13025)957 +2574 y(45)p eop +%%Page: 46 48 +46 47 bop 262 307 a Fr(4.2)69 b(De\014nition)21 b(2)i(:)31 +b(Game)22 b(Phase)262 434 y Fp(As)14 b(already)f(explained,)g(it)h(is)f(imp)q +(ortan)o(t)f(to)i(split)f(the)i(game)d(in)o(to)h(phases,)h(so)g(that)g(the) +262 483 y(ev)n(aluation)c(criteria)j(can)f(b)q(e)h(applied)f(smo)q(othly)m(,) +e(th)o(us)j(a)o(v)o(oiding)d(notorious)i(cli\013s)g(in)g(the)262 +533 y(ev)n(aluation)g(surface.)324 618 y(T)m(o)e(ac)o(hiev)o(e)i(this)g(smo)q +(oth)e(transition)h(b)q(et)o(w)o(een)i(di\013eren)o(t)f(ev)n(aluation)e +(criteria,)i(I)f(will)262 668 y(split)i(the)h(game)f(up)h(in)o(to)f(16)g +(separate)i(phases.)344 766 y(phase)g(=)f(PS)344 815 y(revPhase)i(=)e(17)f +Ff(\000)h Fp(phase)344 915 y Fl(where)380 965 y Fp(PS)g(:)159 +b(totalMtl)13 b(=)h Fh(M)5 b(tl)899 971 y Fe(W)t(hite)1005 +965 y Fp(+)10 b Fh(M)5 b(tl)1119 971 y Fe(B)q(lack)616 1015 +y Fl(if)13 b Fp(\(totalMtl)g Ff(\024)h Fp(21870\))658 1065 +y(1)616 1114 y Fl(else)658 1164 y Fp(\(totalMtl)f Ff(\000)h +Fp(21570\))e(/)i(300)616 1214 y Fl(endif)380 1314 y Fh(M)5 +b(tl)452 1320 y Fe(W)t(hite)563 1314 y Fp(:)41 b(T)m(otal)12 +b(non{pa)o(wn)i(white)g(material.)380 1413 y Fh(M)5 b(tl)452 +1419 y Fe(B)q(lack)556 1413 y Fp(:)48 b(T)m(otal)12 b(non{pa)o(wn)i(blac)o(k) +f(material.)324 1532 y(In)19 b(the)h(op)q(ening)f(p)q(osition)g(the)h(phase)g +(will)e(b)q(e)i(16.)34 b(The)20 b(phase)g(then)g(decreases)262 +1581 y(linearly)11 b(as)i(material)d(is)i(captured,)i(except)g(when)f(the)g +(total)f(non-pa)o(wn)g(material)e(v)n(alue)262 1631 y(falls)i(b)q(elo)o(w)h +(21870)f(units.)18 b(A)o(t)13 b(this)h(p)q(oin)o(t)f(the)h(phase)g(remains)e +(at)h(1)h(for)f(the)h(rest)g(of)f(the)262 1681 y(game,)h(unless)i(the)g +(material)e(v)n(alue)h(rises)h(again)1048 1666 y Fk(1)1066 +1681 y Fp(.)23 b(As)16 b(an)g(example,)e(in)h(\014gure)h(4.1)f(the)262 +1731 y(Game)d(Phase)i(is)g(calculated)g(b)o(y:)k(phase)d(=)f(\(24650)e +Ff(\000)j Fp(21570\))d(/)i(300)f(=)h(10.)324 1816 y(This)i(phase)i(concept)g +(will)d(not)i(b)q(e)g(used)h(to)f(decide)h(when)f(rapid)f(dev)o(elopmen)o(t)g +(of)262 1866 y(pieces)f(should)f(tak)o(e)h(place.)20 b(This)14 +b(will)f(b)q(e)i(left)f(to)g(sp)q(ecial)h(dev)o(elopmen)o(t)e(criteria.)20 +b(The)262 1916 y(concept)15 b(will)e(ho)o(w)o(ev)o(er,)i(b)q(e)g(used)g(to)f +(progressiv)o(ely)h(mo)q(dify)d(those)j(ev)n(aluation)e(criteria)262 +1966 y(whic)o(h)f(are)h(a\013ected)h(b)o(y)e(material)e(status.)18 +b(F)m(or)12 b(example,)f(passed)j(pa)o(wns)e(b)q(ecome)h(more)262 +2015 y(imp)q(ortan)o(t)f(as)i(the)g(material)e(on)i(the)g(b)q(oard)g +(diminishes.)324 2101 y(The)h(game)f(phase)i(is)f(based)h(on)f(non{pa)o(wn)g +(material)e(b)q(ecause)k(in)e(c)o(hess)i(it)d(is)i(gen-)262 +2150 y(erally)d(imp)q(ortan)o(t)f(to)i(trade)g(pieces)h(not)f(pa)o(wns)g +(when)g(ahead)g(in)g(material.)i(Therefore,)262 2200 y(the)e(phase)h(pro)o +(vides)g(a)f(metho)q(d)g(of)f(encouraging)i(the)g(program)d(to)i(trade)h +(pieces)h(when)262 2250 y(ahead)i(in)f(order)i(to)f(increase)h(some)f(fa)o(v) +o(ourable)f(p)q(ositional)f(criteria)j(suc)o(h)f(as)h(passed)262 +2300 y(pa)o(wn)f(v)n(alues.)34 b(T)m(rading)19 b(pa)o(wns)g(will)f(not)h(b)q +(e)h(encouraged)g(b)q(ecause)h(the)f(phase)g(will)262 2350 +y(remain)12 b(una\013ected.)p 262 2411 573 2 v 308 2437 a Fj(1)325 +2449 y Fi(b)q(ecause)e(of)h(pa)o(wn)g(promotions)957 2574 y +Fp(46)p eop +%%Page: 47 49 +47 48 bop 262 307 a Fr(4.3)69 b(General)22 b(P)n(ositional)g(Ev)l(aluation) +262 442 y Fu(4.3.1)55 b(De\014nition)17 b(3)i(:)24 b(Mobilit)n(y)262 +554 y Fp(Mobilit)o(y)8 b(is)i(the)h(degree)g(of)f(piece)h(freedom)e(in)h(a)g +(giv)o(en)g(p)q(osition.)16 b(Study)10 b(has)g(sho)o(wn)h(that)262 +604 y(there)k(is)g(a)f(clear)h(di\013erence)i(b)q(et)o(w)o(een)f(the)f +(mobilit)o(y)c(of)j(the)h(winning)f(and)g(losing)g(sides)262 +654 y(as)i(the)i(game)d(progresses.)28 b(This)17 b(is)g(to)f(b)q(e)h(exp)q +(ected)i(when)e(one)g(side)g(has)g(a)g(material)262 703 y(adv)n(an)o(tage.)23 +b(Ho)o(w)o(ev)o(er,)16 b(it)f(has)h(also)g(b)q(een)h(found)e(that)h(the)g +(side)h(whic)o(h)e(can)h(main)o(tain)262 753 y(the)e(highest)g(mobilit)o(y)d +(is)j(the)g(side)g(most)f(lik)o(ely)g(to)g(win)h(the)g(game)f([27)o(].)324 +838 y(This)e(sho)o(ws)h(that)f(maximi)o(sing)d(mobilit)o(y)h(is)i(an)g +(excellen)o(t)i(heuristic.)18 b(In)11 b(fact,)g(Slater)262 +888 y([59)o(])e(is)g(of)g(the)i(opinion)d(that)i(mobilit)o(y)c(in)j(itself)h +(is)f(a)h(su\016cien)o(t)g(measure)f(of)h(all)e(the)i(factors)262 +938 y(suggested)15 b(b)o(y)f(Shannon)h([53)o(].)k(I)14 b(also)g(consider)h +(mobilit)o(y)c(to)j(b)q(e)h(an)f(imp)q(ortan)o(t)f(factor,)262 +988 y(although)f(I)i(do)g(think)g(man)o(y)e(other)i(heuristics)h(are)f(also)g +(imp)q(ortan)o(t.)324 1073 y(In)g(1985,)e(Johnathon)i(Sc)o(hae\013er)i([51)o +(])d(did)h(some)f(researc)o(h)i(to)f(\014nd)g(the)h(relativ)o(e)f(im-)262 +1123 y(p)q(ortance)e(of)g(v)n(arious)f(ev)n(aluation)f(criteria.)18 +b(In)12 b(this)g(researc)o(h)h(Sc)o(hae\013er)h(found)d(that)h(the)262 +1173 y(mobilit)o(y)f(heuristic)16 b(con)o(tributed)g(more)e(than)h(an)o(y)g +(other)g(term)g(to)f(program)g(strength.)262 1223 y(In)i(fact,)i(when)f(a)g +(mobilit)o(y)d(criterion)j(w)o(as)g(added)g(to)g(a)g(program)e(without)h(an)o +(y)h(p)q(osi-)262 1272 y(tional)e(kno)o(wledge,)h(a)g(rating)g(increase)i(of) +e(310)f(p)q(oin)o(ts)i(o)q(ccurred.)27 b(This)16 b(w)o(as)h(the)g(\014rst)262 +1322 y(ev)n(aluation)12 b(criterion)i(added.)k(It)c(could)f(therefore)i(b)q +(e)g(exp)q(ected)g(to)f(mak)o(e)e(a)h(large)h(con-)262 1372 +y(tribution)c(to)h(program)e(p)q(erformance.)17 b(Ho)o(w)o(ev)o(er,)12 +b(suc)o(h)g(a)f(large)f(increase)j(is)e(exceptional)262 1422 +y(and)i(clearly)h(sho)o(ws)h(mobilit)o(y)c(should)j(b)q(e)h(one)f(of)g(the)g +(ma)r(jor)f(terms)h(in)f(an)o(y)h(ev)n(aluation)262 1472 y(function.)324 +1557 y(Normally)m(,)c(mobilit)o(y)g(is)j(tak)o(en)h(as)g(the)g(n)o(um)o(b)q +(er)e(of)h(legal)g(or)g(pseudo{legal)g(mo)o(v)o(es.)k(I)262 +1607 y(will)12 b(tak)o(e)i(a)f(sligh)o(tly)g(di\013eren)o(t)i(view)f(and)f +(use)i(the)f(follo)o(wing)e(de\014nition)h(of)h(mobilit)o(y)o(:)344 +1737 y Fh(M)5 b(B)420 1743 y Fe(col)476 1737 y Fp(=)520 1706 +y Fc(P)564 1716 y Fk(64)564 1749 y Fe(sq)q Fk(=1)640 1737 y +Fp(\()p Fh(A)687 1743 y Fe(col;sq)782 1737 y Fp(+)k Fh(P)850 +1743 y Fe(col;sq)936 1737 y Fp(\))344 1840 y Fl(where)380 1890 +y Fh(A)411 1896 y Fe(col;sq)510 1890 y Fp(:)47 b Fh(])p Fp(A)o(ttac)o(ks\([P) +o(a)o(wn,Knigh)o(t,Bishop,Ro)q(ok],)o(col,sq\))380 1989 y Fh(P)407 +1995 y Fe(col;sq)506 1989 y Fp(:)k Fl(if)12 b Fp(\(Occup)o(y\([P)o(a)o +(wn],col,sq\)\))628 2039 y Fh(])p Fp(Mo)o(v)o(es\([P)o(a)o(wn],col,sq\))569 +2089 y Fl(else)628 2139 y Fp(0)569 2188 y Fl(endif)262 2300 +y Fp(The)19 b(mobilit)o(y)e(of)i(the)h(king)e(is)h(not)h(included)f(in)g +(this)h(de\014nition)f(b)q(ecause)i(I)e(do)h(not)262 2350 y(consider)f(a)g +(kings)g(mobilit)o(y)d(mak)o(es)i(an)o(y)g(meaningful)f(con)o(tribution)h(to) +h(a)g(successful)262 2399 y(strategy)m(.)33 b(The)20 b(king)e(m)o(ust)g(b)q +(e)i(protected)h(in)e(the)g(op)q(ening)g(and)g(middle)e(game.)33 +b(In)262 2449 y(the)15 b(ending)h(it)f(should)g(b)q(e)h(used)g(activ)o(ely)m +(.)21 b(Ho)o(w)o(ev)o(er,)16 b(its)f(mobilit)o(y)e(should)i(neither)h(b)q(e) +957 2574 y(47)p eop +%%Page: 48 50 +48 49 bop 262 307 a Fp(minim)o(i)o(sed)12 b(nor)h(maxim)o(ised.)i(The)f +(queens)h(mobilit)o(y)10 b(is)j(also)g(not)g(included)g(although)g(a)262 +357 y(sp)q(ecialised)j(queen)i(mobilit)o(y)13 b(function)j(is)g(included)g +(in)g(de\014nition)g(27,)f(Queen)j(P)o(o)o(w)o(er.)262 407 +y(Other)13 b(non-pa)o(wn)f(pieces)i(are)f(giv)o(en)f(a)g(b)q(on)o(us)h(for)f +(eac)o(h)h(square)g(they)g(attac)o(k,)g(including)262 457 y(friendly)g +(pieces)i(defended.)324 542 y(Unlik)o(e)f(other)i(pieces,)f(pa)o(wns)g +(cannot)g(mo)o(v)o(e)f(to)g(squares)i(they)g(attac)o(k,)e(therefore)j(I)262 +592 y(ha)o(v)o(e)9 b(giv)o(en)g(pa)o(wns)h(a)f(b)q(on)o(us)h(for)g(squares)g +(they)h(can)f(mo)o(v)o(e)e(to.)16 b(This)10 b(in)f(e\013ect)i(encourages)262 +641 y(the)j(blo)q(c)o(k)n(ade)g(of)f(enem)o(y)g(pa)o(wns)h(b)o(y)g(pieces.)p +641 735 673 5 v 641 1399 5 665 v 646 818 a Fg(rZ0l0skZ)646 +901 y(o0o0apop)646 984 y(0ZpZpZ0Z)646 1067 y(Z0OnO0Z0)646 1150 +y(QZ0O0ZbZ)646 1233 y(Z0Z0ZNZ0)646 1316 y(PO0Z0ZPO)646 1399 +y(SNA0ZRJ0)p 1310 1399 V 641 1403 673 5 v 317 1522 a Fp(Figure)g(4.2:)j +Fl(HIAR)o(CS)f(4.1)g(v)g(Mephisto)p Fp(,)11 b(1989)i(Olympiad,)e(White)i(to)h +(Pla)o(y)m(.)324 1640 y(Applying)f(these)i(Mobilit)o(y)d(criteria)i(to)g(the) +h(p)q(osition)e(in)g(\014gure)i(4.2)e(giv)o(es:)344 1738 y +Fh(M)5 b(B)420 1744 y Fe(W)t(hite)533 1738 y Fp(=)14 b(43)344 +1787 y Fh(M)5 b(B)420 1793 y Fe(B)q(lack)533 1787 y Fp(=)14 +b(47)957 2574 y(48)p eop +%%Page: 49 51 +49 50 bop 262 307 a Fu(4.3.2)55 b(De\014nition)17 b(4)i(:)24 +b(Dev)n(elopmen)n(t)262 419 y Fp(The)11 b(main)f(ob)r(jectiv)o(e)i(of)e(the)j +(op)q(ening)e(is)g(to)g(dev)o(elop)h(pieces)g(on)o(to)f(their)h('b)q(est')g +(a)o(v)n(ailable)262 469 y(squares.)31 b(Dev)o(elopmen)o(t,)17 +b(therefore,)j(ob)o(viously)c(pla)o(ys)i(an)f(imp)q(ortan)o(t)f(role)i(in)g +(c)o(hess.)262 519 y(Man)o(y)c(op)q(enings)h(o\013er)h(material,)d(generally) +i(pa)o(wns,)g(in)f(exc)o(hange)i(for)f(rapid)g(dev)o(elop-)262 +569 y(men)o(t.)22 b(A)16 b(dev)o(elop)q(ed)g(side)g(is)g(able)f(to)g(com)o +(bine)g(pieces)i(in)e(attac)o(k,)g(often)h(catc)o(hing)g(an)262 +618 y(unprepared)e(and)e(undev)o(elop)q(ed)h(opp)q(onen)o(t)g(b)o(y)g +(surprise.)19 b(I)12 b(b)q(eliev)o(e)h(it)g(is)f(imp)q(ortan)o(t)f(for)262 +668 y(c)o(hess)k(programs)d(not)h(to)h(place)g(to)q(o)f(m)o(uc)o(h)f(faith)h +(in)g(their)h(op)q(ening)g(b)q(o)q(oks.)k(A)13 b(program)262 +718 y(should)g(kno)o(w)h(ho)o(w)f(and)h(when)g(to)g(dev)o(elop)g(its)g +(pieces.)344 801 y Fh(D)q(V)403 807 y Fe(col)459 801 y Fp(=)e +Fh(K)538 807 y Fe(col)592 801 y Ff(\000)d Fh(B)664 807 y Fe(col)709 +801 y Ff(\001)o Fh(phase=)p Fp(3)g Ff(\000)h Fh(N)951 807 y +Fe(col)995 801 y Ff(\001)p Fh(phase=)p Fp(2)f(+)h Fh(Q)1238 +807 y Fe(col)344 901 y Fl(where)380 950 y Fh(K)415 956 y Fe(col)473 +950 y Fp(:)36 b Fl(if)13 b Fp(\(Castled\(col\)\))580 1000 y(phase)521 +1050 y Fl(else)580 1100 y(if)g Fp(\()p Fl(not)g Fp(\(K)o(CRigh)o(ts\(col\))g +Fl(or)h Fp(QCRigh)o(ts\(col\)\))639 1150 y Ff(\000)p Fp(2)p +Ff(\001)p Fh(phase)580 1200 y Fl(else)639 1249 y(if)f Fp(\()p +Fl(not)g Fp(K)o(CRigh)o(ts\(col\)\))699 1299 y Ff(\000)p Fh(phase=)p +Fp(2)639 1349 y Fl(else)699 1399 y(if)f Fp(\()p Fl(not)h Fp(QCRigh)o +(ts\(col\)\))758 1449 y Ff(\000)p Fh(phase=)p Fp(4)699 1498 +y Fl(else)758 1548 y Fp(0)699 1598 y Fl(endif)639 1648 y(endif)580 +1698 y(endif)521 1747 y(endif)380 1847 y Fh(B)411 1853 y Fe(col)469 +1847 y Fp(:)40 b Fh(])p Fp(UnMo)o(v)o(ed\(col,Bishop\))380 +1947 y Fh(N)413 1953 y Fe(col)471 1947 y Fp(:)e Fh(])p Fp(UnMo)o(v)o +(ed\(col,Knigh)o(t\))380 2046 y Fh(Q)413 2052 y Fe(col)470 +2046 y Fp(:)h Fl(if)13 b Fp(\()p Fh(B)610 2052 y Fe(col)664 +2046 y Fp(+)c Fh(N)738 2052 y Fe(col)794 2046 y Ff(\025)j Fp(2)i +Fl(and)f Fh(])p Fp(UnMo)o(v)o(ed\(col,Queen\))i(=)f(0\))580 +2096 y Ff(\000)p Fh(phase)c Ff(\001)f Fp(\()p Fh(B)795 2102 +y Fe(col)849 2096 y Fp(+)h Fh(N)924 2102 y Fe(col)968 2096 +y Fp(\))p Fh(=)p Fp(4)521 2146 y Fl(else)580 2196 y Fp(0)521 +2246 y Fl(endif)262 2350 y Fp(These)15 b(dev)o(elopmen)o(t)f(criteria)h +(encourage)g(castling)f(and)h(p)q(enalise)g(the)g(loss)f(of)g(castling)262 +2399 y(righ)o(ts)d(without)h(ha)o(ving)f(castled.)18 b(Knigh)o(ts)12 +b(and)g(bishops)g(are)g(p)q(enalised)g(for)g(not)g(ha)o(ving)262 +2449 y(mo)o(v)o(ed.)17 b(This)d(has)h(the)g(e\013ect)h(of)d(discouraging)h +(the)h(program)d(from)h(mo)o(ving)f(the)i(same)957 2574 y(49)p +eop +%%Page: 50 52 +50 51 bop 262 307 a Fp(piece)13 b(t)o(wice)h(in)e(the)i(op)q(ening)e(b)q +(efore)i(dev)o(elopmen)o(t)e(is)h(complete.)k(Where)d(the)f(undev)o(el-)262 +357 y(op)q(ed)h(pieces)h(should)f(b)q(e)g(dev)o(elop)q(ed)h(to)e(is)h +(de\014ned)h(b)o(y)f(other)g(ev)n(aluation)f(criteria.)324 +442 y(The)e(queen)g(is)f(discouraged)h(from)e(mo)o(ving)f(b)q(efore)j(at)g +(least)f(3)g(minor)f(pieces)j(\(knigh)o(ts)262 492 y(and)k(bishops\))i(are)f +(dev)o(elop)q(ed.)28 b(This)17 b(is)g(an)f(attempt)h(to)g(a)o(v)o(oid)e(p)q +(ositions)i(where)h(the)262 542 y(program's)11 b(queen)k(is)e(dev)o(elop)q +(ed)h(to)q(o)g(early)m(,)e(allo)o(wing)f(the)j(opp)q(onen)o(t)g(to)g(gain)e +(a)h(temp)q(o)262 592 y(b)o(y)d(pla)o(ying)f(a)i(dev)o(eloping)f(mo)o(v)o(e)f +(attac)o(king)h(the)i(queen.)18 b(Applying)10 b(these)i(Dev)o(elopmen)o(t)262 +641 y(criteria)i(to)f(the)i(p)q(osition)e(in)h(\014gure)g(4.2)f(giv)o(es:)344 +738 y Fh(D)q(V)403 744 y Fe(W)t(hite)533 738 y Fp(=)h(14)9 +b Ff(\000)h Fp(4)f Ff(\000)g Fp(7)g Ff(\000)h Fp(7)h(=)h Ff(\000)p +Fp(4)344 788 y Fh(D)q(V)403 794 y Fe(B)q(lack)533 788 y Fp(=)i(14)9 +b Ff(\000)h Fp(0)f Ff(\000)g Fp(0)g Ff(\000)h Fp(0)h(=)h(14)262 +940 y Fu(4.3.3)55 b(De\014nition)17 b(5)i(:)24 b(Cen)n(tre)19 +b(Con)n(trol)262 1052 y Fp(The)g(imp)q(ortance)g(of)f(con)o(trolling)g(the)i +(cen)o(tre)h(of)e(the)h(b)q(oard)f(cannot)h(b)q(e)g(to)q(o)f(highly)262 +1102 y(stressed.)37 b(A)19 b(clear)h(connection)g(b)q(et)o(w)o(een)h(winning) +e(the)h(game)e(and)h(con)o(trolling)f(the)262 1151 y(cen)o(tre)f(has)g(b)q +(een)g(established)g(in)f([27)o(].)25 b(Ho)o(w)o(ev)o(er,)16 +b(this)h(will)d(come)i(as)g(no)g(surprise)i(to)262 1201 y(an)o(y)13 +b(strong)h(c)o(hess)i(pla)o(y)o(ers.)324 1286 y(The)g(cen)o(tre)i(is)e(con)o +(trolled)f(b)o(y)h(b)q(oth)g(o)q(ccupation)g(and)g(attac)o(k)g(of)g(cen)o +(tral)g(squares.)262 1336 y(Therefore)j(m)o(y)e(cen)o(tre)j(con)o(trol)e(ev)n +(aluation)f(criteria)i(m)o(ust)f(detect)i(suc)o(h)f(factors)g(and)262 +1386 y(encourage)14 b(their)h(ac)o(hiev)o(emen)o(t.)p 641 1480 +673 5 v 641 2144 5 665 v 646 1563 a Fg(0Z0Z0Z0Z)646 1646 y(Z0Z0Z0Z0)646 +1729 y(0Z0Z0Z0Z)646 1812 y(Z0Z0Z0Z0)646 1895 y(0Z0Z0Z0Z)646 +1978 y(Z0Z0Z0Z0)646 2061 y(0Z0Z0Z0Z)646 2144 y(Z0Z0Z0Z0)p 1310 +2144 V 641 2148 673 5 v 687 1539 a Fl(1)58 b(1)h(1)g(1)f(1)h(1)g(1)f(1)687 +1622 y(1)g(2)h(2)g(2)f(2)h(2)g(2)f(1)687 1705 y(1)g(2)h(4)g(4)f(4)h(4)g(2)f +(1)687 1788 y(1)g(2)h(4)g(8)f(8)h(4)g(2)f(1)687 1871 y(1)g(2)h(4)g(8)f(8)h(4) +g(2)f(1)687 1954 y(1)g(2)h(4)g(4)f(4)h(4)g(2)f(1)687 2037 y(1)g(2)h(2)g(2)f +(2)h(2)g(2)f(1)687 2120 y(1)g(1)h(1)g(1)f(1)h(1)g(1)f(1)617 +2246 y Fp(Figure)14 b(4.3:)j(Cen)o(tre)e(Con)o(trol)e(b)q(on)o(us)h(table.) +344 2396 y Fh(C)s(C)407 2402 y Fe(col)462 2396 y Fp(=)506 2365 +y Fc(P)550 2375 y Fk(64)550 2409 y Fe(sq)q Fk(=1)633 2396 y +Fh(V)657 2402 y Fe(sq)691 2396 y Ff(\001)o Fp(\()p Fh(A)749 +2402 y Fe(col;sq)845 2396 y Fp(+)9 b Fh(O)918 2402 y Fe(col;sq)1013 +2396 y Fp(+)g Fh(P)1081 2402 y Fe(col;sq)1167 2396 y Fp(\))957 +2574 y(50)p eop +%%Page: 51 53 +51 52 bop 344 307 a Fl(where)380 357 y Fh(V)404 363 y Fe(sq)452 +357 y Fp(:)105 b(Cen)o(tre)15 b(Con)o(trol)e(b)q(on)o(us)h(table,)f(indexed)i +(b)o(y)e(sq.)19 b(See)14 b(\014gure)h(4.3.)380 457 y Fh(A)411 +463 y Fe(col;sq)510 457 y Fp(:)47 b Fh(])p Fp(A)o(ttac)o(ks\([An)o +(y],col,sq\))380 556 y Fh(O)412 562 y Fe(col;sq)511 556 y Fp(:)f +Fl(if)12 b Fp(\(Occup)o(y\([Knigh)o(t],col,sq\)\))628 606 y(1)569 +656 y Fl(else)628 706 y Fp(0)569 756 y Fl(endif)380 855 y Fh(P)407 +861 y Fe(col;sq)506 855 y Fp(:)51 b Fl(if)12 b Fp(\(A)o(ttac)o(k)o(ed\([P)o +(a)o(wn],col,sq\)\))628 905 y(1)569 955 y Fl(else)628 1005 +y Fp(0)569 1054 y Fl(endif)262 1181 y Fp(Pieces)i(are)g(giv)o(en)f(b)q(on)o +(uses)h(for)f(attac)o(king)g(cen)o(tral)g(squares.)19 b(The)14 +b(b)q(on)o(us)g(is)f(dep)q(enden)o(t)262 1231 y(on)k(ho)o(w)f(close)i(the)g +(square)g(is)f(to)g(the)h(cen)o(tre.)29 b(P)o(a)o(wn)17 b(attac)o(ks)h +(receiv)o(e)g(an)f(additional)262 1281 y(b)q(on)o(us)f(to)h(re\015ect)h(the)g +(imp)q(ortance)e(of)g(suc)o(h)h(attac)o(ks.)27 b(Occupation)17 +b(of)f(the)i(cen)o(tre)g(b)o(y)262 1331 y(knigh)o(ts)12 b(is)g(of)g +(particular)h(imp)q(ortance.)k(A)c(knigh)o(t)e(has)i(a)g(relativ)o(ely)f +(short)h(range,)g(more)262 1380 y(than)d(an)o(y)h(other)g(piece)h(it)e(needs) +i(to)f(b)q(e)g(close)g(to)g(the)g(\014eld)g(of)f(action.)17 +b(A)11 b(cen)o(trally)f(placed)262 1430 y(knigh)o(t)j(is)g(b)q(est)i(able)f +(to)f(exert)i(pressure)h(o)o(v)o(er)e(most)f(of)g(the)h(b)q(oard.)19 +b(Therefore,)14 b(cen)o(tral)262 1480 y(o)q(ccupation)g(b)o(y)f(knigh)o(ts)h +(receiv)o(es)h(a)f(sp)q(ecial)g(b)q(on)o(us.)324 1565 y(I)e(b)q(eliev)o(e)i +(that)e(cen)o(tre)j(con)o(trol)d(is)h(imp)q(ortan)o(t)e(throughout)h(the)i +(game,)d(although)h(its)262 1615 y(imp)q(ortance)d(should)i(diminish)d(as)j +(the)g(game)e(progresses.)19 b(This)10 b(function)h(will)e(naturally)262 +1665 y(pla)o(y)f(a)i(less)g(prominen)o(t)e(role)i(as)g(pieces)h(are)f(exc)o +(hanged)g(b)q(ecause)i(of)d(the)h(reduced)h(n)o(um)o(b)q(er)262 +1715 y(of)j(attac)o(ks)h(and)g(p)q(ossible)g(squares)i(o)q(ccupied.)22 +b(Therefore,)16 b(no)f(phase)h(adjustmen)o(t)e(w)o(as)262 1765 +y(felt)f(necessary)m(.)324 1850 y(Applied)e(to)g(the)h(p)q(osition)e(in)h +(\014gure)g(4.2,)g(the)g(Cen)o(tre)i(Con)o(trol)d(criteria)i(will)d(pro)q +(duce)262 1900 y(the)14 b(follo)o(wing)d(v)n(alues:)344 1997 +y Fh(C)s(C)407 2003 y Fe(W)t(hite)533 1997 y Fp(=)j(169)344 +2047 y Fh(C)s(C)407 2053 y Fe(B)q(lack)533 2047 y Fp(=)g(183)957 +2574 y(51)p eop +%%Page: 52 54 +52 53 bop 262 307 a Fu(4.3.4)55 b(De\014nition)17 b(6)i(:)24 +b(Square)19 b(Con)n(trol)262 419 y Fp(During)8 b(the)i(game)e(it)h(is)g(imp)q +(ortan)o(t)f(to)h(ac)o(hiev)o(e)h(a)f(balance)g(b)q(et)o(w)o(een)i(attac)o(k) +e(and)h(defence.)262 469 y(As)k(the)h(game)e(progresses)j(this)e(balance)h +(ma)o(y)d(shift)i(a)g(n)o(um)o(b)q(er)g(of)f(times)h(from)e(defence)262 +519 y(to)k(attac)o(k)h(and)g(visa{v)o(ersa.)28 b(Square)17 +b(con)o(trol)g(can)g(pro)o(vide)g(a)g(metho)q(d)f(of)h(measuring)262 +569 y(the)d(exten)o(t)h(to)f(whic)o(h)f(the)i(program)d(is)i(attac)o(king)f +(or)h(defending.)324 654 y(W)m(e)i(can)h(de\014ne)h(attac)o(k)f(as)g(the)g(n) +o(um)o(b)q(er)g(of)f(squares)i(attac)o(k)o(ed)f(in)f(the)i(opp)q(onen)o(ts) +262 704 y(half)12 b(of)h(the)h(b)q(oard.)k(Defence)d(can)f(b)q(e)g(de\014ned) +h(as)e(the)i(n)o(um)o(b)q(er)d(of)h(squares)i(attac)o(k)o(ed)f(in)262 +754 y(ones)g(o)o(wn)f(half)g(of)h(the)g(b)q(oard.)324 839 y(A)j(comparison)f +(b)q(et)o(w)o(een)i(suc)o(h)g(attac)o(k)f(and)g(defence)i(for)e(b)q(oth)g(ev) +o(en)o(tual)g(winners)262 889 y(and)e(losers)i(is)f(made)f(in)g([27)o(].)24 +b(Analysing)15 b(the)i(results)g(obtained)f(it)f(can)i(b)q(e)f(seen)i(that) +262 938 y(throughout)c(the)h(game)f(the)h(winners)g(and)g(losers)g(main)o +(tain)d(appro)o(ximately)g(the)j(same)262 988 y(n)o(um)o(b)q(er)c(of)g +(squares)i(defended.)18 b(Ho)o(w)o(ev)o(er,)12 b(there)i(is)d(a)h(clear)g +(di\013erence)i(in)d(the)h(attac)o(k)o(ed)262 1038 y(squares)j(b)q(et)o(w)o +(een)h(winners)e(and)h(losers)g(as)f(the)h(game)d(progresses.)22 +b(The)14 b(b)q(est)i(strategy)m(,)262 1088 y(therefore,)i(seems)f(to)f(b)q(e) +h(to)g(maxim)o(i)o(se)e(the)i(attac)o(k)f(while)h(main)o(taini)o(ng)d(an)i +(adequate)262 1138 y(defence.)344 1240 y Fh(S)r(C)401 1246 +y Fe(col)457 1240 y Fp(=)501 1209 y Fc(P)545 1219 y Fk(64)545 +1252 y Fe(sq)q Fk(=1)621 1240 y Fp(\()p Fh(S)662 1246 y Fe(col;sq)757 +1240 y Ff(\001)9 b Fh(A)809 1246 y Fe(col;sq)895 1240 y Fp(\))344 +1343 y Fl(where)380 1392 y Fh(S)405 1398 y Fe(col;sq)505 1392 +y Fp(:)52 b(2)13 b(tables)h(of)g(square)g(v)n(alues)g(indexed)g(b)o(y)g +(colour)g(col)f(and)h(square)g(sq.)569 1442 y(See)g(planning)f(section)i +(4.11.7)d(for)h(details.)380 1542 y Fh(A)411 1548 y Fe(col;sq)510 +1542 y Fp(:)47 b Fh(])p Fp(A)o(ttac)o(ks\([An)o(y],col,sq\))324 +1660 y(I)12 b(will)g(use)h(a)f(table)h(driv)o(en)g(function.)k(This)c(will)e +(enable)i(pre-loaded)g(v)n(alues)f(deriv)o(ed)262 1710 y(from)k(an)j(initial) +d(planning)i(phase)h(to)g(b)q(e)g(used.)33 b(A)19 b(planning)e(phase)j(could) +e(use)i(this)262 1760 y(function)13 b(to)h(go)q(o)q(d)g(e\013ect)h(b)o(y)f +(iden)o(tifying)f(a)g(basic)h(plan,)f(lik)o(e)h(a)f(king)g(side)i(attac)o(k.) +j(The)262 1810 y(table)12 b(could)h(then)g(b)q(e)h(pre-loaded)f(with)f(v)n +(alues)g(whic)o(h)h(w)o(ould)f(encourage)i(the)f(program)262 +1860 y(to)g(attac)o(k)h(certain)h(squares)g(on)e(the)i(king)e(side,)h(for)f +(example.)324 1945 y(Applying)g(this)h(Square)g(Con)o(trol)f(criterion)h(to)g +(the)h(p)q(osition)e(in)g(\014gure)i(4.2)e(giv)o(es:)344 2042 +y Fh(S)r(C)401 2048 y Fe(W)t(hite)533 2042 y Fp(=)h(74)344 +2092 y Fh(S)r(C)401 2098 y Fe(B)q(lack)533 2092 y Fp(=)g(62)957 +2574 y(52)p eop +%%Page: 53 55 +53 54 bop 262 307 a Fr(4.4)69 b(P)n(a)n(wn)23 b(Ev)l(aluation)262 +434 y Fp(P)o(a)o(wns)15 b(pro)o(vide)g(the)h(basic)g(framew)o(ork)d(around)j +(whic)o(h)f(the)h(game)e(will)g(dev)o(elop.)22 b(The)262 483 +y(correct)15 b(handling)e(of)g(the)i(pa)o(wn)e(structure)j(is)e(vital)f(in)g +(high)g(lev)o(el)h(c)o(hess.)365 599 y("P)o(a)o(wns)g(are)g(the)h(Soul)e(of)g +(Chess")838 665 y Fm(Philidor)262 781 y Fp(I)i(b)q(eliev)o(e)g(this)h(is)f +(the)h(one)f(area)h(whic)o(h)f(ab)q(o)o(v)o(e)g(all)f(others)i(is)g(most)e +(neglected)i(in)f(c)o(hess)262 831 y(programs.)h(The)11 b(problem)g(is)g +(that)h(w)o(eak)f(pa)o(wns)h(do)f(not)g(usually)g(cause)i(an)o(y)e(imm)o +(ediate)262 881 y(deterioration)k(in)g(the)i(o)o(v)o(erall)d(p)q(osition.)22 +b(Ho)o(w)o(ev)o(er,)16 b(o)o(v)o(er)g(a)f(longer)h(term,)e(p)q(erhaps)j(30) +262 931 y(or)12 b(40)h(plies,)f(the)i(existence)g(of)f(w)o(eak)g(pa)o(wns)f +(causes)j(n)o(umerous)d(p)q(ositional)g(w)o(eaknesses)262 981 +y(e.g.)17 b(w)o(eak)12 b(squares,)h(space)g(to)f(blo)q(c)o(k)n(ade,)f +(isolation)f(etc.)19 b(Often)12 b(a)g(game's)f(result)h(hinges)262 +1030 y(on)h(the)i(strength)g(or)f(w)o(eakness)h(of)e(the)h(underlying)g(pa)o +(wn)f(structure.)324 1116 y(It)e(is)g(notable)g(in)f(a)h(recen)o(t)i([27)o +(],)d(relativ)o(ely)h(large)f(study)i(of)e(ev)n(aluation)g(criteria,)i(that) +262 1165 y(there)j(w)o(as)e(no)h(sp)q(eci\014c)h(atten)o(tion)e(giv)o(en)g +(to)h(pa)o(wn)f(ev)n(aluation.)k(I)c(feel)h(this)g(is)f(a)h(serious)262 +1215 y(omission.)324 1300 y(My)e(pa)o(wn)g(ev)n(aluation)e(criteria)j(will)d +(b)q(e)j(amongst)e(the)h(most)f(complex)g(and)h(compre-)262 +1350 y(hensiv)o(e)i(of)f(the)h(whole)f(ev)n(aluation)f(function.)18 +b(I)13 b(feel)h(this)g(is)f(critical)g(to)h(o)o(v)o(erall)e(success)262 +1400 y(b)q(ecause)j(man)o(y)c(of)i(the)i(e\013ects)g(caused)g(b)o(y)e(bad)h +(pa)o(wn)f(pla)o(y)f(cannot)i(b)q(e)g(determined)g(b)o(y)262 +1450 y(searc)o(h.)19 b(Therefore,)14 b(heuristics)h(m)o(ust)e(\014ll)g(this)h +(gap.)324 1535 y(I)19 b(will)f(split)h(the)h(pa)o(wn)f(ev)n(aluation)f +(criteria)i(up)f(so)g(they)h(can)g(b)q(e)g(dealt)f(with)g(in)262 +1585 y(su\016cien)o(t)14 b(detail.)262 1736 y Fu(4.4.1)55 b(De\014nition)17 +b(7)i(:)24 b(Doubled)19 b(P)n(a)n(wns)262 1848 y Fp(P)o(a)o(wns)e(are)g +(doubled)g(if)f(there)j(are)e(at)g(least)g(t)o(w)o(o)g(pa)o(wns)g(of)f(the)i +(same)e(colour)h(on)g(the)262 1898 y(same)12 b(\014le.)18 b(Doubled)13 +b(pa)o(wns)g(are)h(generally)f(w)o(eak.)k(They)d(are)g(unable)f(to)g(supp)q +(ort)h(eac)o(h)262 1948 y(other)g(and)g(are)g(vulnerable)g(to)g(attac)o(k)g +(and)f(blo)q(c)o(k)n(ade.)344 2047 y Fh(D)q(P)406 2053 y Fe(col)462 +2047 y Fp(=)506 2016 y Fc(P)549 2027 y Fk(64)549 2060 y Fe(sq)q +Fk(=1)651 2047 y Fl(if)g Fp(\(Occup)o(y\([P)o(a)o(wn],col,sq\))g +Fl(and)g Fp(Doubled\(col,OnFile\(sq\)\)\))710 2100 y Fh(D)744 +2107 y Fe(O)q(nF)t(ile)p Fk(\()p Fe(sq)q Fk(\))651 2150 y Fl(else)710 +2200 y Fp(0)651 2250 y Fl(endif)344 2350 y(where)380 2399 y +Fh(D)414 2405 y Fe(f)449 2399 y Fp(:)131 b([)p Ff(\000)p Fp(6)p +Fh(;)7 b Ff(\000)p Fp(8)p Fh(;)g Ff(\000)p Fp(10)p Fh(;)g Ff(\000)p +Fp(14)p Fh(;)g Ff(\000)p Fp(14)p Fh(;)f Ff(\000)p Fp(10)p Fh(;)h +Ff(\000)p Fp(8)p Fh(;)f Ff(\000)p Fp(6])651 2449 y(Indexed)15 +b(b)o(y)f(\014le)g(f)f(\(1)h(to)g(8\).)957 2574 y(53)p eop +%%Page: 54 56 +54 55 bop 262 307 a Fp(Doubled)13 b(pa)o(wns)h(are)g(p)q(enalised,)g(the)g +(size)h(of)e(the)h(p)q(enalt)o(y)g(dep)q(ends)h(on)f(the)g(\014le.)k(Dou-)262 +357 y(bled)e(pa)o(wns)g(are)g(w)o(orse)h(on)f(a)g(cen)o(tre)h(\014le)f(than)g +(on)g(the)h(\015ank,)f(not)g(b)q(ecause)i(they)e(are)262 407 +y(considered)c(an)o(y)e(w)o(eak)o(er,)i(but)f(b)q(ecause)i(they)e(hinder)g +(in)o(ter{piece)h(comm)o(unication.)i(Of-)262 457 y(ten)f(there)i(are)f(comp) +q(ensations)e(for)h(doubled)g(pa)o(wns,)g(suc)o(h)h(as)f(op)q(en)h(\014les,)f +(extra)h(cen)o(tre)262 506 y(con)o(trol)i(and)h(square)h(protection,)g(for)f +(example.)26 b(Ho)o(w)o(ev)o(er,)18 b(these)g(asp)q(ects)h(are)f(dealt)262 +556 y(with)13 b(b)o(y)h(other)g(ev)n(aluation)f(criteria.)324 +641 y(This)d(criterion)g(tak)o(es)h(a)f(simplistic)e(view)i(of)g(the)g(p)q +(enalties)h(asso)q(ciated)g(with)f(doubled)262 691 y(pa)o(wns)j(b)o(y)g +(applying)f(a)h(basic)g(p)q(enalt)o(y)m(.)k(A)c(more)g(extensiv)o(e)h +(analysis)e(of)h(the)h(asso)q(ciated)262 741 y(w)o(eaknesses)19 +b(suc)o(h)f(as)g(vulnerabilit)o(y)e(to)h(attac)o(k,)h(blo)q(c)o(k)n(ade)f +(etc)i(are)f(addressed)h(in)e(the)262 791 y(general)d(pa)o(wn)f(w)o(eakness)i +(criteria)f(\(de\014nition)g(9\).)262 943 y Fu(4.4.2)55 b(De\014nition)17 +b(8)i(:)24 b(Isolated)18 b(P)n(a)n(wns)262 1055 y Fp(A)12 b(pa)o(wn)f(is)h +(isolated)f(if)h(there)h(do)q(es)g(not)e(exist)i(a)e(friendly)h(pa)o(wn)f(on) +h(either)h(adjacen)o(t)f(\014le.)262 1104 y(Isolated)j(pa)o(wns)h(are)g(w)o +(eak)g(b)q(ecause)h(they)g(cannot)e(b)q(e)i(supp)q(orted)g(b)o(y)e(friendly)h +(pa)o(wns)262 1154 y(and)d(lik)o(e)g(doubled)h(pa)o(wns,)g(are)g(vulnerable)g +(to)g(attac)o(k)f(and)h(blo)q(c)o(k)n(ade.)344 1256 y Fh(I)s(P)392 +1262 y Fe(col)448 1256 y Fp(=)492 1225 y Fc(P)535 1236 y Fk(64)535 +1269 y Fe(sq)q Fk(=1)651 1256 y Fl(if)f Fp(\(Occup)o(y\([P)o(a)o +(wn],col,sq\))g Fl(and)g Fp(Isolated\(col,OnFile\(sq\)\)\))710 +1309 y Fh(I)728 1316 y Fe(O)q(nF)t(ile)p Fk(\()p Fe(sq)q Fk(\))651 +1359 y Fl(else)710 1409 y Fp(0)651 1459 y Fl(endif)344 1558 +y(where)380 1608 y Fh(I)398 1614 y Fe(f)433 1608 y Fp(:)147 +b([)p Ff(\000)p Fp(6)p Fh(;)7 b Ff(\000)p Fp(10)p Fh(;)g Ff(\000)p +Fp(14)p Fh(;)g Ff(\000)p Fp(20)p Fh(;)g Ff(\000)p Fp(20)p Fh(;)f +Ff(\000)p Fp(14)p Fh(;)g Ff(\000)p Fp(10)p Fh(;)h Ff(\000)p +Fp(6])651 1658 y(Indexed)15 b(b)o(y)f(\014le)g(f)f(\(1)h(to)g(8\).)262 +1777 y(Isolated)19 b(pa)o(wns)h(are)g(p)q(enalised)g(dep)q(ending)g(on)f +(their)h(cen)o(tralisation.)35 b(An)20 b(isolated)262 1826 +y(pa)o(wn)13 b(on)g(the)i Fl(d)e Fp(or)h Fl(e)f Fp(\014les)i(is)e(considered) +i(the)g(w)o(eak)o(est.)j(Ho)o(w)o(ev)o(er,)c(an)g(isolated)f(cen)o(tre)262 +1876 y(pa)o(wn)d(has)g(a)g(dynamic)f(strength)i(whic)o(h)g(Nimzo)o(witsc)o(h) +e(so)h(elo)q(quen)o(tly)g(said)g(w)o(as)g(its)h("lust)262 1926 +y(to)16 b(expand".)28 b(This)17 b(asp)q(ect)i(is)e(co)o(v)o(ered)h(b)o(y)e +(other)i(ev)n(aluation)e(criteria,)i(for)e(example,)262 1976 +y(cen)o(tre)i(con)o(trol.)29 b(Also)17 b(asp)q(ects)i(concerning)f(the)g(w)o +(eaknesses)h(of)e(isolated)g(pa)o(wns)g(are)262 2026 y(sp)q(eci\014cally)d +(addressed)h(in)f(the)g(pa)o(wn)g(w)o(eakness)h(criteria)f(b)q(elo)o(w.)262 +2177 y Fu(4.4.3)55 b(De\014nition)17 b(9)i(:)24 b(W)-5 b(eak)19 +b(P)n(a)n(wns)262 2289 y Fp(P)o(a)o(wns)e(are)h(w)o(eak)f(when)h(they)g(are)g +(not)g(protected)h(b)o(y)e(friendly)g(pa)o(wns)g(and)h(a)f(single)262 +2339 y(pa)o(wn)f(mo)o(v)o(e)g(cannot)h(b)q(e)h(made)e(whic)o(h)h(ac)o(hiev)o +(es)g(this)g(protection.)29 b(W)m(eak)16 b(pa)o(wns)h(are)262 +2389 y(therefore)d(vulnerable)e(to)h(attac)o(k.)k(They)c(constitute)h +(targets)f(whic)o(h)f(the)i(opp)q(onen)o(t)e(can)262 2439 y(aim)e(for.)17 +b(A)12 b(bac)o(kw)o(ard)h(pa)o(wn)f(is)g(therefore,)i(a)e(classic)g(example)g +(of)f(a)h(w)o(eak)h(pa)o(wn)f(under)957 2574 y(54)p eop +%%Page: 55 57 +55 56 bop 262 307 a Fp(m)o(y)14 b(de\014nition.)23 b(The)16 +b(idea)f(of)g(this)h(de\014nition)g(is)f(to)h(pic)o(k)f(up)h(as)g(man)o(y)e +(cases)j(of)e(w)o(eak)262 357 y(pa)o(wns)i(as)h(p)q(ossible)h(in)e(one)h +(general)g(set)h(of)e(criteria.)31 b(Therefore)19 b(isolated,)f(doubled,)262 +407 y(bac)o(kw)o(ard)13 b(and)h(pa)o(wn)g(c)o(hain)f(bases)i(ma)o(y)d(all)h +(b)q(e)h(p)q(enalised)g(for)g(w)o(eakness.)324 492 y(In)i("My)f(System")g +([43)o(],)g(Aron)h(Nimzo)o(witsc)o(h)f(giv)o(es)g(the)h(follo)o(wing)e(c)o +(hess)j(strategy)262 542 y(for)9 b(handling)g(pa)o(wn)h(c)o(hains,)g("W)m(e)g +(\014rst)g(direct)h(our)f(op)q(erations)h(against)e(the)i(base,)g(whic)o(h) +262 592 y(w)o(e)17 b(attac)o(k)g(with)f(a)h(pa)o(wn,)g(and)f(b)o(y)h(threats) +h(or)f(otherwise,)h(seek)g(to)f(cut)h(o\013)e(the)i(base)262 +641 y(from)13 b(its)j(asso)q(ciates)g(in)f(the)h(c)o(hain.)23 +b(This)15 b(done,)h(w)o(e)g(turn)g(our)f(atten)o(tion)h(to)f(the)h(next)262 +691 y(opp)q(onen)o(t,)d(namely)f(the)i(link)e(whic)o(h)h(has)h(no)o(w)f(b)q +(ecome)g(the)h(new)g(base".)k(This)13 b(metho)q(d)262 741 y(of)18 +b(handling)g(pa)o(wn)h(c)o(hains)h(will)e(b)q(e)i(encouraged)g(b)o(y)f(this)h +(de\014nition)f(b)q(ecause)i(w)o(eak)262 791 y(pa)o(wn)11 b(bases)i(are)f +(iden)o(ti\014ed)g(and)f(progressiv)o(ely)h(p)q(enalised,)g(therefore)h +(encouraging)f(the)262 841 y(attac)o(king)h(side)h(to)g(build)f(up)h +(pressure)i(on)e(the)g(w)o(eak)g(pa)o(wn.)344 943 y Fh(W)6 +b(P)416 949 y Fe(col)471 943 y Fp(=)515 912 y Fc(P)559 922 +y Fk(64)559 955 y Fe(sq)q Fk(=1)642 943 y Fh(W)g(K)722 949 +y Fe(col;sq)344 1046 y Fl(where)380 1095 y Fh(W)g(K)460 1101 +y Fe(col;sq)559 1095 y Fp(:)j Fl(if)k Fp(\(Occup)o(y\([P)o(a)o(wn],col,sq\))g +Fl(and)g Fp(W)m(eak\(col,sq\)\))639 1145 y Fh(W)6 b(K)719 1151 +y Fe(col;sq)817 1145 y Fp(=)12 b Fh(W)900 1151 y Fe(col;sq)995 +1145 y Ff(\000)d Fp(10)g Ff(\001)g Fh(])p Fp(A)o(ttac)o(ks\([P)o(a)o +(wn],Opp\(col\),)p Fh(sq)1625 1151 y Fe(inf)s(r)q(ont)1744 +1145 y Fp(\))639 1195 y Fl(if)k Fp(\(SemiOp)q(en\(Opp\(col\),OnFile\(sq\)\)) +639 1245 y Fl(and)h Fp(Has\([Ro)q(ok,Queen],Opp\(col\)\)\))699 +1295 y Fh(W)6 b(K)779 1301 y Fe(col;sq)876 1295 y Fp(=)12 b +Fh(W)6 b(K)1000 1301 y Fe(col;sq)1086 1295 y Ff(\000)14 b Fp(phase/2)639 +1345 y Fl(endif)639 1394 y(if)f Fp(\(A)o(ttac)o(k)o(ed\([Ro)q +(ok],Opp\(col\),sq\)\))699 1444 y Fh(W)6 b(K)779 1450 y Fe(col;sq)876 +1444 y Fp(=)12 b Fh(W)6 b(K)1000 1450 y Fe(col;sq)1095 1444 +y Ff(\000)k Fp(4)639 1494 y Fl(endif)639 1544 y(if)j Fp(\(Occup)o(y\([An)o +(y],Opp\(col\),)p Fh(sq)1170 1550 y Fe(inf)s(r)q(ont)1290 1544 +y Fp(\)\))699 1594 y Fh(W)6 b(K)779 1600 y Fe(col;sq)876 1594 +y Fp(=)12 b Fh(W)6 b(K)1000 1600 y Fe(col;sq)1095 1594 y Ff(\000)k +Fp(8)639 1643 y Fl(endif)580 1693 y(else)639 1743 y Fh(W)c(K)719 +1749 y Fe(col;sq)817 1743 y Fp(=)12 b(0)580 1793 y Fl(endif)380 +1892 y Fh(W)419 1898 y Fe(col;sq)518 1892 y Fp(:)50 b(di\013)14 +b(=)g Fh(])p Fp(Di\013A)o(ttac)o(ks\(Opp\(col\),sq\))580 1942 +y Fl(if)f Fp(\(di\013)h Fh(>)g Fp(0\))639 1992 y Fl(if)f Fp(\(di\013)h +Fh(<)g Fp(5\))699 2042 y Fh(W)738 2048 y Fe(col;sq)835 2042 +y Fp(=)g([)p Ff(\000)p Fp(10)p Fh(;)7 b Ff(\000)p Fp(18)p Fh(;)g +Ff(\000)p Fp(26)p Fh(;)g Ff(\000)p Fp(32])758 2092 y(Indexed)14 +b(b)o(y)g(di\013)g(\(1)f(to)h(4\).)639 2142 y Fl(else)699 2191 +y Fh(W)738 2197 y Fe(col;sq)835 2191 y Fp(=)e Ff(\000)p Fp(35)639 +2241 y Fl(endif)580 2291 y(else)639 2341 y Fh(W)678 2347 y +Fe(col;sq)776 2341 y Fp(=)g Ff(\000)p Fp(4)580 2391 y Fl(endif)957 +2574 y Fp(55)p eop +%%Page: 56 58 +56 57 bop 262 307 a Fp(W)m(eak)10 b(pa)o(wns)h(are)g(p)q(enalised)g(for)g +(the)g(sev)o(erit)o(y)g(of)g(the)g(attac)o(k)g(up)q(on)g(them.)16 +b(A)11 b(p)q(enalt)o(y)g(is)262 357 y(levied)h(when)g(a)g(w)o(eak)g(pa)o(wn)g +(is)g(on)g(a)g(semi-op)q(en)g(\014le)g(and)g(the)h(opp)q(onen)o(t)f(has)h +(the)f(pieces)262 407 y(to)j(tak)o(e)g(adv)n(an)o(tage)g(of)g(this)g(w)o +(eakness.)24 b(A)15 b(w)o(eak)h(pa)o(wn)f(whose)h(adv)n(ance)f(is)h +(restricted)262 457 y(b)o(y)d(enem)o(y)g(pa)o(wn)h(attac)o(ks)g(is)g(further) +h(p)q(enalised.)324 542 y(The)k(blo)q(c)o(k)n(ade)g(of)f(w)o(eak)h(p)q(oin)o +(ts)g(form)e(an)i(imp)q(ortan)o(t)e(part)j(of)e(p)q(ositional)g(c)o(hess.)262 +592 y(Therefore)d(w)o(eak)e(pa)o(wns)h(are)h(p)q(enalised)f(for)f(b)q(eing)h +(blo)q(c)o(k)n(aded)g(b)o(y)g(the)g(opp)q(onen)o(t.)262 742 +y Fu(4.4.4)55 b(De\014nition)17 b(10)i(:)24 b(P)n(assed)c(P)n(a)n(wns)262 +854 y Fp(A)c(pa)o(wn)g(is)g(passed)h(when)g(no)f(enem)o(y)g(pa)o(wns)g(on)g +(the)h(same)f(or)g(adjacen)o(t)h(\014les)f(hinder)262 904 y(the)i(pa)o(wns)g +(adv)n(ance)f(to)h(the)g(promotion)e(square.)30 b(A)18 b(passed)h(pa)o(wn)e +(is)h(of)f(particular)262 954 y(v)n(alue,)e(esp)q(ecially)g(as)h(the)g(game)f +(progresses)i(in)o(to)e(the)i(endgame.)22 b(It)16 b(not)g(only)f(carries)262 +1004 y(the)h(p)q(oten)o(tial)g(threat)h(of)e(b)q(ecoming)g(a)h(queen,)h(but)f +(also)g(distracts)h(the)g(enem)o(y)e(pieces)262 1054 y(from)d(other)i(duties) +h(in)e(order)i(to)e(restrain)i(the)g(passed)f(pa)o(wn.)344 +1151 y Fh(P)6 b(P)404 1157 y Fe(col)459 1151 y Fp(=)503 1120 +y Fc(P)546 1130 y Fk(64)546 1163 y Fe(sq)q Fk(=1)629 1151 y +Fh(P)g(D)696 1157 y Fe(col;sq)344 1254 y Fl(where)380 1303 +y Fh(P)g(D)447 1309 y Fe(col;sq)546 1303 y Fp(:)58 b Fl(if)13 +b Fp(\(Occup)o(y\([P)o(a)o(wn],col,sq\))g Fl(and)g Fp(P)o(assed\(col,sq\)\)) +675 1353 y Fl(if)g Fp(\(phase)h Fh(>)g Fp(9\))734 1403 y Fh(P)6 +b(D)801 1409 y Fe(col;sq)898 1403 y Fp(=)12 b Fh(P)6 b Fp(4)996 +1410 y Fe(O)q(nRank)q Fk(\()p Fe(col;sq)q Fk(\))675 1453 y +Fl(else)734 1503 y(if)13 b Fp(\()p Fh(M)5 b(tl)864 1510 y Fe(O)q(pp)p +Fk(\()p Fe(col)p Fk(\))1008 1503 y Fp(=)14 b(KingV)m(alue\))793 +1553 y Fl(if)f Fp(\()p Fl(not)g Fp(InsideQuadrate\(Opp\(col\),sq\)\))852 +1602 y Fh(P)6 b(D)919 1608 y Fe(col;sq)1016 1602 y Fp(=)12 +b Fh(P)6 b Fp(1)1114 1609 y Fe(O)q(nRank)q Fk(\()p Fe(col;sq)q +Fk(\))793 1652 y Fl(else)852 1702 y Fh(P)g(D)919 1708 y Fe(col;sq)1016 +1702 y Fp(=)12 b Fh(P)6 b Fp(2)1114 1709 y Fe(O)q(nRank)q Fk(\()p +Fe(col;sq)q Fk(\))793 1752 y Fl(endif)734 1802 y(else)793 1851 +y Fh(P)g(D)860 1857 y Fe(col;sq)957 1851 y Fp(=)12 b Fh(P)6 +b Fp(3)1055 1858 y Fe(O)q(nRank)q Fk(\()p Fe(col;sq)q Fk(\))734 +1901 y Fl(endif)734 1951 y(if)13 b Fp(\(InsideQuadrate\(Opp\(col\),sq\)\))793 +2001 y Fh(P)6 b(D)860 2007 y Fe(col;sq)957 2001 y Fp(=)12 b +Fh(P)6 b(D)1068 2007 y Fe(col;sq)1163 2001 y Ff(\000)j Fh(r)q(ev)q(P)d(hase=) +p Fp(2)734 2051 y Fl(endif)734 2100 y Fh(P)g(D)801 2106 y Fe(col;sq)898 +2100 y Fp(=)12 b Fh(P)6 b(D)1009 2106 y Fe(col;sq)1104 2100 +y Ff(\000)j Fh(])p Fp(Occupied\()p Fh(sq)1382 2106 y Fe(inf)s(r)q(ont)1503 +2100 y Fp(,PSq\(col,sq\)\))p Ff(\001)p Fp(revPhase/4)734 2150 +y Fl(if)30 b Fp(\(A)o(ttac)o(k)o(ed\([P)o(a)o(wn],col,)p Fh(sq)1224 +2156 y Fe(inf)s(r)q(ont)1342 2150 y Fp(\))793 2200 y Fl(or)13 +b Fp(A)o(ttac)o(k)o(ed\([P)o(a)o(wn],col,sq\)\))793 2250 y +Fh(P)6 b(D)860 2256 y Fe(col;sq)957 2250 y Fp(=)12 b Fh(P)6 +b(D)1068 2256 y Fe(col;sq)1163 2250 y Fp(+)j Fh(U)c(N)1270 +2257 y Fe(O)q(nRank)q Fk(\()p Fe(col;sq)q Fk(\))734 2300 y +Fl(endif)734 2350 y(if)13 b Fp(\(Occup)o(y\([An)o(y],Opp\(col\),)p +Fh(sq)1265 2356 y Fe(inf)s(r)q(ont)1384 2350 y Fp(\)\))793 +2399 y Fh(P)6 b(D)860 2405 y Fe(col;sq)957 2399 y Fp(=)12 b +Fh(P)6 b(D)1068 2405 y Fe(col;sq)1163 2399 y Ff(\000)j Fh(r)q(ev)q(P)d(hase) +734 2449 y Fl(endif)957 2574 y Fp(56)p eop +%%Page: 57 59 +57 58 bop 734 307 a Fl(for)15 b(eac)o(h)g(square)f Fp(sq2)f +Fl(b)q(et)o(w)o(een)g Fp(sq)h Fl(and)f Fp(PSq\(col,sq\))h Fl(do)793 +357 y Fh(P)6 b(D)860 363 y Fe(col;sq)957 357 y Fp(=)12 b Fh(P)6 +b(D)1068 363 y Fe(col;sq)1163 357 y Fp(+)j(4)g Ff(\001)g Fh(])p +Fp(Di\013A)o(ttac)o(ks\(col,sq2\))734 407 y Fl(endfor)675 457 +y(endif)675 506 y Fh(P)d(D)742 512 y Fe(col;sq)839 506 y Fp(=)12 +b Fh(P)6 b(D)950 512 y Fe(col;sq)1035 506 y Ff(\001)14 b Fp(revPhase/16)616 +556 y Fl(else)675 606 y Fh(P)6 b(D)742 612 y Fe(col;sq)839 +606 y Fp(=)12 b(0)616 656 y Fl(endif)380 756 y Fh(P)6 b Fp(1)434 +762 y Fe(r)465 756 y Fp(:)139 b([0)p Fh(;)7 b Fp(400)p Fh(;)g +Fp(400)p Fh(;)f Fp(450)o Fh(;)h Fp(5)o(15)p Fh(;)f Fp(600)p +Fh(;)g Fp(700)o Fh(;)h Fp(0])675 805 y(Indexed)15 b(b)o(y)e(rank)h(r)g(\(1)g +(to)g(8\).)380 905 y Fh(P)6 b Fp(2)434 911 y Fe(r)465 905 y +Fp(:)139 b([0)p Fh(;)7 b Fp(40)p Fh(;)g Fp(40)p Fh(;)g Fp(5)o(5)p +Fh(;)f Fp(80)p Fh(;)g Fp(115)p Fh(;)g Fp(155)o Fh(;)h Fp(0])675 +955 y(Indexed)15 b(b)o(y)e(rank)h(r)g(\(1)g(to)g(8\).)380 1054 +y Fh(P)6 b Fp(3)434 1060 y Fe(r)465 1054 y Fp(:)139 b([0)p +Fh(;)7 b Fp(22)p Fh(;)g Fp(22)p Fh(;)g Fp(4)o(0)p Fh(;)f Fp(65)p +Fh(;)g Fp(95)p Fh(;)g Fp(135)p Fh(;)g Fp(0])675 1104 y(Indexed)15 +b(b)o(y)e(rank)h(r)g(\(1)g(to)g(8\).)380 1204 y Fh(P)6 b Fp(4)434 +1210 y Fe(r)465 1204 y Fp(:)139 b([0)p Fh(;)7 b Fp(16)p Fh(;)g +Fp(16)p Fh(;)g Fp(3)o(2)p Fh(;)f Fp(44)p Fh(;)g Fp(56)p Fh(;)g +Fp(68)p Fh(;)g Fp(0])675 1254 y(Indexed)15 b(b)o(y)e(rank)h(r)g(\(1)g(to)g +(8\).)380 1353 y Fh(U)5 b(N)446 1359 y Fe(r)478 1353 y Fp(:)126 +b([0)p Fh(;)7 b Fp(6)p Fh(;)g Fp(6)p Fh(;)g Fp(12)p Fh(;)f +Fp(28)o Fh(;)h Fp(86)o Fh(;)g Fp(12)o(0)p Fh(;)g Fp(0)o(])675 +1403 y(Indexed)15 b(b)o(y)e(rank)h(r)g(\(1)g(to)g(8\).)262 +1522 y(Using)d(this)g(de\014nition,)g(passed)h(pa)o(wns)f(are)h(classi\014ed) +g(under)g(4)f(categories.)18 b(This)11 b(allo)o(ws)262 1571 +y(unstoppable)17 b(passed)h(pa)o(wns)g(to)f(b)q(e)h(iden)o(ti\014ed)f(and)g +(giv)o(en)g(increased)i(b)q(on)o(uses.)29 b(The)262 1621 y(v)n(alue)8 +b(of)h(a)g(passed)i(pa)o(wn)e(is)g(dep)q(enden)o(t)i(on)e(its)h(category)g +(and)f(the)h(obstructions)g(b)q(et)o(w)o(een)262 1671 y(its)j(curren)o(t)j +(square)e(and)g(the)h(queening)f(square.)324 1756 y(The)c(passed)h(pa)o(wn)f +(is)g(p)q(enalised)g(for)g(b)q(eing)g('within)f(range')h(of)f(the)i(enem)o(y) +e(king.)16 b(The)262 1806 y(blo)q(c)o(k)n(ade)g(of)h(a)g(passed)h(pa)o(wn)f +(is)g(v)o(ery)g(e\013ectiv)o(e)i(as)e(it)g(is)g(a)g(metho)q(d)f(of)h(mec)o +(hanically)262 1856 y(stopping)c(the)i(pa)o(wns)f(progress.)365 +1939 y("The)g(passed)h(pa)o(wn)f(is)g(a)f(criminal)f(who)h(should)h(b)q(e)h +(k)o(ept)f(under)h(lo)q(c)o(k)e(and)365 1989 y(k)o(ey)m(.)18 +b(Mild)13 b(measures,)h(suc)o(h)g(as)g(p)q(olice)g(surv)o(eillance)g(are)g +(not)g(su\016cien)o(t.")1206 2055 y Fm(A)o(r)n(on)g(Nimzowitsch)262 +2174 y Fp(Therefore,)e(a)e(passed)i(pa)o(wn)e(is)g(p)q(enalised)h(for)g(b)q +(oth)f(immediate)e(and)j(future)g(blo)q(c)o(k)n(aders.)262 +2223 y(This)18 b(has)h(the)h(b)q(ene\014t)g(of)e(encouraging)h(the)g(opp)q +(osing)f(side)h(to)g(blo)q(c)o(k)n(ade)f(along)g(the)262 2273 +y(complete)c(path)h(of)g(the)h(passed)g(pa)o(wn.)22 b(Connected)17 +b(or)e(united)h(passed)g(pa)o(wns)f(receiv)o(e)262 2323 y(a)e(b)q(on)o(us)g +(for)g(their)h(added)g(strength.)19 b(This)13 b(b)q(on)o(us)h(increases)h +(dramatically)10 b(with)j(rank.)262 2373 y(Con)o(trol)k(is)h(encouraged)i(o)o +(v)o(er)e(all)f(squares)i(b)q(et)o(w)o(een)h(the)f(pa)o(wn)f(and)g(the)h +(promotion)262 2423 y(square.)f(The)d(b)q(on)o(uses)g(and)e(p)q(enalties)i +(are)f(adjusted)g(dep)q(ending)h(on)f(the)g(game)e(phase.)957 +2574 y(57)p eop +%%Page: 58 60 +58 59 bop 262 307 a Fu(4.4.5)55 b(De\014nition)17 b(11)i(:)24 +b(P)n(a)n(wn)d(T)-5 b(able)344 403 y Fh(P)6 b(T)401 409 y Fe(col)456 +403 y Fp(=)500 372 y Fc(P)544 382 y Fk(64)544 415 y Fe(sq)q +Fk(=1)675 403 y Fl(if)13 b Fp(\(Occup)o(y\([P)o(a)o(wn],col,sq\)\))734 +456 y Fh(P)6 b(S)r(T)818 462 y Fe(col;sq)675 506 y Fl(else)734 +556 y Fp(0)675 605 y Fl(endif)344 705 y(where)380 755 y Fh(P)g(S)r(T)464 +761 y Fe(col;sq)564 755 y Fp(:)40 b(P)o(a)o(wn)13 b(Square)i(T)m(able.)i +(Initialised)c(b)q(efore)i(eac)o(h)f(searc)o(h.)616 805 y(See)h(planning)d +(section)j(4.11.3)d(for)h(details.)262 931 y(A)j(static)g(pa)o(wn)g(square)g +(table)g(will)f(b)q(e)h(used)h(to)f(store)h(the)g(v)n(alues)e(of)h(eac)o(h)g +(square)h(for)262 981 y(ha)o(ving)e(a)h(pa)o(wn)g(o)q(ccup)o(y)h(that)f +(square.)27 b(This)16 b(enables)h(kno)o(wledge)f(calculated)h(at)f(the)262 +1031 y(ro)q(ot)e(to)h(b)q(e)g(e\016cien)o(tly)g(applied)f(at)g(leaf)g(no)q +(des.)22 b(The)15 b(table)f(will)g(b)q(e)h(calculated)g(b)q(efore)262 +1081 y(commencemen)o(t)c(of)j(the)g(searc)o(h)h(in)e(an)h(initial)e(planning) +h(phase.)262 1232 y Fu(4.4.6)55 b(De\014nition)17 b(12)i(:)24 +b(P)n(a)n(wn)d(V)-5 b(alue)344 1323 y Fh(P)6 b(V)401 1329 y +Fe(col)456 1323 y Fp(=)12 b Fh(D)q(P)562 1329 y Fe(col)615 +1323 y Fp(+)e Fh(I)s(P)705 1329 y Fe(col)758 1323 y Fp(+)g +Fh(W)c(P)872 1329 y Fe(col)925 1323 y Fp(+)j Fh(P)d(P)1026 +1329 y Fe(col)1078 1323 y Fp(+)k Fh(P)c(T)1177 1329 y Fe(col)344 +1423 y Fl(where)380 1473 y Fh(D)q(P)442 1479 y Fe(col)498 1473 +y Fp(:)23 b Fl(Doubled)13 b(P)o(a)o(wns)i(\(De\014niti)o(on)e(7\).)380 +1572 y Fh(I)s(P)428 1578 y Fe(col)498 1572 y Fp(:)23 b Fl(Isolated)14 +b(P)o(a)o(wns)h(\(De\014niti)o(on)e(8\).)380 1672 y Fh(W)6 +b(P)452 1678 y Fe(col)498 1672 y Fp(:)23 b Fl(W)l(eak)17 b(P)o(a)o(wns)e +(\(De\014niti)o(on)d(9\).)380 1772 y Fh(P)6 b(P)440 1778 y +Fe(col)498 1772 y Fp(:)23 b Fl(P)o(assed)15 b(P)o(a)o(wns)g(\(De\014niti)o +(on)d(10\).)380 1871 y Fh(P)6 b(T)437 1877 y Fe(col)498 1871 +y Fp(:)23 b Fl(P)o(a)o(wn)15 b(T)l(able)g(\(De\014niti)o(on)e(11\).)262 +1998 y Fp(All)d(the)j(pa)o(wn)e(ev)n(aluation)f(criteria)i(used)h(in)e(this)h +(section)g(can)g(b)q(e)g(summed)e(to)i(calculate)262 2048 y(a)h(total)g(pa)o +(wn)h(v)n(alue)f(for)h(ev)o(ery)g(pa)o(wn)g(of)f(a)h(giv)o(en)f(colour.)957 +2574 y(58)p eop +%%Page: 59 61 +59 60 bop 641 315 673 5 v 641 980 5 665 v 646 399 a Fg(0s0ZrZkZ)646 +482 y(Z0Z0Z0ob)646 565 y(pZ0o0o0o)646 648 y(Z0mPlPZ0)646 731 +y(pZPZPZPZ)646 814 y(Z0Z0L0MP)646 897 y(0Z0M0ZKZ)646 980 y(ZRZ0S0Z0)p +1310 980 V 641 984 673 5 v 339 1102 a Fp(Figure)14 b(4.4:)j +Fl(Capablanca)e(v)h(Bogljub)q(o\013)p Fp(,)11 b(London)i(1922,)g(White)g(to)h +(Pla)o(y)m(.)324 1221 y(Applying)e(these)j(pa)o(wn)f(ev)n(aluation)e +(criteria)i(to)f(the)h(p)q(osition)f(sho)o(wn)h(in)f(\014gure)h(4.4,)262 +1271 y(will)e(pro)q(duce)j(the)g(follo)o(wing)c(results:)344 +1368 y Fh(P)6 b(V)401 1374 y Fe(W)t(hite)533 1368 y Fp(=)14 +b(0)9 b(+)h(0)f Ff(\000)g Fp(74)g(+)h(0)f(+)g(118)i(=)h(44)344 +1418 y Fh(P)6 b(V)401 1424 y Fe(B)q(lack)533 1418 y Fp(=)14 +b Ff(\000)p Fp(12)9 b Ff(\000)h Fp(32)f Ff(\000)g Fp(70)g(+)g(18)g(+)h(84)h +(=)g Ff(\000)p Fp(12)957 2574 y(59)p eop +%%Page: 60 62 +60 61 bop 262 307 a Fr(4.5)69 b(Knigh)n(t)23 b(Ev)l(aluation)262 +434 y Fp(Knigh)o(ts)17 b(are)h(v)o(ery)g(useful)g(pieces,)h(particularly)e +(in)g(the)h(op)q(ening)f(and)h(middle)e(game.)262 483 y(Knigh)o(ts)10 +b(are)h(esp)q(ecially)g(e\013ectiv)o(e)h(in)e(closed)i(p)q(ositions)e(where)i +(they)f(can)g('jump')d(o)o(v)o(er)j(an)262 533 y(obstructing)g(pa)o(wn)g(c)o +(hain.)17 b(A)12 b(knigh)o(t)e(b)q(ecomes)i(v)o(ery)f(strong)h(if)e(it)h +(reac)o(hes)i(an)e(adv)n(anced)262 583 y(cen)o(tral)i(p)q(ost)h(whic)o(h)g +(cannot)f(b)q(e)i(attac)o(k)o(ed)e(b)o(y)h(enem)o(y)e(pa)o(wns.)18 +b(In)c(the)g(ending,)f(knigh)o(ts)262 633 y(are)i(generally)g(less)h +(e\013ectiv)o(e)h(b)q(ecause)g(they)f(only)e(ha)o(v)o(e)h(a)g(short)h(range.) +23 b(Knigh)o(ts)15 b(also)262 683 y(ha)o(v)o(e)e(the)i(abilit)o(y)d(to)i +(fork)f(opp)q(osing)g(forces.)262 834 y Fu(4.5.1)55 b(De\014nition)17 +b(13)i(:)24 b(Knigh)n(t)19 b(V)-5 b(alue)344 1001 y Fh(N)5 +b(V)406 1007 y Fe(col)462 1001 y Fp(=)506 970 y Fc(P)549 980 +y Fk(64)549 1013 y Fe(sq)q Fk(=1)675 1001 y Fl(if)13 b Fp(\(Occup)o +(y\([Knigh)o(t],col,sq\)\))734 1054 y Fh(N)5 b(S)r(T)823 1060 +y Fe(col;sq)675 1104 y Fl(else)734 1153 y Fp(0)675 1203 y Fl(endif)344 +1303 y(where)380 1353 y Fh(N)g(S)r(T)469 1359 y Fe(col;sq)569 +1353 y Fp(:)35 b(Knigh)o(t)13 b(Square)i(T)m(able.)i(Initialised)c(b)q(efore) +h(eac)o(h)h(searc)o(h.)616 1402 y(See)g(planning)d(section)j(4.11.4)d(for)h +(details.)262 1529 y(Knigh)o(t)19 b(ev)n(aluation)f(criteria)h(are)h(com)o +(bined)e(in)h(a)g(knigh)o(t)g(square)h(table.)34 b(Concepts)262 +1579 y(suc)o(h)19 b(as)f(pa)o(wn)g(holes,)i(strong)e(squares,)j(cen)o +(tralisation)d(and)g(king)g(closeness)i(will)d(b)q(e)262 1629 +y(calculated)d(in)f(an)h(initial)e(planning)g(phase.)324 1714 +y(It)k(m)o(ust)f(b)q(e)i(remem)o(b)q(ered)f(that)h(all)e(ev)n(aluation)g +(criteria)h(are)h(in)o(trinsically)e(link)o(ed.)262 1764 y(Therefore,)g +(knigh)o(ts)f(will)e(b)q(e)j(additionally)d(ev)n(aluated)i(b)o(y)g(other)h +(criteria)g(for)f(suc)o(h)h(fea-)262 1814 y(tures)f(as)f(the)g(pa)o(wn)g(blo) +q(c)o(k)n(ade,)f(cen)o(tre)j(con)o(trol,)d(square)i(con)o(trol,)f(...)j +(etc,etc.)k(Applying)262 1864 y(these)15 b(knigh)o(t)e(ev)n(aluation)f +(criteria)j(to)e(the)i(p)q(osition)e(in)h(\014gure)g(4.4)f(giv)o(es:)344 +1961 y Fh(N)5 b(V)406 1967 y Fe(W)t(hite)533 1961 y Fp(=)14 +b(6)344 2011 y Fh(N)5 b(V)406 2017 y Fe(B)q(lack)533 2011 y +Fp(=)14 b(6)957 2574 y(60)p eop +%%Page: 61 63 +61 62 bop 262 307 a Fr(4.6)69 b(Bishop)23 b(Ev)l(aluation)262 +434 y Fp(Bishops)16 b(are)g(e\013ectiv)o(e)h(pieces)g(throughout)f(the)g +(game,)f(but)h(esp)q(ecially)f(in)h(op)q(en)g(p)q(osi-)262 +483 y(tions)d(where)h(their)g(scop)q(e)h(is)e(less)h(hindered.)k(A)c(bishop)f +(is)g(often)h(used)g(to)f(pin)g(opp)q(osing)262 533 y(forces)h(and)e(attac)o +(k)i(w)o(eak)f(p)q(oin)o(ts.)k(A)c(single)g(bishop)g(can)g(only)g(exert)h +(pressure)h(\(attac)o(k\))262 583 y(on)h(squares)i(of)e(the)h(colour)f(it)g +(is)h(on.)26 b(Therefore,)18 b(bishops)e(are)h(particularly)f(e\013ectiv)o(e) +262 633 y(in)f(pairs)i(where)g(they)g(can)g(attac)o(k)f(b)q(oth)g(coloured)h +(squares.)27 b(In)16 b(the)h(ending,)f(bishops)262 683 y(are)g(as)f(a)h +(general)f(rule)h(b)q(etter)h(than)f(knigh)o(ts.)23 b(Ho)o(w)o(ev)o(er,)16 +b(there)h(are)f(strategies)h(whic)o(h)262 732 y(diminish)11 +b(a)j(bishops)g(p)q(o)o(w)o(er)g(e.g.)k(pa)o(wn)13 b(obstructions.)262 +883 y Fu(4.6.1)55 b(De\014nition)17 b(14)i(:)24 b(Bishop)19 +b(A)n(ttac)n(k)344 1050 y Fh(B)r(A)408 1056 y Fe(col)464 1050 +y Fp(=)508 1019 y Fc(P)552 1029 y Fk(64)552 1062 y Fe(sq)q +Fk(=1)675 1050 y Fl(if)13 b Fp(\(Occup)o(y\([Knigh)o(t,Bishop,Ro)q +(ok,Queen],Opp\(col\),sq\))675 1103 y Fl(and)g Fp(A)o(ttac)o(k)o +(ed\([Bishop],col,sq\)\))734 1153 y(V)m(alue\(sq\))675 1202 +y Fl(else)734 1252 y Fp(0)675 1302 y Fl(endif)262 1424 y Fp(Bishops)d(are)g +(giv)o(en)f(a)h(b)q(on)o(us)g(for)f(attac)o(king)g(enem)o(y)g(pieces,)j(the)e +(v)n(alue)f(of)g(whic)o(h)h(dep)q(ends)262 1473 y(on)18 b(the)h(t)o(yp)q(e)g +(of)g(piece)g(attac)o(k)o(ed.)33 b(This)18 b(criterion)i(will)d(encourage)i +(the)h(program)d(to)262 1523 y(harass)c(the)h(enem)o(y)e(forces)i +(particularly)e(those)i(of)e(high)g(v)n(alue,)g(e.g.)18 b(ro)q(oks)13 +b(and)g(queens.)324 1608 y(Note)18 b(that)f(pa)o(wns)h(are)g(excluded)h(as)e +(they)i(are)f(more)e(lik)o(ely)g(to)i(obstruct)h(the)f(at-)262 +1658 y(tac)o(king)e(bishop)i(than)f(b)q(e)h(harassed)h(themselv)o(es.)29 +b(See)19 b(de\014nition)e(18,)g(Enem)o(y)g(P)o(a)o(wn)262 1708 +y(Obstruction,)d(for)g(more)e(details.)262 1859 y Fu(4.6.2)55 +b(De\014nition)17 b(15)i(:)24 b(Bishop)19 b(on)g(Kings)f(Diagonal)344 +2025 y Fh(B)r(K)412 2031 y Fe(col)469 2025 y Fp(=)512 1994 +y Fc(P)556 2005 y Fk(64)556 2038 y Fe(sq)q Fk(=1)675 2025 y +Fl(if)13 b Fp(\(Occup)o(y\([Bishop],col,sq\))675 2078 y Fl(and)g +Fp(SameDiagonal\(sq,Ki)o(ngSq\(Opp\(col\)\)\)\))734 2128 y(phase/2)675 +2178 y Fl(else)734 2228 y Fp(0)675 2278 y Fl(endif)262 2399 +y Fp(Bishops)f(are)g(encouraged)g(to)g(remain)e(on)i(the)g(same)f(diagonal)f +(as)h(the)i(enem)o(y)e(king.)16 b(The)262 2449 y(b)q(on)o(us)e(receiv)o(ed)h +(decreases)h(as)e(the)h(game)d(progresses.)20 b(This)14 b(is)f(an)h(attempt)f +(to)h(correct)957 2574 y(61)p eop +%%Page: 62 64 +62 63 bop 262 307 a Fp(a)16 b(w)o(eakness)i(I)e(feel)h(most)f(c)o(hess)i +(programs)d(ha)o(v)o(e.)26 b(That)17 b(of)f(lea)o(ving)f(the)j(king)e(on)g +(the)262 357 y(same)e(diagonal)f(as)i(the)h(enem)o(y)e(bishop,)h +(particularly)f(when)i(it)f(is)g(on)f(a)h(long)f(diagonal)262 +407 y(and)f(a)h(n)o(um)o(b)q(er)f(of)g(pieces)i(are)g(in)o(terp)q(osed.)324 +492 y(The)d(ideas)g(b)q(ehind)g(suc)o(h)h(a)f(strategy)g(are)h(normally)c +(more)i(long)g(term)g(and)h(therefore)262 542 y(cannot)i(b)q(e)i(clearly)e +(iden)o(ti\014ed)h(b)o(y)f(searc)o(h.)22 b(Against)14 b(a)g(h)o(uman)f(opp)q +(onen)o(t)i(this)g(t)o(yp)q(e)g(of)262 592 y(bishop)g(placemen)o(t)g(will)f +(hop)q(efully)h(pro)o(vide)h(an)f(attac)o(king)g(p)q(oten)o(tial)g(whic)o(h)h +(disturbs)262 641 y(the)e(opp)q(onen)o(ts)h(liking)d(for)h(the)i(p)q +(osition.)262 793 y Fu(4.6.3)55 b(De\014nition)17 b(16)i(:)24 +b(Bishop)19 b(P)n(air)344 955 y Fh(B)r(P)404 961 y Fe(col)462 +955 y Fp(=)122 b Fl(if)13 b Fp(\(Has\([Bishop],col\))g Fh(>)h +Fp(1\))675 1005 y(8)616 1055 y Fl(else)675 1104 y Fp(0)616 +1154 y Fl(endif)262 1281 y Fp(Bishops)i(w)o(ork)g(most)f(e\013ectiv)o(ely)i +(in)e(pairs.)25 b(This)16 b(is)g(b)q(ecause)i(they)e(can)h(con)o(trol)e(b)q +(oth)262 1331 y(coloured)i(squares)h(and)f(hence)i(complemen)o(t)c(eac)o(h)j +(other.)29 b(Therefore,)19 b(this)e(heuristic)262 1381 y(rew)o(ards)d(the)h +(pla)o(y)o(er)e(who)h(main)o(tains)d(a)j(pair)f(of)h(bishops.)262 +1532 y Fu(4.6.4)55 b(De\014nition)17 b(17)i(:)24 b(Horrwitz)19 +b(Bishops)344 1699 y Fh(H)s(B)413 1705 y Fe(col)469 1699 y +Fp(=)513 1668 y Fc(P)557 1678 y Fk(64)557 1711 y Fe(sq)q Fk(=1)675 +1699 y Fl(if)13 b Fp(\(A)o(ttac)o(k)o(ed\([Bishop],col,sq\))g +Fl(and)g Fp(A)o(ttac)o(k)o(ed\([Bishop],col,)p Fh(sq)1730 1705 +y Fe(next)1798 1699 y Fp(\)\))734 1752 y(2)675 1802 y Fl(else)734 +1851 y Fp(0)675 1901 y Fl(endif)262 2028 y Fp(This)e(criterion)i(essen)o +(tially)f(rew)o(ards)h(a)e(bishop)h(pair)g(for)f(w)o(orking)h(together.)18 +b(When)12 b(t)o(w)o(o)262 2078 y(bishops)i(w)o(ork)g(on)g(adjacen)o(t)g +(diagonals)f(their)i(scop)q(e)g(and)f(p)q(o)o(w)o(er)h(is)f(greatly)g +(increased.)262 2128 y(This)h(barrier)h(of)f('bishop)f(p)q(o)o(w)o(er')h(can) +h(completely)e(restrict)j(an)e(enem)o(y)g(king,)g(particu-)262 +2177 y(larly)f(in)i(an)g(ending)g(where)h(the)f(p)q(osition)g(is)g(op)q(en.) +24 b(Therefore,)18 b(a)d(b)q(on)o(us)i(is)e(giv)o(en)h(for)262 +2227 y(ev)o(ery)e(pair)g(of)f(adjacen)o(t)h(horizon)o(tal)f(squares)i(attac)o +(k)o(ed)f(b)o(y)g(bishops.)957 2574 y(62)p eop +%%Page: 63 65 +63 64 bop 262 307 a Fu(4.6.5)55 b(De\014nition)17 b(18)i(:)24 +b(Enem)n(y)17 b(P)n(a)n(wn)k(Obstruction)344 474 y Fh(E)r(O)409 +480 y Fe(col)464 474 y Fp(=)508 443 y Fc(P)552 453 y Fk(64)552 +486 y Fe(sq)q Fk(=1)635 474 y Fh(O)q(B)699 480 y Fe(col;sq)344 +577 y Fl(where)380 626 y Fh(O)q(B)444 632 y Fe(col;sq)544 626 +y Fp(:)60 b Fl(if)30 b Fp(\(Occup)o(y\([P)o(a)o(wn],Opp\(col\),sq\))14 +b Fl(and)f Fp(A)o(ttac)o(k)o(ed\([Bishop],col,sq\)\))675 676 +y Fl(case)h Fh(])p Fp(A)o(ttac)o(ks\([P)o(a)o(wn],Opp\(col\),sq\))f +Fl(of)734 726 y Fp(0)h(:)k Fh(O)q(B)863 732 y Fe(col;sq)960 +726 y Fp(=)12 b(2)734 826 y(1)i(:)k Fl(for)d(eac)o(h)g(square)e +Fp(sq1)h Fl(do)852 875 y(for)h(eac)o(h)h(square)d Fp(sq2)h +Fl(do)911 925 y(if)f Fp(\(A)o(ttac)o(king\([Bishop],col,sq1,sq\))911 +975 y Fl(and)g Fp(A)o(ttac)o(king\([P)o(a)o(wn],Opp\(col\),sq2,sq\)\))970 +1025 y Fl(if)g Fp(\(SameDiagonal\(sq1,)o(sq2\)\))1029 1075 +y Fh(O)q(B)1093 1081 y Fe(col;sq)1191 1075 y Fp(=)f Ff(\000)p +Fp(10)970 1125 y Fl(else)1029 1174 y Fh(O)q(B)1093 1180 y Fe(col;sq)1191 +1174 y Fp(=)g Ff(\000)p Fp(6)970 1224 y Fl(endif)911 1274 y(endif)852 +1324 y(endfor)793 1374 y(endfor)734 1473 y Fp(2)i(:)k Fh(O)q(B)863 +1479 y Fe(col;sq)960 1473 y Fp(=)12 b Ff(\000)p Fp(16)675 1523 +y Fl(endcase)616 1573 y(endif)262 1700 y Fp(It)i(is)g(imp)q(ortan)o(t)e(to)i +(p)q(enalise)h(a)f(bishop)f(whic)o(h)i(is)f(attac)o(king)f(an)h(almost)e(imp) +q(enetrable)262 1749 y(enem)o(y)17 b(pa)o(wn)g(w)o(all.)29 +b(The)18 b(degree)i(of)d(pa)o(wn)h(protection)g(pro)o(vided)g(b)o(y)g(the)g +(opp)q(onen)o(t)262 1799 y(to)12 b(the)i(attac)o(k)o(ed)g(enem)o(y)e(pa)o(wn) +h(is)g(determined)g(and)g(an)g(appropriate)g(p)q(enalt)o(y)g(applied.)262 +1849 y(A)g(bishop)h(attac)o(king)f(an)h(unprotected)h(\(b)o(y)f(pa)o(wns\))g +(enem)o(y)f(pa)o(wn)h(actually)e(receiv)o(es)k(a)262 1899 y(small)11 +b(b)q(on)o(us)j(to)g(indicate)g(that)g(it)f(ma)o(y)f(b)q(e)j(an)e(e\013ectiv) +o(e)j(attac)o(k.)324 1984 y(This)c(criterion)h(helps)f(encourage)h(the)g +(program)e(to)h(place)g(its)h(bishops)f(on)g(diagonals)262 +2034 y(where)j(they)g(can)f(b)q(e)h(most)e(e\013ectiv)o(e.)20 +b(Hence,)15 b(this)f(in)g(e\013ect,)i(complemen)o(ts)c(de\014nition)262 +2084 y(14)h(\(Bishop)h(A)o(ttac)o(k\))g(whic)o(h)f(is)h(also)f(concerned)j +(with)d(the)h(e\013ectiv)o(eness)j(of)c(attac)o(ks)h(on)262 +2134 y(enem)o(y)f(pieces)i(b)o(y)e(bishops.)957 2574 y(63)p +eop +%%Page: 64 66 +64 65 bop 262 307 a Fu(4.6.6)55 b(De\014nition)17 b(19)i(:)24 +b(Bishop)19 b(T)-5 b(able)344 474 y Fh(B)r(T)401 480 y Fe(col)458 +474 y Fp(=)501 443 y Fc(P)545 453 y Fk(64)545 486 y Fe(sq)q +Fk(=1)675 474 y Fp(if)13 b(\(Occup)o(y\([Bishop],col,sq\)\))734 +527 y Fh(B)r(S)r(T)818 533 y Fe(col;sq)675 577 y Fl(else)734 +626 y Fp(0)675 676 y Fl(endif)344 776 y(where)380 826 y Fh(B)r(S)r(T)464 +832 y Fe(col;sq)565 826 y Fp(:)39 b(Bishop)14 b(Square)g(T)m(able.)k +(Initialised)12 b(b)q(efore)j(eac)o(h)f(searc)o(h.)616 875 +y(See)h(planning)d(section)j(4.11.5)d(for)h(details.)262 1002 +y(A)h(static)h(bishop)f(square)i(table)e(will)f(b)q(e)i(used)h(to)e(store)h +(the)g(v)n(alues)g(of)f(eac)o(h)h(square)g(for)262 1052 y(ha)o(ving)e(a)h +(bishop)h(o)q(ccup)o(y)g(that)g(square.)21 b(This)15 b(enables)g(kno)o +(wledge)g(calculated)f(at)h(the)262 1102 y(ro)q(ot)f(to)h(b)q(e)g(e\016cien)o +(tly)g(applied)f(at)g(leaf)g(no)q(des.)22 b(The)15 b(table)f(will)g(b)q(e)h +(calculated)g(b)q(efore)262 1152 y(commencemen)o(t)c(of)j(the)g(searc)o(h)h +(in)e(an)h(initial)e(planning)h(phase.)262 1303 y Fu(4.6.7)55 +b(De\014nition)17 b(20)i(:)24 b(Bishop)19 b(V)-5 b(alue)344 +1430 y Fh(B)r(V)401 1436 y Fe(col)457 1430 y Fp(=)12 b Fh(B)r(A)565 +1436 y Fe(col)619 1430 y Fp(+)e Fh(B)r(K)729 1436 y Fe(col)783 +1430 y Fp(+)f Fh(B)r(P)884 1436 y Fe(col)938 1430 y Fp(+)g +Fh(H)s(B)1048 1436 y Fe(col)1102 1430 y Fp(+)g Fh(E)r(O)1208 +1436 y Fe(col)1261 1430 y Fp(+)h Fh(B)r(T)1360 1436 y Fe(col)344 +1529 y Fl(where)380 1579 y Fh(B)r(A)444 1585 y Fe(col)498 1579 +y Fp(:)23 b Fl(Bishop)14 b(A)o(ttac)o(k)h(\(De\014niti)o(on)e(14\).)380 +1679 y Fh(B)r(K)448 1685 y Fe(col)498 1679 y Fp(:)23 b Fl(Bishop)14 +b(On)h(Kings)g(Diagonal)f(\(De\014niti)o(on)e(15\).)380 1778 +y Fh(B)r(P)440 1784 y Fe(col)498 1778 y Fp(:)23 b Fl(Bishop)14 +b(P)o(air)g(\(De\014nitio)o(n)f(16\).)380 1878 y Fh(H)s(B)449 +1884 y Fe(col)498 1878 y Fp(:)23 b Fl(Horrwitz)15 b(Bishops)f(\(De\014niti)o +(on)e(17\).)380 1978 y Fh(E)r(O)445 1984 y Fe(col)498 1978 +y Fp(:)23 b Fl(Enem)o(y)15 b(P)o(a)o(wn)h(Obstructio)o(n)d(\(De\014niti)o(on) +f(18\).)380 2077 y Fh(B)r(T)437 2083 y Fe(col)498 2077 y Fp(:)23 +b Fl(Bishop)14 b(T)l(able)h(\(De\014niti)o(on)e(19\).)262 2204 +y Fp(All)d(the)h(bishop)g(ev)n(aluation)e(criteria)i(de\014ned)h(in)f(this)g +(section)g(are)h(summed)d(to)i(calculate)262 2254 y(the)j(total)f(bishop)h(v) +n(alue)f(for)h(a)f(giv)o(en)h(colour.)957 2574 y(64)p eop +%%Page: 65 67 +65 66 bop 641 315 673 5 v 641 980 5 665 v 646 399 a Fg(rZ0Z0skZ)646 +482 y(Z0ZqZpo0)646 565 y(0ZbZ0m0o)646 648 y(opa0oPZ0)646 731 +y(0Z0oPZPZ)646 814 y(OPZBZ0ZQ)646 897 y(0APM0Z0O)646 980 y(Z0Z0SRJ0)p +1310 980 V 641 984 673 5 v 340 1102 a Fp(Figure)14 b(4.5:)j +Fl(V)l(an)f(Vliet)d(v)k(Nimzo)o(witsc)o(h)p Fp(,)11 b(Ostend,)j(1907,)f(Blac) +o(k)h(to)f(pla)o(y)m(.)324 1221 y(Applying)g(these)i(bishop)e(ev)n(aluation)g +(criteria)h(to)f(the)i(p)q(osition)e(in)g(\014gure)h(4.5)f(giv)o(es:)344 +1368 y Fh(B)r(V)401 1374 y Fe(W)t(hite)533 1368 y Fp(=)h(0)9 +b(+)h(0)f(+)g(8)g(+)h(4)f Ff(\000)g Fp(8)g(+)h(18)h(=)h(22)344 +1418 y Fh(B)r(V)401 1424 y Fe(B)q(lack)533 1418 y Fp(=)i(0)9 +b(+)h(7)f(+)g(8)g(+)h(6)f(+)g(4)g(+)h(20)h(=)h(45)957 2574 +y(65)p eop +%%Page: 66 68 +66 67 bop 262 307 a Fr(4.7)69 b(Ro)r(ok)23 b(Ev)l(aluation)262 +434 y Fp(The)d(ro)q(ok)f(is)h(a)g(v)o(ery)g(strong)g(piece.)37 +b(Ho)o(w)o(ev)o(er,)21 b(it)e(requires)i('ro)q(om')d(to)h(w)o(ork)h(most)262 +483 y(e\013ectiv)o(ely)m(.)324 569 y(In)14 b(the)g(op)q(ening)g(the)h(main)d +(ob)r(jectiv)o(e)i(of)g(the)g(ro)q(oks)g(is)g(to)g(unite)g(with)g(one)g +(another)262 618 y(and)f(supp)q(ort)i(more)e(adv)n(anced)h(pieces.)19 +b(This)14 b(pro)o(vides)g(extra)g(protection)g(and)g(div)o(ersi-)262 +668 y(\014es)g(the)h(a)o(v)n(ailable)c(plans)j(for)g(eac)o(h)g(ro)q(ok.)324 +753 y(In)e(the)i(middle)d(game)g(they)i(should)g(b)q(e)g(placed)g(on)f(the)i +(\014le)e(where)i(a)e(break)i(through)262 803 y(is)d(lik)o(ely)g(to)h(o)q +(ccur)h(or)f(to)g(protect)h(a)f(w)o(eak)g(or)g(strong)g(p)q(oin)o(t.)17 +b(Ro)q(oks)12 b(should)f(not)h(usually)262 853 y(lea)o(v)o(e)g(the)h +(con\014nes)h(of)e(their)g(o)o(wn)h(forces)g(unless)g(they)g(can)g(gain)f +(material)e(or)j(p)q(enetrate)262 903 y(to)e(the)h(7th)g(rank)f(successfully) +m(.)18 b(A)12 b(ro)q(ok)g(can)f(mak)o(e)g(a)g(hea)o(vy)g(con)o(tribution)h +(to)f(an)h(attac)o(k)262 953 y(on)h(the)i(enem)o(y)e(king)g(pro)o(vided)h(it) +f(can)h(b)q(e)h(mano)q(euvred)e(in)o(to)g(an)h(attac)o(king)f(p)q(osition.) +324 1038 y(The)e(endgame)f(is)h(where)i(the)e(ro)q(ok)g(truly)g(excels.)18 +b(Its)12 b(range)f(allo)o(ws)f(it)h(to)f(exert)j(pres-)262 +1088 y(sure)i(o)o(v)o(er)f(most)f(of)h(the)h(b)q(oard.)k(It)c(can)f(threaten) +i(enem)o(y)e(pa)o(wns)g(and)g(cause)i(un)o(timely)262 1138 +y(pa)o(wn)e(adv)n(ances.)21 b(It)14 b(can)h(blo)q(c)o(k)n(ade)f(and)h +(obstruct)h(enem)o(y)d(pa)o(wns)i(and)g(of)f(course)i(cap-)262 +1187 y(ture)c(them.)17 b(A)12 b(ro)q(ok)g(is)f(excellen)o(t)i(at)f +(restricting)h(the)f(enem)o(y)g(kings)f(mo)o(v)o(emen)o(t)e(thereb)o(y)262 +1237 y(k)o(eeping)15 b(it)g(a)o(w)o(a)o(y)f(from)g(the)i(\014eld)f(of)g +(action.)22 b(It)15 b(also)g(has)g(the)h(abilit)o(y)e(to)h(supp)q(ort)h(the) +262 1287 y(adv)n(ance)d(of)h(friendly)f(passed)i(pa)o(wns)f(and)g(obstruct)h +(enem)o(y)e(ones.)262 1439 y Fu(4.7.1)55 b(De\014nition)17 +b(21)i(:)24 b(Ro)r(ok{King)18 b(Closeness)344 1605 y Fh(RC)406 +1611 y Fe(col)461 1605 y Fp(=)505 1574 y Fc(P)549 1584 y Fk(64)549 +1618 y Fe(sq)q Fk(=1)675 1605 y Fl(if)13 b Fp(\(Occup)o(y\([Ro)q +(ok],col,sq\)\))734 1658 y Ff(\000)p Fp(2)p Ff(\001)p Fp +(KingDistance\(sq,KingSq\(Opp\(col\)\)\))675 1708 y Fl(else)734 +1758 y Fp(0)675 1808 y Fl(endif)262 1934 y Fp(Eac)o(h)18 b(ro)q(ok)g(is)g(p)q +(enalised)g(for)g(its)g(distance)h(from)d(the)j(enem)o(y)e(king.)30 +b(A)18 b(ro)q(ok)g(on)g(the)262 1984 y(same)13 b(\014le)h(\(or)g(rank\))g(as) +g(the)g(enem)o(y)g(king)f(w)o(ould)g(not)h(receiv)o(e)h(an)o(y)f(p)q(enalt)o +(y)g(no)f(matter)262 2034 y(what)j(the)g(corresp)q(onding)h(rank)g(\(or)f +(\014le\))g(distance)h(is.)25 b(An)o(y)16 b(p)q(enalties)h(giv)o(en)e(will)g +(b)q(e)262 2084 y(directly)e(related)i(to)e(the)h(minim)n(um)c(rank)j(or)h +(\014le)f(distance.)19 b(This)14 b(a)o(v)o(oids)e(the)i(pitfall)e(of)262 +2134 y(encouraging)k(a)g(ro)q(ok)g(to)g(mak)o(e)f(w)o(eak)h(mo)o(v)o(es)f(in) +h(order)h(to)f(attain)f(the)i(b)q(est)h(rank)e Fm(and)262 2183 +y Fp(\014le)d(distance.)18 b(F)m(or)13 b(example,)f(in)h(\014gure)h(4.6,)e +(this)h(criterion)h(w)o(ould)e Fl(not)h Fp(encourage)h(the)262 +2233 y(mo)o(v)o(es)e(Rh4-h5)h(or)h(Rg3-g4,)e(ho)o(w)o(ev)o(er,)h(it)h +Fl(w)o(ould)e Fp(encourage)j(the)f(mo)o(v)o(e)f(Rg3-h3.)957 +2574 y(66)p eop +%%Page: 67 69 +67 68 bop 641 315 673 5 v 641 980 5 665 v 646 399 a Fg(0ZrZ0Zna)646 +482 y(ZbZ0ZpZk)646 565 y(pZ0o0o0o)646 648 y(ZpZ0sPZ0)646 731 +y(0Z0Z0M0S)646 814 y(ZNZBZ0S0)646 897 y(qZPL0ZPO)646 980 y(Z0Z0Z0J0)p +1310 980 V 641 984 673 5 v 275 1102 a Fp(Figure)14 b(4.6:)j(Illustration)c +(of)g(the)i(Ro)q(ok{King)d(Closeness)j(Heuristic,)f(White)g(to)g(Pla)o(y)m(.) +262 1254 y Fu(4.7.2)55 b(De\014nition)17 b(22)i(:)24 b(Connected)19 +b(Ro)r(oks)344 1420 y Fh(C)s(R)409 1426 y Fe(col)464 1420 y +Fp(=)508 1389 y Fc(P)551 1400 y Fk(64)551 1433 y Fe(sq)q Fk(=1)675 +1420 y Fl(if)13 b Fp(\(Occup)o(y\([Ro)q(ok],col,sq\))f Fl(and)h +Fp(A)o(ttac)o(k)o(ed\([Ro)q(ok],col,sq\)\))734 1473 y(3)675 +1523 y Fl(else)734 1573 y Fp(0)675 1623 y Fl(endif)262 1750 +y Fp(Ro)q(oks)j(are)h(said)f(to)h(b)q(e)g(connected)i(if)c(they)j(defend)f +(eac)o(h)g(other.)27 b(Ro)q(oks)17 b(are)g(giv)o(en)f(a)262 +1799 y(b)q(on)o(us)g(for)h(b)q(eing)f(connected.)29 b(This)16 +b(encourages)i(ro)q(oks)f(to)f(double)h(up)g(on)f(op)q(en)h(\014les)262 +1849 y(and)12 b(w)o(eak)h(p)q(oin)o(ts.)18 b(Connected)c(ro)q(oks)f(are)g +(also)g(self)f(supp)q(orting)i(whic)o(h)e(div)o(ersi\014es)i(the)262 +1899 y(options)f(a)o(v)n(ailable.)957 2574 y(67)p eop +%%Page: 68 70 +68 69 bop 262 307 a Fu(4.7.3)55 b(De\014nition)17 b(23)i(:)24 +b(Ro)r(ok)18 b(on)h(Op)r(en)f(File)344 403 y Fh(RO)408 409 +y Fe(col)463 403 y Fp(=)507 372 y Fc(P)551 382 y Fk(64)551 +415 y Fe(sq)q Fk(=1)675 403 y Fl(if)13 b Fp(\(Occup)o(y\([Ro)q +(ok],col,sq\)\))734 456 y Fl(if)g Fp(\(Op)q(en\(OnFile\(sq\)\)\))793 +506 y(14)734 556 y Fl(else)793 605 y(if)g Fp(\(SemiOp)q +(en\(col,OnFile\(sq\)\)\))852 655 y(6)793 705 y Fl(else)852 +755 y Fp(0)793 805 y Fl(endif)734 854 y(endif)675 904 y(else)734 +954 y Fp(0)675 1004 y Fl(endif)262 1119 y Fp(A)h(\014le)h(is)g(op)q(en)g(if)e +(no)i(pa)o(wns)g(of)f(an)o(y)g(colour)g(exist)h(on)g(the)g(\014le.)21 +b(A)14 b(\014le)h(is)g(semi{op)q(en)e(if)262 1168 y(only)e(enem)o(y)h(pa)o +(wns)h(exist)g(on)f(the)i(\014le.)j(Ro)q(oks)12 b(receiv)o(e)i(a)f(b)q(on)o +(us)f(for)h(b)q(eing)f(on)h(an)f(op)q(en)262 1218 y(\014le.)18 +b(Con)o(trol)13 b(of)g(the)i(op)q(en)f(\014le)g(is)g(vital)f(in)h(order)g(to) +g(b)q(e)h(able)e(to)h(ev)o(en)o(tually)g(p)q(enetrate)262 1268 +y(to)k(the)i(7th)e(and)h(8th)g(ranks.)33 b(Ev)o(en)19 b(if)f(the)h(opp)q +(onen)o(t)g(has)g(con)o(trol)g(of)f(the)i(\014le)e(it)h(is)262 +1318 y(imp)q(ortan)o(t)12 b(to)h(rew)o(ard)i(attempts)e(whic)o(h)h(c)o +(hallenge)g(this)g(con)o(trol.)324 1403 y(This)d(heuristic)g(has)h(the)f +(added)h(b)q(ene\014t)g(of)e(encouraging)h(the)h(program)d(to)i(op)q(en)g +(\014les)262 1453 y(whic)o(h)i(it)h(can)g(con)o(trol)g(and)f(k)o(eep)i +(closed)f(those)h(whic)o(h)f(w)o(ould)f(b)q(ene\014t)i(the)f(opp)q(onen)o(t.) +324 1538 y(A)k(ro)q(ok)g(is)g(also)f(rew)o(arded)j(for)d(b)q(eing)h(on)g(a)g +(semi{op)q(en)f(\014le.)31 b(The)19 b(enem)o(y)e(pa)o(wn)262 +1588 y(whic)o(h)12 b(mak)o(es)g(the)h(\014le)f(semi{op)q(en)g(is)h(an)f(ob)o +(vious)g(w)o(eak)h(p)q(oin)o(t)f(to)g(c)o(hallenge)h(with)f(ones)262 +1638 y(o)o(wn)f(pa)o(wns.)18 b(In)12 b(this)g(w)o(a)o(y)f(the)i(opp)q(onen)o +(t)f(can)h(b)q(e)f(put)h(on)f(the)g(defensiv)o(e)h(and)f(attempts)262 +1688 y(can)f(b)q(e)h(made)e(to)h(build)f(up)i(pressure)h(or)e(fully)f(op)q +(en)i(the)g(\014le)f(at)g(an)g(opp)q(ortune)h(momen)o(t.)262 +1837 y Fu(4.7.4)55 b(De\014nition)17 b(24)i(:)24 b(Ro)r(ok)18 +b(on)h(Sev)n(en)n(th)f(Rank)344 1933 y Fh(RS)401 1939 y Fe(col)457 +1933 y Fp(=)501 1902 y Fc(P)545 1912 y Fk(64)545 1945 y Fe(sq)q +Fk(=1)675 1933 y Fl(if)13 b Fp(\(Occup)o(y\([Ro)q(ok],col,sq\))f +Fl(and)h Fp(OnRank\(col,sq\))h(=)g(7\))734 1986 y Fl(if)f Fp +(\(OnRank\(col,KingSq\(Opp\(col\)\)\))g Ff(\025)h Fp(7\))793 +2036 y(14)734 2085 y Fl(else)793 2135 y Fp(6)734 2185 y Fl(endif)675 +2235 y(else)734 2285 y Fp(0)675 2334 y Fl(endif)262 2449 y +Fp(P)o(enetration)j(to)f(the)h(7th)g(rank)g(is)f(the)h(natural)f(consequence) +j(and)e(goal)e(of)h(ro)q(ok)h(pla)o(y)957 2574 y(68)p eop +%%Page: 69 71 +69 70 bop 262 307 a Fp(on)13 b(op)q(en)i(\014les.)k(A)c(ro)q(ok)f(on)f(the)i +(7th)f(rank)g(can)h(wreak)f(ha)o(v)o(o)q(c)g(on)g(the)h(enem)o(y)e(king)h +(and)262 357 y(pa)o(wns.)20 b(Therefore)15 b(o)q(ccupation)g(of)f(the)h(7th)g +(rank)f(b)o(y)g(a)h(ro)q(ok)f(receiv)o(es)i(a)e(b)q(on)o(us.)21 +b(This)262 407 y(b)q(on)o(us)14 b(is)f(esp)q(ecially)h(large)g(if)f(the)i +(enem)o(y)e(king)g(is)h(on)f(the)i(7th)e(or)h(8th)g(ranks.)262 +558 y Fu(4.7.5)55 b(De\014nition)17 b(25)i(:)24 b(Ro)r(ok)18 +b(V)-5 b(alue)344 649 y Fh(RV)400 655 y Fe(col)456 649 y Fp(=)12 +b Fh(RC)562 655 y Fe(col)614 649 y Fp(+)e Fh(C)s(R)721 655 +y Fe(col)773 649 y Fp(+)g Fh(RO)879 655 y Fe(col)931 649 y +Fp(+)g Fh(RS)1030 655 y Fe(col)344 748 y Fl(where)380 798 y +Fh(RC)442 804 y Fe(col)498 798 y Fp(:)23 b Fl(Ro)q(ok{King)15 +b(Closeness)f(\(De\014nitio)o(n)f(21\).)380 898 y Fh(C)s(R)445 +904 y Fe(col)498 898 y Fp(:)23 b Fl(Connected)15 b(Ro)q(oks)g(\(De\014nitio)o +(n)e(22\).)380 997 y Fh(RO)444 1003 y Fe(col)498 997 y Fp(:)23 +b Fl(Ro)q(ok)16 b(on)f(Op)q(en)g(File)g(\(De\014niti)o(on)d(23\).)380 +1097 y Fh(RS)437 1103 y Fe(col)498 1097 y Fp(:)23 b Fl(Ro)q(ok)16 +b(On)f(Sev)o(en)o(th)f(Rank)h(\(De\014nitio)o(n)e(24\).)262 +1219 y Fp(All)g(the)h(ro)q(ok)g(ev)n(aluation)f(criteria)h(de\014ned)h(in)e +(this)i(section)f(are)h(summed)d(to)i(calculate)262 1269 y(the)g(total)f(ro)q +(ok)h(v)n(alue)f(for)h(a)f(giv)o(en)h(colour.)p 641 1363 673 +5 v 641 2027 5 665 v 646 1446 a Fg(0ZrZ0ZkZ)646 1529 y(ZqZ0ZpZp)646 +1612 y(po0LpZpZ)646 1695 y(Z0Z0Z0Z0)646 1778 y(PZ0O0Z0Z)646 +1861 y(Z0Z0O0ZP)646 1944 y(0ZrZ0OPZ)646 2027 y(SRZ0Z0J0)p 1310 +2027 V 641 2031 673 5 v 343 2146 a Fp(Figure)g(4.7:)j Fl(Alatorze\013)d(v)i +(Capablanca)p Fp(,)d(Mosco)o(w,)h(1935,)e(Blac)o(k)i(to)f(pla)o(y)m(.)324 +2261 y(Applying)g(these)i(ro)q(ok)f(ev)n(aluation)e(criteria)i(to)g(the)h(p)q +(osition)e(in)g(\014gure)i(4.7)e(giv)o(es:)344 2355 y Fh(RV)400 +2361 y Fe(W)t(hite)533 2355 y Fp(=)h Ff(\000)p Fp(22)9 b(+)h(6)f(+)g(6)g(+)h +(0)h(=)h Ff(\000)p Fp(10)344 2405 y Fh(RV)400 2411 y Fe(B)q(lack)533 +2405 y Fp(=)i Ff(\000)p Fp(10)9 b(+)h(6)f(+)g(28)g(+)h(14)h(=)g(38)957 +2574 y(69)p eop +%%Page: 70 72 +70 71 bop 262 307 a Fr(4.8)69 b(Queen)22 b(Ev)l(aluation)262 +434 y Fp(The)12 b(queen)h(is)f(the)h(most)d(p)q(o)o(w)o(erful)i(and)g(also)f +(the)i(most)e(v)n(aluable)g(piece)i(apart)f(from)e(the)262 +483 y(king.)16 b(The)e(queen)f(has)g(great)g(range)g(whic)o(h)g(allo)o(ws)e +(it)i(to)f(mak)o(e)g(sim)o(ultaneous)f(m)o(ultiple)262 533 +y(attac)o(ks)j(on)f(enem)o(y)h(pieces.)324 618 y(In)e(the)g(op)q(ening)g(a)g +(queen)h(should)e(not)h(b)q(e)h(exp)q(osed)g(to)f(hostile)g(attac)o(ks)g +(where)h(a)f(loss)262 668 y(of)k(temp)q(o)h(will)f(o)q(ccur.)30 +b(Therefore,)19 b(lik)o(e)e(ro)q(oks)h(it)f(should)g(b)q(e)h(k)o(ept)g(bac)o +(k)g(during)f(the)262 718 y(op)q(ening.)324 803 y(In)g(the)h(middle)d(game)h +(the)i(queen)g(can)f(truly)g(exert)i(its)e(p)q(o)o(w)o(ers.)29 +b(The)17 b(queen)h(can)262 853 y(harass)c(enem)o(y)f(pieces,)h(help)g(build)f +(up)h(attac)o(king)f(formations)f(and)h(launc)o(h)h(attac)o(ks)g(on)262 +903 y(the)19 b(enem)o(y)g(king.)33 b(Once)21 b(pieces)f(b)q(egin)f(to)h(b)q +(e)f(exc)o(hanged)h(the)g(p)q(osition)f(in)o(v)n(ariably)262 +953 y(b)q(ecomes)14 b(clearer)h(and)e(allo)o(ws)g(the)h(queen)h(to)f(mo)o(v)o +(e)e(with)i(more)f(freedom.)324 1038 y(In)h(the)g(ending)g(a)f(queen)i(is)e +(ruthless,)i(often)f(pic)o(king)f(up)g(stra)o(y)h(pa)o(wns)g(and)g(holding) +262 1088 y(bac)o(k)h(enem)o(y)g(adv)n(ances.)24 b(Ev)o(en)16 +b(in)f(inferior)g(endgames,)g(the)h(queen)h(can)e(o\013er)i(coun)o(ter)262 +1138 y(c)o(hances)12 b(and)f(can)g(sometimes)e(b)q(e)i(used)h(to)f(dra)o(w)g +(otherwise)g(lost)g(games)f(b)o(y)h(a)f(rep)q(etition)262 1187 +y(of)j(mo)o(v)o(es.)262 1339 y Fu(4.8.1)55 b(De\014nition)17 +b(26)i(:)24 b(Queen{King)18 b(Closeness)344 1506 y Fh(QC)407 +1512 y Fe(col)462 1506 y Fp(=)506 1475 y Fc(P)550 1485 y Fk(64)550 +1518 y Fe(sq)q Fk(=1)675 1506 y Fl(if)13 b Fp(\(Occup)o +(y\([Queen],col,sq\)\))734 1559 y Ff(\000)p Fp(2)p Ff(\001)p +Fp(KingDistance\(sq,KingSq\(Opp\(col\)\)\))675 1608 y Fl(else)734 +1658 y Fp(0)675 1708 y Fl(endif)262 1835 y Fp(The)j(queen)h(is)f(p)q +(enalised)h(for)f(its)g(distance)h(from)d(the)j(enem)o(y)f(king.)24 +b(A)16 b(queen)h(on)f(the)262 1885 y(same)e(rank)h(\(or)h(\014le\))g(as)f +(the)h(enem)o(y)f(king)f(will)g(receiv)o(e)j(no)e(p)q(enalt)o(y)h(regardless) +g(of)f(the)262 1934 y(corresp)q(onding)g(\014le)g(\(or)g(rank\))f(distance.) +21 b(An)o(y)15 b(p)q(enalties)g(giv)o(en)f(will)g(b)q(e)h(directly)g(pro-)262 +1984 y(p)q(ortional)d(to)i(the)h(minim)n(um)9 b(rank)14 b(or)g(\014le)g +(distance.)324 2069 y(This)c(criterion)h(therefore)h(encourages)g(the)g +(queen)f(to)f(k)o(eep)i(close)f(to)f(the)i(enem)o(y)d(king)262 +2119 y(with)k(resp)q(ect)j(to)d(either)h(the)g(rank)g(or)f(\014le)h +(distance,)g(not)f(b)q(oth.)18 b(If)c(a)f(more)f(dominating)262 +2169 y(queen/king)g(p)q(osition)f(is)h(w)o(arran)o(ted,)h(the)g(king)e(safet) +o(y)i(criteria)f(will)f(highligh)o(t)f(this)j(and)262 2219 +y(encourage)h(its)g(ac)o(hiev)o(emen)o(t.)957 2574 y(70)p eop +%%Page: 71 73 +71 72 bop 262 307 a Fu(4.8.2)55 b(De\014nition)17 b(27)i(:)24 +b(Queen)19 b(P)n(o)n(w)n(er)344 474 y Fh(QP)404 480 y Fe(col)459 +474 y Fp(=)503 443 y Fc(P)547 453 y Fk(64)547 486 y Fe(sq)q +Fk(=1)675 474 y Fl(if)13 b Fp(\(A)o(ttac)o(k)o(ed\([Queen],col,sq\))675 +527 y Fl(and)i(not)e Fp(A)o(ttac)o(k)o(ed\([P)o(a)o(wn,Knigh)o(t,Bishop,Ro)q +(ok],Opp\(col\),)o(sq\)\))734 577 y(1)675 626 y Fl(else)734 +676 y Fp(0)675 726 y Fl(endif)262 853 y Fp(As)h(explained)f(in)h(the)g +(mobilit)o(y)d(de\014nition,)i(a)h(straigh)o(t)f(forw)o(ard)h(measure)g(of)f +(a)g(queens)262 903 y(mobilit)o(y)e(is)k(not)g(adequate.)22 +b(It)15 b(is)g(often)g(the)g(queens)h(placemen)o(t)f(rather)h(than)f(its)f +(mo-)262 952 y(bilit)o(y)d(whic)o(h)i(is)g(imp)q(ortan)o(t.)j(I)d(feel)g(a)f +(queens)j(real)e(mobilit)o(y)c(is)k(the)h(n)o(um)o(b)q(er)e(of)g(squares)262 +1002 y(it)i(can)i(actually)e(mo)o(v)o(e)g(to)h(without)f(b)q(eing)i(captured) +g(b)o(y)f(lo)o(w)o(er)g(v)n(alued)f(enem)o(y)h(pieces.)262 +1052 y(Therefore,)c(the)f(queen)h(is)f(encouraged)h(to)e(maximi)o(se)f(its)i +(mobilit)o(y)d(to)i(accessible)i(squares)262 1102 y(only)m(.)16 +b(This)d(means)f(attac)o(ks)i(on)e(squares)j(whic)o(h)d(are)i(undefended)g +(or)f(only)g(defended)h(b)o(y)262 1152 y(the)g(enem)o(y)f(queen)i(or)f(king)f +(are)h(w)o(orth)o(while.)324 1237 y(I)f(feel)h(this)f(criterion)h(pro)o +(vides)g(a)f(m)o(uc)o(h)g(b)q(etter)i(ev)n(aluation)d(of)h(a)g(queen's)h +(degree)h(of)262 1287 y(freedom)e(in)g(a)h(giv)o(en)f(p)q(osition)g(than)h +(the)h(more)d(traditional)h(mobilit)o(y)e(functions.)262 1438 +y Fu(4.8.3)55 b(De\014nition)17 b(28)i(:)24 b(Queen)19 b(V)-5 +b(alue)344 1600 y Fh(QV)401 1606 y Fe(col)457 1600 y Fp(=)12 +b Fh(QC)564 1606 y Fe(col)616 1600 y Fp(+)e Fh(QP)718 1606 +y Fe(col)344 1700 y Fl(where)380 1750 y Fh(QC)443 1756 y Fe(col)498 +1750 y Fp(:)23 b Fl(Queen{King)14 b(Closeness)g(\(De\014niti)o(on)e(26\).)380 +1849 y Fh(QP)440 1855 y Fe(col)498 1849 y Fp(:)23 b Fl(Queen)15 +b(P)o(o)o(w)o(er)f(\(De\014niti)o(on)f(27\).)262 1976 y Fp(All)f(the)i(queen) +g(ev)n(aluation)e(criteria)i(de\014ned)g(in)f(this)h(section)g(are)f(summed)f +(in)h(order)h(to)262 2026 y(calculate)f(the)i(total)e(queen)i(v)n(alue)e(for) +h(a)f(giv)o(en)h(colour.)324 2111 y(Applying)e(these)j(queen)f(ev)n(aluation) +e(criteria)h(to)h(the)g(p)q(osition)e(in)h(\014gure)h(4.7)e(giv)o(es:)344 +2208 y Fh(QV)401 2214 y Fe(W)t(hite)533 2208 y Fp(=)i Ff(\000)p +Fp(4)c(+)f(10)i(=)h(6)344 2258 y Fh(QV)401 2264 y Fe(B)q(lack)533 +2258 y Fp(=)i Ff(\000)p Fp(10)9 b(+)h(13)h(=)h(3)957 2574 y(71)p +eop +%%Page: 72 74 +72 73 bop 262 307 a Fr(4.9)69 b(King)23 b(Ev)l(aluation)262 +434 y Fp(The)15 b(king)g(is)g(the)h(most)f(imp)q(ortan)o(t)e(piece)k(on)e +(the)h(b)q(oard.)22 b(Its)16 b(loss)g(means)e(the)i(end)g(of)262 +483 y(the)e(game.)324 569 y(In)e(the)i(op)q(ening,)e(the)h(king)f(m)o(ust)g +(seek)i(a)e(sa)o(v)o(e)h(ha)o(v)o(en)g(protected)h(b)o(y)f(its)f(o)o(wn)h(pa) +o(wns)262 618 y(and)g(pieces.)20 b(This)13 b(is)h(generally)g(b)q(est)h +(accomplished)e(b)o(y)g(castling.)324 704 y(In)j(the)h(middle)e(game,)g(the)i +(king)e(m)o(ust)h(still)f(b)q(e)i(protected)h(against)e(attac)o(k.)26 +b(This)262 753 y(protection)16 b(will)e(in)o(v)o(olv)o(e)g(a)h(strong)h(pa)o +(wn)f(structure)j(in)d(fron)o(t)h(of)e(the)j(king)d(with)i(piece)262 +803 y(co)o(v)o(er)e(for)f(an)o(y)h(w)o(eak)g(p)q(oin)o(ts.)324 +889 y(In)j(the)h(endgame,)g(unlik)o(e)e(other)j(stages)f(of)f(the)h(game,)f +(the)h(king)e(is)i(a)f(strong)h(at-)262 938 y(tac)o(king)g(piece.)33 +b(A)19 b(king)f(can)h(supp)q(ort)g(its)g(o)o(wn)f(pieces)i(and)f(pa)o(wns)g +(or)f(p)q(enetrate)j(a)262 988 y(w)o(eak)16 b(enem)o(y)f(pa)o(wn)h(structure) +j(to)d(win)f(material.)24 b(Late)16 b(activ)n(ation)f(of)h(a)g(king)f(in)h +(the)262 1038 y(endgame)e(could)h(b)q(e)g(disastrous.)23 b(Therefore,)16 +b(the)g(king)e(m)o(ust)h(b)q(e)g(suitably)g(p)q(ositioned)262 +1088 y(to)e(tak)o(e)h(adv)n(an)o(tage)f(of)g(an)o(y)h(w)o(eaknesses)i(in)d +(the)i(opp)q(osing)e(forces.)262 1239 y Fu(4.9.1)55 b(De\014nition)17 +b(29)i(:)24 b(King)19 b(On)g(Op)r(en)f(Files)344 1371 y Fh(K)s(O)414 +1377 y Fe(col)470 1371 y Fp(=)513 1339 y Fc(P)557 1350 y Fk(64)557 +1383 y Fe(sq)q Fk(=1)640 1371 y Fh(K)s(F)705 1377 y Fe(col;sq)344 +1473 y Fl(where)380 1523 y Fh(K)s(F)445 1529 y Fe(col;sq)544 +1523 y Fp(:)36 b Fl(if)13 b Fp(\(Occup)o(y\([King],col,sq\))g +Fl(and)g Fp(Has\([Ro)q(ok,Queen],Opp\(col\)\)\))651 1573 y +Fl(if)g Fp(\(Op)q(en\(OnFile\(sq\)\)\))710 1623 y Fh(K)s(F)775 +1629 y Fe(col;sq)873 1623 y Fp(=)e Ff(\000)p Fp(2)f Ff(\001)e +Fh(phase)651 1673 y Fl(else)710 1722 y(if)13 b Fp(\(SemiOp)q +(en\(Opp\(col\),OnFile\(sq\)\))710 1772 y Fl(or)h Fp(SemiOp)q +(en\(col,OnFile\(sq\)\)\))769 1822 y Fh(K)s(F)834 1828 y Fe(col;sq)932 +1822 y Fp(=)d Ff(\000)p Fh(phase)710 1872 y Fl(else)769 1922 +y Fh(K)s(F)834 1928 y Fe(col;sq)932 1922 y Fp(=)g(0)710 1971 +y Fl(endif)651 2021 y(endif)651 2071 y(if)i Fp(\(OnFile\(sq\))h(=)h(2)e +Fl(or)h Fp(3)f Fl(or)h Fp(4)f Fl(or)g Fp(8\))710 2121 y Fl(if)g +Fp(\(Op)q(en\(OnFile\(sq\))p Ff(\000)p Fp(1\)\))769 2171 y +Fh(K)s(F)834 2177 y Fe(col;sq)932 2171 y Fp(=)e Ff(\000)p Fh(phase)710 +2221 y Fl(else)769 2270 y(if)i Fp(\(SemiOp)q(en\(Opp\(col\),OnFile\(sq\))p +Ff(\000)p Fp(1\)\))828 2320 y Fh(K)s(F)893 2326 y Fe(col;sq)991 +2320 y Fp(=)e Ff(\000)p Fh(phase=)p Fp(2)769 2370 y Fl(endif)710 +2420 y(endif)957 2574 y Fp(72)p eop +%%Page: 73 75 +73 74 bop 651 307 a Fl(else)710 357 y(if)13 b Fp(\(Op)q +(en\(OnFile\(sq\)+1\)\))769 407 y Fh(K)s(F)834 413 y Fe(col;sq)932 +407 y Fp(=)e Ff(\000)p Fh(phase)710 457 y Fl(else)769 506 y(if)i +Fp(\(SemiOp)q(en\(Opp\(col\),OnFile\(sq\)+1\)\))828 556 y Fh(K)s(F)893 +562 y Fe(col;sq)991 556 y Fp(=)e Ff(\000)p Fh(phase=)p Fp(2)769 +606 y Fl(endif)710 656 y(endif)651 706 y(endif)592 756 y(else)651 +805 y Fh(K)s(F)716 811 y Fe(col;sq)813 805 y Fp(=)h(0)592 855 +y Fl(endif)262 982 y Fp(The)k(king)f(is)g(p)q(enalised)h(for)g(b)q(eing)g(on) +f(either)i(an)e(op)q(en)h(or)g(semi{op)q(en)f(\014le.)24 b(It)16 +b(is)f(also)262 1032 y(p)q(enalised)e(for)f(b)q(eing)h(adjacen)o(t)g(to)g(an) +g(op)q(en)g(or)g(semi{op)q(en)f(\014le)h(under)h(t)o(w)o(o)e(conditions:)312 +1150 y(1.)20 b(The)d(king)e(is)g Fl(not)g Fp(on)h(either)h(the)f('A')f(or)h +('H')f(\014les)h(and)g(the)g(op)q(en)h(\014le)f(is)f(on)h(the)365 +1200 y(adjacen)o(t)e(\014le)g(nearest)i(the)e(edge)h(of)e(the)h(b)q(oard.)312 +1283 y(2.)20 b(The)15 b(king)e(is)g(on)h(either)h(the)f('A')f(or)h('H')f +(\014les)i(and)e(the)i(op)q(en)f(\014le)g(is)g(adjacen)o(t.)262 +1401 y(Note)g(these)h(p)q(enalties)g(are)f(only)f(imp)q(osed)g(if)g(the)i +(opp)q(onen)o(t)f(has)g(the)g(necessary)i(pieces)262 1451 y(to)d(tak)o(e)h +(adv)n(an)o(tage)f(of)g(the)i(w)o(eakness.)262 1603 y Fu(4.9.2)55 +b(De\014nition)17 b(30)i(:)24 b(W)-5 b(eak)19 b(Squares)f(around)h(King)262 +1715 y Fp(Con)o(trol)10 b(m)o(ust)h(b)q(e)h(held)g(o)o(v)o(er)g(the)g(w)o +(eak)f(squares)i(around)f(the)g(king.)k(By)c(w)o(eak)g(squares)h(I)262 +1765 y(mean)e(those)j(squares)g(not)f(co)o(v)o(ered)h(b)o(y)f(friendly)g(pa)o +(wns)g(whic)o(h)g(are)g(therefore,)h(p)q(ossible)262 1815 y(pa)o(wn)e(holes.) +18 b(These)d(pa)o(wn)d(holes)i(are)f(ideal)g(w)o(eak)g(p)q(oin)o(ts)g(for)f +(the)i(opp)q(onen)o(t)g(to)f(attac)o(k)262 1864 y(and)g(o)q(ccup)o(y)m(.)344 +1985 y Fh(W)6 b(S)414 1991 y Fe(col)470 1985 y Fp(=)12 b Fh(W)6 +b(K)594 1992 y Fe(col;C)r(entr)q(alP)t(oint)p Fk(\()p Fe(K)r(ing)q(S)r(q)q +Fk(\()p Fe(col)p Fk(\)\))344 2085 y Fl(where)380 2140 y Fh(W)g(K)460 +2146 y Fe(col;csq)574 2140 y Fp(:)616 2108 y Fc(P)660 2119 +y Fk(64)660 2152 y Fe(sq)q Fk(=1)746 2140 y Fl(if)12 b Fp +(\(Distance\(sq,csq\))k Ff(\024)e Fp(1)f Fl(and)746 2193 y(not)g +Fp(\(A)o(ttac)o(k)o(ed\([P)o(a)o(wn],col,sq\))f Fl(or)i Fp(Occup)o(y\([P)o(a) +o(wn],col,sq\)\)\))805 2242 y Fh(C)s(O)870 2248 y Fe(col;sq)964 +2242 y Fp(+)c Fh(O)q(C)1069 2248 y Fe(col;sq)1163 2242 y Fp(+)g +Fh(F)c(B)1269 2248 y Fe(col;sq)1363 2242 y Fp(+)k Fh(E)r(B)1469 +2248 y Fe(col;sq)746 2292 y Fl(else)805 2342 y Fp(0)746 2392 +y Fl(endif)957 2574 y Fp(73)p eop +%%Page: 74 76 +74 75 bop 380 307 a Fh(C)s(O)445 313 y Fe(col;sq)544 307 y +Fp(:)60 b Fl(if)13 b Fp(\(Con)o(trol\(sq\))g(=)i(col\))675 +357 y Ff(\000)p Fp(1)616 407 y Fl(else)675 457 y Ff(\000)p +Fp(4)616 506 y Fl(endif)380 606 y Fh(O)q(C)443 612 y Fe(col;sq)542 +606 y Fp(:)62 b Fl(if)13 b Fp(\(Occup)o(y\([An)o(y],Opp\(col\),sq\)\))675 +656 y Ff(\000)p Fp(8)616 706 y Fl(else)675 756 y Fp(0)616 805 +y Fl(endif)380 905 y Fh(F)6 b(B)444 911 y Fe(col;sq)543 905 +y Fp(:)61 b Fl(if)13 b Fp(\(A)o(ttac)o(k)o(ed\([Bishop],col,sq\)\))675 +955 y(6)616 1005 y Fl(else)675 1054 y(if)g Fp(\(Occup)o +(y\([Bishop],col,sq\)\))746 1104 y(16)675 1154 y Fl(else)746 +1204 y Fp(0)675 1254 y Fl(endif)616 1303 y(endif)380 1403 y +Fh(E)r(B)444 1409 y Fe(col;sq)544 1403 y Fp(:)60 b Fl(if)13 +b Fp(\(A)o(ttac)o(k)o(ed\([Bishop,Queen],Opp\(col\),sq\)\))675 +1453 y Ff(\000)p Fp(6)616 1503 y Fl(else)675 1553 y Fp(0)616 +1602 y Fl(endif)262 1721 y Fp(Squares)i(on)f(or)h(adjacen)o(t)f(to)h(the)g +(cen)o(tral)g(p)q(oin)o(t)f(of)f(the)j(king's)d(defensiv)o(e)i(p)q(osition)f +(are)262 1771 y(p)q(enalised)e(for)f(b)q(eing)h(w)o(eak)g(if)f(they)h(are)h +(not)e(o)q(ccupied)i(or)f(attac)o(k)o(ed)g(b)o(y)g(friendly)f(pa)o(wns.)262 +1820 y(Squares)k(are)h(quite)f(hea)o(vily)e(p)q(enalised)j(for)e(not)h(b)q +(eing)g(con)o(trolled)g(b)o(y)f(friendly)h(pieces.)262 1870 +y(Additionally)m(,)9 b(an)k(o)q(ccupied)g(w)o(eak)g(square)g(is)g(hea)o(vily) +e(p)q(enalised.)18 b(A)13 b(b)q(on)o(us)g(is)f(receiv)o(ed)262 +1920 y(if)f(a)i(friendly)f(bishop)h(attac)o(ks)g(the)g(w)o(eak)g(square)g(or) +g(o)q(ccupies)h(the)f(actual)g(square)g(itself.)262 1970 y(A)i(p)q(enalt)o(y) +h(is)f(levied)h(if)f(the)h(opp)q(onen)o(t)g(has)f(a)h(bishop)f(or)h(queen)g +(whic)o(h)g(can)g(in\014ltrate)262 2020 y(the)e(w)o(eak)g(square.)324 +2105 y(These)19 b(criteria)f(will)f(encourage)i(the)f(program)e(to)i(force)h +(w)o(eak)f(squares)h(near)f(the)262 2155 y(opp)q(onen)o(ts)12 +b(king)f(and)g(realise)h(whic)o(h)f(of)g(its)h(pieces)g(are)g(therefore)h +(made)e(more)f(v)n(aluable.)262 2205 y(It)16 b(will)e(also)i(encourage)h +(vital)e(o)q(ccupation)h(and)g(blo)q(c)o(k)n(ade)g(of)f(these)j(w)o(eak)e(p)q +(oin)o(ts.)25 b(Of)262 2254 y(course,)20 b(the)f(program)e(will)g(b)q(e)i +(discouraged)g(from)e(allo)o(wing)f(suc)o(h)k(w)o(eak)e(squares)i(to)262 +2304 y(dev)o(elop)14 b(near)i(its)e(o)o(wn)h(king.)20 b(Ev)o(en)15 +b(if)f(it)g(is)h(forced)g(to)g(accept)h(some)e(w)o(eak)g(squares,)i(it)262 +2354 y(will)9 b(activ)o(ely)i(seek)i(to)e(exc)o(hange)h(the)g(opp)q(onen)o +(ts)g(most)e(dangerous)i(pieces)g(with)f(resp)q(ect)262 2404 +y(to)i(those)i(w)o(eaknesses.)957 2574 y(74)p eop +%%Page: 75 77 +75 76 bop 262 307 a Fu(4.9.3)55 b(De\014nition)17 b(31)i(:)24 +b(Mating)19 b(Net)262 419 y Fp(The)g(kings)f(p)q(osition)g(should)g(alw)o(a)o +(ys)f(b)q(e)j(c)o(hec)o(k)o(ed)f(to)g(see)h(if)d(a)i(mating)d(net)j(is)g(b)q +(eing)262 469 y(formed)e(around)h(it.)31 b(The)19 b(building)e(of)g(suc)o(h)j +(a)e(mating)e(net)j(around)f(the)h(opp)q(onen)o(ts)262 519 +y(king)d(is)i(to)f(b)q(e)h(encouraged.)30 b(It)17 b(will,)g(ho)o(w)o(ev)o +(er,)h(b)q(e)g(discouraged)g(from)e(allo)o(wing)f(the)262 569 +y(opp)q(onen)o(t)f(to)f(ac)o(hiev)o(e)i(similar)c(aims.)344 +666 y Fh(M)5 b(N)422 672 y Fe(col)478 666 y Fp(=)12 b Fh(N)5 +b(T)584 672 y Fe(col)344 766 y Fl(where)380 816 y Fh(N)g(T)442 +822 y Fe(col)500 816 y Fp(:)33 b(W)m(eakSqs)13 b(=)i(0)545 +865 y Fh(N)5 b(T)607 871 y Fe(col)663 865 y Fp(=)11 b(0)545 +915 y Fl(for)k(eac)o(h)g(square)f Fp(sq)g Fl(do)604 965 y(if)f +Fp(\(Distance\(KingSq\(col\),sq\))h(=)g(1\))663 1015 y(di\013)g(=)g +Fh(])p Fp(Di\013A)o(ttac)o(ks\(Opp\(col\),sq\))663 1065 y Fl(if)f +Fp(\(Con)o(trol\(sq\))h(=)g(Opp\(col\))g Fl(or)f Fp(di\013)h +Fh(>)g Fp(0\))722 1114 y(W)m(eakSqs)g(=)g(W)m(eakSqs)f(+)h(1)722 +1164 y Fl(if)f Fp(\()p Fh(])p Fp(A)o(ttac)o(ks\([An)o(y],Opp\(col\),sq\))h +Fh(>)g Fp(1\))781 1214 y Fh(N)814 1220 y Fe(col)870 1214 y +Fp(=)e Fh(N)947 1220 y Fe(col)1000 1214 y Ff(\000)e Fp(4)f +Ff(\001)g Fh(dif)t(f)14 b Ff(\000)c Fp(2)722 1264 y Fl(endif)663 +1314 y(endif)604 1363 y(endif)545 1413 y(endfor)545 1463 y(if)j +Fp(\(KingSq\(col\))g(=)h(a8)g Fl(or)f Fp(h8)h Fl(or)f Fp(a1)g +Fl(or)h Fp(h1\))604 1513 y(W)m(eakSqs)g(=)g(W)m(eakSqs)f(+)h(1)545 +1563 y Fl(endif)545 1613 y Fh(N)578 1619 y Fe(col)634 1613 +y Fp(=)e Fh(N)711 1619 y Fe(col)764 1613 y Ff(\000)e Fh(T)830 +1619 y Fe(W)t(eak)q(S)r(q)q(s)380 1712 y Fh(T)404 1718 y Fe(c)435 +1712 y Fp(:)98 b([0,)13 b(8,)g(20,)g(36,)g(56,)f(80,)h(108,)g(140,)g(180])604 +1762 y(Indexed)i(b)o(y)f(w)o(eak)f(square)i(coun)o(t)f(c)g(\(0)g(to)g(8\))262 +1880 y(An)o(y)f(squares)i(adjacen)o(t)f(to)g(the)g(king)f(are)h(p)q(enalised) +h(for)e(lac)o(k)g(of)h(con)o(trol.)j(P)o(articularly)262 1930 +y(if)c(the)h(opp)q(onen)o(t)g(has)g(t)o(w)o(o)g(or)g(more)e(pieces)k(in)o +(terw)o(orking)d(against)g(the)i(square.)324 2015 y(Notice)d(the)f(p)q(enalt) +o(y)h(for)f(the)h(n)o(um)o(b)q(er)e(of)h(w)o(eak)g(squares)i(whic)o(h)e(ma)o +(y)e(form)h(a)h(mating)262 2065 y(net)16 b(rises)g(dramatically)m(,)d(the)j +(larger)g(the)g(n)o(um)o(b)q(er)f(of)g(suc)o(h)h(squares.)25 +b(The)16 b(king)e(is)i(ad-)262 2115 y(ditionally)11 b(p)q(enalised)k(for)e(b) +q(eing)h(on)g(a)f(corner)i(square.)k(This)14 b(is)g(b)q(ecause)i(the)e(p)q +(oten)o(tial)262 2165 y(n)o(um)o(b)q(er)c(of)g(escap)q(e)j(squares)f(for)e +(the)i(king)e(from)f(a)i(corner)h(square)g(are)f(sev)o(erely)h(reduced.)262 +2215 y(This)i(w)o(ould)h(not)f(b)q(e)i(pic)o(k)o(ed)f(up)g(b)o(y)g(the)g +(general)h(w)o(eak)e(square)i(coun)o(t)f(previously)g(cal-)262 +2265 y(culated.)j(Therefore)d(an)f(adjustmen)o(t)f(is)h(made)e(to)i(allo)o(w) +e(for)i(this)g(p)q(ossibilit)o(y)m(.)957 2574 y(75)p eop +%%Page: 76 78 +76 77 bop 262 307 a Fu(4.9.4)55 b(De\014nition)17 b(32)i(:)24 +b(Chec)n(k)19 b(Threats)262 419 y Fp(The)c(kings)g(p)q(osition)f(m)o(ust)g(b) +q(e)i(monitored)e(and)h(the)g(p)q(oten)o(tial)g(threats)h(of)f(an)o(y)f(c)o +(hec)o(ks)262 469 y(assessed.)19 b(Chec)o(k)13 b(mo)o(v)o(es)d(can)i(b)q(e)h +(v)o(ery)f(e\013ectiv)o(e;)h(the)g(v)n(alue)e(of)g(whic)o(h)h(can)g(b)q(e)h +(an)o(ything)262 519 y(from)d(a)i(gain)f(in)h(temp)q(o)g(to)g(c)o(hec)o +(kmate)g(itself.)17 b(Of)c(course)g(some)f(c)o(hec)o(k)h(mo)o(v)o(es)e(ma)o +(y)f(also)262 569 y(b)q(e)i(inferior)f(for)h(the)g(side)g(giving)f(the)h(c)o +(hec)o(k,)h(p)q(ossibly)e(resulting)h(in)g(the)g(loss)g(of)f(a)g(temp)q(o)262 +618 y(or)i(w)o(orse)i(still)e(the)h(c)o(hec)o(king)h(piece.)j(A)c(w)o(ell)g +(kno)o(wn)f(c)o(hess)i(sa)o(ying)e(states:)365 737 y("P)o(atzer)i(sees)h(c)o +(hec)o(k;)e(P)o(atzer)h(giv)o(es)f(c)o(hec)o(k.")262 855 y(Indicating)i(that) +h(it)g(is)g(not)g(alw)o(a)o(ys)g(wise)g(to)g(put)h(y)o(our)f(opp)q(onen)o(t)g +(in)g(c)o(hec)o(k.)29 b(In)17 b(fact,)262 905 y(often)f(the)h(threat)g(is)f +(stronger)i(than)e(the)h(execution.)27 b(This)16 b(criterion)h(m)o(ust)e +(therefore)262 955 y(determine)d(the)i(relativ)o(e)f(merits)f(of)g(eac)o(h)i +(c)o(hec)o(k)g(threat)f(and)g(decide)h(what)f(p)q(enalties)g(\(if)262 +1005 y(an)o(y\))g(to)h(assign.)344 1138 y Fh(C)s(T)401 1144 +y Fe(col)457 1138 y Fp(=)d Fh(T)6 b(S)555 1145 y Fe(col;K)r(ing)q(S)r(q)q +Fk(\()p Fe(col)p Fk(\))344 1237 y Fl(where)380 1287 y Fh(T)g(S)435 +1293 y Fe(col;k)q(sq)553 1287 y Fp(:)t(TChec)o(k)14 b(=)g(0)569 +1337 y Fh(T)6 b(S)624 1343 y Fe(col)680 1337 y Fp(=)11 b(0)569 +1387 y Fl(for)k(eac)o(h)g(square)e Fp(sq)h Fl(do)628 1437 y(for)h(eac)o(h)g +(square)e Fp(sq1)h Fl(do)687 1486 y(if)e Fp(\(P)o(oten)o(tialChec)o +(k\(Opp\(col\),sq,sq1\)\))746 1536 y Fl(if)g Fp(\()p Fh(])p +Fp(Di\013A)o(ttac)o(ks\(Opp\(col\),sq1\))j Fh(>)f Fp(0\))805 +1586 y(TChec)o(k)g(=)g(TChec)o(k)h(+)f(1)805 1636 y Fl(if)f +Fp(\()p Fh(])p Fp(SafeBlo)q(c)o(ks\(col,ksq,sq1\))g(=)h(0\))864 +1686 y Fl(if)28 b Fp(\()p Fl(not)13 b Fp(Escap)q(e\(col,sq,sq1\)\))923 +1735 y Fh(M)5 b(ateT)h(hr)q(eat)1154 1741 y Fe(col)1210 1735 +y Fp(=)14 b(true)923 1785 y Fh(T)6 b(S)978 1791 y Fe(col)1034 +1785 y Fp(=)12 b Fh(T)6 b(S)1133 1791 y Fe(col)1186 1785 y +Ff(\000)k Fp(128)864 1835 y Fl(else)923 1885 y Fh(T)c(S)978 +1891 y Fe(col)1034 1885 y Fp(=)12 b Fh(T)6 b(S)1133 1891 y +Fe(col)1186 1885 y Ff(\000)k Fp(16)864 1935 y Fl(endif)805 +1984 y(else)864 2034 y Fh(T)c(S)919 2040 y Fe(col)975 2034 +y Fp(=)12 b Fh(T)6 b(S)1074 2040 y Fe(col)1127 2034 y Ff(\000)k +Fp(\(6)f Ff(\000)g Fh(]S)r(af)t(eB)r(l)q(ock)q(s)q Fp(\()p +Fh(col)q(;)e(k)q(sq)q(;)g(sq)q Fp(1\)\))805 2084 y Fl(endif)746 +2134 y(else)805 2184 y Fh(T)f(S)860 2190 y Fe(col)916 2184 +y Fp(=)12 b Fh(T)6 b(S)1015 2190 y Fe(col)1068 2184 y Ff(\000)k +Fp(2)746 2234 y Fl(endif)687 2283 y(endif)628 2333 y(endfor)569 +2383 y(endfor)569 2433 y Fh(T)c(S)624 2439 y Fe(col)680 2433 +y Fp(=)11 b Fh(T)6 b(S)778 2439 y Fe(col)832 2433 y Ff(\000)k +Fh(K)s(T)936 2439 y Fe(T)t(C)r(heck)957 2574 y Fp(76)p eop +%%Page: 77 79 +77 78 bop 380 357 a Fh(K)s(T)442 363 y Fe(n)479 357 y Fp(:)78 +b([0,14,30,4)o(8,7)o(0,8)o(6,1)o(00,)o(110,)o(120)o(,120)o(,12)o(0,1)o(20,)o +(120,)o(120)o(,120)o(,12)o(0])628 407 y(Indexed)14 b(b)o(y)g(n)o(um)o(b)q(er) +f(of)h(lik)o(ely)e(c)o(hec)o(ks)j(n)f(\(0)g(to)g(15\).)262 +525 y(P)o(enalties)20 b(are)h(giv)o(en)f(for)g(p)q(oten)o(tial)g(c)o(hec)o +(ks)i(if)e(the)h(side)f(giving)f(c)o(hec)o(k)j(has)f(enough)262 +575 y(con)o(trol)16 b(o)o(v)o(er)g(the)h(c)o(hec)o(king)g(square.)27 +b(Chec)o(ks)17 b(are)g(considered)h(more)d(serious)j(if)d(there)262 +625 y(are)i(no)f(safe)h(blo)q(c)o(king)e(mo)o(v)o(es)h(a)o(v)n(ailable)e(for) +j(the)g(defender.)27 b(In)17 b(fact,)g(if)f(there)i(is)e(also)262 +675 y(no)f(escap)q(e)i(square)f(for)f(the)h(c)o(hec)o(k)o(ed)h(king,)e(the)h +(situation)f(is)g(considered)i(v)o(ery)f(serious)262 725 y(indeed.)h(The)12 +b Fm(MateThr)n(e)n(at)e Fp(predicate)i(is)f(set)h(to)f(indicate)g(the)h(sev)o +(erit)o(y)g(of)e(the)i(situation.)262 774 y(Hence,)18 b(increasing)f(the)g(n) +o(um)o(b)q(er)g(of)f(safe)h(blo)q(c)o(ks)g(is)f(rew)o(arded)i(as)f(is)g +(creating)g(escap)q(e)262 824 y(squares)e(for)e(the)i(threatened)g(king.)324 +909 y(These)e(criteria,)f(therefore,)i(encourage)f(the)g(program)d(to)i(main) +o(tain)d(a)j(king)f(p)q(osition)262 959 y(free)g(from)e(c)o(hec)o(ks)k(and)e +(to)f(pro)o(vide)h(enough)g(p)q(oten)o(tial)g(piece)g(co)o(v)o(er)h(to)f +(parry)g(an)o(y)f(c)o(hec)o(ks)262 1009 y(receiv)o(ed.)262 +1161 y Fu(4.9.5)55 b(De\014nition)17 b(33)i(:)24 b(King)19 +b(T)-5 b(able)344 1256 y Fh(K)s(T)406 1262 y Fe(col)462 1256 +y Fp(=)506 1225 y Fc(P)550 1236 y Fk(64)550 1269 y Fe(sq)q +Fk(=1)675 1256 y Fl(if)13 b Fp(\(Occup)o(y\([King],col,sq\)\))734 +1309 y Fh(K)s(S)r(T)823 1315 y Fe(col;sq)675 1359 y Fl(else)734 +1409 y Fp(0)675 1459 y Fl(endif)344 1558 y(where)380 1608 y +Fh(K)s(S)r(T)469 1614 y Fe(col;sq)570 1608 y Fp(:)34 b(King)13 +b(Square)i(T)m(able.)i(Initialised)c(b)q(efore)h(eac)o(h)h(searc)o(h.)616 +1658 y(See)g(planning)d(section)j(4.11.6)d(for)h(details.)262 +1785 y(A)k(static)g(king)g(square)h(table)f(will)f(b)q(e)i(used)g(to)f(store) +h(the)g(v)n(alues)f(of)f(eac)o(h)i(square)g(for)262 1835 y(ha)o(ving)e(a)i +(king)f(o)q(ccup)o(y)h(that)g(square.)31 b(This)17 b(enables)i(kno)o(wledge)e +(calculated)h(at)g(the)262 1884 y(ro)q(ot)c(to)h(b)q(e)g(e\016cien)o(tly)g +(applied)f(at)g(leaf)g(no)q(des.)22 b(The)15 b(table)f(will)g(b)q(e)h +(calculated)g(b)q(efore)262 1934 y(commencemen)o(t)c(of)j(the)g(searc)o(h)h +(in)e(an)h(initial)e(planning)h(phase.)262 2086 y Fu(4.9.6)55 +b(De\014nition)17 b(34)i(:)24 b(King)19 b(V)-5 b(alue)344 2177 +y Fh(K)s(V)406 2183 y Fe(col)462 2177 y Fp(=)12 b(\()p Fh(K)s(O)592 +2183 y Fe(col)645 2177 y Fp(+)e Fh(W)c(S)757 2183 y Fe(col)810 +2177 y Fp(+)k Fh(M)5 b(N)930 2183 y Fe(col)983 2177 y Fp(+)10 +b Fh(C)s(T)1082 2183 y Fe(col)1126 2177 y Fp(\))f Ff(\001)g +Fh(phase=)p Fp(16)g(+)g Fh(K)s(T)1452 2183 y Fe(col)344 2277 +y Fl(where)380 2326 y Fh(K)s(O)450 2332 y Fe(col)510 2326 y +Fp(:)23 b Fl(King)15 b(On)g(Op)q(en)g(Files)f(\(De\014nition)e(29\).)380 +2426 y Fh(W)6 b(S)450 2432 y Fe(col)510 2426 y Fp(:)23 b Fl(W)l(eak)17 +b(Squares)d(around)g(King)h(\(De\014nition)d(30\).)957 2574 +y Fp(77)p eop +%%Page: 78 80 +78 79 bop 380 357 a Fh(M)5 b(N)458 363 y Fe(col)510 357 y Fp(:)23 +b Fl(Mating)15 b(Net)g(\(De\014nitio)o(n)e(31\).)380 457 y +Fh(C)s(T)437 463 y Fe(col)510 457 y Fp(:)23 b Fl(Chec)o(k)16 +b(Threats)f(\(De\014niti)o(on)d(32\).)380 556 y Fh(K)s(T)442 +562 y Fe(col)510 556 y Fp(:)23 b Fl(King)15 b(T)l(able)g(\(De\014niti)o(on)d +(33\).)262 683 y Fp(All)i(the)i(king)f(ev)n(aluation)f(criteria)i(de\014ned)g +(in)f(this)h(section)g(are)g(summed)e(in)h(order)h(to)262 733 +y(calculate)11 b(the)h(total)f(king)g(v)n(alue)g(for)g(a)g(giv)o(en)g +(colour.)17 b(The)12 b(v)n(alues)g(are)g(further)g(adjusted)262 +783 y(b)o(y)i(the)h(game)e(phase)i(to)f(tak)o(e)h(accoun)o(t)g(of)f(a)g +(kings)g(more)g(activ)o(e)g(role)h(as)f(the)i(endgame)262 832 +y(approac)o(hes.)25 b(Therefore,)17 b(the)g(\014rst)f(four)g(features,)h +(whic)o(h)f(are)h(essen)o(tially)f(concerned)262 882 y(with)f(king)f(safet)o +(y)m(,)h(are)h(reduced)h(in)e(imp)q(ortance)g(as)h(the)g(game)e(progresses.) +24 b(The)16 b(king)262 932 y(table,)g(whic)o(h)g(already)g(has)h(information) +c(relativ)o(e)j(to)h(the)g(kings)f(latest)g(role,)h(will)e(not)262 +982 y(b)q(e)f(adjusted)g(in)g(this)g(w)o(a)o(y)m(.)p 641 1075 +673 5 v 641 1740 5 665 v 646 1158 a Fg(0Z0s0ZkZ)646 1241 y(Z0Z0ZrZp)646 +1324 y(pZpZQZpZ)646 1408 y(Z0o0A0ZP)646 1491 y(0ZNoPZ0Z)646 +1574 y(ZPl0S0Z0)646 1657 y(PZPZ0a0O)646 1740 y(Z0ZRZ0ZK)p 1310 +1740 V 641 1744 673 5 v 336 1862 a Fp(Figure)g(4.8:)j Fl(Capablance)e(v)h +(Marshall)p Fp(,)c(New)i(Y)m(ork,)f(1909,)f(Blac)o(k)i(to)g(pla)o(y)m(.)324 +1981 y(Applying)f(these)i(king)e(ev)n(aluation)g(criteria)h(to)g(the)g(p)q +(osition)f(in)h(\014gure)g(4.8)f(giv)o(es:)344 2078 y Fh(K)s(V)406 +2084 y Fe(W)t(hite)533 2078 y Fp(=)h(\()p Ff(\000)p Fp(11)9 +b Ff(\000)h Fp(27)f Ff(\000)g Fp(20)g Ff(\000)g Fp(2\))h Ff(\001)e +Fp(11)p Fh(=)p Fp(16)g Ff(\000)i Fp(1)h(=)h Ff(\000)p Fp(42)344 +2128 y Fh(K)s(V)406 2134 y Fe(B)q(lack)533 2128 y Fp(=)i(\()p +Ff(\000)p Fp(5)c Ff(\000)f Fp(43)g Ff(\000)g Fp(36)g Ff(\000)h +Fp(34\))f Ff(\001)f Fp(11)p Fh(=)p Fp(16)g(+)i(0)h(=)h Ff(\000)p +Fp(81)957 2574 y(78)p eop +%%Page: 79 81 +79 80 bop 262 307 a Fr(4.10)69 b(Static)22 b(T)-6 b(actical)21 +b(Ev)l(aluation)262 434 y Fp(The)11 b(follo)o(wing)d(criteria)k(attempt)e(to) +h(ev)n(aluate)g(tactical)f(asp)q(ects)j(statically)d(from)f(within)262 +483 y(the)h(ev)n(aluation)f(function)h(itself.)17 b(The)11 +b(ob)r(jectiv)o(e)g(of)e(these)j(criteria)f(is)f(to)g(deriv)o(e)h(an)f(accu-) +262 533 y(rate)g(v)n(alue)g(where)h(p)q(ossible,)f(and)g(where)h(uncertain)o +(t)o(y)g(exists)g(to)f(giv)o(e)f(an)h(estimate)g(of)f(the)262 +583 y(lik)o(ely)j(v)n(alue)h(and)h(recommend)e(a)i(deep)q(er)h(searc)o(h)g +(to)f(resolv)o(e)g(the)h(tactical)e(uncertain)o(t)o(y)m(.)262 +633 y(This)g(requires)i(the)g(criteria)f(to)g(detect)h(when)g(a)e(p)q +(osition)h(is)f(tactically)g(activ)o(e.)262 784 y Fu(4.10.1)55 +b(De\014nition)17 b(35)i(:)25 b(Pinned)18 b(Pieces)262 896 +y Fp(A)d(pin)g(exists)i(if)d(a)i(piece)g(exerts)h(a)e(hidden)h(\(X-ra)o(y\))g +(attac)o(k)f(through)h(an)f(enem)o(y)g(piece)262 946 y(on)o(to)g(another)i +(enem)o(y)e(piece)i(whic)o(h)f(is)g(either)g(undefended)i(or)e(of)f(greater)i +(v)n(alue)f(than)262 996 y(the)e(pinning)f(piece.)324 1081 +y(A)j(pin)g(sev)o(erely)i(restricts)g(the)f(mo)o(v)o(emen)o(t)d(of)i(the)h +(enem)o(y)f(pieces)i(in)o(v)o(olv)o(ed)d(in)h(the)262 1131 +y(pin.)34 b(A)20 b(pin)f(against)f(the)j(king)d(is)i(the)g(most)e(restrictiv) +o(e)j(t)o(yp)q(e)f(of)f(pin)g(b)q(ecause)i(the)262 1181 y(mo)o(v)o(emen)o(t) +14 b(of)i(the)i(pinned)f(piece)h(is)f(illegal)e(in)h(all)g(but)h(the)h(pin)f +(direction)g(and)g(an)o(ti{)262 1231 y(direction.)25 b(Therefore,)18 +b(a)e(pinned)h(piece's)g(defensiv)o(e)h(and)e(attac)o(king)g(capabilities)f +(are)262 1281 y(either)f(sev)o(erely)h(diminished)d(or)i(completely)f(lost.) +344 1378 y Fh(P)6 b(N)410 1384 y Fe(col)465 1378 y Fp(=)12 +b Fh(P)6 b(S)567 1384 y Fe(col)344 1478 y Fl(where)380 1527 +y Fh(P)g(S)438 1533 y Fe(col)495 1527 y Fp(:)14 b Fh(P)6 b(S)579 +1533 y Fe(col)635 1527 y Fp(=)12 b(0)521 1577 y Fl(for)j(eac)o(h)h(square)d +Fp(sq)h Fl(do)580 1627 y(for)h(eac)o(h)h(square)d Fp(sq1)h +Fl(do)639 1677 y(for)h(eac)o(h)h(square)d Fp(sq2)h Fl(do)699 +1727 y(if)e Fp(\(Pin\(col,sq,sq1,sq2\)\))758 1777 y Fl(if)g +Fp(\(V)m(alue\(sq2\))i Fh(>)g Fp(V)m(alue\(sq\))758 1826 y +Fl(or)h(not)e Fp(A)o(ttac)o(k)o(ed\([An)o(y],Opp\(col\),sq2\)\))817 +1876 y Fh(P)6 b(S)875 1882 y Fe(col)932 1876 y Fp(=)14 b(V)m(alue\(sq2\))g(+) +g(V)m(alue\(sq1\))g Ff(\000)g Fp(V)m(alue\(sq\))g(+)g(10)817 +1926 y Fl(if)e Fp(\(A)o(ttac)o(k)o(ed\([An)o(y)j Fh(<)f Fp +(On\(sq1\)],col,sq1\))817 1976 y Fl(or)h(not)e Fp(A)o(ttac)o(k)o(ed\([An)o +(y],Opp\(col\),sq1\))817 2026 y Fl(or)g Fp(\()p Fh(])p Fp(Di\013A)o(ttac)o +(ks\(col,sq1\))h Ff(\025)g Fp(0)f Fl(and)h Fp(Con)o(trol\(sq1\))f(=)h +(col\)\))876 2075 y Fh(T)6 b(hr)q(eat)1006 2081 y Fe(col)1061 +2075 y Fp(=)12 b Fh(T)6 b(hr)q(eat)1235 2081 y Fe(col)1288 +2075 y Fp(+)k(1)876 2125 y Fh(P)c(S)934 2131 y Fe(col)989 2125 +y Fp(=)12 b Fh(P)6 b(S)1091 2131 y Fe(col)1144 2125 y Fp(+)j +Fh(r)q(ev)q(P)d(hase)817 2175 y Fl(endif)758 2225 y(endif)699 +2275 y(endif)639 2324 y(endfor)580 2374 y(endfor)521 2424 y(endfor)957 +2574 y Fp(79)p eop +%%Page: 80 82 +80 81 bop 262 307 a Fp(It)11 b(is)f(imp)q(ortan)o(t)g(to)g(b)q(e)i(able)f(to) +f(iden)o(tify)h(and)f(assess)j(the)e(v)n(alue)g(of)f(pins.)17 +b(This)11 b(de\014nition)262 357 y(giv)o(es)20 b(a)f(b)q(on)o(us)i(for)f +(pinning)f(an)h(opp)q(onen)o(ts)h(piece.)38 b(Pins)20 b(are)h(tactically)e +(complex.)262 407 y(Therefore,)12 b(this)f(criterion)h(attempts)f(to)g +(assess)h(those)g(asp)q(ects)h(whic)o(h)e(can)h(b)q(e)g(statically)262 +457 y(v)n(alued.)22 b(If)15 b(the)h(criterion)g(assesses)i(the)e(pin)f(as)h +(a)f(tactically)g(dynamic)f(threat,)i(then)g(a)262 506 y(tactical)11 +b(coun)o(t)h(indicating)f(the)h(uncertain)o(t)o(y)h(of)e(the)h(static)h(ev)n +(aluation)d(is)i(incremen)o(ted.)262 556 y(Basically)m(,)i(this)i(indicates)g +(that)g(although)e(a)i(static)g(v)n(alue)f(is)h(calculated,)g(the)g(tactical) +262 606 y(uncertain)o(t)o(y)f(should)g(b)q(e)h(resolv)o(ed)g(b)o(y)f +(extending)h(the)g(searc)o(h)h(un)o(til)d(a)h(more)f(quiescen)o(t)262 +656 y(p)q(osition)f(is)g(reac)o(hed.)20 b(See)15 b(c)o(hapter)f(5)g(for)g +(more)e(details.)324 741 y(The)21 b(ev)n(aluation)e(function)h(do)q(es)h(not) +g(kno)o(w)f(whether)i(a)e(deep)q(er)i(searc)o(h)g(will)d(b)q(e)262 +791 y(successful)c(in)e(\014nding)g(a)g(quiescen)o(t)i(p)q(osition)e(or)g(ev) +o(en)i(has)e(enough)h(time)e(to)i(undertak)o(e)262 841 y(suc)o(h)g(a)g(task.) +19 b(Therefore,)c(a)e(v)n(alue)h(indicating)f(its)h(liking)e(for)i(the)g +(tactical)g(uncertain)o(t)o(y)262 891 y(is)f(included)h(in)g(the)g(o)o(v)o +(erall)f(static)h(v)n(alue.)p 641 984 673 5 v 641 1648 5 665 +v 646 1067 a Fg(0Z0Z0Zrs)646 1150 y(oQZ0Z0Z0)646 1233 y(0ZRZbj0Z)646 +1316 y(Z0ZqZ0Z0)646 1399 y(0Z0O0m0Z)646 1482 y(Z0Z0ZNZ0)646 +1565 y(PZ0Z0OPO)646 1648 y(Z0Z0S0J0)p 1310 1648 V 641 1652 +673 5 v 384 1771 a Fp(Figure)g(4.9:)j Fl(Dy)o(atlo)o(v)d(v)i(Shashin)p +Fp(,)11 b(Leningrad,)i(1962,)g(Blac)o(k)g(to)h(pla)o(y)m(.)324 +1889 y(Applying)e(the)i(Pinned)f(Pieces)i(ev)n(aluation)d(criteria)i(to)f +(the)h(ab)q(o)o(v)o(e)f(p)q(osition)f(giv)o(es:)344 1987 y +Fh(P)6 b(N)410 1993 y Fe(W)t(hite)533 1987 y Fp(=)14 b(22)344 +2037 y Fh(P)6 b(N)410 2043 y Fe(B)q(lack)533 2037 y Fp(=)14 +b(15)957 2574 y(80)p eop +%%Page: 81 83 +81 82 bop 262 307 a Fu(4.10.2)55 b(De\014nition)17 b(36)i(:)25 +b(A)n(ttac)n(k)n(ed)19 b(Pieces)344 438 y Fh(AP)402 444 y Fe(col)457 +438 y Fp(=)501 407 y Fc(P)545 417 y Fk(64)545 451 y Fe(sq)q +Fk(=1)628 438 y Fh(AT)683 444 y Fe(col;sq)344 541 y Fl(where)380 +591 y Fh(AT)435 597 y Fe(col;sq)535 591 y Fp(:)69 b Fl(if)13 +b Fp(\(Occup)o(y\([P)o(a)o(wn,Knigh)o(t,Bishop,Ro)q(ok,Queen],col,sq\))616 +641 y Fl(and)g Fp(A)o(ttac)o(k)o(ed\([An)o(y],Opp\(col\),sq\)\))675 +691 y Fl(if)g Fp(\()p Fl(not)g Fp(A)o(ttac)o(k)o(ed\([An)o(y],col,sq\))675 +740 y Fl(or)g Fp(A)o(ttac)o(k)o(ed\([An)o(y)p Fh(<)p Fp +(On\(sq\)],Opp\(col\),sq\))675 790 y Fl(or)g Fp(\(Con)o(trol\(sq\))h(=)g +(Opp\(col\))h Fl(and)e Fh(])p Fp(Di\013A)o(ttac)o(ks\(Opp\(col\),sq\))h +Fh(>)g Fp(0\)\))734 840 y Fh(AT)789 846 y Fe(col;sq)887 840 +y Fp(=)d Fh(AT)985 846 y Fe(col;sq)1081 840 y Ff(\000)e Fp(8)p +Ff(\000)14 b Fp(V)m(alue\(sq\))734 890 y Fh(T)6 b(hr)q(eat)864 +896 y Fe(col)920 890 y Fp(=)11 b Fh(T)6 b(hr)q(eat)1093 896 +y Fe(col)1147 890 y Fp(+)j(1)734 940 y Fl(if)k Fp(\(T)m(rapp)q +(ed\(col,sq\)\))793 989 y Fh(AT)848 995 y Fe(col;sq)946 989 +y Fp(=)e Fh(AT)1044 995 y Fe(col;sq)1140 989 y Ff(\000)e Fh(V)h(al)q(ue)p +Fp(\()p Fh(sq)q Fp(\))p Ff(\001)k Fp(revPhase)793 1039 y Fh(T)6 +b(hr)q(eat)923 1045 y Fe(col)979 1039 y Fp(=)11 b Fh(T)6 b(hr)q(eat)1152 +1045 y Fe(col)1206 1039 y Fp(+)j(1)734 1089 y Fl(endif)675 +1139 y(else)734 1189 y(if)k Fp(\(Con)o(trol\(sq\))h(=)g(Opp\(col\))g +Fl(or)f Fh(])p Fp(Di\013A)o(ttac)o(ks\(Opp\(col\),sq\))i Fh(>)f +Fp(0\))793 1239 y Fh(AT)848 1245 y Fe(col;sq)946 1239 y Fp(=)d +Fh(AT)1044 1245 y Fe(col;sq)1131 1239 y Ff(\000)p Fp(V)m(alue\(sq\))734 +1288 y Fl(endif)675 1338 y(endif)616 1388 y(endif)262 1506 +y Fp(Pieces)k(whic)o(h)f(are)h(threatened)h(with)e(pro\014table)g(capture)h +(\(en-prise\))g(b)o(y)f(the)h(opp)q(osing)262 1556 y(side)i(are)g(p)q +(enalised.)28 b(This)17 b(p)q(enalt)o(y)g(is)g(levied)g(not)g(b)q(ecause)h +(the)g(loss)f(of)f(the)i(piece)g(is)262 1606 y(considered)f(lik)o(ely)m(,)e +(but)i(b)q(ecause)h(it)f(is)f(v)o(ery)h(lik)o(ely)e(that)i(a)f(temp)q(o)g +(will)f(b)q(e)i(w)o(asted)g(in)262 1656 y(protecting)c(or)g(mo)o(ving)d(the)j +(threatened)i(piece.)j(The)c(threat)f(coun)o(t)g(is)g(incremen)o(ted)g(for) +262 1705 y(ev)o(ery)h(piece)h(en-prise.)324 1791 y(T)m(rapp)q(ed)j(pieces)h +(whic)o(h)f(are)g(also)f(en-prise)i(are)f(additionally)d(p)q(enalised)j(and)g +(the)262 1840 y(threat)e(coun)o(t)f(is)h(further)g(incremen)o(ted.)23 +b(Pieces)17 b(whic)o(h)e(are)h(under)g(pressure,)i(but)e(not)262 +1890 y(en-prise)k(are)g(also)f(p)q(enalised)h(although)e(to)i(a)f(lesser)i +(exten)o(t.)36 b(The)20 b(threat)g(coun)o(t)g(is)262 1940 y(used)13 +b(to)f(extend)h(the)g(searc)o(h)h(in)e(p)q(ositions)g(where)h(an)f(accurate)i +(static)e(ev)n(aluation)f(v)n(alue)262 1990 y(cannot)j(b)q(e)g(calculated.) +324 2075 y(Applying)f(the)h(A)o(ttac)o(k)o(ed)h(Pieces)g(criteria)f(to)g(the) +g(p)q(osition)g(in)f(\014gure)h(4.9)f(giv)o(es:)344 2166 y +Fh(AP)402 2172 y Fe(W)t(hite)533 2166 y Fp(=)h Ff(\000)p Fp(18)344 +2215 y Fh(AP)402 2221 y Fe(B)q(lack)533 2215 y Fp(=)g Ff(\000)p +Fp(9)344 2265 y Fh(T)6 b(hr)q(eat)474 2271 y Fe(W)t(hite)583 +2265 y Fp(=)12 b(2)344 2315 y Fh(T)6 b(hr)q(eat)474 2321 y +Fe(B)q(lack)576 2315 y Fp(=)12 b(1)262 2391 y(The)19 b(n)o(um)o(b)q(er)g(of)f +(threats)i(against)f(white)g(\(2\),)h(represen)o(ts)i(a)d(degree)i(of)d +(uncertain)o(t)o(y)262 2441 y(ab)q(out)13 b(the)i(tactical)e(p)q +(ossibilities)h(threatened)h(against)e(the)i(white)f(pieces.)957 +2574 y(81)p eop +%%Page: 82 84 +82 83 bop 262 307 a Fr(4.11)69 b(Planning)262 434 y Fp(Before)18 +b(eac)o(h)g(searc)o(h)h(b)q(egins)e(an)h(analysis)f(of)f(the)j(p)q(osition)d +(will)g(b)q(e)j(done.)29 b(This)17 b(will)262 483 y(enable)11 +b(v)n(arious)g(piece)h(square)g(tables)g(to)f(b)q(e)h(loaded)f(with)g(v)n +(alues)g(whic)o(h)g(can)g(b)q(e)h(applied)262 533 y(at)h(leaf)h(no)q(des)g +(using)g(lo)q(ok)f(up)h(tables.)324 618 y(Ob)o(viously)d(this)g(is)h(m)o(uc)o +(h)e(faster)j(than)e(rep)q(eatedly)i(calculating)e(information)e(at)i(leaf) +262 668 y(no)q(des.)18 b(Hence,)d(in)e(an)h(implemen)o(tati)o(on,)d(all)h +(leaf)h(no)q(de)h(ev)n(aluation)f(criteria)h(whic)o(h)f(are)262 +718 y(essen)o(tially)18 b(static)h(should)g(b)q(e)g(incorp)q(orated)g(in)o +(to)f(these)i(tables)f(and)g(remo)o(v)o(ed)e(from)262 768 y(the)d(leaf)f(ev)n +(aluation)f(pro)q(cess.)20 b(Ho)o(w)o(ev)o(er,)13 b(this)h(c)o(hapter)h +(represen)o(ts)h(a)d(de\014nition)g(of)g(m)o(y)262 818 y(prop)q(osed)19 +b(ev)n(aluation)e(function)h(regardless)h(of)f(implemen)o(tation)d(detail.)31 +b(Therefore,)262 867 y(some)19 b(criteria)i(whic)o(h)f(are)h(suited)g(to)g +(piece)g(square)h(tables)e(are)h(de\014ned)h(separately)262 +917 y(b)q(ecause)15 b(of)e(their)i(imp)q(ortance.)324 1003 +y(T)m(o)f(com)o(bat)f(the)j(t)o(ypically)d(aimless)h(pla)o(y)g(of)g(c)o(hess) +j(programs)c(I)i(will)e(include)i(some)262 1052 y(rudimen)o(tary)h(planning)h +(in)h(the)h(ev)n(aluation)d(function.)31 b(P)o(art)18 b(of)g(the)g(initial)e +(analysis)262 1102 y(done)h(b)q(efore)g(eac)o(h)h(searc)o(h)g(commences)d +(will)h(include)h(a)f(selection)i(of)e(an)h(appropriate)262 +1152 y(plan)c(for)g(the)i(curren)o(t)g(p)q(osition.)j(The)c(plans)f(whic)o(h) +h(will)f(b)q(e)h(recognised)h(are:)312 1270 y(1.)20 b Fl(King)15 +b(side)g(attac)o(k)g(with)g(pa)o(wns)p Fp(.)312 1352 y(2.)20 +b Fl(King)15 b(side)g(attac)o(k)g(with)g(pieces)p Fp(.)312 +1435 y(3.)20 b Fl(King)15 b(side)g(attac)o(k)g(with)g(pieces)f(and)i(pa)o +(wns)p Fp(.)312 1517 y(4.)k Fl(Queen)15 b(side)f(attac)o(k)i(with)f(pa)o(wns) +p Fp(.)312 1600 y(5.)20 b Fl(Queen)15 b(side)f(attac)o(k)i(with)f(pieces)p +Fp(.)312 1683 y(6.)20 b Fl(Queen)15 b(side)f(attac)o(k)i(with)f(pieces)f(and) +h(pa)o(wns)p Fp(.)312 1765 y(7.)20 b Fl(Using)14 b(pa)o(wns)i(as)g(lev)o(ers) +p Fp(.)312 1848 y(8.)k Fl(Endgame,)c(king)e(and)i(pa)o(wn)f(co-ordination)o +Fp(.)262 1965 y(These)e(plans)f(are)g(relativ)o(ely)g(general,)g(but)g +(should)g(pro)o(vide)g(the)h(program)e(with)h(enough)262 2015 +y(v)n(ariet)o(y)h(to)g(c)o(ho)q(ose)h(a)g(plan)f(relev)n(an)o(t)g(to)h(the)g +(p)q(osition)f(and)h(attempt)e(to)i(co-ordinate)g(its)262 2065 +y(mo)o(v)o(es)g(to)h(ac)o(hiev)o(e)h(common)c(goals.)22 b(It)16 +b(is)f(not)g(the)h(ob)r(ject)h(of)d(these)j(plans)e(to)h(suggest)262 +2115 y(sp)q(eci\014c)j(mo)o(v)o(es,)e(but)i(rather)g(to)e(allo)o(w)g(the)i +(searc)o(h)g(to)f(b)q(e)g(guided)g(to)o(w)o(ard)g(the)g(goals)262 +2165 y(iden)o(ti\014ed.)324 2250 y(T)m(o)c(enable)h(the)h(searc)o(h)g(to)f(b) +q(e)h(guided,)f(the)h(appropriate)f(piece)h(square)g(tables)f(will)262 +2300 y(b)q(e)20 b(up)q(dated)h(in)f(suc)o(h)h(a)f(w)o(a)o(y)g(that)g(mo)o(v)o +(es)f(whic)o(h)h(con)o(tribute)h(to)f(the)h(ac)o(hiev)o(emen)o(t)262 +2350 y(of)16 b(the)h(c)o(hosen)h(goals)e(will)f(b)q(e)j(encouraged.)28 +b(This)16 b(will)g(hop)q(efully)g(ha)o(v)o(e)g(the)i(e\013ect)g(of)262 +2399 y(pro)o(viding)12 b(a)i(common)d(purp)q(ose)k(to)e(the)i(programs)e(mo)o +(v)o(es)f(rather)j(than)f(allo)o(wing)d(it)j(to)262 2449 y(pla)o(y)e +(aimless,)g(although)h(solid)g(mo)o(v)o(es.)957 2574 y(82)p +eop +%%Page: 83 85 +83 84 bop 324 307 a Fp(There)17 b(are)f(no)f(sp)q(eci\014c)i(op)q(ening)f +(plans,)f(ho)o(w)o(ev)o(er,)h(the)g(ev)n(aluation)f(function)g(do)q(es)262 +357 y(pro)o(vide)g(ample)f(criteria)i(suc)o(h)g(as)g(Dev)o(elopmen)o(t,)e +(Cen)o(tre)j(Con)o(trol)e(etc,)h(to)g(encourage)262 407 y(go)q(o)q(d)d(op)q +(ening)h(pla)o(y)m(.)324 492 y(The)j(plans)f(a)o(v)n(ailable)e(in)i(the)h +(middle)d(game)h(are)i(attac)o(k)f(orien)o(ted.)26 b(Ho)o(w)o(ev)o(er,)17 +b(b)q(e-)262 542 y(cause)g(appropriate)g(plans)f(are)h(selected)h(for)e(b)q +(oth)h(sides)g(this)g(will)e(ha)o(v)o(e)h(the)h(e\013ect)h(of)262 +592 y(making)11 b(eac)o(h)k(side)g(attempt)e(to)h(obstruct)h(the)g(other)g +(sides)g(plan.)j(This)c(will)f(ob)o(viously)262 641 y(include)h(b)q(oth)g +(defensiv)o(e)g(and)g(aggressiv)o(e)g(measures.)324 727 y(In)e(the)h +(endgame,)e(only)g(a)h(general)g(approac)o(h)g(to)g(king{pa)o(wn)f +(co-ordination)g(will)g(b)q(e)262 777 y(tak)o(en.)18 b(The)13 +b(endgame)g(is)g(a)g(stage)h(of)f(the)h(game)e(where)j(sp)q(eci\014c)f(kno)o +(wledge)g(and)f(plans)262 826 y(w)o(ould)f(greatly)h(help)h(in)f(the)h +(handling)e(of)g(certain)i(t)o(yp)q(es)h(of)e(endings)g(whic)o(h)g(ha)o(v)o +(e)h(more)262 876 y(discernible)d(goals.)17 b(Ho)o(w)o(ev)o(er,)11 +b(suc)o(h)h(a)f(comprehensiv)o(e)g(approac)o(h)g(could)g(form)f(the)i(basis) +262 926 y(for)h(an)h(en)o(tire)g(pro)r(ject)h(in)f(itself.)262 +1076 y Fu(4.11.1)55 b(De\014nition)17 b(37)i(:)25 b(Pressure)18 +b(on)h(King)344 1243 y Fh(P)6 b(K)412 1249 y Fe(col)467 1243 +y Fp(=)12 b(\()527 1211 y Fc(P)571 1222 y Fk(64)571 1255 y +Fe(sq)q Fk(=1)654 1243 y Fh(C)s(L)715 1249 y Fe(col;sq)801 +1243 y Fp(\))d(+)h Fh(AD)933 1250 y Fe(col;O)q(nF)t(ile)p Fk(\()p +Fe(K)r(ing)q(S)r(q)q Fk(\()p Fe(col)p Fk(\)\))344 1345 y Fl(where)380 +1395 y Fh(C)s(L)441 1401 y Fe(col;sq)540 1395 y Fp(:)40 b Fl(if)13 +b Fp(\(T)m(axicab\(KingSq\(col\),sq\))g Ff(\024)h Fp(4)592 +1445 y Fl(and)f Ff(j)h Fp(OnFile\(KingSq\(col\)\))f Ff(\000)i +Fp(OnFile\(sq\))f Ff(j)d(\024)j Fp(2\))651 1495 y Fh(AT)706 +1502 y Fe(O)q(pp)p Fk(\()p Fe(col)p Fk(\))p Fe(;sq)888 1495 +y Fp(+)9 b Fh(P)d(M)1002 1502 y Fe(O)q(pp)p Fk(\()p Fe(col)p +Fk(\))p Fe(;sq)1183 1495 y Ff(\000)k Fh(D)q(F)1287 1501 y Fe(col;sq)592 +1545 y Fl(else)651 1594 y Fp(0)592 1644 y Fl(endif)380 1744 +y Fh(AT)435 1750 y Fe(col;sq)535 1744 y Fp(:)45 b Fh(])p Fp(A)o(ttac)o +(ks\([Ro)q(ok],col,sq\))12 b(+)592 1794 y(2)d Ff(\001)g Fh(])p +Fp(A)o(ttac)o(ks\([P)o(a)o(wn,Knigh)o(t,Bishop],col,sq\))j(+)592 +1844 y(3)d Ff(\001)g Fh(])p Fp(A)o(ttac)o(ks\([Queen],col,sq\))380 +1948 y Fh(P)d(M)453 1954 y Fe(col;sq)552 1948 y Fp(:)592 1917 +y Fc(P)636 1927 y Fk(64)636 1960 y Fe(sq)q Fk(2=1)769 1948 +y Fl(if)13 b Fp(\(A)o(ttac)o(king\([P)o(a)o(wn],col,sq2,sq\))769 +2001 y Fl(and)g Fh(])p Fp(Mo)o(v)o(es\([P)o(a)o(wn],col,sq2\))g +Fh(>)h Fp(0\))828 2051 y(2)769 2100 y Fl(else)828 2150 y Fp(0)769 +2200 y Fl(endif)380 2300 y Fh(D)q(F)442 2306 y Fe(col;sq)541 +2300 y Fp(:)39 b Fh(])p Fp(A)o(ttac)o(ks\([Ro)q(ok],col,sq\))12 +b(+)592 2350 y(2)d Ff(\001)g Fh(])p Fp(A)o(ttac)o(ks\([Knigh)o +(t,Bishop,Queen],col,sq\))k(+)592 2399 y(3)c Ff(\001)g Fh(])p +Fp(A)o(ttac)o(ks\([P)o(a)o(wn],col,sq\))957 2574 y(83)p eop +%%Page: 84 86 +84 85 bop 380 307 a Fh(AD)445 313 y Fe(col;k)q(f)551 307 y +Fp(:)592 276 y Fc(P)636 286 y Fe(k)q(f)s Fk(+1)636 320 y Fe(f)s +Fk(=)p Fe(k)q(f)s Fd(\000)p Fk(1)769 307 y Fl(if)13 b Fp(\(Op)q(en\(f)s(\))i +Fl(or)f Fp(SemiOp)q(en\(Opp\(col\),f)s(\)\))828 360 y(3)769 +410 y Fl(else)828 460 y Fp(0)769 510 y Fl(endif)324 636 y Fp(This)19 +b(de\014nition)h(attempts)f(to)g(calculate)h(ho)o(w)f(m)o(uc)o(h)g(pressure)i +(in)f(terms)f(of)g(the)262 686 y(attac)o(k/defence)14 b(balance)e(is)h +(curren)o(tly)g(exerted)i(on)d(the)h(king)f(in)h(question.)k(The)d(higher)262 +736 y(the)e(v)n(alue)g(of)g(PK,)g(the)h(more)e(pressure)j(is)f(though)o(t)f +(to)g(exist.)18 b(This)12 b(de\014nition)g(will)e(form)262 +786 y(the)15 b(basis)f(of)g(a)h(decision)g(as)f(to)h(whether)h(an)e(assault)h +(against)f(the)h(king)f(is)g(lik)o(ely)g(to)g(b)q(e)262 836 +y(w)o(orth)o(while.)324 921 y(This)i(de\014nition)g(tak)o(es)h(in)o(to)f +(accoun)o(t)h(attac)o(ks)g(b)o(y)f(b)q(oth)g(sides)i(on)e(squares)h(within) +262 971 y(a)f(4)g(square,)h(2)f(\014le)g(b)q(oundary)g(of)g(eac)o(h)h(king.) +25 b(The)16 b(v)n(alue)g(of)g(the)h(attac)o(k)f(dep)q(ends)i(on)262 +1020 y(the)d(t)o(yp)q(e)h(of)e(pieces)i(in)o(v)o(olv)o(ed.)k(The)c(defensiv)o +(e)f(v)n(alue)g(is)f(calculated)i(in)e(a)h(similar)d(w)o(a)o(y)m(,)262 +1070 y(except)k(the)g(relativ)o(e)e(v)n(alue)h(of)f(the)i(attac)o(ks)f(b)o(y) +g(pieces)h(are)f(di\013eren)o(t.)23 b(F)m(or)14 b(example,)g(a)262 +1120 y(pa)o(wn)f(is)h(considered)h(to)f(p)q(erform)f(a)g(b)q(etter)j +(defensiv)o(e)f(role)e(than)h(an)g(attac)o(king)f(one.)324 +1205 y(Mobile)18 b(pa)o(wns)i(in)e(attac)o(k)i(are)f(considered)i(sup)q +(erior)f(to)f(blo)q(c)o(k)o(ed)g(pa)o(wns.)34 b(Also,)262 1255 +y(an)19 b(allo)o(w)o(ance)g(is)h(made)f(for)h(op)q(en)g(or)g(semi{op)q(en)f +(\014les)i(a)o(v)n(ailable)d(to)i(the)g(attac)o(king)262 1305 +y(side)f(b)q(ecause)h(this)f(ob)o(viously)e(impro)o(v)o(es)g(the)j(lik)o +(eliho)q(o)q(d)d(of)h(an)g(attac)o(k)h(on)f(the)h(king)262 +1355 y(succeeding.)262 1506 y Fu(4.11.2)55 b(De\014nition)17 +b(38)i(:)25 b(Plan)18 b(Selection)344 1597 y Fh(P)6 b(S)402 +1603 y Fe(col)460 1597 y Fp(=)100 b Fl(if)13 b Fp(\(phase)i +Fh(<)f Fp(8\))651 1647 y Fl(if)f Fp(\()p Fh(])p Fp(P)o(a)o(wns)h +Fh(>)g Fp(0\))710 1697 y Fh(P)6 b(l)q(anT)g(y)q(pe)894 1703 +y Fe(col)953 1697 y Fp(=)14 b(EndGameKP)710 1747 y Fh(P)6 b(l)q(anW)g(ing)907 +1753 y Fe(col)965 1747 y Fp(=)14 b(QueenSide)h Ff([)e Fp(KingSide)651 +1797 y Fl(endif)592 1846 y(else)651 1896 y(if)g Fp(\()p Fh(P)6 +b(K)777 1903 y Fe(O)q(pp)p Fk(\()p Fe(col)p Fk(\))919 1896 +y Fh(>)14 b Fp(phase\))710 1946 y Fl(if)f Fp(\()p Fh(P)6 b(K)836 +1953 y Fe(O)q(pp)p Fk(\()p Fe(col)p Fk(\))978 1946 y Fh(>)14 +b Fp(phase+3)g Fl(or)g Fp(Opp)q(ositeFlanks\))769 1996 y Fh(P)6 +b(l)q(anT)g(y)q(pe)953 2002 y Fe(col)1012 1996 y Fp(=)14 b(P)o(a)o(wnA)o +(ttac)o(k)g Ff([)f Fp(PieceA)o(ttac)o(k)710 2046 y Fl(else)769 +2096 y Fh(P)6 b(l)q(anT)g(y)q(pe)953 2102 y Fe(col)1012 2096 +y Fp(=)14 b(PieceA)o(ttac)o(k)710 2145 y Fl(endif)710 2195 +y Fh(P)6 b(l)q(anW)g(ing)907 2201 y Fe(col)965 2195 y Fp(=)14 +b(Wing\(KingSq\(Opp\(col\)\)\))651 2245 y Fl(else)710 2295 +y(if)f Fp(\(Opp)q(ositeFlanks\))769 2345 y Fh(P)6 b(l)q(anT)g(y)q(pe)953 +2351 y Fe(col)1012 2345 y Fp(=)14 b(P)o(a)o(wnA)o(ttac)o(k)769 +2394 y Fh(P)6 b(l)q(anW)g(ing)966 2400 y Fe(col)1024 2394 y +Fp(=)14 b(Wing\(KingSq\(Opp\(col\)\)\))710 2444 y Fl(else)957 +2574 y Fp(84)p eop +%%Page: 85 87 +85 86 bop 769 307 a Fl(if)13 b Fp(\(phase)i Fh(>)f Fp(10\))828 +357 y Fh(P)6 b(l)q(anT)g(y)q(pe)1012 363 y Fe(col)1071 357 +y Fp(=)14 b(Lev)o(erP)o(a)o(wns)828 407 y Fh(P)6 b(l)q(anW)g(ing)1025 +413 y Fe(col)1083 407 y Fp(=)14 b(QueenSide)h Ff([)f Fp(KingSide)769 +457 y Fl(else)828 506 y Fh(P)6 b(l)q(anT)g(y)q(pe)1012 512 +y Fe(col)1071 506 y Fp(=)14 b(None)769 556 y Fl(endif)710 606 +y(endif)651 656 y(endif)592 706 y(endif)262 832 y Fp(This)k(de\014nition)g +(attempts)h(to)f(select)i(the)g(b)q(est)g(plan)e(at)g(its)h(disp)q(osal)f +(based)i(on)e(the)262 882 y(kno)o(wn)e(information.)25 b(It)17 +b(ma)o(y)e(b)q(e)j(the)g(case)g(that)f(no)g(plan)f(is)h(clear,)h(in)f(this)g +(case)h(no)262 932 y(plan)13 b(will)f(b)q(e)j(selected.)324 +1017 y(In)i(the)g(endgame)f(only)g(one)h(plan)f(is)h(kno)o(wn,)g(that)f(of)h +(king{pa)o(wn)e(co-ordination.)262 1067 y(In)e(the)h(op)q(ening)g(or)f +(middle)f(game,)g(if)h(the)h(attac)o(k{defence)h(balance)e(\(pressure\))k(on) +c(the)262 1117 y(opp)q(onen)o(ts)i(king)e(app)q(ears)i(to)f(o\013er)h(some)f +(lik)o(eliho)q(o)q(d)e(of)i(success,)i(then)f(a)f(piece)i(attac)o(k)262 +1167 y(plan)d(is)g(considered)i(suitable.)j(If)c(the)g(pressure)i(is)e(ev)o +(en)g(greater,)h(a)e(pa)o(wn)h(assault)f(plan)262 1217 y(is)g(also)h +(selected.)20 b(The)15 b(idea)f(here)h(is)f(to)g(only)f(use)i(pa)o(wns)f +(when)g(there)i(is)e(enough)g(piece)262 1266 y(co)o(v)o(erage)g(to)g(mak)o(e) +e(their)i(use)h(e\013ectiv)o(e.)324 1352 y(Pressure)21 b(is)d(in)g(fact)g(a)g +(measure)g(of)g(the)h(balance)f(b)q(et)o(w)o(een)i(attac)o(k)e(and)h +(defence,)262 1401 y(therefore)i(a)f(king)f(assault)h(plan)g(ma)o(y)e(ev)o +(en)j(b)q(e)f(considered)i(if)d(no)h(relev)n(an)o(t)g(attac)o(ks)262 +1451 y(curren)o(tly)10 b(exist.)17 b(This)9 b(of)g(course)i(dep)q(ends)g(on)e +(the)h(enem)o(y)f(defence)i(b)q(eing)e(w)o(eak.)17 b(Hence,)262 +1501 y(once)12 b(a)f(w)o(eakness)h(is)g(detected)h(b)o(y)e(the)h(program)e +(it)h(ma)o(y)f(switc)o(h)h(its)h(atten)o(tion)f(to)g(a)g(king)262 +1551 y(assault.)18 b(Hop)q(efully)c(this)g(will)f(help)h(the)h(program)d(to)i +(exhibit)g(a)g(more)f(h)o(uman)g(st)o(yle)h(of)262 1601 y(pla)o(y)m(.)324 +1686 y(Additionally)m(,)8 b(if)i(the)h(kings)f(ha)o(v)o(e)g(castled)h(on)f +(opp)q(osite)h(\015anks,)f(a)h(plan)e(to)i(encourage)262 1736 +y(an)i(assault)h(b)o(y)g(pa)o(wns)g(will)e(b)q(e)i(selected.)324 +1821 y(If)c(none)h(of)f(these)i(plans)f(are)g(selected,)h(a)f(general)g(goal) +e(of)h(using)g(pa)o(wn)h(lev)o(ers)g(ma)o(y)e(b)q(e)262 1871 +y(used.)18 b(The)12 b(idea)g(here)h(is)e(to)h(use)h(pa)o(wns)e(as)h(lev)o +(ers)h(against)e(the)h(enem)o(y)f(pa)o(wn)h(structure,)262 +1921 y(therefore,)i(creating)g(dynamic)e(t)o(yp)q(e)j(p)q(ositions)e(whic)o +(h)h(are)g(b)q(est)h(suited)f(to)f(a)h(programs)262 1970 y(tactical)f(abilit) +o(y)m(.)957 2574 y(85)p eop +%%Page: 86 88 +86 87 bop 262 307 a Fu(4.11.3)55 b(De\014nition)17 b(39)i(:)25 +b(P)n(a)n(wn)20 b(Square)e(T)-5 b(able)p 641 413 673 5 v 641 +1077 5 665 v 646 496 a Fg(0Z0Z0Z0Z)646 579 y(Z0Z0Z0Z0)646 662 +y(0Z0Z0Z0Z)646 745 y(Z0Z0Z0Z0)646 828 y(0Z0Z0Z0Z)646 911 y(Z0Z0Z0Z0)646 +994 y(0Z0Z0Z0Z)646 1077 y(Z0Z0Z0Z0)p 1310 1077 V 641 1081 673 +5 v 675 473 a Fl(0)59 b(0)f(0)h(0)g(0)f(0)h(0)g(0)675 556 y(20)35 +b(20)f(24)h(28)g(28)f(24)h(20)g(20)675 639 y(16)g(16)f(20)h(24)g(24)f(20)h +(16)g(16)675 722 y(12)g(12)f(16)h(20)g(20)f(16)h(12)g(12)675 +805 y(8)59 b(8)f(12)35 b(16)g(16)f(12)h(8)59 b(8)675 888 y(6)g(6)f(8)h(12)35 +b(12)f(8)59 b(6)g(6)675 971 y(4)g(4)f(6)h(8)g(8)f(6)h(4)g(4)675 +1054 y(0)g(0)f(0)h(0)g(0)f(0)h(0)g(0)479 1180 y Fp(Figure)14 +b(4.10:)i(Initial)d(W)m(eigh)o(tings)f(for)i(P)o(a)o(wn)f(Square)i(T)m(able.) +344 1292 y Fh(P)6 b(S)r(T)428 1298 y Fe(col;sq)528 1292 y Fp(:)52 +b Fl(for)15 b(eac)o(h)h(square)d Fp(sq)h Fl(do)651 1342 y Fh(P)6 +b(S)r(T)735 1348 y Fe(col;sq)833 1342 y Fp(=)12 b Fh(S)r(T)928 +1348 y Fe(col;sq)1024 1342 y Fp(+)d Fh(K)s(S)1128 1348 y Fe(col;sq)1224 +1342 y Fp(+)h Fh(P)c(A)1330 1348 y Fe(col;sq)1424 1342 y Fp(+)k +Fh(P)c(L)1527 1348 y Fe(col;sq)592 1392 y Fl(endfor)344 1491 +y(where)380 1541 y Fh(S)r(T)431 1547 y Fe(col;sq)531 1541 y +Fp(:)49 b(Static)14 b(w)o(eigh)o(tings)f(as)h(de\014ned)h(in)f(\014gure)g +(4.10.)380 1641 y Fh(K)s(S)443 1647 y Fe(col;sq)543 1641 y +Fp(:)37 b Fl(if)13 b Fp(\()p Fh(])p Fp(UnMo)o(v)o(ed\(col,King\))g(=)h(0\)) +651 1691 y Fl(if)f Fp(\(KingDistance\(KingSq\(col\),sq\))h +Fh(<)g Fp(2\))710 1741 y Fl(case)g Fp(Distance\(KingSq\(col\),sq\))g +Fl(of)769 1790 y Fp(1)g(:)k(phase)769 1840 y(2)c(:)k(phase/2)710 +1890 y Fl(else)769 1940 y Fp(0)710 1990 y Fl(endcase)651 2039 +y(else)710 2089 y Fp(0)651 2139 y Fl(endif)592 2189 y(else)651 +2239 y(if)13 b Fp(\(\(OnFile\(sq\))i(=)f(1)f Fl(or)h Fp(2)f +Fl(or)h Fp(7)f Fl(or)h Fp(8\))f Fl(and)g Fp(OnRank\(col,sq\))h +Ff(\024)g Fp(3\))710 2288 y(phase)h(/)e(OnRank\(col,sq\))651 +2338 y Fl(else)710 2388 y Fp(0)651 2438 y Fl(endif)957 2574 +y Fp(86)p eop +%%Page: 87 89 +87 88 bop 592 307 a Fl(endif)380 407 y Fh(P)6 b(A)444 413 y +Fe(col;sq)543 407 y Fp(:)37 b Fl(if)13 b Fp(\(\(P)o(a)o(wnA)o(ttac)o(k)h +Ff(2)d Fh(P)6 b(l)q(anT)g(y)q(pe)1125 413 y Fe(col)1184 407 +y Fl(and)13 b Fp(OnWing\()p Fh(P)6 b(l)q(anW)g(ing)1641 413 +y Fe(col)1684 407 y Fp(,sq\)\))592 457 y Fl(and)13 b Fp(P)o(a)o(wnLev)o +(er\(OnFile\(sq\),col\)\))651 506 y(40)h Ff(\000)g Fp(8)p Ff(\001)p +Fp(T)m(axicab\(Lev)o(erSq\(OnFile\(sq\),col\),sq\))592 556 +y Fl(else)651 606 y Fp(0)592 656 y Fl(endif)380 756 y Fh(P)6 +b(L)441 762 y Fe(col;sq)540 756 y Fp(:)40 b Fl(if)13 b Fp(\(Lev)o(erP)o(a)o +(wns)i Ff(2)c Fh(P)6 b(l)q(anT)g(y)q(pe)1103 762 y Fe(col)1161 +756 y Fl(and)14 b Fp(P)o(a)o(wnLev)o(er\(OnFile\(sq\),col\)\))651 +805 y(10)g Ff(\000)g Fp(2)p Ff(\001)p Fp(T)m(axicab\(Lev)o +(erSq\(OnFile\(sq\),col\),sq\))592 855 y Fl(else)651 905 y +Fp(0)592 955 y Fl(endif)262 1082 y Fp(A)f(general)h(table)g(of)f(v)n(alues)h +(for)f(pa)o(wn)h(o)q(ccupation)g(is)f(used.)19 b(Once)c(a)f(king)f(has)h(mo)o +(v)o(ed,)262 1131 y(the)19 b(pa)o(wns)f(near)i(the)f(king)f(are)h +(discouraged)g(from)e(mo)o(ving)f(as)j(this)f(w)o(ould)g(w)o(eak)o(en)262 +1181 y(the)g(pa)o(wn)f(shield)h(around)g(the)g(king.)29 b(Before)19 +b(the)f(king)f(\014rst)i(mo)o(v)o(es,)e(the)h(pa)o(wns)g(on)262 +1231 y(either)e(\015ank)f(are)h(discouraged)g(from)d(mo)o(ving)g(as)i(they)h +(are)g(lik)o(ely)e(to)h(form)f(the)i(future)262 1281 y(pa)o(wn)i(shield.)32 +b(As)19 b(the)g(game)e(progresses)k(these)f(restrictions)f(are)g(reduced,)i +(thereb)o(y)262 1331 y(encouraging)13 b(pa)o(wn)h(adv)n(ances.)k(Cen)o(tre)d +(pa)o(wns)f(are)h(free)f(from)e(suc)o(h)j(restrictions.)324 +1416 y(A)10 b(pa)o(wn)f(attac)o(k)h(plan)f(is)h(implem)o(en)o(ted)e(b)o(y)i +(encouraging)f(pa)o(wn)h(mo)o(v)o(es)e(up)i(the)h(b)q(oard)262 +1466 y(whic)o(h)h(w)o(ould)g(result)i(in)f(pa)o(wn)f(lev)o(erage.)18 +b(The)c(b)q(on)o(us)f(giv)o(en)f(dep)q(ends)j(on)e(ho)o(w)f(close)i(to)262 +1515 y(the)g(lev)o(er)g(square)h(the)f(pa)o(wn)g(is.)324 1601 +y(A)e(general)h(pa)o(wn)f(lev)o(er)h(plan)f(is)g(actioned)g(in)g(a)h(similar) +c(manor)i(to)i(the)g(pa)o(wn)f(attac)o(k)262 1651 y(plan)h(ab)q(o)o(v)o(e,)g +(except)i(the)g(b)q(on)o(uses)g(used)f(are)h(signi\014can)o(tly)e(lo)o(w)o +(er.)324 1736 y(Remem)o(b)q(er,)19 b(these)i(v)n(alues)e(are)h(for)f(p)q +(ossible)h(pa)o(wn)f(o)q(ccupation.)35 b(Ev)o(en)20 b(though)262 +1786 y(no)14 b(pa)o(wns)i(exist)f(on)g(the)h(\014le)f(these)h(v)n(alues)f(ma) +o(y)e(still)h(b)q(e)i(imp)q(ortan)o(t)d(b)q(ecause)k(a)e(pa)o(wn)262 +1835 y(ma)o(y)c(capture)k(on)o(to)e(the)h(said)f(\014le)h(during)f(the)h +(searc)o(h)h(and)e(should)g(therefore)i(incur)f(the)262 1885 +y(relev)n(an)o(t)f(b)q(on)o(us)i(or)e(p)q(enalt)o(y)m(.)957 +2574 y(87)p eop +%%Page: 88 90 +88 89 bop 262 307 a Fu(4.11.4)55 b(De\014nition)17 b(40)i(:)25 +b(Knigh)n(t)18 b(Square)g(T)-5 b(able)p 641 413 673 5 v 641 +1077 5 665 v 646 496 a Fg(0Z0Z0Z0Z)646 579 y(Z0Z0Z0Z0)646 662 +y(0Z0Z0Z0Z)646 745 y(Z0Z0Z0Z0)646 828 y(0Z0Z0Z0Z)646 911 y(Z0Z0Z0Z0)646 +994 y(0Z0Z0Z0Z)646 1077 y(Z0Z0Z0Z0)p 1310 1077 V 641 1081 673 +5 v 675 473 a Fl(2)59 b(3)f(4)h(4)g(4)f(4)h(3)g(2)675 556 y(3)g(4)f(6)h(6)g +(6)f(6)h(4)g(3)675 639 y(4)g(6)f(8)h(8)g(8)f(8)h(6)g(4)675 +722 y(4)g(6)f(8)h(10)35 b(10)f(8)59 b(6)g(4)675 805 y(4)g(6)f(8)h(10)35 +b(10)f(8)59 b(6)g(4)675 888 y(4)g(6)f(8)h(8)g(8)f(8)h(6)g(4)675 +971 y(3)g(4)f(6)h(6)g(6)f(6)h(4)g(3)675 1054 y(2)g(3)f(4)h(4)g(4)f(4)h(3)g(2) +466 1180 y Fp(Figure)14 b(4.11:)i(Initial)d(W)m(eigh)o(tings)f(for)i(Knigh)o +(t)f(Square)i(T)m(able.)344 1328 y Fh(N)5 b(S)r(T)433 1334 +y Fe(col;sq)534 1328 y Fp(:)46 b Fl(for)15 b(eac)o(h)h(square)d +Fp(sq)h Fl(do)651 1377 y Fh(N)5 b(S)r(T)740 1383 y Fe(col;sq)839 +1377 y Fp(=)11 b Fh(S)r(T)933 1383 y Fe(col;sq)1029 1377 y +Fp(+)f Fh(P)c(H)1139 1383 y Fe(col;sq)1233 1377 y Fp(+)j Fh(K)s(C)1342 +1383 y Fe(col;sq)592 1427 y Fl(endfor)344 1527 y(where)380 +1577 y Fh(S)r(T)431 1583 y Fe(col;sq)531 1577 y Fp(:)18 b(Static)c(w)o(eigh)o +(tings)f(as)h(de\014ned)h(in)f(\014gure)g(4.11.)380 1676 y +Fh(P)6 b(H)448 1682 y Fe(col;sq)546 1676 y Fp(:)34 b Fl(if)13 +b Fp(\(P)o(a)o(wnHole\(sq,Opp\(col\)\)\))651 1726 y(phase)592 +1776 y Fl(else)651 1826 y Fp(0)592 1876 y Fl(endif)380 1975 +y Fh(K)s(C)448 1981 y Fe(col;sq)547 1975 y Fp(:)33 b Ff(\000)p +Fp(T)m(axicab\(KingSq\(col\),sq\))13 b Ff(\000)h Fp(T)m +(axicab\(KingSq\(Opp\(col\)\),sq\))262 2102 y(Knigh)o(ts)h(are)h(encouraged)h +(to)e(b)q(e)h(on)g(squares)h(where)f(they)g(ha)o(v)o(e)g(as)g(man)o(y)d +(options)j(as)262 2152 y(p)q(ossible.)35 b(They)21 b(are)f(also)f(encouraged) +i(to)e(o)q(ccup)o(y)i(pa)o(wn)e(holes,)i(the)g(b)q(on)o(us)f(b)q(eing)262 +2202 y(dep)q(enden)o(t)f(on)e(the)h(game)e(phase.)30 b(Knigh)o(ts)17 +b(are)h(p)q(enalised)g(for)f(their)h(distance)g(from)262 2251 +y(eac)o(h)g(king.)28 b(This)18 b(encourages)h(a)f(knigh)o(t)f(to)g(main)o +(tain)e(a)j(p)q(osition)f(from)f(where)i(it)g(is)262 2301 y(p)q(oised)c(to)f +(attac)o(k)h(the)h(enem)o(y)e(king)g(or)h(protect)h(its)f(o)o(wn)f(king)g(as) +h(the)h(need)g(arises.)957 2574 y(88)p eop +%%Page: 89 91 +89 90 bop 262 307 a Fu(4.11.5)55 b(De\014nition)17 b(41)i(:)25 +b(Bishop)18 b(Square)g(T)-5 b(able)p 641 413 673 5 v 641 1077 +5 665 v 646 496 a Fg(0Z0Z0Z0Z)646 579 y(Z0Z0Z0Z0)646 662 y(0Z0Z0Z0Z)646 +745 y(Z0Z0Z0Z0)646 828 y(0Z0Z0Z0Z)646 911 y(Z0Z0Z0Z0)646 994 +y(0Z0Z0Z0Z)646 1077 y(Z0Z0Z0Z0)p 1310 1077 V 641 1081 673 5 +v 675 473 a Fl(0)59 b(2)f(2)h(2)g(2)f(2)h(2)g(0)675 556 y(2)g(8)f(8)h(8)g(8)f +(8)h(8)g(2)675 639 y(2)g(8)f(10)35 b(10)g(10)f(10)h(8)59 b(2)675 +722 y(2)g(8)f(10)35 b(12)g(12)f(10)h(8)59 b(2)675 805 y(2)g(8)f(10)35 +b(12)g(12)f(10)h(8)59 b(2)675 888 y(2)g(8)f(10)35 b(10)g(10)f(10)h(8)59 +b(2)675 971 y(2)g(8)f(8)h(8)g(8)f(8)h(8)g(2)675 1054 y(0)g(2)f(2)h(2)g(2)f(2) +h(2)g(0)466 1180 y Fp(Figure)14 b(4.12:)j(Initial)c(W)m(eigh)o(tings)f(for)i +(Bishop)g(Square)g(T)m(able.)344 1328 y Fh(B)r(S)r(T)428 1334 +y Fe(col;sq)529 1328 y Fp(:)51 b Fl(for)15 b(eac)o(h)h(square)d +Fp(sq)h Fl(do)651 1377 y Fh(B)r(S)r(T)735 1383 y Fe(col;sq)834 +1377 y Fp(=)e Fh(S)r(T)929 1383 y Fe(col;sq)1025 1377 y Fp(+)e +Fh(P)c(H)1135 1383 y Fe(col;sq)592 1427 y Fl(endfor)344 1527 +y(where)380 1577 y Fh(S)r(T)431 1583 y Fe(col;sq)531 1577 y +Fp(:)49 b(Static)14 b(w)o(eigh)o(tings)f(as)h(de\014ned)h(in)f(\014gure)g +(4.12.)380 1676 y Fh(P)6 b(H)448 1682 y Fe(col;sq)546 1676 +y Fp(:)34 b Fl(if)13 b Fp(\(P)o(a)o(wnHole\(sq,Opp\(col\)\)\))651 +1726 y(phase/2)592 1776 y Fl(else)651 1826 y Fp(0)592 1876 +y Fl(endif)262 2002 y Fp(Bishops)e(are)g(encouraged)h(to)f(k)o(eep)g(on)g +(long)f(diagonals)f(and)i(ha)o(v)o(e)g(p)q(o)o(w)o(er)g(in)f(as)h(man)o(y)e +(di-)262 2052 y(rections)i(as)g(p)q(ossible.)17 b(A)11 b(static)g(table)g +(pro)o(vides)g(appropriate)f(initial)f(b)q(on)o(uses.)18 b(Bishops)262 +2102 y(are)d(additionally)d(encouraged)k(to)f(o)q(ccup)o(y)h(pa)o(wn)e +(holes,)h(the)h(b)q(on)o(us)f(b)q(eing)g(dep)q(enden)o(t)262 +2152 y(on)e(the)i(game)d(phase.)957 2574 y(89)p eop +%%Page: 90 92 +90 91 bop 262 307 a Fu(4.11.6)55 b(De\014nition)17 b(42)i(:)25 +b(King)18 b(Square)g(T)-5 b(able)p 641 408 673 5 v 641 1072 +5 665 v 646 491 a Fg(0Z0Z0Z0Z)646 574 y(Z0Z0Z0Z0)646 657 y(0Z0Z0Z0Z)646 +740 y(Z0Z0Z0Z0)646 823 y(0Z0Z0Z0Z)646 906 y(Z0Z0Z0Z0)646 989 +y(0Z0Z0Z0Z)646 1072 y(Z0Z0Z0Z0)p 1310 1072 V 641 1076 673 5 +v 651 463 a Ff(\000)p Fl(2)27 b(+0)22 b Ff(\000)p Fl(4)k Ff(\000)p +Fl(8)h Ff(\000)p Fl(8)g Ff(\000)p Fl(4)f(+0)c Ff(\000)p Fl(2)651 +546 y Ff(\000)p Fl(2)27 b Ff(\000)p Fl(2)g Ff(\000)p Fl(6)f +Ff(\000)p Fl(8)h Ff(\000)p Fl(8)g Ff(\000)p Fl(6)f Ff(\000)p +Fl(2)h Ff(\000)p Fl(2)651 628 y Ff(\000)p Fl(16)s Ff(\000)p +Fl(16)s Ff(\000)p Fl(18)s Ff(\000)p Fl(20)s Ff(\000)p Fl(20)s +Ff(\000)p Fl(18)s Ff(\000)p Fl(16)s Ff(\000)p Fl(16)651 711 +y Ff(\000)p Fl(18)s Ff(\000)p Fl(18)s Ff(\000)p Fl(22)s Ff(\000)p +Fl(26)s Ff(\000)p Fl(26)s Ff(\000)p Fl(22)s Ff(\000)p Fl(18)s +Ff(\000)p Fl(18)651 794 y Ff(\000)p Fl(18)s Ff(\000)p Fl(18)s +Ff(\000)p Fl(22)s Ff(\000)p Fl(26)s Ff(\000)p Fl(26)s Ff(\000)p +Fl(22)s Ff(\000)p Fl(18)s Ff(\000)p Fl(18)651 877 y Ff(\000)p +Fl(16)s Ff(\000)p Fl(16)s Ff(\000)p Fl(18)s Ff(\000)p Fl(20)s +Ff(\000)p Fl(20)s Ff(\000)p Fl(18)s Ff(\000)p Fl(16)s Ff(\000)p +Fl(16)651 960 y Ff(\000)p Fl(2)g Ff(\000)p Fl(2)g Ff(\000)p +Fl(6)f Ff(\000)p Fl(8)h Ff(\000)p Fl(8)g Ff(\000)p Fl(6)f Ff(\000)p +Fl(2)h Ff(\000)p Fl(2)651 1043 y Ff(\000)p Fl(2)g(+0)22 b Ff(\000)p +Fl(4)k Ff(\000)p Fl(8)h Ff(\000)p Fl(8)g Ff(\000)p Fl(4)f(+0)c +Ff(\000)p Fl(2)485 1165 y Fp(Figure)14 b(4.13:)i(Initial)d(W)m(eigh)o(tings)f +(for)i(King)f(Square)i(T)m(able.)344 1303 y Fh(K)s(S)r(T)433 +1309 y Fe(col;sq)534 1303 y Fp(:)46 b Fl(for)15 b(eac)o(h)h(square)d +Fp(sq)h Fl(do)651 1353 y Fh(K)s(S)r(T)740 1359 y Fe(col;sq)839 +1353 y Fp(=)e Fh(S)r(T)934 1359 y Fe(col;sq)1030 1353 y Fp(+)d +Fh(K)s(E)1140 1359 y Fe(col;sq)1235 1353 y Ff(\000)h Fh(P)c(C)1340 +1359 y Fe(col;sq)592 1403 y Fl(endfor)344 1503 y(where)380 +1553 y Fh(S)r(T)431 1559 y Fe(col;sq)531 1553 y Fp(:)49 b(Static)14 +b(w)o(eigh)o(tings)f(as)h(de\014ned)h(in)f(\014gure)g(4.13.)380 +1652 y Fh(K)s(E)449 1658 y Fe(col;sq)548 1652 y Fp(:)32 b(\()p +Ff(\000)p Fh(S)r(T)691 1658 y Fe(col;sq)779 1652 y Fp(\))p +Ff(\001)13 b Fp(revPhase/8)380 1752 y Fh(P)6 b(C)443 1758 y +Fe(col;sq)541 1752 y Fp(:)39 b Fl(if)13 b Fp(\(EndgameKP)g +Ff(2)f Fh(P)6 b(l)q(anT)g(y)q(pe)1117 1758 y Fe(col)1161 1752 +y Fp(\))651 1802 y Fl(for)15 b(eac)o(h)h(square)d Fp(sq2)h +Fl(do)710 1851 y(if)f Fp(\(Occup)o(y\([P)o(a)o(wn],col,sq\)\))769 +1901 y Fl(if)g Fp(\(P)o(assed\(col,sq2\)\))828 1951 y(P)o(a)o(wnMass)i(=)f(P) +o(a)o(wnMass)g(+)g(4)g Ff(\001)f Fp(T)m(axicab\(sq,sq2\))828 +2001 y(P)o(a)o(wnMass)i(=)f(P)o(a)o(wnMass)g(+)g(T)m +(axicab\(sq,PSq\(col,sq2\)\))769 2051 y Fl(else)828 2100 y +Fp(P)o(a)o(wnMass)h(=)f(P)o(a)o(wnMass)g(+)g(T)m(axicab\(sq,sq2\))769 +2150 y Fl(endif)710 2200 y(else)769 2250 y(if)f Fp(\(Occup)o(y\([P)o(a)o +(wn],Opp\(col\),sq\)\))828 2300 y Fl(if)g Fp(\(P)o(assed\(Opp\(col\),sq2\)\)) +888 2350 y(P)o(a)o(wnMass)h(=)g(P)o(a)o(wnMass)g(+)g(4)g Ff(\001)f +Fp(T)m(axicab\(sq,sq2\))888 2399 y(P)o(a)o(wnMass)h(=)g(P)o(a)o(wnMass)g(+)g +(T)m(axicab\(sq,PSq\(col,sq2\)\))828 2449 y Fl(else)957 2574 +y Fp(90)p eop +%%Page: 91 93 +91 92 bop 888 307 a Fp(P)o(a)o(wnMass)14 b(=)g(P)o(a)o(wnMass)g(+)g(T)m +(axicab\(sq,sq2\))828 357 y Fl(endif)769 407 y(endif)710 457 +y(endif)651 506 y(endfor)651 556 y Fh(P)6 b(C)714 562 y Fe(col;sq)811 +556 y Fp(=)14 b(\(P)o(a)o(wnMass/)p Fh(])p Fp(P)o(a)o(wns)g +Ff(\000)p Fp(8\))g Ff(\001)f Fp(\(revPhase)p Ff(\000)p Fp(8\))592 +606 y Fl(else)651 656 y Fp(0)592 706 y Fl(endif)262 832 y Fp(A)o(t)h(the)h(b) +q(eginning)f(of)g(the)h(game)e(the)i(king)e(is)i(encouraged)g(to)f(seek)i(a)e +(safe)h(ha)o(v)o(en)f(near)262 882 y(one)j(of)g(the)h(corner)g(squares.)29 +b(As)18 b(the)g(game)e(progresses)j(the)f(king)e(is)h(encouraged)i(to)262 +932 y(pla)o(y)12 b(a)h(more)g(activ)o(e)g(role.)18 b(Ev)o(en)o(tually)m(,)12 +b(the)i(king)f(will)f(receiv)o(e)i(more)f(b)q(on)o(us)h(p)q(oin)o(ts)f(for) +262 982 y(b)q(eing)h(in)g(the)g(cen)o(tre)i(than)f(near)f(the)h(edge)g(of)f +(the)h(b)q(oard.)k(Ho)o(w)o(ev)o(er,)14 b(this)g(c)o(hange)h(will)262 +1032 y(b)q(e)f(gradual)f(as)h(it)g(is)f(related)i(to)e(the)i(game)d(phase.) +324 1117 y(When)k(in)g(the)h(endgame,)f(the)h(king)e(gets)i(b)q(on)o(uses)h +(for)e(main)o(taining)d(an)j(optim)o(um)262 1167 y(distance)e(from)e(all)h +(the)h(pa)o(wns)g(with)g(particular)g(emphasis)f(on)g(passed)i(pa)o(wns.)957 +2574 y(91)p eop +%%Page: 92 94 +92 93 bop 262 307 a Fu(4.11.7)55 b(De\014nition)17 b(43)i(:)25 +b(Square)18 b(Con)n(trol)h(T)-5 b(able)p 641 413 673 5 v 641 +1077 5 665 v 646 496 a Fg(0Z0Z0Z0Z)646 579 y(Z0Z0Z0Z0)646 662 +y(0Z0Z0Z0Z)646 745 y(Z0Z0Z0Z0)646 828 y(0Z0Z0Z0Z)646 911 y(Z0Z0Z0Z0)646 +994 y(0Z0Z0Z0Z)646 1077 y(Z0Z0Z0Z0)p 1310 1077 V 641 1081 673 +5 v 687 473 a Fl(2)58 b(2)h(2)g(2)f(2)h(2)g(2)f(2)687 556 y(2)g(2)h(2)g(2)f +(2)h(2)g(2)f(2)687 639 y(2)g(2)h(2)g(2)f(2)h(2)g(2)f(2)687 +722 y(2)g(2)h(2)g(2)f(2)h(2)g(2)f(2)687 805 y(1)g(1)h(1)g(1)f(1)h(1)g(1)f(1) +687 888 y(1)g(1)h(1)g(1)f(1)h(1)g(1)f(1)687 971 y(1)g(1)h(1)g(1)f(1)h(1)g(1)f +(1)687 1054 y(1)g(1)h(1)g(1)f(1)h(1)g(1)f(1)383 1180 y Fp(Figure)14 +b(4.14:)j(Initial)12 b(W)m(eigh)o(tings)h(for)g(White's)h(Square)g(Con)o +(trol)f(T)m(able.)p 641 1280 V 641 1944 5 665 v 646 1363 a +Fg(0Z0Z0Z0Z)646 1446 y(Z0Z0Z0Z0)646 1529 y(0Z0Z0Z0Z)646 1612 +y(Z0Z0Z0Z0)646 1695 y(0Z0Z0Z0Z)646 1778 y(Z0Z0Z0Z0)646 1861 +y(0Z0Z0Z0Z)646 1944 y(Z0Z0Z0Z0)p 1310 1944 V 641 1948 673 5 +v 687 1341 a Fl(1)58 b(1)h(1)g(1)f(1)h(1)g(1)f(1)687 1424 y(1)g(1)h(1)g(1)f +(1)h(1)g(1)f(1)687 1507 y(1)g(1)h(1)g(1)f(1)h(1)g(1)f(1)687 +1590 y(1)g(1)h(1)g(1)f(1)h(1)g(1)f(1)687 1673 y(2)g(2)h(2)g(2)f(2)h(2)g(2)f +(2)687 1755 y(2)g(2)h(2)g(2)f(2)h(2)g(2)f(2)687 1838 y(2)g(2)h(2)g(2)f(2)h(2) +g(2)f(2)687 1921 y(2)g(2)h(2)g(2)f(2)h(2)g(2)f(2)388 2048 y +Fp(Figure)14 b(4.15:)j(Initial)c(W)m(eigh)o(tings)f(for)i(Blac)o(k's)f +(Square)i(Con)o(trol)e(T)m(able.)344 2195 y Fh(S)369 2201 y +Fe(col;sq)469 2195 y Fp(:)111 b Fl(for)15 b(eac)o(h)h(square)d +Fp(sq)h Fl(do)651 2245 y Fh(S)676 2251 y Fe(col;sq)774 2245 +y Fp(=)e Fh(S)r(T)869 2251 y Fe(col;sq)965 2245 y Fp(+)d Fh(P)d(L)1067 +2251 y Fe(col;sq)592 2295 y Fl(endfor)344 2394 y(where)380 +2444 y Fh(S)r(T)431 2450 y Fe(col;sq)531 2444 y Fp(:)49 b(Static)14 +b(w)o(eigh)o(tings)f(indexed)i(b)o(y)e(colour)h(and)g(square,)g(see)h +(\014gures)957 2574 y(92)p eop +%%Page: 93 95 +93 94 bop 592 307 a Fp(4.14)13 b(and)h(4.15)380 407 y Fh(P)6 +b(L)441 413 y Fe(col;sq)540 407 y Fp(:)40 b Fl(if)13 b Fp(\(PieceA)o(ttac)o +(k)i Ff(2)f Fh(P)6 b(l)q(anT)g(y)q(pe)1107 413 y Fe(col)1165 +407 y Fl(and)13 b Fp(OnWing\()p Fh(P)6 b(l)q(anW)g(ing)1622 +413 y Fe(col)1665 407 y Fp(,sq\))592 457 y Fl(and)13 b Fp(Side\(sq\))i(=)f +(Opp\(col\)\))651 506 y(2)592 556 y Fl(else)651 606 y Fp(0)592 +656 y Fl(endif)262 783 y Fp(This)k(table)g(will)e(b)q(e)j(used)g(b)o(y)f(the) +h(ev)n(aluation)e(function)h(criterion,)h(Square)g(Con)o(trol,)262 +832 y(to)14 b(help)h(direct)g(attac)o(ks.)21 b(The)15 b(table)f(is)h +(initially)d(set)j(up)g(to)f(encourage)i(attac)o(ks)f(in)f(the)262 +882 y(enem)o(y)9 b(half)h(of)g(the)h(b)q(oard.)17 b(This)11 +b(is)f(further)i(mo)q(di\014ed)d(dep)q(ending)i(on)g(the)g(plan)f(selected) +262 932 y(to)j(further)i(encourage)g(attac)o(ks)f(on)g(the)g(planned)g(attac) +o(k)g(wing.)957 2574 y(93)p eop +%%Page: 94 96 +94 95 bop 262 307 a Fr(4.12)69 b(De\014nition)20 b(44)j(:)30 +b(T)-6 b(otal)21 b(Ev)l(aluation)h(F)-6 b(unction)452 382 y(V)g(alue)344 +487 y Fh(T)6 b(E)r(F)g(V)464 493 y Fe(col)522 487 y Fp(=)62 +b Fh(M)5 b(T)685 493 y Fe(col)738 487 y Fp(+)10 b Fh(M)5 b(B)856 +493 y Fe(col)909 487 y Fp(+)10 b Fh(D)q(V)1010 493 y Fe(col)1064 +487 y Fp(+)f Fh(C)s(C)1168 493 y Fe(col)1221 487 y Fp(+)g Fh(S)r(C)1319 +493 y Fe(col)1373 487 y Fp(+)g Fh(P)d(V)1471 493 y Fe(col)1529 +487 y Fp(+)616 537 y Fh(N)f(V)678 543 y Fe(col)731 537 y Fp(+)10 +b Fh(B)r(V)830 543 y Fe(col)884 537 y Fp(+)f Fh(RV)981 543 +y Fe(col)1034 537 y Fp(+)h Fh(QV)1133 543 y Fe(col)1186 537 +y Fp(+)g Fh(K)s(V)1290 543 y Fe(col)1343 537 y Fp(+)g Fh(P)c(N)1451 +543 y Fe(col)1504 537 y Fp(+)j Fh(AP)1603 543 y Fe(col)344 +637 y Fl(where)380 686 y Fh(M)c(T)449 692 y Fe(col)498 686 +y Fp(:)47 b Fl(Material)14 b(\(De\014niti)o(on)f(1\).)380 786 +y Fh(M)5 b(B)456 792 y Fe(col)498 786 y Fp(:)47 b Fl(Mobilit)o(y)13 +b(\(De\014niti)o(on)f(3\).)380 886 y Fh(D)q(V)439 892 y Fe(col)498 +886 y Fp(:)47 b Fl(Dev)o(elopmen)o(t)12 b(\(De\014niti)o(on)g(4\).)380 +985 y Fh(C)s(C)443 991 y Fe(col)498 985 y Fp(:)47 b Fl(Cen)o(tre)14 +b(Con)o(trol)g(\(De\014niti)o(on)f(5\).)380 1085 y Fh(S)r(C)437 +1091 y Fe(col)498 1085 y Fp(:)47 b Fl(Square)15 b(Con)o(trol)e +(\(De\014nition)f(6\).)380 1185 y Fh(P)6 b(V)437 1191 y Fe(col)498 +1185 y Fp(:)47 b Fl(P)o(a)o(wn)15 b(V)l(alue)g(\(De\014niti)o(on)d(12\).)380 +1284 y Fh(N)5 b(V)442 1290 y Fe(col)498 1284 y Fp(:)47 b Fl(Knigh)o(t)14 +b(V)l(alue)g(\(De\014nitio)o(n)f(13\).)380 1384 y Fh(B)r(V)437 +1390 y Fe(col)498 1384 y Fp(:)47 b Fl(Bishop)14 b(V)l(alue)h(\(De\014nit)o +(ion)d(20\).)380 1483 y Fh(RV)436 1489 y Fe(col)498 1483 y +Fp(:)47 b Fl(Ro)q(ok)16 b(V)l(alue)f(\(De\014niti)o(on)d(25\).)380 +1583 y Fh(QV)437 1589 y Fe(col)498 1583 y Fp(:)47 b Fl(Queen)14 +b(V)l(alue)h(\(De\014niti)o(on)e(28\).)380 1683 y Fh(K)s(V)442 +1689 y Fe(col)498 1683 y Fp(:)47 b Fl(King)15 b(V)l(alue)g(\(De\014niti)o(on) +d(34\).)380 1782 y Fh(P)6 b(N)446 1788 y Fe(col)498 1782 y +Fp(:)47 b Fl(Pinned)13 b(Pieces)i(\(De\014niti)o(on)d(35\).)380 +1882 y Fh(AP)438 1888 y Fe(col)498 1882 y Fp(:)47 b Fl(A)o(ttac)o(k)o(ed)14 +b(Pieces)h(\(De\014nit)o(ion)d(36\).)262 2009 y Fp(The)j(ev)n(aluation)f +(function)h(will)f(return)j(a)e(single)g(v)n(alue)g(for)g(the)h(p)q(osition.) +22 b(T)m(o)14 b(ac)o(hiev)o(e)262 2059 y(this,)d(all)g(the)h(ev)n(aluation)e +(criteria)i(m)o(ust)f(b)q(e)h(summed.)k(The)c(p)q(osition)f(v)n(alue)g(from)f +(either)262 2108 y(sides)k(p)q(oin)o(t)g(of)f(view)h(can)g(then)g(b)q(e)h +(easily)e(calculated,)h(e.g.:)344 2206 y Fh(V)368 2212 y Fe(W)t(hite)477 +2206 y Fp(=)e Fh(T)6 b(E)r(F)g(V)641 2212 y Fe(W)t(hite)747 +2206 y Ff(\000)k Fh(T)c(E)r(F)g(V)909 2212 y Fe(B)q(lack)324 +2324 y Fp(A)19 b(v)o(ery)g(imp)q(ortan)o(t)e(decision)i(is)g(when)g(to)g +(apply)f(the)i(ev)n(aluation)e(function)g(to)h(a)262 2374 y(p)q(osition.)k +(After)17 b(a)f(lot)f(of)h(delib)q(eration,)f(I)h(decided)h(the)g(ev)n +(aluation)e(function)g(will)g(b)q(e)262 2424 y(applied)e(at)h(leaf)f(no)q +(des)h(of)g(the)g(main)e(searc)o(h)j(in)f(all)e(cases)j(except:)957 +2574 y(94)p eop +%%Page: 95 97 +95 96 bop 324 307 a Ff(\017)20 b Fp(It)14 b(is)g(nev)o(er)h(applied)e(if)g +(one)h(side)h(is)e(in-c)o(hec)o(k.)324 390 y Ff(\017)20 b Fp(It)14 +b(is)f(not)g(applied)g(if)f(the)i(de\014cit)g(b)q(et)o(w)o(een)h +Fh(\013)e Fp(and)g(the)h(curren)o(t)h(material)c(v)n(alue)i(is)365 +440 y(larger)h(than)f(the)i(greatest)g(p)q(ositional)d(v)n(alue)h(so)h(far)f +(encoun)o(tered)j(in)d(the)h(searc)o(h.)262 558 y(The)h(\014rst)h(condition)e +(a)o(v)o(oids)h(application)e(to)i(p)q(ositions)g(whic)o(h)g(are)h(clearly)e +(not)h(quies-)262 608 y(cen)o(t.)24 b(The)16 b(second)h(condition)e(attempts) +g(to)h(only)f(apply)g(the)h(ev)n(aluation)e(function)i(to)262 +658 y(p)q(ositions)d(whic)o(h)h(ha)o(v)o(e)g(a)f(reasonable)h(c)o(hance)h(of) +f(a\013ecting)g(the)g(searc)o(h)h(result.)957 2574 y(95)p eop +%%Page: 96 98 +96 97 bop 262 654 a Fn(Chapter)34 b(5)262 897 y Fo(T)-10 b(ree)40 +b(Searc)m(hing)262 1148 y Fp(The)11 b(ev)n(aluation)e(function)i(con)o(tains) +f(criteria)i(to)e(assess)j(p)q(ositional)c(and)i(tactical)f(v)n(alues.)262 +1198 y(The)17 b(tactical)f(ev)n(aluation)f(is)i(ho)o(w)o(ev)o(er,)g(far)g +(from)e(complete)h(in)g(terms)g(of)h(deriving)f(an)262 1248 +y(accurate)g(tactical)f(v)n(alue.)23 b(The)16 b(tactical)f(part)g(of)g(the)h +(ev)n(aluation)e(function)i(therefore,)262 1298 y(only)11 b(attempts)h(to)g +(giv)o(e)g(a)g(rough)g(estimate)f(of)h(the)h(tactical)f(p)q(ossibilities.)17 +b(It)12 b(tak)o(es)h(par-)262 1347 y(ticular)h(accoun)o(t)h(of)f(uncertain)o +(ties)i(in)f(the)g(p)q(osition.)20 b(F)m(or)15 b(example,)e(a)h(p)q(osition)g +(where)262 1397 y(t)o(w)o(o)e(pieces)j(are)f(sim)o(ultaneously)d(en-prise)k +(w)o(ould)d(constitute)j(a)e(degree)h(of)f(uncertain)o(t)o(y)262 +1447 y(ab)q(out)g(the)i(true)g(v)n(alue)e(of)g(the)i(p)q(osition.)324 +1532 y(A)f(sw)o(ap)g(o\013)g(algorithm)d([37)o(])i(could)h(ha)o(v)o(e)g(b)q +(een)h(additionally)c(used)k(to)f(impro)o(v)o(e)e(the)262 1582 +y(accuracy)18 b(of)f(this)g(tactical)g(v)n(alue.)28 b(Ho)o(w)o(ev)o(er,)18 +b(this)f(w)o(ould)g(still)f(not)h(tak)o(e)g(accoun)o(t)h(of)262 +1632 y(pinned)13 b(pieces)i(or)f(exc)o(hanges)h(whic)o(h)e(exp)q(ose)i +(hidden)f(attac)o(ks)g(on)g(other)g(squares.)19 b(The)262 1682 +y(added)c(complexit)o(y)d(in)o(v)o(olv)o(ed)i(in)g(attempting)f(to)i(correct) +h(these)g(faults)e(w)o(ould)g(b)q(e)h(v)o(ery)262 1732 y(exp)q(ensiv)o(e)h +(in)f(terms)f(of)h(pro)q(cessing)h(time.)21 b(Therefore,)16 +b(I)f(feel)h(suc)o(h)g(analysis)e(is)h(b)q(etter)262 1781 y(left)f(to)h(a)g +(dynamic)e(searc)o(h.)23 b(Using)15 b(v)n(arious)f(additional)g(tree)i +(pruning)f(mec)o(hanisms,)e(I)262 1831 y(hop)q(e)h(to)g(sho)o(w)f(that)h +(this)g(searc)o(h)h(can)f(b)q(e)h(done)f(e\016cien)o(tly)m(.)324 +1916 y(Hence,)f(it)f(is)g(imp)q(ortan)o(t)e(to)i(supp)q(ort)h(the)g(ev)n +(aluation)e(function)h(b)o(y)g(the)g(tree)i(searc)o(h-)262 +1966 y(ing)20 b(of)g(p)q(ossibilities.)39 b(This)20 b(will)g(enable)h(the)h +(program)d(to)i(explore)g(p)q(ossible)g(mo)o(v)o(e)262 2016 +y(sequences)f(and)e(therefore)h(c)o(hose)g(mo)o(v)o(es)d(whic)o(h)i(lead)g +(to)g(fa)o(v)o(ourable)e(p)q(ositional)h(and)262 2066 y(tactical)c(outcomes.) +324 2151 y(In)e(this)h(c)o(hapter,)h(I)f(will)e(explain)h(what)g(searc)o +(hing)h(sc)o(hemes)h(will)d(b)q(e)i(used)h(and)e(ho)o(w)h(I)262 +2201 y(in)o(tend)g(to)g(complemen)o(t)e(the)j(ev)n(aluation)d(function)i(b)o +(y)g(the)h(use)g(of)f(a)g(quiescence)i(searc)o(h.)324 2286 +y(The)k(o)o(v)o(erall)f(searc)o(h)h(pro)q(cedure)i(is)e(as)f(follo)o(ws:)24 +b(The)19 b(main)c(searc)o(h)k(will)d(progress)262 2336 y(iterativ)o(ely)f(to) +i(deep)q(er)h(lev)o(els)e(of)g(the)h(searc)o(h)h(tree.)27 b(Selected,)18 +b(more)e(in)o(teresting)h(lines)262 2386 y(will)g(b)q(e)j(extended.)36 +b(A)o(t)19 b(the)h(leaf)f(no)q(des)h(of)f(this)g(main)e(searc)o(h)k(tree)f +(the)g(ev)n(aluation)262 2436 y(function)c(will)e(b)q(e)j(applied.)25 +b(The)17 b(ev)n(aluation)e(function)h(ma)o(y)e(then)j(advise)g(the)f(searc)o +(h)957 2574 y(96)p eop +%%Page: 97 99 +97 98 bop 262 307 a Fp(to)13 b(tak)o(e)h(one)g(of)g(t)o(w)o(o)f(p)q(ossible)h +(actions:)312 426 y(1.)20 b(The)15 b(p)q(osition)f(is)g(suitable)g(for)g(the) +h(quiescence)i(searc)o(h)e(to)f(b)q(e)h(applied.)k(A)14 b(quies-)365 +475 y(cence)f(searc)o(h)g(will)c(then)j(b)q(e)g(used)g(to)f(explore)g(an)o(y) +g(dynamic)e(tactical)i(p)q(ossibilities)365 525 y(whic)o(h)i(need)h +(resolving.)j(This)c(will)e(allo)o(w)h(a)g(more)g(accurate)i(tactical)f(v)n +(alue)f(to)h(b)q(e)365 575 y(deriv)o(ed)g(at)f(the)g(leaf)g(no)q(de)g(than)g +(the)h(v)n(alue)e(calculated)i(purely)f(in)f(the)i(ev)n(aluation)365 +625 y(function.)32 b(The)19 b(main)d(searc)o(h)j(can)g(therefore)h(ha)o(v)o +(e)e(higher)h(con\014dence)h(in)e(the)365 675 y(\014nal)c(leaf)f(no)q(de)h(v) +n(alue)f(calculated.)312 758 y(2.)20 b(The)14 b(p)q(osition)f(is)g +(considered)i(to)e(b)q(e)h(to)q(o)f(unstable)h(for)f(the)h(quiescence)h +(searc)o(h)g(to)365 808 y(b)q(e)j(applied)f(accurately)m(.)28 +b(This)17 b(means)g(the)h(main)d(searc)o(h)j(should)f(b)q(e)h(extended)365 +857 y(in)e(order)g(to)g(resolv)o(e)h(the)f(uncertain)o(t)o(y)m(.)24 +b(This)16 b('Quiescence)i(Decision')d(ma)o(y)f(also)365 907 +y(cause)i(the)f(main)e(searc)o(h)j(to)e(b)q(e)i(re{en)o(tered)h(from)c(no)q +(des)i(that)g(are)g(already)f(part)365 957 y(of)g(the)g(quiescence)i(searc)o +(h.)262 1075 y(The)e(results)i(obtained)e(from)e(searc)o(hing)j(eac)o(h)g(no) +q(de)f(is)h(then)g(passed)g(bac)o(k)f(up)g(the)h(tree)262 1125 +y(where)10 b(searc)o(h)h(heuristics)g(can)f(mak)o(e)e(use)i(of)f(the)h +(information)d(in)i(searc)o(hing)h(other)g(no)q(des.)262 1175 +y(It)16 b(is)h(imp)q(ortan)o(t)e(to)i(realise)g(the)g(searc)o(h)h(tree)g +(explored)f(b)o(y)g(suc)o(h)g(a)g(searc)o(h)h(will)d(b)q(e)i(of)262 +1225 y(v)n(ariable)10 b(depth,)i(the)g(deep)q(est)h(lines)e(b)q(eing)g(those) +h(of)f(most)f(in)o(terest)i(to)g(the)f(searc)o(h.)19 b(This)262 +1275 y(sho)o(ws)13 b(some)f(similarities)f(to)h(the)i(w)o(a)o(y)e(h)o(umans)g +(approac)o(h)h(the)h(task)f(of)f(tree)j(searc)o(hing.)324 1360 +y(The)f(follo)o(wing)d(sections)k(explain)e(this)h(searc)o(h)h(pro)q(cess)h +(in)e(more)f(detail.)262 1533 y Fr(5.1)69 b(Main)23 b(Searc)n(h)262 +1659 y Fp(The)14 b(main)e(searc)o(h)j(will)e(use)i(the)f(alpha{b)q(eta)g(\()p +Fh(\013\014)r Fp(\))g(tree)i(pruning)e(algorithm)d(on)j(nega-)262 +1709 y(max)i(trees.)32 b(This)18 b(algorithm)d(has)k(man)o(y)d(deriv)n(ativ)o +(es)i(and)g(enhancemen)o(ts,)h(some)e(of)262 1759 y(whic)o(h)c(w)o(ere)i +(explained)f(in)f(c)o(hapter)i(3.)324 1844 y(A)o(t)j(\014rst)i(sigh)o(t,)e +(the)i(principle)e(v)n(ariation)f Fh(\013\014)j Fp(searc)o(h)g(\(PVS\))f(app) +q(ears)h(to)e(b)q(e)h(the)262 1894 y(b)q(est)c(algorithm)c(to)i(select)j(as)e +(it)f(t)o(ypically)g(visits)g(few)o(er)i(no)q(des)g(than)e(other)i +Fh(\013\014)h Fp(deriv)n(a-)262 1943 y(tiv)o(es)h([40)o(].)28 +b(Ho)o(w)o(ev)o(er,)19 b(I)e(in)o(tend)g(to)h(use)g(searc)o(h)g(extensions)h +(whic)o(h)e(actually)g(use)h(the)262 1993 y(v)n(alues)11 b(of)h(the)g(curren) +o(t)i Fh(\013\014)g Fp(windo)o(w)d(as)h(part)h(of)e(their)h(searc)o(h)h +(extension)g(decision.)18 b(This)262 2043 y(breaks)13 b(one)h(of)f(the)g(ma)r +(jor)f(principles)h(of)g(the)h Fh(\013\014)h Fp(algorithm)c(:-)h(the)i(v)n +(alue)f(of)f(a)h(mo)o(v)o(e)f(is)262 2093 y(indep)q(enden)o(t)j(of)e(the)i +Fh(\013\014)h Fp(windo)o(w)d(used)i(to)e(searc)o(h)i(it.)324 +2178 y(The)h(PV)h(searc)o(h)g(uses)h(a)d(minimal)d(windo)o(w)k(as)g(its)g +(basis.)25 b(When)16 b(the)h(searc)o(h)g(of)f(a)262 2228 y(subtree)c(fails)d +(high)h(\(score)i Ff(\025)f Fh(\014)r Fp(\),)h(it)e(is)g(re-searc)o(hed)j +(using)d(a)g(suitably)g(adjusted)h(windo)o(w.)262 2278 y(When)16 +b(the)h(v)n(alue)f(is)g(not)h(dep)q(enden)o(t)h(on)e(the)h(windo)o(w)f(used,) +h(ev)o(erything)g(w)o(orks)g(\014ne.)262 2328 y(Ho)o(w)o(ev)o(er,)d(if)f(the) +h(v)n(alue)g(is)g(dep)q(enden)o(t,)h(a)f(situation)f(could)h(arise)h(where)g +(a)f(mo)o(v)o(e)e(found)262 2377 y(whic)o(h)h(fails)g(high,)g(is)g(re-searc)o +(hed)k(with)c(an)h(enlarged)g(windo)o(w,)e(only)i(to)f(fail)g(lo)o(w.)k(This) +262 2427 y(violates)g(the)h(PVS's)h(abilit)o(y)d(to)i(searc)o(h)h(minim)o(al) +14 b(trees)20 b(for)d(all)g(mo)o(v)o(es)g(except)i(those)957 +2574 y(97)p eop +%%Page: 98 100 +98 99 bop 262 307 a Fp(whic)o(h)12 b(constitute)h(a)f(new)g(principle)g(v)n +(ariation.)k(This)c(can)g(cause)i(serious)f(problems)e(not)262 +357 y(only)i(for)g(the)i(e\016ciency)f(of)g(the)g(PVS,)g(but)g(also)f(for)h +(its)g(correctness.)324 442 y(I)19 b(also)f(wish)i(to)f(use)h(the)g(curren)o +(t)g(searc)o(h)h(windo)o(w)d(as)h(part)h(of)e(a)h(decision)g(as)h(to)262 +492 y(whether)15 b(to)e(apply)g(the)h(ev)n(aluation)f(function)g(at)h(a)f +(giv)o(en)g(no)q(de)h(in)f(the)i(tree.)k(After)14 b(all,)262 +542 y(if)j(the)h(de\014cit)h(b)q(et)o(w)o(een)g(the)f(required)h(score)g(\()p +Ff(\025)g Fh(\013)p Fp(\))f(necessary)i(to)d(e\013ect)j(the)e(searc)o(h)262 +592 y(result)e(and)f(the)h(curren)o(t)g(material)e(v)n(alue)g(is)h(so)h +(large)f(that)g(ev)o(en)h(the)g(maxim)n(um)11 b(p)q(osi-)262 +641 y(tional)h(v)n(alue)i(cannot)g(alter)g Fh(\013)p Fp(,)f(then)i(it)e(w)o +(ould)h(constitute)h(w)o(asted)f(e\013ort)h(to)f(apply)f(the)262 +691 y(ev)n(aluation)f(function.)18 b(This)c(approac)o(h)f(could)h(also)f(adv) +o(ersely)i(a\013ect)g(the)f(PV)g(searc)o(h.)324 777 y(These)k(problems)e +(lead)g(me)g(to)g(prefer)i(an)f(aspiration)f Fh(\013\014)j +Fp(searc)o(h.)27 b(Although)17 b(this)262 826 y(searc)o(h)e(algorithm)c(ma)o +(y)h(still)i(giv)o(e)f(rise)i(to)f(some)f(of)h(the)g(problems)g(already)f +(explained,)262 876 y(they)i(will)e(b)q(e)j(to)f(a)f(far)h(lesser)h(exten)o +(t.)23 b(The)15 b(imp)q(ortan)o(t)e(asp)q(ect)j(ab)q(out)f(this)g(algorithm) +262 926 y(as)g(far)g(as)h(searc)o(h)h(extensions)f(are)g(concerned,)i(is)d +(that)h(the)g Fh(\013\014)i Fp(v)n(alues)d(of)g(the)h(curren)o(t)262 +976 y(windo)o(w)10 b(constitute)j(the)f(true)g(b)q(est)h(score)f(attained)g +(b)o(y)f(eac)o(h)h(side.)17 b(The)12 b(only)f(exception)262 +1026 y(b)q(eing)18 b(when)h(one)g(\(or)g(b)q(oth\))g(of)f(the)i(initial)c +(aspiration)i Fh(\013\014)j Fp(b)q(ounds)f(are)f(still)f(b)q(eing)262 +1075 y(used.)26 b(Ev)o(en)17 b(in)f(this)h(case)g(the)g(initial)e(aspiration) +g(windo)o(w)h(can)g(b)q(e)i(sa)o(v)o(ed)e(and)g(tak)o(en)262 +1125 y(in)o(to)d(accoun)o(t)h(b)o(y)g(the)g(searc)o(h)h(extension)g +(heuristics.)324 1210 y(In)j(the)h(past,)g(I)g(ha)o(v)o(e)f(observ)o(ed)h +(man)o(y)e(commercial)e(c)o(hess)20 b(programs)d(whic)o(h)i(un-)262 +1260 y(doubtedly)c(use)i(an)f(aspiration)f Fh(\013\014)j Fp(searc)o(h.)25 +b(I)16 b(ha)o(v)o(e)f(also)h(noticed)g(in)f(some)g(p)q(ositions,)262 +1310 y(a)e(particular)g(searc)o(h)h(to)f(depth)i Fh(n)e Fp(tak)o(es)h +(considerably)f(longer)g(than)h(exp)q(ected.)19 b(This)14 b(is)262 +1360 y(b)q(ecause)i(of)f(a)g(problem)f(whic)o(h)h(I)g(b)q(eliev)o(e)h(can)f +(b)q(e)h(solv)o(ed)f(b)o(y)g(an)g(enhancemen)o(t)h(to)f(the)262 +1410 y(aspiration)g Fh(\013\014)k Fp(algorithm.)j(The)17 b(problem)e(is)h(as) +g(follo)o(ws:)21 b(A)c(searc)o(h)g(to)f(depth)h Fh(n)11 b Ff(\000)g +Fp(1)262 1460 y(deriv)o(es)18 b(a)f(v)n(alue)g(for)g(the)i(b)q(est)f(mo)o(v)o +(e)e(found.)29 b(This)18 b(v)n(alue)f(then)h(forms)e(the)i(basis)g(b)o(y)262 +1509 y(whic)o(h)e(the)h(new)g Fh(\013\014)i Fp(windo)o(w)d(is)h(set)g(for)g +(the)g(next)g(iteration.)26 b(A)17 b(searc)o(h)g(to)g(the)g(next)262 +1559 y(iteration)12 b(is)h(then)h(p)q(erformed.)k(If)12 b(this)i(searc)o(h)g +(disco)o(v)o(ers)g(something)e(whic)o(h)h(refutes)i(its)262 +1609 y(previous)f(analysis)f(\(b)q(ecause)j(of)d(the)h(horizon)g(e\013ect\),) +h(eac)o(h)g(and)e(ev)o(ery)i(mo)o(v)o(e)d(ma)o(y)g(fail)262 +1659 y(lo)o(w)h(in)h(turn.)21 b(This)15 b(will)e(tak)o(e)i(some)f(time)f(to)h +(o)q(ccur)i(at)f(the)g(greater)h(iteration)e(depths.)262 1709 +y(After)d(all)f(this)i(rather)g(w)o(asted)g(e\013ort,)g(a)f(re-searc)o(h)i +(is)e(then)h(necessary)h(with)e(an)g(adjusted)262 1758 y Fh(\013\014)16 +b Fp(windo)o(w.)324 1844 y(I)g(ha)o(v)o(e)h(found)f(that)g(if)g(the)h +(principle)g(mo)o(v)o(e)e(fails)g(lo)o(w)h(when)h(searc)o(hed,)h(then)g(it)e +(is)262 1893 y(b)q(etter)j(to)e(abandon)h(the)g(curren)o(t)h +Fh(\013\014)h Fp(windo)o(w)d(immediately)l(,)f(adjust)h(it)h(and)f(restart) +262 1943 y(the)f(iteration.)25 b(I)17 b(b)q(eliev)o(e)f(this)h(to)f(b)q(e)h +(a)f(b)q(etter)i(approac)o(h)e(b)q(ecause)i(if)e(the)h(b)q(est)g(mo)o(v)o(e) +262 1993 y(is)d(refuted,)i(it)f(is)f(lik)o(ely)g(that)h(all)f(other)h(mo)o(v) +o(es)f(will)f(b)q(e)j(similarly)11 b(refuted)16 b(when)g(using)262 +2043 y(the)f(same)f(searc)o(h)i(windo)o(w.)k(Of)15 b(course)h(this)f(ma)o(y)e +(not)i(alw)o(a)o(ys)f(b)q(e)i(the)f(case,)h(ho)o(w)o(ev)o(er,)262 +2093 y(I)f(b)q(eliev)o(e)h(the)g(sa)o(vings)g(will)e(clearly)h(out)o(w)o +(eigh)g(an)o(y)h(time)e(lost)h(when)h(a)o(v)o(eraged)g(o)o(v)o(er)g(a)262 +2143 y(n)o(um)o(b)q(er)10 b(of)g(games.)16 b(In)11 b(summary)m(,)d(b)q(oth)j +(fail)e(lo)o(ws)i(and)f(fail)g(highs)g(are)i(treated)g(similarly)262 +2192 y(at)h(the)i(\014rst)f(ply)m(.)324 2278 y(T)m(o)c(summarise,)f(m)o(y)g +(c)o(hosen)i(main)e(searc)o(h)j(will)d(consist)i(of)f(an)h(iterativ)o(e,)g +(depth)g(\014rst,)262 2327 y(aspiration)k Fh(\013\014)k Fp(searc)o(h)e(with)f +(the)h(enhancemen)o(ts)g(outlined)f(ab)q(o)o(v)o(e.)25 b(The)17 +b Fh(\013\014)h Fp(windo)o(w)262 2377 y(will)d(b)q(e)i(based)h(around)f(the)g +(result)h(of)e(the)i(previous)f(iteration)g(at)f(depths)i Ff(\025)f +Fp(2.)27 b(The)262 2427 y(initial)11 b(iteration)j(windo)o(w)f(will)f(b)q(e)j +(based)f(on)g(a)g(preliminary)d(analysis.)957 2574 y(98)p eop +%%Page: 99 101 +99 100 bop 262 307 a Fr(5.2)69 b(Searc)n(h)23 b(Extensions)262 +434 y Fp(The)12 b(basic)g(approac)o(h)g(when)g(using)f(an)o(y)h(of)f(the)h +Fh(\013\014)j Fp(deriv)n(ativ)o(es)c(is)h(to)g(searc)o(h)h(to)e(a)h(depth)262 +483 y(n,)17 b(ev)n(aluate)f(the)i(leaf)e(no)q(des)i(and)f(minim)o(ax)d(the)j +(results.)28 b(This)17 b(metho)q(d)f(exempli\014es)262 533 +y(the)e(full)f(width)g(approac)o(h.)18 b(Ho)o(w)o(ev)o(er,)c(it)g(su\013ers)h +(from)d(a)i(n)o(um)o(b)q(er)f(of)g(w)o(eaknesses:)312 652 y(1.)20 +b(The)15 b(searc)o(h)g(is)e(terminated)h(at)g(a)f(\014xed)h(depth,)h +(therefore,)g(the)f(ev)n(aluation)f(func-)365 701 y(tion)h(ma)o(y)e(b)q(e)j +(applied)f(to)g(non)g(quiescen)o(t)i(p)q(ositions)e(leading)f(to)h(grossly)h +(inaccu-)365 751 y(rate)g(results.)312 834 y(2.)20 b(This)c(approac)o(h)g +(mak)o(es)e(ine\016cien)o(t)i(use)h(of)e(the)i Fh(\013\014)h +Fp(algorithm)13 b(b)q(ecause)k(its)f(leaf)365 884 y(no)q(des)f(are)f +(inaccurately)g(ev)n(aluated.)312 967 y(3.)20 b(Equal)14 b(e\013ort)g(is)g +(applied)f(throughout)h(the)g(tree)i(with)d(resp)q(ect)j(to)e(depth.)19 +b(There-)365 1017 y(fore,)c(stupid)g(unin)o(teresting)g(v)n(ariations)e(are)i +(explored)g(as)g(deeply)g(as)g(in)o(teresting)365 1067 y(or)f(go)q(o)q(d)g(v) +n(ariations.)312 1150 y(4.)20 b(The)15 b(horizon)e(e\013ect)j(is)e(sev)o +(erely)h(exasp)q(erated)g(b)o(y)f(the)g(\014xed)h(depth)f(searc)o(h.)262 +1268 y(The)e(\014rst)g(t)o(w)o(o)f(problem)g(areas)h(can)g(b)q(e)g +(signi\014can)o(tly)f(eased)i(b)o(y)e(the)h(use)h(of)e(a)g(quiescence)262 +1318 y(searc)o(h)j(at)f(the)h(leaf)f(\(horizon\))h(no)q(des)g(of)f(a)g(main)e +(searc)o(h.)20 b(This)13 b(quiescence)i(searc)o(h)g(will)262 +1368 y(b)q(e)i(a)f(form)f(of)h(selectiv)o(e)i(searc)o(h,)g(only)e(exploring)f +(tactical)i(p)q(ossibilities.)25 b(See)18 b(section)262 1418 +y(5.4)12 b(for)i(more)f(details.)324 1503 y(It)f(is)g(surprising)g(ho)o(w)f +(man)o(y)f(commercial)f(and)j(tournamen)o(t)f(c)o(hess)j(programs)c(su\013er) +262 1553 y(from)16 b(the)i(third)g(problem)e(area.)30 b(I)18 +b(b)q(eliev)o(e)g(the)g(solution)f(to)h(this)g(problem)e(lies)i(in)f(a)262 +1603 y(program's)8 b(abilit)o(y)h(to)h(select)i(and)e(searc)o(h)i(in)o +(teresting)f(or)f(go)q(o)q(d)g(v)n(ariations)g(more)f(deeply)m(.)324 +1688 y(Harris)j([26)o(])f(prop)q(osed)i(a)e(similar)e(idea)j(of)f(exploring)g +(in)o(teresting)h(v)n(ariations,)e(except)262 1738 y(he)i(suggested)i(doing)e +(so)g(without)g(the)h Fh(\013\014)i Fp(algorithm.)g(Harris)e(omitted)e(sp)q +(eci\014c)j(details)262 1787 y(of)i(ho)o(w)i(his)f(ideas)h(migh)o(t)d(b)q(e)k +(implem)o(en)o(ted.)27 b(Levy)18 b(et)g(al)f([38)o(])g(ha)o(v)o(e)h(implem)o +(en)o(ted)e(a)262 1837 y(n)o(um)o(b)q(er)e(of)g(programs)g(using)g(the)i +(idea)e(of)h(in)o(terestingness,)h(ho)o(w)o(ev)o(er,)f(their)h(approac)o(h) +262 1887 y(to)10 b(classifying)g(in)o(teresting)i(mo)o(v)o(es)e(di\013ers)i +(from)d(the)j(approac)o(h)f(I)g(am)e(taking.)17 b(In)11 b(partic-)262 +1937 y(ular,)h(m)o(y)g(use)i(of)f(the)h(aspiration)e Fh(\013\014)k +Fp(searc)o(h)e(and)g(its)f(b)q(ounds)h(in)f(m)o(y)e(searc)o(h)k(extension)262 +1987 y(heuristics)g(is)e(no)o(v)o(el.)324 2072 y(I)j(de\014ne)i(an)e(in)o +(teresting)h(v)n(ariation)e(as)i(one)f(whic)o(h)h(con)o(tains)f(tactical)g +(mo)o(v)o(es)g(that)262 2122 y(o\013er)c(some)f(p)q(ossibilit)o(y)g(of)g +(a\013ecting)h(the)h(searc)o(h)g(result,)g(e.g.)k(pro)q(ducing)12 +b(a)g(score)h(whic)o(h)262 2172 y(is)h(inside)h(the)h Fh(\013\014)h +Fp(searc)o(h)f(windo)o(w.)k(I)15 b(de\014ne)h(go)q(o)q(d)e(v)n(ariations)g +(as)h(those)h(whic)o(h)e(w)o(ould)262 2221 y(a\013ect)g(the)h(searc)o(h)g +(result)g(if)e(the)h(searc)o(h)h(w)o(ere)g(terminated)e(immediately)l(.)324 +2307 y(Applying)j(these)j(de\014nitions)f(to)f(create)i(searc)o(h)g +(extension)f(heuristics,)h(I)f(hop)q(e)g(to)262 2356 y(encourage)f(the)g +(searc)o(h)h(to)e(explore)h(v)n(ariations)f(o\013ering)g(some)g(lik)o(eliho)q +(o)q(d)f(of)h(success,)262 2406 y(and)c(ignore)h(unin)o(teresting)h(v)n +(ariations)d(whic)o(h)i(o\013er)h(little)e(or)h(no)g(lik)o(eliho)q(o)q(d)e +(of)i(success.)957 2574 y(99)p eop +%%Page: 100 102 +100 101 bop 262 307 a Fp(This)12 b(approac)o(h)g(sho)o(ws)h(some)f +(similarities)e(to)i(the)h(w)o(a)o(y)f(h)o(umans)f(pla)o(y)h(the)h(game.)j +(Ho)o(w-)262 357 y(ev)o(er,)j(b)q(ecause)h(these)f(heuristics)h(are)e(far)g +(less)g(sophisticated)h(than)f(a)g(strong)g(h)o(uman)262 407 +y(c)o(hess)f(pla)o(y)o(ers,)f(the)g(program)f(will)f(attempt)h(to)h(bridge)g +(this)g(gap)g(b)o(y)f(exploring)g(man)o(y)262 457 y(more)c(v)n(ariations)h +(than)h(its)f(h)o(uman)f(coun)o(ter)j(part.)k(These)c(searc)o(h)g(extension)f +(heuristics)262 506 y(m)o(ust)i(therefore)i(b)q(e)g(free)g(enough)f(to)g +(extend)h(man)o(y)d(in)o(teresting)j(v)n(ariations,)e(but)h(also)262 +556 y(b)q(e)d(selectiv)o(e)h(enough)e(to)h(a)o(v)o(oid)e(the)i(searc)o(h)h +(blo)o(wing)d(sky)i(high.)k(A)c(searc)o(h)h(whic)o(h)e(is)h(not)262 +606 y(depth)i(limited)e(and)i(can)h(explore)f(in)o(teresting)h(v)n(ariations) +e(deeply)m(,)h(is)g(m)o(uc)o(h)f(less)i(lik)o(ely)262 656 y(to)d(su\013er)i +(from)e(the)h(horizon)g(e\013ect)h(\(problem)e(area)h(4\).)324 +741 y(In)j(order)h(to)f(determine)g(what)g(is)g(an)g(in)o(teresting)h(or)f +(go)q(o)q(d)f(v)n(ariation,)g(mo)o(v)o(es)g(are)262 791 y(classi\014ed)d(and) +f(receiv)o(e)i('p)q(oin)o(ts')d(dep)q(ending)i(on)g(ho)o(w)f(dynamic)f(eac)o +(h)i(mo)o(v)o(e)e(is.)17 b(In)o(terest)262 841 y(p)q(oin)o(ts)d(are)i(passed) +g(do)o(wn)e(the)i(searc)o(h)g(tree)g(from)d(no)q(de)j(to)f(no)q(de.)21 +b(Eac)o(h)16 b(ply)e(of)g(searc)o(h)262 891 y(deducts)i(16)e(p)q(oin)o(ts)g +(w)o(orth)h(of)f(in)o(terest)i(from)c(the)k(v)n(ariation.)i(When)d(the)g(in)o +(terest)h(falls)262 940 y(b)q(elo)o(w)f(zero,)j(the)e(no)q(de)h(will)e(b)q(e) +h(considered)i(as)e(a)g(leaf)g(or)g(horizon)g(no)q(de)g(of)g(the)h(main)262 +990 y(searc)o(h.)33 b(A)o(t)18 b(this)h(p)q(oin)o(t)f(a)g(quiescence)j +(decision)e(is)f(made,)g(leading)g(to)g(a)g(quiescence)262 +1040 y(searc)o(h)d(or)e(con)o(tin)o(uation)g(of)h(the)g(main)e(searc)o(h.)324 +1125 y(All)e(in)o(teresting)h(mo)o(v)o(es)f(are)h(classi\014ed)h(under)g(t)o +(w)o(o)e(categories,)i(Threats)g(and)f(Threat)262 1175 y(Execution.)262 +1326 y Fu(5.2.1)55 b(Threats)262 1438 y Fp(F)m(or)18 b(threatening)i(mo)o(v)o +(es)e(to)i(b)q(e)g(considered)g(in)o(teresting)g(they)g(m)o(ust)e(indicate)h +(some)262 1488 y(lik)o(eliho)q(o)q(d)14 b(of)h(a\013ecting)h(the)h(searc)o(h) +g(result)g(and)f(therefore)h(b)q(ecoming)e(the)i(main)d(line.)262 +1538 y(Assuming)j(a)i(negamax)e(approac)o(h,)j(the)f(no)q(de)h(resulting)f +(from)e(a)i(threatening)g(mo)o(v)o(e)262 1588 y(m)o(ust)12 +b(meet)i(the)g(follo)o(wing)e(criteria:)344 1683 y(Est)j(+)f(Thres)h +Fh(>)d(\013)h Fl(or)h Fh(\013)f Fp(=)h(Aspir)p Fh(\013)262 +1783 y Fl(where)312 1904 y Fp(1.)20 b Fl(Est)p Fp(:)j(This)17 +b(is)f(an)g(estimate)g(of)g(the)h(curren)o(t)h(no)q(de's)f(v)n(alue,)f +(mostly)f(dominated)365 1954 y(b)o(y)f(material.)312 2036 y(2.)20 +b Fl(Thres)p Fp(:)c(Represen)o(ts)e(the)e(v)n(alue)f(of)g(ha)o(ving)g(the)h +(mo)o(v)o(e)e(\(a)i(temp)q(o\))e(and)i(what)g(that)365 2086 +y(mo)o(v)o(e)h(migh)o(t)e(ac)o(hiev)o(e.)312 2168 y(3.)20 b +Fh(\013)p Fp(:)f(This)c(is)f(the)h(curren)o(t)h(v)n(alue)e(of)g(alpha)f(at)i +(this)f(no)q(de,)h(whic)o(h)f(therefore)i(repre-)365 2218 y(sen)o(ts)e +(either)g(the)f(v)n(alue)f(of)g(the)h(b)q(est)h(v)n(ariation)c(found)j(for)f +(this)h(side)g(elsewhere)h(in)365 2267 y(the)h(searc)o(h)g(tree)g(or)f(an)f +(initial)f(aspiration)h(v)n(alue.)312 2350 y(4.)20 b Fl(Aspir)p +Fh(\013)p Fp(:)15 b(This)d(is)f(the)i(initial)d(aspiration)g(v)n(alue)i(used) +g(for)g(the)g(b)q(est)h(v)n(alue)e(ac)o(hiev-)365 2399 y(able)k(b)o(y)g(the)h +(curren)o(t)h(side)f(to)f(mo)o(v)o(e.)21 b(A)o(t)15 b(ev)o(en)h(depths)g(b)q +(elo)o(w)f(the)h(ro)q(ot,)f(this)h(is)365 2449 y(the)f(initial)d +Fh(\013)h Fp(v)n(alue;)g(at)h(o)q(dd)g(depths,)g(it)g(is)f(the)i(initial)d +Fh(\014)k Fp(v)n(alue.)946 2574 y(100)p eop +%%Page: 101 103 +101 102 bop 262 307 a Fp(The)11 b(idea)f(of)g(this)g(heuristic)i(is)e(to)h +(exclude)g(mo)o(v)o(es)e(whic)o(h)i(ma)o(y)d(otherwise)k(b)q(e)f(in)o +(teresting)262 357 y(if)e(they)i(are)g(unlik)o(ely)f(to)g(c)o(hange)h(the)g +(curren)o(t)i Fh(\013)d Fp(v)n(alue.)16 b(This)11 b(v)n(alue)f(after)g(all,)g +(represen)o(ts)262 407 y(the)g(score)i(of)e(the)g(b)q(est)i(v)n(ariation)c +(that)j(the)g(side)f(to)g(mo)o(v)o(e)f(can)h(ac)o(hiev)o(e.)17 +b(Of)11 b(course)g(if)f(this)262 457 y(score)15 b(happ)q(ens)g(to)g(b)q(e)g +(an)f(aspiration)g(v)n(alue,)f(then)i(the)g(score)h(of)d(the)i(b)q(est)h(v)n +(ariation)d(is)262 506 y(not)d(y)o(et)h(kno)o(wn,)f(it)g(w)o(ould)g +(therefore)i(b)q(e)f(un)o(wise)g(to)f(assume)g(that)h(the)g(curren)o(t)h(v)n +(ariation)262 556 y(cannot)i(a\013ect)g(the)h(searc)o(h)g(result.)324 +641 y(The)e(e\013ect)h(of)d(this)i(heuristic)g(is)f(to)g(a)o(v)o(oid)f +(extending)i(when)g(the)g(line)f(app)q(ears)h(fruit-)262 691 +y(less)j(relativ)o(e)g(to)f(what)h(can)g(b)q(e)h(ac)o(hiev)o(ed)f(elsewhere)h +(in)f(the)g(tree.)25 b(F)m(or)16 b(example,)e(it)i(is)262 741 +y(lik)o(ely)e(to)i(b)q(e)h(w)o(orthless)g(exploring)f(a)f(v)n(ariation)g +(whic)o(h)h(wins)g(a)g(pa)o(wn)g(after)g(thro)o(wing)262 791 +y(a)o(w)o(a)o(y)10 b(a)h(queen,)h(when)g(another,)g(b)q(etter)h(v)n(ariation) +c(is)j(already)f(kno)o(wn)f(to)i(b)q(e)g(ac)o(hiev)n(able.)324 +876 y(Giv)o(en)i(that)i(the)g(ab)q(o)o(v)o(e)f(criteria)g(are)h(met,)f(the)g +(follo)o(wing)e(threatening)j(mo)o(v)o(es)e(are)262 926 y(classi\014ed)e(and) +g(the)g(appropriate)g(in)o(terest)h(p)q(oin)o(ts)f(added)g(to)f(the)i(curren) +o(t)g(in)o(terest)g(v)n(alue)262 976 y(at)g(this)h(no)q(de.)312 +1093 y(1.)20 b Fl(In-c)o(hec)o(k)15 b(with)g(one)g(legal)f(reply)365 +1159 y Fp(This)c(heuristic)g(pro)o(vides)f(a)h(searc)o(h)g(extension)g(along) +f(v)n(ariations)f(whic)o(h)h(are)h(highly)365 1209 y(forced.)21 +b(Often)15 b(mating)d(sequences)17 b(in)o(v)o(olv)o(e)c(forced)i(c)o(hec)o +(ks)h(where)f(there)h(is)e(only)365 1258 y(one)g(legal)f(resp)q(onse.)20 +b Fm(R)n(e)n(c)n(eives)15 b(24)g(p)n(oints)g(of)g(inter)n(est)p +Fp(.)312 1341 y(2.)20 b Fl(Double)14 b(Chec)o(k)365 1407 y +Fp(This)k(heuristic)h(pro)o(vides)f(a)f(searc)o(h)j(extension)e(when)g(a)g +(side)g(is)g(in-c)o(hec)o(k)g(from)365 1456 y(more)12 b(than)h(one)h(piece.)k +(By)c(de\014nition)e(this)i(m)o(ust)e(additionally)e(b)q(e)k(a)f(disco)o(v)o +(ered)365 1506 y(c)o(hec)o(k.)24 b(Extensions)16 b(along)e(v)n(ariations)g +(in)o(v)o(olving)f(double)i(c)o(hec)o(k)i(are)e(imp)q(ortan)o(t)365 +1556 y(as)f(it)g(is)g(implicit)d(that)j(at)f(least)h(t)o(w)o(o)g(pieces)h +(are)f(co{op)q(erating)g(in)g(the)g(attac)o(k)g(on)365 1606 +y(the)h(king.)i Fm(R)n(e)n(c)n(eives)e(24)g(p)n(oints)g(of)g(inter)n(est.)312 +1688 y Fp(3.)20 b Fl(Disco)o(v)o(ered)13 b(Single)h(Chec)o(k)365 +1754 y Fp(This)k(heuristic)h(pro)o(vides)f(a)f(searc)o(h)j(extension)e(when)g +(a)g(side)g(is)g(in-c)o(hec)o(k)g(from)365 1804 y(a)f(disco)o(v)o(ered)g +(attac)o(k.)26 b(It)16 b(is)h(implicit)d(that)i(the)h(piece)h(mo)o(v)o(ed)d +(is)h(not)h(the)g(piece)365 1854 y(giving)g(c)o(hec)o(k.)31 +b(As)18 b(this)g(e\013ectiv)o(ely)h(giv)o(es)f(the)h(mo)o(ving)c(piece)k(a)e +(free)i(mo)o(v)o(e,)e(it)365 1904 y(is)e(v)o(ery)f(imp)q(ortan)o(t)f(to)h +(explore)h(suc)o(h)g(mo)o(v)o(es)e(throughly)m(.)19 b Fm(R)n(e)n(c)n(eives)c +(20)h(p)n(oints)g(of)365 1953 y(inter)n(est.)312 2036 y Fp(4.)k +Fl(In-c)o(hec)o(k)15 b(with)g(no)g(legal)g(king)f(reply)365 +2102 y Fp(This)f(heuristic)h(pro)o(vides)f(a)g(searc)o(h)h(extension)g(when)g +(a)e(side)i(is)f(in-c)o(hec)o(k)g(and)g(the)365 2151 y(king)e(has)g(no)g +(legal)f(escap)q(e)j(mo)o(v)o(es.)j(The)11 b(idea)g(b)q(eing)g(to)g(iden)o +(tify)f(p)q(ossible)i(mating)365 2201 y(nets.)19 b Fm(R)n(e)n(c)n(eives)c(20) +h(p)n(oints)f(of)f(inter)n(est.)312 2283 y Fp(5.)20 b Fl(In-c)o(hec)o(k)15 +b(with)g(more)g(than)g(one)g(legal)f(reply)365 2350 y Fp(This)i(heuristic)h +(is)e(common)e(to)j(a)f(n)o(um)o(b)q(er)h(of)f(top)g(programs,)g(Hitec)o(h)h +(included)365 2399 y([7].)j(Ho)o(w)o(ev)o(er,)c(m)o(y)d(program)h(is)i(more)e +(selectiv)o(e)j(b)q(ecause)g(this)f(heuristic)g(is)f(only)365 +2449 y(applied)k(where)i(the)f(searc)o(h)h(result)f(is)g(lik)o(ely)e(to)h(b)q +(e)h(a\013ected.)34 b(I)18 b(feel)h(this)f(is)h(a)946 2574 +y(101)p eop +%%Page: 102 104 +102 103 bop 365 307 a Fp(signi\014can)o(t)21 b(adv)n(an)o(tage)e(o)o(v)o(er)i +(its)g(otherwise)h(unrestricted)h(application.)37 b(It)21 b(is)365 +357 y(imp)q(ortan)o(t)14 b(to)i(explore)g(in)f(c)o(hec)o(k)i(v)n(ariations)d +(throughly)h(b)q(ecause)j(other)e(tactics)365 407 y(ma)o(y)c(\015o)o(w)i +(from)e(a)h(c)o(hec)o(k.)19 b Fm(R)n(e)n(c)n(eives)c(16)h(p)n(oints)f(of)f +(inter)n(est.)312 488 y Fp(6.)20 b Fl(P)o(a)o(wn)15 b(mo)o(v)o(es)g(to)h(the) +e(7th)h(Rank)365 553 y Fp(This)22 b(heuristic)g(encourages)h(exploration)e +(of)g(v)n(ariations)f(where)j(the)f(pa)o(wn)g(is)365 603 y(pushed)15 +b(near)g(to)e(promotion.)j Fm(R)n(e)n(c)n(eives)f(16)g(p)n(oints)g(of)g +(inter)n(est.)312 684 y Fp(7.)20 b Fl(P)o(a)o(wn)15 b(mo)o(v)o(es)g(to)h(the) +e(6th)h(Rank)365 749 y Fp(This)g(is)g(a)f(subset)j(of)d(the)h(ab)q(o)o(v)o(e) +g(heuristic)g(and)g(serv)o(es)i(to)d(increase)i(exploration)365 +799 y(of)e(p)q(ositions)g(where)i(passed)f(pa)o(wns)g(can)g(b)q(e)g(pushed,)g +(esp)q(ecially)g(in)f(or)g(near)h(the)365 849 y(endgame.)i +Fm(R)n(e)n(c)n(eives)e(r)n(evPhase)g(p)n(oints)g(of)g(inter)n(est.)312 +929 y Fp(8.)20 b Fl(Piece)15 b(Threats)365 995 y Fp(The)d(follo)o(wing)d +(searc)o(h)k(heuristics)g(are)f(concerned)i(with)d(threats)i(on)e(pieces)i +(of)e(the)365 1045 y(side)k(curren)o(tly)f(to)g(mo)o(v)o(e:)383 +1125 y(\(a\))21 b Fl(More)15 b(than)g(one)g(piece)g(is)g(en-prise)457 +1182 y Fm(R)n(e)n(c)n(eives)g(16)g(p)n(oints)g(of)g(inter)n(est.)381 +1247 y Fp(\(b\))21 b Fl(A)16 b(pinned)d(piece)h(whic)o(h)h(is)g(en-prise)457 +1304 y Fm(R)n(e)n(c)n(eives)g(16)g(p)n(oints)g(of)g(inter)n(est.)385 +1368 y Fp(\(c\))22 b Fl(A)16 b(trapp)q(ed)e(piece)g(whic)o(h)h(is)g(en-prise) +457 1425 y Fm(R)n(e)n(c)n(eives)g(16)g(p)n(oints)g(of)g(inter)n(est.)365 +1506 y Fp(These)22 b(heuristics)g(pro)o(vide)e(searc)o(h)h(extensions)h +(along)d(v)n(ariations)g(of)h(complex)365 1556 y(dynamic)c(p)q(ossibilities.) +30 b(The)18 b(quiescence)i(searc)o(h)f(will)d(resolv)o(e)i(suc)o(h)h(p)q +(ositions)365 1605 y(when)f(the)h(threatened)g(pla)o(y)o(er)e(is)h +Fl(not)e Fp(to)i(mo)o(v)o(e.)27 b(Hence)19 b(these)g(heuristics)g(are)365 +1655 y(only)d(applied)h(in)f(p)q(ositions)h(where)h(the)f(threatened)i(pla)o +(y)o(er)e(has)g(the)g(mo)o(v)o(e.)26 b(In)365 1705 y(this)11 +b(w)o(a)o(y)f(the)i(pla)o(y)o(er)e(m)o(ust)g(sho)o(w)h(the)g(existence)i(of)d +(an)g(adequate)i(defensiv)o(e)f(mo)o(v)o(e)365 1755 y(or)j(the)h(ensuing)f +(quiescence)i(searc)o(h)f(will)d(refute)j(the)g(v)n(ariation.)312 +1836 y(9.)20 b Fl(Mate)c(threat)e(against)h(the)g(side)f(to)h(mo)o(v)o(e)365 +1901 y Fp(This)10 b(heuristic)g(pro)o(vides)g(a)g(searc)o(h)g(extension)h +(when)f(mate)e(is)i(directly)g(threatened)365 1951 y(against)i(the)i(side)f +(to)f(mo)o(v)o(e.)k(This)d(will)e(force)j(exploration)d(of)i(v)n(ariations)e +(to)i(sho)o(w)365 2001 y(whether)18 b(the)e(mate)f(threat)i(can)f(b)q(e)g +(defended)h(against.)24 b Fm(R)n(e)n(c)n(eives)17 b(24)g(p)n(oints)g(of)365 +2051 y(inter)n(est.)262 2165 y Fp(Searc)o(h)c(heuristics)h(8a,)e(8b,)h(8c)g +(and)f(9)h(are)g(only)f(applied)g(during)h(the)g(quiescence)i(searc)o(h)262 +2214 y(after)k(a)g(full)g(p)q(ositional)f(ev)n(aluation.)33 +b(An)o(y)19 b(of)g(the)h(heuristics)h(1)e(through)g(6)g(can)h(b)q(e)262 +2264 y(applied)14 b(in)g(either)i(the)g(main)c(or)j(quiescence)i(searc)o +(hes.)23 b(More)16 b(details)f(ab)q(out)f(this)h(can)262 2314 +y(b)q(e)f(found)f(in)h(sections)h(5.3)e(and)g(5.4.)18 b(Heuristics)d(1)e(to)h +(5)g(are)g(m)o(utually)d(exclusiv)o(e.)324 2399 y(Eac)o(h)h(ply)f(of)g(searc) +o(h)i(consumes)f(16)g(in)o(terest)h(p)q(oin)o(ts.)k(It)12 b(can)g(therefore)h +(b)q(e)f(seen)i(that)262 2449 y(some)j(heuristics)j(whic)o(h)e(equal)g(or)h +(exceed)h(an)e(in)o(terest)i(v)n(alue)e(of)g(16)g(ma)o(y)e(in)i(theory)946 +2574 y(102)p eop +%%Page: 103 105 +103 104 bop 262 307 a Fp(cause)15 b(the)f(searc)o(h)h(to)f(b)q(e)h(un)o(b)q +(ounded.)j(Ho)o(w)o(ev)o(er,)c(in)g(practice)h(this)f(should)g(not)f(b)q(e)i +(the)262 357 y(case)f(as:)324 464 y Ff(\017)20 b Fp(It)14 b(is)g(rare)h(to)e +(get)h(out)g(of)g(c)o(hec)o(k)g(with)g(a)g(c)o(hec)o(k)g(mo)o(v)o(e)f +(itself.)324 541 y Ff(\017)20 b Fp(Heuristics)15 b(8a,)d(8b,)h(8c)g(and)g(9)g +(are)g(only)g(applied)f(once)i(or)f(t)o(wice)h(do)o(wn)e(an)o(y)h(giv)o(en) +365 591 y(v)n(ariation.)324 669 y Ff(\017)20 b Fp(Heuristics)15 +b(6)f(and)g(7)f(are)i(self)f(limiti)o(ng)d(as)j(a)g(pa)o(wn)f(can)h(only)f +(mo)o(v)o(e)g(forw)o(ard.)262 776 y(F)m(or)19 b(added)i(protection)g(against) +e(an)h(un)o(b)q(ounded)h(searc)o(h,)h(all)d(no)q(des)i(visited)f(in)g(the)262 +826 y(main)9 b(searc)o(h)14 b(whic)o(h)e(are)g(deep)q(er)i(than)e(t)o(wice)g +(the)h(iteration)e(depth,)i(ha)o(v)o(e)f(their)g(in)o(terest)262 +875 y(v)n(alue)e(decreased)k(b)o(y)d(the)h(amoun)o(t)e(whic)o(h)h(the)h +(curren)o(t)h(ply)e(exceeds)i(t)o(wice)f(the)g(iteration)262 +925 y(depth.)262 1074 y Fu(5.2.2)55 b(Threat)18 b(Execution)262 +1186 y Fp(The)d(execution)h(of)f(a)g(previous)h(threat)g(is)f(only)f(in)o +(teresting)i(if)e(at)i(the)g(curren)o(t)g(no)q(de)g(it)262 +1236 y(lo)q(oks)d(lik)o(ely)f(to)i(a\013ect)h(the)f(searc)o(h)h(result.)324 +1322 y(F)m(or)20 b(an)o(y)g(mo)o(v)o(e)e(whic)o(h)i(constitutes)i(the)f +(execution)g(of)f(a)g(threat,)i(the)f(follo)o(wing)262 1371 +y(criteria)14 b(m)o(ust)f(b)q(e)h(meet)g(for)f(the)i(mo)o(v)o(e)d(to)i(b)q(e) +g(further)h(considered)g(as)f(in)o(teresting:)344 1457 y(Est)h +Ff(\000)f Fp(Thres)h Fh(<)d(\014)k Fl(or)e Fh(\014)i Fp(=)e(Aspir)p +Fh(\014)262 1557 y Fl(where)312 1656 y Fp(1.)20 b Fl(Est)p +Fp(:)j(This)17 b(is)f(an)g(estimate)g(of)g(the)h(curren)o(t)h(no)q(de's)f(v)n +(alue,)f(mostly)f(dominated)365 1706 y(b)o(y)f(material)e(v)n(alues.)312 +1783 y(2.)20 b Fl(Thres)p Fp(:)c(Represen)o(ts)e(the)e(v)n(alue)f(of)g(ha)o +(ving)g(the)h(mo)o(v)o(e)e(\(a)i(temp)q(o\))e(and)i(what)g(that)365 +1833 y(mo)o(v)o(e)h(migh)o(t)e(ac)o(hiev)o(e.)312 1910 y(3.)20 +b Fh(\014)r Fp(:)d(This)10 b(is)g(the)h(curren)o(t)h(v)n(alue)d(of)h(b)q(eta) +g(at)g(this)g(no)q(de,)h(whic)o(h)f(therefore)i(represen)o(ts)365 +1960 y(either)k(the)g(v)n(alue)e(of)h(the)g(b)q(est)h(v)n(ariation)e(found)g +(for)h(this)g(side)g(elsewhere)i(in)e(the)365 2010 y(searc)o(h)g(tree)g(or)f +(an)g(initial)e(aspiration)h(v)n(alue.)312 2087 y(4.)20 b Fl(Aspir)p +Fh(\014)r Fp(:)c(This)c(is)g(the)g(initial)e(aspiration)h(v)n(alue)g(used)i +(for)e(the)i(b)q(est)g(v)n(alue)e(ac)o(hiev-)365 2137 y(able)k(b)o(y)f(the)h +(side)g Fl(not)f Fp(to)g(mo)o(v)o(e.)19 b(A)o(t)c(ev)o(en)g(depths)h(b)q(elo) +o(w)e(the)h(ro)q(ot,)g(this)f(is)h(the)365 2187 y(initial)d +Fh(\014)17 b Fp(v)n(alue;)12 b(at)i(o)q(dd)g(depths,)h(it)e(is)h(the)g +(initial)e Fh(\013)i Fp(v)n(alue.)262 2300 y(This)20 b(heuristic)h(is)f +(almost)f(an)h(exact)h(mirror)e(image)f(of)i(the)h(one)g(used)g(for)f +(threats.)262 2350 y(Giv)o(en)e(that)h(the)h(ab)q(o)o(v)o(e)f(criteria)g(are) +h(met,)f(the)h(follo)o(wing)c(threat)k(execution)g(mo)o(v)o(es)262 +2399 y(are)13 b(classi\014ed)g(and)g(their)g(appropriate)g(in)o(terest)g(p)q +(oin)o(ts)g(added)g(to)g(the)g(curren)o(t)h(in)o(terest)262 +2449 y(v)n(alue)f(at)g(this)h(no)q(de.)946 2574 y(103)p eop +%%Page: 104 106 +104 105 bop 312 307 a Fp(1.)20 b Fl(Capture)365 374 y Fp(This)h(heuristic)h +(encourages)g(exploration)e(of)g(in)o(teresting)i(capture)g(sequences.)365 +423 y(P)o(articularly)c(where)h(greater)g(v)n(alued)e(pieces)j(are)e(in)o(v)o +(olv)o(ed.)30 b Fm(R)n(e)n(c)n(eives)18 b(inter)n(est)365 473 +y(p)n(oints)d(dep)n(ending)h(on)f(the)f(typ)n(e)h(of)g(pie)n(c)n(e)f(c)n +(aptur)n(e)n(d,)g(wher)n(e)g(p)n(awn)h(=)f(1;)h(knight)g(=)365 +523 y(2;)g(bishop)g(=)g(3;)g(r)n(o)n(ok)g(=)f(4)h(and)h(que)n(en)g(=)e(5.)312 +606 y Fp(2.)20 b Fl(P)o(a)o(wn)15 b(Promotion)365 672 y Fp(This)d(heuristic)g +(also)f(encourages)i(exploration)d(of)h(v)n(ariations)f(whic)o(h)i(are)g(in)o +(terest-)365 722 y(ing.)20 b(Assuming)13 b(the)i(promoted)f(pa)o(wn)g(cannot) +h(b)q(e)g(captured,)h(the)f(mo)o(v)o(e)e(is)h(v)o(ery)365 772 +y(lik)o(ely)k(to)h(b)q(e)h(go)q(o)q(d)f(and)g(therefore)h(in)o(teresting.)35 +b(If,)19 b(ho)o(w)o(ev)o(er,)i(the)f(promoted)365 822 y(pa)o(wn)13 +b(can)h(b)q(e)g(captured,)g(the)g(opp)q(onen)o(ts)h(options)e(ha)o(v)o(e)g(a) +g(degree)i(of)e(forcedness)365 872 y(ab)q(out)k(them)f(whic)o(h)h(therefore,) +h(also)e(mak)o(es)g(this)h(mo)o(v)o(e)e(in)o(teresting.)28 +b Fm(R)n(e)n(c)n(eives)365 922 y(inter)n(est)13 b(p)n(oints)g(dep)n(ending)i +(on)f(the)f(typ)n(e)h(of)f(pie)n(c)n(e)h(pr)n(omote)n(d)f(to,)g(wher)n(e)g +(knight)h(=)365 971 y(1;)h(bishop)g(=)g(2;)g(r)n(o)n(ok)g(=)f(3)h(and)h(que)n +(en)g(=)e(4.)312 1054 y Fp(3.)20 b Fl(Recapture)365 1121 y +Fp(This)12 b(heuristic)g(is)f(used)i(in)e(Hitec)o(h)h([7)o(].)17 +b(I)12 b(feel)f(it)g(is)h(of)f(great)h(b)q(ene\014t)g(in)g(that)f(it)g(en-) +365 1171 y(courages)j(not)e(only)g(exploration)g(of)g(simple)f(exc)o(hanges,) +j(but)f(also)f(captures)i(with)365 1220 y(p)q(ositional)h(con)o(ten)o(t)i +(e.g.)25 b(a)16 b(ro)q(ok)g(exc)o(hanged)h(for)f(knigh)o(t)f(and)h(p)q +(ositional)f(com-)365 1270 y(p)q(ensation.)k(This)14 b(heuristic)h(is)f(only) +f(applied)28 b(if:)17 b Ff(j)p Fh(LastS)r(ear)q(chV)11 b(al)q(ue)e +Ff(\000)h Fh(E)r(st)p Ff(j)h(\024)365 1320 y Fp(25)18 b(and)h(the)g(last)g(2) +f(mo)o(v)o(es)f(pla)o(y)o(ed)h(w)o(ere)i(captures.)66 b Fm(R)n(e)n(c)n(eives) +20 b(16)f(p)n(oints)h(of)365 1370 y(inter)n(est.)312 1453 y +Fp(4.)g Fl(Mate)c(Threat)f(against)f(the)h(side)g(not)g(to)g(mo)o(v)o(e)365 +1519 y Fp(This)20 b(heuristic)g(is)g(only)f(applied)g(during)g(the)i +(quiescence)h(searc)o(h)e(after)g(a)g(full)365 1569 y(p)q(osition)15 +b(ev)n(aluation.)20 b(It)15 b(is)g(extremely)g(useful)g(for)g(a)o(v)o(oiding) +e(early)i(termination)365 1619 y(of)e(the)h(searc)o(h)h(in)d(p)q(ossible)i +(mating)d(sequences.)21 b Fm(R)n(e)n(c)n(eives)14 b(16)h(p)n(oints)f(of)h +(inter)n(est.)262 1737 y Fp(It)g(should)h(b)q(e)g(noticed)g(that)f(some)g(of) +g(m)o(y)f(de\014nitions)i(of)f(in)o(terestingness)i(attempt)e(to)262 +1787 y(measure)c(the)i(forcedness)g(of)f(mo)o(v)o(es)e(and)i(replies.)18 +b(In)12 b(this)g(w)o(a)o(y)f(I)g(hop)q(e)i(to)e(ac)o(hiev)o(e)h(some)262 +1837 y(of)k(the)i(b)q(ene\014ts)i(found)d(b)o(y)g(F)m(eng-hsiung)g(Hsu)h(and) +f(his)h(team)e(in)h(their)h(recen)o(t)h(pap)q(er)262 1887 y("Singular)12 +b(Extensions:)19 b(Adding)13 b(Selectivit)o(y)h(to)g(Brute-F)m(orce)i(Searc)o +(hing")d([3].)324 1972 y(Unlik)o(e)g(singular)g(extensions)i(m)o(y)d(approac) +o(h)h(attempts)g(to)h(classify)f(forcedness)j(in)d(a)262 2022 +y(more)e(static)i(w)o(a)o(y)f(in)g(order)h(to)f(a)o(v)o(oid)f(exp)q(ensiv)o +(e)j(test)f(depth)g(searc)o(hes.)20 b(Therefore,)14 b(this)262 +2072 y(approac)o(h)j(do)q(es)i(su\013er)g(the)f(dra)o(wbac)o(k)g(that)g +(dynamic)e(non)h(static)h(forced)h(v)n(ariations)262 2122 y(are)c(not)g +(extended.)22 b(This)15 b(is)g(essen)o(tially)g(the)g(trade)h(o\013)f(b)q(et) +o(w)o(een)h(static)g(and)e(dynamic)262 2171 y(searc)o(h)20 +b(extensions.)35 b(Ho)o(w)o(ev)o(er,)21 b(I)e(ha)o(v)o(e)g(managed)f(to)h +(incorp)q(orate)h(dynamic)d(searc)o(h)262 2221 y(information)7 +b(in)o(to)i(the)i(searc)o(h)g(heuristics)g(without)e(added)i(cost.)17 +b(This)10 b(allo)o(ws)f(the)h(searc)o(h)262 2271 y(heuristics)21 +b(to)g(b)q(e)g(quite)f(selectiv)o(e)i(ab)q(out)e(whic)o(h)h(v)n(ariations)e +(are)i(w)o(orth)g(extending.)262 2321 y(Additionally)m(,)9 +b(some)j(of)f(m)o(y)g(searc)o(h)i(extension)g(heuristics)h(can)e(extend)i +(non{forced)e(but)262 2371 y(still)g(in)o(teresting)j(v)n(ariations.)i(I)c +(see)j(this)e(as)g(an)f(adv)n(an)o(tage)g(o)o(v)o(er)h(singular)f +(extensions.)946 2574 y(104)p eop +%%Page: 105 107 +105 106 bop 324 307 a Fp(T)m(o)12 b(illustrate)i(ho)o(w)f(these)i(extension)f +(heuristics)g(are)g(able)f(to)h(iden)o(tify)e(deep)j(com)o(bi-)262 +357 y(nations,)e(I)g(will)g(apply)g(them)g(to)h(the)g(p)q(osition)f(sho)o(wn) +h(in)g(\014gure)g(5.1.)p 641 451 673 5 v 641 1115 5 665 v 646 +534 a Fg(0ZqsrZnZ)646 617 y(Z0ZbZko0)646 700 y(0ZpApm0o)646 +783 y(ZpZ0OPZ0)646 866 y(pZ0O0Z0Z)646 949 y(ZBO0Z0Z0)646 1032 +y(PZ0ZQZPO)646 1115 y(Z0Z0SRJ0)p 1310 1115 V 641 1119 673 5 +v 594 1253 a Fp(Figure)g(5.1:)j(White)d(to)g(pla)o(y)f(and)h(mate)e(in)i(10.) +p 295 1327 1365 2 v 294 1377 2 50 v 320 1362 a Fm(Ply)p 403 +1377 V 50 w(Inter)n(est)p 590 1377 V 49 w(Move)p 790 1377 V +104 w(A)n(djust)g(Ply)p 1029 1377 V 50 w(Extension)i(typ)n(e)p +1344 1377 V 50 w(Inter)n(est)e(Bonus)p 1659 1377 V 295 1378 +1365 2 v 294 1428 2 50 v 339 1413 a Fp(1)p 403 1428 V 117 w(96)p +590 1428 V 97 w(Qh5+)p 790 1428 V 150 w Ff(\000)p Fp(16)p 1029 +1428 V 214 w(T4)p 1344 1428 V 253 w(+20)p 1659 1428 V 295 1430 +1365 2 v 294 1479 2 50 v 339 1465 a(2)p 403 1479 V 106 w(100)p +590 1479 V 87 w(...)j(Nxh5)p 790 1479 V 108 w Ff(\000)p Fp(16)p +1029 1479 V 200 w(TE1)p 1344 1479 V 249 w(+5)p 1659 1479 V +295 1481 1365 2 v 294 1531 2 50 v 339 1516 a(3)p 403 1531 V +117 w(89)p 590 1531 V 97 w(fxe6+)p 790 1531 V 152 w Ff(\000)p +Fp(16)p 1029 1531 V 159 w(T2+TE1)p 1344 1531 V 170 w(+24+1)p +1659 1531 V 295 1533 1365 2 v 294 1582 2 50 v 339 1567 a(4)p +403 1582 V 117 w(98)p 590 1582 V 97 w(...)g(Kg6)p 790 1582 +V 131 w Ff(\000)p Fp(16)p 1029 1582 V 233 w(-)p 1344 1582 V +297 w(0)p 1659 1582 V 295 1584 1365 2 v 294 1634 2 50 v 339 +1619 a(5)p 403 1634 V 117 w(82)p 590 1634 V 97 w(Bc2+)p 790 +1634 V 158 w Ff(\000)p Fp(16)p 1029 1634 V 214 w(T1)p 1344 +1634 V 253 w(+24)p 1659 1634 V 295 1636 1365 2 v 294 1685 2 +50 v 339 1670 a(6)p 403 1685 V 117 w(90)p 590 1685 V 97 w(...)g(Kg5)p +790 1685 V 131 w Ff(\000)p Fp(16)p 1029 1685 V 233 w(-)p 1344 +1685 V 297 w(0)p 1659 1685 V 295 1687 1365 2 v 294 1737 2 50 +v 339 1722 a(7)p 403 1737 V 117 w(74)p 590 1737 V 97 w(Rf5+)p +790 1737 V 161 w Ff(\000)p Fp(16)p 1029 1737 V 214 w(T5)p 1344 +1737 V 253 w(+16)p 1659 1737 V 295 1739 1365 2 v 294 1788 2 +50 v 339 1773 a(8)p 403 1788 V 117 w(74)p 590 1788 V 97 w(...)g(Kg6)p +790 1788 V 131 w Ff(\000)p Fp(16)p 1029 1788 V 233 w(-)p 1344 +1788 V 297 w(0)p 1659 1788 V 295 1790 1365 2 v 294 1840 2 50 +v 339 1825 a(9)p 403 1840 V 117 w(58)p 590 1840 V 97 w(Rf6+)p +790 1840 V 161 w Ff(\000)p Fp(16)p 1029 1840 V 214 w(T2)p 1344 +1840 V 253 w(+24)p 1659 1840 V 295 1841 1365 2 v 294 1891 2 +50 v 329 1876 a(10)p 403 1891 V 106 w(66)p 590 1891 V 97 w(...)g(Kg5)p +790 1891 V 131 w Ff(\000)p Fp(16)p 1029 1891 V 233 w(-)p 1344 +1891 V 297 w(0)p 1659 1891 V 295 1893 1365 2 v 294 1943 2 50 +v 329 1928 a(11)p 403 1943 V 106 w(50)p 590 1943 V 97 w(Rg6+)p +790 1943 V 153 w Ff(\000)p Fp(16)p 1029 1943 V 214 w(T5)p 1344 +1943 V 253 w(+16)p 1659 1943 V 295 1944 1365 2 v 294 1994 2 +50 v 329 1979 a(12)p 403 1994 V 106 w(50)p 590 1994 V 97 w(...)g(Kh4)p +790 1994 V 129 w Ff(\000)p Fp(16)p 1029 1994 V 233 w(-)p 1344 +1994 V 297 w(0)p 1659 1994 V 295 1996 1365 2 v 294 2046 2 50 +v 329 2031 a(13)p 403 2046 V 106 w(34)p 590 2046 V 97 w(Re4+)p +790 2046 V 156 w Ff(\000)p Fp(17)p 1029 2046 V 214 w(T1)p 1344 +2046 V 253 w(+24)p 1659 2046 V 295 2047 1365 2 v 294 2097 2 +50 v 329 2082 a(14)p 403 2097 V 106 w(41)p 590 2097 V 97 w(...)g(Nf4)p +790 2097 V 140 w Ff(\000)p Fp(18)p 1029 2097 V 233 w(-)p 1344 +2097 V 297 w(0)p 1659 2097 V 295 2099 1365 2 v 294 2149 2 50 +v 329 2134 a(15)p 403 2149 V 106 w(23)p 590 2149 V 97 w(Rxf4+)p +790 2149 V 139 w Ff(\000)p Fp(19)p 1029 2149 V 159 w(T1+TE1)p +1344 2149 V 170 w(+24+2)p 1659 2149 V 295 2150 1365 2 v 294 +2200 2 50 v 329 2185 a(16)p 403 2200 V 106 w(30)p 590 2200 +V 97 w(...)g(Kh5)p 790 2200 V 129 w Ff(\000)p Fp(20)p 1029 +2200 V 233 w(-)p 1344 2200 V 297 w(0)p 1659 2200 V 295 2202 +1365 2 v 294 2252 2 50 v 329 2237 a(17)p 403 2252 V 106 w(10)p +590 2252 V 97 w(g3)p 790 2252 V 216 w Ff(\000)p Fp(21)p 1029 +2252 V 214 w(T9)p 1344 2252 V 253 w(+24)p 1659 2252 V 295 2253 +1365 2 v 294 2303 2 50 v 329 2288 a(18)p 403 2303 V 106 w(13)p +590 2303 V 97 w(...)g(an)o(y)p 790 2303 V 140 w Ff(\000)p Fp(22)p +1029 2303 V 200 w(TE4)p 1344 2303 V 239 w(+16)p 1659 2303 V +295 2305 1365 2 v 294 2355 2 50 v 329 2340 a(19)p 403 2355 +V 116 w(7)p 590 2355 V 108 w(Rh4++)p 790 2355 V 149 w(-)p 1029 +2355 V 263 w(-)p 1344 2355 V 301 w(-)p 1659 2355 V 295 2356 +1365 2 v 314 2449 a(Figure)d(5.2:)j(A)d(table)f(sho)o(wing)h(in)o(terest)h(v) +n(alues)e(for)h(a)f(19)h(ply)f(mating)f(sequence.)946 2574 +y(105)p eop +%%Page: 106 108 +106 107 bop 262 307 a Fp(Note:)24 b(Tn)16 b(represen)o(ts)k(threat)d +(heuristic)h(n,)f(and)f(TEm)g(represen)o(ts)j(threat)f(execution)262 +357 y(heuristic)c(m.)324 442 y(In)e(the)g(p)q(osition)f(in)h(\014gure)g(5.1,) +f(white)h(can)g(force)g(c)o(hec)o(kmate)g(in)f(10)g(mo)o(v)o(es)g(\(19)g +(ply\).)262 492 y(The)g(table)g(sho)o(wn)g(in)f(\014gure)i(5.2)e(sho)o(ws)h +(ho)o(w)g(on)f(a)h(6)g(ply)f(iteration,)h(these)h(heuristics)g(are)262 +542 y(able)j(to)h(iden)o(tify)f(the)i(correct)g(19)f(ply)f(mo)o(v)o(e)f +(sequence.)27 b(Assume)16 b(for)f(simplicit)o(y)f(that)262 +592 y(aspiration)f(v)n(alues)g(of)g Fh(\013)h Fp(and)g Fh(\014)i +Fp(are)f(presen)o(t)g(when)f(the)h(giv)o(en)e(v)n(ariation)g(is)g(explored.) +262 764 y Fr(5.3)69 b(Quiescence)20 b(Decision)262 891 y Fp(Unlik)o(e)f(most) +g(other)i(c)o(hess)h(programs,)e(HIAR)o(CS)g(will)f(not)h(leap)g(in)o(to)f(a) +h(quiescence)262 941 y(searc)o(h)13 b(when)h(the)f(depth)h(of)e(the)h(full)f +(width)h(searc)o(h)h(reac)o(hes)g(zero.)19 b(The)13 b(reason)g(b)q(ehind)262 +990 y(this)g(lies)h(in)g(understanding)g(what)g(the)g(quiescence)i(searc)o(h) +f(is)f(capable)g(of.)324 1076 y(W)m(ere)d(it)g(truly)f(capable)h(of)g(searc)o +(hing)g(all)f(the)i(imp)q(ortan)o(t)d(p)q(ossibilities)h(in)h(a)f(p)q +(osition)262 1125 y(un)o(til)e(true)j(quiescence)h(is)d(ac)o(hiev)o(ed,)h +(there)h(w)o(ould)e(b)q(e)h(no)g(p)q(oin)o(t)f(in)g(ha)o(ving)g(a)g(main)e +(searc)o(h)262 1175 y(at)16 b(all.)25 b(The)18 b(quiescence)g(searc)o(h)g +(could)f(b)q(e)g(directly)g(applied)f(to)h(all)e(mo)o(v)o(es)h(at)g(ply)g(1.) +262 1225 y(Sadly)m(,)10 b(ho)o(w)o(ev)o(er,)j(w)o(e)f(do)g(not)g(y)o(et)h +(kno)o(w)e(ho)o(w)h(to)g(build)g(suc)o(h)g(a)g(near-p)q(erfect)i(quiescence) +262 1275 y(searc)o(h.)26 b(Therefore,)17 b(b)o(y)f(kno)o(wing)f(what)h(m)o(y) +f(quiescence)j(searc)o(h)f(is)f(capable)h(of,)e(I)h(am)262 +1325 y(able)d(to)h(select)h(when)g(the)f(p)q(osition)f(is)h(suitable)g(for)f +(suc)o(h)i(a)e(searc)o(h.)324 1410 y(The)g(quiescence)i(searc)o(h)f(is)f +(capable)g(of)f(exploring)g(lines)h(in)o(v)o(olving)e(captures,)j(pa)o(wn)262 +1460 y(promotions)c(and)i(some)g(c)o(hec)o(king)h(mo)o(v)o(es.)j(The)d +(curren)o(t)h(side)e(to)h(mo)o(v)o(e)d(is)j(alw)o(a)o(ys)e(giv)o(en)262 +1510 y(the)j(option)f(of)g(standing)g(pat)h(i.e.)j(not)d(making)d(an)o(y)i +(mo)o(v)o(e)f(and)i(accepting)g(the)g(curren)o(t)262 1559 y(ev)n(aluation)g +(score.)24 b(Therefore,)17 b('Threat')f(searc)o(h)g(extension)h(heuristics)g +(1)e(to)h(6)f(and)g(8,)262 1609 y(and)9 b('Threat)i(Execution')f(searc)o(h)h +(extension)g(heuristic)g(4)f(are)g(applied)g(in)g(the)g(quiescence)262 +1659 y(searc)o(h)18 b(p)q(ossibly)f(causing)h(a)f(rejoining)f(of)h(the)h +(main)e(searc)o(h.)30 b(Inside)17 b(the)h(quiescence)262 1709 +y(searc)o(h,)h(if)f(an)o(y)g(of)f(these)j(extension)f(heuristics)g(are)g +(applied)e(successfully)m(,)j(the)f(main)262 1759 y(searc)o(h)h(is)g +(rejoined)f(regardless)i(of)e(the)h(resulting)g(in)o(terest)h(v)n(alue.)34 +b(This)19 b(a)o(v)o(oids)g(the)262 1808 y(premature)13 b(termination)g(of)g +(the)h(searc)o(h)h(when)g(asp)q(ects)g(of)f(in)o(terest)h(still)e(exist.)324 +1894 y(This)k(approac)o(h)g(not)g(only)f(mak)o(es)g(a)h(quiescence)i +(decision)e(at)g(the)h(horizon)f(of)f(the)262 1943 y(main)c(searc)o(h,)k(but) +f(also)f(more)g(imp)q(ortan)o(tly)m(,)d(at)k(eac)o(h)g(and)g(ev)o(ery)g(ply)g +(during)f(the)h(qui-)262 1993 y(escence)g(searc)o(h.)k(This)12 +b(should)g(enable)h(the)h(program)d(to)h(\014nd)h(deep)g(com)o(binations)e +(ev)o(en)262 2043 y(after)18 b(the)g(quiescence)j(searc)o(h)e(is)f(underw)o +(a)o(y)m(.)30 b(F)m(or)18 b(example,)f(a)h(4)f(ply)h(iteration)g(ma)o(y)262 +2093 y(progress)j(do)o(wn)f(5)g(plies)h(of)f(main)e(searc)o(h)j(\(1)g(ply)f +(extension\),)i(join)d(the)i(quiescence)262 2143 y(searc)o(h)13 +b(for)e(1)h(more)e(ply)m(,)h(then)i(rejoin)e(the)i(main)c(searc)o(h)k(when)g +(something)d(in)o(teresting)j(is)262 2193 y(found)e(and)h(pro)q(ceed)i(for)e +(3)g(more)f(plies)h(in)f(the)i(restarted)h(main)c(searc)o(h)j(b)q(efore)g +(\014nding)f(a)262 2242 y(9)h(ply)g(com)o(bination)f(whic)o(h)i(w)o(ould)f +(otherwise)i(b)q(e)f(b)q(ey)o(ond)g(the)h(program's)d(capabilit)o(y)m(.)946 +2574 y(106)p eop +%%Page: 107 109 +107 108 bop 262 307 a Fr(5.4)69 b(Quiescence)20 b(Searc)n(h)262 +434 y Fp(A)12 b(quiescence)i(searc)o(h)f(is)e(p)q(erformed)h(to)g(c)o(hec)o +(k)h(out)f(purely)g(tactical)f(p)q(ossibilities)h(whic)o(h)262 +483 y(are)j(v)o(ery)g(di\016cult)g(to)g(assess)h(accurately)g(at)f(the)h +(horizon)f(of)f(a)h(main)e(searc)o(h)j(b)o(y)f(using)262 533 +y(a)e(static)h(ev)n(aluation)f(function.)324 618 y(This)g(searc)o(h)i(can)f +(therefore)h(b)q(e)f(seen)h(as)f(a)f(selectiv)o(e)i(tactical)e(searc)o(h)i +(complemen)o(t-)262 668 y(ing)h(the)h(static)g(tactical)g(parts)g(of)f(the)i +(ev)n(aluation)d(function.)26 b(Hence,)19 b(impro)o(ving)14 +b(the)262 718 y(accuracy)g(of)g(the)g(results)h(bac)o(k)o(ed)f(up)g(from)f +(the)h(horizon)g(no)q(des.)324 803 y(The)i(searc)o(h)h(explores)g(captures,)h +(pa)o(wn)e(promotions)e(and)i(some)f(c)o(hec)o(king)h(mo)o(v)o(es.)262 +853 y(Ideally)d(all)g(dynamic)g(mo)o(v)o(es)g(should)i(b)q(e)g(explored,)g +(these)g(include)g(c)o(hec)o(ks,)h(c)o(hec)o(k)f(ev)n(a-)262 +903 y(sion,)10 b(threats,)j(defences,)g(blo)q(c)o(ks,)e(X-ra)o(y)g(attac)o +(ks,)h(captures,)g(pa)o(wn)f(pushes,)i(promotion)262 953 y(etc.)23 +b(A)15 b(com)o(bination)e(of)i(a)g(full)f(n)o(ull)g(mo)o(v)o(e)g(algorithm)e +(and)k(m)o(y)d(prop)q(osed)j(quiescence)262 1003 y(searc)o(h)11 +b(w)o(ould)f(o\013er)h(some)f(hop)q(e)h(on)g(this)f(direction.)17 +b(Ho)o(w)o(ev)o(er,)12 b(t)o(w)o(o)e(reasons)h(ha)o(v)o(e)g(made)262 +1052 y(me)h(a)o(v)o(oid)h(suc)o(h)i(a)e(com)o(bination)f(in)h(this)h(pro)r +(ject:)312 1171 y(1.)20 b(The)e(searc)o(h)h(depth)f(is)f(v)o(ery)g +(di\016cult)g(to)g(con)o(trol)g(and)g(without)g(strict)h(con)o(trols)365 +1221 y(the)d(searc)o(h)g(can)f(easily)f(explo)q(de.)312 1304 +y(2.)20 b(This)10 b(t)o(yp)q(e)h(of)f(searc)o(h)h(w)o(ould)f(explore)h(man)o +(y)d(thousands)j(of)f(v)n(ariations)f(and)h(hence,)365 1353 +y(require)15 b(v)o(ery)f(fast)g(hardw)o(are)g(to)g(supp)q(ort)h(this)f +(additional)e(load.)262 1472 y(Pseudo)18 b(co)q(de)h(illustrating)d(m)o(y)g +(quiescence)k(searc)o(h)f(using)f(the)g(negamax)e(con)o(v)o(en)o(tion)262 +1522 y(can)e(b)q(e)g(found)g(in)f(\014gure)h(5.3.)324 1607 +y(This)c(searc)o(h)h(explores)f(mo)o(v)o(es)f(prop)q(osed)i(b)o(y)f(the)g +(GenerateQMo)o(v)o(es)i(function.)k(Eac)o(h)262 1657 y(mo)o(v)o(e)10 +b(is)i(searc)o(hed)j(only)c(if)h(it)g(can)g(c)o(hange)h(the)g(searc)o(h)g +(result)h(i.e.)j(ev)n(al)11 b(+)i Fh(V)c(al)q(ue)1568 1663 +y Fe(m)1612 1657 y Fh(>)i(\013)p Fp(.)262 1707 y(Eac)o(h)17 +b(side)h(to)g(mo)o(v)o(e)e(also)h(has)h(an)f(extra)h(option)f(of)g(standing)g +(pat)h(thereb)o(y)h(in)e(e\013ect)262 1756 y(pla)o(ying)12 +b(a)h(n)o(ull)g(mo)o(v)o(e,)f(see)j(section)g(3.1.6.)324 1842 +y(A)f(n)o(um)o(b)q(er)f(of)g(additional)f(tree)j(pruning)f(tec)o(hniques)h +(are)f(used)h(to)f(prune)h(the)f(tree:)324 1960 y Ff(\017)20 +b Fl(Note)14 b(1)p Fp(:)j(As)12 b(the)h(side)f(to)g(mo)o(v)o(e)f(alw)o(a)o +(ys)f(has)j(the)f(option)g(of)f(pla)o(ying)f(a)i(n)o(ull)f(mo)o(v)o(e)365 +2010 y(and)j(accepting)h(the)g(curren)o(t)h(static)e(score,)h(a)f(no)q(de)h +(with)f(a)g(static)g(score)i(already)365 2060 y(ab)q(o)o(v)o(e)g(the)g(searc) +o(h)h(windo)o(w)e(is)h(pruned.)25 b(Implicit)13 b(in)i(this)h(is)g(the)g +(fact)g(that)g(an)o(y)365 2110 y(subtree)g(b)q(elo)o(w)e(this)f(no)q(de)i(is) +f(also)f(pruned)i(b)q(efore)f(it)g(is)f(searc)o(hed.)324 2193 +y Ff(\017)20 b Fl(Note)j(2)p Fp(:)30 b(The)21 b(n)o(ull)e(mo)o(v)o(e)g +(option)g(giv)o(es)h(rise)h(to)f(the)g(p)q(ossibilit)o(y)f(of)h(further)365 +2242 y(reducing)d(the)f(width)g(of)f(the)h(searc)o(h)h(windo)o(w.)23 +b(This)16 b(is)g(b)q(ecause)h(the)g(w)o(orst)f(the)365 2292 +y(side)e(to)f(pla)o(y)f(can)i(do)f(is)g('stand)g(pat`)g(and)g(accept)h(the)g +(curren)o(t)h(ev)n(aluation)d(score.)324 2375 y Ff(\017)20 +b Fl(Note)h(3)p Fp(:)26 b(Eac)o(h)19 b(mo)o(v)o(e)d(prop)q(osed)j(b)o(y)f +(GenerateQMo)o(v)o(es)i(can)f(b)q(e)f(assigned)h(an)365 2425 +y(optimistic)11 b(v)n(alue)g(\()p Fh(V)f(al)q(ue)791 2431 y +Fe(m)823 2425 y Fp(\),)i(e.g.)17 b(captures)d(receiv)o(e)g(the)f(v)n(alue)f +(of)f(the)i(captured)946 2574 y(107)p eop +%%Page: 108 110 +108 109 bop 365 307 a Fp(piece)15 b(plus)e(an)g(optimistic)f(p)q(ositional)g +(score.)19 b(As)13 b(the)h(opp)q(onen)o(t)g(alw)o(a)o(ys)e(has)i(the)365 +357 y(option)g(of)h(making)d(a)j(n)o(ull)f(mo)o(v)o(e)905 342 +y Fk(1)922 357 y Fp(,)g(this)h(optimistic)e(v)n(alue)h(represen)o(ts)k(an)d +(upp)q(er)365 407 y(b)q(ound)h(on)g(the)g(score)h(deriv)n(able)e(from)f(the)j +(subtree)g(resulting)f(from)e(this)i(mo)o(v)o(e.)365 457 y(Therefore,)e(if)d +(ev)o(en)i(this)g(optimistic)d(v)n(alue)i(cannot)g(a\013ect)i(the)f(searc)o +(h)g(result,)g(the)365 506 y(p)q(oten)o(tial)h(no)q(de)g(and)g(its)f(subtree) +j(can)e(b)q(e)h(pruned.)262 625 y(These)22 b(3)e(forw)o(ard)g(pruning)h(mec)o +(hanisms)e(can)i(drastically)f(reduce)i(the)f(size)h(of)e(the)262 +675 y(quiescence)c(searc)o(h.)324 760 y(In)e(conclusion,)f(I)h(feel)g(this)g +(com)o(bination)e(of)h(main)f(searc)o(h,)j(quiescence)h(searc)o(h)f(and)262 +810 y(selectiv)o(e)h(extensions)g(should)f(signi\014can)o(tly)f(impro)o(v)o +(e)g(the)i(program's)d(tactical)i(abilit)o(y)m(.)262 860 y(Without)i(suc)o(h) +i(enhancemen)o(ts,)g(it)f(is)g(lik)o(ely)f(to)h(compare)g(unfa)o(v)o(ourably) +e(with)i(other)262 909 y(strong)10 b(programs)g(tactically)g(due)h(to)f(the)i +(signi\014can)o(t)e(amoun)o(t)f(of)h(p)q(ositional)f(kno)o(wledge)262 +959 y(elsewhere)15 b(in)f(the)g(program)f(consuming)f(large)i(c)o(h)o(unks)g +(of)f(time.)p 262 2371 573 2 v 308 2398 a Fj(1)325 2410 y Fi(this)f(ma)o(y)f +(not)g(b)q(e)h(the)g(case)f(if)h(the)g(main)f(searc)o(h)g(if)h(rejoined,)e +(ho)o(w)o(ev)o(er,)h(the)h(a\013ects)f(are)g(minimal)262 2449 +y(and)f(can)h(b)q(e)g(ignored.)946 2574 y Fp(108)p eop +%%Page: 109 111 +109 110 bop 262 307 a Fl(F)l(unction)11 b Fp(Quiescence\(P)17 +b(:)c Fl(p)q(osition)p Fp(;)d Fh(\013)p Fp(,)k Fh(\014)i Fp(:)i +Fl(in)o(teger)p Fp(\))11 b Fl(returns)j(in)o(teger)262 407 +y(v)m(ar)321 457 y Fp(m)82 b(:)18 b Fl(mo)o(v)o(e)321 506 y +Fp(b)q(est,)321 556 y(ev)n(al,)321 606 y(score)29 b(:)18 b +Fl(in)o(teger)262 706 y(b)q(egin)321 805 y Fp(b)q(est)d(:=)e(Ev)n(aluate\(P)m +(,)g Ff(\000)p Fh(\014)r Fp(,)h Ff(\000)p Fh(\013)p Fp(\))321 +855 y Fl(if)e Fp(\(b)q(est)j Ff(\025)d Fh(\014)r Fp(\))380 +905 y Fl(return)f Fp(\(b)q(est\))515 b(/*)14 b Fm(Se)n(e)h(note)g(1)f +Fp(*/)321 955 y Fl(endif)321 1005 y Fh(\013)f Fp(:=)h Fl(max)p +Fp(\()p Fh(\013)p Fp(,)f(b)q(est\))482 b(/*)14 b Fm(Se)n(e)h(note)g(2)f +Fp(*/)321 1104 y(GenerateQMo)o(v)o(es\(P\))458 b(/*)14 b Fm(Gener)n(ate)h +(moves)f Fp(*/)321 1154 y(ev)n(al)f(:=)g(b)q(est)611 b(/*)14 +b Fm(Can)h(always)f('Stand)i(Pat')e Fp(*/)321 1204 y Fl(for)h(eac)o(h)g(mo)o +(v)o(e)e Fp(m)f Fl(do)380 1254 y(if)g Fp(\(ev)n(al)i(+)g Fh(V)9 +b(al)q(ue)679 1260 y Fe(m)722 1254 y Fh(>)j(\013)p Fp(\))338 +b(/*)14 b Fm(Se)n(e)h(note)g(3)f Fp(*/)439 1303 y(/*)f Fm(Se)n(ar)n(ch)i +(move)g(m)g(to)g(next)g(depth)h(using)f(ne)n(gamax)h(c)n(onvention)f +Fp(*/)439 1353 y(score)g(:=)e Ff(\000)p Fp(Quiescence\()p Fh(P)871 +1359 y Fe(m)906 1353 y Fp(,)g Ff(\000)p Fh(\014)r Fp(,)h Ff(\000)p +Fh(\013)p Fp(\))439 1403 y Fl(if)e Fp(\(score)k Fh(>)e Fp(b)q(est\))498 +1453 y(b)q(est)h(:=)e(score)414 b(/*)14 b Fm(Stor)n(e)g(b)n(est)h(sc)n(or)n +(e)g(found)f Fp(*/)498 1503 y Fl(if)e Fp(\(b)q(est)k Ff(\025)11 +b Fh(\014)r Fp(\))557 1553 y Fl(return)g Fp(\(b)q(est\))338 +b(/*)14 b Fh(\014)j Fm(cut)e(o\013)h(:)j(r)n(eturn)14 b(b)n(est)h(sc)n(or)n +(e)e Fp(*/)498 1602 y Fl(endif)498 1652 y Fh(\013)g Fp(:=)h +Fl(max)p Fp(\()p Fh(\013)p Fp(,)f(b)q(est\))305 b(/*)14 b Fm(Up)n(date)h +(fail)f(soft)f Fp(*/)439 1702 y Fl(else)498 1752 y Fp(b)q(est)i(:=)e +Fl(max)p Fp(\(b)q(est,)i(ev)n(al)e(+)i Fh(V)9 b(al)q(ue)1091 +1758 y Fe(m)1123 1752 y Fp(\))439 1802 y Fl(endif)380 1851 +y(endif)321 1901 y(endfor)321 2001 y(return)i Fp(\(b)q(est\))574 +b(/*)14 b Fm(R)n(eturn)h(sc)n(or)n(e)f(of)h(b)n(est)g(move)g(found)g +Fp(*/)262 2100 y Fl(end)d Fp(Quiescence)513 2277 y(Figure)i(5.3:)j(Pseudo)e +(co)q(de)g(for)e(m)o(y)f(Quiescence)17 b(Searc)o(h.)946 2574 +y(109)p eop +%%Page: 110 112 +110 111 bop 262 654 a Fn(Chapter)34 b(6)262 897 y Fo(HIAR)m(CS)k(5.0)262 +1148 y Fp(In)10 b(this)h(c)o(hapter,)h(I)e(will)g(sho)o(w)g(ho)o(w)h(the)g(v) +n(arious)f(tec)o(hniques)i(I)e(ha)o(v)o(e)h(in)o(v)o(estigated)f(in)h(this) +262 1198 y(pro)r(ject)j(can)f(b)q(e)h(brough)o(t)f(together)i(and)e(implem)o +(en)o(ted)f(in)g(a)h(c)o(hess)i(program.)h(There)f(is)262 1248 +y(neither)g(the)g(time)f(nor)g(space)i(to)f(fully)e(explain)h(all)f(the)j +(design)e(issues,)i(some)e(of)g(whic)o(h)262 1298 y(ha)o(v)o(e)j(ev)o(olv)o +(ed)h(o)o(v)o(er)g(the)h(last)f(couple)g(of)g(y)o(ears.)31 +b(Ho)o(w)o(ev)o(er,)20 b(I)e(will)e(giv)o(e)i(an)g(o)o(v)o(erview)262 +1347 y(of)g(the)h(program's)e(design)j(and)e(structure.)35 +b(I)19 b(will)f(also)g(discuss)i(some)e(of)g(the)i(main)262 +1397 y(decisions)12 b(whic)o(h)f(ha)o(v)o(e)h(b)q(een)h(tak)o(en)f(relating)f +(to)h(the)g(algorithms)e(and)h(tec)o(hniques)i(used.)324 1483 +y(This)f(program)e(con)o(tains)i(around)g(a)f(50-50)g(split)h(of)f(old)g(co)q +(de)i(and)f(totally)e(new)j(co)q(de)262 1532 y(resulting)h(from)e(m)o(y)g(in) +o(v)o(estigations)h(since)h(b)q(eginning)g(this)g(pro)r(ject.)262 +1705 y Fr(6.1)69 b(Program)24 b(History)f(and)g(En)n(vironmen)n(t)262 +1831 y Fp(I)16 b(b)q(egan)h(writing)f(c)o(hess)i(programs)d(as)i(long)f(ago)g +(as)g(1979.)26 b(My)16 b(\014rst)i(c)o(hess)g(program,)262 +1881 y(UCT,)13 b(only)h(pla)o(y)o(ed)g(the)g(ending)h(of)e(king)h(and)g(ro)q +(ok)g(v)o(ersus)h(king.)k(Ho)o(w)o(ev)o(er,)14 b(this)g(only)262 +1931 y(serv)o(ed)k(to)e(w)o(et)h(m)o(y)e(app)q(etite)j(for)e(the)h(sub)r +(ject.)28 b(In)17 b(late)g(1980,)f(I)g(dev)o(elop)q(ed)i(m)o(y)d(\014rst)262 +1981 y(full)f(c)o(hess)j(program,)d(HIAR)o(CS.)g(Ho)o(w)o(ev)o(er,)i(it)g(w)o +(as)f(only)g(capable)g(of)g(pla)o(ying)f(random)262 2031 y(c)o(hess.)32 +b(Later,)19 b(in)e(1981,)h(the)g(c)o(hess)i(program)c(w)o(as)i(impro)o(v)o +(ed)f(to)h(searc)o(h)h(1)e(ply)h(with)262 2080 y(material)13 +b(and)h(mobilit)o(y)e(ev)n(aluation.)21 b(By)15 b(the)h(end)f(of)g(1983,)f +(HIAR)o(CS)g(w)o(as)h(enhanced)262 2130 y(to)g(a)g(4)g(ply)g(selectiv)o(e)i +(searc)o(h)g(program)d(applying)g(rudimen)o(tary)g(p)q(ositional)g(and)i(sw)o +(ap)262 2180 y(o\013)g(ev)n(aluations)g(at)h(its)g(leaf)f(no)q(des.)28 +b(The)17 b(program)e(w)o(as)i(written)g(in)g(compiled)e(Basic)262 +2230 y(with)c(some)h(Z80)g(assem)o(bly)f(routines)i(and)f(w)o(as)g(capable)g +(of)f(pla)o(ying)g(at)h(w)o(eak)g(club)g(lev)o(el,)262 2280 +y(ELO)i(1300,)e(on)i(a)f(Z80)h(pro)q(cessor.)324 2365 y(A)o(t)c(this)g(p)q +(oin)o(t)f(activit)o(y)g(stopp)q(ed)i(un)o(til)e(early)h(1987,)f(when)i(I)f +(b)q(egan)g(w)o(ork)f(dev)o(eloping)262 2415 y(a)15 b(totally)g(new)h(full)e +(width)i(c)o(hess)h(program)e(written)h(in)f(Mo)q(dula-2)g(for)g(an)h(Amiga.) +22 b(In)946 2574 y(110)p eop +%%Page: 111 113 +111 112 bop 262 307 a Fp(mid)12 b(1988,)g(the)i(program)f(w)o(as)g(rewritten) +j(in)d(the)i(C)e(language)g(for)h(t)o(w)o(o)f(main)f(reasons:)324 +426 y Ff(\017)20 b Fp(Co)q(de)15 b(e\016ciency)324 509 y Ff(\017)20 +b Fp(More)15 b(lo)o(w)e(lev)o(el)g(freedom)262 627 y(A)o(t)g(this)h(stage)h +(the)f(program)e(w)o(as)i(pla)o(ying)f(at)g(around)h(ELO)g(1550)f(while)h +(analysing)e(40)262 677 y(-)h(60)h(no)q(des)g(p)q(er)h(second.)324 +762 y(The)i(program)f(w)o(as)h(further)g(enhanced)i(during)d(1988/89)g(un)o +(til)g(b)o(y)h(August)g(1989,)262 812 y(when)12 b(it)g(w)o(as)g(en)o(tered)i +(in)d(the)i(1st)f(Computer)g(Olympiad,)d(HIAR)o(CS)j(4.1)f(as)h(it)g(w)o(as)g +(then)262 862 y(kno)o(wn,)j(w)o(as)g(analysing)f(at)i(the)g(rate)g(of)f(80)g +(-)g(180)g(no)q(des)h(p)q(er)h(second)f(and)g(pla)o(ying)e(at)262 +912 y(ab)q(out)f(ELO)i(1750.)324 997 y(Early)c(on)h(during)g(this)g(pro)r +(ject)h(I)f(decided)h(to)f(up)g(load)f(m)o(y)g(program)f(on)o(to)i(our)g(V)-5 +b(AX)262 1047 y(785)13 b(mac)o(hine)f(at)i(w)o(ork.)k(Three)d(reasons)g(la)o +(y)d(b)q(ehind)j(this)f(decision:)312 1165 y(1.)20 b Fl(Securit)o(y)l(.)g +Fp(The)15 b(p)q(ossibilit)o(y)f(of)g(m)o(y)f(Amiga)g(malfunctioning)f(or)j +(ev)o(en)g(ha)o(ving)f(a)365 1215 y(virus)j(p)q(osed)h(to)q(o)e(great)h(a)g +(risk.)26 b(I)17 b(therefore)h(felt)e(it)h(w)o(as)f(safer)i(to)e(dev)o(elop)h +(the)365 1265 y(program)12 b(on)h(a)f(mac)o(hine)g(where)i(regular)f(bac)o +(kup)h(securit)o(y)g(is)e(already)h(pro)o(vided.)312 1348 y(2.)20 +b Fl(Sp)q(eed.)27 b Fp(Ev)o(en)17 b(though)g(a)g(V)-5 b(AX)18 +b(785)e(mac)o(hine)f(is)i(slo)o(w)g(b)o(y)f(to)q(da)o(ys)h(standards,)365 +1398 y(it)f(is)h(still)e(faster)i(than)f(an)g(Amiga.)24 b(I)16 +b(found)g(that)g(the)h(H/W)f(c)o(hange)h(pro)o(vided)365 1447 +y(around)e(a)f(2-fold)f(sp)q(eed)j(impro)o(v)o(emen)o(t,)c(pro)o(vided)i(the) +h(mac)o(hine)e(w)o(as)i(otherwise)365 1497 y(un)o(used.)312 +1580 y(3.)20 b Fl(En)o(vironmen)o(t.)36 b Fp(I)20 b(felt)h(the)g(UNIX)989 +1565 y Fk(1)1028 1580 y Fp(op)q(erating)g(system)f(pro)o(vided)h(a)f(b)q +(etter)365 1630 y(en)o(vironmen)o(t)13 b(in)h(whic)o(h)f(to)h(dev)o(elop)g +(the)g(program.)262 1803 y Fr(6.2)69 b(Program)24 b(Structure)262 +1929 y Fp(HIAR)o(CS)9 b(5.0)g(is)g(a)h(large)g(and)f(complex)g(program.)15 +b(It)10 b(is)f(split)h(up)g(in)o(to)f(12)g(mo)q(dules)g(whic)o(h)262 +1979 y(eac)o(h)j(p)q(erform)e(a)h(particular)h(t)o(yp)q(e)g(of)f(job.)16 +b(In)c(\014gure)g(6.1,)f(a)g(diagram)e(is)i(pro)o(vided)h(whic)o(h)262 +2029 y(illustrates)i(ho)o(w)f(the)i(mo)q(dules)e(in)o(teract)h(with)g(eac)o +(h)g(other.)19 b(The)14 b(diagram)e(is)i(at)g(a)f(high)262 +2079 y(lev)o(el)d(and)g(m)o(uc)o(h)g(detail)g(has)h(b)q(een)g(omitted)f(for)g +(reasons)i(of)e(clarit)o(y)m(.)16 b(The)11 b(lines)f(represen)o(t)262 +2128 y(the)16 b(call)e(in)o(teraction)i(and)f(the)h(accompan)o(ying)d +(description)j(giv)o(es)g(the)g(reason)g(for)f(the)262 2178 +y(mo)q(dule)d(in)o(teraction.)324 2263 y(The)i(main)e(functions)i(p)q +(erformed)f(b)o(y)h(eac)o(h)g(mo)q(dule)f(are)h(explained)g(b)q(elo)o(w:)p +262 2298 573 2 v 308 2325 a Fj(1)325 2337 y Fi(UNIX)f(is)e(a)h(T)m(rademark)d +(of)i(Bell)g(Lab)q(oratories.)946 2574 y Fp(111)p eop +%%Page: 112 114 +112 113 bop 612 2462 a Fp(Figure)14 b(6.1:)j(Mo)q(dule)d(in)o(teraction)f +(diagram.)946 2574 y(112)p eop +%%Page: 113 115 +113 114 bop 312 307 a Fp(1.)20 b Fl(Hiarcs)p Fp(:)g(This)15 +b(is)g(the)h(main)d(program)h(mo)q(dule.)20 b(It)15 b(con)o(trols)g +(initialisation)e(and)365 357 y(o)o(v)o(ersees)k(the)f(in)o(teraction)g(b)q +(et)o(w)o(een)g(the)h(user,)f(via)e(the)i(MMI)g(mo)q(dule,)e(and)h(the)365 +407 y(c)o(hess)h(decision)e(algorithms.)312 488 y(2.)20 b Fl(HouseKeeping)p +Fp(:)c(This)e(mo)q(dule)e(deals)i(with)g(initialisation)d(for)i(a)h(new)g +(game.)312 570 y(3.)20 b Fl(HashDriv)o(er)p Fp(:)15 b(This)e(mo)q(dule)e(con) +o(trols)i(transp)q(osition)f(table)h(creation,)g(deletion)365 +620 y(and)f(en)o(try)g(storage)h(and)e(retriev)n(al.)18 b(It)11 +b(also)h(up)q(dates)g(hash)g(indexes)h(and)f(mo)q(di\014es)365 +670 y(the)j(transp)q(osition)f(table)g(b)q(et)o(w)o(een)h(searc)o(hes.)21 +b(An)14 b(op)q(ening)g(b)q(o)q(ok)g(transp)q(osition)365 719 +y(table)g(is)g(also)f(loaded)h(and)f(accessed)j(b)o(y)e(this)g(mo)q(dule.)312 +801 y(4.)20 b Fl(MMI)p Fp(:)d(This)f(mo)q(dule)f(deals)i(with)f(all)g(h)o +(uman/com)o(puter)f(in)o(teraction.)26 b(It)16 b(also)365 851 +y(c)o(hec)o(ks)g(en)o(tered)f(user)g(mo)o(v)o(es)e(for)g(legalit)o(y)f(and)i +(pro)q(cesses)j(v)n(arious)c(commands.)312 932 y(5.)20 b Fl(T)l(reeSearc)o(h) +p Fp(:)c(This)11 b(mo)q(dule)g(p)q(erforms)g(the)i(tree)g(searc)o(hing)g +(necessary)g(to)f(select)365 982 y(the)18 b(b)q(est)h(a)o(v)n(ailable)c(mo)o +(v)o(e.)26 b(T)m(o)17 b(ac)o(hiev)o(e)g(this)g(it)g(co)q(ordinates)h(the)g +(activities)f(of)365 1032 y(the)e(program)d(and)i(mak)o(es)f(extensiv)o(e)i +(use)f(of)g(most)e(other)j(mo)q(dules.)312 1113 y(6.)20 b Fl(Generate)p +Fp(:)28 b(This)19 b(mo)q(dule)f(con)o(tains)h(all)g(the)h(mo)o(v)o(e)d +(generation)j(routines)g(re-)365 1163 y(quired)14 b(b)o(y)g(the)h(program.) +312 1245 y(7.)20 b Fl(TimeCon)o(trol)p Fp(:)14 b(This)e(mo)q(dule)e(allo)q +(cates,)i(adjusts)g(and)g(con)o(trols)g(the)g(time)f(used)365 +1295 y(b)o(y)j(the)g(program.)312 1376 y(8.)20 b Fl(P)o(osEv)m(al)p +Fp(:)d(This)12 b(mo)q(dule)e(p)q(erforms)i(a)f(p)q(ositional)g(analysis)g(on) +h(a)f(giv)o(en)h(p)q(osition.)365 1426 y(It)i(con)o(tains)g(most)f(horizon)g +(no)q(de)i(ev)n(aluation)d(criteria.)312 1508 y(9.)20 b Fl(Planner)p +Fp(:)14 b(This)d(mo)q(dule)d(considers)k(and)e(selects)j(plans)d(to)g(direct) +h(the)g(searc)o(h)h(and)365 1557 y(up)q(dates)20 b(v)n(arious)e(w)o(eigh)o +(tings)f(asso)q(ciated)j(with)e(Pc/Sq)h(tables)g(and)f(the)h(game)365 +1607 y(phase.)291 1689 y(10.)h Fl(SqAnalysis)p Fp(:)j(This)17 +b(mo)q(dule)f(incremen)o(tally)g(up)q(dates)i(the)g(attac)o(k)f(tables)h(and) +365 1739 y(analyses)c(v)n(arious)g(attac)o(k)f(in)o(teractions)i(for)e(p)q +(ositional)g(ev)n(aluation)f(purp)q(oses.)291 1820 y(11.)20 +b Fl(Mo)o(v)o(er)p Fp(:)g(This)15 b(mo)q(dule)e(mak)o(es)h(and)h(unmak)o(es)f +(generated)i(mo)o(v)o(es.)k(It)15 b(also)g(con-)365 1870 y(trols)f(the)h +(incremen)o(tal)e(up)q(dating)g(of)g(the)i(attac)o(k)f(tables.)291 +1951 y(12.)20 b Fl(Utils)p Fp(:)i(Pro)o(vides)17 b(v)n(arious)f(utilit)o(y)g +(functions)g(whic)o(h)h(most)f(of)g(the)h(mo)q(dules)f(re-)365 +2001 y(quire.)262 2173 y Fr(6.3)69 b(Data)23 b(Structures)262 +2300 y Fp(The)16 b(data)g(structures)j(used)e(in)f(HIAR)o(CS)g(are)g(of)g +(cen)o(tral)g(imp)q(ortance)g(to)g(the)h(o)o(v)o(erall)262 +2350 y(design)d(of)h(the)g(program.)k(They)c(de\014ne)h(to)f(a)f(large)g +(exten)o(t)i(ho)o(w)f(in)o(telligen)o(t)e(the)j(in)o(ter-)262 +2399 y(nal)g(decisions)i(made)e(b)o(y)h(the)h(program)d(can)j(b)q(e.)29 +b(This)17 b(in)g(turn)g(largely)g(con)o(trols)g(the)262 2449 +y(kno)o(wledge)c(based)i(capabilities)e(of)g(the)h(program.)946 +2574 y(113)p eop +%%Page: 114 116 +114 115 bop 324 307 a Fp(This)17 b(section)h(explains)f(the)h(main)d(data)i +(structures)j(used,)f(the)f(reasons)g(for)f(their)262 357 y(giv)o(en)c(comp)q +(osition)f(and)i(their)g(application)e(to)i(the)h(program.)262 +509 y Fu(6.3.1)55 b(P)n(osition)18 b(Represen)n(tation)262 +621 y Fp(The)c(p)q(osition)f(is)h(represen)o(ted)i(b)o(y)e(t)o(w)o(o)g +(structures,)h(P)o(osition)f(and)f(Colour.)344 754 y(P)o(osition)88 +b(=)15 b(64)p Ff(f)p Fp(PieceT)o(yp)q(e)p Ff(g)p Fp(64)344 +803 y(PieceT)o(yp)q(e)49 b(=)15 b(NoPiece)f Ff(j)g Fp(P)o(a)o(wn)f +Ff(j)h Fp(Knigh)o(t)f Ff(j)h Fp(Bishop)g Ff(j)f Fp(Ro)q(ok)g +Ff(j)g Fp(Queen)i Ff(j)f Fp(King)344 853 y(NoPiece)90 b(=)15 +b(0)344 903 y(P)o(a)o(wn)136 b(=)15 b(1)344 953 y(Knigh)o(t)110 +b(=)15 b(2)344 1003 y(Bishop)112 b(=)15 b(3)344 1052 y(Ro)q(ok)140 +b(=)15 b(4)344 1102 y(Queen)122 b(=)15 b(5)344 1152 y(King)148 +b(=)15 b(6)344 1252 y(Colour)113 b(=)15 b(64)p Ff(f)p Fp(colour)p +Ff(g)p Fp(64)344 1301 y(colour)125 b(=)15 b(White)e Ff(j)h +Fp(Blac)o(k)f Ff(j)h Fp(None)344 1351 y(White)124 b(=)15 b(0)344 +1401 y(Blac)o(k)135 b(=)15 b(1)344 1451 y(None)143 b(=)15 b(2)262 +1569 y(These)f(t)o(w)o(o)e(structures)k(are)d(similar)d(to)j(the)g(ones)h +(Shannon)f(originally)d(suggested.)19 b(The)262 1619 y(di\013erences)c +(include)e(the)g(splitting)f(of)g(piece)i(t)o(yp)q(e)f(and)g(colour)g(to)f +(enable)h(generic)h(mo)o(v)o(e)262 1669 y(generation)k(and)h(square)g(con)o +(trol)g(functions.)32 b(Both)19 b(structures)j(are)d(linear)f(and)g(one)262 +1719 y(dimensional.)d(Note)e(that)g(no)f(o\013{b)q(oard)g(edge)i(is)e(used)i +(on)e(this)h(b)q(oard,)f(as)h(an)f(alternate)262 1769 y(mo)o(v)o(e)i +(generation)i(pro)q(cess)i(is)e(used.)25 b(This)16 b(enables)g(all)f(piece)i +(square)g(tables)f(to)g(b)q(e)g(of)262 1818 y(a)d(signi\014can)o(tly)h +(reduced)i(size)f(when)g(compared)e(to)h(a)g(10x12)f(b)q(oard)i(approac)o(h,) +f(for)f(ex-)262 1868 y(ample.)j(Although)c(the)i(structures)h(are)f(one)f +(dimensional)e(for)h(e\016ciency)m(,)h(conceptually)262 1918 +y(they)h(remain)e(t)o(w)o(o)i(dimensional.)324 2003 y(The)e(most)f(imp)q +(ortan)o(t)f(reason)j(for)e(suc)o(h)i(a)f(64)f(elemen)o(t)h(structure)i(is)e +(that)g(an)o(y)f(mo)o(v)o(e)262 2053 y(can)19 b(b)q(e)h(represen)o(ted)j(in)c +(12)g(bits,)h(6)f(bits)h(for)f(the)h(from-square)f(and)g(6)g(bits)h(for)f +(the)262 2103 y(to-square.)j(This)15 b(enables)h(sp)q(ecialised)f(searc)o(h)i +(tables)e(to)g(b)q(e)h(used)g(whic)o(h)f(are)g(directly)262 +2153 y(accessed)h(b)o(y)e(the)g(12)g(bit)g(mo)o(v)o(e)e(v)n(alue.)18 +b(Additionally)m(,)11 b(it)j(allo)o(ws)f(a)g(complete)h(mo)o(v)o(e)e(de-)262 +2203 y(scription)d(including)g(mo)o(v)o(e)f(t)o(yp)q(e,)j(suc)o(h)g(as)f +(castling,)f(pa)o(wn)h(promotion)d(etc,)12 b(to)d(b)q(e)i(stored)262 +2252 y(in)i(16)g(bits.)18 b(Th)o(us)d(mo)o(v)o(e)d(comparisons)h(and)g +(copies)i(can)f(b)q(e)g(done)h(in)e(one)h(op)q(eration.)946 +2574 y(114)p eop +%%Page: 115 117 +115 116 bop 262 307 a Fu(6.3.2)55 b(Game)17 b(T)-5 b(ree)344 +434 y Fp(T)m(ree)157 b(=)15 b(0)p Ff(f)p Fp(No)q(de)p Ff(g)p +Fp(2000)344 483 y(No)q(de)142 b(=)15 b(Mo)o(v)o(e)e(+)h(Score)174 +b(/*)13 b(4)h(b)o(ytes)g(*/)344 533 y(Mo)o(v)o(e)139 b(=)15 +b(t)o(yp)q(e)f(+)g(mo)o(v)o(e)192 b(/*)13 b(4)h(bit)f(t)o(yp)q(e,)h(12)g(bit) +f(mo)o(v)o(e)f(*/)344 583 y(mo)o(v)o(e)141 b(=)15 b(0..4095)297 +b(/*)13 b(12)h(bits)g(*/)344 633 y(t)o(yp)q(e)157 b(=)15 b(Capture)f +Ff(j)f Fp(Promotion)f Ff(j)i Fp(Castle)g Ff(j)f Fp(EnP)o(assan)o(t)344 +683 y(Promotion)42 b(=)15 b(PQueen)g Ff(j)e Fp(PKnigh)o(t)h +Ff(j)f Fp(PRo)q(ok)h Ff(j)f Fp(PBishop)344 732 y(Capture)89 +b(=)15 b(8)405 b(/*)13 b(bit)h(15)f(*/)344 782 y(PQueen)94 +b(=)15 b(4)405 b(/*)13 b(bit)h(14)f(*/)344 832 y(PKnigh)o(t)82 +b(=)15 b(5)405 b(/*)13 b(bit)h(14,12)e(*/)344 882 y(PRo)q(ok)112 +b(=)15 b(6)405 b(/*)13 b(bit)h(14,13)e(*/)344 932 y(PBishop)84 +b(=)15 b(7)405 b(/*)13 b(bit)h(14,13,12)d(*/)344 982 y(Castle)123 +b(=)15 b(2)405 b(/*)13 b(bit)h(13)f(*/)344 1031 y(EnP)o(assan)o(t)46 +b(=)15 b(1)405 b(/*)13 b(bit)h(12)f(*/)344 1081 y(Score)140 +b(=)15 b Ff(\000)p Fp(4096..4095)262 1208 y(A)o(t)f(least)g(part)h(of)e(the)i +(game)e(tree)i(m)o(ust)f(b)q(e)g(stored)i(so)e(it)g(can)g(b)q(e)h(tra)o(v)o +(ersed)h(e\016cien)o(tly)m(.)262 1258 y(This)j(structure)i(allo)o(ws)d(the)i +(storage)g(of)f(no)q(des)h(generated,)i(but)d(not)h(y)o(et)f(visited)h(at)262 +1308 y(the)d(curren)o(t)h(searc)o(h)g(iteration.)25 b(Only)17 +b(the)g(no)q(des)g(generated)h(do)o(wn)f(the)g(curren)o(t)h(line)262 +1357 y(of)g(exploration)h(need)h(to)f(b)q(e)h(stored)g(as)f(these)i(are)f +(the)f(ones)h(whic)o(h)f(ha)o(v)o(e)g(not)g(b)q(een)262 1407 +y(completely)11 b(searc)o(hed.)20 b(Eac)o(h)13 b(no)q(de)g(is)g(only)f +(generated)j(once)e(at)g(eac)o(h)h(iteration)e(except)262 1457 +y(when)j(a)g(fail)f(high)g(or)h(lo)o(w)f(o)q(ccurs.)23 b(While)15 +b(storage)g(of)g(the)g(whole)g(tree)i(w)o(ould)d(sligh)o(tly)262 +1507 y(impro)o(v)o(e)f(p)q(erformance,)h(it)h(w)o(ould)f(b)q(e)i(extremely)e +(costly)i(in)e(terms)h(of)f(memory)f(usage,)262 1557 y(particularly)g(in)g +(the)i(endgame.)324 1642 y(T)m(ogether)f(with)f(the)h(mo)o(v)o(e)d(stored)k +(at)e(eac)o(h)h(no)q(de,)f(a)g(score)i(is)e(used)h(to)g(enable)f(mo)o(v)o(e) +262 1692 y(ordering)g(at)h(in)o(ternal)g(no)q(des)g(of)g(the)g(searc)o(h)h +(tree.)262 1914 y Fu(6.3.3)55 b(T)-5 b(ransp)r(osition)18 b(T)-5 +b(able)262 2026 y Fp(In)17 b(c)o(hess,)i(the)f(game)e(tree)j(is)e(really)g(a) +h(directed)g(graph)g(of)f(mo)o(v)o(es.)27 b(As)18 b(the)g(depth)g(of)262 +2076 y(searc)o(h)13 b(increases,)g(the)g(n)o(um)o(b)q(er)e(of)g(p)q(oten)o +(tial)h(transp)q(ositions)g(increases)h(exp)q(onen)o(tially)m(.)262 +2126 y(Additionally)m(,)k(when)j(using)f(an)f(iterativ)o(e)i(deep)q(ening)g +(searc)o(h,)h(the)f(no)q(des)g(visited)f(at)262 2176 y(iteration)13 +b Fh(n)c Ff(\000)h Fp(1)k(are)g(also)f(usually)g(visited)h(at)g(iteration)g +Fh(n)p Fp(.)k(Therefore,)d(the)f(transp)q(osi-)262 2226 y(tion)f(table)i(pro) +o(vides)f(a)g(useful)h(w)o(a)o(y)e(of)h(storing)g(and)h(retrieving)f +(previously)g(calculated)262 2275 y(mo)o(v)o(es)h(and)i(scores.)28 +b(F)m(or)17 b(deep)q(er)h(searc)o(hes)h(\(depth)f Fh(>)f Fp(5\))f(a)h(transp) +q(osition)g(table)f(can)262 2325 y(signi\014can)o(tly)10 b(impro)o(v)o(e)f +(the)j(p)q(erformance)g(of)e(a)i(program.)j(This)c(is)h(particularly)e +(eviden)o(t)262 2375 y(in)j(the)h(endgame)f(where)i(m)o(uc)o(h)e(deep)q(er)j +(searc)o(hes)g(are)e(p)q(ossible.)946 2574 y(115)p eop +%%Page: 116 118 +116 117 bop 344 357 a Fp(T)m(ransT)m(able)21 b(=)14 b(1)p Ff(f)p +Fp(T)m(ableEn)o(try)p Ff(g)p Fp(32768)344 407 y(T)m(ableEn)o(try)20 +b(=)14 b(HashLo)q(c)o(k)g(+)g(HMo)o(v)o(e)g(+)g(TScore)344 +457 y(HashLo)q(c)o(k)47 b(=)14 b(long)f(in)o(teger)390 b(/*)14 +b(32)f(bits)h(*/)344 506 y(HMo)o(v)o(e)97 b(=)14 b(Depth)g(+)g(mo)o(v)o(e)344 +556 y(TScore)99 b(=)14 b(T)o(yp)q(e)g(+)g(Score)354 b(/*)14 +b(3)f(bit)h(t)o(yp)q(e,)g(13)f(bit)h(score)h(*/)344 606 y(Depth)113 +b(=)14 b(0..15)516 b(/*)14 b(4)f(bits)h(*/)344 656 y(T)o(yp)q(e)132 +b(=)14 b(Lo)q(c)o(k)o(ed)g(+)g(T)m(rueScore)h(+)f(Bound)56 +b(/*)14 b(MS)g(3)f(bits)h(of)f(TScore)i(*/)344 706 y(Lo)q(c)o(k)o(ed)98 +b(=)14 b(8)582 b(/*)14 b(bit)f(15)g(*/)344 756 y(T)m(rueScore)45 +b(=)14 b(4)582 b(/*)14 b(bit)f(14)g(*/)344 805 y(Bound)106 +b(=)14 b(2)582 b(/*)14 b(bit)f(13,)g(set)i(if)e(Upp)q(erBound)i(*/)1218 +855 y(/*)f(unset)g(if)g(Lo)o(w)o(erBound)g(*/)262 964 y(This)19 +b(data)f(structure)k(represen)o(ts)f(the)f(transp)q(osition)f(table)g(used)h +(b)o(y)f(HIAR)o(CS)g(5.0.)262 1013 y(Eac)o(h)14 b(en)o(try)g(stores)h(5)f +(distinct)g(t)o(yp)q(es)h(of)e(information:)312 1086 y(1.)20 +b(P)o(osition)13 b(lo)q(c)o(k.)312 1164 y(2.)20 b(V)m(alue)14 +b(of)f(the)h(p)q(osition.)312 1242 y(3.)20 b(Best)c(mo)o(v)o(e)c(kno)o(wn)h +(in)h(the)g(p)q(osition.)312 1320 y(4.)20 b(Depth)15 b(of)e(the)h(subtree)i +(from)c(whic)o(h)i(the)g(v)n(alue)g(is)f(calculated.)312 1398 +y(5.)20 b(Flags)14 b(indicating)e(the)j(score)g(t)o(yp)q(e)f(relativ)o(e)g +(to)g(the)g Fh(\013\014)j Fp(windo)o(w.)262 1504 y Fl(T)l(able)e(Access)262 +1616 y Fp(The)c(access)h(metho)q(d)e(used)h(is)g(similar)d(to)i(the)h(one)g +(prop)q(osed)h(b)o(y)e(Zobrist)h([63)o(].)16 b(A)11 b(set)h(S)e(of)262 +1666 y(2x2x6x64)i(randomly)h(generated)j(32)d(bit)i(in)o(tegers)g(are)g(used) +g(to)f(represen)o(t)j(all)c(p)q(ossible)262 1716 y(piece/square)k(com)o +(binations)d(\(2)j(in)o(tegers)g(p)q(er)g(square;)h(2)e(colours;)h(6)f(piece) +h(t)o(yp)q(es;)h(64)262 1766 y(squares\).)324 1851 y(A)c(single)f(hash)h +(index)g(can)g(then)h(b)q(e)f(calculated)g(for)g(an)o(y)f(p)q(osition)h(b)o +(y)f(applying:)347 1936 y Ff(8)p Fh(col)q(;)7 b(pc;)g(sq)48 +b(H)619 1942 y Fe(i)644 1936 y Fp(=)12 b Fh(H)723 1942 y Fe(i)748 +1936 y Fm(xor)k Fh(S)847 1942 y Fe(col;pc;sq)324 1986 y Fp(where)373 +2036 y(P)o(osition[sq])c(=)j(p)q(c)f Fl(and)f Fp(Colour[sq])g(=)h(col)324 +2121 y(The)e(hash)f(indexes)h(are)g(actually)f(incremen)o(tally)f(up)q(dated) +i(in)f(HIAR)o(CS.)f(F)m(or)h(exam-)262 2171 y(ple,)i(to)h(mo)o(v)o(e)e(from)g +(square)j Fm(fsq)e Fp(to)h(square)h Fm(tsq)p Fp(,)e(the)h(follo)o(wing)e(op)q +(eration)h(is)h(required:)608 2285 y Fh(H)643 2291 y Fe(i)p +Fk(2)684 2285 y Fp(=)e(\()p Fh(H)779 2291 y Fe(i)p Fk(1)821 +2285 y Fm(xor)k Fh(S)920 2291 y Fe(col;pc;f)s(sq)1068 2285 +y Fp(\))c Fm(xor)28 b Fh(S)1207 2291 y Fe(col;pc;tsq)324 2399 +y Fp(Captures,)c(pa)o(wn)e(promotion,)f(en-passan)o(t)h(and)g(castling)f(all) +g(use)h(a)g(similar,)e(if)262 2449 y(sligh)o(tly)12 b(more)h(complex)g +(approac)o(h.)946 2574 y(116)p eop +%%Page: 117 119 +117 118 bop 324 307 a Fp(Using)14 b(t)o(w)o(o)g(32)h(bit)f(hash)h(indexes,)g +(direct)h(transp)q(osition)e(table)h(access)h(is)f(p)q(ossible.)262 +357 y(The)g(\014rst)g(index)g(is)f(used)h(to)g(access)h(the)g(table)e(and)g +(the)i(second)f(is)g(used)g(as)g(a)f(p)q(osition)262 407 y(lo)q(c)o(k)d(to)g +(c)o(hec)o(k)i(that)f(the)g(correct)h(en)o(try)f(has)g(b)q(een)h(accessed)h +(and)d(reduce)j(the)e(p)q(ossibilit)o(y)262 457 y(of)h(an)g(undetected)k +(collision.)324 542 y(Unlik)o(e)10 b(normal)e(hashing,)i(only)g(one)h(table)f +(access)i(is)f(tried.)17 b(This)10 b(mak)o(es)g(the)h(pro)q(cess)262 +592 y(b)q(oth)k(simpler)f(and)h(more)f(e\016cien)o(t.)22 b(Additionally)m(,) +13 b(the)j(table)f(is)g(split)g(in)o(to)f(t)o(w)o(o)h(halfs,)262 +641 y(one)c(half)e(for)i(white)g(to)g(pla)o(y)f(p)q(ositions)g(and)h(the)g +(other)h(half)e(for)g(blac)o(k)h(to)f(pla)o(y)g(p)q(ositions.)262 +784 y Fl(En)o(try)k(Storage)262 896 y Fp(No)q(de)j(attributes)h(are)g(stored) +g(in)f(the)h(transp)q(osition)f(table)g(as)g(the)h(no)q(de)g(is)f(ab)q(out)g +(to)262 946 y(bac)o(k)11 b(up)g(its)h(results)g(to)f(its)h(paren)o(t)g(no)q +(de.)17 b(The)12 b(en)o(try)g(is)f Fl(not)f Fp(stored)j(if)d(it)h(will)f(o)o +(v)o(erwrite)262 996 y(an)k(existing)g(en)o(try)h(whose)g(information)d(is)i +(the)h(result)h(of)e(a)g(subtree)i(searc)o(h)g(of)e(greater)262 +1046 y(depth.)38 b(Therefore,)23 b(eac)o(h)d(en)o(try)h(stored)h(is)e +(privileged)g(dep)q(ending)h(on)f(the)h(subtree)262 1095 y(depth.)34 +b(As)20 b(v)n(alues)f(deriv)o(ed)h(from)d(a)i(deep)i(searc)o(h)f(can)f +(constitute)i(a)e(great)g(deal)g(of)262 1145 y(e\013ort,)14 +b(this)g(is)f(a)h(signi\014can)o(t)f(impro)o(v)o(emen)o(t)f(o)o(v)o(er)h(a)h +(simple)e(replacemen)o(t)i(algorithm.)324 1230 y(The)g(p)q(osition)e(score)j +(stored)f(in)f(an)g(en)o(try)h(ma)o(y)d(b)q(e)j(a)f(true)h(score)h(or)e(a)g +(score)h(outside)262 1280 y(the)g(curren)o(t)i Fh(\013\014)h +Fp(windo)o(w,)c(i.e.)18 b(a)c(cut)h(o\013.)k(In)14 b(the)h(latter)g(case,)g +(the)f(score)i(represen)o(ts)h(a)262 1330 y(searc)o(h)e(b)q(ound)f(whic)o(h)g +(ma)o(y)e(b)q(e)j(used)g(to)f(narro)o(w)g(an)g Fh(\013\014)j +Fp(windo)o(w)c(if)g(retriev)o(ed.)21 b(Hence,)262 1380 y(the)14 +b(score)h(t)o(yp)q(e)g(is)e(also)h(stored)g(in)g(the)g(en)o(try)m(.)324 +1465 y(The)f(b)q(est)i(kno)o(wn)d(mo)o(v)o(e)g(from)f(the)j(curren)o(t)h(no)q +(de)e(is)g(also)g(stored)h(to)f(impro)o(v)o(e)e(mo)o(v)o(e)262 +1515 y(ordering)i(on)h(retriev)n(al.)262 1657 y Fl(En)o(try)g(Retriev)m(al) +262 1769 y Fp(When)e(a)h(no)q(de)g(in)f(the)h(main)e(searc)o(h)j(is)e +(visited,)h(the)g(transp)q(osition)g(table)f(is)h(c)o(hec)o(k)o(ed)h(to)262 +1819 y(see)g(if)e(an)h(en)o(try)g(for)g(the)g(curren)o(t)i(p)q(osition)d +(exists.)19 b(If)12 b(an)h(en)o(try)h(exists,)f(it)g(is)f(c)o(hec)o(k)o(ed)j +(to)262 1869 y(see)e(if)f(it)g(is)h(storing)f(information)e(with)i(a)g(searc) +o(h)i(depth)f(equal)f(or)h(greater)g(to)g(the)g(depth)262 1919 +y(required)h(for)g(this)g(searc)o(h.)19 b(If)14 b(so,)f(the)h(en)o(try)h(can) +f(b)q(e)h(retriev)o(ed.)324 2004 y(Once)j(retriev)o(ed,)h(the)e(en)o(try's)h +(p)q(osition)e(score)j(can)e(b)q(e)g(used.)29 b(Dep)q(ending)17 +b(on)g(the)262 2054 y(score's)e(t)o(yp)q(e,)e(3)h(outcomes)f(are)i(p)q +(ossible.)312 2169 y(1.)20 b Fl(T)l(rue)c(Score)p Fp(:)i(The)d(v)n(alue)f +(stored)h(is)g(an)f(exactly)g(calculated)h(v)n(alue.)k(Therefore,)365 +2219 y(the)c(v)n(alue)e(of)g(this)h(no)q(de)g(and)g(its)f(subtree)j(is)e(kno) +o(wn)f(\(for)h(the)g(required)h(depth)f(of)365 2268 y(searc)o(h\))h(and)f +(can)g(b)q(e)h(returned)g(to)f(its)g(paren)o(t)g(no)q(de)h(without)e(searc)o +(hing.)312 2350 y(2.)20 b Fl(Upp)q(er)11 b(Bound)p Fp(:)k(The)c(v)n(alue)f +(stored)h(is)f(not)h(exact,)g(it)f(w)o(as)h(the)g(result)g(of)f(a)h(cut)g +(o\013)365 2399 y(in)h(the)h(subtree)h(b)q(elo)o(w)e(the)g(no)q(de)h(whic)o +(h)f(stored)h(it.)k(Therefore,)d(the)e(v)n(alue)g(of)g(this)365 +2449 y(no)q(de)k(is)f(not)h(kno)o(wn,)e(ho)o(w)o(ev)o(er,)i(the)g(v)n(alue)f +(stored)h(can)f(b)q(e)h(used)h(to)e(narro)o(w)g(the)946 2574 +y(117)p eop +%%Page: 118 120 +118 119 bop 365 307 a Fp(curren)o(t)15 b Fh(\013\014)g Fp(windo)o(w)d(b)o(y)h +(p)q(ossibly)g(reducing)g(the)h Fh(\014)h Fp(v)n(alue)e(and)f(p)q(erhaps)i +(thereb)o(y)365 357 y(causing)g(a)g(cut)g(o\013.)312 440 y(3.)20 +b Fl(Lo)o(w)o(er)f(Bound)p Fp(:)24 b(The)18 b(v)n(alue)f(stored)h(is)g(not)f +(an)g(exact)i(v)n(alue,)e(only)g(a)g(b)q(ound.)365 490 y(The)h(v)n(alue)f +(can,)h(ho)o(w)o(ev)o(er,)g(b)q(e)g(used)g(to)f(narro)o(w)h(the)g +Fh(\013\014)h Fp(windo)o(w)e(b)o(y)g(p)q(ossibly)365 540 y(increasing)d(the)h +Fh(\013)e Fp(v)n(alue)h(and)f(p)q(erhaps)i(thereb)o(y)g(causing)f(a)g(cut)g +(o\013.)324 658 y(Assuming)g(the)i(no)q(de)g(is)f(not)g(terminated)g(b)o(y)g +(a)g(true)h(score)g(or)g(cut)g(o\013,)f(the)h(stored)262 708 +y(mo)o(v)o(e)f(can)i(b)q(e)h(retriev)o(ed)g(and)f(searc)o(hed)h(\014rst)g +(from)d(this)i(no)q(de.)28 b(This)17 b(should)f(signi\014-)262 +758 y(can)o(tly)10 b(impro)o(v)o(e)g(mo)o(v)o(e)f(ordering)i(as)g(this)g(is)g +(v)o(ery)h(lik)o(ely)d(to)i(b)q(e)h(the)g(b)q(est)g(mo)o(v)o(e)d(a)o(v)n +(ailable.)262 901 y Fl(Op)q(ening)k(Bo)q(ok)262 1013 y Fp(This)18 +b(transp)q(osition)g(table)g(is)g(initially)e(loaded)i(with)g(an)g('Op)q +(ening)g(Bo)q(ok')g(of)g(mo)o(v)o(es)262 1063 y(b)q(efore)g(the)g(game)e(b)q +(egins.)30 b(This)17 b(allo)o(ws)g(the)h(program)e(to)h('kno)o(w')f(ab)q(out) +i(particular)262 1113 y(op)q(ening)f(sequences)k(commonly)15 +b(pla)o(y)o(ed)i(b)o(y)h(strong)g(c)o(hess)i(pla)o(y)o(ers.)30 +b(Instead)19 b(of)e(just)262 1163 y(mo)o(v)o(e)8 b(sequences)13 +b(b)q(eing)d(stored,)i(p)q(ositions)e(and)g(asso)q(ciated)h(mo)o(v)o(es)e +(are)i(stored)g(enabling)262 1212 y(the)j(program)e(to)i(detect)i(an)o(y)d +(transp)q(osition)h(of)f(mo)o(v)o(es.)k(This)d(a)o(v)o(oids)f(cases)i(where)g +(the)262 1262 y(opp)q(onen)o(t)i(can)g(fo)q(ol)f(the)h(program)f(b)o(y)g(pla) +o(ying)g(mo)o(v)o(es)f(in)i(an)g(un)o(usual)f(sequence.)30 +b(In)262 1312 y(fact,)12 b(sometimes)e(in)i(the)g(op)q(ening)g(the)h(program) +e(will)f(transp)q(ose)k(in)o(to)d(another)i(op)q(ening)262 +1362 y(itself,)d(e.g.)16 b(transp)q(osing)10 b(from)f(an)g(English)h(op)q +(ening)g(in)o(to)f(a)h(Queen's)h(Gam)o(bit)d(Declined.)262 +1513 y Fu(6.3.4)55 b(Refutation)18 b(T)-5 b(able)344 1640 y +Fp(RefutationT)m(able)60 b(=)14 b(1)p Ff(f)p Fp(V)m(ariation)p +Ff(g)p Fp(128)344 1690 y(V)m(ariation)185 b(=)14 b(1)p Ff(f)p +Fp(mo)o(v)o(e)p Ff(g)p Fp(32)262 1816 y(The)f(refutation)f(table)h(is)g(used) +h(to)e(store)i(the)g(exp)q(ected)g(con)o(tin)o(uation)e(follo)o(wing)f(eac)o +(h)i(1)262 1866 y(ply)f(mo)o(v)o(e.)k(Some)c(of)g(the)h(v)n(ariations)f(will) +f(represen)o(t)16 b(the)d(b)q(est)h(line)f(of)f(pla)o(y)m(,)f(others)j(will) +262 1916 y(represen)o(t)i(the)e(v)n(ariation)e(whic)o(h)i(refuted)h(the)g(1)e +(ply)h(mo)o(v)o(e)e(\(hence)j(the)g(name\).)324 2001 y(Ev)o(ery)21 +b(mo)o(v)o(e)d(searc)o(hed)23 b(at)d(iteration)g(n)g(has)h(its)f(exp)q(ected) +j(con)o(tin)o(uation)c(sa)o(v)o(ed.)262 2051 y(During)10 b(iteration)h(n+1,)h +(or)f(a)g(re-searc)o(h,)i(the)f(exp)q(ected)i(con)o(tin)o(uation)c(is)h +(searc)o(hed)i(\014rst.)262 2101 y(This)h(helps)i(to)f(drastically)f(impro)o +(v)o(e)f Fh(\013\014)k Fp(cut)f(o\013s)f(b)o(y)g(guiding)e(the)j(searc)o(h)g +(do)o(wn)f(lines)262 2151 y(whic)o(h)f(are)i(lik)o(ely)d(to)i(refute)h(the)f +(1)g(ply)f(mo)o(v)o(e)f(or)i(at)g(least)g(prime)e Fh(\013\014)18 +b Fp(with)c(reasonable)262 2201 y(v)n(alues.)946 2574 y(118)p +eop +%%Page: 119 121 +119 120 bop 262 307 a Fu(6.3.5)55 b(The)18 b(History)g(Heuristic)344 +434 y Fp(HistoryT)191 b(=)14 b(8192)p Ff(f)p Fp(V)m(alue)p +Ff(g)p Fp(8192)344 483 y(V)m(alue)253 b(=)14 b(0..65535)262 +597 y(The)f(History)g(Heuristic)h([50)o(])e(main)o(tains)f(a)h(record)j(of)d +(ev)o(ery)i(mo)o(v)o(e's)d(abilit)o(y)g(to)i(cause)h(a)262 +647 y(refutation.)22 b(The)16 b(table)f(is)h(split)f(in)o(to)g(t)o(w)o(o)g +(halfs;)g(one)h(half)e(for)h(white)h(mo)o(v)o(es)e(and)h(one)262 +697 y(half)h(for)i(blac)o(k)f(mo)o(v)o(es.)28 b(It)18 b(is)g(indexed)g(b)o(y) +f(the)i(12)e(bit)g(mo)o(v)o(e)f(v)n(alue)i(whic)o(h)f(uniquely)262 +747 y(iden)o(ti\014es)d(an)o(y)f(mo)o(v)o(e)609 732 y Fk(2)626 +747 y Fp(.)18 b(Therefore,)d(a)f(total)f(of)g(8192)g(table)h(en)o(tries)h +(are)f(required.)324 832 y(A)o(t)h(ev)o(ery)g(in)o(terior)g(no)q(de)g(of)f +(the)i(main)d(searc)o(h,)i(the)h(b)q(est)g(mo)o(v)o(e)d(found)h(is)h +(recorded)262 882 y(in)f(the)i(history)f(table)g(b)o(y)g(mo)q(difying)e(the)j +(appropriate)f(v)n(alue.)21 b(The)16 b(v)n(alue)e(is)i(actually)262 +932 y(mo)q(di\014ed)11 b(b)o(y)h(2)507 917 y Fe(d)526 932 y +Fp(,)g(where)i(d)e(is)h(the)g(minim)n(um)8 b(depth)13 b(of)f(the)h(subtree)i +(b)q(elo)o(w)d(the)h(deriv)o(ed)262 981 y(b)q(est)i(mo)o(v)o(e.)324 +1067 y(A)o(t)e(the)g(b)q(eginning)f(of)g(the)h(game)f(the)h(history)g(table)f +(has)h(all)f(its)g(en)o(tries)i(set)g(to)e(zero.)262 1116 y(Sc)o(hae\013er)18 +b([50)o(])f(suggests)h(that)f(the)h(table)f(is)g(reset)h(in)f(this)g(w)o(a)o +(y)f(at)h(the)h(start)g(of)e(eac)o(h)262 1166 y(new)e(searc)o(h.)21 +b(Ho)o(w)o(ev)o(er,)14 b(in)g(HIAR)o(CS,)g(the)h(table)f(is)g(not)h(reset)h +(b)q(et)o(w)o(een)f(searc)o(hes,)h(but)262 1216 y(adjusted.)27 +b(Eac)o(h)17 b(mo)o(v)o(e's)e(v)n(alue)h(is)h(adjusted)g(b)o(y)g(dividing)e +(it)i(b)o(y)f(4.)27 b(This)16 b(allo)o(ws)g(the)262 1266 y(table)d(to)h(ha)o +(v)o(e)g(some)f(in\015uence)i(on)e(the)i(next)f(searc)o(h.)324 +1351 y(The)19 b(history)g(heuristic)h(is)f(applied)g(at)g(eac)o(h)h(in)o +(terior)f(no)q(de)g(of)g(the)g(main)e(searc)o(h)262 1401 y(where)d(mo)o(v)o +(e)e(generation)h(is)g(required.)19 b(As)13 b(mo)o(v)o(es)f(are)i(generated,) +g(their)g(history)f(v)n(alue)262 1451 y(is)g(lo)q(ok)o(ed)g(up)g(in)g(the)h +(history)g(table)f(and)g(encorp)q(orated)i(in)o(to)e(a)g(sp)q(ecial)h(mo)o(v) +o(e)e(ordering)262 1501 y(score.)19 b(See)c(section)f(6.4.2)e(for)i(more)f +(details.)262 1650 y Fu(6.3.6)55 b(Incremen)n(tal)16 b(A)n(ttac)n(k)j(T)-5 +b(ables)344 1776 y Fp(A)o(ttac)o(kT)143 b(=)15 b(64)p Ff(f)p +Fp(A)o(ttac)o(kEn)o(try)p Ff(g)p Fp(64)344 1826 y(/*)f(16)f(b)o(yte)h(en)o +(try)h(*/)344 1876 y(A)o(ttac)o(kEn)o(try)69 b(=)15 b(A)o(ttac)o(kCo)q(de)f +(+)g(Coun)o(t)g(+)g(PieceList)344 1926 y(/*)g(16)f(bit)g(attac)o(k)h(co)q(de) +h(*/)344 1976 y(A)o(ttac)o(kCo)q(de)80 b(=)15 b(P)o(ad)e(+)h(A)o(ttP)h(+)f(A) +o(ttN)g(+)g(A)o(ttB)h(+)f(A)o(ttR)g(+)g(A)o(ttQ)g(+)g(A)o(ttK)344 +2026 y(P)o(ad)224 b(=)15 b(0)344 2075 y(A)o(ttP)205 b(=)15 +b(0..3)218 b(/*)14 b(Num)o(b)q(er)f(of)g(pa)o(wn)h(attac)o(ks,)f(2)h(bits)g +(*/)344 2125 y(A)o(ttN)202 b(=)15 b(0..7)218 b(/*)14 b(Num)o(b)q(er)f(of)g +(knigh)o(t)g(attac)o(ks,)h(3)g(bits)g(*/)344 2175 y(A)o(ttB)204 +b(=)15 b(0..7)218 b(/*)14 b(Num)o(b)q(er)f(of)g(bishop)h(attac)o(ks,)g(3)f +(bits)h(*/)344 2225 y(A)o(ttR)202 b(=)15 b(0..7)218 b(/*)14 +b(Num)o(b)q(er)f(of)g(ro)q(ok)h(attac)o(ks,)g(3)f(bits)h(*/)344 +2275 y(A)o(ttQ)201 b(=)15 b(0..7)218 b(/*)14 b(Num)o(b)q(er)f(of)g(queen)i +(attac)o(ks,)f(3)f(bits)h(*/)344 2324 y(A)o(ttK)201 b(=)15 +b(0..1)218 b(/*)14 b(Num)o(b)q(er)f(of)g(king)g(attac)o(ks,)h(1)g(bit)f(*/) +344 2374 y(Coun)o(t)183 b(=)15 b(0..255)176 b(/*)14 b(Coun)o(t)f(of)g(attac)o +(ks)i(*/)p 262 2411 573 2 v 308 2437 a Fj(2)325 2449 y Fi(although)9 +b(not)i(the)g(mo)o(v)o(e's)e(t)o(yp)q(e)946 2574 y Fp(119)p +eop +%%Page: 120 122 +120 121 bop 344 307 a Fp(PieceList)131 b(=)15 b(13)p Ff(f)p +Fp(A)o(ttSq)p Ff(g)p Fp(13)51 b(/*)14 b(List)f(of)h(attac)o(king)f(pieces)i +(*/)344 357 y(A)o(ttSq)188 b(=)15 b(square)168 b(/*)14 b(Square)g(of)f(piece) +i(attac)o(king)e(this)h(sq)g(*/)344 407 y(square)179 b(=)15 +b(0..63)262 534 y(Tw)o(o)20 b(attac)o(k)h(tables)g(are)g(main)o(tained,)f +(one)h(for)f(white)h(attac)o(ks)g(and)g(one)g(for)f(blac)o(k)262 +583 y(attac)o(ks.)j(These)17 b(tables)f(represen)o(t)i(p)q(erhaps)e(the)h +(most)d(imp)q(ortan)o(t)g(data)h(structure)j(in)262 633 y(the)d(program.)j +(Eac)o(h)d(table)g(records)h(all)e(the)h(attac)o(ks)g(b)o(y)f(a)h(giv)o(en)f +(colour)g(on)h(eac)o(h)g(and)262 683 y(ev)o(ery)k(square.)31 +b(Additionally)m(,)17 b(a)h(list)f(of)h(eac)o(h)h(piece)g(attac)o(king)e(eac) +o(h)i(square)g(is)f(also)262 733 y(main)o(tained.)324 818 y(This)f(table,)g +(allo)o(ws)f(complex)g(in)o(ter{piece)j(calculations)d(whic)o(h)h(w)o(ould)g +(otherwise)262 868 y(b)q(e)e(v)o(ery)g(time)e(consuming.)20 +b(F)m(or)14 b(example,)f(it)i(is)f(a)h(simple)e(matter)h(to)h(\014nd)f(the)i +(square)262 918 y(o)q(ccupied)k(b)o(y)g(a)g(c)o(hec)o(king)g(piece;)k(in)19 +b(turn)h(it)g(is)g(simple)e(to)i(calculate)g(whether)i(this)262 +968 y(c)o(hec)o(king)14 b(piece)g(is)g(itself)g(threatened)h(with)f(capture.) +324 1053 y(The)d(ev)n(aluation)e(function)h(mak)o(es)f(extensiv)o(e)i(use)g +(of)f(the)h(attac)o(k/defence)h(balance)e(of)262 1103 y(eac)o(h)j(square.)18 +b(Therefore,)13 b(these)h(tables)f(are)g(of)f(cen)o(tral)h(imp)q(ortance)f +(to)g(the)h(ev)n(aluation)262 1152 y(function)k(as)h(they)g(allo)o(w)e(it)i +(to)f(mak)o(e)g(v)n(arious)g(p)q(ositional)f(ev)n(aluations)h(whic)o(h)g(w)o +(ould)262 1202 y(otherwise)d(b)q(e)h(far)e(to)q(o)h(time)f(consuming.)324 +1287 y(These)18 b(tables)g(also)e(con)o(tribute)i(to)f(the)h(mo)o(v)o(e)d +(generation)i(and)g(in)g(particular)g(the)262 1337 y(legal)11 +b(c)o(hec)o(k)i(ev)n(asion)f(and)g(capture)i(mo)o(v)o(e)c(generation)j +(routines)g(of)e(the)i(program.)j(They)262 1387 y(are)e(also)f(imp)q(ortan)o +(t)f(in)h(the)i(mo)o(v)o(e)d(ordering)i(pro)q(cess)i(b)q(ecause)f +(information)c(ab)q(out)j(at-)262 1437 y(tac)o(k)o(ed)e(squares)h(is)f(used)i +(to)e(order)g(mo)o(v)o(es)f(according)i(to)f(ho)o(w)f(reasonable)i(they)g +(app)q(ear.)262 1487 y(F)m(or)h(example,)f(mo)o(ving)f(an)j(en-prise)g(piece) +h(or)e(capturing)h(an)g(undefended)h(piece)f(is)g(or-)262 1537 +y(dered)k(higher)f(than)g(mo)o(ving)e(a)i(piece)h(to)f(a)g(square)g(where)i +(it)d(will)g(b)q(e)i(en-prise.)32 b(See)262 1586 y(section)14 +b(6.4.2)e(for)i(more)f(details.)324 1672 y(All)f(this)h(attac)o(k)h(orien)o +(ted)f(information)e(is)i(far)g(to)q(o)g(time)f(consuming)g(to)h(regenerate) +262 1721 y(at)e(eac)o(h)g(new)h(no)q(de.)17 b(In)12 b(fact,)f(eac)o(h)h(mo)o +(v)o(e)d(only)h(c)o(hanges)i(some)f(of)f(the)i(attac)o(k)f(prop)q(erties)262 +1771 y(of)i(a)h(p)q(osition.)k(F)m(or)13 b(example,)g(in)g(the)i(op)q(ening)f +(p)q(osition,)f(the)i(mo)o(v)o(e)d(e4)i(w)o(ould)g(require)262 +1821 y(only)h(the)j(attac)o(ks)f(of)f(the)h(white)g(queen,)g(king's)f(bishop) +h(and)f(king's)g(pa)o(wn)g(to)h(b)q(e)g(ad-)262 1871 y(justed.)24 +b(Therefore,)17 b(an)e(incremen)o(tal)g(approac)o(h)h(seems)f(to)h(b)q(e)g(w) +o(arran)o(ted.)24 b(Although)262 1921 y(there)17 b(are)g(mo)o(v)o(es)e(whic)o +(h)h(mak)o(e)f(this)h(incremen)o(tal)f(approac)o(h)h(v)o(ery)h(complex,)e +(e.g.)25 b(an)262 1970 y(en-passan)o(t)18 b(mo)o(v)o(e;)f(and)h(the)g +(programming)c(of)j(suc)o(h)h(an)g(approac)o(h)f(is)h(v)o(ery)g(tric)o(ky)m +(,)g(I)262 2020 y(ha)o(v)o(e)13 b(found)h(it)f(to)h(b)q(e)g(v)o(ery)h(cost)f +(e\013ectiv)o(e.)324 2105 y(The)19 b(added)f(information)e(a)o(v)n(ailable)g +(at)i(all)f(no)q(des)i(is)f(extremely)g(useful)g(and)g(has)262 +2155 y(man)o(y)13 b(applications,)g(some)i(of)f(whic)o(h)h(ha)o(v)o(e)g(b)q +(een)h(sho)o(wn.)21 b(In)16 b(fact,)e(I)h(feel)g(the)h(full)e(p)q(o-)262 +2205 y(ten)o(tial)9 b(of)h(ha)o(ving)f(suc)o(h)i(a)f(w)o(ealth)h(of)e +(information)f(has)i(not)h(as)f(y)o(et)h(b)q(een)g(fully)e(exploited.)262 +2255 y(I)14 b(do)h(not)f(kno)o(w)h(of)f(an)o(y)g(other)h(c)o(hess)i(programs) +c(whic)o(h)i(incremen)o(tally)e(main)o(tain)f(suc)o(h)262 2305 +y(a)h(comprehensiv)o(e)h(attac)o(k)g(table)g(throughout)g(the)g(searc)o(h.) +946 2574 y(120)p eop +%%Page: 121 123 +121 122 bop 262 307 a Fu(6.3.7)55 b(Game)17 b(History)344 434 +y Fp(GameHistory)53 b(=)63 b(0)p Ff(f)p Fp(Mo)o(v)o(eRecord)p +Ff(g)p Fp(512)344 483 y(Mo)o(v)o(eRecord)71 b(=)63 b(GMo)o(v)o(e)13 +b(+)h(GScore)h(+)f(CPiece)h(+)f(CColour)f(+)h(EPsq)h(+)734 +533 y(Dra)o(wmn)d(+)i(Depth)g(+)h(UTime)d(+)i(No)q(des)h(+)f(Ev)n(al)f(+)734 +583 y(Hash1)h(+)g(Hash2)344 633 y(GMo)o(v)o(e)165 b(=)63 b(Mo)o(v)o(e)344 +683 y(GScore)166 b(=)63 b(Score)344 732 y(CPiece)171 b(=)63 +b(PieceT)o(yp)q(e)344 782 y(CColour)142 b(=)63 b(colour)344 +832 y(EPsq)201 b(=)63 b(square)344 882 y(Dra)o(wmn)138 b(=)63 +b(0..512)344 932 y(Depth)183 b(=)63 b(1..32)344 982 y(UTime)168 +b(=)63 b(long)13 b(in)o(teger)344 1031 y(No)q(des)185 b(=)63 +b(long)13 b(in)o(teger)344 1081 y(Ev)n(al)214 b(=)63 b(long)13 +b(in)o(teger)344 1131 y(Hash1)183 b(=)63 b(long)13 b(in)o(teger)344 +1181 y(Hash2)183 b(=)63 b(long)13 b(in)o(teger)262 1308 y(The)i(game)e +(history)i(data)g(structure)i(records)f(the)g(imp)q(ortan)o(t)d(elemen)o(ts)i +(of)f(eac)o(h)h(mo)o(v)o(e)262 1357 y(so)h(it)h(can)f(b)q(e)i(accurately)f +(rev)o(ersed,)i(if)d(necessary)m(.)28 b(This)16 b(structure)j(is)e(used)g +(for)f(b)q(oth)262 1407 y(actual)d(mo)o(v)o(es)g(pla)o(y)o(ed)g(in)g(the)i +(game)d(and)i(mo)o(v)o(es)f(made)f(while)i(searc)o(hing.)324 +1492 y(Dra)o(wmn)f(represen)o(ts)18 b(the)e(mo)o(v)o(e)e(n)o(um)o(b)q(er)h +(of)f(the)i(last)f(irrev)o(ersible)i(mo)o(v)o(e.)j(This)c(is)262 +1542 y(used)j(to)g(ease)g(detection)h(of)e(the)h(dra)o(w)g(b)o(y)f(3-fold)g +(rep)q(etition)h(or)f(the)i(50)e(mo)o(v)o(e)f(rule.)262 1592 +y(EPsq)e(is)f(stored)h(so)g(the)g(p)q(ossible)g(en-passan)o(t)g(capture)g +(square)g(can)g(b)q(e)g(restored)h(when)262 1642 y(the)f(mo)o(v)o(e)e(is)i +(rev)o(ersed.)23 b(GScore)15 b(stores)i(the)e(p)q(ositional)f(v)n(alue)g(of)g +(an)o(y)h(piece)g(captured)262 1692 y(to)d(enable)h(incremen)o(tal)f(ev)n +(aluation)g(and)h(restoration)g(while)g(searc)o(hing)g(and)g(stores)h(the)262 +1742 y(mo)o(v)o(e)e(score)j(for)e(mo)o(v)o(es)g(actually)g(pla)o(y)o(ed.)324 +1827 y(UTime,)18 b(No)q(des,)i(Ev)n(al)e(and)h(Depth)g(are)g(all)f +(measuremen)o(ts)g(stored)i(after)f(actual)262 1877 y(mo)o(v)o(es)10 +b(are)i(pla)o(y)o(ed.)17 b(The)12 b(other)g(\014elds,)g(GMo)o(v)o(e,)g +(CPiece,)g(CColour,)f(Hash1)h(and)g(Hash2)262 1926 y(are)i(used)h(to)e(allo)o +(w)g(easy)h(rev)o(ersal)h(of)e(an)o(y)g(mo)o(v)o(e.)946 2574 +y(121)p eop +%%Page: 122 124 +122 123 bop 262 307 a Fr(6.4)69 b(The)23 b(Algorithms)262 434 +y Fp(This)18 b(section)i(explains)e(some)g(of)g(the)h(more)f(critical)g +(algorithms)f(used)i(in)f(HIAR)o(CS.)262 483 y(Man)o(y)12 b(other)h +(algorithms)e(are)i(used)g(and)g(I)g(w)o(ould)e(refer)j(the)g(reader)g(to)e +(the)h(actual)g(co)q(de)262 533 y(listing)f(if)h(more)g(details)h(ab)q(out)g +(these)h(algorithms)d(are)i(required.)262 685 y Fu(6.4.1)55 +b(Mo)n(v)n(e)19 b(Generation)262 797 y Fp(The)11 b(mo)o(v)o(e)e(generation)h +(routine)h(used)h(dep)q(ends)g(on)e(the)i(t)o(yp)q(e)f(of)f(searc)o(h)i(b)q +(eing)e(emplo)o(y)o(ed)262 847 y(at)19 b(a)h(giv)o(en)f(no)q(de)i(and)e(the)i +(state)g(of)e(that)h(no)q(de.)36 b(Three)21 b(di\013eren)o(t)g(t)o(yp)q(es)g +(of)e(mo)o(v)o(e)262 896 y(generation)14 b(can)g(b)q(e)g(p)q(erformed:)312 +1015 y(1.)20 b Fl(F)l(ull)c(Pseudo)g(Legal)g(Mo)o(v)o(e)h(Generation)p +Fp(:)g(P)o(erformed)e(at)g(all)f(no)q(des)i(in)f(the)365 1065 +y(main)d(searc)o(h)j(tree)g(where)g(the)g(pla)o(y)o(er)e(to)h(mo)o(v)o(e)e +(is)i(not)p 1193 1072 60 2 v 14 w(in-c)o(hec)o(k.)312 1148 +y(2.)20 b Fl(F)l(ull)11 b(Legal)h(Mo)o(v)o(e)h(Generation)p +Fp(:)h(P)o(erformed)c(at)i(all)e(no)q(des)i(in)f(the)h(searc)o(h)g(tree)365 +1198 y(where)j(the)g(pla)o(y)o(er)e(to)h(mo)o(v)o(e)e(is)i(in-c)o(hec)o(k.) +312 1281 y(3.)20 b Fl(Selectiv)o(e)c(T)l(actical)i(Mo)o(v)o(e)h(Generation)p +Fp(:)h(P)o(erformed)c(at)g(all)f(no)q(des)i(in)f(the)365 1330 +y(quiescence)g(searc)o(h)f(tree)g(where)h(the)e(pla)o(y)o(er)g(to)f(mo)o(v)o +(e)f(is)i(not)p 1291 1337 V 14 w(in-c)o(hec)o(k.)262 1474 y +Fl(F)l(ull)g(Pseudo)g(Legal)h(Mo)o(v)o(e)g(Generation)262 1586 +y Fp(This)20 b(routine)g(generates)j(all)c(pseudo)i(legal)e(mo)o(v)o(es)g(in) +h(the)h(curren)o(t)h(p)q(osition.)37 b(The)262 1636 y(legalit)o(y)12 +b(of)h(eac)o(h)h(mo)o(v)o(e)f(is)g(not)h(c)o(hec)o(k)o(ed)h(at)f(this)g +(stage)g(for)g(2)g(reasons:)324 1754 y Ff(\017)20 b Fp(Most)14 +b(mo)o(v)o(es)f(ma)o(y)f(not)i(need)h(searc)o(hing)f(at)g(all)e(b)q(ecause)k +(of)d Fh(\013\014)k Fp(cut)d(o\013s.)324 1837 y Ff(\017)20 +b Fp(Most)14 b(mo)o(v)o(es)f(are)h(legal)f(in)g(p)q(ositions)g(where)i(a)f +(king)f(is)g(not)h(in)f(c)o(hec)o(k.)19 b(Therefore)365 1887 +y(it)14 b(w)o(ould)f(b)q(e)h(w)o(asteful)g(to)g(test)h(for)e(the)i +(exceptional)f(case)h(at)e(this)h(stage.)324 2005 y(All)d(mo)o(v)o(es)h(are)g +(generated)i(using)e(an)h(o\013set)g(metho)q(d)f(via)f(a)h(set)i(of)e(mo)o(v) +o(e)e(generation)262 2055 y(tables.)35 b(F)m(or)19 b(example,)g(to)g(mo)o(v)o +(e)f(in)h(direction)h(3)f(\()p Ff(\000)p Fp(8)h(o\013set\))g(the)g(curren)o +(t)h(square,)262 2105 y Fm(sq1)c Fp(sa)o(y)m(,)g(is)f(used)i(as)f(an)g(index) +g(in)o(to)g(a)f(table)h(whic)o(h)g(giv)o(es)g(the)h(resulting)f('to)f +(square')262 2155 y(\()p Fm(sq1)p Ff(\000)p Fp(8\).)23 b(If)15 +b(the)h('to)f(square')h(is)f(o\013)h(the)g(b)q(oard,)f(the)i(n)o(um)o(b)q(er) +d(128)h(is)g(returned)j(\(most)262 2205 y(signi\014can)o(t)10 +b(bit)h(set\).)18 b(This)11 b(metho)q(d)g(a)o(v)o(oids)f(the)i(need)g(to)f +(ha)o(v)o(e)g(a)g(b)q(oundary)g(around)g(the)262 2254 y(b)q(oard,)16 +b(therefore)i(allo)o(wing)c(a)i(64)g(square)h(b)q(oard.)25 +b(As)17 b(explained)f(earlier,)g(this)h(allo)o(ws)262 2304 +y(con)o(v)o(enien)o(t)d(12)f(bit)h(mo)o(v)o(e)e(storage.)324 +2389 y(All)h(non)h(capture/sp)q(ecial)h(mo)o(v)o(es)d(are)j(generated)g +(using)f(these)h(mo)o(v)o(e)e(tables.)18 b(Cap-)262 2439 y(tures)12 +b(are)g(generated)h(directly)f(from)d(the)j(appropriate)g(attac)o(k)f(table.) +18 b(P)o(a)o(wn)11 b(promotion)946 2574 y(122)p eop +%%Page: 123 125 +123 124 bop 262 307 a Fp(to)17 b(minor)e(pieces)k(is)e(catered)i(for,)e(eac)o +(h)h(mo)o(v)o(e)d(ha)o(ving)i(the)g(same)g(12)g(bit)g(mo)o(v)o(e)e(co)q(de,) +262 357 y(but)e(a)h(di\013eren)o(t)h(mo)o(v)o(e)d(t)o(yp)q(e.)18 +b(Castling)13 b(mo)o(v)o(es)f(are)j(generated)g(only)e(if)f(the)j(follo)o +(wing)c(5)262 407 y(conditions)i(are)h(met:)312 525 y(1.)20 +b(The)15 b(king)e(has)h(nev)o(er)h(mo)o(v)o(ed.)312 608 y(2.)20 +b(The)15 b(ro)q(ok)e(in)o(v)o(olv)o(ed)g(has)h(nev)o(er)h(mo)o(v)o(ed.)312 +691 y(3.)20 b(The)15 b(squares)g(b)q(et)o(w)o(een)g(the)f(king)g(and)f(ro)q +(ok)h(are)g(empt)o(y)m(.)312 774 y(4.)20 b(The)15 b(king)e(is)g(not)h(in)g(c) +o(hec)o(k.)312 857 y(5.)20 b(The)c(king)f(will)f(not)i(pass)g(through)g(or)f +(in)o(to)g(c)o(hec)o(k)i(as)e(part)h(of)f(the)h(castling)f(ma-)365 +907 y(no)q(euvre.)262 1026 y(The)f(incremen)o(tal)f(attac)o(k)h(table)f(is)h +(v)o(ery)g(useful)g(for)g(c)o(hec)o(king)g(conditions)g(4)f(and)h(5.)324 +1111 y(En-passan)o(t)h(mo)o(v)o(es)e(are)h(tested)i(and)e(generated)i(b)o(y)e +(c)o(hec)o(king)g(the)h(relev)n(an)o(t)g(attac)o(k)262 1161 +y(table)e(for)h(pa)o(wn)f(attac)o(ks)i(on)e(the)i(curren)o(t)g(en-passan)o(t) +g(square)f(\(if)f(an)o(y\).)262 1304 y Fl(F)l(ull)h(Legal)g(Mo)o(v)o(e)i +(Generation)262 1416 y Fp(When)10 b(the)h(king)e(is)h(in)g(c)o(hec)o(k,)i +(most)d(pseudo)i(legal)e(mo)o(v)o(es)g(are)i(in)f(fact)g(illegal.)15 +b(Therefore,)262 1466 y(it)e(mak)o(es)g(sense)i(to)f(generate)h(only)e(legal) +g(mo)o(v)o(es)g(when)h(the)h(king)e(is)h(in)f(c)o(hec)o(k.)324 +1551 y(It)h(is)f(surprising)h(ho)o(w)g(man)o(y)e(c)o(hess)j(programs)d(con)o +(tin)o(ue)i(to)g(generate)h(pseudo)g(legal)262 1601 y(mo)o(v)o(es)c(ev)o(en)j +(when)f(the)g(king)g(is)f(in)h(c)o(hec)o(k.)18 b(They)13 b(then)h(w)o(aste)f +(time)f(pro)o(ving)g(that)h(most)262 1651 y(of)e(the)i(mo)o(v)o(es)e +(generated)j(are)f(in)f(fact)g(illegal.)j(Admittedly)m(,)c(it)h(do)q(es)h +(tak)o(e)f(some)g(sophis-)262 1701 y(ticated)g(data)f(structures)k(to)c +(enable)h(suc)o(h)h(legal)d(mo)o(v)o(e)h(generation)h(to)f(b)q(e)i +(accomplished)262 1750 y(e\016cien)o(tly)m(.)j(My)10 b(incremen)o(tal)g +(attac)o(k)h(tables)g(do)f(pro)o(vide)g(enough)h(information)d(to)i(allo)o(w) +262 1800 y(suc)o(h)k(mo)o(v)o(e)f(generation)h(to)g(b)q(e)g(done)g(v)o(ery)h +(e\016cien)o(tly)m(.)i(In)d(fact,)g(in)f(tests,)i(I)f(ha)o(v)o(e)g(found)262 +1850 y(legal)f(mo)o(v)o(e)f(generation)j(is)f(appro)o(ximately)d(10)j(times)f +(faster)i(than)f(pseudo)h(legal)e(mo)o(v)o(e)262 1900 y(generation)h(and)f(v) +n(alidation,)e(assuming)i(no)g Fh(\013\014)k Fp(cut)d(o\013s)g(o)q(ccur.)324 +1985 y(Legal)f(mo)o(v)o(es)g(when)h(in)f(c)o(hec)o(k)i(fall)e(in)o(to)g(one)h +(of)f(the)i(follo)o(wing)c(3)j(categories:)312 2104 y(1.)20 +b(King)14 b(mo)o(v)o(es)e(to)i(unattac)o(k)o(ed)g(squares.)312 +2187 y(2.)20 b(Captures)15 b(of)e(the)i(c)o(hec)o(king)f(piece)h(b)o(y)f +(pieces)h(not)f(pinned)g(to)f(the)i(king.)312 2270 y(3.)20 +b(In)o(terp)q(osition)10 b(b)q(et)o(w)o(een)g(the)g(king)f(and)g(the)h(c)o +(hec)o(king)g(piece,)g(b)o(y)g(pieces)g(not)f(pinned)365 2319 +y(to)14 b(the)h(king.)946 2574 y(123)p eop +%%Page: 124 126 +124 125 bop 262 307 a Fp(In)16 b(category)h(1,)f(it)g(is)g(imp)q(ortan)o(t)f +(to)h(tak)o(e)h(accoun)o(t)g(of)e(c)o(hec)o(ks)j(b)o(y)e(v)o(ector)h(t)o(yp)q +(e)g(pieces)262 357 y(\(bishop,)e(ro)q(ok)h(and)f(queen\))i(as)f(these)h +(e\013ectiv)o(ely)f(attac)o(k)g(squares)h(through)f(the)g(king.)262 +407 y(These)f(attac)o(ks)f(are)g(not)g(ob)o(vious)f(from)f(the)j(attac)o(k)f +(tables)g(themselv)o(es.)324 492 y(Note)j(when)g(in)f(double)g(c)o(hec)o(k,)h +(only)f(king)g(mo)o(v)o(es)f(need)i(to)f(b)q(e)h(generated)h(as)f(it)f(is)262 +542 y(imp)q(ossible)c(to)i(get)g(out)f(of)h(c)o(hec)o(k)h(b)o(y)e(pla)o(ying) +g(mo)o(v)o(es)f(in)i(categories)g(2)g(or)g(3.)324 627 y(Generating)f(only)g +(legal)g(mo)o(v)o(es)f(giv)o(es)h(an)g(added)h(b)q(ene\014t)h(to)f(the)g +(program's)d(searc)o(h)262 677 y(extensions:)17 b(It)11 b(is)f(kno)o(wn)g(b)q +(efore)h(searc)o(hing)h(an)o(y)e(mo)o(v)o(es,)f(ho)o(w)h(man)o(y)f(legal)g +(mo)o(v)o(es)h(exist,)262 727 y(ho)o(w)f(man)o(y)g(legal)g(king)g(mo)o(v)o +(es)g(exist)i(and)f(whether)i(the)e(c)o(hec)o(k)i(is)e(doubled)g(or)g(disco)o +(v)o(ered.)262 870 y Fl(Selectiv)o(e)j(T)l(actical)i(Mo)o(v)o(e)g(Generation) +262 982 y Fp(Mo)o(v)o(es)f(generated)i(in)d(the)i(quiescence)i(searc)o(h)e +(when)g(not)f(in)g(c)o(hec)o(k)h(are)g(rather)g(limited)262 +1032 y(to)j(ob)o(vious)g(tactical)h(mo)o(v)o(es.)32 b(Only)18 +b(t)o(w)o(o)h(tactical)f(mo)o(v)o(e)g(categories)h(are)h(generated,)262 +1082 y(captures)15 b(and)f(pa)o(wn)f(promotions.)324 1167 y(Only)k(pa)o(wn)h +(promotions)e(to)h(a)h(queen)h(are)f(considered.)31 b(All)17 +b(capture)i(mo)o(v)o(es)d(are)262 1217 y(generated)h(with)e(the)i(exception)g +(of)e(en-passan)o(t.)25 b(These)17 b(sp)q(ecial)g(case)g(mo)o(v)o(es)d(are)j +(not)262 1267 y(considered)h(cost)g(e\013ectiv)o(e)h(enough)f(to)f(w)o(arran) +o(t)g(inclusion)g(in)g(this)h(mo)o(v)o(e)d(generation)262 1316 +y(pro)q(cess.)k(All)13 b(mo)o(v)o(es)g(generated)i(b)o(y)f(this)g(phase)g +(are)h(only)e(pseudo-legal.)262 1468 y Fu(6.4.2)55 b(Mo)n(v)n(e)19 +b(Ordering)262 1580 y Fp(As)f(explained)g(in)g(c)o(hapter)h(3,)f(mo)o(v)o(e)f +(ordering)h(is)g(vital)f(to)h(the)h(e\016ciency)g(of)f(the)g +Fh(\013\014)262 1630 y Fp(searc)o(h)d(algorithm.)i(T)m(o)c(ac)o(hiev)o(e)i +(the)g(optimal)d Fh(\013\014)k Fp(searc)o(h)g(tree,)f(it)f(is)g(not)p +1398 1637 60 2 v 14 w(necessary)j(to)262 1680 y(examine)12 +b(mo)o(v)o(es)h(in)g(a)h(strictly)g(b)q(est)h(to)f(w)o(orst)g(order)g(at)g +(eac)o(h)h(no)q(de.)324 1765 y(The)f(optimal)d Fh(\013\014)17 +b Fp(searc)o(h)e(tree)g(can)f(b)q(e)g(ac)o(hiev)o(ed)h(b)o(y:)324 +1883 y Ff(\017)20 b Fp(Along)13 b(a)g(v)n(ariation)e(whic)o(h)i(will)f(b)q +(ecome)h(the)h(new)f(principle)g(v)n(ariation,)f(the)h(b)q(est)365 +1933 y(mo)o(v)o(e)g(m)o(ust)f(b)q(e)j(examined)e(\014rst)h(at)g(eac)o(h)g +(ply)m(.)324 2016 y Ff(\017)20 b Fp(The)e(\014rst)g(mo)o(v)o(e)e(explored)i +(at)f(ev)o(en)h(ply)f(depths)h(m)o(ust)f(b)q(e)h(a)f(refutation)g(mo)o(v)o +(e,)365 2066 y(e.g.)h(one)c(that)g(causes)h(a)f Fh(\014)i Fp(cut)f(o\013.)324 +2149 y Ff(\017)20 b Fp(A)o(t)11 b(o)q(dd)f(ply)g(depths)i(whic)o(h)e(are)h +(not)f(part)h(of)f(a)g(new)h(principle)f(v)n(ariation,)g(ordering)365 +2199 y(is)16 b(unimp)q(ortan)o(t)f(pro)o(vided)h(a)f(refutation)h(mo)o(v)o(e) +f(is)h(examined)f(\014rst)h(at)g(the)h(next)365 2249 y(depth.)262 +2367 y(It)c(can)i(b)q(e)f(seen)h(from)d(these)k(p)q(oin)o(ts)d(that)h(it)g +(is)f(vital)g(to)h(examine)e(refutation)i(mo)o(v)o(es)f(as)262 +2417 y(early)k(as)g(p)q(ossible.)28 b(In)17 b(HIAR)o(CS,)f(the)i(mo)o(v)o(e)e +(ordering)h(algorithm's)d(basic)k(aim)d(is)i(to)946 2574 y(124)p +eop +%%Page: 125 127 +125 126 bop 262 307 a Fp(alw)o(a)o(ys)12 b(examine)g(the)i(b)q(est)h(mo)o(v)o +(e)d(\014rst.)18 b(Ho)o(w)o(ev)o(er,)c(emphasis)f(is)g(placed)h(on)f +(examining)262 357 y(mo)o(v)o(es)f(lik)o(ely)h(to)g(cause)i +Fh(\014)i Fp(cut)d(o\013)s('s,)g(e.g.)k(capturing)13 b(the)i(piece)g(just)f +(mo)o(v)o(ed.)324 442 y(The)19 b(main)e(mo)o(v)o(e)h(ordering)h(algorithm)e +(is)i(p)q(erformed)f(while)h(generating)g(mo)o(v)o(es.)262 +492 y(Ho)o(w)o(ev)o(er,)10 b(a)f(signi\014can)o(t)g(prop)q(ortion)g(of)g(the) +h(time,)f(HIAR)o(CS)g(do)q(es)h(not)g(need)g(to)f(generate)262 +542 y(an)o(y)i(mo)o(v)o(es.)16 b(This)c(is)g(b)q(ecause)h(at)f(eac)o(h)g(no)q +(de)h(the)f(refutation)g(and)g(transp)q(osition)f(tables)262 +592 y(are)16 b(prob)q(ed,)h(p)q(ossibly)e(resulting)h(in)g(a)f(mo)o(v)o(e)g +(b)q(eing)h(prop)q(osed.)25 b(An)o(y)15 b(mo)o(v)o(e)g(prop)q(osed)262 +641 y(b)o(y)h(these)j(tables)e(has)h(a)f(high)f(probabilit)o(y)g(of)g +(causing)h(a)g(refutation.)28 b(It)17 b(is)g(therefore)262 +691 y(explored)d(\014rst)g(without)g(generating)g(an)o(y)f(mo)o(v)o(es.)k(If) +d(a)f(cut)i(o\013)f(is)f(ac)o(hiev)o(ed,)h(the)g(costly)262 +741 y(exercise)h(of)f(mo)o(v)o(e)e(generation)i(and)g(ordering)f(is)h(a)o(v)o +(oided)f(altogether.)324 826 y(Tw)o(o)i(mo)o(v)o(e)g(ordering)h(algorithms)e +(are)j(used,)g(one)f(during)g(b)q(oth)g(the)h(pseudo)g(legal)262 +876 y(and)12 b(legal)f(mo)o(v)o(e)g(generation)i(routines)g(and)f(one)h +(during)f(quiescence)j(mo)o(v)o(e)c(generation.)262 1020 y +Fl(F)l(ull)j(Mo)o(v)o(e)h(Ordering)262 1132 y Fp(As)g(mo)o(v)o(es)f(are)i +(generated)h(in)e(the)h(full)e(pseudo)i(or)f(legal)g(mo)o(v)o(e)e(generation) +j(routines)g(a)262 1181 y(score)d(is)e(assigned.)18 b(This)12 +b(score)h(allo)o(ws)e(the)h(mo)o(v)o(es)f(generated)i(to)f(b)q(e)g(ordered)h +(on)f(merit.)262 1231 y(While)f(the)i(score)g(do)q(es)g(represen)o(t)i(an)d +(estimate)g(of)f(the)i(mo)o(v)o(e's)e(v)n(alue,)g(it)h(also)g(attempts)262 +1281 y(to)h(estimate)h(the)g(lik)o(eliho)q(o)q(d)e(of)h(the)i(mo)o(v)o(e)d +(causing)i(a)g(cut)g(o\013.)324 1366 y(Eac)o(h)g(mo)o(v)o(e)e(is)i(scored)h +(b)o(y)f(the)g(follo)o(wing)e(pro)q(cedure:)312 1485 y(1.)20 +b(The)13 b(mo)o(v)o(e)d(is)i(lo)q(ok)o(ed)f(up)h(in)f(the)i(history)f(table)g +(and)f(the)i(v)n(alue)e(found)h(is)f(assigned)365 1535 y(as)j(the)h(mo)o(v)o +(e's)d(initial)g(score.)312 1618 y(2.)20 b(When)13 b(a)e(mo)o(v)o(e)g(is)h +(found)g(to)g(b)q(e)g(b)q(est)i(at)e(a)g(giv)o(en)f(no)q(de)i(in)e(the)i +(tree)h(it)d(is)h(stored)i(as)365 1667 y(a)g(killer)f(mo)o(v)o(e)f(and)i(giv) +o(en)g(an)f(appropriate)h(v)n(alue.)k(In)c(HIAR)o(CS,)f(3)h(killer)f(mo)o(v)o +(es)365 1717 y(are)i(stored)g(at)f(eac)o(h)h(ply)m(,)e(2)g(for)h(mo)o(v)o(es) +f(causing)h(cut)h(o\013)s('s)f(and)g(1)g(for)g(non)g(cut)h(o\013)365 +1767 y(mo)o(v)o(es.)365 1833 y(The)d(mo)o(v)o(e)e(ordering)h(algorithm)e(c)o +(hec)o(ks)k(the)f(mo)o(v)o(e)d(against)i(the)h(follo)o(wing)d(stored)365 +1883 y(killer)k(mo)o(v)o(es:)383 1966 y(\(a\))21 b(Refutation)13 +b(killer's)g(1)g(and)h(2)f(at)h(this)g(ply)m(.)381 2033 y(\(b\))21 +b(Normal)11 b(killer)j(3)f(at)h(this)g(ply)m(.)385 2099 y(\(c\))22 +b(Refutation)13 b(killer)g(1)g(at)h(ply)p Ff(\000)p Fp(2.)365 +2182 y(If)i(the)h(mo)o(v)o(e)e(is)h(a)g(killer)f(mo)o(v)o(e)f(at)j(this)f +(depth)h(of)e(the)i(tree,)h(the)f(score)g(is)f(incre-)365 2232 +y(men)o(ted)e(b)o(y)f(the)i(resp)q(ectiv)o(e)h(killer)d(v)n(alue.)365 +2298 y(This)j(heuristic)h(supp)q(orts)g(the)g(history)f(heuristic)h(b)o(y)e +(suggesting)i(recen)o(t)g(strong)365 2348 y(mo)o(v)o(es)g(at)h(the)h(curren)o +(t)h(depth.)32 b(It)18 b(is)g(often)g(the)h(case)g(that)f(the)h(last)f(mo)o +(v)o(e)f(to)365 2398 y(cause)c(a)f(refutation)f(at)h(a)g(giv)o(en)f(depth)i +(will)d(rep)q(eatedly)j(ac)o(hiev)o(e)f(the)h(same)e(result)365 +2448 y(in)j(other)g(p)q(ositions)g(at)g(the)g(same)f(depth.)946 +2574 y(125)p eop +%%Page: 126 128 +126 127 bop 312 307 a Fp(3.)20 b(If)15 b(the)h(mo)o(v)o(e)d(captures)k(the)f +(piece)g(just)f(mo)o(v)o(ed)e(b)o(y)i(the)h(opp)q(onen)o(t,)f(it)g(receiv)o +(es)i(a)365 357 y(b)q(on)o(us)c(score)h(of)d(400)h(p)q(oin)o(ts.)17 +b(This)c(indicates)f(the)h(imp)q(ortance)f(of)g(suc)o(h)h(mo)o(v)o(es)e(in) +365 407 y(causing)j(refutations.)312 486 y(4.)20 b(The)15 b(estimate)e(is)h +(then)g(mo)q(di\014ed)f(b)o(y:)448 556 y Fh(C)s(P)6 b(T)14 +b Ff(\000)c Fh(S)r(W)c(P)15 b Fp(+)10 b Fh(E)r(N)5 b(P)365 +656 y Fl(where)448 706 y Fp(CPT)14 b(:)63 b(is)14 b(the)g(v)n(alue)g(of)f +(the)h(captured)h(piece,)g(if)e(an)o(y)m(,)f(otherwise)j(0.)448 +805 y(SWP)f(:)57 b(is)14 b(the)g(estimated)g(v)n(alue)f(of)g(the)i(p)q(oten)o +(tial)e(exc)o(hanges)i(on)f(the)g(to)625 855 y(square.)19 b(De\014ned)c(b)o +(y:)448 955 y(SWP)f(=)37 b Fl(if)13 b Fp(\()p Fl(not)g Fp(A)o(ttac)o(k)o +(ed\([An)o(y],Opp\(col\),to\)\))684 1005 y(0)625 1054 y Fl(else)684 +1104 y(if)g Fp(\()p Fl(not)g Fp(A)o(ttac)o(k)o(ed\([An)o(y],col,to\)\))743 +1154 y Fh(M)5 b(T)812 1160 y Fe(col;f)s(r)q(om)684 1204 y Fl(else)743 +1254 y(if)13 b Fp(\(A)o(ttac)o(k)o(ed\([An)o(y)h Fh(<)g Fp +(On\(from\)],Opp\(col\),to\))743 1303 y Fl(or)g Fh(])p Fp(Di\013A)o(ttac)o +(ks\(Opp\(col\),to\))g Fh(>)g Fp(0\))802 1353 y Fl(if)f Fp(\(Con)o +(trol\(to\))g(=)i(col\))861 1403 y Fh(M)5 b(T)930 1409 y Fe(col;f)s(r)q(om) +1066 1403 y Fh(=)p Fp(2)802 1453 y Fl(else)861 1503 y Fh(M)g(T)930 +1509 y Fe(col;f)s(r)q(om)802 1553 y Fl(endif)743 1602 y(else)802 +1652 y(if)13 b Fp(\(Con)o(trol\(to\))g(=)i(col\))861 1702 y(0)802 +1752 y Fl(else)861 1802 y Fh(M)5 b(T)930 1808 y Fe(col;f)s(r)q(om)1066 +1802 y Fh(=)p Fp(2)802 1851 y Fl(endif)743 1901 y(endif)684 +1951 y(endif)625 2001 y(endif)448 2100 y Fh(M)g(T)517 2106 +y Fe(col;sq)603 2100 y Fp(:)10 b(See)15 b(ev)n(aluation)d(function)i +(de\014nition)f(1,)h(Material.)448 2200 y(ENP)g(:)64 b(Represen)o(ts)16 +b(an)e(estimate)f(of)g(the)i(threat)f(to)g(the)h(mo)o(ving)c(piece)k(on)e +(its)625 2250 y(original)f(square,)i(e.g.)k(its)c(urgency)h(to)e(mo)o(v)o(e.) +k(De\014ned)d(b)o(y:)448 2350 y(ENP)g(=)44 b Fl(if)13 b Fp(\(A)o(ttac)o(k)o +(ed\([An)o(y)h Fh(<)g Fp(On\(from\)],Opp\(col\),from)o(\)\))684 +2399 y Fh(M)5 b(T)753 2405 y Fe(col;f)s(r)q(om)889 2399 y Fh(=)p +Fp(16)625 2449 y Fl(endif)946 2574 y Fp(126)p eop +%%Page: 127 129 +127 128 bop 365 357 a Fp(Note:)19 b('from')11 b(and)j('to')e(are)j(the)f +(from)e(and)i(to)g(squares)h(of)e(the)i(generated)g(mo)o(v)o(e.)365 +448 y(SWP)9 b(and)h(ENP)f(are)h(only)f(calculated)g(if)f(the)i(History)g(and) +f(Killer)g(v)n(alues)g(summed,)365 498 y(are)16 b(less)f(than)g(32.)21 +b(This)14 b(a)o(v)o(oids)g(go)q(o)q(d)h(refutation)g(mo)o(v)o(es)e(b)q(eing)i +(badly)f(ordered)365 548 y(b)q(ecause)k(they)f(lo)q(ok)e(inferior)g(to)h +(this)g(score)i(estimator,)d(when)i(in)e(fact)h(previous)365 +598 y(searc)o(hing)f(has)f(sho)o(wn)g(them)f(to)g(b)q(e)i(go)q(o)q(d)e(in)h +(the)g(past.)262 740 y Fl(Quiescence)f(Mo)o(v)o(e)j(Ordering)262 +852 y Fp(In)h(the)g(selectiv)o(e)i(tactical)d(mo)o(v)o(e)g(generator,)i(mo)o +(v)o(es)e(are)i(scored)g(b)o(y)f(their)h(optimistic)262 902 +y(p)q(ossibilities.)33 b(This)19 b(is)g(to)g(enable)h(the)f(forw)o(ard)g +(pruning)g(mec)o(hanism)e(explained)i(in)262 951 y(section)14 +b(5.4,)f(note)h(3.)324 1037 y(All)g(capture)j(mo)o(v)o(es)d(are)i(scored)h(b) +o(y)e(the)h(v)n(alue)f(of)g(the)h(piece)g(captured)h(min)o(us)d(the)262 +1086 y(capturing)i(piece's)i(represen)o(tation)h(\(1-6\),)d(e.g.)27 +b(3)17 b(for)f(a)h(bishop.)27 b(This)16 b(results)i(in)f(an)262 +1136 y(ordering)j(where)i(captures)g(of)e(higher)h(v)n(alued)f(pieces)i(are)f +(examined)f(\014rst.)39 b(Where)262 1186 y(more)13 b(than)h(one)h(w)o(a)o(y)f +(to)g(capture)i(a)e(piece)h(exists,)g(the)g(mo)o(v)o(es)e(are)i(further)g +(ordered)h(b)o(y)262 1236 y(considering)e(captures)h(b)o(y)f(the)g(lo)o(w)o +(er)g(v)n(alued)f(pieces)i(\014rst.)324 1321 y(This)g(is)f(kno)o(wn)h(as)g +(Minor)f(to)h(Ma)r(jorC)g(ordering)g(and)g(has)g(b)q(een)h(sho)o(wn)f(to)f(b) +q(e)i(the)262 1371 y(most)c(e\013ectiv)o(e)k(ordering)d(of)h(capture)h(mo)o +(v)o(es)d([10)o(].)324 1456 y(P)o(a)o(wn)j(promotions)f(receiv)o(e)j(an)e +(estimated)g(score)i(of)e(QueenV)m(alue)h Ff(\000)g Fp(P)o(a)o(wnV)m(alue.) +262 1506 y(Where)i(the)h(promotion)d(is)h(also)h(a)f(capture,)j(the)e(score)i +(is)d(further)i(increased)g(b)o(y)f(the)262 1556 y(capture)d(score)g +(explained)e(ab)q(o)o(v)o(e.)324 1641 y(Although)f(all)g(the)h(ordering)g +(algorithms)d(score)k(mo)o(v)o(es)e(as)h(they)g(are)g(generated,)h(the)262 +1691 y(mo)o(v)o(es)g(are)i(not)g(fully)e(sorted)i(in)o(to)f(order.)24 +b(Only)16 b(the)g(b)q(est)h(mo)o(v)o(e)d(not)h(y)o(et)h(searc)o(hed)i(is)262 +1741 y(required)d(to)f(b)q(e)h(sorted)g(as)f(it)g(ma)o(y)e(itself)i(cause)h +(a)f(cut)h(o\013,)f(a)o(v)o(oiding)e(the)j(need)g(for)f(an)o(y)262 +1791 y(more)e(sorting.)262 1941 y Fu(6.4.3)55 b(T)-5 b(ree)18 +b(Searc)n(hing)262 2053 y Fp(The)g(actual)f(searc)o(h)i(tec)o(hniques)g +(emplo)o(y)o(ed)d(in)h(HIAR)o(CS)g(w)o(ere)i(explained)e(and)h(illus-)262 +2103 y(trated)g(in)f(c)o(hapter)i(5,)f(T)m(ree)h(Searc)o(hing.)30 +b(Ho)o(w)o(ev)o(er,)18 b(some)f(of)g(the)i(w)o(ork)e('b)q(ehind)h(the)262 +2152 y(scenes')e(of)e(the)i(searc)o(h)g(pro)q(cedures)h(w)o(as)e(not)g +(explained.)21 b(This)15 b(section)h(will)d(therefore)262 2202 +y(highligh)o(t)f(these)j(more)e(implemen)o(tatio)o(nal)d(tasks)15 +b(whic)o(h)f(the)g(searc)o(h)h(m)o(ust)e(p)q(erform.)324 2287 +y(Three)i(searc)o(h)g(routines)f(are)h(used)f(in)g(HIAR)o(CS:)312 +2399 y(1.)20 b Fl(Ro)q(ot)p Fp(:)j(This)17 b(recursiv)o(e)h(function)f(o)o(v) +o(ersees)h(and)f(con)o(trols)g(the)g(searc)o(h)h(pro)q(cess.)365 +2449 y(It)c(p)q(erforms)g(the)g(follo)o(wing)d(k)o(ey)j(tasks:)946 +2574 y(127)p eop +%%Page: 128 130 +128 129 bop 415 307 a Ff(\017)21 b Fp(Selects)15 b(the)f(searc)o(h)h +(required)g(for)f(the)g(next)h(depth.)415 374 y Ff(\017)21 +b Fp(Chec)o(ks)15 b(mo)o(v)o(es)d(for)i(kno)o(wn)f(results,)i(e.g.)i(c)o(hec) +o(kmate)d(in)g(2)f(mo)o(v)o(es.)415 440 y Ff(\017)21 b Fp(Sorts)14 +b(1)g(ply)f(mo)o(v)o(es)g(b)q(et)o(w)o(een)i(iterations.)415 +506 y Ff(\017)21 b Fp(Allo)q(cates)9 b(and)g(assigns)h(refutation)f(lines)g +(to)g(and)h(from)d(the)j(refutation)f(table.)415 573 y Ff(\017)21 +b Fp(Adjusts)14 b(time)f(con)o(trol)g(information)e(in)j(the)g(ligh)o(t)f(of) +g(searc)o(h)i(results.)415 639 y Ff(\017)21 b Fp(Main)o(tains)9 +b(searc)o(h)i(status)g(indicators)f(whic)o(h)g(aid)f(the)i(time)e(con)o(trol) +g(decision)457 689 y(pro)q(cess.)415 756 y Ff(\017)21 b Fp(Up)q(dates)15 +b(the)f(history)g(table)g(with)f(the)i(b)q(est)g(mo)o(v)o(e)d(found.)312 +839 y(2.)20 b Fl(AlphaBeta)p Fp(:)15 b(This)c(recursiv)o(e)i(searc)o(h)f +(function)f(explores)h(all)d(no)q(des)j(in)f(the)h(main)365 +888 y(searc)o(h)j(tree)g(b)q(elo)o(w)f(ply)f(1.)18 b(It)c(p)q(erforms)g(the)g +(follo)o(wing)d(k)o(ey)j(tasks:)415 971 y Ff(\017)21 b Fp(Calls)13 +b(for)g(ev)n(aluation)g(of)g(no)q(des.)415 1038 y Ff(\017)21 +b Fp(Mak)o(es)14 b(searc)o(h)h(extension)f(decisions.)415 1104 +y Ff(\017)21 b Fp(Prob)q(es)14 b(refutation)e(and)h(transp)q(osition)g +(tables)g(for)f(scores)j(and)d(mo)o(v)o(es.)17 b(Of-)457 1154 +y(ten)d(this)g(is)g(enough)g(to)g(cause)g(termination)f(of)g(the)h(no)q(de.) +415 1220 y Ff(\017)21 b Fp(Calls)13 b(for)g(generation)h(of)f(mo)o(v)o(es)g +(when)h(necessary)m(.)415 1287 y Ff(\017)21 b Fp(Calls)13 b(for)g(a)h(searc)o +(h)h(to)f(the)g(next)g(depth.)415 1353 y Ff(\017)21 b Fp(Main)o(tains)c(the)j +(b)q(est)f(v)n(ariation)e(of)h(mo)o(v)o(es)g(from)f(this)h(no)q(de)i(and)e +(returns)457 1403 y(suc)o(h)c(information)d(to)j(its)g(paren)o(t)g(no)q(de.) +415 1469 y Ff(\017)21 b Fp(Sa)o(v)o(es)14 b(information)d(ab)q(out)i(the)i +(no)q(de)f(in)g(the)g(transp)q(osition)g(table.)415 1536 y +Ff(\017)21 b Fp(Up)q(dates)15 b(killer)e(mo)o(v)o(es)f(and)i(scores)h(for)f +(the)g(curren)o(t)i(depth.)415 1602 y Ff(\017)21 b Fp(Up)q(dates)15 +b(the)f(history)g(table)g(with)f(the)i(b)q(est)g(mo)o(v)o(e)d(found.)312 +1685 y(3.)20 b Fl(Quies)p Fp(:)e(This)d(recursiv)o(e)h(searc)o(h)g(function)f +(handles)g(no)q(des)g(b)q(ey)o(ond)g(the)h(horizon)365 1735 +y(of)e(the)g(main)e(searc)o(h.)19 b(It)14 b(p)q(erforms)f(the)i(follo)o(wing) +c(k)o(ey)j(tasks:)415 1818 y Ff(\017)21 b Fp(Calls)13 b(for)g(ev)n(aluation)g +(of)g(no)q(des.)415 1885 y Ff(\017)21 b Fp(Mak)o(es)g(searc)o(h)g(extension,) +i(main)c(searc)o(h)i(con)o(tin)o(uation)f(and)g(quiescence)457 +1934 y(decisions.)415 2001 y Ff(\017)h Fp(Calls)13 b(for)g(re-en)o(try)i(of)e +(the)i(main)d(searc)o(h.)415 2067 y Ff(\017)21 b Fp(Calls)13 +b(for)g(generation)h(of)f(tactical)h(mo)o(v)o(es)f(when)h(necessary)m(.)415 +2134 y Ff(\017)21 b Fp(Calls)13 b(for)g(a)h(searc)o(h)h(to)f(the)g(next)g +(depth.)415 2200 y Ff(\017)21 b Fp(Main)o(tains)c(the)j(b)q(est)f(v)n +(ariation)e(of)h(mo)o(v)o(es)g(from)f(this)h(no)q(de)i(and)e(returns)457 +2250 y(suc)o(h)c(information)d(to)j(its)g(paren)o(t)g(no)q(de.)262 +2368 y(Figure)i(6.2)g(sho)o(ws)h(a)g(state)h(transition)e(diagram)e(for)j +(the)g(searc)o(h.)28 b(It)17 b(illustrates)g(ho)o(w)262 2418 +y(eac)o(h)d(searc)o(h)h(state)g(in)o(teracts.)k(An)14 b(explanation)f(of)g +(eac)o(h)h(state)h(is)f(giv)o(en)f(b)q(elo)o(w:)946 2574 y(128)p +eop +%%Page: 129 131 +129 130 bop 499 2422 a Fp(Figure)14 b(6.2:)j(State)d(T)m(ransition)f(Diagram) +e(for)j(the)g(Searc)o(h.)946 2574 y(129)p eop +%%Page: 130 132 +130 131 bop 262 307 a Fl(IDLE)262 419 y Fp(When)13 b(no)g(searc)o(hing)g(of)g +(an)o(y)f(kind)h(is)g(b)q(eing)g(p)q(erformed,)f(the)i(program)d(is)i(in)f +(the)i Fm(IDLE)262 469 y Fp(state.)k(A)o(t)c(program)f(start)h(up,)g(this)g +(is)f(also)h(the)g(initial)e(state.)324 554 y(If)h(the)i(program)d(is)h(exp)q +(ecting)i(a)f(mo)o(v)o(e,)d(it)j(will)e(start)i(to)g(searc)o(h)h(on)f(the)g +(opp)q(onen)o(ts)262 604 y(time)9 b(for)i(its)g(o)o(wn)g(b)q(est)h(resp)q +(onse)h(to)e(the)h(exp)q(ected)h(mo)o(v)o(e.)j(This)11 b(is)g(kno)o(wn)g(as)g +("thinking)262 654 y(on)16 b(the)h(opp)q(onen)o(ts)h(time".)25 +b(T)m(o)16 b(ac)o(hiev)o(e)h(this)g(the)g Fm(SEAR)o(CHING)h(ON)f(OPP)g +Fp(state)h(is)262 704 y(en)o(tered.)26 b(If)16 b(the)h(opp)q(onen)o(t)f +(actually)f(mak)o(es)h(a)f(mo)o(v)o(e)g(while)h(in)f(the)i +Fm(IDLE)g Fp(state,)g(the)262 754 y(en)o(tered)e(user)g(mo)o(v)o(e)d(is)i +(made)f(and)g(the)i(program)d(en)o(ters)k(the)e Fm(SEAR)o(CHING)g +Fp(state.)262 896 y Fl(SEAR)o(CHING)262 1008 y Fp(This)j(state)h(carries)g +(out)f(the)h(tree)h(searc)o(hing)e(on)g(the)h(computer's)f(time.)27 +b(It)18 b(uses)g(the)262 1058 y(aforemen)o(tioned)d(three)k(searc)o(h)f +(routines.)28 b(The)17 b(searc)o(h)i(ma)o(y)c(start)i(from)f(the)h(ro)q(ot)g +(of)262 1108 y(the)d(tree)h(or)f(con)o(tin)o(ue)g(a)g(previously)f(in)o +(terrupted)i(searc)o(h.)324 1193 y(If)j(the)i(searc)o(h)g(deriv)o(es)g(a)f +(kno)o(wn)f(v)n(alue)h(for)g(the)g(game)f(tree,)j(lik)o(e)d(c)o(hec)o(kmate)h +(in)262 1243 y(3)d(mo)o(v)o(es)g(for)g(example,)g(no)h(more)e(searc)o(hing)j +(is)e(required)i(and)f(the)g Fm(SEAR)o(CH)h(COM-)262 1293 y(PLETE)g +Fp(state)h(is)f(en)o(tered.)33 b(Ho)o(w)o(ev)o(er,)20 b(if)d(the)i(game)e +(tree)i(v)n(alue)f(is)g(not)g(kno)o(wn,)h(the)262 1342 y(program)d(con)o(tin) +o(ues)j('thinking')d(un)o(til)i(either,)h(a)f(user)i(in)o(terrupt)f(\()p +Ff(")p Fp(C\))f(o)q(ccurs)i(or)e(an)262 1392 y(alarm)e(timer)h(expires,)i +(where)h(up)q(on)e(the)h Fm(SEAR)o(CH)g(INTERR)o(UPTED)f Fp(state)h(is)f(en-) +262 1442 y(tered.)262 1584 y Fl(SEAR)o(CHING)e(ON)g(OPP)262 +1697 y Fp(Lik)o(e)g(the)i Fm(SEAR)o(CHING)g Fp(state,)g(this)g(state)g +(carries)g(out)f(the)h(tree)h(searc)o(hing,)f(except)262 1746 +y(in)c(this)i(case)g(on)g(the)g(opp)q(onen)o(ts)g(thinking)e(time.)22 +b(Again,)14 b(if)h(the)h(searc)o(h)g(tree)h(v)n(alue)e(is)262 +1796 y(kno)o(wn,)g(the)h(searc)o(h)h(terminates)e(and)h(the)g +Fm(SEAR)o(CHED)h(ON)g(OPP)e Fp(state)i(is)e(en)o(tered.)262 +1846 y(Assuming)g(the)i(game)e(tree)j(v)n(alue)e(is)h(not)f(kno)o(wn,)h(the)g +(searc)o(h)h(con)o(tin)o(ues)f(inde\014nitely)262 1896 y(un)o(til)f(the)i +(user)h(en)o(ters)g(his/her/it's)f(mo)o(v)o(e,)e(when)i(one)g(of)f(t)o(w)o(o) +g(p)q(ossible)h(actions)f(can)262 1946 y(o)q(ccur.)j(If)15 +b(the)g(mo)o(v)o(e)d(en)o(tered)17 b(is)d(the)h(exp)q(ected)i(mo)o(v)o(e,)12 +b(then)j(the)g(program's)e(e\013orts)j(at)262 1995 y(thinking)9 +b(on)i(opp)q(onen)o(ts)h(time)d(ha)o(v)o(e)i(not)g(b)q(een)h(w)o(asted.)17 +b(In)11 b(whic)o(h)g(case,)h(the)g Fm(SEAR)o(CH-)262 2045 y(ING)k +Fp(state)h(is)f(en)o(tered)j(to)d(con)o(tin)o(ue)h(the)g(searc)o(h)g(on)f +(the)h(program's)e(time.)25 b(Ho)o(w)o(ev)o(er,)262 2095 y(if)17 +b(the)j(en)o(tered)g(mo)o(v)o(e)d(is)i(unexp)q(ected,)j(this)d(searc)o(h)g +(is)g(terminated)f(b)o(y)h(en)o(tering)g(the)262 2145 y Fm(SEAR)o(CH)c +(INTERR)o(UPTED)f Fp(state.)262 2287 y Fl(SEAR)o(CH)i(INTERR)o(UPTED)262 +2399 y Fp(The)h(ob)r(jectiv)o(e)h(of)f(this)g(state)h(is)f(to)g(allo)o(w)f(a) +h(clean)h(bac)o(king)e(up)i(and)f(termination)e(of)262 2449 +y(the)h(searc)o(h)h(tree.)26 b(Once)17 b(the)g(searc)o(h)g(has)f(returned)i +(to)e(the)h(ro)q(ot)f(p)q(osition,)f(either)i(the)946 2574 +y(130)p eop +%%Page: 131 133 +131 132 bop 262 307 a Fm(SEAR)o(CH)16 b(COMPLETE)e Fp(or)h +Fm(SEAR)o(CHED)i(ON)f(OPP)f Fp(state)h(is)e(en)o(tered.)23 +b(The)16 b(actual)262 357 y(state)h(dep)q(ends)h(on)f(whether)h(the)f +(program)e(w)o(as)h(previously)h(thinking)e(on)i(its)f(o)o(wn)h(or)262 +407 y(the)d(opp)q(onen)o(ts)h(time.)262 550 y Fl(SEAR)o(CH)h(COMPLETE)262 +662 y Fp(In)g(this)g(state)g(the)h(user)g(is)f(informed)e(of)i(the)g(searc)o +(h)i(result)e(b)o(y)g(w)o(a)o(y)f(of)h(a)f(mo)o(v)o(e)g(or)h(an)262 +712 y(announcemen)o(t.)h(Some)12 b(searc)o(h)j(v)n(alues)e(are)h(then)g +(reset)g(and)g(\014nally)e(the)i Fm(IDLE)g Fp(state)g(is)262 +762 y(en)o(tered.)262 905 y Fl(SEAR)o(CHED)i(ON)g(OPP)262 1017 +y Fp(This)d(state)i(records)g(the)g(searc)o(h)g(result)g(and)e(en)o(ters)j +(the)e Fm(IDLE)h Fp(state.)324 1138 y(Please)i(note,)g(an)f(explanation)f(of) +h(the)h(handling)e(of)h(user)h(commands)d(suc)o(h)j(as)g(set)262 +1188 y(up)d(p)q(osition)g(for)h(example,)e(en)o(tered)j(while)e(searc)o(hing) +i(on)e(opp)q(onen)o(ts)i(time)d(ha)o(v)o(e)h(b)q(een)262 1238 +y(omitted)i(for)h(reasons)i(of)e(clarit)o(y)m(.)28 b(They)18 +b(are)g(only)e(minor)g(side)i(issues)h(whic)o(h)e(do)h(not)262 +1287 y(a\013ect)c(the)h(underlying)e(design.)262 1439 y Fu(6.4.4)55 +b(Ev)m(aluation)262 1551 y Fp(The)18 b(ev)n(aluation)f(criteria)i(used)h(in)e +(HIAR)o(CS)g(w)o(ere)h(fully)e(explained)i(and)f(illustrated)262 +1601 y(in)f(c)o(hapter)i(4.)31 b(Ho)o(w)o(ev)o(er,)19 b(during)f(the)h +(implemen)o(tatio)o(n)d(and)i(testing,)h(a)f(n)o(um)o(b)q(er)f(of)262 +1651 y(problem)10 b(areas)i(w)o(ere)g(observ)o(ed.)19 b(In)11 +b(this)h(section)g(I)g(will)e(explain)h(some)f(of)h(the)i(problems)262 +1700 y(encoun)o(tered)i(and)f(the)h(resulting)f(solutions.)324 +1786 y(The)h(\014rst)g(ma)r(jor)e(problem)g(noticed)i(w)o(as)g(asso)q(ciated) +g(with)g(the)g(application)e(of)h(the)262 1836 y(ev)n(aluation)h(function.)27 +b(The)18 b(ev)n(aluation)d(function)i(is)g(usually)f(applied)h(at)g(the)g +(leaf)g(or)262 1885 y(horizon)e(no)q(des)i(of)e(the)i(main)d(searc)o(h)870 +1870 y Fk(3)889 1885 y Fp(,)i(after)g(whic)o(h)g(a)g(quiescence)i(searc)o(h)f +(is)f(applied.)262 1935 y(The)d(p)q(ositional)f(v)n(alue)h(calculated)g(at)g +(the)h(horizon)f(no)q(des)h(is)f(carried)h(forw)o(ard)f(in)o(to)f(the)262 +1985 y(quiescence)k(searc)o(h)g(to)f(enable)g(the)g(\014nal)f(v)n(alues)g +(calculated)h(at)g(the)g(leaf)f(no)q(des)h(of)g(this)262 2035 +y(searc)o(h)e(to)f(ha)o(v)o(e)h(reasonably)f(up)h(to)f(date)h(p)q(ositional)e +(v)n(alues)h(to)g(go)g(with)g(the)h(calculated)262 2085 y(material)h(v)n +(alue.)26 b(When)17 b(pieces)h(are)f(captured)h(during)e(the)i(quiescence)g +(searc)o(h,)g(b)q(oth)262 2134 y(the)12 b(material)d(and)j(p)q(ositional)e(v) +n(alue)h(of)g(the)h(captured)h(piece)g(should)e(b)q(e)i(lost.)k(Ho)o(w)o(ev)o +(er,)262 2184 y(this)e(w)o(as)g(not)g(re\015ected)i(in)e(the)g(p)q(ositional) +f(v)n(alue)h(carried)g(forw)o(ard)g(in)g(the)g(quiescence)262 +2234 y(searc)o(h.)k(In)14 b(this)g(w)o(a)o(y)f(the)h(p)q(ositional)f(v)n +(alue)g(started)i(to)f(b)q(ecome)f('out)h(of)f(date'.)324 2319 +y(When)f(the)i(p)q(ositional)d(v)n(alues)h(of)g(pieces)i(are)f(relativ)o(ely) +e(lo)o(w,)h(this)g(w)o(as)h(not)f(a)g(ma)r(jor)262 2369 y(problem.)31 +b(Ho)o(w)o(ev)o(er,)21 b(unlik)o(e)d(most)g(c)o(hess)i(programs,)f(m)o(y)e +(ev)n(aluation)h(function)g(can)p 262 2404 573 2 v 308 2431 +a Fj(3)325 2442 y Fi(except)10 b(where)h Fb(\013\014)i Fi(v)n(alues)d +(indicate)f(that)h(the)h(p)q(osition)f(cannot)f(a\013ect)h(the)h(searc)o(h)f +(result.)946 2574 y Fp(131)p eop +%%Page: 132 134 +132 133 bop 262 307 a Fp(pro)q(duce)13 b(v)o(ery)g(high)f(p)q(ositional)f +(scores.)19 b(Therefore,)14 b(when)f(highly)f(p)q(ositionally)e(v)n(alued)262 +357 y(pieces)15 b(are)h(captured,)f(the)g(carried)h(forw)o(ard)e(p)q +(ositional)f(v)n(alue)h(w)o(as)h(drastically)f(out)g(of)262 +407 y(date,)j(causing)g(serious)g(problems)f(to)h(the)g(searc)o(h,)i(b)q(oth) +e(in)f(e\016ciency)i(and)e(accuracy)m(.)262 457 y(F)m(or)c(example,)g(if)h(a) +g(passed)h(pa)o(wn)f(p)q(ositionally)f(v)n(alued)g(at)i(200)e(p)q(oin)o(ts)h +(\(2)h(pa)o(wns\),)f(w)o(as)262 506 y(captured)19 b(during)f(the)g +(quiescence)j(searc)o(h,)f(the)e(p)q(ositional)f(total)h(should)g(ha)o(v)o(e) +f(b)q(een)262 556 y(decreased)f(b)o(y)d(around)h(200)f(p)q(oin)o(ts.)324 +641 y(The)18 b(solution)e(to)i(this)f(problem)f(la)o(y)h(in)g(incremen)o +(tally)f(up)q(dating)h(the)h(p)q(ositional)262 691 y(v)n(alue)10 +b(during)g(the)h(quiescence)i(searc)o(h.)18 b(T)m(o)10 b(ac)o(hiev)o(e)h +(this,)g(whenev)o(er)h(the)g(full)d(ev)n(aluation)262 741 y(function)h(is)h +(applied,)g(all)e(piece)j(p)q(ositional)e(scores)j(are)e(sa)o(v)o(ed)g(in)g +(a)g(general)g(Pc/Sq)g(table.)262 791 y(As)k(mo)o(v)o(es)f(are)i(made)e +(during)h(the)h(subsequen)o(t)h(searc)o(h)f(this)g(table)f(is)g(main)o +(tained)e(and)262 841 y(the)18 b(p)q(ositional)f(v)n(alue)h(of)g(an)o(y)f +(captured)j(piece)f(is)f(recorded)i(in)e(the)h('Game)d(History')262 +891 y(structure)k(and)e(used)g(to)g(incremen)o(tally)f(up)q(date)h(the)h(p)q +(ositional)e(score.)31 b(It)18 b(w)o(as)g(also)262 940 y(found)c(necessary)i +(to)f(include)g(promotion)d(mo)o(v)o(es)i(in)o(to)g(this)g(pro)q(cess)j(b)o +(y)d(remo)o(ving)f(the)262 990 y(promoted)d(pa)o(wns)i(p)q(ositional)e +(score.)19 b(These)13 b(enhancemen)o(ts)f(noticeably)f(impro)o(v)o(ed)f(the) +262 1040 y(standard)k(of)f(pla)o(y)g(b)o(y)h(the)g(program.)324 +1125 y(Another)i(area)f(whic)o(h)g(caused)h(some)e(problems)h(w)o(as)g(the)g +(concept)i(of)d(temp)q(o.)21 b(The)262 1175 y(pla)o(y)o(er)11 +b(to)h(mo)o(v)o(e)e(should)i(receiv)o(e)h(some)e(p)q(ositional)f(b)q(on)o(us) +j(for)e(ha)o(ving)g(the)h(mo)o(v)o(e)f(as)h(this)262 1225 y(is)h(adv)n(an)o +(tageous)546 1210 y Fk(4)564 1225 y Fp(.)324 1310 y(I)e(tried)g(out)g(v)n +(arious)g(temp)q(o)f(v)n(alues)h(based)h(on)f(a)f(direct)i(ratio)f(to)g(the)h +(b)q(est)g(p)q(ositional)262 1360 y(increase)k(caused)g(b)o(y)f(an)o(y)g +(single)g(mo)o(v)o(e)e(from)h(eac)o(h)h(pla)o(y)o(ers)h(p)q(oin)o(t)e(of)h +(view.)22 b(Ho)o(w)o(ev)o(er,)262 1410 y(this)11 b(caused)i(problems)d(b)q +(ecause)j(the)f(maxim)n(um)7 b(p)q(ositional)j(c)o(hange)i(o)o(v)o(er)g(ev)o +(en)g(a)f(single)262 1460 y(mo)o(v)o(e)j(can)j(b)q(e)g(dramatic)e(o)o(v)o(er) +i(a)f(whole)g(searc)o(h.)27 b(I)16 b(\014nally)g(used)h(a)f(constan)o(t)h(v)n +(alue)f(of)262 1509 y(20)g(p)q(oin)o(ts)i(for)f(ha)o(ving)f(the)i(mo)o(v)o +(e.)27 b(I)17 b(still)f(feel)i(the)g(temp)q(o)e(v)n(alue)h(should)g(b)q(e)h +(related)262 1559 y(to)f(p)q(ositional)f(v)n(alues)i(in)f(some)g(w)o(a)o(y)m +(,)g(ho)o(w)o(ev)o(er,)h(the)g(v)n(alue)f(c)o(hosen)i(seems)f(to)f(b)q(eha)o +(v)o(e)262 1609 y(reasonably)c(in)h(the)g(test)h(games)e(pla)o(y)o(ed.)324 +1694 y(In)j(elemen)o(tary)f(endings,)i(where)g(a)f(c)o(hec)o(kmate)f(driv)o +(e)h(is)g(required,)h(e.g.)25 b(king)15 b(and)262 1744 y(ro)q(ok)h(v)o(ersus) +h(king,)f(a)g(sp)q(ecial)g(routine)h(w)o(as)f(found)g(necessary)i(to)e(force) +h(c)o(hec)o(kmate)f(in)262 1794 y(an)c(e\016cien)o(t)h(manor.)j(The)d +(routine)g(used)h(is)f(v)o(ery)g(similar)d(to)j(the)g(mop)e(up)i(routine)g +(used)262 1844 y(in)g(Chess)i(4.5)e([4)o(].)324 1929 y(Cases)j(of)f +(insu\016cien)o(t)h(mating)d(material,)g(e.g.)23 b(king)14 +b(and)i(knigh)o(t)e(v)i(king,)e(are)i(also)262 1979 y(detected)d(b)o(y)e(the) +h(ev)n(aluation)e(function)h(and)g(the)h(dra)o(w)g(v)n(alue)e(returned.)19 +b(This)12 b(enhance-)262 2029 y(men)o(t)j(is)h(v)o(ery)g(e\013ectiv)o(e)i(in) +d(the)i(late)f(endgame)f(b)q(ecause)j(it)e(allo)o(ws)e(early)i(termination) +262 2078 y(of)d(man)o(y)f(v)n(ariations,)g(thereb)o(y)j(reducing)f +(unnecessary)i(searc)o(h)f(e\013ort.)324 2164 y(In)i(order)i(to)e(ease)i(the) +f(debugging)f(of)g(the)h(ev)n(aluation)e(function,)i(all)e(v)n(alues)i(w)o +(ere)262 2213 y(sa)o(v)o(ed)12 b(and)g(displa)o(y)o(ed)f(on)h(request.)19 +b(This)12 b(allo)o(w)o(ed)f(n)o(umerous)g(small)f(bugs)j(to)e(b)q(e)i(iden)o +(ti-)262 2263 y(\014ed,)f(whic)o(h)f(w)o(ould)g(ha)o(v)o(e)g(otherwise)i(b)q +(een)g(v)o(ery)f(di\016cult)f(to)g(sp)q(ot)h(as)g(they)g(only)f(sligh)o(tly) +262 2313 y(a\013ected)k(the)f(\014nal)g(ev)n(aluation)e(function)i(score.)p +262 2340 573 2 v 308 2366 a Fj(4)325 2378 y Fi(except)c(in)h(zugzw)o(ang)f(p) +q(ositions)946 2574 y Fp(132)p eop +%%Page: 133 135 +133 134 bop 324 307 a Fp(Ev)o(en)14 b(in)g(the)h(\014nal)e(p)q(erformance)h +(tested)i(v)o(ersion,)e(some)f(of)g(these)j(p)q(ositional)d(diag-)262 +357 y(nostics)f(ha)o(v)o(e)f(b)q(een)i(retained)g(as)f(they)g(allo)o(w)e(a)h +(v)n(aluable)g(insigh)o(t)g(in)o(to)g(wh)o(y)g(a)h(particular)262 +407 y(mo)o(v)o(e)g(w)o(as)i(c)o(hosen.)262 558 y Fu(6.4.5)55 +b(Time)16 b(Allo)r(cation)i(and)h(Con)n(trol)262 670 y Fp(As)11 +b(I)g(explained)g(in)f(c)o(hapter)i(3,)f(I)g(b)q(eliev)o(e)g(time)f(allo)q +(cation)f(and)i(con)o(trol)g(is)g(an)f(imp)q(ortan)o(t)262 +720 y(asp)q(ect)j(of)f(a)g(c)o(hess)i(program's)d(mak)o(e)g(up)i(and)f(one)h +(whic)o(h)f(do)q(es)h(not)g(seem)f(to)g(ha)o(v)o(e)g(b)q(een)262 +770 y(addressed)j(prop)q(erly)f(in)g(most)f(c)o(hess)i(programs.)324 +855 y(A)o(t)h(the)g Fm(Computer)h(Olympiad)p Fp(,)f(I)f(often)h(noticed)h(ho) +o(w)e(ev)o(en)i(the)f(strongest)h(man)o(u-)262 905 y(facturer's)d(programs)e +(to)q(ok)h(appro)o(ximately)e(the)j(same)e(time)g(o)o(v)o(er)h(all)f(the)i +(mo)o(v)o(es,)e(ev)o(en)262 955 y(ob)o(vious)k(ones.)28 b(The)18 +b(only)e(time)g(mo)o(v)o(es)g(w)o(ere)i(pla)o(y)o(ed)f(quic)o(kly)f(w)o(as)h +(when)h(either)g(the)262 1005 y(mac)o(hines)11 b(w)o(ere)j(thinking)e(on)g +(opp)q(onen)o(ts)i(time)d(and)i(an)f(exp)q(ected)j(reply)e(w)o(as)f(made,)g +(or)262 1055 y(when)i(c)o(hec)o(kmate)g(w)o(as)f(seen)j(or)e(when)g(only)f +(one)h(legal)f(mo)o(v)o(e)f(existed.)324 1140 y(The)f(\014rst)g(thing)e(to)h +(do)h(is)f(to)g(analyse)g(ho)o(w)g(v)o(ery)g(strong)h(h)o(uman)e(c)o(hess)i +(pla)o(y)o(ers)g(tac)o(kle)262 1190 y(the)i(problem)e(of)h(time)f(allo)q +(cation.)16 b(I)c(did)g(not)h(\014nd)f(an)o(y)g(previous)h(researc)o(h)i(w)o +(ork)d(whic)o(h)262 1239 y(pro)o(vided)h(the)h(detailed)f(mo)o(v)o(e/time)e +(analysis)i(I)g(required,)h(so)g(I)f(decided)i(to)e(collate)g(the)262 +1289 y(information)d(m)o(yself.)324 1375 y(I)g(decided)i(to)e(use)h(the)g +(1986)e(w)o(orld)h(c)o(hampionship)f(matc)o(h)g(b)q(et)o(w)o(een)j(Gary)e +(Kasparo)o(v)262 1424 y(and)16 b(Anatoly)g(Karp)q(o)o(v)g([62)o(])h(as)f(m)o +(y)f(case)j(study)m(.)26 b(This)17 b(matc)o(h)e(w)o(as)h(c)o(hosen)i(for)e +(three)262 1474 y(main)11 b(reasons:)312 1593 y(1.)20 b(Lik)o(ely)13 +b(high)h(qualit)o(y)e(of)h(time)g(allo)q(cation)f(decisions.)312 +1676 y(2.)20 b(Same)14 b(pla)o(y)o(ers)g(w)o(ere)i(in)o(v)o(olv)o(ed)d(in)h +(all)f(games)h(allo)o(wing)e(pla)o(y)o(er)i(st)o(yle)h(to)g(b)q(e)g(anal-)365 +1725 y(ysed.)312 1808 y(3.)20 b(Detailed)c(statistics)g(giving)f(time)f(used) +j(for)f(eac)o(h)g(mo)o(v)o(e)e(w)o(as)i(a)o(v)n(ailable)e(in)h(c)o(hess)365 +1858 y(magazine.)324 1977 y(I)c(analysed)g(all)f(24)g(games)g(of)g(the)i +(matc)o(h.)k(F)m(or)11 b(eac)o(h)g(game,)f(mo)o(v)o(es)g(b)o(y)h(b)q(oth)g +(sides)h(up)262 2027 y(to)i(the)i(time)e(con)o(trol)h(at)g(mo)o(v)o(e)e(40)i +(w)o(ere)h(collated.)21 b(This)15 b(in)o(v)o(olv)o(ed)e(analysing)h(appro)o +(x-)262 2076 y(imately)e(2000)i(mo)o(v)o(e)g(times.)20 b(As)15 +b(a)g(result)g(I)g(w)o(as)g(able)g(to)g(pro)q(duce)h(5)e(di\013eren)o(t)i +(graphs)262 2126 y(detailing)c(the)j(a)o(v)o(erage)f(time)e(sp)q(en)o(t)j(on) +f(eac)o(h)g(mo)o(v)o(e)e(for:)324 2245 y Ff(\017)20 b Fp(Kasparo)o(v)14 +b(pla)o(ying)e(white.)324 2328 y Ff(\017)20 b Fp(Kasparo)o(v)14 +b(pla)o(ying)e(blac)o(k.)324 2411 y Ff(\017)20 b Fp(Karp)q(o)o(v)14 +b(pla)o(ying)e(white.)946 2574 y(133)p eop +%%Page: 134 136 +134 135 bop 324 307 a Ff(\017)20 b Fp(Karp)q(o)o(v)14 b(pla)o(ying)e(blac)o +(k.)324 390 y Ff(\017)20 b Fp(Com)o(bined)12 b(time)h(allo)q(cation.)262 +509 y(The)h(graphs)g(pro)q(duced)h(can)f(b)q(e)h(found)e(in)h(app)q(endix)f +(C.)324 594 y(Analysing)g(these)j(graphs)e(it)g(can)g(b)q(e)h(seen)g(that)f +(b)q(oth)h(pla)o(y)o(ers)f(ha)o(v)o(e)g(distinctly)g(dif-)262 +644 y(feren)o(t)e(st)o(yles)h(on)e(time)g(con)o(trol.)17 b(Kasparo)o(v)12 +b(allo)q(cates)f(a)h(signi\014can)o(t)f(amoun)o(t)f(of)h(time)g(to)262 +694 y(the)i(middle)e(game,)f(mo)o(v)o(es)i(12-28)f(in)h(particular.)18 +b(Kasparo)o(v's)12 b(time)f(allo)q(cation)g(usually)262 743 +y(has)k(one)g(v)o(ery)g(high)f(p)q(eak)h(around)g(mo)o(v)o(es)f(16)g(to)h(20) +f(and)h(then)g(tails)g(o\013)f(dramatically)m(.)262 793 y(Karp)q(o)o(v)f(on)f +(the)i(other)g(hand)f(has)g(a)g(more)f(uniform)f(usage)i(of)f(time,)g +(although)g(his)h(time)262 843 y(allo)q(cation)h(also)i(usually)f(tails)h +(o\013)g(steadily)g(after)g(mo)o(v)o(e)f(26.)24 b(Tw)o(o)16 +b(reasons)h(are)g(lik)o(ely)262 893 y(for)c(this)h(tailing)e(o\013:)324 +1011 y Ff(\017)20 b Fp(Bad)e(time)d(allo)q(cation)h(during)g(the)i(middle)d +(game)h(leading)g(to)h(a)g(rush)g(near)h(the)365 1061 y(time)13 +b(con)o(trol.)324 1144 y Ff(\017)20 b Fp(Go)q(o)q(d)e(planning)e(during)i +(the)h(late)e(middle)g(game)f(allo)o(wing)g(planned)i(mo)o(v)o(e)e(se-)365 +1194 y(quences)g(to)e(b)q(e)g(pla)o(y)o(ed)f(quic)o(kly)m(.)262 +1312 y(As)f(this)g(tailing)f(o\013)g(o)q(ccurs)j(in)e(nearly)g(all)e(the)j +(games)e(and)h(the)h(v)o(ery)f(high)f(calibre)i(of)e(the)262 +1362 y(pla)o(y)o(ers)i(in)o(v)o(olv)o(ed,)g(I)g(tend)i(to)f(think)f(go)q(o)q +(d)h(planning)e(is)i(resp)q(onsible.)324 1447 y(Another)j(in)o(teresting)h +(observ)n(ation)e(o)q(ccurs)i(when)g(y)o(ou)e(sup)q(er-imp)q(ose)h(the)g +(graphs)262 1497 y(Kasparo)o(v)f(as)h(white)g(o)o(v)o(er)f(Karp)q(o)o(v)h(as) +f(blac)o(k)h(and)f(Karp)q(o)o(v)h(as)f(white)h(o)o(v)o(er)g(Kasparo)o(v)262 +1547 y(as)c(blac)o(k.)18 b(A)o(t)c(eac)o(h)g(p)q(eak)g(on)f(the)i(white)e +(pla)o(y)o(er's)h(graph)f(there)i(is)f(usually)f(a)g(trough)h(at)262 +1597 y(the)g(corresp)q(onding)g(mo)o(v)o(e)e(on)i(the)g(opp)q(osing)f(blac)o +(k)g(pla)o(y)o(er's)g(graph.)18 b(This)13 b(also)g(o)q(ccurs)262 +1647 y(when)k(the)h(blac)o(k)f(pla)o(y)o(er's)f(p)q(eaks)i(are)g(compared)e +(with)h(the)h(graph)f(for)f(the)i(opp)q(osing)262 1696 y(white)c(pla)o(y)o +(er's)f(mo)o(v)o(es)g(follo)o(wing)e(suc)o(h)j(p)q(eaks.)324 +1782 y(I)f(think)g(this)g(clearly)g(illustrates)h(that)f(eac)o(h)h(pla)o(y)o +(er)f(mak)o(es)f(signi\014can)o(t)g(use)j(of)d(their)262 1832 +y(opp)q(onen)o(ts)i(thinking)f(time.)324 1917 y(Examining)f(the)k(com)o +(bined)e(graph)g(for)h(b)q(oth)g(Kasparo)o(v)g(and)g(Karp)q(o)o(v,)g(a)f +(relation-)262 1967 y(ship)f(to)h(a)g(normal)e(distribution)h(can)h(b)q(e)g +(seen.)20 b(Ov)o(erall)13 b(p)q(eak)h(remains)f(at)h(mo)o(v)o(e)e(20.)324 +2052 y(>F)m(rom)h(these)18 b(graphs)e(the)g(follo)o(wing)d(p)q(oin)o(ts)j(ab) +q(out)g(time)e(allo)q(cation)g(and)i(con)o(trol)262 2102 y(can)e(b)q(e)g +(deduced:)324 2220 y Ff(\017)20 b Fp(Thinking)13 b(on)h(y)o(our)f(opp)q(onen) +o(ts)i(time)d(is)i(imp)q(ortan)o(t.)324 2303 y Ff(\017)20 b +Fp(During)14 b(the)g(op)q(ening,)f(prepared)i(mo)o(v)o(es)e(are)h(t)o +(ypically)f(pla)o(y)o(ed)g(quic)o(kly)m(.)324 2386 y Ff(\017)20 +b Fp(A)c(signi\014can)o(t)f(amoun)o(t)f(of)h(time)f(should)h(b)q(e)h(allo)q +(cated)f(to)h('unkno)o(wn')e(p)q(ositions)365 2436 y(o)q(ccurring)h(in)e(the) +i(op)q(ening)e(after)i(a)e(prepared)i(sequence)h(of)e(mo)o(v)o(es.)946 +2574 y(134)p eop +%%Page: 135 137 +135 136 bop 324 307 a Ff(\017)20 b Fp(Time)10 b(should)h(b)q(e)h(allo)q +(cated)f(dep)q(ending)h(on)f(the)h(complexit)o(y)d(and)i(understanding)365 +357 y(of)j(the)g(curren)o(t)h(p)q(osition.)324 435 y Ff(\017)20 +b Fp(Time)13 b(allo)q(cation)f(should)i(b)q(e)g(dynamically)d(altered)k(as)f +(a)f(searc)o(h)i(progresses.)324 513 y Ff(\017)20 b Fp('Ob)o(vious')13 +b(mo)o(v)o(es)g(should)g(b)q(e)i(made)e(quic)o(kly)m(.)262 +621 y(Some)i(of)i(these)h(p)q(oin)o(ts)f(are)g(ob)o(vious)f(to)h(an)o(y)g +(exp)q(erienced)i(tournamen)o(t)d(pla)o(y)o(er,)h(oth-)262 +670 y(ers)g(are)f(less)h(so.)24 b(Nev)o(ertheless)18 b(it)e(remains)f(imp)q +(ortan)o(t)f(to)i(ha)o(v)o(e)g(one's)g(suspicions)g(re-)262 +720 y(enforced)f(b)o(y)e(researc)o(h.)324 805 y(I)h(will)e(no)o(w)i(explain)f +(ho)o(w)g(these)i(p)q(oin)o(ts)f(are)g(addressed)i(in)e(HIAR)o(CS)f(5.0.)262 +947 y Fl(Thinking)g(on)i(Opp)q(onen)o(ts)e(Time)262 1059 y +Fp(HIAR)o(CS)j(thinks)g(ab)q(out)g(its)h(next)g(mo)o(v)o(e)d(durings)j(its)f +(opp)q(onen)o(t's)h(thinking)e(time.)25 b(It)262 1108 y(do)q(es)16 +b(this)g(b)o(y)f(thinking)g(ab)q(out)h(the)g(p)q(osition)f(as)h(if)f(the)i +(opp)q(onen)o(t)f(had)f(made)g(the)h(ex-)262 1158 y(p)q(ected)g(reply)m(.)21 +b(If)14 b(the)i(opp)q(onen)o(t)f(actually)f(mak)o(es)f(the)j(exp)q(ected)h +(reply)m(,)d(HIAR)o(CS)g(has)262 1208 y(gained)h(time)f(and)h(can)h(con)o +(tin)o(ue)p 651 1215 153 2 v 15 w('thinking')e(or)h(reply)h(imm)o(ediately)m +(.)j(If)c(ho)o(w)o(ev)o(er,)h(the)262 1258 y(opp)q(onen)o(t)c(mak)o(es)f(a)h +(di\013eren)o(t)h(reply)m(,)e(HIAR)o(CS)h(ab)q(orts)g(its)g(analysis)g(and)g +(starts)h('think-)262 1308 y(ing')e(from)h(the)i(new)f(p)q(osition.)k(In)c +(practice,)h(the)g(correct)h(mo)o(v)o(e)c(seems)i(to)g(b)q(e)h(predicted)262 +1357 y(around)f(50\045)g(of)h(the)g(time.)324 1443 y(The)h(time)e(sp)q(en)o +(t)i(thinking)e(on)h(the)h(opp)q(onen)o(ts)g(time)e(is)h(tak)o(en)h(in)o(to)e +(accoun)o(t)i(when)262 1493 y(the)f(exp)q(ected)i(reply)e(is)g(made.)262 +1634 y Fl(Initial)f(Time)i(Allo)q(cation)262 1746 y Fp(Initially)g(the)i +(resp)q(onse)i(time)d(\(respTime\))h(allo)q(cated)g(to)g(a)g(mo)o(v)o(e)e(is) +i(calculated)g(from)262 1795 y(the)d(a)o(v)o(erage)g(time)e(p)q(er)j(mo)o(v)o +(e)d(remaining)g(to)i(the)g(next)h(time)d(con)o(trol:)671 1903 +y(respTime)h(=)h(timeLeft)f(/)h(mo)o(v)o(esLeft)324 2011 y(A)g(maxim)n(um)9 +b(time)k(\(maxTime\))e(is)j(also)f(initially)e(calculated)j(as)g(follo)o(ws:) +785 2119 y(maxTim)o(e)d(=)k(timeLeft)324 2227 y(This)f(is)f(a)h(sp)q(ecial)g +(case)h(to)f(stop)g(the)g(program)f(from)f(losing)h(on)g(time.)324 +2313 y(Using)i(only)f(this)i(approac)o(h,)f(a)f(problem)g(ma)o(y)g(o)q(ccur)i +(where)g(the)g(program)e(ha)o(ving)262 2363 y(half)19 b(an)h(hour)h(left)f +(for)h(its)f(last)h(mo)o(v)o(e)d(will)i(w)o(an)o(t)g(to)g(use)i(its)e(full)f +(time)h(allo)q(cation.)262 2412 y(Ho)o(w)o(ev)o(er,)12 b(it)h(ma)o(y)d(b)q(e) +j(b)q(etter)h(not)f(to)f(sp)q(end)i(all)d(the)j(a)o(v)n(ailable)c(time)h(and) +i(sa)o(v)o(e)f(some)g(for)262 2462 y(use)i(during)e(the)i(next)g(time)e(con)o +(trol)h(p)q(erio)q(d.)18 b(T)m(o)12 b(a)o(v)o(oid)g(this)i(problem;)d(during) +i(the)h(last)262 2512 y(10)f(mo)o(v)o(es)f(b)q(efore)j(a)f(time)e(con)o +(trol,)h(respTime)h(is)g(mo)q(di\014ed)e(as)i(follo)o(ws:)946 +2574 y(135)p eop +%%Page: 136 138 +136 137 bop 344 357 a Fp(respTime)14 b(=)g(min\(respTime,)d(timeLeft2/mo)o(v) +o(esLeft2\))344 457 y Fl(where)380 506 y Fp(respTime)i(:)77 +b(is)14 b(the)h(initial)c(resp)q(onse)16 b(time)d(set.)380 +606 y(timeLeft2)f(:)71 b(is)14 b(the)h(time)d(left)i(b)q(efore)g(the)h(next)f +(but)g(one)g(time)f(con)o(trol.)380 706 y(mo)o(v)o(esLeft2)f(:)42 +b(is)14 b(the)h(n)o(um)o(b)q(er)e(of)g(mo)o(v)o(es)g(left)g(b)q(efore)i(the)f +(next)h(but)f(one)g(time)651 756 y(con)o(trol.)324 874 y(After)g(the)h +(program)e(lea)o(v)o(es)h(its)g(op)q(ening)g(b)q(o)q(ok)f(it)h(is)g(faced)g +(with)g(a)g(p)q(osition)f(whose)262 924 y(concepts)22 b(m)o(ust)d(b)q(e)i +(grasp)q(ed)h(to)e(enable)h(the)g(program)e(to)h(con)o(tin)o(ue)h(the)g +(thread)g(of)262 974 y(the)16 b(op)q(ening.)25 b(T)m(o)16 b(help)g(the)h +(program)e(at)h(this)g(di\016cult)g(stage,)h(the)g(resp)q(onse)h(time)d(is) +262 1023 y(increased)g(b)o(y)e(b)q(et)o(w)o(een)i(0)e(and)h(respTime)f(dep)q +(ending)i(on)e(the)h(n)o(um)o(b)q(er)f(of)g(mo)o(v)o(es)g(since)262 +1073 y(lea)o(ving)i(the)j(op)q(ening)f(b)q(o)q(ok,)g(e.g.)26 +b(the)18 b(\014rst)g(non)f(b)q(o)q(ok)f(mo)o(v)o(e)g(is)g(respTime,)h(and)g +(the)262 1123 y(forth)c(is)h(0.)262 1266 y Fl(Time)h(Allo)q(cation)e +(Adjustmen)o(t)262 1378 y Fp(The)h(actual)g(time)f(whic)o(h)i(can)f(b)q(e)h +(sp)q(en)o(t)h(on)e(a)g(mo)o(v)o(e)f(can)h(v)n(ary)g(b)q(et)o(w)o(een)i +(respTime/64)262 1428 y(and)10 b(maxTim)o(e.)k(Therefore,)e(for)e(a)g(time)f +(con)o(trol)g(of)h(40)g(mo)o(v)o(es)f(in)g(2)h(hours)h(the)g(minim)n(um)262 +1478 y(and)20 b(maxim)n(um)d(times)i(could)i(range)g(from)d(3)j(seconds)h(to) +e(2)h(hours.)39 b(Of)20 b(course,)j(if)262 1528 y(the)c(searc)o(h)h(tree)h +(is)d(terminal)g(or)h(thinking)f(on)g(opp)q(onen)o(ts)i(time)e(has)h(b)q(een) +h(used)g(an)262 1578 y(imm)o(ediate)11 b(resp)q(onse)16 b(ma)o(y)c(still)h(o) +q(ccur.)324 1663 y(The)18 b(time)e(sp)q(en)o(t)j(thinking)e(on)g(opp)q(onen)o +(ts)i(time)d(is)i(tak)o(en)g(in)o(to)f(accoun)o(t)h(b)o(y)g(this)262 +1713 y('time)f(windo)o(w'.)34 b(F)m(or)19 b(example,)g(if)g(the)h(program)e +(had)h(sp)q(en)o(t)i(60)e(seconds)i(thinking)262 1763 y(on)d(opp)q(onen)o(ts) +g(time)f(and)h(the)h(exp)q(ected)i(reply)d(w)o(as)g(made,)g(a)g(new)h +(respTime)e(of)h(62)262 1812 y(seconds)f(w)o(ould)e(only)g(require)i(2)f +(more)f(seconds)j(though)o(t)d(b)o(y)h(the)h(program,)d(all)h(other)262 +1862 y(things)e(b)q(eing)h(equal.)324 1947 y(The)20 b(actual)f(time)g(tak)o +(en)h(within)f(this)h('time)e(windo)o(w')g(will)h(dep)q(end)i(on)e(v)n +(arious)262 1997 y(factors)e(measuring)f(ho)o(w)g(complex)g(the)h(mo)o(v)o(e) +f(c)o(hoice)h(is.)27 b(Dep)q(ending)17 b(on)g(the)g(searc)o(h)262 +2047 y(status,)12 b(the)h(time)e(allo)q(cation)f(is)i(adjusted)h(under)g(5)e +(categories.)19 b(Note,)12 b(to)g(facilitate)f(the)262 2097 +y(v)n(arying)h(time)h(allo)q(cation)f(c)o(hanges,)i(the)h(concept)g(of)e +(extra)p 1130 2104 94 2 v 14 w(time)g(is)h(in)o(tro)q(duced.)262 +2240 y Fl(1.)25 b(Best)17 b(Mo)o(v)o(e)g(leads)f(to)h(a)g(Loss:)41 +b Fp(While)15 b(no)g(mo)o(v)o(es)f(are)h(found)g(to)g(a)o(v)o(oid)f(losing) +262 2290 y(the)e(game,)e(the)j(allo)q(cated)f(time)e(is)i(set)h(to)f(the)g +(maxTime.)i(This)e(allo)o(ws)f(the)h(program)f(to)262 2340 +y(con)o(tin)o(ue)k(searc)o(hing)h(un)o(til)e(either)j(mate)d(is)h(found)g(or) +h(almost)d(all)h(the)i(program's)e(time)262 2390 y(expires.)20 +b(After)14 b(all,)f(the)i(program)e(is)h(v)o(ery)g(lik)o(ely)f(to)h(lose)g +(if)g(it)g(pla)o(ys)f(a)h(mo)o(v)o(e)f(it)h(kno)o(ws)262 2439 +y(will)e(lead)i(to)f(a)h(loss,)f(therefore)i(it)f(migh)o(t)e(as)i(w)o(ell)f +(sp)q(end)i(most)d(of)i(its)f(time)g(attempting)946 2574 y(136)p +eop +%%Page: 137 139 +137 138 bop 262 307 a Fp(to)16 b(\014nd)g(an)g(impro)o(v)o(emen)o(t.)22 +b(Of)16 b(course,)i(if)d(the)i(loss)f(is)g(found)f(to)h(b)q(e)h(una)o(v)o +(oidable)e(the)262 357 y(mo)o(v)o(e)d(whic)o(h)i(lasts)g(out)f(the)i(longest) +f(will)e(b)q(e)j(pla)o(y)o(ed)e(immedia)o(tely)m(.)262 499 +y Fl(2.)35 b(New)21 b(Iteration)d(Begun:)41 b Fp(Before)19 +b(eac)o(h)f(new)h(iteration)e(b)q(egins)i(the)f(program)262 +549 y(calculates)10 b(ho)o(w)f(long)g(the)i(iteration)e(is)h(exp)q(ected)i +(to)e(tak)o(e)f(based)i(on)f(the)g(time)f(tak)o(en)h(o)o(v)o(er)262 +599 y(previous)g(iterations.)17 b(F)m(or)10 b(example,)f(in)h(the)h(middle)e +(game)g(an)h(iteration)g(t)o(ypically)f(tak)o(es)262 649 y(ab)q(out)15 +b(6)g(times)f(the)i(length)g(of)e(all)g(previous)i(iterations)1177 +634 y Fk(5)1196 649 y Fp(.)22 b(Additionally)m(,)13 b(an)i(iteration)262 +699 y(commi)o(tm)o(en)o(t)d(time)i(is)g(calculated.)21 b(If)14 +b(the)h(curren)o(t)h(resp)q(onse)h(time)c(will)h(expire)h(b)q(efore)262 +748 y(the)f(iteration)f(commi)o(tm)o(en)o(t)e(time,)h(the)i(searc)o(h)g(is)g +(ab)q(orted.)k(Ho)o(w)o(ev)o(er,)c(if)e(the)i(program)262 798 +y(is)h(committed)f(to)i(the)g(iteration,)g(it)g(allo)o(ws)e(the)j(extra)f +(time)f(reasonably)h(exp)q(ected)i(to)262 848 y(ac)o(hiev)o(e)e(some)f +(results)i(from)e(the)h(new)h(iteration)f(commitm)n(en)o(t.)23 +b(Note)16 b(that)g(the)h(time)262 898 y(previously)c(tak)o(en)h(thinking)f +(on)h(opp)q(onen)o(ts)g(time)f(is)h(also)f(tak)o(en)h(in)o(to)f(accoun)o(t.) +504 1011 y(extraTime)g(=)h(iterationTime)e Ff(\000)i Fp(respTime)g(+)g +(oppTime)262 1153 y Fl(3.)20 b(Searc)o(h)13 b(F)l(ailed)f(Lo)o(w:)41 +b Fp(When)12 b(the)h(searc)o(h)g(has)f(failed)g(lo)o(w,)f(the)h(true)h(v)n +(alue)f(of)f(the)262 1203 y(b)q(est)h(mo)o(v)o(e)f(found)g(is)h(not)f(kno)o +(wn,)h(it)f(is)h(only)f(kno)o(wn)g(that)h(it)f(is)h(w)o(orse)h(than)e(the)i +Fh(\013)e Fp(v)n(alue)262 1253 y(of)h(the)h(initial)e(searc)o(h)j(windo)o(w.) +i(In)d(this)g(case,)h(a)e(large)g(amoun)o(t)f(of)h(time)g(is)g(allo)q(cated)h +(to)262 1303 y(actually)g(\014nd)i(a)f(true)i(score.)21 b(Otherwise,)16 +b(if)d(the)j(b)q(est)f(mo)o(v)o(e)e(found)h(w)o(ere)i(pla)o(y)o(ed,)e(it)g +(is)262 1353 y(lik)o(ely)e(to)i(b)q(e)g(a)g(blunder.)739 1466 +y(extraTime)f(=)h(8)g Ff(\001)f Fp(respTime)262 1608 y Fl(4.)23 +b(Searc)o(h)16 b(F)l(ailed)f(High:)41 b Fp(Lik)o(e)14 b(a)g(fail)f(lo)o(w,)h +(when)h(the)g(searc)o(h)h(fails)d(high)h(the)i(true)262 1658 +y(score)21 b(is)e(not)h(kno)o(wn.)35 b(Ho)o(w)o(ev)o(er,)22 +b(things)d(are)h(not)g(so)g(sev)o(ere)i(as)d(with)h(the)g(fail)f(lo)o(w)262 +1708 y(condition)13 b(as)h(it)g(is)h(kno)o(wn)e(that)i(the)g(b)q(est)g(mo)o +(v)o(e)e(found)h(is)g(b)q(etter)i(than)e Fh(\014)r Fp(.)20 +b(Therefore,)262 1758 y(some)12 b(extra)i(time)e(is)h(allo)q(cated)g(to)h +(allo)o(w)d(the)j(true)h(score)f(to)g(b)q(e)g(determined,)f(ho)o(w)o(ev)o +(er,)262 1808 y(this)g(time)g(is)h(not)g(excessiv)o(e,)h(b)q(eing)f(set)g +(at:)739 1921 y(extraTime)f(=)h(2)g Ff(\001)f Fp(respTime)262 +2063 y Fl(5.)41 b(Searc)o(h)21 b(V)l(alue)g(in)h(Aspiration)d(Windo)o(w:)40 +b Fp(The)20 b(actual)g(b)q(est)g(mo)o(v)o(e)e(v)n(alue)262 +2113 y(is)e(kno)o(wn,)h(therefore,)h(time)e(can)h(b)q(e)g(allo)q(cated)f +(directly)h(from)e(the)j(v)n(alue)e(itself.)26 b(The)262 2163 +y(judgemen)o(t)17 b(is)h(based)i(on)e(the)h(di\013erence)h(b)q(et)o(w)o(een)g +(the)f(b)q(est)h(mo)o(v)o(e's)d(v)n(alue)h(and)g(the)262 2213 +y(score)e(at)f(the)h(end)g(of)e(the)i(last)f(iteration.)22 +b(If)15 b(this)g(di\013erence)i(is)e(less)h(than)g(or)f(equal)g(to)262 +2263 y Ff(\000)p Fp(16,)e(extra)h(time)f(is)g(allo)q(cated)h(as)g(follo)o +(ws:)599 2376 y(extraTime)f(=)h(\()p Ff(j)g Fp(di\013)f Ff(j)h +Fp(/)f(16)h Ff(\001)f Fp(respTime\))h(/)f(8)p 262 2411 573 +2 v 308 2437 a Fj(5)325 2449 y Fi(the)e(fact)f(that)h(o)q(dd)f(ply)h +(iterations)e(tak)o(e)i(longer)f(than)g(ev)o(en)g(ones)h(is)g(also)g(tak)o +(en)f(in)o(to)h(accoun)o(t)946 2574 y Fp(137)p eop +%%Page: 138 140 +138 139 bop 262 307 a Fp(F)m(or)11 b(example,)f(if)g(the)i(b)q(est)h(mo)o(v)o +(e)d(at)h(this)g(iteration)g(app)q(ears)i(to)e(lose)g(a)g(pa)o(wn)h(relativ)o +(e)f(to)262 357 y(the)16 b(previous)f(iteration)g(\(di\013)h(=)f +Ff(\000)p Fp(100\),)g(the)h(extra)g(time)e(allo)q(cated,)h(giv)o(en)g +(respTime)262 407 y(=)i(180)g(seconds)i(and)f(in)o(teger)g(arithmetic,)f(w)o +(ould)g(b)q(e)h(135)f(seconds,)j(making)15 b(a)i(total)262 +457 y(time)11 b(of)i(5)g(min)o(utes)f(15)h(seconds.)19 b(F)m(or)13 +b(the)h(loss)g(of)e(a)h(bishop,)g(the)h(extra)g(time)e(w)o(ould)g(b)q(e)262 +506 y(ab)q(out)h(8)h(min)o(utes)f(\(total)g(time)g(11)g(min)o(utes\).)324 +592 y(This)h(metho)q(d)g(allo)o(ws)f(extra)h(time)g(to)g(b)q(e)h(allo)q +(cated)f(as)g(and)g(when)h(necessary)m(.)21 b(The)262 641 y(loss)14 +b(of)f(a)h(piece)i(is)e(v)o(ery)g(lik)o(ely)f(to)i(mean)e(the)h(loss)h(of)e +(the)i(game,)e(so)h(it)g(is)g(imp)q(ortan)o(t)f(to)262 691 +y(allo)q(cate)j(a)g(signi\014can)o(t)g(amoun)o(t)f(of)h(time)g(in)g(order)h +(to)g(searc)o(h)h(for)e(a)h(w)o(a)o(y)f(of)g(a)o(v)o(oiding)262 +741 y(the)d(loss.)18 b(As)13 b(can)h(b)q(e)f(seen)h(the)g(actual)f(extra)g +(time)f(allo)q(cated)g(is)h(directly)h(prop)q(ortional)262 +791 y(to)e(the)i(threatened)h(loss.)j(This)13 b(approac)o(h)g(also)f(helps)i +(the)g(program)d(a)o(v)o(oid)h(the)i(horizon)262 841 y(e\013ect)20 +b(b)o(y)f(detecting)g(when)h(scores)g(drop)f(b)q(et)o(w)o(een)h(iterations,)g +(and)f(then)g(allo)q(cating)262 891 y(more)12 b(time)h(to)h(see)h(o)o(v)o(er) +f(the)g(searc)o(h)h(horizon.)324 976 y(When)e(the)g(di\013erence)i(is)e +(greater)h(than)e Ff(\000)p Fp(16,)h(no)f(extra)i(time)d(is)i(allo)q(cated.)k +(In)c(fact,)262 1026 y(the)j(time)e(is)h(reduced)i(for)e(n)o(umerous)g(ob)o +(vious)g(mo)o(v)o(es.)21 b(The)16 b(follo)o(wing)d(attributes)j(are)262 +1075 y(tak)o(en)e(in)o(to)f(accoun)o(t)h(for)g(time)e(reduction:)324 +1190 y Ff(\017)20 b Fp(Whether)15 b(the)f(b)q(est)g(mo)o(v)o(e)e(has)i(main)o +(tained)d(top)i(p)q(osition)g(throughout)g(all)g(itera-)365 +1240 y(tions.)324 1321 y Ff(\017)20 b Fp(Whether)15 b(a)f(fail)e(lo)o(w)h(or) +h(high)f(has)h(o)q(ccurred)i(during)e(this)f(searc)o(h.)324 +1402 y Ff(\017)20 b Fp(Whether)15 b(the)g(b)q(est)g(mo)o(v)o(e)d(is)i +(clearly)f(b)q(etter)j(than)e(all)e(its)i(siblings.)324 1484 +y Ff(\017)20 b Fp(Whether)15 b(the)g(mo)o(v)o(e)d(is)i(a)f(capture)i(or)f +(recapture.)324 1565 y Ff(\017)20 b Fp(Whether)c(the)e(mo)o(v)o(e)f(w)o(as)h +(part)g(of)g(the)h(main)d(line)h(predicted)j(from)c(the)j(previous)365 +1615 y(searc)o(h.)324 1696 y Ff(\017)20 b Fp(Whether)11 b(a)e(mo)o(v)o(e's)f +(v)n(alue)h(falls)g(within)g(a)g(score)i(range)f(predicted)h(b)o(y)e(the)h +(previous)365 1745 y(searc)o(h.)262 1860 y(Giv)o(en)19 b(this)i(information,) +d(the)j(time)f(allo)q(cation)e(function)i(can)h(mak)o(e)e(a)h(reasonable)262 +1910 y(decision)14 b(ab)q(out)f(what)h(can)g(safely)p 717 1925 +102 2 v 14 w(b)q(e)g(considered)i(ob)o(vious.)324 1995 y(Please)11 +b(note,)g(this)g(time)e(allo)q(cation)g(adjustmen)o(t)h(pro)q(cess)i(is)f +(con)o(tin)o(ually)e(p)q(erformed)262 2045 y(ev)o(ery)14 b(time)f(a)g(new)i +(b)q(est)g(mo)o(v)o(e)d(is)i(found)f(or)h(an)g(iteration)f(completes.)262 +2188 y Fl(Chec)o(king)h(Time)262 2300 y Fp(Whenev)o(er)g(the)g(allo)q(cated)f +(time)f(is)h(adjusted,)h(a)f(new)h(searc)o(h)h(expiry)e(time)f(exists.)19 +b(This)262 2350 y(expiry)10 b(time)f(is)h(calculated)h(from)d(the)j(resp)q +(onse)i(time,)c(extra)i(time,)e(time)g(sp)q(en)o(t)j(thinking)262 +2399 y(on)i(opp)q(onen)o(ts)i(time)d(and)i(the)h(max)d(time.)20 +b(Using)15 b(this)g(expiry)g(time,)e(an)i(alarm)e(call)h(is)262 +2449 y(set)i(up)g(to)f(signal)g(the)h(program)e(when)i(its)f(searc)o(h)i +(time)d(has)i(matured.)23 b(Additionally)m(,)946 2574 y(138)p +eop +%%Page: 139 141 +139 140 bop 262 307 a Fp(b)q(efore)19 b(setting)f(a)g(new)h(alarm)d(call)i +(time,)g(the)h(old)e('alarm)f(call')h(m)o(ust)g(b)q(e)i(cancelled.)262 +357 y(This)13 b(approac)o(h)h(mak)o(es)f(use)i(of)e(the)h(UNIX)h(system)e +(call)g Fm(alarm)p Fp(.)262 530 y Fr(6.5)69 b(E\016ciency)22 +b(Asp)r(ects)262 656 y Fp(E\016ciency)f(is)f(v)o(ery)h(imp)q(ortan)o(t)d(to)j +(an)o(y)f(c)o(hess)i(program.)36 b(In)20 b(fact,)i(b)q(ecause)g(of)e(the)262 +706 y(un)o(usually)14 b(dominan)o(t)g(factor)i(of)f(e\016ciency)m(,)h(c)o +(hess)h(programs)e(are)h(usually)f(quite)h(hard)262 756 y(to)h(follo)o(w.)28 +b(I)17 b(ha)o(v)o(e)h(tried)g(to)g(mak)o(e)e(HIAR)o(CS)h(as)h(clear)g(and)g +(easy)g(to)g(understand)h(as)262 805 y(p)q(ossible,)13 b(while)h(k)o(eeping)f +(to)h(the)h(o)o(v)o(erall)d(aims)h(of)g(e\016ciency)m(.)324 +891 y(The)e(follo)o(wing)e(sections)j(explain)e(program)g(e\016ciency)i(from) +d(three)j(di\013eren)o(t)g(angles:)262 1042 y Fu(6.5.1)55 b(Algorithms)262 +1154 y Fp(T)m(ree)17 b(searc)o(hing)h(e\016ciency)g(is)f(of)f(primary)g(imp)q +(ortance)g(to)h(the)h(o)o(v)o(erall)e(sp)q(eed)i(of)f(the)262 +1204 y(program.)25 b(F)m(or)17 b(example,)f(the)i(di\013erence)h(b)q(et)o(w)o +(een)f(applying)e Fh(\013\014)j Fp(to)e(a)g(w)o(ell)f(ordered)262 +1254 y(tree)g(and)g(a)f(badly)g(ordered)i(tree)g(is)f(man)o(y)e(orders)i(of)f +(magnitude.)22 b(In)16 b(HIAR)o(CS,)f(par-)262 1304 y(ticular)g(atten)o(tion) +g(has)h(b)q(een)h(paid)e(to)g(impro)o(ving)e(mo)o(v)o(e)h(ordering)h(to)h +(therefore)h(a)o(v)o(oid)262 1354 y(exploration)c(of)g(man)o(y)f(unnecessary) +k(no)q(des.)324 1439 y(Other)11 b(areas)g(lik)o(e)e(mo)o(v)o(e)f(generation,) +j(for)f(example,)f(ha)o(v)o(e)h(b)q(een)h(made)e(more)g(e\016cien)o(t)262 +1489 y(b)o(y)k(the)i(use)f(of)g(suitable)f(data)h(structures.)262 +1640 y Fu(6.5.2)55 b(Data)19 b(Structures)262 1752 y Fp(Data)c(structure)k +(comp)q(osition)c(mak)o(es)g(a)h(large)h(con)o(tribution)f(to)g(o)o(v)o +(erall)g(program)f(ef-)262 1802 y(\014ciency)j(b)o(y)f(allo)o(wing)e(fast)i +(storage)g(and)h(retriev)n(al)f(of)f(imp)q(ortan)o(t)g(information.)25 +b(The)262 1852 y(incremen)o(tal)13 b(attac)o(k)g(tables)i(and)e(transp)q +(osition)h(table)g(are)g(ob)o(vious)g(examples)f(of)g(this.)262 +1902 y(The)e(rather)i(complex)d(ev)n(aluation)g(function)h(w)o(ould)f(b)q(e)j +(just)e(to)q(o)g(exp)q(ensiv)o(e)i(to)e(compute)262 1952 y(w)o(ere)j(it)g +(not)g(for)f(the)i(attac)o(k)f(tables.)324 2037 y(Without)d(the)h(use)g(of)f +(a)g(large)g(easily)g(accessible)i(transp)q(osition)e(table,)h(m)o(uc)o(h)e +(w)o(asted)262 2087 y(e\013ort)18 b(w)o(ould)f(result)h(from)e(exploring)h +(duplicate)h(subtrees.)32 b(The)18 b(impro)o(v)o(emen)o(ts)d(are)262 +2137 y(particularly)f(eviden)o(t)j(in)e(the)h(endgame,)f(where)i(a)e(5-fold)g +(sp)q(eed)i(impro)o(v)o(emen)o(t)c(is)j(not)262 2186 y(uncommon.)946 +2574 y(139)p eop +%%Page: 140 142 +140 141 bop 262 307 a Fu(6.5.3)55 b(Co)r(de)18 b(Pro)r(duction)262 +419 y Fp(Consideration)d(m)o(ust)g(also)g(b)q(e)h(giv)o(en)f(to)h(the)g(co)q +(de)h(pro)q(duced)g(b)o(y)e(the)i(C)e(compiler.)23 b(It)262 +469 y(ma)o(y)17 b(ha)o(v)o(e)j(b)q(een)h(noted)g(ho)o(w)e(all)g(m)o(y)f(main) +g(data)h(structure)j(records)g(are)e(of)f(a)h(size)262 519 +y(divisible)e(b)o(y)i(2.)35 b(This)20 b(allo)o(ws)f(the)h(compiler)f(to)g +(use)i(a)e(less)i(time)d(consuming)h(shift)262 569 y(op)q(eration,)13 +b(instead)h(of)f(m)o(ultiplication,)d(to)k(access)i(individual)11 +b(records.)324 654 y(Unsigned)19 b(data)f(t)o(yp)q(es)h(are)g(used)h(where)g +(p)q(ossible)e(to)h(impro)o(v)o(e)e(the)i(e\016ciency)g(of)262 +704 y(the)13 b(addressing)h(co)q(de)g(pro)q(duced.)20 b(F)m(or)12 +b(example,)g(when)i(using)f(a)g(signed)g(16)g(bit)g(in)o(teger)262 +754 y(as)k(an)f(index)h(in)o(to)f(an)h(arra)o(y)m(,)f(the)i(compiler)d(m)o +(ust)h(pro)q(duce)i(an)f(extra)h(instruction)f(to)262 803 y(p)q(erform)d +(sign)i(extensions)h(\(EXT.L)e(on)h(a)f(MC68000\))g(in)h(a)f(32)g(bit)h +(addressing)g(mo)q(de.)262 853 y(With)d(unsigned)h(in)o(tegers,)g(none)g(of)g +(this)g(is)f(necessary)m(.)324 938 y(All)g(constructs)j(and)e(expressions)i +(whic)o(h)e(pro)q(duce)i(time)d(exp)q(ensiv)o(e)i(mac)o(hine)e(co)q(de)262 +988 y(are)h(a)o(v)o(oided)f(where)i(p)q(ossible.)j(F)m(or)c(example,)e(few)i +(division)e(op)q(erations)i(are)h(used.)324 1073 y(Most)g(functions)g(use)h +(register)g(v)n(ariables)e(for)g(the)i(most)d(commonly)f(used)j(data)g(ob-) +262 1123 y(jects.)36 b(Of)19 b(course,)j(ho)o(w)d(often)h(these)h(v)n +(ariables)d(are)i(register)h(residen)o(t)g(dep)q(ends)g(on)262 +1173 y(UNIX)14 b(and)f(the)i(C)f(Compiler.)324 1258 y(Unfolding)f(lo)q(ops)i +(and)f(pro)q(ducing)h(linear)g(co)q(de)g(is)g(another)g(tric)o(k)g(to)g +(extract)h(more)262 1308 y(sp)q(eed.)j(Ho)o(w)o(ev)o(er,)12 +b(I)g(ha)o(v)o(e)g(a)o(v)o(oided)g(suc)o(h)h(practice)g(on)f(the)h(whole)f +(to)g(impro)o(v)o(e)e(readabil-)262 1358 y(it)o(y)j(and)h(ease)g(dev)o +(elopmen)o(t)f(testing.)324 1443 y(I)k(ha)o(v)o(e)h(made)e(a)h(n)o(um)o(b)q +(er)g(of)g(critical)g(v)n(ariables)g(global)f(to)h(a)o(v)o(oid)f(using)i(up)f +(time,)262 1493 y(passing)h(large)g(amoun)o(ts)g(of)g(data)g(on)g(the)i(stac) +o(k.)32 b(Ho)o(w)o(ev)o(er,)20 b(I)f(ha)o(v)o(e)f(also)g(emplo)o(y)o(ed)262 +1543 y(some)e(data)h(hiding)f(tec)o(hniques)j(where)f(suitable)g(to)f(ease)h +(dev)o(elopmen)o(t)e(and)i(testing.)262 1593 y(The)c(HashDriv)o(er)g(mo)q +(dule)e(is)i(an)g(ob)o(vious)f(example)g(of)g(this.)324 1678 +y(Individually)m(,)18 b(all)g(these)j(impro)o(v)o(em)o(en)o(ts)d(are)h(v)o +(ery)h(small.)32 b(Ho)o(w)o(ev)o(er,)21 b(when)f(y)o(ou)262 +1728 y(consider)15 b(that)g(a)f(n)o(um)o(b)q(er)g(of)h(co)q(de)g(units)g(are) +g(executed)i(man)o(y)c(milli)o(ons)f(of)i(times,)g(the)262 +1778 y(o)o(v)o(erall)e(e\013ect)k(can)e(b)q(e)g(quite)g(impressiv)o(e.)946 +2574 y(140)p eop +%%Page: 141 143 +141 142 bop 262 654 a Fn(Chapter)34 b(7)262 897 y Fo(Program)40 +b(P)m(erformance)262 1148 y Fp(In)17 b(order)h(to)f(b)q(e)i(able)e(to)g(ev)n +(aluate)g(the)h(tec)o(hniques)h(emplo)o(y)o(ed)d(in)h(HIAR)o(CS)g(5.0,)g(the) +262 1198 y(program's)g(strengths)k(and)d(w)o(eaknesses)k(need)e(to)f(b)q(e)g +(assessed.)36 b(F)m(ortunately)m(,)19 b(c)o(hess)262 1248 y(pro)o(vides)14 +b(man)o(y)e(w)o(a)o(ys)h(of)g(testing)i(a)e('pla)o(y)o(ers')g(abilit)o(y)m(.) +324 1333 y(The)g(ELO)h(c)o(hess)g(rating)f(system)g([19)o(])f(has)h(b)q(een)h +(used)g(w)o(orld)f(wide)g(for)g(o)o(v)o(er)g(t)o(w)o(en)o(t)o(y)262 +1383 y(y)o(ears)h(to)h(estimate)e(a)h(pla)o(y)o(er's)g(abilit)o(y)f(in)h +(terms)g(of)f(rating)h(p)q(oin)o(ts.)20 b(Chess)15 b(ratings)f(are)262 +1433 y(ac)o(hiev)o(ed)h(b)o(y)f(pla)o(ying)f(a)i(n)o(um)o(b)q(er)f(of)g +(games)g(against)g(already)g(rated)i(pla)o(y)o(ers.)k(Using)15 +b(a)262 1483 y(rating/probabilit)o(y)c(table,)i(a)h(rating)f(can)h(b)q(e)h +(calculated)f(based)h(on)e(ones)i(p)q(erformance)262 1532 y(against)9 +b(the)i(rated)f(pla)o(y)o(ers.)17 b(I)10 b(will)e(use)j(a)f(similar)e(metho)q +(d)h(to)h(pro)o(vide)g(a)f(rough)h(estimate)262 1582 y(of)j(HIAR)o(CS's)g(c)o +(hess)j(rating.)324 1667 y(Chess)g(ratings)g(can)f(also)g(b)q(e)h(estimated)f +(from)f(a)h(set)h(of)f(test)i(p)q(ositions.)22 b(Although)262 +1717 y(this)d(metho)q(d)g(is)h(not)f(used)i(o\016cially)d(to)h(rate)h(pla)o +(y)o(ers,)h(it)e(can)h(b)q(e)h(used)f(to)g(giv)o(e)f(an)262 +1767 y(estimate)11 b(of)h(the)h(tested)h(pla)o(y)o(ers)e(rating.)17 +b(Also,)12 b(these)h(tests)h(allo)o(w)d(a)h(pla)o(y)o(er's)g(abilit)o(y)e(in) +262 1817 y(v)n(arious)k(areas)i(of)f(c)o(hess,)h(e.g.)23 b(tactical)15 +b(pla)o(y)m(,)e(to)j(b)q(e)g(measured.)22 b(Therefore,)16 b(suc)o(h)h(test) +262 1867 y(p)q(ositions)9 b(will)f(b)q(e)j(useful)f(to)g(me)f(in)g(iden)o +(tifying)f(the)j(relativ)o(e)e(strengths)j(and)e(w)o(eaknesses)262 +1916 y(of)j(HIAR)o(CS.)324 2002 y(The)j(follo)o(wing)d(tests)k(will)d(b)q(e)i +(p)q(erformed)g(to)f(assess)i(the)g(program's)d(o)o(v)o(erall)g(c)o(hess)262 +2052 y(rating,)e(st)o(yle,)i(strength)h(and)f(w)o(eakness)h(in)e(the)i(v)n +(arious)e(areas)h(of)g(the)g(game:)312 2170 y(1.)20 b Fl(Bratk)o(o-Kop)q(ec)g +(T)l(ests)p Fp(:)k(These)19 b(test)g(p)q(ositions)e(will)f(b)q(e)i(used)h(to) +e(estimate)g(a)365 2220 y(rating)10 b(and)f(assess)j(b)q(oth)e(the)g +(tactical)g(and)f(p)q(ositional)g(strengths)i(of)e(the)i(program.)312 +2303 y(2.)20 b Fl(Computer)15 b(Opp)q(osition)p Fp(:)h(A)e(matc)o(h)g(will)f +(b)q(e)i(pla)o(y)o(ed)f(b)q(et)o(w)o(een)i(HIAR)o(CS)e(and)365 +2353 y(a)g(rated)h(computer)e(opp)q(onen)o(t)h(to)g(illustrate)g(its)g(pla)o +(ying)e(st)o(yle)i(and)g(estimate)g(its)365 2402 y(rating.)946 +2574 y(141)p eop +%%Page: 142 144 +142 143 bop 312 307 a Fp(3.)20 b Fl(Human)f(Opp)q(osition)o +Fp(:)h(A)d(matc)o(h)e(will)g(b)q(e)i(pla)o(y)o(ed)f(b)q(et)o(w)o(een)i(HIAR)o +(CS)f(and)f(a)365 357 y(rated)h(h)o(uman)d(opp)q(onen)o(t)j(to)f(\014nd)g +(out)g(ho)o(w)f(it)h(cop)q(es)h(with)f(a)g(h)o(uman's)e(st)o(yle)i(of)365 +407 y(pla)o(y)d(and)h(to)g(further)g(estimate)g(its)g(rating.)312 +490 y(4.)20 b Fl(Kno)o(wledge)c(v)o(ersus)g(Searc)o(h)p Fp(:)k(A)15 +b(matc)o(h)g(will)e(b)q(e)j(pla)o(y)o(ed)f(b)q(et)o(w)o(een)i(HIAR)o(CS)365 +540 y(and)c(a)g(v)o(ersion)g(of)f(itself)g(with)h(dramatically)d(reduced)15 +b(leaf)d(no)q(de)h(kno)o(wledge)g(and)365 589 y(no)19 b(searc)o(h)g +(extensions.)33 b(This)18 b('kno)o(wledge-less')g(v)o(ersion)h(of)f(HIAR)o +(CS)g(will)f(b)q(e)365 639 y(allo)o(w)o(ed)h(to)g(searc)o(h)i(3)e(ply)h(deep) +q(er)h(than)f(the)g(more)f(in)o(telligen)o(t)f(v)o(ersion.)33 +b(This)365 689 y(should)18 b(enable)g(me)f(to)h(estimate)g(what)g(the)g(kno)o +(wledge)g(is)g(w)o(orth)g(in)f(terms)h(of)365 739 y(searc)o(h)d(depth.)324 +857 y(All)h(tests)j(are)f(p)q(erformed)f(with)g(HIAR)o(CS)g(5.0)f(running)h +(on)g(a)g(SUN)h(3/80,)f(whic)o(h)262 907 y(pro)o(vides)d(a)f(rate)i(of)e +(appro)o(ximately)e(300)i(to)h(1200)f(\(legal\))g(no)q(des)i(p)q(er)g +(second.)262 1080 y Fr(7.1)69 b(Bratk)n(o-Kop)r(ec)23 b(T)-6 +b(ests)262 1206 y Fp(A)10 b(series)i(of)d(24)h(test)h(p)q(ositions)f(w)o(as)h +(devised)g(b)o(y)f(I.)f(Bratk)o(o)i(and)f(D.)f(Kop)q(ec)j(to)e(in)o(v)o +(estigate)262 1256 y(and)j(assess)j(c)o(hess)f(p)q(erformance)f(under)h(t)o +(w)o(o)e(categories:)324 1374 y Ff(\017)20 b Fp(T)m(actical)13 +b(pla)o(y)324 1458 y Ff(\017)20 b Fp(P)o(ositional)13 b(pla)o(y)262 +1576 y(The)f(p)q(ositional)f(tests)i(concen)o(trate)h(in)e(particular)g(on)f +(lev)o(er)i(mo)o(v)o(es,)e(whic)o(h)h(Bratk)o(o)g(and)262 1626 +y(Kop)q(ec)j(b)q(eliev)o(ed,)e(pla)o(y)g(an)h(imp)q(ortan)o(t)e(role)i(in)f +(a)h(strong)g(pla)o(y)o(ers)g(abilit)o(y)m(.)324 1711 y(This)f(test)h(set)h +(w)o(as)e(c)o(hosen)h(in)f(particular)g(b)q(ecause)i(it)e(has)h(b)q(een)h +(applied)d(to)h(almost)262 1761 y(all)18 b(the)j(strongest)h(c)o(hess)f +(programs)e(in)h(the)h(w)o(orld)e([41)o(],)i(therefore)h(allo)o(wing)17 +b(useful)262 1811 y(comparisons)f(to)h(b)q(e)h(made.)28 b(In)17 +b(the)h(original)e(test,)i(pla)o(y)o(ers)g(w)o(ere)g(ask)o(ed)g(to)f(giv)o(e) +g(the)262 1860 y(b)q(est)g(four)f(mo)o(v)o(es)e(in)i(order)h(of)e(merit)g +(for)h(eac)o(h)h(p)q(osition.)24 b(A)16 b(correct)i(mo)o(v)o(e)c(w)o(as)i +(then)262 1910 y(scored)j(as)f(follo)o(ws:)25 b(1)17 b(p)q(oin)o(t)h(for)g(a) +f(correct)j(1st)e(c)o(hoice,)1226 1894 y Fk(1)p 1226 1901 17 +2 v 1226 1925 a(2)1265 1910 y Fp(p)q(oin)o(t)g(for)f(a)h(correct)i(2nd)262 +1960 y(c)o(hoice,)401 1944 y Fk(1)p 401 1951 V 401 1974 a(3)437 +1960 y Fp(p)q(oin)o(t)13 b(for)h(a)f(correct)j(3rd)e(c)o(hoice)g(and)1065 +1944 y Fk(1)p 1065 1951 V 1065 1974 a(4)1100 1960 y Fp(p)q(oin)o(t)g(for)f(a) +h(correct)h(4th)f(c)o(hoice.)324 2045 y(The)f(problem)f(with)h(computer)f +(test)j(sub)r(jects)f(is)f(that)g(the)h Fh(\013\014)i Fp(algorithm)10 +b(do)q(es)k(not)262 2095 y(pro)o(vide)f(an)f(accurate)j(b)q(est)f(n)f(c)o +(hoices,)h(only)f(the)g(b)q(est)i(mo)o(v)o(e)c(found)i(so)g(far.)18 +b(Therefore,)262 2145 y(Bratk)o(o)g(and)f(Kop)q(ec)i(suggested)h(the)e +(computers)h(c)o(hoice)f(after)g(120,)g(180,)g(30)f(and)h(60)262 +2195 y(seconds)f(should)e(b)q(e)h(used)h(as)e(the)i(1st,)e(2nd,)h(3rd)g(and)f +(4th)g(c)o(hoices)i(resp)q(ectiv)o(ely)m(.)24 b(The)262 2245 +y(computer)16 b(is)h(therefore)h(at)f(a)g(sligh)o(t)f(disadv)n(an)o(tage)g +(as)h(its)g(4)f(c)o(hoices)i(ma)o(y)d(all)g(b)q(e)j(the)262 +2294 y(same.)324 2380 y(The)13 b(actual)f(test)i(p)q(ositions)e(can)h(b)q(e)g +(found)g(in)f(app)q(endix)h(D.)e(The)j(results)f(pro)q(duced)262 +2429 y(b)o(y)g(HIAR)o(CS)h(5.0)f(are)h(sho)o(wn)g(in)f(\014gure)i(7.1.)946 +2574 y(142)p eop +%%Page: 143 145 +143 144 bop 344 596 1268 2 v 343 646 2 50 v 369 631 a Fm(No.)p +496 646 V 88 w(Best)15 b(move)p 733 646 V 88 w(1st)p 911 646 +V 119 w(2nd)p 1089 646 V 117 w(3r)n(d)p 1267 646 V 121 w(4th)p +1445 646 V 85 w(Points)p 1611 646 V 344 648 1268 2 v 343 697 +2 50 v 369 682 a Fp(1\(T\))p 496 697 V 70 w(...)i(Qd1+)p 733 +697 V 86 w(Qd1+)p 911 697 V 195 w(forced)e(mate)p 1445 697 +V 231 w(1)p 1611 697 V 344 699 1268 2 v 343 749 2 50 v 369 +734 a(2\(L\))p 496 749 V 74 w(d5)p 733 749 V 222 w(Re3)p 911 +749 V 108 w(Re3)p 1089 749 V 108 w(Re3)p 1267 749 V 108 w(Re3)p +1445 749 V 126 w(0)p 1611 749 V 344 750 1268 2 v 343 800 2 +50 v 369 785 a(3\(L\))p 496 800 V 74 w(...)i(f5)p 733 800 V +197 w(f5)p 911 800 V 144 w(f5)p 1089 800 V 123 w(Qd8)p 1267 +800 V 102 w(Qd8)p 1445 800 V 123 w(1)p 1611 800 V 344 802 1268 +2 v 343 852 2 50 v 369 837 a(4\(L\))p 496 852 V 74 w(e6)p 733 +852 V 243 w(e6)p 911 852 V 138 w(e6)p 1089 852 V 139 w(e6)p +1267 852 V 139 w(e6)p 1445 852 V 142 w(1)p 1611 852 V 344 853 +1268 2 v 343 903 2 51 v 369 888 a(5\(T\))p 496 903 V 70 w(Nd5)p +733 903 V 195 w(Bf4)p 911 903 V 115 w(Bf4)p 1089 903 V 108 +w(Nd5)p 1267 903 V 103 w(Nd5)p 1445 903 V 1520 872 a Fk(1)p +1520 879 17 2 v 1520 903 a(3)p 1611 903 2 51 v 344 905 1268 +2 v 343 955 2 50 v 369 940 a Fp(6\(L\))p 496 955 V 74 w(g6)p +733 955 V 238 w(g6)p 911 955 V 136 w(g6)p 1089 955 V 137 w(c4)p +1267 955 V 139 w(c4)p 1445 955 V 142 w(1)p 1611 955 V 344 957 +1268 2 v 343 1006 2 50 v 369 991 a(7\(T\))p 496 1006 V 70 w(Nf6)p +733 1006 V 200 w(Bb4)p 911 1006 V 104 w(Bb4)p 1089 1006 V 106 +w(Rg3)p 1267 1006 V 105 w(Rg3)p 1445 1006 V 124 w(0)p 1611 +1006 V 344 1008 1268 2 v 343 1058 2 50 v 369 1043 a(8\(L\))p +496 1058 V 74 w(f5)p 733 1058 V 250 w(f5)p 911 1058 V 144 w(f5)p +1089 1058 V 144 w(f5)p 1267 1058 V 144 w(f5)p 1445 1058 V 144 +w(1)p 1611 1058 V 344 1059 1268 2 v 343 1109 2 50 v 369 1094 +a(9\(L\))p 496 1109 V 74 w(f5)p 733 1109 V 232 w(Re1)p 911 +1109 V 108 w(Re1)p 1089 1109 V 108 w(Re1)p 1267 1109 V 108 +w(Re1)p 1445 1109 V 126 w(0)p 1611 1109 V 344 1111 1268 2 v +343 1161 2 50 v 369 1146 a(10\(T\))p 496 1161 V 49 w(...)g(Ne5)p +733 1161 V 142 w(Qc5)p 911 1161 V 107 w(Qc5)p 1089 1161 V 107 +w(Qc5)p 1267 1161 V 107 w(Qc5)p 1445 1161 V 126 w(0)p 1611 +1161 V 344 1162 1268 2 v 343 1212 2 50 v 369 1197 a(11\(L\))p +496 1212 V 53 w(f4)p 733 1212 V 235 w(Nf5)p 911 1212 V 113 +w(Nf5)p 1089 1212 V 113 w(Nf5)p 1267 1212 V 112 w(Nf5)p 1445 +1212 V 129 w(0)p 1611 1212 V 344 1214 1268 2 v 343 1264 2 50 +v 369 1249 a(12\(T\))p 496 1264 V 49 w(...)g(Bf5)p 733 1264 +V 154 w(Bf5)p 911 1264 V 115 w(Bf5)p 1089 1264 V 114 w(Bf5)p +1267 1264 V 115 w(Bf5)p 1445 1264 V 130 w(1)p 1611 1264 V 344 +1265 1268 2 v 343 1315 2 50 v 369 1300 a(13\(L\))p 496 1315 +V 53 w(b4)p 733 1315 V 222 w(Rc1)p 911 1315 V 108 w(Rc1)p 1089 +1315 V 108 w(Rc1)p 1267 1315 V 108 w(Rc1)p 1445 1315 V 126 +w(0)p 1611 1315 V 344 1317 1268 2 v 343 1367 2 50 v 369 1352 +a(14\(T\))p 496 1367 V 49 w(Qd2)p 733 1367 V 187 w(Qd2)p 911 +1367 V 102 w(Qd2)p 1089 1367 V 102 w(Qd2)p 1267 1367 V 102 +w(Qd2)p 1445 1367 V 123 w(1)p 1611 1367 V 344 1368 1268 2 v +343 1418 2 50 v 369 1403 a(15\(T\))p 496 1418 V 49 w(Qxg7+)p +733 1418 V 109 w(Qxg7+)p 911 1418 V 50 w(Qxg7+)p 1089 1418 +V 50 w(Qxg7+)p 1267 1418 V 50 w(Qxg7+)p 1445 1418 V 97 w(1)p +1611 1418 V 344 1420 1268 2 v 343 1470 2 50 v 369 1455 a(16\(T\))p +496 1470 V 49 w(Ne4)p 733 1470 V 196 w(Ne4)p 911 1470 V 108 +w(Ne4)p 1089 1470 V 108 w(Ne4)p 1267 1470 V 107 w(Ne4)p 1445 +1470 V 127 w(1)p 1611 1470 V 344 1471 1268 2 v 343 1521 2 50 +v 369 1506 a(17\(L\))p 496 1521 V 53 w(...)g(h5)p 733 1521 +V 182 w(h5)p 911 1521 V 134 w(h5)p 1089 1521 V 121 w(Nc5)p +1267 1521 V 121 w(h5)p 1445 1521 V 139 w(1)p 1611 1521 V 344 +1523 1268 2 v 343 1573 2 50 v 369 1558 a(18\(T\))p 496 1573 +V 49 w(...)g(Nb3)p 733 1573 V 156 w(f5)p 911 1573 V 144 w(f5)p +1089 1573 V 144 w(f5)p 1267 1573 V 144 w(f5)p 1445 1573 V 144 +w(0)p 1611 1573 V 344 1574 1268 2 v 343 1624 2 50 v 369 1609 +a(19\(T\))p 496 1624 V 49 w(...)g(Rxe4)p 733 1624 V 110 w(Rxe4)p +911 1624 V 86 w(Rxe4)p 1089 1624 V 112 w(c5)p 1267 1624 V 139 +w(c5)p 1445 1624 V 142 w(1)p 1611 1624 V 344 1626 1268 2 v +343 1676 2 50 v 369 1661 a(20\(L\))p 496 1676 V 53 w(g4)p 733 +1676 V 221 w(Qh5)p 911 1676 V 102 w(Qh5)p 1089 1676 V 102 w(Kb1)p +1267 1676 V 102 w(Kb1)p 1445 1676 V 123 w(0)p 1611 1676 V 344 +1677 1268 2 v 343 1727 2 50 v 369 1712 a(21\(T\))p 496 1727 +V 49 w(Nh6)p 733 1727 V 189 w(Nh6)p 911 1727 V 103 w(Nh6)p +1089 1727 V 102 w(Nh6)p 1267 1727 V 103 w(Nh6)p 1445 1727 V +124 w(1)p 1611 1727 V 344 1729 1268 2 v 343 1778 2 50 v 369 +1764 a(22\(T\))p 496 1778 V 49 w(...)g(Bxe4)p 733 1778 V 121 +w(Rd8)p 911 1778 V 103 w(Rd8)p 1089 1778 V 105 w(Nc5)p 1267 +1778 V 107 w(Nc5)p 1445 1778 V 127 w(0)p 1611 1778 V 344 1780 +1268 2 v 343 1830 2 50 v 369 1815 a(23\(L\))p 496 1830 V 53 +w(...)g(f6)p 733 1830 V 183 w(Bf5)p 911 1830 V 115 w(Bf5)p +1089 1830 V 114 w(Bf5)p 1267 1830 V 115 w(Bf5)p 1445 1830 V +130 w(0)p 1611 1830 V 344 1832 1268 2 v 343 1881 2 50 v 369 +1866 a(24\(L\))p 496 1881 V 53 w(f4)p 733 1881 V 250 w(f4)p +911 1881 V 144 w(f4)p 1089 1881 V 144 w(f4)p 1267 1881 V 144 +w(f4)p 1445 1881 V 144 w(1)p 1611 1881 V 344 1883 1268 2 v +343 1933 2 51 v 369 1918 a Fm(T)m(otal)d(T)m(actic)n(al)g(Sc)n(or)n(e)h +(\(T\))p 1445 1933 V 696 w Fp(7)1531 1902 y Fk(1)p 1531 1909 +17 2 v 1531 1932 a(3)p 1611 1933 2 51 v 344 1935 1268 2 v 343 +1985 2 50 v 369 1970 a Fm(T)m(otal)f(L)n(ever)g(Sc)n(or)n(e)h(\(L\))p +1445 1985 V 757 w Fp(6)p 1611 1985 V 344 1986 1268 2 v 343 +2036 2 51 v 369 2021 a Fm(T)m(otal)f(Sc)n(or)n(e)h(\(S\))p +1445 2036 V 850 w Fp(13)1542 2005 y Fk(1)p 1541 2012 17 2 v +1541 2036 a(3)p 1611 2036 2 51 v 344 2038 1268 2 v 354 2154 +a Fp(Figure)f(7.1:)j(HIAR)o(CS)c(5.0)g(results)i(on)f(the)g(Bratk)o(o-Kop)q +(ec)h(T)m(est)f(P)o(ositions.)946 2574 y(143)p eop +%%Page: 144 146 +144 145 bop 324 307 a Fp(T)m(o)14 b(determine)h(the)h(relativ)o(e)f(bias)g +(of)f(the)i(tested)h(pla)o(y)o(ers,)e(Bratk)o(o)g(and)g(Kop)q(ec)h(de-)262 +361 y(vised)f(the)h(follo)o(wing)c(equation:)21 b(bias)15 b(=)945 +341 y Fk(12)p Fd(\001)p Fk(\()p Fe(T)t Fd(\000)p Fe(L)p Fk(\))p +945 352 142 2 v 1005 376 a Fe(S)1092 361 y Fp(,)g(where)h(T)f(is)h(the)f +(tactical)g(score,)i(L)262 411 y(is)e(the)h(lev)o(er)h(score,)f(and)g(S)g(is) +f(the)i(total)e(score.)24 b(This)16 b(equation)f(will)g(pro)q(duce)i(a)e(p)q +(osi-)262 461 y(tiv)o(e)e(bias)h(v)n(alue)f(for)h(tactically)f(orien)o(ted)h +(results)h(and)f(a)g(negativ)o(e)g(bias)f(v)n(alue)h(for)f(lev)o(er)262 +511 y(orien)o(ted)h(results.)324 596 y(Using)i(the)h(results)g(pro)q(duced)g +(b)o(y)f(HIAR)o(CS,)g(this)g(equation)g(pro)q(duces)i(a)e(v)n(alue)f(of)262 +646 y(+1.2.)h(This)c(indicates)g(that)g(the)g(program)e(has)i(a)g(sligh)o(t)e +(tactical)i(bias.)17 b(Ho)o(w)o(ev)o(er,)12 b(when)262 696 +y(Bratk)o(o)18 b(and)g(Kop)q(ec)h(pro)q(duced)g(a)f(histogram)f(of)g(the)i +(bias)f(v)n(alues)g(pro)q(duced)h(b)o(y)f(the)262 745 y(c)o(hess)c(programs)e +(in)g(their)i(exp)q(erimen)o(t,)e(programs)g(w)o(ere)i(found)f(to)f(ha)o(v)o +(e)h(results)h(in)f(the)262 795 y(+2.4)d(to)i(+8)f(range)570 +780 y Fk(1)589 795 y Fp(.)17 b(The)12 b(most)f(frequen)o(t)h(v)n(alues)f(w)o +(ere)i(found)e(in)g(the)h(+3)g(to)f(+5)h(range.)262 845 y(Therefore,)18 +b(when)f(HIAR)o(CS's)g(bias)g(v)n(alue)f(is)h(compared)f(to)h(these)h +(results,)g(it)f(can)g(b)q(e)262 895 y(seen)e(that)f(HIAR)o(CS)f(has)h(a)g(w) +o(ell)f(balanced)h(tactical)g(and)f(p)q(ositional)g(abilit)o(y)m(.)324 +980 y(It)g(is)g(in)o(teresting)h(to)g(note)f(that)h(of)f(the)g(h)o(umans)g +(tested,)h(b)o(y)f(far)g(the)h(most)e(common)262 1030 y(v)n(alues)18 +b(la)o(y)g(in)h(the)g Ff(\000)p Fp(5)g(to)g(+3)g(range.)33 +b(Th)o(us,)20 b(indicating)e(that)h(most)f(h)o(uman)f(c)o(hess)262 +1080 y(pla)o(y)o(ers)c(ha)o(v)o(e)h(a)g(balanced)g(abilit)o(y)e(with)h(a)h +(sligh)o(t)f(emphasis)g(on)h(p)q(ositional)e(pla)o(y)m(.)324 +1165 y(Bratk)o(o)i(and)f(Kop)q(ec)i(also)e(ga)o(v)o(e)h(a)f(table)h(giving)e +(rating)i(ranges)g(and)g(corresp)q(onding)262 1215 y(mean)f(v)n(alues.)20 +b(The)15 b(v)n(alues)g(for)f(h)o(uman)f(pla)o(y)o(ers)i(in)f(the)h(ranges)h +(2000-2199)c(and)j(2200-)262 1265 y(2399)d(are)j(giv)o(en)e(b)q(elo)o(w:)p +516 1355 923 2 v 515 1405 2 50 v 541 1390 a Fm(R)n(ating)i(r)n(ange)p +797 1405 V 50 w(Me)n(an)h(T)p 990 1405 V 49 w(Me)n(an)g(L)p +1179 1405 V 50 w(12\(T)p Ff(\000)p Fm(L\)/S)p 1438 1405 V 516 +1407 923 2 v 515 1457 2 50 v 541 1442 a Fp(2000-2199)p 797 +1457 V 134 w(6.67)p 990 1457 V 116 w(4.84)p 1179 1457 V 150 +w(1.73)p 1438 1457 V 516 1458 923 2 v 515 1508 2 50 v 541 1493 +a(2200-2399)p 797 1508 V 134 w(7.81)p 990 1508 V 116 w(8.07)p +1179 1508 V 160 w(0.2)p 1438 1508 V 516 1510 923 2 v 324 1620 +a(Comparing)9 b(these)j(results)h(with)d(those)i(of)f(HIAR)o(CS,)f(it)h(can)g +(b)q(e)h(seen)h(that)e(HIAR)o(CS)262 1670 y(has)16 b(a)f(sligh)o(tly)g(b)q +(etter)i(tactical)f(score)h(\(T\))f(and)g(a)g(noticeably)f(b)q(etter)j(lev)o +(er)e(score)h(\(L\))262 1719 y(than)11 b(pla)o(y)o(ers)g(in)f(the)i +(2000-2199)d(rating)h(range.)17 b(P)o(erhaps)c(more)d(surprisingly)m(,)g +(HIAR)o(CS)262 1769 y(displa)o(y)o(ed)g(a)h(b)q(etter)i(balance)e(b)q(et)o(w) +o(een)h(tactical)f(and)g(p)q(ositional)f(abilit)o(y)f(than)i(the)h(mean)262 +1819 y(results)j(in)e(that)h(rating)f(range.)324 1904 y(F)m(or)g(the)h +(higher)g(rating)f(range,)h(HIAR)o(CS)f(has)h(a)f(lo)o(w)o(er)h(score,)g(b)q +(oth)g(tactically)f(and)262 1954 y(p)q(ositionally)m(.)i(It)f(is)g(in)o +(teresting,)g(ho)o(w)o(ev)o(er,)f(that)h(at)g(this)g(higher)g(range)g(the)g +(lev)o(er)g(score)262 2004 y(is)20 b(greater)h(than)g(the)g(corresp)q(onding) +g(tactical)g(score,)h(re-enforcing)f(m)o(y)e(b)q(elief)i(that)262 +2054 y(p)q(ositional)14 b(abilit)o(y)g(pla)o(ys)i(a)g(m)o(uc)o(h)e(greater)j +(role)f(in)g(high)f(lev)o(el)h(c)o(hess)h(than)f(it)g(do)q(es)h(at)262 +2104 y(the)d(lo)o(w)o(er)g(lev)o(els)f(of)h(abilit)o(y)m(.)324 +2189 y(Examining)9 b(the)k(Bratk)o(o-Kop)q(ec)g(graph)f(of)f(rating)h(vs)g +(score)i(and)d(the)i(results)g(ab)q(o)o(v)o(e,)262 2239 y(an)j(estimated)h +(rating)f(can)i(b)q(e)f(assigned)h(to)f(HIAR)o(CS.)f(As)h(the)h(test)g +(sample)e(is)h(small)262 2288 y(\(24)12 b(p)q(ositions\),)h(I)g(will)f(only)h +(sa)o(y)g(HIAR)o(CS's)g(rating)f(is)i(lik)o(ely)e(to)h(lie)f(in)h(the)h +(range)g(2030)p 262 2325 573 2 v 308 2352 a Fj(1)325 2364 y +Fi(ignoring)c(w)o(eak)i(programs)d(whic)o(h)j(had)f(scores)g(so)h(lo)o(w)g +(that)f(con\014dence)e(in)j(a)g(realistic)e(bias)h(v)n(alue)262 +2403 y(is)g(imp)q(ossible)946 2574 y Fp(144)p eop +%%Page: 145 147 +145 146 bop 262 307 a Fp(to)16 b(2170.)25 b(My)16 b(past)h(exp)q(erience)i +(of)d(c)o(hess)i(programs)d(b)q(eing)h(o)o(v)o(er-rated,)i(leads)e(me)g(to) +262 357 y(exp)q(ect)f(that)f(this)g(rating)f(is)h(more)f(lik)o(ely)f(to)i +(lie)f(at)h(the)h(lo)o(w)o(er)e(end)i(of)e(this)h(range.)324 +442 y(A)o(t)e(the)g(recen)o(t)h(\(1989\))e(W)m(orld)g(Computer)g(Chess)i +(Championship)c(all)i(the)h(strongest)262 492 y(programs)18 +b(w)o(ere)i(also)f(tested)j(on)d(these)i(Bratk)o(o-Kop)q(ec)g(test)f(p)q +(ositions)g([41)o(].)35 b(I)19 b(will)262 542 y(examine)c(the)j(reasons)h(wh) +o(y)e(HIAR)o(CS)f(could)i(not)f(solv)o(e)g(some)f(of)h(the)h(test)g(p)q +(ositions)262 592 y(and)h(using)g(the)h(ab)q(o)o(v)o(e)g(pap)q(er,)h(will)d +(compare)h(its)g(successes)k(and)d(failures)f(with)g(the)262 +641 y(results)c(pro)q(duced)g(b)o(y)e(the)i(strongest)g(c)o(hess)g(mac)o +(hines)e(in)h(the)g(w)o(orld.)324 727 y(Lo)q(oking)i(at)h(the)g(actual)g(mo)o +(v)o(es)f(selected)j(in)e(the)g(tests,)i(a)e(n)o(um)o(b)q(er)g(of)f(p)q(oin)o +(ts)h(are)262 777 y(w)o(orth)c(highligh)o(ting.)j(In)d(test)i(1,)e(HIAR)o(CS) +g(found)g(the)h(forced)h(mate)d(in)h(3)h(v)o(ery)g(quic)o(kly)262 +826 y(\(2)j(seconds\).)32 b(In)18 b(test)i(5,)e(the)g(correct)i(mo)o(v)o(e)d +(w)o(as)h(iden)o(ti\014ed)g(quic)o(kly)m(,)f(although)g(the)262 +876 y(program)12 b(w)o(as)h(not)h(fully)e(a)o(w)o(are)h(of)g(all)g(the)h(imp) +q(ortan)o(t)e(v)n(ariations.)k(After)f(1)e(min)o(ute)f(50)262 +926 y(seconds)17 b(its)g(c)o(hoice)g(c)o(hanged)f(to)h(Bf4)f(un)o(til)f(at)h +(the)h(next)g(iteration,)f(it)g(rev)o(erted)j(bac)o(k)262 976 +y(to)c(Nd5)g(once)h(ha)o(ving)e(examined)g(the)i(mo)o(v)o(e)e(to)h(enough)g +(depth)h(to)f(fully)f('understand')262 1026 y(it.)26 b(Ho)o(w)o(ev)o(er,)17 +b(this)g(to)q(ok)g(a)f(total)g(of)h(ab)q(out)f(4)h(min)o(utes)f(and)g(could)h +(therefore)h(not)f(b)q(e)262 1075 y(included)d(as)g(a)f(correct)j(answ)o(er.) +324 1161 y(Of)k(the)i(tests)g(not)f(solv)o(ed,)g(the)h(follo)o(wing)c +(reasons)k(can)f(b)q(e)g(iden)o(ti\014ed.)39 b(T)m(est)21 b(2)262 +1210 y(required)f(the)g(sacri\014ce)g(of)f(a)g(pa)o(wn)g(for)g(p)q(ositional) +f(comp)q(ensation)h(whic)o(h)g(HIAR)o(CS)262 1260 y(could)d(not)g(fully)g +(appreciate.)26 b(Ho)o(w)o(ev)o(er,)18 b(no)e(other)h(program)e(w)o(as)h +(able)h(to)f(solv)o(e)h(this)262 1310 y(problem)12 b(either.)324 +1395 y(In)18 b(test)h(7,)f(HIAR)o(CS)g(w)o(as)g(able)g(to)g(see)h(the)g +(correct)g(tactical)f(mo)o(v)o(e,)f(ho)o(w)o(ev)o(er,)i(it)262 +1445 y(disdained)e(the)g(mo)o(v)o(e)f(in)h(fa)o(v)o(our)f(of)h(the)h(strong)f +(in)o(termediary)f(mo)o(v)o(e)g(Bb4.)28 b(The)18 b(top)262 +1495 y(Mephisto)g(mac)o(hine)f(also)g(refused)i(to)f(pla)o(y)f(Nf6)h(and)f +(instead)i(c)o(hose)g(Qc1.)30 b(I)18 b(cannot)262 1545 y(b)q(eliev)o(e)c +(this)g(w)o(as)f(b)q(ecause)j(it)e(could)f(not)h(see)h(the)g(tactical)e(p)q +(ossibilities.)324 1630 y(In)f(tests)i(9,)e(11)f(and)i(13,)e(HIAR)o(CS)h(pla) +o(y)o(ed)g(strong)h(p)q(ositional)d(mo)o(v)o(es,)h(although)h(not)262 +1680 y(the)f(b)q(est)g(mo)o(v)o(e.)k(This)c(highligh)o(ts)e(one)i(of)e(the)j +(ma)r(jor)c(de\014ciencies)13 b(of)d(the)h(Bratk)o(o-Kop)q(ec)262 +1730 y(tests:)20 b(no)14 b(merit)f(is)h(giv)o(en)g(for)g(c)o(hosen)h(mo)o(v)o +(es)e(whic)o(h,)h(although)g(not)g(correct,)i(are)e(v)o(ery)262 +1779 y(strong)g(alternativ)o(es.)k(After)d(all,)d(p)q(ositional)h(mo)o(v)o +(es)f(are)j(sometimes)d(a)i(matter)f(of)g(st)o(yle)262 1829 +y(and)g('p)q(ersonal')h(preference.)324 1915 y(T)m(ests)h(10)f(and)g(22)g(w)o +(ere)h(just)g(to)q(o)f(deep,)h(tactically)f(sp)q(eaking,)g(for)g(HIAR)o(CS)g +(to)g(see)262 1964 y(in)h(the)h(allotted)e(t)o(w)o(o)h(min)o(utes.)22 +b(T)m(ests)16 b(20)f(and)h(23)f(are)h(v)o(ery)f(di\016cult)g(p)q(ositional)f +(tests)262 2014 y(whic)o(h)f(HIAR)o(CS,)g(lik)o(e)g(almost)f(all)h(other)i +(strong)f(programs)e(w)o(as)i(unable)g(to)g(solv)o(e.)324 2099 +y(I)21 b(w)o(as)f(particularly)g(impressed)h(b)o(y)g(HIAR)o(CS's)f(correct)i +(c)o(hoice)g(in)e(tests)i(3)f(and)262 2149 y(17.)27 b(None)18 +b(of)f(the)h(strongest)g(programs)e(w)o(ere)j(able)e(to)g(solv)o(e)g(test)h +(17,)f(indicating)g(its)262 2199 y(di\016cult)o(y)m(.)i(The)c(sp)q(eed)i(at)e +(whic)o(h)f(HIAR)o(CS)h(iden)o(ti\014ed)g(the)g(correct)i(mo)o(v)o(e)c(...)20 +b(h5)15 b(\(less)262 2249 y(than)e(a)h(min)o(ute\),)e(w)o(as)i(encouraging.) +324 2334 y(HIAR)o(CS)g(did)g(ac)o(hiev)o(e)h(a)f(lev)o(er)h(score)h +Fm(e)n(qual)f Fp(to)f(Deep)i(Though)o(t,)d(1)i(p)q(oin)o(t)f +Fm(ahe)n(ad)h Fp(of)262 2384 y(Hitec)o(h)c(and)h(only)e(1)h(p)q(oin)o(t)g +Fm(less)g Fp(than)h(the)g(highly)e(p)q(ositional)g(Mephisto)h(mac)o(hine)g(!) +17 b(This)262 2434 y(result)d(w)o(as)g(v)o(ery)g(pleasing.)946 +2574 y(145)p eop +%%Page: 146 148 +146 147 bop 262 307 a Fr(7.2)69 b(Computer)22 b(Opp)r(osition)262 +434 y Fp(A)10 b(matc)o(h)f(will)g(b)q(e)i(pla)o(y)o(ed)f(b)q(et)o(w)o(een)i +(HIAR)o(CS)e(5.0)f(and)i(the)g(commercial)c(c)o(hess)12 b(mac)o(hine,)262 +483 y(Mephisto)e(Exclusiv)o(e.)17 b(This)9 b(will)g(allo)o(w)f(a)h(further)i +(rating)e(to)h(b)q(e)g(estimated)g(for)f(HIAR)o(CS)262 533 +y(and)16 b(will)e(pro)o(vide)j(n)o(umerous)e(examples)h(of)f(its)i(actual)f +(pla)o(ying)e(st)o(yle,)j(strengths)h(and)262 583 y(w)o(eaknesses.)324 +668 y(The)i(Mephisto)f(mac)o(hine)f(used)j(w)o(as)e(rated)h(at)f(ELO)h(1733)f +([24)o(].)34 b(This)19 b(mac)o(hine)262 718 y(is)h(sev)o(eral)h(y)o(ears)g +(old)f(and)h(should)f(not)h(b)q(e)g(confused)h(with)e(the)h(latest)g +(commercial)262 768 y(Mephistos)14 b(whic)o(h)g(ha)o(v)o(e)g(signi\014can)o +(tly)e(higher)i(ratings)g(\(ELO)h(2100+\).)324 853 y(I)e(in)o(tend)h(to)f +(pla)o(y)g(a)g(6)g(game)f(matc)o(h)h(b)q(et)o(w)o(een)h(the)h(mac)o(hines)d +(using)h(a)h(time)e(con)o(trol)262 903 y(of)f(60)g(mo)o(v)o(es)f(in)i(30)f +(min)o(utes)f(follo)o(w)o(ed)h(b)o(y)g(20)g(mo)o(v)o(es)g(in)g(ev)o(ery)h +(subsequen)o(t)i(10)d(min)o(utes.)324 988 y(Belo)o(w)k(is)f(an)h(annotated)g +(game)e(from)g(the)j(matc)o(h.)k(It)15 b(is)f(one)h(of)g(the)g(b)q(etter)i +(games)262 1038 y(and)c(illustrates)h(man)o(y)e(attributes)j(of)e(HIAR)o +(CS's)h(pla)o(y)m(.)i(HIAR)o(CS's)e(scores)h(are)g(sho)o(wn)262 +1088 y(p)q(erio)q(dically)d(in)i(brac)o(k)o(ets.)510 1169 y(Game)e(1)510 +1219 y(White)159 b(:)18 b Fl(Mephisto)c(Exclusiv)o(e)510 1269 +y Fp(Blac)o(k)170 b(:)18 b Fl(HIAR)o(CS)e(5.0)510 1319 y Fp(Op)q(ening)118 +b(:)18 b(Kings)c(Gam)o(bit)d(Accepted)781 1418 y(1.)62 b(e4)102 +b(e5)781 1468 y(2.)62 b(f4)107 b(ef)781 1518 y(3.)62 b(Nf3)76 +b(d6)781 1568 y(4.)62 b(Bc4)73 b(Be6)15 b(\(+59\))p 641 1678 +673 5 v 641 2343 5 665 v 646 1761 a Fg(rm0lkans)646 1844 y(opo0Zpop)646 +1927 y(0Z0obZ0Z)646 2010 y(Z0Z0Z0Z0)646 2094 y(0ZBZPo0Z)646 +2177 y(Z0Z0ZNZ0)646 2260 y(POPO0ZPO)646 2343 y(SNAQJ0ZR)p 1310 +2343 V 641 2347 673 5 v 762 2449 a Fp(P)o(osition)e(after)h(4.)k(...)f(Be6) +946 2574 y(146)p eop +%%Page: 147 149 +147 148 bop 262 307 a Fp(HIAR)o(CS)15 b(w)o(as)i(out)f(of)f(its)i(op)q(ening) +f(b)q(o)q(ok)g(after)g(4.)25 b(Bc4.)g(BCO2)17 b(recommends)e(4.)25 +b(...)262 357 y(h6,)16 b(ho)o(w)o(ev)o(er,)i(HIAR)o(CS's)e(c)o(hoice)h(of)f +(4.)26 b(...)g(Be6)17 b(ma)o(y)e(b)q(e)i(b)q(etter.)29 b(Mephisto)17 +b(is)f(also)262 407 y(no)o(w)d(out)h(of)f(its)h(op)q(ening)g(b)q(o)q(ok.)781 +575 y(5.)62 b(Bxe6)51 b(fe)781 625 y(6.)62 b(d4)97 b(Qf6)14 +b(\(+51\))262 743 y(With)d(blac)o(k's)h(pa)o(wn)g(structure)j(in)d(a)g +(heathly)h(state,)g(HIAR)o(CS)f(aims)f(to)h(hang)g(on)g(to)h(its)262 +793 y(adv)n(anced)h(f-pa)o(wn.)k(An)c(alternativ)o(e)g(mo)o(v)o(e)f(w)o(as)h +(6.)k(...)g(g5,)13 b(although)h(this)g(w)o(ould)f(limit)262 +843 y(HIAR)o(CS's)g(castling)g(options.)781 1011 y(7.)62 b(o-o)85 +b(Nc6)781 1061 y(8.)62 b(Nc3)71 b(Nge7)781 1111 y(9.)62 b(Nb5)k(o-o-o)781 +1161 y(10.)41 b(a4)99 b(a6)781 1210 y(11.)41 b(Nc3)71 b(e5!)19 +b(\(+148\))p 641 1337 673 5 v 641 2001 5 665 v 646 1420 a Fg(0Zks0a0s)646 +1503 y(Zpo0m0op)646 1586 y(pZno0l0Z)646 1669 y(Z0Z0o0Z0)646 +1752 y(PZ0OPo0Z)646 1835 y(Z0M0ZNZ0)646 1918 y(0OPZ0ZPO)646 +2001 y(S0AQZRJ0)p 1310 2001 V 641 2005 673 5 v 760 2124 a Fp(P)o(osition)13 +b(after)i(11.)i(...)g(e5!)262 2242 y(The)c(stage)g(is)g(set.)18 +b(With)13 b(the)g(kings)g(castled)g(on)g(opp)q(osite)g(\015anks,)g(blac)o +(k's)f(activit)o(y)g(will)262 2292 y(concen)o(trate)20 b(on)e(the)h(king)f +(side)g(while)g(white)h(will)e(concen)o(trate)j(on)e(the)h(queen)h(side.)262 +2342 y(After)15 b(mo)o(v)o(e)e(9,)h(HIAR)o(CS)g(c)o(hose)h(the)g(plan)f(of)g +(king)g(side)h(attac)o(k)f(with)h(pa)o(wns.)20 b(Ha)o(ving)262 +2392 y(gained)11 b(a)h(temp)q(o)g(b)o(y)g(whites)g(premature)g(Nb5,)g(HIAR)o +(CS)g(sets)i(out)e(to)g(close)h(the)f(cen)o(tre.)262 2442 y(It)f(is)h(imp)q +(ortan)o(t)e(to)h(ha)o(v)o(e)h(a)f(closed)i(cen)o(tral)f(p)q(osition)f +Fm(b)n(efor)n(e)g Fp(starting)g(an)o(y)h(\015ank)f(attac)o(k.)946 +2574 y(147)p eop +%%Page: 148 150 +148 149 bop 781 357 a Fp(12.)41 b(d5)97 b(Nb4)262 460 y(12.)22 +b(...)g(Nb8)16 b(follo)o(w)o(ed)e(b)o(y)h(13.)23 b(...)f(Nd7)15 +b(lo)q(oks)g(a)g(b)q(etter)j(option.)k(Ho)o(w)o(ev)o(er,)16 +b(HIAR)o(CS)262 509 y(considered)e(whites)f(b)q(est)g(plan)f(w)o(as)h(a)f +(queen)i(side)e(pa)o(wn)h(attac)o(k,)f(hence)i(it)e(preferred)j(to)262 +559 y(obstruct)g(this)f(b)o(y)f(pla)o(ying)f(Nb4)i(stopping)g(the)g(early)g +(adv)n(ance)g(of)f(the)i(b)f(pa)o(wn)f(to)h(b4.)781 712 y(13.)41 +b(Bd2)68 b(Qg6?!)18 b(\(+82\))262 814 y(HIAR)o(CS)13 b(w)o(as)h(in)o(tending) +f(to)h(follo)o(w)e(this)i(up)g(with)g(h5,)f(ho)o(w)o(ev)o(er)h(an)g +(immediate)d(g5!)18 b(is)262 864 y(m)o(uc)o(h)12 b(stronger.)781 +1016 y(14.)41 b(Nh4)66 b(Qh6)781 1066 y(15.)41 b(Qg4+)35 b(Kb8)781 +1116 y(16.)41 b(Rac1)50 b(g5)781 1166 y(17.)41 b(Nf3)76 b(Rg8)781 +1216 y(18.)41 b(Nd1)66 b(a5)781 1265 y(19.)41 b(Bxb4)46 b(ab)781 +1315 y(20.)41 b(a5)99 b(Qg6)14 b(\(+179\))p 641 1476 673 5 +v 641 2140 5 665 v 646 1559 a Fg(0j0s0arZ)646 1642 y(Zpo0m0Zp)646 +1725 y(0Z0o0ZqZ)646 1808 y(O0ZPo0o0)646 1891 y(0o0ZPoQZ)646 +1974 y(Z0Z0ZNZ0)646 2057 y(0OPZ0ZPO)646 2140 y(Z0SNZRJ0)p 1310 +2140 V 641 2144 673 5 v 749 2247 a Fp(P)o(osition)f(after)h(20.)k(...)f(Qg6) +262 2350 y(HIAR)o(CS)f(is)i(no)o(w)f(preparing)g(a)g(full)f(scale)i(pa)o(wn)f +(assault)g(on)g(the)h(enem)o(y)f(king.)27 b(The)262 2399 y(precarious)12 +b(p)q(osition)f(of)g(the)h(white)g(queen)h(means)d(blac)o(ks)i(adv)n(ance)g +(is)f(lik)o(ely)g(to)g(pro)q(ceed)262 2449 y(v)o(ery)j(quic)o(kly)m(.)946 +2574 y(148)p eop +%%Page: 149 151 +149 150 bop 781 357 a Fp(21.)41 b(Nd2)262 475 y(Giving)12 b(the)i(white)g +(queen)h(free)g(space)g(for)e(her)i(imp)q(ending)d(retreat.)781 +644 y(21.)41 b(...)105 b(Bg7?!)262 762 y(Unnecessary)m(,)15 +b(an)e(immediate)e(21)j(...)j(h5)c(is)h(v)o(ery)g(strong.)781 +930 y(22.)41 b(c4?)82 b(h5)781 980 y(23.)41 b(Qf3?)55 b(g4)781 +1030 y(24.)41 b(Qe2?!)262 1149 y(White)15 b(seems)g(una)o(w)o(are)h(of)f(the) +h(imp)q(ending)e(danger.)23 b(Blac)o(ks)15 b(adv)n(an)o(tage)g(has)h(quic)o +(kly)262 1198 y(b)q(ecome)d(o)o(v)o(erwhelming.)781 1367 y(24.)41 +b(...)105 b(f3!)18 b(\(+287\))p 641 1493 673 5 v 641 2158 5 +665 v 646 1576 a Fg(0j0s0ZrZ)646 1659 y(Zpo0m0a0)646 1742 y(0Z0o0ZqZ)646 +1825 y(O0ZPo0Zp)646 1908 y(0oPZPZpZ)646 1991 y(Z0Z0ZpZ0)646 +2075 y(0O0MQZPO)646 2158 y(Z0SNZRJ0)p 1310 2158 V 641 2162 +673 5 v 763 2280 a Fp(P)o(osition)13 b(after)h(24.)k(...)f(f3!)262 +2399 y(The)d(f-pa)o(wn)f(is)h(imm)n(une)e(to)h(attac)o(k,)h(if)f(25.)k(gf)d +(gf+)f(wins.)946 2574 y(149)p eop +%%Page: 150 152 +150 151 bop 781 357 a Fp(25.)41 b(Qf2)75 b(Bh6)781 407 y(26.)41 +b(Ne3)71 b(fg)781 457 y(27.)41 b(Kxg2)k(Rdf8)781 506 y(28.)c(Qe2)70 +b(Rf3!)17 b(\(+423\))781 556 y(29.)41 b(Nd1)66 b(Bxd2)781 606 +y(30.)41 b(Qxd2)i(Qxe4)781 656 y(31.)e(Qc2)70 b(Qf4)781 706 +y(32.)41 b(Nf2)76 b(g3)14 b(\(+793\))781 756 y(33.)41 b(Nd3)66 +b(gh+)p 641 878 673 5 v 641 1542 5 665 v 646 961 a Fg(0j0Z0ZrZ)646 +1044 y(Zpo0m0Z0)646 1127 y(0Z0o0Z0Z)646 1210 y(O0ZPo0Zp)646 +1293 y(0oPZ0l0Z)646 1376 y(Z0ZNZrZ0)646 1459 y(0OQZ0ZKo)646 +1542 y(Z0S0ZRZ0)p 1310 1542 V 641 1546 673 5 v 748 1660 a Fp(P)o(osition)13 +b(after)h(33.)j(...)g(gh+)262 1773 y(With)10 b(this)g(mo)o(v)o(e,)g(HIAR)o +(CS)g(announced)h(mate)f(in)g(5)g(mo)o(v)o(es)g(after)h(a)f(2)h(ply)f(searc)o +(h)h(taking)262 1823 y(just)j(1)f(second!)781 1987 y(34.)41 +b(Kh1)65 b(Rxf1+)781 2037 y(35.)41 b(Rxf1)54 b(Qxf1+)781 2086 +y(36.)41 b(Kxh2)i(Qg1+)781 2136 y(37.)e(Kh3)65 b(Qg3+)14 b(mate)899 +2186 y(0)36 b Ff(\000)65 b Fp(1)510 2236 y(Times:)242 b(21:23)45 +b(11:25)324 2350 y(Game)20 b(2)h(w)o(as)g(an)h(in)o(teresting)g(game.)39 +b(HIAR)o(CS)21 b(had)h(some)e(trouble)i(breaking)262 2399 y(through)15 +b(Mephisto's)h(defence.)26 b(HIAR)o(CS)15 b(ac)o(hiev)o(ed)h(success)i(b)o(y) +e('sacri\014cing')f(the)h(ex-)262 2449 y(c)o(hange)c(of)f(ro)q(ok)h(for)f +(knigh)o(t)g(and)h(pa)o(wn)f(on)h(mo)o(v)o(e)e(36.)17 b(Another)c(pa)o(wn)e +(follo)o(w)o(ed)g(shortly)946 2574 y(150)p eop +%%Page: 151 153 +151 152 bop 262 307 a Fp(afterw)o(ards)15 b(and)f(HIAR)o(CS)g(w)o(as)g(left)h +(with)f(2)g(connected)i(passed)g(pa)o(wns)e(on)h(the)g(queen)262 +357 y(side.)324 442 y(The)j(p)q(osition)e(b)q(elo)o(w)h(w)o(as)g(reac)o(hed)i +(after)f(56)e(mo)o(v)o(es)g(of)h(game)f(2.)28 b(HIAR)o(CS)17 +b(no)o(w)262 492 y(pla)o(y)o(ed)d(Qxe6+!)22 b(simplifying)12 +b(in)o(to)i(an)h(ev)o(en)g(more)f(easily)h(w)o(on)g(endgame.)20 +b(HIAR)o(CS's)262 542 y(score)15 b(increased)g(from)d(867)h(to)h(1116)f(p)q +(oin)o(ts)g(after)i(this)f(mo)o(v)o(e.)p 641 635 673 5 v 641 +1300 5 665 v 646 718 a Fg(0Z0Z0Z0Z)646 801 y(Z0Z0Z0op)646 884 +y(0Z0Zrj0Z)646 968 y(O0Z0Z0Z0)646 1051 y(0O0Z0Z0Z)646 1134 +y(Z0Z0O0ZP)646 1217 y(QZ0Z0ZPJ)646 1300 y(Z0Z0Z0Z0)p 1310 1300 +V 641 1304 673 5 v 665 1407 a Fp(P)o(osition)f(after)h(56)f(mo)o(v)o(es)g(of) +g(game)f(2.)324 1510 y(Game)k(3)h(w)o(as)h(a)f(strange)i(game)d(in)h(whic)o +(h)h(b)q(oth)g(programs)e(made)h(tactical)g(blun-)262 1560 +y(ders.)30 b(Ho)o(w)o(ev)o(er,)18 b(HIAR)o(CS)g(consolidated)f(and)h(reco)o +(v)o(ered)h(from)d(its)i(error,)h(where)g(as)262 1610 y(the)14 +b(Mephisto)g(mac)o(hine)f(did)g(not.)324 1695 y(Game)d(4)j(pro)q(duced)g(a)f +(nice)h(solid)f(p)q(erformance)g(from)e(HIAR)o(CS,)i(announcing)g(mate)262 +1745 y(in)h(3)h(after)g(just)g(37)f(mo)o(v)o(es.)324 1830 y(Game)d(5)i +(illustrated)g(reasonably)g(go)q(o)q(d)f(endgame)g(pla)o(y)m(,)g +(particularly)g(the)i(handling)262 1880 y(of)g(the)h(king)f(and)h(pa)o(wn)g +(ending.)324 1965 y(Game)9 b(6)h(pro)o(v)o(ed)g(di\016cult)g(for)g(HIAR)o +(CS.)g(It)g(tried)h(a)f(n)o(um)o(b)q(er)g(of)f('to)q(o)h(clev)o(er')h +(tactical)262 2015 y(mo)o(v)o(es)k(whic)o(h)i(had)g(longer)f(term)h(adv)o +(erse)h(e\013ects.)29 b(The)17 b(blac)o(k)g(pa)o(wn)f(on)h(b2)g(allo)o(w)o +(ed)262 2065 y(blac)o(k)h(to)h(p)q(ose)g(a)g(n)o(um)o(b)q(er)f(of)h +(problems.)32 b(HIAR)o(CS)19 b(managed)e(to)i(see)h(through)f(the)262 +2115 y(complexit)o(y)d(and)i(had)g(prepared)i(a)e(nice)h(tactical)f(w)o(a)o +(y)f(of)h(sa)o(ving)g(its)g(bishop)g(on)g(d7,)262 2165 y(something)c(whic)o +(h)h(caugh)o(t)h(Mephisto)g(b)o(y)f(surprise.)25 b(By)16 b(the)g(endgame)e +(HIAR)o(CS)i(w)o(as)262 2214 y(a)j(pa)o(wn)g(up,)h(ho)o(w)o(ev)o(er,)h(b)q +(ecause)g(of)e(opp)q(osite)h(coloured)g(bishops)f(w)o(as)h(only)f(able)g(to) +262 2264 y(dra)o(w.)i(This)15 b(is)g(an)g(example)e(where)k(sp)q(eci\014c)f +(endgame)e(kno)o(wledge)h(could)g(ha)o(v)o(e)g(made)262 2314 +y(a)e(di\013erence.)324 2399 y(All)h(the)h(game)f(records)i(for)f(this)f +(matc)o(h)g(can)h(b)q(e)h(found)e(in)g(app)q(endix)h(E.)g(The)g(\014nal)262 +2449 y(result)f(table)g(for)f(this)h(matc)o(h)f(can)h(b)q(e)h(seen)g(b)q(elo) +o(w:)946 2574 y(151)p eop +%%Page: 152 154 +152 153 bop 490 267 977 2 v 489 317 2 50 v 514 302 a Fm(Players)p +890 317 V 268 w(1)p 961 317 V 50 w(2)p 1032 317 V 50 w(3)p +1103 317 V 50 w(4)p 1174 317 V 50 w(5)p 1245 317 V 53 w(6)p +1322 317 V 52 w(T)m(otal)p 1465 317 V 490 319 977 2 v 489 369 +2 51 v 514 354 a Fp(HIAR)o(CS)14 b(5.0)p 890 369 V 174 w(1)p +961 369 V 50 w(1)p 1032 369 V 50 w(1)p 1103 369 V 50 w(1)p +1174 369 V 50 w(1)p 1245 369 V 1276 338 a Fk(1)p 1276 345 17 +2 v 1276 368 a(2)p 1322 369 2 51 v 1370 354 a Fp(5)1396 338 +y Fk(1)p 1396 345 17 2 v 1396 368 a(2)p 1465 369 2 51 v 490 +370 977 2 v 489 420 2 51 v 514 406 a Fp(Mephisto)h(Exclusiv)o(e)p +890 420 V 50 w(0)p 961 420 V 50 w(0)p 1032 420 V 50 w(0)p 1103 +420 V 50 w(0)p 1174 420 V 50 w(0)p 1245 420 V 1276 389 a Fk(1)p +1276 396 17 2 v 1276 420 a(2)p 1322 420 2 51 v 1386 389 a(1)p +1386 396 17 2 v 1386 420 a(2)p 1465 420 2 51 v 490 422 977 +2 v 324 521 a Fp(Before)j(I)f(calculate)h(HIAR)o(CS's)f(p)q(erformance)g +(rating,)g(it)g(is)g(imp)q(ortan)o(t)f(to)h(stress)262 571 +y(that)11 b(ratings)g(calculated)g(at)g(one)h(time)e(con)o(trol)h(are)g(not)h +(easily)e(transferred)j(in)o(to)e(ratings)262 621 y(at)17 b(other)i(time)e +(con)o(trols.)31 b(Therefore,)20 b(some)d(risk)h(is)g(asso)q(ciated)h(with)e +(p)q(erforming)g(a)262 671 y(matc)o(h)c(at)i(a)g(faster)g(time)f(con)o(trol)g +(in)h(order)h(to)e(extrap)q(olate)i(a)e(rating)h(for)f(HIAR)o(CS)h(at)262 +720 y(tournamen)o(t)d(times.)324 806 y(HIAR)o(CS)18 b(w)o(on)g(the)h(matc)o +(h)e(b)o(y)i(the)g(score)g(5)1072 789 y Fk(1)p 1072 796 17 +2 v 1072 820 a(2)1112 806 y Fp(-)1149 789 y Fk(1)p 1149 796 +V 1149 820 a(2)1171 806 y Fp(.)32 b(Using)18 b(the)h(win)f(probabilit)o(y)262 +855 y(tables)13 b(suggested)h(b)o(y)e(Arpad)i(Elo)e(and)h(found)f(in)g([32)o +(],)g(an)h(estimated)f(rating)h(di\013erence)262 905 y(b)q(et)o(w)o(een)j +(HIAR)o(CS)e(and)h(Mephisto)g(Exclusiv)o(e)g(can)g(b)q(e)g(lo)q(ok)o(ed)g +(up.)21 b(The)15 b(matc)o(h)e(score)262 955 y(represen)o(ts)f(a)e(win)g +(ratio)g(of)g(92\045.)16 b(This)10 b(con)o(v)o(erts)h(in)o(to)f(a)g(rating)f +(di\013erence)k(of)c(401)h(p)q(oin)o(ts)262 1005 y(b)q(et)o(w)o(een)i(the)h +(pla)o(y)o(ers.)k(Therefore,)c(giv)o(en)e(Mephisto)h(Exclusiv)o(e's)f(rating) +g(of)g(ELO)h(1733,)262 1055 y(HIAR)o(CS's)h(p)q(erformance)h(rating)f(in)h +(the)g(test)h(matc)o(h)e(is)g(ELO)i(2134)e(\(1733+401\).)324 +1140 y(T)m(aking)d(in)o(to)i(accoun)o(t)g(the)h(small)d(sample)h(of)g(the)i +(test)g(matc)o(h)e(and)h(the)h(time)e(con)o(trol)262 1190 y(at)16 +b(whic)o(h)h(it)f(w)o(as)g(conducted,)j(this)d(rating)h(only)e(represen)o(ts) +20 b(a)c(v)o(ery)h(rough)g(estimate.)262 1240 y(Ho)o(w)o(ev)o(er,)e(the)g +(impressiv)o(e)f(score)i(b)o(y)f(whic)o(h)f(HIAR)o(CS)h(w)o(on)f(the)i(matc)o +(h,)d(clearly)i(illus-)262 1289 y(trates)f(its)g(sup)q(eriorit)o(y)h(o)o(v)o +(er)e(the)i(Mephisto)f(mac)o(hine.)262 1460 y Fr(7.3)69 b(Human)23 +b(Opp)r(osition)262 1587 y Fp(T)m(o)9 b(determine)i(ho)o(w)f(HIAR)o(CS)g(p)q +(erforms)g(against)g(h)o(uman)f(opp)q(osition,)g(I)i(pla)o(y)o(ed)f(a)g +(short)262 1636 y(t)o(w)o(o)16 b(game)f(matc)o(h)g(against)h(HIAR)o(CS.)g +(When)h(I)f(last)g(pla)o(y)o(ed)g(activ)o(e)h(c)o(hess)h(\(1981/82\))262 +1686 y(m)o(y)10 b(rating)h(w)o(as)h(1920)f(on)h(the)g(ELO)g(scale.)18 +b(Since)13 b(I)f(ha)o(v)o(e)f(not)h(pla)o(y)o(ed)g(comp)q(etitiv)o(ely)e(for) +262 1736 y(a)15 b(long)f(time,)g(I)h(am)f(lik)o(ely)g(to)h(b)q(e)h(a)f(bit)g +('rust)o(y'.)22 b(Ho)o(w)o(ev)o(er,)16 b(m)o(y)d(in)o(terest)k(in)e(computer) +262 1786 y(c)o(hess)i(has)f(allo)o(w)o(ed)f(me)g(to)g(pla)o(y)g('friendly')g +(games)g(regularly)m(,)g(so)h(I)g(w)o(ould)f(exp)q(ect)i(m)o(y)262 +1836 y(rating)h(to)h(b)q(e)h(in)f(the)h(1900-2000)d(ELO)j(range.)34 +b(The)20 b(particular)f(adv)n(an)o(tage)g(I)g(ha)o(v)o(e)262 +1885 y(against)12 b(computer)h(opp)q(onen)o(ts)h(is)f(a)h(go)q(o)q(d)e +(understanding)i(of)f(their)h(relativ)o(e)f(strengths)262 1935 +y(and)g(w)o(eaknesses.)324 2020 y(The)f(matc)o(h)f(games)h(w)o(ere)h(pla)o(y) +o(ed)e(at)h(a)g(full)f(tournamen)o(t)h(time)f(con)o(trol)h(of)f(40)h(mo)o(v)o +(es)262 2070 y(in)i(2)h(hours,)g(follo)o(w)o(ed)f(b)o(y)h(20)f(mo)o(v)o(es)g +(in)h(eac)o(h)g(subsequen)o(t)i(hour.)22 b(Both)15 b(game)f(records)262 +2120 y(can)g(b)q(e)g(found)g(in)f(app)q(endix)h(E.)g(The)g(\014nal)f(matc)o +(h)g(score)i(can)f(b)q(e)h(seen)g(b)q(elo)o(w:)p 683 2200 589 +2 v 682 2250 2 50 v 708 2235 a Fm(Players)p 986 2250 V 170 +w(1)p 1057 2250 V 50 w(2)p 1128 2250 V 50 w(T)m(otal)p 1271 +2250 V 683 2251 589 2 v 682 2301 2 50 v 708 2286 a Fp(HIAR)o(CS)f(5.0)p +986 2301 V 76 w(1)p 1057 2301 V 50 w(0)p 1128 2301 V 86 w(1)p +1271 2301 V 683 2303 589 2 v 682 2353 2 50 v 708 2338 a(Mark)g(Uniac)o(k)o(e) +p 986 2353 V 50 w(0)p 1057 2353 V 50 w(1)p 1128 2353 V 86 w(1)p +1271 2353 V 683 2354 589 2 v 324 2449 a(The)f(follo)o(wing)d(game)h(is)i(the) +g(\014rst)h(from)d(the)i(matc)o(h.)k(HIAR)o(CS's)12 b(scores)i(are)g(sho)o +(wn)946 2574 y(152)p eop +%%Page: 153 155 +153 154 bop 262 307 a Fp(p)q(erio)q(dically)12 b(in)i(brac)o(k)o(ets.)510 +471 y(Game)e(1)510 521 y(White)159 b(:)18 b Fl(Mark)e(Uniac)o(k)o(e)510 +570 y Fp(Blac)o(k)170 b(:)18 b Fl(HIAR)o(CS)e(5.0)510 620 y +Fp(Op)q(ening)118 b(:)18 b(Queens)e(Gam)o(bit)11 b(Declined)781 +720 y(1.)62 b(d4)97 b(d5)781 770 y(2.)62 b(c4)102 b(e6)781 +819 y(3.)62 b(Nc3)71 b(Nf6)781 869 y(4.)62 b(Bg5)70 b(Be7)781 +919 y(5.)62 b(e3)102 b(o-o)781 969 y(6.)62 b(Nf3)76 b(Nb)q(d7)781 +1019 y(7.)62 b(Bd3)p 641 1141 673 5 v 641 1805 5 665 v 646 +1224 a Fg(rZbl0skZ)646 1307 y(oponapop)646 1390 y(0Z0Zpm0Z)646 +1473 y(Z0ZpZ0A0)646 1556 y(0ZPO0Z0Z)646 1639 y(Z0MBONZ0)646 +1722 y(PO0Z0OPO)646 1805 y(S0ZQJ0ZR)p 1310 1805 V 641 1809 +673 5 v 780 1923 a Fp(P)o(osition)13 b(after)h(7.)k(Bd3.)324 +2037 y(This)d(mo)o(v)o(e)e(to)q(ok)h(HIAR)o(CS)h(out)g(of)f(its)h(op)q(ening) +f(b)q(o)q(ok.)21 b(7.)g(Rc1)14 b(w)o(ould)h(ha)o(v)o(e)f(k)o(ept)262 +2086 y(HIAR)o(CS)f(in)g(b)q(o)q(ok.)781 2250 y(7.)62 b(...)105 +b(dc)15 b(\()p Ff(\000)p Fp(69\))781 2300 y(8.)62 b(Bxc4)51 +b(b6)14 b(\(!\))781 2350 y(9.)62 b(o-o)85 b(Bb7)781 2399 y(10.)41 +b(Rc1)71 b(c5)781 2449 y(11.)41 b(Re1)71 b(Rc8)14 b(\()p Ff(\000)p +Fp(9\))946 2574 y(153)p eop +%%Page: 154 156 +154 155 bop 641 315 673 5 v 641 980 5 665 v 646 399 a Fg(0Zrl0skZ)646 +482 y(obZnapop)646 565 y(0o0Zpm0Z)646 648 y(Z0o0Z0A0)646 731 +y(0ZBO0Z0Z)646 814 y(Z0M0ONZ0)646 897 y(PO0Z0OPO)646 980 y(Z0SQS0J0)p +1310 980 V 641 984 673 5 v 745 1090 a Fp(P)o(osition)13 b(after)h(11.)k(...)f +(Rc8.)262 1197 y(HIAR)o(CS's)e(last)h(5)f(mo)o(v)o(es)g(ha)o(v)o(e)g(b)q(een) +i(excellen)o(t)g(p)q(ositional)d(mo)o(v)o(es.)23 b(I)16 b(w)o(as)g(deligh)o +(ted)262 1246 y(that)h(it)g(decided)i(to)e(\014anc)o(hetto)i(blac)o(k's)e +(normally)d(bad)k(queens)h(bishop)e(on)g(the)i(long)262 1296 +y(diagonal.)c(HIAR)o(CS)d(seems)h(to)f(b)q(e)i(follo)o(wing)9 +b(the)14 b(correct)g(concepts)g(for)e(the)h(blac)o(k)f(side)262 +1346 y(of)h(a)g(queens)j(gam)o(bit.)781 1396 y(12.)41 b(Bd3)68 +b(cd)781 1446 y(13.)41 b(Nxd4)j(Ne5)781 1496 y(14.)d(Bb1)68 +b(Nfg4)781 1545 y(15.)41 b(Bxe7)51 b(Qxe7)781 1595 y(16.)41 +b(h3)97 b(Nf6)14 b(\(+64\))p 641 1674 V 641 2339 5 665 v 646 +1757 a Fg(0ZrZ0skZ)646 1840 y(obZ0lpop)646 1924 y(0o0Zpm0Z)646 +2007 y(Z0Z0m0Z0)646 2090 y(0Z0M0Z0Z)646 2173 y(Z0M0O0ZP)646 +2256 y(PO0Z0OPZ)646 2339 y(ZBSQS0J0)p 1310 2339 V 641 2343 +673 5 v 748 2449 a Fp(P)o(osition)f(after)h(16.)j(...)g(Nf6.)946 +2574 y(154)p eop +%%Page: 155 157 +155 156 bop 262 345 a Fp(HIAR)o(CS)12 b(has)i(ac)o(hiev)o(ed)f(at)g(least)h +(equalit)o(y)e(from)g(the)h(op)q(ening.)18 b(Ho)o(w)o(ev)o(er,)13 +b(I)g(w)o(as)h(more)262 395 y(afraid)g(of)h(16.)22 b(...)g(Qh4!)h(to)16 +b(whic)o(h)f(I)h(w)o(ould)e(ha)o(v)o(e)i(pla)o(y)o(ed)f(17.)22 +b(Qe2;)16 b(not)g(17)f(hg)g(Nxg4)262 445 y(whic)o(h)e(lo)q(oks)h(v)o(ery)g +(promising)e(e.g.)17 b(18.)h(Nf3)13 b(Qxf2+)h(19.)j(Kh1)d(Qg3!)781 +542 y(17.)41 b(Qe2)70 b(Rfd8)781 592 y(18.)41 b(Red1)48 b(Rc5!?)781 +642 y(19.)41 b(e4)102 b(a6)781 692 y(20.)41 b(f4)107 b(Ng6)781 +741 y(21.)41 b(Qf2)75 b(Qc7)781 791 y(22.)41 b(Nde2)48 b(Rc4!)18 +b(\(+48\))p 641 918 673 5 v 641 1582 5 665 v 646 1001 a Fg(0Z0s0ZkZ)646 +1084 y(Zbl0Zpop)646 1167 y(po0ZpmnZ)646 1250 y(Z0Z0Z0Z0)646 +1333 y(0ZrZPO0Z)646 1416 y(Z0M0Z0ZP)646 1499 y(PO0ZNLPZ)646 +1582 y(ZBSRZ0J0)p 1310 1582 V 641 1586 673 5 v 745 1705 a Fp(P)o(osition)13 +b(after)h(22.)k(...)f(Rc4!)324 1823 y(I)e(w)o(an)o(ted)g(to)h(form)d(a)i +(strong)h(pa)o(wn)f(cen)o(ter,)i(ho)o(w)o(ev)o(er,)e(in)g(hindsigh)o(t)g(I)g +(feel)g(I)h(o)o(v)o(er-)262 1873 y(stretc)o(hed)g(m)o(yself.)g(The)e(pa)o +(wns)g(on)g(e4)g(and)g(f4)f(are)h(under)h(extreme)f(pressure.)781 +2050 y(23.)41 b(Rxd8+)12 b(Qxd8)781 2099 y(24.)41 b(Rd1)66 +b(Qc7)781 2149 y(25.)41 b(Rd4?)946 2574 y(155)p eop +%%Page: 156 158 +156 157 bop 641 315 673 5 v 641 980 5 665 v 646 399 a Fg(0Z0Z0ZkZ)646 +482 y(Zbl0Zpop)646 565 y(po0ZpmnZ)646 648 y(Z0Z0Z0Z0)646 731 +y(0ZrSPO0Z)646 814 y(Z0M0Z0ZP)646 897 y(PO0ZNLPZ)646 980 y(ZBZ0Z0J0)p +1310 980 V 641 984 673 5 v 765 1163 a Fp(P)o(osition)13 b(after)h(25.)k(Rd4?) +324 1257 y(I)c(though)o(t)h(Rd4)f(w)o(ould)g(reliev)o(e)h(the)g(pressure)i +(on)d(the)i(white)e(cen)o(ter)j(pa)o(wns.)j(After)262 1307 +y(25.)k(...)g(Rxd4)15 b(26.)24 b(Qxd4,)17 b(I)f(though)o(t)g(m)o(y)e(f-pa)o +(wn)h(w)o(as)h(secure)j(b)q(ecause)e(of)f(the)h(mate)262 1357 +y(threat)g(on)g(d8,)g(e.g.)26 b(26.)g(...)g(Nxf4)16 b(27.)27 +b(Nxf4)16 b(Qxf4??)26 b(28.)g(Qd8+)18 b(Ne8)f(29.)26 b(Qxe8+)262 +1407 y(mate.)16 b(Ho)o(w)o(ev)o(er,)e(I)g(missed)f(27.)18 b(...)f(e5)d(whic)o +(h)g(wins)f(the)i(pa)o(wn.)781 1491 y(25.)41 b(...)105 b(Rxd4)781 +1541 y(26.)41 b(Qxd4)i(Nxf4!)781 1591 y(27.)e(Nxf4)54 b(e5)781 +1641 y(28.)41 b(Qd2)65 b(ef)781 1691 y(29.)41 b(a3)99 b(Kf8)14 +b(\(+133\))p 641 1781 V 641 2445 5 665 v 646 1864 a Fg(0Z0Z0j0Z)646 +1947 y(Zbl0Zpop)646 2030 y(po0Z0m0Z)646 2113 y(Z0Z0Z0Z0)646 +2196 y(0Z0ZPo0Z)646 2279 y(O0M0Z0ZP)646 2362 y(0O0L0ZPZ)646 +2445 y(ZBZ0Z0J0)p 1310 2445 V 641 2449 673 5 v 946 2574 a Fp(156)p +eop +%%Page: 157 159 +157 158 bop 747 307 a Fp(P)o(osition)13 b(after)h(29.)k(...)f(Kf8.)324 +422 y(HIAR)o(CS)10 b(is)h(preparing)g(to)f(bring)h(its)g(king)f(in)o(to)g +(pla)o(y)m(.)15 b(I)c(pla)o(y)o(ed)f(29.)17 b(a3)10 b(to)h(allo)o(w)e(Ba2)262 +472 y(at)15 b(an)g(opp)q(ortune)h(momen)o(t.)j(In)d(fact,)f(I)g(w)o(as)g +(hoping)g(to)g(pla)o(y)f(Nd5;)i(sw)o(ap)f(o\013)g(knigh)o(ts)262 +522 y(and)g(obtain)g(a)g(supp)q(orted)i(passed)f(d)g(pa)o(wn.)23 +b(Ho)o(w)o(ev)o(er,)16 b(I)f(missed)g(31.)22 b(Qc5+)17 b(and)e(the)262 +572 y(mate)d(threat)j(on)f(g2)f(sa)o(ving)g(blac)o(ks)h(b)g(and)f(f)h(pa)o +(wns.)k(After)c(whic)o(h)g(the)h(game)d(is)i(lost.)781 736 +y(30.)41 b(Nd5?)46 b(Nxd5)781 786 y(31.)41 b(ed)100 b(Qc5+)781 +836 y(32.)41 b(Kh2?)k(Qxd5)14 b(\(+201\))781 886 y(33.)41 b(Qxd5)i(Bxd5)14 +b(\(+248\))262 1001 y(Blac)o(ks)g(h-pa)o(wn)g(is)g(safe)g(as)h(Bxh7)f(is)g +(met)f(b)o(y)h(g6!)19 b(The)14 b(mo)o(v)o(e)f(33.)18 b(Qxd5)d(w)o(as)f(bad,)f +(but)262 1050 y(I)f(did)g(not)h(feel)g(lik)o(e)f(a)g(long)g(hard)h(queen)g +(and)g(bishop)f(ending)h(whic)o(h)g(w)o(as)f(lost)h(an)o(yw)o(a)o(y)m(.)781 +1144 y(34.)41 b(Bd3)68 b(b5)781 1194 y(35.)41 b(Kg1)67 b(h5)781 +1244 y(36.)41 b(Be2)73 b(g6)781 1294 y(37.)41 b(a4)99 b(ba)781 +1343 y(38.)41 b(Bxa6)48 b(Bc6)781 1393 y(39.)41 b(Kf2)75 b(Ke7)781 +1443 y(40.)41 b(Be2)73 b(Kf6)781 1493 y(41.)41 b(Bc4)73 b(h4)781 +1543 y(42.)41 b(Be2)73 b(Ke5)15 b(\(+292\))p 641 1666 673 5 +v 641 2330 5 665 v 646 1749 a Fg(0Z0Z0Z0Z)646 1832 y(Z0Z0ZpZ0)646 +1915 y(0ZbZ0ZpZ)646 1998 y(Z0Z0j0Z0)646 2081 y(pZ0Z0o0o)646 +2164 y(Z0Z0Z0ZP)646 2247 y(0O0ZBJPZ)646 2330 y(Z0Z0Z0Z0)p 1310 +2330 V 641 2334 673 5 v 744 2449 a Fp(P)o(osition)e(after)h(42.)k(...)f(Ke5.) +946 2574 y(157)p eop +%%Page: 158 160 +158 159 bop 324 307 a Fp(I)14 b(cannot)h(defend)h(the)f(b-pa)o(wn,)f(g-pa)o +(wn)g(and)h(hold)f(bac)o(k)h(the)g(ev)o(en)o(tual)g(f5,)f(g5)g(and)262 +357 y(g4,)19 b(therefore,)i(I)e(decided)i(to)d(simplify)f(and)i(attempt)f(to) +h(pic)o(k)g(o\013)g(blac)o(ks)g(king)f(side)262 407 y(pa)o(wns)c(while)g +(HIAR)o(CS)g(attempts)g(to)g(promote)f(its)i(a-pa)o(wn.)k(Ho)o(w)o(ev)o(er,) +14 b(HIAR)o(CS)g(did)262 457 y(not)f(allo)o(w)g(me)f(an)i(inkling)e(of)i +(coun)o(ter)g(pla)o(y)m(.)781 625 y(43.)41 b(Bf3)78 b(Bxf3)14 +b(\(+315\))781 675 y(44.)41 b(Kxf3)53 b(Kf5)781 725 y(45.)41 +b(Kf2)75 b(Ke4)781 774 y(46.)41 b(Ke2)70 b(f5)14 b(\(+401\))781 +824 y(47.)41 b(Kf2)75 b(Kd3)14 b(\(+670\))781 874 y(48.)41 +b(Kf3)75 b(g5)14 b(\(+973\))876 924 y(resigns)899 974 y(0)47 +b Ff(\000)42 b Fp(1)510 1023 y(Times:)242 b(1:46:33)12 b(1:59:47)262 +1142 y(HIAR)o(CS)19 b(pla)o(y)o(ed)f(this)i(game)e(v)o(ery)h(solidly)m(,)g +(punishing)g(m)o(y)e(mistak)o(es)i(e\016cien)o(tly)m(.)34 b(I)262 +1192 y(think)14 b(it)h(w)o(ould)f(b)q(e)i(hard)f(to)g(tell)g(whether)h(a)f +(computer)g(of)f(h)o(uman)f(w)o(as)i(blac)o(k)g(in)g(this)262 +1241 y(game.)324 1327 y(In)h(game)f(2,)h(I)g(w)o(as)g(also)g(under)h(some)e +(pressure,)k(ho)o(w)o(ev)o(er,)e(I)f(slo)o(wly)f(mano)q(euvred)262 +1377 y(m)o(y)e(2)h(knigh)o(ts)g(in)o(to)g(activ)o(e)h(p)q(ositions)g(on)f +(the)i(queen)f(side.)21 b(I)15 b(w)o(as)g(then)g(able)g(to)f(break)262 +1426 y(the)i(p)q(osition)g(op)q(en)h(to)f(m)o(y)f(adv)n(an)o(tage.)24 +b(I)17 b(ev)o(en)o(tually)f(reac)o(hed)h(the)g(ending,)g(a)f(queen)262 +1476 y(for)g(ro)q(ok)g(and)g(bishop)g(up.)26 b(I)17 b(pla)o(y)o(ed)f(w)o(ell) +f(and)i(w)o(as)f(able)g(to)g(simplify)e(in)o(to)i(an)g(easily)262 +1526 y(w)o(on)d(king)g(and)h(pa)o(wn)f(ending.)324 1611 y(Although)k(HIAR)o +(CS)g(c)o(hose)h(a)f(king)g(side)h(attac)o(k)f(plan)g(during)g(this)h(game,)e +(it)h(did)262 1661 y(not)h(execute)j(it)d(e\016cien)o(tly)m(.)32 +b(By)19 b(the)h(time)d(HIAR)o(CS)h(had)h(ac)o(hiev)o(ed)g(an)g(op)q(en)g +(h-\014le)262 1711 y(for)e(its)h(ro)q(oks,)h(m)o(y)d(o)o(wn)i(plan)f(w)o(as)h +(already)f(w)o(ell)h(dev)o(elop)q(ed.)31 b(This)17 b(illustrates)i(that)262 +1761 y(the)i(planning)e(mec)o(hanism)f(used)k(in)e(HIAR)o(CS)g(still)g +(requires)h(a)g(lot)f(of)g(tuning)g(and)262 1810 y(enhancemen)o(t.)324 +1896 y(I)e(will)e(not)i(use)h(this)f(matc)o(h)f(to)h(calculate)g(a)g(c)o +(hess)i(rating)d(as)h(the)h(sample)e(is)h(to)q(o)262 1946 y(small.)24 +b(Ho)o(w)o(ev)o(er,)17 b(it)g(w)o(as)f(clear)h(from)e(pla)o(ying)h(HIAR)o +(CS,)g(that)g(it)h(has)g(a)f(distinctiv)o(e,)262 1995 y(uncomputer)9 +b(lik)o(e,)h(pla)o(ying)e(st)o(yle)i(and)g(w)o(ould)f(mak)o(e)f(a)i(w)o(orth) +o(y)g(opp)q(onen)o(t)g(for)g(an)o(y)f(pla)o(y)o(er)262 2045 +y(rated)14 b(at)g(around)g(2000)e(ELO.)262 2218 y Fr(7.4)69 +b(Kno)n(wledge)22 b(v)n(ersus)h(Searc)n(h)262 2344 y Fp(HIAR)o(CS)15 +b(5.0)g(con)o(tains)i(a)e(signi\014can)o(t)h(amoun)o(t)e(of)i(c)o(hess)i(kno) +o(wledge)d(compared)h(with)262 2394 y(the)c(t)o(ypical)e(Shannon)h(t)o(yp)q +(e)h(A)g(program.)j(Muc)o(h)d(of)f(the)h(c)o(hess)h(kno)o(wledge)e(is)g +(applied)g(at)262 2444 y(the)g(horizon)f(no)q(des)h(of)f(the)h(main)d(searc)o +(h.)18 b(Although)10 b(this)g(approac)o(h)h(allo)o(ws)e(application)946 +2574 y(158)p eop +%%Page: 159 161 +159 160 bop 262 307 a Fp(of)16 b(up)h(to)g(date)g(p)q(ositional)f(kno)o +(wledge,)h(it)f(is)h(quite)g(time)f(consuming,)f(and)i(therefore)262 +357 y(results)e(in)e(sligh)o(tly)f(shallo)o(w)o(er)i(searc)o(hes)i(b)q(eing)d +(p)q(erformed.)324 442 y(It)j(w)o(ould)g(therefore)i(b)q(e)f(in)o(teresting)g +(to)f(classify)g(what)h(the)g(kno)o(wledge)f(is)h('w)o(orth')262 +492 y(in)f(terms)g(of)g(searc)o(h)h(depth.)27 b(This)17 b('w)o(orth')e(could) +h(then)i(b)q(e)f(compared)f(to)g(its)h(cost)g(to)262 542 y(determine)c +(whether)j(the)e(kno)o(wledge)g(is)f(cost)i(e\013ectiv)o(e.)324 +627 y(I)g(ha)o(v)o(e)g(compared)g(kno)o(wledge)g(and)h(searc)o(h)g(b)o(y)g(p) +q(erforming)e(a)h(4)g(game)f(matc)o(h)g(b)q(e-)262 677 y(t)o(w)o(een)j(HIAR)o +(CS)g(5.0)f(and)g(a)h(v)o(ersion)g(of)f(itself)h(con)o(taining)f(only)g +(piece)i(square)f(tables)262 727 y(for)11 b(its)h(horizon)g(no)q(de)h(ev)n +(aluations)e(and)h(no)g(searc)o(h)h(extension)g(heuristics.)18 +b(This)12 b(sp)q(ecial)262 777 y(v)o(ersion)i(of)f(HIAR)o(CS)g(will)g(b)q(e)h +(referred)i(to)e(as)g Fm(NOKNO)o(W)p Fp(.)324 862 y(In)h(the)h(matc)o(h,)e +(NOKNO)o(W)i(w)o(as)f(allo)o(w)o(ed)f(to)h(p)q(erform)f(a)h(full)f(width)h(6) +g(ply)f(searc)o(h)262 912 y(and)f(HIAR)o(CS)h(5.0)f(w)o(as)h(restricted)i(to) +d(a)h(\014xed)g(depth)h(3)f(ply)f(searc)o(h.)19 b(NOKNO)o(W)c(to)q(ok)262 +961 y(b)q(et)o(w)o(een)20 b(30)f(seconds)i(and)e(20)g(min)o(utes)f(o)o(v)o +(er)i(eac)o(h)g(mo)o(v)o(e,)e(whereas)j(HIAR)o(CS)e(to)q(ok)262 +1011 y(around)e(1)g(to)g(10)f(seconds)j(p)q(er)f(mo)o(v)o(e.)27 +b(Thinking)16 b(on)h(opp)q(onen)o(ts)h(time)e(w)o(as)h(disabled)262 +1061 y(during)12 b(the)i(matc)o(h.)i(In)d(the)g(\014rst)h(t)o(w)o(o)e(games)g +(b)q(oth)h(program)e(w)o(ere)j(allo)o(w)o(ed)e(to)g(consult)262 +1111 y(their)k(op)q(ening)f(b)q(o)q(ok;)i(in)e(last)h(t)o(w)o(o)f(games,)g +(NOKNO)o(W)h(w)o(as)g(not)g(allo)o(w)o(ed)f(to)g(consult)262 +1161 y(its)e(op)q(ening)g(b)q(o)q(ok.)18 b(All)12 b(game)g(records)j(for)e +(this)g(matc)o(h)f(can)i(b)q(e)g(found)f(in)g(app)q(endix)g(E.)262 +1210 y(The)h(\014nal)f(matc)o(h)g(score)i(can)f(b)q(e)h(seen)g(b)q(elo)o(w:)p +565 1286 826 2 v 564 1336 2 50 v 590 1321 a Fm(Players)p 957 +1336 V 261 w(1)p 1033 1336 V 53 w(2)p 1104 1336 V 50 w(3)p +1175 1336 V 50 w(4)p 1246 1336 V 50 w(T)m(otal)p 1389 1336 +V 565 1338 826 2 v 564 1388 2 51 v 590 1373 a Fp(HIAR)o(CS)e(5.0,)g(3)g(ply)p +957 1388 V 988 1357 a Fk(1)p 988 1364 17 2 v 988 1387 a(2)p +1033 1388 2 51 v 1059 1373 a Fp(0)p 1104 1388 V 50 w(0)p 1175 +1388 V 50 w(1)p 1246 1388 V 73 w(1)1321 1357 y Fk(1)p 1321 +1364 17 2 v 1321 1387 a(2)p 1389 1388 2 51 v 565 1389 826 2 +v 564 1439 2 51 v 590 1425 a Fp(NOKNO)o(W,)h(6)f(ply)p 957 +1439 V 988 1408 a Fk(1)p 988 1415 17 2 v 988 1439 a(2)p 1033 +1439 2 51 v 1059 1425 a Fp(1)p 1104 1439 V 50 w(1)p 1175 1439 +V 50 w(0)p 1246 1439 V 73 w(2)1321 1408 y Fk(1)p 1321 1415 +17 2 v 1321 1439 a(2)p 1389 1439 2 51 v 565 1441 826 2 v 324 +1544 a Fp(When)20 b(considering)h(these)g(results,)i(a)c(n)o(um)o(b)q(er)h +(of)g(factors)g(m)o(ust)f(b)q(e)i(tak)o(en)f(in)o(to)262 1594 +y(accoun)o(t:)324 1707 y Ff(\017)g Fp(NOKNO)o(W)d(is)e(not)h(a)f(tuned)h +(brute)h(force)f(searc)o(her,)i(hence)f(its)e(sp)q(eed)j(could)d(b)q(e)365 +1757 y(signi\014can)o(tly)e(impro)o(v)o(ed.)324 1837 y Ff(\017)20 +b Fp(NOKNO)o(W)13 b(did)g(mak)o(e)e(use)i(of)f(HIAR)o(CS's)g(extensiv)o(e)i +(mo)o(v)o(e)d(ordering)h(algorithm)365 1887 y(and)j(incremen)o(tal)e(ev)n +(aluation)g(table.)20 b(This,)13 b(to)i(some)e(exten)o(t,)i(comp)q(ensated)g +(for)365 1937 y(its)f(lac)o(k)g(of)f(tuning.)324 2017 y Ff(\017)20 +b Fp(HIAR)o(CS)f(w)o(as)g(unable)g(to)f(use)i(its)f(sup)q(erior)h(time)d(con) +o(trol)i(algorithm)d(for)j(the)365 2067 y(matc)o(h)c(since)i(it)f(w)o(as)g +(limited)e(to)i(a)g(\014xed)g(depth)h(searc)o(h.)26 b(Hence,)18 +b(HIAR)o(CS)e(5.0)365 2116 y(w)o(as)g(unable)f(to)h(exp)q(end)g(extra)g(time) +e(and)i(depth)g(searc)o(hing)g(mo)o(v)o(es)e(it)h(felt)h(w)o(ere)365 +2166 y(critical.)262 2279 y(The)10 b(matc)o(h)f(score)j(seems)f(to)f +(indicate)g(that)h(HIAR)o(CS's)e(p)q(ositional)g(and)i(tactical)f(kno)o(wl-) +262 2329 y(edge)h(is)g(almost)e(w)o(orth)j(3)e(extra)i(plies)f(of)f(searc)o +(h.)19 b(Eac)o(h)11 b(additional)e(ply)i(w)o(ould)f(normally)262 +2379 y(require)k(a)g(6)f(fold)g(increase)i(in)f(time)840 2364 +y Fk(2)857 2379 y Fp(,)g(therefore,)h(this)e(result)i(is)f(v)o(ery)g +(signi\014can)o(t.)p 262 2411 573 2 v 308 2437 a Fj(2)325 2449 +y Fi(o)q(dd)d(ply's)f(usually)g(require)g(more)g(searc)o(h)g(e\013ort)g(than) +g(ev)o(en)h(ply's)946 2574 y Fp(159)p eop +%%Page: 160 162 +160 161 bop 324 307 a Fp(The)15 b(c)o(hess)i(kno)o(wledge)e(con)o(tained)h +(in)e(HIAR)o(CS)h(5.0)g(seems)g(to)g(cost)h(around)f(a)g(2-3)262 +357 y(fold)10 b(increase)j(in)e(time.)16 b(This)11 b(additional)f(time)g(w)o +(ould)h(not)g(b)q(e)h(enough)g(for)f(ev)o(en)h(1)f(extra)262 +407 y(ply)16 b(of)g(full)g(width)h(searc)o(h.)29 b(Therefore,)18 +b(HIAR)o(CS's)f(kno)o(wledge)g(app)q(ears)h(to)f(b)q(e)g(v)o(ery)262 +457 y(cost)d(e\013ectiv)o(e)h(when)g(compared)e(with)h(simply)d(in)o(v)o +(esting)j(more)f(searc)o(h)i(e\013ort.)262 628 y Fr(7.5)69 +b(In)n(ternal)23 b(Statistics)262 755 y Fp(V)m(arious)12 b(statistics)i(ab)q +(out)e(ho)o(w)h(the)h(program)d(sp)q(ends)j(its)f(time)f(ha)o(v)o(e)h(b)q +(een)h(calculated.)324 840 y(HIAR)o(CS)h(5.0)f(searc)o(hes)j(b)q(et)o(w)o +(een)f(300)f(and)g(1200)f(no)q(des)i(p)q(er)g(second.)23 b(The)16 +b(higher)262 890 y(sp)q(eeds)j(are)f(ac)o(hiev)o(ed)f(in)g(the)h(endgame.)28 +b(Unlik)o(e)17 b(most)f(other)i(programs,)f(only)g(legal)262 +940 y(no)q(des)d(are)h(coun)o(ted)f(in)g(this)g(no)q(de)g(coun)o(t.)324 +1025 y(When)19 b(pla)o(ying)e(at)h(tournamen)o(t)g(rates,)i(HIAR)o(CS)f(t)o +(ypically)e(searc)o(hes)j(to)f(5)f(or)h(6)262 1075 y(plies)12 +b(in)h(the)g(op)q(ening,)g(5)f(plies)h(in)g(the)g(middle)e(game)h(and)g(an)o +(ything)g(b)q(et)o(w)o(een)j(6)d(and)h(13)262 1125 y(plies)g(in)h(the)g +(endgame.)p 641 1218 673 5 v 641 1882 5 665 v 646 1301 a Fg(rZbl0skZ)646 +1384 y(opopZpop)646 1467 y(0ZnZ0m0Z)646 1550 y(Z0a0o0Z0)646 +1633 y(0ZBZPZ0Z)646 1716 y(Z0M0ZNZ0)646 1799 y(POPO0OPO)646 +1882 y(S0AQZRJ0)p 1310 1882 V 641 1886 673 5 v 673 2001 a Fp(ABF)h +(calculation:)i(White)c(to)h(mo)o(v)o(e.)324 2115 y(The)h(Av)o(erage)h(Branc) +o(hing)f(F)m(actor)f Fl(\(ABF\))h Fp(is)f(an)h(extremely)g(imp)q(ortan)o(t)e +(measure)262 2165 y(as)c(it)h(de\014nes)h(ho)o(w)e(e\016cien)o(t)h(the)h +(tree)g(searc)o(h)g(is)e(and)h(hence)h(what)f(depths)g(are)h(ac)o(hiev)n +(able.)262 2214 y(It)17 b(can)g(b)q(e)h(estimated)f(b)o(y)g(coun)o(ting)g +(the)h(total)f(no)q(des,)h Fm(tn)p Fp(,)g(explored)g(in)f(a)g(full)f(width) +262 2264 y(searc)o(h)f(at)e(depths)i Ff(\024)p Fm(n)p Fp(,)f(and)g(using)g +(ABF)g(=)g Fh(tn)1030 2249 y Fk(1)p Fe(=n)1086 2264 y Fp(.)324 +2350 y(In)d(the)g(test)h(p)q(osition)e(ab)q(o)o(v)o(e,)h(HIAR)o(CS)f(5.0)g +(explored)h(168992)e(no)q(des)j(within)e(a)h(6)f(ply)262 2399 +y(full)g(width)h(searc)o(h.)18 b(This)12 b(equates)g(to)g(an)f(ABF)h(of)f +(7.43.)16 b(F)m(or)11 b(a)h(selectiv)o(e)g(searc)o(h)h(to)e(visit)262 +2449 y(few)o(er)f(no)q(des,)i(it)e(w)o(ould)f(ha)o(v)o(e)i(to)f(expand)g +(less)h(than)g(7.43)e(no)q(des)i(from)e(eac)o(h)i(p)q(osition.)16 +b(Of)946 2574 y(160)p eop +%%Page: 161 163 +161 162 bop 262 307 a Fp(course,)12 b(suc)o(h)f(a)f(selectiv)o(e)i(searc)o(h) +g(could)e(still)g(miss)g(man)o(y)e(critical)j(v)n(ariations)e(within)h(the) +262 357 y(6)k(plies;)i(a)f(problem)f(HIAR)o(CS's)g(full)g(width)h(searc)o(h)i +(cannot)e(su\013er)i(from.)j(This)15 b(is)g(the)262 407 y(ma)r(jor)e(adv)n +(an)o(tage)g(of)h(a)h(bac)o(kw)o(ard)f(pruning)h(algorithm)d(suc)o(h)j(as)g +Fh(\013\014)i Fp(when)e(compared)262 457 y(with)e(forw)o(ard)h(pruning.)324 +542 y(This)20 b(ABF)g(includes)h(the)f(totals)g(for)g(eac)o(h)g(iteration.)36 +b(The)20 b(ABF)h(for)f(the)g(\014nal)262 592 y(iteration,)c(whic)o(h)h +Fm(only)g Fp(explored)g(125102)f(no)q(des,)h(is)g(7.07.)26 +b(The)17 b(minim)o(al)c Fh(\013\014)19 b Fp(searc)o(h)262 641 +y(tree)14 b(for)e(the)i(p)q(osition)e(w)o(ould)g(b)q(e)i(of)e(the)i(order)f +(2)7 b Ff(\001)g Fp(38)1123 626 y Fk(6)p Fe(=)p Fk(2)1182 641 +y Ff(\000)h Fp(1)j(=)h(109743.)k(The)e(fact)f(that)262 691 +y(HIAR)o(CS's)f(\014nal)h(iteration)g(searc)o(h)i(w)o(as)e(within)f(14\045)h +(of)g(this)g(minim)o(al)d(tree)k(illustrates)262 741 y(the)h(e\013ectiv)o +(eness)j(of)c(using)h(the)h(com)o(bination)d(of)h(iterativ)o(e)h(deep)q +(ening,)h(searc)o(h)g(tables)262 791 y(and)d(in)o(terior)h(no)q(de)g(mo)o(v)o +(e)e(ordering.)324 876 y(Occasionally)m(,)e(searc)o(hes)j(ha)o(v)o(e)e(b)q +(een)i(found)e(to)g(explore)h(as)f(few)g(or)h(few)o(er)g(no)q(des)g(than)262 +926 y(the)i(minim)o(al)d Fh(\013\014)16 b Fp(tree)f(w)o(ould)e(suggest.)19 +b(This)14 b(is)g(ac)o(hiev)o(ed)g(b)q(ecause)i(the)f(transp)q(osition)262 +976 y(table)k(allo)o(ws)e(n)o(umerous,)j(sometimes)d(large,)j(subtrees)h(to)e +(b)q(e)g(pruned)h(whic)o(h)f(w)o(ould)262 1026 y(otherwise)14 +b(require)h(searc)o(hing.)324 1111 y(It)f(has)h(also)f(b)q(een)i(found)e +(that)g(it)g(is)h(not)f(uncommon)e(for)i(HIAR)o(CS)g(5.0)g(to)g(explore)262 +1161 y(v)n(ariations)h(to)h(a)g(depth)h(of)f(15)g(to)g(20)g(ply)m(.)25 +b(V)m(ery)17 b(o)q(ccasionally)m(,)e(the)i(searc)o(h)g(ma)o(y)e(ev)o(en)262 +1210 y(reac)o(h)h(the)f(maxim)o(um)c(depth)16 b(of)e(32)h(ply)m(.)21 +b(These)c(extremely)e(deep)h(searc)o(hes)h(are)f(infre-)262 +1260 y(quen)o(t)g(and)g(therefore)i(do)e(not)g(usually)f(cause)i(a)f(large)g +(searc)o(h)h('explosion'.)24 b(Ho)o(w)o(ev)o(er,)262 1310 y(they)19 +b(o)q(ccasionally)e(allo)o(w)g(HIAR)o(CS)h(to)h(disco)o(v)o(er)g(deep)g(com)o +(binations)e(whic)o(h)h(w)o(ould)262 1360 y(otherwise)c(b)q(e)h(imp)q +(ossible)d(with)i(a)f(more)g(depth)i(restricted)h(searc)o(h.)324 +1445 y(Belo)o(w)e(is)f(giv)o(en)h(a)f(breakdo)o(wn)h(of)g(ho)o(w)f(HIAR)o(CS) +h(sp)q(ends)h(its)f(time:)p 556 1528 843 2 v 555 1578 2 50 +v 581 1563 a Fm(A)n(ctivity)p 1076 1578 V 380 w(\045)g(of)h(total)g(time)p +1398 1578 V 556 1579 843 2 v 555 1629 2 50 v 581 1614 a Fp(P)o(ositional)d +(Analysis)p 1076 1629 V 250 w(44.4)g(\045)p 1398 1629 V 556 +1631 843 2 v 555 1680 2 50 v 581 1666 a(Making/Unmaking)e(Mo)o(v)o(es)p +1076 1680 V 126 w(19.4)i(\045)p 1398 1680 V 556 1682 843 2 +v 555 1732 2 50 v 581 1717 a(Up)q(dating)i(A)o(ttac)o(k)g(T)m(ables)p +1076 1732 V 158 w(14.9)e(\045)p 1398 1732 V 556 1734 843 2 +v 555 1783 2 50 v 581 1768 a(Mo)o(v)o(e)i(Generation)p 1076 +1783 V 294 w(9.3)f(\045)p 1398 1783 V 556 1785 843 2 v 555 +1835 2 50 v 581 1820 a(T)m(ree)i(Searc)o(h)f(Con)o(trol)p 1076 +1835 V 242 w(6.5)f(\045)p 1398 1835 V 556 1837 843 2 v 555 +1886 2 50 v 581 1871 a(Ev)o(erything)h(else)p 1076 1886 V 328 +w(5.5)f(\045)p 1398 1886 V 556 1888 843 2 v 262 1990 a(As)k(can)g(b)q(e)h +(seen)g(from)e(these)i(\014gures,)g(HIAR)o(CS)f(sp)q(ends)i(an)d +(extraordinary)h(amoun)o(t)262 2039 y(of)c(time)g(ev)n(aluating)g(p)q +(ositions.)20 b(Compared)13 b(to)h(more)g(con)o(v)o(en)o(tional)f(programs,)g +(whic)o(h)262 2089 y(sp)q(end)h(most)e(of)g(their)i(time)d(generating)j(and)e +(searc)o(hing)i(mo)o(v)o(es,)d(the)j(di\013erence)h(in)e(pro-)262 +2139 y(gram)f(philosoph)o(y)h(is)g(ob)o(vious.)946 2574 y(161)p +eop +%%Page: 162 164 +162 163 bop 262 307 a Fr(7.6)69 b(Summary)23 b(of)g(P)n(erformance)262 +434 y Fp(HIAR)o(CS)17 b(5.0)f(p)q(erforms)h(at)g(or)h(near)g(the)g(exp)q(ert) +h(lev)o(el)e(of)g(2000)f(ELO.)h(It)h(displa)o(ys)f(a)262 483 +y(go)q(o)q(d)10 b(balance)h(b)q(et)o(w)o(een)h(p)q(ositional)e(and)g +(tactical)h(pla)o(y)f(whic)o(h)h(mak)o(es)e(it)i(an)g(in)o(teresting,)262 +533 y(more)f(h)o(uman)h(lik)o(e,)g(opp)q(onen)o(t.)17 b(Ho)o(w)o(ev)o(er,)12 +b(HIAR)o(CS)g(5.0)f(has)h(a)f(n)o(um)o(b)q(er)g(of)h(w)o(eaknesses)262 +583 y(b)q(oth)i(p)q(ositionally)e(and)i(tactically)m(.)j(Some)c(of)g(these)j +(w)o(eaknesses)g(can)e(b)q(e)h(corrected)h(b)o(y)262 633 y(extensiv)o(e)c +(tuning)e(of)h(the)g(ev)n(aluation)f(function)h(and)f(searc)o(h)j +(extensions,)f(others)g(require)262 683 y(complex)g(higher)i(lev)o(el)g(kno)o +(wledge)f(to)h(b)q(e)g(included)h(in)e(the)h(program.)324 768 +y(HIAR)o(CS)h(pla)o(ys)g(a)g(comp)q(eten)o(t)h(tactical)f(game)g(and)g +(excels)i(in)e(iden)o(tifying)f(critical)262 818 y(v)n(ariations)e(in)o(v)o +(olving)f(c)o(hec)o(ks)j(and)g(captures.)19 b(This)13 b(is)g(not)h +(surprising)f(considering)h(the)262 867 y(t)o(yp)q(e)g(of)f(searc)o(h)i +(extensions)g(included.)324 953 y(Unlik)o(e)10 b(most)g(other)h(c)o(hess)i +(programs,)d(HIAR)o(CS's)g(impro)o(v)o(emen)o(t)e(as)j(time)f(increases)262 +1003 y(is)j(more)g(pronounced)h(than)g(w)o(ould)e(normally)f(b)q(e)j(exp)q +(ected.)20 b(I)14 b(b)q(eliev)o(e)g(this)f(is)h(b)q(ecause)262 +1052 y(its)f(searc)o(h)i(extensions)g(ha)o(v)o(e)e(more)g(scop)q(e)i(to)f +(expand)g(lines)f(and)h(its)f(p)q(ositional)g(kno)o(wl-)262 +1102 y(edge)e(has)g(more)g(e\013ect)h(as)f(the)h(searc)o(h)g(depth)g +(increases.)19 b(F)m(or)10 b(example,)g(a)h(1)g(ply)f(increase)262 +1152 y(in)g(full)g(width)h(depth)h(ma)o(y)d(allo)o(w)h(HIAR)o(CS)h(to)g +(extend)h(a)f(critical)g(v)n(ariation)e(2)i(or)g(3)g(plies.)324 +1237 y(The)i(use)g(of)f(general)h(plans)f(to)h(guide)f(the)i(searc)o(h)f(b)o +(y)g(increasing)f(the)i(desirabilit)o(y)d(of)262 1287 y(certain)j(asp)q(ects) +h(of)d(a)h(p)q(osition)g(has)h(on)f(the)h(whole)f(impro)o(v)o(ed)f(p)q +(erformance)h(and)g(giv)o(en)262 1337 y(some)i(direction)i(to)f(the)i(pla)o +(y)m(.)24 b(Ho)o(w)o(ev)o(er,)17 b(there)h(is)f(m)o(uc)o(h)e(ro)q(om)g(for)h +(impro)o(v)o(emen)o(t)e(in)262 1387 y(this)f(area.)324 1472 +y(I)i(ha)o(v)o(e)g(found)h(that)f(the)h(time)e(con)o(trol)h(algorithm)e(has)j +(pla)o(y)o(ed)f(an)g(imp)q(ortan)o(t)f(role)262 1522 y(in)f(helping)h(HIAR)o +(CS)g(iden)o(tify)f(di\016cult)g(mo)o(v)o(es)g(and)h(allo)o(w)o(ed)f(extra)i +(time)e(to)h(b)q(e)h(sp)q(en)o(t)262 1572 y(where)20 b(it)e(is)h(most)f +(needed.)35 b(On)20 b(sev)o(eral)f(o)q(ccasions)h(this)f(has)g(allo)o(w)o(ed) +f(HIAR)o(CS)h(to)262 1621 y(impro)o(v)o(e)12 b(its)h(mo)o(v)o(e)g(selection.) +324 1707 y(The)f(com)o(bination)c(of)j(the)h(transp)q(osition)f(table)g(and)g +(searc)o(h)i(extensions)f(has)f(caused)262 1756 y(serious)h(problems.)k +(Occasionally)m(,)11 b(the)h(transp)q(osition)f(table)h(causes)h(early)e +(termination)262 1806 y(of)g(in)o(teresting)i(v)n(ariations.)j(The)d(reason)g +(for)f(this)g(lies)h(in)e(the)i(fact)g(that)f(at)g(eac)o(h)h(lev)o(el)f(in) +262 1856 y(the)i(tree,)g(eac)o(h)h(no)q(de)f(has)g(no)f(w)o(a)o(y)g(of)g(kno) +o(wing)g(whether)i(v)n(ariations)d(will)h(b)q(e)h(extended)262 +1906 y(at)i(no)q(des)h(in)f(their)g(subtree.)27 b(Hence,)18 +b(when)f(the)g(transp)q(osition)f(table)h(is)f(prob)q(ed,)h(the)262 +1956 y(required)j(searc)o(h)g(depth)h(ma)o(y)c(b)q(e)j(incorrect)h(b)q +(ecause)g(it)e(do)q(es)h(not)g(tak)o(e)f(accoun)o(t)h(of)262 +2005 y(p)q(ossible)15 b(extensions)h(n)f(ply)f(do)o(wn)h(the)h(subtree.)23 +b(Therefore,)16 b(the)g(transp)q(osition)f(table)262 2055 y(ma)o(y)f(retriev) +o(e)j(an)f(en)o(try)h(whic)o(h)f(satis\014es)h(the)g(depth)g(requiremen)o(t)f +(at)g(this)h(no)q(de,)f(but)262 2105 y(w)o(ould)10 b(not)h(satisfy)g(the)h +('true')f(depth)h(requiremen)o(t)f(if)g(searc)o(h)h(extensions)g(w)o(ere)g +(to)g(o)q(ccur)262 2155 y(in)h(the)h(subtree.)324 2240 y(In)d(tactical)h(p)q +(ositions,)f(this)h(often)f(causes)i(HIAR)o(CS)f(to)f(require)i(1)e(or)h(2)f +(more)f(searc)o(h)262 2290 y(iterations)20 b(than)h(w)o(ould)e(normally)f(b)q +(e)k(exp)q(ected.)40 b(This)20 b(is)h(most)e(noticeable)i(when)262 +2340 y(HIAR)o(CS's)13 b(searc)o(h)i(fails)e(high,)g(indicating)g(it)h(has)g +(found)f(a)h(clearly)g(b)q(etter)h(mo)o(v)o(e,)d(only)262 2390 +y(for)h(the)i(re-searc)o(h)g(to)f(terminate)f(early)h(b)q(ecause)h(of)f(a)f +(premature)h(en)o(try)h(matc)o(h.)946 2574 y(162)p eop +%%Page: 163 165 +163 164 bop 324 307 a Fp(The)14 b(solution)f(to)h(this)g(problem)f(lies)h(in) +f(dramatically)e(expanding)j(eac)o(h)g(transp)q(osi-)262 357 +y(tion)f(table)g(en)o(try)h(to)g(store)h(information)10 b(ab)q(out)k +(extensions)h(in)e(the)h(subtree)i(b)q(elo)o(w)d(the)262 407 +y(no)q(de)d(resp)q(onsible)i(for)e(storing)g(the)h(en)o(try)m(.)17 +b(On)10 b(retriev)n(al,)h(this)f(information)d(can)k(then)g(b)q(e)262 +457 y(used)j(to)g(determine)f(more)g(accurately)h(whether)h(an)e(en)o(try)i +(should)e(cause)i(termination.)324 542 y(The)d(cost)g(e\013ectiv)o(eness)i +(of)d(eac)o(h)h(ev)n(aluation)e(de\014nition)i(is)f(y)o(et)h(to)f(b)q(e)h +(determined.)18 b(I)262 592 y(susp)q(ect,)13 b(most)c(criteria)i(will)f(need) +i(mo)q(di\014cation)c(of)i(some)g(sort,)i(while)e(others)i(ma)o(y)d(ev)o(en) +262 641 y(b)q(e)16 b(unrequired.)25 b(Certainly)15 b(new)i(criteria)f(are)g +(required)h(for)e(signi\014can)o(t)h(p)q(erformance)262 691 +y(impro)o(v)o(em)o(en)o(t.)946 2574 y(163)p eop +%%Page: 164 166 +164 165 bop 262 654 a Fn(Chapter)34 b(8)262 897 y Fo(Conclusion)262 +1148 y Fp(This)19 b(c)o(hapter)i(concludes)f(the)h(rep)q(ort)f(b)o(y)g +(reviewing)f(what)h(has)g(b)q(een)g(in)o(v)o(estigated,)262 +1198 y(discussing)14 b(the)h(ma)r(jor)d(ac)o(hiev)o(emen)o(ts)i(and)f +(exploring)h(the)g(future)h(implications)c(of)i(m)o(y)262 1248 +y(\014ndings.)36 b(Before)21 b(I)f(review)g(the)h(pro)r(ject)g(and)f(examine) +f(its)h(ac)o(hiev)o(emen)o(ts,)h(let)f(me)262 1298 y(re-iterate)15 +b(the)f(pro)r(ject)h(aims:)312 1374 y(1.)20 b(Ov)o(erview)15 +b(the)f(tec)o(hniques)h(used)g(in)f(curren)o(t)h(c)o(hess)g(programs.)312 +1454 y(2.)20 b(Dev)o(elop)13 b(an)g(ev)n(aluation)f(function)h(whic)o(h)g +(exhibits)g(the)h(p)q(ositional)e(abilit)o(y)f(of)i(an)365 +1504 y(exp)q(ert)j(lev)o(el)d(c)o(hess)j(pla)o(y)o(er)d(\(2000)g(ELO\).)312 +1584 y(3.)20 b(Explore)14 b(fresh)h(w)o(a)o(ys)f(of)f(impro)o(ving)e(the)j +(tactical)g(abilit)o(y)e(of)h(a)h(c)o(hess)h(program.)312 1664 +y(4.)20 b(Implemen)o(t)12 b(the)i(\014ndings)g(in)g(a)f(c)o(hess)j(program)c +(\(HIAR)o(CS)h(5.0\).)312 1744 y(5.)20 b(Apply)15 b(the)h(Bratk)o(o-Kop)q(ec) +g(exp)q(erimen)o(t)f(to)g(test)h(the)g(relativ)o(e)f(tactical)g(and)g(p)q(o-) +365 1794 y(sitional)e(abilit)o(y)f(of)h(the)i(program.)312 +1874 y(6.)20 b(Ev)n(aluate)14 b(the)g(program)e(against)i(b)q(oth)g(h)o(uman) +e(and)i(computer)f(opp)q(osition.)262 2010 y Fr(8.1)69 b(Review)262 +2100 y Fp(Before)14 b(the)g(pro)r(ject)h(b)q(egan,)f(the)g(aims)e(of)h(the)h +(pro)r(ject)h(w)o(ere)g(set)f(out)g(and)f(an)h(o)o(v)o(erview)262 +2150 y(of)d(the)i(required)g(tasks)f(necessary)j(to)d(meet)f(the)i(o)o(v)o +(erall)e(aims)f(w)o(as)i(devised.)19 b(An)12 b(o)o(v)o(erall)262 +2200 y(time)18 b(scale)i(plan)f(w)o(as)g(pro)q(duced)i(whic)o(h)e(set)i(time) +d(scales)i(for)f(eac)o(h)i(ma)r(jor)c(activit)o(y)m(.)262 2250 +y(Regularly)m(,)12 b(during)i(the)h(pro)r(ject,)h(progress)f(w)o(as)g +(measured)f(and)g(review)o(ed)i(against)e(set)262 2300 y(ob)r(jectiv)o(es)h +(and)g(time)f(scales.)23 b(This)15 b(allo)o(w)o(ed)e(me)h(to)h(iden)o(tify)g +(and)f(set)i(sub-goals,)f(and)262 2350 y(k)o(ept)g(me)f(a)o(w)o(are)h(of)g +(the)g(implications)e(an)o(y)h(problems)h(w)o(ould)f(ha)o(v)o(e)h(on)g(the)g +(rest)i(of)d(m)o(y)262 2399 y(pro)r(ject.)38 b(This)21 b(in)f(turn)g(enabled) +h(me)f(to)g(rep)q(ort)h(progress)h(at)e(m)o(y)f(regular)i(pro)r(ject)262 +2449 y(meetings)13 b(and)g(allo)o(w)o(ed)g(the)i(pro)r(ject)f(to)g(dev)o +(elop)g(smo)q(othly)m(.)946 2574 y(164)p eop +%%Page: 165 167 +165 166 bop 324 307 a Fp(In)13 b(c)o(hapters)h(1)f(and)g(2)f(I)h(in)o(tro)q +(duced)h(the)g(sub)r(ject)g(of)f(computer)f(c)o(hess.)19 b(This)13 +b(ga)o(v)o(e)g(a)262 357 y(go)q(o)q(d)g(foundation)g(for)g(the)i(more)e +(complex)f(issues)j(explored)g(in)e(future)h(c)o(hapters.)324 +442 y(Chapter)j(3)g(explored)g(v)n(arious)f(tec)o(hniques)i(in)e(detail.)27 +b(I)16 b(in)o(tro)q(duced)i(the)f Fh(\013\014)i Fp(tree)262 +492 y(pruning)d(algorithm)e(and)i(a)h(n)o(um)o(b)q(er)f(of)g(its)g(ma)r(jor)f +(deriv)n(ativ)o(es.)26 b(V)m(arious)16 b(tec)o(hniques)262 +542 y(w)o(ere)i(discussed)g(for)f(impro)o(ving)d(tree)19 b(searc)o(h)f +(e\016ciency)m(,)g(e.g.)27 b(mo)o(v)o(e)15 b(ordering,)j(itera-)262 +592 y(tiv)o(e)c(deep)q(ening)j(etc.)22 b(Tw)o(o)15 b(forw)o(ard)g(pruning)g +(tec)o(hniques)h(w)o(ere)g(also)f(examined.)20 b(The)262 641 +y(sub)r(ject)13 b(of)e(p)q(ositional)g(ev)n(aluation)f(w)o(as)i(explored)g +(and)g(v)n(arious)f(metho)q(ds)h(of)f(ev)n(aluation)262 691 +y(w)o(ere)j(examined)f(including)g(piece)i(square)f(tables,)g(static)g(ev)n +(aluation)f(and)h(incremen)o(tal)262 741 y(ev)n(aluation.)h(The)e(imp)q +(ortance)d(of)i(planning)e(and)i(the)g(game)e(phase)j(w)o(as)e(also)g +(discussed.)262 791 y(The)18 b(sub)r(ject)i(of)e(learning)f(in)h(c)o(hess)i +(w)o(as)e(in)o(v)o(estigated)g(and)h(some)e(conclusions)i(w)o(ere)262 +841 y(dra)o(wn.)e(The)e(neglected)g(area)f(of)f(time)g(con)o(trol)h(w)o(as)f +(also)h(explored.)324 926 y(In)f(c)o(hapter)i(4,)d(man)o(y)g(asp)q(ects)j(of) +e(m)o(y)f(in)o(v)o(estigation)g(w)o(ere)i(put)g(to)f(use)h(in)f(designing)262 +976 y(an)i(ev)n(aluation)e(function.)22 b(I)15 b(drew)h(extensiv)o(ely)g +(from)e(m)o(y)f(o)o(wn)i(exp)q(erience)j(of)c(pla)o(ying)262 +1026 y(c)o(hess)h(to)f(capture)h(some)f(of)f(the)i(heuristics)g(I)f(felt)g(w) +o(ere)h(imp)q(ortan)o(t)d(in)i(mo)o(v)o(e)e(selection.)262 +1075 y(This)19 b(w)o(as)g(v)o(ery)h(di\016cult)e(b)q(ecause)j(m)o(uc)o(h)d +(of)h(a)g(c)o(hess)i(pla)o(y)o(er's)e(abilit)o(y)e(seems)j(to)f(b)q(e)262 +1125 y(sub)q(conscious.)g(The)13 b(writings)f(of)h(man)o(y)e(great)i(pla)o(y) +o(ers)g(and)g(in)f(particular,)g(Aron)i(Nim-)262 1175 y(zo)o(witsc)o(h,)g +(help)q(ed)h(enormously)e(at)h(this)h(di\016cult)e(stage.)20 +b(I)14 b(also)g(felt)g(it)g(w)o(as)g(imp)q(ortan)o(t)262 1225 +y(to)f(dev)o(elop)h(a)g(set)h(of)e(pseudo)h(co)q(de)h(functions)f(for)g(use)g +(in)g(de\014ning)g(the)g(ev)n(aluation)f(cri-)262 1275 y(teria.)23 +b(These)17 b(functions)f(w)o(ere)g(broad)g(enough)g(to)f(allo)o(w)f(me)h(to)g +(express)j(a)d(signi\014can)o(t)262 1324 y(amoun)o(t)d(of)h(c)o(hess)i(kno)o +(wledge,)e(while)h(b)q(eing)g(precise)h(enough)f(to)g(b)q(e)g(implemen)o +(ted.)324 1410 y(In)g(c)o(hapter)g(5,)g(I)f(attempted)h(to)g(de\014ne)g(a)g +(metho)q(d)f(of)g(tree)i(searc)o(hing)g(whic)o(h)e(w)o(ould)262 +1460 y(enable)g(most)g(searc)o(h)h(e\013ort)h(to)e(b)q(e)h(exp)q(ended)i(in)d +(pursuit)h(of)f(go)q(o)q(d)g(or)h(in)o(teresting)g(v)n(ari-)262 +1509 y(ations.)k(My)d(hop)q(e)g(w)o(as)f(to)g(sim)o(ulate)f(the)h(greatly)h +(v)n(ariable)e(depth)i(of)f(a)g(strong)g(h)o(uman)262 1559 +y(pla)o(y)o(er's)e(searc)o(h)j(tree,)f(while)f(comp)q(ensating)f(for)h(w)o +(eak)g(selectivit)o(y)h(b)o(y)f(the)g(exploration)262 1609 +y(of)c(man)o(y)g(more)g(v)n(ariations.)15 b(The)c(searc)o(h)h(extensions)f +(pro)q(duced,)h(concen)o(trate)g(on)e(forced)262 1659 y(or)15 +b(highly)g(tactical)g(elemen)o(ts)g(of)h(pla)o(y)e(whic)o(h)i(ha)o(v)o(e)f +(some)g(lik)o(eliho)q(o)q(d)f(of)h(a\013ecting)h(the)262 1709 +y(searc)o(h)d(result.)18 b(Suc)o(h)13 b(extra)g(searc)o(h)h(in)o(telligence)e +(w)o(as)g(required)i(to)e(comp)q(ensate)h(for)f(the)262 1758 +y(inevitably)e(shallo)o(w)o(er)i(searc)o(hes)i(resulting)e(from)f(more)g +(time)f(b)q(eing)i(sp)q(en)o(t)i(applying)c(m)o(y)262 1808 +y(ev)n(aluation)i(function.)324 1893 y(Chapter)j(6)g(explains)f(some)g(of)g +(the)h(implemen)o(tation)c(issues)16 b(whic)o(h)f(arose.)21 +b(In)15 b(par-)262 1943 y(ticular)g(it)h(describ)q(es)i(the)e(imp)q(ortan)o +(t)f(data)g(structures)k(and)c(algorithms)f(necessary)k(in)262 +1993 y(the)d(program.)21 b(The)16 b(imp)q(ortance)f(of)f(program)g +(e\016ciency)i(w)o(as)f(also)g(made)f(clear.)23 b(The)262 2043 +y(results)13 b(of)f(an)g(extensiv)o(e)i(analysis)e(of)f(time)h(allo)q(cation) +f(and)h(con)o(trol)g(are)h(also)f(explained)262 2093 y(in)h(this)h(c)o +(hapter.)324 2178 y(Chapter)19 b(7)g(describ)q(es)i(ho)o(w)e(the)g(p)q +(erformance)g(of)g(HIAR)o(CS)f(5.0)g(w)o(as)h(measured.)262 +2228 y(Both)14 b(tactical)g(and)h(p)q(ositional)e(abilit)o(y)f(w)o(as)j(quan) +o(ti\014ed)f(and)g(an)g(estimate)g(of)g(its)g(c)o(hess)262 +2278 y(rating)f(w)o(as)h(made)e(after)i(the)h(application)d(of)i(man)o(y)e +(tests.)946 2574 y(165)p eop +%%Page: 166 168 +166 167 bop 262 307 a Fr(8.2)69 b(Ac)n(hiev)n(emen)n(ts)262 +434 y Fp(Ha)o(ving)14 b(in)o(v)o(estigated)i(b)q(oth)f(tactical)h(and)f(p)q +(ositional)f(ev)n(aluation;)h(together)i(with)e(the)262 483 +y(dev)o(elopmen)o(t)e(and)h(implemen)o(tatio)o(n)e(of)h(ideas)i(in)f(a)f +(program,)g(it)h(is)g(time)f(to)h(re\015ect)i(on)262 533 y(what)d(has)h(b)q +(een)h(ac)o(hiev)o(ed.)324 618 y(The)i(ideas)g(in)o(v)o(estigated)f(ha)o(v)o +(e)g(b)q(een)i(implemen)o(ted)c(successfully)k(in)e(a)h(c)o(hess)h(pro-)262 +668 y(gram)12 b(called)h(HIAR)o(CS)h(5.0.)324 753 y(It)f(has)h(b)q(een)g +(clearly)f(sho)o(wn)h(that)f(tree)i(searc)o(hing)e(signi\014can)o(tly)g +(impro)o(v)o(es)f(the)h(tac-)262 803 y(tical)d(abilit)o(y)f(of)h(a)h +(program.)k(F)m(or)c(example,)f(a)g(2)h(ply)f(searc)o(h)i(with)f(rudimen)o +(tary)e(capture)262 853 y(searc)o(h)14 b(is)f(able)g(to)f('see')i(tactical)f +(concepts,)h(suc)o(h)g(as)f(a)g(knigh)o(t)f(fork,)h(whic)o(h)g(w)o(ould)f +(oth-)262 903 y(erwise)17 b(go)f(unseen)i(b)o(y)f(a)f(mere)h(1)f(ply)g(searc) +o(h.)28 b(There)18 b(app)q(ears)f(no)f(viable)g(substitute)262 +953 y(for)c(tree)i(searc)o(hing)f(of)f(some)g(kind.)17 b(Static)c(tactical)g +(ev)n(aluation)e(can)i(b)q(e)g(useful)g(in)f(some)262 1003 +y(p)q(ositions,)h(but)h(cannot)g(b)q(e)g(though)o(t)g(of)f(as)h(a)g(searc)o +(h)h(replacemen)o(t.)324 1088 y(More)d(surprisingly)m(,)e(tree)j(searc)o +(hing)f(w)o(as)f(seen)i(to)e(signi\014can)o(tly)f(impro)o(v)o(e)g(p)q +(ositional)262 1138 y(abilit)o(y)m(.)15 b(This)c(w)o(as)h(clearly)f +(illustrated)g(when)i(I)e(dev)o(elop)q(ed)h(an)g(almost)d('kno)o(wledge)i +(less')262 1187 y(v)o(ersion)20 b(of)f(HIAR)o(CS,)h(whic)o(h)g(con)o(tained)g +(only)f(Pc/Sq)i(tables.)37 b(When)20 b(this)g(sp)q(ecial)262 +1237 y(v)o(ersion)c(w)o(as)f(searc)o(hing)i(6)f(plies)f(in)h(the)g(matc)o(h)f +(against)g(HIAR)o(CS)h(5.0,)f(its)h(p)q(ositional)262 1287 +y(pla)o(y)h(w)o(as)h(found)g(to)g(b)q(e)g(of)g(a)g(higher)g(calibre)g(than)g +(could)g(b)q(e)h(exp)q(ected)h(considering)262 1337 y(its)f(rudimen)o(tary)f +(c)o(hess)j(kno)o(wledge.)33 b(The)20 b(searc)o(h)g(w)o(as)f(actually)g +(bridging)f(some)g(of)262 1387 y(the)c(program's)d(kno)o(wledge)i +(de\014ciency)i(gap)e(b)o(y)g(allo)o(wing)f(higher)h(lev)o(el)g(concepts,)i +(suc)o(h)262 1436 y(as)20 b(m)o(ultim)o(o)o(v)o(e)d(piece)22 +b(path)o(w)o(a)o(ys,)f(to)f(b)q(e)h(considered.)39 b(This)20 +b(in)g(part)h(explains)f(wh)o(y)262 1486 y(Deep)d(Though)o(t)f(is)g(able)h +(to)f(displa)o(y)f(a)i(p)q(ositional)e(kno)o(wledge)h(m)o(uc)o(h)f(higher)i +(than)g(its)262 1536 y(ev)n(aluation)12 b(function)i(w)o(ould)f(suggest.)324 +1621 y(The)j(amoun)o(t)d(of)i(kno)o(wledge)g(whic)o(h)g(can)g(b)q(e)h +(bridged)g(b)o(y)f(tree)h(searc)o(hing)g(dep)q(ends)262 1671 +y(on)h(the)h(depth)h(of)e(searc)o(h.)30 b(Ho)o(w)o(ev)o(er,)19 +b(some)e(c)o(hess)i(concepts)g(are)f(so)g(deep,)h(40)e(or)h(50)262 +1721 y(plies,)12 b(that)h(it)g(will)e(b)q(e)j(almost)d(imp)q(ossible)g(for)i +(searc)o(hing)h(alone)e(to)h(bridge)g(suc)o(h)h(a)f(gap.)262 +1771 y(This)h(explains)h(wh)o(y)f(b)q(oth)i(the)f(Hitec)o(h)h(and)e(Deep)i +(Though)o(t)e(teams)g(are)i(encoun)o(tering)262 1821 y(diminishing)8 +b(returns)13 b(from)d(eac)o(h)i(additional)e(ply)h(of)g(searc)o(h.)18 +b(In)12 b(order)g(to)g(a)o(v)o(oid)e(similar)262 1870 y(problems)k(and)h +(reduce)i(HIAR)o(CS's)d(dep)q(endency)k(on)c(tree)j(searc)o(hing,)e(I)g(ha)o +(v)o(e)g(instilled)262 1920 y(a)h(signi\014can)o(t)h(amoun)o(t)e(of)h(static) +h(kno)o(wledge)g(in)f(the)i(w)o(a)o(y)e(of)g(p)q(ositional)g(criteria)h(and) +262 1970 y(dynamic)12 b(tactical)h(kno)o(wledge)h(in)f(the)i(w)o(a)o(y)e(of)g +(selectiv)o(e)i(searc)o(h)g(extensions.)324 2055 y(HIAR)o(CS's)9 +b(p)q(erformance)g(has)h(clearly)f(illustrated)h(that)f(extra)h(kno)o(wledge) +g(can)g(more)262 2105 y(than)k(comp)q(ensate)h(for)g(reduced)i(searc)o(h)f +(capacit)o(y)m(.)k(A)15 b(pa)o(wn)f(outside)i(the)f(quadrate)g(of)262 +2155 y(the)i(opp)q(osing)f(king)f(is)i(a)f(clear)h(example)e(of)h(this:)24 +b(without)16 b(direct)h(kno)o(wledge)g(ab)q(out)262 2205 y(king-pa)o(wn)12 +b(quadrates,)j(a)e(full)g(width)h(searc)o(h)h(program)e(ma)o(y)f(require)j +(up)f(to)g(an)g(11)f(ply)262 2255 y(searc)o(h)j(to)g(realise)g(the)g(pa)o(wn) +f(can)h(queen.)24 b(HIAR)o(CS)15 b(5.0)g(is)g(capable)h(of)f(realising)g +(this)262 2304 y(after)f(a)f(mere)h(1)f(ply)h(searc)o(h)h(b)q(ecause)g(of)f +(its)g(c)o(hess)h(kno)o(wledge.)324 2390 y(Ho)o(w)d(far)g(c)o(hess)h(kno)o +(wledge)g(can)f(b)q(e)h(increased)h(at)e(the)h(exp)q(ense)h(of)d(searc)o +(hing,)i(with-)262 2439 y(out)h(degrading)g(o)o(v)o(erall)g(p)q(erformance)g +(is)h(still)f(op)q(en)h(to)f(question.)21 b(Ho)o(w)o(ev)o(er,)15 +b(I)f(b)q(eliev)o(e)946 2574 y(166)p eop +%%Page: 167 169 +167 168 bop 262 307 a Fp(full)10 b(width)i(searc)o(hing)g(can)g(b)q(e)g +(reduced)i(in)d(fa)o(v)o(our)g(of)h(sophisticated)g(searc)o(h)h(extensions.) +262 357 y(The)i(lev)o(el)g(to)g(whic)o(h)g(the)g(full)f(width)h(p)q(ortion)g +(of)f(the)i(searc)o(h)g(can)f(b)q(e)h(reduced)h(greatly)262 +407 y(dep)q(ends)i(on)e(ho)o(w)g(comprehensiv)o(e)h(and)f(e\013ectiv)o(e)i +(the)f(searc)o(h)h(extensions)f(are.)30 b(T)m(ak-)262 457 y(ing)15 +b(this)g(approac)o(h)h(to)g(its)f(extreme)h(w)o(ould)f(result)i(in)e(a)h +(totally)e(selectiv)o(e)j(searc)o(h)g(of)e(a)262 506 y(narro)o(w,)e(deep)i +(game)d(tree.)324 592 y(When)18 b(long)g(term)f(c)o(hess)j(kno)o(wledge)e(is) +g(con)o(tained)h(in)f(the)g(ev)n(aluation)f(function,)262 641 +y(suc)o(h)f(as)g(pa)o(wn)g(structure)i(information)13 b(for)j(example,)f(eac) +o(h)h(additional)e(ply)i(do)q(es)h(not)262 691 y(seem)d(to)h(su\013er)g(suc)o +(h)h(diminishing)c(returns)k(as)f(seen)h(when)f(the)g(kno)o(wledge)f(con)o +(ten)o(t)i(is)262 741 y(lo)o(w)o(er.)22 b(This)15 b(w)o(as)g(made)g(clear)g +(b)o(y)h(the)g(un)o(usually)e(large)h(impro)o(v)o(emen)o(t)e(in)i(HIAR)o +(CS's)262 791 y(pla)o(y)d(b)q(et)o(w)o(een)k(30)d(seconds)i(and)f(3)g(min)o +(utes)f(a)g(mo)o(v)o(e.)324 876 y(The)19 b(ac)o(hiev)o(emen)o(t)f(of)f(iden)o +(tifying)g(and)i(com)o(bining)d(tactical)i(uncertain)o(t)o(y)h(in)f(the)262 +926 y(ev)n(aluation)12 b(function)h(has)h(b)q(een)h(b)q(ene\014cial.)j(Allo)o +(wing)12 b(the)i(searc)o(h)h(heuristics)g(to)e(mak)o(e)262 +976 y(use)19 b(of)f(this)h(information)d(has)j(help)q(ed)h(reduce)g(the)g +(programs)d(susceptibilit)o(y)i(to)g(the)262 1026 y(horizon)13 +b(e\013ect.)324 1111 y(Not)d(only)g(is)h(HIAR)o(CS's)f(p)q(ositional)f(pla)o +(y)h(signi\014can)o(tly)g(impro)o(v)o(ed,)f(but)i(the)g(tactical)262 +1161 y(standard)h(pro)q(duced)i(from)c(ev)o(en)j(shallo)o(w)e(searc)o(h)i +(depths)h(is)e(impressiv)o(e.)17 b(F)m(or)11 b(example,)262 +1210 y(on)j(one)g(o)q(ccasion,)g(HIAR)o(CS)g(solv)o(ed)g(a)g("mate)f(in)h(5)g +(problem")f(while)g(only)h(at)g(the)h(\014rst)262 1260 y(ply)e(of)h(full)f +(width)h(searc)o(h.)20 b(The)15 b(tactical)f(impro)o(v)o(em)o(en)o(t)e(is)i +(only)g(eviden)o(t,)g(ho)o(w)o(ev)o(er,)g(in)262 1310 y(v)n(ariations)g(con)o +(taining)g(mo)o(v)o(es)h(that)g(can)h(b)q(e)g(iden)o(ti\014ed)g(b)o(y)f(the)i +(extension)f(heuristics.)262 1360 y(Ho)o(w)o(ev)o(er,)d(as)h(the)h(tactical)e +(co)o(v)o(erage)i(is)e(quite)h(large,)g(the)g(o)o(v)o(erall)f(a\013ect)i(is)e +(b)q(ene\014cial.)324 1445 y(A)d(lot)f(of)h(progress)h(has)f(b)q(een)i(made)d +(on)g(the)i(sub)r(ject)h(of)d(time)g(allo)q(cation)f(and)i(con)o(trol.)262 +1495 y(The)16 b(resulting)g(algorithm)d(has)j(certainly)g(impro)o(v)o(ed)f +(HIAR)o(CS's)g(o)o(v)o(erall)g(standard)h(of)262 1545 y(pla)o(y)c(b)o(y)i +(allo)q(cating)e(and)i(adjusting)f(time)g(relativ)o(e)h(to)f(the)i(needs)g +(of)e(the)i(p)q(osition.)324 1630 y(The)i(results)h(pro)q(duced)g(on)f(the)g +(Bratk)o(o-Kop)q(ec)h(test)g(p)q(ositions)e(clearly)h(illustrate)262 +1680 y(that)c(HIAR)o(CS)h(do)q(es)h(displa)o(y)d(the)j(tactical)f(and)f(p)q +(ositional)g(abilit)o(y)f(of)h(an)h(exp)q(ert)h(lev)o(el)262 +1730 y(pla)o(y)o(er,)9 b(hence)i(meeting)e(the)i(aims)d(set)i(out)g(at)g(the) +g(b)q(eginning)f(of)g(the)i(pro)r(ject.)17 b(What)10 b(w)o(as)262 +1779 y(most)j(surprising)h(ab)q(out)g(HIAR)o(CS's)g(results)i(on)e(the)h +(test)g(p)q(ositions)f(w)o(as)g(its)h(balanced)262 1829 y(p)q(ositional)g +(and)h(tactical)g(abilit)o(y)m(.)24 b(These)18 b(results)g(are)e +(particularly)g(impressiv)o(e)g(when)262 1879 y(compared)f(to)g(the)i +(results)g(obtained)e(from)f(other)j(c)o(hess)g(programs)e(on)g(the)i(same)e +(test)262 1929 y(p)q(ositions.)324 2014 y(The)d(results)h(ac)o(hiev)o(ed)g +(in)e(the)i(matc)o(hes)e(pla)o(y)o(ed)h(b)o(y)f(HIAR)o(CS)h(against)f(b)q +(oth)h(h)o(uman)262 2064 y(and)17 b(computer)g(opp)q(osition)f(re-enforce)j +(the)f(results)h(ac)o(hiev)o(ed)f(in)f(the)h(Bratk)o(o-Kop)q(ec)262 +2114 y(exp)q(erimen)o(t.)946 2574 y(167)p eop +%%Page: 168 170 +168 169 bop 262 307 a Fr(8.3)69 b(Implications)20 b(and)k(F)-6 +b(uture)23 b(Prosp)r(ects)262 434 y Fp(Ov)o(er)16 b(the)h(last)e(10)h(y)o +(ears,)g(full)f(width)g(Shannon)h(t)o(yp)q(e)g(A)g(programs)f(ha)o(v)o(e)h +(made)e(great)262 483 y(adv)n(ances,)c(partly)g(due)h(to)f(adv)n(anced)g(sp)q +(ecial)h(purp)q(ose)g(hardw)o(are)g(and)f(partly)g(to)g(sophis-)262 +533 y(ticated)17 b(searc)o(h)i(algorithms)c(suc)o(h)j(as)f(PVS)g(with)g +(singular)g(extensions,)h(for)f(example.)262 583 y(V)m(ery)g(little)g(or)h +(no)f(progress)i(has)f(b)q(een)g(made)f(o)o(v)o(er)g(the)h(same)f(p)q(erio)q +(d)h(in)f(dev)o(eloping)262 633 y(purely)i(kno)o(wledge)h(based)g(programs)e +(capable)i(of)f(high)g(lev)o(el)g(pla)o(y)f(throughout)i(the)262 +683 y(game.)c(It)e(seems)g(that)f(the)i(problems)e(of)g(kno)o(wledge)g +(acquisition,)f(represen)o(tation)k(and)262 732 y(\014nally)d(implemen)o +(tation)f(are)j(at)g(presen)o(t)h(to)q(o)f(great)g(to)g(mak)o(e)f(suc)o(h)h +(kno)o(wledge)g(based)262 782 y(programs)g(successful.)28 b(Certainly)m(,)16 +b(the)h(k)o(ey)g(to)g(these)h(t)o(yp)q(es)f(of)f(program)f(remains)h(in)262 +832 y(the)e(b)q(etter)i(understanding)e(of)f(ho)o(w)h(strong)g(pla)o(y)o(ers) +g(think.)324 917 y(There)e(seems)g(to)f(b)q(e)h(t)o(w)o(o)e(main)g(approac)o +(hes)i(to)f(dev)o(eloping)f(an)h(in)o(telligen)o(t)g(selectiv)o(e)262 +967 y(searc)o(h)k(program.)312 1081 y(1.)20 b(Creating)14 b(an)g(in)o +(telligen)o(t,)e(kno)o(wledge)i(based)g(program)e(from)h(scratc)o(h.)312 +1162 y(2.)20 b(Gradual)13 b(c)o(hange)h(to)g(a)g(full)e(width)i(Shannon)g(t)o +(yp)q(e)g(A)g(program.)262 1276 y(An)9 b(approac)o(h)h(of)f(gradual)f(c)o +(hange)i(to)g(existing)f(programs)f(seems)i(to)g(me)e(to)i(o\013er)g(a)f(b)q +(etter)262 1326 y(hop)q(e)k(of)g(ev)o(en)o(tual)g(success.)21 +b(I)13 b(feel)g(a)h(program)d(lik)o(e)i(HIAR)o(CS)g(5.0)f(could)h(represen)o +(t)j(the)262 1376 y(\014rst)e(step)g(in)f(a)g(gradual)f(transition)h(from)e +(a)i(sophisticated)h(Shannon)f(t)o(yp)q(e)h(A)f(program)262 +1426 y(to)18 b(an)g(in)o(telligen)o(t)f(Shannon)i(t)o(yp)q(e)g(B/C)f +(program.)31 b(The)19 b(ma)r(jor)d(adv)n(an)o(tage)i(of)g(suc)o(h)262 +1476 y(an)c(approac)o(h)g(is)h(that)f(the)i(program)d(can)h(serv)o(e)i(as)f +(a)f(v)o(ehicle)h(for)f(exp)q(erimen)o(ting)g(with)262 1525 +y(ideas.)34 b(Hop)q(efully)m(,)20 b(this)f(will)f(in)h(turn)h(enable)g(the)g +(researc)o(her)i(to)d(acquire)h(a)f(b)q(etter)262 1575 y(understanding)14 +b(of)f(the)i(problems)e(and)g(issues)i(in)o(v)o(olv)o(ed.)324 +1660 y(The)d(3)f(ma)r(jor)g(di\016culties)g(a\013ecting)h(the)g(dev)o +(elopmen)o(t)f(of)g(a)h(go)q(o)q(d)f(ev)n(aluation)g(func-)262 +1710 y(tion)i(remain)f(kno)o(wing:)324 1824 y Ff(\017)20 b +Fl(whic)o(h)13 b Fp(ev)n(aluation)f(criteria)j(are)f(imp)q(ortan)o(t.)324 +1905 y Ff(\017)20 b Fl(when)14 b Fp(ev)n(aluation)e(criteria)i(are)h(imp)q +(ortan)o(t.)324 1986 y Ff(\017)20 b Fl(what)14 b Fp(the)g(relativ)o(e)g +(merits)f(of)h(eac)o(h)g(ev)n(aluation)e(criterion)j(should)e(b)q(e.)262 +2100 y(The)i(solution)f(to)g(these)j(problems)d(lie)g(in)g(a)h(signi\014can)o +(t)f(con)o(tribution)h(from)e(high)h(lev)o(el)262 2150 y(pla)o(y)o(ers)h(and) +h(the)g(con)o(tin)o(ual)f(ev)o(olution)g(of)g(ev)n(aluation)f(criteria.)24 +b(The)17 b(problems)e(asso-)262 2200 y(ciated)g(with)g(assigning)f(discrete)j +(v)n(alues)e(to)g(c)o(hess)i(concepts)g(is)e(a)g(ma)r(jor)f(di\016cult)o(y)g +(for)262 2250 y(the)e(exp)q(ert)h(c)o(hess)g(pla)o(y)o(er.)k(Applying)11 +b(v)n(alue)g(ranges)h(instead)g(of)f(single)g(v)n(alues)h(ma)o(y)e(b)q(e)i(a) +262 2300 y(p)q(ossibilit)o(y)m(.)j(This)e(com)o(bined)f(with)g(a)g(range)h +(and)g(probabilit)o(y)e(based)i(searc)o(h)h(algorithm)262 2350 +y(w)o(ould)f(b)q(e)i(an)f(in)o(teresting)h(p)q(ossibilit)o(y)m(.)j(Learning)c +(ma)o(y)e(pla)o(y)i(an)g(imp)q(ortan)o(t)f(role)h(here,)262 +2399 y(ho)o(w)o(ev)o(er,)i(man)o(y)e(of)h(the)h(problems)f(outlined)g(in)h(c) +o(hapter)h(3)e(m)o(ust)g(b)q(e)h(solv)o(ed)g(if)f(this)h(is)262 +2449 y(to)d(b)q(e)i(the)f(case.)946 2574 y(168)p eop +%%Page: 169 171 +169 170 bop 324 307 a Fp(The)11 b(com)o(bination)e(of)i(the)g(transp)q +(osition)h(table)f(and)g(searc)o(h)h(extensions)g(has)f(pro)o(v)o(ed)262 +357 y(problematical.)j(The)e(expansion)e(of)g(eac)o(h)i(table)e(en)o(try)i +(to)e(include)h(mo)o(v)o(e)e(sequences)14 b(and)262 407 y(extension)j +(information)d(is)i(required.)27 b(As)18 b(w)o(ell)e(as)g(easing)h(the)g +(problems)f(outlined)g(in)262 457 y(section)i(7.6,)e(this)i(impro)o(v)o(em)o +(en)o(t)d(could)i(allo)o(w)f(a)h(h)o(uman)f(pla)o(y)o(er)g(to)i(ask)f("what)g +(if)f(?")262 506 y(questions.)31 b(The)18 b(transp)q(osition)g(table)g(could) +g(b)q(e)h(prob)q(ed)g(after)f(a)g(searc)o(h)h(to)f(answ)o(er)262 +556 y(suc)o(h)c(questions)h(with)f(mo)o(v)o(e)e(sequences)17 +b(and)d(scores.)20 b(The)14 b Fh(\013\014)j Fp(algorithm)11 +b(w)o(ould)i(limit)262 606 y(suc)o(h)j(a)g(metho)q(d)f(b)q(ecause)j(of)d(p)q +(ossible)h(cut)h(o\013s,)f(but)g(still)f(a)h(step)h(in)e(the)i(direction)f +(of)262 656 y(understanding)i(mo)o(v)o(e)e(selection)j(w)o(ould)e(b)q(e)h +(made.)29 b(Another)19 b(p)q(ossibilit)o(y)e(is)g(the)i(use)262 +706 y(of)c(the)h(ev)n(aluation)f(function)h(to)f(answ)o(er)i(questions)f(ab)q +(out)g(the)h(p)q(osition)e(e.g.)24 b("whic)o(h)262 756 y(squares)13 +b(are)h(w)o(eak)e(around)h(the)g(white)g(king)f(?".)17 b(Suc)o(h)c(approac)o +(hes)h(w)o(ould)e(help)g(strong)262 805 y(c)o(hess)h(pla)o(y)o(ers)f(to)g +(iden)o(tify)g(program)e(w)o(eaknesses)15 b(and)d(allo)o(w)e(the)j(program)e +(designer)i(to)262 855 y(w)o(ork)g(more)g(closely)h(with)f(c)o(hess)j(pla)o +(y)o(ers)e(ha)o(ving)e(little)i(programmi)o(ng)d(kno)o(wledge.)324 +940 y(HIAR)o(CS)16 b(5.0)f(con)o(tains)h(man)o(y)e(searc)o(h)j(extension)g +(heuristics)g(whic)o(h)f(mak)o(e)f(a)g(p)q(os-)262 990 y(itiv)o(e)i(con)o +(tribution)g(to)h(its)g(tactical)f(abilit)o(y)m(.)28 b(The)18 +b(next)h(step)f(w)o(ould)f(not)h(only)f(b)q(e)i(to)262 1040 +y(enhance)c(and)f(tune)h(these)h(existing)e(heuristics,)h(but)f(to)g(in)o +(tro)q(duce)h(new)g(heuristics.)21 b(In)262 1090 y(particular,)13 +b(there)h(seems)g(no)g(reason)g(wh)o(y)f(p)q(ositional)g(t)o(yp)q(e)h(searc)o +(h)h(extensions)f(cannot)262 1140 y(b)q(e)i(in)o(tro)q(duced.)27 +b(Although)15 b(the)i(asso)q(ciated)g(di\016culties)f(are)h(man)o(y)m(,)d +(the)j(rew)o(ards)g(are)262 1189 y(great.)324 1275 y(Ov)o(er)d(the)f(coming)e +(mon)o(ths,)h(I)h(will)f(endev)o(our)i(to)e(correct)j(man)o(y)c(of)i(the)h(w) +o(eaknesses)262 1324 y(iden)o(ti\014ed)20 b(in)h(HIAR)o(CS)f(5.0's)g(pla)o(y) +m(.)37 b(HIAR)o(CS)20 b(5.n)g(will)g(b)q(e)h(en)o(tered)h(in)f(the)g(c)o +(hess)262 1374 y(tournamen)o(t)10 b(of)h(the)h(2nd)f(Computer)g(Olympiad)e +(later)j(this)f(y)o(ear.)18 b(Hop)q(efully)m(,)10 b(HIAR)o(CS)262 +1424 y(will)16 b(b)q(e)j(using)f(a)g(25Mhz)h(68030)e(for)h(this)g(ev)o(en)o +(t.)32 b(The)19 b(result)g(this)g(summer)d(will)h(b)q(e)262 +1474 y(in)o(teresting.)324 1559 y(Man)o(y)e(of)f(the)i(tec)o(hniques)g(used)g +(in)f(computer)g(c)o(hess)i(programs)d(ma)o(y)f(b)q(e)j(useful)f(in)262 +1609 y(other)f(problem)e(domains.)k(I)e(con)o(tacted)h(Hans)f(Berliner)g(at)g +(CMU)g(ab)q(out)f(the)h(p)q(ossibil-)262 1659 y(ities)i(of)f(applying)g(some) +g(of)g(the)i(latest)f(searc)o(h)h(tec)o(hniques)h(to)d(Theorem)h(Pro)o(ving)f +([8].)262 1709 y(Although)i(no)i(one)f(has)h(built)f(sp)q(ecial)g(purp)q(ose) +i(hardw)o(are,)f(the)g('c)o(hess)h(approac)o(h')e(is)262 1758 +y(apparen)o(tly)13 b(b)q(eing)h(lo)q(ok)o(ed)f(up)q(on)h(fa)o(v)o(ourably)m +(.)324 1844 y(I)g(hop)q(e)g(this)g(pro)r(ject)h(has)f(sho)o(wn)g(that)f(b)q +(oth)h(c)o(hess)i(kno)o(wledge)d(and)h(searc)o(hing)g(can)262 +1893 y(complemen)o(t)f(eac)o(h)k(other)g(and)e(that)h(a)g(go)q(o)q(d)g +(balance)g(b)q(et)o(w)o(een)h(the)g(t)o(w)o(o)e(can)h(ac)o(hiev)o(e)262 +1943 y(results.)946 2574 y(169)p eop +%%Page: 170 172 +170 171 bop 262 675 a Fo(Bibliog)q(raph)m(y)324 913 y Fp([1])19 +b(G.)e(M.)g(Adelson-V)m(elskiy)h(and)f(M.)g(V.)h(Donsk)o(o)o(y)e(\(1975\))h +(:)26 b Fm(Some)19 b(Metho)n(ds)g(of)388 963 y(Contr)n(ol)r(ling)g(the)g(T)m +(r)n(e)n(e)g(Se)n(ar)n(ch)g(in)h(Chess)f(Pr)n(o)n(gr)n(ams.)f +Fp(Arti\014cial)g(In)o(telligence,)388 1012 y(V)m(ol)13 b(6)h(No)f(4,)h(pp)g +(361-371.)324 1095 y([2])19 b(G.)g(M.)f(Adelson-V)m(elskiy)m(,)i(V.)f(L.)f +(Arlazaro)o(v,)i(A.)f(R.)f(Bitman,)h(A.)f(A.)h(Zhiv)o(o-)388 +1145 y(to)o(vskiy)h(and)f(A.)h(V.)f(Usk)o(o)o(v)h(\(1970\))f(:)30 +b Fm(Pr)n(o)n(gr)n(amming)20 b(a)g(Computer)g(to)h(Play)388 +1195 y(Chess.)14 b Fp(Russian)f(Math.)h(Surv)o(eys,)g(pp)g(221-262)324 +1278 y([3])19 b(T.)14 b(Anan)o(tharaman,)f(M.)g(Campb)q(ell,)g(F.)h(Hsu)h +(\(1988\))e(:)19 b Fm(Singular)d(Extensions)g(:)388 1328 y(A)n(dding)i(Sele)n +(ctivity)e(to)h(Brute{F)m(or)n(c)n(e)g(Se)n(ar)n(ching.)f Fp(ICCA)h(Journal,) +f(V)m(ol)f(11)h(No)388 1378 y(4,)d(pp)h(135-143.)324 1461 y([4])19 +b(L.)f(R.)f(A)o(tkin)h(and)g(D.)f(J.)h(Slate)g(\(1977\))f(:)26 +b Fm(CHESS)20 b(4.5)e(-)h(The)g(Northwestern)388 1510 y(University)14 +b(Chess)g(Pr)n(o)n(gr)n(am.)f Fp(Chess)h(Skill)e(in)h(Man)g(and)g(Mac)o +(hine,)g(P)m(.)g(W.)f(F)m(rey)388 1560 y(\(ed\),)j(pp)e(82-118,)f(Springer{V) +m(erlag,)h(New)i(Y)m(ork.)324 1643 y([5])k(D.)13 b(F.)h(Beal)g(\(1989\))f(:) +18 b Fm(Exp)n(eriments)c(with)g(the)h(Nul)r(l)f(Move.)h Fp(Adv)n(ances)f(in)f +(Com-)388 1693 y(puter)20 b(Chess)g(5,)f(D.)f(F.)g(Beal)g(\(ed\),)j(pp)d +(65-79,)g(Elsevier)i(Science)g(Publishers)388 1743 y(B.V.,)13 +b(North)i(Holland.)324 1826 y([6])k(H.)f(J.)f(Berliner)i(\(1979\))e(:)26 +b Fm(The)18 b(B*)h(T)m(r)n(e)n(e)e(Se)n(ar)n(ch)i(A)o(lgorithm)e(:)26 +b(A)18 b(Best)h(First)388 1876 y(Pr)n(o)n(of)c(Pr)n(o)n(c)n(e)n(dur)n(e.)e +Fp(Arti\014cial)g(In)o(telligence,)h(V)m(ol)f(12,)f(No)i(1,)f(pp)h(23-40.)324 +1959 y([7])19 b(H.)11 b(J.)h(Berliner)g(\(1989\))f(:)16 b Fm(Some)e +(Innovations)f(Intr)n(o)n(duc)n(e)n(d)g(by)g(Hite)n(ch.)e Fp(Adv)n(ances)388 +2009 y(in)h(Computer)f(Chess)j(5,)d(D.)h(F.)g(Beal)g(\(ed\),)h(pp)f(283-293,) +e(Elsevier)j(Science)g(Pub-)388 2058 y(lishers)i(B.V.,)e(North)h(Holland.)324 +2141 y([8])19 b(H.)14 b(J.)g(Berliner)g(:)k Fm(Personal)d(Communic)n(ation,)g +(F)m(eb)g(1990.)324 2224 y Fp([9])k(A.)14 b(Bernstein)h(and)f(M.)f(de)h(V.)f +(Rob)q(erts)i(\(1958\))e(:)k Fm(Computer)e(vs)g(Chess)f(Player.)388 +2274 y Fp(Scien)o(ti\014c)h(American,)d(198,)h(pp)h(96-105.)303 +2357 y([10])19 b(P)m(.)14 b(Bettadapur)h(\(1986\))f(:)19 b +Fm(In\015uenc)n(e)e(of)e(Or)n(dering)f(on)i(Captur)n(e)f(Se)n(ar)n(ch.)g +Fp(ICCA)388 2407 y(Journal,)e(V)m(ol)g(9,)g(No)h(4,)f(pp)h(180-188.)946 +2574 y(170)p eop +%%Page: 171 173 +171 172 bop 303 307 a Fp([11])19 b(J.)12 b(A.)g(Birmingham)d(and)j(P)m(.)f +(Ken)o(t)i(\(1977\))e(:)17 b Fm(T)m(r)n(e)n(e-se)n(ar)n(ching)12 +b(and)i(T)m(r)n(e)n(e-pruning)388 357 y(T)m(e)n(chniques.)h +Fp(Adv)n(ances)g(in)f(Computer)f(Chess)j(1,)e(M.)f(Clark)o(e)h(\(ed\),)h(pp)g +(89-107.)388 407 y(Edin)o(burgh)f(Univ)o(ersit)o(y)g(Press.)303 +487 y([12])19 b(I.)g(Bratk)o(o)h(and)f(D.)f(Kop)q(ec)j(\(1982\))e(:)29 +b Fm(The)20 b(Br)n(atko{Kop)n(e)n(c)g(Exp)n(eriment)g(:)29 +b(A)388 536 y(Comp)n(arison)16 b(of)f(Human)i(and)f(Computer)f(Performanc)n +(e)h(in)f(Chess.)g Fp(Adv)n(ances)388 586 y(in)10 b(Computer)g(Chess)i(3,)e +(Clark)o(e)h(M.)f(\(ed\),)h(pp)g(51-72.)e(P)o(ergamon)g(Press,)j(Oxford.)303 +666 y([13])19 b(M.)12 b(S.)g(Campb)q(ell)f(and)h(T.)g(A.)g(Marsland)g +(\(1983\))g(:)17 b Fm(A)c(Comp)n(arison)h(of)f(Minimax)388 +716 y(T)m(r)n(e)n(e)h(Se)n(ar)n(ch)h(A)o(lgorithms.)e Fp(Arti\014cial)g(In)o +(telligence,)h(V)m(ol)e(20)i(No)f(4,)h(pp)g(347-367.)303 795 +y([14])19 b(J.)g(H.)f(Condon)g(and)g(K.)g(Thompson)f(\(1982\))h(:)27 +b Fm(Bel)r(le)19 b(Chess)g(Har)n(dwar)n(e.)e Fp(Ad-)388 845 +y(v)n(ances)d(in)e(Computer)g(Chess)h(3,)g(M.)f(Clark)o(e)g(\(ed\),)h(pp)g +(45-54,)e(P)o(ergamon)g(Press,)388 895 y(Oxford.)303 975 y([15])19 +b(S.)14 b(M.)f(Cracraft)h(\(1984\))f(:)18 b Fm(Bitmap)c(Move)i(Gener)n(ation) +f(in)f(Chess.)g Fp(ICCA)f(Jour-)388 1024 y(nal,)g(V)m(ol)g(7,)g(No)h(3,)f(pp) +h(146-153.)303 1104 y([16])19 b(A.)26 b(D.)f(de)h(Gro)q(ot)f(\(1978\))g(:)42 +b Fm(Thought)26 b(and)h(Choic)n(e)f(in)g(Chess.)f Fp(Mouton-)388 +1154 y(DeGruyter,)15 b(2nd)e(edition.)303 1234 y([17])19 b(A.)e(D.)g(de)h +(Gro)q(ot)f(and)h(R.)e(W.)h(Jongman)e(\(1966\))i(:)25 b Fm(Heuristics)18 +b(in)g(p)n(er)n(c)n(eptual)388 1284 y(pr)n(o)n(c)n(esses.)c +Fp(In)o(ternational)f(Congress)i(of)e(Psyc)o(hology)m(,)g(Mosco)o(w,)g +(August)h(1966.)303 1363 y([18])19 b(C.)10 b(Eb)q(eling)f(\(1986\))h(:)16 +b F